diff --git a/.github/install.sh b/.github/install.sh index 32b8552aa8f6..0c030be8e7aa 100755 --- a/.github/install.sh +++ b/.github/install.sh @@ -1,11 +1,29 @@ #!/bin/bash + +set -ex + sudo apt-get update -sudo apt-get install -y libmpfr-dev \ - libeigen3-dev qtbase5-dev libqt5sql5-sqlite libqt5opengl5-dev qtscript5-dev \ - libqt5svg5-dev qttools5-dev qttools5-dev-tools libboost-dev libinsighttoolkit4-dev zsh -#update cmake to 3.18.4 +sudo apt-get install -y \ + libmpfr-dev \ + libtbb-dev \ + libmetis-dev \ + libssh-dev \ + libeigen3-dev \ + qtbase5-dev libqt5sql5-sqlite libqt5opengl5-dev qtscript5-dev libqt5websockets5-dev \ + libqt5svg5-dev qttools5-dev qttools5-dev-tools \ + libboost-dev libboost-serialization-dev libboost-iostreams-dev libboost-filesystem-dev libboost-filesystem-dev \ + libvtk9-dev libgdcm-tools libvtkgdcm-dev libunwind-dev \ + libinsighttoolkit5-dev \ + libceres-dev \ + libglpk-dev \ + libopencv-dev \ + zsh \ + qt6-base-dev qt6-declarative-dev libqt6svg6-dev libqt6websockets6-dev + +#update CMake sudo apt purge --auto-remove cmake cd /tmp -wget https://cmake.org/files/v3.18/cmake-3.18.4-Linux-x86_64.sh -sudo sh cmake-3.18.4-Linux-x86_64.sh --skip-license --prefix=/usr/local -rm cmake-3.18.4-Linux-x86_64.sh +CMAKE_VER=$(curl --silent https://cmake.org/files/LatestRelease/cmake-latest-files-v1.json | jq -r .version.string) +wget https://cmake.org/files/LatestRelease/cmake-$CMAKE_VER-linux-x86_64.sh +sudo sh cmake-*.sh --skip-license --prefix=/usr/local +rm cmake-*.sh diff --git a/.github/test.sh b/.github/test.sh index a744f6d5b08a..cf69ebee9552 100755 --- a/.github/test.sh +++ b/.github/test.sh @@ -3,11 +3,10 @@ FACTOR=$1 set -ex cd Polyhedron/demo -LIST_OF_PLUGINS=$(/usr/local/bin/cmake --build . -t help | egrep 'plugin$' |& cut -d\ -f2) +/usr/local/bin/cmake -S Polyhedron -B build -DCGAL_DIR=$2 +LIST_OF_PLUGINS=$(/usr/local/bin/cmake --build build -t help | egrep 'plugin$' |& cut -d\ -f2) PLUGINS_ARRAY=(${LIST_OF_PLUGINS}); NB_OF_PLUGINS=${#PLUGINS_ARRAY[@]} DEL=$(($NB_OF_PLUGINS / 4)) -mkdir build cd build -/usr/local/bin/cmake -DCGAL_DIR=$2 ../Polyhedron make -j2 ${PLUGINS_ARRAY[@]:$(($FACTOR * $DEL)):$((($FACTOR + 1) * $DEL))} diff --git a/.github/workflows/Remove_labels.yml b/.github/workflows/Remove_labels.yml index 0624fe7a1dfa..ef2127e6e47c 100644 --- a/.github/workflows/Remove_labels.yml +++ b/.github/workflows/Remove_labels.yml @@ -10,7 +10,7 @@ jobs: name: remove label steps: - name: removelabel - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -21,7 +21,7 @@ jobs: name: "Tested", }); - name: Post address - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: ${{ success() }} with: script: | diff --git a/.github/workflows/build_doc.yml b/.github/workflows/build_doc.yml index b629c1870cf0..d523cc2079d1 100644 --- a/.github/workflows/build_doc.yml +++ b/.github/workflows/build_doc.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 id: get_round with: result-encoding: string @@ -38,7 +38,7 @@ jobs: } } return 'stop' - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 if: steps.get_round.outputs.result != 'stop' id: get_pr_number with: @@ -49,7 +49,7 @@ jobs: return pr_number - name: Emoji-comment - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: steps.get_round.outputs.result != 'stop' with: script: | @@ -136,7 +136,7 @@ jobs: fi - name: Post address - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: ${{ success() && steps.get_round.outputs.result != 'stop' }} with: script: | @@ -154,7 +154,7 @@ jobs: - name: Post error env: ERRORMSG: ${{steps.build_and_run.outputs.DoxygenError}} - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: ${{ failure() && steps.get_round.outputs.result != 'stop' }} with: script: | diff --git a/.github/workflows/cmake-all.yml b/.github/workflows/cmake-all.yml index b9e7226c62dd..94c7dd8851e8 100644 --- a/.github/workflows/cmake-all.yml +++ b/.github/workflows/cmake-all.yml @@ -17,10 +17,10 @@ jobs: - name: configure all run: | set -e - mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON .. + mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DCGAL_ENABLE_TESTING=ON .. ctest -L Installation -j $(getconf _NPROCESSORS_ONLN) - cmake-testsuite-with-qt5: + cmake-testsuite-with-qt: runs-on: ubuntu-latest @@ -31,5 +31,5 @@ jobs: - name: configure all run: | set -e - mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON .. + mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DCGAL_ENABLE_TESTING=ON .. ctest -L Installation -j $(getconf _NPROCESSORS_ONLN) diff --git a/.github/workflows/filter_testsuite.yml b/.github/workflows/filter_testsuite.yml index 48e4f39d65c3..4aaf03a31405 100644 --- a/.github/workflows/filter_testsuite.yml +++ b/.github/workflows/filter_testsuite.yml @@ -14,7 +14,7 @@ jobs: if: (github.event.comment.user.login == 'sloriot' || github.event.comment.user.login == 'lrineau') && contains(github.event.comment.body, '/testme') runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 id: get_label with: result-encoding: string @@ -63,7 +63,7 @@ jobs: ssh ${HOST} "${PATH_TO_SCRIPT}/run_testsuite_from_branch_name.sh $USER_NAME $BRANCH_NAME $BASE $PR_NUMBER" done - name: Post address - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const address = "Testsuite launched. Results will appear on the following page: https://cgal.geometryfactory.com/~cgaltest/test_suite/TESTRESULTS/index.shtml " diff --git a/.github/workflows/wiki_notification.yml b/.github/workflows/wiki_notification.yml index 456fefa51e39..6438af78168f 100644 --- a/.github/workflows/wiki_notification.yml +++ b/.github/workflows/wiki_notification.yml @@ -9,7 +9,7 @@ jobs: messages: ${{ steps.set-result.outputs.result }} steps: - name: get informations and prepare email - uses: actions/github-script@v6 + uses: actions/github-script@v7 id: set-result with: result-encoding: string diff --git a/.gitignore b/.gitignore index a53ed4269ce2..90f003227c6f 100644 --- a/.gitignore +++ b/.gitignore @@ -178,12 +178,6 @@ GraphicsView/demo/Triangulation_2/Makefile GraphicsView/demo/Triangulation_2/Regular_triangulation_2 GraphicsView/demo/Triangulation_2/qrc_*.cxx GraphicsView/demo/Triangulation_2/ui_*.h -GraphicsView/src/CGAL_Qt5/*.dll -GraphicsView/src/CGAL_Qt5/*.lib -GraphicsView/src/CGAL_Qt5/*.so -GraphicsView/src/CGAL_Qt5/Makefile -GraphicsView/src/CGAL_Qt5/moc_*.cxx -GraphicsView/src/CGAL_Qt5/qrc_*.cxx HalfedgeDS/test/HalfedgeDS/cgal_test_with_cmake HalfedgeDS/test/HalfedgeDS/test_hds HalfedgeDS/test/HalfedgeDS/test_hds_decorator @@ -879,7 +873,6 @@ Surface_mesher/demo/Surface_mesher/.*.deps Surface_mesher/demo/Surface_mesher/.qglviewer.xml Surface_mesher/demo/Surface_mesher/Makefile Surface_mesher/demo/Surface_mesher/Surface_mesher -Surface_mesher/demo/Surface_mesher/Surface_mesher_Qt5_Demo Surface_mesher/demo/Surface_mesher/VTK/Makefile Surface_mesher/demo/Surface_mesher/VTK/mesh_a_3D_image Surface_mesher/demo/Surface_mesher/VTK/mesh_a_VTK_3D_image @@ -894,7 +887,6 @@ Surface_mesher/demo/Surface_mesher/out*.off Surface_mesher/demo/Surface_mesher/polyhedron_remesher Surface_mesher/demo/Surface_mesher/polyhedron_remesher_with_edges Surface_mesher/demo/Surface_mesher/qrc_*.c* -Surface_mesher/demo/Surface_mesher/qt5-demo Surface_mesher/demo/Surface_mesher/ui_*.h Surface_mesher/doxygen Surface_mesher/examples/Surface_mesher/.*.deps diff --git a/AABB_tree/demo/AABB_tree/AABB_demo.cpp b/AABB_tree/demo/AABB_tree/AABB_demo.cpp index 018e0f69c14d..881fd8710dbf 100644 --- a/AABB_tree/demo/AABB_tree/AABB_demo.cpp +++ b/AABB_tree/demo/AABB_tree/AABB_demo.cpp @@ -30,7 +30,7 @@ int main(int argc, char **argv) app.setOrganizationName("INRIA"); app.setApplicationName("AABB tree demo"); - // Import resources from libCGALQt (Qt5). + // Import resources from libCGALQt (Qt6). CGAL_QT_INIT_RESOURCES; MainWindow mainWindow; @@ -49,12 +49,3 @@ int main(int argc, char **argv) return app.exec(); } - -# include "Scene.cpp" -# include "Scene_moc.cpp" -# include "benchmarks.cpp" -# include "Viewer.cpp" -# include "Viewer_moc.cpp" -# include "MainWindow.cpp" -# include "MainWindow_moc.cpp" - diff --git a/AABB_tree/demo/AABB_tree/CMakeLists.txt b/AABB_tree/demo/AABB_tree/CMakeLists.txt index d0fcdd47ade0..46b13f3b1c66 100644 --- a/AABB_tree/demo/AABB_tree/CMakeLists.txt +++ b/AABB_tree/demo/AABB_tree/CMakeLists.txt @@ -6,73 +6,46 @@ project(AABB_tree_Demo) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -# Instruct CMake to run moc automatically when needed. -set(CMAKE_AUTOMOC ON) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() +# Find CGAL and CGAL Qt6 +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() +# Find Qt6 itself +find_package(Qt6 QUIET COMPONENTS Gui OpenGL) -# Include this package's headers first -include_directories(BEFORE ./ ./include) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) -# Find CGAL and CGAL Qt5 -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) + add_definitions(-DQT_NO_KEYWORDS) -# Find Qt5 itself -find_package(Qt5 QUIET COMPONENTS Widgets OpenGL) + # Instruct CMake to run moc/ui/rcc automatically when needed. + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) - - qt5_wrap_ui(UI_FILES MainWindow.ui) - - include(AddFileDependencies) - - qt5_generate_moc("MainWindow.h" "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp") - add_file_dependencies(MainWindow_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/MainWindow.h") - - qt5_generate_moc("Viewer.h" "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp") - add_file_dependencies(Viewer_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/Viewer.h") - - qt5_generate_moc("Scene.h" "${CMAKE_CURRENT_BINARY_DIR}/Scene_moc.cpp") - add_file_dependencies(Scene_moc.cpp "${CMAKE_CURRENT_SOURCE_DIR}/Scene.h") - - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES AABB_demo.qrc) - - add_file_dependencies( - AABB_demo.cpp "${CMAKE_CURRENT_BINARY_DIR}/MainWindow_moc.cpp" - "${CMAKE_CURRENT_BINARY_DIR}/Viewer_moc.cpp" - "${CMAKE_CURRENT_BINARY_DIR}/Scene_moc.cpp") - - add_executable( - AABB_demo AABB_demo.cpp ${UI_FILES} ${CGAL_Qt5_RESOURCE_FILES} - #${CGAL_Qt5_MOC_FILES} + qt_add_executable( + AABB_demo AABB_demo.cpp Scene.cpp benchmarks.cpp Viewer.cpp MainWindow.cpp + MainWindow.ui AABB_demo.qrc ) # Link with Qt libraries - target_link_libraries(AABB_demo PRIVATE Qt5::Widgets Qt5::OpenGL - CGAL::CGAL CGAL::CGAL_Qt5) + target_link_libraries(AABB_demo PRIVATE Qt6::Gui Qt6::OpenGL + CGAL::CGAL CGAL::CGAL_Qt6) add_to_cached_list(CGAL_EXECUTABLE_TARGETS AABB_demo) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(AABB_demo) -else(CGAL_Qt5_FOUND AND Qt5_FOUND) +else(CGAL_Qt6_FOUND AND Qt6_FOUND) set(AABB_MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) - set(AABB_MISSING_DEPS "CGAL_Qt5, ${AABB_MISSING_DEPS}") + if(NOT CGAL_Qt6_FOUND) + set(AABB_MISSING_DEPS "CGAL_Qt6, ${AABB_MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(AABB_MISSING_DEPS "Qt5, ${AABB_MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(AABB_MISSING_DEPS "Qt6, ${AABB_MISSING_DEPS}") endif() message("NOTICE: This demo requires ${AABB_MISSING_DEPS}, and will not be compiled.") -endif(CGAL_Qt5_FOUND AND Qt5_FOUND) +endif(CGAL_Qt6_FOUND AND Qt6_FOUND) diff --git a/AABB_tree/demo/AABB_tree/MainWindow.cpp b/AABB_tree/demo/AABB_tree/MainWindow.cpp index 95fc4056bf7e..1c68338bcf44 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.cpp +++ b/AABB_tree/demo/AABB_tree/MainWindow.cpp @@ -10,15 +10,19 @@ #include #include #include +#include #include "ui_MainWindow.h" MainWindow::MainWindow(QWidget* parent) -: CGAL::Qt::DemosMainWindow(parent) + : CGAL::Qt::DemosMainWindow(parent) { ui = new Ui::MainWindow; ui->setupUi(this); + this->addAboutDemo(":/cgal/AABB_demo/about.html"); + this->addAboutCGAL(); + // saves some pointers from ui, for latter use. m_pViewer = ui->viewer; @@ -418,7 +422,3 @@ void MainWindow::on_actionCopy_snapshot_triggered() qb->setImage(snapshot); QApplication::restoreOverrideCursor(); } - - - - diff --git a/AABB_tree/demo/AABB_tree/MainWindow.h b/AABB_tree/demo/AABB_tree/MainWindow.h index 2a072f195121..3138efd4202a 100644 --- a/AABB_tree/demo/AABB_tree/MainWindow.h +++ b/AABB_tree/demo/AABB_tree/MainWindow.h @@ -1,7 +1,6 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H -#include #include class QDragEnterEvent; @@ -12,7 +11,6 @@ namespace Ui { class MainWindow; } - class MainWindow : public CGAL::Qt::DemosMainWindow { @@ -21,12 +19,12 @@ class MainWindow : MainWindow(QWidget* parent = nullptr); ~MainWindow(); - public slots: + public Q_SLOTS: void updateViewerBBox(); void open(QString filename); void setAddKeyFrameKeyboardModifiers(Qt::KeyboardModifiers); - protected slots: + protected Q_SLOTS: // settings void quit(); diff --git a/AABB_tree/demo/AABB_tree/Scene.cpp b/AABB_tree/demo/AABB_tree/Scene.cpp index abf09661b438..41e11ac62091 100644 --- a/AABB_tree/demo/AABB_tree/Scene.cpp +++ b/AABB_tree/demo/AABB_tree/Scene.cpp @@ -618,7 +618,7 @@ void Scene::draw(CGAL::QGLViewer* viewer) vao[0].bind(); attrib_buffers(viewer); rendering_program.bind(); - color.setRgbF(0.7,0.0,0.0); + color.setRgbF(0.7f,0.0f,0.0f); rendering_program.setUniformValue(colorLocation, color); rendering_program.setUniformValue(fLocation, fMatrix); gl->glDrawArrays(GL_POINTS, 0, static_cast(pos_points.size()/3)); @@ -631,7 +631,7 @@ void Scene::draw(CGAL::QGLViewer* viewer) vao[1].bind(); attrib_buffers(viewer); rendering_program.bind(); - color.setRgbF(0.0,0.7,0.0); + color.setRgbF(0.0f,0.7f,0.0f); rendering_program.setUniformValue(colorLocation, color); rendering_program.setUniformValue(fLocation, fMatrix); gl->glDrawArrays(GL_LINES, 0, static_cast(pos_lines.size()/3)); @@ -669,7 +669,7 @@ void Scene::draw(CGAL::QGLViewer* viewer) vao[3].bind(); attrib_buffers(viewer); rendering_program.bind(); - color.setRgbF(1.0,0.0,0.0); + color.setRgbF(1.0f,0.0f,0.0f); rendering_program.setUniformValue(colorLocation, color); rendering_program.setUniformValue(fLocation, fMatrix); gl->glDrawArrays(GL_LINES, 0, static_cast(pos_cut_segments.size()/3)); diff --git a/AABB_tree/demo/AABB_tree/Scene.h b/AABB_tree/demo/AABB_tree/Scene.h index 44d7b8239ce8..ae898f43daa4 100644 --- a/AABB_tree/demo/AABB_tree/Scene.h +++ b/AABB_tree/demo/AABB_tree/Scene.h @@ -1,7 +1,6 @@ #ifndef SCENE_H #define SCENE_H -#include #include #include @@ -77,7 +76,6 @@ class Scene : public QObject }; public: - QGLContext* context; void draw(CGAL::QGLViewer*); void update_bbox(); Bbox bbox() { return m_bbox; } @@ -173,7 +171,7 @@ class Scene : public QObject void attrib_buffers(CGAL::QGLViewer*); void compile_shaders(); void compute_texture(int, int, Color_ramp, Color_ramp); -private slots: +private Q_SLOTS: void updateCutPlane(); public: @@ -255,7 +253,7 @@ private slots: -public slots: +public Q_SLOTS: // cutting plane void cutting_plane(bool override = false); void changed(); diff --git a/AABB_tree/demo/AABB_tree/Viewer.cpp b/AABB_tree/demo/AABB_tree/Viewer.cpp index 7bc82f7770e6..9e5cf22bdb74 100644 --- a/AABB_tree/demo/AABB_tree/Viewer.cpp +++ b/AABB_tree/demo/AABB_tree/Viewer.cpp @@ -1,9 +1,6 @@ #include "Viewer.h" #include "Scene.h" #include -#include -#include - Viewer::Viewer(QWidget* parent) : CGAL::QGLViewer(parent), m_pScene(nullptr), diff --git a/AABB_tree/demo/AABB_tree/benchmarks.cpp b/AABB_tree/demo/AABB_tree/benchmarks.cpp index c337e43efe76..1b68d80bcde0 100644 --- a/AABB_tree/demo/AABB_tree/benchmarks.cpp +++ b/AABB_tree/demo/AABB_tree/benchmarks.cpp @@ -1,4 +1,5 @@ #include "Scene.h" +#include "Refiner.h" #include #include diff --git a/AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h b/AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h index 5422c84b2ae6..021cdc6270ab 100644 --- a/AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h +++ b/AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h @@ -21,7 +21,6 @@ #include #include #include -#include namespace CGAL { @@ -57,9 +56,9 @@ template < class FaceGraph, class CacheDatum=Tag_false > class AABB_face_graph_triangle_primitive #ifndef DOXYGEN_RUNNING - : public AABB_primitive::face_descriptor, - std::pair::face_descriptor, const FaceGraph*> >::type, + : public AABB_primitive::face_descriptor, + std::pair::face_descriptor, const FaceGraph*> >, Triangle_from_face_descriptor_map< FaceGraph, typename Default::Get::const_type >::type VertexPointPMap_; typedef typename boost::graph_traits::face_descriptor FD; - typedef typename boost::mpl::if_ >::type Id_; + typedef std::conditional_t > Id_; typedef Triangle_from_face_descriptor_map Triangle_property_map; typedef One_point_from_face_descriptor_map Point_property_map; diff --git a/AABB_tree/include/CGAL/AABB_halfedge_graph_segment_primitive.h b/AABB_tree/include/CGAL/AABB_halfedge_graph_segment_primitive.h index 135682273199..3f5481d0cfe1 100644 --- a/AABB_tree/include/CGAL/AABB_halfedge_graph_segment_primitive.h +++ b/AABB_tree/include/CGAL/AABB_halfedge_graph_segment_primitive.h @@ -24,7 +24,6 @@ #include #include #include -#include #include @@ -70,9 +69,9 @@ template < class HalfedgeGraph, class CacheDatum = Tag_false > class AABB_halfedge_graph_segment_primitive #ifndef DOXYGEN_RUNNING - : public AABB_primitive< typename boost::mpl::if_::edge_descriptor, - std::pair::edge_descriptor, const HalfedgeGraph*> >::type, + : public AABB_primitive< std::conditional_t::edge_descriptor, + std::pair::edge_descriptor, const HalfedgeGraph*> >, Segment_from_edge_descriptor_map< HalfedgeGraph, typename Default::Get::const_type >::type VertexPointPMap_; typedef typename boost::graph_traits::edge_descriptor ED; - typedef typename boost::mpl::if_ >::type Id_; + typedef std::conditional_t > Id_; typedef Segment_from_edge_descriptor_map Segment_property_map; typedef Source_point_from_edge_descriptor_map Point_property_map; diff --git a/AABB_tree/include/CGAL/AABB_tree/internal/Is_ray_intersection_geomtraits.h b/AABB_tree/include/CGAL/AABB_tree/internal/Is_ray_intersection_geomtraits.h index e662b13be90c..3d02204b9d03 100644 --- a/AABB_tree/include/CGAL/AABB_tree/internal/Is_ray_intersection_geomtraits.h +++ b/AABB_tree/include/CGAL/AABB_tree/internal/Is_ray_intersection_geomtraits.h @@ -32,11 +32,11 @@ BOOST_MPL_HAS_XXX_TRAIT_NAMED_DEF(Has_cartesian_const_iterator_3,Cartesian_const template struct Is_ray_intersection_geomtraits -: boost::mpl::and_< Has_ray_3, - Has_construct_source_3, - Has_vector_3, - Has_construct_cartesian_const_iterator_3, - Has_cartesian_const_iterator_3 >::type +: std::bool_constant< Has_ray_3::value && + Has_construct_source_3::value && + Has_vector_3::value && + Has_construct_cartesian_const_iterator_3::value && + Has_cartesian_const_iterator_3::value > {}; diff --git a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/ExplicitInteroperable.h b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/ExplicitInteroperable.h index c76784d0059a..1ebc78e8ce37 100644 --- a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/ExplicitInteroperable.h +++ b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/ExplicitInteroperable.h @@ -1,6 +1,6 @@ /*! -\ingroup PkgAlgebraicFoundationsInteroperabilityConcepts +\ingroup PkgAlgebraicFoundationsAlgebraicStructuresConcepts \cgalConcept Two types `A` and `B` are a model of the `ExplicitInteroperable` @@ -27,4 +27,3 @@ class ExplicitInteroperable { public: }; /* end ExplicitInteroperable */ - diff --git a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/Fraction.h b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/Fraction.h index c250309555ca..0ba53cb6e022 100644 --- a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/Fraction.h +++ b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/Fraction.h @@ -1,6 +1,6 @@ /*! -\ingroup PkgAlgebraicFoundationsFractionsConcepts +\ingroup PkgAlgebraicFoundationsAlgebraicStructuresConcepts \cgalConcept A type is considered as a `Fraction`, if there is a reasonable way to @@ -17,4 +17,3 @@ class Fraction { public: }; /* end Fraction */ - diff --git a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromDoubleConstructible.h b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromDoubleConstructible.h index 879d9b45ed38..6746fedcee23 100644 --- a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromDoubleConstructible.h +++ b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromDoubleConstructible.h @@ -1,6 +1,6 @@ /*! -\ingroup PkgAlgebraicFoundationsConcepts +\ingroup PkgAlgebraicFoundationsAlgebraicStructuresConcepts \cgalConcept A model of the concept `FromDoubleConstructible` is required @@ -27,4 +27,3 @@ FromDoubleConstructible(const double& d); /// @} }; /* end FromDoubleConstructible */ - diff --git a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromIntConstructible.h b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromIntConstructible.h index 779b96188a71..dc23c29f649b 100644 --- a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromIntConstructible.h +++ b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromIntConstructible.h @@ -1,6 +1,6 @@ /*! -\ingroup PkgAlgebraicFoundationsConcepts +\ingroup PkgAlgebraicFoundationsAlgebraicStructuresConcepts \cgalConcept A model of the concept `FromIntConstructible` is required @@ -28,4 +28,3 @@ FromIntConstructible(int& i); /// @} }; /* end FromIntConstructible */ - diff --git a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/ImplicitInteroperable.h b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/ImplicitInteroperable.h index d7521aafcaab..a7c2f7389803 100644 --- a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/ImplicitInteroperable.h +++ b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/ImplicitInteroperable.h @@ -1,6 +1,6 @@ /*! -\ingroup PkgAlgebraicFoundationsInteroperabilityConcepts +\ingroup PkgAlgebraicFoundationsAlgebraicStructuresConcepts \cgalConcept Two types `A` and `B` are a model of the concept @@ -29,4 +29,3 @@ class ImplicitInteroperable { public: }; /* end ImplicitInteroperable */ - diff --git a/Algebraic_foundations/include/CGAL/number_utils.h b/Algebraic_foundations/include/CGAL/number_utils.h index c17823d72b9d..5a5bc2d242d3 100644 --- a/Algebraic_foundations/include/CGAL/number_utils.h +++ b/Algebraic_foundations/include/CGAL/number_utils.h @@ -194,21 +194,21 @@ root_of( int k, Input_iterator begin, Input_iterator end ) { template< class Number_type > inline // select a Is_zero functor -typename boost::mpl::if_c< - ::std::is_same< typename Algebraic_structure_traits< Number_type >::Is_zero, - Null_functor >::value , +typename std::conditional_t< + std::is_same_v< typename Algebraic_structure_traits< Number_type >::Is_zero, + Null_functor >, typename Real_embeddable_traits< Number_type >::Is_zero, typename Algebraic_structure_traits< Number_type >::Is_zero ->::type::result_type +>::result_type is_zero( const Number_type& x ) { // We take the Algebraic_structure_traits<>::Is_zero functor by default. If it // is not available, we take the Real_embeddable_traits functor - typename ::boost::mpl::if_c< - ::std::is_same< + std::conditional_t< + std::is_same_v< typename Algebraic_structure_traits< Number_type >::Is_zero, - Null_functor >::value , + Null_functor > , typename Real_embeddable_traits< Number_type >::Is_zero, - typename Algebraic_structure_traits< Number_type >::Is_zero >::type + typename Algebraic_structure_traits< Number_type >::Is_zero > is_zero; return is_zero( x ); } diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp b/Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp index 784ee1af57ff..3ec08a1113ec 100644 --- a/Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/Alpha_shape_3.cpp @@ -16,8 +16,8 @@ int main(int argc, char** argv) application.setOrganizationName("GeometryFactory"); application.setApplicationName("Alpha Shape Reconstruction"); - // Import resources from libCGALQt (Qt5). - // See https://doc.qt.io/qt-5/qdir.html#Q_INIT_RESOURCE + // Import resources from libCGAL_Qt6 + // See https://doc.qt.io/qt-6/qtresource-proxy.html#Q_INIT_RESOURCE CGAL_QT_INIT_RESOURCES; Q_INIT_RESOURCE(Alpha_shape_3); diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt b/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt index 7498df1b70a9..7c3b54b8424b 100644 --- a/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/CMakeLists.txt @@ -7,46 +7,32 @@ project(Alpha_shapes_3_Demo) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -# Instruct CMake to run moc automatically when needed. -set(CMAKE_AUTOMOC ON) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) -find_package(Qt5 QUIET COMPONENTS Widgets OpenGL) - -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) add_definitions(-DQT_NO_KEYWORDS) - # include(${QT_USE_FILE}) - include_directories(BEFORE ./) - - # ui file, created with Qt Designer - qt5_wrap_ui(uis MainWindow.ui) + # Instruct CMake to run moc/ui/rcc automatically when needed. + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTOUIC ON) + set(CMAKE_AUTORCC ON) - # qrc files (resources files, that contain icons, at least) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES ./Alpha_shape_3.qrc) + qt_add_executable(Alpha_shape_3 Alpha_shape_3.cpp MainWindow.cpp Viewer.cpp + MainWindow.ui Alpha_shape_3.qrc) - add_executable( - Alpha_shape_3 Alpha_shape_3.cpp MainWindow.cpp Viewer.cpp ${uis} - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Alpha_shape_3) - target_link_libraries(Alpha_shape_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Widgets Qt5::OpenGL) + target_link_libraries(Alpha_shape_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Widgets Qt6::OpenGL) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Alpha_shape_3) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/README b/Alpha_shapes_3/demo/Alpha_shapes_3/data/README new file mode 100644 index 000000000000..74384edcd03d --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/README @@ -0,0 +1,14 @@ +The purpose of this repository is to make some range data +and detailed reconstructions available to the public. Currently, this repository only contains models that were scanned and reconstructed +at the Stanford Computer Graphics Laboratory . In the future, we hope to include data sets and reconstructions from other sources. + +The models in this repository were all scanned with a Cyberware 3030MS optical triangulation scanner. +Please acknowledge .... + +http://www-graphics.stanford.edu/data/3Dscanrep/ +e-mail: 3Dscanrep@graphics.stanford.edu +file://www-graphics.stanford.edu/pub/zippack/data/ + +http://www.hs.washington.edu/locke/vislab/ +http://biocomp.arc.nasa.gov/3dreconstruction/data/ +medical data \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny1000.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny1000.pts new file mode 100644 index 000000000000..ff22c3612dd9 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny1000.pts @@ -0,0 +1,1001 @@ +1000 +-0.0164722 0.0382453 0.0209318 +-0.0641407 0.171114 -0.0471776 +0.023086 0.119339 0.0317977 +0.00506037 0.0347021 0.0393176 +-0.066143 0.143958 0.0413147 +-0.0445017 0.163753 0.00542301 +-0.0689729 0.181022 -0.0546459 +-0.0931085 0.131006 0.0192314 +0.000506827 0.0489752 0.0512269 +-0.0615935 0.160001 -0.0315914 +-0.0245032 0.0960169 0.0442753 +-0.0258992 0.0891655 0.049535 +-0.000499367 0.0456802 0.0470389 +-0.0171808 0.0654583 0.0528522 +0.00116916 0.131228 0.00582139 +-0.0356565 0.122935 -0.00798984 +-0.0701892 0.156285 0.021569 +-0.0173569 0.038443 0.0259817 +-0.0716413 0.0763478 -0.0132577 +0.0528545 0.0568172 0.0288563 +-0.0325067 0.0732308 0.0407775 +-0.0760686 0.150008 -0.00987485 +-0.030561 0.0774145 0.0410957 +-0.0833901 0.0762729 0.00451303 +-0.000492618 0.0925258 0.0556594 +-0.0358778 0.159506 0.00240863 +0.0115111 0.114076 0.0384616 +-0.0877889 0.0887187 0.00347532 +-0.0261028 0.115949 -0.0147279 +-0.0682913 0.165205 -0.0539869 +-0.0225512 0.0933694 -0.0331106 +-0.0538783 0.0999149 -0.0214389 +0.0435587 0.0959151 0.0211557 +-0.0167991 0.0388632 -0.0107644 +-0.0569142 0.0548839 0.00364185 +0.00749229 0.091015 0.0542708 +-0.065316 0.0625169 -0.002419 +-0.00749647 0.119689 0.0375376 +-0.0772165 0.0934484 -0.0125951 +-0.029008 0.0478606 -0.0250513 +0.00934189 0.0553527 -0.0303034 +-0.0578677 0.104042 -0.0186102 +0.0405495 0.0999198 -0.00379356 +-0.0894314 0.137929 0.0371779 +0.00710731 0.126603 -0.00643182 +0.058913 0.070492 0.0108657 +-0.0922485 0.120133 0.0292903 +0.0395325 0.105566 0.0221621 +-0.0376065 0.0365426 0.0444186 +-0.0550158 0.128128 -0.00563226 +-0.0561672 0.0336533 0.0186553 +0.0123436 0.0351165 0.0296251 +-0.0899184 0.131005 0.0413145 +0.0065365 0.100373 0.0469448 +-0.0502879 0.133796 0.0278403 +-0.0716838 0.0351362 0.00880221 +0.0579126 0.0523842 0.0101848 +-0.0639212 0.154791 0.00385831 +-0.0654795 0.0384216 -0.00684663 +-0.0615513 0.0624603 0.0259481 +-0.0368013 0.0842007 -0.0223672 +0.0522757 0.0574291 -0.0035048 +-0.0764972 0.123179 0.0527664 +0.0302998 0.0694384 -0.019812 +-0.0334269 0.0486094 0.0413091 +-0.00450651 0.0689184 0.0565193 +0.0425976 0.0887597 -0.00680771 +-0.0707351 0.156208 0.0228366 +0.0548799 0.0492406 0.0202107 +-0.00962948 0.168316 -0.023669 +-0.0313363 0.11605 -0.0148117 +-0.0225249 0.125571 0.0012278 +0.0122871 0.124953 0.0313975 +-0.0343047 0.125361 0.0205265 +-0.038499 0.0747376 0.0420783 +0.0292349 0.0759579 -0.0220376 +-0.0255784 0.0477093 -0.0263526 +-0.0750958 0.151313 -0.0258791 +0.0057743 0.0347896 0.0375885 +-0.0926124 0.120126 0.0272917 +-0.0366664 0.175138 -0.00407486 +-0.00549337 0.088417 0.0570387 +-0.0711473 0.17507 -0.0540267 +-0.0776118 0.0739521 0.0284675 +0.0376746 0.104662 0.0282621 +-0.0634881 0.121359 0.0469409 +0.0233296 0.0564006 -0.0254415 +-0.0399361 0.123254 0.0259269 +-0.000577398 0.0341134 -0.0181551 +-0.000496894 0.0520342 0.0541515 +-0.0701023 0.177167 -0.0478719 +-0.0641167 0.143926 0.0389732 +-0.0679369 0.165269 -0.0197719 +-0.0681029 0.138305 0.0455026 +-0.00280426 0.0384802 0.0198949 +-0.0628273 0.0924874 -0.0189476 +0.0084946 0.0869435 0.0558386 +0.00910286 0.0348066 0.0183719 +-0.0195983 0.126231 0.0213862 +-0.0584949 0.143878 0.0330085 +-0.0218343 0.0553077 0.0451067 +-0.0645685 0.147457 -0.0230581 +0.0426227 0.0691122 -0.00279622 +-0.035813 0.0842739 -0.0225525 +-0.0819685 0.0791215 0.0284136 +0.0328852 0.113087 -0.00384394 +-0.0677123 0.168615 -0.0283035 +-0.0556635 0.140996 0.0299986 +-0.0764958 0.131682 0.0526442 +0.0421796 0.0832522 0.0293553 +-0.0848653 0.0855483 0.0264341 +-0.0329445 0.121338 0.0269922 +-0.0320197 0.058187 -0.0133973 +-0.0322785 0.0421631 -0.0296986 +0.0401757 0.067497 -0.00878165 +-0.0904989 0.148452 0.0245146 +-0.00947974 0.0561444 0.0530127 +-0.0310333 0.0383692 -0.000250742 +-0.0780713 0.150403 0.0367551 +-0.0872126 0.146051 0.00824907 +-0.0735722 0.148626 -0.0268487 +-0.00548676 0.116904 0.0394711 +-0.0599006 0.132533 0.037981 +-0.093479 0.129659 0.0212406 +-0.0639063 0.120904 -0.00875525 +-0.028606 0.0356961 0.0524615 +-0.0652024 0.153998 -0.041972 +-0.0262134 0.0765572 0.0473962 +-0.0774721 0.155387 0.0234212 +-0.0628707 0.0345025 0.0358026 +0.0434964 0.0555926 0.0322399 +-0.0618022 0.142496 0.0370478 +-0.0638273 0.0910291 -0.0188305 +-0.0636286 0.0672101 0.0337087 +-0.0842132 0.092522 0.0298256 +0.0185123 0.115397 0.0365584 +-0.0666269 0.131204 0.0458398 +-0.0653475 0.165775 -0.0260007 +-0.0182573 0.181629 -0.0177335 +-0.0142757 0.185348 -0.0257883 +0.0485082 0.0624718 0.0300814 +-0.0254927 0.0974122 0.0441083 +-0.0446561 0.0349999 0.0427486 +-0.0616719 0.0410515 0.0160296 +-0.0179307 0.0931593 -0.0348763 +-0.00828798 0.130102 0.00662088 +-0.0525878 0.149334 0.020403 +-0.0102534 0.128943 0.0232512 +0.0445378 0.0959706 0.0101622 +-0.0465291 0.0335268 -0.00814027 +0.00437534 0.131145 0.0198749 +-0.0394369 0.03436 0.0321562 +-0.0107155 0.127812 0.0260097 +-0.0273383 0.17123 -0.0098418 +-0.0037118 0.0655569 -0.0347446 +-0.0630689 0.150547 -0.0265942 +-0.0776846 0.16386 -0.0329461 +-0.0728796 0.151218 -0.0388899 +0.038172 0.0967289 0.0325586 +-0.058907 0.0983413 -0.0195805 +-0.00549542 0.0965711 0.0536823 +0.00650609 0.0503877 0.0517539 +-0.0847722 0.113367 0.0459387 +0.0309512 0.0822193 0.0430727 +-0.0159859 0.0984773 0.0464357 +0.0361586 0.0781359 0.0382445 +0.0417308 0.0422749 0.000248643 +-0.0631435 0.175042 -0.061564 +-0.0251041 0.0945178 -0.0276305 +0.018776 0.122594 -0.0061273 +0.0173125 0.0726566 0.0514253 +-0.0377229 0.0724783 -0.0174913 +0.0173872 0.0432828 -0.0228623 +0.0416262 0.0912615 0.0286616 +-0.050567 0.0474222 -0.00850865 +-0.0150865 0.162585 -0.00969001 +0.0143357 0.0566765 -0.0290221 +-0.0309078 0.065095 -0.0224325 +0.045522 0.0805737 0.00219452 +-0.0725374 0.138625 0.0483183 +-0.0476365 0.150675 0.00992423 +-0.0799103 0.125126 -0.00560703 +-0.051025 0.159915 -0.00453945 +0.00139766 0.0419298 -0.0244976 +-0.0664219 0.0352675 0.015055 +-0.00832508 0.130422 0.0138058 +-0.00366678 0.0481589 -0.0301707 +-0.0738566 0.161044 -0.0339379 +0.0319703 0.0475137 0.0318758 +0.0188215 0.126955 0.00377584 +-0.0309617 0.044825 -0.0281993 +0.0456484 0.0875951 0.00518134 +-0.0521074 0.0583062 0.0285239 +-0.0171825 0.0382402 0.011747 +-0.0692976 0.0615474 0.00912978 +-0.0232044 0.175652 -0.0207635 +-0.0406662 0.0592305 -0.0118049 +0.0572429 0.0508905 0.0121849 +-0.0488285 0.0416917 0.0446681 +0.0455301 0.0677752 0.0254231 +-0.0846369 0.110251 0.00429821 +-0.0754652 0.163196 -0.0162299 +-0.0247271 0.0564997 0.0408849 +-0.0639975 0.0601011 0.00610183 +-0.0741599 0.155538 0.00126713 +-0.0728899 0.122329 -0.00823917 +0.010861 0.0360066 0.0447493 +0.0150176 0.0355797 0.04239 +-0.0437155 0.0710509 -0.0175901 +0.0271589 0.093209 -0.0206672 +-0.00592646 0.12418 0.0336126 +-0.0810295 0.0895599 -0.00769505 +-0.0920663 0.121362 0.00826874 +-0.0862277 0.0832671 0.00749085 +-0.085371 0.127983 -0.0026626 +-0.081815 0.108922 0.02836 +-0.0491537 0.135503 0.0034228 +0.00885847 0.0887054 -0.0320419 +-0.0673146 0.0446682 0.00602001 +0.0152697 0.128852 0.0195703 +0.0231834 0.0422122 0.040252 +-0.0286261 0.0463451 -0.0269667 +0.0449154 0.0763231 0.00019353 +-0.0387296 0.0739178 -0.0177449 +0.0212191 0.0819428 -0.0266321 +-0.00126307 0.039726 0.0470556 +-0.0261021 0.0379463 0.0228342 +-0.0448562 0.101383 -0.0214692 +-0.0014827 0.0390261 -0.00225591 +-0.0648948 0.103911 -0.0165942 +-0.0624902 0.155293 -0.0145941 +0.000436968 0.130385 0.0227651 +-0.0219738 0.059501 0.0451263 +-0.0502789 0.129408 -0.00267456 +-0.0216757 0.065257 0.0474751 +-0.0621482 0.16155 -0.0395978 +0.0427418 0.0916392 0.0261768 +0.00967962 0.127274 0.0289934 +-0.0728707 0.168003 -0.0450202 +-0.0305611 0.179398 -0.00755573 +0.0341402 0.0902832 0.0407178 +-0.0491119 0.0361611 0.0459929 +0.0392087 0.0739776 0.0338431 +-0.0897017 0.151503 0.0171224 +0.0407967 0.105643 0.0101649 +-0.023633 0.0478399 -0.0272396 +-0.0504958 0.0862332 0.0455716 +-0.0451092 0.153606 0.00834539 +-0.0616087 0.146812 0.0373554 +0.0280342 0.0346822 0.009507 +0.0565861 0.0685555 0.00335277 +-0.027568 0.0674298 0.0392602 +-0.0926576 0.117463 0.0373027 +-0.0334278 0.124984 0.0208436 +-0.0602518 0.034678 0.0430709 +-0.0574989 0.107052 0.0398301 +-0.091226 0.128161 0.00727002 +0.0400022 0.0913669 0.0315547 +-0.0656743 0.138242 0.0419702 +-0.0852141 0.0805923 0.0204766 +-0.0444957 0.111173 0.0370595 +-0.044489 0.0803636 0.042222 +-0.00648998 0.122405 0.0354776 +0.00602348 0.111527 -0.0200414 +-0.0860119 0.132159 0.00027761 +0.0521231 0.0734583 0.0172399 +-0.0155403 0.0446621 0.0510487 +-0.0397503 0.0768521 -0.0186787 +-0.0682155 0.0787029 0.0404793 +-0.0813927 0.0758934 0.0225084 +-0.010188 0.0386565 4.14997e-05 +-0.00149609 0.0912323 -0.0347548 +-0.0294974 0.111128 0.0367729 +-0.0503924 0.0501648 0.0186468 +-0.0104698 0.070299 0.0557764 +0.0327323 0.0809002 0.0421262 +-0.0328911 0.122131 -0.00712262 +-0.0861948 0.1005 0.0258994 +-0.0319282 0.178722 -0.00808101 +-0.050675 0.140101 0.0024044 +-0.0346788 0.0636729 -0.0139354 +-0.00820144 0.0344928 -0.0181278 +-0.0830162 0.0939316 0.0314035 +0.0438286 0.0611702 -0.00330591 +-0.0162799 0.127645 0.0211086 +-0.0615233 0.0354132 0.043881 +-0.0755937 0.0809959 -0.0116148 +-0.0632393 0.166259 -0.0385929 +-0.0156738 0.0511142 -0.0317767 +0.000751147 0.0339678 -0.0215355 +-0.0534027 0.0336932 0.022744 +0.0102837 0.0348658 -0.0091814 +-0.0285082 0.0874866 -0.0336017 +-0.0849712 0.111906 0.0292041 +-0.0732162 0.169408 -0.0460252 +-0.00746424 0.110009 0.0430329 +-0.0587154 0.0723411 -0.016523 +-0.00333145 0.0968513 -0.0305901 +0.0385608 0.0713011 0.0346329 +-0.0463734 0.133247 0.0130756 +-0.0474986 0.104275 0.0408376 +-0.0714849 0.147284 -0.0260827 +-0.0404433 0.0461446 -0.0193164 +0.000709469 0.125628 -0.00726116 +0.028516 0.117882 -0.00302906 +-0.00249354 0.0746702 0.0587588 +0.0463101 0.0806468 0.00818141 +-0.0245515 0.114015 0.0358596 +-0.0396488 0.0563195 -0.0111963 +-0.0236961 0.0607746 0.0425604 +-0.0336359 0.0548461 -0.0105101 +-0.0585033 0.0337545 0.0163089 +0.0212208 0.126407 0.0160623 +-0.0729862 0.15207 0.0354642 +-0.085378 0.128494 0.0496125 +0.00429457 0.122356 -0.0118056 +0.0203517 0.0672611 0.0487139 +-0.0452845 0.0395903 -0.0182935 +-0.0211124 0.182965 -0.0210132 +-0.0295465 0.0819132 0.0441437 +-0.0777488 0.07493 0.029356 +0.00824435 0.0966482 -0.0263491 +-0.0588066 0.0854157 -0.0208208 +-0.0718999 0.113582 -0.00821597 +-0.0893735 0.0901981 0.0104595 +0.032603 0.0835706 0.0419526 +-0.0230608 0.0594124 0.0433799 +0.0284544 0.121423 0.0116324 +-0.0832785 0.12444 0.0504652 +-0.0396241 0.0520021 -0.0108773 +0.00721225 0.0837864 -0.0330068 +-0.046713 0.131987 0.00556897 +-0.0663702 0.157999 -0.00906779 +-0.067736 0.0779793 -0.0166569 +-0.0508692 0.102779 -0.0209206 +-0.0828958 0.151378 0.00422572 +-0.0346622 0.118788 -0.0116368 +-0.0726425 0.0716156 -0.00744076 +-0.059725 0.0469427 0.0326718 +-0.0468444 0.033579 -0.0045851 +-0.0384976 0.100064 0.0415702 +-0.050989 0.121022 -0.0119137 +-0.0624226 0.152205 -0.0125757 +-0.085741 0.151793 0.0266482 +-0.0826468 0.144713 0.0407672 +-0.0685649 0.0705046 -0.00966184 +-0.0734033 0.167233 -0.0217479 +-0.0455099 0.155064 0.0077969 +0.022652 0.0862116 0.0486888 +0.043364 0.0547822 -0.00644446 +-0.054457 0.14621 0.0274041 +-0.0639777 0.155958 0.0237716 +-0.0882347 0.0861347 0.011472 +0.00545294 0.1216 -0.0129959 +-0.0334673 0.174268 -0.00177832 +-0.00402179 0.129762 0.0240423 +-0.0185051 0.0711438 0.0540217 +-0.0872329 0.150111 0.00920897 +-0.090033 0.147105 0.0269347 +-0.0141936 0.0419832 0.0511586 +-0.0335873 0.154463 -0.00838872 +0.0441357 0.083266 -0.000805736 +-0.0528842 0.102762 -0.0205636 +-0.0125091 0.0815143 0.0575917 +0.0197435 0.125962 0.0226458 +-0.067993 0.0619274 0.01978 +-0.0216083 0.039391 -0.0287125 +-0.0767116 0.165247 -0.022942 +-0.0861936 0.111308 0.0401352 +-0.0238165 0.0854111 -0.0376407 +-0.0442161 0.123225 0.0243959 +-0.0175443 0.0460366 0.0510389 +-0.0272334 0.0902723 -0.0326005 +-0.0459359 0.168402 -0.00594095 +0.0355423 0.0512597 0.0315836 +0.0451079 0.0636949 -0.00183531 +-0.0368834 0.125578 -0.00482073 +0.0196258 0.0457587 -0.0217227 +-0.00773224 0.109619 -0.0221011 +-0.0514957 0.0876341 0.0455102 +-0.00269376 0.0613003 -0.0344696 +-0.0512049 0.147808 0.0143958 +0.0266901 0.106496 -0.0148024 +0.0383861 0.0476151 -0.00591592 +-0.0136895 0.0952904 -0.0330103 +0.0368491 0.0767795 0.0374896 +-0.029592 0.0522946 -0.0203629 +0.0482309 0.0500295 -0.00369862 +0.0381363 0.0794306 0.0358549 +-0.0677271 0.155796 -0.00229118 +0.026043 0.0392404 0.0305576 +0.0208388 0.126564 0.0173475 +0.0159735 0.0448127 0.0438765 +-0.0681757 0.118633 0.0523539 +-0.065068 0.136793 0.0410949 +-0.0454458 0.168254 0.00168996 +-0.0715222 0.142818 0.0455702 +-0.0604912 0.112522 0.03629 +-0.00074702 0.0712329 -0.0350931 +-0.0894331 0.150114 0.0121902 +-0.0185746 0.0381525 0.0151621 +0.0291213 0.0348096 0.00960912 +0.0404448 0.0985503 0.0271661 +0.0134712 0.0936014 0.0511282 +-0.021496 0.103017 0.0435858 +0.00918856 0.0342345 -0.00132638 +-0.0508332 0.0956285 -0.0221275 +-0.0613646 0.0394268 0.0439671 +0.0264379 0.0968548 0.0436578 +-0.0646669 0.0405364 0.0387423 +0.0125029 0.0475354 0.045933 +0.0412949 0.104257 0.00416372 +-0.00222052 0.117102 -0.0161156 +-0.00995662 0.169734 -0.0198047 +0.0200755 0.0399795 -0.0157069 +-0.0839165 0.110514 0.0395089 +-0.0546435 0.116042 -0.0146857 +0.0268767 0.0854059 -0.022529 +-0.0543926 0.0337363 0.0224962 +-0.049781 0.0841032 -0.0216622 +0.0431463 0.100109 0.00616795 +0.0393814 0.0780345 0.0341058 +-0.0162612 0.17862 -0.0260128 +-0.0335093 0.0676035 0.0406399 +-0.0176483 0.0352702 -0.0188352 +-0.031463 0.0519033 0.0373773 +-0.0803572 0.0803552 0.0319871 +-0.0320868 0.159267 -0.0129293 +0.0132853 0.0589897 0.0507165 +-0.0103631 0.180289 -0.0277342 +-0.0144925 0.0559441 0.0511232 +-0.0246444 0.0381166 0.0247786 +0.0170669 0.0871276 -0.028336 +0.00372554 0.105196 -0.0213905 +-0.0777857 0.156925 -0.0179137 +0.0578227 0.0710073 0.0178627 +-0.0582482 0.0336534 0.0128901 +-0.0520861 0.0545712 0.0266312 +0.0269849 0.113053 -0.00983991 +0.0429421 0.0467386 0.030224 +0.00548112 0.11414 0.0405028 +0.0607975 0.0637336 0.0101416 +-0.0895137 0.135181 0.0391853 +-0.0822803 0.139383 0.0462108 +0.00350363 0.0883757 0.0563643 +-0.0599112 0.109712 -0.0163845 +-0.0699244 0.107994 -0.0118147 +-0.073438 0.145781 -0.0138542 +-0.0702694 0.156361 0.0186365 +0.0365208 0.0713424 0.036933 +-0.0764811 0.141399 0.0471717 +-0.0338378 0.0943788 -0.02372 +-0.0185768 0.055451 0.0489119 +-0.0294962 0.107041 0.0398129 +0.0351663 0.0783387 -0.0157415 +-0.0823976 0.095314 0.0321564 +0.0458052 0.08902 0.00916777 +0.00466954 0.0341296 0.0180802 +0.012258 0.0751733 -0.0308354 +-0.0176564 0.0480544 -0.0295902 +-0.0487658 0.0811872 -0.020682 +-0.0375125 0.045091 0.0407522 +0.00960807 0.0375632 0.0322947 +0.0522688 0.0462249 0.00921199 +-0.0452834 0.0395877 -0.019291 +-0.0396931 0.126183 0.0200311 +-0.0903381 0.144712 0.0141544 +-0.0430213 0.0450576 -0.0153284 +-0.0539191 0.129665 -0.00510771 +-0.0384876 0.108386 0.0375357 +-0.0496388 0.0605583 -0.0113235 +-0.034501 0.115223 0.0328885 +-0.0540284 0.131061 -0.00500164 +-0.0147028 0.0389017 0.0333119 +-0.0207376 0.0641563 -0.0358205 +0.00590682 0.131658 0.0132863 +-0.0819436 0.154696 0.0145801 +0.0526661 0.0660937 -0.000184776 +-0.0526201 0.14007 0.0244025 +-0.0752504 0.177839 -0.0529463 +-0.0574955 0.0946379 0.0447737 +0.0456129 0.0904097 0.00518194 +-0.0282629 0.122524 0.022734 +-0.0680338 0.142566 0.0438693 +-0.0643033 0.0426016 0.0312522 +-0.0314971 0.102929 0.041974 +-0.00589664 0.0980966 0.0519993 +-0.0542782 0.132533 0.0338047 +-0.0911122 0.11473 0.0343167 +-0.0493972 0.140141 0.00739907 +-0.0577664 0.0485104 0.00767417 +-0.0629684 0.139576 0.0370615 +-0.0122087 0.128137 0.0240139 +0.00116984 0.129366 -0.00128907 +-0.039496 0.0634667 0.0415276 +-0.0427066 0.0696149 -0.0170299 +-0.0721201 0.149786 -0.0402916 +-0.0637423 0.168365 -0.0426884 +-0.0228169 0.0383283 0.0285633 +-0.0894925 0.143336 0.0131803 +-0.0408822 0.128708 0.0107294 +-0.043783 0.147719 0.00491206 +0.00912223 0.0833108 0.0554277 +-0.0543042 0.0335497 0.00301212 +-0.0544171 0.0333785 -0.00775516 +0.0295237 0.0727272 0.042682 +-0.0504982 0.112495 0.0358796 +-0.0240218 0.119915 -0.0108978 +-0.0535232 0.0556038 0.0117195 +-0.0480175 0.133707 0.00490199 +0.00583381 0.129313 0.0261699 +-0.0405566 0.149165 -0.00293165 +-0.0286765 0.0690744 -0.0314836 +0.0453693 0.0693828 0.00245115 +0.0581659 0.056561 0.00517446 +0.0192888 0.0651078 -0.0282476 +-0.0228892 0.0739252 0.0512281 +-0.0217183 0.113234 -0.017904 +0.0365187 0.0526805 0.0315096 +0.0490482 0.0539975 0.0303486 +0.0175085 0.114012 0.0373101 +-0.0328107 0.126843 0.0122027 +-0.0687814 0.0336983 0.00353162 +0.0220892 0.0906332 -0.0239505 +-0.0460528 0.122513 0.026245 +0.0381409 0.109688 0.00657231 +0.0368421 0.0742334 -0.0127504 +-0.0657975 0.0340784 0.0127357 +-0.0706216 0.146831 -0.0255714 +-0.0468292 0.091298 -0.0217206 +-0.0914681 0.144718 0.0171554 +-0.0624908 0.0343254 0.0238098 +0.0543739 0.0477987 0.0161989 +-0.0195403 0.1757 -0.0161256 +0.0224671 0.0343921 0.00678503 +-0.0654707 0.155271 0.00728456 +-0.0897135 0.12265 0.00431103 +-0.0501651 0.0361307 0.0461721 +-0.0901888 0.139114 0.0151891 +-0.0726107 0.156829 -0.0349095 +-0.0334964 0.0718545 0.0411869 +0.0106165 0.0644536 0.0539383 +0.0274263 0.0491525 0.0376576 +-0.0157908 0.169796 -0.0160148 +-0.0608326 0.17151 -0.0610901 +0.0136156 0.126814 -0.00267762 +0.0293325 0.0535401 0.0386956 +-0.0652579 0.153012 -0.0402459 +0.0264019 0.036087 0.0225582 +0.0101281 0.105858 -0.0202342 +-0.0674046 0.0833115 0.0429955 +-0.0312435 0.0538841 -0.0143722 +0.0424267 0.0441756 -0.00158684 +-0.0305089 0.0760274 0.0408429 +-0.0849899 0.127963 -0.0030064 +-0.0223249 0.0386602 -0.0135496 +0.0216012 0.112963 -0.0137495 +-0.0224297 0.0552774 0.0442986 +-0.093152 0.121537 0.0362834 +-0.0384463 0.166779 0.00239389 +0.0317419 0.0667553 -0.0187125 +-0.0127135 0.100022 -0.0239701 +0.0204112 0.0371925 -0.00568428 +0.0383001 0.0969495 -0.00880451 +-0.0500528 0.150184 -0.0037815 +-0.0578783 0.106898 -0.0179862 +0.0485378 0.0682762 0.00156381 +-0.0708965 0.0341323 0.00629169 +-0.0871174 0.110466 0.0103621 +-0.0235739 0.0944939 0.0470656 +-0.0164815 0.0515035 0.0485835 +0.0325428 0.0380502 1.57112e-05 +0.0385774 0.0888011 0.0348199 +-0.0628692 0.0445185 0.0382675 +-0.0572856 0.125533 0.0399888 +-0.0780066 0.0940671 0.0362827 +-0.0361012 0.160724 -0.0132118 +0.0200495 0.124902 -0.000599563 +0.0101263 0.107276 -0.0197522 +0.0224877 0.0961643 0.0466342 +-0.077715 0.0852782 -0.0115916 +-0.0164955 0.105778 0.0423459 +-0.0725318 0.101313 0.038599 +-0.0663565 0.0783826 0.0411592 +-0.0644378 0.17995 -0.0588828 +-0.0645973 0.171184 -0.0458828 +0.0111199 0.129735 0.0223368 +-0.018333 0.172741 -0.0161594 +-0.0864925 0.10492 0.00639597 +-0.0144943 0.0500942 0.0487331 +-0.0855601 0.095177 0.0282718 +1.67787e-05 0.0386604 0.0239291 +0.0109499 0.0344084 0.00259617 +-0.0270041 0.168274 -0.00938266 +-0.0378811 0.107099 -0.0200653 +0.060304 0.0664655 0.0101406 +-0.0478845 0.108472 -0.0188663 +0.0181085 0.0591163 0.0489014 +-0.0260899 0.0522789 0.0395517 +0.0049437 0.0984176 -0.0242128 +-0.0623314 0.0357831 0.0433788 +0.0110403 0.0725847 0.0546235 +-0.0864956 0.084691 0.0204775 +-0.00849993 0.0787667 0.0579153 +-0.0260008 0.0382709 0.000860974 +-0.06937 0.145758 -0.0234859 +-0.0314168 0.117929 -0.0127586 +-0.0261669 0.0378674 0.0174813 +-0.0832309 0.120353 0.049216 +-0.0617814 0.16156 -0.0355923 +-0.0779669 0.165862 -0.0278956 +-0.0698398 0.0922797 -0.0162924 +0.0483255 0.0503286 -0.00380134 +0.0451716 0.0889782 0.0181643 +0.0329815 0.112282 -0.00498623 +0.0279206 0.0916217 -0.0209795 +0.0155 0.11402 0.0377783 +-0.0105379 0.0431327 0.0497176 +0.0606167 0.0609422 0.00915424 +-0.0181983 0.18599 -0.0174024 +0.0189716 0.115037 -0.0139804 +-0.0590849 0.0644137 0.0318252 +-0.0819254 0.12582 0.0519232 +-0.0588398 0.0954803 -0.0203334 +-0.0674426 0.148384 -0.0326115 +0.0387628 0.10462 0.0262683 +0.00841723 0.129272 0.0256623 +-0.0196119 0.0364667 -0.0278852 +-0.0376923 0.162356 -0.000243841 +1.88808e-05 0.115368 -0.0182789 +0.0393962 0.0505525 -0.00668347 +-0.0116788 0.0555838 -0.0339192 +0.0363865 0.0713868 -0.0138007 +-0.0821651 0.110069 0.034903 +0.022728 0.117081 -0.0101857 +-0.0515389 0.0417461 -0.0105815 +0.0219588 0.123501 -0.00109075 +0.00735928 0.0960033 -0.0276522 +-0.00349428 0.119696 0.0379021 +-0.0470844 0.151656 -0.00519447 +-0.0242296 0.0941248 -0.0298734 +0.0152433 0.0658912 0.0518711 +-0.021804 0.0376594 -0.0181241 +-0.0133966 0.121962 -0.00916065 +0.0365536 0.108655 0.0265769 +-0.0668098 0.0880715 -0.0180091 +-0.0665181 0.171112 -0.0407548 +0.0493343 0.0532247 -0.0043679 +0.0423933 0.0901635 -0.00682346 +-0.0624126 0.150651 -0.0115734 +0.0373944 0.0505276 -0.00658166 +-0.0411461 0.162173 -0.0113613 +-0.065916 0.0662086 0.0305519 +-0.0289729 0.083488 0.0456837 +-0.000642523 0.0347913 0.0398677 +-0.0738147 0.065744 0.00631032 +0.00351431 0.0938625 0.0544725 +-0.0467733 0.12389 0.0269319 +0.0246632 0.123785 0.00595837 +-0.0715256 0.0958228 0.0413941 +0.00252922 0.0362636 0.0463395 +0.00948792 0.0963424 0.0500581 +0.0292035 0.0400739 0.0286474 +-0.0309481 0.0706991 -0.0284733 +-0.054091 0.152763 0.0215579 +0.0118527 0.105542 -0.0197545 +-0.0404793 0.0832528 0.0431634 +-0.0448438 0.0985036 -0.0215544 +-0.032014 0.0567822 -0.0123897 +0.00040853 0.0356817 0.00488121 +0.0447245 0.0861403 0.0231669 +-0.0426307 0.0338188 -0.00946517 +-0.0710495 0.141325 -0.00813095 +-0.0255896 0.182763 -0.0105092 +-0.0838169 0.107636 0.0253505 +-0.0796245 0.0859561 0.0353266 +0.0240034 0.0449703 0.0396985 +0.00450108 0.0716864 0.0560951 +-0.0676894 0.0750921 -0.0153176 +-0.0466572 0.0369109 -0.0172699 +-0.016529 0.0558872 0.0508401 +-0.087831 0.103641 0.0093887 +0.0272256 0.10745 0.0377741 +-0.0670064 0.0337953 0.0073865 +-0.0866888 0.0833263 0.0124872 +0.0152687 0.0779357 -0.0299953 +-0.0851819 0.152725 0.0105454 +0.000352424 0.0511166 -0.0306262 +0.0518495 0.0464359 0.0201911 +0.0554005 0.0553511 0.0254886 +-0.0886141 0.0928486 0.00844707 +0.0129712 0.130228 0.0115965 +-0.085549 0.104961 0.0233427 +0.0515991 0.0496316 0.0251833 +0.0131946 0.0878791 -0.0305989 +-0.0693376 0.131255 0.0489674 +-0.0660205 0.167997 -0.0305503 +-0.0666146 0.174697 -0.0480375 +-0.0293346 0.0347045 0.0427947 +-0.0553259 0.126836 -0.00601308 +-0.058583 0.0460291 0.0113967 +-0.0416277 0.0337441 -0.014735 +-0.0446642 0.0621749 -0.0132201 +0.0295862 0.120365 0.0134787 +-0.0697163 0.064282 0.022673 +-0.0805487 0.0789662 0.0306236 +-0.0787564 0.154933 0.00983696 +-0.0662707 0.14708 -0.0258685 +-0.0248167 0.0949702 -0.0267501 +-0.0407693 0.0826515 -0.0208197 +0.000514101 0.0346343 0.00952105 +-0.0533361 0.138123 0.0280776 +-0.0689277 0.115103 -0.00892086 +-0.0865224 0.0913375 0.0024428 +0.0232602 0.0790529 -0.0256674 +0.0296786 0.0679688 -0.0198342 +-0.0331127 0.123309 0.0239558 +0.0276403 0.118218 0.0284429 +0.00238303 0.0449286 -0.0261957 +-0.0928278 0.124236 0.0382657 +-0.0868685 0.11045 0.00936714 +-0.0254875 0.0959781 0.0438332 +0.0132252 0.0808221 -0.0308314 +0.035265 0.0591791 0.0368077 +-0.00944135 0.168135 -0.0197365 +0.0011864 0.12951 0.0259323 +-0.0139593 0.0967237 -0.0305143 +-0.00848922 0.0385737 0.0258802 +0.0562981 0.0619429 0.0011209 +0.0322546 0.0987343 -0.0145759 +-0.0268707 0.103016 -0.0234914 +-0.00655639 0.0384205 0.0209905 +-0.0296666 0.0774462 0.0418826 +-0.0626586 0.0676213 -0.0103966 +0.0374569 0.0904362 -0.0137042 +-0.0712181 0.161 -0.0439365 +0.0243668 0.0889213 0.0476805 +-0.0336134 0.0408899 -0.0298935 +-0.0404969 0.0916505 0.0425962 +0.0443454 0.0903358 0.0221636 +-0.0435232 0.163746 0.00524284 +-0.0649943 0.0623954 0.0235277 +-0.0613093 0.0593276 0.0181457 +-0.0717978 0.155398 -0.0409076 +-0.00868753 0.0584178 -0.0339256 +-0.0904383 0.119966 0.00529664 +-0.0601615 0.0333995 -0.00165181 +-0.0612252 0.0407891 0.0437895 +-0.0537348 0.0738508 -0.0172852 +-0.0709057 0.10512 -0.0125462 +-0.00333997 0.039253 0.0353398 +-0.0469903 0.145002 0.00194161 +-0.0250386 0.0659034 -0.0335362 +-0.023273 0.0382876 0.00502865 +0.0111228 0.0960826 -0.0257288 +0.0198113 0.0954368 -0.0230239 +0.038476 0.104075 -0.00282883 +-0.0843581 0.0883713 0.0286614 +-0.0930341 0.118841 0.0362969 +-0.0646767 0.146003 -0.0179612 +0.0284626 0.102127 0.0395666 +-0.0435018 0.113907 0.034675 +-0.0604863 0.0790224 0.042794 +-0.089042 0.112536 0.0205154 +-0.0524675 0.0344946 0.0345461 +-0.0848716 0.119101 -0.00207765 +-0.0120923 0.11442 -0.0172013 +-0.079929 0.151371 0.00121035 +-0.0920085 0.116136 0.0393096 +0.0361533 0.112569 0.0130564 +-0.0196629 0.125034 -0.00230889 +0.000499429 0.115573 0.0406664 +-0.0560183 0.147198 -0.00168648 +-0.0873616 0.110481 0.0113565 +-0.0416844 0.0636674 -0.0137203 +-0.0651889 0.153592 -0.00278678 +0.0471599 0.07398 0.0153485 +0.0404106 0.0873775 0.0321991 +-0.019434 0.184905 -0.0153275 +-0.0438294 0.0913555 -0.0224139 +-0.0527613 0.0797578 -0.020501 +-0.0314155 0.0651435 -0.021432 +0.00948509 0.0950229 0.0512669 +0.0346346 0.107297 -0.007625 +-0.0870053 0.0954387 0.00242783 +-0.0617312 0.142927 -0.00565867 +-0.0538929 0.14622 0.0244012 +0.0339044 0.115273 0.00366751 +0.049575 0.0693171 0.00251779 +-0.0861009 0.106274 0.00635995 +-0.00751182 0.075985 0.0578234 +-0.0761849 0.0933719 -0.0135017 +0.0266626 0.0672707 0.0437593 +-0.0314925 0.0932138 0.0444288 +0.0112937 0.0680868 -0.0307505 +-0.086045 0.141863 0.00720055 +0.000490707 0.111422 0.0424934 +-0.0516022 0.0502173 -0.00741774 +-0.0709386 0.131124 -0.00852217 +-0.0291841 0.125368 0.0164845 +-0.0012258 0.095852 -0.0315171 +-0.000697567 0.0641196 -0.0342689 +-0.0797379 0.0738711 0.0228323 +-0.0705682 0.0382102 0.00943236 +-0.0558807 0.102663 -0.0193944 +0.0262875 0.0835737 0.0468767 +-0.0206175 0.0364922 -0.0281092 +0.0306136 0.0779431 -0.0207534 +0.037492 0.0983062 -0.0097724 +-0.0861064 0.0806138 0.0174966 +-0.0488748 0.105594 -0.0196597 +-0.0499497 0.0724883 0.0409516 +-0.060435 0.131107 0.0389542 +-0.0197383 0.108898 -0.0213322 +-0.0328414 0.0943934 -0.0238538 +0.0071329 0.104451 -0.0211019 +-0.0904392 0.125398 0.00528343 +0.0579573 0.0676391 0.00414749 +-0.0890486 0.0915916 0.0214249 +0.0544885 0.0716156 0.00618127 +0.037936 0.0901639 0.0356574 +-0.0631289 0.155254 0.0269868 +0.0280038 0.120349 0.024295 +0.00325461 0.0697315 -0.0336623 +0.0198002 0.0768324 0.0515324 +0.0135718 0.0504901 0.0475195 +-0.0220331 0.041681 0.0538782 +-0.0322365 0.126297 0.00653811 +-0.020497 0.0855906 0.0563403 +0.0100844 0.123139 0.0340691 +-0.0917617 0.141982 0.0191718 +-0.00665267 0.0526646 -0.0325345 +0.0325469 0.0922927 -0.0176842 +-0.00490321 0.0383839 0.0141185 +0.0393963 0.049102 -0.00636122 +-0.0468295 0.0927337 -0.0216687 +0.0393484 0.0561243 -0.00568756 +0.0381042 0.0392738 0.00134927 +-0.02061 0.0653432 0.0492306 +-0.0644858 0.152894 -0.00250698 +0.0316363 0.118365 0.0113851 +-0.0625842 0.162383 -0.0563311 +-0.0126137 0.180121 -0.0236267 +-0.0562637 0.142432 0.0309288 +0.0389203 0.10838 0.0161659 +0.0468209 0.0708789 0.021127 +0.0153317 0.060873 -0.028643 +-0.067208 0.0447917 0.00368814 +-0.0638714 0.15469 -0.0385902 +-0.0624126 0.161536 -0.0416011 +-0.011049 0.124435 -0.00785173 +0.0143712 0.0493733 -0.0267066 +-0.0374862 0.0931566 0.0438456 +-0.0278525 0.0807805 0.0474761 +0.0573848 0.0670309 0.00292365 +-0.0304938 0.0960556 0.0449536 +0.0182602 0.127523 0.0192457 +0.0182204 0.080645 -0.0282763 +-0.00275795 0.0740872 -0.0359501 +-0.072697 0.155649 0.00759319 +-0.0857527 0.0792184 0.0135098 +-0.0604443 0.0456013 0.0296807 +-0.0528198 0.0927332 -0.0219739 +-0.0457202 0.0709417 -0.0164642 +-0.054497 0.0889964 0.0448823 +-0.0541353 0.147754 0.0254132 +0.05074 0.0503045 -0.00171178 +-0.0926993 0.124215 0.0352716 +0.00850767 0.0786 0.0556334 +-0.0141847 0.0405865 0.0511605 +-0.0500491 0.0345412 0.0367666 +-0.0744234 0.156022 0.0128056 +-0.0148381 0.0386367 -0.0157684 +-0.0896535 0.0916031 0.0184402 +-0.0279306 0.125506 0.00666413 +-0.0249827 0.0918474 0.0485489 +-0.0247746 0.0385687 -0.0102357 +-0.0718755 0.10648 -0.0114758 +0.0303733 0.115414 -0.00438737 +0.0390771 0.099844 -0.00681802 +-0.0601235 0.0447437 0.0425684 +0.0559507 0.0508031 0.00520531 +-0.087948 0.102288 0.00840013 +-0.0802939 0.0732789 0.00250413 +-0.00347452 0.114725 -0.0175669 +-0.0780015 0.155773 0.018849 +-0.0868392 0.0873072 0.00147849 +0.0114304 0.0346172 0.0371012 +-0.0154945 0.0925097 0.0555061 +0.0207547 0.10431 -0.0184628 +-0.0805113 0.153427 0.0283513 +-0.0133702 0.0343611 -0.0190243 +0.045363 0.0932019 0.00717004 +-0.0517619 0.079747 -0.0203928 +-0.011137 0.171308 -0.0197957 +-0.0797359 0.0706327 0.0105539 +-0.0435047 0.116629 0.0323741 +0.0461192 0.0786876 0.0190773 +0.0257679 0.0349257 0.0180133 +-0.0377436 0.127354 0.000111554 +0.0455391 0.0875946 0.0141649 +-0.0115776 0.0962625 -0.032007 +-0.0304054 0.0580102 -0.0194062 +-0.0519213 0.118323 0.0336042 +-0.0615165 0.15114 0.0355512 +-0.0268549 0.175688 -0.00910606 +0.0291872 0.0462618 0.034893 +-0.0828817 0.143196 0.00216401 +-0.0229243 0.0972075 0.044901 +-0.0420606 0.0344689 0.0332688 +0.00840712 0.0404044 -0.0234014 +-0.0584986 0.100161 0.0428821 +0.0267286 0.0521731 -0.0207566 +-0.0343564 0.043282 -0.028737 +0.035312 0.0840703 -0.0177861 +0.0167493 0.0874098 0.0506847 +-0.0706375 0.156126 0.0126907 +0.0395317 0.0596774 0.0306966 +0.0160357 0.0807986 0.0531419 +-0.0719071 0.105086 -0.0120336 +0.057752 0.0523416 0.0181873 +-0.0705862 0.166615 -0.0490027 +-0.069998 0.157611 -0.0031485 +-0.0629727 0.118457 0.044154 +-0.0098895 0.107351 -0.0224128 +-0.0668287 0.169972 -0.0351376 +-0.0538607 0.152062 0.0231076 +0.0286155 0.0795328 0.044942 +0.00747725 0.131195 0.0181386 +0.0525355 0.0678367 0.0261828 +-0.069983 0.033931 0.00665746 +-0.00449526 0.10588 0.044033 +-0.0647467 0.143415 -0.011401 +-0.0242451 0.0337053 -0.0224295 +0.0405945 0.102819 0.0221712 +-0.0253936 0.106122 -0.0223873 +-0.031866 0.126076 0.00521848 +-0.0903832 0.132413 0.0312232 +0.0270423 0.0648893 -0.0216756 +-0.0416036 0.125525 0.0208631 +-0.0642885 0.148287 -0.0250747 +0.043249 0.0705728 -0.00179391 +0.00750831 0.0772509 0.056126 +-0.0360471 0.125746 -0.0036679 +-0.0534999 0.0820142 0.0450601 +-0.0268076 0.0782799 -0.0366273 +-0.0630392 0.0336157 0.00836468 +0.00450283 0.0924607 0.0546761 +-0.0794816 0.0846149 0.0352279 +-0.0354976 0.116636 0.0319301 +0.0590094 0.0552651 0.0101755 +0.0177618 0.100614 -0.0224544 +0.0141872 0.0347155 0.0357788 +-0.0626395 0.0644043 -0.00619313 +-0.0472223 0.168222 -0.000777409 +-0.0688709 0.156258 0.0147705 +-0.00209707 0.130745 0.0203917 +0.0438165 0.0959355 0.0191615 +0.0272253 0.120021 -0.000250724 +-0.0623918 0.152158 -0.026581 +-0.0619803 0.153737 -0.02558 +-0.0110119 0.122536 -0.00980812 +-0.00845767 0.100229 0.0476033 +-0.053626 0.1255 0.0365054 +0.029243 0.0872327 -0.0208644 +-0.0561028 0.133503 -0.00512832 +-0.0536146 0.150855 0.0243962 +-0.0729449 0.0805494 0.0386997 +-0.0113093 0.0384672 0.00547553 +0.013929 0.0392001 0.0444158 +-0.0743245 0.179234 -0.0539852 +-0.0670834 0.168031 -0.0569976 +0.0269196 0.0418157 0.0333163 +-0.0261604 0.114813 -0.0155316 +0.054979 0.06227 -0.000302264 +0.0447631 0.0931576 0.00318223 +-0.028552 0.159576 0.000695282 +-0.0196334 0.0906851 0.0545345 +-0.0681661 0.173216 -0.0428508 +-0.0670035 0.166617 -0.0570134 +-0.00170857 0.0641356 -0.0344906 +-0.0302923 0.115032 -0.0157497 +-0.017789 0.0998203 0.0439009 +0.0575984 0.0711737 0.0088801 +-0.0559485 0.119826 0.0383628 +-0.0508832 0.106998 -0.0191626 +-0.0856518 0.096702 -0.000561949 +0.0433856 0.0475038 -0.0047769 +-0.0141839 0.177168 -0.0206609 +-0.0318261 0.0623615 -0.0184459 +-0.0694684 0.158126 -0.0509379 +-0.059088 0.0445923 -0.00517311 +-0.0680469 0.0887699 0.043444 +0.0413366 0.0588699 -0.00449648 +-0.0108613 0.16611 -0.0209706 +-0.0810695 0.111472 -0.000645954 +0.0236683 0.0535376 0.0428398 +-0.0525009 0.104252 0.0406803 +0.0178265 0.128119 0.0148069 +-0.0833287 0.0817012 -0.000498118 \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny5000.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny5000.pts new file mode 100644 index 000000000000..b9c0cbdc12bd --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny5000.pts @@ -0,0 +1,35948 @@ +1500 +-0.0164722 0.0382453 0.0209318 +-0.0641407 0.171114 -0.0471776 +0.023086 0.119339 0.0317977 +0.00506037 0.0347021 0.0393176 +-0.066143 0.143958 0.0413147 +-0.0445017 0.163753 0.00542301 +-0.0689729 0.181022 -0.0546459 +-0.0931085 0.131006 0.0192314 +0.000506827 0.0489752 0.0512269 +-0.0615935 0.160001 -0.0315914 +-0.0245032 0.0960169 0.0442753 +-0.0258992 0.0891655 0.049535 +-0.000499367 0.0456802 0.0470389 +-0.0171808 0.0654583 0.0528522 +0.00116916 0.131228 0.00582139 +-0.0356565 0.122935 -0.00798984 +-0.0701892 0.156285 0.021569 +-0.0173569 0.038443 0.0259817 +-0.0716413 0.0763478 -0.0132577 +0.0528545 0.0568172 0.0288563 +-0.0325067 0.0732308 0.0407775 +-0.0760686 0.150008 -0.00987485 +-0.030561 0.0774145 0.0410957 +-0.0833901 0.0762729 0.00451303 +-0.000492618 0.0925258 0.0556594 +-0.0358778 0.159506 0.00240863 +0.0115111 0.114076 0.0384616 +-0.0877889 0.0887187 0.00347532 +-0.0261028 0.115949 -0.0147279 +-0.0682913 0.165205 -0.0539869 +-0.0225512 0.0933694 -0.0331106 +-0.0538783 0.0999149 -0.0214389 +0.0435587 0.0959151 0.0211557 +-0.0167991 0.0388632 -0.0107644 +-0.0569142 0.0548839 0.00364185 +0.00749229 0.091015 0.0542708 +-0.065316 0.0625169 -0.002419 +-0.00749647 0.119689 0.0375376 +-0.0772165 0.0934484 -0.0125951 +-0.029008 0.0478606 -0.0250513 +0.00934189 0.0553527 -0.0303034 +-0.0578677 0.104042 -0.0186102 +0.0405495 0.0999198 -0.00379356 +-0.0894314 0.137929 0.0371779 +0.00710731 0.126603 -0.00643182 +0.058913 0.070492 0.0108657 +-0.0922485 0.120133 0.0292903 +0.0395325 0.105566 0.0221621 +-0.0376065 0.0365426 0.0444186 +-0.0550158 0.128128 -0.00563226 +-0.0561672 0.0336533 0.0186553 +0.0123436 0.0351165 0.0296251 +-0.0899184 0.131005 0.0413145 +0.0065365 0.100373 0.0469448 +-0.0502879 0.133796 0.0278403 +-0.0716838 0.0351362 0.00880221 +0.0579126 0.0523842 0.0101848 +-0.0639212 0.154791 0.00385831 +-0.0654795 0.0384216 -0.00684663 +-0.0615513 0.0624603 0.0259481 +-0.0368013 0.0842007 -0.0223672 +0.0522757 0.0574291 -0.0035048 +-0.0764972 0.123179 0.0527664 +0.0302998 0.0694384 -0.019812 +-0.0334269 0.0486094 0.0413091 +-0.00450651 0.0689184 0.0565193 +0.0425976 0.0887597 -0.00680771 +-0.0707351 0.156208 0.0228366 +0.0548799 0.0492406 0.0202107 +-0.00962948 0.168316 -0.023669 +-0.0313363 0.11605 -0.0148117 +-0.0225249 0.125571 0.0012278 +0.0122871 0.124953 0.0313975 +-0.0343047 0.125361 0.0205265 +-0.038499 0.0747376 0.0420783 +0.0292349 0.0759579 -0.0220376 +-0.0255784 0.0477093 -0.0263526 +-0.0750958 0.151313 -0.0258791 +0.0057743 0.0347896 0.0375885 +-0.0926124 0.120126 0.0272917 +-0.0366664 0.175138 -0.00407486 +-0.00549337 0.088417 0.0570387 +-0.0711473 0.17507 -0.0540267 +-0.0776118 0.0739521 0.0284675 +0.0376746 0.104662 0.0282621 +-0.0634881 0.121359 0.0469409 +0.0233296 0.0564006 -0.0254415 +-0.0399361 0.123254 0.0259269 +-0.000577398 0.0341134 -0.0181551 +-0.000496894 0.0520342 0.0541515 +-0.0701023 0.177167 -0.0478719 +-0.0641167 0.143926 0.0389732 +-0.0679369 0.165269 -0.0197719 +-0.0681029 0.138305 0.0455026 +-0.00280426 0.0384802 0.0198949 +-0.0628273 0.0924874 -0.0189476 +0.0084946 0.0869435 0.0558386 +0.00910286 0.0348066 0.0183719 +-0.0195983 0.126231 0.0213862 +-0.0584949 0.143878 0.0330085 +-0.0218343 0.0553077 0.0451067 +-0.0645685 0.147457 -0.0230581 +0.0426227 0.0691122 -0.00279622 +-0.035813 0.0842739 -0.0225525 +-0.0819685 0.0791215 0.0284136 +0.0328852 0.113087 -0.00384394 +-0.0677123 0.168615 -0.0283035 +-0.0556635 0.140996 0.0299986 +-0.0764958 0.131682 0.0526442 +0.0421796 0.0832522 0.0293553 +-0.0848653 0.0855483 0.0264341 +-0.0329445 0.121338 0.0269922 +-0.0320197 0.058187 -0.0133973 +-0.0322785 0.0421631 -0.0296986 +0.0401757 0.067497 -0.00878165 +-0.0904989 0.148452 0.0245146 +-0.00947974 0.0561444 0.0530127 +-0.0310333 0.0383692 -0.000250742 +-0.0780713 0.150403 0.0367551 +-0.0872126 0.146051 0.00824907 +-0.0735722 0.148626 -0.0268487 +-0.00548676 0.116904 0.0394711 +-0.0599006 0.132533 0.037981 +-0.093479 0.129659 0.0212406 +-0.0639063 0.120904 -0.00875525 +-0.028606 0.0356961 0.0524615 +-0.0652024 0.153998 -0.041972 +-0.0262134 0.0765572 0.0473962 +-0.0774721 0.155387 0.0234212 +-0.0628707 0.0345025 0.0358026 +0.0434964 0.0555926 0.0322399 +-0.0618022 0.142496 0.0370478 +-0.0638273 0.0910291 -0.0188305 +-0.0636286 0.0672101 0.0337087 +-0.0842132 0.092522 0.0298256 +0.0185123 0.115397 0.0365584 +-0.0666269 0.131204 0.0458398 +-0.0653475 0.165775 -0.0260007 +-0.0182573 0.181629 -0.0177335 +-0.0142757 0.185348 -0.0257883 +0.0485082 0.0624718 0.0300814 +-0.0254927 0.0974122 0.0441083 +-0.0446561 0.0349999 0.0427486 +-0.0616719 0.0410515 0.0160296 +-0.0179307 0.0931593 -0.0348763 +-0.00828798 0.130102 0.00662088 +-0.0525878 0.149334 0.020403 +-0.0102534 0.128943 0.0232512 +0.0445378 0.0959706 0.0101622 +-0.0465291 0.0335268 -0.00814027 +0.00437534 0.131145 0.0198749 +-0.0394369 0.03436 0.0321562 +-0.0107155 0.127812 0.0260097 +-0.0273383 0.17123 -0.0098418 +-0.0037118 0.0655569 -0.0347446 +-0.0630689 0.150547 -0.0265942 +-0.0776846 0.16386 -0.0329461 +-0.0728796 0.151218 -0.0388899 +0.038172 0.0967289 0.0325586 +-0.058907 0.0983413 -0.0195805 +-0.00549542 0.0965711 0.0536823 +0.00650609 0.0503877 0.0517539 +-0.0847722 0.113367 0.0459387 +0.0309512 0.0822193 0.0430727 +-0.0159859 0.0984773 0.0464357 +0.0361586 0.0781359 0.0382445 +0.0417308 0.0422749 0.000248643 +-0.0631435 0.175042 -0.061564 +-0.0251041 0.0945178 -0.0276305 +0.018776 0.122594 -0.0061273 +0.0173125 0.0726566 0.0514253 +-0.0377229 0.0724783 -0.0174913 +0.0173872 0.0432828 -0.0228623 +0.0416262 0.0912615 0.0286616 +-0.050567 0.0474222 -0.00850865 +-0.0150865 0.162585 -0.00969001 +0.0143357 0.0566765 -0.0290221 +-0.0309078 0.065095 -0.0224325 +0.045522 0.0805737 0.00219452 +-0.0725374 0.138625 0.0483183 +-0.0476365 0.150675 0.00992423 +-0.0799103 0.125126 -0.00560703 +-0.051025 0.159915 -0.00453945 +0.00139766 0.0419298 -0.0244976 +-0.0664219 0.0352675 0.015055 +-0.00832508 0.130422 0.0138058 +-0.00366678 0.0481589 -0.0301707 +-0.0738566 0.161044 -0.0339379 +0.0319703 0.0475137 0.0318758 +0.0188215 0.126955 0.00377584 +-0.0309617 0.044825 -0.0281993 +0.0456484 0.0875951 0.00518134 +-0.0521074 0.0583062 0.0285239 +-0.0171825 0.0382402 0.011747 +-0.0692976 0.0615474 0.00912978 +-0.0232044 0.175652 -0.0207635 +-0.0406662 0.0592305 -0.0118049 +0.0572429 0.0508905 0.0121849 +-0.0488285 0.0416917 0.0446681 +0.0455301 0.0677752 0.0254231 +-0.0846369 0.110251 0.00429821 +-0.0754652 0.163196 -0.0162299 +-0.0247271 0.0564997 0.0408849 +-0.0639975 0.0601011 0.00610183 +-0.0741599 0.155538 0.00126713 +-0.0728899 0.122329 -0.00823917 +0.010861 0.0360066 0.0447493 +0.0150176 0.0355797 0.04239 +-0.0437155 0.0710509 -0.0175901 +0.0271589 0.093209 -0.0206672 +-0.00592646 0.12418 0.0336126 +-0.0810295 0.0895599 -0.00769505 +-0.0920663 0.121362 0.00826874 +-0.0862277 0.0832671 0.00749085 +-0.085371 0.127983 -0.0026626 +-0.081815 0.108922 0.02836 +-0.0491537 0.135503 0.0034228 +0.00885847 0.0887054 -0.0320419 +-0.0673146 0.0446682 0.00602001 +0.0152697 0.128852 0.0195703 +0.0231834 0.0422122 0.040252 +-0.0286261 0.0463451 -0.0269667 +0.0449154 0.0763231 0.00019353 +-0.0387296 0.0739178 -0.0177449 +0.0212191 0.0819428 -0.0266321 +-0.00126307 0.039726 0.0470556 +-0.0261021 0.0379463 0.0228342 +-0.0448562 0.101383 -0.0214692 +-0.0014827 0.0390261 -0.00225591 +-0.0648948 0.103911 -0.0165942 +-0.0624902 0.155293 -0.0145941 +0.000436968 0.130385 0.0227651 +-0.0219738 0.059501 0.0451263 +-0.0502789 0.129408 -0.00267456 +-0.0216757 0.065257 0.0474751 +-0.0621482 0.16155 -0.0395978 +0.0427418 0.0916392 0.0261768 +0.00967962 0.127274 0.0289934 +-0.0728707 0.168003 -0.0450202 +-0.0305611 0.179398 -0.00755573 +0.0341402 0.0902832 0.0407178 +-0.0491119 0.0361611 0.0459929 +0.0392087 0.0739776 0.0338431 +-0.0897017 0.151503 0.0171224 +0.0407967 0.105643 0.0101649 +-0.023633 0.0478399 -0.0272396 +-0.0504958 0.0862332 0.0455716 +-0.0451092 0.153606 0.00834539 +-0.0616087 0.146812 0.0373554 +0.0280342 0.0346822 0.009507 +0.0565861 0.0685555 0.00335277 +-0.027568 0.0674298 0.0392602 +-0.0926576 0.117463 0.0373027 +-0.0334278 0.124984 0.0208436 +-0.0602518 0.034678 0.0430709 +-0.0574989 0.107052 0.0398301 +-0.091226 0.128161 0.00727002 +0.0400022 0.0913669 0.0315547 +-0.0656743 0.138242 0.0419702 +-0.0852141 0.0805923 0.0204766 +-0.0444957 0.111173 0.0370595 +-0.044489 0.0803636 0.042222 +-0.00648998 0.122405 0.0354776 +0.00602348 0.111527 -0.0200414 +-0.0860119 0.132159 0.00027761 +0.0521231 0.0734583 0.0172399 +-0.0155403 0.0446621 0.0510487 +-0.0397503 0.0768521 -0.0186787 +-0.0682155 0.0787029 0.0404793 +-0.0813927 0.0758934 0.0225084 +-0.010188 0.0386565 4.14997e-05 +-0.00149609 0.0912323 -0.0347548 +-0.0294974 0.111128 0.0367729 +-0.0503924 0.0501648 0.0186468 +-0.0104698 0.070299 0.0557764 +0.0327323 0.0809002 0.0421262 +-0.0328911 0.122131 -0.00712262 +-0.0861948 0.1005 0.0258994 +-0.0319282 0.178722 -0.00808101 +-0.050675 0.140101 0.0024044 +-0.0346788 0.0636729 -0.0139354 +-0.00820144 0.0344928 -0.0181278 +-0.0830162 0.0939316 0.0314035 +0.0438286 0.0611702 -0.00330591 +-0.0162799 0.127645 0.0211086 +-0.0615233 0.0354132 0.043881 +-0.0755937 0.0809959 -0.0116148 +-0.0632393 0.166259 -0.0385929 +-0.0156738 0.0511142 -0.0317767 +0.000751147 0.0339678 -0.0215355 +-0.0534027 0.0336932 0.022744 +0.0102837 0.0348658 -0.0091814 +-0.0285082 0.0874866 -0.0336017 +-0.0849712 0.111906 0.0292041 +-0.0732162 0.169408 -0.0460252 +-0.00746424 0.110009 0.0430329 +-0.0587154 0.0723411 -0.016523 +-0.00333145 0.0968513 -0.0305901 +0.0385608 0.0713011 0.0346329 +-0.0463734 0.133247 0.0130756 +-0.0474986 0.104275 0.0408376 +-0.0714849 0.147284 -0.0260827 +-0.0404433 0.0461446 -0.0193164 +0.000709469 0.125628 -0.00726116 +0.028516 0.117882 -0.00302906 +-0.00249354 0.0746702 0.0587588 +0.0463101 0.0806468 0.00818141 +-0.0245515 0.114015 0.0358596 +-0.0396488 0.0563195 -0.0111963 +-0.0236961 0.0607746 0.0425604 +-0.0336359 0.0548461 -0.0105101 +-0.0585033 0.0337545 0.0163089 +0.0212208 0.126407 0.0160623 +-0.0729862 0.15207 0.0354642 +-0.085378 0.128494 0.0496125 +0.00429457 0.122356 -0.0118056 +0.0203517 0.0672611 0.0487139 +-0.0452845 0.0395903 -0.0182935 +-0.0211124 0.182965 -0.0210132 +-0.0295465 0.0819132 0.0441437 +-0.0777488 0.07493 0.029356 +0.00824435 0.0966482 -0.0263491 +-0.0588066 0.0854157 -0.0208208 +-0.0718999 0.113582 -0.00821597 +-0.0893735 0.0901981 0.0104595 +0.032603 0.0835706 0.0419526 +-0.0230608 0.0594124 0.0433799 +0.0284544 0.121423 0.0116324 +-0.0832785 0.12444 0.0504652 +-0.0396241 0.0520021 -0.0108773 +0.00721225 0.0837864 -0.0330068 +-0.046713 0.131987 0.00556897 +-0.0663702 0.157999 -0.00906779 +-0.067736 0.0779793 -0.0166569 +-0.0508692 0.102779 -0.0209206 +-0.0828958 0.151378 0.00422572 +-0.0346622 0.118788 -0.0116368 +-0.0726425 0.0716156 -0.00744076 +-0.059725 0.0469427 0.0326718 +-0.0468444 0.033579 -0.0045851 +-0.0384976 0.100064 0.0415702 +-0.050989 0.121022 -0.0119137 +-0.0624226 0.152205 -0.0125757 +-0.085741 0.151793 0.0266482 +-0.0826468 0.144713 0.0407672 +-0.0685649 0.0705046 -0.00966184 +-0.0734033 0.167233 -0.0217479 +-0.0455099 0.155064 0.0077969 +0.022652 0.0862116 0.0486888 +0.043364 0.0547822 -0.00644446 +-0.054457 0.14621 0.0274041 +-0.0639777 0.155958 0.0237716 +-0.0882347 0.0861347 0.011472 +0.00545294 0.1216 -0.0129959 +-0.0334673 0.174268 -0.00177832 +-0.00402179 0.129762 0.0240423 +-0.0185051 0.0711438 0.0540217 +-0.0872329 0.150111 0.00920897 +-0.090033 0.147105 0.0269347 +-0.0141936 0.0419832 0.0511586 +-0.0335873 0.154463 -0.00838872 +0.0441357 0.083266 -0.000805736 +-0.0528842 0.102762 -0.0205636 +-0.0125091 0.0815143 0.0575917 +0.0197435 0.125962 0.0226458 +-0.067993 0.0619274 0.01978 +-0.0216083 0.039391 -0.0287125 +-0.0767116 0.165247 -0.022942 +-0.0861936 0.111308 0.0401352 +-0.0238165 0.0854111 -0.0376407 +-0.0442161 0.123225 0.0243959 +-0.0175443 0.0460366 0.0510389 +-0.0272334 0.0902723 -0.0326005 +-0.0459359 0.168402 -0.00594095 +0.0355423 0.0512597 0.0315836 +0.0451079 0.0636949 -0.00183531 +-0.0368834 0.125578 -0.00482073 +0.0196258 0.0457587 -0.0217227 +-0.00773224 0.109619 -0.0221011 +-0.0514957 0.0876341 0.0455102 +-0.00269376 0.0613003 -0.0344696 +-0.0512049 0.147808 0.0143958 +0.0266901 0.106496 -0.0148024 +0.0383861 0.0476151 -0.00591592 +-0.0136895 0.0952904 -0.0330103 +0.0368491 0.0767795 0.0374896 +-0.029592 0.0522946 -0.0203629 +0.0482309 0.0500295 -0.00369862 +0.0381363 0.0794306 0.0358549 +-0.0677271 0.155796 -0.00229118 +0.026043 0.0392404 0.0305576 +0.0208388 0.126564 0.0173475 +0.0159735 0.0448127 0.0438765 +-0.0681757 0.118633 0.0523539 +-0.065068 0.136793 0.0410949 +-0.0454458 0.168254 0.00168996 +-0.0715222 0.142818 0.0455702 +-0.0604912 0.112522 0.03629 +-0.00074702 0.0712329 -0.0350931 +-0.0894331 0.150114 0.0121902 +-0.0185746 0.0381525 0.0151621 +0.0291213 0.0348096 0.00960912 +0.0404448 0.0985503 0.0271661 +0.0134712 0.0936014 0.0511282 +-0.021496 0.103017 0.0435858 +0.00918856 0.0342345 -0.00132638 +-0.0508332 0.0956285 -0.0221275 +-0.0613646 0.0394268 0.0439671 +0.0264379 0.0968548 0.0436578 +-0.0646669 0.0405364 0.0387423 +0.0125029 0.0475354 0.045933 +0.0412949 0.104257 0.00416372 +-0.00222052 0.117102 -0.0161156 +-0.00995662 0.169734 -0.0198047 +0.0200755 0.0399795 -0.0157069 +-0.0839165 0.110514 0.0395089 +-0.0546435 0.116042 -0.0146857 +0.0268767 0.0854059 -0.022529 +-0.0543926 0.0337363 0.0224962 +-0.049781 0.0841032 -0.0216622 +0.0431463 0.100109 0.00616795 +0.0393814 0.0780345 0.0341058 +-0.0162612 0.17862 -0.0260128 +-0.0335093 0.0676035 0.0406399 +-0.0176483 0.0352702 -0.0188352 +-0.031463 0.0519033 0.0373773 +-0.0803572 0.0803552 0.0319871 +-0.0320868 0.159267 -0.0129293 +0.0132853 0.0589897 0.0507165 +-0.0103631 0.180289 -0.0277342 +-0.0144925 0.0559441 0.0511232 +-0.0246444 0.0381166 0.0247786 +0.0170669 0.0871276 -0.028336 +0.00372554 0.105196 -0.0213905 +-0.0777857 0.156925 -0.0179137 +0.0578227 0.0710073 0.0178627 +-0.0582482 0.0336534 0.0128901 +-0.0520861 0.0545712 0.0266312 +0.0269849 0.113053 -0.00983991 +0.0429421 0.0467386 0.030224 +0.00548112 0.11414 0.0405028 +0.0607975 0.0637336 0.0101416 +-0.0895137 0.135181 0.0391853 +-0.0822803 0.139383 0.0462108 +0.00350363 0.0883757 0.0563643 +-0.0599112 0.109712 -0.0163845 +-0.0699244 0.107994 -0.0118147 +-0.073438 0.145781 -0.0138542 +-0.0702694 0.156361 0.0186365 +0.0365208 0.0713424 0.036933 +-0.0764811 0.141399 0.0471717 +-0.0338378 0.0943788 -0.02372 +-0.0185768 0.055451 0.0489119 +-0.0294962 0.107041 0.0398129 +0.0351663 0.0783387 -0.0157415 +-0.0823976 0.095314 0.0321564 +0.0458052 0.08902 0.00916777 +0.00466954 0.0341296 0.0180802 +0.012258 0.0751733 -0.0308354 +-0.0176564 0.0480544 -0.0295902 +-0.0487658 0.0811872 -0.020682 +-0.0375125 0.045091 0.0407522 +0.00960807 0.0375632 0.0322947 +0.0522688 0.0462249 0.00921199 +-0.0452834 0.0395877 -0.019291 +-0.0396931 0.126183 0.0200311 +-0.0903381 0.144712 0.0141544 +-0.0430213 0.0450576 -0.0153284 +-0.0539191 0.129665 -0.00510771 +-0.0384876 0.108386 0.0375357 +-0.0496388 0.0605583 -0.0113235 +-0.034501 0.115223 0.0328885 +-0.0540284 0.131061 -0.00500164 +-0.0147028 0.0389017 0.0333119 +-0.0207376 0.0641563 -0.0358205 +0.00590682 0.131658 0.0132863 +-0.0819436 0.154696 0.0145801 +0.0526661 0.0660937 -0.000184776 +-0.0526201 0.14007 0.0244025 +-0.0752504 0.177839 -0.0529463 +-0.0574955 0.0946379 0.0447737 +0.0456129 0.0904097 0.00518194 +-0.0282629 0.122524 0.022734 +-0.0680338 0.142566 0.0438693 +-0.0643033 0.0426016 0.0312522 +-0.0314971 0.102929 0.041974 +-0.00589664 0.0980966 0.0519993 +-0.0542782 0.132533 0.0338047 +-0.0911122 0.11473 0.0343167 +-0.0493972 0.140141 0.00739907 +-0.0577664 0.0485104 0.00767417 +-0.0629684 0.139576 0.0370615 +-0.0122087 0.128137 0.0240139 +0.00116984 0.129366 -0.00128907 +-0.039496 0.0634667 0.0415276 +-0.0427066 0.0696149 -0.0170299 +-0.0721201 0.149786 -0.0402916 +-0.0637423 0.168365 -0.0426884 +-0.0228169 0.0383283 0.0285633 +-0.0894925 0.143336 0.0131803 +-0.0408822 0.128708 0.0107294 +-0.043783 0.147719 0.00491206 +0.00912223 0.0833108 0.0554277 +-0.0543042 0.0335497 0.00301212 +-0.0544171 0.0333785 -0.00775516 +0.0295237 0.0727272 0.042682 +-0.0504982 0.112495 0.0358796 +-0.0240218 0.119915 -0.0108978 +-0.0535232 0.0556038 0.0117195 +-0.0480175 0.133707 0.00490199 +0.00583381 0.129313 0.0261699 +-0.0405566 0.149165 -0.00293165 +-0.0286765 0.0690744 -0.0314836 +0.0453693 0.0693828 0.00245115 +0.0581659 0.056561 0.00517446 +0.0192888 0.0651078 -0.0282476 +-0.0228892 0.0739252 0.0512281 +-0.0217183 0.113234 -0.017904 +0.0365187 0.0526805 0.0315096 +0.0490482 0.0539975 0.0303486 +0.0175085 0.114012 0.0373101 +-0.0328107 0.126843 0.0122027 +-0.0687814 0.0336983 0.00353162 +0.0220892 0.0906332 -0.0239505 +-0.0460528 0.122513 0.026245 +0.0381409 0.109688 0.00657231 +0.0368421 0.0742334 -0.0127504 +-0.0657975 0.0340784 0.0127357 +-0.0706216 0.146831 -0.0255714 +-0.0468292 0.091298 -0.0217206 +-0.0914681 0.144718 0.0171554 +-0.0624908 0.0343254 0.0238098 +0.0543739 0.0477987 0.0161989 +-0.0195403 0.1757 -0.0161256 +0.0224671 0.0343921 0.00678503 +-0.0654707 0.155271 0.00728456 +-0.0897135 0.12265 0.00431103 +-0.0501651 0.0361307 0.0461721 +-0.0901888 0.139114 0.0151891 +-0.0726107 0.156829 -0.0349095 +-0.0334964 0.0718545 0.0411869 +0.0106165 0.0644536 0.0539383 +0.0274263 0.0491525 0.0376576 +-0.0157908 0.169796 -0.0160148 +-0.0608326 0.17151 -0.0610901 +0.0136156 0.126814 -0.00267762 +0.0293325 0.0535401 0.0386956 +-0.0652579 0.153012 -0.0402459 +0.0264019 0.036087 0.0225582 +0.0101281 0.105858 -0.0202342 +-0.0674046 0.0833115 0.0429955 +-0.0312435 0.0538841 -0.0143722 +0.0424267 0.0441756 -0.00158684 +-0.0305089 0.0760274 0.0408429 +-0.0849899 0.127963 -0.0030064 +-0.0223249 0.0386602 -0.0135496 +0.0216012 0.112963 -0.0137495 +-0.0224297 0.0552774 0.0442986 +-0.093152 0.121537 0.0362834 +-0.0384463 0.166779 0.00239389 +0.0317419 0.0667553 -0.0187125 +-0.0127135 0.100022 -0.0239701 +0.0204112 0.0371925 -0.00568428 +0.0383001 0.0969495 -0.00880451 +-0.0500528 0.150184 -0.0037815 +-0.0578783 0.106898 -0.0179862 +0.0485378 0.0682762 0.00156381 +-0.0708965 0.0341323 0.00629169 +-0.0871174 0.110466 0.0103621 +-0.0235739 0.0944939 0.0470656 +-0.0164815 0.0515035 0.0485835 +0.0325428 0.0380502 1.57112e-05 +0.0385774 0.0888011 0.0348199 +-0.0628692 0.0445185 0.0382675 +-0.0572856 0.125533 0.0399888 +-0.0780066 0.0940671 0.0362827 +-0.0361012 0.160724 -0.0132118 +0.0200495 0.124902 -0.000599563 +0.0101263 0.107276 -0.0197522 +0.0224877 0.0961643 0.0466342 +-0.077715 0.0852782 -0.0115916 +-0.0164955 0.105778 0.0423459 +-0.0725318 0.101313 0.038599 +-0.0663565 0.0783826 0.0411592 +-0.0644378 0.17995 -0.0588828 +-0.0645973 0.171184 -0.0458828 +0.0111199 0.129735 0.0223368 +-0.018333 0.172741 -0.0161594 +-0.0864925 0.10492 0.00639597 +-0.0144943 0.0500942 0.0487331 +-0.0855601 0.095177 0.0282718 +1.67787e-05 0.0386604 0.0239291 +0.0109499 0.0344084 0.00259617 +-0.0270041 0.168274 -0.00938266 +-0.0378811 0.107099 -0.0200653 +0.060304 0.0664655 0.0101406 +-0.0478845 0.108472 -0.0188663 +0.0181085 0.0591163 0.0489014 +-0.0260899 0.0522789 0.0395517 +0.0049437 0.0984176 -0.0242128 +-0.0623314 0.0357831 0.0433788 +0.0110403 0.0725847 0.0546235 +-0.0864956 0.084691 0.0204775 +-0.00849993 0.0787667 0.0579153 +-0.0260008 0.0382709 0.000860974 +-0.06937 0.145758 -0.0234859 +-0.0314168 0.117929 -0.0127586 +-0.0261669 0.0378674 0.0174813 +-0.0832309 0.120353 0.049216 +-0.0617814 0.16156 -0.0355923 +-0.0779669 0.165862 -0.0278956 +-0.0698398 0.0922797 -0.0162924 +0.0483255 0.0503286 -0.00380134 +0.0451716 0.0889782 0.0181643 +0.0329815 0.112282 -0.00498623 +0.0279206 0.0916217 -0.0209795 +0.0155 0.11402 0.0377783 +-0.0105379 0.0431327 0.0497176 +0.0606167 0.0609422 0.00915424 +-0.0181983 0.18599 -0.0174024 +0.0189716 0.115037 -0.0139804 +-0.0590849 0.0644137 0.0318252 +-0.0819254 0.12582 0.0519232 +-0.0588398 0.0954803 -0.0203334 +-0.0674426 0.148384 -0.0326115 +0.0387628 0.10462 0.0262683 +0.00841723 0.129272 0.0256623 +-0.0196119 0.0364667 -0.0278852 +-0.0376923 0.162356 -0.000243841 +1.88808e-05 0.115368 -0.0182789 +0.0393962 0.0505525 -0.00668347 +-0.0116788 0.0555838 -0.0339192 +0.0363865 0.0713868 -0.0138007 +-0.0821651 0.110069 0.034903 +0.022728 0.117081 -0.0101857 +-0.0515389 0.0417461 -0.0105815 +0.0219588 0.123501 -0.00109075 +0.00735928 0.0960033 -0.0276522 +-0.00349428 0.119696 0.0379021 +-0.0470844 0.151656 -0.00519447 +-0.0242296 0.0941248 -0.0298734 +0.0152433 0.0658912 0.0518711 +-0.021804 0.0376594 -0.0181241 +-0.0133966 0.121962 -0.00916065 +0.0365536 0.108655 0.0265769 +-0.0668098 0.0880715 -0.0180091 +-0.0665181 0.171112 -0.0407548 +0.0493343 0.0532247 -0.0043679 +0.0423933 0.0901635 -0.00682346 +-0.0624126 0.150651 -0.0115734 +0.0373944 0.0505276 -0.00658166 +-0.0411461 0.162173 -0.0113613 +-0.065916 0.0662086 0.0305519 +-0.0289729 0.083488 0.0456837 +-0.000642523 0.0347913 0.0398677 +-0.0738147 0.065744 0.00631032 +0.00351431 0.0938625 0.0544725 +-0.0467733 0.12389 0.0269319 +0.0246632 0.123785 0.00595837 +-0.0715256 0.0958228 0.0413941 +0.00252922 0.0362636 0.0463395 +0.00948792 0.0963424 0.0500581 +0.0292035 0.0400739 0.0286474 +-0.0309481 0.0706991 -0.0284733 +-0.054091 0.152763 0.0215579 +0.0118527 0.105542 -0.0197545 +-0.0404793 0.0832528 0.0431634 +-0.0448438 0.0985036 -0.0215544 +-0.032014 0.0567822 -0.0123897 +0.00040853 0.0356817 0.00488121 +0.0447245 0.0861403 0.0231669 +-0.0426307 0.0338188 -0.00946517 +-0.0710495 0.141325 -0.00813095 +-0.0255896 0.182763 -0.0105092 +-0.0838169 0.107636 0.0253505 +-0.0796245 0.0859561 0.0353266 +0.0240034 0.0449703 0.0396985 +0.00450108 0.0716864 0.0560951 +-0.0676894 0.0750921 -0.0153176 +-0.0466572 0.0369109 -0.0172699 +-0.016529 0.0558872 0.0508401 +-0.087831 0.103641 0.0093887 +0.0272256 0.10745 0.0377741 +-0.0670064 0.0337953 0.0073865 +-0.0866888 0.0833263 0.0124872 +0.0152687 0.0779357 -0.0299953 +-0.0851819 0.152725 0.0105454 +0.000352424 0.0511166 -0.0306262 +0.0518495 0.0464359 0.0201911 +0.0554005 0.0553511 0.0254886 +-0.0886141 0.0928486 0.00844707 +0.0129712 0.130228 0.0115965 +-0.085549 0.104961 0.0233427 +0.0515991 0.0496316 0.0251833 +0.0131946 0.0878791 -0.0305989 +-0.0693376 0.131255 0.0489674 +-0.0660205 0.167997 -0.0305503 +-0.0666146 0.174697 -0.0480375 +-0.0293346 0.0347045 0.0427947 +-0.0553259 0.126836 -0.00601308 +-0.058583 0.0460291 0.0113967 +-0.0416277 0.0337441 -0.014735 +-0.0446642 0.0621749 -0.0132201 +0.0295862 0.120365 0.0134787 +-0.0697163 0.064282 0.022673 +-0.0805487 0.0789662 0.0306236 +-0.0787564 0.154933 0.00983696 +-0.0662707 0.14708 -0.0258685 +-0.0248167 0.0949702 -0.0267501 +-0.0407693 0.0826515 -0.0208197 +0.000514101 0.0346343 0.00952105 +-0.0533361 0.138123 0.0280776 +-0.0689277 0.115103 -0.00892086 +-0.0865224 0.0913375 0.0024428 +0.0232602 0.0790529 -0.0256674 +0.0296786 0.0679688 -0.0198342 +-0.0331127 0.123309 0.0239558 +0.0276403 0.118218 0.0284429 +0.00238303 0.0449286 -0.0261957 +-0.0928278 0.124236 0.0382657 +-0.0868685 0.11045 0.00936714 +-0.0254875 0.0959781 0.0438332 +0.0132252 0.0808221 -0.0308314 +0.035265 0.0591791 0.0368077 +-0.00944135 0.168135 -0.0197365 +0.0011864 0.12951 0.0259323 +-0.0139593 0.0967237 -0.0305143 +-0.00848922 0.0385737 0.0258802 +0.0562981 0.0619429 0.0011209 +0.0322546 0.0987343 -0.0145759 +-0.0268707 0.103016 -0.0234914 +-0.00655639 0.0384205 0.0209905 +-0.0296666 0.0774462 0.0418826 +-0.0626586 0.0676213 -0.0103966 +0.0374569 0.0904362 -0.0137042 +-0.0712181 0.161 -0.0439365 +0.0243668 0.0889213 0.0476805 +-0.0336134 0.0408899 -0.0298935 +-0.0404969 0.0916505 0.0425962 +0.0443454 0.0903358 0.0221636 +-0.0435232 0.163746 0.00524284 +-0.0649943 0.0623954 0.0235277 +-0.0613093 0.0593276 0.0181457 +-0.0717978 0.155398 -0.0409076 +-0.00868753 0.0584178 -0.0339256 +-0.0904383 0.119966 0.00529664 +-0.0601615 0.0333995 -0.00165181 +-0.0612252 0.0407891 0.0437895 +-0.0537348 0.0738508 -0.0172852 +-0.0709057 0.10512 -0.0125462 +-0.00333997 0.039253 0.0353398 +-0.0469903 0.145002 0.00194161 +-0.0250386 0.0659034 -0.0335362 +-0.023273 0.0382876 0.00502865 +0.0111228 0.0960826 -0.0257288 +0.0198113 0.0954368 -0.0230239 +0.038476 0.104075 -0.00282883 +-0.0843581 0.0883713 0.0286614 +-0.0930341 0.118841 0.0362969 +-0.0646767 0.146003 -0.0179612 +0.0284626 0.102127 0.0395666 +-0.0435018 0.113907 0.034675 +-0.0604863 0.0790224 0.042794 +-0.089042 0.112536 0.0205154 +-0.0524675 0.0344946 0.0345461 +-0.0848716 0.119101 -0.00207765 +-0.0120923 0.11442 -0.0172013 +-0.079929 0.151371 0.00121035 +-0.0920085 0.116136 0.0393096 +0.0361533 0.112569 0.0130564 +-0.0196629 0.125034 -0.00230889 +0.000499429 0.115573 0.0406664 +-0.0560183 0.147198 -0.00168648 +-0.0873616 0.110481 0.0113565 +-0.0416844 0.0636674 -0.0137203 +-0.0651889 0.153592 -0.00278678 +0.0471599 0.07398 0.0153485 +0.0404106 0.0873775 0.0321991 +-0.019434 0.184905 -0.0153275 +-0.0438294 0.0913555 -0.0224139 +-0.0527613 0.0797578 -0.020501 +-0.0314155 0.0651435 -0.021432 +0.00948509 0.0950229 0.0512669 +0.0346346 0.107297 -0.007625 +-0.0870053 0.0954387 0.00242783 +-0.0617312 0.142927 -0.00565867 +-0.0538929 0.14622 0.0244012 +0.0339044 0.115273 0.00366751 +0.049575 0.0693171 0.00251779 +-0.0861009 0.106274 0.00635995 +-0.00751182 0.075985 0.0578234 +-0.0761849 0.0933719 -0.0135017 +0.0266626 0.0672707 0.0437593 +-0.0314925 0.0932138 0.0444288 +0.0112937 0.0680868 -0.0307505 +-0.086045 0.141863 0.00720055 +0.000490707 0.111422 0.0424934 +-0.0516022 0.0502173 -0.00741774 +-0.0709386 0.131124 -0.00852217 +-0.0291841 0.125368 0.0164845 +-0.0012258 0.095852 -0.0315171 +-0.000697567 0.0641196 -0.0342689 +-0.0797379 0.0738711 0.0228323 +-0.0705682 0.0382102 0.00943236 +-0.0558807 0.102663 -0.0193944 +0.0262875 0.0835737 0.0468767 +-0.0206175 0.0364922 -0.0281092 +0.0306136 0.0779431 -0.0207534 +0.037492 0.0983062 -0.0097724 +-0.0861064 0.0806138 0.0174966 +-0.0488748 0.105594 -0.0196597 +-0.0499497 0.0724883 0.0409516 +-0.060435 0.131107 0.0389542 +-0.0197383 0.108898 -0.0213322 +-0.0328414 0.0943934 -0.0238538 +0.0071329 0.104451 -0.0211019 +-0.0904392 0.125398 0.00528343 +0.0579573 0.0676391 0.00414749 +-0.0890486 0.0915916 0.0214249 +0.0544885 0.0716156 0.00618127 +0.037936 0.0901639 0.0356574 +-0.0631289 0.155254 0.0269868 +0.0280038 0.120349 0.024295 +0.00325461 0.0697315 -0.0336623 +0.0198002 0.0768324 0.0515324 +0.0135718 0.0504901 0.0475195 +-0.0220331 0.041681 0.0538782 +-0.0322365 0.126297 0.00653811 +-0.020497 0.0855906 0.0563403 +0.0100844 0.123139 0.0340691 +-0.0917617 0.141982 0.0191718 +-0.00665267 0.0526646 -0.0325345 +0.0325469 0.0922927 -0.0176842 +-0.00490321 0.0383839 0.0141185 +0.0393963 0.049102 -0.00636122 +-0.0468295 0.0927337 -0.0216687 +0.0393484 0.0561243 -0.00568756 +0.0381042 0.0392738 0.00134927 +-0.02061 0.0653432 0.0492306 +-0.0644858 0.152894 -0.00250698 +0.0316363 0.118365 0.0113851 +-0.0625842 0.162383 -0.0563311 +-0.0126137 0.180121 -0.0236267 +-0.0562637 0.142432 0.0309288 +0.0389203 0.10838 0.0161659 +0.0468209 0.0708789 0.021127 +0.0153317 0.060873 -0.028643 +-0.067208 0.0447917 0.00368814 +-0.0638714 0.15469 -0.0385902 +-0.0624126 0.161536 -0.0416011 +-0.011049 0.124435 -0.00785173 +0.0143712 0.0493733 -0.0267066 +-0.0374862 0.0931566 0.0438456 +-0.0278525 0.0807805 0.0474761 +0.0573848 0.0670309 0.00292365 +-0.0304938 0.0960556 0.0449536 +0.0182602 0.127523 0.0192457 +0.0182204 0.080645 -0.0282763 +-0.00275795 0.0740872 -0.0359501 +-0.072697 0.155649 0.00759319 +-0.0857527 0.0792184 0.0135098 +-0.0604443 0.0456013 0.0296807 +-0.0528198 0.0927332 -0.0219739 +-0.0457202 0.0709417 -0.0164642 +-0.054497 0.0889964 0.0448823 +-0.0541353 0.147754 0.0254132 +0.05074 0.0503045 -0.00171178 +-0.0926993 0.124215 0.0352716 +0.00850767 0.0786 0.0556334 +-0.0141847 0.0405865 0.0511605 +-0.0500491 0.0345412 0.0367666 +-0.0744234 0.156022 0.0128056 +-0.0148381 0.0386367 -0.0157684 +-0.0896535 0.0916031 0.0184402 +-0.0279306 0.125506 0.00666413 +-0.0249827 0.0918474 0.0485489 +-0.0247746 0.0385687 -0.0102357 +-0.0718755 0.10648 -0.0114758 +0.0303733 0.115414 -0.00438737 +0.0390771 0.099844 -0.00681802 +-0.0601235 0.0447437 0.0425684 +0.0559507 0.0508031 0.00520531 +-0.087948 0.102288 0.00840013 +-0.0802939 0.0732789 0.00250413 +-0.00347452 0.114725 -0.0175669 +-0.0780015 0.155773 0.018849 +-0.0868392 0.0873072 0.00147849 +0.0114304 0.0346172 0.0371012 +-0.0154945 0.0925097 0.0555061 +0.0207547 0.10431 -0.0184628 +-0.0805113 0.153427 0.0283513 +-0.0133702 0.0343611 -0.0190243 +0.045363 0.0932019 0.00717004 +-0.0517619 0.079747 -0.0203928 +-0.011137 0.171308 -0.0197957 +-0.0797359 0.0706327 0.0105539 +-0.0435047 0.116629 0.0323741 +0.0461192 0.0786876 0.0190773 +0.0257679 0.0349257 0.0180133 +-0.0377436 0.127354 0.000111554 +0.0455391 0.0875946 0.0141649 +-0.0115776 0.0962625 -0.032007 +-0.0304054 0.0580102 -0.0194062 +-0.0519213 0.118323 0.0336042 +-0.0615165 0.15114 0.0355512 +-0.0268549 0.175688 -0.00910606 +0.0291872 0.0462618 0.034893 +-0.0828817 0.143196 0.00216401 +-0.0229243 0.0972075 0.044901 +-0.0420606 0.0344689 0.0332688 +0.00840712 0.0404044 -0.0234014 +-0.0584986 0.100161 0.0428821 +0.0267286 0.0521731 -0.0207566 +-0.0343564 0.043282 -0.028737 +0.035312 0.0840703 -0.0177861 +0.0167493 0.0874098 0.0506847 +-0.0706375 0.156126 0.0126907 +0.0395317 0.0596774 0.0306966 +0.0160357 0.0807986 0.0531419 +-0.0719071 0.105086 -0.0120336 +0.057752 0.0523416 0.0181873 +-0.0705862 0.166615 -0.0490027 +-0.069998 0.157611 -0.0031485 +-0.0629727 0.118457 0.044154 +-0.0098895 0.107351 -0.0224128 +-0.0668287 0.169972 -0.0351376 +-0.0538607 0.152062 0.0231076 +0.0286155 0.0795328 0.044942 +0.00747725 0.131195 0.0181386 +0.0525355 0.0678367 0.0261828 +-0.069983 0.033931 0.00665746 +-0.00449526 0.10588 0.044033 +-0.0647467 0.143415 -0.011401 +-0.0242451 0.0337053 -0.0224295 +0.0405945 0.102819 0.0221712 +-0.0253936 0.106122 -0.0223873 +-0.031866 0.126076 0.00521848 +-0.0903832 0.132413 0.0312232 +0.0270423 0.0648893 -0.0216756 +-0.0416036 0.125525 0.0208631 +-0.0642885 0.148287 -0.0250747 +0.043249 0.0705728 -0.00179391 +0.00750831 0.0772509 0.056126 +-0.0360471 0.125746 -0.0036679 +-0.0534999 0.0820142 0.0450601 +-0.0268076 0.0782799 -0.0366273 +-0.0630392 0.0336157 0.00836468 +0.00450283 0.0924607 0.0546761 +-0.0794816 0.0846149 0.0352279 +-0.0354976 0.116636 0.0319301 +0.0590094 0.0552651 0.0101755 +0.0177618 0.100614 -0.0224544 +0.0141872 0.0347155 0.0357788 +-0.0626395 0.0644043 -0.00619313 +-0.0472223 0.168222 -0.000777409 +-0.0688709 0.156258 0.0147705 +-0.00209707 0.130745 0.0203917 +0.0438165 0.0959355 0.0191615 +0.0272253 0.120021 -0.000250724 +-0.0623918 0.152158 -0.026581 +-0.0619803 0.153737 -0.02558 +-0.0110119 0.122536 -0.00980812 +-0.00845767 0.100229 0.0476033 +-0.053626 0.1255 0.0365054 +0.029243 0.0872327 -0.0208644 +-0.0561028 0.133503 -0.00512832 +-0.0536146 0.150855 0.0243962 +-0.0729449 0.0805494 0.0386997 +-0.0113093 0.0384672 0.00547553 +0.013929 0.0392001 0.0444158 +-0.0743245 0.179234 -0.0539852 +-0.0670834 0.168031 -0.0569976 +0.0269196 0.0418157 0.0333163 +-0.0261604 0.114813 -0.0155316 +0.054979 0.06227 -0.000302264 +0.0447631 0.0931576 0.00318223 +-0.028552 0.159576 0.000695282 +-0.0196334 0.0906851 0.0545345 +-0.0681661 0.173216 -0.0428508 +-0.0670035 0.166617 -0.0570134 +-0.00170857 0.0641356 -0.0344906 +-0.0302923 0.115032 -0.0157497 +-0.017789 0.0998203 0.0439009 +0.0575984 0.0711737 0.0088801 +-0.0559485 0.119826 0.0383628 +-0.0508832 0.106998 -0.0191626 +-0.0856518 0.096702 -0.000561949 +0.0433856 0.0475038 -0.0047769 +-0.0141839 0.177168 -0.0206609 +-0.0318261 0.0623615 -0.0184459 +-0.0694684 0.158126 -0.0509379 +-0.059088 0.0445923 -0.00517311 +-0.0680469 0.0887699 0.043444 +0.0413366 0.0588699 -0.00449648 +-0.0108613 0.16611 -0.0209706 +-0.0810695 0.111472 -0.000645954 +0.0236683 0.0535376 0.0428398 +-0.0525009 0.104252 0.0406803 +0.0178265 0.128119 0.0148069 +-0.0833287 0.0817012 -0.000498118 +-0.0582078 0.148218 0.0334722 +0.0469627 0.0735494 0.00823046 +0.0348898 0.0889372 0.0400127 +0.0544139 0.0478718 0.0102055 +-0.0519767 0.0343446 0.0277664 +-0.0526872 0.144684 0.0193835 +-0.0654577 0.0403952 0.0367257 +-0.0632766 0.146612 -0.0147592 +-0.0756638 0.0968147 0.0380937 +-0.0121766 0.169774 -0.0245851 +-0.0313173 0.115081 -0.0157968 +0.00550009 0.105744 0.0419393 +0.0170456 0.0808203 0.0528345 +0.00997537 0.129323 0.0247881 +-0.000565033 0.0348667 0.0451983 +-0.0170398 0.124093 -0.00535053 +0.0359746 0.112738 0.007259 +-0.0264982 0.112519 0.0362632 +-0.0108141 0.0841239 -0.038537 +-0.0464922 0.097353 0.0431423 +0.0456344 0.0820067 0.0201819 +-0.00765915 0.0388225 0.0294318 +0.00952232 0.057476 0.0527668 +-0.0114724 0.180094 -0.0295969 +-0.0324762 0.0778813 -0.0295332 +-0.0515001 0.0465582 0.0417907 +-0.0716564 0.0639047 0.0190638 +-0.00648988 0.10728 0.0440126 +0.0517118 0.048146 0.0235716 +-0.00973422 0.0712867 -0.0371391 +-0.0311873 0.0499402 0.0418672 +-0.0652548 0.0380623 0.0267185 +-0.0353491 0.0346157 0.0221204 +-0.00455763 0.115688 -0.0165869 +-0.0158711 0.0941172 -0.0338261 +-0.0307264 0.0510087 -0.0163552 +-0.0674749 0.0861001 0.0436947 +-0.00549495 0.0456998 0.0471564 +-0.0127624 0.0742651 -0.0384156 +-0.0667813 0.0354951 0.0323861 +-0.0650934 0.040468 0.0377689 +0.00949782 0.11825 0.0371477 +0.042476 0.0986857 0.0211679 +0.0134353 0.0833572 0.0528968 +-0.006265 0.0381462 0.0486516 +0.019505 0.108463 0.0397034 +-0.0531501 0.13113 0.0336749 +-0.0169066 0.174228 -0.0176024 +-0.0877346 0.144562 0.0345528 +-0.0620052 0.131132 -0.00795604 +0.00350354 0.0967589 -0.0284524 +-0.0379926 0.15214 0.00278328 +-0.0250008 0.0678945 0.0436439 +0.013488 0.120719 -0.0120957 +-0.0546814 0.0342953 0.0289953 +-0.0493523 0.128134 -0.0033313 +-0.00536457 0.0387134 0.026395 +-0.0301008 0.162274 -0.0148279 +-0.0520761 0.153139 -0.00390728 +-0.0312974 0.120401 0.0276066 +-0.072708 0.173064 -0.0373345 +-0.0634981 0.0847405 0.0443851 +-0.00748204 0.123738 0.0339317 +0.0398166 0.0726016 0.0329349 +-0.0204571 0.159751 -0.0120682 +-0.0398664 0.104215 -0.0203975 +0.006345 0.0351555 0.0445736 +-0.0295025 0.0974144 0.0445077 +-0.00148646 0.0489421 0.0507365 +-0.0158009 0.0813621 -0.039398 +-0.0661715 0.0383371 0.0290301 +-0.0520592 0.0517918 0.0296489 +0.0132683 0.0765435 -0.0305058 +0.0357248 0.113154 0.00859849 +0.0452751 0.0847797 0.0211588 +0.0408906 0.0942563 -0.00676992 +-0.0621992 0.16466 -0.0525894 +-0.0704991 0.101365 0.0396906 +-0.0514936 0.0959907 0.0439844 +-0.0738976 0.0662178 0.00410027 +-0.0308753 0.104365 -0.0222089 +-0.0454852 0.0411575 0.0440424 +0.0264018 0.0591975 -0.0228202 +-0.0372554 0.154082 -0.00855912 +-0.0104302 0.175693 -0.0238578 +-0.0581296 0.0583212 0.0178996 +-0.0237002 0.0610797 -0.032726 +-0.0366248 0.127943 0.00786237 +-0.00749367 0.0605601 0.0556586 +-0.0317091 0.0749949 -0.0294856 +-0.0617882 0.138121 0.0352393 +-0.0764283 0.117143 0.0518912 +-0.0476607 0.120291 -0.0131944 +-0.0617261 0.158412 -0.0335949 +-0.0794782 0.106106 0.0317497 +-0.00127622 0.127442 0.029403 +-0.0850735 0.0819457 0.0214598 +-0.088151 0.137836 0.0407884 +-0.0622605 0.152178 -0.0225796 +-0.0896207 0.132365 0.0409732 +-0.0392773 0.153597 0.0044688 +-0.0477636 0.0797421 -0.0198355 +0.0475024 0.06248 0.0300852 +0.0137309 0.0344041 -0.00431645 +-0.0864106 0.136323 0.00223079 +-0.0622483 0.0470201 0.00467011 +-0.0218601 0.0893132 0.0539604 +-0.0404866 0.0390699 -0.027317 +-0.0563767 0.0650155 0.0336358 +-0.022785 0.0727991 -0.0382731 +0.00745846 0.0952014 -0.0287983 +-0.0728877 0.143976 -0.0119757 +-0.0485361 0.130681 1.6802e-05 +-0.08227 0.0830732 0.0310042 +-0.0458007 0.0884477 -0.0220772 +-0.0674901 0.102816 0.040307 +-0.0295082 0.0987895 0.0437091 +0.0266247 0.0591987 0.0436528 +-0.0166425 0.0970062 0.0498004 +-0.0754488 0.151352 -0.0128993 +-0.0561187 0.04231 0.0196965 +-0.0125561 0.107483 -0.0218463 +-0.0258638 0.0987461 -0.0241399 +-0.0150968 0.0965608 -0.0303463 +0.0403869 0.0505617 -0.00671315 +-0.0618596 0.135275 0.0369058 +-0.00853806 0.120181 -0.0133625 +0.0152242 0.123558 0.0310525 +-0.0669104 0.112326 -0.011534 +-0.00121369 0.0389243 -0.000247464 +0.0599261 0.0581121 0.0171753 +-0.0104999 0.0842933 0.0575891 +0.0236959 0.120687 0.0298434 +0.0407626 0.105627 0.00616707 +-0.0204813 0.10165 0.0438784 +-0.0497999 0.0884036 -0.0217208 +0.0455191 0.0847794 0.00419259 +-0.0113995 0.128605 0.00179072 +-0.0808762 0.0733317 0.00350919 +-0.0634956 0.0804499 0.0432131 +-0.0737877 0.170302 -0.0290826 +-0.00649113 0.0718493 0.0579775 +-0.0445186 0.0533636 0.0386768 +0.0320623 0.104555 -0.0127247 +-0.0491177 0.138604 0.00740359 +0.0459251 0.0848195 0.0121712 +0.0423718 0.0547731 -0.00653415 +-0.0505603 0.0417939 -0.0107632 +-0.0551112 0.0477166 -0.00539308 +-0.0492183 0.150688 0.0111503 +-0.0868019 0.0886457 0.00149241 +-0.0414982 0.166749 0.00369508 +-0.00533161 0.123249 -0.0106624 +0.00612795 0.107304 -0.0203065 +0.023391 0.0605296 0.0460187 +-0.0778945 0.102117 0.0345146 +-0.0177322 0.108689 -0.0211068 +-0.0341359 0.168185 -0.0152479 +-0.0364811 0.0931828 0.0441998 +-0.0645148 0.15586 0.0250316 +-0.0133496 0.124356 0.0309811 +-0.053528 0.131291 -0.0047694 +0.0236875 0.0373106 0.0299772 +0.00806894 0.0972917 -0.0250353 +0.0518069 0.0518147 -0.00170668 +-0.0580149 0.0675718 0.0363481 +-0.0916942 0.124053 0.00727726 +0.0143227 0.0344255 0.0215932 +-0.0828034 0.0762521 0.011522 +-0.0523769 0.119775 0.034728 +-0.0380638 0.174118 -0.00995608 +-0.0515288 0.0559219 0.0167726 +-0.0665225 0.10009 0.04154 +0.0449219 0.0497223 0.0313654 +-0.00374083 0.069852 -0.0355987 +-0.0448162 0.12956 0.0195798 +0.00318984 0.0852564 -0.0341139 +-0.0901249 0.125637 0.04453 +0.0248625 0.12099 -0.00239034 +-0.0357073 0.03405 0.0117511 +-0.0461509 0.05879 0.0381434 +0.0389649 0.108275 0.00542368 +-0.0857362 0.141867 0.00617644 +-0.0755097 0.135846 0.0506323 +0.0384382 0.0954258 0.0328906 +0.00385238 0.131766 0.0125385 +-0.0277181 0.0382234 0.00237012 +0.0554262 0.0714159 0.00640835 +-0.0707971 0.168292 -0.02371 +-0.0131917 0.169758 -0.0239616 +-0.0344904 0.0661905 0.0406967 +-0.00154364 0.130277 0.00186507 +-0.0647696 0.148087 -0.0261392 +-0.0577571 0.0334518 0.000595927 +-0.0334995 0.0618586 0.0392638 +-0.0657123 0.171986 -0.0448274 +-0.0254896 0.049863 0.0466034 +-0.0207287 0.058287 -0.0332963 +-0.040488 0.088839 0.0428058 +0.00826686 0.0681716 -0.0316571 +-0.0382076 0.0431174 -0.0263315 +-0.0192007 0.0392753 0.0392298 +0.0446778 0.0701888 0.00161208 +-0.0681688 0.0340999 0.0104427 +-0.0891956 0.099693 0.0183885 +0.00250408 0.0856622 0.0573274 +0.00673484 0.0364109 -0.0131882 +-0.0273112 0.0917698 0.0451953 +0.0360152 0.072737 0.038003 +-0.0174841 0.0910963 0.0554741 +-0.0882831 0.114383 0.0443189 +-0.0562701 0.0534697 0.00668599 +0.0184737 0.104403 0.0439338 +0.0591195 0.067343 0.0203999 +-0.0464971 0.107057 0.0400682 +0.0224712 0.125479 0.00796738 +-0.00281596 0.0896133 -0.0355773 +-0.0892259 0.113441 0.0323782 +-0.0532781 0.0476794 0.0246524 +0.00120832 0.0811183 -0.0353756 +-0.0820812 0.0748515 0.0115294 +-0.0344414 0.153644 0.000910386 +-0.0915313 0.147463 0.0171482 +-0.0778811 0.12224 -0.00662917 +0.00275904 0.130985 0.0207146 +0.0333375 0.115599 0.0220283 +-0.0925663 0.116874 0.0234322 +-0.0461657 0.168264 0.000998904 +-0.0608088 0.148246 0.0367611 +-0.0740333 0.13404 0.0510058 +0.046183 0.0806404 0.0141758 +-0.0177485 0.0700027 -0.0382786 +-0.05252 0.0490121 0.0379722 +-0.0142459 0.168321 -0.0155387 +-0.0894247 0.0996886 0.0153976 +-0.0654783 0.0861634 0.0444498 +0.0323217 0.116577 0.0230638 +-0.0676059 0.141897 -0.00935244 +-0.0514978 0.10289 0.0412322 +-0.00575874 0.0741425 -0.036638 +-0.0913439 0.11607 0.03131 +-0.0313824 0.0877015 -0.0265568 +0.0373688 0.102607 -0.00785264 +-0.0106393 0.169838 -0.0190633 +-0.0716387 0.0675256 0.0265031 +-0.0396636 0.0340515 0.0270767 +-0.0779219 0.0717107 0.00150831 +0.0451585 0.0670735 0.000845212 +-0.045692 0.126639 0.0237789 +-0.0914166 0.131046 0.0292353 +-0.0845601 0.0832447 0.0254813 +-0.00465613 0.0540645 -0.0324247 +-0.0573264 0.15429 0.0261567 +-0.0776607 0.0817583 -0.0102119 +-0.0614708 0.165833 -0.0590275 +-0.0866007 0.129822 0.0479412 +-0.0751026 0.155922 -0.00200459 +0.0292911 0.0364248 0.021021 +0.0168648 0.0958851 -0.0235234 +0.0566532 0.0608369 0.0255651 +-0.0447794 0.128887 0.00190497 +-0.024583 0.0635737 0.0419612 +-0.0534745 0.0360014 0.0464895 +-0.0488506 0.0999451 -0.0218934 +0.00224668 0.0740592 -0.0351433 +-0.0223056 0.126998 0.0101726 +-0.0907871 0.14608 0.0151486 +-0.0506704 0.0680761 0.0375114 +-0.0689054 0.113678 -0.00975253 +-0.032497 0.0917926 0.0443017 +0.0282492 0.102359 -0.0164093 +0.0375206 0.0540908 0.0314327 +-0.00566586 0.0555015 -0.0328252 +-0.0896969 0.139298 0.033185 +-0.0707473 0.127025 0.0521985 +-0.0455052 0.162274 0.00622301 +-0.0188243 0.0868874 -0.0382929 +0.00890069 0.0988547 -0.0226736 +0.0103725 0.130878 0.016344 +-0.0568151 0.142191 -0.00256359 +-0.0576833 0.0660478 -0.00944709 +-0.0394154 0.128541 0.00978788 +-0.0112757 0.0392934 0.0501019 +-0.0875442 0.11045 0.0133403 +0.0108543 0.128955 0.0251156 +-0.0306705 0.0692801 -0.0274547 +0.0193368 0.0460939 -0.0219388 +0.0280428 0.0928381 -0.0202889 +0.0101954 0.0879315 -0.0314901 +-0.0425303 0.153621 0.00682011 +0.046342 0.0671736 0.000660587 +0.0133755 0.0508647 -0.0275026 +-0.0815821 0.0803018 0.0303913 +-0.059075 0.137911 -0.00597298 +0.0419587 0.0958192 0.0261617 +0.0444321 0.0482656 0.0306384 +-0.0444939 0.0519693 0.038747 +0.0141421 0.107244 -0.018655 +-0.0258198 0.0880859 -0.0357275 +0.0511643 0.0525875 0.0281258 +-0.0838035 0.0884157 -0.00457068 +-0.0075843 0.111951 -0.0206051 +0.020155 0.0344845 0.00437508 +-0.0141697 0.038751 -0.00641336 +0.0160515 0.039741 -0.0214719 +-0.0627129 0.161593 -0.024579 +-0.0329051 0.0359381 0.0496011 +-0.0738068 0.0892836 -0.0151913 +0.0299737 0.0934986 -0.0189639 +-0.0618436 0.129703 0.0404325 +0.0117043 0.110341 -0.0188996 +0.013386 0.0576661 0.0508541 +-0.0636966 0.117092 0.044917 +-0.0634835 0.0890243 0.0452141 +-0.0874124 0.136542 0.0428952 +-0.0391888 0.168166 -0.0121398 +0.0376532 0.101954 -0.00791483 +-0.0708338 0.143978 -0.0149516 +-0.0135013 0.0687469 0.0541774 +-0.0671166 0.134015 0.0451603 +-0.0645196 0.148285 0.0383203 +-0.0216796 0.18469 -0.0188168 +-0.00148992 0.070365 0.0570874 +-0.0291401 0.0875323 -0.0325902 +0.0251009 0.122815 0.00327552 +-0.0111221 0.0980696 -0.0279124 +-0.0635024 0.0918143 0.0447779 +-0.0887995 0.0901451 0.00746775 +0.0164935 0.0962515 0.0477962 +0.046272 0.0806446 0.00718674 +0.038459 0.094268 -0.00974763 +0.0100793 0.0873522 0.0550703 +0.0183745 0.0874107 0.0495162 +-0.0547819 0.0840722 -0.0215429 +0.0249849 0.0576546 -0.0237943 +0.0262469 0.11849 0.0293617 +0.0187045 0.0462587 0.0425837 +-0.0433933 0.123406 -0.0104784 +-0.0615139 0.0385816 -0.00827445 +-0.0234882 0.104381 0.0428298 +0.0334188 0.115464 0.00204907 +-0.0251305 0.0810774 0.0532367 +-0.0661661 0.0431586 -0.00127362 +-0.0689806 0.138464 -0.0078252 +0.0324954 0.0484967 0.0321634 +-0.0650217 0.154743 0.00396393 +-0.0615004 0.0818818 0.0435978 +0.0289072 0.10744 0.0367037 +-0.0720417 0.156813 -0.0379146 +-0.0232564 0.171248 -0.0127378 +0.0211195 0.109025 -0.0155233 +-0.0668614 0.150018 -0.036632 +0.0204284 0.122662 -0.00423372 +-0.0628194 0.162004 -0.0576316 +-0.0641553 0.168532 -0.0413683 +0.0278158 0.0649933 -0.0208789 +-0.0788364 0.0742331 0.0262211 +0.0527925 0.0505032 0.000257908 +-0.0738772 0.107826 -0.00969763 +-0.0819791 0.08171 0.030761 +-0.0904343 0.136488 0.021207 +-0.0584473 0.145323 0.0330944 +0.00225674 0.0697235 -0.0336823 +-0.0228155 0.081267 -0.0385568 +0.0290261 0.106116 0.036871 +0.0121361 0.105839 -0.0196306 +-0.0365486 0.12125 -0.0102225 +-0.070219 0.146984 -0.026659 +0.00749947 0.122404 0.035106 +-0.0234912 0.107132 0.0414501 +0.0116034 0.0355849 -0.021581 +-0.0896067 0.0902304 0.0134498 +0.0274272 0.0781922 -0.0230908 +-0.0228318 0.114095 -0.016802 +-0.0510675 0.0598803 0.0316706 +0.0525281 0.0730706 0.0188626 +-0.0503624 0.128323 -0.00347306 +-0.0758088 0.0906346 -0.0139136 +0.0428831 0.0902351 0.0261862 +-0.00171604 0.131316 0.0104838 +-0.0845537 0.143232 0.00516668 +0.0183451 0.0551894 -0.0280076 +-0.0914715 0.128331 0.0382421 +-0.0654644 0.148292 0.0388168 +0.025254 0.122206 0.00192061 +0.0102154 0.0850922 -0.0315035 +-0.0913446 0.12833 0.0392393 +-0.0282035 0.125211 0.0168448 +0.0435793 0.0677809 0.0261624 +-0.014506 0.114132 0.0394731 +0.0146525 0.0927004 0.0511905 +-0.0777124 0.0900603 0.0375253 +0.0426104 0.0723991 0.0281081 +-0.0165087 0.10859 0.0417725 +-0.0293809 0.118905 0.0298455 +-0.0747355 0.161794 -0.0126957 +-0.0194977 0.103001 0.0433214 +-0.0774975 0.111156 0.045792 +-0.0235187 0.0551838 0.0425567 +0.00826699 0.0696219 -0.0321852 +-0.0671246 0.042281 0.0101216 +0.0443577 0.0547836 -0.00632411 +-0.0771697 0.152833 -0.00289126 +-0.0455143 0.0335109 0.00302189 +-0.0154906 0.0744572 0.0558178 +0.0390604 0.0575755 -0.00514174 +-0.0300453 0.0861604 -0.0315778 +0.0243112 0.0999667 -0.0198415 +0.0337476 0.0534432 0.0345417 +-0.0207506 0.0685447 -0.0377382 +-0.0883977 0.0983242 0.022387 +-0.043533 0.162269 0.00566221 +-0.0580451 0.047259 0.00941407 +-0.0435244 0.129538 0.0127129 +-0.0129572 0.163516 -0.016687 +-0.018238 0.0985224 -0.0244062 +-0.0468429 0.132502 0.00641278 +-0.012834 0.128656 0.00349339 +-0.00949586 0.0938956 0.0554931 +0.0405174 0.0829825 -0.0107762 +-0.0306755 0.0409906 0.0514223 +-0.0887381 0.139163 0.03848 +-0.0639163 0.105371 -0.0163736 +0.0319159 0.0876168 0.0427503 +-0.0165553 0.128252 0.0064647 +-0.0695817 0.168848 -0.0261289 +-0.0702082 0.141157 0.0460159 +0.0179624 0.0489942 0.0433049 +0.0363477 0.102053 0.0316389 +-0.029898 0.0385093 -0.0112051 +-0.0687619 0.169445 -0.0540038 +-0.0726588 0.143932 -0.0130219 +0.0162319 0.0849386 -0.0291053 +-0.0620358 0.136971 -0.00707833 +0.0166416 0.0740317 0.0522091 +0.0213347 0.0607071 -0.0262571 +-0.0576194 0.143675 -0.00218012 +-0.0913297 0.148826 0.016141 +-0.0751782 0.152724 -0.0149145 +-0.062838 0.153641 -0.0115615 +-0.0579073 0.152669 0.031812 +-0.0401847 0.173392 -0.00391542 +0.0166876 0.0475243 0.0432195 +-0.0393167 0.0432044 -0.0243027 +0.00658649 0.0945677 -0.0301242 +-0.00883076 0.130134 0.0179537 +-0.0248377 0.0867614 -0.0367865 +0.0135609 0.0343729 -0.0176058 +-0.0367327 0.0739624 -0.0182558 +-0.0891756 0.088886 0.0174542 +-0.0869535 0.131154 0.0468504 +0.00298644 0.131511 0.0079308 +-0.0116778 0.0541503 -0.0336719 +-0.00992638 0.128404 -5.81123e-05 +-0.0544374 0.131586 -0.00508481 +-0.0384968 0.104212 0.0394832 +-0.074384 0.0726496 -0.00763941 +-0.0530656 0.150158 -0.00286677 +-0.0166345 0.0465837 -0.0289175 +0.0567453 0.0707667 0.0204115 +0.0381172 0.0659142 -0.0117557 +0.00256341 0.131601 0.00920655 +0.0391019 0.106936 0.00217583 +-0.0480338 0.0685335 0.039429 +-0.0794876 0.0745597 -0.0035364 +-0.0248661 0.101609 -0.0237851 +-0.0647841 0.0448471 0.00913709 +-0.0446647 0.117939 -0.0147658 +-0.0152743 0.180101 -0.0270399 +-0.0859599 0.106341 0.0203569 +0.0111873 0.0893276 -0.0308633 +-0.0922566 0.126816 0.00926569 +-0.0618365 0.166237 -0.0545929 +0.0181719 0.0795251 0.0527143 +-0.0684871 0.120374 0.0527878 +-0.0476953 0.0723623 -0.0159721 +-0.0472614 0.125357 0.0280089 +-0.0494961 0.113894 0.0347794 +-0.0374992 0.0847101 0.0439351 +-0.0404923 0.0620428 0.0412639 +0.0609826 0.0637492 0.0111528 +-0.0849504 0.136625 0.0461206 +0.0337121 0.104741 0.0331059 +-0.00864132 0.0907031 -0.0362798 +0.00988706 0.0373676 0.0450724 +-0.024511 0.0782394 0.0527049 +-0.0716377 0.0368114 0.00909586 +-0.0832904 0.111663 0.0440643 +-0.0156647 0.109623 -0.0201068 +-0.0766606 0.163806 -0.0339802 +0.0165486 0.0631544 0.0502063 +-0.0753023 0.155004 0.00375308 +0.039051 0.0380783 0.00858362 +0.0420573 0.0943632 -0.00379153 +-0.0924935 0.124207 0.0332695 +-0.0745678 0.155931 0.022959 +-0.0348878 0.0336855 0.0122448 +-0.0755817 0.14859 -0.0148673 +-0.0712419 0.0628661 0.0147709 +-0.0722512 0.170824 -0.0490235 +-0.044945 0.146638 -0.00064718 +-0.0327132 0.0383899 -0.00426549 +-0.0656128 0.0626699 -0.00283823 +-0.0615924 0.156857 -0.0275883 +-0.0306139 0.051126 0.0398517 +-0.0552831 0.0478834 0.0286656 +-0.0825962 0.0869865 -0.00556699 +-0.0743429 0.0777095 0.0359578 +-0.00912413 0.125328 0.0309758 +-0.0877256 0.112462 0.0226926 +-0.0624682 0.148372 0.0373168 +-0.0772099 0.0954309 0.0368548 +-0.0657805 0.04031 0.0356744 +0.0390337 0.102562 -0.00454148 +-0.0218167 0.0770677 -0.0388569 +-0.013694 0.165443 -0.0129401 +-0.0242656 0.0588495 -0.0313753 +-0.0201769 0.16108 -0.00474531 +-0.0746468 0.151291 -0.0288803 +-0.0870878 0.147265 0.0324302 +-0.0667973 0.0823343 -0.0181512 +-0.0894818 0.137913 0.0311948 +0.0410937 0.100015 0.0241739 +0.0260496 0.0420955 0.0353242 +-0.0497977 0.134944 0.0250398 +-0.0824554 0.0748386 0.00652396 +-0.0420037 0.0449364 -0.0183222 +-0.00587956 0.107379 -0.0226761 +-0.0298783 0.0719759 -0.0315267 +-0.0649016 0.118019 -0.00923352 +-0.0461849 0.131841 0.0072241 +-0.0384968 0.066293 0.0418062 +-0.0375363 0.128085 0.0104763 +-0.0684218 0.173931 -0.0443685 +-0.0921191 0.131045 0.0262423 +-0.0269088 0.0720784 0.0425891 +-0.0318614 0.109962 -0.0183828 +-0.0576346 0.139576 0.0324737 +-0.0582272 0.151065 0.033498 +-0.0824187 0.0788859 0.0267668 +-0.0386191 0.0474546 -0.0163861 +0.0266281 0.0902434 0.0456585 +-0.00674435 0.0340208 -0.0192827 +0.0167681 0.0348096 -0.0116543 +0.00555478 0.102979 0.0445124 +0.0101351 0.0346886 0.0403762 +-0.0715049 0.147007 0.0421623 +0.0583177 0.0551766 0.00716644 +-0.0774854 0.142838 0.0458543 +-0.0630637 0.0343143 0.0307056 +-0.00979508 0.122843 -0.0101629 +-0.0497184 0.0723081 -0.0156401 +0.0463136 0.0660623 -0.000202599 +-0.0455839 0.0490621 -0.0101677 +-0.0746807 0.110131 0.0436879 +-0.0107636 0.0728162 -0.0377336 +-0.0155087 0.105817 0.0426846 +-0.0419504 0.0338103 -0.0111665 +0.0243299 0.0661738 -0.0239819 +0.0195943 0.041435 -0.0196763 +0.0590873 0.0566489 0.0191831 +-0.0828908 0.120639 -0.00384458 +0.0299951 0.111426 0.0329993 +-0.0685146 0.033856 -0.00470573 +-0.0492135 0.140151 0.00839688 +-0.0489146 0.121146 0.0309679 +-0.00870224 0.0627847 -0.0356447 +-0.086772 0.140601 0.0407491 +-0.0293203 0.0381642 0.0309659 +-0.0330003 0.0497903 -0.0153502 +-0.0425517 0.127843 -0.00110505 +0.0328934 0.0381571 -2.41096e-05 +-0.0525195 0.0426931 0.0456595 +0.021748 0.0349954 0.0225893 +0.00827474 0.123868 -0.00945393 +-0.029563 0.0377844 -0.01791 +-0.0370175 0.163827 -0.00102436 +-0.0664999 0.101466 0.0412188 +0.0064937 0.048929 0.05087 +0.0287604 0.121079 0.0103057 +0.0252285 0.11379 -0.0106368 +-0.0599544 0.0581084 0.014112 +-0.062196 0.154993 0.0273195 +-0.0901963 0.136492 0.0222062 +0.0243441 0.0535282 0.0420575 +-0.0779175 0.0954136 0.0361479 +0.0233436 0.112218 -0.0129499 +-0.0707139 0.0721775 0.0349299 +-0.0640765 0.0658063 0.0313225 +-0.012499 0.112778 0.04085 +0.00184795 0.0345666 0.017115 +-0.0706528 0.0621972 0.0100461 +-0.0885678 0.139164 0.0111992 +-0.0188224 0.0347384 0.0467634 +-0.0867734 0.103584 0.00638913 +0.0585617 0.0692487 0.0195963 +-0.0597919 0.0868174 -0.0202685 +0.00547344 0.0964656 -0.0281399 +0.0206378 0.123881 0.0271063 +-0.0699457 0.0641869 0.00125597 +-0.0625615 0.156051 0.017016 +-0.0417544 0.0339701 -0.0279962 +-0.0649712 0.129694 -0.00875388 +-0.0862104 0.107661 0.0103578 +-0.0932554 0.121405 0.0112928 +-0.0354965 0.0533413 0.0383699 +-0.0288938 0.0821008 0.0456772 +-0.0504899 0.115263 0.0337703 +0.0589314 0.0635744 0.022157 +-0.0186162 0.0391183 0.0377018 +-0.00206852 0.0346139 0.0433223 +-0.0274904 0.108416 0.0392888 +0.0114791 0.0353993 0.0291949 +0.0231094 0.1217 -0.00313916 +-0.0577454 0.0767844 -0.0191155 +-0.00909377 0.175718 -0.0267745 +0.0517415 0.0673755 0.000499527 +-0.0128851 0.164546 -0.0183954 +-0.0673534 0.170861 -0.0570311 +-0.0929853 0.13101 0.0212315 +0.0234643 0.0889079 0.0481435 +-0.088271 0.126713 0.00126975 +-0.0657845 0.0809163 -0.0181411 +-0.0623578 0.139562 0.0361839 +0.0537838 0.0608937 0.0284739 +-0.0417084 0.0681156 -0.0160245 +0.0391698 0.101249 -0.00580082 +0.0314319 0.059214 0.0400505 +-0.0609535 0.135292 0.0364528 +-0.000337321 0.0338454 -0.0216338 +-0.0194278 0.169807 -0.0142312 +-0.0348191 0.0886631 -0.024431 +0.0343015 0.0925788 -0.0159761 +-0.0484766 0.166987 4.90724e-06 +-0.0665297 0.149283 -0.0337543 +-0.0801184 0.0845811 0.0344552 +-0.0728936 0.109289 -0.00959602 +-0.0631344 0.177233 -0.0567528 +-0.0405211 0.16525 0.00379284 +-0.0231365 0.166757 -0.0180638 +0.00733914 0.0539337 -0.0304234 +-0.0448725 0.105637 -0.0203982 +-0.0120489 0.177175 -0.0228491 +-0.0935183 0.117402 0.0193034 +-0.0218743 0.178667 -0.0141782 +0.0371376 0.0728556 -0.0127896 +0.00251304 0.0828672 0.0572444 +-0.0659599 0.128235 -0.00885739 +0.0572369 0.0523165 0.0201815 +0.00234985 0.1177 -0.0168004 +0.0136405 0.0534411 0.0494225 +0.0440001 0.081852 -0.00180195 +-0.0352323 0.0337248 0.00491425 +-0.0852903 0.152844 0.0238067 +-0.0841107 0.0938743 -0.00455389 +-0.0327087 0.156604 0.00170747 +-0.0136478 0.0384232 0.0249573 +0.0203982 0.126887 0.0157559 +-0.0256832 0.0878506 0.050771 +-0.0859766 0.117044 0.000228439 +-0.0275277 0.0660102 0.0388181 +0.0386899 0.0941002 0.0332667 +-0.0072203 0.0994662 -0.0253456 +-0.0387089 0.068094 -0.0155018 +-0.0447414 0.149173 0.00704529 +-0.037003 0.126393 0.0195465 +-0.0691196 0.118603 0.052746 +0.0126876 0.0376693 0.0445214 +0.00235997 0.0496442 -0.0301148 +-0.0852421 0.0804972 0.00551565 +-0.0315104 0.105689 0.0403731 +0.045017 0.0410596 0.00889517 +-0.0645229 0.0335011 -0.00443342 +-0.0237309 0.092173 -0.0338912 +-0.0696939 0.158144 -0.0499358 +-0.00649106 0.116924 0.0392844 +0.0203532 0.0579488 -0.0270415 +0.0454669 0.0761165 0.0216249 +-0.0776599 0.103464 0.0342449 +-0.0732 0.113624 0.050147 +-0.0760799 0.147225 -0.00886324 +0.0300894 0.118197 0.0250757 +0.0134949 0.103141 0.0462202 +-0.0890108 0.142042 0.0341592 +-0.0804084 0.0719394 0.00662383 +-0.0695221 0.143851 -0.0150076 +-0.0608967 0.108264 -0.0166058 +0.024601 0.0954054 -0.0210454 +-0.022965 0.108799 -0.0212234 +-0.0611808 0.060116 0.0210055 +0.0302694 0.104198 -0.014346 +-0.0556068 0.119255 -0.0119973 +0.0521834 0.0709362 0.0231159 +-0.0314011 0.159502 0.00180977 +-0.0393243 0.172677 -0.00992732 +-0.0273795 0.0859709 -0.0356537 +-0.0158141 0.084157 -0.0391976 +-0.0748503 0.150353 0.0378605 +-0.0898842 0.145774 0.0282412 +-0.0830081 0.135296 -0.00152379 +0.00239673 0.0404932 -0.0244502 +0.0427154 0.0482477 0.0316879 +-0.0266384 0.166791 -0.00886205 +0.0140069 0.0433574 0.0445182 +-0.0554949 0.102938 0.0419937 +-0.0535677 0.121244 0.0365515 +-0.091536 0.147482 0.0221363 +-0.0926871 0.118696 0.0103064 +-0.0944412 0.121464 0.0182801 +-0.0562674 0.0521079 0.00770249 +0.0268173 0.0563551 0.0421393 +0.0126767 0.102031 -0.0220157 +-0.0753389 0.14722 -0.0108566 +-0.0856054 0.119006 0.0487694 +-0.0533885 0.122494 -0.00938247 +0.0431078 0.0438619 0.0262578 +-0.0605291 0.0337655 0.01588 +-0.0126252 0.045057 -0.0279244 +-0.045035 0.131096 0.00921538 +-0.0885624 0.127032 0.0457658 +0.040497 0.0569389 0.0314027 +0.0364907 0.111851 0.00455337 +-0.0834729 0.144593 0.00316535 +0.0433385 0.080395 -0.00378638 +-0.0318429 0.0944059 -0.023975 +-0.0484939 0.0747239 0.0424157 +-0.0110217 0.175722 -0.0231509 +0.000137104 0.104495 -0.0221519 +-0.0521218 0.0553341 0.025863 +0.0390662 0.103279 0.0267541 +-0.0365034 0.105591 0.0389607 +0.0135363 0.0347941 0.0319644 +-0.0857201 0.113489 0.0456231 +-0.0225205 0.114038 0.037332 +-0.0424861 0.107068 0.0398635 +-0.0498903 0.161248 0.00701432 +-0.0261589 0.0660162 -0.0325063 +-0.061193 0.167783 -0.0585846 +-0.0153476 0.186173 -0.0245951 +-0.0220085 0.0386415 -0.0116054 +-0.0746541 0.0660086 0.0112783 +-0.0857094 0.107615 0.00636703 +-0.000110081 0.106984 -0.0213197 +-0.0293764 0.039648 0.0531021 +0.028771 0.0495105 -0.0157345 +-0.0168713 0.184583 -0.0192109 +-0.0517714 0.14934 0.0163945 +-0.059475 0.0776368 0.0428908 +-0.0109445 0.0385116 0.00732721 +-0.0636281 0.177112 -0.0556446 +-0.074576 0.0901236 0.0400162 +0.0161292 0.0604031 0.0495734 +0.022982 0.114019 0.0351746 +0.0259399 0.098006 -0.0197455 +-0.0097165 0.0698878 -0.0366754 +-0.069561 0.132665 0.0486469 +-0.0530949 0.0350628 -0.012244 +-0.0680607 0.153823 -0.0498908 +-0.0135439 0.125168 0.0294386 +-0.00340282 0.12679 -0.00651364 +-0.0391911 0.149452 0.000405422 +-0.0764653 0.177807 -0.0519745 +-0.0287178 0.121983 -0.00700749 +-0.0619687 0.155933 0.0215789 +-0.0411389 0.0448599 -0.0213399 +-0.0553956 0.0560936 -0.00341211 +-0.0930152 0.116045 0.0163142 +-0.0538732 0.0634525 0.0320061 +-0.0265911 0.123944 0.0203778 +0.0521155 0.073659 0.0142686 +-0.0733241 0.158247 -0.0319134 +-0.0109096 0.167211 -0.0224966 +-0.0387656 0.0459335 -0.0222844 +-0.0438685 0.104239 -0.0209341 +-0.0404958 0.0464911 0.0408136 +-0.0546568 0.133929 0.033262 +-0.0875345 0.0914089 0.00446769 +0.0213976 0.0505253 -0.0237217 +0.00734362 0.0524803 -0.0298755 +0.0300864 0.0686462 0.0416997 +0.0343005 0.110021 0.028645 +0.0541591 0.0648613 0.0272743 +-0.0267629 0.124714 0.018819 +-0.084006 0.130916 -0.00261237 +-0.032464 0.126152 0.0167563 +0.0411083 0.0816433 -0.00876203 +0.0569799 0.0538694 0.0224893 +-0.0104937 0.0502816 0.0505289 +-0.0809192 0.0899278 0.0336764 +-0.0706578 0.10688 0.0373417 +-0.0634399 0.160562 -0.0195565 +-0.0491873 0.165537 -0.00392571 +-0.0506864 0.137014 0.00141591 +0.0414602 0.0985756 -0.00280597 +-0.0725308 0.161023 -0.0389355 +-0.0593508 0.0339548 0.0212701 +-0.0724089 0.155986 0.0106072 +0.0454654 0.0819915 0.0211715 +-0.0231673 0.169718 -0.0195033 +0.014393 0.129494 0.0163965 +-0.0185111 0.0499058 0.0467842 +-0.0180519 0.128104 0.0102643 +-0.0161793 0.169751 -0.0220442 +0.0178585 0.0957539 -0.0234025 +0.0277062 0.122023 0.0113437 +-0.0356288 0.0533886 -0.010251 +-0.00862621 0.0394649 0.0376552 +-0.0708134 0.0624523 0.0134268 +-0.0338786 0.104305 -0.0212068 +-0.0471517 0.160622 -0.00754132 +-0.0925898 0.124211 0.034269 +-0.0584616 0.0717087 0.039721 +-0.0146591 0.0511639 -0.0318396 +-0.0607891 0.0597911 0.00342454 +0.0222547 0.0819067 -0.0260667 +0.0230644 0.109683 -0.0142211 +-0.0844174 0.110829 0.0409213 +-0.0687289 0.0779401 -0.0161359 +-0.0752643 0.0941545 0.0391883 +-0.0876028 0.105024 0.0163629 +-0.077844 0.114867 -0.00473455 +-0.0325542 0.0341026 -0.0206973 +-0.0589604 0.0340153 0.0230639 +-0.00211759 0.125578 0.0320366 +0.0126989 0.0342761 -0.010037 +0.013184 0.0740073 0.0542309 +-0.0477691 0.130137 0.000614804 +-0.0718381 0.155405 -0.0399144 +-0.0622568 0.148888 -0.00391238 +-0.0159434 0.0385311 0.027994 +0.0373005 0.103362 0.0294506 +-0.02276 0.093942 -0.0316991 +-0.0520122 0.14159 0.0203687 +-0.082015 0.110886 0.0432009 +-0.0745865 0.0720219 0.0307608 +-0.00953059 0.096141 -0.0318625 +-0.0495789 0.046041 -0.00928879 +-0.00423381 0.0382248 0.0479393 +-0.0382126 0.169665 -0.0124129 +0.0318584 0.0981802 0.0392129 +-0.0314643 0.126198 0.0141678 +-0.0622546 0.152185 -0.0195775 +-0.0424907 0.0831788 0.0422885 +-0.0205087 0.18589 -0.0190712 +-0.00369262 0.0366899 0.0482034 +-0.0197122 0.0583602 -0.0339067 +-0.0106092 0.0434444 -0.026227 +0.0245832 0.0562081 -0.0237654 +-0.0891532 0.121635 0.0465292 +-0.0629277 0.161435 -0.0535909 +0.047295 0.0711844 0.0046334 +-0.0417522 0.0782987 -0.0193601 +-0.000496629 0.0828922 0.0574621 +-0.0320822 0.0335961 -0.0276233 +-0.0571072 0.154583 -0.000558004 +0.0584978 0.0634546 0.0229811 +-0.0581231 0.149655 0.0336366 +-0.0619701 0.160031 -0.0245798 +-0.0800787 0.0980611 0.0339873 +-0.0219645 0.0403079 0.0539432 +-0.0699065 0.110817 -0.0106385 +-0.0725366 0.154032 -0.0369032 +-0.0224974 0.0498852 0.046496 +0.00485548 0.0339942 -0.0207847 +-0.0614772 0.0338873 0.0155724 +0.00946392 0.0472926 0.0483305 +-0.019502 0.109944 0.0407387 +-0.0539465 0.0486826 0.012352 +-0.0355502 0.175589 -0.0109785 +-0.0784832 0.155333 0.0128492 +0.0266099 0.122879 0.0123678 +-0.0472066 0.134653 0.0142236 +-0.0078767 0.103255 -0.023393 +-0.0504989 0.101536 0.0421291 +-0.0266231 0.0450263 -0.028096 +-0.0916243 0.131038 0.0282288 +0.0125747 0.0445985 0.0442752 +-0.0196537 0.0480066 -0.0290701 +0.0172432 0.108764 -0.0171862 +-0.0295071 0.0635474 -0.0264265 +-0.0620034 0.040777 0.0431481 +-0.00243593 0.113721 -0.0185019 +-0.0630177 0.135513 -0.00745136 +0.0433285 0.0874073 -0.00479371 +-0.0154888 0.0688106 0.054717 +-0.0882956 0.116235 0.0458325 +-0.0494969 0.0946343 0.044743 +-0.0619637 0.147832 -0.00431835 +-0.092816 0.124239 0.0392636 +-0.0629366 0.147438 -0.0146052 +-0.0782928 0.163856 -0.0319501 +-0.064798 0.174285 -0.0502768 +-0.0112267 0.038611 -0.000125945 +-0.0820175 0.148708 0.00217249 +0.0401192 0.0979552 0.0282751 +-0.0877344 0.132461 0.0447656 +-0.050513 0.143196 0.0143929 +0.0136958 0.0672461 0.0531523 +-0.0608764 0.033777 0.0140174 +0.00552563 0.0813962 0.0561869 +-0.0768476 0.148423 0.040238 +-0.0306152 0.0552238 -0.0173804 +-0.0567885 0.123073 -0.00794084 +-0.0255089 0.119394 0.0308336 +0.0223261 0.116663 0.0342169 +-0.0475261 0.0335634 -0.00837623 +-0.0582936 0.157998 0.00361947 +0.0051303 0.105879 -0.0208781 +-0.00896496 0.0383664 0.01874 +-0.0444005 0.0336982 -0.00787213 +-0.00659427 0.0391448 -0.0257394 +-0.0414965 0.0424145 0.0425934 +-0.0846517 0.135301 0.0472783 +-0.0634992 0.0973124 0.0426152 +-0.0488679 0.135513 0.00441971 +0.037597 0.0883595 -0.0147642 +-0.00186878 0.0388962 0.0287527 +-0.028023 0.0380941 0.0277005 +-0.0474992 0.0718408 0.0410603 +-0.0899231 0.113261 0.00935255 +0.044663 0.094574 0.0141596 +-0.0613242 0.174126 -0.0596453 +0.0131192 0.0913894 0.0524895 +0.0569982 0.0642691 0.00177262 +0.029911 0.120086 0.0121698 +-0.0341992 0.124637 -0.00378015 +-0.0714932 0.121802 0.0535223 +-0.060211 0.120578 -0.00928669 +0.0514409 0.0718132 0.00596213 +-0.0055446 0.0384588 0.0102869 +0.0401137 0.0933035 -0.00871241 +-0.077868 0.12372 -0.00684832 +-0.0438994 0.148485 -0.00356582 +-0.0478093 0.0898718 -0.0219802 +-0.050356 0.0501549 0.0156949 +-0.044116 0.168361 -0.0078879 +0.0274031 0.12156 0.0212208 +-0.0198084 0.119865 -0.0108751 +-0.00808629 0.0392239 0.0361848 +-0.074679 0.177203 -0.0452121 +-0.0717079 0.162415 -0.0429474 +-0.0817249 0.153192 0.027965 +-0.0830361 0.0952877 0.0313817 +-0.0410879 0.12806 0.000341883 +-0.0268762 0.104433 -0.0231038 +-0.028867 0.0620809 -0.0264195 +0.0400441 0.0834026 0.0333734 +0.00148401 0.0427923 0.0460657 +-0.021597 0.124211 0.0236359 +-0.0493581 0.0389276 0.0456407 +-0.0251636 0.119759 -0.0107128 +-0.0305455 0.0776911 -0.0335901 +0.0434944 0.0719976 -0.00179535 +-0.0730641 0.148297 -0.027137 +-0.0403032 0.0335749 -0.0236075 +-0.0838696 0.117633 -0.00194246 +-0.0183958 0.0360837 -0.0274195 +0.0306925 0.119003 0.0181751 +-0.0287719 0.0876257 0.045371 +-0.0150862 0.116786 -0.0157023 +-0.0226105 0.0393974 -0.0288175 +-0.00549593 0.114185 0.0409403 +0.0172148 0.0820814 -0.0286624 +0.0204946 0.0878829 0.0490965 +0.0144377 0.119508 -0.0127985 +0.0084105 0.0389663 -0.0233493 +0.042717 0.0705281 -0.00378792 +-0.0721585 0.0349122 0.00711943 +-0.0700117 0.176166 -0.0463861 +-0.0559881 0.0594067 0.0225062 +-0.0934924 0.121416 0.0122906 +0.0386755 0.101225 -0.00680717 +-0.00386806 0.105937 -0.0224388 +-0.0104995 0.091174 0.0564817 +-0.0012394 0.131315 0.00922853 +-0.0497873 0.0855205 -0.0216876 +-0.0168713 0.104463 -0.0227606 +0.0101956 0.0865002 -0.0314726 +-0.0534959 0.108443 0.038977 +-0.0548951 0.0610993 0.0270145 +-0.0755046 0.137255 0.0498073 +-0.0485754 0.0489523 -0.00913959 +-0.0331264 0.163719 -0.0148995 +-0.00945074 0.100225 0.0471086 +-0.0342862 0.0340473 0.0246456 +-0.0294128 0.0335741 -0.023325 +-0.026685 0.0349864 0.0500364 +-0.061923 0.12237 -0.00883821 +0.0501668 0.0567787 0.0302284 +-0.011856 0.127622 0.0255897 +-0.0429498 0.0338754 -0.00590515 +-0.000398209 0.131157 0.00667235 +-0.0163397 0.112374 -0.0190184 +-0.0651151 0.138224 0.0409979 +0.0355326 0.0544702 -0.00765701 +0.0264528 0.0348348 0.00531809 +-0.0438555 0.101385 -0.0214526 +-0.0234974 0.0498976 0.0468652 +-0.0436816 0.0651561 -0.0146099 +-0.00750789 0.0386054 0.00429878 +-0.0494719 0.0643044 0.0356628 +-0.0857911 0.0847131 0.0234468 +0.0202388 0.0735294 -0.0276011 +-0.0826135 0.153724 0.024657 +0.0377117 0.0799594 -0.0137509 +-0.0629014 0.0384346 0.017326 +-0.0564952 0.112508 0.0359017 +-0.00450514 0.0647631 0.0563697 +0.0228849 0.0849076 0.049031 +-0.0136101 0.17129 -0.0181213 +-0.0659308 0.168025 -0.05906 +0.00616007 0.130231 0.0233995 +0.0200475 0.0355684 0.0326031 +0.0207235 0.0355731 0.0309275 +-0.0914203 0.133738 0.0192152 +-0.0894168 0.0942943 0.0184246 +-0.0486795 0.137079 0.00840446 +-0.0268516 0.0981872 -0.024073 +-0.0296061 0.0499557 0.0431146 +-0.0645444 0.136771 0.0400377 +0.00960463 0.0369501 0.029234 +-0.0077992 0.0826766 -0.0378216 +-0.0705096 0.145613 0.0431794 +0.038042 0.109981 0.0137429 +-0.0323904 0.0346717 0.0421656 +0.0166765 0.12456 0.0286792 +0.0496183 0.0673428 0.0005193 +-0.0256005 0.175695 -0.0107936 +-0.0178219 0.0896296 -0.0373512 +-0.010186 0.0339025 -0.0217341 +-0.047823 0.0912927 -0.0217091 +0.0214379 0.121585 -0.00505488 +-0.063535 0.0741856 0.0400495 +-0.0175015 0.119559 0.0348485 +0.0378045 0.0701003 -0.0128173 +-0.06064 0.140962 -0.00527103 +-0.0745647 0.162191 -0.0132518 +0.0175747 0.0931801 -0.024649 +-0.0413443 0.159411 0.00325579 +-0.0692325 0.161954 -0.0115912 +-0.0598828 0.104039 -0.0184233 +-0.0275135 0.111195 0.0372083 +0.017284 0.0435398 0.0440147 +-0.043478 0.0633766 0.0405033 +0.0234516 0.0389975 0.0363054 +-0.0705331 0.144185 0.0442754 +-0.00248752 0.0897873 0.0564419 +-0.0728742 0.149812 -0.0379734 +0.0462595 0.0834414 0.00917612 +0.00549045 0.0459551 0.048539 +0.038562 0.0568882 0.0311978 +-0.0404973 0.10005 0.041322 +-0.0633155 0.125546 0.0454063 +-0.0425091 0.0520201 0.0393163 +0.00748602 0.041302 0.0454759 +-0.0652746 0.0378654 0.0394026 +-0.0208078 0.081314 -0.039065 +0.00735987 0.131518 0.0123881 +-0.0507686 0.0812185 -0.0210302 +0.0289317 0.0369927 0.000264038 +-0.0895362 0.119938 0.00329723 +0.0339261 0.0564017 0.0366181 +0.0387571 0.0780554 0.0349576 +-0.00249465 0.111426 0.042426 +0.0312166 0.0814571 -0.0197537 +0.00710696 0.112707 -0.0194319 +0.0182552 0.0736117 -0.028651 +-0.0747384 0.149908 -0.0288721 +-0.0142729 0.16729 -0.0212151 +-0.0796554 0.0776931 0.0301108 +-0.0308995 0.0385461 -0.0114399 +-0.0135011 0.162185 -0.0138332 +-0.062358 0.172308 -0.0618736 +-0.0779551 0.131028 -0.00606492 +0.0053093 0.0610791 -0.0314051 +-0.0622044 0.163118 -0.0415929 +-0.0875561 0.0900472 0.00346813 +-0.0693763 0.0627096 0.00438827 +0.0577316 0.0594186 0.0235899 +-0.076964 0.0686471 0.0102516 +-0.068516 0.156454 -0.00263594 +-0.0116226 0.0389602 0.0338935 +-0.053617 0.0500325 0.0119809 +0.0600963 0.059514 0.00816569 +-0.0667396 0.168684 -0.03081 +0.0461456 0.0820314 0.0061875 +-0.0433217 0.0391871 0.0438385 +0.0426589 0.0598822 -0.00401987 +-0.0496436 0.132456 0.0281905 +0.0526393 0.0635217 0.0285801 +0.0276786 0.107363 -0.0137282 +0.0429561 0.100122 0.0141624 +0.0420203 0.102869 0.0111608 +0.0352633 0.113355 0.0198926 +-0.0527821 0.0840792 -0.0215781 +-0.0731314 0.179106 -0.0550054 +-0.0772542 0.116219 0.0507045 +-0.0448961 0.131042 0.0121815 +-0.0659423 0.149401 -0.0328697 +-0.00381497 0.0882175 -0.036071 +-0.00434542 0.130565 0.019581 +0.0267602 0.0365817 2.43485e-05 +0.0169695 0.107204 -0.0175448 +-0.062502 0.0625858 0.0256444 +-0.00350098 0.0815126 0.05747 +0.000251433 0.0712294 -0.0349609 +-0.0113059 0.174226 -0.0217772 +-0.0348319 0.0943645 -0.0236767 +-0.0786972 0.0940445 0.0355566 +0.0177903 0.112808 -0.0155711 +-0.0318198 0.0887354 -0.0251772 +-0.0198038 0.0827175 -0.0390158 +-0.0190696 0.126125 0.000571573 +-0.0793168 0.102079 0.0331119 +0.021502 0.109802 0.0384228 +-0.0927296 0.124224 0.0362665 +-0.0209485 0.0682779 0.0508919 +0.041224 0.101389 -0.000814438 +-0.0468126 0.0898791 -0.022022 +-0.0348994 0.124334 -0.00549397 +-0.0341879 0.127198 0.0131711 +-0.049291 0.131272 -0.000642386 +-0.0359021 0.0337218 0.00658675 +-0.0837824 0.091132 -0.00556609 +-0.0335134 0.101547 0.0420338 +0.0210931 0.0429808 -0.0187308 +0.0424902 0.0555855 0.0321183 +-0.0557185 0.0570014 0.011057 +-0.0194912 0.112675 0.0392933 +-0.025189 0.156576 -0.00769163 +0.0400265 0.10701 0.00816505 +-0.0540901 0.153118 -0.00271435 +-0.00486253 0.101638 -0.0232055 +-0.0436472 0.0338067 0.00674466 +-0.0211436 0.168262 -0.0193322 +-0.0763578 0.141673 -0.00573846 +0.0465682 0.041911 0.0139236 +-0.0534989 0.109802 0.0378386 +-0.0811057 0.0748245 0.0195385 +0.0366496 0.0848209 0.0372394 +0.0520606 0.0608742 0.0294954 +-0.0810176 0.109646 0.0372868 +0.0260062 0.121547 0.0249766 +-0.0134941 0.0773082 0.0569169 +-0.0759274 0.108411 0.0376421 +0.0131577 0.0548631 0.0504935 +-0.0556243 0.0335264 0.0117574 +-0.0445311 0.119183 -0.0140568 +-0.0651138 0.155569 0.0262833 +0.0254608 0.100767 0.0422505 +-0.0354939 0.101471 0.0414493 +-0.0526525 0.152155 0.0150192 +-0.0578899 0.111162 -0.0167182 +-0.050471 0.0571806 0.032579 +-0.0881725 0.103664 0.0113862 +-0.0124346 0.0985527 -0.0264295 +0.0459022 0.0876188 0.00817319 +-0.0598831 0.0337324 0.0142605 +0.0420206 0.092566 0.0274869 +-0.0622887 0.152203 -0.0145776 +-0.0483961 0.150684 0.0105827 +0.00023463 0.0985537 -0.0263753 +-0.0719091 0.107919 -0.010771 +0.0379248 0.0575872 0.0318029 +-0.0684803 0.169194 -0.0285889 +-0.0388617 0.099995 -0.0218283 +-0.0776097 0.0796169 0.0342011 +0.00633113 0.0553726 -0.0306713 +0.0163088 0.048977 0.0444188 +-0.0838449 0.0817176 0.00149669 +-0.0216263 0.0341828 -0.0204844 +-0.0187634 0.0728738 -0.0388715 +-0.0626025 0.0388129 0.0247151 +-0.0373475 0.0347779 0.0107604 +-0.00558664 0.0376733 -0.0253626 +0.0599615 0.0678313 0.0171716 +-0.0295401 0.0904607 -0.0275932 +0.0284451 0.114053 0.0325229 +0.0418253 0.0830818 -0.00779351 +0.00746772 0.0343056 0.0166757 +-0.0865698 0.0833108 0.0104907 +-0.0729271 0.151083 0.037025 +-0.0781924 0.155673 0.0158655 +-0.0788514 0.116332 -0.0048797 +0.00512317 0.107303 -0.0203142 +-0.0103272 0.0383585 0.0166568 +-0.0348025 0.040194 -0.0297923 +-0.000491404 0.0814979 0.0573536 +-0.0290382 0.16386 -0.00530596 +-0.0694805 0.121794 0.053195 +-0.0704544 0.150585 -0.0434585 +-0.0639717 0.0459278 0.00771742 +-0.03056 0.124009 -0.00164624 +0.0144021 0.0780973 0.054252 +-0.0808546 0.140749 0.0461596 +0.0103353 0.0581557 -0.0299403 +-0.00949578 0.084298 0.0576062 +-0.0249013 0.0382346 0.0282196 +-0.0316389 0.0409999 0.051064 +0.0387381 0.0381712 0.0065938 +-0.0580729 0.0345066 0.0402882 +-0.0663198 0.150167 -0.0356652 +-0.064292 0.168172 -0.0605879 +-0.0314424 0.0679449 -0.0244554 +0.0603913 0.0595429 0.0161691 +0.0102649 0.129908 0.00205228 +-0.0440813 0.0336392 -0.0114358 +0.0309277 0.0497348 -0.00874 +-0.0267697 0.0750695 0.0452054 +-0.0791015 0.170034 -0.0382691 +-0.0864283 0.0954013 0.00141653 +0.00852849 0.0646614 0.0551736 +0.0473561 0.0503594 -0.00438005 +0.039601 0.107391 0.00564087 +-0.0861267 0.0833147 0.0194823 +-0.0786738 0.10815 0.0335843 +0.043481 0.0832455 0.0271768 +0.0281352 0.0915776 0.0443357 +-0.0298099 0.0677811 -0.0284707 +-0.0229012 0.115018 -0.0157633 +-0.0270064 0.0808968 0.0494715 +0.0404227 0.0885874 -0.0107894 +-0.087216 0.0937177 0.0257149 +-0.0690509 0.0654544 -0.0025414 +-0.0695527 0.04187 0.00402445 +0.00429234 0.0668529 -0.0329804 +-0.046755 0.0336866 -0.0157033 +0.0576125 0.0580597 0.0234109 +-0.000994561 0.129288 -0.0011666 +0.0454245 0.0904044 0.0131633 +-0.0438081 0.0899046 -0.0222231 +0.0199328 0.127154 0.0141603 +0.0114882 0.0963254 0.0495798 +0.0218142 0.117368 -0.0105004 +-0.0438465 0.0359346 0.00839642 +-0.0714426 0.0632696 0.00712846 +-0.0759079 0.150006 -0.00888842 +-0.06794 0.126772 -0.00890268 +-0.0343726 0.127227 0.0072164 +0.0578211 0.0537494 0.00717652 +-0.0483087 0.135537 0.00740851 +-0.0568342 0.0666429 0.0356476 +0.0481112 0.0431114 0.00725444 +-0.0425043 0.117982 0.0312159 +0.0144699 0.0976455 0.0479677 +0.0563061 0.0508424 0.00620646 +-0.0300578 0.163895 -0.00500569 +0.0102245 0.0823018 -0.0318649 +0.0598453 0.0608733 0.0191849 +-0.0620027 0.172528 -0.0545971 +-0.0197571 0.0971344 0.046022 +-0.0611783 0.167226 -0.0592729 +-0.00613038 0.0999315 0.0488982 +0.0488619 0.047436 -0.000620948 +-0.0208111 0.118967 -0.0119295 +0.00352005 0.0786345 0.0561775 +-0.071061 0.15959 -0.0439233 +-0.0765957 0.161076 -0.0289322 +0.0259255 0.123359 0.0149571 +-0.0746094 0.14858 -0.0188631 +0.0569296 0.058069 0.024171 +-0.0338241 0.152569 -0.00489392 +-0.0455023 0.0615609 0.0388319 +-0.0654625 0.143948 0.0405383 +-0.0560519 0.0345032 0.0407254 +-0.0709341 0.162789 -0.0122264 +-0.078067 0.144487 -0.00381208 +-0.094099 0.121442 0.0152795 +-0.00327736 0.0410332 0.0476549 +-0.0500433 0.165539 -0.00195268 +-0.0774288 0.0712256 0.0238415 +-0.00725841 0.0408714 0.048906 +-0.0833667 0.142023 0.0429747 +-0.0692361 0.153199 0.0337122 +-0.0360543 0.0398378 -0.0294769 +-0.0403231 0.0344611 0.0371557 +-0.0207576 0.069984 -0.0381379 +0.0122374 0.0737871 -0.031159 +-0.0241603 0.0665253 0.044272 +0.0399369 0.0860773 0.0331939 +-0.0809073 0.123633 -0.00507492 +-0.00964827 0.166616 -0.0197629 +-0.00664529 0.1307 0.0129838 +-0.0209361 0.0381808 0.0128466 +-0.0538563 0.0970443 -0.0219059 +-0.0662078 0.0723697 0.0374848 +-0.0398566 0.099981 -0.0216989 +-0.0494761 0.0600183 0.034326 +-0.0157667 0.0742966 -0.0389627 +-0.0875711 0.0977385 0.0245274 +-0.0529166 0.0566407 0.0191372 +0.000745542 0.0955759 -0.0312149 +-0.0688619 0.10089 -0.0150284 +-0.0130273 0.178658 -0.0225027 +-0.00548585 0.118301 0.0387556 +-0.063934 0.169417 -0.04458 +0.00224686 0.131192 0.0191047 +-0.0526917 0.0662141 -0.0112413 +0.0316126 0.104759 0.0353509 +0.0222548 0.0776918 -0.0264111 +-0.0685061 0.105552 0.0384458 +-0.0576201 0.135609 -0.00546838 +-0.00760577 0.128788 -0.000526473 +-0.0262755 0.0383516 -0.00662702 +0.0096904 0.0344726 -0.0051827 +0.0183649 0.0355244 -0.0106716 +-0.0892922 0.0996701 0.0134013 +-0.0748707 0.116421 -0.00675171 +-0.054019 0.0333099 0.015848 +-0.0927402 0.125562 0.0292626 +-0.00859312 0.0384098 0.0205847 +-0.0574617 0.0399955 0.0466824 +-0.0890962 0.0996533 0.0114017 +-0.0393675 0.120945 -0.0119262 +-0.0498057 0.144755 0.010389 +-0.0800056 0.108388 0.0313605 +-0.0694061 0.153071 -0.0482738 +-0.0529002 0.0701503 0.0387731 +-0.00979568 0.178776 -0.0277733 +-0.0749384 0.177982 -0.0467773 +-0.080224 0.0913049 0.0343483 +0.0274404 0.0399547 -0.00370609 +0.0064659 0.11274 0.0407332 +-0.0218179 0.0350986 -0.0195001 +-0.0723907 0.151114 -0.0412874 +0.00590733 0.0340449 -0.020637 +0.0460177 0.0800284 0.0189631 +-0.0576496 0.0629466 -0.00612077 +-0.0519433 0.0503866 0.0326949 +0.0377573 0.0757194 -0.0117756 +0.0434133 0.0930689 -0.00182579 +-0.0445007 0.165214 0.00483168 +-0.0196553 0.063928 0.0497256 +-0.0766812 0.154876 -0.00631355 +-0.0344859 0.0335245 -0.0299041 +0.0132509 0.0349689 -0.0195966 +-0.0264467 0.0459901 0.0505652 +-0.00131456 0.122836 -0.0102349 +0.0122169 0.129551 0.00276868 +-0.0137494 0.0383366 0.00873382 +-0.0445005 0.116602 0.0322264 +-0.0346258 0.0408721 -0.0296689 +-0.0706305 0.0401508 0.00122659 +-0.0765009 0.0716493 0.0271716 +-0.0708234 0.155869 0.0257344 +-0.0311277 0.0566897 -0.0153882 +-0.0896944 0.133694 0.0395953 +0.000231967 0.0783204 -0.0356621 +0.0338144 0.115724 0.00791606 +-0.0300912 0.15662 0.000215848 +0.0464982 0.0677769 0.0257597 +-0.0214151 0.0595466 0.0459898 +-0.0572298 0.0696188 0.0382761 +0.0366123 0.064635 0.0370437 +-0.0264937 0.0973851 0.0437224 +0.0404949 0.0513767 0.0324659 +-0.0350844 0.107815 -0.0201106 +-0.0205025 0.0486482 0.0489372 +-0.0610181 0.13697 -0.00676267 +-0.0906044 0.135075 0.015212 +-0.0194066 0.174211 -0.0159442 +-0.0394983 0.0719214 0.0419294 +-0.0883414 0.120307 0.04718 +-0.00748928 0.0978336 0.0520944 +-0.0846404 0.107661 0.0233457 +-0.0214945 0.10716 0.0418366 +0.0181073 0.0398088 -0.0196993 +0.0190777 0.0384168 -0.0157069 +-0.0636502 0.159498 -0.051954 +0.0283128 0.0754542 0.0444772 +-0.054074 0.15164 -0.0027148 +-0.083614 0.154208 0.0184012 +-0.056485 0.0343785 0.0390076 +0.0337482 0.102096 0.0349353 +-0.0782584 0.1764 -0.0490322 +0.0136057 0.0460076 0.0440344 +-0.00550326 0.0801395 0.0576107 +0.0334132 0.0849144 0.041374 +-0.0113988 0.126257 0.0287047 +-0.0655972 0.169628 -0.0389928 +-0.0832568 0.154212 0.0141255 +-0.0820934 0.0898659 0.0320222 +-0.067283 0.17966 -0.0595334 +-0.062529 0.150617 -0.0195776 +-0.0299377 0.0847457 -0.0326018 +0.0607552 0.0664989 0.0131533 +-0.0228597 0.101618 -0.023963 +-0.0618668 0.165619 -0.0600772 +-0.081854 0.0937329 -0.00756112 +-0.0679516 0.170855 -0.0560296 +-0.0295118 0.108456 0.0388793 +0.0482509 0.0539799 0.0309574 +0.00823122 0.079605 -0.0335706 +-0.0526044 0.041455 0.0460966 +-0.0496802 0.165544 -0.00294037 +-0.0910152 0.129688 0.0372352 +-0.0404973 0.0972715 0.0419896 +0.00850648 0.0772375 0.0559821 +-0.0717922 0.153989 -0.0428988 +-0.0507334 0.147965 -0.00270623 +0.0127323 0.0860509 0.0536553 +0.0565626 0.0508082 0.0192018 +-0.047499 0.10845 0.0392246 +-0.00917487 0.0875708 -0.0370938 +-0.0783316 0.0788746 0.032897 +-0.0896787 0.135012 0.00721892 +0.00550113 0.0883518 0.0561015 +-0.0423419 0.0335706 -0.0240051 +0.0405574 0.104219 0.0191648 +0.00286437 0.130486 0.00148286 +-0.0643911 0.133918 0.0402655 +-0.0620868 0.139878 -0.00655442 +-0.0557051 0.12209 -0.00891575 +0.0589396 0.0566475 0.0201757 +0.0386112 0.0603508 -0.0077511 +-0.0806595 0.0855046 -0.00754297 +-0.0718229 0.0965348 -0.0152102 +0.0459498 0.0806271 0.0191734 +-0.0515557 0.141366 0.000880581 +-0.0859779 0.0910726 0.0273961 +-0.0194809 0.0757644 0.0547346 +-0.0526104 0.0335154 0.00699108 +-0.080479 0.155159 0.0180021 +-0.0500595 0.117739 -0.014504 +-0.0638596 0.0939187 -0.018635 +-0.0469776 0.034208 0.0289371 +0.0315208 0.0994913 0.038731 +0.0444927 0.0610909 0.0304355 +0.0212529 0.1262 0.0189269 +-0.0254692 0.0509386 0.0434079 +0.0476579 0.0715472 0.019969 +0.022698 0.118017 -0.00920048 +-0.0384222 0.125448 0.0219859 +-0.038314 0.170034 -0.0122167 +-0.0530543 0.14469 0.0223994 +-0.00492317 0.0389099 -0.00470281 +0.0373499 0.0533605 -0.00643641 +-0.0696712 0.171569 -0.0347594 +0.0436954 0.0959268 0.0201595 +0.0285253 0.065965 0.0429423 +-0.0466394 0.0345455 0.0392313 +0.0412883 0.0886287 0.0299331 +-0.0251747 0.0383636 -0.0175696 +-0.0674763 0.168038 -0.0560148 +-0.0634115 0.166723 -0.0396505 +-0.0443984 0.0671335 0.0404051 +-0.0524987 0.100127 0.0423619 +-0.0837023 0.110333 0.0361338 +-0.0757541 0.0819089 0.037226 +-0.0475033 0.0973719 0.0436212 +-0.0418104 0.0899475 -0.0227382 +-0.0308563 0.174216 -0.00433975 +-0.00771604 0.130016 0.0212618 +-0.0691125 0.156051 0.011784 +-0.049655 0.0664173 -0.0130805 +0.0212145 0.0401172 -0.0107008 +-0.0418108 0.128972 0.0103834 +-0.0623408 0.164683 -0.0455908 +-0.0776167 0.145877 -0.00384676 +0.0294578 0.079544 0.0444105 +-0.052057 0.15088 0.0153954 +0.0551015 0.0521065 0.00221795 +-0.0568769 0.116868 -0.0135067 +-0.0856284 0.151402 0.00824006 +-0.0512523 0.116429 -0.0151143 +-0.0568623 0.0941345 -0.0215512 +-0.0153943 0.099814 0.0443638 +0.0368805 0.101462 -0.00941022 +-0.0293998 0.0355494 -0.0195486 +-0.040872 0.105663 -0.0204372 +-0.0279821 0.0821961 0.0475971 +-0.0106963 0.176084 -0.0292514 +-0.00933224 0.038323 0.0168951 +-0.0792032 0.10313 -0.00756064 +-0.0540718 0.118333 0.0357708 +0.00450074 0.0938217 0.0540732 +-0.0746595 0.15617 0.0170913 +-0.0708414 0.0994113 -0.0147342 +-0.0516111 0.0530832 -0.00753985 +-0.0486234 0.0532712 -0.0094518 +-0.031704 0.172718 -0.00384226 +-0.00272576 0.130091 0.00149765 +-0.092388 0.120024 0.00928585 +-0.037643 0.153612 0.00331291 +0.0356049 0.0577583 0.0355158 +-0.0668801 0.103821 -0.0153002 +0.0379456 0.10977 0.0171703 +0.0191769 0.0959952 -0.0230407 +0.0391807 0.0658814 0.0336832 +-0.0690863 0.0666121 0.0278101 +-0.089106 0.114375 0.0298659 +-0.0216155 0.0436703 -0.028439 +-0.0266188 0.0490904 -0.0254391 +0.000108091 0.0340814 -0.0198793 +-0.0171613 0.159788 -0.00903074 +0.041574 0.0397142 0.0168995 +0.019656 0.0347604 0.000281692 +0.00764804 0.128583 -0.00254334 +-0.0553782 0.151032 0.0287496 +-0.0528315 0.0558373 -0.00742005 +0.0115037 0.109883 0.0397133 +0.03545 0.105907 -0.00815474 +-0.0629114 0.115341 -0.0117985 +-0.0234208 0.172725 -0.0129655 +-0.0890673 0.101028 0.0173829 +0.0236359 0.056409 0.0445932 +-0.0187325 0.0374026 0.0529482 +-0.0394792 0.105608 0.0388858 +0.0151319 0.0603601 0.0498992 +-0.080949 0.137599 -0.00280806 +-0.0546196 0.0345652 0.0426785 +-0.0465281 0.033544 -0.0026564 +0.0395657 0.0998694 -0.00580754 +0.0101223 0.108705 -0.0195083 +-0.0104988 0.09255 0.056119 +0.0330296 0.116688 0.0147767 +-0.0910722 0.141959 0.0151878 +-0.00849613 0.0703395 0.0565554 +-0.0574961 0.0904385 0.0452768 +-0.0530142 0.0490552 0.0256583 +-0.0294931 0.0717523 0.039896 +-0.0311676 0.0348856 0.0474529 +-0.00876366 0.0347363 0.0436201 +-0.0666703 0.0612745 0.0188657 +0.0173575 0.0940342 0.0480767 +0.0284806 0.111435 0.0343318 +-0.0468308 0.0941893 -0.021914 +-0.0265985 0.0562164 -0.027412 +-0.0871843 0.135176 0.0441499 +-0.063207 0.06374 0.0280276 +-0.0345021 0.0647803 0.0405279 +0.0597837 0.0567045 0.0121686 +-0.0474843 0.0818872 0.0439119 +-0.0589237 0.11399 -0.014753 +-0.0490056 0.122549 0.0307687 +0.0548584 0.0611516 -0.00113589 +-0.0458004 0.0353434 -0.021332 +0.00134052 0.0539375 -0.0306386 +-0.0278278 0.177181 -0.00696301 +-0.0427537 0.0783105 -0.0194623 +0.00651372 0.089712 0.0551929 +-0.0494951 0.0819134 0.044146 +0.0305588 0.055351 -0.0157687 +0.0297469 0.0929269 0.0431563 +0.0125099 0.0519837 0.0495237 +0.0459653 0.0806289 0.018177 +-0.053548 0.149321 0.0244145 +-0.0317948 0.0651814 -0.020436 +-0.019834 0.0868717 -0.0379507 +-0.0119886 0.038466 0.00715809 +-0.0770198 0.170132 -0.03325 +-0.0269539 0.17866 -0.00745161 +-0.0756616 0.0695139 0.0239361 +-0.0474944 0.116586 0.0319739 +-0.0671319 0.0355924 0.0145398 +-0.0783661 0.108548 -0.00557568 +-0.0284012 0.0860445 -0.0346283 +0.0257301 0.0379057 0.0280361 +0.00740689 0.0389878 -0.0235836 +-0.0629696 0.131105 0.0405653 +-0.0380606 0.157756 -0.011216 +-0.0361107 0.0459963 0.0412564 +-0.053455 0.0625326 0.0304805 +-0.0731839 0.178324 -0.0475338 +0.0137018 0.0888713 -0.0301465 +-0.0894038 0.140678 0.0331776 +-0.0114925 0.06602 0.0547394 +-0.0853984 0.0872002 -0.00151975 +-0.00957697 0.128995 0.00181181 +0.0571986 0.0536922 0.00517882 +0.0181761 0.0974249 -0.0228373 +0.0414526 0.0425673 -0.000513932 +-0.0423634 0.121318 -0.0123099 +-0.0854479 0.0898939 -0.00155092 +-0.0136017 0.0392183 -0.0267222 +-0.0353577 0.174409 -0.00212011 +-0.0930586 0.122743 0.0102788 +0.0208421 0.0882147 -0.0254487 +0.000267595 0.0697483 -0.0342392 +0.0443612 0.0458824 -0.00271937 +-0.0794062 0.147442 0.0402641 +0.0285362 0.120755 0.0202147 +-0.0354498 0.0346389 0.0415402 +0.0189212 0.0875932 -0.0268145 +-0.0326685 0.0478014 -0.0229356 +0.0213046 0.0374522 0.0382518 +0.0119628 0.111848 -0.018535 +-0.0754368 0.114522 0.050709 +-0.0575342 0.0415089 -0.00843308 +-0.0289002 0.0348381 0.0445217 +-0.0558188 0.0336396 0.0205147 +-0.0294901 0.0946648 0.0450535 +0.0140142 0.0519753 0.0481823 +-0.0499383 0.162625 -0.0047964 +-0.0285131 0.111188 0.0369648 +-0.0777024 0.176292 -0.0501047 +-0.0458377 0.0970756 -0.021885 +-0.0647866 0.167644 -0.0344082 +-0.08472 0.111015 0.033569 +-0.0624074 0.1491 -0.0095736 +0.0455563 0.078849 0.0217954 +0.0386173 0.0673644 -0.0117551 +-0.0516941 0.147804 0.0164166 +-0.0638593 0.0953482 -0.0183667 +-0.0887889 0.117194 0.003272 +-0.0667452 0.0342007 0.0124321 +-0.0921816 0.132336 0.0152245 +-0.0790475 0.168047 -0.0349702 +-0.0445079 0.0424992 0.043443 +-0.0914924 0.12135 0.00727423 +0.00205109 0.0347195 0.0440743 +-0.0757523 0.0687815 0.0210323 +0.0254197 0.0394349 0.0320923 +0.0445209 0.095967 0.011159 +0.00418461 0.0908826 -0.0329329 +-0.0447434 0.0753343 -0.0181391 +0.0465277 0.0497043 0.0301725 +-0.0231678 0.124994 -0.000333927 +-0.0261386 0.0359205 -0.0192491 +0.000314733 0.0597904 -0.0332055 +-0.0664067 0.0336797 0.00582425 +-0.0179785 0.068344 0.053543 +0.0128834 0.035495 0.00385056 +-0.064012 0.0432207 0.0306772 +0.0356112 0.0942094 0.0375896 +0.0433586 0.0589158 -0.00469925 +-0.0741431 0.153026 0.0335308 +-0.0366764 0.0421455 0.0447176 +-0.0616357 0.158429 -0.0245888 +-0.0777899 0.164478 -0.0251991 +-0.0774203 0.177255 -0.0472003 +-0.0723466 0.0663158 0.0221054 +-0.00945876 0.0366145 -0.0165831 +-0.00782909 0.0896438 -0.0364286 +-0.0483458 0.0338972 -0.0143683 +-0.0548931 0.111218 -0.0174922 +0.0263272 0.0545944 -0.0208638 +-0.078467 0.147461 0.0407301 +0.0472196 0.0430325 0.00527833 +0.0313294 0.118714 0.0127065 +-0.00880796 0.0868775 -0.037347 +-0.054028 0.0344996 0.0411656 +-0.00639115 0.121199 -0.012466 +0.0300864 0.0564003 0.0398351 +-0.0790124 0.0782686 0.0315155 +-0.0134683 0.0964232 0.0523159 +-0.0763221 0.159003 -0.0110053 +-0.0600876 0.0367271 0.0456071 +0.0364957 0.049851 0.0316154 +0.00849848 0.0402756 0.0453316 +0.0205837 0.0754832 0.0508919 +-0.071014 0.148895 -0.037822 +0.0170761 0.115474 -0.0144429 +-0.063767 0.0615586 0.0227478 +0.0437965 0.0987467 0.00816432 +-0.0513326 0.0542594 0.0137993 +-0.0414552 0.0341096 -0.00949275 +0.0395669 0.101281 -0.00480928 +-0.0918243 0.128307 0.0322434 +-0.0474749 0.0945717 0.0440635 +-0.0704486 0.16924 -0.0264473 +0.027192 0.101376 -0.017349 +-0.0895884 0.114751 0.0258504 +-0.0713206 0.156784 -0.042915 +0.0384501 0.0914717 0.0346309 +0.0214747 0.0996539 -0.0214946 +-0.0106582 0.0527176 -0.0332954 +0.00773558 0.128847 0.0268569 +0.0202904 0.0912514 -0.02462 +0.00332905 0.0553943 -0.0309954 +-0.0921247 0.116117 0.0353113 +-0.0146765 0.0526113 -0.0325234 +-0.0657759 0.0410192 0.0130518 +0.0587274 0.0538199 0.013179 +0.0291394 0.102042 -0.0160578 +-0.0701142 0.0625797 0.0062174 +0.0457389 0.0876049 0.0111625 +0.00224905 0.118538 -0.0156887 +0.0520156 0.0596733 -0.00368903 +-0.0891532 0.136419 0.0102028 +-0.0400348 0.0344619 0.0337052 +-0.0461887 0.0335082 0.00469546 +-0.0923435 0.115998 0.0113188 +-0.00713141 0.127357 0.0287426 +0.0252624 0.0747714 -0.0251152 +-0.0453044 0.0587827 0.038737 +0.03635 0.0368836 0.00917982 +-0.0527446 0.0753599 -0.0182797 +-0.0728584 0.132623 0.0509226 +-0.00672844 0.0698676 -0.0361675 +0.0413912 0.0459759 -0.00421898 +-0.0201655 0.0348026 0.0446658 +-0.0641545 0.0391804 0.0263583 +-0.00246627 0.111608 -0.0202454 +-0.0134033 0.110892 -0.0194483 +0.043074 0.0401669 0.0073914 +0.0192967 0.0693907 -0.0288221 +-0.0619039 0.16157 -0.0305885 +0.00333358 0.0341967 0.0104872 +0.0421258 0.100042 0.000179811 +-0.0386776 0.11516 -0.0158482 +-0.00807178 0.0386982 0.0276584 +-0.0756134 0.163772 -0.0350068 +-0.0672387 0.155112 0.00519073 +0.0276118 0.053509 0.0397341 +-0.0779406 0.158305 -0.0189233 +-0.00470743 0.0627772 -0.0352137 +0.0325643 0.0981766 0.0384761 +0.0296733 0.0481683 -0.00874324 +0.0113105 0.059545 -0.0296135 +-0.0653574 0.0733073 0.0386226 +-0.0120884 0.101067 0.0439606 +-0.0268179 0.0735627 0.0438663 +-0.0513902 0.0530791 0.0216216 +-0.0678614 0.042287 0.00944731 +-0.0899071 0.133806 0.0352156 +-0.0122404 0.0385117 0.0269697 +-0.0719375 0.16298 -0.0125698 +0.0473212 0.0533258 -0.00537345 +-0.030503 0.0588732 0.0373493 +-0.0905557 0.120241 0.0451196 +0.0219406 0.0388423 0.0393076 +-0.0672891 0.178209 -0.0595336 +0.0302182 0.0535528 0.0382346 +-0.0815406 0.110006 0.0333062 +-0.0477684 0.0811966 -0.0205178 +-0.048671 0.138621 0.0113976 +-0.0562999 0.0506286 -0.00237306 +-0.0854189 0.0791501 0.00750351 +0.000105856 0.117482 -0.0165473 +-0.0624071 0.149633 -0.00268499 +-0.0682914 0.172271 -0.0560251 +-0.0642448 0.0333797 -0.00245942 +0.0203456 0.053671 -0.0267089 +-0.0711203 0.163576 -0.0137477 +-0.0126641 0.0511309 -0.0317686 +-0.066211 0.180426 -0.0565833 +0.0266688 0.0892152 -0.0224539 +0.01736 0.128384 0.0132094 +-0.0541813 0.154195 0.0142529 +-0.0799749 0.0710714 0.0163832 +-0.0379044 0.0336424 -0.0213286 +-0.0747588 0.0669346 0.0175421 +-0.0221189 0.12668 0.005878 +-0.0623544 0.152149 -0.0255836 +0.0137867 0.0377633 0.0443361 +0.0469104 0.0589185 -0.00506663 +-0.0188119 0.0964492 -0.0282644 +-0.000384494 0.130522 0.00237337 +-0.0647338 0.0418755 0.0296857 +-0.0418518 0.0999485 -0.0214177 +-0.0135206 0.0432479 0.0507363 +0.0314548 0.113206 0.0298812 +0.0211096 0.0343656 0.00467028 +0.0493524 0.0516707 -0.00371978 +0.0324504 0.0916248 0.0417895 +-0.0405477 0.118695 -0.0135582 +-0.0421609 0.128746 0.00435225 +0.00852878 0.034888 0.0362651 +-0.0599768 0.12527 -0.00809043 +-0.0624255 0.16468 -0.0465913 +0.0305387 0.114047 0.0302625 +-0.0209297 0.158088 -0.00822134 +-0.00449554 0.0633716 0.0561592 +0.00751849 0.0440876 0.0454461 +-0.0617319 0.160008 -0.0275856 +-0.00111302 0.130629 0.0207594 +-0.000792652 0.0894877 -0.0349748 +-0.0534886 0.0862338 0.0454573 +0.0102426 0.0752832 -0.032327 +-0.0866178 0.151117 0.0269024 +0.00586712 0.0991316 -0.0229749 +-0.018487 0.0772258 0.0557066 +-0.0220963 0.0623062 0.0451655 +-0.0263156 0.124827 0.00142734 +0.00449781 0.0519669 0.0532713 +-0.0318681 0.105727 -0.021166 +-0.034171 0.0822565 -0.0245355 +-0.0160192 0.104518 -0.0227486 +-0.0336086 0.0394857 -0.0301589 +0.0179261 0.0900567 0.048881 +0.028994 0.0915879 0.0438177 +0.0419459 0.0625408 -0.0027477 +-0.0623435 0.161536 -0.0425937 +0.0521127 0.0595383 0.0295528 +0.00603967 0.0344425 -0.0152712 +-0.0200036 0.0384998 -0.0166705 +0.0335055 0.0549395 0.0359782 +0.0413899 0.0475369 -0.00516876 +0.0571049 0.0594437 0.0244408 +-0.0642323 0.124186 0.0475964 +-0.0104933 0.0952299 0.0545267 +0.0183283 0.0593891 -0.0275077 +0.0556724 0.0698728 0.00398853 +0.02895 0.086199 0.0437135 +-0.00575467 0.1008 0.0460186 +-0.0117555 0.0969094 -0.0306933 +-0.0570352 0.129621 -0.00626418 +-0.06396 0.034704 0.0249317 +-0.0269668 0.0674701 -0.0325423 +0.00372222 0.0941665 -0.0317421 +-0.0708312 0.0951391 -0.0158707 +0.0351494 0.0633173 0.038442 +0.0303372 0.119206 0.0194646 +-0.0174811 0.118153 0.0357243 +-0.0928105 0.116053 0.0203106 +-0.012498 0.078722 0.0572931 +0.0102589 0.100444 -0.0223447 +0.0311369 0.0982118 0.0399163 +-0.0870966 0.0995146 0.0044219 +0.0372771 0.100696 0.0312566 +-0.0464652 0.16842 -0.00496016 +-0.0340766 0.172586 -0.0145127 +-0.0632966 0.144361 -0.00960502 +-0.00396533 0.128634 -0.00247998 +-0.0810179 0.0964125 -0.00756981 +-0.0296304 0.159454 -0.0131553 +0.0323433 0.0592178 0.0396143 +0.0171685 0.0490344 0.0439112 +-0.0798847 0.0706373 0.0145533 +0.00550249 0.0758881 0.0564988 +-0.0285046 0.0588067 0.036767 +-0.054422 0.152991 0.0228754 +-0.0663081 0.150341 0.0377708 +-0.0409099 0.173193 -0.0056112 +-0.00259587 0.0391262 -0.0253465 +0.0394316 0.0807401 0.0342345 +0.048793 0.049707 0.0281736 +-0.0225905 0.0365035 -0.0286129 +-0.0185117 0.0387718 -0.0147573 +-0.0889514 0.121274 0.00229944 +0.0255827 0.034587 0.0128177 +-0.0258582 0.100162 -0.023852 +-0.0317095 0.0382098 0.0512104 +-0.0608875 0.104029 -0.0182853 +-0.0577034 0.0591273 0.0216745 +-0.0316861 0.0553325 -0.0133983 +-0.0579004 0.0336435 0.0147513 +-0.050636 0.0604891 -0.0105672 +-0.0484979 0.101507 0.0419588 +-0.0735846 0.159652 -0.032921 +-0.0596849 0.136693 0.0347693 +-0.0527883 0.0490273 0.0246529 +-0.00587038 0.038496 0.0083708 +0.0443161 0.095966 0.0141619 +-0.0355281 0.0832646 0.0432735 +-0.0552893 0.160933 0.00328411 +-0.0694051 0.177621 -0.0490523 +0.0553162 0.0608807 0.0271604 +-0.0115038 0.082913 0.0576973 +0.00149573 0.118307 0.0388892 +-0.0643923 0.178295 -0.0607754 +-0.0696234 0.0702067 -0.00731499 +-0.0684446 0.156174 0.0134711 +-0.0631402 0.158352 -0.0425984 +-0.028277 0.0807444 0.0465032 +-0.0851037 0.143224 0.00618561 +-0.0701909 0.171451 -0.0335218 +-0.0542038 0.149302 0.0263885 +-0.0230864 0.0416339 0.0540702 +-0.0848397 0.124371 0.0492354 +-0.0509437 0.0349503 0.0448676 +0.0147035 0.0490065 0.0456198 +-0.059742 0.156334 0.00641085 +-0.07522 0.0688188 0.0015368 +-0.0196569 0.0390707 0.0375255 +0.0459174 0.0834201 0.0141703 +-0.0785236 0.0894249 -0.0105705 +-0.0200463 0.0893341 0.0549931 +-0.0173075 0.11558 -0.0164072 +0.000516136 0.0760027 0.0580883 +0.042165 0.0859172 -0.00778247 +0.0203197 0.0664896 -0.0280597 +-0.0604906 0.0959808 0.043977 +-0.00180047 0.0840422 -0.0369301 +0.0106204 0.119324 -0.014581 +0.000242427 0.128645 -0.00250259 +-0.0544918 0.0876045 0.0451014 +-0.081252 0.0993542 0.0322994 +0.0225815 0.0632207 0.0466294 +-0.0528036 0.129718 0.0341858 +0.0388075 0.10554 0.0251669 +-0.071237 0.156366 0.0212013 +-0.0419921 0.0349859 0.0415962 +0.0319555 0.0413937 0.028007 +-0.0465003 0.112564 0.0357108 +0.00310161 0.111606 -0.0202814 +0.0306552 0.102095 0.0374778 +0.0158981 0.0576764 0.0492073 +-0.036508 0.127508 0.00348399 +0.0403284 0.0574912 -0.00511853 +-0.06805 0.157495 -0.00534926 +-0.0870566 0.0847034 0.0124776 +-0.0785035 0.127443 0.053282 +0.0093755 0.0479282 -0.0271091 +-0.00151782 0.111398 -0.0200294 +-0.0386619 0.0336282 0.00792475 +-0.0321818 0.0666221 -0.0204419 +-0.0516478 0.0334795 -0.00363494 +-0.0505323 0.0346392 0.0434961 +-0.0871097 0.129792 0.0470428 +-0.00115829 0.0378141 0.0044798 +0.00250327 0.0351261 0.00210209 +0.0232927 0.0720269 -0.0262872 +0.0386441 0.0772022 -0.0107761 +0.00730214 0.0624461 -0.0313742 +-0.0601285 0.0334799 -0.007174 +-0.0311809 0.165241 -0.0158459 +-0.0456556 0.126096 -0.00729728 +0.01482 0.0920349 -0.0274402 +-0.0578658 0.154169 0.0274197 +-0.0766831 0.148629 -0.00786722 +-0.0548976 0.0574275 -0.00541424 +-0.0213746 0.0936314 -0.0333712 +-0.0795038 0.127439 0.0531413 +-0.0719602 0.0381531 0.00797803 +0.0465231 0.0539629 0.0319545 +-0.0327551 0.126411 0.00489661 +-0.0907403 0.135093 0.0162106 +-0.0798437 0.119249 -0.00499812 +-0.0195891 0.186548 -0.0163318 +-0.0336818 0.0474202 0.0430149 +0.0387003 0.0847793 0.034951 +0.005123 0.108732 -0.0201833 +-0.0355723 0.127236 0.00383072 +-0.0593755 0.0706339 0.0387044 +-0.0701237 0.0337481 0.00141754 +-0.0596389 0.0645563 -0.0073211 +-0.0247044 0.0349045 0.050534 +-0.0698349 0.155896 0.010068 +-0.00664542 0.0496313 -0.030799 +-0.0560508 0.049202 -0.00336342 +-0.0846449 0.0777798 0.00851725 +0.0428444 0.0958802 0.0241636 +0.0226208 0.0505695 0.0412719 +-0.0421939 0.165153 -0.0106292 +-0.0530779 0.153128 -0.00337034 +-0.0183995 0.128105 0.0144964 +0.0110096 0.125946 -0.00574203 +0.0135498 0.109816 -0.0183273 +0.0246987 0.1167 0.0323736 +-0.0323986 0.169744 -0.00487272 +0.0414995 0.0513848 0.032599 +-0.0820948 0.0748388 0.0105311 +-0.0771842 0.102138 0.0352151 +-0.0627985 0.161541 -0.0235962 +0.0203907 0.0490438 0.0415331 +-0.0284862 0.120462 -0.00941436 +0.00850898 0.0990197 0.0481875 +0.0181919 0.0781799 0.0527467 +-0.0323958 0.0383608 -0.00233468 +-0.0198811 0.121697 -0.00881459 +-0.0289402 0.154865 -0.00285823 +-0.055522 0.0600566 -0.00554029 +-0.0446949 0.0680713 -0.0159309 +-0.0505296 0.0657745 0.0361047 +0.0251595 0.0995713 -0.0194056 +0.0456643 0.0876028 0.0121678 +-0.0533672 0.143136 0.0253913 +-0.05283 0.138085 0.0270749 +-0.0324865 0.0974182 0.0443398 +0.00543862 0.118556 -0.0157347 +-0.0704807 0.1602 -0.00768602 +0.00476485 0.0378127 -0.0129945 +0.0453303 0.0875809 0.0171699 +0.00844159 0.109753 0.0403226 +0.0199305 0.0645206 0.0480779 +-0.0865012 0.0967606 0.00143514 +0.0239407 0.0433254 -0.00969837 +-0.0464991 0.0818806 0.0436011 +-0.0365053 0.0832925 0.043701 +-0.0511539 0.144707 0.0143676 +-0.0354688 0.0973337 0.0432864 +0.0315086 0.0361416 0.0180806 +-0.0620392 0.152203 -0.0175795 +-0.00174908 0.0726707 -0.0356483 +0.0482658 0.0482112 0.0273759 +0.0205204 0.0686316 0.0489712 +0.0055446 0.129937 0.0246284 +-0.0509363 0.126898 0.0333376 +0.0503401 0.0525815 0.0286903 +-0.0663805 0.0356243 0.0152158 +-0.0631059 0.039729 0.0160762 +-0.0794629 0.0702542 0.0118898 +-0.0440204 0.0437247 -0.0153148 +-0.0258047 0.0811626 -0.0373791 +-0.0654527 0.156561 -0.05302 +-0.0801896 0.0926573 0.034266 +-0.0226625 0.0493576 -0.0281762 +-0.076512 0.15561 -0.00689633 +-0.0316228 0.0384779 -0.00967109 +0.0073096 0.0609801 -0.0307365 +-0.036779 0.0827886 -0.0223365 +-0.0454595 0.0846983 0.0440929 +-0.0310517 0.0636961 -0.0214339 +0.044971 0.0748214 0.0226935 +-0.0245671 0.182966 -0.016053 +-0.0343794 0.125292 -0.00246071 +0.0260218 0.0493062 -0.0196675 +0.00451349 0.0786214 0.0559314 +-0.0272596 0.0409813 0.0537728 +-0.0865558 0.105007 0.0203641 +-0.0427952 0.0347556 0.00787321 +-0.0294944 0.0889496 0.044252 +-0.0691615 0.0832998 0.0419252 +-0.077704 0.175863 -0.0450747 +-0.0595653 0.0407951 0.0449735 +-0.0118194 0.129824 0.0125318 +-0.0304269 0.169744 -0.0072967 +0.00750596 0.0674413 0.055134 +-0.0895098 0.0942825 0.014433 +0.0566953 0.0550372 0.00319006 +0.0358581 0.0995241 -0.0113664 +-0.0541815 0.15229 0.0244282 +-0.0924737 0.125588 0.0362608 +-0.0750911 0.110634 0.0449752 +-0.0272685 0.0368017 0.0538626 +-0.0614955 0.104283 0.0410789 +-0.0721148 0.067315 0.0248191 +0.034236 0.094243 0.0391072 +-0.0724407 0.178857 -0.0487083 +-0.06691 0.033448 -0.00125687 +-0.0660379 0.0349778 0.0329828 +-0.0701097 0.156012 0.00122102 +-0.0157478 0.0352634 0.050467 +-0.0465076 0.160794 0.0071118 +-0.0156218 0.0365183 -0.0177136 +-0.00687536 0.0389886 0.0330493 +0.0201949 0.0959886 -0.0227072 +0.00536718 0.125777 0.0317922 +-0.0689036 0.105186 -0.0135662 +-0.0576505 0.0508003 0.0036576 +-0.0372877 0.0353832 0.0246264 +-0.0766222 0.0824671 -0.0115781 +-0.0570813 0.0344654 0.0405363 +0.0284042 0.0431456 -0.00552671 +-0.078005 0.151454 -0.00188508 +0.00274784 0.0953419 -0.0309592 +-0.0764328 0.147234 -0.00786196 +-0.0187399 0.0656914 -0.0372373 +-0.0626784 0.0670893 0.0340154 +-0.066213 0.0377522 0.0375383 +0.00946024 0.0346841 0.0420404 +-0.00763703 0.046711 -0.0299661 +0.0217664 0.106013 0.0404033 +0.0159395 0.0900955 0.0512828 +-0.0714939 0.126019 0.0527835 +-0.035368 0.122868 0.0260927 +0.0397669 0.0885289 -0.0117744 +-0.0235296 0.159196 -0.00227474 +-0.0299919 0.0383903 -0.00556396 +0.00840449 0.0360838 -0.0229864 +-0.0688351 0.0951745 -0.0162656 +0.0188202 0.124811 0.0265908 +-0.0542034 0.0477679 0.0266683 +-0.00718512 0.0384992 0.0226001 +0.0191993 0.0352366 0.0345338 +-0.0486962 0.13553 0.00541025 +0.0065027 0.0533154 0.0528127 +-0.064997 0.0410349 0.013689 +0.0235192 0.107033 0.0392433 +-0.0526101 0.0632972 -0.0100113 +0.0288769 0.120252 0.0217702 +-0.00882418 0.0896578 -0.0365764 +-0.0563459 0.0335397 0.00260276 +0.0287652 0.114389 -0.00726895 +0.0564669 0.0577845 0.00118215 +-0.0623836 0.163016 -0.0556039 +-0.0235351 0.118111 0.0331575 +0.0443232 0.0889197 0.0231574 +0.0349753 0.114037 0.00545779 +0.0269837 0.108749 0.0374141 +-0.000496913 0.056284 0.0547664 +-0.0889882 0.115854 0.0042936 +-0.0688144 0.0851338 -0.0175228 +-0.0304795 0.0746468 0.0405648 +-0.0616784 0.0692367 -0.0132074 +-0.0554108 0.0334149 -0.00799207 +-0.0610813 0.0342293 0.0311986 +-0.0655517 0.155937 0.0246661 +-0.0767597 0.163153 -0.0191399 +-0.0140741 0.0388251 0.0317136 +-0.02858 0.0731702 0.040795 +-0.0480086 0.134685 0.0198054 +-0.00949027 0.107257 0.0434611 +-0.0224071 0.0510134 0.0440995 +0.0026516 0.0341771 0.00670019 +-0.00282121 0.086807 -0.0363939 +0.00461042 0.092806 -0.0323339 +0.0444404 0.0425371 0.0222477 +-0.0251232 0.0838362 0.0531591 +-0.0711154 0.155676 0.00670049 +-0.0144639 0.0977101 -0.0275565 +-0.0176152 0.0407641 -0.0279656 +-0.0273216 0.038344 -0.00129213 +-0.0781679 0.14865 -0.00288263 +-0.071113 0.171733 -0.033865 +-0.0362701 0.0365605 0.0458807 +-0.0245074 0.0384654 -0.0082311 +-0.0768529 0.106269 -0.00826114 +0.0173624 0.088714 0.0498122 +-0.0872512 0.106353 0.0133638 +-0.0647985 0.124215 0.0485 +0.0274255 0.0686124 0.0431235 +-0.0275944 0.0717748 -0.0345689 +-0.00449702 0.0590031 0.0543234 +-0.00869265 0.0598566 -0.0344628 +-0.0624896 0.106999 0.0393995 +0.00296819 0.0986498 -0.0244883 +-0.0716108 0.0701594 -0.00639514 +-0.0454969 0.0733342 0.042072 +0.0217583 0.0505253 0.0417779 +0.0599479 0.0692188 0.0141571 +0.0159709 0.0859869 -0.0291978 +0.0474137 0.0671743 0.000684928 +0.045537 0.0890033 0.0131643 +0.025235 0.0690602 -0.0242719 +-0.0140104 0.117853 -0.0148385 +-0.0417786 0.156522 0.00614116 +0.0529468 0.0608894 0.0290245 +-0.0623778 0.167137 -0.0608155 +-0.043781 0.0422821 -0.0183128 +0.0194047 0.0727279 0.0509389 +-0.025431 0.180214 -0.00870569 +0.00163035 0.0962275 -0.0299038 +-0.0609057 0.119508 -0.00974426 +-0.0265539 0.180361 -0.00771033 +-0.00586693 0.104511 -0.0229142 +-0.0446124 0.0534121 -0.0108089 +-0.0607974 0.125499 0.0419374 +-0.0676844 0.160922 -0.0559942 +-0.0718937 0.0376106 0.00231258 +-0.0769618 0.103489 0.0349575 +-0.0136243 0.0450811 -0.0280269 +-0.0656393 0.145367 0.0403005 +-0.067848 0.0994807 -0.015636 +-0.0674005 0.156127 0.0138467 +-0.0814089 0.141772 -0.000809353 +0.0343092 0.113032 0.0252402 +-0.0378129 0.0900392 -0.0237743 +0.0410972 0.0779427 0.031296 +-0.0594968 0.104294 0.0413247 +-0.045045 0.0657131 0.0396946 +0.0424943 0.0569701 0.0318321 +0.0380924 0.0618152 0.0338774 +-0.0181385 0.038277 0.0223668 +-0.0680503 0.114246 0.0489904 +-0.089636 0.0902445 0.0164491 +-0.0259323 0.124597 0.000115117 +-0.0341212 0.124555 0.022076 +-0.0117695 0.075665 -0.0382916 +-0.0666005 0.156329 0.0184798 +0.0143467 0.0580862 -0.0289605 +0.00620145 0.0832401 0.0564613 +-0.07299 0.158232 -0.0339184 +0.0179038 0.0866718 -0.0278625 +-0.0447879 0.085543 -0.0216723 +0.0240528 0.0347605 0.00303304 +0.0471472 0.0437632 0.0216364 +-0.0254743 0.105723 0.0415881 +-0.0914335 0.120003 0.00730918 +-0.0381624 0.035793 0.0434599 +-0.0470742 0.127422 -0.00463291 +0.000501079 0.0620074 0.0565701 +-0.0488714 0.104198 -0.020417 +-0.00949444 0.063336 0.0558203 +-0.0227837 0.0742285 -0.0385317 +-0.00949145 0.115547 0.0400498 +-0.0665386 0.0804536 0.042224 +0.00148883 0.121012 0.0365952 +-0.024281 0.069418 0.0457102 +0.019893 0.114777 -0.0136897 +-0.0904011 0.115144 0.0307537 +-0.00370938 0.0627709 -0.0350699 +-0.00367406 0.0555102 -0.0326331 +-0.0125077 0.0773203 0.0572074 +-0.0574951 0.093265 0.0451928 +-0.0942113 0.120123 0.0212925 +-0.0213358 0.165379 -0.00997448 +-0.0615068 0.0789665 0.042503 +0.00239149 0.0343213 0.0156312 +-0.0639126 0.11101 -0.0139478 +0.0381439 0.103967 -0.00387277 +-0.0816033 0.101897 -0.00556882 +-0.0582639 0.12123 0.0402958 +-0.0729322 0.156105 0.0220745 +-0.0514974 0.086244 0.0456131 +-0.0876158 0.137864 0.0416648 +0.0120082 0.0967361 -0.024421 +0.0147782 0.0929392 -0.0263979 +-0.0510555 0.150177 -0.00351578 +-0.0165661 0.163924 -0.0100865 +-0.00519498 0.0390091 -0.00671136 +-0.021716 0.0641363 -0.0354017 +-0.0523357 0.136679 0.027812 +0.0335961 0.0633113 0.0397473 +-0.0384865 0.0492045 0.0394845 +-0.0339969 0.152567 -0.000573454 +0.0175453 0.0645325 0.0499023 +-0.0895247 0.139293 0.0351741 +-0.0870044 0.115772 0.00228167 +-0.0852267 0.0792333 0.0184927 +-0.0927665 0.116031 0.013321 +-0.0240588 0.111793 -0.0183639 +0.0191819 0.123133 0.0296014 +0.0163312 0.0767998 0.0535416 +-0.0834123 0.0856961 -0.00454328 +-0.0614974 0.0904473 0.0454009 +-0.0648003 0.0370671 0.0164284 +-0.0102366 0.125327 0.0306172 +-0.0512935 0.0556822 0.0305914 +-0.0674962 0.0930678 0.0426016 +-0.0707247 0.156767 -0.045914 +-0.0611468 0.0584317 0.0117762 +0.0152753 0.0680849 -0.0302874 +-0.0638387 0.163409 -0.0592654 +0.030267 0.0496887 -0.0107252 +-0.0227695 0.0684387 -0.0367377 +0.0216497 0.065881 0.0470485 +-0.0849335 0.125015 -0.00321773 +-0.0364959 0.0562316 0.0392716 +-0.0132153 0.0406258 0.0508237 +0.00695506 0.0982177 -0.0239936 +0.00047843 0.12713 -0.00487855 +0.0354045 0.046148 -0.00604177 +-0.0913848 0.129679 0.0322355 +-0.0924762 0.124198 0.0322659 +-0.0057025 0.12744 -0.00517306 +0.032332 0.110047 0.0311032 +-0.0374975 0.0662835 0.0416878 +-0.0306651 0.155159 -0.000638202 +0.0161 0.12839 0.0198796 +-0.0392376 0.124806 0.0231803 +0.00131504 0.0597888 -0.0330641 +-0.0445007 0.0931064 0.043109 +-0.0174373 0.0336888 -0.022956 +-0.0536509 0.0343311 0.0291848 +0.0348249 0.110986 -0.0028353 +0.0280633 0.100998 -0.0169482 +0.0423903 0.0490515 -0.00589339 +0.0306614 0.119205 0.0153072 +-0.0604957 0.0876028 0.045161 +-0.0137303 0.0699989 -0.0380502 +-0.00750341 0.130405 0.00835201 +-0.0494799 0.116621 0.0323892 +-0.058737 0.075302 -0.0183386 +-0.0518764 0.0550741 0.0228473 +-0.0293899 0.118762 -0.0116358 +-0.0743199 0.158257 -0.0279194 +-0.0265758 0.0533991 -0.0263925 +-0.047508 0.0903548 0.0442194 +-0.0104972 0.0815462 0.0580111 +-0.0356136 0.0408304 -0.0293778 +-0.0622824 0.159968 -0.0396048 +-0.0727292 0.0730957 -0.00887693 +0.0252321 0.0889244 0.0471615 +0.0362811 0.0443655 0.0298564 +-0.0583717 0.138143 0.0331568 +0.0516174 0.0711387 0.00464104 +0.00649466 0.0427198 0.0454361 +-0.0187116 0.0598792 -0.0350421 +-0.0603468 0.0339987 0.0210215 +0.0310626 0.107429 0.0345663 +-0.0153967 0.0384283 -0.000805549 +0.0390675 0.0617702 -0.00778266 +-0.0718188 0.0907915 -0.0158595 +-0.0066784 0.0569449 -0.0331859 +0.00738229 0.0448872 -0.0251556 +0.0193881 0.0506007 -0.0247336 +-0.0171345 0.165288 -0.0183426 +0.0172728 0.0694422 -0.0295359 +0.0518225 0.072596 0.0200635 +-0.085483 0.140457 0.00319222 +-0.049383 0.140141 0.0133936 +-0.076884 0.155644 0.0221655 +-0.0584972 0.111135 0.0367864 +-0.0264895 0.102963 0.0427118 +-0.016526 0.0387631 -0.00875803 +-0.060493 0.107007 0.0395303 +-0.0133132 0.0385196 -0.000466347 +0.027107 0.0406036 0.0313674 +-0.0852773 0.137655 0.00128094 +-0.0776954 0.16804 -0.0399638 +-0.0465214 0.0505047 0.038174 +-0.0251912 0.178602 -0.0188241 +-0.0524991 0.101502 0.0417298 +-0.0142894 0.184628 -0.0268303 +0.00710791 0.110158 -0.019992 +-0.0766628 0.155608 -0.00789132 +-0.0814761 0.0734707 0.0145404 +-0.0644951 0.0789605 0.0422031 +0.0403539 0.105584 0.00317596 +-0.0633486 0.0371336 0.0178291 +-0.0808831 0.117721 -0.00384392 +-0.0265027 0.10847 0.0397156 +0.0236097 0.121674 0.028372 +-0.0623736 0.164689 -0.0415928 +-0.0495545 0.0404082 -0.0113965 +-0.0562131 0.054804 -0.00139993 +-0.0418518 0.098529 -0.0215916 +0.0133351 0.058103 -0.0291864 +-0.0594448 0.063179 0.0293052 +0.0113019 0.0652847 -0.0308368 +-0.0783582 0.0994351 0.0350546 +-0.0715439 0.0376425 0.00026118 +-0.0154996 0.112736 0.0400881 +0.0417289 0.0704356 -0.00679567 +-0.0406463 0.127804 0.0152535 +-0.0627661 0.170921 -0.0616075 +-0.0923057 0.12017 0.0426167 +-0.00727442 0.0422617 0.0488857 +0.0350851 0.0848737 -0.0178837 +-0.01578 0.128598 0.00819831 +-0.03217 0.0735917 -0.0275208 +-0.0673634 0.110954 0.0392365 +-0.0271001 0.0779439 0.0468281 +-0.0765081 0.156243 -0.00790412 +0.0277565 0.117474 -0.00457839 +-0.0113381 0.0986434 -0.0265191 +-0.0330823 0.0695155 -0.0204574 +-0.0652177 0.144322 -0.0140816 +-0.0094303 0.0379372 -0.0159242 +-0.0245144 0.0945317 -0.028309 +-0.05375 0.0560385 0.0116204 +-0.0679678 0.0383221 0.0123903 +0.00399334 0.0399971 0.0458959 +-0.0841715 0.0870272 0.0285556 +-0.0274573 0.0734015 0.0426855 +-0.0626773 0.153684 -0.0325991 +-0.0741408 0.105214 0.0369385 +-0.0134986 0.081495 0.0573009 +0.0463327 0.0421886 0.017365 +-0.0644937 0.108375 0.0384047 +-0.0653695 0.151233 0.0366147 +-0.018937 0.178659 -0.0169738 +-0.0820692 0.0748107 0.00351555 +-0.0841353 0.146019 0.0379782 +-0.0148578 0.163977 -0.0174595 +-0.0817263 0.0747702 0.00249857 +0.000235601 0.0740952 -0.0356038 +0.000940682 0.0357179 -0.0155776 +-0.0719363 0.129668 -0.0086833 +0.0301411 0.102934 -0.0150039 +-0.0651961 0.0334974 -0.00275965 +-0.0185844 0.16399 -0.00948536 +-0.0592125 0.042121 0.0445708 +7.57538e-05 0.0369473 0.00366537 +0.0152945 0.0666369 -0.0299356 +0.0410157 0.0739041 0.031202 +-0.0577153 0.0344512 0.0421091 +-0.0920793 0.129683 0.0282033 +-0.0497426 0.0753235 -0.0177986 +-0.0484934 0.047761 0.0395051 +-0.0809803 0.104706 0.0304576 +-0.0746935 0.111142 -0.00760178 +0.0204806 0.109788 0.0388648 +-0.0734977 0.128836 0.0522844 +-0.0426178 0.0520018 -0.0109441 +0.0112198 0.0932651 -0.0287439 +-0.0119274 0.182669 -0.0262872 +0.0145534 0.0347576 0.0376203 +-0.0810222 0.100509 -0.00657927 +-0.0033633 0.038102 0.0128662 +-0.0937861 0.128264 0.0182441 +0.0084061 0.0949783 -0.0285638 +-0.0695902 0.113495 0.0492959 +0.000169576 0.131258 0.0183392 +-0.0931626 0.117374 0.0143043 +-0.0195343 0.112367 -0.0190097 +-0.0524215 0.162453 0.00456363 +0.0184901 0.0879016 0.0492476 +-0.0685433 0.170852 -0.0550244 +-0.087182 0.130813 0.00128919 +0.00130454 0.0641388 -0.0343264 +-0.000757317 0.075519 -0.0359212 +0.0308776 0.0902792 0.0430757 +-0.00578939 0.0386518 0.00278679 +-0.076212 0.155059 0.00635026 +-0.0248315 0.0881388 -0.0362597 +-0.0222598 0.160103 -0.0129456 +-0.00877699 0.0770434 -0.0377883 +-0.06674 0.0383979 0.0141071 +-0.00350265 0.0689326 0.0566398 +-0.0295614 0.0861399 -0.0326125 +-0.0286647 0.125711 0.0122564 +-0.0699648 0.0791315 0.0398469 +0.0142764 0.128727 0.0220636 +-0.0638003 0.110914 0.037425 +-0.0719625 0.135504 -0.00769556 +-0.0527869 0.124083 0.0359567 +-0.0467161 0.0738381 -0.0169211 +-0.0117423 0.070003 -0.0378791 +-0.0517809 0.138537 0.023394 +-0.00482205 0.130969 0.0150835 +0.034711 0.0383001 0.0222555 +-0.00127486 0.120883 -0.0121504 +0.0112227 0.0850587 -0.0310098 +-0.0506063 0.0369029 -0.0119734 +0.0433147 0.0831895 0.0275132 +0.0112941 0.127457 0.0281604 +0.0151622 0.122267 0.032438 +0.0400834 0.082061 0.0334038 +-0.0745622 0.152707 -0.0248951 +-0.0528479 0.141625 0.0244146 +0.0245482 0.035172 0.0211866 +-0.0325075 0.11115 0.0364446 +0.0417109 0.0957641 -0.00380547 +-0.00538241 0.130597 0.0192035 +-0.0649174 0.0364897 0.025021 +-0.0770334 0.158982 -0.013085 +-0.0760388 0.148613 -0.0118618 +0.0283559 0.116347 0.030146 +-0.088594 0.121257 0.00130017 +-0.0268076 0.122539 -0.00562189 +-0.0346629 0.0607102 -0.0125376 +0.0413795 0.0505691 -0.00672382 +-0.0906746 0.1365 0.0201946 +0.00951942 0.100425 0.0477045 +-0.0642867 0.172466 -0.0611328 +-0.0242433 0.172722 -0.0123976 +0.00950564 0.0990636 0.0482467 +0.0101664 0.120462 0.0359466 +-0.0187755 0.107692 -0.0220397 +0.0335012 0.0795469 0.0414506 +-0.0834882 0.14321 0.00316117 +-0.0530161 0.141613 0.0254095 +-0.0395373 0.172163 -0.000837254 +0.0387477 0.0589461 -0.0057234 +-0.0647673 0.0795072 -0.0181104 +-0.00140393 0.0361018 0.00962515 +-0.00524162 0.0395598 0.0483202 +0.0236373 0.103743 -0.0178545 +-0.000477761 0.0760312 0.0584165 +-0.0210492 0.0348694 0.0496408 +-0.00244654 0.131114 0.00878185 +-0.033711 0.0384262 -0.00450177 +-0.0745333 0.152696 -0.0258905 +0.055409 0.0509629 0.0218922 +-0.0134774 0.127753 0.000758007 +-0.0120362 0.0388366 0.0321214 +-0.0278604 0.0487672 0.0470543 +0.0327952 0.0713854 0.0403707 +-0.0728362 0.0979301 -0.0143404 +-0.0367225 0.125751 0.02112 +0.0198232 0.0385183 -0.0126921 +-0.0377749 0.150712 0.00133662 +-0.0665966 0.180807 -0.0581921 +-0.0215095 0.114043 0.0376946 +-0.0620515 0.035927 0.0204607 +-0.0584945 0.150006 -0.0011129 +-0.0335992 0.1188 -0.0116562 +0.0196457 0.116633 0.0356159 +0.0248522 0.0685926 0.0446792 +-0.0164926 0.0544756 0.0504072 +-0.051136 0.140067 0.0203692 +-0.089139 0.139182 0.0122002 +0.0163249 0.0580554 -0.0285 +-0.0621816 0.0342254 0.0257179 +-0.0188821 0.0387745 -0.0111028 +-0.053388 0.034491 0.0395762 +-0.000472072 0.130948 0.0195451 +-0.0634988 0.173693 -0.0615446 +-0.054487 0.0452173 0.0438312 +-0.0202902 0.0906146 -0.0362948 +-0.0725702 0.17984 -0.0501722 +-0.0707759 0.162402 -0.0459559 +-0.0463694 0.113628 -0.0162147 +-0.0523573 0.0345285 0.0397607 +-0.0136632 0.0511316 -0.0317578 +-0.00948303 0.0703233 0.0561585 +-0.0852113 0.0869359 0.026743 +-0.0745333 0.0805197 0.0374668 +0.00349251 0.118288 0.0385113 +0.0493697 0.0693787 0.0250272 +0.029581 0.0736246 -0.0217333 +-0.0400646 0.156235 -0.00986121 +-0.0818113 0.136716 0.048659 +-0.0809364 0.129495 -0.00494346 +-0.0875459 0.110452 0.0143395 +0.0253164 0.112728 0.0350367 +-0.0852858 0.0845126 -0.000515374 +0.00212883 0.120316 -0.0135831 +-0.0192664 0.0381478 0.0114056 +0.0493315 0.0589269 -0.00474568 +-0.0183092 0.162495 -0.00732366 +-0.00730789 0.12834 -0.00208974 +-0.0286194 0.180015 -0.014033 +0.0255963 0.0648009 -0.0228004 +-0.00925832 0.177251 -0.027731 +-0.0485485 0.0432385 -0.0107358 +-0.0600861 0.14609 -0.00280453 +-0.026172 0.174158 -0.0190728 +-0.059111 0.0686528 0.0369372 +-0.0434854 0.0944868 0.0426487 +-0.0216341 0.038095 0.0200103 +-0.0670537 0.071446 0.0363402 +-0.0348255 0.0915164 -0.024068 +-0.0202598 0.174222 -0.0154191 +0.0344662 0.114921 0.00815778 +-0.0686919 0.0750175 -0.0147112 +0.026272 0.0789381 -0.0240124 +0.0202522 0.0805604 -0.0270674 +-0.0432329 0.156565 0.00586077 +-0.00650833 0.0787624 0.0577507 +-0.0335034 0.0774945 0.0414157 +-0.0606769 0.0676671 -0.0113119 +-0.0656284 0.162324 -0.0174746 +0.00729944 0.0639619 -0.0320669 +-0.00448657 0.0898027 0.0567005 +-0.0584972 0.0918588 0.045399 +0.00218731 0.0852799 -0.0344916 +-0.0417916 0.0869783 -0.0214259 +0.0463392 0.0489694 -0.00446687 +-0.0389761 0.128486 0.00847309 +0.00727028 0.11232 0.040519 +-0.0234564 0.0680424 0.0463484 +-0.0797185 0.0803984 0.0327643 +0.0232549 0.0645506 0.0458531 +0.0198821 0.0449543 0.0425235 +-0.0394974 0.0902763 0.0431118 +-0.0662858 0.172388 -0.0591199 +0.0259452 0.0364961 0.0239139 +-0.0714148 0.0386609 0.00057855 +-0.0638254 0.0924713 -0.0188016 +-0.0584874 0.112515 0.0360801 +-0.0623619 0.166253 -0.047591 +0.0452758 0.0875665 0.00218329 +-0.0244115 0.0379996 0.0159179 +0.0452209 0.0659646 -0.000116442 +-0.0707693 0.176767 -0.0466577 +-0.0650223 0.156803 -0.0519494 +0.0354173 0.0414682 -0.003097 +-0.0416808 0.0622091 -0.0130274 +0.0326595 0.114633 -0.00147403 +-0.0495274 0.14168 0.00739502 +0.0388579 0.0970015 -0.00784 +-0.00249575 0.0389742 0.0303561 +0.0070795 0.101453 -0.021277 +0.0291938 0.0754716 0.043989 +0.00502464 0.126695 -0.00649713 +-0.016158 0.0884114 -0.0380198 +0.0115883 0.102988 -0.0210311 +0.0576451 0.0661396 0.0235216 +0.0317192 0.118031 0.0171382 +-0.0116954 0.175688 -0.0223293 +0.00121183 0.0853285 -0.0350521 +-0.0158308 0.0883117 -0.038067 +-0.0686258 0.0846974 0.0427491 +0.00833511 0.0595736 -0.0302453 +0.0450509 0.0423962 0.0206492 +-0.027467 0.0793682 0.0471485 +-0.0679777 0.0716192 0.0360049 +-0.0718018 0.158195 -0.0399213 +-0.0114987 0.0856547 0.0572923 +0.0131441 0.0346685 0.0356066 +-0.0620328 0.156862 -0.0185851 +-0.0607717 0.113836 0.03657 +-0.0764751 0.146968 0.0421376 +-0.0207673 0.117009 -0.0138783 +0.0416942 0.0655359 -0.00371801 +-0.0306051 0.0524133 -0.0153638 +0.0107636 0.130209 0.0207729 +-0.0902734 0.133771 0.0282153 +-0.0235934 0.0383252 0.00311252 +-0.012672 0.0526484 -0.0327744 +-0.0309385 0.0622798 -0.0204312 +-0.0337803 0.122942 0.0251825 +-0.0598823 0.146825 0.0363335 +-0.0447526 0.0336781 0.00121434 +-0.0540428 0.0334293 -0.000440359 +0.0119421 0.123166 0.0332435 +0.0105328 0.103079 0.0462759 +-0.00696577 0.0389018 -0.00510709 +-0.033478 0.0632761 0.0395519 +-0.0386238 0.0519962 -0.0107523 +-0.0778526 0.159695 -0.0239243 +-0.0154805 0.109966 0.0416657 +-0.0688005 0.087996 -0.0171065 +-0.0428494 0.0999447 -0.0214282 +0.02441 0.101163 -0.0191142 +-0.0630974 0.160042 -0.0195595 +-0.0591899 0.154851 0.0254882 +-0.0694874 0.100005 0.0406788 +-0.063101 0.150495 -0.0266018 +-0.000774843 0.0783346 -0.0358957 +-0.0335129 0.112536 0.0351002 +0.00348618 0.11278 0.041408 +0.0454091 0.0918015 0.00517469 +-0.030521 0.0636541 -0.0224277 +-0.0564983 0.108415 0.0389345 +-0.0454982 0.045182 0.0420491 +0.0366564 0.089932 -0.0151793 +-0.00318743 0.0350129 0.0463208 +0.0397193 0.0787183 -0.00974279 +-0.0456155 0.165496 -0.00783315 +-0.0401614 0.110268 -0.0187071 +-0.0607836 0.171276 -0.0609166 +-0.0849643 0.0885105 -0.00254627 +0.000663768 0.131541 0.0142252 +-0.0773558 0.163115 -0.0213545 +-0.00442024 0.118937 -0.0140576 +0.029367 0.1045 -0.0146741 +-0.0767078 0.176155 -0.0445645 +-0.087862 0.117151 0.00226309 +-0.0674561 0.1652 -0.0559896 +0.0417828 0.101446 0.0181564 +-0.0504972 0.0465484 0.0414292 +0.0334855 0.0808915 0.0414362 +-0.0640951 0.0700461 0.0364211 +-0.0500004 0.121197 0.0329094 +-0.0640156 0.0344353 0.0303981 +0.0161688 0.0407187 0.0441528 +-0.0175288 0.165418 -0.0114925 +-0.0156111 0.0407209 -0.0274801 +-0.0136265 0.129395 0.0133241 +-0.060628 0.0588072 0.00794551 +0.0064803 0.0977098 0.0499318 +0.0439772 0.079046 -0.00278888 +0.0418428 0.0986036 -0.00180869 +-0.0225444 0.178667 -0.0133919 +-0.0606264 0.0336734 0.0105944 +-0.0434 0.0336807 -0.00215159 +-0.0886031 0.143176 0.0340326 +-0.0849284 0.107666 0.0223625 +0.0592303 0.0580467 0.0201933 +-0.0540206 0.147182 -0.0016614 +-0.00601913 0.126314 0.0306279 +-0.0686207 0.149674 -0.0393499 +-0.0919325 0.130933 0.0102425 +-0.0568299 0.143897 0.0319274 +-0.0354984 0.115235 0.0327878 +-0.0174958 0.0701523 0.0542792 +0.0270421 0.0862601 0.0462384 +-0.0488595 0.101383 -0.02158 +-0.0733679 0.152652 -0.0338969 +-0.0750934 0.159541 -0.00936327 +-0.0374543 0.155389 -0.00975319 +-0.0381729 0.166677 -0.0130206 +-0.087877 0.0990467 0.0233782 +-0.00160432 0.0405525 -0.0251988 +-0.0903048 0.139241 0.0221876 +-0.00139541 0.0385701 0.0219096 +-0.0221672 0.0839099 0.0558332 +-0.000827607 0.0389424 0.0289209 +-0.0177093 0.0385258 -0.00321073 +-0.0221552 0.169733 -0.0198584 +-0.0574718 0.156359 0.0101234 +0.0162407 0.0793143 -0.0294472 +0.0309621 0.0953572 -0.0169293 +-0.0167051 0.126576 2.44266e-05 +-0.0210968 0.161053 -0.00432438 +-0.0244887 0.100244 0.0443393 +-0.0637376 0.15365 0.0326508 +0.0154945 0.115387 0.0371086 +-0.0110238 0.098585 0.0502027 +-0.0466991 0.122484 0.0270727 +0.015569 0.110589 -0.0172093 +-0.0540772 0.146211 0.0253916 +0.0117081 0.0589891 0.0519593 +-0.0289244 0.033884 -0.0216457 +-0.08784 0.105023 0.0143674 +0.0262802 0.123151 0.0136687 +0.0122982 0.128768 0.0241985 +0.0428587 0.0803554 -0.00479839 +-0.0249679 0.0851951 0.0529639 +0.0259953 0.123127 0.0078705 +-0.000612836 0.0356605 0.0156316 +0.0462948 0.0820457 0.00817944 +-0.0179779 0.15947 -0.0103936 +-0.0237993 0.184341 -0.0145966 +-0.0300075 0.0337589 -0.0217484 +0.0233024 0.124378 0.00401489 +-0.0457643 0.0811616 -0.0200148 +-0.0786005 0.174957 -0.0470491 +0.00992987 0.0806149 0.0548353 +-0.036507 0.0464425 0.0402005 +-0.0229776 0.0681076 0.0472951 +0.0359077 0.111056 0.0244077 +-0.0691331 0.0612207 0.0112337 +-0.0653605 0.174136 -0.0490346 +-0.0246777 0.0366811 0.0541279 +0.00549638 0.115538 0.0397987 +-0.0512593 0.128575 -0.00377835 +-0.0227541 0.0889021 -0.0365754 +-0.052801 0.144689 0.0203903 +-0.0373724 0.0344314 0.0325332 +0.0302609 0.0461225 0.032895 +-0.0668934 0.119448 -0.00885989 +-0.0781478 0.107183 -0.00659237 +-0.0262448 0.109573 -0.0200299 +-0.0930011 0.116069 0.0193086 +0.0199447 0.104671 0.0430468 +-0.0902973 0.114585 0.00733567 +-0.0597131 0.0708022 -0.0154129 +0.011503 0.0909852 0.0534706 +-0.0601621 0.0433793 -0.00606772 +-0.0690356 0.068492 0.0314599 +-0.0662201 0.0390045 0.0360529 +0.0111444 0.104428 -0.02004 +-0.0620602 0.155611 0.00849054 +0.038029 0.105425 -0.00179734 +0.00952421 0.0346423 -0.0128865 +-0.0475328 0.0338333 0.0273813 +0.0275059 0.121239 0.00414409 +-0.0713739 0.162409 -0.0439557 +-0.0388285 0.0339925 0.000319116 +0.0209713 0.0966458 -0.0223043 +-0.0117867 0.0798822 -0.0383021 +-0.00231276 0.123919 -0.0094032 +-0.0623035 0.158393 -0.0375989 +-0.0498834 0.108435 -0.0190271 +-0.0450959 0.122461 0.0255697 +-0.086583 0.1077 0.0153543 +-0.0640141 0.128346 0.0443555 +-0.0910616 0.140621 0.0211716 +0.0222184 0.122028 -0.00352468 +-0.0197563 0.0685528 -0.0378978 +-0.0747315 0.0809443 -0.0125955 +0.0381487 0.056188 -0.00571384 +0.0310862 0.0808926 0.0432566 +-0.0418955 0.0336683 0.02694 +0.0454971 0.0861837 0.00419421 +-0.0515955 0.0575054 -0.00888629 +-0.0923422 0.120143 0.0302906 +-0.0388134 0.0900157 -0.0235053 +-0.0678286 0.139237 -0.00787376 +-0.0500776 0.136736 0.0219567 +-0.0524826 0.132311 -0.00383544 +-0.0725073 0.154019 -0.0378993 +-0.0164965 0.114086 0.0389356 +-0.0266334 0.0505574 -0.0257305 +0.0285947 0.0646316 0.0430307 +-0.050498 0.10288 0.0412159 +-0.0147348 0.0348101 0.0475803 +-0.0147627 0.0728806 -0.0387608 +-0.0425799 0.160887 0.00499665 +-0.0516371 0.0334814 0.00180973 +-0.0574972 0.0973516 0.04313 +-0.0294813 0.179959 -0.00726258 +-0.0696084 0.159782 -0.00738408 +-0.00175707 0.0783385 -0.0360812 +-0.0778906 0.0797955 -0.00863863 +0.0383322 0.0928141 0.0344469 +-0.0459579 0.0368224 -0.0202942 +0.0126438 0.130236 0.0157508 +0.0370668 0.109719 0.0231776 +-0.0650007 0.0600171 0.0167571 +-0.0294928 0.0931993 0.044345 +-0.0849548 0.0952071 0.0290738 +-0.0314917 0.0660582 0.0391556 +0.0283827 0.10475 0.0376855 +0.0125555 0.034405 -0.0178251 +0.0407099 0.0684593 0.0306869 +-0.0321086 0.163743 -0.0150961 +0.00529533 0.064011 -0.0326857 +0.0428516 0.0972538 0.000192155 +0.0475361 0.0451237 0.0241502 +-0.0188094 0.0382725 0.0240343 +-0.0242622 0.0650295 0.043001 +-0.0247852 0.0783802 -0.0377363 +0.0104929 0.0923225 0.0529394 +-0.0684671 0.140894 -0.00832284 +-0.013606 0.0435021 -0.0266802 +-0.0324058 0.05963 -0.0134049 +-0.0709313 0.156768 -0.044906 +-0.0794975 0.113845 0.0467655 +0.0215945 0.126233 0.0147739 +-0.0653369 0.0416124 0.0352199 +0.0546053 0.0733755 0.0137165 +-0.0893171 0.0996957 0.0173941 +-0.0835863 0.0817078 0.00050138 +0.029436 0.039931 -0.00313898 +-0.0614917 0.0661812 0.0332998 +-0.0923901 0.114734 0.0183133 +0.030053 0.0567138 -0.0167759 +-0.00342912 0.0915905 -0.0351346 +-0.0758824 0.100651 -0.0113429 +-0.0457293 0.0348843 0.042622 +0.00615023 0.0385922 -0.00780619 +-0.0547458 0.0768339 -0.0193157 +-0.0356142 0.0493225 -0.0125317 +0.024593 0.0345639 0.00705834 +-0.0892328 0.114145 0.0245988 +0.0348936 0.0586201 -0.0127038 +-0.0828513 0.138047 0.046826 +0.0569539 0.0508846 0.00918952 +-0.0797103 0.0711205 0.00752586 +-0.092065 0.118755 0.0273051 +-0.0103683 0.0388061 0.0306894 +-0.0431813 0.165147 -0.00997877 +-0.0813565 0.109598 0.0300528 +0.0477122 0.0511499 0.0301456 +-0.0678831 0.155252 0.000581516 +0.0349362 0.113582 0.0211925 +0.0280387 0.0549866 0.0403705 +-0.0615433 0.125505 0.042614 +0.0450739 0.0427888 0.00232236 +-0.0544975 0.121335 -0.0101688 +0.0117318 0.0833298 0.0539432 +-0.0144997 0.103011 0.0432504 +-0.0752992 0.149965 -0.0228671 +0.0196742 0.0686359 0.0495084 +-0.0394722 0.107013 0.0383007 +-0.0321381 0.0435397 -0.0289857 +0.0231687 0.0915577 0.0477207 +-0.0480905 0.156132 -0.00685995 +0.00882114 0.0589209 0.053036 +0.000540453 0.0731645 0.0574875 +-0.0842824 0.0818436 0.0235004 +-0.072066 0.0353469 0.00817017 +-0.0548518 0.122696 0.0382478 +-0.0283817 0.123518 -0.00261643 +-0.0178271 0.0855379 -0.0388455 +-0.00772146 0.0656018 -0.0354736 +0.0230836 0.12416 0.0238853 +-0.0125037 0.0730609 0.0559849 +0.0551355 0.0581678 0.0268835 +-0.0288448 0.124881 0.0180835 +-0.0566945 0.126945 0.0390945 +-0.0491155 0.0337431 -0.0125383 +-0.0100076 0.130157 0.0146359 +-0.0114787 0.0934019 -0.0350786 +-0.012503 0.0856552 0.057236 +-0.00822614 0.0384527 0.0224267 +-0.0288615 0.0353967 0.01735 +-0.035527 0.115134 -0.015836 +-0.085501 0.0791776 0.00851156 +0.0457594 0.0890174 0.0101642 +-0.0775133 0.126 0.0528602 +-0.0598229 0.0911123 -0.0198104 +0.0349018 0.0698502 -0.0158378 +-0.00371064 0.0641813 -0.0350983 +-0.0232497 0.0336668 -0.0221987 +-0.0337721 0.121485 -0.00843946 +0.0123855 0.0603174 0.0511841 +-0.0454994 0.0804154 0.0426755 +0.00893209 0.124393 0.0330753 +-0.00403191 0.0987119 0.0511654 +-0.0481285 0.0573264 0.0358964 +-0.0166099 0.0407431 -0.0277394 +-0.0440479 0.169839 -0.00695693 +0.0412738 0.0872408 -0.00977382 +-0.0604546 0.071762 0.0392488 +0.0529297 0.0581906 0.02898 +-0.0521631 0.138551 0.0244099 +-0.0366167 0.15106 0.000396988 +0.0417493 0.0611977 -0.0033567 +-0.070996 0.0683351 -0.00354604 +-0.0356709 0.0621736 -0.0130441 +-0.0170991 0.0383232 0.0225362 +-0.0487856 0.0573034 0.0351442 +0.022412 0.0372285 0.0333476 +-0.0249633 0.0931679 0.047071 +0.018008 0.0349409 0.0291289 +-0.0796085 0.154132 0.0271276 +-0.0406237 0.0336557 -0.0200198 +0.0169165 0.123099 -0.00667688 +0.0210051 0.0618768 0.0478546 +-0.0427644 0.0812202 -0.0203472 +-0.0672645 0.175508 -0.0482636 +-0.0639988 0.121381 0.0479339 +-0.0622266 0.158391 -0.0366041 +-0.0261802 0.161053 -0.0142499 +0.0186318 0.0821747 0.0516425 +-0.00531922 0.0961442 -0.0318294 +0.00250665 0.0341604 -0.0175888 +0.0167477 0.0563074 0.0486799 +-0.0106808 0.0555967 -0.0338825 +0.00925016 0.0724976 -0.0328208 +0.0123553 0.0552818 -0.0294499 +0.0212602 0.0735043 -0.0271352 +-0.0845249 0.129883 0.0501389 +-0.0764965 0.154899 -0.0050946 +-0.0621627 0.163132 -0.0395927 +-0.0144955 0.0701698 0.0547379 +-0.0084766 0.0489124 0.0500846 +-0.000135712 0.0381648 -0.0142912 +-0.0503963 0.1183 0.0322871 +-0.0761087 0.083292 0.0375324 +-0.0736943 0.094184 0.0404336 +-0.0691138 0.0763852 0.0387083 +-0.0290376 0.038297 0.000217512 +-0.0348553 0.0342935 0.020715 +-0.0220444 0.0384934 -0.0170721 +-0.0114987 0.0471911 0.0478612 +0.0375264 0.0714822 -0.0127977 +-0.0282394 0.087664 0.0462444 +-0.0757136 0.107486 0.0366393 +-0.0610115 0.134041 -0.00711168 +-0.0797372 0.0717415 0.00518109 +-0.0658978 0.147832 -0.0279808 +-0.00653882 0.110902 -0.0214831 +0.0296673 0.0591775 0.0410177 +-0.0217889 0.0696447 0.0502694 +0.0234089 0.0418644 -0.00766906 +-0.0364935 0.0888766 0.0431732 +0.0306541 0.0520995 0.0370911 +-0.060098 0.0687043 0.0366734 +0.0187338 0.0862153 -0.0273821 +-0.0839692 0.148747 0.00414299 +-0.0354821 0.0561791 0.038801 +-0.0481382 0.0376145 0.0455768 +-0.0676248 0.117206 0.0513943 +-0.0281854 0.174153 -0.0178233 +0.0359289 0.0386712 0.0221633 +-0.0256851 0.0824232 0.052338 +-0.0145953 0.0363242 -0.0264317 +-0.0303622 0.055196 -0.0183802 +-0.00165167 0.0525486 -0.0310164 +-0.0132125 0.168083 -0.022507 +-0.00949762 0.078776 0.0580091 +-0.0361357 0.127268 0.00216052 +0.048778 0.0525636 0.0299433 +-0.0256526 0.0520956 -0.0269974 +-0.0603733 0.0335628 0.0071663 +-0.0426157 0.035917 -0.0271302 +-0.0144999 0.162187 -0.0103051 +-0.0384864 0.0548303 0.0394681 +-0.0831442 0.107611 0.0263767 +-0.00111933 0.100971 -0.0229536 +-0.0548742 0.10693 -0.0184788 +-0.0218282 0.127027 0.00889322 +-0.0174982 0.111166 -0.0197324 +-0.0652616 0.0722487 0.0377992 +-0.0576238 0.145329 0.032529 +-0.0184507 0.117417 -0.0143314 +-0.081937 0.128034 -0.00496911 +0.0195332 0.12729 0.0154357 +-0.0293484 0.0705264 -0.0315108 +-0.00525979 0.0409541 0.0483014 +0.0555717 0.0706847 0.00515518 +-0.048428 0.0531039 0.036022 +-0.00279611 0.0826469 -0.0371795 +-0.0287124 0.0382592 0.00213562 +-0.0574984 0.0959784 0.0439666 +-0.091525 0.133725 0.0172151 +-0.016864 0.128415 0.0107007 +-0.0636978 0.164648 -0.0286005 +-0.0829735 0.127181 0.0515051 +-0.0488321 0.0956358 -0.0221459 +0.0400863 0.0899903 -0.0108207 +-0.0619683 0.12268 0.0437909 +0.0605435 0.0650981 0.0101416 +-0.0665542 0.169448 -0.0580509 +-0.0891009 0.0902275 0.0204481 +-0.0825815 0.112383 0.0454387 +0.0104883 0.0936688 0.0521003 +0.0142529 0.0765304 -0.0302113 +0.0165164 0.126586 0.0257514 +-0.0283423 0.118847 0.030216 +0.0142697 0.034212 -0.000289798 +-0.0478723 0.105599 -0.0198923 +-0.0739256 0.098177 0.0391323 +-0.049674 0.141672 0.0123895 +-0.0475977 0.15214 0.0100027 +-0.0424553 0.128377 0.00131486 +0.0224361 0.0645464 0.046427 +-0.0885609 0.087538 0.0184581 +0.0147132 0.0897404 -0.0290836 +-0.054132 0.143048 0.0274248 +0.00550441 0.0575487 0.0534334 +-0.0772682 0.155563 -0.0118971 +-0.0677628 0.079419 -0.0170759 +-0.0464924 0.159333 0.00779524 +0.0261579 0.0768253 0.0466356 +-0.0552963 0.0473377 0.0123212 +-0.0298441 0.0972531 -0.0235715 +-0.00563259 0.0974901 -0.0292726 +-0.0261993 0.095287 -0.0250572 +-0.0716941 0.0684125 -0.00254325 +0.00127365 0.0682996 -0.0335875 +0.0575871 0.0523587 0.0191771 +-0.00134429 0.0361889 0.0150058 +-0.0715096 0.1041 0.0379435 +-0.0921823 0.117455 0.0412015 +-0.0384872 0.0337149 -0.0296051 +-0.0287365 0.0475545 0.0479663 +-0.0257999 0.0422849 0.0537317 +-0.0230963 0.124618 -0.00175855 +-0.0924128 0.11471 0.0173177 +-0.00492025 0.0362041 0.048453 +-0.0186551 0.184576 -0.0164922 +-0.0802253 0.0772741 0.0285988 +0.0463015 0.0806481 0.0121762 +-0.0304105 0.0861968 -0.0305753 +-0.0346214 0.0348242 0.0450553 +-0.0652339 0.0355811 0.0395373 +-0.0788426 0.0825957 -0.0096075 +-0.0127163 0.038878 -0.00996632 +-0.0624916 0.166267 -0.0445898 +-0.0746075 0.156859 -0.0239292 +-0.0773753 0.161145 -0.0179242 +-0.0883931 0.1336 0.00326444 +-0.0661323 0.162373 -0.0581655 +-0.0510928 0.12386 -0.00885828 +-0.0384971 0.0705176 0.0419076 +-0.0723264 0.176481 -0.0540086 +-0.0271072 0.11707 -0.0138992 +-0.0591735 0.11954 -0.0102201 +0.0222809 0.11936 0.0323905 +-0.0302503 0.17123 -0.00702025 +-0.0809167 0.107332 -0.00361395 +-0.0627188 0.046051 0.00845692 +-0.00639449 0.0347093 0.0459249 +-0.0877048 0.0873692 0.00346654 +-0.0410427 0.15478 -0.00878846 +-0.069373 0.0655009 0.0252048 +-0.0270649 0.0689032 -0.0335294 +0.00976243 0.126251 0.030462 +-0.002483 0.114172 0.0414823 +-0.0532846 0.152692 0.0160461 +-0.0190668 0.12797 0.0127969 +-0.0645056 0.0818668 0.0436415 +-0.0144784 0.0645279 0.0535035 +-0.0598098 0.08825 -0.0201729 +-0.0614957 0.105649 0.0403113 +-0.0278003 0.174225 -0.00868668 +-0.0525152 0.0439969 0.0448982 +-0.00749319 0.0503553 0.0512463 +-0.0786706 0.0853441 -0.0105854 +-0.0447185 0.0709976 -0.0171011 +-0.0635722 0.0753573 0.0407707 +-0.0124985 0.0603974 0.0541523 +0.0344134 0.0655586 -0.0158419 +0.0196499 0.124334 0.0268969 +-0.0627763 0.0614875 0.0230054 +0.0416143 0.102832 0.00217563 +-0.0552881 0.147721 0.0283494 +-0.0143864 0.174216 -0.0192271 +0.0144149 0.0343798 -0.00603429 +-0.0101902 0.177186 -0.0254506 +0.0284808 0.120403 0.0230436 +-0.0149461 0.0384961 0.0282276 +-0.0778803 0.0710945 0.0220932 +-0.042083 0.168351 -0.00985967 +-0.056782 0.043535 0.0167171 +0.0143083 0.122234 -0.00973054 +-0.0266054 0.0916781 -0.031606 +-0.00249278 0.121064 0.0370013 +-0.0199096 0.0382242 0.00758286 +-0.0135056 0.0842656 0.0572305 +-0.0720125 0.148777 -0.0357596 +0.0251623 0.118606 -0.00580398 +-0.0618325 0.0334319 -0.000212632 +-0.0855476 0.136296 0.00125685 +-0.032605 0.0408975 -0.030074 +0.0426847 0.0986805 0.020158 +-0.00736899 0.0366982 -0.0162506 +0.00250252 0.0590979 0.0551087 +-0.0674921 0.106947 0.0382762 +-0.0289938 0.16114 -0.00164375 +-0.0509402 0.0584984 0.0315938 +-0.0350845 0.124972 -0.00417237 +-0.0686385 0.0435335 0.00569826 +0.0441509 0.0959467 0.0161545 +0.0131317 0.10725 -0.0189993 +0.0358259 0.0928903 0.0378885 +-0.0154981 0.060248 0.0524646 +0.0276762 0.118315 -0.00350857 +-0.0683312 0.0833327 0.042485 +0.033847 0.106899 -0.00922375 +0.048317 0.0466984 0.0256626 +-0.0570131 0.128126 -0.00643112 +-0.0788672 0.111379 -0.00271807 +0.0115311 0.122019 -0.0114981 +0.0275945 0.106191 -0.0144774 +-0.0591334 0.0584459 0.00677121 +-0.0780191 0.149419 0.0383262 +-0.0559631 0.0464314 -0.00541258 +-0.0192836 0.0894928 -0.0371367 +-0.033131 0.166707 -0.0157536 +-0.0495065 0.107045 0.0392662 +-0.073496 0.147014 0.0424214 +-0.0404833 0.111172 0.036485 +0.0284708 0.0565571 -0.0188308 +0.0511996 0.0711486 0.0227866 +-0.0681397 0.0738079 0.0376094 +-0.0905331 0.135117 0.0212107 +-0.0733037 0.155556 0.00591793 +0.0500217 0.0446984 0.00624267 +-0.00949805 0.0815484 0.0580308 +0.0211117 0.124199 0.0260136 +-0.0611133 0.149657 0.036321 +-0.0635959 0.153475 0.00125628 +0.0344187 0.0994578 0.0359067 +-0.0734442 0.163812 -0.0389777 +-0.0852938 0.0858468 -0.00152115 +-0.0559297 0.13815 0.0313829 +-0.0870302 0.13217 0.00132034 +0.0204036 0.0474506 -0.0212729 +-0.076548 0.0954614 0.0376104 +-0.0855527 0.153551 0.0192298 +-0.0729125 0.0928513 0.0411123 +-0.0404958 0.0478428 0.0400733 +-0.0121854 0.0980546 -0.0279084 +-0.0464966 0.108432 0.0393098 +-0.0177034 0.0569685 -0.0340386 +-0.0908687 0.135097 0.0172074 +-0.0862565 0.0846802 0.0214754 +-0.0297808 0.0348722 0.0494682 +-0.0764922 0.155931 0.0149956 +-0.0618119 0.115344 0.0386033 +-0.0487475 0.0767781 -0.0183253 +-0.0907804 0.150219 0.0191245 +-0.0524535 0.0335708 0.023045 +-0.0384946 0.0577019 0.0400515 +-0.074873 0.151297 -0.0278802 +0.00653661 0.120619 -0.0139577 +-0.0483957 0.0389613 0.0452757 +-0.0779524 0.165292 -0.0269536 +-0.0536531 0.0334694 0.00682116 +-0.0561549 0.118392 0.0380484 +-0.0201622 0.0337128 -0.0216346 +-0.0794073 0.0772395 -0.00557672 +-0.0135947 0.071631 0.0548042 +-0.0382622 0.0335792 -0.0232089 +-0.0183288 0.115615 -0.0164437 +-0.0507515 0.0768088 -0.0186854 +-0.0176367 0.181628 -0.0186063 +0.001434 0.0980064 0.0516014 +0.00449684 0.131467 0.00706378 +-0.0839655 0.111209 0.0317911 +-0.0769529 0.128149 -0.00749249 +0.0471199 0.0728094 0.00697834 +0.0460243 0.0737836 0.00392327 +-0.00149572 0.0505531 0.0529099 +-0.0431936 0.0363833 0.0440447 +-0.054345 0.151005 0.0266856 +0.00514071 0.12498 -0.00862525 +-0.0729614 0.112778 0.0490933 +0.0152498 0.0348445 0.0304622 +-0.0111539 0.0386404 0.0270766 +-0.0431779 0.113636 -0.0162215 +-0.0754447 0.164601 -0.0189193 +-0.0685657 0.0346013 0.0116976 +0.036686 0.110763 0.0218417 +-0.058015 0.128168 -0.00680186 +-0.0805084 0.121673 0.0499202 +-0.0750852 0.174913 -0.0410877 +-0.0394764 0.081876 0.0433844 +-0.01065 0.0383969 0.0147482 +-0.0236788 0.0551648 -0.029679 +-0.0207747 0.0728486 -0.0387932 +0.00733312 0.0553775 -0.0306811 +-0.0497252 0.137033 0.00342407 +-0.0650198 0.154365 0.0307072 +0.00051428 0.0383337 0.0225142 +-0.0625323 0.1568 -0.0366082 +-0.00383551 0.130671 0.00539431 +0.0310854 0.118732 0.00690653 +-0.0699388 0.131128 -0.00863643 +-0.023911 0.123885 -0.00309916 +-0.0495628 0.0402984 0.0453668 +-0.0639487 0.168098 -0.0606895 +-0.0706835 0.155594 0.0053992 +-0.0686442 0.156175 0.0235781 +-0.0572185 0.0575347 0.00867749 +-0.0788442 0.154658 0.0259054 +-0.0721793 0.15961 -0.0389315 +-0.0545051 0.119806 0.0369329 +-0.0254081 0.182912 -0.0140439 +-0.0729406 0.0676849 0.0243239 +-0.0353285 0.0851433 -0.0237512 +-0.0478735 0.104217 -0.0205651 +-0.0558395 0.0589131 -0.0044052 +0.0448613 0.0903726 0.0191701 +0.0576189 0.0719687 0.0133447 +-0.0511061 0.129858 -0.00316533 +-0.00880359 0.113633 -0.0183799 +-0.0618121 0.09105 -0.0190303 +0.0313027 0.114101 -0.00492854 +-0.042497 0.0874008 0.0424798 +-0.0508473 0.0970748 -0.0222124 +-0.0654906 0.102864 0.0410679 +-0.00458022 0.0347745 -0.0240516 +0.0553581 0.0524903 0.0236336 +0.00626754 0.071137 -0.0337471 +-0.0135115 0.118298 0.0374588 +-0.0604029 0.0342918 0.0295439 +0.0406411 0.0462159 0.0309092 +-0.0278584 0.0385169 -0.0108032 +0.0266728 0.0713177 0.0438181 +0.0101968 0.116422 0.0377394 +0.0446411 0.0959729 0.00816419 +-0.0597937 0.0334415 0.000190139 +-0.0210999 0.0811322 0.0562803 +-0.0474593 0.0559824 0.0367034 +0.0340242 0.115407 0.0165889 +0.0416569 0.0832977 0.0303966 +0.0340782 0.100772 0.035418 +-0.0604756 0.0747304 0.0414998 +0.0147905 0.128825 0.0208219 +-0.00109958 0.115152 -0.0180337 +-0.0237291 0.0650733 0.0438813 +-0.0261862 0.17712 -0.0185723 +-0.0381348 0.0338853 -0.0178771 +-0.0323789 0.115075 -0.0157884 +0.0168479 0.0856792 -0.0288312 +0.0383914 0.0390949 0.00219016 +0.0192558 0.0721931 -0.0285132 +-0.0837506 0.0776431 0.00349824 +0.00549734 0.0937843 0.053579 +0.0381875 0.10978 0.0131678 +-0.0707773 0.0822058 -0.016572 +-0.0623556 0.0337533 -0.00969501 +-0.0657944 0.0348418 0.0348835 +0.029813 0.0605585 0.0412449 +-0.067274 0.142559 0.0431983 +-0.00437946 0.039206 0.0351678 +-0.091267 0.130919 0.00823808 +0.056791 0.0717301 0.0086079 +-0.088725 0.0942104 0.00844208 +-0.0527517 0.076824 -0.0190661 +-0.075716 0.071204 0.0277224 +-0.0296574 0.175524 -0.0164728 +0.0201633 0.0535759 0.04656 +0.00320624 0.036422 0.0229702 +0.0192058 0.0834241 -0.02764 +-0.0918136 0.129556 0.00925121 +0.0276788 0.117119 0.0298812 +-0.0251464 0.0824617 0.0532115 +-0.0728771 0.154609 0.0294193 +0.00904539 0.03456 0.0402645 +-0.0534903 0.102908 0.0413848 +0.00940878 0.0389595 -0.0232113 +-0.0859627 0.109007 0.009354 +-0.0484951 0.0903851 0.0445307 +0.00263147 0.0345612 0.0425417 +-0.0770465 0.161776 -0.0174081 +0.0134975 0.104436 0.0449316 +-0.0388918 0.123217 0.0263098 +-0.0364947 0.112507 0.0349484 +-0.0629025 0.103986 -0.017642 +-0.0678178 0.0923118 -0.0167386 +-0.0689104 0.122371 -0.00889897 +-0.0255023 0.125351 0.00317915 +-0.000607228 0.0419595 -0.0248688 +0.0460131 0.0820178 0.0051921 +-0.0223034 0.0381733 0.0107634 +-0.0861005 0.10314 0.0243088 +-0.0674874 0.0958602 0.0421807 +-0.0538319 0.138205 -0.00152003 +-0.0199623 0.0624791 0.0486773 +-0.0187732 0.0946942 0.0521396 +0.0415957 0.0859827 0.0303559 +-0.0405006 0.0562797 0.0399754 +-0.0396087 0.0392284 -0.0278507 +-0.0203015 0.124709 0.0241059 +-0.0667178 0.127063 0.0492263 +-0.0727925 0.0893223 -0.0156729 +0.0370031 0.104683 0.029035 +0.0279524 0.103456 0.0388242 +-0.0186121 0.038597 0.0291868 +-0.0776508 0.152845 -0.000892884 +-0.0334818 0.0987718 0.0435747 +0.0329891 0.092935 0.0408139 +0.0391956 0.0712805 0.0337887 +-0.0631802 0.0590341 0.0144269 +-0.0537547 0.143134 0.0264016 +-0.0301924 0.153974 -0.00357072 +-0.0448379 0.0970765 -0.0217835 +0.00941817 0.0340541 0.000745803 +-0.0432126 0.168352 -0.00885275 +0.0554664 0.0549257 0.00120797 +-0.0225677 0.0932815 0.0503229 +-0.0524989 0.157892 0.00946562 +0.0390425 0.0953983 0.0320312 +0.04296 0.0817702 -0.00479044 +0.00635062 0.0510121 -0.0292209 +-0.0543105 0.149562 0.0267072 +0.0221931 0.100779 0.0445472 +0.0329366 0.0724958 -0.0177814 +0.0248886 0.114037 0.0344109 +-0.0550232 0.14424 -0.00134547 +0.0163915 0.04625 -0.0239163 +0.0177475 0.036867 -0.0166881 +-0.0617992 0.0867358 -0.0192812 +-0.0893599 0.133717 0.0406984 +-0.039718 0.0695625 -0.0162922 +-0.0089161 0.0389771 0.0326408 +-0.0245194 0.0879123 0.052427 +-0.0855508 0.0883229 0.0270467 +-0.0419398 0.0356984 0.00899705 +-0.0715816 0.0791203 0.0388191 +-0.0444898 0.0690526 0.0411578 +-0.070025 0.173518 -0.0406121 +-0.0628508 0.0981808 -0.0176907 +-0.0750322 0.144421 -0.00688246 +-0.0499825 0.0544896 0.033589 +-0.065333 0.177827 -0.0606985 +-0.0316114 0.123192 0.0229888 +-0.0760927 0.0805105 0.0361956 +-0.0370838 0.0486029 -0.013278 +-0.0785283 0.124553 0.0522615 +-0.0708435 0.0731956 0.0357937 +-0.0403104 0.0336344 -0.0180813 +-0.0609885 0.0628534 0.0274979 +-0.0323315 0.0624018 -0.0174393 +-0.0368547 0.100015 -0.0221726 +-0.0783796 0.172116 -0.0450441 +-0.0633655 0.139636 -0.00706655 +0.00173262 0.13137 0.0174841 +-0.0105091 0.0646847 0.0553841 +0.0266795 0.122765 0.0152477 +-0.0360635 0.034528 0.0238485 +-0.0541027 0.122637 0.0375656 +-0.0544908 0.0344999 0.0341095 +0.0176998 0.103348 0.0450658 +-0.0685644 0.145677 -0.0229009 +-0.0356468 0.0577276 -0.0110125 +-0.0696054 0.110911 0.0424293 +-0.0584669 0.0577494 0.0129387 +-0.0398029 0.0870085 -0.0218621 +-0.00967624 0.104885 -0.0231041 +0.00669982 0.0383228 -0.00932299 +-0.0609169 0.109692 -0.0160089 +-0.0646221 0.122809 0.0487379 +0.0174813 0.0865744 0.0503122 +-0.0067878 0.0386876 0.00254936 +-0.0628956 0.119461 -0.00917238 +-0.0404347 0.128451 0.0123721 +0.0304082 0.04464 -0.00596234 +0.00950687 0.0785812 0.0553914 +-0.0185636 0.161122 -0.00592394 +-0.0407009 0.066639 -0.0151117 +-0.0638844 0.0392942 0.0408356 +0.00208256 0.0392848 0.0328214 +-0.0891635 0.0901786 0.00945748 +-0.0714603 0.0390724 0.00325296 +0.0396909 0.105526 0.00119339 +-0.092918 0.118828 0.0342968 +-0.0809093 0.0912865 0.0336272 +0.0106278 0.12033 -0.0136749 +-0.079254 0.149169 0.0379325 +-0.0700516 0.177913 -0.0570165 +-0.0584973 0.0875674 0.0446281 +0.0363875 0.037641 0.0177175 +-0.0266625 0.178341 -0.0176816 +-0.0257516 0.0380733 0.00834253 +-0.0514727 0.147804 0.0154008 +-0.0475605 0.047528 -0.00960427 +0.0464078 0.0756596 0.0165703 +-0.0659757 0.132606 -0.00839654 +-0.0795255 0.0953936 0.0349279 +-0.0512091 0.118302 0.0328718 +-0.00441308 0.12096 -0.0123131 +-0.0322918 0.0358193 0.0288559 +-0.0907178 0.142015 0.0241681 +-0.0555193 0.152453 0.0283051 +-0.044345 0.152142 0.00768226 +0.0241695 0.0809229 0.0490966 +-0.0528659 0.0999263 -0.0216782 +-0.0669331 0.125307 -0.0088761 +-0.0303567 0.119073 0.029499 +0.025846 0.107916 -0.0143268 +-0.0617056 0.1325 0.0388812 +-0.0185965 0.0364224 -0.0275796 +-0.0207908 0.0384714 -0.00378381 +-0.0617181 0.0598008 0.019418 +-0.0474373 0.120726 0.0283448 +0.0366967 0.103968 -0.00783268 +0.0303183 0.0797251 -0.0205953 +-0.0317074 0.0436869 0.0496355 +-0.0623412 0.156794 -0.0356173 +-0.0765015 0.121776 0.0527715 +-0.0184879 0.122208 0.0309285 +0.0230909 0.103393 0.0423419 +0.0609018 0.0651278 0.0131549 +0.00916248 0.0355108 0.0268151 +0.0313289 0.0554154 -0.0147753 +-0.0025035 0.108652 0.0433127 +0.0546992 0.0478618 0.0141962 +-0.0620154 0.0689049 0.0360997 +-0.0388626 0.102809 -0.0208006 +-0.0555708 0.142434 0.0301615 +-0.0688026 0.146519 -0.0258522 +0.0194777 0.0878818 0.0491927 +-0.0228793 0.110931 -0.0194728 +-0.0324125 0.0849398 -0.0275574 +-0.0438855 0.03574 0.0440005 +-0.0917791 0.117463 0.0421754 +-0.0690116 0.129833 0.0494501 +-0.0743362 0.15411 -0.0219057 +-0.0638117 0.0867138 -0.0190744 +-0.045027 0.168395 -0.00690925 +0.0270479 0.080882 0.0462053 +-0.0114995 0.164138 -0.0150087 +-0.0325011 0.058955 0.0382451 +-0.0606931 0.0692955 -0.0138548 +-0.0566913 0.0572662 0.0137312 +-0.00649633 0.0488329 0.050181 +0.0223101 0.120965 0.030775 +-0.0805231 0.0993639 0.0329828 +-0.0644795 0.0959078 0.0429389 +-0.075154 0.17882 -0.048244 +0.00607351 0.0358936 0.0456569 +-0.035492 0.0648204 0.0410644 +-0.0576415 0.155076 0.0216791 +-0.0762945 0.152787 -0.0118902 +-0.00761327 0.0434711 -0.0261832 +-0.0814624 0.13163 0.0517276 +-0.0743185 0.067053 0.0192856 +-0.0842709 0.104792 0.000381661 +-0.0374161 0.12162 -0.0106267 +0.0282004 0.082909 -0.0218038 +-0.0538885 0.131144 0.0343613 +0.0268226 0.046511 -0.0137061 +-0.0500801 0.151654 -0.00422617 +-0.0843259 0.153929 0.0166903 +-0.0840259 0.124392 0.0498267 +-0.0906893 0.11752 0.0439252 +-0.0636773 0.162484 -0.0225185 +0.0362915 0.0534119 -0.00658438 +-0.0733102 0.0700068 0.0292571 +0.0432125 0.0858656 0.0273897 +0.0392299 0.108358 0.0101653 +-0.0357967 0.0383351 -0.00483874 +-0.0645865 0.0628123 -0.00359236 +-0.0838768 0.108986 0.0253683 +-0.0538875 0.139905 -0.00121756 +0.0463511 0.0764838 0.0150474 +0.0180384 0.119266 -0.0105437 +-0.0812898 0.0735018 0.0165324 +-0.0437426 0.076832 -0.018848 +-0.0489995 0.126854 0.0308899 +0.00913686 0.107291 -0.0199257 +0.0413467 0.0718054 -0.00779903 +-0.0407607 0.126285 -0.00553285 +-0.0564807 0.113914 0.0357075 +-0.0477527 0.149202 0.00972608 +-0.0737025 0.144377 -0.00986626 +-0.0237128 0.058121 -0.0313582 +-0.0884618 0.142054 0.0361609 +-0.00450592 0.0661541 0.056364 +-0.0448888 0.108464 -0.0189265 +-0.0531399 0.13506 -0.0028018 +0.0308728 0.114122 0.0296728 +-0.0120858 0.0382274 0.0182274 +0.045976 0.0820209 0.01617 +-0.0474955 0.0344671 0.0303636 +0.0116443 0.129846 0.0210966 +0.0429126 0.0775596 -0.00475805 +-0.0639176 0.122377 -0.00881224 +-0.0219078 0.0581082 0.0451165 +-0.0185957 0.118181 -0.0131167 +-0.0381658 0.165183 -0.0131497 +-0.0445045 0.0438483 0.042919 +-0.0464974 0.074738 0.042075 +-0.0819901 0.133862 -0.00285904 +-0.0633534 0.0445301 0.031682 +-0.0314905 0.0960436 0.0448087 +-0.0575997 0.0574661 0.0133658 +-0.0303698 0.154176 -0.00601441 +0.0133009 0.0666579 -0.0304883 +0.0108109 0.0819726 0.0543646 +-0.068057 0.178404 -0.0514469 +-0.0806807 0.0760273 -0.00253172 +0.0394926 0.0541437 0.0318453 +-0.00450121 0.0675415 0.056336 +-0.019491 0.0387907 0.0342254 +0.0147818 0.0631153 0.0511723 +-0.0291704 0.172664 -0.0174314 +0.0262968 0.070421 -0.0238548 +-0.0421212 0.159153 -0.0103433 +-0.0367588 0.172073 -0.0125043 +-0.0196292 0.117165 -0.0140584 +-0.042525 0.149193 0.00498605 +-0.0175612 0.186044 -0.0184493 +0.0221884 0.0973608 -0.0216774 +-0.0197019 0.0568866 -0.0331333 +-0.045504 0.0832988 0.0437099 +-0.0212803 0.0387041 -0.0133833 +-0.0770943 0.154164 -0.0118975 +-0.0484907 0.0833394 0.0445457 +-0.0238036 0.0798229 -0.0381557 +-0.0372926 0.0394674 -0.0291193 +-0.00273038 0.0683735 -0.0347173 +-0.0659296 0.14253 0.0416232 +0.0452769 0.0467388 0.0283148 +-0.0898014 0.11587 0.00528404 +0.0263587 0.0577877 0.0432503 +-0.0486968 0.067904 -0.0141574 +-0.0893812 0.113196 0.0217139 +-0.0841444 0.110242 0.00330414 +-0.0631329 0.17411 -0.0535854 +0.0348962 0.0387881 -4.46661e-05 +0.0431163 0.0888383 0.0261767 +-0.0444887 0.166716 0.00379579 +-0.0235591 0.0953745 -0.0271663 +0.0455985 0.0918132 0.00816712 +-0.0917403 0.12555 0.0418871 +-0.0890224 0.136404 0.0092064 +-0.0364114 0.175555 -0.00996795 +-0.0345906 0.0727451 -0.0199624 +0.0429111 0.040977 0.0196984 +0.00148534 0.0385845 0.0464325 +-0.0585016 0.0973698 0.0431908 +-0.0484982 0.0819185 0.0441136 +0.00821862 0.116409 0.0384227 +0.0456517 0.0413562 0.00923967 +-0.0769167 0.0873975 0.0382106 +-0.061867 0.101123 -0.0184855 +0.0202898 0.124676 0.0257091 +-0.0101432 0.130124 0.0117041 +-0.0138894 0.183111 -0.0237643 +-0.0707552 0.0792696 -0.0152786 +0.0465284 0.0761532 0.0136843 +-0.0888827 0.140531 0.0122011 +-0.0659605 0.110851 0.0377691 +-0.0638988 0.109582 -0.0144399 +0.0445103 0.0541956 0.0324876 +-0.0545376 0.0335773 0.0172858 +0.0156666 0.0726831 0.0525311 +-0.0224929 0.0448955 0.0530527 +0.00250097 0.0897336 0.0558646 +-0.0427601 0.128938 0.0129983 +-0.0749067 0.100837 0.0372176 +0.0100662 0.0792875 0.0550109 +0.031592 0.0738009 -0.0197207 +-0.0295595 0.111353 -0.0178807 +-0.0265381 0.155425 -0.00506198 +0.0110253 0.0793101 0.0546505 +0.0455932 0.0834007 0.019176 +-0.00963497 0.0389293 -0.00939263 +-0.0740278 0.157006 -0.00316778 +0.026879 0.121193 0.00250168 +-0.0840153 0.1376 0.000355984 +0.00144074 0.0344391 0.0153316 +-0.062494 0.0746373 0.0407954 +-0.0714338 0.100882 0.0394174 +-0.0511894 0.0558131 0.0154354 +0.0142545 0.0887312 0.0523539 +-0.0217647 0.0699552 -0.0378816 +0.042865 0.0958458 -0.000810373 +-0.0225278 0.18149 -0.0200273 +-0.0516224 0.0545433 -0.00792825 +-0.0894416 0.0943032 0.0194238 +-0.0450754 0.033637 -0.0171737 +-0.0189216 0.122512 -0.00768052 +-0.0278603 0.101566 -0.0234492 +0.0273313 0.094554 -0.020088 +-0.0568394 0.145329 0.0319256 +0.0299199 0.11779 -0.000781916 +0.0345811 0.0368089 0.0162808 +0.0130795 0.0927597 -0.0282037 +0.0239979 0.0768543 0.0488301 +-0.0560741 0.15232 0.0295584 +-0.0713082 0.165213 -0.0459899 +0.0214853 0.0948038 0.0473574 +-0.0124976 0.0472007 0.0479814 +0.0101747 0.096292 -0.0259611 +-0.0424942 0.0916602 0.0426604 +-0.000674255 0.10997 -0.0204918 +-0.0731036 0.0721584 0.0326952 +-0.0863191 0.0806349 0.0164939 +-0.0174959 0.0984963 0.0451272 +-0.0516134 0.0334804 0.007228 +0.0210892 0.0521114 0.044364 +-0.0767842 0.155599 0.0119802 +-0.0737106 0.0699801 -0.00251138 +0.0277999 0.0727164 0.0436883 +0.0605691 0.0637105 0.0171755 +-0.0720961 0.156364 0.000513559 +-0.0818934 0.154016 0.0102104 +-0.0184806 0.169783 -0.0146335 +-0.073631 0.173473 -0.03767 +-0.0385075 0.0888951 0.0435504 +-0.056184 0.0374619 -0.0105738 +-0.0164629 0.0616668 0.0525376 +-0.0214965 0.0525299 0.044709 +-0.0324599 0.0722556 -0.0254696 +-0.0781568 0.167257 -0.0305864 +-0.0633087 0.117017 0.0436447 +-0.084428 0.138004 0.0455627 +0.0287818 0.0480764 -0.0117305 +-0.0706135 0.175903 -0.0451833 +-0.0430742 0.0335089 -0.0222312 +0.0203664 0.0506236 -0.0244327 +-0.0807714 0.153393 0.00628177 +-0.0784635 0.138605 0.0489019 +-0.0754126 0.068174 0.019879 +-0.0105025 0.0773598 0.0576687 +-0.0399608 0.0418525 -0.0253044 +-0.0880973 0.137764 0.00820327 +-0.0862825 0.106347 0.0193454 +-0.0114851 0.123708 0.0326887 +-0.00700917 0.0348727 0.042072 +-0.0760973 0.0851761 -0.013541 +0.0421377 0.0912242 0.0276147 +0.0298218 0.119509 0.00500708 +-0.0550443 0.148674 -0.00204704 +-0.0107558 0.0386486 -0.0149703 +0.00849857 0.118254 0.0373924 +0.0373294 0.0848074 0.0364738 +0.0506886 0.0511228 0.0274131 +-0.0538924 0.106961 -0.0186698 +-0.0735555 0.105459 0.0371635 +-0.0532563 0.0343869 0.0309731 +-0.015483 0.0938222 0.0546278 +0.0454513 0.052559 0.0321398 +0.032601 0.100801 0.0367685 +-0.0688527 0.142579 0.0444582 +-0.0908832 0.150197 0.0161314 +-0.0811312 0.129963 0.0524484 +0.00846909 0.111301 0.0401143 +-0.0622744 0.0344133 0.0342699 +-0.0343155 0.0340522 0.0192395 +-0.0869096 0.111745 0.0223587 +0.0507656 0.0446256 0.0152142 +-0.0767707 0.151403 -0.00690852 +-0.00150011 0.103045 0.0440564 +-0.051019 0.147224 -0.00224048 +-0.025918 0.122982 0.0235755 +-0.0527617 0.0461943 0.0216742 +-0.0178184 0.0841429 -0.0390768 +-0.0345091 0.0461323 0.043875 +-0.0623881 0.149093 -0.0125752 +-0.0809179 0.0761444 0.0241516 +-0.00945917 0.175708 -0.0257473 +-0.0334992 0.0704401 0.0410454 +-0.0886682 0.141939 0.0121971 +-0.0120612 0.0383071 0.0127308 +-0.0853843 0.0980412 -0.000554198 +-0.0325205 0.0646875 0.0393461 +0.0503466 0.0615208 -0.00363326 +0.00449283 0.103624 -0.0217086 +-0.0698084 0.085099 -0.0171261 +0.0438316 0.0832073 0.0263179 +-0.0486418 0.0576652 -0.0108452 +0.0123248 0.0609207 -0.0293142 +0.0429772 0.0902337 -0.00478341 +-0.0619824 0.166238 -0.0535924 +0.0140441 0.0406072 0.0445814 +0.00249558 0.116934 0.0396534 +0.018473 0.0989902 0.0468145 +-0.0169827 0.0385945 -0.00497776 +0.0309161 0.0955754 0.0413413 +-0.0735982 0.110276 0.0438156 +-0.0903629 0.11521 0.0252935 +-0.0566835 0.124286 -0.00724626 +-0.0620082 0.134045 -0.00734981 +0.00521493 0.0852237 -0.0334342 +-0.0903999 0.124268 0.0448512 +0.0114719 0.1182 0.0365719 +0.0344326 0.0414166 -0.00330414 +-0.0403754 0.124077 -0.00919956 +0.0484547 0.0702338 0.00359645 +-0.0285016 0.113902 0.0349068 +-0.0526285 0.0596472 0.0276152 +-0.0325191 0.174119 -0.0148634 +-0.0204902 0.108532 0.041306 +0.010276 0.076623 0.0552854 +0.0133781 0.0537725 -0.0285433 +0.0402901 0.0698645 0.0318359 +0.0401742 0.0671588 0.0316675 +-0.0866887 0.120341 0.0484058 +0.0245253 0.0875975 0.0479106 +-0.050498 0.0890212 0.0452499 +-0.0598028 0.0853759 -0.0202992 +0.0354525 0.106753 -0.0069512 +0.0111874 0.0630268 0.0529412 +-0.0416003 0.12872 0.00602836 +0.0443487 0.0533892 -0.00643258 +-0.0229394 0.0985982 0.0448104 +-0.0678177 0.0894605 -0.0172539 +-0.0826703 0.0762102 0.00250991 +-0.0152189 0.172708 -0.0246075 +-0.0748382 0.0978559 -0.0133191 +0.0284295 0.0955564 0.0430179 +-0.04802 0.136068 0.0153684 +-0.0475691 0.0489734 -0.00936479 +-0.0813576 0.0734641 0.0155425 +-0.07594 0.14997 -0.0178724 +-0.0649871 0.152354 -0.0372683 +-0.0229947 0.122243 0.0275866 +-0.0108296 0.0855471 -0.0384547 +-0.0447583 0.0336472 -0.00973579 +-0.041838 0.0942787 -0.0228038 +-0.038857 0.101401 -0.0214118 +0.00839351 0.0342854 -0.0184828 +0.0436422 0.0748109 -0.00280304 +0.00409443 0.101828 -0.021842 +-0.0194474 0.054231 0.0477027 +0.0410346 0.0752467 0.03121 +0.0588047 0.0677091 0.00614939 +0.021598 0.10091 -0.0208238 +-0.0696323 0.156261 0.0232204 +-0.086966 0.0846591 0.00747852 +-0.0660124 0.176151 -0.0507054 +0.0425261 0.101486 0.00616657 +0.0305131 0.0418181 0.0291512 +-0.0554982 0.113948 0.0354054 +-0.0763852 0.108818 0.0389983 +-0.0785959 0.152697 0.00118419 +0.0184567 0.127794 0.00934393 +0.0105917 0.043143 0.0448676 +-0.0719858 0.0346482 0.00381826 +-0.0341243 0.0335931 -0.0280196 +-0.0564439 0.115317 0.036137 +-0.0928438 0.126838 0.0112559 +-0.0661071 0.164936 -0.0219713 +-0.0665376 0.142546 0.0425061 +-0.0167827 0.0388081 0.0329676 +-0.0614351 0.156032 0.020314 +0.0388231 0.106965 0.0221712 +0.0247856 0.0449735 0.0390757 +-0.0324984 0.0788891 0.0412743 +-0.068331 0.155325 0.0280685 +0.0267262 0.114038 0.0335472 +-0.0888783 0.111909 0.0103621 +-0.0772308 0.0920788 -0.012603 +0.0457689 0.0431024 0.0219801 +0.0474981 0.0737139 0.0139878 +-0.061487 0.0746791 0.0411579 +-0.0861526 0.148758 0.00721004 +0.0341879 0.0913684 -0.0166968 +-0.0200728 0.100101 -0.0240875 +-0.0286491 0.125506 0.0152069 +-0.0268606 0.0378639 0.0137313 +-0.0352216 0.0346633 0.0327857 +-0.0444613 0.12936 0.0182577 +0.0373383 0.0740435 0.0363986 +0.00751373 0.0869673 0.0561316 +-0.0888328 0.0942898 0.0224093 +0.00897858 0.127106 -0.00499333 +0.0363106 0.0994119 0.033375 +-0.0448194 0.0913346 -0.0221278 +0.000368669 0.0466323 -0.0286891 +-0.0606782 0.0639978 0.0300882 +-0.0735086 0.078138 -0.0125733 +-0.0358361 0.11045 -0.0189078 +0.0300578 0.0632721 0.0416198 +0.0173543 0.0349384 0.0362289 +-0.0104845 0.10863 0.0429333 +-0.0265155 0.115287 0.0336658 +0.0257868 0.0967214 -0.0203669 +0.0255714 0.119263 0.0291067 +-0.0404457 0.119913 -0.0128413 +-0.0596429 0.0622343 0.0265494 +-0.0522074 0.122732 -0.00965468 +0.00419216 0.0340885 -0.0190827 +-0.0614977 0.108395 0.0385563 +-0.0154933 0.0392591 0.0382209 +0.0568425 0.0592039 0.0011688 +0.033494 0.0619462 0.0395497 +0.0378948 0.0699732 0.0354084 +-0.0643687 0.155314 0.00767719 +-0.017163 0.124753 -0.00408239 +-0.0892062 0.128127 0.00426293 +-0.058497 0.101559 0.0426268 +-0.00170163 0.130406 0.0219933 +0.0258358 0.123453 0.0120756 +0.0200283 0.102079 0.0449293 +-0.0034976 0.0965806 0.0535793 +-0.0805988 0.090913 -0.0086158 +0.0307316 0.091606 0.0428217 +0.0293141 0.095566 0.0425395 +0.011103 0.0779768 0.0547588 +-0.0912353 0.14886 0.0211316 +0.0484812 0.0443317 0.021366 +-0.00581925 0.0868408 -0.0369183 +-0.0454559 0.0902978 0.0432333 +-0.0346794 0.119765 -0.0106544 +-0.00349323 0.113677 -0.0184484 +-0.0434907 0.101526 0.0420227 +-0.0385061 0.0986889 0.0419871 +-0.0599081 0.112539 -0.0152225 +-0.0242322 0.124794 -0.000701199 +0.0400813 0.104202 0.0221684 +-0.0828121 0.0830332 0.030132 +0.0159137 0.128436 0.00413586 +-0.0645186 0.0597262 0.00993302 +-0.0324512 0.0353306 -0.0309147 +-0.0484861 0.137101 0.00939484 +-0.0304745 0.0860755 0.0433189 +0.0188415 0.121733 -0.00718615 +-0.0643746 0.145275 -0.0151376 +0.0208541 0.11855 -0.00976629 +0.037465 0.0434297 0.0291248 +0.0517879 0.0461689 0.0072143 +-0.0837871 0.0829476 0.0282971 +-0.0917215 0.129668 0.0302355 +-0.0261628 0.0674202 -0.0335157 +-0.0631555 0.156855 -0.014582 +0.043463 0.077603 -0.00378219 +-0.0602407 0.058232 0.0121428 +-0.0458636 0.102811 -0.0213024 +-0.038884 0.108506 -0.019659 +-0.0705258 0.142815 0.0451961 +-0.0781039 0.070111 0.0193756 +-0.0758474 0.109198 0.0406016 +-0.0318501 0.0986369 -0.02282 +-0.038215 0.0471675 -0.018189 +-0.0134374 0.0516868 0.0502089 +0.0151412 0.0754034 0.0535569 +-0.043493 0.105703 0.0408668 +-0.0822959 0.0773319 0.0228488 +0.0452717 0.0903987 0.0151606 +0.0159567 0.120613 0.0338084 +-0.0623049 0.142641 -0.00633906 +0.000467241 0.105823 0.0432483 +-0.0177409 0.0671746 -0.0379913 +-0.0891252 0.0889064 0.0184472 +-0.0678748 0.125664 0.0510849 +-0.0337468 0.127104 0.0118588 +-0.0518684 0.102767 -0.0207881 +0.00221584 0.0364728 0.00081639 +-0.0296253 0.0759773 0.0411397 +0.00226876 0.0682822 -0.0333186 +-0.0542457 0.0574384 0.01981 +-0.0659991 0.136994 -0.00799651 +-0.00357593 0.127459 -0.0052112 +0.0103564 0.0538895 -0.0297771 +0.0272815 0.0718243 -0.0235929 +-0.0123281 0.0344052 -0.018857 +0.0416155 0.0404142 0.0199255 +-0.0106878 0.0598858 -0.0348312 +-0.0305006 0.116618 0.0322439 +0.0427332 0.084569 0.0284544 +-0.0712328 0.151001 -0.0437008 +0.0423623 0.0944394 0.0261744 +-0.000687654 0.0583509 -0.0327859 +-0.0779789 0.136876 -0.0051311 +-0.0657518 0.0780369 -0.0174491 +-0.0789069 0.155396 0.0141592 +-0.0701046 0.156748 -0.048906 +0.0281353 0.0593598 -0.0207767 +-0.066567 0.147777 -0.0287654 +-0.0167976 0.0383562 0.00264497 +-0.0708835 0.160996 -0.0449446 +0.0230988 0.111339 0.037076 +-0.0237033 0.091176 -0.0348871 +-0.0477118 0.073839 -0.0167643 +-0.0540526 0.0334248 -0.00589512 +-0.0535445 0.0389126 -0.0111352 +0.00251277 0.0675114 0.055914 +-0.0324736 0.0532348 0.0372028 +-0.0416459 0.056333 -0.0114534 +-0.0460476 0.0363198 0.0451262 +-0.0215027 0.163915 -0.00845889 +-0.0530817 0.139518 0.0266624 +-0.00971954 0.0656257 -0.0358484 +-0.0175293 0.038199 0.0153321 +-0.0388176 0.128112 0.00411022 +-0.0579212 0.120852 -0.00959233 +-0.0215953 0.03793 -0.0285032 +0.00849245 0.0473031 0.0488481 +-0.045123 0.157633 -0.00869072 +-0.0845016 0.0911794 -0.00456302 +-0.0130394 0.0384127 0.00153612 +-0.0054932 0.111405 0.0422861 +-0.00614297 0.0385457 0.0227705 +-0.0588822 0.108299 -0.017343 +-0.0647452 0.0766241 -0.0174472 +0.0333079 0.0768384 0.0411622 +-0.0345058 0.0704863 0.0415356 +-0.00385823 0.0988046 -0.0266644 +-0.0940576 0.125561 0.0242759 +-0.0406606 0.156554 0.00601794 +0.0458479 0.0724092 0.00333418 +-0.0536298 0.0345249 0.0429297 +0.0422446 0.0760949 -0.00580476 +0.0305908 0.106106 0.0356297 +-0.0744956 0.13026 0.0524093 +-0.060795 0.0853339 -0.0197774 +-0.0659276 0.123847 -0.00897257 +-0.0587952 0.0334058 0.000425547 +-0.0355002 0.111108 0.0360398 +0.0106562 0.0589179 0.0524466 +0.0220342 0.108737 -0.0152173 +0.0414017 0.104253 0.00516521 +-0.0487319 0.132909 0.0254731 +-0.073147 0.0648981 0.0178865 +-0.0655672 0.149686 0.0379738 +-0.0866855 0.14466 0.00818677 +-0.0690156 0.163795 -0.0519803 +0.0474899 0.0664975 0.0274045 +-0.0693729 0.175081 -0.056043 +-0.0811978 0.140383 -0.00182247 +-0.0609117 0.111106 -0.0154828 +-0.027448 0.125478 0.0053817 +-0.0601827 0.0460596 0.0101722 +-0.0116048 0.0377441 -0.0259987 +-0.0623577 0.147557 -0.00658086 +-0.0635933 0.167459 -0.0411888 +-0.0420303 0.153306 -0.00761985 +0.0045298 0.102977 0.0440255 +-0.0571296 0.124118 0.0402058 +-0.010491 0.0487865 0.0492904 +-0.00149595 0.0911539 0.0561263 +-0.0644925 0.0903995 0.0447493 +-0.0621097 0.156825 -0.0345957 +-0.0626845 0.0455625 -0.000282658 +-0.054778 0.0344845 0.0375447 +-0.0704967 0.156763 -0.0469167 +-0.0501084 0.0429877 0.0445637 +-0.074873 0.120838 -0.00772479 +0.0354301 0.112103 0.00127449 +-0.0218649 0.103029 -0.0235712 +-0.09096 0.148814 0.0141536 +-0.0645626 0.0459512 0.00669838 +0.0314584 0.111437 -0.00809824 +-0.022876 0.0362943 -0.0189473 +-0.0428901 0.0435976 -0.0193145 +-0.0746823 0.0663852 0.00625465 +-0.0476209 0.0547841 -0.0103184 +-0.0197585 0.171251 -0.0147167 +-0.0705035 0.0901829 0.0418541 +0.0494272 0.0628335 -0.00296645 +0.0266028 0.105322 -0.0155495 +0.0202061 0.126966 0.0100746 +0.013717 0.127103 0.0275992 +0.00956448 0.122301 -0.0117968 +-0.0846111 0.084433 -0.00253466 +-0.0889485 0.13651 0.0272017 +-0.000398103 0.0385343 0.0221462 +0.0428913 0.0402636 0.016655 +-0.0531156 0.156084 -0.00339606 +-0.0586999 0.141645 -0.00399496 +0.0175889 0.0549386 0.0481228 +0.0242735 0.0576737 -0.0247443 +-0.0435028 0.0548283 0.0392794 +-0.0509876 0.0343016 0.0280109 +-0.0371778 0.128019 0.00618657 +-0.067159 0.152634 -0.0476967 +-0.0524481 0.115128 -0.0157418 +-0.00787248 0.0390234 0.0328097 +-0.0368889 0.109941 -0.0191779 +0.0473251 0.0497353 0.0295737 +-0.0155015 0.10721 0.0425067 +-0.0607907 0.0609394 -0.0015406 +0.0214998 0.0358071 0.0181694 +-0.0152794 0.114388 -0.017154 +-0.0618553 0.153745 -0.0235803 +-0.00541506 0.100313 0.0476265 +0.0438051 0.0987511 0.0101628 +-0.0274965 0.0973724 0.0435854 +0.0448746 0.0601039 -0.00424277 +0.031559 0.0460718 0.0312637 +-0.0615188 0.0448284 0.0115308 +-0.0397761 0.115072 -0.015742 +-0.0918654 0.131039 0.0272344 +-0.0646035 0.156332 -0.00986181 +0.0383993 0.0413521 -0.00190432 +-0.026722 0.0386646 -0.0162927 +-0.0736148 0.0995067 0.0387799 +0.006499 0.119638 0.036869 +0.0405971 0.101404 0.0241737 +-0.0944613 0.121476 0.0212834 +-0.0105851 0.0337493 -0.0235512 +-0.0799934 0.136838 -0.00393652 +0.0529009 0.0462649 0.0122044 +-0.0539028 0.11125 -0.0176614 +0.00874316 0.130156 0.0228898 +0.0260633 0.114349 -0.00924148 +0.0113837 0.0449118 -0.0251572 +-0.0461015 0.150679 0.0086365 +0.00236523 0.128663 -0.00254763 +-0.0158845 0.0910066 -0.0366604 +0.0456174 0.0890068 0.0121612 +-0.0634393 0.144588 -0.0113838 +0.0175304 0.120577 0.0333463 +-0.0256229 0.0463679 -0.0270847 +-0.0606463 0.0343588 0.0329219 +-0.0622926 0.149098 -0.0115749 +-0.0266239 0.0463597 -0.0270834 +0.0142234 0.0864184 -0.0301272 +-0.0242795 0.0383175 -0.000652306 +-0.0599506 0.0340585 0.0228145 +-0.031899 0.0595768 -0.0154053 +0.0335035 0.0686838 0.0396083 +-0.00350655 0.105885 0.0441283 +-0.00849376 0.0576353 0.0542501 +-0.0596861 0.0693591 -0.0143393 +-0.0246408 0.0382637 -0.00251941 +0.0142384 0.0723592 -0.0308856 +0.0360996 0.112682 0.0101589 +0.00650478 0.0989998 0.0481043 +-0.0406764 0.0344836 0.0353061 +0.0208126 0.114503 -0.0133998 +-0.0664042 0.0385079 0.0306689 +-0.00851871 0.0471234 0.047663 +-0.0607941 0.143953 0.0367655 +-0.0469959 0.06153 0.0374819 +-0.0566078 0.0521283 0.00668717 +-0.0117953 0.0827249 -0.0387188 +-0.0651684 0.0346977 0.0334093 +0.0334291 0.0781951 0.0413414 +-0.00319773 0.0384234 0.00715593 +-0.0255204 0.115294 0.0339151 +-0.070852 0.100833 -0.0142398 +-0.0647775 0.0824087 -0.0188685 +0.0351918 0.0673501 0.0385292 +-0.0201767 0.0929008 -0.0346271 +-0.0292631 0.0351386 0.0510616 +-0.0487306 0.0345868 0.0335095 +-0.0909618 0.13376 0.0242167 +-0.0399614 0.0343338 -0.0130933 +0.0409886 0.0643095 0.0292691 +-0.0656099 0.0655077 0.0295065 +0.0113576 0.0509388 -0.0282254 +-0.0831709 0.101988 -0.00359129 +-0.0345055 0.113874 0.0339275 +0.0308648 0.0460986 0.0320207 +-0.023595 0.180085 -0.0196757 +0.056025 0.0493916 0.0151904 +-0.0805557 0.0977534 -0.00758611 +0.0084218 0.0346373 0.0418695 +-0.0774116 0.159696 -0.0249188 +0.0602932 0.0636878 0.00814035 +-0.0302474 0.125253 0.00290344 +-0.0741812 0.074527 0.0339368 +-0.0636646 0.15831 -0.045603 +-0.0332687 0.15271 -0.00392746 +0.0267163 0.0450608 -0.00869474 +0.0351226 0.0921155 -0.0154837 +-0.0278275 0.158128 -8.54892e-06 +-0.0771542 0.152814 -0.00588992 +0.00726262 0.0682112 -0.0321527 +-0.0590296 0.0424919 -0.00727859 +-0.0604873 0.0987275 0.0428004 +-0.0916073 0.128323 0.0352449 +0.0474407 0.0661575 -0.000283122 +0.03984 0.106962 0.00517391 +-0.0609078 0.155801 0.00889681 +-0.00849418 0.114178 0.0409373 +0.00894357 0.0819404 0.0551438 +-0.0767684 0.0756527 -0.0076025 +-0.0670227 0.0607355 0.00842954 +-0.0186908 0.0510113 -0.0307584 +-0.0706351 0.0733936 -0.01149 +-0.026674 0.0382695 0.00254021 +0.0585127 0.0649229 0.00410871 +0.0241246 0.0605253 0.0453245 +0.0172623 0.073643 -0.0290458 +-0.0564969 0.111123 0.0367634 +0.0543584 0.0674371 0.0258007 +-0.0511173 0.128308 0.0330935 +-0.075231 0.151315 -0.0248804 +-0.0492462 0.132382 0.000177088 +-0.0694944 0.11756 0.0525327 +-0.0721635 0.113702 0.0503204 +-0.0647819 0.0809531 -0.0185144 +0.00336694 0.130688 0.00234495 +0.0243671 0.0699418 0.0457082 +-0.000607851 0.0448652 -0.0263872 +-0.0506782 0.141637 0.0173818 +-0.0618089 0.0881716 -0.0191682 +-0.0886021 0.087516 0.0174642 +0.011433 0.034701 0.0261941 +-0.0405676 0.171048 0.000226569 +0.0111139 0.110132 -0.0191278 +0.0136046 0.121889 0.0339065 +-0.0107442 0.0742291 -0.0379783 +0.0438711 0.0959127 0.00218342 +-0.0299153 0.155169 -0.001314 +-0.0469317 0.0369443 -0.0162782 +-0.0887949 0.142048 0.03516 +-0.0459209 0.0346888 0.0375199 +-0.0022788 0.119988 -0.0131916 +0.00522675 0.0768423 -0.034472 +-0.0277078 0.0725313 -0.0348614 +-0.0679296 0.125304 -0.00887173 +-0.0528849 0.101359 -0.0212107 +0.0356786 0.076967 -0.014745 +-0.0567974 0.0854612 -0.0213212 +0.00206285 0.121236 -0.012553 +-0.0659186 0.159142 -0.0118027 +-0.0857862 0.0939971 -0.00056361 +-0.0318889 0.124978 0.0199371 +0.0110379 0.0712445 0.0546046 +-0.043282 0.147753 0.00390043 +0.0142589 0.0737441 -0.0304465 +-0.037534 0.168232 0.00175297 +0.0421124 0.0467315 0.0307997 +-0.0195242 0.0336044 -0.023287 +-0.0581683 0.0606896 -0.00283185 +-0.0892904 0.149814 0.024685 +-0.0328117 0.0335416 -0.0258378 +-0.0534094 0.150878 0.0234093 +0.0224588 0.120521 -0.00588511 +0.0297724 0.0549903 0.0393628 +-0.0689711 0.136995 -0.00816407 +0.0327608 0.11383 -0.00261931 +-0.0138771 0.164812 -0.0186885 +0.00401259 0.0341521 0.00329327 +-0.0776837 0.154812 0.0263001 +-0.0617213 0.0781294 -0.0185002 +0.0405341 0.105626 0.00416435 +-0.033143 0.157873 -0.0118064 +-0.0244152 0.0723023 0.0471532 +0.000983167 0.0373381 0.00163376 +-0.0227666 0.126779 0.0143916 +-0.0151278 0.128803 0.00988702 +0.000514565 0.0717586 0.0570729 +0.0202169 0.0591906 0.0484605 +-0.0591321 0.0334434 -0.0069378 +-0.0338188 0.0345795 0.040191 +-0.000499113 0.11695 0.0400287 +-0.0463678 0.13079 0.00400616 +0.0171482 0.0349466 -0.009792 +-0.064905 0.0607648 0.0196679 +-0.0624362 0.150651 -0.0105777 +-0.0354607 0.154847 -0.00919588 +-0.0211471 0.0377711 0.0538261 +-0.0691709 0.147293 -0.0286567 +-0.0360974 0.127648 0.0124754 +-0.0776508 0.151441 -0.00388634 +0.0365033 0.0512847 0.031619 +0.0193623 0.0370952 -0.00967348 +0.0153438 0.0522442 -0.0271619 +-0.0174947 0.0815257 0.0576296 +-0.0629203 0.122369 -0.00879811 +0.0168951 0.128644 0.0116162 +0.0397845 0.0699028 0.0328672 +0.00847616 0.0963576 0.0505263 +-0.0532837 0.0454354 0.0434394 +-0.0154326 0.0388218 -0.0141873 +0.058968 0.0691324 0.00813536 +-0.0155327 0.116851 0.0372458 +-0.0261049 0.0632214 -0.0314499 +-0.0580383 0.122682 0.0406302 +-0.0153478 0.0972963 0.0501876 +-0.0480268 0.116533 -0.0152488 +-0.0440293 0.0378087 0.0445145 +0.0122229 0.0822322 -0.030844 +-0.00477881 0.0390844 -0.0104359 +-0.0106511 0.0496684 -0.0311061 +-0.0197213 0.123533 0.0272668 +-0.000499702 0.119705 0.0381547 +-0.0497662 0.165331 0.00186024 +0.0034577 0.0989815 0.0493164 +-0.0623164 0.153672 -0.0306063 +-0.0676947 0.134039 0.046063 +-0.0536041 0.0588172 -0.00776341 +-0.0774688 0.144183 0.0446652 +-0.054123 0.064196 0.0330627 +-0.0515128 0.0452783 0.043411 +-0.0216106 0.0422609 -0.0287762 +-0.0721201 0.0655088 0.0210948 +-0.0214414 0.0682091 0.0499624 +0.0246691 0.103387 0.0411037 +-0.0584632 0.0480819 0.000648377 +-0.0193941 0.113623 -0.0183331 +-0.0642327 0.0431706 0.0367918 +-0.0673041 0.044774 0.00468689 +0.00124491 0.0726488 -0.0351082 +0.0293752 0.0646271 0.0424024 +0.0334188 0.0399387 -0.00226403 +-0.0648162 0.092445 -0.0185198 +-0.0588392 0.0371017 0.0463605 +-0.0464973 0.113852 0.0344899 +-0.0253214 0.158135 -0.00165461 +0.0565751 0.0564133 0.00219071 +-0.0628971 0.106793 -0.0162163 +-0.0672273 0.135447 0.0449702 +-0.0874127 0.118983 0.0477049 +0.0264339 0.0415833 -0.00518191 +-0.0649816 0.114139 0.0429675 +-0.087689 0.0861087 0.0184696 +-0.0759388 0.151364 -0.016882 +-0.00938485 0.0992897 -0.0251913 +-0.0906583 0.12815 0.00627512 +0.0420818 0.101483 0.016165 +-0.0366993 0.124957 -0.00615077 +0.0344101 0.0633165 0.0391255 +0.0312208 0.0578184 0.0397344 +-0.0245116 0.0679611 0.0445844 +-0.0494967 0.0932039 0.0445022 +-0.0762012 0.149986 -0.0138757 +-0.0469178 0.060141 0.0374462 +-0.0939221 0.128285 0.0202478 +-0.0488103 0.0898531 -0.0217755 +-0.013542 0.129298 0.0162538 +0.0557083 0.0616421 0.000366134 +0.0340796 0.0848941 0.0405554 +0.0303873 0.0525299 -0.0147333 +0.0173214 0.127268 0.00181685 +-0.0623602 0.164675 -0.0475927 +-0.0633366 0.0613129 -0.000511486 +-0.0663574 0.0370366 0.0151548 +-0.0567588 0.053509 0.00466959 +-0.082746 0.0802849 -0.00049163 +-0.00173892 0.0697883 -0.0347021 +-0.0444708 0.0888726 0.0431834 +-0.0676524 0.0720092 -0.0120172 +0.0578262 0.0552267 0.0219335 +-0.0418656 0.104235 -0.0206965 +0.0300166 0.0708304 -0.0207823 +-0.0533336 0.128311 0.0351755 +-0.0275965 0.0836272 0.048557 +-0.0894883 0.139285 0.0301857 +0.0461177 0.0511569 0.0313544 +0.0505588 0.0711508 0.00463977 +-0.0653079 0.154958 0.0291369 +-0.0185448 0.0460852 0.0515079 +-0.0843685 0.105877 0.0253348 +-0.0875722 0.151019 0.0254764 +-0.0711952 0.0805577 0.0397762 +0.0367726 0.100261 -0.0101361 +0.0280869 0.0432543 0.0332457 +0.000487446 0.041412 0.0465786 +-0.0266388 0.038336 -0.00299264 +-0.00342216 0.0391144 -0.00832149 +-0.0611289 0.0344725 0.039662 +-0.0517362 0.0738243 -0.0167692 +-0.0804236 0.104574 -0.00559216 +-0.0319013 0.0525534 -0.0124561 +-0.0616634 0.0612417 -0.00198952 +-0.0659473 0.151954 -0.0393992 +0.0336372 0.112962 -0.00230707 +-0.0699642 0.138462 -0.00776795 +0.00139789 0.0405023 -0.0245871 +-0.059508 0.0890036 0.0450344 +-0.0550222 0.141298 -0.00203484 +-0.0720681 0.0805547 0.0392361 +0.0126182 0.0846922 0.0534757 +0.0593665 0.0622129 0.00511321 +-0.0924363 0.118744 0.0263157 +-0.0166806 0.0510876 -0.0315182 +0.0119118 0.0342207 -0.00263798 +-0.0646486 0.156189 0.0162701 +-0.022872 0.104437 -0.0231879 +-0.0799264 0.129511 -0.00520384 +0.0394641 0.063132 0.032359 +-0.0114897 0.0951792 0.0542781 +-0.0474976 0.111158 0.0371638 +-0.0683525 0.155277 0.00186884 +-0.000867993 0.104495 -0.0223762 +-0.0462686 0.12794 -0.00315273 +-0.0306198 0.11135 -0.017885 +-0.0420238 0.0464078 -0.0143471 +-0.0115071 0.0801438 0.0578104 +-0.00552471 0.130134 0.0220582 +0.0553699 0.0651884 0.000788532 +0.000971023 0.0370418 -0.0149189 +-0.0695999 0.162389 -0.0499627 +-0.0593254 0.0447426 0.0431798 +-0.0163529 0.16023 -0.0109161 +-0.0074892 0.108662 0.0435531 +-1.59767e-05 0.130672 0.0211571 +-0.0414957 0.0762285 0.0430404 +-0.00181283 0.0854279 -0.036655 +-0.0573252 0.157131 0.000943525 +-0.0582662 0.0597287 0.0219286 +-0.0158083 0.0827626 -0.0393641 +-0.0636754 0.156752 -0.0416076 +-0.0399677 0.0461402 -0.0203282 +-0.025156 0.16972 -0.0189618 +-0.0527747 0.0826622 -0.0215537 +0.0251411 0.10209 0.0417928 +-0.043632 0.0462886 -0.0112814 +-0.0620154 0.164635 -0.0555847 +0.0104502 0.0343141 -0.0181143 +-0.0391566 0.162183 -0.0124024 +-0.0483573 0.129635 0.0282843 +0.00538744 0.0448871 -0.0255741 +-0.0054947 0.0533903 0.0535249 +-0.00732851 0.0942973 -0.033961 +-0.0241934 0.0388427 0.0350005 +-0.0181599 0.0393223 0.0394029 +0.0346554 0.10439 -0.0105413 +-0.0459466 0.0345121 -0.0200076 +-0.0409396 0.168342 -0.0108401 +0.0103005 0.0624571 -0.0307796 +-0.0681652 0.158429 -0.00684039 +-0.00243741 0.0385239 0.0217416 +0.060795 0.0623425 0.0151668 +-0.0927217 0.128206 0.0112525 +-0.0740576 0.168348 -0.0248615 +-0.0345432 0.114978 -0.015669 +-0.0591204 0.0334451 -0.00148219 +-0.0599836 0.043576 0.0142711 +-0.0568374 0.0898133 -0.021762 +-0.0727774 0.16869 -0.0244081 +-0.00877695 0.169647 -0.023748 +-0.0733702 0.171289 -0.0318245 +-0.0533609 0.033209 0.01963 +-0.012858 0.0386932 -0.00424091 +0.0446984 0.0804984 -0.000780025 +-0.0604981 0.105663 0.0403307 +-0.0437727 0.082626 -0.0206932 +-0.0251898 0.0388783 0.0347661 +-0.00550353 0.0561986 0.0539335 +-0.0649478 0.164181 -0.0229827 +-0.0145881 0.165422 -0.0124907 +-0.0415058 0.0577139 0.0401965 +0.0385298 0.0631329 -0.0097765 +-0.0643222 0.166215 -0.0313693 +-0.0769851 0.0690914 0.0187275 +-0.013127 0.120519 -0.0116431 +-0.0624813 0.156041 0.0199412 +-0.0475747 0.0390527 -0.0120963 +0.0154157 0.0433241 -0.0236953 +-0.00124361 0.130098 0.0236021 +-0.00149237 0.118319 0.0391398 +-0.0454304 0.130382 0.00608349 +0.0094151 0.117047 -0.0161127 +-0.0370213 0.0344129 0.0343812 +-0.0266349 0.121939 -0.00696588 +-0.0514954 0.0833657 0.0447762 +-0.0661547 0.1622 -0.0162285 +0.0354074 0.0446129 -0.00524037 +-0.0839561 0.144602 0.00415973 +-0.0114934 0.104435 0.0434539 +-0.0811445 0.153633 0.00754624 +0.0416181 0.0637615 0.0286411 +0.0336503 0.0646637 0.0398008 +0.00904657 0.129598 0.024451 +-0.075728 0.151337 -0.0208826 +-0.047856 0.132056 0.00259359 +-0.0635915 0.15525 -0.0109401 +-0.025528 0.0383109 0.0298198 +-0.0664625 0.145705 -0.0206681 +-0.0675712 0.139722 0.0445155 +-0.0630199 0.134039 -0.00765574 +-0.0859393 0.101835 0.0256124 +-0.0530219 0.147196 -0.00187885 +-0.00620458 0.038993 0.0313778 +0.0378425 0.10835 0.0231802 +-0.0877357 0.0860979 0.0084778 +0.0064767 0.115498 0.0396093 +-0.027105 0.162286 -0.015104 +-0.0801261 0.144525 -0.00183492 +-0.0858754 0.148602 0.0326009 +-0.060661 0.155018 0.0264156 +-0.0104794 0.0575747 0.0533869 +-0.0433 0.0336903 -0.024306 +-0.0668671 0.0980924 -0.0163226 +-0.0682097 0.171724 -0.0385204 +0.049328 0.0615911 -0.00371844 +-0.059497 0.0861573 0.0445009 +-0.0875265 0.087486 0.0224433 +-0.0660555 0.0600044 0.0111686 +-0.0578054 0.142438 0.0322424 +0.00123277 0.0783068 -0.0354173 +-0.0916354 0.132395 0.0252256 +-0.0117599 0.104933 -0.0231377 +-0.0346346 0.0548282 -0.01038 +-0.0222409 0.0383275 -0.000251248 +0.00824961 0.0725345 -0.0333305 +0.0313861 0.0740897 0.0418701 +0.0164934 0.100411 0.0468922 +-0.0719809 0.156292 0.0165776 +-0.0221908 0.175658 -0.0213821 +-0.00588737 0.108814 -0.0225516 +0.0336337 0.112484 -0.0031866 +-0.0393568 0.123991 -0.00912015 +-0.00841793 0.0387705 -0.00155909 +-0.0431088 0.0347881 0.0415217 +-0.0281377 0.171231 -0.00924208 +0.0317135 0.0955631 0.0407455 +0.0166807 0.124611 -0.00431903 +-0.0923991 0.132355 0.0192227 +0.0141807 0.0900592 0.0522594 +-0.0553478 0.054711 -0.00338754 +-0.0742948 0.147166 -0.0148659 +-0.0210322 0.0623911 0.0469253 +-0.0808524 0.0720445 0.00954101 +0.0185494 0.0379494 0.0423026 +-0.0841291 0.0817203 0.00248105 +0.0309459 0.0700081 0.0411857 +-0.0394974 0.0705046 0.0418138 +-0.0762918 0.169333 -0.0300921 +-0.0537237 0.0477139 0.0256667 +0.0448999 0.0861351 0.000186186 +-0.0313094 0.0384531 -0.00773361 +-0.0305219 0.0474445 0.0454913 +-0.0809514 0.0882189 -0.0076035 +0.0546575 0.0706779 0.0225865 +-0.0414965 0.0986758 0.0418571 +-0.0484435 0.0628471 0.0360579 +0.0594927 0.066407 0.020186 +-0.0627925 0.0838575 -0.0191674 +-0.0214511 0.184864 -0.013038 +-0.0935392 0.129637 0.0202382 +-0.0799546 0.100457 -0.00758867 +-0.0552688 0.126926 0.0376418 +0.0378584 0.0645918 0.0353403 +-0.0361046 0.0383233 -0.0122787 +-0.049226 0.14015 0.0123965 +-0.0164997 0.0938314 0.054193 +-0.0746007 0.0914774 0.0400082 +-0.0791205 0.0709783 0.00599758 +0.0253641 0.0347082 0.00521179 +-0.0594957 0.0918578 0.0453847 +0.0136708 0.0820393 0.0532361 +-0.0193315 0.182966 -0.0230088 +-0.000544127 0.127196 -0.00494172 +-0.030476 0.0664272 -0.0264734 +-0.0734051 0.0674458 0.022683 +-0.0136727 0.0337044 -0.0241151 +0.0214461 0.036336 0.0158614 +0.0583506 0.0662943 0.00413175 +-0.0639059 0.118033 -0.00945272 +-0.0454908 0.0987379 0.0426533 +-0.0318359 0.0344957 0.0406866 +-0.0657843 0.167288 -0.0290298 +0.0181885 0.053509 0.04724 +-0.0610973 0.169393 -0.058599 +-0.0167464 0.108538 -0.0209441 +-0.0826184 0.0802381 0.0286257 +-0.0731223 0.134062 0.0505767 +-0.0135829 0.03702 0.0510108 +0.0354665 0.0768048 0.0390018 +0.0499493 0.051169 0.0281186 +-0.00858939 0.0389741 -0.00922854 +-0.0482262 0.166987 -0.00394405 +0.000506781 0.0605965 0.0560209 +-0.0571262 0.0333733 -0.00101401 +-0.0527176 0.0611373 0.029069 +-0.0225206 0.0919822 0.0517607 +-0.0727584 0.158224 -0.0349231 +0.0221671 0.123584 -0.0006811 +-0.0697019 0.142554 0.0449861 +-0.0890361 0.146068 0.0101777 +0.0300144 0.0389449 0.0261617 +0.0457459 0.0834058 0.0171675 +-0.0828165 0.0790258 0.0245191 +-0.0216847 0.180158 -0.0138785 +-0.0260473 0.11708 -0.0139183 +-0.0263102 0.123352 0.021955 +-0.026277 0.0795343 0.0501986 +-0.04015 0.0473434 -0.014266 +-0.0911404 0.129685 0.035237 +-0.0376719 0.114063 -0.0167039 +-0.0138183 0.0855391 -0.0388001 +-0.0574963 0.111121 0.0367615 +-0.0459611 0.149058 -0.0040494 +-0.06359 0.153594 -0.035633 +0.0294595 0.116659 -0.00368699 +-0.0465112 0.0491437 0.0387964 +-0.0476612 0.135572 0.0133995 +-0.0122712 0.0385653 -0.000297189 +0.0438612 0.0930832 -0.000804157 +-0.00849948 0.0911907 0.056727 +-0.0554517 0.0444829 -0.0071986 +0.0112279 0.0808839 -0.0317275 +-0.0364414 0.0346808 0.041293 +-0.0768829 0.108524 0.037335 +-0.0212115 0.177139 -0.0220322 +-0.0498078 0.0898419 -0.0216876 +0.00832653 0.130915 0.00561741 +-0.0834391 0.153089 0.025871 +-0.0797915 0.0746069 -0.00248195 +0.0162926 0.0348913 0.030635 +-0.0720312 0.141354 -0.00781974 +-0.0640613 0.0606361 0.00380817 +-0.0616877 0.169385 -0.0545934 +-0.0180884 0.184586 -0.0174536 +-0.083714 0.0804887 0.0254979 +-0.0378459 0.0971527 -0.0224307 +-0.048763 0.120209 -0.0131018 +0.0257432 0.120365 -0.00224906 +0.0155215 0.0490175 0.0450471 +-0.0516538 0.162634 -0.00285466 +-0.00249513 0.0774404 0.0585569 +-0.0676995 0.0606833 0.0155957 +-0.0530523 0.0333885 -0.00566149 +0.00632209 0.0596079 -0.030662 +-0.075813 0.0681115 0.0180714 +0.0416741 0.0642804 0.0284921 +-0.04591 0.132311 0.0103278 +-0.0266282 0.0932643 0.045173 +-0.0409763 0.128303 0.0136557 +-0.0295455 0.0745738 0.040676 +-0.0236123 0.0408478 -0.0290846 +-0.062999 0.13114 -0.0082084 +-0.0282657 0.0357556 -0.0195136 +0.0383138 0.109087 0.0181423 +-0.0225227 0.0903335 -0.0360154 +-0.00581332 0.0840953 -0.0378871 +-0.0560848 0.155673 0.012015 +-0.0384894 0.0436513 0.0409963 +0.0250684 0.0912521 -0.0226015 +0.0327251 0.116757 0.0189485 +-0.00849679 0.081545 0.0579523 +0.00549376 0.116905 0.0389072 +-0.0684642 0.035536 0.0130279 +-0.0274333 0.0808284 0.0484505 +-0.0892338 0.0888828 0.0134587 +0.040773 0.0858024 -0.0107788 +-0.018787 0.0654231 0.0516453 +-0.057411 0.0334884 -0.00846165 +-0.0515646 0.0516091 -0.00736491 +-0.0341101 0.171131 -0.0149349 +0.0224908 0.0672402 0.0465227 +0.00748827 0.048894 0.0505047 +-0.0891497 0.139122 0.0375101 +-0.0324992 0.033739 0.00907408 +-0.00547868 0.112944 -0.019663 +-0.00364368 0.038223 0.0108877 +-0.00888297 0.175714 -0.027834 +-0.0616908 0.156845 -0.0305919 +-0.0454927 0.0747515 0.0421648 +-0.0628753 0.0333858 -0.000385113 +0.0200484 0.122759 0.029923 +-0.0624127 0.150637 -0.0175763 +-0.0772056 0.0717509 -0.00044869 +-0.070203 0.179305 -0.0507979 +-0.021805 0.0812974 -0.0389167 +0.00417139 0.0894659 -0.0333631 +-0.00354618 0.035584 0.0475305 +-0.0881296 0.100997 0.0213597 +-0.0344927 0.0803488 0.0420944 +-0.0142597 0.180104 -0.0279187 +-0.0772012 0.161073 -0.0279344 +0.0267764 0.0373043 0.025139 +-0.0764984 0.127442 0.0532158 +0.0305998 0.0741029 0.0424942 +-0.0429656 0.115061 -0.0157138 +-0.0569157 0.131148 0.0370227 +-0.087746 0.09368 0.0248353 +-0.0282695 0.0620042 -0.0284458 +-0.026741 0.0877745 0.0490115 +-0.0141005 0.0382966 0.0123251 +-0.040335 0.124745 0.0227896 +-0.0176742 0.109826 -0.020315 +0.0100598 0.0371564 0.0309489 +0.0330284 0.116174 0.0204895 +0.0194916 0.111179 0.0380087 +-0.0468321 0.144886 0.00412892 +0.00432629 0.0568097 -0.0310178 +0.0172994 0.0665713 -0.0290602 +-0.0776345 0.165887 -0.0268309 +-0.0754949 0.117024 0.0522099 +0.0129986 0.124708 -0.00640366 +-0.0551543 0.0561755 0.00960447 +0.0258384 0.0659192 0.0443144 +-0.0892157 0.0956404 0.0184193 +-0.062275 0.152174 -0.0245791 +-0.0712276 0.159591 -0.0429327 +-0.0468614 0.102797 -0.0212675 +-0.0888687 0.0942285 0.0104297 +0.00705483 0.113673 0.0402142 +-0.0846088 0.10754 0.00337493 +-0.0567766 0.0840541 -0.0213935 +0.0291103 0.0713139 0.0420683 +-0.0416245 0.172695 -0.00500345 +0.0467254 0.0741323 0.0166809 +0.0182946 0.123502 0.0292701 +-0.032545 0.0821172 -0.0295502 +0.0405942 0.0847142 0.0324234 +-0.063874 0.0967575 -0.0177619 +-0.0200635 0.0385408 -0.00554998 +-0.0617567 0.139364 -0.00656769 +-0.0151158 0.0388065 -0.0122456 +0.0258671 0.111418 0.0358303 +-0.0323169 0.126646 0.013854 +0.0128496 0.0432822 0.0446281 +0.0410596 0.104249 0.0151631 +0.0413114 0.0661977 -0.00477755 +-0.0524783 0.0442541 0.0446515 +-0.00534534 0.0423344 0.0481709 +-0.0154906 0.0587868 0.0517337 +-0.0768702 0.122267 -0.00710647 +0.018318 0.0607989 -0.0274966 +-0.0414689 0.101488 0.0411988 +-0.03948 0.109789 0.0371385 +-0.071689 0.171513 -0.0326505 +-0.0562412 0.0479891 0.0306662 +0.0198041 0.103539 -0.0196351 +-0.06089 0.146655 -0.00344226 +-0.0625194 0.150622 -0.0185752 +0.0162788 0.0421207 0.0443108 +-0.0926435 0.13098 0.0162303 +-0.0102744 0.0864318 -0.0379838 +0.0437196 0.0846401 -0.00379782 +-0.0575438 0.119835 0.0395668 +-0.0312754 0.118165 0.0306394 +-0.0384168 0.120732 -0.0116964 +-0.0133826 0.1039 0.0435877 +0.0232434 0.0804535 -0.0255191 +-0.0102585 0.0379591 0.0497745 +-0.0427371 0.0753968 -0.0185868 +0.0223381 0.0606785 -0.0258752 +-0.0124978 0.122374 0.0339942 +0.00450508 0.0688823 0.055725 +0.0471561 0.0614873 -0.00363177 +-0.0496676 0.0649029 -0.0122308 +-0.0360083 0.0485228 -0.0153235 +0.0255211 0.116701 0.0317994 +0.000516492 0.101662 0.0444028 +0.00434751 0.121547 -0.0129175 +-0.0374873 0.0959326 0.0432114 +0.0252705 0.0346338 0.0163557 +-0.0124579 0.0545987 0.0514221 +-0.0889602 0.131049 0.0432066 +-0.0372423 0.152141 0.00211029 +-0.0892956 0.0942653 0.013432 +-0.0518302 0.0344778 0.0329457 +-0.0187757 0.0756949 -0.0390019 +-0.0719603 0.0681626 0.0276375 +-0.0847959 0.147297 0.0357863 +-0.0683786 0.160357 -0.00982452 +-0.0326605 0.0863757 -0.0255732 +0.0456643 0.0848033 0.01617 +0.0560044 0.0608622 0.0263962 +0.0242808 0.034582 0.00510919 +-0.0255484 0.0414464 0.0539815 +0.0584482 0.0538047 0.0101717 +-0.0507323 0.0738128 -0.0166527 +-0.0145896 0.101524 -0.0235873 +0.00379349 0.0393361 0.0313217 +-0.060041 0.155524 0.0222725 +0.0330115 0.107346 -0.00970764 +-0.0356538 0.120932 -0.00987931 +0.0252334 0.114772 -0.00969056 +-0.0560291 0.051292 0.00869383 +0.039494 0.0484532 0.0321483 +0.0260206 0.095556 0.0448127 +-0.0144952 0.092498 0.0556089 +-0.0745303 0.0887706 0.0400356 +-0.0427423 0.0768225 -0.0188988 +-0.0254944 0.0348465 0.0469921 +0.0115755 0.104003 -0.020168 +0.0177398 0.128218 0.01192 +-0.0537709 0.0460941 0.0150722 +-0.0260174 0.0351047 -0.0290083 +0.0146321 0.0460649 0.043757 +-0.0725348 0.149777 -0.0387435 +-0.067793 0.0851703 -0.0179862 +-0.0345051 0.0491976 0.0390013 +-0.0575351 0.0727864 0.0407731 +-0.0902562 0.135043 0.0112131 +-0.0341019 0.0350895 0.0466468 +0.0354707 0.0862229 0.039086 +-0.0635111 0.15292 -0.0340962 +0.000752728 0.131478 0.01712 +0.0415962 0.101461 0.0191676 +0.0199544 0.117871 -0.0110405 +0.0125 0.0341066 0.00131673 +-0.0104877 0.105844 0.0434252 +0.000625364 0.130997 0.01994 +-0.00947876 0.108641 0.0432746 +0.0427329 0.0747306 -0.00479562 +0.0175177 0.121695 0.0318921 +-0.0724967 0.123205 0.0535111 +-0.0217998 0.0826894 -0.0387559 +-0.0474379 0.0384277 -0.0132876 +-0.0453217 0.127718 -0.00291517 +0.00149278 0.115548 0.0405079 +-0.00268673 0.0598311 -0.0338297 +-0.0282466 0.0410133 0.0533665 +-0.084979 0.0912122 -0.0035611 +-0.00188052 0.0377314 0.00623396 +-0.0719012 0.152408 -0.0434229 +0.0297667 0.100164 -0.016062 +-0.0446553 0.0615526 0.0394256 +-0.0935168 0.125484 0.0132627 +0.00892319 0.0349264 0.0435129 +-0.0906919 0.142015 0.0231619 +-0.0362968 0.126232 -0.00232089 +-0.0581074 0.0494572 0.00366497 +0.0584743 0.0538121 0.0171841 +0.0453685 0.090397 0.014157 +0.0451698 0.0903876 0.0161628 +-0.0648504 0.099576 -0.0170426 +-0.0336174 0.0385515 -0.0101375 +-0.0818746 0.144748 0.0414084 +-0.0921915 0.114676 0.0133297 +-0.0735116 0.140055 0.0477493 +-0.0625074 0.0334277 0.00145514 +0.0301634 0.0659717 0.0417895 +-0.0313891 0.0338671 0.0146006 +-0.0524964 0.0876231 0.0453765 +-0.0763164 0.155546 0.0238171 +0.0473804 0.0650284 -0.00116263 +-0.0203751 0.165368 -0.0103486 +-0.074953 0.131092 -0.00759533 +-0.0200723 0.0361973 0.0530852 +-0.0623326 0.164687 -0.0445921 +-0.0432796 0.127517 -0.00276726 +-0.0794589 0.155317 0.0154304 +0.0484584 0.0430177 0.0142199 +0.0516914 0.0635003 0.0289607 +0.0124992 0.111251 0.0392691 +-0.00916969 0.168123 -0.0207225 +-0.0624966 0.0987153 0.0424769 +0.0403564 0.0602895 0.0300713 +0.000529964 0.0745913 0.0578265 +-0.00430704 0.037991 -0.0149598 +-0.0458025 0.0336244 -0.00441422 +0.0244543 0.124393 0.0172632 +-0.0566778 0.0485827 0.00942267 +0.0118497 0.0354401 0.0310392 +-0.0460906 0.156154 -0.00788178 +0.0200436 0.125383 0.0241901 +-0.0110606 0.128229 0.000136123 +-0.0680155 0.149781 -0.0384715 +-0.0340535 0.158097 0.00328753 +-0.063246 0.0709836 0.037551 +0.00837353 0.0479453 -0.0272176 +-0.0704921 0.0944433 0.0420805 +0.0271048 0.0835778 0.0462962 +-0.0814225 0.0858535 0.0328878 +-0.0311244 0.126183 0.00987945 +0.00420219 0.0866314 -0.0335404 +-0.0160918 0.0359549 0.0514785 +-0.0387772 0.152061 -0.00669739 +-0.0394877 0.095879 0.0424449 +-0.0556734 0.0645255 -0.00818248 +-0.0721186 0.0637108 0.0173676 +-0.00866441 0.055565 -0.0335626 +0.034399 0.0476191 -0.006288 +0.0184894 0.03497 -0.0076507 +-0.0208903 0.0376209 0.05361 +-0.0721389 0.12842 0.0519775 +-0.0135421 0.093873 0.0547462 +-0.0114977 0.038716 -0.00213082 +-0.0444942 0.0761733 0.0424299 +-0.0162113 0.0387427 -0.00681752 +-0.0632795 0.162306 -0.0238202 +-0.0678999 0.11945 -0.00879052 +-0.0624555 0.163099 -0.0465902 +-0.0197676 0.0376635 -0.0177276 +-0.00982564 0.0339746 -0.0198462 +-0.0334993 0.115969 -0.0147052 +0.0241258 0.0914782 -0.0228484 +0.0393714 0.104176 0.025187 +-0.0877422 0.114422 0.00426669 +0.0169437 0.0346991 -0.00395051 +-0.0659364 0.0364202 0.0386491 +0.0236414 0.0741206 0.0482553 +0.0360643 0.108191 -0.003826 +-0.0498837 0.0340852 -0.0133065 +0.0109544 0.0459934 0.0454216 +0.0232194 0.06778 -0.026032 +0.0407755 0.0675587 -0.00776366 +0.0164452 0.127885 0.0214354 +0.0306214 0.073711 -0.0207585 +0.0310665 0.0768618 0.0431993 +-0.0326395 0.0549161 -0.0112709 +-0.0264479 0.0721314 0.0435447 +0.0185916 0.116689 0.0359263 +0.0210399 0.118016 0.0341276 +-0.0910253 0.115214 0.0323598 +0.000420695 0.0340758 -0.0179207 +0.011475 0.115421 0.0379758 +0.0558934 0.0728505 0.0127047 +-0.0168011 0.0813465 -0.0393174 +-0.0884013 0.103686 0.0143755 +0.00687166 0.100046 -0.0219438 +0.00938176 0.0463536 -0.0257255 +-0.0376115 0.11722 -0.0140038 +-0.0454999 0.102932 0.0417867 +-0.0638509 0.0597328 0.00826283 +-0.0626761 0.0691812 -0.0125769 +-0.0654105 0.124234 0.0493774 +-0.0585036 0.0790577 0.0434985 +0.025387 0.103408 0.0403826 +0.0322433 0.0896617 -0.0189276 +-0.0875821 0.0909427 0.0247332 +-0.0855607 0.103501 0.00239284 +-0.0436971 0.0419128 0.0432773 +-0.0946145 0.122826 0.0212791 +0.0282404 0.0858422 -0.0216043 +0.00524711 0.0726037 -0.0343433 +0.00348793 0.114165 0.0408953 +-0.0345349 0.108408 0.0380462 +-0.053757 0.152473 0.0202331 +-0.0684765 0.061182 0.0096252 +-0.0653795 0.17033 -0.0418012 +0.0335191 0.0398635 0.0260657 +0.00150101 0.0647986 0.0566673 +-0.0386685 0.0621637 -0.0127302 +0.0514753 0.0731205 0.0184716 +-0.0475108 0.159316 0.00812402 +-0.0418554 0.101378 -0.0213767 +0.059111 0.0580409 0.00617531 +-0.0235023 0.105779 0.0421282 +-0.0564932 0.0861648 0.0446121 +0.0463019 0.07925 0.0141776 +-0.037115 0.160706 -0.0129903 +-0.0454732 0.0917007 0.0431865 +-0.08762 0.143285 0.0101199 +0.0294825 0.0348729 0.0114843 +0.0351631 0.0941496 -0.0136388 +0.0169892 0.122251 -0.00777586 +-0.0286955 0.175698 -0.00647862 +-0.0586479 0.0629437 -0.00583333 +-0.0799097 0.0706493 0.0132254 +0.0440384 0.0959414 0.0171588 +0.00466861 0.0365644 -0.00250089 +-0.0368263 0.0929138 -0.0236695 +-0.0126068 0.0392015 -0.0264338 +0.014095 0.041997 0.0446638 +0.00757449 0.035092 0.025056 +-0.0564565 0.03337 -0.00815977 +-0.0774971 0.128861 0.0533302 +0.0348978 0.0613787 -0.0138096 +-0.0348784 0.10713 -0.0202183 +0.0074278 0.117326 -0.0164147 +-0.0416698 0.0345261 0.0350582 +-0.0711528 0.180791 -0.0525602 +-0.0633069 0.0343768 0.0340823 +-0.0795725 0.091329 0.0351135 +-0.00149388 0.0787876 0.0581499 +-0.0838841 0.12062 -0.00343109 +-0.0017512 0.0769296 -0.0360915 +0.00921045 0.0851252 -0.032 +0.0528986 0.056075 -0.00272531 +-0.088793 0.0888086 0.00747102 +0.0367516 0.061565 -0.0117718 +-0.00560731 0.0389273 -0.00299633 +-0.0145783 0.0348246 -0.0259715 +-0.0668255 0.162993 -0.016474 +0.0537671 0.0492093 0.00323447 +0.0164968 0.0990289 0.0471605 +0.0350254 0.0533499 0.0328505 +-0.0502577 0.127427 -0.00458948 +-0.0354996 0.0605317 0.0401535 +-0.0445094 0.0832466 0.0430632 +-0.061134 0.11687 0.0396165 +0.0288023 0.0594063 -0.0198054 +-0.0345743 0.120058 0.0294165 +-0.00577775 0.0812461 -0.0375203 +-0.0271582 0.125819 0.00840694 +-0.00487894 0.130442 0.0208375 +-0.0485449 0.165375 0.00344343 +0.00426734 0.0682596 -0.032922 +-0.0887148 0.12811 0.00328264 +-0.0688911 0.0610594 0.0132079 +-0.0845844 0.121705 0.0490448 +0.0086501 0.130656 0.00430717 +-0.0694892 0.109539 0.0380952 +-0.0883053 0.149858 0.0265188 +-0.0556122 0.136727 0.0318764 +0.00753471 0.0632773 0.055432 +-0.0675754 0.0334584 0.000400215 +0.0390555 0.064539 0.0335561 +0.00752021 0.073081 0.0562837 +-0.0898786 0.113438 0.0340422 +-0.0729585 0.134037 -0.00770509 +-0.0713317 0.151217 -0.0439201 +0.00350232 0.123774 0.0338316 +-0.0682244 0.142863 -0.0118107 +-0.0110454 0.113378 -0.0180964 +0.0539053 0.0478505 0.00821457 +-0.0614468 0.141404 -0.00570472 +-0.0113089 0.0383954 0.0218511 +-0.0281079 0.177558 -0.016771 +0.012409 0.0418787 -0.0238148 +-0.00282516 0.102957 -0.0229221 +0.0254031 0.123772 0.0104796 +-0.0305987 0.0803029 0.0419758 +-0.0750181 0.0761727 0.0341343 +-0.0144519 0.166922 -0.0140569 +0.00338055 0.0465728 -0.0280809 +-0.0162255 0.177147 -0.0257279 +0.0131167 0.108671 -0.0187213 +0.0272829 0.121723 0.00548626 +-0.0883907 0.115479 0.0451949 +-0.0879259 0.102339 0.0203636 +-0.0548201 0.128324 0.0365339 +-0.0820753 0.129944 0.0519532 +0.00724365 0.07823 -0.0340312 +-0.0819891 0.0923793 -0.00757573 +-0.0303556 0.168269 -0.0071929 +-0.00250456 0.0562401 0.0542942 +-0.0616678 0.143939 0.037247 +-0.0776245 0.151441 -0.00287924 +0.0374138 0.110303 0.0192381 +0.0348067 0.0902706 0.0399059 +-0.0127063 0.0671038 -0.0370425 +0.0160068 0.0347306 -0.00980024 +-0.0372246 0.0368821 -0.0130308 +0.0340234 0.0585319 -0.0137143 +0.0541559 0.0477549 0.017206 +-0.0405048 0.15944 0.00272423 +-0.0015963 0.0981039 -0.0279083 +-0.092935 0.117416 0.0233037 +-0.0832007 0.119017 0.0492012 +0.00140058 0.0348342 -0.0234319 +-0.0868724 0.106357 0.0173489 +-0.0166991 0.0570076 -0.034416 +-0.0907644 0.142021 0.0271708 +-0.0822477 0.106043 -0.00262262 +-0.0929753 0.11876 0.0253083 +-0.0263289 0.0434924 0.0526862 +-0.0374936 0.0733328 0.0420467 +-0.0355255 0.0818589 0.0431427 +-0.0650055 0.136996 -0.00788185 +-0.0705444 0.0712752 0.0339991 +-0.0549513 0.0339195 0.0239841 +-0.00779971 0.114512 -0.0173201 +0.0213851 0.0754916 0.050294 +0.0297243 0.0538559 -0.0167895 +-0.00746204 0.125196 -0.00874293 +-0.0385113 0.0973107 0.0424108 +0.0437641 0.0599949 -0.00412714 +0.00932784 0.0581716 -0.0301717 +-0.07404 0.148543 -0.0208687 +-0.067363 0.177688 -0.0512074 +-0.00213372 0.123188 0.0349488 +-0.0180211 0.168338 -0.0139614 +-0.0254657 0.0678395 0.0426887 +-0.0266217 0.0436536 -0.0288174 +-0.0498332 0.0956322 -0.0221283 +-0.0772795 0.155549 -0.0169029 +0.0369068 0.0799159 -0.0147176 +-0.0788489 0.119288 -0.00581129 +-0.0101059 0.171125 -0.0207965 +-0.0324932 0.0774699 0.0412179 +-0.0434937 0.0705308 0.0420517 +-0.0158265 0.0869335 -0.0385904 +-0.00548754 0.123746 0.0343085 +0.0610091 0.0623122 0.0111052 +-0.00962571 0.0451144 -0.0282927 +-0.0687445 0.160961 -0.0529537 +-0.00991099 0.115578 -0.0164445 +0.0199768 0.126969 0.0170274 +-0.0827793 0.0771313 0.0211566 +-0.0119077 0.0894805 -0.0370977 +0.0238643 0.100811 0.0434608 +-0.0130347 0.166801 -0.0212915 +-0.0934989 0.122762 0.0122811 +-0.0667245 0.0765676 -0.016644 +-0.0391998 0.0351247 -0.0118182 +-0.0445637 0.128075 -0.00132731 +-0.0258871 0.0377455 0.0194558 +-0.093776 0.124126 0.0142628 +-0.0698753 0.117966 -0.00835455 +-0.0515005 0.100157 0.0426446 +-0.0404873 0.112547 0.0355988 +-0.0674682 0.0382926 -0.00574154 +-0.0624974 0.0876076 0.0451456 +-0.0367451 0.0768715 -0.019149 +-0.00349748 0.0870382 0.0570453 +0.0243264 0.0591823 -0.0248233 +-0.0604582 0.154406 0.00215902 +-0.0742084 0.067281 0.00145303 +0.0461952 0.0834391 0.00817714 +-0.0246581 0.0664552 0.0433381 +0.0223219 0.0402539 -0.00770693 +-0.0269495 0.0511315 0.0418642 +-0.0426785 0.060742 -0.0126195 +-0.0470567 0.069722 0.0403886 +-0.057499 0.0889744 0.0446686 +-0.0925962 0.126825 0.0102659 +-0.0627541 0.166279 -0.0425846 +0.00227655 0.0655175 -0.0339267 +-0.0152717 0.181584 -0.0271612 +-0.0527991 0.0578707 0.0222512 +0.0181983 0.0768373 0.0527356 +-0.020287 0.0445184 0.0528933 +-0.0230546 0.0388523 0.0540611 +-0.0591948 0.0603156 -0.00052226 +-0.0356179 0.0505976 -0.0108834 +-0.0125985 0.0420542 -0.026434 +-0.0457346 0.0337173 0.00640665 +-0.0271239 0.117991 -0.0128729 +-0.0287901 0.105845 -0.0221143 +-0.0791947 0.116328 0.04948 +-0.037475 0.126933 -0.001254 +-0.0652274 0.172558 -0.0603808 +0.0249025 0.0659023 0.0447242 +0.0444853 0.062436 0.0294527 +-0.0584017 0.0411488 0.0207065 +-0.0637308 0.0380192 0.0421186 +-0.0224637 0.0768447 0.053535 +-0.0472049 0.132217 0.00449629 +-0.055985 0.033885 0.0237996 +-0.0637704 0.158563 -0.0153492 +-0.0889154 0.0875162 0.0124615 +-0.0630601 0.155204 -0.0366146 +-0.0858283 0.1008 0.00139713 +-0.00849876 0.0884233 0.057199 +-0.0464295 0.156494 0.00819518 +-0.0875333 0.0927687 0.0054156 +-0.0555067 0.053407 0.0086882 +-0.0319429 0.0346356 0.0246022 +-0.0532414 0.127751 -0.00500041 +-0.0324852 0.0946249 0.0445277 +-0.0652259 0.166727 -0.0597961 +0.0318258 0.090298 0.0426417 +0.0227624 0.0959793 -0.0216236 +0.0453464 0.0791637 0.00120688 +-0.00148178 0.0718081 0.0578063 +0.0484981 0.0664872 0.0276228 +-0.0638124 0.0339885 0.0132249 +0.0378702 0.100686 0.0303226 +0.0423416 0.0718943 -0.00578991 +0.0449549 0.0889654 0.0201657 +-0.0505604 0.0431885 -0.0101401 +0.0305345 0.113708 -0.00653825 +0.0175297 0.092684 0.048312 +-0.0405439 0.0338701 -0.0146326 +-0.0151193 0.0387785 0.0315419 +0.0425177 0.0660617 -0.00221978 +-0.0261619 0.0381432 0.054147 +-0.0435068 0.0576714 0.0396679 +-0.0531482 0.161241 0.00587596 +-0.0897425 0.0915834 0.0134432 +0.00549953 0.119637 0.0367537 +-0.00877042 0.130092 0.00788453 +-0.0417274 0.0725105 -0.0179617 +-0.0534984 0.0776159 0.0431279 +-0.0290767 0.121891 0.0239314 +0.0583737 0.0676977 0.00512132 +-0.0647358 0.157148 -0.0507072 +0.0435656 0.0945094 0.0231538 +-0.0220003 0.181634 -0.0125756 +-0.0298816 0.0621837 -0.0234188 +-0.0460097 0.127427 -0.00464706 +-0.0136152 0.0982979 -0.0261721 +-0.0662958 0.0637695 -0.0035905 +-0.0920915 0.118829 0.0424602 +-0.0157421 0.0686009 -0.0381423 +-0.063492 0.0819119 0.043822 +0.0519248 0.0461654 0.00821164 +-0.0528781 0.0490838 0.0346622 +-0.0896974 0.137929 0.0351902 +-0.0502406 0.140114 0.00340131 +-0.0460575 0.131197 0.00582383 +-0.0398248 0.0928735 -0.0232663 +-0.0287922 0.165339 -0.00670006 +-0.0017304 0.0712031 -0.0351875 +-0.0386191 0.118326 -0.013151 +0.0193849 0.126884 0.00540105 +0.0309645 0.0363887 0.0195722 +-0.0314998 0.155167 -8.72409e-05 +-0.000786782 0.0826169 -0.0366787 +-0.0771272 0.155133 0.00894547 +-0.00248977 0.112799 0.0419964 +-0.0279028 0.160261 -0.0136941 +-0.0431979 0.129461 0.00840104 +-0.0208217 0.0854768 -0.038298 +-0.01776 0.0714448 -0.0386564 +0.00624218 0.039472 0.0335072 +-0.0639011 0.119458 -0.00893676 +-0.0667029 0.176899 -0.0509708 +-0.0245413 0.0349941 -0.0287041 +-0.0487364 0.0753122 -0.0176891 +-0.0669945 0.169371 -0.0323347 +-0.00928822 0.0393788 0.0494849 +-0.0239808 0.0936155 -0.0313592 +0.0224894 0.0906371 0.0481279 +0.0242369 0.0748124 -0.0257049 +-0.0243462 0.1625 -0.00551798 +-0.0625942 0.153749 -0.0125838 +-0.0486891 0.137066 0.0163891 +-0.0679674 0.0350577 0.0131968 +-0.0626161 0.12969 0.0410793 +-0.0263812 0.120789 0.0279195 +-0.0802896 0.144766 0.0426469 +0.0132183 0.0794258 -0.0310561 +-0.0415045 0.0548576 0.0396938 +-0.00948994 0.0952069 0.0546127 +-0.0903261 0.135124 0.0222174 +-0.0574953 0.153709 0.0290191 +-0.0428742 0.10707 -0.020141 +0.057983 0.0674087 0.022273 +-0.0297438 0.0593588 -0.0214043 +-0.0562018 0.0589495 -0.00340637 +-0.0230647 0.0402418 0.0541248 +-0.062019 0.17397 -0.0618399 +-0.0412895 0.149153 -0.00363446 +-0.0485728 0.0503685 -0.00899002 +-0.00748812 0.10728 0.0439222 +-0.0336555 0.0709359 -0.0204834 +-0.0407158 0.171931 -0.00126808 +-0.0610791 0.151413 0.0351388 +-0.0221494 0.0384504 -0.005885 +0.00439305 0.11559 -0.018534 +-0.0241215 0.0944713 0.0461972 +-0.0547672 0.0812274 -0.0214088 +-0.0846583 0.0777659 0.00751712 +-0.0574282 0.0507609 0.000628334 +-0.00874511 0.0976201 -0.0294139 +-0.022979 0.0380859 0.023348 +0.043448 0.0916342 -0.00278755 +0.0145196 0.123096 0.0322223 +-0.0415646 0.125825 -0.00703356 +-0.0726695 0.171671 -0.0330178 +-0.010471 0.0378949 -0.0160892 +-0.0488368 0.0970812 -0.0221898 +-0.0586032 0.141 0.0328315 +-0.0117815 0.0347775 0.0429519 +0.0116378 0.0603198 0.0518663 +-0.0459594 0.0560107 0.0380589 +0.0399446 0.107028 0.0121641 +0.00710547 0.0893998 -0.032814 +0.0410678 0.10142 0.0221661 +-0.0244452 0.181836 -0.00961144 +-0.013259 0.121231 -0.0103976 +-0.0454789 0.123431 0.0251209 +0.0285377 0.0523356 -0.0187697 +0.0588289 0.0691072 0.0191593 +0.0125005 0.1007 -0.0226033 +-0.0595569 0.153648 0.0312116 +-0.00403867 0.0994311 -0.025339 +0.00148661 0.108625 0.0426664 +-0.0327389 0.0482896 -0.0213368 +-0.0380117 0.0344553 0.0341354 +-0.072467 0.0968801 0.0405541 +0.0151781 0.0847217 0.0519158 +-0.0425055 0.108838 -0.0192163 +-0.00749309 0.114174 0.0409291 +-0.0434968 0.119301 0.0295385 +0.0363932 0.0476439 -0.00624826 +-0.079546 0.0719865 0.0195582 +-0.0564882 0.042714 0.0457133 +-0.0113851 0.0383094 0.011049 +-0.0865431 0.106355 0.0183534 +-0.0313759 0.0553098 -0.0143786 +0.0515215 0.0651377 0.0281771 +0.0253513 0.0605347 -0.0238887 +-0.0627683 0.164709 -0.0355885 +-0.0520878 0.0489475 0.0226481 +-0.0371717 0.165191 -0.0136726 +0.0421423 0.0738117 0.0292393 +0.0499661 0.0451421 0.0208878 +-0.0394943 0.116662 0.0325452 +-0.085625 0.079203 0.01151 +-0.0716025 0.135501 0.0492566 +-0.00270958 0.0391757 0.033738 +-0.0911953 0.143381 0.0241598 +0.0418026 0.102869 0.0141608 +-0.0319458 0.0708051 -0.0254622 +-0.0626184 0.145978 -0.00858061 +0.0207857 0.0994851 0.0460447 +0.0275851 0.114088 0.0330397 +-0.040502 0.120714 0.028794 +-0.0853944 0.101863 0.0264831 +0.00328879 0.0668715 -0.0332298 +-0.0446453 0.0577855 -0.0118043 +0.0188777 0.03558 -0.00867348 +-0.064488 0.156133 0.0221359 +-0.00921165 0.172686 -0.0275682 +-0.0426232 0.0362716 0.0437883 +-0.0246131 0.0422659 -0.0289978 +-0.0766564 0.0773474 -0.00857073 +0.0281325 0.121698 0.0129367 +-0.00471394 0.0641886 -0.0352179 +-0.0274456 0.0382197 0.0539829 +-0.0417615 0.03357 0.00191851 +-0.0596536 0.0350995 0.0445384 +-0.0458215 0.091313 -0.0218951 +-0.00569643 0.0599053 -0.0346867 +-0.0728066 0.087878 -0.0157134 +0.00467021 0.0347458 0.0211501 +-0.0369631 0.0341718 -0.0179086 +-0.0700564 0.162427 -0.0118963 +-0.0938276 0.126933 0.0242666 +-0.0207424 0.110014 -0.0205123 +0.00150816 0.0911296 0.0556681 +-0.00874857 0.0727984 -0.0375275 +-0.0679476 0.156599 -0.00385029 +-0.076928 0.152806 -0.00788984 +-0.0860408 0.109124 0.0103593 +-0.0514909 0.0544833 0.0216233 +-0.0756545 0.151363 -0.0148873 +0.0423862 0.047532 -0.00502925 +-0.0895419 0.0916017 0.0194388 +-0.014074 0.128231 0.00303832 +-0.0747094 0.155646 0.00979649 +-0.0931712 0.117411 0.0223074 +-0.0548599 0.145302 0.0295141 +-0.058163 0.0467738 0.0296766 +0.00351191 0.0459363 0.0483003 +-0.091423 0.144753 0.0241539 +0.0174632 0.0948293 0.047857 +-0.0326373 0.119597 -0.0104942 +0.0206219 0.119357 0.0335278 +-0.0174992 0.0897364 0.0558751 +-0.00978193 0.0784455 -0.0377778 +0.0236993 0.12332 0.00130956 +-0.0792974 0.15265 0.00222093 +-0.0444956 0.102933 0.0417949 +0.0152822 0.129138 0.0167187 +0.0467013 0.0718392 0.0195936 +-0.0883363 0.112382 0.0405773 +-0.0515091 0.105631 0.0400498 +0.00121056 0.115576 -0.018509 +-0.0525671 0.0335472 0.0123651 +-0.0285962 0.0377287 0.0207135 +0.0043328 0.0341303 0.00522853 +-0.0914252 0.114627 0.0103302 +-0.0231203 0.163764 -0.0160465 +-0.0077447 0.0698983 -0.036343 +-0.0650951 0.162442 -0.0187197 +-0.0652725 0.0613084 0.02088 +0.0455972 0.0415054 0.0160287 +-0.0554928 0.148133 0.0286364 +-0.0709153 0.113624 -0.0087498 +-0.0390311 0.160893 0.00133569 +-0.0669712 0.156006 0.0125516 +-0.0607902 0.0334775 -4.36679e-05 +-0.0634989 0.108392 0.0384413 +-0.0239757 0.0768012 0.0522149 +-0.0671254 0.128435 0.0486555 +-0.0368355 0.153629 0.00272174 +-0.0280768 0.169745 -0.00916431 +0.00750786 0.0518308 0.0519822 +0.017486 0.112589 0.0378808 +-0.0694907 0.0930374 0.0422024 +-0.0457991 0.0336321 0.00104877 +0.0385285 0.0901386 0.0347352 +0.0154693 0.0976312 0.0477084 +-0.0134564 0.0347657 0.0443699 +0.0132374 0.123205 -0.00876652 +0.0204758 0.0975716 0.0468126 +-0.0702558 0.152263 -0.0463745 +-0.0361586 0.0382819 -0.0067057 +0.0546048 0.0478149 0.0122009 +-0.0455357 0.120317 -0.0132441 +-0.00750778 0.0828941 0.0575015 +-0.0338576 0.0347656 0.029445 +-0.0195033 0.118175 0.0352728 +0.0125203 0.0616669 0.0514026 +-0.0196496 0.0582641 0.0484904 +0.0383367 0.0910432 -0.012345 +-0.00538883 0.122125 -0.0114557 +-0.075455 0.0675485 0.016865 +-0.0362517 0.123246 0.0257763 +-0.0815948 0.123081 0.0504133 +-0.00479304 0.130806 0.0179661 +-0.0776418 0.158287 -0.0219264 +-0.0484803 0.117974 0.0310954 +-0.0386541 0.126132 0.0204051 +-0.0786087 0.102098 0.0338163 +0.0464344 0.0792618 0.0111808 +0.0289709 0.0848578 0.043728 +-0.0184969 0.10579 0.0426906 +-0.0245528 0.116739 0.0335827 +-0.0754858 0.146995 0.0422823 +-0.0528151 0.132539 0.0323863 +-0.00781365 0.086863 -0.0372016 +0.0145549 0.126574 -0.00243153 +-0.0834735 0.076324 0.00852235 +-0.0597355 0.0752692 -0.0179534 +-0.0853298 0.111023 0.0405559 +-0.0515948 0.137023 0.025408 +-0.0693375 0.168152 -0.0246084 +-0.0781507 0.115089 0.0495991 +-0.0468723 0.0587675 0.0374438 +0.0193537 0.0349459 0.0257791 +0.0243371 0.123621 0.0229269 +-0.0907106 0.133758 0.0262122 +-0.0542023 0.0435162 0.019691 +-0.036169 0.0335901 -0.0284162 +0.0196024 0.0858351 -0.0269873 +0.0084996 0.0488213 0.0500608 +-0.0308481 0.0664794 -0.025463 +0.0262324 0.0775308 -0.0242027 +0.0470911 0.0422949 0.0155431 +0.0315748 0.0605586 0.0402762 +-0.0722147 0.149455 -0.0385736 +-0.0695516 0.170347 -0.0304219 +-0.0404175 0.171209 -0.00987004 +0.0299365 0.0350356 0.00770058 +-0.0466417 0.133657 0.014443 +0.0130913 0.0937889 -0.0272955 +-0.0579449 0.059547 -0.000261977 +-0.0285818 0.121272 -0.00825717 +-0.0713326 0.0345571 0.00760774 +-0.0666503 0.135429 0.0440071 +-0.0303959 0.0762676 -0.0335676 +-0.00385838 0.101641 -0.0231016 +-0.0679568 0.13115 -0.00879393 +0.00350598 0.0870278 0.056972 +-0.0248582 0.0752289 0.048914 +-0.0588955 0.0336882 0.0145047 +-0.0563129 0.159837 0.00207063 +-0.064096 0.14766 -0.0219948 +-0.00992774 0.110288 -0.021044 +-0.0709029 0.110786 -0.0101311 +4.37647e-05 0.0392736 0.0324137 +0.0144567 0.0617415 0.0506755 +-0.0304982 0.117934 0.0308066 +-0.0124153 0.129138 0.0195683 +-0.0045458 0.042944 0.0478735 +-0.078629 0.155228 0.0230232 +-0.0793587 0.143462 0.044583 +-0.011946 0.163588 -0.0146751 +-0.0489654 0.138607 0.014392 +0.0130851 0.034266 -0.0137357 +0.0405023 0.0484755 0.0322215 +-0.0440255 0.0336276 -0.0225259 +-0.0185094 0.114097 0.0385959 +-0.0708508 0.173984 -0.0409178 +-0.0698895 0.170875 -0.0319754 +-0.0268752 0.105825 -0.0224483 +-0.0921157 0.118792 0.0303066 +-0.0715954 0.155396 -0.0419127 +0.0239203 0.108291 -0.0147313 +-0.0163998 0.119263 -0.0123023 +-0.0327198 0.0652554 -0.0184496 +0.0457714 0.0848094 0.0151676 +-0.062838 0.15526 0.00677387 +-0.0562712 0.146757 0.030967 +-0.00723161 0.0381024 0.0489495 +0.0208841 0.115302 0.0356376 +-0.0311112 0.162246 -0.0146263 +-0.0185025 0.0757876 0.0552584 +0.0369413 0.0993952 0.0325229 +-0.0597781 0.0668249 0.0348598 +-0.0676678 0.0697151 0.0342008 +-0.00507021 0.128586 -0.00238902 +0.035697 0.096801 0.0360155 +0.0179331 0.121039 -0.00844165 +0.00149286 0.100277 0.0469858 +0.0132581 0.0348304 0.0408908 +-0.0746487 0.0760382 -0.00984365 +-0.076866 0.0994719 0.0363813 +-0.00904748 0.0388121 -0.00544357 +-0.0378518 0.0985762 -0.0221892 +-0.0494929 0.0804959 0.044039 +0.0288964 0.120556 0.0189249 +0.0252898 0.0704815 -0.0246106 +-0.0831283 0.107448 0.000408412 +-0.0465019 0.129507 0.0239285 +-0.056621 0.0562362 0.00665228 +-0.00564116 0.0481924 -0.0303539 +-0.0944779 0.122838 0.0232837 +-0.0876178 0.105003 0.0113725 +0.0221833 0.125827 0.00929485 +-0.0376403 0.0562958 -0.0110081 +-0.027315 0.119916 0.0290701 +0.0347431 0.103404 0.0328426 +0.0317883 0.117354 0.00287906 +0.0203254 0.040014 -0.0146997 +-0.0780017 0.150056 -0.00287894 +-0.0106261 0.0451108 -0.0281505 +-0.0729498 0.156259 0.0191473 +0.0393029 0.10195 0.0270711 +0.0182702 0.0422045 0.0436952 +-0.0802626 0.147413 0.0397079 +-0.00132352 0.0966684 -0.0303753 +-0.015259 0.0984512 0.0471298 +0.0451952 0.0433405 0.023507 +-0.0438866 0.108471 -0.0191595 +-0.0159384 0.124168 -0.00545234 +-0.0654957 0.105611 0.0395613 +-0.0904683 0.135081 0.0142287 +0.025208 0.0874192 -0.0236148 +0.0366057 0.0954909 0.0355184 +-0.0887482 0.102363 0.0163794 +0.00249078 0.115545 0.0403845 +-0.0778809 0.0759658 0.0302027 +-0.045814 0.0898818 -0.0220292 +0.0125705 0.0658518 0.0532694 +-0.00597277 0.130385 0.0204408 +-0.0581881 0.125521 0.0404357 +-0.0307415 0.0374976 -0.017878 +-0.0742647 0.109022 0.03931 +0.0186443 0.123322 -0.00490878 +-0.0769902 0.154182 -0.00989517 +0.0130083 0.0956231 -0.0252421 +0.00953036 0.10442 0.0445691 +0.0186389 0.0520546 0.0461071 +-0.0463977 0.0397105 -0.0152844 +0.0444376 0.0959725 0.0121619 +-0.0216077 0.0350207 0.0511065 +0.0463433 0.054773 -0.00593764 +-0.0875696 0.115156 0.045661 +-0.00311195 0.130927 0.00709886 +-0.0627873 0.0335028 0.00493012 +-0.0894432 0.151569 0.0164701 +-0.0668923 0.109473 -0.0126504 +-0.053788 0.0854855 -0.0214384 +-0.00382944 0.108004 -0.0223654 +-0.0447162 0.0448943 -0.0112435 +0.0262334 0.121101 0.000829633 +0.0206734 0.0795401 0.0510479 +-0.0434655 0.127159 0.0186744 +-0.0273746 0.181651 -0.00921581 +-0.0045009 0.116806 -0.0157814 +-0.0529179 0.162663 -0.000927718 +0.0278575 0.109692 -0.0122334 +0.0114621 0.125412 0.0310862 +-0.055877 0.0984248 -0.0207921 +-0.0649536 0.0595166 0.0136311 +-0.0899789 0.116378 0.0441376 +-0.0344621 0.154617 -0.00886992 +-0.0641249 0.156393 -0.0431197 +0.0264267 0.0824949 -0.0235141 +-0.0699148 0.109401 -0.011164 +-0.0645122 0.0398643 -0.00676714 +-0.0927009 0.117475 0.0353038 +0.00812049 0.107282 -0.0201059 +0.0344124 0.0957227 -0.013333 +-0.0617126 0.170956 -0.0545977 +-0.0888439 0.150092 0.0112242 +-0.0600859 0.0421217 0.0440266 +-0.0535039 0.0805657 0.0446207 +0.00913683 0.0873343 0.0554698 +0.0318118 0.100781 0.0373962 +-0.0366211 0.124122 -0.00724685 +0.0255511 0.0463382 0.0384325 +-0.00473212 0.0386351 0.0247855 +-0.0857334 0.153425 0.016223 +3.04988e-05 0.11432 -0.019028 +-0.0622192 0.17721 -0.0606003 +-0.00533435 0.0930519 -0.0346806 +-0.0578363 0.0912193 -0.0212351 +-0.051575 0.132941 -0.0025104 +-0.0215094 0.0983521 -0.0242621 +-0.0663625 0.141125 0.0427387 +0.0411659 0.0952708 0.0280268 +-0.053497 0.0945663 0.0438533 +-0.0745177 0.171112 -0.0322615 +-0.0779361 0.129573 -0.00656407 +-0.0437814 0.0840812 -0.0212189 +0.00326914 0.0682665 -0.0330635 +-0.0739332 0.177709 -0.0464055 +0.0528574 0.0622185 0.0288955 +-0.0365021 0.101484 0.0413625 +-0.0445836 0.0476428 -0.0105653 +-0.0194973 0.101611 0.0435898 +-0.0137239 0.16215 -0.0118322 +-0.0287184 0.0806953 0.0455388 +-0.0933646 0.117392 0.0153085 +-0.0867701 0.113047 0.00428618 +-0.0052769 0.0941788 -0.0338289 +0.0134806 0.0976663 0.0482444 +-0.08743 0.111796 0.0214228 +0.00133097 0.0626915 -0.0339607 +0.0447988 0.0903457 0.000177034 +0.00183354 0.10009 0.0472603 +-0.0323685 0.0497273 -0.0163483 +-0.0848994 0.144621 0.00617242 +-0.0707871 0.0625817 0.00788057 +-0.0334706 0.0589721 0.0386927 +0.0458044 0.0834139 0.0161713 +-0.0638595 0.159101 -0.0532849 +-0.0169095 0.0379753 -0.0273392 +-0.0683614 0.15578 0.00913576 +-0.0841262 0.110345 0.0263651 +-0.0629048 0.1054 -0.0169977 +-0.00482937 0.038542 0.00854039 +0.00442082 0.039258 0.029719 +0.0287437 0.0416628 0.0306503 +-0.0480218 0.144366 0.00442748 +-0.0718881 0.109321 -0.0102252 +-0.0623027 0.153756 -0.0145815 +0.0312054 0.104936 -0.0131412 +-0.0502712 0.143189 0.0133798 +-0.0679015 0.120916 -0.00896008 +-0.0325574 0.126601 0.00788172 +0.00400981 0.0391328 0.0279405 +-0.0790033 0.16525 -0.0329555 +-0.0464892 0.117969 0.0304809 +-0.0171987 0.127433 0.00332106 +-0.0589607 0.145338 0.0340833 +-0.00576935 0.0346302 0.0443351 +-0.0894143 0.118584 0.00330542 +-0.0494955 0.0890237 0.0451636 +-0.0395958 0.118487 -0.0133369 +0.0256371 0.0346096 0.00722464 +0.0101261 0.0846794 0.0551401 +-0.000640169 0.0481947 -0.0300913 +0.00652044 0.0799801 0.0556018 +-0.0485004 0.157854 0.0090451 +-0.0674788 0.153589 0.0328337 +-0.0246191 0.0436702 -0.0286423 +-0.0380903 0.041957 -0.0274154 +-0.0592055 0.155872 0.0109493 +-0.0158317 0.0382446 0.00839116 +-0.0862834 0.141953 0.0402325 +-0.0178783 0.0381567 0.0189161 +-0.00165332 0.0511407 -0.0309868 +-0.0515122 0.0598238 0.030703 +0.0226361 0.118891 -0.00814073 +0.0433138 0.0902166 -0.00378785 +-0.0339799 0.0384942 -0.0120095 +-0.0424937 0.0748068 0.0427898 +-0.0640892 0.172567 -0.049571 +0.037431 0.0794424 0.0366005 +0.041759 0.0432404 0.0265421 +-0.0923571 0.121517 0.0426088 +0.0562687 0.0726263 0.0113628 +0.024692 0.100819 0.0429025 +-0.0729148 0.110726 -0.0089954 +-0.0295018 0.159581 0.00108834 +-0.0672997 0.0435653 0.00884843 +0.0172829 0.0651656 -0.0289948 +-0.0585687 0.0340745 0.0248573 +0.0320945 0.113613 -0.00441584 +-0.0726455 0.0655594 0.00286688 +0.0223162 0.0649555 -0.0263733 +-0.0636659 0.0691264 -0.011804 +-0.0495225 0.143222 0.00950726 +-0.0396922 0.156587 0.00568688 +0.00749975 0.089676 0.055015 +0.0495971 0.0465817 0.0239661 +-0.0390578 0.156263 -0.0100859 +-0.0708823 0.172457 -0.0366471 +0.0126883 0.0343606 -0.00448368 +-0.0454899 0.0690197 0.0407796 +-0.0413446 0.0335325 -0.0237744 +-0.0404379 0.124957 -0.00812413 +0.0440209 0.0945174 0.0011806 +-0.0627245 0.073729 -0.0165415 +-0.0286056 0.0475856 -0.0255224 +-0.0495036 0.153584 0.0107879 +-0.0896132 0.139307 0.0341845 +0.030074 0.119769 0.00796635 +-0.0517393 0.0517191 0.022632 +-0.023961 0.0723529 0.0481115 +-0.0309909 0.0384268 -0.00579914 +-0.00634516 0.0379873 -0.0153566 +-0.0547761 0.0333427 -0.00414144 +0.00202824 0.108029 -0.0204102 +0.0450661 0.0761937 0.0228711 +-0.084679 0.0869987 0.027663 +-0.0219636 0.0681726 0.0490783 +0.0226059 0.0375679 0.034289 +-0.0518654 0.101358 -0.0214215 +-0.0919525 0.126983 0.0392569 +-0.0663498 0.172859 -0.0450539 +0.00551307 0.0856288 0.0568655 +-0.0269831 0.0381412 0.0278748 +0.0430768 0.0411155 0.00329204 +0.0317014 0.117733 0.0199863 +-0.0326228 0.0506668 -0.0115219 +-0.0760639 0.155862 0.0136886 +-0.0581543 0.0337417 0.0181646 +0.0454926 0.0875897 0.015162 +-0.0197923 0.038435 -0.00354579 +-0.0461288 0.15913 -0.00829043 +-0.0235066 0.108523 0.0406075 +0.015525 0.127932 0.00115163 +0.00251501 0.0814623 0.0569927 +-0.0485603 0.131756 0.000870882 +-0.0909462 0.11476 0.0333322 +0.038369 0.0884214 -0.0137726 +0.0179084 0.127905 0.00771503 +0.0457915 0.0862101 0.0121678 +-0.0310416 0.0763051 -0.0325503 +-0.0584963 0.0946188 0.0448266 +-0.00142898 0.112626 -0.0193593 +0.0537506 0.0519895 0.000247391 +-0.00249736 0.0978288 0.0524276 +0.0474285 0.0692644 0.00256538 +-0.0157146 0.17719 -0.0193767 +-0.0688721 0.0369953 0.0119906 +0.0262296 0.0888085 -0.0227773 +-0.0876687 0.0981895 0.00443327 +-0.0435601 0.129686 0.00973169 +-0.0620348 0.146024 -0.00560988 +0.0228232 0.123119 -0.000681491 +0.0192101 0.0791931 -0.0277308 +-0.0285078 0.0348913 0.0463089 +-0.0295006 0.116619 0.032366 +0.00540344 0.040445 -0.0238712 +-0.0861937 0.0819823 0.0184808 +-0.0691313 0.170851 -0.0540166 +0.0232722 0.0691857 -0.0260989 +0.0346775 0.106404 -0.00868031 +-0.0626839 0.154165 0.00249175 +0.0203005 0.047637 0.041402 +0.0426083 0.0915862 -0.00481093 +-0.00121535 0.0394284 0.0356173 +-0.0290126 0.0606872 -0.0244213 +-0.0522249 0.152155 0.0138449 +0.0278367 0.0781921 0.0455692 +-0.0782715 0.168666 -0.0333616 +-0.0631194 0.0357147 0.0189543 +0.00237959 0.0976208 -0.0273765 +-0.0327796 0.0736593 -0.0265049 +-0.0590695 0.143884 0.0338908 +-0.0366032 0.0407784 -0.0289892 +-0.0564911 0.0400264 0.0468768 +-0.0891224 0.133627 0.00423095 +-0.00349883 0.095211 0.054715 +-0.0365564 0.0488017 -0.0133944 +-0.063603 0.0406323 0.0405017 +0.00388987 0.0987683 0.0495103 +-0.0341448 0.166698 -0.0152744 +0.0422984 0.0789118 -0.00576754 +-0.0821777 0.153468 0.0263012 +-0.0618022 0.0852922 -0.0192956 +-0.0825795 0.0937805 -0.00656944 +0.0526059 0.0476644 0.00422036 +-0.0617323 0.155315 -0.018581 +-0.0646798 0.158592 -0.0555006 +-0.0400438 0.127998 0.000725921 +-0.020826 0.0882193 -0.0372663 +-0.072774 0.083565 -0.0157894 +-0.0301375 0.0592681 -0.0204197 +0.053852 0.0700236 0.0237561 +-0.0192952 0.097132 0.0469462 +-0.0379042 0.0350553 0.0424096 +-0.0779467 0.170107 -0.0351609 +-0.0731753 0.162423 -0.0379582 +0.0293531 0.117442 -0.00254348 +0.00923639 0.0753581 -0.0333366 +-0.00523048 0.0381888 0.0482681 +0.0281109 0.0477624 0.0368744 +-0.00549683 0.095262 0.0547887 +0.016279 0.127286 0.0242335 +-0.000357095 0.0346671 0.0418309 +-0.0903031 0.113239 0.0103302 +-0.0435085 0.165227 0.00470373 +-0.000629686 0.0466337 -0.0288231 +-0.00267903 0.0583624 -0.0332032 +-0.0354553 0.163829 -0.00227816 +0.0329891 0.10525 -0.0114692 +-0.0511234 0.159083 -0.0045978 +-0.0738697 0.0672451 0.0209913 +-0.0513379 0.0345855 0.00988953 +0.0449495 0.041538 0.0177108 +0.0131716 0.128382 0.0245166 +-0.0119302 0.0975527 -0.0293786 +-0.0796395 0.11488 0.0476725 +-0.00554666 0.0429634 0.0481135 +0.0336755 0.115893 0.0150272 +-0.0865455 0.109036 0.0123603 +-0.0583287 0.0597422 0.0219213 +0.00142185 0.0361564 -0.0243567 +-0.0249379 0.182957 -0.0150514 +-0.00456935 0.0511652 -0.031379 +0.00983853 0.130485 0.0204326 +-0.020719 0.0739658 0.0533053 +-0.0922608 0.117447 0.0323019 +-0.0687753 0.15954 -0.0529632 +0.00943169 0.130854 0.0188531 +-0.0463671 0.133058 0.0160254 +0.0403868 0.0966272 0.0286723 +-0.0374342 0.125294 0.0223398 +-0.0254349 0.121225 -0.00822483 +-0.0287913 0.121291 0.025511 +-0.0275751 0.181449 -0.0130337 +-0.0292637 0.0364551 -0.0300736 +0.0333063 0.076755 -0.0177777 +-0.00838403 0.100228 -0.0241757 +-0.0917675 0.126924 0.040336 +0.0460105 0.0848241 0.0111686 +-0.0458316 0.03478 0.00723173 +0.0337176 0.0655129 -0.0167917 +-0.0900318 0.128311 0.0429434 +0.00340705 0.0404653 -0.0241388 +-0.0445167 0.0334752 0.00325528 +-0.0417025 0.170926 -0.000183345 +-0.0667272 0.0750614 -0.0156487 +-0.075008 0.0665773 0.0124915 +-0.0256788 0.0387085 -0.0161237 +0.0433708 0.0459415 -0.00338184 +-0.0333944 0.0420411 -0.0295771 +-0.0366574 0.173333 -0.0118804 +0.0279341 0.0376089 0.0251213 +-0.0591944 0.0589798 0.00447595 +-0.0117173 0.0642717 -0.0365887 +0.0284258 0.044601 -0.00619231 +0.0407559 0.0844033 -0.0107694 +-0.0149445 0.0386028 -0.00457425 +-0.0666364 0.150881 -0.0385507 +-0.0441588 0.156514 0.00623469 +-0.0338796 0.174703 -0.0134692 +-0.0700283 0.075334 0.0376711 +-0.0144851 0.120961 0.0347298 +-0.0394983 0.0690894 0.041721 +-0.0820593 0.0748753 0.013529 +-0.0262192 0.162456 -0.00472466 +-0.0573804 0.151726 0.0319973 +0.0238729 0.0463312 0.0395213 +-0.00887703 0.0985896 0.0509585 +-0.00180856 0.0881831 -0.0355551 +-0.0435257 0.128183 0.0171556 +-0.0137851 0.096091 -0.0318323 +-0.0776083 0.0770893 -0.00760024 +0.0515137 0.0637653 0.0289012 +0.0459041 0.087617 0.00917007 +-0.0946685 0.124165 0.0192665 +-0.0424078 0.0392874 -0.0253255 +0.0574465 0.0566575 0.0231489 +-0.0705315 0.0915903 0.0419348 +-0.062769 0.175495 -0.0615699 +-0.0614063 0.0419532 -0.0067475 +0.0222874 0.0635154 -0.025946 +-0.0325454 0.0624467 -0.016419 +0.0406665 0.105637 0.00516291 +0.00508145 0.125851 -0.00757191 +-0.0743566 0.148587 -0.0198592 +0.028537 0.0506236 0.0375191 +0.00550651 0.0897139 0.0554063 +-0.0165465 0.061194 0.0523676 +-0.0548344 0.113627 -0.016162 +-0.078421 0.120421 0.0514142 +0.0224472 0.0375897 0.0352799 +-0.0558038 0.116914 0.0367748 +0.0399293 0.104183 0.0231644 +0.00793957 0.0368635 -0.0077325 +-0.053287 0.119647 -0.012449 +0.0226022 0.1018 -0.0197774 +-0.0735157 0.102656 0.0375574 +-0.0544964 0.10974 0.0378742 +-0.0351154 0.127437 0.0128308 +-0.0759568 0.136911 -0.00615991 +-0.0228623 0.06956 0.0485197 +-0.00937118 0.0387712 0.0309279 +-0.0858362 0.103636 0.0243714 +-0.0777036 0.174395 -0.0426027 +0.0605358 0.0664822 0.0111446 +-0.0456637 0.0382067 -0.0202858 +-0.0494922 0.0833478 0.0446801 +-0.0717916 0.0893503 -0.0160567 +-0.0654224 0.156324 0.0217941 +0.0104303 0.128801 -0.000781749 +-0.0640931 0.122778 0.0478095 +0.012373 0.0343732 -0.00643255 +-0.00549358 0.0898053 0.0568842 +-0.0544984 0.0973596 0.0432594 +-0.0430782 0.154691 -0.00814248 +-0.058643 0.155634 0.0155202 +-0.0309118 0.10664 -0.0209245 +-0.0117675 0.0728437 -0.0380964 +-0.0685186 0.1456 0.0424246 +0.0168366 0.113017 -0.0157876 +-0.0567451 0.0768007 -0.0192338 +-0.0905785 0.121592 0.0451008 +-0.0564995 0.0889847 0.0448198 +-0.062649 0.164698 -0.0365908 +-0.0414211 0.0344456 0.0316667 +0.0235849 0.102638 -0.0186769 +0.0208761 0.115613 -0.0126037 +0.00135548 0.0496637 -0.030356 +0.0172645 0.0713208 0.051333 +0.0277553 0.0619298 0.0435605 +-0.0388696 0.105647 -0.0202518 +0.002402 0.041908 -0.0243037 +-0.00348806 0.11693 0.0398821 +-0.094215 0.120106 0.0172864 +-0.075338 0.161792 -0.0134783 +-0.0313944 0.0721215 -0.0285061 +-0.076236 0.178558 -0.0487103 +-0.0516597 0.0416063 0.0458402 +-0.0191702 0.169734 -0.0206461 +-0.0458479 0.0999438 -0.0215809 +-0.0608063 0.0939347 -0.0190005 +-0.0831639 0.108847 0.00132792 +0.0449523 0.0945963 0.00616781 +-0.089716 0.139255 0.0241831 +-0.0241715 0.165363 -0.00880477 +-0.0808978 0.121685 0.0496566 +-0.0776757 0.0873848 0.0375611 +-0.0575877 0.0343902 0.0335477 +0.0293569 0.0808765 0.0442663 +-0.0413959 0.1089 -0.0192706 +-0.0486555 0.0606014 -0.0118523 +-0.0263871 0.06465 -0.0314802 +-0.0479423 0.118344 0.0305757 +0.0368905 0.10997 0.023344 +0.00465961 0.0959425 -0.0295932 +-0.00250198 0.0647948 0.0567081 +0.0155008 0.0345049 -0.00593057 +-0.0414998 0.0944525 0.0421484 +-0.0425159 0.17187 -0.00332083 +-0.00662603 0.045146 -0.0285621 +-0.0728992 0.107873 -0.010241 +0.0162924 0.0680403 -0.0298148 +-0.058126 0.0494622 0.00265482 +-0.049929 0.0335244 -0.00515732 +-0.0592138 0.116352 -0.0129282 +-0.0876027 0.103683 0.0193632 +-0.0661658 0.170967 -0.0590604 +-0.00423283 0.0951855 -0.0328472 +-0.056711 0.153132 0.0293166 +0.0299135 0.0618945 0.0413957 +-0.0754312 0.179188 -0.0498593 +-0.0890756 0.0982905 0.00941744 +-0.0313333 0.114057 -0.0167329 +-0.0336201 0.0505969 -0.0107597 +0.0152428 0.0807565 -0.0298514 +0.000144172 0.129559 0.0255502 +-0.0166332 0.101644 -0.0236856 +0.0112856 0.0666869 -0.0306751 +-0.0719068 0.110755 -0.00961867 +-0.056773 0.082629 -0.0212703 +0.0224949 0.112674 0.0362232 +0.00494458 0.0356784 0.0456125 +-0.0401622 0.123949 0.0243503 +-0.0494029 0.0516267 0.0356191 +-0.000148869 0.0998138 -0.0237113 +-0.0494252 0.12902 -0.00225187 +-0.0351127 0.162221 -0.0139882 +-0.0801061 0.109977 -0.00253557 +-0.0583279 0.116979 0.0383609 +0.0214316 0.0768422 0.0503677 +-0.0637593 0.0357681 0.0182478 +-0.0679574 0.176267 -0.0485208 +-0.0466544 0.0636155 -0.0134601 +-0.018198 0.0896163 -0.0372798 +-0.0675078 0.167827 -0.0267933 +-0.0891218 0.136568 0.0391914 +-0.00634438 0.0961732 -0.0318818 +-0.0509131 0.144221 0.000402933 +0.020479 0.0822082 0.0508036 +0.0382522 0.0617095 -0.0097618 +0.0414447 0.0957847 0.0271584 +0.0495191 0.0624602 0.0299628 +-0.0525648 0.0515684 -0.00660684 +-0.0507038 0.0543653 0.0186143 +-0.0678764 0.117979 -0.00873338 +-0.0833731 0.0803286 0.00149951 +-0.0102345 0.169322 -0.0249254 +0.0161585 0.128774 0.0170439 +-0.0495011 0.0439447 0.0438293 +-0.0308936 0.0901442 -0.0248987 +-0.0380826 0.159224 -0.0120325 +-0.0684954 0.121776 0.0527683 +-0.0237994 0.178657 -0.0117033 +0.022476 0.125337 0.020807 +-0.0131867 0.0392232 0.050872 +-0.0828365 0.116201 -0.00217327 +-0.0792107 0.0760132 0.0281283 +-0.0418712 0.105657 -0.0205306 +-0.0265289 0.11806 0.03154 +-0.0485021 0.104259 0.0404773 +-0.0515007 0.164119 0.00202375 +-0.0628742 0.175671 -0.0555946 +-0.0385777 0.1595 0.00203018 +-0.0410438 0.162368 0.00371458 +-0.0683486 0.124257 0.0521552 +0.0311264 0.0469699 -0.00653546 +-0.0346775 0.127387 0.0115177 +0.0256926 0.105619 -0.0158649 +-0.0656817 0.0705232 -0.0118151 +-0.0889612 0.111861 0.0183359 +-0.027486 0.0646029 0.0384895 +0.0307322 0.108762 0.0340805 +-0.0647018 0.172123 -0.0473675 +-0.0914367 0.114681 0.021315 +-0.00481581 0.0882239 -0.0361964 +-0.0229882 0.0386094 0.0318708 +-0.0164825 0.0530314 0.0497852 +0.031763 0.0653471 -0.018741 +0.0313568 0.052068 0.0363454 +-0.0937998 0.118753 0.0153042 +-0.0460733 0.0336746 -0.01741 +0.00639772 0.0911374 -0.0325899 +-0.0665077 0.105605 0.0392145 +-0.037944 0.165312 0.00115508 +-0.0447719 0.0826286 -0.0206706 +0.015216 0.0849668 -0.0295884 +-0.00949197 0.121025 0.0361236 +-0.0728889 0.159628 -0.0359308 +-0.0212527 0.0696869 0.051144 +-0.0609844 0.0646638 0.031213 +-0.0787829 0.0926997 0.035689 +0.0098313 0.0644618 0.0545535 +-0.0435636 0.0476726 -0.0110362 +0.00292266 0.0383702 -0.00263564 +-0.0294982 0.0674485 0.03887 +-0.0594483 0.0590098 0.0188119 +-0.0331272 0.0335545 -0.0277881 +-0.0654135 0.17638 -0.0519366 +0.0381247 0.0827831 -0.0147803 +0.0274189 0.0834776 -0.02246 +-0.0754296 0.152593 -0.0138871 +-0.0626337 0.149615 -0.00617193 +0.0395378 0.100622 0.0273876 +-0.00317446 0.0951663 -0.0328247 +0.0284436 0.0721192 -0.0227379 +0.0256796 0.0353829 0.0212256 +-0.0100479 0.0388486 -0.00567581 +-0.0815042 0.149744 0.0353513 +0.0569923 0.0508892 0.0171854 +-0.0844404 0.100576 0.0283951 +-0.066663 0.0704664 -0.0109078 +0.011503 0.108488 0.0403225 +0.0346003 0.059954 -0.013776 +-0.00350072 0.0828956 0.0574459 +-0.0308908 0.0524482 -0.0143777 +0.0220365 0.0430228 -0.0147268 +-0.0499219 0.0558508 0.0334877 +-0.0315001 0.070354 0.040029 +0.0121741 0.0780107 0.0545179 +-0.040483 0.0423569 0.0419938 +-0.0438782 0.0343145 0.0294954 +-0.0243712 0.122748 0.0255975 +-0.013279 0.101966 -0.0239644 +-0.0635872 0.0445618 0.0346899 +-0.09116 0.146144 0.0251605 +0.0191385 0.125192 -0.000918824 +0.0439709 0.0776452 -0.00278508 +-0.034376 0.0448305 0.0451875 +-0.0292764 0.0508797 -0.0213979 +-0.0586802 0.148237 0.034554 +-0.0830867 0.0803012 0.027553 +0.0470243 0.0458757 -0.000608958 +-0.0124544 0.125711 -0.00519106 +-0.0316347 0.0511137 -0.0133654 +-0.0495769 0.126877 0.0317874 +0.0446953 0.0861142 -0.000824781 +-0.0164935 0.0744329 0.0555937 +-0.07397 0.135486 -0.00709777 +-0.0388049 0.0885478 -0.0231132 +-0.0738057 0.149865 -0.0338746 +-0.0612039 0.0347997 0.0427656 +-0.0248108 0.064983 0.0421327 +-0.0374965 0.120729 0.0294163 +-0.0773599 0.0940895 0.0370488 +-0.0221316 0.122996 0.0264112 +-0.0656835 0.180548 -0.0590311 +-0.0654403 0.114174 0.0440564 +-0.0576422 0.035457 -0.0105994 +0.0063341 0.0539359 -0.0303914 +-0.0624964 0.108382 0.0385383 +0.000507196 0.0474213 0.049671 +-0.0768403 0.0682209 0.0124564 +-0.0177152 0.0613627 -0.0358053 +-0.0708829 0.156323 0.0169624 +-0.0801272 0.0895173 -0.00861746 +-0.0681398 0.156014 0.0252192 +-0.0643944 0.0418449 0.0286723 +-0.0223108 0.122995 -0.00618559 +-0.0332179 0.0347336 0.0278325 +-0.0494838 0.129682 0.0301574 +-0.0874269 0.111566 0.0378689 +0.0078939 0.0373631 -0.01008 +-0.0556091 0.0372359 0.0469697 +-0.0495471 0.140136 0.00640196 +-0.0721891 0.0696552 -0.00460695 +-0.0645108 0.135348 0.0400634 +-0.00963836 0.0466527 -0.0295963 +-0.00450177 0.0856564 0.0572774 +-0.0726963 0.163825 -0.0409661 +-0.0831522 0.148677 0.0355101 +-0.0045943 0.109577 -0.0220661 +-0.0700292 0.14319 -0.0126949 +0.0170086 0.0672594 0.0509139 +-0.0184932 0.0842766 0.0574008 +0.0333985 0.0809938 -0.0187374 +-0.00658339 0.116828 -0.0157946 +-0.0830307 0.110356 0.0344756 +-0.0164574 0.11955 0.0353527 +-0.0437556 0.0335262 -0.0205177 +-0.0196754 0.180147 -0.0162801 +0.00748686 0.0427091 0.0452774 +0.047238 0.0525837 0.0312359 +-0.00150012 0.0842876 0.0575029 +-0.0647611 0.154265 0.00245101 +0.0385227 0.108358 0.00315989 +0.00616601 0.0343841 0.0199712 +0.0190967 0.127602 0.0138576 +0.0232916 0.104676 0.0408599 +-0.0209519 0.121676 -0.0087885 +-0.000475449 0.077417 0.0583222 +-0.0340577 0.0344858 -0.0194842 +-0.0449113 0.0342791 0.0293115 +-0.02963 0.125357 0.0045818 +-0.0442513 0.120873 0.0273959 +0.0233607 0.0713858 0.0478141 +0.0294074 0.0974659 -0.0171759 +-0.0251322 0.110719 -0.0192347 +-0.0168318 0.0883012 -0.0380546 +-0.0537516 0.078251 -0.0196488 +-0.0617185 0.155298 -0.026582 +0.0182327 0.0369462 -0.015679 +0.0204347 0.103384 0.043762 +-0.0271652 0.177189 -0.00775302 +-0.078183 0.161072 -0.0259393 +-0.000994284 0.0346324 -0.0168306 +-0.0369077 0.0407733 0.0449918 +-0.0117377 0.0685356 -0.0370961 +-0.0520176 0.136681 0.0271356 +-0.0244827 0.044849 0.0526821 +0.0122811 0.0490196 0.0473922 +-0.0310488 0.126128 0.0128475 +-0.0612252 0.0618413 0.0248018 +0.0110023 0.0872551 0.0546654 +0.0137177 0.0926941 0.0515916 +-0.050909 0.135812 0.0260882 +-0.0514988 0.090386 0.0447021 +-0.0776802 0.121779 0.0520726 +-0.0435045 0.0492094 0.0395536 +0.0427867 0.0445146 0.027427 +-0.0124587 0.0716774 0.0554083 +-0.0903482 0.115904 0.00630147 +-0.0676703 0.159658 -0.00956407 +-0.0534975 0.100135 0.0423919 +0.0299608 0.102103 0.0382304 +-0.0275896 0.0398384 -0.0294326 +-0.0354902 0.0576195 0.0391492 +-0.0365293 0.120277 -0.0112077 +0.000101878 0.111584 -0.0199068 +-0.0568115 0.11798 -0.012657 +-0.0134078 0.0383017 0.0160824 +-0.078485 0.131655 0.0526796 +-0.0630792 0.17626 -0.0613621 +0.00219436 0.0880897 -0.0340427 +-0.00664745 0.0511524 -0.0316637 +-0.0221856 0.122325 -0.00745001 +0.0517581 0.0684217 0.00143507 +-0.0206221 0.0450432 -0.0278804 +-0.0187788 0.181486 -0.0239544 +-0.0435029 0.119128 -0.0140097 +-0.0368374 0.0957548 -0.023046 +0.0360094 0.105316 -0.00780471 +-0.0310017 0.0339922 0.010953 +0.0468601 0.0467385 0.0270828 +-0.0800669 0.107282 -0.00460113 +0.0161405 0.0847501 0.0515574 +-0.0726437 0.152619 -0.0388965 +-0.030372 0.124909 0.019004 +-0.0532086 0.0387959 0.0470712 +-0.00947284 0.0717726 0.0568611 +-0.0417517 0.0449058 -0.0193246 +-0.0324319 0.159505 0.00208324 +-0.064273 0.0404086 0.0266782 +-0.0456914 0.0665681 -0.0150523 +-0.0317955 0.0901023 -0.0248195 +-0.0901544 0.148798 0.0121684 +-0.0448181 0.0898814 -0.0220536 +-0.00651 0.0385696 0.00453582 +-0.0505409 0.146308 0.012527 +-0.0736443 0.148637 -0.0247496 +0.0362923 0.0826461 -0.0167222 +-0.0582688 0.0380855 0.0465946 +0.0420736 0.0957824 -0.00279849 +0.059075 0.0677442 0.0201625 +-0.0118076 0.166362 -0.0213381 +-0.0293882 0.0593157 -0.02241 +-0.00750084 0.0688979 0.0559719 +-0.0834808 0.0763288 0.0055122 +0.0455463 0.0847945 0.0181695 +-0.0853379 0.139291 0.0436042 +-0.0127384 0.0714338 -0.0383051 +0.0288553 0.119043 0.000370228 +0.0382387 0.108322 0.00216703 +-0.0854254 0.147285 0.0350057 +-0.0290239 0.0918566 -0.0266024 +-0.089435 0.0996945 0.016394 +-0.0250572 0.0379934 0.0230062 +-0.0659224 0.108105 -0.0137141 +-0.0197383 0.064191 -0.0362126 +0.0332406 0.0828224 -0.0189128 +-0.050463 0.0627793 0.0338697 +-0.00332118 0.0928352 -0.0344367 +-0.0351624 0.0344214 0.0133327 +0.0337894 0.103744 -0.0118635 +-0.0685313 0.0435239 0.00368786 +-0.0915175 0.140609 0.0191776 +-0.0763247 0.0679089 0.0110614 +-0.0293662 0.0904135 -0.0285737 +-0.0268485 0.0931277 -0.028596 +-0.0493167 0.137038 0.00442458 +-0.0607789 0.121227 0.0419471 +-0.0167795 0.0984818 0.0458118 +-0.0218018 0.0947992 -0.0305488 +-0.0933659 0.118725 0.0133024 +-0.0263107 0.0780916 0.0488984 +-0.0689525 0.144454 -0.0174142 +-0.0698503 0.0980241 -0.015524 +0.0377251 0.0602627 -0.00973714 +-0.0616079 0.160003 -0.0285892 +-0.00362249 0.0451016 -0.0279234 +-0.0658161 0.0866791 -0.018673 +-0.0898976 0.132262 0.00523931 +-0.014426 0.0383347 0.0104075 +-0.0891789 0.14342 0.0311627 +-0.0516305 0.0633366 -0.0105425 +0.0421385 0.102872 0.00916356 +-0.073056 0.163825 -0.0399663 +0.0142799 0.0695538 -0.0310885 +-0.0191804 0.172724 -0.0156293 +-0.0111853 0.109046 -0.0214904 +-6.48961e-05 0.130222 0.00105503 +-0.037907 0.0368934 -0.0113278 +-0.0778791 0.116346 -0.00545689 +-0.0353032 0.042242 0.0460623 +-0.0732356 0.176411 -0.0530886 +0.0601048 0.0608967 0.00715985 +-0.052965 0.0595916 0.0265588 +-0.0564973 0.0762116 0.0428205 +-0.034872 0.104274 -0.0209307 +-0.058681 0.0336414 -0.0106847 +-0.082997 0.0883523 -0.00560613 +-0.0901456 0.140633 0.0231701 +0.059772 0.0594746 0.00715469 +0.0315129 0.0439606 0.0299133 +-0.0749354 0.108383 0.0378851 +-0.0718123 0.0950995 -0.0154446 +-0.017311 0.117579 -0.0145168 +-0.0492219 0.145089 -9.42983e-05 +-0.0492467 0.0335224 -0.00684693 +-0.077013 0.157587 -0.0116646 +-0.0395098 0.12077 0.029092 +-0.0676415 0.155906 0.0108585 +-0.0115046 0.0688083 0.054897 +0.00350877 0.068881 0.0557692 +-0.00832726 0.0349131 -0.024554 +0.00623924 0.0754282 -0.0343629 +-0.0601994 0.14968 0.0358889 +-0.0681006 0.0726203 0.0368546 +-0.0550659 0.154073 0.0197239 +0.0220423 0.0388246 -0.00567731 +-0.050633 0.0633988 -0.0111763 +0.0262673 0.0718723 -0.0242084 +0.00651709 0.084208 0.0565081 +-0.0508195 0.0927229 -0.0217389 +-0.0823617 0.110377 0.0328225 +-0.0443307 0.0345511 0.0362271 +-0.0664541 0.159015 -0.0105538 +-0.065725 0.180452 -0.0578644 +-0.00729397 0.0383333 0.0172997 +-0.083856 0.108875 0.00233606 +-0.0531754 0.160014 0.00733632 +-0.0617546 0.0335347 0.00511487 +-0.0436843 0.0666417 -0.0153695 +-0.0475053 0.16079 0.00736091 +0.0213151 0.0393899 0.0411211 +-0.0126085 0.0434839 -0.0264186 +-0.058072 0.135467 -0.00577889 +-0.0144744 0.0573903 0.0514423 +-0.0480757 0.15465 -0.00633475 +-0.0214326 0.158913 -0.0108411 +0.0317035 0.0927362 -0.0181479 +0.0258633 0.0505634 0.0389033 +-0.0916556 0.116096 0.0323166 +-0.0344737 0.0973629 0.0436701 +-0.0772898 0.158355 -0.013903 +0.00252455 0.078679 0.0567626 +-0.0768599 0.0852186 -0.0125783 +0.00638417 0.060281 0.0547831 +0.00351108 0.067509 0.0559028 +-0.0775506 0.172738 -0.0395384 +-0.0941076 0.120125 0.0222927 +0.0397169 0.0400457 0.0217023 +-0.00993012 0.125562 -0.00707028 +0.0207467 0.0387687 0.0412277 +-0.0770466 0.0947961 -0.0125384 +-0.0208658 0.163381 -0.0161046 +-0.0194871 0.0786419 0.0560662 +-0.00848562 0.0978428 0.0521021 +-0.00195749 0.0369571 0.00873581 +-0.0554658 0.14959 0.0286413 +-0.0613355 0.171315 -0.0617342 +-0.0405058 0.060576 0.0408455 +-0.019245 0.0381493 0.0168345 +0.0318352 0.0959581 -0.0155753 +-0.0894336 0.0956291 0.0144221 +-0.0562826 0.138192 -0.0042334 +-0.0587859 0.118384 0.0394982 +0.0557398 0.0577143 0.000186064 +0.021293 0.0347861 0.0208687 +-0.0521809 0.0564969 0.0230721 +-0.088994 0.140671 0.0361625 +-0.0626529 0.0336856 0.0101657 +-0.0346997 0.0808739 -0.0236048 +-0.0740754 0.0791322 0.0370556 +0.0424523 0.0958497 0.0251568 +0.0156501 0.129207 0.0125793 +-0.0758074 0.0766216 0.033593 +-0.053977 0.0335099 0.00491422 +-0.049617 0.115589 0.0334474 +-0.0151821 0.115592 -0.0164315 +0.0198002 0.113601 -0.0144182 +-0.0297803 0.0833036 -0.0335871 +-0.0888224 0.0929368 0.0224135 +-0.0255078 0.162179 -0.0150106 +-0.0468796 0.105628 -0.0200508 +0.0328144 0.0654355 -0.0177831 +0.0401246 0.0657991 0.0315825 +-0.0619246 0.161563 -0.0295917 +-0.0336612 0.0423072 0.0487868 +-0.0806782 0.140364 -0.00279029 +-0.0575747 0.034031 0.0251021 +-0.00250061 0.0856648 0.0572816 +-0.051497 0.0776631 0.0434639 +-0.0314085 0.177247 -0.00418119 +-0.0382796 0.035429 0.0243806 +-0.0273926 0.0381858 0.00428469 +-0.0590133 0.128179 -0.00718347 +-0.059761 0.058524 0.00837605 +-0.089717 0.142036 0.0301646 +-0.0708787 0.0634588 0.0196178 +0.017237 0.0368135 -0.0176915 +0.0283981 0.0848865 0.0446615 +0.042292 0.0669509 0.0276386 +-0.0400442 0.15362 -0.00816685 +-0.0666868 0.15458 -0.000433214 +0.00520355 0.0894816 -0.0332282 +-0.0438381 0.033833 0.0263899 +-0.0863798 0.100827 0.00341316 +-0.0560788 0.154579 -0.00133297 +-0.0130807 0.0387897 0.0319484 +0.0526374 0.0710929 0.00470311 +0.0114966 0.0923286 0.0527326 +-0.0637555 0.0336685 -0.00625178 +-0.0475689 0.0432884 -0.0109341 +-0.0725775 0.0367142 0.00725292 +-0.0374892 0.112529 0.0350998 +0.0350676 0.0395586 0.0248293 +-0.031508 0.0675059 0.0394967 +0.0422807 0.0831292 -0.00677447 +-0.0617624 0.0810326 -0.0192317 +-0.0601798 0.155861 0.0135147 +-0.0160151 0.185636 -0.0207096 +-0.0495589 0.141679 0.00640064 +0.0451001 0.0791381 0.000209359 +-0.00648871 0.115533 0.0401374 +-0.0179936 0.034905 0.0502652 +-0.0345243 0.0619374 0.0399691 +0.0253647 0.107408 0.0385761 +0.0241683 0.0795725 0.0490812 +-0.076883 0.154198 -0.00789596 +-0.022619 0.0436731 -0.0285417 +0.0302544 0.115002 0.0294335 +-0.0112354 0.0407042 0.0501624 +-0.0374964 0.118015 0.0312717 +-0.0264155 0.169752 -0.0102811 +-0.0325172 0.115309 0.0332233 +-0.0883434 0.0968836 0.00640652 +-0.0074894 0.104457 0.0437929 +-0.0122029 0.0391189 0.0354325 +0.0605626 0.0609358 0.0161739 +-0.0291057 0.0349617 0.0478282 +-0.00632683 0.0367419 -0.0160833 +0.0422139 0.06433 -0.00247442 +-0.0834639 0.0815548 0.0279962 +-0.091428 0.113787 0.018961 +-0.0164849 0.0911174 0.0558291 +-0.0521483 0.153554 0.0122178 +0.0344074 0.0446243 -0.00536213 +-0.09232 0.126938 0.0302595 +-0.0718881 0.12088 -0.00850233 +-0.0769692 0.155214 0.0250641 +-0.0847077 0.140411 0.00224002 +-0.0180254 0.171268 -0.0157212 +0.0102822 0.065327 -0.0312772 +-0.0271732 0.171194 -0.0185934 +-0.0475224 0.0587349 0.0366732 +-0.0815066 0.0980245 0.032594 +-0.0287322 0.0335484 -0.0250427 +0.000965074 0.0348235 0.00577003 +-0.0874433 0.114073 0.0447649 +-0.0745611 0.163685 -0.0159572 +-0.0504998 0.0931897 0.044287 +0.00144942 0.127679 0.0289378 +-0.0830551 0.128552 0.0515383 +-0.0537303 0.0473713 0.0135851 +-0.0226958 0.0380494 0.0144148 +-0.0698996 0.147518 -0.0298062 +-0.0374978 0.0833038 0.0438252 +0.0144108 0.118463 -0.013667 +-0.0810085 0.1097 0.0318734 +-0.0883068 0.151437 0.0121831 +0.0014962 0.114186 0.0411808 +-0.0457512 0.0782542 -0.0192962 +-0.0728503 0.107163 0.0374416 +-0.0546426 0.0335759 -0.00981752 +-0.0905935 0.133662 0.00922276 +-0.0777368 0.158322 -0.016916 +0.0333249 0.108715 0.0307644 +-0.0758319 0.0675199 0.00554661 +-0.0608714 0.0385134 0.0195368 +-0.0766234 0.167356 -0.0265012 +0.0324864 0.115764 0.0245556 +-0.051601 0.149349 0.0154046 +-0.0370133 0.1227 0.0269929 +-0.0556554 0.124247 -0.00722427 +-0.0272643 0.118767 -0.0116611 +-0.0284876 0.0660147 0.0384689 +-0.0890493 0.136506 0.0262024 +0.0455252 0.0918117 0.00617298 +-0.0739705 0.110854 0.0450522 +-0.054929 0.0378655 -0.0109689 +-0.0211646 0.0933284 0.0517404 +-0.00865087 0.0496719 -0.030975 +0.0599111 0.0692057 0.0151972 +0.0182222 0.0631608 0.0491228 +-0.0659867 0.134061 -0.00822741 +-0.0533518 0.117447 -0.0141574 +-0.0356207 0.0519761 -0.0103771 +-0.0674828 0.0383816 0.0133921 +-0.0179472 0.0391243 0.0360362 +-0.0353932 0.0352385 0.0143534 +-0.0381912 0.168168 -0.0127822 +0.0242439 0.0994852 0.044008 +-0.0331278 0.165217 -0.0153881 +0.0419441 0.102888 0.00516309 +-0.0744413 0.0833098 0.038687 +-0.0349807 0.177 -0.00919022 +0.00950876 0.0882899 0.055046 +0.0203114 0.0607424 -0.0267183 +-0.00473829 0.0684427 -0.0355801 +-0.0293549 0.0495451 -0.022456 +0.0213555 0.0521216 -0.0251867 +-0.0608025 0.132515 0.0384279 +-0.086306 0.0981081 0.00140707 +0.0124215 0.122685 -0.01021 +0.0534041 0.0547278 -0.00176167 +-0.0725172 0.105485 0.0374705 +-0.0925573 0.125589 0.0382552 +0.023685 0.124697 0.0198268 +0.0381226 0.0574698 -0.00591549 +-0.0358756 0.107103 -0.0202685 +-0.00445554 0.112864 -0.0195829 +-0.00333512 0.125963 -0.00760181 +0.0355639 0.058664 -0.0117324 +-0.0752743 0.171989 -0.0354168 +0.0264872 0.122262 0.00520712 +-0.0911855 0.114622 0.00933636 +-0.0888501 0.102361 0.0153809 +0.0303343 0.0358493 0.0181065 +0.0388945 0.108364 0.0171641 +0.0444906 0.0861036 -0.00180248 +-0.00457845 0.0388805 0.0300129 +-0.0689372 0.126774 -0.00892675 +0.0352594 0.113795 0.0141522 +0.0379749 0.0374097 0.0109015 +0.00640925 0.0404248 -0.023654 +-0.0569156 0.112617 -0.0162683 +-0.0161127 0.0388433 -0.0124778 +-0.0568734 0.0358081 0.0462717 +-0.0852004 0.111887 0.0434561 +-0.0393334 0.174116 -0.00798067 +-0.0335527 0.156609 0.00223348 +-0.06623 0.13826 0.0429445 +-0.029146 0.168214 -0.0173005 +0.0267233 0.0347365 0.00732658 +-0.0416725 0.0607151 -0.0124173 +-0.0304675 0.175749 -0.00423829 +-0.0888241 0.114444 0.00524771 +-0.00228102 0.038771 0.0269718 +-0.0353955 0.0337248 -0.0302701 +-0.0474965 0.0862056 0.045143 +-0.0615859 0.155307 -0.0235819 +0.0506383 0.0516722 -0.00273463 +0.0335552 0.036072 0.00748554 +-0.00436077 0.12603 -0.00766771 +-0.0239599 0.182991 -0.0170658 +-0.00549985 0.07185 0.0581365 +-0.0328429 0.0972178 -0.0231932 +-0.091474 0.148846 0.0181354 +0.0336134 0.0876336 0.0416906 +-0.0614982 0.101529 0.0422258 +-0.0495014 0.0464837 0.0411417 +-0.0551395 0.054088 0.00915623 +-0.0432223 0.147486 -0.00120685 +-0.0358825 0.108535 -0.0199213 +0.00990352 0.130871 0.0175976 +-0.00150184 0.0978367 0.052434 +-0.0334203 0.0667037 -0.0174892 +0.0289827 0.0467369 -0.00766304 +-0.0555362 0.0629843 -0.00681601 +-0.0758946 0.0992374 -0.0118631 +-0.0367472 0.127095 0.0166739 +-0.0571684 0.0576767 0.00966588 +-0.0823623 0.154598 0.0188308 +-0.0905142 0.129614 0.0405398 +-0.0677394 0.0764997 -0.0160371 +-0.0201192 0.163785 -0.0165508 +-0.0132881 0.113144 -0.01784 +0.0143956 0.046307 -0.0246969 +0.0117341 0.0390743 0.0447312 +-0.0746833 0.155701 -0.000366346 +-0.069527 0.156219 -3.70248e-05 +-0.0226679 0.0341396 -0.0206509 +-0.00924422 0.0344526 -0.0182921 +-0.0276907 0.0335904 -0.024878 +-0.00470812 0.0669686 -0.0349707 +-0.024291 0.106203 -0.0224613 +-0.0142085 0.0972199 -0.0290358 +-0.0465353 0.133196 0.0100953 +-0.0245088 0.108515 0.0403619 +-0.092997 0.116043 0.0153159 +-0.0517083 0.131123 0.0322407 +-0.0456135 0.053373 -0.0104441 +-0.0345226 0.0846315 0.0427551 +-0.00735617 0.0354566 -0.0169734 +-0.0865776 0.109066 0.0163469 +-0.0436408 0.0408205 -0.0223011 +-0.0526724 0.130856 -0.00431281 +-0.0516582 0.0647811 -0.0108241 +0.0182047 0.100313 -0.0224597 +0.0445886 0.0833307 0.0241696 +-0.0749819 0.151307 -0.0268775 +-0.0846364 0.0845811 0.0264985 +-0.0452001 0.165138 -0.00833108 +-0.0791947 0.168601 -0.0366432 +-0.0848581 0.120613 -0.00298955 +0.0319638 0.0780558 -0.0197042 +-0.0923737 0.128196 0.0102559 +0.0394261 0.0716433 -0.0107927 +0.0122035 0.115305 -0.0162457 +-0.0229162 0.0383263 0.00143492 +0.0428254 0.0986969 0.0191637 +0.0153612 0.0463061 -0.0243571 +-0.00764709 0.0511598 -0.0317878 +-0.0853621 0.135278 0.0465646 +-0.0829375 0.116994 0.0487646 +-0.085028 0.100559 0.0275605 +-0.0219183 0.0382906 0.00166561 +-0.0765591 0.0818865 0.0366215 +0.0417584 0.0971928 -0.00282344 +-0.064598 0.141073 0.0399979 +0.0464507 0.0764566 0.0101865 +-0.0788399 0.114858 -0.00418456 +-0.0825062 0.110166 0.000353593 +0.029005 0.0699505 0.0419019 +-0.0144969 0.0814706 0.0569355 +0.0278524 0.115393 0.0316598 +-0.0742949 0.17555 -0.0422185 +-0.0749686 0.158241 -0.0259415 +-0.0378653 0.102824 -0.0209313 +-0.0110297 0.11443 -0.0172182 +0.0092913 0.0739064 -0.0330363 +0.0274028 0.0416284 -0.00496361 +-0.0105374 0.130025 0.0158825 +-0.0530895 0.0530892 -0.00643833 +-0.0165413 0.0573347 0.0511714 +0.0165193 0.125294 -0.00303164 +-0.080526 0.109264 0.0359357 +-0.0639459 0.153257 -0.00670123 +0.0199666 0.126684 0.0198751 +0.0426813 0.101508 0.00916223 +0.0270307 0.0781852 0.0461538 +0.00819303 0.0342719 -0.00156322 +-0.0758021 0.154133 0.0299324 +0.0217183 0.114203 -0.013082 +-0.0761724 0.154401 0.00198863 +0.0253655 0.0814952 -0.0244829 +-0.0357817 0.0871994 -0.0240994 +-0.0181797 0.178658 -0.0176382 +-0.018211 0.0697307 0.0537615 +-0.0393811 0.154717 -0.00895732 +-0.014508 0.0659228 0.0537042 +-0.0294961 0.104302 0.0413374 +-0.0281692 0.171188 -0.018077 +-0.0564789 0.0833746 0.0446901 +-0.0817321 0.120346 0.0490739 +-0.0180945 0.124042 -0.00530863 +-0.0722448 0.0688588 0.0287217 +-0.064637 0.0404566 0.0276669 +-0.0642686 0.171043 -0.0609844 +-0.00150003 0.0520299 0.0541649 +0.0343966 0.0968432 0.0376227 +0.033587 0.0739599 -0.0167921 +-0.0916761 0.122705 0.00729331 +0.0435692 0.0691645 0.0259965 +-0.0583799 0.0342852 0.0299739 +0.0193411 0.0593649 -0.0271573 +-0.0630027 0.145885 -0.0118617 +-0.0492939 0.133961 0.00142725 +-0.0445641 0.0405033 0.0438121 +-0.0534909 0.101517 0.0419949 +-0.0137652 0.0728728 -0.0386088 +-0.000746952 0.0726633 -0.0355323 +-0.00426313 0.130924 0.016725 +-0.0833848 0.0776237 0.00250717 +0.0107457 0.127435 -0.00331768 +-0.0566099 0.136533 -0.00462162 +-0.0137664 0.0742812 -0.0386456 +-0.0253123 0.0865272 0.0518462 +0.0391332 0.0800655 -0.0117735 +-0.0595022 0.0987448 0.042776 +-0.031899 0.0792306 -0.0315346 +-0.074881 0.117904 -0.00727699 +-0.0755718 0.165165 -0.0201548 +0.0408155 0.0939721 0.0292858 +-0.0854938 0.096523 0.0281673 +-0.0644931 0.105621 0.039804 +-0.0196701 0.0554437 -0.0324495 +0.0139693 0.112639 -0.017366 +-0.00232624 0.124886 -0.00844394 +-0.0617679 0.0824635 -0.0193558 +-0.0599121 0.0588939 0.00621161 +-0.0826266 0.146034 0.0392943 +-0.0649084 0.165706 -0.0272764 +-0.0602113 0.0697286 0.0375341 +-0.00175042 0.0897209 -0.0353687 +-0.0275054 0.107176 -0.0215083 +-0.062122 0.0429616 0.0266943 +0.032428 0.0625798 -0.0177725 +-0.0663881 0.0677373 0.0326703 +-0.02076 0.0347198 -0.0277376 +-0.0519381 0.0597689 0.0297286 +-0.0595413 0.0582322 0.0158865 +-0.0445568 0.151229 -0.00569012 +-0.0210951 0.12531 -0.000542597 +-0.020213 0.178617 -0.0227863 +-0.00769265 0.0388371 -0.00333188 +-0.0344924 0.09037 0.0442186 +-0.0786032 0.107051 0.0327104 +-0.0434904 0.12843 0.000929671 +-0.058473 0.115363 0.0369711 +0.045085 0.0833373 0.00221176 +-0.0384977 0.0648621 0.0416261 +-0.0407478 0.0768336 -0.0187281 +-0.0578796 0.102621 -0.0187883 +-0.0846144 0.128516 0.0502768 +0.0170529 0.075444 0.0528157 +-0.018505 0.0786406 0.056357 +-0.0752579 0.0874199 0.0393733 +0.043967 0.0636126 -0.00172463 +-0.0914628 0.146095 0.0181484 +-0.0294715 0.117536 0.0312989 +-0.0581079 0.0480417 -0.000353036 +-0.0384621 0.172216 -0.000421117 +0.0412086 0.0684033 0.0296357 +-0.0332986 0.0384796 -0.0137148 +-0.0549774 0.0335456 0.00467992 +0.00953694 0.103082 0.0459273 +-0.048193 0.133027 0.0241926 +0.00364343 0.0960341 -0.0296841 +-0.0809226 0.0926448 0.0335946 +0.0316471 0.05126 -0.00972402 +-0.0622205 0.164668 -0.0515889 +0.0257137 0.0591918 0.0440938 +-0.0116637 0.0384284 0.00907266 +0.00758624 0.0341288 -0.016561 +-0.0732628 0.0731075 0.0335988 +0.0105031 0.0347322 0.0422156 +0.0273613 0.0592959 -0.0217662 +-0.0329323 0.126815 0.00921204 +-0.0462425 0.0615364 0.0381535 +0.00735972 0.130718 0.020957 +-0.0618449 0.152018 0.0348716 +-0.0311962 0.0475489 -0.0247586 +-0.0384898 0.113893 0.0344296 +-0.0268492 0.155368 -0.00477229 +0.0138974 0.0344287 -0.0156692 +-0.0374813 0.169748 0.00157136 +-0.0892091 0.137796 0.0122163 +-0.0705026 0.0958452 0.0418601 +-0.0862013 0.10903 0.0113533 +-0.0682521 0.15944 -0.00832765 +0.038441 0.100665 0.0293761 +-0.0639313 0.11526 -0.0113233 +-0.0664444 0.151761 -0.0404644 +0.0142088 0.034798 0.0302902 +-0.0244166 0.0931902 0.0479432 +-0.0714792 0.167875 -0.0225174 +-0.0161203 0.0383572 0.000963241 +0.0282773 0.0862159 0.0445154 +0.0375 0.107296 0.0262149 +-0.0891989 0.11586 0.044703 +0.00339178 0.0433892 -0.0247833 +-0.0790801 0.0704064 0.00826811 +-0.0237813 0.0756129 -0.0382516 +0.00190837 0.124868 -0.00847893 +0.0243137 0.119818 0.0300741 +-0.0758951 0.123764 -0.00763971 +0.052991 0.0735097 0.0116286 +-0.0175974 0.0393048 -0.0277532 +-0.013784 0.0799171 -0.0389774 +0.00451197 0.0619711 0.0562284 +-0.0331612 0.0342582 0.0246899 +0.0314823 0.114431 0.0284596 +-0.0530088 0.145722 -0.00115007 +-0.0684496 0.0369814 0.0129839 +-0.0203772 0.158233 -0.00725915 +0.0148967 0.0366228 -0.0205744 +-0.0250413 0.0925197 -0.0322644 +-0.0424949 0.168218 0.00285877 +-0.0414982 0.0719267 0.042103 +-0.0939163 0.120093 0.0142993 +-0.0164902 0.112704 0.0398029 +-0.000484486 0.0703477 0.056848 +0.060415 0.0678562 0.0151973 +-0.0550635 0.116914 0.036091 +0.0200483 0.0385661 -0.0116898 +-0.0250588 0.123734 -0.00291588 +0.0403936 0.0629925 0.0301493 +0.0379656 0.0874795 0.0356781 +-0.0548923 0.105518 -0.0186699 +-0.0311396 0.166714 -0.0162904 +0.0470624 0.0740285 0.0123586 +-0.0678676 0.100922 -0.0154166 +-0.0631629 0.124137 0.0456282 +-0.0731746 0.154066 -0.0319096 +-0.0307727 0.033545 -0.0254394 +-0.0890856 0.122978 0.0464209 +-0.0236634 0.123398 -0.00459221 +0.046259 0.0820395 0.0071847 +-0.000605347 0.130433 0.0223861 +0.0192013 0.0591556 0.0487522 +-0.0498987 0.124057 -0.00910218 +-0.0170638 0.168326 -0.0143421 +0.0265398 0.104204 -0.0163559 +-0.0938575 0.120136 0.0242923 +-0.0179474 0.100123 -0.0240926 +-0.058599 0.155538 0.0184341 +-0.0170777 0.0418831 0.0522589 +-0.0545484 0.0457621 -0.00683862 +0.00723985 0.076824 -0.0341303 +-0.0907031 0.148891 0.0231421 +-0.0174825 0.107148 0.0420092 +-0.0911131 0.129682 0.0362351 +-0.0499113 0.147776 0.0118822 +-0.0657818 0.152842 -0.0413063 +0.0528515 0.0592232 -0.00323634 +-0.0693828 0.0805427 0.0408087 +-0.060108 0.0423138 0.0158374 +0.0281616 0.0699505 0.0424355 +0.00679863 0.0347495 0.0432322 +-0.0458268 0.125298 0.0247658 +-0.0567225 0.043789 0.0226896 +-4.09913e-05 0.10064 0.0465907 +-0.0729374 0.129655 -0.00843737 +0.0415013 0.104244 0.010161 +0.0342459 0.0889575 0.0408509 +-0.0808289 0.138985 -0.00281163 +-0.0425095 0.171123 -0.00130836 +-0.0870569 0.137884 0.0425258 +0.00149552 0.116934 0.0397718 +-0.0158011 0.0388262 -0.0105326 +0.00549603 0.0413259 0.0457036 +-0.0325959 0.124521 0.0211556 +-0.058912 0.109738 -0.0167726 +-0.0772259 0.151416 -0.00590086 +-0.0077735 0.0770379 -0.0376668 +0.0385932 0.0436441 0.0291648 +-0.0778914 0.162484 -0.0299302 +-0.0641074 0.0639595 0.0276548 +0.0187103 0.0342934 0.0023932 +-0.0858293 0.151702 0.00893089 +0.0336067 0.0504819 0.0325279 +-0.0810076 0.10869 -0.00259876 +-0.0557401 0.0547516 -0.00240302 +-0.0335154 0.108413 0.0382413 +-0.00564795 0.049654 -0.0307584 +-0.0765497 0.0728479 -0.00560245 +-0.00214115 0.127727 0.0291435 +-0.0701217 0.159568 -0.0479252 +-0.0794787 0.104524 -0.00660043 +0.00849938 0.0366585 0.0454484 +-0.0305059 0.0889327 0.0438397 +-0.0638439 0.101082 -0.0177706 +-0.0045041 0.0801506 0.0577231 +0.013232 0.0835986 -0.0303791 +-0.0809796 0.0788834 0.0298322 +-0.0148841 0.0959887 -0.031739 +-0.0699437 0.0669048 0.0273786 +-0.0514117 0.134659 0.0288827 +0.0105257 0.123354 0.0336723 +0.0263222 0.107421 0.038207 +-0.0125183 0.095238 0.0536312 +-0.0634853 0.0904216 0.0451002 +0.0377424 0.110293 0.0150624 +-0.0700913 0.0419644 0.00613646 +-0.0565326 0.0401709 -0.00945456 +-0.0553504 0.0460785 0.0138247 +-0.0114916 0.0759418 0.0571389 +-0.0796666 0.0886389 0.0352895 +0.0338998 0.0888046 -0.0179815 +-0.0207237 0.0567772 0.0467736 +0.0293267 0.120376 0.00767428 +-0.0865466 0.137714 0.00320362 +-0.0815177 0.106 -0.00361682 +0.0360857 0.0784054 -0.0147648 +-0.0706254 0.129856 0.0506426 +0.0309103 0.088937 0.0430941 +0.0186908 0.127724 0.0151265 +0.0607002 0.0665033 0.01416 +-0.0347226 0.0711465 -0.0183854 +-0.0475247 0.0335798 -0.00289187 +0.00330662 0.0597508 -0.0323981 +0.0162777 0.117973 -0.0131407 +0.0260142 0.118212 -0.00538239 +-0.0524983 0.0477783 0.0397646 +0.00462528 0.109546 0.0419595 +-0.0848442 0.146005 0.0372765 +-0.0568876 0.0998079 -0.0197942 +-0.0478768 0.15504 0.00962757 +0.0236771 0.0956901 -0.0213272 +-0.0909699 0.113313 0.018324 +-0.0314956 0.0560344 0.0371147 +0.0419523 0.101425 0.00119033 +-0.0205212 0.118181 0.0347958 +0.00296971 0.0341513 0.00863676 +-0.0034922 0.0473569 0.0490622 +0.0168587 0.0347265 0.0236529 +-0.00422658 0.0396088 0.0480089 +0.0402871 0.104196 0.0211608 +-0.0211382 0.0985478 0.044502 +-0.0469324 0.0383628 -0.0152843 +0.0223386 0.0578809 -0.0262309 +-0.094679 0.122825 0.0202733 +-0.00649716 0.0619561 0.0561245 +-0.0530923 0.143138 0.0243879 +0.0586666 0.0690768 0.00715872 +-0.0632884 0.0444363 0.0372932 +-0.0584087 0.0421172 0.0451764 +0.0462769 0.0649494 -0.00109094 +-0.0892011 0.0983026 0.0104143 +-0.050311 0.033406 0.00395206 +-0.0171117 0.123425 0.0297114 +-0.0067867 0.0784694 -0.0378945 +-0.0413793 0.0448727 -0.0203291 +0.00613123 0.105885 -0.0208912 +-0.0209654 0.035527 0.0525237 +0.0515169 0.0664883 0.0274059 +-0.0186581 0.0985081 0.0446525 +0.00326552 0.127077 0.029619 +0.00950248 0.111292 0.0396928 +0.0420852 0.077848 0.0291974 +-0.0404715 0.0343242 0.0319689 +-0.0775002 0.156948 -0.0139048 +-0.0828255 0.0924347 -0.00656966 +-0.0256554 0.124701 0.019279 +0.00649798 0.107134 0.0414437 +-0.0067083 0.0613544 -0.0352012 +-0.0341277 0.165212 -0.0151261 +-0.0305288 0.0353431 -0.0195833 +0.00449494 0.105757 0.0421851 +-0.0313565 0.161046 -0.00157639 +0.00317447 0.0908801 -0.0331491 +-0.066706 0.0375681 0.0351923 +0.0146203 0.128223 0.0236197 +-0.0931816 0.121543 0.0372829 +-0.0390449 0.0344196 0.0339502 +0.0204938 0.0865196 0.0494812 +-0.0909512 0.147073 0.025026 +-0.0398753 0.149194 -0.00215183 +0.0371767 0.095465 0.0345819 +-0.0534525 0.116245 -0.0149003 +-0.00912597 0.168128 -0.0227626 +0.0103593 0.0509634 -0.0286117 +0.00839042 0.0434178 -0.024623 +0.012125 0.10869 -0.0190017 +-0.0749621 0.134014 -0.00721966 +-0.0789216 0.172194 -0.0440002 +-0.0258331 0.0561399 -0.0284181 +-0.0817922 0.143171 0.000171875 +0.0451306 0.0647669 -0.000900002 +-0.0514821 0.113924 -0.0164877 +0.00371763 0.0346901 0.0426483 +-0.0475701 0.0461114 -0.0100167 +0.0406981 0.104234 0.0181671 +-0.0453678 0.060156 0.0387657 +-0.0314314 0.0693522 -0.0254564 +-0.0154911 0.0702181 0.054969 +-0.0300755 0.123175 0.0220771 +-0.0216491 0.0479362 -0.0281524 +-0.0507589 0.144713 0.0133585 +-0.0670917 0.155954 0.0255845 +-0.0852375 0.1104 0.00532111 +-0.0573508 0.121267 0.0398601 +-0.0261065 0.0944666 -0.0262366 +-0.0897054 0.124293 0.0455762 +-0.000486036 0.047441 0.049521 +-0.0438029 0.167379 0.00334272 +0.0111963 0.0864748 -0.0310924 +0.0464517 0.0750534 0.00718936 +-0.036486 0.0619956 0.0409573 +-0.0314993 0.116609 0.0322344 +-0.0544997 0.117303 -0.0139925 +-0.0420673 0.0336103 0.00544111 +-0.0856626 0.0912736 -0.00055353 +-0.050495 0.0974075 0.0440057 +0.0309311 0.0355864 0.0055308 +0.0202177 0.109327 -0.0158556 +0.0249428 0.0968855 0.0450153 +-0.00751 0.070341 0.0568254 +-0.0604012 0.0335984 -0.00916237 +0.0245092 0.0406191 -0.00557292 +-0.0451779 0.152141 0.00822921 +-0.0607654 0.0668786 0.0346016 +-0.0593188 0.114075 -0.0145597 +-0.091214 0.143385 0.025163 +-0.0425978 0.0505652 -0.0109174 +-0.0423266 0.169779 -0.00887745 +-0.0224756 0.0348012 0.0476768 +0.0409735 0.0405135 0.0215425 +-0.0801239 0.110623 0.0438367 +-0.0138651 0.0987904 -0.0246748 +-0.043573 0.126043 -0.00725208 +-0.0208606 0.101617 -0.0238418 +-0.0425016 0.0605517 0.0404213 +-0.00249479 0.0590139 0.0541301 +0.0409984 0.102803 0.000176721 +0.0342014 0.0808856 0.0407312 +-0.0247835 0.166781 -0.00970724 +0.00931572 0.0725689 0.0556419 +-0.0642124 0.145356 0.038849 +-0.0716272 0.0748459 -0.0119866 +-0.012533 0.0458468 0.048979 +-0.0741728 0.15268 -0.0288898 +-0.0211868 0.174176 -0.0217698 +-0.054499 0.0761691 0.0426143 +-0.0851934 0.11068 0.0373035 +-0.00964195 0.120097 -0.0132573 +0.0149745 0.129329 0.00806984 +-0.0535552 0.0335918 0.0121227 +0.0387224 0.1084 0.018173 +-0.0858928 0.108988 0.00834067 +0.00426552 0.0697141 -0.0335935 +0.0304509 0.117992 0.000957505 +-0.0134723 0.0603845 0.0536243 +-0.0809665 0.133877 -0.00363658 +-0.0877284 0.0950339 0.0247524 +-0.0708769 0.155921 0.00969704 +-0.0388302 0.173903 -0.00342781 +0.0123125 0.0680946 -0.0309662 +-0.0540561 0.150161 -0.00256907 +-0.0662654 0.129803 0.0463681 +-0.0481341 0.0344887 0.0319692 +-0.0482356 0.137094 0.0133979 +-0.0638562 0.148524 -0.023921 +-0.0873971 0.140576 0.0399568 +-0.0920359 0.126943 0.0332532 +0.00766079 0.0616753 0.0549139 +-0.0820513 0.0882817 -0.00662822 +-0.0583711 0.0614813 0.0257087 +-0.046355 0.0345569 0.0357917 +0.0473411 0.0488863 -0.00367878 +0.0292435 0.0637114 -0.0199317 +-0.0250309 0.172718 -0.0117738 +0.0423872 0.0459654 -0.00393846 +-0.0484976 0.0805051 0.0439961 +-0.0497297 0.0737805 -0.0165746 +0.0463736 0.0682111 0.00160519 +-0.0334339 0.166782 -0.00461644 +-0.0772978 0.0685904 0.0138065 +-0.0645607 0.153661 0.00110457 +0.00849221 0.108496 0.0406568 +-0.0554287 0.1598 0.000101402 +-0.0412715 0.127285 -0.00254236 +-0.080968 0.0967089 0.0335048 +0.0225187 0.123964 0.0251042 +-0.0559057 0.0379831 0.047068 +-0.0594802 0.0716799 0.0395512 +-0.0618223 0.170491 -0.0617288 +-0.0564955 0.104323 0.0414899 +-0.0810442 0.152541 0.00426923 +-0.0435828 0.0345782 0.0398547 +0.0126008 0.128196 0.0257553 +-0.0526679 0.0579784 0.0235498 +0.0380115 0.110174 0.0108643 +0.0150842 0.114728 -0.0156323 +0.0148813 0.0348012 0.0286151 +-0.0479877 0.121051 0.028756 +-0.0883678 0.128089 0.00227451 +-0.0720422 0.15541 -0.0389078 +0.0112474 0.0724264 -0.0317987 +0.0267956 0.111385 0.0354031 +-0.0649586 0.160381 -0.0157887 +0.00550295 0.0702783 0.0558582 +-0.0238067 0.0899629 -0.0356649 +-0.090988 0.113988 0.0207121 +0.0194892 0.0934174 0.0476186 +-0.0655537 0.161293 -0.0160037 +-0.0625236 0.0609176 -2.19725e-05 +-0.0491589 0.162483 -0.00556124 +-0.042649 0.0378778 -0.0263104 +0.00374161 0.0952291 -0.0308324 +0.025598 0.0610493 -0.0236458 +0.00942462 0.0375116 -0.02327 +-0.00136682 0.125668 -0.00729488 +0.008486 0.0532759 0.0521458 +-0.00749086 0.0675042 0.0558082 +-0.092697 0.117351 0.0113077 +0.0251837 0.112665 -0.0114294 +-0.04997 0.140123 0.00440621 +-0.0534339 0.040168 0.0467985 +-0.0936376 0.124116 0.0132691 +-0.0222759 0.0382517 0.00526325 +0.0600635 0.0664445 0.00913698 +-0.0224559 0.092554 -0.0342812 +0.0582887 0.0538074 0.00917936 +0.046059 0.0834308 0.0121726 +-0.0619009 0.0678892 0.0352357 +-0.0566658 0.0473318 0.0108617 +-0.0457003 0.0694971 -0.0160523 +-0.0618544 0.174099 -0.0565963 +-0.0498016 0.128288 0.0314623 +-0.0225807 0.159177 -0.00302445 +-0.0623624 0.16436 -0.0595797 +0.0383958 0.0505315 -0.00659356 +-0.0332433 0.126938 0.0135159 +-0.0454819 0.0875316 0.0441596 +-0.0835389 0.110217 0.0023021 +0.0386074 0.0617702 0.0328492 +-0.0407686 0.0811968 -0.0203079 +-0.033827 0.0901076 -0.0243377 +0.0506567 0.0703381 0.00346635 +0.0228724 0.125195 0.0195238 +-0.0187529 0.0384803 -0.00337678 +0.0222732 0.12205 0.0293193 +-0.0294959 0.0645466 0.0380401 +-0.0689565 0.166538 -0.0215879 +-0.00506288 0.0387211 0.00101779 +-0.0647592 0.169439 -0.0415812 +0.00438439 0.037904 -0.00378653 +-0.0241621 0.125878 0.0168174 +0.0359934 0.0685324 -0.0147875 +-0.0182052 0.0381955 0.0170088 +-0.0753414 0.15612 0.015399 +0.0453867 0.0413474 0.00824507 +-0.00449218 0.123763 0.0343217 +0.0460213 0.0862262 0.00917159 +0.0346496 0.0972102 -0.0129196 +0.0196844 0.126554 0.00410284 +0.0202619 0.12651 0.00572713 +-0.00449958 0.0504123 0.0519892 +-0.0899789 0.133805 0.0362152 +0.00988218 0.0886651 0.0547874 +-0.00395268 0.131078 0.00966125 +0.00346471 0.0977538 0.051238 +-0.0236164 0.0422618 -0.0289626 +-0.0253603 0.124214 -0.00135534 +-0.00744498 0.124256 -0.00972454 +-0.0577765 0.0494102 0.000630355 +-0.0321623 0.172645 -0.015639 +-0.0661377 0.0669804 0.0316196 +-0.0240269 0.158277 -0.0107707 +-0.0762359 0.113613 0.0494664 +-0.0849952 0.141833 0.00418636 +-0.0569251 0.0366412 0.0466659 +-0.0283222 0.0749245 0.042497 +0.0216856 0.0878179 -0.0250022 +-0.0866951 0.0951098 0.0265657 +0.0296006 0.0982071 0.041203 +-0.0630317 0.060472 0.0203248 +-0.0304883 0.0574252 0.0370157 +-0.0638466 0.159519 -0.0168205 +-0.0544959 0.0848124 0.0452537 +0.0243406 0.113099 -0.011895 +-0.0900837 0.117534 0.0447346 +-0.00144097 0.0378708 0.018909 +-0.0699808 0.136988 -0.00795948 +-0.0823654 0.0815422 -0.00354068 +-0.00681555 0.0385421 0.0244437 +0.00431168 0.0611153 -0.0319161 +-0.0801269 0.10608 0.0309775 +0.0162329 0.0807169 -0.0293214 +-0.0158843 0.0377689 0.0515755 +-0.0829013 0.122118 -0.00412754 +0.0294673 0.106706 -0.01303 +-0.0534948 0.11254 0.0358256 +0.00150254 0.0605844 0.0560506 +-0.0234977 0.101642 0.0439992 +-0.0797566 0.074638 -0.000471413 +-0.00773143 0.0670178 -0.0355816 +-0.0705055 0.0342009 0.00809348 +0.0167377 0.0461846 0.0432665 +0.00646432 0.110948 0.0411124 +-0.0194753 0.160592 -0.0133076 +-0.00449865 0.115591 0.0404715 +0.0280707 0.046664 -0.00969251 +0.048051 0.0496945 0.0288529 +-0.0763852 0.114637 0.0504008 +-0.0886058 0.150235 0.0251076 +-0.0211531 0.0382979 0.0271326 +0.0408293 0.101363 -0.00180736 +-0.0203988 0.177179 -0.0155929 +-0.0718351 0.180364 -0.0513557 +0.00724322 0.0361893 0.0456372 +0.0124253 0.0374345 -0.0223624 +0.0378254 0.108706 0.0222481 +-0.0871672 0.127065 0.0471934 +-0.0686541 0.12565 0.0517171 +-0.0889642 0.136517 0.0281982 +-0.0304896 0.0559845 0.0366491 +-0.0839703 0.0843113 0.0284366 +-0.00895133 0.0384401 0.00779513 +-0.0942308 0.126903 0.0192529 +-0.0569855 0.0507747 0.00670607 +-0.063488 0.037094 -0.00797583 +0.0252887 0.122228 0.0247087 +-0.0433541 0.112279 -0.0167951 +-0.0255625 0.0532992 -0.0274025 +-0.00849647 0.0532799 0.0524507 +-0.0074932 0.0842694 0.0572981 +-0.0760467 0.0689134 0.00354542 +-0.0518697 0.144272 -0.000239851 +0.0302023 0.0808798 0.0437374 +-0.0276563 0.12199 -0.007026 +-0.0484978 0.100158 0.0428666 +-0.0654874 0.143443 -0.0120814 +-0.0308113 0.153953 -0.00248259 +0.0597604 0.0567164 0.0141707 +-0.0480122 0.0341726 0.0287503 +-0.0640462 0.0622661 0.0238361 +-0.0206969 0.0568414 -0.0326165 +0.0309722 0.116471 -0.00147933 +-0.0691516 0.0788347 0.0401452 +-0.058803 0.0883 -0.0207912 +0.00672447 0.0346721 0.0378883 +-0.0746893 0.154119 0.0302893 +-0.0529585 0.135327 0.0304274 +0.00863241 0.128438 -0.00238911 +-0.0478493 0.099947 -0.0217978 +-0.075086 0.0674684 0.00355063 +0.0326927 0.116394 0.0217802 +-0.0842229 0.144678 0.0395137 +-0.0166094 0.128602 0.0136868 +0.00411662 0.125005 -0.00865855 +-0.0754818 0.148362 0.0406222 +-0.065886 0.15405 -0.00011759 +-0.0425085 0.119367 0.0297171 +-0.0902093 0.131023 0.0402096 +0.0383601 0.0921445 -0.0115002 +-0.038495 0.0804525 0.0431634 +-0.0353039 0.0794833 -0.0226806 +0.0441637 0.0973591 0.0111613 +-0.0590115 0.153958 0.00054242 +0.0453728 0.0735622 0.00221503 +0.0569193 0.0710092 0.00714855 +-0.0114956 0.105842 0.0433599 +-0.0698279 0.181394 -0.0549266 +0.0375934 0.102015 0.0299178 +0.00590625 0.0356875 -0.00331654 +-0.0684622 0.16137 -0.0113077 +-0.0742229 0.109724 0.0423296 +-0.0202504 0.182971 -0.0220384 +-0.091455 0.148836 0.0171378 +0.0152238 0.0793568 -0.0300519 +-0.000512 0.107246 0.0433248 +-0.0428418 0.0971034 -0.0220359 +-0.0514947 0.0819216 0.0442721 +-0.00625132 0.0383797 0.0174726 +0.0252504 0.0789879 -0.0247523 +-0.0833347 0.0898073 0.030438 +-0.0509182 0.146274 0.0133981 +0.0202304 0.105998 0.0417108 +0.0571307 0.0508797 0.0151878 +-0.0330104 0.126012 0.0180287 +-0.0217816 0.0797281 0.0555871 +-0.00743438 0.120242 -0.0134406 +-0.0148225 0.086924 -0.0385597 +-0.0375897 0.174214 -0.00298303 +-0.00244861 0.0605864 0.0553645 +-0.00874133 0.128614 -0.000328304 +-0.00579055 0.0798611 -0.0376463 +-0.0096155 0.119132 -0.0142361 +0.000497149 0.0534577 0.0541163 +-0.0928025 0.131035 0.0222365 +0.0372258 0.108268 -0.000834485 +-0.0914674 0.129551 0.00825277 +-0.00149557 0.0675596 0.0566557 +0.0154848 0.0548588 0.0485877 +0.0396568 0.0815034 -0.0117853 +0.0174985 0.119533 0.0343583 +-0.0108678 0.0975625 -0.0293851 +0.0264007 0.116693 0.0313169 +0.005469 0.0964333 0.0520715 +-0.0455856 0.128182 -0.00140207 +-0.0175003 0.0499225 0.0470061 +-0.075934 0.0788992 0.0351468 +-0.0067913 0.0812637 -0.0377236 +-0.0769778 0.155918 0.0162848 +-0.0797877 0.0746142 -0.00147983 +-0.0599651 0.0469723 0.0336736 +0.0382386 0.084194 -0.0147697 +-0.0816947 0.113482 0.0465399 +0.00634478 0.0524665 -0.0299091 +-0.0112874 0.182441 -0.0284978 +-0.026226 0.178551 -0.0179991 +-0.0739945 0.1802 -0.0521965 +0.0105211 0.104445 0.0448284 +0.0580719 0.0523893 0.015182 +-0.0525108 0.0819776 0.0447141 +0.0148643 0.0961115 -0.0237665 +-0.00147854 0.0474532 0.049375 +0.00669444 0.0340637 0.00205518 +-0.0753884 0.151441 -0.0109145 +0.0413586 0.0394374 0.00625535 +-0.0196125 0.0381064 0.0149924 +-0.00986994 0.104508 -0.0232523 +-0.0720157 0.145244 -0.0182167 +0.0416371 0.0669849 0.0284796 +0.0284741 0.0381475 -0.00163189 +0.0474976 0.06778 0.0262203 +0.0259166 0.0434925 0.0371741 +0.0464333 0.0455453 -0.00066213 +-0.00640927 0.120163 -0.0133583 +-0.0236376 0.0387148 -0.0157231 +-0.092269 0.124069 0.00827163 +0.0144954 0.119572 0.0352389 +-0.0702988 0.15533 -0.0489684 +-0.0882036 0.143298 0.0111345 +-0.074863 0.0795889 -0.0115995 +-0.0174424 0.10313 -0.0232301 +-0.0686182 0.0628687 0.0026871 +-0.0620712 0.16624 -0.0525885 +0.058207 0.0538058 0.0191798 +-0.0333511 0.0463754 -0.0256604 +-0.0855025 0.0832965 0.0214753 +-0.0920057 0.11611 0.0343124 +-0.0227771 0.124071 -0.00329832 +-0.0610006 0.129721 0.0398956 +-0.0404973 0.0492165 0.0395965 +-0.0481836 0.0335793 0.00422402 +-0.0654948 0.160255 -0.0145439 +0.00736856 0.0479637 -0.0273222 +-0.0123571 0.12972 0.0137799 +0.0579783 0.0551346 0.00616127 +-0.0164763 0.064491 0.0530345 +-0.0608155 0.0896295 -0.0193008 +-0.0205289 0.0958269 0.048234 +-0.086716 0.132512 0.0465811 +-0.052836 0.095613 -0.0220115 +0.0406946 0.0647331 -0.00578164 +0.0121697 0.0950562 -0.0266386 +-0.00950093 0.0925586 0.0561384 +-0.0157375 0.0671877 -0.037968 +-0.0269293 0.0376983 0.0192799 +0.033595 0.0660055 0.039722 +-0.0481741 0.135565 0.0182752 +-0.0224128 0.163867 -0.00803238 +0.00810708 0.101446 -0.0211916 +-0.0458977 0.166944 -0.00688513 +-0.0238738 0.105835 -0.0226784 +0.0272653 0.121002 0.0240179 +-0.0701585 0.0623473 0.0172092 +0.0578867 0.0607943 0.0238444 +0.0565638 0.0695327 0.00435815 +0.012216 0.0753282 0.0545969 +-0.0583609 0.0339112 0.0215144 +-0.0664905 0.0861274 0.0441111 +-0.0514869 0.0987554 0.0433116 +0.0210708 0.0349944 0.0242708 +-0.0102986 0.126308 0.029096 +-0.0638201 0.089594 -0.0189434 +-0.0782747 0.174383 -0.0433933 +-0.0311143 0.16374 -0.0152454 +-0.0915885 0.128321 0.0362439 +-0.0379874 0.0336299 0.0062497 +-0.0854294 0.151325 0.0282936 +0.0124994 0.0909598 0.0531045 +-0.0434452 0.120253 -0.0131867 +0.0229768 0.0754886 0.0490742 +-0.0334786 0.100129 0.0429194 +-0.0741118 0.0819105 0.0384161 +0.0373216 0.0901862 0.036514 +-0.0565657 0.11693 0.0374284 +0.00334719 0.0481602 -0.0292882 +-0.0324526 0.0336078 -0.0239554 +0.0083446 0.116042 -0.0170347 +-0.00977658 0.0387467 -0.00366788 +-0.0206679 0.0509474 -0.0298149 +-0.0242736 0.181474 -0.0180054 +0.0160525 0.0350115 0.0395034 +-0.0543014 0.146215 0.0264084 +-0.00102573 0.0346607 0.0434939 +-0.0611888 0.155469 0.00589931 +-0.0406241 0.0520111 -0.0110025 +-0.0705109 0.148356 0.0407257 +0.0495286 0.0610841 0.0304744 +-0.019145 0.0893155 0.0554734 +0.00268229 0.12726 -0.0050686 +-0.0743228 0.155495 -0.0229079 +0.021268 0.0762952 -0.0266753 +-0.0239356 0.0374925 -0.0183912 +0.0262803 0.0660857 -0.0226574 +-0.0164998 0.0856439 0.0570811 +-0.0857415 0.120359 0.048887 +-0.0344903 0.0505305 0.0383369 +0.00230798 0.0346028 0.0406387 +-0.0929029 0.129672 0.0252445 +-0.0654938 0.0604629 0.00727621 +0.044722 0.0833037 0.0012072 +-0.0230106 0.0580182 0.0433839 +-0.0105663 0.0350401 0.0482738 +0.0582293 0.0690671 0.00613614 +-0.0600127 0.131125 -0.00733582 +-0.0321751 0.162395 -0.00280539 +-0.0555013 0.0623754 0.0293782 +-0.0252415 0.109687 -0.0201254 +-0.0560506 0.150155 -0.00188433 +-0.0600649 0.129705 0.039485 +0.0338293 0.0767952 -0.0167877 +0.01215 0.0919974 -0.0294248 +-0.0346452 0.0340944 0.0173387 +-0.050492 0.149246 0.012837 +-0.0550682 0.150156 -0.00218973 +-0.00881167 0.085499 -0.0379404 +-0.0780101 0.11134 -0.00369811 +-0.0795926 0.100727 0.0334268 +-0.0423449 0.122373 -0.0114097 +0.0248097 0.124191 0.0159771 +-0.0174692 0.0529782 0.0491698 +-0.0889728 0.101008 0.0133925 +0.00851959 0.0730626 0.056014 +-0.026729 0.159626 -0.000161004 +0.0222613 0.0720727 -0.026869 +0.0396492 0.0970274 -0.00677557 +-0.0301141 0.166809 -0.00684471 +-0.00834781 0.129635 0.0224773 +-0.0198097 0.0813191 -0.0390949 +-0.0489315 0.137078 0.0173942 +-0.0161123 0.0985355 -0.0244159 +0.0331161 0.0795687 -0.0187107 +-0.0365028 0.0761422 0.0420368 +-0.0315196 0.0834471 -0.0305496 +-0.0366299 0.0534085 -0.0105028 +-0.0844928 0.0979861 -0.00258986 +-0.049695 0.0693575 -0.0143663 +-0.0795053 0.148405 0.0389114 +-0.0143105 0.0338147 -0.022462 +-0.036834 0.0382539 -0.0105119 +-0.0528967 0.0476266 0.0236645 +-0.0431625 0.0436516 -0.0173214 +0.0442909 0.0959534 0.0041727 +-0.0499053 0.141681 0.0133989 +-0.084567 0.0897523 0.028848 +-0.035736 0.0740102 -0.0187661 +-0.0624191 0.163107 -0.0445959 +0.0553692 0.0711293 0.0213817 +-0.0384984 0.0634699 0.041507 +-0.0420929 0.156178 -0.00917116 +-0.0641565 0.166823 -0.0341745 +-0.0623968 0.162983 -0.056654 +0.0276466 0.0659543 0.0434322 +0.0454314 0.088986 0.0031764 +-0.0749519 0.164602 -0.018207 +-0.0345505 0.175605 -0.011982 +0.0363374 0.104678 0.0298648 +-0.00375231 0.128091 -0.0038931 +-0.0305006 0.100206 0.0434038 +-0.00849625 0.0547108 0.0528122 +-0.0485842 0.0517801 -0.00897412 +-0.00451507 0.0519264 0.0531932 +-0.0815948 0.0748474 0.0175368 +0.0572159 0.0648465 0.024658 +-0.0403921 0.162356 0.00287494 +-0.0749222 0.126715 -0.00818803 +-0.047238 0.0346371 0.0407654 +-0.0621416 0.141343 -0.00629843 +-0.0251564 0.113713 -0.0163747 +-0.00855727 0.119157 -0.0142712 +-0.074494 0.126019 0.0529923 +-0.0205102 0.0461853 0.0521703 +-0.084864 0.0789836 0.0191297 +-0.0187649 0.125661 -0.000995534 +-0.0218427 0.0567021 0.0450804 +-0.0622179 0.153696 -0.0295936 +-0.0364968 0.0576627 0.0395237 +-0.0368019 0.127806 0.00485952 +-0.0770975 0.0967852 0.0367 +-0.000433486 0.0366062 0.0184413 +0.0131024 0.123925 -0.00754958 +-0.0177683 0.0383192 0.0242073 +-0.0655356 0.0398001 0.0300899 +-0.0778591 0.161105 -0.0269202 +-0.0341012 0.162237 -0.0142117 +-0.017501 0.0842912 0.0575736 +-0.0280973 0.16079 -0.0140776 +-0.0421185 0.122004 0.0266511 +-0.0142563 0.178628 -0.0276625 +-0.0440063 0.0629698 0.0401358 +0.0128613 0.0347903 0.0336338 +-0.0248532 0.0348299 0.0453939 +-0.00152849 0.105863 0.0439958 +-0.0346038 0.123422 0.0248791 +-0.0346304 0.079471 -0.0235463 +-0.0639625 0.126764 -0.00871214 +0.0364026 0.0547846 -0.00674979 +-0.0064883 0.123768 0.0340789 +-0.0470974 0.168427 -0.00297818 +-0.0575443 0.0401418 -0.00909914 +0.0257874 0.0895854 -0.0228249 +0.0183006 0.0383341 -0.0177245 +-0.0524963 0.0848256 0.0453696 +0.0561175 0.0494119 0.0111925 +-0.0588172 0.123244 -0.00816875 +-0.00922198 0.0384881 0.0221926 +-0.0331235 0.126633 0.00621772 +-0.0119418 0.120727 -0.011899 +-0.0607049 0.145387 0.0368926 +-0.0306093 0.125854 0.0144859 +-0.0356146 0.127659 0.0111781 +-0.0776104 0.0802915 -0.00928059 +-0.0702074 0.0394853 -0.000301673 +0.0434891 0.0583702 0.0316051 +-0.0789513 0.128091 -0.00607242 +-0.042519 0.0534194 0.039352 +-0.00449744 0.0939058 0.0556112 +-0.0094927 0.0619497 0.0558121 +-0.0694824 0.0944579 0.0422945 +-0.0771177 0.0879695 -0.0126012 +0.014854 0.103191 -0.021265 +-0.043284 0.169832 -0.00794427 +-0.00983007 0.124748 -0.00821099 +0.048512 0.0692789 0.0025489 +-0.0620323 0.0343503 0.0308946 +-0.074493 0.145596 0.0437863 +-0.0375024 0.104216 0.0394845 +-0.047499 0.0451812 0.0421654 +-0.0836103 0.0769236 0.0176347 +-0.0636092 0.170093 -0.0469941 +-0.0483594 0.137097 0.0143972 +-0.087232 0.102325 0.0223672 +-0.035507 0.104243 0.0399833 +-0.0577119 0.0708497 -0.0156457 +-0.00436115 0.122059 -0.0113929 +0.0024069 0.037633 -0.0245625 +0.00251114 0.0911189 0.0554408 +-0.0357211 0.0710689 -0.0174927 +0.0183807 0.0432425 -0.0223469 +-0.0688327 0.09803 -0.0157395 +-0.0747491 0.155081 0.00248708 +0.0451476 0.0833704 0.0221542 +-0.0657925 0.14111 0.0417765 +-0.0365871 0.119162 -0.0120374 +0.0101976 0.131045 0.010577 +-0.0249388 0.183594 -0.0126758 +0.0330579 0.0598189 -0.0157593 +-0.0212823 0.0391811 0.0388836 +0.0144144 0.0403325 -0.0225056 +-0.0304932 0.104292 0.0413193 +0.0224755 0.0947811 0.0470955 +-0.0694247 0.0337382 0.00515427 +-0.00249301 0.118317 0.039019 +0.0288984 0.0924492 -0.0198656 +0.033052 0.0440867 0.029429 +-0.0616004 0.15843 -0.0275855 +-0.0438223 0.0615675 0.0400039 +-0.0452867 0.0410146 -0.0162976 +0.0314256 0.0991914 -0.015062 +-0.0524965 0.0833785 0.044899 +-0.0298946 0.0436977 0.0506861 +-0.076428 0.148619 -0.00986569 +-0.0761803 0.0914451 0.0387697 +-0.0730299 0.172199 -0.0345665 +-0.0274981 0.0960112 0.0443229 +0.0045023 0.13009 0.02428 +-0.0302254 0.162455 -0.00347789 +-0.0871035 0.11231 0.0319974 +0.00225053 0.0726262 -0.0348847 +-0.0748173 0.152727 -0.0208966 +-0.0354946 0.118017 0.0312708 +0.0436028 0.0973418 0.0171655 +-0.0754981 0.13448 0.0513067 +0.0513136 0.0574694 -0.00408483 +-0.0228193 0.0854366 -0.0379031 +-0.057217 0.0336859 0.0130711 +-0.0749012 0.110639 -0.0076926 +-0.00874782 0.125791 -0.00734235 +0.0343242 0.100732 -0.0126444 +-0.0155312 0.126827 -0.00025822 +0.0145856 0.0341976 0.00165401 +-0.0175043 0.114096 0.0387143 +0.0552517 0.0720728 0.0198735 +0.0406726 0.0731516 -0.00877611 +-0.0268119 0.082528 -0.0368734 +-0.0262156 0.0519422 -0.0264212 +-0.0464977 0.041126 -0.0122454 +-0.0711885 0.173044 -0.0381946 +0.0492058 0.0511603 0.0287949 +-0.00188013 0.105918 -0.0222309 +-0.046455 0.126722 0.0256927 +-0.0142526 0.181479 -0.0279552 +-0.0655009 0.0903733 0.0443899 +-0.0037337 0.131051 0.015481 +-0.0308026 0.0367564 0.0517774 +0.0277802 0.121908 0.0142262 +-0.0344815 0.0575696 0.0386716 +-0.0844149 0.0777754 0.0115138 +0.0294342 0.0383781 -0.00173395 +-0.0423644 0.120691 0.0280931 +-0.0350646 0.156323 -0.010574 +-0.0619093 0.0470515 0.00567882 +-0.00290933 0.0388493 0.0285794 +-0.059258 0.0467212 -0.00132733 +0.00450339 0.123789 0.033846 +-0.0229547 0.12614 0.0172488 +0.0410852 0.0394499 0.00526393 +0.0049695 0.0340349 0.00359293 +-0.0513689 0.0516822 0.0322144 +-0.0606335 0.122654 0.0421622 +-0.0645986 0.15064 0.0368964 +-0.0632078 0.143892 -0.00837073 +-0.0386435 0.0563025 -0.0111331 +-0.0658025 0.083802 -0.0186684 +-0.062835 0.128322 0.0425151 +-0.0715276 0.14003 0.0472238 +0.056383 0.0538774 0.0233551 +-0.0610939 0.0335153 0.00346695 +-0.00051118 0.0978394 0.0524335 +-0.0418663 0.0340021 -0.00580283 +-0.042485 0.0762268 0.0429934 +-0.0512844 0.138511 0.0223666 +0.0367682 0.0888721 0.037463 +0.00724928 0.0711363 -0.0334334 +-0.0505534 0.0543594 0.017626 +0.00614025 0.110185 -0.0202335 +-0.00850551 0.0561268 0.0532043 +-0.0295938 0.0789709 0.0427962 +-0.0287487 0.0349103 0.0496611 +-0.0584012 0.154047 0.0286827 +-0.0127037 0.064273 -0.0367671 +-0.0288624 0.0606727 -0.0254104 +-0.0376712 0.125956 0.0207679 +-0.0612726 0.0708854 0.0380779 +-0.0637251 0.155028 0.0282356 +0.0531328 0.0476715 0.00620176 +-0.00308571 0.124589 0.0331408 +-0.0186888 0.0352267 -0.0190015 +0.001497 0.119685 0.0377723 +-0.032734 0.120436 -0.00935257 +-0.054542 0.0631354 -0.00767633 +0.052054 0.0718585 0.0216053 +-0.00556188 0.116801 -0.0157696 +-0.0504949 0.138575 0.0203939 +-0.00542543 0.120041 -0.0132322 +0.0310541 0.0727142 0.0413756 +-0.0558801 0.045112 0.0236807 +-0.0167974 0.0382847 0.0190235 +0.0256741 0.0809122 0.047736 +-0.0199636 0.0668339 0.051351 +-0.0491191 0.159098 -0.00622225 +-0.0506725 0.0667938 0.036819 +-0.0492762 0.143079 0.00435473 +-0.0216794 0.0538141 -0.0303252 +0.0305352 0.10973 -0.0102674 +-0.0225945 0.157229 -0.0076361 +-0.0530851 0.151641 -0.00314317 +-0.0271151 0.122681 0.0231414 +-0.0134994 0.0884096 0.056966 +-0.0266886 0.0335519 -0.0246454 +-0.008499 0.12243 0.035017 +-0.0393069 0.033537 -0.0233717 +-0.033807 0.0461583 0.044586 +-0.0198183 0.158714 -0.00970491 +-0.0835554 0.0925405 0.0305699 +-0.0340008 0.0766042 -0.0254969 +0.00352334 0.12519 0.0325857 +-0.0424905 0.0424327 0.0427417 +0.0232877 0.123385 0.0253956 +0.0230237 0.100791 0.0439995 +0.0307365 0.117405 0.0253192 +-0.0772723 0.114862 0.0500033 +-0.0264336 0.0535943 0.0384453 +0.0177456 0.0350628 0.0325863 +-0.0121375 0.102128 -0.024127 +-0.000203909 0.130048 0.0239772 +0.00795806 0.127195 -0.00506697 +-0.0252695 0.156633 -0.00336931 +0.0179609 0.1201 -0.00942839 +-0.0769756 0.068555 0.0156381 +-0.0871021 0.111516 0.0397664 +-0.0544907 0.101557 0.0424048 +-0.0572843 0.0589766 -0.000464382 +-0.07902 0.0751794 0.0271309 +0.0102371 0.115602 -0.0165593 +-0.0105893 0.180273 -0.0272114 +-0.0528115 0.0913061 -0.0221889 +-0.064755 0.068231 0.0343382 +-0.0137258 0.125368 -0.00476898 +-0.0635922 0.178326 -0.0570781 +-0.0239683 0.126504 0.0139537 +-0.0600264 0.132579 -0.00719549 +0.044826 0.0791184 -0.000782084 +-0.00541885 0.0969111 -0.0306599 +-0.0301034 0.0537602 -0.0193727 +0.0409333 0.0900371 -0.0097907 +0.024446 0.115337 -0.010308 +-0.0283175 0.0963396 -0.0241496 +0.0299711 0.119398 0.020753 +-0.0265916 0.172718 -0.0105089 +-0.0586682 0.128313 0.0397417 +-0.0818638 0.147313 0.00119815 +-0.0254305 0.0357675 -0.0290845 +-0.038039 0.126372 -0.00365101 +-0.00149717 0.0815096 0.0574492 +-0.00738223 0.0931774 -0.0348179 +0.0558223 0.0493444 0.0161931 +0.0577347 0.0705061 0.0074689 +-0.0778727 0.096767 0.0360596 +0.0144985 0.11402 0.0378951 +0.00389123 0.0355229 -0.0148126 +0.0242948 0.124607 0.0114976 +0.0565412 0.0674698 0.002463 +-0.0308889 0.108768 -0.0191524 +0.011955 0.0349898 0.0332703 +-0.0129143 0.104805 -0.023047 +-0.0938592 0.11877 0.0212975 +0.0106595 0.0357626 0.0286983 +-0.0652684 0.163853 -0.0591668 +-0.0359879 0.0421738 0.0454409 +-0.0685089 0.100042 0.0409867 +0.03476 0.113033 0.0239837 +-0.0346506 0.126197 -0.000232823 +-0.0386758 0.0462873 -0.0214583 +0.0257808 0.10679 -0.0151172 +-0.0618601 0.153758 -0.0185818 +0.03067 0.0917687 -0.019137 +0.0275533 0.0672844 0.0433037 +-0.0414978 0.0748079 0.0427759 +-0.0218204 0.0840783 -0.0384285 +0.037815 0.0630498 -0.0108066 +-0.0602789 0.0617061 0.0251086 +-0.0768171 0.154199 -0.00689913 +0.00550054 0.0990386 0.0482677 +-0.0391759 0.16667 -0.0123913 +-0.0616525 0.116813 -0.0113459 +-0.0227683 0.0699063 -0.0373697 +-0.0825008 0.107588 0.0273509 +0.0253381 0.0418727 -0.00588506 +-0.014565 0.035318 -0.01827 +-0.00278761 0.0390101 -0.00997081 +-0.0895837 0.137934 0.0361877 +-0.0855599 0.112052 0.0307632 +-0.027858 0.0343176 -0.0296609 +-0.0325025 0.0675467 0.0400218 +0.0183334 0.0348857 0.00364336 +-0.0469365 0.0404762 -0.0121149 +-0.0777262 0.0825344 -0.0106004 +-0.00467074 0.0569349 -0.0330586 +-0.0194597 0.165415 -0.0107679 +-0.0210403 0.122456 -0.00761783 +-0.0388087 0.0446425 -0.0234233 +-0.0696543 0.0614896 0.0127042 +0.0440466 0.0931306 0.0221521 +-0.0647046 0.0352193 0.0243246 +-0.0166096 0.0435748 -0.0274243 +0.0441838 0.0712847 0.000450163 +-0.0285281 0.0522637 0.0377683 +-0.0599387 0.147394 -0.00221747 +-0.0440942 0.156163 -0.00853601 +0.0388076 0.0807597 0.0350812 +-0.0141543 0.161827 -0.01362 +-0.0210631 0.0385773 -0.00578617 +-0.0237266 0.161004 -0.00287357 +-0.0863431 0.0896619 0.0263909 +-0.0829431 0.0790271 0.0235207 +0.0268259 0.0605622 0.0439609 +-0.0224026 0.0384511 0.0303351 +-0.0635581 0.170962 -0.0485923 +-0.0456965 0.147701 -0.00292724 +-0.0532705 0.0373829 0.0469289 +0.0231843 0.0658868 0.0457612 +-0.0887459 0.132238 0.00325707 +0.00920248 0.0914355 -0.0308607 +-0.0298874 0.063588 -0.0244234 +0.00157852 0.12719 -0.00497022 +-0.0814436 0.153873 0.00890807 +-0.0624959 0.0607929 0.0219134 +-0.0680579 0.149988 0.0386907 +0.0166077 0.128469 0.0186355 +0.00550411 0.0731036 0.0564845 +-0.00249995 0.0661849 0.0567093 +-0.0735022 0.155469 -0.0279133 +-0.0851803 0.0899483 -0.00256663 +0.0394434 0.0585828 -0.00486619 +-0.0739433 0.134018 -0.00754124 +-0.038066 0.156257 -0.0102365 +0.00335185 0.118611 -0.0157819 +-0.00660848 0.0420213 -0.0257519 +-0.0639921 0.0605727 0.020032 +0.0252819 0.100786 -0.0187149 +-0.0820788 0.0765181 0.0218286 +-0.0167051 0.0584876 -0.0351851 +-0.023274 0.106158 -0.0224283 +-0.0878269 0.087472 0.021463 +-0.0786369 0.113551 0.047197 +0.0360644 0.0861926 0.0381664 +-0.082909 0.123594 -0.00426589 +-0.029497 0.177966 -0.015166 +-0.0170948 0.127006 0.022289 +0.0524062 0.0491022 0.00128138 +-0.0198015 0.10169 -0.0238258 +-0.0221328 0.166772 -0.0183109 +-0.00252234 0.038424 0.00547409 +-0.0255028 0.0606627 0.0401195 +-0.0385432 0.0337417 -0.0196892 +-0.0644389 0.0627719 0.0250864 +-0.0879688 0.113092 0.00628888 +0.000951329 0.10045 0.046938 +0.0386471 0.086118 0.0348681 +-0.0374734 0.0346441 0.0411075 +0.0233517 0.120203 -0.00555174 +0.0462175 0.0761811 0.0179689 +-0.0376403 0.0336717 0.00266115 +-0.0341867 0.172054 -0.0145892 +-0.0623617 0.0420762 0.0420515 +-0.0114712 0.0379322 -0.0163227 +-0.0177227 0.119786 -0.0108098 +-0.0801398 0.154387 0.00935749 +0.00187492 0.0398874 0.0463369 +-0.0730243 0.159629 -0.0349322 +0.0473276 0.0547587 -0.00564531 +-0.0376789 0.0636715 -0.0137557 +-0.0727421 0.180568 -0.051639 +-0.0616232 0.148175 -0.003118 +-0.0248231 0.0839948 -0.0375331 +-0.0652787 0.173897 -0.0604957 +-0.0740506 0.152673 -0.0298916 +-0.0571547 0.150227 -0.00146353 +-0.0903203 0.146073 0.0131505 +-0.0779569 0.132491 -0.00592536 +-0.0290048 0.0550494 -0.0223991 +-0.00849727 0.0898107 0.0570624 +-0.0324948 0.112838 -0.0174448 +-0.0523188 0.0518 0.026645 +0.0302802 0.0506319 0.0365295 +-0.0838507 0.103422 -0.00164978 +-0.0788492 0.100759 0.0340965 +-0.0874564 0.141909 0.0385732 +-0.0155155 0.115507 0.0382335 +-0.0777311 0.0887218 0.0375819 +-0.0730146 0.15545 -0.0319082 +-0.0523124 0.0360662 0.0464431 +-0.06188 0.164622 -0.0566003 +0.0367263 0.0794489 0.0373046 +-0.0734863 0.173577 -0.0500848 +0.00600107 0.0390612 0.028408 +-0.0278792 0.0339265 -0.0214795 +-0.000753868 0.0390895 -0.00403098 +-0.0578284 0.0450681 -0.00544742 +-0.0829344 0.129921 0.0513858 +-0.0111161 0.125335 -0.00680126 +-0.0679477 0.0860672 0.0434473 +-0.0705079 0.105505 0.0376955 +-0.0109443 0.0389825 -0.0115729 +-0.0399106 0.033865 0.000215963 +0.00351496 0.0924905 0.0549546 +-0.0424851 0.033913 -0.0262188 +-0.0792564 0.155246 0.0213567 +-0.0215304 0.127346 0.0119061 +-0.091259 0.117481 0.0430647 +-0.0404902 0.0790417 0.0431478 +-0.0945826 0.122834 0.0222802 +-0.0518346 0.0517811 0.0306554 +-0.0767129 0.161805 -0.0163426 +-0.0867595 0.107707 0.0143554 +-0.0693236 0.142228 -0.0102995 +-0.0204959 0.105781 0.0424626 +0.0438044 0.0987496 0.00916312 +-0.00281997 0.0854457 -0.0370162 +-0.00280088 0.0840687 -0.037315 +0.0293196 0.0632732 0.0423131 +0.00625559 0.0725849 -0.0341185 +0.0203077 0.0621778 -0.0269805 +0.0563556 0.0723446 0.0173318 +-0.0230123 0.107366 -0.0218426 +-0.00742046 0.035877 -0.0249268 +0.0374488 0.0402522 0.0247009 +0.0292061 0.055224 -0.0177993 +-0.0184858 0.127732 0.0173962 +-0.0921542 0.132321 0.0142287 +-0.0583136 0.145422 -0.00203607 +-0.0688478 0.0994593 -0.0152611 +-0.0615047 0.167821 -0.0555677 +-0.0915903 0.125424 0.00726612 +0.0199591 0.0564127 0.0480725 +0.0378679 0.0713179 0.0353865 +-0.000605671 0.129033 0.0267429 +0.0298673 0.0740916 0.0431977 +0.00443138 0.126024 0.0314422 +0.0239815 0.12134 -0.00278507 +-0.0246606 0.0521655 -0.0277657 +0.0146913 0.0820798 0.0529703 +0.0259518 0.075434 0.0462884 +-0.0332069 0.0609523 -0.0145937 +-0.0191994 0.0907344 -0.0364225 +0.0589179 0.0607855 0.00414854 +0.0361999 0.103252 -0.0093129 +-0.0498767 0.0529199 0.0166388 +-0.0681894 0.0774836 0.0397476 +-0.021626 0.038176 0.00908889 +-0.0723232 0.163826 -0.0419605 +0.0104934 0.109851 0.0397458 +-0.0177283 0.0627822 -0.0360863 +-0.0628376 0.161493 -0.0485893 +0.00323101 0.120377 -0.0136716 +0.0551973 0.0674594 0.0252672 +-0.0349319 0.127285 0.00554823 +0.0194228 0.125079 0.025397 +-0.00805064 0.130356 0.00959263 +-0.0314936 0.097435 0.044487 +-0.0557138 0.0342594 0.0288064 +0.0212843 0.0490624 0.0410711 +-0.0898642 0.114175 0.0316644 +-0.0868422 0.134936 0.00226938 +-0.0758819 0.156006 0.016671 +-0.00997005 0.175779 -0.0292074 +-0.0603522 0.0407823 0.0443369 +0.0416146 0.0598915 -0.00407392 +0.0165523 0.0922417 -0.0256623 +-0.0245975 0.0365494 -0.0290831 +-0.0381375 0.160902 0.00087141 +-0.0719085 0.064649 0.0201308 +0.0144227 0.0477589 -0.0252693 +0.0603421 0.0650847 0.0181826 +-0.0146479 0.0481463 -0.0303376 +0.00721829 0.131495 0.00948452 +0.0394741 0.102755 0.0261825 +-0.0127182 0.0685587 -0.0376659 +0.0338414 0.0392101 0.0249005 +-0.0639127 0.160548 -0.0182872 +-0.0885745 0.0901142 0.00646846 +-0.0497297 0.0416675 0.0451167 +-0.0695102 0.148387 0.0405048 +0.0369413 0.0618853 0.0357448 +-0.0614969 0.0987359 0.0427353 +0.0264406 0.0434552 0.0361928 +0.0457541 0.0497206 0.0308161 +-0.0184963 0.0486167 0.0482304 +-0.086692 0.140502 0.00718566 +-0.0116045 0.0420472 -0.0262702 +-0.0708693 0.149702 0.0392474 +-0.061676 0.0343224 0.032737 +-0.00749303 0.115552 0.0402888 +0.0603302 0.0678632 0.0121432 +-0.070517 0.146976 0.0420031 +0.0360463 0.0953891 -0.0118379 +0.0368862 0.0601656 -0.0107732 +0.0239184 0.116674 0.0330029 +-0.0804601 0.148683 0.000173633 +-0.0604926 0.0344653 0.0380756 +-0.0152525 0.177145 -0.0265204 +-0.0773226 0.108517 -0.00660544 +-0.0176381 0.0465514 -0.0286775 +0.0313677 0.11674 -0.000181085 +-0.0465999 0.111104 -0.0175509 +-0.0408947 0.172668 -0.00780492 +0.0241275 0.120631 -0.00401437 +-0.055903 0.111216 -0.0172629 +-0.0781607 0.0935055 -0.0115755 +0.0158369 0.105055 -0.0192576 +-0.0130717 0.0973914 -0.0292103 +0.00114663 0.103071 -0.022297 +-0.0545436 0.0443717 -0.00770843 +0.0381644 0.0887078 -0.0138852 +-0.0638458 0.0366675 0.0422565 +-0.0245954 0.122675 -0.00581505 +-0.0199502 0.0553853 0.0474489 +-0.0454976 0.13168 0.014882 +-0.0808086 0.113339 -0.00208766 +-0.0658194 0.154782 -0.0493821 +-0.0138747 0.104484 -0.023001 +-0.0293428 0.112771 -0.0173776 +0.0139014 0.0962996 -0.0239693 +-0.0834257 0.145967 0.00318768 +-0.0299391 0.175699 -0.00474628 +-0.00851553 0.0759427 0.057359 +-0.0679104 0.122376 -0.00896749 +-0.0104955 0.0731168 0.0565579 +-0.0480021 0.126873 0.0289133 +-0.052022 0.0561083 0.0186673 +-0.0627916 0.150662 -0.00757045 +-0.0667057 0.14638 -0.0236565 +-0.0714698 0.161004 -0.0429413 +-0.0459114 0.0657109 0.0391289 +-0.0127989 0.0827406 -0.0389623 +0.0240686 0.0436305 0.0398361 +0.00979486 0.0360464 0.02827 +-0.0144862 0.0715775 0.0549247 +-0.0798641 0.145899 -0.00181913 +-0.0607177 0.0335659 0.00529637 +-0.0635063 0.156747 -0.0406118 +-0.0171212 0.0383927 0.000728518 +0.02686 0.0646091 0.0440244 +0.0291243 0.117712 -0.00241857 +0.0411571 0.0846831 0.0314273 +0.0246298 0.0347052 0.0125163 +0.0376787 0.105425 -0.00281358 +-0.0520342 0.116871 0.0334143 +-0.0526315 0.0335173 0.00157493 +0.0103692 0.116852 -0.0159048 +-0.0299989 0.178534 -0.0140055 +0.0199608 0.126186 0.00277612 +-0.0226771 0.0567339 -0.0313199 +-0.0693087 0.165593 -0.0188405 +0.0435095 0.0527832 0.0325495 +-0.0292487 0.115981 -0.0147474 +0.0390778 0.105565 0.0241719 +-0.0449049 0.167415 0.00301648 +-0.0575339 0.0493779 -0.000368538 +-0.0396388 0.0548721 -0.0111311 +0.0314293 0.102107 0.036834 +0.000480507 0.104429 0.0436509 +-0.0299338 0.0468967 -0.0261593 +-0.0712424 0.155684 0.00373917 +0.0197271 0.0808668 0.051456 +-0.0761145 0.157637 -0.00836344 +-0.0144941 0.122325 0.033097 +-0.0597928 0.095429 -0.0195264 +0.0309421 0.0646254 0.0411415 +-0.0275054 0.104339 0.0416271 +-0.000516741 0.108636 0.04302 +-0.0777092 0.07194 0.024923 +0.0102045 0.0795083 -0.0323062 +-0.0379505 0.150881 -0.00456722 +-0.013105 0.0382607 0.0125563 +-0.0182317 0.187056 -0.0182936 +-0.0182699 0.166848 -0.0125771 +-0.0264587 0.0902029 -0.033595 +-0.0668807 0.112599 0.0436137 +-0.0537473 0.076818 -0.0192258 +-0.0306082 0.165302 -0.00581873 +-0.0796939 0.0873057 0.0353613 +0.0347714 0.100763 0.034674 +-0.035752 0.0415598 -0.0291214 +0.0289767 0.117846 0.0275093 +-0.000706682 0.0655468 -0.0343894 +-0.0610628 0.138403 -0.00654794 +-0.0625935 0.12412 0.0446596 +-0.0648295 0.14966 -0.0309451 +-0.0234815 0.0974495 0.044821 +-0.026575 0.0476865 -0.0258778 +-0.0528683 0.0367334 -0.0118941 +-0.0116753 0.0526919 -0.0331734 +-0.0615062 0.158429 -0.0265894 +0.0320656 0.117538 0.0186978 +-0.00988755 0.103466 -0.0236142 +0.0484958 0.0691068 0.025078 +0.0156548 0.128965 0.0154331 +-0.0665046 0.10698 0.0385746 +-0.0267998 0.0522633 0.0388472 +-0.058755 0.0782067 -0.0192512 +0.0211493 0.0672779 0.0481082 +-0.0288355 0.125617 0.00924976 +-0.0124826 0.0701993 0.05486 +0.0522007 0.0476683 0.00324556 +-0.0443004 0.130334 0.00946299 +-0.00241533 0.0389975 -0.0136337 +-0.0437474 0.0783133 -0.0194351 +-0.0629007 0.115475 0.040648 +-0.0311605 0.169689 -0.016551 +-0.0263193 0.0386673 0.0347214 +0.0366921 0.0807912 0.0372758 +-0.0395001 0.100068 0.0413695 +-0.0681116 0.112409 0.0451263 +0.0386091 0.0686148 0.0346703 +-0.0759482 0.152671 -0.0129066 +0.0145806 0.0953173 0.0493246 +-0.0385004 0.150676 0.00203305 +-0.0935499 0.129634 0.0192397 +-0.0619642 0.126755 -0.00826981 +-0.0537213 0.0709084 -0.0154466 +-0.0314688 0.175764 -0.00340966 +-0.046761 0.126023 -0.00719597 +0.0128678 0.128966 0.0229731 +-0.0721444 0.145534 -0.0189034 +-0.014649 0.0384586 0.0247211 +-0.0782079 0.165287 -0.027954 +-0.0738874 0.0695898 0.0277412 +-0.0880483 0.145895 0.0319999 +-0.00950131 0.0870429 0.0572309 +-0.082872 0.154403 0.0201091 +-0.0574419 0.0424556 0.0216968 +0.0432211 0.097315 0.0201647 +0.0484167 0.0567471 0.0312254 +-0.0899902 0.146067 0.012148 +-0.0384869 0.0860997 0.0437907 +-0.0677801 0.0837503 -0.017964 +-0.0304968 0.071744 0.0399232 +-0.0267649 0.0754486 -0.0363172 +0.0555795 0.068697 0.0240751 +-0.00326172 0.0994383 0.0499516 +-0.0539364 0.153495 0.0157968 +-0.0264808 0.0509031 0.0429156 +0.0477223 0.0435274 0.0201079 +-0.027646 0.071755 0.0409574 +-0.025483 0.0988427 0.0444451 +0.00433576 0.055339 -0.0305463 +-0.0809392 0.0721012 0.0145438 +-0.0859359 0.0980836 0.000413824 +-0.0660122 0.153896 -0.0475582 +-0.0275574 0.156658 -0.00139783 +-0.0134137 0.0581871 0.0521911 +-0.0774938 0.134462 0.0515018 +0.0104958 0.0560929 0.0526786 +-0.00951583 0.0848597 -0.0382215 +-0.0298676 0.0916468 -0.0252289 +-0.0751451 0.15577 0.0110973 +-0.0887521 0.0969152 0.00742291 +-0.00642846 0.119149 -0.0142793 +-0.0351305 0.127632 0.00987733 +-0.079479 0.1087 0.0330138 +-0.00387451 0.0384228 0.00884205 +-0.0794858 0.0940336 0.0349322 +-0.0809833 0.080323 0.0311985 +-0.0874477 0.148578 0.0299355 +0.015852 0.106086 -0.0183494 +-0.0799154 0.12806 -0.00573177 +-0.0810332 0.092317 -0.00857663 +-0.0428426 0.0956907 -0.0224311 +-0.0843197 0.0830919 -0.00150258 +0.0270369 0.0347621 0.0147774 +-0.0114905 0.108632 0.0428314 +-0.0298836 0.04486 -0.0282273 +-0.0675863 0.0915604 0.0429945 +-0.0858462 0.0806083 0.01849 +-0.0377888 0.0855996 -0.0220857 +-0.080296 0.0886098 0.0345053 +-0.0631283 0.163827 -0.0595262 +-0.0200798 0.0653829 0.0501099 +0.0101376 0.104418 -0.0202461 +0.00311717 0.113125 -0.0199945 +0.00740202 0.0404296 -0.0235788 +-0.0233436 0.179984 -0.0199453 +-0.0849416 0.153745 0.0179582 +-0.00950506 0.0660833 0.0554985 +-0.0149561 0.0997734 -0.0237179 +-0.0625045 0.160053 -0.0215634 +0.0134925 0.114016 0.0379994 +-0.0484084 0.144974 0.000471547 +-0.0765927 0.0770726 0.0330453 +-0.0522524 0.0566167 0.0245415 +-0.0446531 0.0607308 -0.0127894 +-0.077361 0.0729429 -0.00456158 +-0.0164852 0.0870004 0.0567616 +0.00917846 0.101539 -0.0214106 +-0.0114976 0.0883765 0.0564607 +-0.0365032 0.109752 0.0369592 +-0.0622101 0.169551 -0.0614764 +0.0134275 0.117615 -0.0147491 +-0.0194201 0.1246 -0.00382324 +0.000402662 0.121936 0.0359399 +0.0308218 0.101142 -0.0151148 +0.044544 0.0748845 0.0238506 +-0.0190349 0.0930706 -0.0347914 +-0.0284257 0.15795 -0.0115973 +-0.0835152 0.150011 0.0330149 +-0.0723608 0.0363259 0.00395733 +0.049239 0.0437392 0.0164633 +-0.0281399 0.0917982 -0.0286003 +-0.0894337 0.132252 0.00424863 +-0.0478863 0.033513 -0.0102384 +-0.0480003 0.126688 -0.00585567 +-0.0147076 0.0933085 -0.0349989 +-0.0344513 0.172765 -0.000813008 +-0.012881 0.107288 -0.0218461 +-0.0494996 0.111168 0.0370596 +0.0195435 0.100771 0.0459866 +0.0383256 0.0387198 0.0189634 +-0.0490718 0.151664 -0.00461846 +-0.0413062 0.123313 -0.010402 +-0.0764561 0.106685 0.0353026 +-0.0506178 0.0590261 -0.0100428 +-0.0085531 0.0385596 0.00412906 +-0.0510743 0.153146 -0.0044532 +-0.0168415 0.122494 -0.0076608 +-0.0724396 0.129821 0.051541 +-0.0447123 0.0336927 -0.0153017 +-0.0128672 0.038589 0.0285719 +-0.0769694 0.136896 -0.00565009 +-0.0204809 0.0526524 0.0459576 +-0.0190093 0.100114 -0.02409 +0.0491876 0.0602673 -0.00438234 +2.68966e-05 0.0991578 -0.0250032 +-0.0146066 0.0355634 0.0504427 +0.0437747 0.084485 0.0264379 +-0.0613665 0.0430534 -0.00574325 +0.0102029 0.0779579 0.0551886 +-0.0584973 0.109766 0.0377913 +0.0405117 0.0657145 0.0303349 +0.0123622 0.0523525 -0.0283928 +-0.0865442 0.107736 0.017365 +-0.0273471 0.0735222 0.0429845 +-0.076628 0.169808 -0.0316679 +-0.00310182 0.130332 0.00278812 +0.0456485 0.0904179 0.0101632 +0.0367704 0.109675 0.000243105 +-0.0088954 0.108786 -0.0222808 +-0.0722528 0.156819 -0.0369077 +-0.0343294 0.175491 -0.0032043 +-0.0612579 0.167808 -0.0576007 +-0.0225051 0.10854 0.0408657 +-0.0396128 0.0492137 -0.0115104 +-0.0528856 0.104156 -0.0198053 +-0.0114785 0.0965129 0.0526113 +-0.0493499 0.141685 0.00939558 +-0.053326 0.162717 0.00204741 +0.0382413 0.108427 0.0210592 +0.0250594 0.122946 0.0231962 +0.0436593 0.058746 -0.00488132 +-0.052188 0.0559056 0.0136207 +-0.0337241 0.163848 -0.00328844 +-0.0671575 0.17049 -0.0366968 +-0.0780353 0.0880327 -0.0115615 +-0.00752216 0.122122 -0.0114318 +-0.0578223 0.12834 0.0392194 +-0.0624397 0.16285 -0.0548313 +-0.00720215 0.0344571 -0.0178933 +0.0219696 0.0347867 0.0191885 +0.0134971 0.112635 0.0387508 +-0.0188778 0.168283 -0.0134663 +0.0418633 0.0718502 -0.00680416 +0.00188261 0.129936 0.0247306 +-0.0143909 0.0388658 -0.0140202 +-0.0866821 0.0819953 0.0154888 +0.0511122 0.059915 -0.00400422 +-0.0637796 0.0419038 0.0392448 +-0.0334673 0.0532523 0.0375728 +-0.0640539 0.142491 0.0390245 +-0.0197273 0.118003 -0.0129221 +-0.0739294 0.0686501 -0.000515794 +0.022253 0.0430673 -0.0137151 +0.0169102 0.120624 0.0334304 +-0.0533452 0.118341 0.0350731 +-0.0407313 0.0710722 -0.0172567 +-0.0444934 0.108473 0.0392485 +-0.0406946 0.0340162 0.0268873 +-0.0428689 0.104235 -0.0209095 +0.000289503 0.0391337 -0.00386275 +0.0202669 0.0819781 -0.0271085 +0.0339966 0.0363512 0.0147468 +-0.0623699 0.0366895 0.0436353 +0.0112859 0.0638878 -0.0308862 +0.044262 0.0945325 0.00218274 +0.0178069 0.0349979 -0.00592782 +0.00766772 0.130773 0.00395877 +-0.0518373 0.0337424 -0.0112411 +0.05138 0.0464792 0.0212617 +-0.054495 0.0932121 0.0445367 +0.0154864 0.0380581 -0.0207587 +0.0322412 0.0368006 0.00286913 +0.0226382 0.0714084 0.0485432 +-0.0474967 0.0761987 0.0428659 +-0.0433556 0.0337438 -0.00770024 +-0.0507933 0.0869468 -0.0215939 +-0.0428743 0.166323 -0.00997516 +0.0420989 0.0930078 0.0271705 +-0.0133438 0.11201 -0.0186315 +-0.0682581 0.156305 0.0164417 +-0.0709159 0.125294 -0.00875352 +-0.0758095 0.0920857 -0.0139153 +0.00691185 0.038861 0.0287775 +-0.0755745 0.0702081 -0.000465226 +0.0560342 0.0622175 0.0264602 +0.00750328 0.0532576 0.0522142 +-0.0557017 0.0693735 -0.0143448 +-0.0400399 0.0367774 -0.0284153 +0.0452718 0.0917995 0.0131601 +0.0113635 0.0534706 0.0514016 +-0.056641 0.0429978 -0.00777539 +-0.0163006 0.182966 -0.0260091 +-0.0724038 0.116078 0.0519992 +-0.0223961 0.161302 -0.0143028 +-0.016322 0.128515 0.00945034 +-0.0761998 0.14998 -0.0148766 +-0.084898 0.11701 -0.000772283 +0.0215009 0.111167 0.037529 +-0.0116746 0.164119 -0.0176003 +-0.0386977 0.0666031 -0.0147476 +-0.0475127 0.0411749 0.0444313 +-0.0741496 0.147181 -0.0158602 +0.0423699 0.0412112 0.0211935 +-0.0112343 0.126014 -0.00554296 +-0.0627796 0.16313 -0.0285907 +0.0598501 0.0664357 0.0191799 +0.0444747 0.0438727 0.000520461 +-0.0449903 0.16693 -0.00785376 +-0.0241862 0.125789 0.00366503 +0.0303543 0.0942493 0.0422823 +0.0385368 0.0800568 -0.0127167 +-0.0329258 0.120263 0.0285346 +-0.0277494 0.0764615 0.044728 +0.0072822 0.0344718 -0.00192729 +0.0164745 0.103092 0.0456772 +-0.000370674 0.0391495 0.0306363 +-0.0444932 0.109842 0.0382343 +-0.0228558 0.113062 -0.0177116 +-0.0323055 0.0384897 -0.00796454 +0.0330143 0.106332 -0.0106209 +-0.0905664 0.150208 0.0151282 +-0.0473203 0.122487 0.0279328 +-0.079976 0.076532 0.0275303 +-0.0185178 0.0383092 0.00415679 +-0.0400541 0.128036 0.0139949 +-0.0725037 0.079155 0.0383043 +-0.00705924 0.127865 -0.00358478 +-0.0474808 0.0518309 0.037336 +0.0281857 0.0888902 0.0443935 +-0.0325014 0.102916 0.0416129 +-0.0636379 0.131123 0.0413473 +-0.0194422 0.0952996 -0.0310527 +0.0343622 0.0673468 0.0390872 +0.00248248 0.0385592 0.0461627 +-0.0207428 0.0656176 -0.0364653 +-0.0354216 0.17545 -0.00362892 +-0.0186888 0.127303 0.00423263 +-0.0697675 0.129835 0.0501143 +-0.0645483 0.168715 -0.0400434 +0.0176026 0.0520233 0.0463575 +-0.0165066 0.11684 0.0369313 +-0.0539292 0.0475998 -0.00643542 +0.0206619 0.125677 0.022985 +0.0131 0.034428 -0.00821794 +-0.0884031 0.101017 0.0203758 +-0.089294 0.136502 0.0252035 +-0.0633961 0.0610267 0.0215327 +-0.0181382 0.0625693 0.0510808 +-0.0363013 0.0408102 0.0457892 +-0.0348891 0.0341588 0.0262022 +0.0321818 0.0994934 0.0379171 +-0.0650996 0.115729 0.046366 +-0.0446047 0.0505366 -0.0105481 +-0.0170833 0.0896859 -0.0373218 +-0.0135156 0.162506 -0.0153049 +-0.0264962 0.119343 0.030427 +0.053783 0.0561466 -0.00178141 +-0.0659739 0.131145 -0.00872206 +-0.022585 0.185119 -0.0131839 +-0.0902473 0.132271 0.00623314 +-0.0343818 0.038354 -0.0138166 +-0.087117 0.119846 -0.000719646 +-0.0514997 0.047729 0.0396118 +-0.0837154 0.0804764 0.0234959 +0.0452487 0.0681916 0.00167659 +0.0443433 0.0762807 -0.00178421 +0.0393871 0.0828883 -0.0127786 +0.0133395 0.0475307 0.0453837 +0.0393635 0.0445531 -0.00413158 +0.0464068 0.0778555 0.00918735 +0.0498828 0.0474685 0.000307011 +-0.0205115 0.114066 0.0379617 +-0.0795322 0.0826724 -0.00859002 +0.0277802 0.0692504 -0.0226951 +-0.0640511 0.139618 0.0390194 +-0.0622733 0.144309 -0.00616114 +-0.0598164 0.122657 0.0415831 +-0.039222 0.0363262 0.0107899 +-0.0476756 0.0694312 -0.0151035 +-0.0114975 0.12239 0.0342495 +-0.0759886 0.0701373 0.025079 +0.0247695 0.1047 0.0394768 +-0.0424955 0.0464529 0.0406301 +-0.0209812 0.0389557 0.0535988 +-0.0434801 0.0917165 0.0428888 +-0.0936604 0.128255 0.0172452 +-0.0319662 0.163855 -0.00423083 +-0.0864626 0.107749 0.0163884 +0.00261599 0.0960798 -0.0297441 +0.0192696 0.124452 -0.00213625 +-0.0635019 0.0945759 0.0438874 +-0.0434804 0.108484 0.0391565 +-0.0767016 0.15969 -0.0259195 +-0.0207953 0.0784993 -0.0390618 +-0.0168597 0.0382017 0.0136589 +-0.0128908 0.129601 0.0150315 +-0.063562 0.136724 0.0379539 +-0.0592557 0.146819 0.0355066 +-0.0102821 0.0421361 0.0498123 +0.00411674 0.108725 -0.0201726 +-0.0471696 0.16597 0.00363215 +-0.0324882 0.0560654 0.0375153 +0.016314 0.061771 0.0498607 +-0.0633808 0.154539 0.0298218 +0.0319993 0.108737 0.0323781 +0.0224822 0.0578106 0.0464363 +-0.0731478 0.0644323 0.00940567 +-0.0136846 0.0555659 -0.0339274 +-0.0485565 0.0335372 0.00238031 +-0.0485794 0.128753 -0.00187037 +-0.0761205 0.0927947 0.038671 +-0.00890397 0.114438 -0.0172305 +-0.0881957 0.146062 0.0092207 +-0.067835 0.0951999 -0.016639 +-0.0826594 0.0993103 0.0308836 +0.0194806 0.107063 0.040905 +-0.0755472 0.15139 -0.00989046 +-0.0619095 0.118087 -0.0102757 +-0.0770237 0.0716688 -0.00146855 +-0.0090472 0.129209 0.0236827 +0.0166896 0.0645037 0.050425 +-0.044493 0.0860963 0.0437549 +-0.0851043 0.10321 0.0261425 +-0.0929793 0.125561 0.0282631 +-0.0792446 0.0699823 0.0139682 +-0.0541984 0.150844 0.02639 +-0.0544369 0.147753 0.0264091 +0.029273 0.103313 -0.0154093 +-0.0661878 0.156038 -0.00610123 +0.0513324 0.0613858 -0.00348738 +-0.00765334 0.0905691 -0.0361471 +-0.0036313 0.046681 -0.0294588 +-0.0793953 0.154018 0.0066962 +0.0126509 0.103032 -0.0211055 +-0.0534982 0.0344579 0.0343548 +0.0254331 0.0400654 -0.00462996 +-0.0474929 0.163748 0.00542805 +-0.0174765 0.0514437 0.047967 +-0.023601 0.0379574 -0.0288347 +0.0380126 0.0687088 -0.0127776 +0.0454875 0.0624627 0.0298224 +-0.0929393 0.122846 0.0403052 +-0.0619477 0.0629617 0.0272004 +-0.0632548 0.171035 -0.0614506 +-0.062927 0.150005 -0.0233391 +-0.0539078 0.109837 -0.0181931 +-0.0143481 0.129147 0.0116153 +-0.00460956 0.130321 0.00366937 +0.00735598 0.0509889 -0.0291303 +-0.0480744 0.151666 -0.00489643 +-0.0220459 0.166878 -0.0109827 +-0.0178225 0.0869056 -0.0385387 +0.000268234 0.0669357 -0.034172 +-0.0454819 0.0861255 0.0441555 +-0.0606958 0.0340151 0.0191666 +0.0293305 0.049536 -0.0137505 +-0.0661283 0.153073 -0.0457545 +0.0127964 0.0685744 0.0536204 +-0.0806268 0.150792 0.0343829 +0.0338754 0.0626989 -0.015804 +-0.0415032 0.116675 0.0325492 +-0.00995367 0.16681 -0.0217203 +0.059153 0.0704954 0.0131546 +-0.084323 0.0804069 0.00350409 +-0.0217865 0.0742531 -0.0388026 +0.0333307 0.040756 0.0270424 +-0.00920453 0.175559 -0.0287981 +-0.0565093 0.148178 0.0306333 +-0.0476849 0.146264 0.00805502 +-0.0896679 0.144435 0.0294634 +0.028326 0.0882981 -0.0214817 +-0.0129215 0.129318 0.0179306 +-0.0275354 0.0822426 0.0485604 +-0.0727818 0.154043 -0.034905 +0.0264706 0.0430524 -0.00597567 +-0.0461097 0.129234 0.00159921 +0.00227538 0.0668963 -0.0335609 +-0.0869081 0.0847086 0.0134765 +-0.071509 0.105494 0.0375699 +-0.0564975 0.105681 0.0408231 +-0.0709683 0.136976 -0.00769814 +-0.0238604 0.0347884 0.0456435 +-0.0248096 0.123255 -0.00440954 +-0.0504992 0.0917781 0.0442368 +-0.0672114 0.120049 0.0520179 +-0.067142 0.163768 -0.057034 +-0.0628433 0.16149 -0.0495873 +-0.0851762 0.106326 0.0223754 +0.0111461 0.101633 -0.021979 +0.0319374 0.0568888 -0.0147656 +0.0282794 0.120663 0.00443205 +-0.0912918 0.116401 0.0420373 +-0.00467238 0.0555139 -0.0327809 +-0.0267099 0.0794912 0.0492298 +-0.0226371 0.0622591 0.0442913 +0.0496058 0.0730794 0.0103455 +0.0134712 0.0347114 0.0266012 +-0.027103 0.0633188 -0.0304321 +-0.00446177 0.12682 -0.00651375 +-0.0184963 0.10441 0.0431068 +0.0322846 0.110983 -0.00760517 +0.043549 0.0987325 0.00516762 +-0.0442869 0.166804 -0.00853834 +0.0150912 0.0940152 0.0500689 +-0.07081 0.110507 0.0424798 +-0.0141183 0.115602 -0.0164489 +-0.0567507 0.13816 0.0319811 +-0.0047515 0.0726952 -0.0359954 +-0.0647331 0.0606321 0.00547671 +0.0292295 0.102131 0.038919 +-0.0328692 0.104316 -0.0215625 +-0.0105189 0.165484 -0.0170149 +-0.062488 0.161561 -0.0255895 +-0.083006 0.110313 0.0398706 +0.00202549 0.0390793 -0.0109499 +0.0598509 0.0692231 0.0121425 +-0.0486599 0.0649886 -0.0131055 +0.0193632 0.0475344 -0.0219845 +-0.0505005 0.109789 0.0379415 +0.0227584 0.0942129 0.0471436 +-0.054587 0.123231 -0.00812744 +0.0595925 0.0636093 0.00613697 +-0.0304354 0.159526 0.00145329 +-0.0771836 0.152278 0.0340017 +-0.0641378 0.146153 -0.0169913 +-0.012496 0.0828987 0.0575341 +-0.062259 0.0636125 0.0283336 +-0.0543842 0.064934 0.034129 +-0.0580097 0.136726 0.0336791 +0.0431148 0.0723568 0.0271232 +-0.0719688 0.147362 0.0419058 +0.0324265 0.0414912 -0.00365574 +-0.0504972 0.083371 0.044762 +-0.0277551 0.121254 0.0258902 +0.0248126 0.0672364 0.0446067 +-0.0748658 0.148574 -0.0178655 +0.0199833 0.0422265 0.0426566 +0.00936651 0.0494737 -0.0282538 +-0.0209427 0.127053 0.0165011 +0.014824 0.0950266 -0.0246047 +0.0416966 0.0899224 0.0287651 +-0.0417723 0.0826397 -0.0208385 +-0.0228105 0.123961 0.023212 +-0.0701997 0.155611 0.00411308 +-0.0246949 0.0550734 -0.0288078 +-0.0220519 0.163768 -0.0162501 +-0.0324478 0.069454 -0.0224572 +-0.0827552 0.07629 0.0125227 +-0.0606527 0.151084 0.0352378 +-0.0798891 0.0706304 0.0135503 +0.0476495 0.073201 0.00955169 +-0.00859398 0.0391639 -0.0259828 +0.0142802 0.0873929 0.0523851 +-0.00841973 0.128157 0.0268439 +-0.0665531 0.160013 -0.0120422 +-0.029443 0.0834063 0.0447309 +-0.0564979 0.0776594 0.043476 +-0.0483279 0.119696 0.0300033 +0.0232683 0.0857035 -0.0248261 +0.0321971 0.112814 -0.0055615 +0.0190831 0.0713469 0.0504539 +-0.054494 0.0465534 0.0422647 +-0.0121699 0.165481 -0.0142428 +0.000511137 0.0814953 0.0573473 +-0.0115028 0.0730832 0.0562182 +-0.0401042 0.037954 0.0427598 +-0.0114161 0.0382303 0.016554 +0.0328182 0.0967204 -0.0144274 +-0.00449908 0.0732747 0.0586205 +0.00733671 0.115147 -0.0180672 +-0.0476206 0.111206 -0.0176722 +-0.0624082 0.147544 -0.00957064 +-0.0615795 0.156866 -0.0245858 +0.0175138 0.12671 0.0232635 +-0.0697118 0.0764164 -0.0147262 +-0.0543713 0.158326 -0.00178875 +0.00713327 0.105885 -0.0207766 +-0.033517 0.115303 0.0329858 +-0.0114926 0.0897634 0.0564161 +-0.0375058 0.171208 0.000818011 +0.00542741 0.0336773 0.0131964 +0.0379386 0.07401 0.0354837 +-0.0860277 0.0967286 0.000430639 +-0.0311614 0.0791685 -0.0325602 +-0.0541101 0.0531993 -0.0053725 +-0.0592659 0.0599215 0.0215991 +0.0586637 0.0709935 0.0122726 +-0.0792595 0.0894709 -0.0095871 +-0.026159 0.0918036 0.0468933 +-0.0249745 0.12528 0.0180213 +-0.0519836 0.0517496 0.0236325 +-0.0275449 0.178709 -0.00674077 +-0.0715237 0.165101 -0.0167379 +0.0256965 0.123446 0.00917645 +0.0235224 0.0727618 0.0480692 +-0.0144773 0.0603048 0.0528052 +0.0408807 0.0948081 -0.00628698 +-0.0515819 0.0344024 0.0295565 +0.0311435 0.0885162 -0.0196004 +-0.087234 0.0981695 0.00341761 +-0.0165631 0.165424 -0.0118502 +-0.0497796 0.0518319 0.0348836 +0.0296893 0.110128 -0.0107004 +-0.0212542 0.126244 0.0193308 +-0.0315215 0.0732244 0.0404306 +0.0265706 0.0535806 -0.0207269 +-0.0944184 0.12146 0.0172829 +-0.0780287 0.14129 -0.00491664 +-0.0653187 0.152492 0.0351215 +0.0369332 0.102635 -0.00864905 +-0.0100919 0.126182 -0.00573829 +-0.0589643 0.15508 0.0013052 +-0.00782857 0.0386419 0.00238313 +-0.0893654 0.145802 0.0291185 +-0.077209 0.110378 0.0446936 +-0.0127752 0.0770687 -0.0383028 +-0.060466 0.143311 -0.00379205 +-0.0907002 0.137837 0.017198 +-0.0553853 0.15628 0.0108911 +-0.0609254 0.0454597 -0.00231147 +0.041351 0.0574751 -0.0052144 +-0.0111235 0.0346639 0.0467191 +-0.0520649 0.148658 -0.00262972 +-0.0438434 0.0985095 -0.0215595 +-0.0678163 0.0866062 -0.0177767 +0.0287562 0.053781 -0.0187512 +0.0338991 0.057119 -0.0127141 +-0.0189243 0.181629 -0.0169471 +-0.0888863 0.113493 0.0234001 +-0.0456524 0.0621788 -0.0131898 +-0.0205797 0.0906821 0.0540574 +-0.0285047 0.059221 -0.0254142 +-0.0310985 0.154152 -0.00673494 +0.0362687 0.0941823 0.0368117 +0.0223945 0.0860763 -0.025219 +0.0228611 0.0741302 0.0488936 +-0.0274872 0.094655 0.0450969 +-0.0238248 0.0826344 -0.0380614 +-0.044527 0.0601701 0.0393419 +0.0160126 0.0658829 0.0512178 +-0.0663487 0.06206 0.00207137 +0.000401309 0.0390966 -0.0249339 +-0.027107 0.082291 0.0495314 +-0.0617626 0.0415173 0.0247032 +-0.093011 0.118839 0.0352993 +-0.0662787 0.168684 -0.0320741 +-0.000498287 0.0535066 0.0547347 +0.0431795 0.0737197 0.0272167 +-0.0565118 0.0454033 -0.00602573 +-0.0668006 0.086643 -0.0182518 +-0.0652487 0.163342 -0.0202167 +0.0392901 0.0766734 0.0339466 +-0.0619246 0.106845 -0.0166571 +-0.0611633 0.0334354 -0.00188959 +-0.0722746 0.15542 -0.0369062 +-0.0690618 0.110676 0.0409548 +0.0432493 0.100107 0.00716752 +0.0317499 0.0535218 0.0369319 +-0.0492036 0.131059 0.0288275 +-0.0693592 0.176521 -0.047588 +-0.0072207 0.0356289 0.0484876 +-0.0818563 0.150046 0.00220642 +-0.0435006 0.0534118 0.0391466 +-0.0714969 0.156283 0.0152923 +-0.0883581 0.0875191 0.0194553 +-0.0774993 0.127442 0.0532862 +0.0288434 0.0591735 0.0415864 +-0.053835 0.0329874 0.0179508 +-0.0855039 0.140637 0.0423198 +-0.0597327 0.156046 0.0093301 +-0.052462 0.0642313 0.0336351 +0.000500084 0.12107 0.0367737 +-0.0692573 0.169753 -0.0288779 +-0.0156709 0.0385345 -0.00280448 +-0.00949582 0.118295 0.0381649 +0.0330035 0.116489 0.00476188 +0.0153369 0.0552331 -0.0286287 +-0.0105333 0.0457993 0.0483516 +0.00652975 0.0380351 0.0455331 +-0.0714995 0.101334 0.0391804 +0.0236022 0.115739 -0.0107408 +-0.0580129 0.118724 -0.0113962 +-0.0543247 0.0500125 0.0112758 +0.0587422 0.0635506 0.00411936 +-0.0589036 0.112559 -0.0155981 +-0.0640258 0.15968 -0.0562568 +-0.00990982 0.175697 -0.0247542 +0.00695815 0.0340953 -0.0204902 +-0.0591465 0.152697 -5.16463e-05 +-0.00975768 0.167025 -0.0223761 +-0.0383481 0.0417109 -0.0273458 +0.0463963 0.0778578 0.0141787 +-0.0720541 0.0777606 0.0379027 +0.0259403 0.1091 -0.0135959 +-0.0758056 0.0891863 -0.013912 +0.0429603 0.0873797 -0.00580114 +-0.0676348 0.0704852 -0.0103532 +-0.066267 0.176761 -0.0601056 +-0.013866 0.129156 0.0103484 +-0.067642 0.150503 -0.040589 +-0.0180327 0.0404537 0.0526147 +0.0183116 0.0636834 -0.0282837 +-0.078386 0.154762 0.00850622 +0.030569 0.0491561 0.035175 +-0.0622212 0.169401 -0.0515858 +-0.0565139 0.0548538 0.00566103 +0.00623573 0.0382417 0.0273828 +-0.038479 0.0945169 0.0431902 +-0.00987706 0.108745 -0.0220853 +-0.0621803 0.161575 -0.027587 +-0.0176337 0.125847 -0.00119502 +0.0328914 0.0578172 0.038629 +-0.0414935 0.0776367 0.0431734 +0.0432388 0.0804742 0.027354 +-0.0137772 0.0770735 -0.0384143 +0.0572117 0.0509068 0.011186 +-0.0689532 0.132595 -0.00851473 +-0.0655849 0.0622273 0.00026904 +-0.0535585 0.062801 0.0308747 +-0.0779359 0.154614 0.00720975 +0.00448513 0.0964789 0.0523472 +-0.060329 0.11723 -0.0118118 +0.029915 0.0430998 0.0305942 +-0.0275027 0.115261 0.0337596 +-0.0635137 0.0412627 -0.00639269 +-0.0164929 0.11134 0.0406952 +0.0292409 0.0951488 -0.0187111 +0.0324104 0.0430965 -0.00468251 +0.0317605 0.08491 0.0425067 +0.0289099 0.0929198 0.0437028 +-0.0707001 0.15817 -0.0449161 +0.0551137 0.0732038 0.0153863 +-0.0823243 0.154364 0.0217732 +-0.0715111 0.145604 0.0434169 +-0.0325077 0.0632413 0.0389915 +-0.0696524 0.0680017 0.0300044 +0.0102276 0.0809104 -0.0321098 +-0.0244999 0.049902 0.0466266 +-0.0554111 0.0574706 -0.0044262 +-0.0628667 0.101101 -0.0182166 +-0.00650089 0.0661332 0.0560881 +-0.0330903 0.15925 -0.0128209 +0.042117 0.0792074 0.0292753 +-0.085793 0.0818712 0.00648437 +-0.0594817 0.0426754 0.0236965 +-0.0539359 0.0541543 0.0107637 +-0.00998113 0.12997 0.0175362 +-0.0633398 0.0410523 0.0148679 +0.0595186 0.0696512 0.0111197 +-0.0628106 0.0420167 0.0410925 +-0.0280399 0.038261 0.000453129 +-0.0314842 0.0386701 -0.0153847 +-0.0183396 0.183004 -0.0240946 +-0.0414917 0.0662628 0.0414077 +-0.0512875 0.0335238 -0.00177633 +-0.009723 0.0684621 -0.0362531 +-0.0736747 0.166615 -0.0419946 +-0.0678387 0.0966346 -0.0163917 +-0.0609822 0.170956 -0.0597011 +-0.0778143 0.0696403 0.00741827 +-0.00249339 0.0619776 0.0560364 +-0.0574944 0.0732758 0.0411576 +0.0174045 0.0834609 0.0516215 +0.0222999 0.0360441 0.0108303 +-0.0134047 0.0981882 0.0494032 +-0.0437579 0.0335748 -0.0150071 +0.0210813 0.123852 -0.00148905 +-0.0530498 0.14867 -0.00246875 +-0.00549096 0.105886 0.0440438 +0.0181231 0.0349865 -0.00397885 +0.011218 0.0822648 -0.0313395 +-0.0785671 0.172906 -0.0416992 +-0.0304948 0.094646 0.0448519 +-0.0315011 0.101567 0.0426346 +-0.0867319 0.116264 0.0471164 +-0.0745642 0.0928269 0.03994 +-0.0287411 0.0366033 0.0533099 +-0.0733382 0.158682 -0.00576511 +-0.011641 0.172783 -0.0205328 +-0.0261276 0.166758 -0.01752 +0.0323797 0.117481 0.0145242 +-0.073083 0.166616 -0.0429976 +0.00318323 0.0894801 -0.0335291 +-0.0592544 0.0696245 0.0378273 +0.00902499 0.0346466 0.0239397 +-0.0614627 0.0334736 0.00162861 +-0.081048 0.154699 0.0221975 +-0.0337735 0.0765809 -0.0265027 +-0.0440788 0.0336672 -0.00594116 +-0.0501186 0.0375352 0.0462556 +0.0383972 0.0931984 -0.0106151 +-0.0507798 0.0488052 0.0196439 +0.0480167 0.0525694 0.0306027 +-0.0715181 0.0657302 0.000515199 +-0.0584278 0.0383351 -0.00941724 +-0.0484961 0.0987927 0.0435149 +-0.00449408 0.088412 0.0569078 +0.00197552 0.0378956 -0.000532016 +-0.0538466 0.0665391 0.0363755 +-0.0736039 0.148578 -0.0278556 +-0.0406505 0.117474 -0.0142631 +-0.0354963 0.0690808 0.0415601 +-0.063566 0.148289 0.0378536 +0.0187266 0.0350257 0.0273865 +0.00460237 0.0388981 -0.00652166 +-0.0775459 0.0688051 0.0117853 +-0.0880987 0.13916 0.0101984 +-0.0871517 0.106348 0.0123653 +-0.0867616 0.0833332 0.0134846 +-0.053009 0.0343093 0.0275811 +-0.0793348 0.0980896 0.0346601 +-0.0751339 0.0669087 0.0157231 +0.0158163 0.0344928 -0.00398192 +-0.0754309 0.0981509 0.0378194 +-0.0695415 0.15615 0.0130838 +0.00196735 0.0370051 -0.0146847 +-0.0711264 0.142566 -0.0097279 +-0.0202009 0.17418 -0.0222934 +-0.0315791 0.125791 0.0170798 +-0.0460989 0.157633 -0.00826241 +-0.0164967 0.0701922 0.0547571 +0.0456793 0.0890097 0.00617442 +-0.0263303 0.0336202 -0.0227625 +0.0458885 0.0778077 0.00419775 +-0.0613708 0.044683 0.0409908 +0.00384566 0.0341227 -0.0209701 +-0.0771455 0.156966 -0.0119003 +0.0355806 0.113279 0.0157103 +-0.036902 0.0362143 0.0131672 +-0.0532397 0.146242 0.0224016 +-0.0474989 0.107059 0.0399589 +-0.0857477 0.109049 0.020349 +-0.0892569 0.122633 0.00330914 +0.054626 0.0562289 -0.00078591 +-0.0161012 0.16832 -0.0147108 +-0.0788763 0.0949177 -0.010577 +0.026592 0.0578126 -0.0217526 +-0.061825 0.164563 -0.0576805 +-0.0210306 0.180146 -0.0147237 +-0.0474984 0.0833402 0.0443799 +-0.0884317 0.131079 0.0440854 +-0.0591643 0.0341749 0.0263998 +0.0381002 0.078079 0.0357853 +-0.0515897 0.146262 0.0154112 +0.0121111 0.116449 0.0370148 +-0.0414388 0.033531 0.00382893 +-0.0200653 0.172726 -0.0151523 +-0.0170332 0.164657 -0.0177746 +-0.0212056 0.0336704 -0.0218021 +-0.0696662 0.0710058 0.0344116 +-0.0516682 0.152149 0.0128837 +-0.0125103 0.0687513 0.0543288 +0.0366353 0.0982561 -0.0107953 +-0.0789343 0.0700266 0.0104198 +-0.0897898 0.136552 0.0342 +-0.0127086 0.0383825 0.00890404 +-0.0624498 0.166273 -0.0455815 +0.0326592 0.0619445 0.0401066 +-0.0457467 0.132003 0.0161756 +-0.0886572 0.111878 0.019323 +-0.0532618 0.0335957 0.00317772 +-0.0164951 0.109966 0.0413377 +0.0543768 0.0731861 0.0106539 +-0.0174802 0.127364 0.0206736 +0.0567172 0.0621967 0.0256596 +0.0464307 0.0792576 0.0101822 +-0.0292965 0.0818454 -0.0346209 +0.0426284 0.0719164 -0.00480026 +0.0578503 0.0648244 0.0238145 +0.0430174 0.0637781 -0.0018983 +-0.0794408 0.0768726 0.0291038 +0.0545285 0.0622324 0.0277996 +0.0441819 0.0945484 0.0191589 +-0.0284244 0.119569 -0.0104891 +-0.0778403 0.10982 0.0432074 +0.0160506 0.0754058 0.0531341 +-0.0523159 0.0517943 0.0256431 +-0.0181754 0.17123 -0.0220272 +-0.049306 0.147765 0.0110054 +-0.0405044 0.166738 0.00354035 +0.0214342 0.0934308 -0.0229317 +0.0452295 0.0931909 0.0101587 +-0.0352058 0.126987 0.0025067 +-0.0177396 0.0642294 -0.0366219 +-0.0251728 0.1712 -0.0194857 +0.0122607 0.0538397 -0.0290819 +-0.0902417 0.133644 0.00722857 +-0.0815914 0.0767239 0.0235201 +-0.0534472 0.146228 0.0234079 +0.0235949 0.0875751 0.0483132 +-0.0647237 0.158466 -0.0128094 +-0.0260145 0.0688342 -0.034504 +-0.0770801 0.15139 0.0355785 +-0.0630768 0.0336712 -0.00794186 +-0.0574971 0.10156 0.0427298 +0.0435266 0.0664036 0.0265247 +-0.0500812 0.146304 0.0115954 +-0.0568525 0.0521385 0.00567837 +-0.0436626 0.0607395 -0.0127771 +-0.0426472 0.117732 -0.0145554 +-0.0805782 0.112389 0.0458728 +-0.0161125 0.127667 0.00290411 +-0.00749701 0.0576432 0.054379 +-0.0454968 0.0775542 0.0422104 +-0.0694956 0.0958583 0.0420894 +-0.0369639 0.0346855 -0.0305537 +-0.0640756 0.151735 -0.033508 +-0.00249095 0.0718247 0.0580407 +-0.0583644 0.065095 0.0331446 +-0.0748917 0.16378 -0.0359985 +-0.0710199 0.0662278 0.0242287 +0.035425 0.0754528 0.0389267 +-0.0547392 0.075379 -0.0185175 +0.0462455 0.0784487 0.0155769 +-0.0310503 0.155166 -0.00836756 +-0.0879532 0.117604 0.0468721 +-0.0630191 0.169374 -0.0476038 +-0.0445267 0.0423569 -0.0163056 +-0.0624997 0.0818785 0.0437679 +-0.0842794 0.115636 -0.000747849 +-0.0700345 0.0631474 0.0200567 +0.0125104 0.105746 0.0436503 +-0.0795696 0.0976882 -0.00856087 +-0.0495247 0.141678 0.0113921 +0.0166382 0.123302 0.0301317 +-0.0367737 0.0813353 -0.0218258 +0.0465043 0.0597504 0.0314309 +-0.0777677 0.0975799 -0.010556 +-0.0460219 0.166062 0.00401182 +0.0609087 0.0623561 0.0101482 +-0.0403969 0.033577 0.00400031 +0.0286533 0.0578113 0.0412965 +0.0447855 0.0917675 0.0181585 +-0.0238167 0.0929782 -0.0327062 +-0.0714891 0.129823 0.0511416 +-0.0235755 0.157761 -0.0033973 +-0.0525761 0.136549 0.0284096 +-0.0177757 0.0756957 -0.0389571 +-0.0184004 0.0383962 0.0258071 +-0.0162165 0.175672 -0.0252165 +-0.0326786 0.0835446 -0.0285522 +-0.0897198 0.135201 0.0382086 +0.0138704 0.12508 0.0305218 +-0.0334383 0.0383149 -0.00250434 +0.0173372 0.059408 -0.0277846 +0.02739 0.119413 -0.00163712 +-0.055795 0.129741 0.0368819 +-0.0124902 0.0560062 0.0517339 +0.00742257 0.034128 0.000278711 +0.0312441 0.0828649 -0.019558 +-0.0804968 0.149757 0.0362335 +0.0224909 0.107012 0.0395338 +-0.0282283 0.117946 -0.012805 +-0.0726553 0.180933 -0.0546755 +-0.0683563 0.134056 0.04686 +-0.0197453 0.163025 -0.0159769 +-0.0591933 0.155725 0.01387 +-0.0522733 0.13577 -0.00153662 +0.0413723 0.0971667 -0.00382246 +-0.0920493 0.125439 0.00826634 +-0.0522301 0.0388364 0.0467813 +0.0151427 0.107227 -0.0182666 +-0.0397192 0.03358 0.00232461 +0.0373971 0.049112 -0.00639066 +-0.0698932 0.120907 -0.00884856 +-0.0667865 0.156181 0.0155153 +-0.0865635 0.0819919 0.0164862 +-0.0276111 0.0476412 -0.0256716 +-0.050104 0.0515366 0.0156131 +-0.0466794 0.0620985 -0.0127944 +-0.0784369 0.170061 -0.0360578 +-0.0714268 0.173765 -0.0397048 +-0.0313808 0.0567165 -0.0143886 +-0.0309651 0.0347631 0.0441412 +0.0067865 0.130497 0.0221788 +-0.0524448 0.149335 0.0194038 +-0.0414976 0.0860064 0.0425981 +-0.0709701 0.155369 -0.0459101 +0.00322675 0.0810659 -0.0345434 +-0.0294909 0.0917678 0.0440939 +-0.0734658 0.151245 -0.0358847 +-0.079509 0.130274 0.0528999 +-0.00249263 0.0534855 0.0544759 +-0.070992 0.0395652 0.00837515 +-0.0868944 0.122556 -0.00173403 +-0.0574179 0.0608499 0.024689 +-0.0424855 0.09447 0.0423231 +-0.00342977 0.0386245 0.00511046 +-0.018769 0.037629 -0.017491 +-0.0527937 0.0869491 -0.0216809 +-0.0846182 0.106299 0.024344 +0.0443742 0.0818795 -0.000800454 +-0.0894613 0.148789 0.0111841 +-0.0867708 0.110409 0.0193573 +-0.0310025 0.176085 -0.0150686 +0.00863383 0.115058 0.0390007 +-0.0408994 0.163853 0.00394115 +-0.057289 0.0707546 0.0390509 +-0.0646832 0.0432745 0.0336962 +0.0205013 0.0892461 0.0486645 +-0.0625318 0.0662874 0.0329584 +-0.0608083 0.147764 -0.00265379 +0.00615212 0.112907 -0.0196236 +-0.0299927 0.0436118 -0.0290457 +-0.0158151 0.162561 -0.00896512 +0.00597686 0.130404 0.00157669 +0.0284244 0.0822003 0.0446831 +0.0211099 0.0605491 0.0480139 +-0.0234016 0.184697 -0.0149423 +0.00333349 0.0390305 -0.00876711 +-0.0635183 0.159851 -0.052592 +-0.0770983 0.150031 -0.00589737 +0.0214723 0.0878669 0.0490265 +-0.0679264 0.131258 0.0474463 +0.00194863 0.100763 -0.0227079 +0.00777681 0.0385776 0.0292039 +-0.022633 0.08929 0.0533197 +-0.00603192 0.127393 0.0291246 +-0.0911594 0.120221 0.0443019 +-0.0894985 0.121276 0.00330358 +-0.0368227 0.0914861 -0.023804 +-0.0530502 0.151987 0.0175947 +-0.0672887 0.121448 0.0519139 +-0.0568311 0.0912579 -0.0217399 +-0.0697681 0.0822532 -0.0170635 +-0.0874076 0.0990828 0.0243308 +-0.0355048 0.108366 0.0378272 +0.0287346 0.10342 0.0381993 +-0.0860991 0.0964962 0.0273389 +0.0321886 0.108821 -0.00928902 +-0.0781375 0.103077 -0.00856917 +-0.0630075 0.0458305 0.00872119 +-0.0737672 0.068042 0.0238437 +-0.0863239 0.111846 0.0325401 +-0.00949559 0.10164 0.0439977 +-0.0902184 0.117255 0.00530427 +-0.075404 0.0914629 0.0394057 +-0.0453927 0.0336614 -0.0191153 +-0.0827835 0.0790493 0.0255103 +-0.0912019 0.132413 0.0272298 +-0.0564798 0.081975 0.044689 +-0.072928 0.148723 -0.0327819 +-0.00163455 0.0466691 -0.0289171 +-0.0665675 0.0355377 -0.00701232 +-0.000953404 0.100702 0.0462281 +-0.00881786 0.169637 -0.0227487 +-0.0201288 0.165284 -0.0176913 +-0.0859703 0.127103 0.0488324 +0.0255102 0.106068 0.0387825 +0.0570523 0.0522954 0.00619533 +-0.0407044 0.0491484 -0.0113833 +-0.0394747 0.168236 0.00277528 +-0.0690053 0.160967 -0.0519594 +0.0161135 0.0534638 0.0477167 +0.0284604 0.079188 -0.0220838 +0.0113708 0.0523816 -0.0287924 +0.0393128 0.0955964 -0.00780286 +-0.020906 0.0387029 0.0322136 +-0.00871553 0.0642094 -0.0357226 +-0.0547883 0.08548 -0.0214211 +-0.0725291 0.0901409 0.0413911 +-0.0566631 0.0629472 -0.00640536 +0.00234532 0.0524899 -0.0301138 +-0.0938956 0.118755 0.0202995 +-0.0414996 0.0846033 0.0426094 +0.00904636 0.090083 -0.0314826 +0.00730102 0.131 0.00524198 +-0.0637681 0.0809918 -0.0188675 +-0.0414945 0.041025 0.0428519 +-0.087002 0.140499 0.00821758 +-0.0709364 0.151841 0.036169 +-0.0634902 0.106988 0.0392647 +-0.0628225 0.0910404 -0.0189489 +-0.0105509 0.165091 -0.0177492 +-0.00157082 0.0341515 -0.0183868 +-0.0378749 0.105661 -0.0201869 +-0.0689412 0.079144 0.0404114 +-0.0239658 0.0335277 -0.0259671 +-0.0732183 0.172207 -0.0490431 +-0.0205007 0.0971766 0.0453281 +-0.0778797 0.109167 0.0401678 +0.000488577 0.0965409 0.0535304 +-0.0172908 0.177187 -0.018141 +0.00409629 0.128905 0.0269756 +0.0212668 0.080528 -0.0265872 +-0.0484872 0.0931824 0.0442201 +-0.0703872 0.161044 -0.0469664 +-0.0556945 0.0334591 0.00641451 +0.043113 0.0972735 0.00118522 +-0.0465526 0.147719 0.00793526 +-0.0620051 0.0336477 0.00854436 +-0.0789484 0.130998 -0.00538086 +-0.0329884 0.0347673 0.0437059 +-0.011676 0.0389222 -0.00979553 +-0.0102112 0.168384 -0.01842 +-0.058489 0.0747585 0.0420339 +0.0115041 0.129313 0.00109395 +-0.0186879 0.0554617 -0.0328673 +-0.0198225 0.168315 -0.0130587 +-0.013087 0.0382629 0.0179922 +0.0130281 0.0916311 -0.029044 +0.0271142 0.0463333 0.0371793 +-0.0618303 0.167813 -0.0535931 +0.0164903 0.113991 0.0376096 +-0.0592845 0.0336203 0.0127024 +-0.0728419 0.0642516 0.016748 +-0.0527116 0.12267 0.0360612 +-0.091424 0.144749 0.0231531 +0.0225812 0.0946281 -0.0221802 +-0.073319 0.153662 0.0322986 +-0.0384844 0.109782 0.036904 +-0.0551177 0.156069 -0.00176933 +-0.0195075 0.0512747 0.046374 +0.0374508 0.109679 0.00217662 +-0.0624744 0.163093 -0.0485882 +-0.0482041 0.0335795 -0.00119996 +0.0115865 0.127977 -0.0019288 +0.00494704 0.131338 0.0186496 +0.00228726 0.131702 0.0133903 +-0.0890002 0.134996 0.00522535 +0.0114372 0.12283 -0.0103617 +-0.0719092 0.180772 -0.055937 +-0.0144633 0.051615 0.0495133 +0.0147782 0.034634 0.0233109 +-0.0647828 0.177875 -0.0546137 +-0.0882908 0.103675 0.012381 +-0.0631313 0.0343469 0.025414 +-0.0255881 0.169753 -0.0108444 +0.0323006 0.0361518 0.00522301 +-0.0682938 0.06404 -0.00150269 +-0.0705485 0.167591 -0.022181 +0.0271973 0.0508207 -0.0197147 +-0.01565 0.10151 -0.0235687 +-0.0233444 0.0380443 0.0215084 +-3.10615e-05 0.0346258 0.0437307 +-0.0391691 0.162354 0.00112683 +-0.0657552 0.0422954 0.0115704 +-0.0745006 0.142795 0.0461595 +0.0473913 0.0422357 0.0119475 +0.0144595 0.121944 0.0333941 +-0.00358089 0.036197 -0.0248262 +0.0394746 0.0459091 0.0309432 +-0.0744487 0.141666 -0.00675172 +-0.0615813 0.0380878 0.0442214 +-0.0393467 0.0392853 0.042122 +-0.0229052 0.0945537 0.0478017 +-0.0281182 0.0563778 -0.0244009 +-0.0325146 0.112544 0.0353443 +0.0114695 0.0949418 0.0507264 +-0.027899 0.0377311 0.0244577 +-0.0247344 0.0668597 -0.034525 +-0.0623338 0.163141 -0.0335899 +0.0341266 0.0993109 -0.0131459 +-0.0130965 0.169821 -0.0173751 +0.0250182 0.11137 0.036342 +-0.0513993 0.14316 0.0173798 +-0.0521465 0.121207 0.0350569 +0.0134264 0.0403382 -0.0227982 +-0.0919004 0.143349 0.0181646 +0.0256492 0.0831048 -0.024123 +-0.0614955 0.0973435 0.04311 +0.0110632 0.0360404 -0.022358 +-0.0702704 0.159573 -0.0469358 +-0.0135146 0.181607 -0.0231689 +0.0462675 0.0778418 0.00718957 +-0.057322 0.0452663 0.0256799 +-0.0473932 0.0337786 -0.0140697 +0.0180643 0.0577618 0.0488361 +-0.0840242 0.151932 0.0065796 +-0.0547337 0.0738545 -0.0174125 +-0.0647273 0.156687 -0.0474505 +-0.0184955 0.0513594 0.0472431 +0.0314014 0.0491212 -0.0073371 +-0.0336406 0.0339783 -0.0207966 +0.0302861 0.0722616 -0.0207987 +-0.0707237 0.135491 0.0487549 +0.0373244 0.0861524 0.0364715 +-0.0839874 0.129456 -0.00327263 +-0.0579656 0.0599816 -0.000771046 +-0.0374903 0.0917378 0.0437278 +-0.0421167 0.157651 -0.00983865 +-0.0774831 0.151439 -0.0048996 +-0.0664918 0.167987 -0.0292876 +-0.0348246 0.12664 0.0173665 +0.0288107 0.113482 -0.00830654 +-0.0939345 0.122834 0.0252963 +-0.0236453 0.0906062 0.0514725 +-0.0623453 0.151603 -0.000787959 +-0.0394885 0.0520168 0.0393574 +-0.0228668 0.103033 -0.0236969 +-0.0205005 0.115412 0.03703 +-0.0206187 0.158806 -0.0102834 +-0.00380864 0.0840797 -0.0375505 +-0.0846424 0.139002 0.00130344 +-0.0244403 0.0384399 0.0299279 +-0.0256136 0.0707601 0.0441795 +0.0431065 0.0733659 -0.00379081 +-0.0334964 0.0575473 0.0382542 +-0.0732341 0.100848 0.0383652 +-0.0417523 0.0392031 -0.0263092 +-0.0600247 0.0335577 0.00903367 +0.0319454 0.0782138 0.0427262 +-0.0478947 0.122501 0.0288841 +-0.0215102 0.0435311 0.0534788 +-0.0175036 0.0357848 -0.0270478 +-0.0659221 0.115196 -0.0104247 +-0.0452512 0.0574076 0.0387158 +-0.0318518 0.100063 -0.022678 +-0.062214 0.131105 0.0398962 +-0.0570307 0.151068 0.0316808 +-0.0390807 0.159219 -0.0117734 +-0.0575439 0.0421232 0.0457366 +-0.0434958 0.166715 0.00391556 +0.0435215 0.0973118 0.0181533 +0.0364745 0.0384289 0.0206775 +0.00783805 0.034796 0.0434029 +0.00550647 0.0519309 0.0530702 +-0.0452904 0.125307 0.0239255 +0.0384949 0.0469555 0.0314897 +-0.0344994 0.0860255 0.0426749 +-0.0604675 0.0334377 0.00185915 +0.00564306 0.109569 0.0416563 +-0.0341393 0.169665 -0.0151103 +0.0252174 0.115733 -0.00872379 +-0.0432318 0.0365168 -0.0263599 +-0.0648058 0.0881399 -0.0188881 +-0.0113055 0.0420913 0.0500945 +-0.0768733 0.0742923 -0.00658087 +-0.0718355 0.0757492 0.0369191 +-0.00552934 0.126815 -0.00649473 +-0.015298 0.113338 -0.0180384 +-0.0658513 0.168603 -0.0333515 +-0.0769239 0.160393 -0.0146649 +-0.0789031 0.0913518 0.0358575 +-0.0622512 0.175627 -0.0566298 +0.0427075 0.100107 0.0161639 +-0.0122664 0.0420539 0.0504523 +-0.0593768 0.116855 0.0386274 +-0.0207916 0.117992 -0.012906 +-0.0209967 0.0893299 0.0545201 +-0.0293388 0.0522666 -0.0213646 +0.042 0.102859 0.00616839 +-0.0915744 0.128321 0.0372423 +-0.0745556 0.104899 0.0367465 +-0.0874341 0.0860792 0.0144694 +-0.0893403 0.0983511 0.0184032 +0.0265834 0.0915781 0.0456097 +0.0111147 0.0359709 0.0304167 +-0.0251149 0.163764 -0.0159045 +0.0379525 0.0888235 0.0356698 +-0.0308593 0.102934 -0.0225503 +-0.0849458 0.0817985 0.00448942 +0.016843 0.101962 -0.021958 +-0.0602648 0.153206 0.0324327 +-0.00109974 0.118227 -0.0153259 +-0.0277867 0.0904111 0.0457123 +-0.0632329 0.149656 -0.0246848 +-0.0378318 0.0943285 -0.0232947 +0.00942926 0.0360304 0.00452751 +0.00308943 0.0346383 -0.0160359 +-0.0629538 0.164686 -0.0335942 +-0.0707579 0.0639499 0.00302292 +-0.0806378 0.0734203 0.0185511 +-0.0114878 0.0502762 0.0503958 +-0.051624 0.0589527 -0.00929309 +-0.0724662 0.156284 0.0178613 +-0.0755506 0.0791122 0.0357048 +-0.0599662 0.0605914 -0.00103222 +-0.0407972 0.128426 0.00338476 +-0.0685036 0.0972643 0.0418698 +0.0384545 0.081427 -0.0137424 +-0.0869304 0.137738 0.00419643 +-0.0915894 0.118845 0.0433559 +-0.0375104 0.0344317 -0.0164034 +0.0132714 0.0779991 -0.0309033 +-0.000460653 0.0717499 0.0573883 +-0.0689415 0.128234 -0.0091158 +-0.00449889 0.0389099 -0.0139692 +-0.00687105 0.104506 -0.0230032 +-0.0625734 0.0333471 -0.00389969 +-0.0466818 0.0680053 -0.0151447 +0.0325669 0.0564098 0.0381516 +-0.00676687 0.0770295 -0.0375725 +0.031043 0.0535582 0.0376713 +-0.0252324 0.0383969 -0.00646059 +-0.0781312 0.100777 0.0347873 +-0.0351912 0.0448435 0.0445858 +-0.0618482 0.0460583 0.00900481 +-0.0510378 0.148698 -0.00295565 +-0.0758068 0.170822 -0.0449998 +0.0228822 0.0407495 0.0397886 +-0.0556881 0.123137 -0.00801327 +0.041209 0.10285 0.0181659 +-0.057716 0.154704 0.0245626 +-0.0356589 0.0394362 0.046602 +-0.018436 0.0384553 -0.00144245 +-0.0725091 0.147853 -0.0287195 +0.0195403 0.0672509 0.0492981 +-0.00949487 0.11143 0.0422271 +0.0387128 0.0407096 0.0245464 +0.0274937 0.0354669 0.00307886 +0.0251817 0.0344441 0.0110044 +-0.0734653 0.11597 0.0519419 +-0.0517405 0.0367791 -0.0118947 +-0.0313584 0.0347088 0.042355 +-0.0271594 0.0577744 0.0376032 +0.0289959 0.083514 0.0437755 +-0.0609886 0.0421383 0.0435161 +-0.0642758 0.0379734 0.0412454 +-0.0669901 0.171097 -0.0394962 +0.00201718 0.0342688 0.0083365 +-0.0376227 0.0519888 -0.0106273 +-0.0604976 0.0761414 0.0420756 +0.0231651 0.0624431 -0.0251426 +-0.0444966 0.100126 0.0423688 +-0.0434704 0.0888362 0.0427012 +-0.0739012 0.112096 -0.00769672 +0.0113285 0.0381477 0.0446991 +0.0606492 0.0595518 0.0111602 +-0.0344028 0.0453249 -0.0266763 +-0.0238559 0.100178 -0.023968 +0.0124979 0.0363631 -0.0219171 +-0.0386629 0.0606634 -0.011982 +-0.0845122 0.0778323 0.0175087 +-0.0447652 0.0811738 -0.019998 +-0.0325802 0.0708663 -0.0234636 +-0.0428489 0.09852 -0.021578 +0.0343638 0.0491351 -0.00656846 +-0.00173319 0.108975 -0.0214067 +-0.0513914 0.0516798 0.0216239 +0.00608628 0.101527 -0.0214717 +-0.0746196 0.147202 -0.0138555 +-0.0464944 0.0733156 0.0418074 +0.0275533 0.0550749 -0.019815 +-0.0617588 0.0455326 -0.00130544 +-0.0627435 0.14749 -0.0135844 +0.0114636 0.0347788 0.020691 +0.0413154 0.0451948 0.0296022 +-0.0855482 0.149965 0.0308161 +0.045359 0.04899 -0.00489955 +0.000884291 0.038993 0.0274224 +-0.086804 0.0846773 0.00948205 +0.00217921 0.090906 -0.033534 +-0.0074916 0.0518487 0.0520774 +-0.000472995 0.0746288 0.0583091 +0.00707409 0.0348007 0.0234037 +0.0191098 0.127253 0.00673134 +-0.00312412 0.123427 0.0346626 +-0.0251492 0.0379137 0.0122303 +-0.030188 0.124116 0.0205603 +-0.0326284 0.178159 -0.00692862 +-0.0371849 0.0430027 -0.0273252 +0.000516139 0.0703294 0.0566091 +-0.061834 0.155291 -0.0275862 +0.0144787 0.103102 0.0461637 +-0.0601666 0.138122 0.0340792 +0.0447845 0.0903596 0.0201575 +-0.0175794 0.128153 0.00899134 +-0.0654784 0.133956 0.0422213 +-0.078379 0.0698242 0.00895098 +-0.0544145 0.0561001 0.0105768 +-0.0166845 0.0625881 0.0524778 +0.0283147 0.0712973 0.0426773 +0.00750546 0.105745 0.0420743 +-0.0365184 0.126747 -0.000928274 +-0.0297912 0.154227 -0.00467156 +0.0242356 0.0804257 -0.0251216 +-0.0507602 0.0797387 -0.0202693 +-0.0399713 0.112687 -0.0172474 +0.0170749 0.128355 0.00741174 +-0.0399375 0.150681 0.00347523 +-0.0608612 0.0435863 0.0137318 +-0.0365883 0.0485443 -0.0138981 +-0.0910601 0.132402 0.0282222 +-0.0795844 0.0759236 -0.00451678 +-0.0809274 0.12805 -0.00535084 +-0.0711513 0.132664 0.0498849 +0.0150413 0.120568 0.0342385 +0.00849911 0.119651 0.036768 +-0.0569109 0.033599 0.014995 +-0.0689033 0.0887623 0.0428815 +-0.020138 0.166773 -0.018707 +-0.0815894 0.0926183 0.0328436 +0.00319943 0.0866473 -0.0337836 +-0.0528475 0.140082 0.0254195 +0.0217844 0.118301 -0.00950952 +-0.0305318 0.0734349 -0.0315361 +-0.0355385 0.040818 0.0464546 +-0.0446309 0.0563208 -0.0114385 +-0.0779756 0.13395 -0.00568102 +-0.0924453 0.114684 0.0163206 +-0.0427865 0.0855262 -0.0214717 +-0.030041 0.0819074 -0.0335886 +-0.0350329 0.037518 0.0477355 +-0.0574727 0.0791252 0.0438951 +-0.0347822 0.124221 0.0233214 +0.0396853 0.0674479 -0.00978879 +-0.0280887 0.123076 -0.00418723 +-0.0357494 0.0383801 -0.010405 +-0.0896534 0.0983503 0.0154045 +-0.0393744 0.174134 -0.00504658 +-0.00548988 0.121033 0.0366102 +-0.0493281 0.143211 0.0074004 +-0.0618749 0.161566 -0.0365945 +-0.00486561 0.103096 -0.0233724 +-0.0158939 0.0387206 -0.00487532 +-0.0136298 0.0943834 -0.0340901 +-0.0708677 0.158014 -0.00345716 +-0.0679292 0.0674285 0.0308631 +-0.0698001 0.0894083 -0.0167108 +-0.0708742 0.117963 -0.00822963 +0.0544559 0.0679536 0.0254119 +0.0505447 0.0640078 -0.00213219 +-0.0328813 0.11004 -0.0184872 +-0.0329481 0.169751 -0.00390259 +-0.0730465 0.158091 -0.00419381 +-0.0642284 0.165303 -0.0599757 +-0.0393381 0.149359 -0.00118821 +0.027659 0.115893 0.031317 +0.00307915 0.03925 0.0330573 +-0.0268824 0.0338882 -0.0212482 +-0.076206 0.0892711 -0.0135327 +0.036558 0.0887304 -0.0159156 +-0.045503 0.0478046 0.0396725 +-0.00457894 0.0383459 0.0160278 +-0.014359 0.102532 0.0433738 +-0.0263218 0.038308 -0.00105771 +-0.0252694 0.0564528 0.0400125 +-0.0745038 0.137269 0.049596 +-0.0478639 0.102799 -0.0211716 +-0.0698236 0.144589 -0.0179026 +-0.00449355 0.112805 0.041803 +0.0395793 0.107012 0.0171684 +0.0320331 0.117177 0.0215305 +0.0319133 0.103439 0.0357737 +-0.0232571 0.160328 -0.0132723 +-0.0368559 0.101427 -0.0217814 +-0.0779001 0.105799 -0.00757653 +-0.0719733 0.155857 0.00930845 +-0.0667659 0.0664754 0.0301739 +-0.0116086 0.0384341 0.0253641 +-0.0828253 0.0815398 -0.00255091 +-0.00864403 0.0481881 -0.0304747 +-0.0695881 0.0687436 -0.00572614 +-0.053703 0.069339 -0.0141095 +-0.0875622 0.147255 0.0314849 +-0.060703 0.146825 0.0369155 +0.0559661 0.0563559 0.00119345 +-0.0899141 0.140577 0.0142032 +0.0290556 0.0480892 -0.0107335 +-0.0444676 0.0959215 0.0428438 +-0.0126944 0.0614008 -0.0362648 +-0.00712049 0.126279 0.0302479 +0.00717458 0.125139 0.032446 +0.0130051 0.123122 0.0330958 +-0.0658939 0.119442 -0.00885604 +-0.0535827 0.0550746 0.0114399 +0.00820634 0.0865719 -0.0325157 +-0.0358588 0.100033 -0.0223224 +-0.0816885 0.110103 -0.000571623 +-0.0517049 0.0693137 -0.014154 +-0.0304078 0.0499703 0.0425042 +0.0090211 0.0602846 0.0533569 +-0.0102692 0.126825 -0.00441849 +-0.0412575 0.123881 0.0239565 +-0.0304041 0.179805 -0.0103906 +-0.0119972 0.115638 -0.0165051 +0.0413233 0.102851 0.0171643 +-0.032272 0.0343596 0.0389523 +-0.0854712 0.0791996 0.00951147 +-0.0138083 0.082755 -0.0391488 +-0.0256473 0.0335939 -0.0244827 +0.0452831 0.0511563 0.0319003 +-0.0829803 0.153189 0.00837374 +-0.0435404 0.0351992 0.0428237 +0.0114184 0.0389206 -0.0228692 +0.0440394 0.0405103 0.0110966 +-0.0218345 0.0725147 0.0516294 +0.0173744 0.124995 0.027504 +-0.0771042 0.163136 -0.0202013 +0.0282746 0.0494546 -0.0167442 +-0.0703245 0.0805604 0.0403227 +-0.0558701 0.154311 0.0223113 +-0.0790495 0.0785612 -0.00658771 +0.0023439 0.122378 0.0350184 +-0.0220309 0.0609111 0.0451603 +-0.0853195 0.117662 0.0484974 +-0.0580048 0.0366442 0.0464062 +-0.00844255 0.0358982 -0.0250895 +0.0243113 0.119024 -0.0062727 +-0.0558892 0.141955 -0.00229647 +-0.0642262 0.115635 0.0441038 +-0.0719279 0.153998 -0.0419035 +0.0423481 0.0732982 -0.00579253 +0.0103113 0.0595614 -0.0298764 +-0.0818376 0.116236 -0.00283916 +0.0590795 0.0663557 0.00613696 +-0.039497 0.0436994 0.0413132 +-0.0702982 0.0846763 0.0415948 +-0.0167436 0.068615 -0.0382083 +-0.0690033 0.127063 0.0512206 +-0.0485018 0.102883 0.0409949 +-0.0541716 0.144673 0.0274046 +0.0243198 0.0564051 0.0438207 +-0.0308589 0.0382072 0.0517831 +-0.00548321 0.119649 0.0378412 +-0.0606463 0.0434636 0.0431332 +-0.008712 0.171156 -0.0257232 +-0.0444845 0.0846726 0.04342 +-0.0897848 0.135174 0.0342114 +-0.00690926 0.0349718 0.0473534 +-0.0808786 0.122166 -0.00503067 +-0.0779103 0.070378 0.00551561 +0.0134856 0.129689 0.00607818 +-0.0225837 0.0666453 0.0469216 +-0.0525012 0.046573 0.0420391 +-0.0444858 0.091688 0.0430295 +-0.0394965 0.0662956 0.0417788 +0.00897384 0.0364118 0.0277765 +-0.0782046 0.166684 -0.029962 +0.0192461 0.0777761 -0.0276631 +-0.0483417 0.137106 0.010396 +0.0258883 0.12226 0.00355652 +0.0398565 0.0384519 0.0122163 +-0.0408758 0.107069 -0.0201235 +-0.0315055 0.0689302 0.0397623 +-0.068912 0.148468 -0.034342 +-0.0496681 0.0705507 0.0391462 +0.00414266 0.131018 0.00407154 +0.0204354 0.100784 0.0455262 +-0.0587133 0.0708136 -0.0155469 +-0.00369415 0.0386815 0.0249596 +-0.0546088 0.0601814 -0.0071333 +0.0277597 0.0984362 -0.0181936 +0.00136992 0.128685 0.0274437 +-0.0166951 0.0555255 -0.0336624 +0.0054852 0.109984 0.0416767 +-0.079955 0.130987 -0.00485489 +-0.00265109 0.0497012 -0.030809 +-0.0697849 0.145343 0.0431021 +-0.0903934 0.12698 0.0433203 +-0.0409656 0.122163 0.0270528 +-0.056363 0.13673 0.0325483 +-0.00422605 0.0355815 -0.0164762 +-0.0158888 0.123338 -0.00654807 +0.0233356 0.0389315 -0.00470356 +-0.0377622 0.0797629 -0.0199128 +-0.0274204 0.12046 -0.00942796 +-0.0745042 0.0669844 0.00328572 +-0.0544992 0.0400332 0.0469658 +-0.022854 0.100181 -0.0240549 +-0.0748342 0.156367 -0.00257451 +0.00532997 0.0389553 -0.00830106 +-0.0591545 0.129731 0.0390508 +-0.0365933 0.117132 -0.0139142 +0.00710349 0.126169 0.0309735 +0.00420316 0.0838546 -0.0341295 +0.0424932 0.0541962 0.0323753 +-0.0447782 0.039524 -0.0212903 +0.0130456 0.0946785 -0.0262358 +0.0515873 0.047616 0.00226708 +-0.0226971 0.059684 -0.0328522 +-0.0489531 0.117804 -0.0145786 +-0.00521852 0.130779 0.0091953 +-0.0745798 0.155493 -0.021916 +-0.0211637 0.171222 -0.0207379 +-0.0681899 0.15036 -0.0415571 +-0.0645431 0.0356401 -0.00785526 +0.0444401 0.0776895 -0.00177282 +0.0191352 0.0356125 -0.00767677 +-0.0879901 0.0928029 0.00642738 +-0.0274823 0.0617236 0.037721 +0.0406194 0.104193 0.00117617 +-0.0205806 0.0342261 -0.0203167 +0.052283 0.0559902 -0.003254 +-0.0826845 0.0884898 0.0312484 +-0.0354914 0.0719062 0.0418497 +0.00222867 0.0810902 -0.0349213 +-0.0247631 0.123128 0.0239793 +0.00210157 0.111597 -0.0202587 +-0.029962 0.122606 -0.0056563 +-0.0642809 0.173904 -0.0612545 +0.0164873 0.128764 0.0128859 +-0.0290915 0.0334798 -0.0269263 +0.0563251 0.0686891 0.0234174 +0.0388229 0.0428364 0.0281231 +-0.0364553 0.171237 0.000642707 +-0.0695352 0.0422413 0.00168563 +0.0115865 0.119151 -0.014401 +-0.0445078 0.128204 0.0197407 +-0.0735439 0.101276 0.0379813 +-0.0842997 0.131249 0.0498733 +-0.0456134 0.0424471 -0.0132755 +0.00124079 0.0740793 -0.0353703 +-0.0590284 0.155612 0.0197248 +0.00626131 0.0696979 -0.0331897 +-0.0465413 0.123419 -0.0104793 +-0.0145087 0.0587885 0.0518852 +-0.0412993 0.127471 0.0164976 +-0.0621264 0.0457845 0.0326787 +0.00861617 0.0348422 -0.0132521 +-0.0699384 0.129684 -0.00901632 +-0.0174184 0.0961382 -0.0299203 +-0.0408477 0.0999502 -0.0215042 +-0.0629342 0.109643 -0.0151294 +-0.0588992 0.0593658 0.0203903 +-0.0622614 0.0594461 0.0178467 +0.0503092 0.0575099 -0.00459296 +0.0328071 0.0781213 -0.0187889 +0.0297936 0.0354746 0.0165125 +-0.0592597 0.0343664 0.034953 +-0.0736653 0.0761112 -0.0107553 +0.0358581 0.0686798 0.0377462 +-0.0814983 0.102013 0.0310531 +0.0072631 0.0968089 -0.0265119 +-0.0107695 0.0756601 -0.0381615 +-0.0665448 0.142647 -0.010737 +-0.0861837 0.0868588 0.0248974 +-0.0323987 0.114036 -0.016697 +-0.0526124 0.143167 0.0204083 +-0.00749979 0.118315 0.0383098 +-0.0366574 0.0591917 -0.011518 +-0.0854765 0.145991 0.0364919 +-0.0590102 0.131118 -0.0069845 +0.0099878 0.0342067 -0.0142754 +0.0406313 0.0833746 0.032449 +-0.0377389 0.0753784 -0.0182557 +-0.0265179 0.111211 0.0374625 +-0.0457781 0.109842 -0.0182449 +0.0106021 0.12463 0.0322012 +-0.0714609 0.172223 -0.0354286 +-0.0918002 0.143353 0.0191654 +0.009256 0.0681484 -0.0312392 +0.00426025 0.0352382 0.0224392 +-0.0497576 0.0782604 -0.019072 +-0.0628575 0.0953598 -0.0185102 +0.0594691 0.0677866 0.0081304 +0.0120479 0.124912 -0.00663019 +-0.0896003 0.111903 0.0133388 +-0.000572916 0.131478 0.0109076 +-0.0856485 0.103181 0.0252723 +-0.0825849 0.0762413 0.018536 +0.0357614 0.089262 -0.0164786 +-0.0853874 0.0978708 0.0280062 +-0.0250231 0.0373676 -0.0184933 +-0.0224668 0.0384735 -0.00782567 +-0.0215612 0.127036 0.0148264 +0.0375018 0.0527008 0.0316063 +0.0132903 0.0644915 0.0525417 +0.021025 0.0444507 -0.0197096 +-0.0230202 0.0380885 0.0125034 +-0.0190143 0.123258 -0.00649836 +-0.0634892 0.101502 0.0420523 +-0.0022961 0.120938 -0.0122094 +-0.0682754 0.155222 0.00480981 +-0.0105391 0.0444694 0.0492224 +-0.0314884 0.0988001 0.0440684 +-0.0162822 0.113495 -0.0182068 +0.0427502 0.0832247 0.0284671 +-0.0317184 0.124145 0.0214762 +-0.0228243 0.0868132 -0.0375213 +0.0112412 0.122679 0.0339481 +-0.0624726 0.093208 0.0448109 +-0.0195149 0.0474114 0.0506124 +-0.0305029 0.105682 0.0404793 +0.0297926 0.0510441 -0.0147439 +-0.0660587 0.0336733 0.00769062 +0.01375 0.126078 -0.00389468 +0.00623348 0.0768314 -0.0342539 +0.00723812 0.0725784 -0.0338132 +-0.0345032 0.0747169 0.0417978 +-0.0533429 0.0572662 -0.00744815 +-0.0588626 0.0344147 0.0367317 +-0.0597544 0.151092 0.0347772 +-0.066041 0.156288 0.0201296 +-0.0519452 0.0542248 0.0130044 +-0.0536545 0.154299 0.0129697 +-0.0553709 0.131821 -0.00535733 +-0.0165812 0.0355875 -0.0267111 +-0.0671293 0.149176 -0.0346332 +0.0364911 0.112064 0.0146153 +-0.0678122 0.0908837 -0.0169858 +-0.0433492 0.123979 0.0232099 +0.0233446 0.0489622 -0.0213372 +-0.0401353 0.162183 -0.0119788 +-0.0436993 0.0680874 -0.0160622 +-0.0575 0.0589785 0.0215704 +0.002504 0.0605716 0.0560843 +-0.0230753 0.078299 0.0540943 +-0.0532839 0.150877 0.0224035 +-0.0536299 0.144677 0.0243972 +0.0138044 0.129402 0.00474998 +0.0390959 0.0382591 0.0140545 +-0.0935248 0.128245 0.016248 +-0.017174 0.169749 -0.0215263 +-0.00210217 0.035143 0.0464295 +0.00913637 0.105871 -0.0204027 +-0.0861865 0.0926674 0.00242789 +-0.0615271 0.0344278 0.0378839 +0.0506397 0.0652197 -0.00133714 +-0.0859779 0.129848 0.0487451 +-0.0269007 0.0388242 0.0362546 +0.0349035 0.0987755 -0.0125611 +-0.0895593 0.13929 0.0311867 +0.0210026 0.126515 0.0102791 +0.0155029 0.119565 0.0348769 +-0.0660877 0.178333 -0.0536421 +-0.0134986 0.0911752 0.0564813 +-0.0462738 0.0671086 0.039469 +-0.0691002 0.0421453 0.000699576 +0.0106377 0.0658124 0.0539651 +-0.0372457 0.0381548 -0.00680953 +-0.0415057 0.0396254 0.0430594 +-0.0658022 0.0335619 0.00426403 +-0.0549779 0.135599 -0.00339213 +-0.0654711 0.157635 -0.0545345 +-0.0699145 0.135483 0.0481625 +-0.0647392 0.157599 -0.0538703 +-0.0405119 0.125571 0.0212459 +-0.0408461 0.0957242 -0.0225993 +-0.0211708 0.123144 -0.00636628 +0.0528302 0.048039 0.0216552 +0.0292509 0.119574 0.0033793 +0.0456488 0.0861985 0.00518381 +-0.0697746 0.169428 -0.052035 +-0.0583932 0.146765 0.0331817 +-0.0748301 0.174171 -0.0395847 +0.0397534 0.0685495 0.0327941 +0.0603506 0.0581587 0.0121666 +-0.0615125 0.0729203 0.0397926 +0.0320567 0.106099 0.0342281 +0.0259569 0.0632491 0.0444844 +-0.017781 0.12071 -0.00976707 +-0.00292868 0.129815 0.0244395 +0.042563 0.0650705 0.0275619 +0.051394 0.0726569 0.00804397 +-0.0147356 0.124887 0.0290085 +0.0124993 0.116805 0.0367613 +-0.0095857 0.128017 -0.00170998 +-0.0353912 0.0475494 -0.0206462 +-0.0197639 0.0714243 -0.0385337 +-0.0646745 0.0721957 -0.0143162 +-0.0418918 0.129001 0.00740866 +-0.0217734 0.0713925 -0.0382795 +-0.0493632 0.1301 -0.00139208 +0.0232238 0.0822541 0.0494986 +0.0449291 0.081953 0.02316 +0.0595997 0.0567108 0.0101713 +-0.0496185 0.140151 0.0144011 +-0.0524988 0.102874 0.0411998 +0.0342709 0.0876121 0.0408726 +-0.0295799 0.174217 -0.00600797 +-0.0251232 0.165382 -0.00841584 +0.0176002 0.124344 -0.00401113 +0.054323 0.064171 -0.000208879 +-0.0129906 0.0568055 0.0517595 +-0.0751884 0.153035 0.033144 +0.0124885 0.114028 0.0382457 +0.0104651 0.0444795 0.0447526 +-0.033472 0.124985 -0.00213286 +-0.0519318 0.0352921 -0.0124585 +-0.0621937 0.156854 -0.0175927 +-0.0755066 0.11755 0.0524265 +-0.0660809 0.135405 0.0431027 +0.0020291 0.0342762 0.0137843 +0.0320171 0.111398 0.0306261 +-0.0685791 0.147786 -0.0311476 +0.0139278 0.129741 0.0148027 +-0.075709 0.170829 -0.032719 +-0.0241819 0.175647 -0.0202251 +-0.0729646 0.147133 -0.0208616 +-0.0588824 0.0997395 -0.0190365 +-0.0396703 0.036174 -0.00733977 +-0.0195581 0.181635 -0.0160858 +-0.0449923 0.0381195 -0.0222607 +-0.0298707 0.101527 -0.0228594 +-0.0447239 0.169659 -0.000473292 +-0.0547075 0.153861 0.0184094 +-0.00344803 0.111769 -0.0204187 +-0.048864 0.162635 -0.0057974 +-0.0837218 0.154141 0.0154269 +-0.0709606 0.172226 -0.0520527 +-0.000498029 0.0505184 0.0529377 +-0.0916834 0.116094 0.0407438 +0.029535 0.0987313 -0.0165204 +-0.0649388 0.16711 -0.0315896 +-0.00669968 0.0599043 -0.0346663 +-0.0086066 0.042026 -0.0258639 +0.0380982 0.0589726 0.0320786 +0.0284966 0.0768217 0.0447581 +-0.0365356 0.155076 0.00317988 +0.0173692 0.0476632 -0.0235115 +0.0152466 0.0765161 -0.0298116 +-0.061679 0.175513 -0.061381 +-0.03626 0.0434916 0.0442696 +0.0033481 0.0346494 0.040814 +-0.0708559 0.177779 -0.0481346 +-0.0522853 0.153955 0.0120432 +-0.00577511 0.0770351 -0.037534 +-0.0279795 0.0577645 -0.0254 +-0.0474968 0.101477 0.0417865 +0.0418115 0.0872841 -0.00879032 +-0.0272728 0.0383881 -0.00686007 +-0.0828517 0.110648 0.028886 +-0.0677301 0.181168 -0.057983 +-0.0339959 0.0752105 -0.0234884 +0.0227878 0.0350417 0.0227582 +-0.0132511 0.177151 -0.0280569 +-0.0662758 0.159515 -0.0565111 +-0.0759663 0.179251 -0.0520449 +0.0494532 0.0710682 0.00472592 +-0.0158055 0.0931896 -0.0348885 +0.0506418 0.0475027 0.0012667 +-0.0220809 0.0348313 0.0494485 +-0.0681005 0.179488 -0.0529195 +-0.0457387 0.0767861 -0.0183415 +-0.0849611 0.0883696 0.0278927 +0.0410895 0.0670315 0.0294468 +0.0123862 0.0342845 -0.0119874 +-0.0861176 0.152173 0.0250218 +0.00146529 0.0341167 -0.0177588 +-0.0847663 0.132585 0.0488829 +0.041918 0.0732584 -0.00676718 +-0.0704834 0.174975 -0.0436743 +0.0101806 0.114501 -0.0173735 +-0.0274005 0.0647434 -0.0304718 +0.00306398 0.0374048 0.023868 +-0.0908043 0.122683 0.00627651 +-0.0126271 0.0337462 -0.0239473 +0.0294467 0.0623083 -0.0198501 +-0.031353 0.158667 -0.0125849 +-0.0600161 0.129661 -0.00742185 +0.0141451 0.0740257 0.0538731 +0.0348792 0.0378052 0.00236551 +-0.0223477 0.16248 -0.006155 +0.0184989 0.11258 0.037522 +-0.0107925 0.18028 -0.0267448 +0.0112772 0.0752122 -0.0313695 +-0.0481785 0.0341964 0.00728185 +-0.0564997 0.107064 0.0398466 +-0.0510086 0.119975 -0.0128249 +-0.0142596 0.175663 -0.0267921 +-0.028881 0.124884 0.00195054 +-0.0744184 0.069256 0.0261761 +-0.0527672 0.0812315 -0.0212685 +0.0424296 0.0696684 0.0278335 +-0.0272214 0.163934 -0.00616346 +0.0566888 0.0635446 0.0256358 +0.0446243 0.0959671 0.00617079 +-0.0160443 0.174209 -0.0181164 +-0.0310058 0.156198 -0.0100049 +-0.039513 0.166742 0.00312951 +-0.0651923 0.176525 -0.0608469 +-0.0649089 0.110873 0.0375872 +-0.0545067 0.0904158 0.0449797 +0.0328041 0.0682575 -0.0177764 +0.0296649 0.110072 0.0343033 +-0.00848516 0.121007 0.0363393 +-0.0284943 0.0674472 0.03888 +0.0207654 0.126697 0.0144664 +-0.0231479 0.0919482 0.0509374 +-0.0105985 0.0406145 -0.0262787 +0.0525369 0.0651172 0.0279377 +-0.0709498 0.165209 -0.0469921 +0.0101258 0.125306 -0.00703851 +-0.0198334 0.107697 -0.0220521 +0.0228667 0.107306 -0.0156684 +0.0410305 0.0422896 -0.000687891 +-0.0687631 0.080836 -0.0170666 +-0.0685062 0.142066 -0.00982847 +-0.0288706 0.171229 -0.00855169 +-0.0870246 0.129415 0.000309032 +-0.0367401 0.0754253 -0.0187666 +-0.0231137 0.159172 -0.011899 +-0.0445 0.113887 0.0346508 +-0.0617979 0.154608 0.0289232 +0.0322191 0.117688 0.00875184 +0.00258681 0.125467 0.0322572 +-0.0668846 0.117985 -0.00889164 +-0.0560239 0.144237 -0.00161522 +-0.0939473 0.122782 0.0142819 +-0.057663 0.155278 0.0187721 +-0.0653495 0.0459059 0.00467835 +-0.0838817 0.150077 0.00420446 +-0.0574972 0.100168 0.0430053 +0.0447715 0.070791 0.0233171 +0.0114258 0.129163 0.0238841 +-0.0415072 0.0605699 0.0406995 +-0.0495023 0.0862453 0.0455995 +-0.0309567 0.166794 -0.00630909 +-0.0310964 0.125815 0.0157855 +0.0577493 0.0579199 0.00320063 +-0.00748502 0.105882 0.0440003 +-0.0594987 0.0932573 0.0451741 +-0.0584823 0.080492 0.0436889 +0.0565518 0.0722252 0.0100192 +-0.0154726 0.123613 0.0307813 +-0.017794 0.0799068 -0.038901 +-0.0670193 0.0901061 0.04379 +-0.0506534 0.0619401 -0.0109597 +-0.0284985 0.0631152 0.0376198 +0.0405765 0.0793262 0.0323176 +0.0350622 0.0909926 -0.0162992 +-0.0679473 0.136882 0.0457212 +-0.0626008 0.160001 -0.0205855 +0.0143086 0.0623633 -0.0295361 +0.00349883 0.0605728 0.0559342 +0.0235231 0.0943993 -0.0219282 +0.0425314 0.0623712 0.0287546 +-0.0352518 0.156597 0.00331287 +-0.0807586 0.0950245 -0.00854945 +-0.085825 0.114595 0.0464925 +0.0420636 0.0915328 -0.00679501 +-0.0369296 0.0455099 -0.0248207 +-0.0610521 0.0460525 0.00962048 +-0.0476199 0.057734 -0.011287 +-0.0595357 0.0400627 -0.00844467 +-0.0604419 0.114971 -0.0134731 +-0.016194 0.128088 0.0051496 +-0.0365847 0.122192 -0.00920846 +-0.0464591 0.0345029 0.0305523 +-0.0644598 0.0432795 0.035714 +-0.0241405 0.168248 -0.0186857 +-0.0743787 0.145821 -0.0108474 +0.0173308 0.0566344 -0.0283721 +-0.0548894 0.136747 0.0311423 +-0.0579822 0.0343384 0.0317603 +-0.0262958 0.0634474 0.0394208 +-0.0183558 0.127798 0.00725695 +-0.0750251 0.152273 0.0347437 +-0.0648702 0.0334576 -0.000853911 +-0.0610584 0.138406 -0.00654552 +0.0224766 0.0920198 0.0478397 +0.044722 0.0945895 0.0131657 +-0.0873336 0.126682 -0.000726608 +-0.0880434 0.125329 0.00027907 +-0.0364509 0.174337 -0.00256774 +-0.053938 0.138144 0.0289679 +-0.00559979 0.114688 -0.0175182 +-0.00635915 0.0931082 -0.0347376 +-0.0861558 0.100815 0.00240792 +0.0184724 0.0934238 0.0476306 +-0.000245612 0.0350857 0.0144067 +-0.0547132 0.153591 0.0213081 +0.0445999 0.0931357 0.00219092 +-0.0649995 0.134056 -0.00807462 +-0.0360819 0.0351453 0.0214963 +0.0444988 0.0569914 0.0320977 +-0.0597101 0.0723346 -0.0163812 +-0.0468406 0.0985145 -0.021833 +-0.0397006 0.0666136 -0.0148744 +-0.0847301 0.0966436 -0.00257686 +-0.00176079 0.0741065 -0.0358743 +-0.0671962 0.0736816 0.0379285 +-0.0347085 0.169768 -0.00115359 +-0.0213445 0.0916844 -0.035421 +-0.0625559 0.150623 -0.0205762 +0.055585 0.0535517 0.00220948 +-0.0136228 0.128915 0.00609854 +-0.0654189 0.16417 -0.0217177 +-0.0613445 0.0434338 0.042412 +-0.0144732 0.096429 0.0522087 +-0.0707666 0.171245 -0.0323024 +-0.0713393 0.134067 0.0496215 +-0.0458732 0.104238 -0.0208285 +-0.0551833 0.07213 0.0401196 +0.0364832 0.0422343 0.0281778 +-0.0336503 0.0577563 -0.0112696 +-0.0810791 0.117571 0.0486733 +0.044724 0.0588042 -0.00496063 +-0.0568258 0.120959 -0.0097287 +-0.0257724 0.0797722 -0.0374309 +-0.0800654 0.121688 0.0502425 +-0.0569634 0.0335771 0.00964709 +-0.00939357 0.0354504 -0.0173725 +0.046214 0.0637709 -0.0019104 +0.00900714 0.0383394 0.0314785 +0.0457806 0.0890199 0.00717609 +-0.0524951 0.0747684 0.0423102 +0.0334058 0.0446363 -0.00548551 +-0.063072 0.0346346 0.0391063 +0.0073001 0.0907939 -0.0322622 +0.026147 0.0875952 0.0467145 +0.0130004 0.0419341 0.0448362 +0.0263999 0.0348437 0.0163952 +-0.0056357 0.0466988 -0.0297075 +-0.000747471 0.0987058 -0.0265343 +-0.0688283 0.0966095 -0.0161149 +0.00300687 0.0991424 0.049182 +-0.0154864 0.0814755 0.0571167 +-0.074497 0.120396 0.0533632 +-0.0748436 0.114924 -0.0060803 +-0.0168418 0.107354 -0.0217003 +-0.0459377 0.145792 0.000601046 +-0.0487849 0.0715634 0.0402545 +-0.0581679 0.154986 0.022946 +0.044397 0.0945546 0.0171571 +-0.0810292 0.0940061 0.0336494 +0.032953 0.0994589 0.0373001 +-0.0181454 0.0347978 0.0451006 +-0.0487902 0.0855221 -0.0217064 +-0.0776336 0.147268 -0.0038625 +-0.0891133 0.14743 0.0101992 +0.0134061 0.0767276 0.0545687 +-0.0451757 0.14769 0.00639824 +0.0340849 0.114614 0.00225198 +-0.0494981 0.105619 0.0396922 +-0.0291786 0.175627 -0.0167894 +0.0516271 0.0736236 0.0155669 +-0.0333156 0.0365169 -0.0174853 +-0.00225297 0.0388793 -0.00041461 +-0.0884617 0.14585 0.0310303 +-0.087958 0.12395 0.000268768 +-0.0637456 0.154158 0.00252195 +-0.0680618 0.0606588 0.013756 +0.00946449 0.0616923 0.0540126 +-0.00707285 0.12974 0.0027455 +-0.0190315 0.0389958 0.035931 +-0.00971778 0.0670387 -0.0360005 +0.0406669 0.102735 -0.000789188 +-0.085128 0.0845897 0.0244984 +0.00248558 0.111415 0.0422707 +0.00320889 0.0824712 -0.0345101 +-0.0467495 0.117966 -0.0147678 +0.0250223 0.110364 -0.0129553 +-0.044347 0.146755 0.000226372 +-0.0616655 0.144455 -0.00523057 +0.000474346 0.0977989 0.0522897 +0.0207702 0.036271 0.0339301 +0.0400498 0.0387801 0.0063192 +-0.0199993 0.185902 -0.0200623 +0.018427 0.0917703 -0.0251723 +-0.0354635 0.0860418 0.0431394 +-0.0475855 0.0518372 -0.00929506 +0.0429858 0.0691484 -0.00178958 +-0.0244489 0.052187 0.0413714 +-0.0500639 0.141673 0.0143962 +0.0144323 0.129298 0.0192627 +-0.0561449 0.04824 0.0383427 +0.0358665 0.0404526 0.0260172 +-0.0213253 0.0444675 0.0531428 +-0.0609289 0.112535 -0.0147528 +-0.0699845 0.139935 -0.00772138 +-0.0748631 0.106362 -0.00967707 +-0.0346028 0.0344648 0.0366099 +-0.0425153 0.118993 -0.0138741 +0.0153464 0.0537553 -0.0279934 +-0.0719831 0.170733 -0.0298702 +0.0460203 0.0848226 0.00718276 +-0.0760167 0.15688 -0.0219252 +-0.010059 0.109235 -0.0217082 +0.0010095 0.0346721 0.0439005 +-0.0198215 0.0841085 -0.0387066 +-0.020574 0.115387 -0.0161841 +-0.00203672 0.0345877 -0.0169988 +-0.0424883 0.0846004 0.0426298 +-0.0313435 0.0707327 -0.0274782 +-0.0490828 0.13552 0.0213898 +-0.0481015 0.157608 -0.00698963 +-0.0579692 0.0408152 0.0462221 +-0.0682257 0.127075 0.0505767 +-0.0434944 0.0733818 0.0425428 +-0.0905017 0.114314 0.0223543 +0.0242723 0.0647548 -0.0237835 +0.050682 0.0731977 0.010749 +0.0604945 0.0595549 0.015166 +-0.0490636 0.126668 -0.00583208 +0.00647697 0.0459611 0.0484012 +0.0279051 0.0395203 0.0288639 +-0.0314585 0.0335695 -0.0237257 +-0.0485262 0.0344313 0.0301756 +-0.0386172 0.0505956 -0.0110053 +-0.000657388 0.0511382 -0.0308268 +-0.0630072 0.0689485 0.0358468 +0.0316541 0.0351286 0.0116939 +-0.0517065 0.163863 0.00241874 +-0.0634695 0.0445577 0.0356919 +-0.0832566 0.147367 0.0370632 +0.02323 0.0762417 -0.0259573 +-0.0735922 0.0833012 0.0392631 +-0.00431736 0.130694 0.00665461 +-0.021599 0.0382532 0.00358087 +0.0465019 0.0778624 0.0111839 +0.0604451 0.0678689 0.0141533 +0.0213931 0.0489728 -0.0223035 +-0.0630692 0.153725 -0.0105955 +-0.0236572 0.0507797 -0.028024 +0.00430293 0.0625774 -0.0325544 +0.0421362 0.0845969 0.0293292 +0.010951 0.0562864 0.05258 +0.0369412 0.107321 0.0271722 +0.0502975 0.0560957 -0.00457555 +0.0410804 0.10284 0.0191681 +0.0102664 0.0739304 0.0552835 +-0.0397448 0.172952 -0.00234724 +-0.0829232 0.125068 -0.00442148 +-0.0284893 0.0903534 -0.0305816 +-0.0616586 0.172539 -0.056588 +0.0182369 0.0749953 -0.0283712 +-0.0168303 0.0382802 0.00815469 +0.0453551 0.0805854 0.0221747 +-0.0718567 0.0701514 0.0311867 +-0.0814119 0.152728 0.0295837 +0.0555021 0.0730293 0.0140468 +0.00650419 0.123782 0.0339598 +0.0422452 0.0986357 -0.000817871 +-0.072904 0.112135 -0.00834183 +-0.00786498 0.13001 0.00533674 +-0.0614753 0.15686 -0.0265876 +-0.0234913 0.103006 0.0434545 +-0.0093342 0.174192 -0.0247468 +0.048187 0.0717514 0.00605259 +-0.0554773 0.0820103 0.045038 +-0.091005 0.124034 0.00628346 +-0.0147917 0.0951887 -0.0329173 +-0.00125147 0.122854 0.0353 +-0.017497 0.0485942 0.047882 +0.0194854 0.0989751 0.0466096 +-0.0889579 0.0901579 0.00845534 +-0.065396 0.0605193 0.0180241 +-0.0469507 0.168415 -0.00396135 +0.0205156 0.111203 0.0377036 +-0.0928924 0.122885 0.0362699 +0.0213879 0.0686569 0.0484685 +0.0214143 0.0463213 0.0412437 +0.00882931 0.0373958 0.0286749 +0.0465562 0.0764652 0.0121829 +-0.0618529 0.153757 -0.0195806 +-0.0262234 0.119963 0.0294562 +-0.0354913 0.0889091 0.0432238 +0.037993 0.109314 0.0194453 +-0.0377299 0.0739307 -0.0178742 +-0.0184902 0.0815159 0.0575038 +-0.0314396 0.0637247 -0.0204391 +-0.0825513 0.110697 0.0307352 +-0.0728404 0.156111 0.0119063 +-0.0663982 0.164105 -0.0192035 +0.0062922 0.0654161 -0.0325779 +-0.0624759 0.0959475 0.043683 +-0.033686 0.0637452 -0.0146972 +0.0353693 0.102677 -0.0107148 +-0.0710479 0.166372 -0.0194754 +-0.059243 0.0367531 0.0461369 +-0.0908243 0.114994 0.023547 +-0.0650258 0.156351 -0.0487028 +-0.034444 0.159452 0.00265373 +0.0357616 0.0967769 -0.0118087 +0.044965 0.0903773 0.0181662 +0.0498767 0.0734333 0.0134213 +-0.031608 0.0496402 -0.0193495 +0.0404724 0.0408436 0.0229665 +-0.0473115 0.134637 0.0112388 +0.00743122 0.0352845 0.0446812 +-0.0297131 0.0509006 -0.0193584 +-0.0241845 0.177125 -0.0200954 +-0.0632603 0.157387 -0.0151607 +-0.0598965 0.0343774 0.0365453 +-0.0242309 0.0382399 0.0265535 +0.0433792 0.0972945 0.00218055 +-0.00691412 0.124317 0.0332409 +0.00451269 0.0561377 0.0533474 +-0.00250438 0.0842991 0.0575402 +-0.0903673 0.145762 0.0273033 +-0.0523714 0.143148 0.0193902 +0.0362345 0.0967824 0.0350211 +0.0264539 0.106068 0.0383874 +-0.0729303 0.131104 -0.00814819 +0.0116228 0.130194 0.0054038 +-0.0409771 0.113795 -0.0164017 +-0.0828306 0.150071 0.00319212 +-0.0676468 0.0338307 -0.00583252 +-0.0857374 0.0792227 0.0125087 +-0.0651015 0.0410328 0.0295625 +-0.0136795 0.0987823 0.0477955 +0.0258821 0.0794179 -0.0243188 +0.0449394 0.0734628 0.0226146 +-0.0694849 0.173671 -0.0550315 +0.0142482 0.127965 9.03059e-05 +0.0564285 0.0727253 0.0143999 +-0.0172735 0.180097 -0.0253788 +-0.0699136 0.162391 -0.0489495 +-0.09118 0.143373 0.022161 +-0.0644984 0.100116 0.0422372 +-0.0564709 0.0847764 0.0446514 +-0.043754 0.152254 -0.00662286 +-0.0547181 0.0708998 -0.0155975 +-0.0401471 0.163848 0.00326215 +-0.0814342 0.154656 0.0132857 +-0.0513196 0.0514695 0.0138904 +0.00680734 0.129132 0.0265205 +-0.0614938 0.0959769 0.0438595 +-0.0091676 0.171172 -0.0227371 +-0.0769695 0.154154 -0.0139015 +-0.0502302 0.126885 0.0326315 +0.00555777 0.034446 -0.000384949 +-0.0206136 0.0379294 -0.0283016 +0.00719386 0.0810104 -0.0336874 +0.0390033 0.0387188 0.0172773 +-0.0737727 0.0928414 0.040556 +-0.0829975 0.0763193 0.0155222 +0.0461381 0.0792322 0.00519228 +0.0313444 0.106098 0.0349666 +-0.0157326 0.0383302 0.0246146 +-0.0739329 0.072514 0.0322154 +-0.0287063 0.168278 -0.00832187 +-0.02709 0.0386639 -0.0126398 +-0.0689895 0.156345 -0.00130196 +-0.0622523 0.152181 -0.0215758 +-0.0408691 0.158042 0.00401656 +-0.0324935 0.0903869 0.0442776 +0.0156162 0.0904755 -0.0278196 +0.00543406 0.120555 -0.0138758 +-0.0874054 0.110457 0.012344 +-0.0534973 0.0903982 0.0447559 +-0.0007305 0.0683317 -0.0340878 +-0.0847135 0.152577 0.00925173 +0.0453586 0.0547792 -0.00610681 +-0.0513173 0.146268 0.0144074 +0.0146587 0.125796 -0.00358107 +-0.0790281 0.166651 -0.0329632 +-0.0519257 0.0563169 0.0201359 +-0.0206011 0.0382174 0.00381729 +-0.0499923 0.0342577 0.028256 +0.0222487 0.0365239 0.0303911 +-0.0762222 0.0981393 0.0371985 +-0.0381245 0.162196 -0.0129852 +-0.0462852 0.149202 0.00834502 +0.039774 0.0618507 -0.00575724 +0.0461841 0.0778325 0.00618859 +-0.0770439 0.154813 -0.0101321 +-0.0615001 0.152383 0.000341367 +-0.0665808 0.0334125 0.000644743 +-0.0212653 0.0381372 0.0218515 +-0.071123 0.111741 0.0467572 +-0.0265438 0.177186 -0.00862049 +-0.0523481 0.125498 -0.00654313 +-0.0522635 0.0343446 0.0312176 +0.0191745 0.060499 0.0487078 +-0.0855607 0.111744 0.0263451 +-0.0360977 0.156596 0.00383263 +-0.0479431 0.0356599 -0.0132734 +0.0366613 0.0821332 0.0372523 +-0.0478798 0.107016 -0.0192852 +-0.0356524 0.0460406 0.0421919 +0.00919662 0.0865327 -0.0319845 +-0.0808705 0.11922 -0.0043482 +-0.0335583 0.116878 -0.0136466 +-0.0112898 0.0395292 0.0388441 +-0.0194927 0.0814879 0.0571676 +0.0239403 0.124821 0.0127882 +-0.0444942 0.105717 0.0408954 +-0.0484929 0.162245 0.00645185 +-0.00849807 0.0801615 0.0580203 +-0.0487025 0.121311 -0.0122547 +0.00400584 0.0386131 0.0458842 +-0.00449485 0.0488681 0.0504112 +-0.0507263 0.122615 0.0336033 +-0.0801811 0.108648 -0.00360377 +0.029758 0.0352966 0.00556049 +-0.0236293 0.0665652 0.045154 +0.0470549 0.0602552 -0.00440662 +-0.059554 0.155543 0.0209921 +-0.00550703 0.0787847 0.0579843 +-0.0451509 0.0424209 -0.0143059 +-0.0674032 0.144345 -0.0161484 +-0.0621766 0.125515 0.0434733 +-0.0885651 0.0963045 0.0227197 +-0.0623911 0.154382 0.0301734 +-0.078298 0.0745267 0.0278337 +0.00377395 0.13125 0.00536065 +-0.0351573 0.0361738 0.0471926 +-0.0517432 0.0487299 0.0143843 +-0.0578034 0.0854472 -0.0211977 +0.0151488 0.10026 -0.0226403 +0.0225321 0.104677 0.0415312 +-0.0605798 0.155686 0.00466574 +-0.0891628 0.0942977 0.0214104 +0.0393896 0.106975 0.00316583 +0.00351619 0.0800296 0.056385 +0.0405703 0.105644 0.0131657 +-0.0507419 0.0753249 -0.0179378 +0.0269605 0.111014 -0.0116501 +0.0303852 0.098223 0.0405823 +0.0431361 0.0419917 0.0224684 +-0.0738026 0.1492 0.0397758 +-0.0725455 0.148857 -0.0337299 +-0.072371 0.0860632 0.0407672 +0.0158441 0.0475203 0.043749 +0.0104341 0.0346525 0.0368683 +0.0344146 0.0399125 -0.00185272 +-0.0764595 0.111219 0.0459768 +0.042138 0.101461 0.00217211 +-0.0213522 0.127058 0.00761225 +-0.0556879 0.0677603 -0.0123408 +0.00811587 0.129858 0.0241077 +-0.0637641 0.044271 -0.0022694 +-0.0104962 0.0897854 0.05669 +-0.0147283 0.0657495 -0.0376113 +-0.0881508 0.144556 0.0335371 +-0.0807759 0.0773963 -0.00349851 +-0.0388999 0.0345526 0.0391301 +0.0239365 0.0972468 -0.020928 +-0.0559996 0.126683 -0.00642409 +0.015329 0.118191 -0.013375 +-0.0894904 0.112329 0.0187618 +-0.0771865 0.153815 0.000183792 +0.00297917 0.0389607 -0.010651 +-0.0571826 0.122684 0.0401181 +0.0453844 0.091806 0.0121583 +-0.0908751 0.135104 0.0182068 +0.0216273 0.125269 0.00337714 +0.0572674 0.0722428 0.0147076 +-0.0417782 0.0473939 -0.012205 +-0.0658407 0.0938498 -0.0179236 +0.0102801 0.12364 -0.00922404 +0.00517588 0.113065 -0.0197995 +0.0139965 0.0343089 -0.00230394 +-0.0757024 0.160453 -0.0116926 +-0.0694905 0.10551 0.0380162 +0.0123252 0.0595168 -0.0292981 +0.00242842 0.0916453 -0.033159 +0.0363451 0.0519755 -0.00662669 +-0.0899083 0.121615 0.0458595 +-0.0569713 0.125238 -0.00711806 +-0.0616474 0.0458147 0.0384356 +-0.0816857 0.104685 0.0297488 +0.0417455 0.0760505 -0.00673474 +-0.0249373 0.175681 -0.0116247 +0.0233583 0.0592365 -0.0255115 +0.0296356 0.107455 0.0360045 +-0.0171544 0.0383178 0.00624466 +-0.0338857 0.12324 -0.00632922 +-0.0295434 0.168268 -0.00777595 +0.0237606 0.105983 -0.0162548 +-0.0636907 0.124164 0.0466174 +0.0299589 0.119939 0.0150519 +0.0387947 0.101959 0.0281808 +0.0346979 0.108688 0.0292348 +-0.00481267 0.108148 -0.0225124 +-0.0921162 0.126957 0.038246 +-0.0708767 0.0346286 -0.00100073 +-0.0434981 0.0803632 0.0422528 +-0.00776303 0.0742012 -0.03739 +-0.0164203 0.103082 -0.0232082 +-0.0368601 0.0336856 -0.0211611 +-0.0794788 0.13585 0.0504167 +-0.0622192 0.166249 -0.0495907 +-0.0632785 0.0347611 0.0232648 +-0.0678048 0.17421 -0.0455841 +-0.0292876 0.113893 -0.0165575 +-0.0116236 0.0451107 -0.0281433 +-0.0853661 0.0910995 0.0281927 +0.0152572 0.124805 0.0295869 +-0.0730257 0.141351 -0.00730576 +-0.0694123 0.111827 0.045291 +-0.048008 0.0642705 0.0370013 +-0.000600787 0.0405329 -0.0249772 +-0.0932444 0.124186 0.027283 +-0.050904 0.119772 0.0333476 +-0.00274076 0.0726647 -0.0356738 +-0.0635974 0.151927 -0.0324488 +0.025021 0.085012 -0.0240764 +-0.0749218 0.0661459 0.00857247 +0.0115292 0.119123 0.0361473 +0.0363972 0.0461521 -0.00588406 +0.0385505 0.0378908 0.0124577 +-0.0599745 0.14101 0.03437 +0.00637279 0.049483 -0.0283693 +-0.0896361 0.0969931 0.0144152 +0.0291455 0.0491758 0.0366259 +-0.013551 0.0588296 0.0525443 +-0.0381244 0.127641 0.0146907 +-0.00888364 0.107351 -0.0226177 +-0.0497129 0.165582 0.00102101 +0.0449595 0.0889486 0.000172046 +-0.0339085 0.177047 -0.0109944 +-0.0278445 0.0535534 0.0370258 +-0.0334735 0.0337737 0.0142583 +-0.0926366 0.121498 0.0312794 +-0.0298476 0.105726 -0.0219826 +-0.0771466 0.113816 0.049094 +0.0166749 0.0347919 -0.00596505 +-0.0767718 0.0716181 -0.00247133 +-0.0788159 0.0818529 0.0346403 +-0.0751616 0.0715622 0.0292788 +-0.0629391 0.12384 -0.00881569 +0.0155707 0.100538 -0.0224673 +0.0252284 0.116758 -0.00782512 +0.00112155 0.035712 0.0195623 +-0.0623204 0.0448503 0.0109236 +0.0577561 0.0565381 0.00419435 +-0.000697034 0.0626894 -0.03411 +-0.0739419 0.129646 -0.00820737 +-0.0552142 0.155428 0.0123927 +-0.0749344 0.128178 -0.00819506 +0.0183304 0.0579992 -0.0277502 +-0.0259227 0.123138 -0.0042558 +0.0130981 0.124462 0.0316831 +-0.0723893 0.172498 -0.0357772 +-0.015947 0.124632 0.0285893 +-0.0583387 0.0706756 0.0389009 +-0.0347052 0.0384254 -0.0102399 +-0.0149752 0.125602 0.0274605 +-0.0153278 0.0389782 0.0349161 +-0.0482032 0.131003 0.0267578 +0.0538412 0.0539826 0.0267309 +-0.0845696 0.12714 0.0502672 +0.0343613 0.111866 -0.00251995 +-0.0679623 0.16261 -0.0140168 +0.0251056 0.0902557 0.0469821 +-0.0373144 0.033633 0.00457247 +0.00149673 0.110036 0.0425823 +-0.0886162 0.100967 0.00940891 +-0.0734724 0.155984 0.0233451 +0.00740252 0.0402134 0.0455033 +0.0454345 0.0918112 0.0111626 +0.0252284 0.0420597 0.0372934 +0.026048 0.117275 -0.00637096 +-0.0768401 0.178514 -0.0509284 +-0.0719676 0.138437 -0.00730592 +0.00750673 0.0758763 0.0563548 +-0.0485658 0.0404434 -0.0115683 +-0.0402074 0.168164 -0.0113973 +-0.044494 0.0987314 0.042632 +-0.0530679 0.140053 0.026392 +0.0521064 0.0510719 0.0259326 +-0.0545309 0.0352136 0.0455493 +-0.0717133 0.0715245 -0.00752229 +-0.0899797 0.128138 0.00527223 +0.0045004 0.121001 0.0358516 +-0.0641393 0.143504 -0.0105249 +-0.0769685 0.156212 -0.0102521 +-0.0645952 0.155196 -0.0084031 +0.0323835 0.0460752 0.0307026 +-0.023205 0.178608 -0.0204967 +-0.042033 0.113762 -0.0163433 +-0.0512269 0.150712 0.0135153 +0.00120164 0.0839391 -0.0353946 +0.0300054 0.104778 0.0365239 +-0.00649214 0.0965537 0.0536631 +-0.0289152 0.0846603 -0.0346291 +0.0207024 0.0373647 0.039246 +-0.0386568 0.0577511 -0.0111914 +-0.0605191 0.153857 0.0308432 +0.0410047 0.0395957 0.0043142 +-0.0837262 0.151367 0.00522149 +-0.0378805 0.108506 -0.019759 +-0.0169176 0.183111 -0.0193016 +-0.0614849 0.0946016 0.0445824 +0.0332816 0.116574 0.0106008 +-0.0378618 0.101418 -0.0215553 +0.0383745 0.038179 0.01581 +0.010493 0.111264 0.0393941 +0.0353685 0.0600237 -0.0127796 +-0.0203175 0.0933679 0.052311 +-0.0434938 0.0619471 0.0402773 +-0.0393599 0.0418158 -0.0263353 +-0.0588856 0.105471 -0.0181522 +-0.0278953 0.124828 0.00229374 +-0.0894349 0.136561 0.0381888 +-0.0455406 0.124353 -0.00945534 +-0.0850289 0.111596 0.00326083 +0.01399 0.106595 -0.01887 +-0.0765357 0.0692333 0.0204809 +-0.0741239 0.165568 -0.0191297 +-0.056116 0.131133 0.036427 +-0.0715838 0.158191 -0.0409255 +-0.077037 0.111295 -0.0046823 +-0.0135016 0.0573891 0.0517499 +0.0374899 0.0469458 0.0313688 +-0.0297919 0.108873 -0.0192723 +-0.0616758 0.113831 0.0370124 +-0.0157188 0.0628375 -0.0366012 +-0.0879795 0.148554 0.029057 +-0.0890892 0.0955882 0.00942496 +-0.0709327 0.178806 -0.0496057 +0.0454967 0.0611109 0.0306935 +0.0193158 0.0835035 0.0508805 +0.000580692 0.131584 0.0113306 +-0.0615895 0.155312 -0.0215829 +-0.0134922 0.122339 0.0335983 +0.0458248 0.0806172 0.0201703 +-0.0225646 0.0983245 -0.0242201 +-0.0682478 0.066271 0.0282875 +0.0302092 0.117283 0.0265434 +-0.0829482 0.128017 -0.00457928 +-0.0715343 0.141411 0.0464325 +-0.0800761 0.0936246 -0.00957758 +-0.0851808 0.153525 0.0149377 +-0.0865771 0.124349 0.048115 +-0.0221188 0.100222 -0.0241961 +0.0224909 0.111137 0.037371 +0.00736705 0.0494733 -0.028237 +0.0432386 0.0750761 0.0273062 +-0.0564476 0.153922 0.0264803 +-0.0288608 0.0448354 -0.0281934 +-0.0776003 0.156937 -0.0149108 +-0.0784376 0.171472 -0.0389273 +-0.0178474 0.12806 0.016159 +-0.0284556 0.0472262 0.0488083 +-0.0677451 0.0629578 0.0224748 +-0.0567391 0.0576068 -0.000420382 +-0.0769537 0.132513 -0.00657383 +-0.0837476 0.0952109 -0.00455405 +-0.0427254 0.0358312 -0.0275925 +0.00623069 0.0782309 -0.0341321 +-0.0758642 0.117897 -0.00698249 +-0.0903736 0.13787 0.0221843 +-0.027962 0.155009 -0.00579987 +-0.0193391 0.0386082 -0.00732295 +-0.0237931 0.0698259 -0.0366341 +-0.015124 0.037267 -0.0266656 +0.0113671 0.0479427 -0.0268055 +0.0141489 0.0347135 0.0249225 +-0.0669549 0.160975 -0.0568649 +0.0208979 0.0359371 0.0087849 +-0.0570669 0.0493259 -0.00137722 +-0.0186112 0.0386738 -0.00909396 +-0.0055195 0.0443362 0.047543 +-0.0714237 0.153981 -0.0448933 +0.0119572 0.125728 -0.00550935 +-0.0310683 0.0679104 -0.0254551 +0.0514754 0.0531199 -0.00283685 +0.0135274 0.12988 0.0160733 +-0.0728856 0.148047 -0.0249504 +-0.0233454 0.122752 0.0259903 +-0.0578948 0.0983776 -0.0200563 +-0.0203263 0.0825295 0.0568715 +-0.0643532 0.142586 -0.00864957 +-0.0793976 0.151048 0.0347829 +0.0356609 0.104701 0.030636 +0.0063888 0.115364 -0.0182909 +-0.0289964 0.0383539 -0.00532847 +-0.0834239 0.0965619 -0.00458039 +0.019508 0.109842 0.0390589 +-0.0767379 0.10491 0.0348158 +-0.0825915 0.143398 0.0421649 +0.0182147 0.0834619 -0.0281698 +-0.0633435 0.060722 0.00207171 +0.0428335 0.076148 -0.00478426 +-0.0724349 0.0644357 0.0131399 +-0.0114637 0.165492 -0.0149909 +-0.0493961 0.033823 0.00737414 +0.0502518 0.0446339 0.0182039 +-0.0439305 0.0432632 0.0429545 +-0.0713305 0.0628284 0.00935991 +-0.0276378 0.158958 -0.0125395 +0.0600492 0.0581198 0.0161748 +0.00134506 0.0511101 -0.0304682 +-0.0692332 0.158118 -0.0519432 +-0.0133594 0.127978 0.0236019 +0.0292021 0.0619142 0.0421314 +-0.0667582 0.180263 -0.0553199 +-0.0197539 0.0671131 -0.0375162 +-0.0704746 0.040884 0.00781861 +-0.049499 0.112564 0.0357174 +-0.0322502 0.0367926 -0.0305484 +-0.00789583 0.129197 0.00105287 +-0.016169 0.117727 -0.0146898 +0.0295964 0.0580473 -0.0178274 +-0.0883598 0.0874311 0.00547496 +-0.0274913 0.101587 0.0432231 +-0.0768992 0.155831 0.0192356 +-0.0364902 0.0634253 0.0412069 +-0.0388025 0.125966 -0.00521606 +0.0196905 0.0550135 0.047657 +0.0571135 0.071717 0.0176058 +-0.0064991 0.0952675 0.0547927 +0.0174901 0.0346463 0.0220409 +-0.0024963 0.10305 0.0439671 +-0.0184804 0.0543192 0.0487134 +-0.0334418 0.0335662 -0.0297364 +-0.0620472 0.176838 -0.0608311 +-0.0308715 0.0522855 0.0371048 +-0.0367079 0.0695483 -0.0163464 +0.0158791 0.123986 0.0298499 +-0.0320536 0.0356449 0.0500425 +-0.0493943 0.14168 0.0103932 +-0.0558858 0.106922 -0.0182628 +0.059454 0.0647075 0.0208869 +0.0152596 0.125955 0.0281714 +0.038478 0.0980354 0.0312187 +-0.0744916 0.146991 0.0423999 +-0.0846211 0.0992422 0.0286106 +-0.0661191 0.156294 0.0171964 +-0.0794888 0.111206 0.0453002 +0.00519891 0.0880579 -0.0334439 +0.0153315 0.0346194 -0.0136599 +0.0395267 0.0632302 -0.00776648 +-0.0463407 0.0629206 0.0382092 +-0.0514201 0.121192 0.0343754 +-0.0528867 0.0334295 0.0213081 +-0.062446 0.163101 -0.0455941 +-0.0770308 0.167319 -0.027484 +-0.041999 0.126936 -0.00419358 +0.0289857 0.090239 0.0438092 +-0.0634397 0.158343 -0.0445972 +0.00692319 0.0630369 0.0555875 +-0.0294344 0.0381755 0.00387704 +0.0228628 0.0351973 0.0171792 +-0.0738758 0.0993275 -0.0132564 +-0.0668982 0.151542 -0.0415298 +-0.0629724 0.133897 0.038809 +-0.0928035 0.121507 0.0322842 +0.0305387 0.0609912 -0.0187852 +0.0385799 0.0739884 0.0346445 +-0.0814052 0.08555 -0.00656718 +-0.0621323 0.0602572 0.0206983 +-0.0294013 0.0804353 -0.034602 +0.0164763 0.0348375 -0.0136598 +-0.0659203 0.122383 -0.00896938 +-0.0328324 0.0929676 -0.0240794 +0.000521824 0.0801146 0.0573693 +0.0221547 0.0979182 -0.0216266 +-0.0649149 0.0392337 0.0390271 +0.0351689 0.0928995 0.0387113 +-0.0125327 0.0502379 0.050201 +-0.05553 0.12546 -0.00656458 +0.0330446 0.111446 -0.00610948 +0.0255618 0.120425 0.027665 +-0.0243325 0.126263 0.00798048 +-0.0654853 0.0944999 0.0429585 +-0.0478356 0.0970782 -0.0220591 +-0.0332116 0.0851655 -0.0254848 +0.00641089 0.036109 -0.0234066 +-0.0192798 0.0610993 0.0494354 +0.0363164 0.11089 0.0231265 +-0.0705311 0.0972485 0.0414142 +-0.0514267 0.135712 0.0273837 +-0.0564984 0.0918565 0.0453856 +-0.042499 0.113906 0.034677 +-0.0717955 0.156396 0.0195489 +-0.0215446 0.0942792 -0.0320343 +-0.0246821 0.177174 -0.0112336 +0.0177118 0.0944604 -0.0240064 +-0.0881735 0.15196 0.0139234 +-0.000296991 0.0392472 -0.00781836 +-0.00248723 0.115552 0.0407434 +-0.0147779 0.0756914 -0.0387415 +0.0503819 0.0717878 0.00597587 +-0.0396993 0.117276 -0.0140617 +-0.0628784 0.16149 -0.0515871 +-0.0769868 0.0713943 0.0255408 +-0.01852 0.115493 0.0376203 +-0.0632135 0.155458 0.00808821 +-0.0244921 0.103004 0.0433541 +-0.0392444 0.0481623 -0.0129943 +0.0317796 0.0647744 0.0406274 +-0.00516147 0.100957 0.0442706 +-0.0196118 0.040807 -0.0284935 +-0.0288146 0.0436325 0.0510094 +-0.0690473 0.0727409 0.0365464 +-0.0478629 0.125952 -0.00709772 +-0.0456346 0.123874 0.0250844 +-0.0214969 0.0498836 0.0466158 +0.0515378 0.0461489 0.00621743 +0.0472621 0.0627303 -0.00287883 +-0.0738666 0.0846755 0.0394915 +0.0247439 0.0490967 0.0390469 +0.0150281 0.097439 -0.0231662 +0.0456884 0.0904192 0.00716979 +0.0173787 0.046209 -0.0233857 +-0.00349533 0.123738 0.0342998 +-0.0905223 0.128294 0.0420009 +-0.0733752 0.0741466 0.034437 +-0.0106209 0.130105 0.0129711 +-0.0754549 0.158227 -0.0249553 +-0.0125993 0.0922824 -0.0359459 +-0.064348 0.0611447 0.0212332 +-0.0246221 0.0450443 -0.0281165 +-0.0383306 0.0379343 0.0437226 +-0.0423655 0.110099 -0.0185262 +-0.0750214 0.166563 -0.0400315 +-0.0338231 0.0915286 -0.0241849 +-0.0857793 0.088721 -0.000547834 +-0.00485752 0.103786 0.0439754 +-0.0334914 0.0960174 0.044365 +-0.040497 0.0705056 0.0418211 +0.0309495 0.065969 0.041175 +-0.0649024 0.119454 -0.00881631 +-0.0326689 0.0382268 0.0507498 +0.0366581 0.0727136 0.0371657 +0.0102886 0.13098 0.0134608 +0.0549839 0.0534895 0.00121219 +0.0229081 0.0608908 -0.0255785 +-0.0578484 0.0576892 0.00460939 +-0.0380707 0.123893 0.0251235 +0.0425051 0.049941 0.0324381 +-0.0208164 0.0797246 0.0560382 +-0.0600611 0.155861 0.0164593 +0.0128031 0.126304 -0.00413421 +0.0254584 0.0383883 -0.00303811 +-0.0782251 0.104799 0.0333593 +-0.011635 0.0466548 -0.0295721 +-0.0227746 0.0968676 -0.024693 +0.00330234 0.0626197 -0.0330565 +-0.00750217 0.0787518 0.0577101 +-0.043485 0.109867 0.0381531 +0.000280959 0.0655552 -0.0344559 +0.0303619 0.0982175 -0.0159971 +-0.0671228 0.150867 0.0375155 +-0.0251523 0.0635221 0.0411049 +-0.0732036 0.147141 -0.0198634 +-0.0403541 0.121097 -0.0120881 +0.0144177 0.0388354 -0.0218485 +-0.0912331 0.114706 0.0382141 +0.0261502 0.120654 0.0264581 +-0.0131682 0.0974746 0.0509922 +-0.0718669 0.115007 -0.00776782 +0.0425779 0.0929869 -0.00379718 +-0.0228308 0.0881946 -0.0369029 +-0.00860718 0.0361712 0.0494902 +-0.0685057 0.159542 -0.0539539 +-0.0864902 0.103559 0.00540359 +-0.0697818 0.16064 -0.00887941 +-0.05157 0.0657725 0.0357523 +0.036411 0.0430004 -0.00393346 +-0.0617308 0.0752409 -0.0175405 +-0.0384866 0.112537 0.0353486 +0.0446565 0.076299 -0.00080692 +-0.0444716 0.165339 -0.00887164 +0.0234256 0.0994865 0.0445818 +0.0411691 0.0899632 0.029736 +-0.0188353 0.12777 0.00853266 +-0.079023 0.172207 -0.0429929 +-0.0509196 0.141445 0.00173554 +-0.013506 0.0486161 0.0481837 +0.0193259 0.0665212 -0.0284749 +-0.0472913 0.128011 -0.00322004 +-0.0626481 0.167836 -0.0465871 +-0.0304696 0.0875178 0.0438182 +-0.0917743 0.120197 0.0434965 +-0.0648107 0.0617811 0.00082735 +0.000497836 0.114196 0.0414191 +0.0574118 0.0647963 0.00219725 +-0.0558676 0.0941545 -0.0217392 +-0.0336084 0.073768 -0.0234794 +0.00599322 0.131555 0.0161709 +0.00890036 0.0630937 0.0549611 +-0.062689 0.110949 0.0372761 +0.000505603 0.092515 0.0555251 +0.0223468 0.121292 -0.00473526 +-0.0486224 0.0562169 -0.0104362 +-0.00349838 0.0938964 0.0554871 +-0.0444734 0.111133 -0.0175908 +-0.0110869 0.111309 -0.0199045 +-0.0706182 0.161097 -0.00919138 +-0.0852334 0.0992128 0.0278144 +-0.0739196 0.15466 0.0290556 +0.0296062 0.0693912 -0.0207509 +-0.0310679 0.0435994 -0.0290446 +-0.0381696 0.0351458 0.0102677 +0.0601731 0.0664558 0.0181654 +-0.0779755 0.159708 -0.0199256 +-0.0656034 0.0619186 0.0220381 +-0.0875197 0.139142 0.00819442 +0.057949 0.0523838 0.0161799 +-0.0789979 0.165257 -0.0319521 +-0.0651299 0.139658 0.0409855 +-0.021445 0.0539977 0.0453008 +-0.0896519 0.136557 0.0371913 +-0.0534965 0.0890047 0.0449968 +-0.0534319 0.15708 0.0101259 +-0.0328837 0.0835575 -0.0275315 +-0.0164672 0.0659336 0.0534892 +-0.0354329 0.0383545 -0.00847377 +-0.0708675 0.102264 -0.0137609 +-0.023563 0.126621 0.00971624 +0.0103735 0.0460953 0.0463477 +-0.0660593 0.179544 -0.0550745 +-0.0527874 0.0854974 -0.0215293 +-0.0859388 0.0819759 0.019473 +0.0105508 0.12954 0.0235608 +-0.0103855 0.174149 -0.0227989 +-0.0669072 0.0448192 0.00702222 +-0.0284871 0.0932302 -0.0255941 +-0.0674877 0.041922 -0.00126982 +-0.0650925 0.142629 -0.00933509 +0.0420248 0.0845075 -0.00777453 +-0.0790747 0.0713835 0.0198308 +-0.0261077 0.0372445 -0.0185929 +-0.0370217 0.0410946 -0.0286549 +-0.0635554 0.166233 -0.0355972 +-0.0218769 0.105849 -0.0224625 +-0.0880158 0.125695 0.0466833 +-0.0621699 0.128298 0.0417254 +-0.0849635 0.115612 0.0476218 +-0.0132844 0.180127 -0.0228495 +-0.0282267 0.181005 -0.00798034 +-0.0312929 0.0665317 -0.0234435 +0.0182349 0.0355117 -0.0116753 +0.0151438 0.128336 0.0223847 +-0.0440686 0.0364096 0.0444754 +0.00518099 0.090879 -0.0329112 +-0.00712692 0.130239 0.0200248 +-0.00350074 0.0760658 0.0587997 +0.0285239 0.105924 -0.0141978 +-0.0560757 0.0486306 0.0102324 +-0.0647346 0.0751547 -0.0168067 +-0.0681413 0.163425 -0.0155251 +-0.0632877 0.151202 -0.0295741 +-0.0467953 0.0573798 0.0374139 +-0.0434795 0.10013 0.0422114 +0.0285718 0.0898068 -0.0210622 +0.0330592 0.116487 0.0176444 +-0.0241054 0.0348343 0.0490127 +-0.0124791 0.0354015 -0.0179384 +0.0405961 0.0624185 0.0297312 +-0.081387 0.11145 0.0446717 +0.00150869 0.0675259 0.0561223 +0.00629906 0.0381702 -0.0111411 +-0.0201579 0.171232 -0.0211109 +-0.0418025 0.1163 -0.0150397 +0.00651017 0.0786147 0.0558016 +-0.0940189 0.11877 0.0172997 +-0.0685972 0.0635876 0.000162346 +-0.0328398 0.0722904 -0.0244709 +-0.0455312 0.131052 0.00748081 +-0.023441 0.181825 -0.0105699 +0.0108694 0.130662 0.0179509 +0.0123886 0.0463398 -0.0252064 +-0.0652697 0.118619 0.0495916 +0.00206776 0.0348089 0.0386094 +-0.0298407 0.0705727 -0.0304857 +-0.0632339 0.164684 -0.0315914 +0.0353918 0.0491057 -0.00653987 +-0.0392946 0.123101 -0.0101877 +-0.0885378 0.137788 0.0102157 +-0.0234958 0.100256 0.0443804 +0.04037 0.0460545 -0.00454494 +-0.016752 0.0336597 -0.0246752 +0.0413281 0.0697537 0.029756 +-0.077268 0.161738 -0.0185704 +0.00995573 0.0897855 -0.0311748 +-0.0494127 0.0345257 0.0351696 +-0.00258654 0.0376582 -0.0251248 +-0.0538672 0.149311 0.025406 +0.0281029 0.0968693 0.0425418 +-0.0296256 0.0384042 -0.00919904 +-0.0659714 0.070335 0.0357803 +-0.0792849 0.109686 0.041215 +-0.0609581 0.142927 -0.00458074 +-0.064489 0.16418 -0.0242498 +-0.0585553 0.060477 0.023496 +-0.0851998 0.104954 0.024348 +0.0164098 0.126062 -0.00187701 +0.0235925 0.125057 0.0140956 +-0.00865281 0.123002 -0.0103525 +-0.0132305 0.174198 -0.0268981 +-0.0453894 0.130637 0.0193744 +0.0162761 0.0694793 -0.03005 +-0.0894525 0.128349 0.0437622 +-0.0562473 0.0708294 0.0392023 +0.0180456 0.044911 0.0433906 +-0.0626788 0.119898 0.0446407 +-0.0206698 0.116197 -0.0150314 +0.051506 0.0461707 0.0202521 +-0.0541367 0.13422 -0.00388726 +0.0303748 0.106409 -0.0127112 +0.0453408 0.0805541 0.00120995 +-0.00350137 0.0788045 0.0582113 +-0.052917 0.144693 0.0213981 +-0.0810085 0.136808 -0.00286908 +0.0435987 0.0482711 0.0311843 +-0.00549934 0.085642 0.0570911 +-0.0414264 0.125093 -0.00826982 +-0.0534716 0.0490986 0.0276613 +-0.0833044 0.10329 0.0285866 +-0.0394866 0.111153 0.0363447 +0.00954728 0.0389439 0.0451085 +-0.035694 0.0666325 -0.0153314 +-0.0301817 0.12316 -0.0042413 +-0.0383432 0.127011 0.0175779 +-0.0603252 0.0707596 0.0383929 +-0.0249438 0.0380891 0.0543244 +0.0144999 0.10985 0.0401157 +-0.0387789 0.0392857 0.0427431 +-0.0390181 0.126516 -0.0038056 +-0.0628844 0.116571 -0.0108779 +-0.0718222 0.0666154 0.0237319 +-0.0176233 0.0640054 0.0519373 +-0.0878362 0.112676 0.0422322 +-0.0661452 0.115702 0.0482687 +-0.0464951 0.116619 0.0318843 +-0.0501411 0.130626 -0.00198394 +-0.0497482 0.0767922 -0.0184367 +-0.0234881 0.0462034 0.0522022 +-0.0739006 0.162422 -0.0359639 +-0.0262017 0.0878115 0.0498853 +-0.0133444 0.0389099 -0.0138542 +0.040243 0.0970923 -0.00582991 +-0.011153 0.129981 0.0142184 +0.0309714 0.035145 0.0133989 +-0.0426252 0.0534503 -0.0112074 +-0.0538286 0.0338166 -0.0117099 +-0.0622047 0.0394245 0.0433885 +-0.0746849 0.14995 -0.0294029 +-0.0611865 0.0441212 -0.00432669 +-0.0182092 0.177147 -0.0243125 +0.0435018 0.0542009 0.0324922 +0.0364352 0.0371002 0.0145635 +-0.0321091 0.03378 0.0163326 +-0.0627516 0.145959 -0.00957815 +-0.0054968 0.061946 0.0559894 +-0.0738575 0.159643 -0.0319319 +-0.0640268 0.154208 0.0310565 +-0.0679826 0.0819454 0.0421862 +-0.0571357 0.158766 0.00595884 +0.0416081 0.101418 0.000182195 +-0.0235633 0.0565791 0.042552 +-0.0707052 0.0656331 -0.000502385 +0.0151645 0.126939 0.0266898 +0.0319146 0.0808971 0.042698 +0.0591439 0.0594194 0.00516163 +-0.0517306 0.164095 4.31123e-05 +-0.0802487 0.109228 0.032428 +-0.0124889 0.0964872 0.0522501 +0.0122905 0.06666 -0.0305971 +-0.00890819 0.0389895 -0.0111716 +-0.0414812 0.0634467 0.0412468 +0.0440882 0.090317 0.0231627 +-0.048759 0.14421 0.00252118 +-0.0240109 0.113853 -0.0165323 +-0.0863077 0.083293 0.0084931 +-0.0848578 0.117602 -0.00112226 +-0.0758939 0.107753 -0.00831552 +-0.0240922 0.0551393 0.0417051 +-0.048723 0.134043 0.0239744 +-0.075211 0.159631 -0.0279486 +-0.0458972 0.108476 -0.0187253 +-0.0827664 0.0789303 0.000509537 +-0.0413647 0.150284 -0.00509832 +0.00543597 0.131652 0.0145423 +-0.0567655 0.0797174 -0.020408 +-0.0314842 0.0875139 0.0436743 +-0.0272508 0.169746 -0.00972716 +-0.055503 0.0918468 0.0452512 +-0.0250407 0.11597 -0.0147569 +-0.0757456 0.155966 0.0196325 +0.0124869 0.0936385 0.0515089 +-0.0205861 0.122762 0.0284276 +-0.0807235 0.116228 0.0481624 +0.0260285 0.0450625 -0.0106845 +-0.0593728 0.0579489 0.0125735 +-0.049763 0.132774 0.0280532 +-0.0486523 0.128248 0.029602 +-0.0786364 0.0880738 -0.010561 +-0.0292743 0.157003 -0.0105584 +-0.0728269 0.0950692 -0.0149677 +-0.0571361 0.0333705 -0.00647115 +0.00471531 0.10507 -0.02128 +-0.0617504 0.158434 -0.0225881 +-0.044324 0.0573856 0.0392571 +-0.0231291 0.0608213 0.0434196 +-0.0736852 0.109489 0.0408578 +-0.0434867 0.102921 0.0416521 +-0.0745585 0.102629 0.0369846 +-0.00580621 0.0826794 -0.0377615 +-0.0293232 0.155967 -0.00892475 +-0.0785045 0.111148 0.0455755 +-0.0789041 0.126621 -0.00628203 +0.0387126 0.0984064 -0.00782785 +-0.00546749 0.0386155 0.00470576 +-0.00150095 0.0925253 0.0558525 +-0.0200678 0.0384268 0.0272406 +-0.0900294 0.114549 0.0240977 +-0.0775366 0.070359 0.00451989 +-0.0719896 0.139908 -0.00735583 +-0.0574975 0.0987515 0.0429871 +-0.0321271 0.107425 -0.0197503 +0.0188647 0.126347 0.0223312 +0.00641604 0.0962346 -0.0278978 +0.00311817 0.108714 -0.0201476 +-0.0160251 0.0375717 -0.0270066 +-0.0497158 0.140127 0.00540861 +-0.0603383 0.155998 0.00765284 +-0.0315045 0.100214 0.0434156 +-0.0865647 0.0978132 0.0263535 +0.030619 0.119354 0.0124235 +-0.0618449 0.153748 -0.0225793 +0.0357348 0.111877 0.0229152 +-0.0825172 0.108952 0.0273498 +-0.06497 0.156112 0.0234152 +-0.0141713 0.0391912 0.0511685 +0.0418096 0.0482673 0.0320498 +0.0293522 0.0768437 0.0442363 +-0.00664275 0.113752 -0.0185066 +-0.0339572 0.173519 -0.0141904 +-0.0868865 0.136539 0.0438118 +-0.0358508 0.0350331 0.0126434 +-0.0538363 0.0491492 0.0306601 +-0.0555251 0.040203 -0.0098178 +0.00654381 0.0340863 -0.0167284 +0.00392426 0.0984839 -0.0242888 +-0.0798351 0.078638 0.0310296 +-0.0520723 0.122646 0.0352105 +-0.0550812 0.153793 0.0226168 +0.014566 0.128157 0.000776346 +-0.0875094 0.103632 0.00838188 +0.0565843 0.0508466 0.00719292 +-0.0301736 0.0353405 0.0506988 +-0.054126 0.0491389 0.0369634 +-0.0213227 0.0927441 -0.0344661 +-0.0512299 0.133896 0.029412 +-0.0175551 0.0668893 0.0531861 +-0.0306537 0.125522 0.0174226 +0.00435638 0.0524337 -0.0297062 +-0.030037 0.0383331 -1.37538e-05 +-0.0748829 0.104948 -0.0102086 +0.0281452 0.12091 0.0214948 +-0.00129242 0.0339647 -0.0219341 +-0.0193753 0.114664 -0.0174341 +-0.0226586 0.185005 -0.0161016 +0.0333802 0.116202 0.0163348 +-0.0182505 0.0920203 0.0545129 +0.0291993 0.0821983 0.0440432 +0.040955 0.104188 0.00218636 +-0.0221399 0.16826 -0.0191908 +-0.0160775 0.128732 0.0124337 +-0.0494959 0.115246 0.0337414 +-0.0623926 0.155248 -0.0336012 +-0.0504873 0.0646576 0.0351978 +-0.0738463 0.114952 -0.00659368 +-0.0195012 0.0351765 0.0514244 +-0.0448823 0.107056 -0.0197924 +-0.0768765 0.119334 -0.00688293 +0.0107885 0.0345143 -0.0106366 +0.024237 0.0727429 0.0473317 +-0.00865103 0.0511695 -0.0319029 +-0.0877012 0.0963902 0.0247068 +-0.0518399 0.0559545 0.028629 +-0.00150749 0.0442279 0.0463824 +-0.066685 0.0361231 0.0351414 +-0.0298413 0.0511486 0.0404908 +-0.0104881 0.125079 0.0309157 +-0.0478366 0.0336224 0.000642732 +-0.0567073 0.152073 0.0307854 +-0.0772744 0.177812 -0.051035 +-0.0147745 0.0770701 -0.0384436 +-0.0929915 0.122891 0.0372721 +-0.0104786 0.116885 0.0389916 +0.0382147 0.0603208 -0.00873991 +-0.0754893 0.145614 0.0436847 +-0.0484504 0.134772 0.0211152 +0.013378 0.056283 0.0508299 +-0.00197361 0.0339973 -0.0202101 +0.0414332 0.100023 0.0231582 +0.0306311 0.076191 -0.0209647 +-0.0663516 0.155012 0.0287678 +-0.0710496 0.158811 -0.00499394 +-0.0554619 0.115432 0.0354757 +-0.0357408 0.0754574 -0.0191515 +0.000523827 0.0787529 0.057707 +-0.0189564 0.187079 -0.0195498 +-0.0849859 0.149949 0.0316738 +-0.0578691 0.0427244 -0.00751381 +-0.0739068 0.123785 -0.00803832 +-0.0355104 0.105608 0.0391036 +-0.0437169 0.0336921 -0.00956971 +0.0503986 0.0446075 0.0172106 +0.028338 0.0371627 0.023798 +-0.0835031 0.123045 0.0493423 +-0.051023 0.051637 0.0206282 +0.00799809 0.131294 0.0169006 +-0.0154642 0.0617228 0.0531313 +-0.0548148 0.0898539 -0.0222515 +0.0183688 0.0727072 0.0511848 +-0.0528816 0.143158 0.0234068 +0.0423208 0.0885482 0.027912 +-0.0489879 0.148715 -0.00337283 +0.0536516 0.0710277 0.00477709 +-0.0558317 0.154614 0.0193814 +-0.078074 0.0921324 -0.0116061 +-0.0138482 0.126055 -0.00351425 +-0.0484951 0.107035 0.0396855 +-0.0617568 0.113454 -0.0138737 +-0.0539631 0.0449066 0.021682 +-0.0323187 0.0763806 -0.0295323 +0.0441984 0.0917353 0.0221589 +-0.0830674 0.136771 -0.000769185 +-0.0741071 0.154101 -0.0239055 +-0.0686886 0.176906 -0.0487674 +-0.0561408 0.0460708 0.0131999 +-0.0685022 0.101419 0.0404594 +-0.0739688 0.0653923 0.0119616 +0.001175 0.0909253 -0.0339059 +0.0263146 0.0782009 0.0468843 +0.00192116 0.123969 -0.00948312 +-0.0587405 0.0737726 -0.0173801 +-0.0627949 0.167828 -0.0455908 +-0.0508006 0.0883889 -0.0215985 +-0.0481052 0.0559539 0.0359192 +0.0442623 0.0959503 0.0151546 +-0.0608758 0.0968112 -0.0186271 +-0.0345924 0.0485568 0.0396695 +-0.0618805 0.102572 -0.018381 +0.024797 0.0615121 -0.0241542 +0.0398079 0.0440192 0.0290809 +-0.0138249 0.0869198 -0.0385386 +-0.00950254 0.0801627 0.0580817 +-0.0893667 0.135016 0.00621309 +-0.0210328 0.0946153 0.0501685 +0.0124741 0.0347469 0.026362 +-0.0837947 0.100615 0.0291484 +-0.0677074 0.147127 -0.0273126 +-0.080936 0.0720826 0.0105433 +-0.0486367 0.0591511 -0.0114572 +-0.0856634 0.1104 0.0223511 +-0.0321401 0.16671 -0.0160336 +-0.0724955 0.174948 -0.0415233 +-0.0260317 0.0348457 -0.0200988 +-0.0274922 0.0497667 0.0454723 +-0.0394917 0.0534182 0.0393765 +0.0515114 0.0691441 0.0252354 +-0.0257438 0.12256 -0.00564443 +0.0437634 0.0832354 -0.00281017 +-0.0247629 0.0727034 -0.0370836 +-0.0655551 0.156269 0.0188465 +-0.0629848 0.136718 0.0370028 +0.0602499 0.0678328 0.0161531 +-0.0168173 0.0841632 -0.0392397 +-0.0683543 0.152019 -0.0462463 +-0.0567286 0.155485 0.0133042 +-0.0124895 0.119639 0.0367572 +-0.0620219 0.161552 -0.0385959 +-0.0485081 0.0504118 0.037253 +-0.0681426 0.159579 -0.055037 +-0.0339899 0.0738027 -0.0224777 +0.0187727 0.038419 -0.0166964 +-0.00951396 0.0647096 0.055646 +0.0373151 0.0659642 0.0362985 +-0.0697681 0.156742 -0.0499137 +-0.07512 0.161006 -0.0309706 +0.0445653 0.094573 0.0151616 +-0.0642545 0.154418 -0.039754 +0.0245051 0.108393 0.0385583 +-0.0423597 0.0337264 -0.0019814 +0.0111186 0.130773 0.0109156 +-0.0366056 0.0484481 -0.0142844 +-0.00762999 0.0387797 -0.0144679 +-0.0695561 0.0340783 0.00839793 +-0.0566909 0.0334951 0.00618234 +-0.0565711 0.159859 0.00306588 +0.000399482 0.0419381 -0.024642 +-0.0505546 0.0490872 0.0373101 +-0.0513639 0.0402537 0.0462611 +-0.0256858 0.0575487 -0.0293997 +-0.0524956 0.0890116 0.0451123 +0.044036 0.0973464 0.00517085 +-0.0774531 0.156901 -0.0199195 +0.0267966 0.0534918 0.0403155 +-0.0887231 0.0888754 0.0204484 +0.014348 0.0534071 0.0486823 +-0.0495075 0.0490436 0.0377607 +-0.0321324 0.154142 -0.000565596 +-0.0856354 0.143297 0.0395519 +-0.0344784 0.0932112 0.0445123 +-0.0688653 0.0860793 0.0429202 +-0.068567 0.167578 -0.0243154 +-0.0155024 0.084237 0.0568519 +-0.0768438 0.0975378 -0.0115852 +-0.054418 0.142404 0.0282888 +-0.00749562 0.091199 0.0567536 +0.0202715 0.077733 -0.0270961 +-0.0748613 0.102114 -0.0115761 +-0.0102609 0.0389601 -0.0132864 +-0.060805 0.0953608 -0.018741 +-0.0557308 0.0738305 -0.0174435 +-0.0789903 0.0900056 0.0359819 +0.0427074 0.0831548 -0.00579292 +-0.00549246 0.097843 0.0523265 +0.046038 0.0679968 0.0252834 +-0.0235521 0.116765 0.0343279 +0.0302394 0.0759037 -0.0212804 +-0.0212883 0.0638258 0.0471454 +0.0285217 0.0480557 -0.0127278 +-0.0326422 0.080708 -0.0295257 +-0.0545922 0.126915 0.0368606 +-0.07894 0.12954 -0.00577029 +-0.0871517 0.0874756 0.0234341 +0.0457525 0.0862068 0.0131643 +-0.0636848 0.163906 -0.0268361 +-0.01113 0.175691 -0.0290055 +-0.0644352 0.0424097 0.0302481 +0.00751322 0.0883379 0.0556646 +0.0450791 0.0411084 0.0144119 +-0.0801842 0.0990978 -0.00757647 +0.00942317 0.0752723 0.0558271 +-0.0720162 0.169175 -0.0255925 +-0.0706469 0.0749114 -0.0128891 +-0.0231537 0.124452 0.0216177 +-0.0354775 0.0932002 0.0444179 +-0.0467494 0.0782878 -0.0191673 +0.0402616 0.088708 0.0319407 +-0.0668021 0.0909191 -0.0174744 +-0.0798777 0.0922401 -0.00961163 +-0.00990791 0.168128 -0.0187599 +-0.0538472 0.144686 0.025416 +-0.0506923 0.0693793 -0.0143111 +-0.0628457 0.158366 -0.0406006 +-0.0472527 0.147738 0.00869118 +-0.0798492 0.140347 -0.0037915 +-0.0633595 0.155022 0.00583483 +0.0194938 0.0948135 0.0473832 +-0.0235952 0.03653 -0.0288249 +-0.0625329 0.155555 0.0257427 +-0.0293056 0.125075 0.00323421 +-0.0848075 0.100731 -0.000569426 +0.0362036 0.112389 0.0159326 +0.0148576 0.0726711 0.0531263 +-0.0648898 0.0353536 0.0257632 +-0.0225355 0.115413 0.0360839 +0.0344395 0.062733 -0.0148459 +-0.0404982 0.0548597 0.0396645 +0.0241838 0.0363666 0.0254891 +0.0185331 0.065881 0.0495848 +0.0124938 0.0589954 0.0513278 +0.00977817 0.131153 0.0118468 +0.0100829 0.0519948 0.0512903 +-0.0361503 0.127316 0.0154104 +-0.0482545 0.05323 0.0361705 +-0.0940988 0.124142 0.016266 +-0.0100812 0.168118 -0.0236136 +-0.00900002 0.1303 0.0121232 +0.044368 0.0832642 0.000211132 +-0.0417803 0.126317 0.0192991 +-0.0875576 0.0954908 0.0044419 +-0.0679508 0.168029 -0.055011 +-0.0131452 0.0346678 0.0462791 +0.00685606 0.0990064 -0.0228407 +0.0328304 0.0354201 0.0116657 +0.0278048 0.121695 0.017093 +0.0445188 0.0721805 0.0237826 +-0.0754994 0.115715 0.0515239 +-0.0115085 0.0815323 0.0578355 +-0.0530625 0.0625594 0.0307632 +-0.0510483 0.053037 0.0206135 +-0.0505791 0.0488657 -0.00826795 +-0.0426076 0.0338549 0.0069173 +0.0392521 0.0940728 0.0323259 +-0.0394892 0.0846821 0.0435801 +-0.0451321 0.0560164 0.0386443 +-0.00431394 0.0929621 -0.0345661 +-0.0559672 0.149602 0.0296453 +-0.0635672 0.159894 -0.0552656 +-0.0854828 0.0924603 0.0282645 +-0.000403311 0.102922 0.0441774 +-0.0728513 0.077742 0.0372898 +-0.0264927 0.0850795 0.0502634 +0.00748229 0.118415 -0.0155852 +-0.0301257 0.165235 -0.016018 +-0.00266679 0.0554838 -0.0324138 +0.0588141 0.0660698 0.0217199 +-0.0227042 0.0651451 0.0456598 +-0.0254758 0.0447668 0.0519525 +-0.0221249 0.165275 -0.017299 +-0.0673863 0.146352 -0.0244353 +0.0358297 0.112651 0.00431137 +-0.0600953 0.0345101 0.0398512 +-0.0315135 0.112545 0.0354646 +-0.0495533 0.0335732 0.00214603 +0.00748118 0.122397 -0.0118721 +-0.017033 0.0949215 -0.0326512 +-0.0465027 0.162256 0.00645028 +-0.0377072 0.0695284 -0.0160926 +0.0515389 0.0638758 -0.00198972 +-0.0406583 0.0577787 -0.0115563 +-0.078333 0.108337 0.035368 +-0.00970184 0.120973 -0.0121849 +0.0223756 0.0822421 0.0500191 +-0.0598969 0.0982824 -0.0189251 +-0.000418527 0.128183 0.0282442 +0.0398162 0.107019 0.0141667 +-0.0275139 0.118013 0.031246 +-0.0270215 0.0563432 0.0375362 +0.0105198 0.130786 0.00926843 +0.00339772 0.0418993 -0.0241367 +-0.0275013 0.113896 0.0350206 +0.0202412 0.0763232 -0.0271232 +-0.0919625 0.126955 0.0342506 +-0.0433008 0.0345877 0.0364134 +0.0433553 0.0860087 -0.00480358 +0.0208045 0.119446 -0.00872458 +-0.0930264 0.120177 0.0342925 +-0.0379377 0.157973 0.00463177 +-0.0253167 0.177183 -0.0103739 +-0.0366224 0.0519804 -0.0105023 +-0.0707047 0.079127 0.0393559 +-0.0260772 0.0606359 0.0392914 +-0.0238556 0.126292 0.00669874 +0.00550694 0.0561304 0.0532033 +-0.0537237 0.147766 0.0244131 +-0.0691531 0.167331 -0.0231015 +-0.0596786 0.0738084 0.0412039 +0.0326792 0.103442 0.0351236 +-0.0614661 0.174127 -0.0585981 +-0.0717687 0.0836085 -0.0162896 +-0.0457927 0.0869975 -0.0219586 +0.0105224 0.0990052 0.0483243 +-0.0829648 0.129479 -0.00406234 +-0.0356761 0.0343506 0.0364799 +-0.0884531 0.0888833 0.0214341 +-0.0627252 0.0416196 0.0257026 +-0.0564562 0.159872 0.00406757 +-0.0891671 0.0942549 0.0124334 +0.00850148 0.0561026 0.0528172 +-0.0897269 0.113038 0.0361809 +0.0510319 0.0481609 0.0243415 +-0.0355318 0.0341909 0.0278174 +0.0439268 0.0945301 0.0211547 +-0.0579061 0.0357757 0.046064 +-0.0154366 0.0383652 0.00473292 +-0.0175221 0.187321 -0.0198494 +-0.00549946 0.0842482 0.0569765 +0.0601999 0.0678503 0.0111396 +0.0144807 0.0658974 0.0525165 +0.0293268 0.0963357 -0.0179631 +-0.0397817 0.126122 -0.00537397 +0.0345713 0.109241 -0.00571538 +0.0142478 0.0846938 0.0523116 +-0.00151223 0.107257 0.0435513 +-0.0568094 0.0336832 0.0202688 +-0.00449913 0.108643 0.0435023 +0.0366018 0.0989128 -0.0107075 +-0.0520805 0.0552272 0.0244826 +-0.0564227 0.125779 -0.00685719 +-0.045508 0.0519257 0.0382686 +0.0321211 0.116144 0.000111339 +-0.0560271 0.142758 -0.00201441 +-0.0204991 0.12085 0.0318342 +-0.0572069 0.155002 0.0203881 +-0.0683862 0.0434928 0.00469407 +-0.0749362 0.167415 -0.0237916 +0.00950453 0.0758273 0.0557308 +0.0134626 0.0962698 0.0490469 +-0.0352581 0.0336435 0.0104036 +0.0033475 0.0524625 -0.0299019 +-0.0200406 0.0417644 0.0532372 +-0.020634 0.03806 0.0202475 +-0.0354822 0.0590569 0.0395591 +-0.0633421 0.145588 -0.0131138 +0.0560276 0.0714782 0.0201554 +-0.034079 0.157748 -0.0116645 +0.0430592 0.0871926 0.0271788 +-0.067061 0.0617728 0.0200983 +0.0054202 0.0385344 -0.0060218 +-0.0562382 0.115455 0.0360976 +0.0318915 0.0727133 0.0408308 +0.00701986 0.131464 0.0165435 +-0.00758439 0.038449 0.00988421 +-0.0401838 0.128459 0.00507702 +0.0467715 0.0482711 0.0287479 +-0.0918049 0.126804 0.00826817 +-0.0821184 0.0782385 0.0256306 +-0.0812562 0.103354 0.0307723 +-0.0639536 0.144435 -0.0123561 +-0.0108662 0.129871 0.00999779 +0.0155048 0.112635 0.0385412 +0.0182534 0.0792348 -0.0283217 +-0.0893331 0.0983151 0.0114073 +-0.00325216 0.0396403 0.0476826 +-0.0241255 0.089259 0.0519927 +-0.0858632 0.106258 0.00536057 +0.00408474 0.0346021 -0.0158016 +-0.0407936 0.0869784 -0.0214607 +-0.0166484 0.0480949 -0.029815 +-0.0157153 0.0613848 -0.0360938 +-0.0566239 0.0482507 0.0375737 +-0.0424946 0.0619914 0.040787 +-0.0676789 0.0735575 -0.0139417 +-0.00550026 0.0815011 0.0573318 +-0.0466697 0.166955 -0.00590454 +0.050335 0.0531616 -0.00370253 +-0.075448 0.162419 -0.0329687 +-0.0614914 0.089051 0.0454546 +-0.0467107 0.0709021 -0.0159388 +0.0485116 0.0611011 0.0306918 +0.0308141 0.0862286 0.0429136 +0.041033 0.0788113 -0.0077656 +-0.0332536 0.0434286 -0.0288825 +-0.0599631 0.0455474 0.028679 +-0.0106693 0.0383927 0.00930564 +0.00450171 0.04895 0.0512539 +-0.0567297 0.0738308 -0.0175741 +-0.0395016 0.128216 0.0127148 +-0.0236465 0.18441 -0.0150532 +-0.0541007 0.0517729 -0.00535724 +-0.00963566 0.0383633 0.0204127 +-0.072501 0.11898 0.053434 +-0.072483 0.0356257 0.00284128 +-0.0164962 0.0815146 0.0575151 +0.0321311 0.10568 -0.0119259 +-0.0628015 0.0867155 -0.0190743 +-0.0747157 0.155426 0.0258403 +-0.0655092 0.0986926 0.0420188 +-0.0621042 0.153787 0.0317461 +0.0075074 0.0702645 0.0557506 +-0.0873725 0.140519 0.00919988 +-0.0816979 0.073476 0.0105355 +-0.0251078 0.125921 0.00624226 +0.0143125 0.129601 0.0135477 +0.0537172 0.0701657 0.00367339 +-0.0658178 0.165764 -0.0247368 +-0.0706171 0.164859 -0.0164358 +-0.0268181 0.0385613 -0.0106363 +-0.0308492 0.121938 -0.00695618 +-0.0240991 0.0708914 0.0469009 +0.00836584 0.0509624 -0.0290525 +0.0146552 0.0361528 0.0436042 +-0.0759244 0.155422 0.00936737 +0.00291872 0.0383891 0.0247663 +-0.0483005 0.12541 0.0300666 +0.00749081 0.093253 -0.0307631 +-0.0441374 0.160646 -0.00957119 +-0.0454954 0.0945383 0.0433792 +0.0153865 0.0350801 0.00287497 +-0.0507565 0.078263 -0.0192091 +-0.014682 0.0540945 -0.0332776 +-0.0697195 0.0625059 0.018914 +-0.0850789 0.151288 0.0289026 +0.000998881 0.131517 0.0100563 +-0.0866192 0.111201 0.0383037 +-0.0257526 0.069725 -0.0351721 +-0.0832913 0.0938266 -0.00556456 +-0.00149798 0.121047 0.037107 +-0.0164922 0.103019 0.043564 +-0.00175716 0.0797524 -0.0362245 +-0.065193 0.165273 -0.0595568 +-0.00746087 0.0391472 0.0345828 +-0.0384976 0.0790115 0.0428361 +-0.00149834 0.095227 0.054625 +-0.00277478 0.078376 -0.0365291 +-0.0780329 0.155476 0.0217657 +-0.0632159 0.147647 -0.016402 +-0.0801569 0.0817921 0.0331577 +-0.0500022 0.16408 -0.00389251 +-0.0747874 0.0892505 -0.0147771 +-0.00949475 0.122405 0.0348735 +-0.0322196 0.0423712 0.0501883 +-0.00876131 0.174216 -0.0276966 +-0.0545091 0.161256 6.9518e-05 +0.0181832 0.102054 0.0457705 +-0.0604933 0.102915 0.04183 +0.0437773 0.0804492 0.0262342 +0.0388648 0.0842467 -0.0137667 +-0.00550336 0.0647558 0.0562438 +-0.0929299 0.122874 0.0352771 +-0.043447 0.0338958 0.0281851 +-0.0649274 0.155826 -0.0455264 +-0.00117719 0.0381217 -0.0144579 +-0.0146742 0.180146 -0.0213737 +-0.0911602 0.113316 0.0133388 +0.0114933 0.0990667 0.0482243 +-0.030492 0.093206 0.0443051 +-0.00885946 0.13031 0.0150517 +-0.073851 0.0979023 -0.0138506 +0.00349864 0.0505127 0.0525247 +0.0579498 0.0621469 0.0239372 +-0.0266127 0.121438 0.026306 +-0.0640364 0.138454 -0.00746704 +-0.0881537 0.0875035 0.020457 +-0.0693202 0.16097 -0.0509443 +-0.0258632 0.0384431 -0.0103374 +-0.0445084 0.162276 0.00597583 +0.002127 0.0994865 0.0488443 +-0.00523434 0.128086 0.0279795 +0.0441694 0.0706598 0.0245614 +0.00913312 0.10443 -0.020596 +-0.00849151 0.104452 0.0437135 +-0.0709552 0.134052 -0.00817596 +0.040546 0.0860518 0.0323351 +0.026933 0.109961 -0.012516 +0.0171797 0.119654 -0.0109592 +-0.0154871 0.10859 0.0421893 +-0.0544999 0.0945829 0.0441089 +-0.0942376 0.122836 0.024283 +0.0145822 0.10067 -0.0225932 +0.0416553 0.0900846 -0.00877196 +-0.0627089 0.0722313 -0.0153832 +-0.0265055 0.0946665 0.044662 +-0.0241067 0.108647 -0.0210644 +-0.0475093 0.0504634 0.0377677 +-0.0271626 0.0836755 0.0495254 +-0.0707023 0.155807 0.00247134 +0.0113316 0.0343299 -0.00659923 +0.0271512 0.0740976 0.0445232 +-0.00214312 0.101026 -0.0230018 +-0.0518271 0.094161 -0.0217872 +-0.0685768 0.0699128 0.0338326 +-0.0538957 0.0344051 0.0325721 +-0.0280624 0.17271 -0.00913079 +-0.0710555 0.148357 -0.0346175 +-0.0392482 0.165334 0.00281642 +-0.0494961 0.159354 0.00844009 +-0.0887346 0.0956375 0.0224045 +-0.0856504 0.126624 -0.00269798 +-0.0486707 0.147744 0.0101492 +-0.0735613 0.16372 -0.0149978 +0.0180716 0.0350245 0.0344937 +-0.0307362 0.053835 -0.015374 +-0.0887393 0.0928617 0.00944255 +-0.016725 0.0627999 -0.0362248 +-0.0190611 0.063953 0.0505398 +-0.0441816 0.0346721 0.0413945 +-0.0593157 0.126918 0.0405689 +-0.0111259 0.174182 -0.0282833 +-0.0436679 0.0621935 -0.0131864 +0.0275209 0.088828 -0.0220264 +-0.0297851 0.0890261 -0.0295849 +-0.0303849 0.154168 -0.00247422 +-0.0425281 0.128954 0.00568377 +0.0162787 0.126801 -0.0006607 +-0.0727179 0.0806647 -0.0147187 +-0.0753424 0.0928083 0.039305 +-0.0798316 0.111318 -0.00180655 +0.0192462 0.0346832 0.00400718 +-0.088108 0.129743 0.0452172 +-0.0103013 0.038437 0.0111565 +-0.0466082 0.166842 0.00289141 +-0.0459915 0.152139 0.00880917 +-0.02765 0.0504128 -0.0240838 +-0.00316977 0.101093 -0.0230747 +-0.081903 0.123614 -0.00465545 +0.0308134 0.104771 0.0359398 +-0.0649698 0.0444252 -0.000282601 +-0.0411724 0.128614 0.0047134 +-0.0566724 0.0661356 -0.00992741 +-0.0768027 0.1218 0.0526081 +0.0286707 0.0432432 0.0323583 +-0.0776442 0.112189 0.0467134 +-0.0599288 0.0595089 0.00385673 +-0.0751102 0.148577 -0.0168689 +-0.0422557 0.0435263 -0.021317 +-0.0109825 0.18157 -0.0273657 +0.0160657 0.128852 0.0141586 +0.0353395 0.113619 0.00703904 +-0.0746273 0.149901 -0.0298709 +-0.0108803 0.105927 -0.0227775 +-0.0134961 0.0472092 0.0480936 +0.0366578 0.0576635 0.0335112 +-0.019761 0.0984382 0.0445534 +-0.0662568 0.117183 0.0498756 +-0.0659606 0.17389 -0.0478108 +-0.0116079 0.0434695 -0.0263093 +-0.0926722 0.117507 0.0393006 +-0.0764843 0.145607 0.0435529 +-0.0467321 0.0337537 0.00617309 +-0.0558876 0.104087 -0.0189213 +-0.0920931 0.126941 0.031257 +-0.0204778 0.086949 0.0559493 +0.0205756 0.0550317 0.0471809 +0.0164894 0.10985 0.0397676 +-0.0639427 0.125311 -0.00880074 +-0.0233699 0.0380458 0.0160874 +0.00571651 0.037694 -0.0126956 +-0.0305064 0.059434 -0.0194047 +-0.0286182 0.0422955 -0.0294891 +-0.074262 0.155148 0.0274653 +-0.0780672 0.161102 -0.0219327 +-0.0710541 0.174778 -0.0424234 +-0.0641619 0.126957 0.0459503 +-0.0724375 0.0643068 0.0185598 +-0.0568864 0.106915 -0.0181412 +0.0293195 0.0995163 0.0407971 +-0.0644558 0.155894 0.01199 +0.00534877 0.131711 0.0116581 +-0.070964 0.169422 -0.0500317 +0.0101411 0.103018 -0.0207697 +0.0413802 0.0547717 -0.00646982 +-0.0385096 0.0776202 0.0427509 +-0.0239792 0.115969 -0.0147616 +-0.0225483 0.119525 0.0321637 +-0.060198 0.152175 0.0339452 +-0.0535114 0.0452153 0.0437642 +-0.0037319 0.0346421 0.0447442 +0.0102653 0.0944766 -0.0280245 +0.0270364 0.0347184 0.00926922 +-0.0660514 0.11246 0.0412419 +-0.0427238 0.072521 -0.0180673 +-0.057924 0.0453324 0.0266819 +0.0321473 0.0354374 0.0133726 +-0.0750002 0.0776536 0.0352037 +-0.0404922 0.11531 0.0337051 +-0.0201478 0.16826 -0.0196016 +-0.0263171 0.178663 -0.00829314 +0.0232364 0.0706221 -0.0263108 +-0.0228968 0.117028 -0.0138782 +-0.0477554 0.130992 0.0255865 +-0.05149 0.104281 0.0405196 +-0.00121687 0.120006 -0.0132177 +-0.0299396 0.0649723 -0.0274594 +-0.0187899 0.0784905 -0.0388371 +-0.0498267 0.109983 -0.0185775 +0.00334971 0.0510613 -0.029847 +0.0259096 0.0534724 0.0407837 +-0.0455367 0.111121 -0.0175743 +-0.0124237 0.0348026 0.0445556 +-0.0887181 0.123977 0.00228597 +-0.088156 0.151596 0.0228856 +-0.0530084 0.149326 0.0224058 +0.0191744 0.125775 0.0238749 +-0.0735068 0.118971 0.0531919 +-0.0585002 0.0987496 0.0428962 +-0.0310887 0.159271 -0.0130615 +0.000886159 0.12297 -0.0104051 +-0.0872227 0.0941086 0.00335062 +-0.0273424 0.0931435 -0.0275899 +0.0213306 0.126248 0.00896939 +0.0549036 0.0506667 0.00319831 +-0.0245658 0.115393 0.0346209 +-0.0908157 0.133668 0.01022 +0.011387 0.126452 0.0296316 +0.0342091 0.0430428 0.0288022 +-0.0759039 0.154928 -0.00089291 +-0.0834635 0.136224 -0.000676656 +-0.0242249 0.124407 -0.00155437 +-0.00949715 0.103034 0.0436292 +-0.0448632 0.102817 -0.0213129 +-0.0762912 0.162417 -0.0319674 +-0.087261 0.137734 0.00520439 +0.0359972 0.0915666 0.0381116 +0.0515419 0.0610093 0.0297195 +-0.0759846 0.168851 -0.0284951 +0.0192535 0.076364 -0.0276613 +0.00153258 0.130437 0.0231622 +-0.0552695 0.058846 -0.00542677 +-0.0478299 0.094184 -0.0219241 +0.0413096 0.0957202 -0.00478826 +0.00646546 0.131591 0.014917 +-0.0921802 0.132348 0.0172238 +-0.00096127 0.131397 0.0150615 +0.0373767 0.0519575 -0.00666499 +0.000499624 0.0661631 0.0564081 +-0.0624427 0.149095 -0.00857615 +-0.0158277 0.127263 0.00131837 +-0.0534778 0.0544994 -0.00645482 +-0.0393097 0.122071 -0.0111029 +-0.0552136 0.0346314 0.0441945 +-0.062546 0.0614527 -0.00215685 +0.0190515 0.0781917 0.0522129 +-0.00645816 0.122156 -0.0114796 +0.0547648 0.068691 0.024634 +-0.0165146 0.104417 0.0427511 +-0.0914381 0.133727 0.0162105 +-0.0621573 0.163143 -0.0375929 +-0.0927674 0.130992 0.0172311 +0.00308348 0.0981539 0.0507387 +0.0223728 0.0658814 0.0463438 +-0.039497 0.060614 0.0410267 +-0.0547684 0.0513541 0.0102674 +0.00252507 0.0561606 0.0537161 +-0.0427018 0.0681213 -0.0161497 +0.0102881 0.063916 -0.0312717 +-0.0443833 0.12939 0.00495951 +-0.0186027 0.160444 -0.0128213 +0.0371116 0.111176 0.0148387 +0.0282213 0.0875505 0.0444323 +-0.0274771 0.120676 0.0274866 +-0.0584936 0.0439589 0.0439647 +0.0240603 0.0822578 0.0489414 +0.0351443 0.071382 0.0384881 +-0.0164918 0.0897515 0.056205 +-0.0781864 0.161095 -0.0229348 +-0.0701455 0.111146 0.0439061 +-0.00742751 0.0346718 0.0457358 +-0.0757375 0.106056 0.0359296 +-0.0735163 0.138649 0.0485985 +-0.0786866 0.073183 -0.00146774 +-0.0425028 0.11664 0.0325093 +-0.0294965 0.105676 0.0405837 +-0.0253323 0.089221 0.0503626 +-0.00687638 0.105938 -0.022783 +-0.0680331 0.17369 -0.0570223 +-0.0709606 0.152484 -0.0460812 +-0.0145326 0.0386197 0.0300043 +-0.0284453 0.0903864 0.0448476 +-0.0688215 0.145351 0.0427408 +-0.0488146 0.109958 -0.0184987 +-0.0764868 0.144228 0.0448323 +-0.0204228 0.0384821 -0.0074254 +-0.050433 0.0505709 0.0355945 +0.00517866 0.131021 0.00445011 +-0.0697426 0.08081 -0.0166425 +-0.084857 0.0924919 0.0290512 +-0.00149439 0.0870302 0.0569025 +-0.072621 0.142849 -0.00891964 +0.0127783 0.105278 -0.0195273 +0.00375967 0.0343287 0.0177156 +-0.0724944 0.126022 0.052902 +-0.0520295 0.0429585 0.0453289 +-0.0373786 0.0478297 -0.016773 +-0.0165095 0.0446732 0.0513338 +0.0115347 0.118055 -0.0152175 +-0.0461946 0.0601644 0.0381445 +-0.0730192 0.156843 -0.0319176 +-0.0665818 0.173704 -0.0590137 +-0.0904622 0.133649 0.00822658 +-0.0661919 0.0387353 0.0332699 +0.0285711 0.0632767 0.0429905 +-0.0191373 0.0348399 0.0448528 +-0.0144945 0.115487 0.0386767 +-0.0885619 0.129493 0.00323888 +-0.00509715 0.039098 -0.012386 +0.00551873 0.0842341 0.0568816 +-0.0784525 0.0962411 -0.0105211 +-0.0126763 0.05824 0.052838 +-0.00571704 0.0642049 -0.0354496 +-0.0659809 0.169803 -0.037696 +0.00534315 0.0567731 -0.0307134 +-0.0104849 0.101611 0.0440429 +-0.0320291 0.108616 -0.01899 +0.0442879 0.0415947 0.0193873 +0.0261947 0.0449183 0.0375802 +-0.0626054 0.158425 -0.0185846 +-0.0321937 0.0694259 -0.0234551 +-0.0597828 0.0810723 -0.0197911 +-0.0274915 0.0602914 0.037483 +0.0278788 0.120142 0.00144262 +-0.00359535 0.0391334 -0.025473 +-0.0104902 0.0619157 0.0554492 +-0.0851123 0.133936 0.0477712 +0.0133897 0.0389058 -0.0222843 +-0.0778477 0.159718 -0.0189229 +-0.0817169 0.081448 -0.00456785 +0.00880568 0.131337 0.0114907 +-0.0885025 0.144515 0.032494 +0.00248318 0.0413744 0.0461608 +0.0393065 0.105567 0.023165 +0.0485408 0.0662379 -0.000364329 +-0.074114 0.159638 -0.0309374 +-0.0656277 0.0636798 0.0258038 +0.0326128 0.0934199 -0.0168733 +-0.0691845 0.152183 -0.0467119 +-0.0356328 0.0347409 0.0201566 +-0.067463 0.166618 -0.0559977 +0.0410852 0.0860175 0.0313838 +-0.0465484 0.0404249 0.0444582 +-0.0884823 0.147207 0.0295866 +-0.047064 0.168385 -0.0010022 +0.0204505 0.044377 -0.0207645 +-0.0460107 0.0426896 -0.0115747 +-0.0892694 0.136527 0.0301984 +-0.00170296 0.0612915 -0.034176 +0.016206 0.0927227 0.0499244 +-0.0816886 0.154881 0.0175845 +-0.0434863 0.0776041 0.0427475 +-0.0883068 0.098239 0.00641854 +-0.045625 0.056311 -0.011298 +-0.0524843 0.150872 0.017395 +-0.0641668 0.0334738 0.00287677 +0.0361211 0.0586877 -0.0107678 +0.0141254 0.0589894 0.0501816 +-0.0864962 0.112872 0.0280752 +-0.0863885 0.112851 0.0441987 +-0.0524922 0.0384865 -0.0115467 +-0.0776496 0.163935 -0.0239336 +-0.0554697 0.0345193 -0.0117205 +0.0176795 0.0740469 0.0519763 +-0.0728932 0.0642808 0.0113714 +0.0261658 0.0809584 -0.0239333 +0.058376 0.0713467 0.0136326 +0.0257313 0.0968616 0.0444005 +0.00516452 0.0344202 0.0197338 +-0.0686185 0.0687175 -0.00655491 +-0.0803464 0.147298 -0.000827063 +0.000190276 0.131527 0.0154789 +-0.0687909 0.0354139 0.0127136 +-0.05562 0.146743 0.0301728 +0.0240878 0.0645552 0.0452968 +0.0313304 0.0475675 0.0327114 +-0.0107396 0.0713653 -0.0375278 +-0.0444884 0.0733739 0.0424053 +-0.0892862 0.137904 0.0301929 +0.0430064 0.0930319 -0.00281527 +0.00152278 0.0688979 0.0560686 +0.02743 0.0663837 -0.0217206 +-0.0610765 0.167736 -0.0598039 +0.0469057 0.0738955 0.00933063 +0.010569 0.0630758 0.0538717 +-0.0636657 0.175908 -0.0542108 +-0.00887643 0.105922 -0.0227472 +0.0366768 0.0861722 0.0373065 +-0.00750518 0.0661146 0.0558703 +-0.0311481 0.174122 -0.0158676 +0.0165049 0.115408 0.0369209 +-0.0599957 0.135288 0.0360766 +0.023446 0.0385037 -0.00396461 +-0.0512658 0.0335234 0.00365116 +-0.0640041 0.0417908 0.0276702 +0.0505407 0.062451 0.0297568 +0.0381071 0.0767371 0.0357901 +0.0348186 0.114435 0.00971518 +-0.0808584 0.15153 0.0328055 +-0.0292731 0.0691492 -0.0304581 +-0.0482843 0.133992 0.00441773 +-0.0151264 0.0382524 0.0175843 +0.0457402 0.0749932 0.00321166 +-0.0514912 0.0529568 0.0308804 +-0.0841758 0.0777074 0.00551439 +-0.0724891 0.168081 -0.0228518 +-0.0578499 0.140998 0.0321632 +-0.0824678 0.0844329 0.0311552 +-0.035201 0.0380831 0.0475916 +-0.0225654 0.0336394 -0.0239171 +0.0463796 0.0792543 0.0131749 +0.0210505 0.125312 0.00175976 +-0.0835133 0.0843594 0.0293933 +-0.00767881 0.0555674 -0.03337 +-0.052489 0.159007 -0.00340529 +-0.0244459 0.156552 -0.00701262 +-0.0598434 0.0384999 0.0207227 +-0.0725078 0.160609 -0.0083559 +0.0429565 0.0986678 0.00218951 +-0.00967767 0.118026 -0.0150602 +0.038419 0.105512 0.0261645 +-0.00651495 0.0746355 0.058305 +0.0450144 0.0945871 0.00816469 +-0.0454802 0.123445 -0.0105099 +-0.00122028 0.0938312 -0.0334376 +-0.067038 0.143551 -0.013347 +0.043578 0.0888313 -0.0037919 +-0.0238161 0.078256 0.0534268 +-0.0455234 0.131922 0.0119481 +-0.0735087 0.137262 0.0493527 +-0.0183224 0.184952 -0.0232094 +-0.0148238 0.091051 -0.0367095 +-0.000496937 0.0620135 0.0565388 +-0.0217336 0.0611778 -0.0340471 +-0.0922703 0.125567 0.0322584 +0.0255559 0.0952317 -0.0208124 +-0.0748894 0.152721 -0.0218881 +-0.0770206 0.0981288 0.0365817 +-0.0262775 0.073604 0.0447421 +0.00842909 0.131472 0.01278 +-0.0815194 0.125984 0.0522053 +-0.0768497 0.156895 -0.0209209 +-0.0774933 0.0717304 0.000534742 +-0.0610597 0.172553 -0.0606091 +-0.00957846 0.178815 -0.0287373 +-0.062208 0.167823 -0.0505845 +-0.0225076 0.125867 0.0188793 +-0.0580565 0.0334897 0.00410791 +-0.00649004 0.112763 0.0415025 +-0.00176067 0.0755229 -0.0360316 +0.0456774 0.0904203 0.00916591 +0.0441351 0.0749462 0.0250125 +-0.0810675 0.11076 0.0435122 +0.00990869 0.048971 0.0492516 +-0.0728744 0.10362 -0.0122376 +0.0374772 0.106859 -0.00183322 +0.0151574 0.0988592 -0.0229537 +-0.016863 0.0640072 0.0526042 +-0.0418006 0.0462579 -0.0152948 +-0.0768234 0.0927696 0.0379671 +-0.0661935 0.155092 0.00556387 +-0.0810703 0.0752023 0.0214152 +-0.0235527 0.156826 -0.00518035 +-0.0194871 0.0883195 0.0557235 +-0.0716986 0.077793 -0.0140498 +-0.010631 0.0389663 -0.00962591 +-0.0570892 0.0602319 -0.00257411 +-0.0419839 0.128576 0.0133734 +-0.0151399 0.0382506 0.0121533 +-0.0759996 0.139851 -0.00609906 +-0.0506105 0.0694238 0.0381651 +-0.0658919 0.11864 0.0504465 +-0.0528899 0.106976 -0.018917 +-0.0521172 0.0545658 0.0256302 +-0.005498 0.103045 0.0437796 +-0.0524893 0.156469 0.0106374 +-0.0439563 0.147482 -0.0018962 +0.00349012 0.116915 0.0395094 +-0.0116538 0.0496371 -0.0310034 +-0.0360677 0.156277 -0.0104898 +0.0262747 0.0376552 0.0265482 +0.00369465 0.0390982 -0.00688719 +0.037401 0.0414131 -0.00242752 +-0.010004 0.0383201 0.0185669 +-0.0807853 0.0817556 0.0323751 +-0.00609738 0.037339 0.0487481 +-0.0254987 0.0945485 0.0446378 +-0.0446176 0.0345408 0.0396657 +-0.0522913 0.124591 -0.00759738 +-0.0244524 0.16187 -0.0148048 +-0.0144465 0.128429 0.00434765 +-0.0238211 0.0384511 -0.00993154 +0.0184111 0.122524 0.0307587 +-0.0815439 0.112456 0.0456165 +0.0549908 0.0567623 0.0266396 +0.0309112 0.0754873 0.0429619 +-0.0278697 0.103003 -0.0233536 +-0.0640545 0.149152 -0.0269946 +-0.0594536 0.133932 0.0368692 +0.0130152 0.130057 0.0144613 +0.0491953 0.0732159 0.0116573 +-0.0364993 0.0733348 0.0420574 +-0.0859116 0.107692 0.0193681 +0.0386236 0.109277 0.0110826 +0.00584547 0.0353648 -0.01428 +0.0198737 0.0358544 0.0359282 +-0.0174269 0.182963 -0.0250022 +0.0258436 0.0563286 -0.0217568 +0.0362122 0.112176 0.0188059 +-0.0564979 0.0805451 0.0445004 +0.0450117 0.0805305 0.000199058 +-0.043786 0.126623 -0.00583839 +0.0366462 0.100736 0.0320541 +-0.0198519 0.0357263 0.0525976 +-0.0872471 0.125707 0.0473263 +-0.0180735 0.0611876 0.0510587 +-0.0608049 0.0596005 0.019786 +0.0269735 0.121605 0.0224835 +0.033449 0.0380742 0.000639692 +-0.0174889 0.0856455 0.0572522 +-0.0298765 0.0607745 -0.022409 +-0.0371209 0.127449 0.0017956 +-0.0397839 0.0471068 -0.0160895 +-0.0245336 0.118082 0.0325274 +-0.0715136 0.0887445 0.0416191 +0.00419323 0.0880606 -0.0335488 +0.0353118 0.0520079 -0.00674902 +-0.00049849 0.101653 0.0443576 +-0.0570055 0.133804 -0.00545801 +-0.0215772 0.158162 -0.00503193 +-0.0640639 0.0351963 0.0227232 +-0.00287353 0.108795 -0.0218002 +0.0462936 0.0792458 0.00718673 +-0.00951316 0.0575536 0.0537045 +-0.0477812 0.0840973 -0.0215817 +-0.0526608 0.0504363 0.0276515 +-0.0340312 0.123966 -0.00509105 +0.00648697 0.11688 0.0387497 +0.0343069 0.0578226 0.0371782 +-0.0220745 0.169763 -0.0127977 +-0.0106374 0.0466553 -0.0295813 +0.0335656 0.114779 0.000629741 +-0.0269131 0.180109 -0.00739997 +0.0390081 0.105539 0.000161276 +-0.00175381 0.0993639 -0.0251444 +0.040909 0.0985658 0.0261474 +-0.0617277 0.159994 -0.0345941 +-0.0434138 0.111151 -0.0176174 +0.0319241 0.0700307 0.0408624 +-0.0349471 0.109117 -0.019515 +-0.0733885 0.111282 0.0466166 +0.0354121 0.0430461 -0.00417186 +-0.093028 0.117371 0.013308 +-0.0756832 0.149968 -0.01987 +0.0201512 0.0605237 0.0483852 +-0.0639979 0.158311 -0.048587 +0.0410638 0.0928718 -0.0077952 +-0.0845757 0.151155 0.0298105 +-0.0752762 0.167899 -0.0253615 +0.0587584 0.0580034 0.00517536 +-0.070971 0.166609 -0.0480118 +-0.0488701 0.10281 -0.0210946 +-0.0609926 0.128204 -0.00783795 +-0.0772884 0.155547 -0.0128979 +0.0120566 0.130535 0.0112565 +-0.0655484 0.039711 0.0142785 +-0.0465128 0.0438401 0.043121 +-0.0215234 0.0739469 0.0526909 +0.0238579 0.0490757 0.0395236 +-0.00446924 0.111373 0.0424038 +-0.0646993 0.150616 -0.0327557 +-0.0547216 0.118372 0.0366122 +0.055991 0.067441 0.024671 +-0.0164973 0.0485745 0.0476342 +-0.0243246 0.0415463 0.0540712 +-0.0679818 0.0653371 -0.00356488 +-0.0887934 0.125677 0.0460403 +-0.0672794 0.176766 -0.0591515 +-0.0201696 0.169725 -0.0202727 +0.0232197 0.0818757 -0.0256198 +-0.0521106 0.0503642 0.0236349 +-0.00378569 0.0826645 -0.03749 +0.0103848 0.03606 -0.0224393 +0.0144027 0.129384 0.00642559 +0.0154718 0.101771 0.0468044 +-0.0222044 0.174173 -0.0211642 +0.0605561 0.0664891 0.0161665 +-0.0110072 0.128401 0.0244439 +0.00979123 0.127622 -0.00353983 +-0.0586426 0.0335837 0.0110854 +-0.0324964 0.0518418 0.0373712 +0.0339681 0.114736 0.0222644 +-0.0278327 0.179989 -0.0150111 +0.0505141 0.0610459 0.0301699 +-0.084345 0.0818627 0.0244959 +-0.0780694 0.106243 0.0333548 +-0.0400434 0.149481 0.00241998 +0.0415851 0.0779004 0.0302476 +-0.0934884 0.117419 0.0203018 +0.0145324 0.0686382 0.0526166 +0.0105088 0.0546576 0.0523588 +-0.0166719 0.128014 0.0194984 +0.0111864 0.115382 -0.0163281 +0.0433489 0.0761902 -0.00378764 +0.00361131 0.0929227 -0.0324448 +0.0374765 0.0967619 0.0332563 +0.0118435 0.0418607 0.0449613 +0.00151372 0.070315 0.0563646 +-0.089555 0.092956 0.0194329 +-0.0309867 0.0458642 -0.0271867 +-0.0127025 0.0628523 -0.0366298 +-0.0211402 0.175693 -0.0149194 +-0.0410644 0.0466663 -0.0156422 +0.0229642 0.0564103 0.0453711 +-0.0689131 0.06155 0.0163724 +-0.0351956 0.0394954 0.0475468 +0.0545544 0.0478595 0.011201 +0.0307617 0.0848812 0.0428147 +-0.0854234 0.100771 0.000422318 +-0.00263926 0.0481807 -0.0301073 +0.0341204 0.0781827 0.0405841 +-0.0753485 0.151324 -0.0238793 +-0.040104 0.0359968 0.0427867 +0.00880995 0.127795 -0.00370552 +-0.0546717 0.0587861 -0.00643621 +-0.0527782 0.0338002 0.0103069 +-0.0644915 0.087588 0.0448694 +-0.0649403 0.125308 -0.00887181 +-0.0623267 0.035582 -0.00867786 +-0.0178682 0.127784 0.00598386 +-0.0477624 0.119115 -0.0139706 +-0.0272958 0.178509 -0.0169626 +-0.036773 0.0446897 0.0419462 +-0.0643144 0.0445281 -0.000908113 +0.0310215 0.117934 0.00259488 +-0.0657027 0.155342 0.0275329 +0.00812544 0.105869 -0.0206053 +-0.0845132 0.150109 0.0051703 +0.0147267 0.0343671 -0.00408399 +-0.0738652 0.150214 0.0382196 +-0.0396346 0.151103 -0.0056598 +-0.0548476 0.0665624 0.0361422 +-0.053656 0.116868 0.0345992 +0.0407085 0.0956949 -0.00580768 +-0.0407505 0.126266 0.0196745 +0.0327193 0.0632979 0.0402054 +-0.0423878 0.124291 -0.00941969 +0.0148847 0.0378033 0.0441286 +-0.0385893 0.036902 -0.00962928 +-0.0735502 0.095526 0.040254 +-0.0625469 0.169393 -0.0495927 +-0.0666556 0.0360676 0.0353877 +0.00702297 0.127188 0.0294846 +0.0123661 0.0479119 -0.026429 +0.00707963 0.0365612 -0.00575515 +0.00660499 0.0617786 0.0553203 +-0.056364 0.156406 0.0105108 +-0.02141 0.0511007 0.0448554 +-0.0417892 0.0855226 -0.0213401 +-0.0454873 0.0789625 0.0423892 +0.0541155 0.0731329 0.017974 +0.0124978 0.092313 0.0523832 +-0.0184886 0.0801089 0.0571361 +-0.0426749 0.0622014 -0.0131851 +-0.0711139 0.162407 -0.0449498 +-0.0234912 0.0474961 0.0510145 +-0.0722633 0.0367738 0.0082856 +-0.0207862 0.0638606 0.0480406 +-0.0570496 0.0562866 0.00362097 +0.023226 0.077646 -0.0258357 +0.00592655 0.0339685 0.0148513 +0.0327331 0.0942636 0.0404449 +0.0170625 0.0448711 0.043693 +0.0335588 0.0862851 0.0416032 +-0.0588111 0.0334057 -0.00501142 +-0.0718597 0.148728 0.0404251 +-0.0700765 0.0619608 0.0139832 +-0.0302069 0.174221 -0.00514504 +-0.088803 0.151599 0.0211964 +0.0155832 0.0893609 -0.0286847 +0.0270636 0.120631 0.00113345 +0.033576 0.0781814 -0.0177928 +-0.0894235 0.0942851 0.0164251 +-0.0386513 0.0344774 0.0357393 +-0.0348698 0.176878 -0.00628812 +-0.0102548 0.179004 -0.0295955 +-0.0708792 0.115031 -0.00817569 +0.0203316 0.0551325 -0.0272049 +-0.0942207 0.120117 0.0202902 +-0.0704743 0.121802 0.053345 +0.0441954 0.0847004 0.0251589 +-0.0662148 0.171945 -0.0435535 +-0.0579078 0.0494657 0.0056917 +-0.0364996 0.0789928 0.0425809 +0.00849936 0.0744764 0.056192 +-0.0263916 0.0563779 0.0383176 +-0.0556017 0.0336949 -0.0101219 +-0.0593537 0.140997 0.0335026 +-0.0941834 0.120103 0.0162919 +0.0184196 0.0442138 -0.0226321 +-0.0628603 0.033866 0.0135258 +-0.0229828 0.0566251 0.0433992 +-0.0295276 0.0383617 0.0343291 +-0.0439439 0.166904 -0.00881722 +-0.00750585 0.0633646 0.0562436 +-0.0553809 0.0486564 0.0109541 +0.0106398 0.0390088 0.044914 +0.0440071 0.0846602 -0.00280808 +-0.0184891 0.0743773 0.0548673 +0.0214529 0.0415824 -0.013701 +-0.0137336 0.0383402 0.0141683 +-0.0895155 0.0983259 0.0124123 +0.0129339 0.063079 0.0520141 +-0.0749499 0.112554 -0.00662315 +-0.0128237 0.0855345 -0.0387685 +-0.0175101 0.0381991 0.0207599 +-0.065046 0.0423247 0.012291 +-0.0570589 0.0507155 -0.000374425 +-0.0630045 0.132588 -0.00795426 +-0.0415001 0.0972709 0.0420669 +0.0313679 0.117954 0.0212794 +-0.00373539 0.0684024 -0.0350771 +-0.0896129 0.139294 0.0321884 +-0.0239769 0.0381215 0.0231095 +0.0347467 0.0670098 -0.0158076 +0.0178644 0.101883 -0.0218675 +-0.064813 0.0428917 0.034688 +-0.0618962 0.0443648 0.0286813 +0.0425837 0.100055 0.002186 +-0.056712 0.0708617 -0.0156392 +-0.066713 0.154086 0.0315791 +-0.0348246 0.0872331 -0.0245609 +-0.0155018 0.080076 0.0569734 +-0.0431381 0.128903 0.00398376 +0.0456202 0.0421608 0.019117 +-0.0637474 0.0766435 -0.0177206 +-0.070335 0.0339385 0.00479187 +-0.0452276 0.131073 0.0164666 +0.0175902 0.128186 0.00902123 +-0.0332219 0.0344808 0.0386469 +-0.000130337 0.0395577 0.0357254 +-0.0384117 0.12376 -0.00887525 +-0.0384745 0.0533908 0.0391471 +-0.0105486 0.0921685 -0.035821 +-0.0292627 0.125707 0.0105611 +-0.0740612 0.16798 -0.0430295 +-0.0794475 0.0732175 0.0216948 +-0.0525459 0.0430871 -0.00935537 +-0.0275149 0.0591111 -0.027433 +-0.0608279 0.0910686 -0.0191968 +0.0214831 0.0388585 0.0402401 +-0.0185078 0.0382343 0.0205228 +-0.0193476 0.0973552 -0.0251961 +-0.014626 0.03858 -0.00263697 +0.0364765 0.110061 0.0246179 +0.0394879 0.0499122 0.0322705 +-0.0738314 0.151256 -0.033887 +-0.0276072 0.0488225 -0.0246209 +0.0254616 0.0727112 0.0456024 +-0.054118 0.157553 -0.00229988 +-0.0100751 0.129607 0.0204184 +-0.0507271 0.115538 0.0335799 +-0.064203 0.176904 -0.0544031 +-0.0327997 0.0624741 -0.0154176 +-0.050486 0.0585567 0.0325562 +-0.0115057 0.0716604 0.0558672 +-0.041271 0.0338554 -0.00188008 +0.00149737 0.0969588 -0.0286791 +0.0222207 0.0833264 -0.0261432 +-0.0379669 0.0433397 0.0417712 +0.0433566 0.094461 -0.000803958 +-0.0485055 0.0490796 0.0381424 +-0.0398915 0.109923 -0.0189257 +-0.00650042 0.0533369 0.0530605 +-0.0902689 0.112791 0.0182006 +-0.0256204 0.0436547 -0.0287136 +-0.0432877 0.171276 -0.00598005 +0.00651867 0.0674599 0.0552944 +0.00755739 0.101711 0.046537 +0.0201484 0.0899648 -0.02526 +0.00621941 0.0351341 0.00654928 +-0.0641258 0.0611318 0.00140431 +-0.0841699 0.0979316 0.0296062 +-0.0893171 0.151601 0.0194969 +-0.0509112 0.0517382 0.0331779 +-0.0345095 0.0761212 0.0417709 +-0.0210879 0.0852798 0.0561484 +-0.0647084 0.033787 -0.00655215 +0.0485032 0.0638048 0.0293893 +0.0553414 0.0563023 0.000211666 +0.031191 0.0977616 -0.015509 +-0.0271419 0.168228 -0.0179326 +-0.0594934 0.0832968 0.0436941 +0.00712427 0.107292 -0.0202517 +-0.0670075 0.139964 -0.00790796 +-0.072631 0.169409 -0.0470274 +-0.0668128 0.0894987 -0.0177562 +-0.0638648 0.166212 -0.0336016 +-0.0305285 0.0348948 0.0458677 +-0.07494 0.0707543 0.0282709 +0.0217204 0.105135 -0.0173432 +0.0129112 0.111627 -0.0182976 +-0.0346615 0.0395406 0.0484261 +-0.0244963 0.105758 0.0419767 +-0.0275166 0.057436 0.037149 +-0.071563 0.151347 -0.0436244 +-0.00477478 0.0812297 -0.0373809 +-0.0544968 0.108447 0.0390956 +0.0191276 0.0370481 -0.0116797 +-0.0477678 0.125154 -0.0082648 +0.00907863 0.112423 -0.0191367 +-0.0148223 0.129108 0.012888 +-0.0685095 0.148391 0.0402581 +0.0438124 0.093116 0.0231537 +-0.0295173 0.175738 -0.0052542 +-0.0580932 0.155356 0.0200663 +-0.0140302 0.116852 -0.0157862 +-0.00427283 0.034883 0.0462122 +-0.0365117 0.0860935 0.0436284 +0.0428337 0.0789534 -0.0047828 +0.0143759 0.121374 -0.0108038 +-0.0478629 0.0335429 0.00613354 +0.0399096 0.0632641 -0.00677014 +0.0382182 0.0855917 -0.0147556 +-0.0586226 0.156199 0.00971481 +-0.0768739 0.0698402 0.0216311 +0.0359859 0.0660034 0.0379002 +-0.0517494 0.0782459 -0.0193853 +-0.0836382 0.0870656 -0.00453769 +0.0314216 0.0415146 -0.00377022 +-0.0633942 0.159878 -0.0495887 +-0.0762229 0.149992 -0.0128764 +0.0360298 0.0573371 -0.00970954 +-0.0378631 0.100009 -0.0219618 +-0.0631703 0.172516 -0.0516045 +-0.0893681 0.0902559 0.0194368 +0.0559048 0.0631077 0.000905369 +0.00350533 0.0758855 0.0563752 +0.0327662 0.0475454 0.0312717 +-0.0144964 0.104421 0.0432413 +-0.0925078 0.121485 0.0292837 +-0.0225266 0.123574 -0.00478676 +0.027859 0.114683 -0.0075901 +0.0336358 0.0725575 -0.0168317 +0.0133955 0.0900754 0.0528858 +-0.0320964 0.160758 -0.0138294 +-0.0665218 0.173689 -0.0465659 +-0.0314315 0.062325 -0.0194293 +0.0355057 0.0498307 0.031489 +0.0409937 0.0830284 -0.00976566 +-0.0484259 0.152144 0.0105657 +-0.0760489 0.0702549 0.00053996 +-0.0939567 0.121435 0.0142863 +0.0458128 0.0848143 0.0141708 +-0.088753 0.130866 0.00325856 +-0.0762076 0.0680671 0.0162505 +0.0295583 0.0594698 -0.0188239 +-0.0470685 0.0362699 0.0454096 +0.0515085 0.0678015 0.0264788 +0.0229945 0.0535474 0.0436214 +0.0102584 0.0738736 -0.0323425 +-0.0208293 0.0841002 -0.0385977 +0.013479 0.118711 -0.0139326 +-0.0577142 0.0723919 -0.0167433 +0.0343469 0.0740244 -0.0157906 +-0.0384895 0.050603 0.0393394 +-0.0411819 0.166655 -0.0111213 +-0.0314187 0.0525029 -0.0133876 +-0.0530781 0.119794 0.0354828 +0.0402398 0.0815675 -0.0107641 +-0.0334936 0.0817447 0.0419617 +-0.0284374 0.0381394 0.00411543 +-0.0669412 0.126769 -0.00883964 +-0.089797 0.129515 0.00524651 +-0.0607661 0.0796035 -0.0191344 +-0.0878523 0.0860961 0.00747941 +-0.00447426 0.0385132 0.0213354 +0.0222429 0.0463236 0.0406841 +-0.0167958 0.0799195 -0.0388883 +-0.0714505 0.16941 -0.0490283 +-0.00251639 0.0442645 0.0466529 +-0.0648891 0.0981501 -0.0170112 +0.00754987 0.100371 0.0472771 +-0.0694963 0.16803 -0.0520069 +-0.0920162 0.126943 0.0352547 +0.0233968 0.0355618 0.0133136 +-0.0660161 0.169448 -0.0590294 +-0.0555411 0.128344 0.0372391 +-0.0488244 0.0927169 -0.0215945 +0.0343104 0.114465 0.0209626 +-0.0501985 0.140132 0.0173988 +-0.0658096 0.0445087 0.000718728 +-0.0512856 0.136981 0.000438627 +-0.0269157 0.0703179 -0.0345192 +-0.0636699 0.112355 0.0376208 +-0.0754912 0.144221 0.0449451 +-0.062524 0.167829 -0.0475902 +0.030542 0.0511254 -0.0127382 +-0.0237052 0.0596068 -0.0321069 +-0.0547922 0.153188 0.0241866 +-0.0414961 0.0902351 0.0425692 +-0.0494981 0.0477699 0.0395132 +0.0289271 0.110086 0.0349831 +-0.0402206 0.0433137 -0.0233156 +-0.0246897 0.0560336 -0.0294195 +0.00733033 0.058195 -0.0305865 +-0.0633574 0.155908 0.0123853 +-0.0679376 0.162368 -0.0549778 +-0.0588165 0.0667309 0.0351477 +-0.0598716 0.0453976 -0.00333599 +-0.0238165 0.0812337 -0.0381734 +-0.047565 0.0370224 -0.0142792 +-0.010699 0.104948 -0.0231645 +0.0375184 0.0915609 -0.0128884 +-0.056974 0.0573893 0.011763 +-0.00401542 0.033994 -0.0206047 +0.0133173 0.0638081 -0.0300932 +-0.0402517 0.127178 -0.0024642 +0.00549546 0.0489597 0.051102 +-0.0755445 0.0668624 0.00857418 +-0.0465015 0.0643139 0.0383309 +0.00586085 0.130491 0.00185259 +-0.00908444 0.0392597 0.0359512 +-0.0724815 0.0696506 0.0297377 +-0.0588318 0.146817 0.0344225 +-0.0460118 0.126697 0.0245216 +-0.044079 0.0336811 -0.000461832 +-0.0565021 0.0946206 0.04473 +-0.0615844 0.155311 -0.0225818 +-0.0650869 0.155169 -0.00713868 +-0.089472 0.092961 0.0204149 +-0.0824758 0.0764829 0.0200121 +0.0429803 0.0916104 -0.003806 +-0.0914285 0.144743 0.0221537 +0.00329581 0.06408 -0.0335736 +-0.0554437 0.158541 0.0079523 +-0.0624977 0.0789785 0.042462 +0.00538842 0.0383711 -0.011506 +-0.0682947 0.162375 -0.0539731 +-0.0809901 0.135346 -0.00326263 +-0.0418435 0.0928469 -0.022966 +-0.0664939 0.0917254 0.0436166 +-0.0741328 0.170753 -0.0306566 +0.00842498 0.094018 -0.0295425 +-0.00912603 0.126983 -0.00460672 +-0.0144839 0.0911543 0.0563071 +-0.0247385 0.124904 0.000549003 +-0.064327 0.034541 0.0284972 +-0.0668589 0.156842 -0.00635476 +-0.0565065 0.0629707 0.0300974 +0.0567694 0.0522665 0.0211855 +0.0120332 0.0793354 0.0543348 +0.00749695 0.108523 0.0409368 +-0.0385157 0.0761871 0.0423388 +-0.0861163 0.11208 0.0430934 +-0.0554974 0.0776601 0.0434775 +-0.0519782 0.0531903 0.0286494 +0.00382899 0.0387567 -0.00467455 +-0.0437453 0.0348723 0.00757323 +-0.0876033 0.102265 0.00739801 +-0.0538689 0.152421 0.0214004 +0.0305964 0.0407785 0.0282841 +0.0465387 0.0750529 0.00819241 +-0.0664147 0.112558 0.0425241 +-0.0212669 0.123736 0.0252343 +-0.0144966 0.0485988 0.0478804 +-0.0270125 0.0891105 0.0478066 +-0.0328048 0.0886955 -0.0250147 +-0.0387676 0.0812185 -0.0204237 +-0.0179622 0.106228 -0.0225141 +-0.0121468 0.17267 -0.0267827 +-0.0155019 0.119619 0.0357771 +-0.0763961 0.0968047 0.0374195 +-0.00349611 0.0897823 0.0565938 +-0.0378917 0.0335733 -0.0268663 +-0.0464981 0.0451704 0.0419279 +0.0287219 0.115289 -0.00622497 +-0.0639806 0.135327 0.039077 +-0.045498 0.105695 0.0408472 +0.0546227 0.0668075 0.00110467 +-0.0690913 0.143 -0.0123014 +0.0356753 0.0619319 0.0374332 +-0.0141081 0.128922 0.00736661 +-0.0561495 0.0341243 0.0270787 +-0.038546 0.128369 0.00715642 +-0.0876142 0.116272 0.0465171 +-0.0722303 0.134063 0.0500963 +-0.0156039 0.0392636 -0.0272219 +-0.0361326 0.034299 0.0293707 +0.0285657 0.120967 0.00738594 +0.0111022 0.114226 -0.0170859 +-0.0218549 0.118022 -0.0129203 +0.0460721 0.0848306 0.00817735 +-0.0800935 0.138964 -0.00379173 +-0.0574953 0.0747475 0.0420563 +-0.00684325 0.130599 0.0100344 +0.020602 0.0768409 0.0509288 +0.0342103 0.0795441 0.0407378 +-0.0387822 0.0841715 -0.021953 +0.00854197 0.104373 0.044167 +0.0284181 0.0835438 0.0446794 +-0.0809789 0.0720684 0.0125422 +-0.0870329 0.152942 0.0187545 +0.0227098 0.105005 -0.0172062 +-0.0259693 0.156664 -0.00260696 +0.00630512 0.0970077 -0.026738 +-0.0293004 0.175699 -0.00559167 +-0.00764633 0.048167 -0.0303862 +-0.045682 0.0680577 -0.0156409 +-0.0545225 0.0645764 -0.00897215 +-0.0511988 0.137011 0.0243968 +-0.00714364 0.101607 -0.0236448 +0.00975279 0.123922 0.0333795 +-0.069363 0.163799 -0.0509746 +-0.000145407 0.0355938 -0.0156782 +0.0251101 0.0562501 -0.0227775 +0.047185 0.0692848 0.0242283 +-0.0610844 0.0335982 -0.00747508 +-0.0215973 0.0387212 -0.015323 +0.00621551 0.0824281 -0.0337654 +-0.0768656 0.120803 -0.0071099 +-0.072234 0.147352 -0.0242316 +-0.0251276 0.16525 -0.016804 +-0.00350994 0.110634 -0.0212045 +-0.051883 0.143128 0.0183637 +0.0388034 0.0687739 -0.0117998 +0.0522529 0.049588 0.0243549 +-0.0484974 0.0974063 0.0440017 +0.0292296 0.08295 -0.0208022 +0.0215976 0.121636 0.0305088 +-0.0576661 0.143885 0.0324483 +-0.062789 0.152113 -0.0295989 +-0.0686144 0.0632303 0.0220506 +-0.0812769 0.136213 -0.00276757 +-0.0898521 0.112924 0.020019 +0.0399617 0.0984844 -0.00581339 +-0.0197337 0.0627381 -0.0357065 +-0.0715197 0.0915892 0.0417662 +-0.0176796 0.037751 -0.0173923 +-0.0034931 0.0519852 0.0535284 +-0.0477302 0.0753108 -0.0175447 +-0.0720239 0.158203 -0.0389152 +0.012618 0.0562866 0.0514947 +-0.00341476 0.129699 0.000449344 +0.00761699 0.0345564 0.0219225 +0.0197796 0.101487 -0.0214363 +-0.0718751 0.150885 -0.0428436 +0.0226049 0.0994887 0.0451477 +-0.0275114 0.0379423 0.00991362 +0.0449899 0.0861501 0.00118902 +-0.0724942 0.0928706 0.0413391 +-0.0668563 0.151928 -0.044894 +-0.00758529 0.0395118 0.037828 +-0.0717266 0.143977 -0.0139286 +-0.0485566 0.0446478 -0.0101195 +-0.0498454 0.098516 -0.0220736 +-0.0687032 0.155739 0.000270534 +0.0305837 0.118921 0.00529549 +0.0181431 0.0408036 0.0434958 +-0.0644897 0.161538 -0.0184978 +-0.082117 0.127195 0.0520765 +0.0194801 0.0975854 0.0469408 +-0.0593004 0.0460479 0.0107053 +-0.051494 0.097382 0.0437255 +-0.0629042 0.151488 -0.0283316 +-0.0520794 0.132523 0.0317044 +-0.0086348 0.124041 -0.00947049 +-0.0408505 0.0971293 -0.022095 +-0.0501242 0.144161 0.00100252 +-0.0374501 0.127748 0.0031441 +-0.0242006 0.107431 -0.0217757 +-0.0185705 0.0597254 0.0501838 +0.0506634 0.0663167 -0.000433246 +-0.0778197 0.0981202 0.035968 +-0.0344836 0.0604651 0.0395531 +0.0141481 0.100268 -0.0227789 +-0.0201048 0.0920391 0.0535514 +0.0405223 0.0582848 0.0307512 +-0.0234669 0.126337 0.0156088 +-0.0879353 0.140547 0.0390784 +0.0495003 0.0691238 0.025332 +-0.0550177 0.034541 0.0409139 +-0.0558687 0.156831 -0.000812957 +-0.033113 0.162236 -0.0143657 +-0.0040053 0.127195 0.0298616 +0.00247063 0.0977635 0.0514765 +-0.0372934 0.126961 0.0179492 +0.00433485 0.120467 -0.0137766 +0.00930976 0.0595795 -0.0301167 +0.0437257 0.0902921 0.0241674 +-0.0363397 0.0344675 0.0327184 +0.000637516 0.0346318 0.0420689 +0.0283669 0.0563832 0.0408635 +-0.0890554 0.136524 0.0291987 +-0.0526322 0.0603614 -0.00917272 +-0.0555168 0.0610654 0.0262173 +-0.0398616 0.102806 -0.020798 +-0.0554959 0.0959795 0.0436611 +-0.0625279 0.0435825 0.012569 +-0.012539 0.0432081 0.0504383 +-0.0295399 0.0777526 0.042206 +0.0250153 0.0699448 0.0449142 +0.0418505 0.0929433 -0.00581175 +0.00749052 0.0923616 0.0534281 +-0.0508873 0.105589 -0.0194525 +-0.0577516 0.0752955 -0.0185275 +-0.0341251 0.166782 -0.00385534 +0.0204867 0.0961927 0.0470968 +-0.0860696 0.110951 0.0368762 +-0.0623929 0.0445563 0.039213 +0.0212831 0.0679005 -0.027755 +-0.0459741 0.03576 0.00812075 +-0.0128757 0.105895 -0.0226089 +-0.0713104 0.164383 -0.0152637 +-0.00570768 0.129479 0.0248833 +-0.0759611 0.0715461 -0.00349282 +-0.0154987 0.0485755 0.0476399 +-0.0271627 0.125166 0.0172175 +-0.052909 0.0559665 0.0126205 +0.0445771 0.0875296 0.0231612 +-0.0679602 0.132601 -0.00851511 +-0.0735016 0.14861 -0.0288774 +0.0321816 0.0968615 0.0396789 +-0.0617331 0.156868 -0.0205842 +-0.0310423 0.0467686 -0.0260418 +-0.0285615 0.0382432 0.0537594 +-0.0934477 0.121479 0.0262963 +-0.0220941 0.0710555 0.0505203 +-0.0299308 0.0348009 0.0443343 +-0.0161025 0.0382877 0.022773 +-0.0328698 0.101492 -0.0223548 +0.0454742 0.0412367 0.0106737 +-0.028101 0.0890412 0.0460663 +-0.0440047 0.127209 -0.00443148 +0.0593281 0.0649895 0.00613553 +0.0127896 0.130142 0.00867876 +0.0391468 0.0887707 0.0338836 +0.0223265 0.0535979 0.0444334 +-0.0897234 0.125377 0.0042981 +0.0287018 0.0447465 0.0341399 +-0.0924969 0.121493 0.0302824 +-0.0717492 0.0821807 -0.0161321 +-0.0756445 0.156326 -0.00458549 +0.00148921 0.104407 0.0433078 +-0.0361895 0.0355992 0.0192692 +-0.0662775 0.0734947 0.0382764 +-0.0730867 0.169281 -0.0259539 +-0.00640617 0.0386668 0.0262232 +-0.053287 0.0610602 0.0282137 +-0.0820828 0.0871799 0.032118 +-0.0474969 0.0477925 0.0396528 +0.0505278 0.0445977 0.0162148 +0.0314571 0.0378867 -6.50808e-05 +0.0244076 0.117212 -0.0083203 +0.0193833 0.052146 -0.0261511 +0.0213663 0.0593118 -0.0264401 +-0.0223265 0.0696009 0.0493961 +-0.0803036 0.100707 0.0327244 +0.0516025 0.0650498 -0.00116678 +-0.0572939 0.0597447 0.0223608 +0.0272121 0.088765 -0.0222319 +-0.0760712 0.152304 0.0343668 +0.0287584 0.0359201 0.00291435 +-0.00327774 0.125061 -0.00864173 +-0.0492123 0.134029 0.0252722 +-0.0157732 0.0799164 -0.0389165 +0.0137184 0.0699424 0.0531931 +0.0181521 0.124421 0.0277923 +0.0195548 0.127052 0.0182976 +-0.0788582 0.171448 -0.0399026 +-0.0820398 0.150272 0.03397 +0.0134064 0.0478115 -0.0258783 +-0.0637307 0.0344451 0.0269565 +0.00741391 0.0920665 -0.0315473 +0.0394368 0.0688303 -0.0107955 +-0.064416 0.154996 0.00586526 +-0.066663 0.144317 -0.015468 +0.0353499 0.042038 0.028119 +-0.00141558 0.03896 -0.0133998 +-0.0338581 0.0334994 -0.0260028 +0.0142608 0.0359816 -0.0203372 +-0.0776263 0.175005 -0.043567 +-0.0525965 0.0345626 0.0431188 +0.0335361 0.0372674 0.00265432 +0.0308902 0.0632769 0.0410591 +-0.0895335 0.144692 0.0121557 +-0.0612693 0.0337096 0.0122134 +-0.00661675 0.0976221 -0.0294208 +-0.0504448 0.128295 0.0323161 +-0.0571803 0.062383 0.0287138 +-0.0529076 0.136719 0.0287121 +-0.0247725 0.0390001 0.0365321 +-0.00277907 0.0769693 -0.0364873 +-0.0894255 0.0956236 0.0134235 +0.0183336 0.0566072 -0.0279953 +-0.0945117 0.124183 0.0222757 +-0.0670539 0.154574 0.0299913 +0.0377471 0.104052 -0.00484079 +-0.0277489 0.0877005 0.0471838 +-0.0465602 0.122394 -0.0114017 +0.0512982 0.0545874 -0.00353058 +-0.0255237 0.116678 0.0329121 +-0.0558854 0.0479468 0.0296668 +-0.0384602 0.127124 -0.00162988 +0.00941217 0.040392 -0.0233006 +-0.0788042 0.109939 0.0428886 +-0.00952807 0.0385271 0.0257083 +-0.0151514 0.041952 0.0515406 +-0.0896796 0.114349 0.0422656 +-0.0130415 0.0639857 0.0543784 +-0.0709434 0.168021 -0.0490096 +-0.042508 0.0562794 0.0398023 +-0.0723361 0.155599 0.00334302 +-0.0804662 0.0800422 -0.00555374 +-0.0320486 0.122707 -0.00572396 +0.0215589 0.120837 -0.00625561 +0.0181166 0.118416 -0.011621 +-0.0473179 0.0397941 -0.0120624 +-0.0797756 0.0706254 0.0155549 +0.00931098 0.130351 0.0216675 +-0.0082877 0.0388999 0.0310374 +-0.0475138 0.156385 0.00914965 +-0.000599084 0.0391028 -0.0250468 +-0.0114889 0.103024 0.0436761 +-0.0176179 0.0378672 -0.0275216 +-0.0423688 0.123346 -0.0104204 +-0.0387324 0.156611 0.00532643 +0.0047217 0.0940547 -0.0316305 +-0.0728512 0.152626 -0.0378881 +-0.00186255 0.103074 -0.0227526 +0.0529842 0.0692584 0.0249064 +-0.0792715 0.107765 0.0320009 +0.0324709 0.0353558 0.0097886 +-0.083008 0.154405 0.0171359 +0.0123335 0.0581189 -0.0294366 +-0.0570144 0.0335354 0.00427397 +-0.0520347 0.0349067 0.0446489 +0.0239781 0.084017 -0.0250643 +0.0450177 0.0875447 0.000184881 +-0.00260981 0.0434451 -0.0255195 +-0.00349422 0.0718336 0.0581766 +-0.0470698 0.154668 -0.0068409 +-0.0764224 0.152995 0.0327283 +-0.0382612 0.0345343 0.0375294 +-0.00240135 0.128537 0.0275513 +-0.0924704 0.117461 0.033305 +-0.0714888 0.127424 0.0521873 +-0.0439578 0.12961 0.0140149 +-0.0725837 0.0763091 -0.0123208 +-0.0595593 0.0341176 0.0246105 +-0.00343172 0.0385593 0.0215021 +0.0311358 0.0782102 0.04331 +-0.0494476 0.122586 0.0319364 +-0.0665119 0.0621274 0.0216726 +0.0544596 0.058178 0.0276568 +-0.0495972 0.118308 0.0316941 +-0.0314789 0.174225 -0.0034609 +-0.0728795 0.116451 -0.00740226 +0.00249754 0.108619 0.0424686 +0.0280724 0.0678498 -0.0217391 +-0.0278862 0.165359 -0.00713919 +-0.0117661 0.182389 -0.0287496 +-2.83383e-05 0.0370817 -0.0151505 +-0.0721646 0.155417 -0.0379087 +0.0297368 0.100819 0.0396604 +0.0224793 0.124852 0.00370943 +-0.0278708 0.104417 -0.0229648 +-0.0388092 0.0372561 -0.0289196 +0.0393949 0.0519685 -0.00680892 +-0.0114113 0.0387598 0.0305221 +-0.0668989 0.0372019 0.0312012 +-0.0634206 0.167809 -0.0425955 +-0.0738654 0.102167 -0.0123482 +0.000515293 0.09714 -0.0288497 +0.00321341 0.034575 0.0192003 +-0.0313524 0.158102 0.00192058 +-0.0879015 0.148743 0.00925863 +-0.0552908 0.158294 -0.000771282 +0.00144018 0.127924 -0.00374837 +-0.0374859 0.0491992 0.0393813 +0.0225251 0.100664 -0.0205487 +-0.0149527 0.0339242 -0.0208085 +0.00432828 0.0582523 -0.0314184 +0.0463488 0.0792498 0.00918224 +-0.0375014 0.105589 0.0387333 +-0.062506 0.149124 -0.0145611 +0.00329475 0.129383 -0.00133175 +-0.00689488 0.0384553 0.0136435 +-0.0384034 0.0343958 0.0323426 +-0.062465 0.163086 -0.0495893 +-0.0639661 0.0690471 0.0355624 +-0.0131121 0.0626059 0.0545133 +-0.0449324 0.0358062 0.00829108 +0.0406445 0.0871881 -0.0107716 +-0.0230795 0.0932192 0.0494322 +-0.0186385 0.0465274 -0.0284289 +-0.0571213 0.0576422 0.00058007 +-0.0705055 0.0343308 -0.00278598 +-0.0578994 0.112578 -0.0159728 +-0.0106785 0.0383169 0.0202432 +-0.0593417 0.119814 0.0404797 +-0.0505461 0.0403717 -0.011217 +-0.0453989 0.0342539 -0.0215146 +-0.011074 0.178648 -0.0249266 +-0.0523515 0.0582314 0.0273813 +-0.0254941 0.0486931 0.0489695 +0.0374187 0.0855245 -0.0157145 +0.0453002 0.0932088 0.00816687 +-0.0612769 0.133878 0.0377403 +0.00152786 0.0745369 0.0570999 +0.0245032 0.122816 0.00162459 +-0.00938967 0.130192 0.0162996 +-0.0703883 0.0339052 -0.000577152 +-0.0733601 0.156855 -0.0299134 +-0.0171472 0.166778 -0.0196136 +0.0116998 0.0819851 0.0538895 +-0.0502854 0.11522 -0.0158495 +0.050316 0.0546413 -0.00421167 +-0.0667548 0.115724 0.0491405 +-0.0609102 0.120922 -0.00906619 +-0.0866023 0.111811 0.0414218 +-0.0669546 0.128237 -0.00895731 +-0.0654028 0.177571 -0.0533847 +-0.0437352 0.0753785 -0.0184868 +-0.0329958 0.0793378 -0.0275102 +-0.00469334 0.101051 0.0441761 +-0.0137252 0.0671481 -0.0375067 +-0.0531289 0.138241 -0.000765665 +-0.0361236 0.163705 -0.0141169 +-0.0249029 0.0722756 0.0462509 +-0.0119797 0.0383916 0.0235247 +-0.0246067 0.157782 -0.00250374 +-0.0748771 0.109206 -0.00842538 +-0.0314894 0.0845774 0.0421902 +-0.0849159 0.123546 -0.00333555 +0.052731 0.0672551 0.000627241 +0.0453449 0.0710055 0.0220458 +-0.0665131 0.0419133 -0.00333369 +0.0194908 0.113962 0.0368661 +-0.0674148 0.142782 -0.0112266 +-0.0931203 0.121503 0.0403997 +-0.0084076 0.0932235 -0.0348708 +0.0125532 0.0900642 0.0534187 +0.0432399 0.0747788 -0.00379578 +0.00477967 0.130785 0.0214562 +0.0461172 0.0759623 0.0190037 +-0.0870553 0.118453 0.000244653 +0.00651257 0.056103 0.0529931 +-0.0623783 0.167824 -0.0485899 +-0.0258496 0.0864897 0.0509722 +0.0602482 0.0581464 0.0141691 +-0.0923082 0.120116 0.0282975 +0.00750533 0.0660627 0.0552439 +0.060666 0.0609482 0.0151682 +-0.0674289 0.114212 0.0481237 +-0.0514122 0.146842 -0.00193867 +-0.0768562 0.117877 -0.00659127 +-0.0825551 0.152911 0.00706582 +-0.0839745 0.0804809 0.0225006 +0.041166 0.0819934 0.0314416 +-0.0655442 0.155124 -0.0481259 +-0.0384965 0.0620329 0.0413169 +-0.0627141 0.159943 -0.0425974 +-0.0767176 0.159013 -0.0120318 +-0.0856607 0.0832001 0.00448541 +-0.0278526 0.181478 -0.0120494 +0.0114013 0.0419017 -0.0239008 +0.0243085 0.123343 0.00295625 +-0.0474528 0.119349 0.0293599 +-0.0304487 0.0334492 -0.0290445 +-0.0696417 0.0422524 0.0026904 +-0.0644028 0.146849 -0.019975 +0.0503218 0.0589081 -0.00447436 +0.0476236 0.0467222 0.0264254 +-0.0303554 0.117939 -0.0127791 +0.0338995 0.0591949 0.0383404 +-0.0746238 0.166812 -0.0222329 +-0.0186858 0.118957 -0.0119398 +0.0507854 0.0445928 0.0142166 +-0.0844285 0.0832425 0.0264792 +0.0593532 0.0636103 0.0211835 +-0.073524 0.16243 -0.0369561 +-0.0525841 0.0574366 -0.00812203 +0.0221795 0.040783 0.0405434 +0.0281375 0.0902298 0.0443276 +0.0214874 0.0892516 0.0486681 +-0.0702718 0.110271 0.0410027 +0.0386345 0.0753534 0.0347776 +-0.0646561 0.0344494 0.0319916 +-0.00663677 0.109707 -0.0221975 +-0.029185 0.0634891 -0.02746 +-0.0671416 0.145678 -0.0214457 +-0.0135214 0.0353632 -0.0181023 +-0.0376703 0.125135 -0.00632213 +0.0114179 0.0489704 0.047894 +-0.0923638 0.118682 0.00930083 +0.0483264 0.0430255 0.0152188 +0.00550628 0.0441375 0.0457857 +-0.0652333 0.0338884 0.0112389 +0.0482587 0.0460086 0.000382582 +0.0586626 0.0538435 0.0111779 +-0.000982862 0.0386959 0.0236934 +-0.0245147 0.119422 0.0312229 +-0.0155858 0.183111 -0.0209193 +-0.0867126 0.0819778 0.0134931 +-0.0785905 0.0980977 0.0353146 +-0.0907184 0.115992 0.0263684 +-0.0614986 0.158424 -0.0305881 +-0.090971 0.141997 0.0221703 +0.049023 0.0722611 0.00748575 +-0.0495658 0.0446328 -0.00989725 +0.000576288 0.0353387 0.0179719 +-0.00263978 0.131127 0.015882 +0.0260716 0.115341 -0.00830033 +-0.0571034 0.0535249 0.00264062 +-0.0471993 0.162132 -0.00733312 +-0.0750917 0.0664543 0.00723246 +-0.0617686 0.159987 -0.035592 +-0.0267825 0.079725 -0.0369434 +-0.061465 0.0438948 -0.0044823 +0.0457823 0.0862054 0.00618349 +-0.065804 0.0609905 0.0192925 +0.0197913 0.0781802 0.0515303 +0.0377275 0.0928421 0.0353087 +-0.0179367 0.12631 0.000372783 +0.0437374 0.0902563 -0.00280325 +-0.00792408 0.0384127 0.0189094 +0.0556221 0.0493651 0.00819776 +0.00641397 0.0375702 -0.0238447 +-0.0274537 0.0485303 0.0479606 +-0.0610187 0.152669 0.0336579 +-0.078775 0.170042 -0.0371202 +0.0527843 0.0462443 0.0112063 +0.0173793 0.0631583 0.049653 +-0.0359664 0.162375 -0.00125909 +-0.0559722 0.134715 -0.00446003 +-0.0484961 0.113915 0.0346796 +-0.00776872 0.0756191 -0.0375185 +-0.085947 0.104892 0.00437979 +-0.0866438 0.152376 0.0233632 +-0.0520552 0.0559741 0.0276222 +0.060777 0.0637293 0.0161648 +-0.0634196 0.15027 -0.0277557 +-0.0514307 0.12406 0.0344067 +-0.00747581 0.101243 0.0443796 +-0.0489909 0.133982 0.00241474 +-0.0174145 0.118412 -0.0133815 +0.0106556 0.0345311 0.0225637 +0.0207029 0.0950845 -0.0226908 +-0.000596635 0.0433605 -0.0249736 +-0.0628762 0.0967673 -0.0179048 +0.0102648 0.0752773 0.0552991 +-0.0281556 0.17562 -0.0175208 +-0.00541266 0.130784 0.0163058 +-0.0708319 0.0345819 -0.00103676 +-0.0204551 0.0879984 0.0554627 +-0.0640233 0.0347562 0.0388023 +-0.0255632 0.0589456 -0.0304089 +-0.0856596 0.0858717 -0.000523015 +0.000533962 0.0773889 0.0579724 +-0.0911932 0.147489 0.0241289 +-0.0536699 0.0338623 0.0207675 +-0.0330023 0.0807475 -0.0275162 +-0.0598207 0.148547 -0.00150215 +-0.0292722 0.116973 -0.0137779 +0.0389134 0.0603588 -0.00677348 +0.00149281 0.111426 0.0424095 +-0.0567184 0.0723883 -0.016755 +-0.0557727 0.0333786 -0.00437552 +-0.0514926 0.0503999 0.033682 +-0.00426203 0.129106 -0.000929037 +0.0209419 0.0535563 0.0459234 +-0.0665114 0.0931036 0.0430214 +-0.0313926 0.112895 -0.0174931 +-0.0358232 0.127618 0.00522677 +-0.0126066 0.128516 0.0224096 +0.0435838 0.0705579 0.0258591 +-0.00308793 0.0379842 0.0148477 +-0.0348769 0.105695 -0.0204457 +-0.0787914 0.0724652 0.0224838 +0.022277 0.0678419 -0.0269851 +0.021809 0.1242 0.000142479 +0.00528322 0.0682375 -0.0327226 +-0.0813944 0.0817284 0.031574 +0.0109283 0.0616839 0.0526314 +-0.0233033 0.0429927 0.0537933 +0.0135067 0.1196 0.0353985 +-0.0856435 0.0805169 0.00650219 +-0.0555634 0.0386377 0.0471443 +-0.0925953 0.129683 0.0262582 +-0.0908852 0.150208 0.0181276 +0.0274474 0.0591653 0.0430806 +-0.0143101 0.113201 -0.0178955 +-0.0695125 0.145609 0.0428052 +0.002489 0.103843 -0.0219556 +0.034067 0.0981569 0.0371457 +-0.0663951 0.140334 -0.00790584 +-0.0462961 0.162745 -0.00789878 +0.0286561 0.108194 -0.012625 +-0.0852651 0.14863 0.0333956 +-0.0290693 0.0677067 -0.0294879 +0.0414097 0.104256 0.00616512 +-0.0693963 0.0393871 -0.00132267 +0.0255358 0.0435625 -0.00763706 +0.0562825 0.0508178 0.0201866 +-0.0867977 0.144597 0.036443 +-0.0252829 0.0751884 0.0479421 +-0.0224834 0.0681349 0.0481925 +0.0575606 0.0537805 0.0213286 +0.00845802 0.129083 -0.00108013 +0.0113649 0.0538487 -0.0294289 +-0.0501252 0.138572 0.00341268 +-0.074971 0.152728 -0.0179063 +-0.0312043 0.0422041 -0.0297469 +-0.0846068 0.0791109 0.00453817 +-0.0536323 0.0602894 -0.00841331 +-0.0171387 0.171259 -0.0162017 +0.0409378 0.0397959 0.0185201 +-0.0781974 0.153502 0.00273811 +-0.0824089 0.107319 0.0275588 +-0.0723216 0.169832 -0.0271166 +-0.0716176 0.109058 0.0379622 +0.000146179 0.101649 -0.0227639 +-0.0522094 0.0517797 0.0246371 +0.0118426 0.0562933 0.0521284 +-0.0625131 0.11843 0.0430565 +0.00861514 0.0345206 0.0221572 +0.0244049 0.0741131 0.0475942 +0.00453562 0.128718 -0.00265628 +0.0138565 0.129875 0.0119166 +-0.070378 0.149076 -0.0386493 +0.0445575 0.0847276 0.0241575 +-0.0157056 0.0599572 -0.0358177 +-0.0558806 0.154815 0.016521 +0.000379078 0.127909 -0.00372478 +0.0266539 0.122169 0.0209401 +-0.0679962 0.167786 -0.0255431 +-0.0920426 0.126958 0.0362532 +-0.0594207 0.0398239 0.0196241 +0.0364837 0.0469104 0.0311466 +-0.0568261 0.139571 0.0318926 +-0.053019 0.141421 -0.000504477 +0.0435234 0.0433666 0.0249665 +-0.0277895 0.06758 -0.0314768 +0.0362342 0.0398741 0.0247937 +-0.0212837 0.0381384 0.0164325 +0.0257555 0.0994695 0.0426751 +0.0399676 0.101315 -0.00381805 +-0.0152962 0.0433291 0.0513434 +0.0573469 0.0674291 0.0231143 +-0.0520755 0.0475411 0.0216528 +0.0328365 0.0876935 -0.0188869 +0.0143568 0.0522918 -0.0274834 +-0.0725069 0.145589 0.0436497 +0.00651279 0.0647152 0.0557475 +0.00953758 0.128186 0.0275085 +-0.052193 0.119749 -0.012566 +-0.0686715 0.165205 -0.0529941 +-0.0896326 0.092928 0.0134378 +0.0289756 0.116666 0.0289439 +-0.0642519 0.118577 0.0476092 +-0.0257723 0.182903 -0.0115399 +-0.0844232 0.100698 -0.00156743 +-0.0206629 0.0479548 -0.0285983 +-0.0532393 0.0448331 0.0206817 +0.00230145 0.0612209 -0.0331693 +0.020878 0.117607 -0.0107498 +-0.0818428 0.103274 -0.0045788 +-0.0184976 0.101625 0.0435583 +-0.0305 0.0674574 0.0390127 +-0.0485029 0.0452121 0.0424266 +-0.0929791 0.124188 0.0282747 +-0.0302252 0.0523701 -0.0173649 +0.00350969 0.0897377 0.0556751 +-0.0219245 0.161037 -0.00376903 +-0.0619129 0.0458194 0.037691 +-0.00376935 0.0769928 -0.0369082 +0.0411698 0.0806497 0.0314486 +-0.0115592 0.100495 0.0448823 +-0.063251 0.15135 -0.00497603 +-0.0271171 0.059077 -0.028426 +0.0053978 0.0390279 -0.0240405 +-0.0676491 0.065582 -0.00407795 +-0.063925 0.0448804 0.0097039 +-0.00969446 0.0598719 -0.0345693 +-0.0860777 0.110355 0.00735249 +-0.0152136 0.174214 -0.0186712 +0.00434041 0.0596672 -0.031584 +0.0213842 0.125707 0.00472943 +-0.0835093 0.13127 0.0505027 +0.0165672 0.128654 0.015768 +0.0285444 0.0459645 -0.0070843 +-0.0721129 0.15894 -0.00533295 +-0.0525858 0.147787 0.0204037 +-0.0465092 0.0776139 0.042786 +-0.00623267 0.10133 -0.0233757 +0.0572046 0.0564633 0.00317356 +-0.0122436 0.112093 -0.0187249 +0.00624351 0.0810351 -0.0338384 +0.0462734 0.0764388 0.00619417 +-0.0168246 0.0855538 -0.0389836 +-0.0869607 0.111738 0.00633151 +-0.0370469 0.152854 -0.00726744 +0.0405338 0.105622 0.0141627 +-0.0164738 0.10119 0.0439603 +-0.0854876 0.0791977 0.0105097 +0.0272664 0.0760665 -0.0234764 +-0.0438604 0.102816 -0.0213031 +0.00350403 0.0533854 0.0535456 +0.0169167 0.127898 0.0201801 +0.0184941 0.0838333 0.0510457 +-0.00847869 0.123725 0.0338017 +0.0387498 0.0659721 -0.0107606 +-0.0437917 0.0422818 -0.0193111 +-0.0126098 0.0384695 0.0251301 +0.0135799 0.0887495 0.0531421 +0.00935699 0.131232 0.0131197 +0.0135065 0.109861 0.0400106 +-0.0850182 0.0831804 0.00149618 +-0.0740846 0.0657329 0.0152043 +-0.0265661 0.0706408 0.0422848 +-0.0847398 0.106178 0.00238203 +-0.0345218 0.0818067 0.0425242 +-0.0428232 0.12861 0.00263817 +0.0121427 0.100268 -0.0226753 +0.0447259 0.0749152 0.000215102 +0.0232974 0.0648673 -0.0252072 +-0.0822784 0.0951136 -0.0065238 +-0.0614844 0.158425 -0.031588 +-0.0521163 0.12407 0.0351298 +-0.0424777 0.104302 0.0409096 +-0.00407779 0.0345848 -0.0173958 +-0.0284243 0.0487716 0.0462084 +-0.0184625 0.0729785 0.0545802 +-0.015609 0.128774 0.0111587 +-0.0694586 0.153877 0.0321166 +-0.0484639 0.149215 0.0104667 +-0.0526002 0.146245 0.0194042 +-0.0263327 0.111444 -0.0179843 +-0.0331847 0.0445939 -0.0279862 +-0.0538972 0.104145 -0.0195691 +-0.0294956 0.124519 0.0193203 +0.0346714 0.0916012 0.0397133 +-0.0247788 0.0379568 0.0140716 +-0.0643494 0.153359 -0.00540282 +-0.00557634 0.0347311 -0.0241073 +-0.0258097 0.0766327 0.0484243 +-0.00867178 0.0387364 -0.0146344 +-0.0783855 0.0873596 0.0368663 +-0.0346878 0.0651683 -0.0148251 +0.0404983 0.0499404 0.0324741 +-0.0738591 0.0964804 -0.0142486 +0.0267717 0.107644 -0.0140409 +-0.0404701 0.104257 0.0399236 +-0.0381489 0.0448685 -0.0242105 +-0.0095211 0.045789 0.0480158 +-0.0311715 0.171175 -0.0164295 +-0.0695038 0.173637 -0.0418473 +-0.0823392 0.111551 0.0443764 +-0.0227424 0.0655154 -0.0353045 +-0.0508568 0.0999518 -0.0219402 +-0.0589296 0.1241 0.041105 +0.000488727 0.108629 0.0427903 +-0.0412638 0.110187 -0.018624 +-0.0147098 0.0613984 -0.0362354 +0.0459347 0.0413813 0.0124396 +0.00323976 0.128177 0.0281353 +-0.0743879 0.143042 -0.00684484 +-0.0264004 0.0577755 0.0382862 +-0.00692431 0.038377 0.0191445 +-0.0864209 0.080641 0.0154973 +-0.077237 0.0721326 0.0266059 +-0.0686311 0.136892 0.0464956 +-0.0792347 0.153789 0.0287725 +-0.0537819 0.0840761 -0.0215562 +-0.0117053 0.0909225 -0.0365538 +0.0365178 0.0541167 0.0317039 +-0.0616584 0.114654 -0.0131207 +0.0390548 0.0884875 -0.0128108 +-0.0887111 0.101017 0.0193703 +0.0162822 0.0666125 -0.0295206 +-0.064714 0.0600149 0.00783247 +-0.0175786 0.180143 -0.0185198 +-0.0408442 0.152602 -0.00723164 +0.0352097 0.0379704 0.0208298 +-0.0618294 0.0342021 0.0275686 +0.0185142 0.0412688 -0.0207398 +-0.0195264 0.159643 -0.00556617 +0.0318624 0.0768516 0.0425881 +0.0347681 0.0641816 -0.0148052 +-0.0479777 0.147732 0.00938552 +-0.0126851 0.0570335 -0.0344182 +0.00495057 0.130435 0.00152594 +-0.0486835 0.0664435 -0.0136416 +-0.0356438 0.0562686 -0.010631 +-0.084499 0.088474 -0.00355332 +-0.0503848 0.141583 0.00270968 +-0.0858587 0.125737 0.0487678 +-0.0426772 0.14763 -0.000244299 +-0.0378831 0.156583 0.00477982 +0.00350659 0.0388434 0.0262887 +-0.0887855 0.102363 0.0143842 +-0.0646755 0.142507 0.0398915 +-0.0909161 0.13091 0.00724248 +-0.055962 0.0343325 0.0321978 +-0.0723047 0.162425 -0.0409479 +-0.0696851 0.11012 0.0394623 +-0.083003 0.0803028 0.000504056 +0.0247589 0.0435818 0.039017 +-0.0218764 0.182954 -0.0200262 +0.0236525 0.124901 0.0169603 +0.0463445 0.0561751 -0.00589814 +-0.0218308 0.117001 -0.0138605 +-0.0747558 0.067415 0.00253432 +-0.0625552 0.176839 -0.0611671 +-0.0660641 0.0384249 0.0148213 +-0.000107958 0.12991 0.000141982 +-0.054081 0.071101 0.0394438 +-0.00558231 0.0361988 -0.024956 +-0.0684451 0.117201 0.0519481 +0.0333957 0.0461492 -0.00598528 +-0.0146115 0.03779 -0.0266447 +0.00133195 0.0385877 -0.00128958 +-0.0348901 0.0738831 -0.020486 +0.0373363 0.105992 0.0277645 +0.0084546 0.131034 0.0184964 +-0.0324996 0.0498708 0.0403614 +-0.0444999 0.0719382 0.0422118 +0.0369643 0.0405549 -0.00158789 +-0.0354954 0.0733233 0.0419636 +-0.0457735 0.0826328 -0.0207974 +0.00732527 0.0595899 -0.0304419 +-0.0874242 0.111776 0.00733879 +-0.0592783 0.115234 -0.0137669 +-0.0928043 0.11882 0.0332998 +-0.0116325 0.0385039 0.00355749 +-0.0398903 0.0344806 0.00870734 +-0.0722375 0.138308 0.048356 +0.0262204 0.0344897 0.0111735 +-0.0200589 0.0348282 0.0498878 +-0.0246346 0.0382795 0.00294393 +-0.0889887 0.147168 0.0287003 +-0.0574968 0.1584 0.00209189 +-0.0329778 0.0448862 0.0466174 +-0.0605914 0.0623502 0.0262507 +-0.0785506 0.0699758 0.0176232 +-0.0362833 0.17342 -0.00108904 +-0.0627087 0.161508 -0.0465953 +-0.0397898 0.0855606 -0.0217035 +-0.0064056 0.10047 0.0472751 +-0.0646908 0.166411 -0.0300665 +-0.0508247 0.0941547 -0.0216781 +0.00716942 0.125754 -0.00749941 +0.000702847 0.0392103 -0.00758345 +-0.0407154 0.0462046 -0.018322 +-0.0401921 0.166668 -0.0117758 +0.0124864 0.11785 -0.0149995 +-0.0887986 0.114294 0.0264066 +-0.0614886 0.156862 -0.0235899 +0.0301602 0.0673157 0.0417954 +-0.0697061 0.156309 0.0202886 +0.0512708 0.0700979 0.0242688 +-0.00208274 0.0390983 0.0321346 +-0.091649 0.146116 0.0221478 +-0.0423664 0.0392174 0.0434612 +-0.0288487 0.0944704 -0.0247187 +-0.0724483 0.148649 -0.034807 +0.0270658 0.12207 0.0196667 +-0.0370838 0.159234 -0.0122889 +-0.00750248 0.0619634 0.0561006 +-0.0533112 0.162693 5.53048e-05 +-0.00276518 0.0755391 -0.036261 +-0.0186814 0.0539839 -0.0321072 +-0.0875792 0.134961 0.00324767 +0.0120758 0.0363869 0.044646 +-0.0753955 0.0901087 0.0394375 +0.0338247 0.108829 -0.00728203 +-0.0444976 0.0789577 0.0421738 +0.0235632 0.0862591 0.0483322 +0.0465947 0.0750442 0.0151558 +-0.0733825 0.135448 0.0501828 +-0.0150618 0.0383341 0.0229424 +-0.00891681 0.0351082 0.0414685 +0.0315143 0.0525771 -0.0117816 +0.045527 0.0791773 0.00219591 +-0.0464963 0.076159 0.0423522 +-0.0708979 0.122353 -0.00862039 +-0.08595 0.110378 0.0213654 +-0.0783775 0.103446 0.0335489 +-0.0758029 0.111217 -0.00664466 +-0.0554837 0.0805968 0.0447827 +-0.0353516 0.166776 -0.00214363 +0.0562979 0.0633024 0.00123284 +0.0465716 0.0440008 0.0231655 +-0.0476369 0.0591928 -0.0118235 +-0.0288774 0.169748 -0.00856256 +0.0153133 0.121135 -0.0105519 +-0.0397313 0.072486 -0.017441 +-0.016397 0.0337307 -0.02279 +0.0603039 0.0650788 0.0091381 +-0.0878637 0.152463 0.0169978 +-0.0754938 0.127441 0.0530403 +-0.067202 0.162346 -0.0569974 +-0.0865386 0.147279 0.0332936 +-0.0535025 0.0440354 0.0449405 +-0.0735938 0.149845 -0.0348818 +-0.0728566 0.162156 -0.0114327 +0.0495045 0.0651553 0.0285253 +0.012555 0.130318 0.0128667 +0.0220735 0.113988 0.0356074 +0.0224569 0.125562 0.0179459 +-0.0810243 0.0936828 -0.00856919 +-0.0756675 0.155622 -0.00260296 +-0.0431622 0.0422126 -0.0213185 +-0.000694781 0.0597985 -0.0333207 +0.0271246 0.0849281 0.0463473 +0.0173609 0.0897252 -0.0270298 +-0.0358944 0.0334964 -0.0263993 +-0.0576531 0.0612704 -0.00372094 +-0.00707611 0.0386628 0.0278929 +-0.0560526 0.151627 -0.00172465 +-0.030326 0.045 0.0496314 +-0.00103499 0.117326 -0.0163697 +-0.0252491 0.162472 -0.00507229 +0.00208806 0.113117 -0.0199282 +-0.0939 0.124133 0.015262 +-0.0129795 0.0384272 0.0232864 +0.00120237 0.0867098 -0.0346725 +0.0353317 0.112044 0.0241962 +0.00450167 0.0459455 0.0484199 +-0.0863511 0.0872693 0.000483167 +-0.0164554 0.0963571 0.0512639 +0.0121283 0.11013 -0.0187853 +-0.0778795 0.103388 -0.00866618 +0.0245137 0.102392 -0.0184072 +0.0201875 0.0974057 -0.022456 +-0.0168907 0.0921233 -0.0358082 +-0.0691832 0.153837 -0.0495596 +0.0155185 0.129225 0.0096832 +-0.00814574 0.0386661 0.000442505 +-0.0927289 0.125458 0.0102641 +-0.0846445 0.0832051 0.023501 +-0.0527541 0.0782706 -0.0196088 +-0.0206459 0.171255 -0.0142383 +0.0273486 0.110085 0.0362063 +-0.0144833 0.105825 0.0431811 +-0.0295885 0.120405 -0.00932945 +-0.0914492 0.117418 0.0293041 +-0.0259115 0.159753 -0.0130913 +-0.0498456 0.123179 -0.0101809 +0.0474532 0.047084 -0.00164907 +0.0201466 0.0658754 0.0483972 +-0.0546819 0.0486825 0.0116705 +0.0366139 0.0573407 -0.00875458 +0.016382 0.0888799 -0.0281622 +-0.0128318 0.0653357 0.0541739 +-0.0495043 0.073253 0.0416255 +0.0380257 0.084795 0.0357219 +-0.055962 0.148162 0.0296522 +-0.00335679 0.11693 -0.0159223 +-0.0164885 0.0382449 0.0155037 +-0.0943085 0.12145 0.0162821 +-0.0604949 0.104288 0.0411949 +-0.0485787 0.153602 0.0103738 +0.0214629 0.119376 0.0329783 +-0.00921964 0.0390042 -0.0131222 +0.046038 0.044353 0.0245911 +0.00963825 0.115048 0.0386641 +-0.077742 0.161125 -0.0199262 +-0.0274983 0.0932247 0.0447643 +-0.0237144 0.062529 -0.0332478 +0.0256802 0.0685786 0.0440967 +-0.000627469 0.039269 0.0340794 +0.0387649 0.0834441 0.0350467 +-0.0144799 0.123658 0.0314246 +-0.0415001 0.0733705 0.042415 +0.0543119 0.0722872 0.00750454 +-0.0799536 0.133905 -0.00443135 +-0.0728995 0.10646 -0.0108772 +0.0465866 0.0714909 0.00427537 +-0.0734754 0.158245 -0.0309204 +-0.0217961 0.0784868 -0.0389208 +0.0328256 0.0611992 -0.0167775 +-0.00849082 0.119665 0.0373867 +-0.0345047 0.106995 0.0387065 +-0.0624367 0.153758 -0.0135798 +0.0343704 0.104711 0.0323207 +-0.0583832 0.0335298 0.00219999 +0.0202943 0.113982 0.0365633 +0.0149493 0.0344805 -0.015521 +0.0238985 0.104719 0.0399907 +-0.0270163 0.155641 -0.00359794 +-0.0207265 0.111071 -0.0196229 +0.00439792 0.0404664 -0.024069 +-0.0314988 0.165308 -0.00534483 +-0.0506374 0.0334455 0.00204379 +-0.0518913 0.130385 -0.00375074 +0.00347876 0.039945 0.0459765 +-0.0174912 0.108558 0.0415716 +-0.0618685 0.158412 -0.0345942 +-0.0509699 0.122064 -0.0109984 +-0.0801245 0.0746668 0.000525034 +0.0485976 0.0429932 0.0132228 +0.0202555 0.0707617 -0.0282449 +-0.086473 0.130788 0.000288786 +-0.0859798 0.13928 0.042828 +-0.0419021 0.157999 0.00424081 +0.0301266 0.0646197 0.0417292 +-0.0241332 0.0349697 0.043675 +-0.0554996 0.0466308 0.0421953 +0.0244135 0.114257 -0.0111426 +-0.0687634 0.168362 -0.025835 +-0.0212185 0.178615 -0.022031 +0.0451425 0.0775553 0.0229667 +0.0084768 0.116844 0.0380952 +-0.0619218 0.112503 -0.0143567 +0.0015045 0.0661578 0.0563313 +-0.0473123 0.0369901 -0.0152765 +0.0576745 0.0551294 0.00518333 +-0.0736262 0.148585 -0.0238576 +0.055706 0.0507437 0.0211984 +0.0038008 0.130941 0.0210967 +-0.0360463 0.0347343 0.0430826 +-0.0865396 0.139093 0.00420465 +-0.000664914 0.0539666 -0.0309917 +-0.0785368 0.0694183 0.0145853 +-0.0521695 0.144678 0.0173655 +0.0205519 0.0414936 -0.0177079 +-0.0764027 0.109871 -0.00664525 +-0.0455151 0.0533187 0.0381544 +-0.010362 0.0388675 -0.00761727 +-0.0465826 0.121367 -0.0123258 +0.060067 0.0636708 0.0191758 +-0.0214848 0.0347602 0.0479269 +0.0295458 0.115836 -0.00482165 +0.0188031 0.106638 -0.0169667 +-0.00873489 0.068452 -0.036144 +-0.0504955 0.0733248 0.0417999 +0.00250961 0.101617 0.0444387 +-0.0134598 0.0645734 0.0539775 +-0.0304851 0.038633 -0.015152 +-0.00443456 0.111901 -0.0205597 +-0.038606 0.0392918 -0.0284798 +-0.022624 0.0450535 -0.0281102 +0.0262273 0.117277 0.0307934 +0.0282585 0.063629 -0.0207965 +-0.0649158 0.115218 -0.010913 +-0.0197994 0.0799106 -0.0390737 +-0.042508 0.0930307 0.0424902 +-0.0683794 0.0434664 0.00169373 +-0.0648724 0.131147 0.0430922 +-0.00487539 0.105927 -0.0225105 +-0.0678583 0.112732 0.0457592 +0.00821621 0.124741 -0.00840458 +-0.0564446 0.0520481 -0.00138381 +-0.020896 0.107686 -0.0220438 +-0.0919111 0.120015 0.00829626 +-0.0188214 0.0841215 -0.0388306 +-0.00848834 0.10866 0.0434392 +-0.0674721 0.0639504 -0.00252382 +-0.0321962 0.0487152 0.0429222 +0.0422051 0.0972089 -0.00180239 +-0.0312857 0.125233 0.0186818 +0.0348151 0.0605689 0.0379285 +-0.07566 0.1555 -0.0199215 +-0.0582195 0.03947 0.0465299 +-0.0144966 0.0687907 0.0546395 +-0.0630713 0.173863 -0.0616798 +0.0398379 0.0874103 0.0331324 +0.0167269 0.0821369 0.052401 +0.0403742 0.101353 -0.00282827 +-0.0622911 0.150653 -0.0125749 +-0.0707931 0.0879477 -0.0165704 +0.048521 0.043083 0.00923259 +0.0132697 0.0603324 0.0507028 +-0.0230427 0.038006 0.0179945 +0.0585617 0.0538351 0.0161785 +-0.0548868 0.108372 -0.0183778 +-0.0712698 0.156094 0.0241098 +-0.0053845 0.126096 -0.00772897 +-0.076026 0.151346 0.0359505 +0.00881068 0.127643 0.0286728 +-0.0229191 0.119996 -0.0109969 +-0.0702091 0.156071 0.0113882 +-0.0285896 0.0704574 -0.0325207 +-0.0373694 0.173381 -0.00150317 +0.043508 0.0438731 -6.08517e-05 +-0.0434927 0.0747943 0.0426652 +-0.0817644 0.0758778 0.0206878 +-0.00439411 0.0968663 -0.0305974 +0.00748123 0.0937253 0.0527164 +0.0101565 0.0860282 0.0551829 +-0.0132478 0.039072 0.0352601 +-0.0786774 0.168631 -0.0343418 +-0.0500333 0.148713 -0.00320857 +0.00694939 0.128215 0.0280149 +0.0132662 0.0737717 -0.03084 +-0.089989 0.142041 0.0291697 +-0.0298412 0.0944347 -0.0243277 +-0.0866185 0.103641 0.022352 +0.0179014 0.114016 -0.0148856 +0.0537258 0.0735615 0.0163564 +-0.0413654 0.128702 0.0120304 +-0.0855876 0.0939777 -0.00157288 +-0.0828574 0.0764021 0.018249 +-0.0454932 0.0491469 0.0390026 +-0.0317045 0.0693753 -0.0244624 +-0.0587034 0.0579543 0.010904 +-0.0269178 0.034755 0.0450156 +-0.0520173 0.146257 0.0174096 +-0.0759561 0.112612 -0.00567952 +-0.0164906 0.0786958 0.056769 +-0.0778425 0.108614 0.0370385 +0.0422463 0.0403355 0.0183005 +-0.0845698 0.0831877 0.0245094 +0.00429984 0.0654625 -0.0332399 +-0.0572715 0.0482006 0.0365817 +0.0290027 0.0741128 0.0436952 +-0.0600502 0.143934 0.0360579 +0.0366467 0.0673305 0.0371158 +-0.0199983 0.126616 0.0197793 +-0.0728415 0.165906 -0.0186805 +-0.0634251 0.128316 0.0434644 +-0.0437757 0.12944 0.0066621 +0.000274533 0.0683164 -0.033854 +0.00152244 0.03707 0.0220484 +-0.0349517 0.151884 -0.00344832 +-0.0271199 0.0347243 -0.0201972 +0.0433938 0.0426486 0.00136855 +0.000501319 0.0576739 0.0545888 +-0.0636327 0.155181 -0.0386163 +-0.0884108 0.0928321 0.00744302 +-0.0495652 0.0614019 0.0343808 +-0.0434939 0.0930777 0.0427388 +-0.0662865 0.178231 -0.0601734 +-0.054498 0.111159 0.0367038 +-0.0460532 0.057401 0.0380948 +-0.0820259 0.0858257 0.0320864 +-0.0277337 0.0521019 -0.0243965 +-0.00442413 0.130145 0.0224484 +-0.00149759 0.0549023 0.0548542 +-0.035558 0.0430076 -0.0284728 +0.0593498 0.066038 0.0207029 +0.0515344 0.0624078 0.0294591 +-0.0197872 0.118912 -0.0118682 +-0.0168075 0.0827608 -0.0394117 +-0.0487872 0.0545643 0.0352206 +-0.0311424 0.174761 -0.015609 +-0.0326324 0.0534241 -0.0105104 +0.00577065 0.131636 0.0103849 +-0.0185368 0.123815 0.0276913 +-0.0454963 0.0818291 0.0431013 +-0.0634376 0.179008 -0.0598746 +-0.00652958 0.0443624 0.0478753 +-0.0308041 0.0566412 -0.01742 +0.0448472 0.0735234 0.00122364 +-0.00349567 0.0504603 0.052334 +-0.0298753 0.0537337 -0.0203803 +-0.00256734 0.0388997 -0.00235847 +-0.0502892 0.0334774 -0.00701976 +-0.00481396 0.0840888 -0.0377627 +0.0387801 0.058953 0.031306 +-0.0243507 0.0852386 0.0537426 +-0.077502 0.0785105 0.0333799 +-0.0695501 0.0378481 -0.00149869 +-0.0313945 0.0862693 -0.0285563 +-0.0759552 0.133992 -0.00682355 +-0.0783042 0.161088 -0.0239376 +0.0512217 0.0595245 0.030012 +0.0455105 0.0777762 0.00219892 +-0.0860997 0.0805682 0.0085045 +-0.0347118 0.121713 -0.00868145 +-0.0621446 0.0384632 0.0179813 +-0.0124987 0.115524 0.0391996 +-0.0407326 0.0341812 -0.0112599 +-0.0762949 0.0689313 0.00454567 +-0.0900211 0.137875 0.0231818 +0.0335661 0.0612752 -0.015761 +-0.0620569 0.121268 0.0436785 +0.0389827 0.104151 0.026189 +-0.0724692 0.135469 0.0497506 +0.0222613 0.0692548 -0.0269722 +-0.0614967 0.0876222 0.0452319 +-0.0694862 0.120387 0.0531587 +0.0384699 0.0786144 -0.011749 +-0.0225096 0.10992 0.040117 +0.0140839 0.123776 -0.0073928 +0.0455444 0.0774866 0.0217209 +0.0421217 0.0751567 0.0292241 +-0.0637125 0.165316 -0.0311513 +0.00714876 0.108764 -0.0200496 +-0.0613421 0.118288 0.041013 +0.0150763 0.0900809 0.0517899 +0.0392297 0.0926988 -0.0100859 +-0.0707648 0.0836514 -0.0167885 +0.0199669 0.107838 -0.0162613 +-0.0573264 0.0521522 0.00163442 +0.03817 0.0983612 -0.0088053 +-2.43522e-05 0.0348774 0.0110061 +-0.0647928 0.0346609 0.0159953 +-0.0765127 0.164562 -0.0208538 +-0.0398786 0.107079 -0.0200332 +-0.0315509 0.053914 -0.013393 +-0.0689152 0.109432 -0.0116742 +-0.0426992 0.0344898 0.0348747 +-0.0113643 0.182132 -0.0288209 +-0.0251052 0.162299 -0.0151004 +-0.0745879 0.156108 0.0200327 +-0.0686632 0.162379 -0.0529737 +-0.0867316 0.100467 0.0250232 +0.0335218 0.0499029 0.0322045 +0.0110844 0.0345718 0.0406762 +0.047975 0.0710438 0.0215578 +-0.0471313 0.132491 0.00541336 +0.0385464 0.0954957 -0.00890109 +-0.055495 0.154378 0.0181054 +-0.0486202 0.0403225 0.04496 +-0.0918049 0.121541 0.0434848 +-0.0427276 0.129253 0.0100405 +-0.0641572 0.150753 -0.03179 +0.0203307 0.08353 0.050588 +-0.0025157 0.127417 -0.00520554 +-0.0664375 0.153657 -0.0486366 +0.00823253 0.112336 0.0401545 +-0.0239671 0.075324 0.0508435 +-0.0519769 0.0340995 -0.0134375 +-0.0444607 0.0902688 0.0428496 +-0.043053 0.153237 -0.00732462 +-0.0520076 0.145723 -0.00116844 +-0.0587286 0.0620484 0.0269094 +-0.0876727 0.111787 0.0358475 +-0.0843489 0.0925325 -0.00454911 +-0.00849886 0.0856701 0.0574538 +-0.0681283 0.146379 -0.0251159 +-0.0800217 0.102057 0.0324029 +-0.0662458 0.167287 -0.027765 +0.0214869 0.0865002 0.0492244 +-0.0485551 0.129676 -0.000935313 +-0.021529 0.17126 -0.0137526 +0.0263623 0.0808978 0.0469671 +-0.00180556 0.0384438 0.0201303 +0.0199827 0.116932 -0.0120267 +0.000700235 0.0374335 0.0215506 +-0.0849215 0.130733 -0.00170191 +-0.0566837 0.0492811 -0.00237706 +0.013902 0.054865 0.0498147 +-0.0487235 0.0738176 -0.0166605 +-0.0588289 0.089737 -0.0207103 +-0.00415565 0.0996194 0.0496007 +0.00922789 0.0860105 0.0556146 +-0.052373 0.126911 0.0347775 +-0.0647638 0.0397203 0.0149016 +-0.0375028 0.102851 0.0403695 +0.012678 0.130036 0.0186174 +0.01582 0.0346802 0.0234839 +-0.0834012 0.146003 0.0386574 +-0.0855432 0.111388 0.0330811 +-0.0905559 0.1297 0.0402277 +0.0225 0.108418 0.039052 +-0.034538 0.033729 0.00866796 +0.0580527 0.0523859 0.0111812 +0.0489522 0.045877 0.023734 +-0.0741385 0.0703655 0.0287707 +-0.0261092 0.0409213 0.0540071 +-0.0124916 0.0801274 0.0575032 +-0.0480938 0.0362157 0.0456887 +0.0295798 0.047722 0.0354768 +-0.051366 0.129708 0.032749 +-0.0258406 0.0339312 -0.0210821 +-0.0627466 0.0751872 -0.0173542 +-0.0208698 0.104444 -0.0228641 +0.0391583 0.108387 0.0121653 +-0.0217873 0.0728206 -0.0385569 +-0.00162182 0.0363065 0.0130228 +-0.0125908 0.182249 -0.0250896 +-0.0463216 0.125305 0.0258345 +0.00739775 0.110951 0.0406753 +-0.0698286 0.0965949 -0.0159812 +0.0495953 0.0662964 -0.000416722 +0.0214 0.116687 0.0346491 +0.0355013 0.0605581 0.0371681 +0.0347485 0.0981702 0.0363481 +-0.0784998 0.130283 0.0530344 +-0.0139533 0.0338864 -0.0205741 +-0.0185901 0.128007 0.0115203 +-0.0538047 0.0884108 -0.022116 +0.0213383 0.0635548 -0.0266585 +-0.0194915 0.120861 0.0324568 +-0.0347476 0.127441 0.00854521 +-0.0126238 0.0952928 -0.0330113 +-0.00102634 0.107271 -0.0216101 +0.0225395 0.0352111 0.00978173 +0.0193228 0.0679612 -0.0287395 +0.00111873 0.0344764 0.0134191 +0.0375161 0.110639 0.00638069 +0.0222494 0.0762728 -0.0263867 +-0.0729386 0.0646873 0.0146181 +-0.0397368 0.0739371 -0.0178005 +-0.0543178 0.0387289 0.0471882 +0.016338 0.0566541 -0.0286494 +0.0299119 0.0491593 0.0359714 +0.0525507 0.0462401 0.0172033 +0.0138891 0.0942573 -0.0257865 +-0.00745761 0.0338748 -0.0230567 +-0.073507 0.121801 0.0535653 +-0.0771635 0.0705018 0.0227664 +0.014215 0.083589 -0.0300782 +0.0187635 0.105558 -0.0177865 +-0.0943455 0.121485 0.0232874 +-0.0190471 0.0582949 0.0492947 +-0.0482842 0.164088 -0.00583628 +0.00750123 0.074495 0.0564449 +0.0114903 0.0896115 0.0540357 +0.0111129 0.0739356 0.0547693 +-0.0243199 0.0387345 -0.0140132 +0.0343886 0.107359 0.0305696 +0.0280618 0.0416802 0.0314173 +0.01142 0.0374719 -0.022733 +0.0330999 0.114889 0.024788 +-0.0199406 0.122541 -0.00772092 +-0.0662581 0.15274 0.0347724 +0.00215199 0.101646 -0.0224127 +0.0164932 0.112605 0.0382483 +-0.06512 0.166493 -0.0287867 +-0.0848366 0.0898781 -0.00356125 +-0.0321536 0.0380399 -0.0168 +-0.000666067 0.037425 0.0194672 +-0.0009793 0.0356154 0.0137824 +-0.0338572 0.100054 -0.0225702 +-0.0466969 0.0694537 -0.0155404 +-0.0236112 0.0386852 0.0334692 +0.0506847 0.044695 0.00922239 +0.0143403 0.11733 -0.0144441 +0.0447757 0.0875223 -0.000814326 +0.0359341 0.0727624 -0.0138488 +-0.0526285 0.0588799 -0.00854194 +-0.090746 0.114598 0.00833305 +0.0454568 0.0819591 0.00221362 +-0.0191965 0.175667 -0.0232885 +-0.062765 0.0780997 -0.0182585 +0.0414338 0.0676164 -0.00577635 +-0.053491 0.113891 0.0350292 +0.0043588 0.0510132 -0.0293749 +-0.00874604 0.0713519 -0.0371122 +0.0193852 0.0915557 -0.024942 +-0.0944514 0.122808 0.0172688 +-0.00774122 0.115628 -0.0165086 +-0.0406319 0.0534345 -0.0110028 +0.0230588 0.0463265 0.0401038 +-0.0769246 0.0689689 0.00654258 +0.0278197 0.108769 0.0368873 +-0.078478 0.142827 0.0455967 +0.0339472 0.0368914 0.0179028 +0.0140143 0.0357038 0.00388789 +-0.0699623 0.155307 -0.0499609 +-0.0144161 0.0343188 -0.0191903 +-0.044261 0.122001 0.0258917 +-0.064466 0.170264 -0.0443864 +-0.0614851 0.112533 0.0365644 +-0.0649074 0.120907 -0.00883756 +0.0114806 0.097647 0.0487825 +0.00178793 0.0344587 0.00626566 +0.0404914 0.098527 -0.00482713 +-0.0714142 0.166619 -0.0469903 +0.0553639 0.0729653 0.0110394 +-0.00645384 0.126073 -0.0076982 +-0.042494 0.0676556 0.0412962 +-0.0328931 0.0486572 0.0421875 +-0.0218312 0.0882119 -0.0370399 +0.0433826 0.0987102 0.00417641 +-0.034498 0.0533048 0.037996 +-0.0749535 0.0823401 -0.0135889 +-0.0755022 0.131669 0.0524935 +-0.0118269 0.118985 -0.0140536 +-0.0698809 0.100876 -0.0145572 +-0.0920212 0.128183 0.00926455 +-0.0277533 0.155598 -0.00253083 +-0.0155991 0.0421323 -0.0272897 +0.0125549 0.119968 -0.0132874 +-0.0862929 0.15121 0.027304 +-0.0726068 0.147127 -0.0218633 +-0.0713282 0.0982044 0.0407618 +-0.023785 0.0621839 0.0426152 +-0.0294793 0.0446083 0.0503994 +0.050676 0.0693821 0.00244948 +-0.0520559 0.142894 8.38275e-05 +-0.085494 0.083212 0.00349969 +0.0219046 0.0892697 -0.0245066 +-0.0923861 0.125586 0.0352607 +-0.0578149 0.12313 -0.00798101 +-0.0630458 0.0345815 0.0177326 +-0.0890554 0.0888307 0.00946144 +-0.066735 0.167252 -0.0265095 +0.0143257 0.0594816 -0.0287805 +0.00349695 0.0519735 0.0532512 +-0.0658642 0.141582 -0.00840157 +0.014169 0.0603418 0.050255 +-0.0638047 0.152122 -0.00224548 +0.0332402 0.0814034 -0.0189012 +-0.0246071 0.0408479 -0.0291354 +-0.0320867 0.0651952 -0.0194497 +-0.0719291 0.0394019 0.00652921 +-0.0297834 0.0409697 0.0520218 +-0.035582 0.0336826 0.00849877 +-0.088744 0.0996845 0.0203875 +0.0516874 0.0662489 -0.000355134 +-0.0802571 0.096729 0.0342047 +-0.0669809 0.135535 -0.00827796 +-0.069479 0.0337046 -0.000209101 +-0.0675145 0.148386 0.0398761 +-0.0805311 0.123088 0.0509172 +-0.0084955 0.0503277 0.0510127 +0.00205693 0.129985 1.8398e-05 +-0.0172313 0.12808 0.0178394 +0.00170313 0.0343139 0.0118694 +-0.0773727 0.156953 -0.0129034 +-0.0717154 0.0632455 0.0160979 +0.00858548 0.0340902 -0.01633 +0.0124197 0.0403679 -0.0230567 +-0.0511271 0.116882 0.0329705 +-0.0728598 0.0355014 0.00645302 +-0.0791962 0.16801 -0.0379842 +-0.00268972 0.128069 -0.00389854 +0.0597918 0.0567046 0.013171 +0.0154995 0.111258 0.0392925 +-0.019299 0.0668878 0.052102 +-0.0233826 0.0866124 0.0541509 +0.0432138 0.091668 0.0251628 +-0.0396808 0.0636721 -0.0135815 +0.00652038 0.0518639 0.0525018 +0.0124104 0.0389053 -0.0225983 +-0.0119403 0.171322 -0.0192115 +-0.069435 0.0972593 0.0417284 +-0.0942583 0.125557 0.0232684 +0.030238 0.0814876 -0.0201701 +0.0449279 0.0945923 0.00916323 +-0.0553588 0.131132 0.0357618 +0.00929414 0.0653548 -0.0316941 +-0.0357484 0.0768864 -0.0192776 +-0.062693 0.156802 -0.0376031 +-0.0460193 0.128067 0.0236255 +0.0133301 0.0609017 -0.0290805 +0.00152141 0.0773467 0.0574533 +-0.0636035 0.156128 0.0166435 +-0.0361137 0.162217 -0.0137308 +-0.0595062 0.0386574 -0.00901889 +-0.0620309 0.153757 -0.0155846 +-0.0533723 0.122605 0.0368904 +-0.0264702 0.0676761 0.0408217 +-0.0147452 0.123455 -0.00671201 +-0.0703548 0.0643588 0.00158224 +-0.0814272 0.0752484 0.0195365 +0.0402499 0.0787503 -0.00875238 +-0.00644119 0.0828529 0.0570838 +0.0242228 0.0902502 0.0474811 +0.0336268 0.0557054 -0.0117007 +-0.0623153 0.13671 0.0362243 +0.0149059 0.124307 -0.00595517 +-0.0401601 0.165169 -0.0119868 +-0.077431 0.108115 0.0357399 +0.0402513 0.0940026 0.0302416 +0.0370616 0.0382621 0.0191175 +0.0225195 0.106011 0.0397482 +-0.0255993 0.037974 -0.029094 +-0.0759547 0.129619 -0.00760722 +-0.0360191 0.153642 0.00214438 +0.0596848 0.0566967 0.0151763 +-0.0264473 0.181471 -0.0150302 +-0.0346676 0.0359024 -0.017193 +0.0391135 0.0904981 -0.0117677 +0.00550174 0.0745058 0.0566062 +-0.0615874 0.117934 -0.0105067 +-0.0897323 0.115129 0.0291209 +0.0371127 0.037099 0.0128773 +0.000643571 0.127035 0.0301068 +0.04471 0.0789677 0.024116 +-0.0294983 0.0588236 0.0368769 +0.0243457 0.102123 0.0424029 +-0.0890326 0.125361 0.00330134 +-0.0671124 0.0618759 0.00376788 +0.0207378 0.105279 -0.0174962 +-0.0640597 0.156709 -0.043612 +-0.053836 0.112592 -0.0169505 +-0.0738585 0.0762694 0.0355202 +-0.00709045 0.130506 0.0171336 +-0.0735939 0.077695 0.036626 +-0.0453238 0.169855 -0.00399069 +-0.0609112 0.060145 0.00105228 +-0.0602298 0.119796 0.0409592 +-0.037803 0.0885803 -0.0235006 +0.0220645 0.0375334 0.0362702 +-5.6077e-05 0.112952 -0.0196345 +-0.0156034 0.097548 -0.0273897 +0.0330435 0.104766 0.033885 +0.0234619 0.0343557 0.00702041 +0.0309186 0.094253 -0.0177648 +-0.0406484 0.0563266 -0.0113192 +0.0305338 0.0929359 0.042541 +-0.0713282 0.155382 -0.0439108 +-0.0246656 0.0492403 -0.0269082 +-0.0344954 0.118007 0.0312549 +0.03264 0.0822319 0.0419892 +0.0393737 0.0381589 0.0105128 +0.00986741 0.131059 0.0147331 +-0.0521114 0.156091 -0.00406652 +0.0125143 0.121868 -0.0113432 +-0.019839 0.0610753 0.0486026 +-0.0714347 0.109953 0.0409933 +-0.0435006 0.115257 0.0335166 +-0.0700918 0.147968 0.0410511 +-0.0628279 0.151059 0.0360546 +-0.0269995 0.0383068 0.000625566 +-0.0459023 0.0546326 0.0380387 +-0.0705411 0.0860609 0.0417748 +-0.0360717 0.157766 -0.0114869 +0.018169 0.108481 -0.0169141 +-0.0656915 0.0720893 -0.0135891 +-0.0604976 0.0847283 0.0441029 +0.00648432 0.0413231 0.0455852 +-0.0757282 0.0754387 0.0328339 +0.00417753 0.0922823 -0.0325433 +-0.0272993 0.0381948 -0.0178418 +-0.0315044 0.0860003 0.0426216 +-0.00681874 0.0868473 -0.0370495 +0.0396972 0.0744788 -0.00980523 +0.0376515 0.0947835 -0.010301 +-0.078491 0.121738 0.0515581 +-0.0274838 0.105666 0.0409158 +-0.0202559 0.0365056 -0.0280118 +0.0201693 0.125674 0.00144037 +-0.0587501 0.0482189 0.00571238 +-0.013346 0.168342 -0.0159797 +-0.0683811 0.149044 -0.0363633 +-0.0558475 0.0343686 0.0374162 +-0.0590903 0.0626036 0.0281123 +-0.0331372 0.0336314 -0.0222436 +-0.0678611 0.0980605 -0.0159397 +-0.0472308 0.0334623 0.00452598 +-0.0167567 0.0714512 -0.0386579 +-0.0184671 0.10319 -0.0232847 +-0.0675365 0.0805511 0.0417814 +-0.0666009 0.15275 -0.0468174 +-0.00387787 0.10737 -0.022403 +-0.0300213 0.0579734 -0.0204069 +-0.00579466 0.103184 -0.0232761 +-0.0775304 0.143071 -0.00473432 +-0.00757151 0.0346922 -0.0244599 +-0.0355091 0.0676694 0.0413832 +-0.0185092 0.127137 0.00354165 +0.0289004 0.0650837 -0.0199869 +-0.0224914 0.04868 0.0491885 +-0.0194885 0.0856172 0.056795 +-0.0625301 0.147537 -0.0105732 +0.00324634 0.0726279 -0.0347233 +-0.0117444 0.129778 0.0154481 +0.0381223 0.106958 0.0251953 +0.0134297 0.0343278 -0.0118215 +0.00450615 0.0772491 0.0561317 +0.00914326 0.112364 0.0397506 +0.0165994 0.0933382 -0.024824 +-0.0530349 0.0448324 0.0176964 +-0.0861503 0.0818963 0.00748815 +-0.07574 0.144451 -0.00587632 +-0.0796195 0.104749 0.0319273 +0.0404835 0.052774 0.0322642 +0.0420568 0.0986443 0.0231563 +-0.0887511 0.102351 0.0133854 +0.0132668 0.0723896 -0.0312102 +-0.0507233 0.0723393 -0.0157137 +-0.00754786 0.039018 -0.00905888 +-0.0488259 0.138613 0.00940263 +0.0057745 0.128094 -0.00399317 +-0.0523396 0.147791 0.0193952 +-0.048265 0.136372 0.0159973 +-0.0604426 0.0470258 0.0346715 +0.0367367 0.0902141 0.03744 +-0.0895793 0.136441 0.0122186 +0.0376089 0.108292 0.000165208 +0.0353713 0.0915869 0.0389643 +-0.0211976 0.0347654 0.0444796 +0.00223085 0.129379 -0.00131325 +-0.0737831 0.0864021 -0.0154104 +-0.0127393 0.0700008 -0.0380391 +-0.0657273 0.0751276 -0.0164058 +0.00937487 0.0377648 0.0302588 +-0.035816 0.0448118 0.0437923 +-0.0549046 0.102722 -0.0198351 +0.0460481 0.046714 0.0276632 +0.00759173 0.131318 0.00819364 +-0.0721931 0.161015 -0.0399435 +0.0102622 0.0710503 -0.0323195 +0.0194745 0.0851519 0.050256 +-0.0399319 0.0345158 0.0389424 +-0.0616692 0.167812 -0.0545903 +-0.0056922 0.0584499 -0.034018 +-0.0203692 0.094546 -0.032294 +-0.070351 0.158156 -0.0469171 +-0.023866 0.103031 -0.0237009 +0.0528846 0.0533107 -0.0017243 +-0.0319516 0.077812 -0.0315646 +0.00951738 0.0660057 0.0546772 +0.0137336 0.122464 0.0333928 +-0.0199595 0.125484 -0.000738697 +0.00049871 0.116947 0.0399069 +-0.0359892 0.0344491 0.0345711 +-0.0443682 0.129764 0.015339 +0.0452819 0.0932028 0.00617084 +-0.00813465 0.0391286 -0.0130168 +0.0394097 0.0618135 -0.00677045 +-0.0701845 0.158483 -0.00465374 +0.0322675 0.102123 0.0362847 +-0.0374987 0.0819015 0.0436538 +0.0396969 0.0616754 0.0309066 +-0.0455673 0.0475992 -0.010259 +-0.0527627 0.115451 0.034109 +0.0208176 0.0631975 0.0476002 +-0.0618301 0.0924936 -0.0189652 +-0.053883 0.150856 0.0253998 +0.0245243 0.105615 0.0392344 +0.00385761 0.129628 0.0254511 +-0.00549072 0.0488848 0.0502608 +-0.0300389 0.036799 0.0524219 +-0.0580426 0.153536 0.0303048 +0.0220166 0.125337 0.0220596 +0.0312265 0.0393227 0.0260732 +-0.0171047 0.17569 -0.0178772 +0.016571 0.0940211 0.0486896 +-0.0505514 0.0338848 0.0267025 +-0.0625417 0.0410514 0.0154849 +0.0355348 0.112677 0.0214127 +0.00150774 0.0897546 0.056027 +-0.0190957 0.0968508 -0.0266962 +0.0511508 0.0608575 0.0299274 +0.0163905 0.0491901 -0.024833 +0.0345652 0.114846 0.0110543 +0.0581139 0.0523629 0.0131822 +-0.0417396 0.0754091 -0.018561 +-0.0814751 0.118981 0.0489466 +0.00013405 0.105909 -0.0216496 +-0.0908345 0.139239 0.02018 +-0.0424766 0.101515 0.0416909 +-0.0260624 0.0837492 0.0512652 +-0.0500875 0.0531258 0.0337221 +-0.0706477 0.0874116 0.0418374 +-0.0366978 0.0363155 -0.0300943 +0.00451245 0.064772 0.0563635 +-0.0753069 0.109577 0.0422017 +-0.0284025 0.119846 0.0286714 +0.033406 0.0822268 0.04133 +0.0595932 0.0608555 0.0201843 +-0.00204808 0.0983649 0.051847 +-0.0574847 0.0623327 0.0283417 +-0.0229389 0.126187 0.00412352 +0.0390327 0.0744186 -0.0107818 +-0.0855097 0.129367 -0.00169404 +-0.0647036 0.0653044 0.0298737 +-0.0064934 0.10867 0.043581 +-0.0685164 0.0669975 0.0293604 +-0.0705096 0.1624 -0.046948 +0.0125251 0.129483 0.0214195 +-0.0221845 0.172691 -0.0208918 +0.0153262 0.0767707 0.0538598 +-0.0905235 0.137837 0.0161933 +-0.0545439 0.0402656 -0.0102441 +-0.0688509 0.171089 -0.0344529 +-0.0884641 0.0887716 0.00547605 +-0.0903526 0.116014 0.0283099 +-0.0623807 0.147545 -0.00857398 +-0.061927 0.109672 -0.0156348 +-0.0579856 0.116646 -0.0132522 +0.0395731 0.0448559 0.0300931 +0.00658391 0.130753 0.00354793 +-0.0647804 0.153444 -0.00410741 +0.00522677 0.078235 -0.0342467 +-0.0495662 0.0335706 -0.0032948 +0.00181081 0.131692 0.0146438 +-0.0635975 0.15411 -0.00948093 +-0.0855227 0.133522 0.000289437 +-0.025262 0.107417 -0.0217613 +-0.0340021 0.0409714 0.0491624 +-0.0146057 0.0406867 -0.0271172 +-0.0174894 0.0687336 0.053904 +-0.01522 0.183001 -0.0269465 +-0.0500642 0.142991 0.00242772 +-0.0679313 0.0622594 0.0032802 +-0.0551811 0.133216 -0.00483226 +-0.0284216 0.0792864 0.045297 +0.00824429 0.0809884 -0.0331618 +0.00929618 0.123787 -0.00937811 +0.0228212 0.0889774 -0.0242065 +-0.0185099 0.0883573 0.0560195 +0.0282298 0.0717826 -0.0228933 +-0.0251238 0.125152 0.00185767 +0.019545 0.103378 0.0442321 +-0.0673703 0.122848 0.0518073 +0.0357587 0.067099 -0.014806 +0.00197653 0.0987575 -0.0246237 +-0.0655762 0.155146 -0.00586759 +0.012488 0.119576 0.0355898 +-0.0514967 0.101534 0.0419051 +-0.0095351 0.0444416 0.0488648 +-0.00470695 0.0982478 -0.0280611 +-0.05601 0.0575293 -0.00241387 +-0.0602761 0.139548 0.0339321 +-0.0517453 0.0753545 -0.0181561 +-0.038969 0.042042 0.0415955 +-0.0636896 0.064322 -0.00564195 +-0.0398457 0.0985451 -0.0219087 +-0.0191826 0.127252 0.0185952 +-0.0873123 0.0886781 0.00248146 +-0.0488082 0.0884112 -0.0217819 +-0.0498768 0.104205 -0.0203216 +-0.0409029 0.149467 0.00342301 +-0.069185 0.156032 0.0248455 +-0.0506717 0.0501974 0.0196351 +-0.0301161 0.0396403 0.0523893 +-0.000520242 0.104454 0.0440018 +-0.0290025 0.0578755 -0.022406 +-0.0610145 0.0336026 0.00878975 +-0.0917872 0.143341 0.0171661 +-0.0279974 0.0383174 -0.0050935 +-0.0913132 0.113305 0.0163255 +0.0313508 0.109263 -0.00976359 +-0.00332487 0.0387243 0.0268007 +0.0222104 0.125239 0.00503339 +-0.04503 0.129294 0.00327025 +-0.0176724 0.0933571 0.0538975 +-0.0234883 0.0487024 0.0493089 +0.0421092 0.0724515 0.0291612 +-0.0653912 0.159256 -0.0130566 +-0.00402317 0.0387663 0.0011878 +-0.0338313 0.0929547 -0.0239607 +0.00379004 0.0367184 0.046186 +-0.0186801 0.0525094 -0.0314832 +-0.0351354 0.165203 -0.0147634 +-0.0705038 0.108294 0.0372772 +0.0246817 0.0360382 0.0240669 +-0.0204805 0.0828473 0.0567838 +0.0326609 0.0673309 0.0401471 +-0.0296335 0.0635627 -0.0254272 +-0.0548571 0.0546624 -0.0043828 +0.00968485 0.0342244 -0.0162577 +-0.0810826 0.144759 0.0420272 +0.00767659 0.0346834 0.0054103 +-0.0830301 0.110196 0.00131843 +-0.00544058 0.119032 -0.0141551 +-0.0255852 0.0930492 -0.0306058 +-0.0714911 0.116102 0.0521112 +0.0318609 0.0710037 -0.0187224 +0.0280264 0.121739 0.0100361 +-0.0514799 0.0384723 -0.0115832 +-0.0764395 0.0988661 -0.011539 +-0.0186212 0.04503 -0.027692 +0.0334766 0.0519565 -0.00767966 +-0.0541438 0.151337 0.0259237 +-0.00148294 0.0606073 0.0558577 +0.0148272 0.0344434 -0.00977208 +-0.0391932 0.171233 -0.0109027 +-0.035755 0.0783248 -0.0195335 +0.0355134 0.0795005 0.0390801 +0.0603494 0.0609121 0.0171857 +0.0394635 0.075864 -0.00982057 +-0.0470363 0.0359078 0.0451061 +-0.0608634 0.154346 0.0292597 +-0.0748097 0.109257 0.0407877 +-0.0262745 0.0692227 0.0420449 +0.0243768 0.0533073 -0.022554 +-0.0530668 0.0348658 0.0444554 +0.0259946 0.0347155 0.014606 +-0.0591124 0.121234 0.0408265 +-0.0144894 0.112737 0.0404341 +-0.0838486 0.0803675 0.00250235 +-0.0582446 0.13534 0.0351018 +-0.0214986 0.100246 0.0444424 +-0.0713881 0.068562 0.0291565 +-0.0155474 0.160527 -0.0107791 +0.0215063 0.107058 0.0398344 +-0.0331542 0.158077 0.00281987 +-0.0863235 0.110381 0.0203696 +-0.0312005 0.162424 -0.00314295 +0.0384543 0.0395883 0.0218564 +0.0385307 0.0554981 0.0313684 +-0.0114896 0.0560578 0.0523304 +0.0593092 0.0622231 0.0211664 +-0.0648434 0.0339553 0.0130374 +0.0180082 0.0355585 0.00482766 +0.0399371 0.077993 0.0331058 +0.00160174 0.0351275 0.0454175 +-0.032718 0.0396362 0.0507617 +-0.0524899 0.0973506 0.0433264 +-0.032502 0.104286 0.0408563 +-0.00468764 0.0584239 -0.0337898 +-0.0672529 0.0760725 0.0393761 +0.0584714 0.0552095 0.0201836 +-0.0416396 0.0548863 -0.0113812 +0.014767 0.129313 0.0151085 +0.0271615 0.0578042 0.0426556 +-0.0133509 0.0384568 0.00507202 +-0.0770775 0.0703016 0.00351307 +-0.0514866 0.0748352 0.0426181 +-0.0882111 0.0936365 0.0238814 +-0.0906238 0.143032 0.0276653 +0.0233319 0.059176 0.0459237 +-0.036826 0.0446589 -0.0260242 +0.0332346 0.0955533 0.0394336 +-0.000484271 0.038989 -0.00201961 +0.0427221 0.101476 0.00816485 +0.0419002 0.102864 0.0131587 +-0.0208004 0.181643 -0.0143459 +0.0352424 0.0726953 -0.0147969 +-0.0234839 0.0509996 0.0435588 +0.0352381 0.0443124 0.029693 +0.000403091 0.0348316 -0.0232847 +-0.0684959 0.10279 0.039811 +0.019265 0.0708008 -0.0287723 +-0.0516068 0.0345225 0.0433683 +0.0391514 0.0617239 0.0318804 +0.0135008 0.111258 0.0394003 +0.0304359 0.108504 -0.0109544 +-0.038743 0.0768256 -0.018638 +-0.0223183 0.094515 0.0486399 +-0.0435018 0.0478421 0.040059 +-0.0727332 0.173623 -0.0510446 +-0.00349112 0.118315 0.0390164 +-0.0884421 0.133772 0.0426038 +-0.0454967 0.109818 0.0383281 +-0.0145 0.0392233 0.0384538 +-0.00466385 0.129429 0.0252614 +-0.00582274 0.088227 -0.0364178 +-0.0454902 0.0352033 -0.0224188 +-0.0348607 0.100046 -0.0224582 +-0.0792519 0.17071 -0.0410714 +-0.0376133 0.0393512 -0.0290006 +-0.0640598 0.170094 -0.0457055 +0.0303225 0.119467 0.0166127 +-0.0902791 0.116199 0.0435835 +0.0222032 0.0352055 0.0243097 +-0.073336 0.0968702 0.0400088 +-0.0376144 0.0393494 0.044329 +-0.0105011 0.0870252 0.0569814 +-0.0507332 0.161533 -0.00440491 +-0.0779412 0.162504 -0.0229403 +-0.0754919 0.128859 0.0530266 +-0.0541372 0.0344723 0.0359505 +0.0113242 0.0581457 -0.0297724 +-0.0442953 0.0391467 0.0441537 +0.0242713 0.035754 0.000294462 +-0.0615051 0.159991 -0.0325895 +-0.00166807 0.0568963 -0.03242 +-0.0119937 0.164096 -0.013967 +0.0166698 0.0900802 0.0505874 +0.0232051 0.0672264 0.0457926 +-0.0547028 0.0693497 -0.0142348 +-0.0645039 0.15312 0.03389 +-0.0344884 0.0918084 0.0445658 +0.0553932 0.0493283 0.0071983 +-0.047221 0.115086 -0.0157836 +-0.0737507 0.0835282 -0.0152437 +-0.00700363 0.0992954 0.0501023 +-0.0124605 0.0646213 0.0545516 +-0.0529942 0.0345374 0.0413527 +-0.0926054 0.122844 0.0302746 +-0.0652377 0.0419529 0.0337045 +0.0450967 0.0889619 0.00117113 +-0.0632063 0.0448721 0.0103941 +-0.0177692 0.074285 -0.0389303 +-0.0226723 0.0582322 -0.0321918 +-0.0233871 0.0380454 0.010662 +0.0144228 0.120472 -0.0118376 +-0.00758227 0.0362053 -0.0250795 +-0.0394882 0.0804267 0.0429074 +0.0505096 0.0651476 0.0284061 +0.0412879 0.0914659 -0.00877665 +-0.0613587 0.0343255 -0.00949544 +-0.0739143 0.148544 -0.0218644 +-0.0607701 0.0447346 0.0418038 +-0.0300938 0.0476999 -0.0248901 +-0.0666558 0.0720875 -0.0129051 +-0.0732714 0.156195 0.0132096 +-0.0340151 0.0498932 -0.013349 +-0.0484988 0.0762375 0.0432182 +-0.0614924 0.0384787 0.0187446 +-0.0572292 0.155416 0.0145778 +-0.0105966 0.0391805 -0.0262222 +0.00120442 0.117582 -0.0166604 +-0.070211 0.165211 -0.0489867 +0.0483875 0.0444574 0.00325794 +-0.0764978 0.13308 0.0521415 +-0.035201 0.0345651 0.0381519 +-0.00449959 0.107273 0.0439086 +-0.0266181 0.042276 -0.0292233 +-0.0364985 0.120712 0.0292752 +-0.0735593 0.15583 0.0102013 +-0.0554797 0.0848037 0.0450617 +-0.0845128 0.0817443 0.00347449 +-0.0169788 0.106067 -0.0223329 +-0.0699464 0.151677 0.0365135 +-0.0160243 0.0897174 -0.0373532 +-0.035698 0.0857595 -0.0237144 +-0.0308696 0.105755 -0.0215547 +-0.0475005 0.084795 0.044997 +0.00720445 0.088027 -0.0329216 +0.0388792 0.085648 -0.0137779 +-0.0451911 0.163637 -0.00858913 +-0.0752855 0.176467 -0.0519633 +-0.0568165 0.155074 0.0161832 +0.0369538 0.108295 0.0261877 +-0.0788782 0.172865 -0.0427748 +-0.0439777 0.0345259 0.038072 +0.0238242 0.0981836 0.0451545 +-0.0394936 0.0548399 0.0395943 +0.0242629 0.0790161 -0.0251629 +-0.0665084 0.0903473 0.0440273 +0.0291366 0.0495584 -0.0147305 +0.0191581 0.0357679 0.0376614 +-0.0278785 0.0535209 -0.0244081 +-0.00947834 0.12371 0.0334225 +-0.0570388 0.149629 0.0316784 +0.0117574 0.130329 0.0182774 +-0.00158005 0.131357 0.0134024 +-0.0657222 0.0431534 -0.00229362 +0.0404535 0.0689201 -0.00879299 +-0.0195496 0.161752 -0.0147401 +0.0435566 0.0695959 0.0259839 +-0.0893231 0.14203 0.0321578 +-0.0832597 0.10897 0.0263609 +0.00296745 0.0390391 -0.00510833 +0.0160439 0.0505074 0.0458237 +-0.0213985 0.181639 -0.0134576 +0.000249699 0.0347599 0.0129869 +-0.0138688 0.163706 -0.0171714 +-0.0787597 0.163865 -0.0299483 +-0.0321103 0.178539 -0.0110044 +-0.0062818 0.102371 0.0437669 +-0.0504236 0.113946 -0.0165184 +-0.0808373 0.0858965 0.0337281 +-0.0833697 0.0790868 0.0225099 +0.0174757 0.101745 0.0462033 +0.0562413 0.0521934 0.00418603 +-0.0386753 0.127489 0.0159666 +-0.0714887 0.0860678 0.0412957 +0.00930465 0.0639279 -0.0315779 +-0.038992 0.126654 0.0188148 +-0.0617292 0.0435742 0.0131822 +-0.0807044 0.109603 0.0338418 +0.01567 0.0343236 0.00175615 +-0.0151083 0.184586 -0.0219884 +-0.0792845 0.0704649 0.0170607 +-0.0611161 0.170955 -0.0586033 +-0.0656715 0.0684169 0.0339875 +-0.0346163 0.0505906 -0.0107587 +0.0292004 0.0566287 -0.0178044 +0.0402348 0.101386 0.0251818 +-0.0356488 0.118923 -0.0117804 +-0.00759062 0.117967 -0.0150103 +-0.0344873 0.0959942 0.0440904 +-0.0675456 0.035487 -0.00647 +-0.0177849 0.0784811 -0.0386843 +-0.0357813 0.0828042 -0.0224653 +-0.0217893 0.122494 0.0280004 +-0.040789 0.084093 -0.0212481 +-0.0448136 0.0629573 0.0395248 +-0.0851812 0.137956 0.0449006 +-0.0879612 0.103656 0.0103875 +-0.0558857 0.0998486 -0.020419 +0.017256 0.079507 0.0531399 +-0.0315382 0.178553 -0.0120253 +-0.06991 0.11224 -0.0100103 +-0.0512969 0.0556828 0.0150377 +0.0224682 0.0520683 0.0428376 +0.0143831 0.0448677 -0.0245168 +-0.0794364 0.144805 0.0432098 +-0.0638846 0.103946 -0.0172176 +-0.0284346 0.0849121 0.0465284 +0.0144928 0.11263 0.0387455 +-0.0860797 0.0882889 0.0261675 +-0.00931865 0.0862591 -0.0377315 +-0.0226749 0.0380487 0.0198364 +-0.0875543 0.0861148 0.0194651 +-0.0578317 0.0344516 0.0369209 +-0.0410907 0.157679 -0.0102957 +-0.0680436 0.0337635 0.00720288 +-0.0778811 0.104813 -0.00803583 +0.0518058 0.0553999 0.0290848 +-0.0504997 0.160817 0.00728082 +0.0241356 0.0632152 0.0453534 +-0.0268604 0.100151 -0.0237263 +0.0127955 0.0874066 0.0537621 +-0.0616261 0.155549 0.00719382 +-0.0593595 0.0336431 -0.00899455 +-0.065903 0.0643977 0.026882 +0.0278843 0.0536982 -0.0197695 +-0.0335041 0.0789099 0.0415331 +0.0414488 0.0873044 0.0301508 +-0.0627531 0.161513 -0.0475897 +0.0292606 0.0447502 0.0332372 +0.0105493 0.122164 -0.0116505 +-0.0908004 0.115922 0.00730178 +0.0306755 0.0581744 -0.0167704 +-0.0745653 0.158254 -0.0269305 +0.0417869 0.088692 -0.00877741 +-0.0765465 0.107865 0.0361429 +0.0291715 0.104768 0.0370747 +-0.0435198 0.0436724 -0.0163157 +-0.0639905 0.155091 0.00636862 +-0.0676976 0.156296 0.0180917 +0.0361371 0.0605355 0.0363255 +-0.0831336 0.135327 0.0485953 +-0.0205283 0.125395 0.0225414 +0.0218584 0.126105 0.0106 +-0.0573551 0.0335045 0.00783858 +-0.0766685 0.144473 -0.00485242 +0.0215827 0.0449804 0.0414892 +-0.0623027 0.152202 -0.0135791 +-0.0124889 0.118271 0.037774 +-0.058999 0.129653 -0.00698695 +0.0212269 0.035264 0.00760182 +-0.0558448 0.0533792 -0.00239414 +-0.042206 0.147853 0.000366775 +-0.0732213 0.156852 -0.0309091 +0.00482377 0.0349755 -0.00101746 +0.00553205 0.131427 0.00744951 +-0.0606157 0.0459479 0.0402046 +0.00228793 0.0626666 -0.0335374 +-0.00869718 0.172706 -0.0257786 +0.0265924 0.0466157 -0.0146569 +0.0293044 0.0481199 -0.00974071 +-0.0278981 0.0863323 0.047373 +0.029421 0.0461183 -0.00671048 +-0.058539 0.0588103 0.0191792 +-0.0577583 0.0479183 0.03595 +0.0299489 0.069977 0.0415097 +-0.0877683 0.149882 0.0273982 +-0.0403006 0.122206 -0.0112466 +-0.0731823 0.109139 0.039466 +0.00748061 0.115492 0.0392535 +-0.0323193 0.0339823 0.0197127 +-0.00249248 0.0911617 0.056251 +-0.0410706 0.0335739 0.0056728 +-0.0167629 0.120643 -0.00969861 +0.0170314 0.126681 0.0245104 +-0.0933703 0.118789 0.0242915 +-0.0167466 0.161131 -0.0135692 +-0.037714 0.0710075 -0.016855 +-0.0748306 0.094995 -0.0139518 +-0.0653015 0.169027 -0.0374543 +-0.0171592 0.0387994 -0.0126424 +-0.0649264 0.112407 -0.0127033 +0.0089357 0.131311 0.0143899 +-0.0695053 0.106913 0.0375568 +-0.0679519 0.129695 -0.00900682 +0.0196594 0.10025 -0.0221259 +0.0187375 0.0672729 0.0498973 +-0.0634922 0.0626336 0.0253957 +-0.0640428 0.0593154 0.0139941 +-0.0365043 0.0691064 0.0417512 +-0.0509946 0.0547172 0.0191515 +-0.0684996 0.106934 0.0379267 +-0.0391114 0.149509 -0.00165293 +0.00150153 0.0534013 0.0535077 +-0.0610153 0.131125 -0.0076807 +-0.015856 0.0980295 -0.0258983 +0.0549279 0.0723085 0.00788581 +0.0296197 0.117006 0.0277632 +0.00535242 0.130989 0.0202309 +-0.000691446 0.0612541 -0.0338404 +0.00150093 0.0441835 0.0459725 +-0.0611099 0.11531 0.0378549 +-0.0695161 0.108303 0.0373324 +-0.0543547 0.158623 0.00837339 +-0.0945603 0.124158 0.0182654 +-0.0535009 0.111177 0.0367213 +-0.0119534 0.0385403 0.00164014 +-0.0370531 0.166795 0.000693639 +0.0161005 0.115637 -0.0146217 +-0.0669681 0.132599 -0.00847972 +-0.0192376 0.0362049 0.0528295 +-0.0510947 0.138549 0.00140254 +0.0199501 0.126815 0.00703133 +-0.0280876 0.0511424 0.0415727 +0.0021184 0.108719 -0.0202691 +-0.0455158 0.0889126 0.0438293 +0.00898082 0.0376394 0.0339008 +-0.0913279 0.147458 0.016148 +-0.00573884 0.0712887 -0.036141 +0.0184912 0.0906471 0.0481735 +-0.0240484 0.159369 -0.0122932 +-0.00386335 0.103093 -0.0232514 +-0.0903131 0.126767 0.00528424 +-0.00141239 0.101018 0.0444401 +-0.0265472 0.0384572 -0.00862977 +-0.0461338 0.160629 -0.00828859 +0.0434078 0.0958974 0.0221477 +-0.0323682 0.0778417 -0.0305703 +-0.0104869 0.166942 -0.0170857 +0.0335642 0.11614 0.00925074 +-0.0679156 0.112303 -0.0110315 +0.0448529 0.0917799 0.0171662 +-0.0902457 0.140661 0.0271695 +0.0361358 0.102075 -0.0100705 +-0.0774559 0.158948 -0.0154272 +-0.0718839 0.142969 -0.00986002 +0.0254315 0.0862638 0.0474376 +0.0233509 0.0549381 -0.0249484 +0.0445042 0.0650854 0.0275412 +0.0472882 0.0731371 0.0168777 +0.0310703 0.0352449 0.00774073 +-0.0540072 0.144242 -0.000990452 +-0.0901845 0.132425 0.0322244 +-0.0305014 0.066031 0.0387492 +-0.0636396 0.163113 -0.0245909 +0.0265757 0.0754454 0.0454823 +0.0560761 0.0692634 0.0230866 +0.0323242 0.117657 0.0116569 +-0.0744896 0.128852 0.0526631 +-0.092535 0.126933 0.0292581 +-0.021881 0.107267 -0.0220871 +0.0216673 0.125834 0.0205048 +-0.0892808 0.140568 0.013241 +-0.0188177 0.0683045 0.0530002 +0.0181426 0.117476 -0.0126083 +-0.0562843 0.049932 0.00898241 +0.0271917 0.0858851 -0.0222975 +-0.0354636 0.172718 -0.000342918 +-0.0113055 0.0991708 0.0485876 +-0.0512476 0.149342 0.0143776 +0.0112062 0.129253 0.000760937 +-0.027273 0.123571 -0.00271305 +-0.0942867 0.122796 0.0162787 +-0.0731111 0.152638 -0.0358925 +-0.0630631 0.0351206 0.0420909 +-0.0638567 0.0981567 -0.0173229 +-0.0886136 0.0969805 0.0223931 +0.0376971 0.0381803 0.0174952 +-0.0389196 0.163835 0.00150184 +0.0470726 0.048551 -0.0036464 +-0.0195067 0.119545 0.0340058 +-0.0154952 0.101637 0.0439764 +-0.0615198 0.167807 -0.0565879 +0.000487515 0.110024 0.0426254 +0.0218587 0.0714183 0.0491823 +-0.0891206 0.0888853 0.014456 +0.00728906 0.0602827 0.0543511 +0.0159015 0.122788 0.0313235 +0.0287151 0.0982016 0.0416756 +-0.0515592 0.162515 0.00512403 +-0.0562626 0.0437454 0.0167126 +-0.0181312 0.0948304 -0.0325641 +-0.0375002 0.0337858 -0.019518 +-0.0283411 0.0368095 0.0535577 +0.0138368 0.126165 0.029064 +-0.0698832 0.115052 -0.00855978 +-0.0166197 0.126668 0.0238945 +-0.062914 0.11807 -0.00990368 +-0.0489018 0.129654 0.0292632 +-0.0524468 0.0489914 0.023647 +-0.0590382 0.132561 -0.00680716 +-0.0429798 0.150656 0.00610371 +-0.0708619 0.0368523 0.00979504 +0.0198172 0.102563 -0.0205962 +0.0416527 0.0846461 0.030449 +-0.0215106 0.119492 0.0328652 +-0.0144877 0.185446 -0.0257702 +0.0475192 0.0568404 0.0316921 +-0.0913388 0.115949 0.00831473 +0.0281313 0.0591962 0.0423168 +-0.035495 0.171374 -0.0137494 +-0.0736292 0.156748 -0.0014693 +-0.00249426 0.0505094 0.0526827 +-0.0909607 0.144377 0.0265412 +-0.0410851 0.123071 0.0255089 +-0.0226414 0.0961417 -0.0259441 +0.0264078 0.120534 -0.000510633 +-0.0193661 0.126578 0.00214409 +0.0465619 0.0568462 0.0320779 +0.0207007 0.040829 0.0419301 +-0.0564899 0.0440403 0.0448345 +0.000863008 0.0381264 -0.0140589 +-0.0418598 0.102811 -0.0210501 +-0.00158954 0.0376715 -0.025054 +-0.0723294 0.177884 -0.0550149 +-0.0544961 0.0732542 0.0409056 +-0.00649673 0.121064 0.0364033 +0.0504194 0.0446982 0.00822878 +-0.0153541 0.0337728 -0.0226273 +-0.0303696 0.0486908 0.0439216 +-0.0334968 0.033775 0.00883944 +-0.0685163 0.108328 0.0375372 +-0.0304988 0.0603029 0.0376116 +-0.0662971 0.0363734 0.0376513 +0.0311541 0.072342 -0.0197804 +0.016819 0.0860765 0.050782 +-0.067492 0.0944588 0.0423306 +-0.0187655 0.0714126 -0.0384549 +-0.0605051 0.128314 0.040613 +0.00838174 0.0449018 -0.0251393 +-0.0164768 0.122235 0.0319313 +0.0227625 0.125142 0.00666699 +-0.0528343 0.0337802 -0.0114802 +0.0451301 0.0903696 0.00218472 +-0.0576106 0.148673 -0.00161022 +0.00250457 0.100333 0.0462614 +-0.0262513 0.0350951 0.0517484 +-0.054684 0.067848 -0.0128124 +-0.0441291 0.159145 -0.00944971 +-0.0440467 0.0380432 -0.0230799 +-0.0447681 0.146394 0.00358641 +-0.0894274 0.0915536 0.0114438 +-0.0751139 0.0954949 0.0389973 +0.0383178 0.106879 0.000185785 +-0.0732998 0.0654414 0.00491231 +-0.00228741 0.13015 0.0232201 +-0.0372213 0.150899 -0.00386632 +-0.0261116 0.0809919 0.0513952 +0.0322341 0.112712 0.0291688 +-0.0690565 0.0338884 -0.00389811 +0.0101437 0.101615 -0.0217271 +0.0425651 0.10009 0.017161 +-0.0355201 0.16973 -0.000114667 +0.00176571 0.0954911 -0.0311224 +0.0373922 0.0461028 -0.00552229 +-0.0261166 0.163762 -0.0159025 +-0.0651006 0.0458549 0.00368955 +0.0212923 0.0982999 -0.0220426 +0.026467 0.0383015 -0.00253304 +-0.0231343 0.0383693 -0.0171708 +0.00758009 0.121578 -0.0129987 +-0.0491724 0.116402 -0.0151155 +-0.0174383 0.038419 -0.00120725 +-0.0368548 0.0985914 -0.0223265 +-0.0599288 0.145383 0.0362513 +0.00646924 0.0964123 0.0516046 +-0.0630484 0.138442 -0.00719818 +-0.0266978 0.0917701 0.0460149 +-0.0534968 0.0790911 0.0438637 +-0.0203653 0.0682964 0.0517114 +0.0203853 0.049027 -0.0227929 +-0.0539349 0.0527611 0.0108042 +0.0460422 0.0848268 0.0101717 +-0.0728228 0.148718 -0.0323717 +0.0337238 0.11401 0.0250189 +-0.0718098 0.0864713 -0.016231 +-0.000525817 0.0352062 0.0124275 +0.0044963 0.0605551 0.0556784 +0.0278498 0.045613 -0.00720046 +0.0242032 0.0987613 -0.0205495 +0.0133536 0.0359529 -0.0210721 +-0.00614443 0.0386147 0.00639011 +-0.091603 0.144731 0.0191577 +-0.00870302 0.0387758 0.0292604 +0.00137957 0.0343513 0.00995357 +0.0580311 0.0716366 0.0149943 +0.029585 0.0495591 -0.0127459 +-0.0873232 0.0873446 0.00247822 +-0.0562907 0.154938 0.0178178 +0.0227189 0.116065 -0.0110894 +-0.089541 0.143417 0.0301691 +-0.0295204 0.0607307 -0.0234192 +-0.072166 0.0982206 0.0402281 +0.0461397 0.0764263 0.0052018 +-0.0650238 0.0405393 0.0286621 +-0.0357662 0.0798799 -0.0213145 +-0.0210545 0.100222 -0.024166 +-0.051798 0.0884029 -0.0218862 +-0.0585235 0.0425717 0.0226979 +-0.0581184 0.132538 0.0370402 +-0.0500652 0.125773 -0.00688378 +-0.0570027 0.145725 -0.00171879 +-0.000114754 0.120081 -0.0133088 +-0.0558569 0.135328 0.0332838 +-0.071744 0.162192 -0.0110365 +-0.0533559 0.0609747 0.0280244 +-0.0678966 0.110866 -0.0116376 +-0.0708871 0.119431 -0.00850422 +-0.0743754 0.0995209 0.0381506 +-0.0827936 0.110133 0.0365 +0.0274001 0.0354299 0.0197116 +-0.0700593 0.152584 0.0349486 +-0.0594807 0.0398598 0.0207095 +-0.0506478 0.0648447 -0.0114426 +-0.0548507 0.0955893 -0.0216695 +-0.0735032 0.144216 0.0449341 +-0.0746874 0.169403 -0.0279937 +-0.041349 0.172669 -0.00697494 +-0.0879813 0.0968653 0.0054141 +-0.0639066 0.158701 -0.0499459 +-0.0295413 0.0348538 0.0461198 +0.0425062 0.0610428 0.0297234 +-0.0761006 0.0693618 0.0222283 +0.0350916 0.102085 0.0333486 +-0.0434936 0.107078 0.040105 +-0.0210995 0.166843 -0.0113898 +-0.0599936 0.0459773 0.0409964 +0.0260763 0.0726986 0.044735 +0.0368852 0.111459 0.00613554 +-0.00301536 0.127034 0.030217 +-0.0313536 0.0384061 -0.00216621 +0.0173795 0.0350198 0.030737 +-0.072846 0.165216 -0.0419869 +-0.0344415 0.176449 -0.00471515 +0.00170995 0.0392427 0.0309786 +-0.04085 0.0985381 -0.021696 +-0.0479764 0.135553 0.00940627 +-0.0332667 0.0835875 -0.0265323 +0.0206498 0.0781917 0.0510092 +0.0122103 0.0893249 -0.030653 +-0.0464803 0.0335784 -0.0137021 +-0.0367962 0.0383714 -0.00507539 +-0.00449141 0.0911839 0.0565229 +0.0243337 0.0605883 -0.0247185 +-0.0826166 0.123078 0.0498508 +0.0540378 0.0525213 0.0252382 +-0.0675101 0.0369158 -0.0062949 +-0.0205096 0.124449 -0.00369667 +0.0285796 0.107031 -0.0133812 +0.0320794 0.0526694 -0.0107538 +-0.0203373 0.0610131 0.0476733 +-0.0674469 0.0396367 -0.00494886 +-0.0599339 0.120955 -0.00911512 +0.0168017 0.105866 -0.0181237 +-0.0787857 0.0744548 -0.00455566 +0.0193044 0.127372 0.00964815 +-0.038368 0.0457007 -0.0229731 +-0.025877 0.125557 0.00449924 +-0.0609237 0.0414243 0.0237035 +-0.0433646 0.153626 0.00736711 +-0.0513808 0.0500433 0.0347314 +-0.0212772 0.0382158 0.00549847 +0.0220013 0.0348195 0.00816409 +-0.0519377 0.0335199 0.00532131 +0.00789859 0.0999878 -0.0218807 +0.0337096 0.115696 0.0178949 +-0.0404258 0.0418709 -0.0242648 +-0.0188763 0.105884 -0.0226282 +-0.0648153 0.175482 -0.051724 +-0.070065 0.148313 -0.0344143 +-0.0584005 0.0439707 0.0246877 +0.0215152 0.0795452 0.0505127 +-0.000765864 0.0811873 -0.0364626 +-0.0633527 0.0454486 0.000289555 +-0.0455004 0.113892 0.0345333 +-0.0205229 0.0336428 -0.0235211 +-0.0658189 0.0895406 -0.0182783 +0.00772286 0.0346363 0.0381279 +0.044441 0.093115 0.00120191 +-0.0859796 0.119771 -0.00178632 +0.00662772 0.0374926 -0.0123303 +-0.0495602 0.0418248 -0.0110192 +-0.0863354 0.129395 -0.000699295 +-0.00570279 0.0613633 -0.0351663 +-0.0195101 0.114089 0.03835 +-0.0679008 0.1038 -0.0147014 +0.045275 0.0917907 0.0041773 +0.0258455 0.110181 -0.0127425 +-0.00858661 0.0376839 -0.0256139 +-0.0494924 0.160775 0.00747898 +-0.0186783 0.101771 -0.0238107 +-0.0870678 0.11107 0.0203515 +-0.0692028 0.135485 0.0474165 +-0.0665472 0.0446244 0.00170489 +-0.0679768 0.0791427 0.0408622 +0.0184726 0.0851741 0.0505075 +-0.0203373 0.158355 -0.00674555 +-0.0364979 0.119358 0.0304421 +-0.0395021 0.0450562 0.0411081 +-0.00309828 0.0379762 0.00940157 +-0.054497 0.10568 0.0405938 +-0.0354869 0.0903478 0.043788 +-0.0882673 0.102346 0.019362 +-0.0518479 0.128319 0.033784 +0.0163666 0.0522247 -0.0268816 +-0.0216233 0.0450569 -0.0280185 +-0.0332919 0.124337 -0.00345787 +-0.0603705 0.118249 -0.0108601 +-0.0883316 0.128385 0.0454834 +-0.0681462 0.033688 -0.00353141 +0.0232453 0.12098 -0.00440593 +-0.0294449 0.038677 -0.0149866 +0.0110249 0.0988999 -0.0227192 +-0.0218748 0.174208 -0.0142339 +0.0205417 0.0741225 0.0508294 +-0.0627477 0.148893 -0.0169766 +-0.0398023 0.0338119 -0.0274661 +-0.0319551 0.0348046 0.0438977 +0.0104998 0.108437 0.040345 +-0.0139772 0.164028 -0.0115888 +-0.0247602 0.0379556 0.0194943 +-0.000934383 0.0340393 -0.0200439 +0.0476809 0.0472678 -0.00164326 +-0.0400291 0.0354632 0.00960076 +-0.0671756 0.0610764 0.00625684 +-0.0852257 0.114326 0.001271 +-0.0754019 0.151364 -0.0118956 +-0.0437605 0.146927 0.00133694 +-0.0619528 0.15527 -0.030594 +0.0363929 0.0490985 -0.00642376 +-0.0100186 0.0981603 -0.0280043 +-0.0119452 0.129197 0.00527137 +-0.0346207 0.0519685 -0.0102527 +0.0527588 0.0510331 0.0250995 +-0.0635082 0.148832 -0.022668 +-0.0147336 0.0671673 -0.0377424 +-0.0704174 0.170744 -0.0307374 +0.0105902 0.125785 0.0307704 +-0.0258145 0.0894344 -0.0348302 +-0.0177853 0.0383982 0.00785589 +-0.0875073 0.0954698 0.00341799 +-0.0424838 0.105689 0.0405023 +0.049326 0.0581361 0.0307698 +-0.0426568 0.0578158 -0.011891 +-0.0506189 0.0517055 -0.00806622 +-0.0751298 0.155996 0.0213056 +-0.0740765 0.0662649 0.0182774 +-0.055953 0.151039 0.0297159 +0.00149895 0.0519342 0.0529111 +-0.0476623 0.135572 0.0124001 +0.00259703 0.093007 -0.0325523 +-0.021995 0.185609 -0.0143485 +0.0421516 0.0805501 0.0292856 +-0.014868 0.104453 -0.022832 +-0.0398868 0.108509 -0.0195593 +0.0259209 0.122835 0.0206655 +-0.0616544 0.15599 0.0144357 +-0.0733101 0.14716 -0.0188577 +-0.0262613 0.119664 -0.0106051 +0.0355444 0.109985 0.0269213 +0.04069 0.0703475 -0.0087868 +-0.0658232 0.100991 -0.0166158 +0.0443888 0.0846966 -0.000809941 +-0.0235014 0.109891 0.0398372 +0.0275195 0.0713136 0.0432798 +0.0364601 0.111481 0.0203251 +-0.0766191 0.168746 -0.0293719 +0.041872 0.069712 0.028792 +-0.0188551 0.177186 -0.0168879 +-0.0430291 0.148351 -0.00306372 +0.0241638 0.0853333 -0.0244737 +0.017675 0.127712 0.00477874 +-0.0888835 0.0983415 0.0204012 +-0.0202474 0.0582316 0.0476806 +-0.0719293 0.126758 -0.00881076 +-0.0294958 0.0960659 0.0449891 +-0.0491744 0.14016 0.00939463 +-0.0284952 0.105677 0.0407009 +0.0215711 0.035903 0.0289947 +0.0112282 0.0780681 -0.031821 +0.0343153 0.115038 0.0152609 +0.0213375 0.0536353 -0.0261911 +-0.0754641 0.149954 -0.0208706 +0.0174704 0.1044 0.0442882 +0.00640724 0.0390095 -0.0238414 +-0.0396234 0.150027 -0.00409811 +-0.0900489 0.137821 0.0141988 +0.0252808 0.0733562 -0.0251315 +-0.0492373 0.132883 0.0267635 +-0.0430533 0.034543 -0.0263375 +0.0217093 0.0520814 0.0434982 +-0.0333828 0.0807789 -0.0265175 +-0.0761052 0.14997 -0.0158781 +-0.0707786 0.0690222 0.0306409 +0.0401031 0.0589615 -0.00453029 +-0.0260252 0.0904818 0.0482145 +-0.0895062 0.0902087 0.0114561 +-0.0526923 0.0334338 -0.00380212 +-0.0114811 0.0646532 0.0550744 +-0.0370678 0.157759 -0.0113588 +0.00952731 0.105746 0.0431674 +-0.0410118 0.126885 0.0180931 +0.0197485 0.105413 -0.017636 +-0.0629292 0.155832 0.0110869 +-0.0581695 0.15592 0.011334 +-0.00650086 0.0561902 0.0537938 +-0.0338729 0.15688 -0.0110666 +0.0405297 0.0779725 0.0322363 +-0.0642469 0.0423257 0.0129047 +0.0237846 0.0476926 0.0394013 +-0.0217726 0.172729 -0.0141007 +-0.0416287 0.0534443 -0.0111279 +-0.077087 0.154176 -0.0108977 +0.0304203 0.0366341 0.0210583 +-0.0306156 0.0552316 -0.0163811 +-0.0584355 0.0482117 0.00674018 +-0.0284904 0.0917855 0.0443788 +-0.0347085 0.0681808 -0.0168555 +0.0286267 0.117101 -0.00417221 +0.000831008 0.0996342 -0.0235195 +0.00330328 0.0611715 -0.0325304 +-0.0739165 0.113504 -0.00683708 +-0.0898235 0.126994 0.0441831 +-0.0889746 0.0942393 0.0114303 +-0.0279086 0.0704216 -0.0334901 +-0.041504 0.0562873 0.0399374 +0.0394095 0.0793879 0.0341721 +-0.0669825 0.112069 0.0420748 +-0.0847653 0.103459 0.000382003 +-0.00649785 0.0801379 0.0576218 +-0.0226054 0.126675 0.00715587 +-0.000755212 0.130746 0.00366553 +-0.0328403 0.0348519 -0.0195836 +0.0396279 0.0857065 -0.0127726 +-0.0805255 0.14991 0.0359696 +0.0353489 0.0955322 0.0372114 +0.0102384 0.0781052 -0.0323493 +-0.0296143 0.0551126 -0.0213868 +-0.0699315 0.126779 -0.00900092 +-0.0795103 0.126002 0.0528073 +-0.000474921 0.0732072 0.0579427 +0.00749418 0.095088 0.0520151 +-0.0841797 0.101927 0.0280813 +0.0424909 0.101472 0.00517268 +0.00951997 0.0673959 0.0546877 +-0.0472854 0.0671503 0.0390298 +0.0376148 0.100847 -0.00874384 +-0.0374929 0.116616 0.0320198 +0.029259 0.120361 0.0176317 +-0.0737149 0.158251 -0.0299203 +-0.0114976 0.116917 0.038689 +0.0413371 0.0444728 -0.00290745 +-0.0627029 0.150609 -0.0235776 +-0.0302691 0.080511 -0.0335682 +0.0300872 0.0497043 -0.0117138 +0.0222773 0.0620859 -0.0257917 +-0.0570144 0.147201 -0.00173114 +-0.0760781 0.173825 -0.0400503 +-0.00149572 0.101631 0.0441885 +-0.0261888 0.17564 -0.0188354 +0.0231825 0.0577956 0.0456852 +-0.0924811 0.125593 0.0372603 +0.00115082 0.131147 0.0187057 +-0.0841614 0.142011 0.042356 +0.042729 0.0901813 -0.0058099 +0.0213045 0.0372836 -0.00268556 +-0.0160362 0.0338015 -0.0209075 +0.0394869 0.10531 0.000602508 +-0.0239168 0.0383626 0.00119722 +-0.0164538 0.0343139 -0.019589 +-0.0592802 0.154415 0.0283608 +-0.0609269 0.155849 0.0219449 +-0.0250081 0.0361291 -0.0192131 +-0.0853634 0.14876 0.00617316 +-0.0253618 0.0386908 -0.0141849 +-0.0881693 0.0922771 0.0238938 +-0.0728038 0.0921924 -0.0153063 +-0.0708783 0.150832 0.0377201 +0.00548074 0.111376 0.0414038 +-0.0524967 0.0945727 0.0438723 +0.0115063 0.0343546 -0.0179688 +0.00151312 0.081484 0.0572224 +-0.0149936 0.0395459 0.0398583 +0.0120392 0.129427 0.0226627 +0.0591195 0.05666 0.00817454 +0.0328155 0.102974 -0.0130264 +-0.0371359 0.123595 0.025439 +0.0450698 0.0805625 0.0231647 +-0.028064 0.0385407 0.0362565 +-0.00648913 0.0732625 0.0583326 +-0.0374981 0.0719295 0.0420686 +-0.0736872 0.176894 -0.0449171 +-0.0672224 0.0339784 0.0107486 +-0.0758756 0.104904 -0.00955908 +0.0439403 0.083251 -0.00181959 +-0.0614723 0.15843 -0.0295877 +0.0442849 0.0945485 0.0181566 +-0.065503 0.044849 0.00843715 +0.00357616 0.0395385 0.0347033 +-0.028754 0.0634689 -0.0284339 +0.0315757 0.0914687 -0.0188156 +0.00716348 0.0343484 0.0202029 +-0.0216788 0.0493937 -0.0287126 +-0.0716516 0.139715 0.0474384 +-0.043721 0.033715 -0.00407894 +-0.0817894 0.0909919 -0.00761357 +0.0425053 0.0513815 0.0326154 +-0.0638693 0.170945 -0.0476012 +0.0316414 0.11271 0.0301021 +-0.0306212 0.159741 -0.0134031 +-0.0214041 0.0879871 0.0549671 +-0.0670934 0.0625692 0.00143601 +-0.0365003 0.087456 0.0430956 +0.00150165 0.0919153 -0.0334107 +-0.024293 0.124271 0.0211991 +-0.0604952 0.0932426 0.0451145 +0.00516194 0.0978455 -0.0256065 +-0.00249882 0.081515 0.0574957 +-0.0636907 0.146369 -0.0159165 +-0.0129939 0.103563 -0.0236849 +0.00282967 0.131401 0.0178813 +0.00250691 0.0883899 0.0564027 +0.0220994 0.0476682 0.0404859 +-0.0466625 0.12523 -0.00836412 +0.00382851 0.0992997 -0.0231609 +-0.0879384 0.126705 0.000268669 +-0.0725213 0.0636798 0.0102197 +-0.00645782 0.0338359 -0.0228235 +-0.0523786 0.138216 -8.53499e-05 +-0.041943 0.114992 -0.0156494 +0.0435142 0.0513638 0.0325031 +0.0432433 0.0958712 0.000187851 +-0.0729725 0.170894 -0.0302341 +-0.0303619 0.0381166 0.0307902 +-0.0942177 0.125518 0.0172578 +0.0446543 0.0959754 0.00716634 +-0.0263933 0.0864552 0.0500994 +0.0352313 0.064664 0.0385641 +-0.0913521 0.14609 0.0171489 +-0.00798473 0.0348553 0.0472244 +-0.00181216 0.086792 -0.0360393 +-0.0153678 0.09644 0.0517723 +0.0268857 0.117842 -0.00498093 +-0.0354986 0.0747267 0.0419454 +-0.0573263 0.0481094 0.0336642 +-0.0386241 0.125328 -0.00654651 +-0.020119 0.0431531 0.0531418 +-0.0226834 0.174208 -0.0136486 +-0.0554979 0.0889982 0.0448936 +-0.0321193 0.0366883 0.0508235 +0.013731 0.104072 -0.0202068 +0.0407967 0.0661529 -0.00677209 +-0.0792933 0.16941 -0.0399858 +-0.0250378 0.174204 -0.0117666 +-0.0718111 0.0631642 0.010775 +-0.0710553 0.181198 -0.0554882 +-0.058796 0.0868581 -0.0207882 +-0.0136362 0.0466649 -0.0295427 +-0.0924917 0.124196 0.0312677 +-0.0331602 0.171158 -0.0153905 +-0.0724259 0.0727975 0.0340482 +-0.0566618 0.0645338 -0.00803085 +-0.0705221 0.098629 0.0408842 +0.0118568 0.126524 -0.00436904 +-0.0784161 0.116342 0.0501163 +-0.0677948 0.160582 -0.0110564 +-0.0456903 0.11799 -0.0148012 +0.0526315 0.0462656 0.0102089 +0.0453672 0.0456539 0.0269438 +-0.00726729 0.129761 0.0228793 +-0.0659232 0.105312 -0.014993 +-0.087769 0.118492 0.00124641 +-0.00149512 0.0562755 0.0546084 +-0.089164 0.0928946 0.0114433 +-0.0841907 0.078353 0.0198111 +-0.0679412 0.0656184 0.0271584 +0.0224551 0.0368363 -0.00219983 +-0.0356854 0.0435567 0.045098 +-0.0457595 0.0797224 -0.0196258 +-0.0405031 0.0762353 0.0429954 +-0.0640239 0.14106 0.0390925 +-0.0797368 0.119028 0.049952 +-0.0864815 0.0846104 0.00248575 +-0.0774908 0.137247 0.0499166 +-0.0586931 0.0693474 -0.0143558 +-0.0340813 0.159269 -0.0127772 +-0.0889533 0.124321 0.0462453 +-0.0611638 0.0468972 0.00167818 +-0.0925249 0.130961 0.0132346 +-0.0707251 0.033867 0.00298473 +0.0514024 0.0510939 0.0266785 +-0.000225629 0.097747 0.0525183 +0.0260546 0.112325 -0.0110571 +-0.0429452 0.0345628 0.0382617 +-0.0174331 0.0625913 0.0517909 +0.0422611 0.0397457 0.00959333 +-0.0374974 0.0705158 0.0419336 +-0.0368535 0.0362973 -0.0142764 +-0.0132005 0.128825 0.00480743 +-0.0808442 0.110042 -0.00155764 +-0.0890966 0.114815 0.0438036 +-0.0195037 0.11681 0.0364149 +-0.0653439 0.127011 0.0477296 +-0.0749324 0.152731 -0.0198994 +-0.0131083 0.128689 0.020774 +-0.0761869 0.149999 -0.0118749 +-0.0657951 0.0852369 -0.0187501 +-0.0515872 0.0558557 0.0146208 +0.0414903 0.0541829 0.0322405 +-0.0094881 0.112787 0.0415502 +-0.0473098 0.0390167 0.04506 +-0.076903 0.112654 -0.00467049 +-0.0792829 0.109073 0.0381388 +0.0277273 0.0646184 0.0435417 +-0.0923959 0.132359 0.0202239 +-0.0505803 0.0502828 -0.00813802 +0.00549299 0.117639 -0.0167508 +-0.0166687 0.038571 -0.00303984 +-0.0728836 0.119408 -0.00813229 +-0.00373228 0.0669631 -0.0346735 +0.0373953 0.0445589 -0.00471693 +0.00577997 0.0365296 -0.0134893 +0.0065091 0.0772612 0.0561769 +-0.0785581 0.153669 0.00407716 +-0.0631137 0.14437 -0.00863045 +0.0335076 0.0453895 0.0300756 +-0.00148382 0.131063 0.00627096 +-0.0117022 0.0613984 -0.0359464 +-0.0390182 0.0473551 -0.0162983 +0.0174871 0.10577 0.0429453 +0.0173606 0.128011 0.00608341 +-0.0587951 0.0337712 0.0197789 +-0.0554323 0.145321 0.0304155 +-0.021174 0.184521 -0.0131308 +-0.0546552 0.0656851 0.0351815 +-0.00872132 0.0656071 -0.0355909 +0.00329381 0.0654903 -0.0335962 +-0.0874212 0.0861211 0.0204627 +0.0341358 0.0641297 -0.0158137 +-0.063479 0.0384929 -0.0076832 +0.0174063 0.0417452 -0.0219906 +-0.069028 0.0409064 0.00923732 +0.0577041 0.0703778 0.00716237 +-0.0506338 0.0663851 -0.0124105 +-0.04882 0.119077 -0.0139102 +-0.0660878 0.161167 -0.014759 +0.060054 0.0678303 0.0101401 +-0.063913 0.169258 -0.0441943 +-0.053845 0.0463107 0.0236764 +-0.0784828 0.175619 -0.0475153 +-0.0313957 0.12387 -0.00298136 +0.0154947 0.107116 0.0420405 +-0.036876 0.0434502 0.0434666 +-0.06715 0.145376 0.0416405 +-0.0155327 0.181625 -0.0208343 +-0.0715781 0.0968766 0.0410625 +0.0306462 0.0968954 0.0409575 +0.00964614 0.0589005 0.0527021 +0.0527245 0.0736707 0.0159788 +-0.0861826 0.104908 0.00538017 +-0.0812551 0.138069 0.0480599 +0.0475108 0.0597433 0.0313293 +-0.0156256 0.0450397 -0.0279587 +-0.0221316 0.125526 0.0205056 +-0.0322922 0.122832 0.0242564 +-0.0132407 0.164048 -0.012311 +-0.0415061 0.0620057 0.0410722 +-0.0657901 0.128396 0.0470862 +0.0282252 0.0760107 -0.0227881 +-0.0701785 0.136914 0.0477863 +0.03413 0.0822192 0.0406334 +0.0609039 0.0609671 0.0121585 +-0.0515277 0.136697 0.0258426 +-0.00994091 0.089177 -0.0367642 +0.0451266 0.0727442 0.0219703 +0.0336533 0.110026 0.0294894 +-0.0721725 0.156265 0.0135984 +0.0312336 0.051167 -0.0107736 +-0.0023355 0.0926921 -0.0342848 +-0.0524965 0.0790864 0.0437156 +-0.0095237 0.0431051 0.0494016 +0.000300907 0.0626948 -0.0340909 +-0.0905968 0.140629 0.0221693 +-0.00800869 0.0388567 -0.00527149 +-0.0584939 0.0847167 0.0439692 +-0.0635243 0.0334646 -0.00419693 +-0.090351 0.14066 0.0261698 +-0.0588327 0.0911696 -0.0205864 +-0.020414 0.0541289 0.0465389 +-0.056688 0.067746 -0.0120827 +-0.0344045 0.152028 -0.00248634 +-0.0154988 0.114109 0.0392017 +-0.0384878 0.168246 0.00236894 +-0.0115711 0.100192 -0.0241483 +-0.0167308 0.0657547 -0.0377116 +-0.0466962 0.147986 -0.00319779 +-0.0926613 0.122825 0.0414622 +0.0312237 0.0871647 -0.0198177 +-0.0257476 0.0682496 -0.0344079 +-0.0524537 0.0504524 0.0306643 +-0.0768211 0.0804727 0.0355147 +-0.00449363 0.0456798 0.0470573 +0.0418422 0.0690449 -0.00578965 +-0.0262667 0.110544 -0.0190457 +-0.00251293 0.105882 0.0441369 +-0.0707082 0.0395895 0.000643319 +0.0128917 0.127573 0.0272919 +-0.0354687 0.054727 0.0384538 +0.00920102 0.0837298 -0.0322138 +0.0094791 0.0347704 0.0365664 +-0.0435038 0.0438236 0.0424673 +-0.0551839 0.140262 -0.00246039 +0.00523902 0.0341335 -0.0189244 +0.0273731 0.0578707 -0.0207586 +0.0119495 0.129938 0.00409466 +-0.0494983 0.102885 0.0411106 +-0.0370447 0.0379826 0.045213 +0.0150108 0.0349639 0.0393317 +0.0345233 0.0498189 0.0314944 +-0.0153828 0.128676 0.0170423 +-0.0618725 0.160013 -0.0255862 +-0.0525544 0.0504168 0.0256484 +-0.073344 0.0672327 0.000494062 +0.0393875 0.0460438 -0.00485579 +-0.0152754 0.103231 -0.0233341 +-0.0753549 0.104884 0.0361423 +0.0108274 0.0362708 -0.0225637 +0.0342152 0.0862629 0.0407864 +-0.088758 0.143311 0.0121502 +-0.0572353 0.0465198 -0.0043437 +0.0198267 0.035157 0.00555798 +0.0261922 0.0507168 -0.0207207 +0.0268986 0.0357578 0.0211357 +-0.0349846 0.0837189 -0.0236297 +-0.0222119 0.158173 -0.00418672 +0.024391 0.115338 0.0336864 +-0.0200061 0.124102 0.0256765 +-0.069632 0.0719472 -0.0104624 +-0.0322859 0.0792627 -0.0305329 +-0.0506516 0.033429 -0.00887801 +-0.0358626 0.101452 -0.0219425 +0.0293657 0.0447288 -0.00609588 +-0.0662305 0.0339335 0.0109932 +-0.00786973 0.104508 -0.0230207 +-0.0712429 0.177886 -0.0560058 +-0.00159432 0.129182 0.0263815 +-0.0283933 0.0831937 -0.0356194 +0.0443268 0.0511334 0.0322609 +-0.0318469 0.0958266 -0.0236233 +0.0205346 0.0937418 -0.0232686 +-0.012793 0.0813325 -0.0389447 +-0.0235889 0.0983837 -0.0242804 +-0.062496 0.105649 0.040196 +-0.0194646 0.0347564 0.0483645 +-0.0124518 0.038713 0.0303489 +-0.0444408 0.0335855 -0.0133031 +-0.00148369 0.0732377 0.0582942 +-0.0837769 0.153466 0.0110188 +-0.0898767 0.135147 0.0252168 +0.0369605 0.105409 -0.00483089 +-0.0255274 0.113962 0.0353265 +-0.0539587 0.0338764 0.0242313 +-0.0789197 0.104773 0.0326412 +0.0105421 0.118176 -0.0153416 +-0.0256953 0.0385914 0.0331228 +-0.0336328 0.126783 0.00457249 +-0.0470116 0.0710509 0.0409961 +-0.0930389 0.129675 0.0242521 +-0.0464764 0.0861628 0.0446798 +-0.0561893 0.159558 0.00559608 +-0.0091854 0.130144 0.00917512 +-0.0798951 0.0840617 -0.00859358 +-0.0336645 0.0339705 0.0230467 +0.00935764 0.0539048 -0.0300706 +-0.0831098 0.0777207 0.0215128 +-0.0470469 0.155045 0.00906939 +-0.0135887 0.169514 -0.0234669 +0.0418337 0.0395215 0.00781447 +-0.0276517 0.15535 -0.00385533 +-0.0201931 0.18164 -0.0152257 +-0.0335046 0.177862 -0.00863199 +0.0345014 0.0513521 0.0321623 +-0.0804527 0.143139 -0.00181198 +-0.0816965 0.144555 0.000152955 +0.0607459 0.0623413 0.0091502 +-0.0779458 0.175786 -0.0452228 +-0.0577187 0.146758 0.0323537 +-0.0403111 0.127303 0.0168527 +0.0204871 0.0934146 0.0476927 +0.00588424 0.100173 -0.0220733 +-0.00768539 0.0584014 -0.0338334 +-0.0447099 0.069553 -0.0165571 +-0.0287391 0.0620637 -0.0274208 +0.0157473 0.0947545 -0.0243195 +-0.063441 0.156071 0.0225051 +0.00824182 0.0753956 -0.0338579 +0.00561249 0.0927088 -0.0322048 +-0.0475077 0.0732702 0.0416223 +0.0145005 0.11127 0.0394252 +0.00450182 0.0413372 0.0458645 +0.00631667 0.061015 -0.0309472 +-0.0794763 0.0926775 0.0349659 +-0.0718543 0.111061 0.0453722 +-0.0891984 0.129697 0.0434765 +0.0151955 0.129241 0.0138359 +0.0236821 0.0824052 -0.0254011 +-0.0015019 0.110031 0.0427805 +-0.0215043 0.109928 0.0403615 +-0.0939826 0.118759 0.0192971 +-0.0624131 0.11535 0.0394932 +-0.0833865 0.140392 0.00124854 +-0.0465624 0.124393 -0.00950278 +-0.0146513 0.0496822 -0.0311895 +-0.0641648 0.15616 0.0149932 +-0.0729217 0.126742 -0.00866826 +-0.0253625 0.126177 0.010523 +0.0277777 0.108556 -0.0130095 +-0.0788017 0.0846357 0.0359502 +-0.0247742 0.180145 -0.00956802 +0.0188129 0.101666 -0.0216414 +0.00516264 0.131576 0.00874185 +-0.0633822 0.164679 -0.0305938 +-0.0375944 0.116238 -0.0149818 +0.0194959 0.111012 -0.0156283 +-0.0342918 0.0780403 -0.0245107 +-0.0861846 0.083225 0.00647736 +-0.0161451 0.166792 -0.0199866 +-0.0872007 0.147399 0.00826035 +0.0567195 0.0508531 0.00818949 +-0.0594966 0.100149 0.0427407 +-0.0584967 0.0761953 0.0427061 +-0.0218317 0.124906 0.0220793 +-0.00826101 0.0384472 0.0115633 +-0.0383343 0.121902 -0.0109317 +-0.0521665 0.136903 -0.000627156 +-0.0215605 0.0383186 -0.00194746 +0.0481264 0.060275 -0.00442661 +0.0154998 0.108504 0.0406925 +-0.0729927 0.08468 0.0400334 +0.0156625 0.0631375 0.0506866 +-0.0244911 0.101622 0.043846 +-0.0464946 0.131544 0.00524728 +-0.0496757 0.0678792 -0.0135965 +0.0429479 0.0845778 -0.00579145 +-0.0889655 0.0969901 0.0204055 +-0.0641121 0.152654 -0.0038572 +0.0409571 0.0971716 0.0271682 +-0.0171621 0.0382418 0.0171791 +0.00646008 0.118492 -0.0156628 +0.0328247 0.054955 0.0367483 +-0.0843958 0.13208 -0.00165487 +-0.0521768 0.0517998 0.0286453 +0.0415397 0.0690275 -0.00677 +-0.00193982 0.12966 0.0247961 +-0.0686037 0.157344 -0.00409918 +-0.0332546 0.12417 0.0223928 +-0.0762473 0.0920177 -0.013581 +0.0392491 0.0672477 0.0338308 +-0.0841314 0.0776758 0.00449933 +-0.0638136 0.0680952 0.0346563 +-0.00579523 0.10109 0.0444886 +-0.0717812 0.166615 -0.0459981 +-0.0474379 0.0355948 -0.0152688 +0.0581028 0.0523658 0.0121806 +-0.0787218 0.0967552 0.0354897 +-0.0561139 0.139571 -0.00370722 +-0.0605064 0.0394509 -0.00845033 +-0.0890965 0.111935 0.0113594 +-0.0579064 0.158452 0.00407429 +0.0204977 0.0920241 0.0479175 +-0.0224928 0.0988548 0.044702 +-0.0289733 0.124361 0.000543811 +-0.00750575 0.0457415 0.0474579 +0.043354 0.053395 -0.00666154 +0.0230359 0.124766 0.00534006 +-0.0773785 0.174262 -0.0420678 +-0.0273153 0.0387018 0.0344821 +-2.85469e-05 0.0391507 -0.00580542 +-0.0653748 0.149517 -0.0319115 +-0.0386792 0.0336259 0.00249375 +-0.0655034 0.106997 0.0388261 +0.0203192 0.0679349 -0.0283363 +0.0395784 0.104495 -0.000545476 +-0.0239953 0.114912 -0.0156465 +-0.0660228 0.160133 -0.0132914 +0.0397718 0.0940445 0.031303 +-0.0719497 0.132579 -0.00806719 +-0.0634812 0.0760895 0.041143 +-0.0484925 0.14723 -0.00252533 +0.054748 0.0690996 0.0027667 +-0.0723713 0.156038 0.0237254 +0.034267 0.0613198 -0.014809 +-0.0483876 0.0348751 0.0437589 +-0.05979 0.0839541 -0.0202843 +0.0501248 0.0723145 0.00745971 +0.0347025 0.105449 -0.00966587 +-0.0352566 0.0382472 -0.0299775 +0.0470963 0.045623 0.0254581 +-0.0855435 0.108961 0.00733555 +-0.0206804 0.112216 -0.0188434 +0.00523056 0.0796312 -0.0340387 +-0.0465619 0.047561 -0.00986957 +-0.033587 0.0348608 0.0452447 +-0.0202523 0.125914 0.000840735 +-0.0501104 0.138566 0.0193811 +-0.0264363 0.125919 0.0130719 +-0.0691022 0.159548 -0.0519447 +-0.0245412 0.057448 -0.0303989 +-0.046121 0.0336712 -0.000864342 +-0.0742841 0.155582 0.00848891 +-0.0298186 0.154044 -0.00457012 +0.0302323 0.0969553 -0.0166472 +0.0266877 0.104744 0.0387392 +-0.0843417 0.109004 0.0243603 +-0.0496377 0.143234 0.0104059 +0.0174929 0.0962345 0.0475335 +0.0450677 0.0917906 0.015163 +0.0374841 0.076757 0.0366434 +-0.0215406 0.0711033 0.0513847 +-0.0282153 0.125116 0.00364014 +-0.0284773 0.177212 -0.00607735 +-0.0204956 0.109916 0.0405701 +-0.0784664 0.0703272 0.00666705 +-0.0031698 0.0384355 0.0180459 +-0.0655548 0.153788 -0.00146085 +-0.0229763 0.0945367 -0.0302901 +-0.0192339 0.166857 -0.012207 +-0.0866345 0.094046 0.00237751 +-0.0759405 0.177963 -0.0471435 +0.0442559 0.0973532 0.00916034 +-0.071904 0.103673 -0.0126696 +-0.00666902 0.0541115 -0.0328784 +0.0144947 0.105783 0.0434399 +-0.029312 0.0383797 -0.00726542 +0.0562076 0.0536042 0.00319408 +-0.0829319 0.114342 0.0473556 +-0.069928 0.113662 -0.00916203 +-0.080837 0.120705 -0.00484118 +-0.0680148 0.177312 -0.0499759 +-0.077886 0.0811556 -0.0096326 +0.0350121 0.104701 0.0314746 +-0.0571796 0.0582032 0.0181974 +-0.0932449 0.120197 0.0372886 +-0.0536204 0.0647024 -0.00963527 +0.00250481 0.0870342 0.0569864 +-0.0802055 0.0754813 0.024867 +-0.062996 0.0444935 0.0306768 +-0.00402267 0.0975528 0.0526596 +-0.0883984 0.103684 0.0133796 +-0.0637361 0.133925 0.0394224 +-0.00469624 0.0613427 -0.0349676 +-0.0570417 0.148685 -0.00168484 +-0.062221 0.119852 0.0434664 +-0.0361997 0.0483313 -0.0162949 +0.00950265 0.0517655 0.0513753 +0.00822226 0.0366869 -0.011267 +-0.0383571 0.0360437 0.0112202 +-0.0890914 0.0956431 0.0204208 +-0.0256081 0.0408536 -0.0292407 +0.0374062 0.0397236 -0.000139169 +-0.094388 0.124185 0.0232804 +-0.0615536 0.151288 -0.000477545 +-0.0674057 0.140585 -0.00814985 +-0.0913588 0.113353 0.0143394 +-0.0162447 0.115598 -0.0164334 +-0.00395415 0.0388026 0.0284096 +0.0272466 0.0774691 -0.0233342 +0.0337889 0.112917 0.0264745 +-0.0342171 0.0808501 -0.0245506 +0.0395831 0.0953666 0.0310696 +0.0424402 0.100042 0.00119598 +0.0588348 0.0704992 0.0161593 +0.0129551 0.034265 -0.00247291 +-0.0884357 0.140552 0.0112052 +-0.0545209 0.0388646 -0.0108239 +-0.00760223 0.0406064 -0.0259713 +-0.0671149 0.0634665 0.0239226 +-0.0571873 0.13241 -0.00599886 +-0.0652367 0.0347413 0.0281307 +-0.0733817 0.154066 -0.0309045 +-0.00253313 0.0428829 0.047136 +-0.0768102 0.145866 -0.00487051 +-0.0675702 0.166262 -0.0225175 +-0.0425031 0.0662262 0.0410651 +-0.0579829 0.147131 -0.0018633 +0.0230336 0.049071 0.0400904 +-0.0829949 0.0843947 0.0302754 +-0.0147977 0.0813547 -0.0393324 +-0.015272 0.0385359 0.0263224 +-0.0764401 0.163184 -0.0180705 +-0.00855639 0.121127 -0.0123669 +-0.018702 0.0459339 0.0516744 +-0.0274925 0.0577126 -0.0264141 +-0.0571934 0.155255 0.0174937 +-0.0620081 0.0469936 0.00367346 +-0.010275 0.170544 -0.0261793 +0.0537831 0.0477401 0.0192041 +0.0402375 0.104169 0.000177419 +0.0289937 0.118368 -0.00105099 +-0.039498 0.118035 0.0314 +0.0367284 0.0875226 0.0373878 +0.0431893 0.0764104 0.0272109 +0.0404723 0.0752779 0.0321515 +-0.071418 0.176406 -0.0454588 +-0.0570823 0.138706 -0.0047975 +-0.0666306 0.0689692 -0.00898899 +-0.0691773 0.0628504 0.020491 +0.0144923 0.104443 0.0448169 +-0.0227823 0.0798633 -0.0386035 +0.0278587 0.0463325 0.0365003 +-0.00850193 0.0391005 0.0344133 +-0.0677578 0.16996 -0.0326164 +-0.0367265 0.0725274 -0.0180009 +-0.0681226 0.115765 0.0506532 +-0.0824105 0.154634 0.0158747 +-0.0197211 0.109971 -0.0204733 +-0.0626214 0.149057 -0.0155813 +-0.0414792 0.111213 0.0366505 +0.0570161 0.0508675 0.0161892 +-0.0934473 0.129632 0.0182372 +-0.0463999 0.150559 -0.00488163 +-0.0823822 0.144566 0.00117046 +-0.0310391 0.0892178 -0.0256627 +-0.065854 0.172894 -0.0463248 +-0.069909 0.0416997 0.00317022 +0.0312116 0.11742 0.0240751 +-0.0118175 0.0387383 -0.00407256 +0.01303 0.126665 0.0287751 +-0.0440446 0.129866 0.0080667 +-0.0797747 0.106127 0.0313842 +0.00451933 0.0800063 0.0560543 +0.00739517 0.116252 -0.017256 +0.0277812 0.063284 0.0436054 +-0.0569949 0.126695 -0.00683103 +-0.00960244 0.0420101 -0.025949 +0.0084074 0.123136 -0.0106652 +-0.0428042 0.0338676 0.0265755 +-0.0325056 0.0760815 0.0412743 +-0.0386562 0.0591953 -0.0114762 +-0.0405007 0.0690879 0.0417151 +0.0419622 0.102841 0.00417469 +-0.047644 0.121343 -0.0122933 +-0.0729009 0.105047 -0.011511 +-0.0927931 0.126937 0.0282668 +-0.0656106 0.156261 -0.00734027 +-0.0802248 0.0719997 0.00554401 +-0.00476651 0.0755803 -0.0368945 +-0.0779912 0.139819 -0.00526751 +-0.0864372 0.14049 0.00618869 +-0.0427881 0.157985 0.00470835 +-0.0697618 0.112838 0.0482345 +-0.0800017 0.0786467 -0.00556567 +-0.00794001 0.0994214 0.049751 +0.00252738 0.0716721 0.0561852 +0.0244581 0.0366925 -0.000851561 +-0.0618581 0.153131 0.03333 +-0.0730605 0.177343 -0.046073 +-0.0670133 0.0791411 0.0413099 +-0.00657967 0.0361819 -0.0249969 +0.0332241 0.115988 0.0034015 +-0.0314758 0.118803 -0.0116777 +-0.0714107 0.144356 -0.0151846 +-0.0414986 0.120686 0.028403 +0.0126257 0.034994 0.0315996 +-0.0344792 0.0382691 -0.00267158 +-0.0696814 0.0354769 0.0114289 +-0.0454423 0.0336713 -0.00255197 +-0.0611633 0.0698433 0.0372322 +-0.0520495 0.147795 0.0183962 +0.0467993 0.0745196 0.0137565 +-0.00850445 0.0619527 0.0559735 +-0.0157643 0.0353272 -0.0263783 +-0.0915821 0.144732 0.0201581 +-0.0274038 0.123285 0.0215594 +-0.0667152 0.0419014 -0.00231002 +-0.0408646 0.104225 -0.0205494 +-0.092402 0.129661 0.0272343 +-0.0876501 0.0954829 0.0054069 +-0.063731 0.0751942 -0.0171769 +-0.016949 0.0909918 -0.0366612 +0.0216857 0.0374896 0.0372608 +-0.0733019 0.081934 0.0390113 +-0.033579 0.117839 -0.0126505 +0.00291054 0.0385481 0.0460492 +-0.0648688 0.0938916 -0.0183701 +-0.0931568 0.120191 0.0362904 +-0.0105693 0.129741 0.0187791 +-0.0330922 0.108613 -0.0189923 +-0.0867528 0.121192 -0.00171893 +-0.0398856 0.0351398 0.0419144 +-0.0500753 0.0599861 0.0335137 +-0.0362769 0.163827 -0.00170672 +-0.0161498 0.040504 0.0518582 +0.0390213 0.100628 0.0284944 +-0.0525203 0.0581461 0.0261597 +-0.06389 0.0397139 0.0154457 +-0.0114781 0.0589986 0.0537512 +-0.00335674 0.0424141 0.0475525 +-0.0200738 0.0389483 0.0357554 +0.0112326 0.0738116 -0.0315294 +0.0128141 0.0504969 0.0481838 +-0.0548971 0.104115 -0.019193 +-0.0887169 0.125354 0.00227396 +-0.0712974 0.0669397 0.02531 +-0.0542529 0.0545999 -0.00539104 +-0.0538048 0.159768 -0.00183632 +0.0171004 0.120495 -0.00987579 +0.00927611 0.0667424 -0.0314011 +-0.0928802 0.118867 0.0402859 +-0.0167191 0.0613704 -0.0359554 +-0.0515886 0.0460739 0.0176829 +-0.0182635 0.180096 -0.0244849 +-0.0014996 0.0938866 0.0553603 +-0.0518826 0.071407 0.0396894 +-0.0529375 0.0335557 0.00508499 +-0.0597956 0.0925385 -0.0196216 +-0.0869937 0.104951 0.00838372 +0.0481666 0.0731681 0.01124 +-0.00827202 0.0394277 0.049182 +-0.0607911 0.0810335 -0.0194373 +0.000667625 0.0985049 0.0513232 +0.00310867 0.129093 0.0266332 +0.0296013 0.119582 0.02204 +-0.0285282 0.0378067 0.0260568 +-0.0367133 0.0353138 0.0122122 +-0.0468392 0.132859 0.0202702 +-0.0139293 0.126622 0.0263262 +-0.0191687 0.171226 -0.0215143 +0.0205957 0.0394417 0.0417168 +-0.0692562 0.143958 0.0438704 +-0.037992 0.128312 0.00883318 +-0.0237829 0.0770195 -0.0382449 +-0.0940603 0.120098 0.0152926 +-0.0545976 0.139948 -0.00193829 +-0.0869674 0.103645 0.0213508 +-0.0689616 0.177928 -0.0580053 +-0.079103 0.0731629 0.0235749 +-0.0563149 0.0534289 -0.00138708 +-0.00430179 0.125159 -0.00873129 +-0.0217957 0.119089 -0.0120655 +0.047344 0.0721054 0.0183678 +-0.0206715 0.0524183 -0.0304469 +-0.0292161 0.178518 -0.014988 +-0.0567221 0.0575063 0.0096837 +0.00796175 0.131494 0.0140347 +-0.0163209 0.175704 -0.0185048 +0.0207575 0.0645289 0.0475184 +-0.0365005 0.0676756 0.0415398 +-0.0504985 0.079101 0.0439987 +0.0338763 0.0978118 -0.0135516 +-0.00887371 0.0385959 0.0022117 +-0.0644851 0.0755505 0.0404189 +-0.0877008 0.0923103 0.0248018 +-0.082219 0.074838 0.0095308 +-0.0554964 0.111163 0.0367062 +0.0260064 0.0465031 -0.0156607 +-0.0633419 0.155193 -0.0376165 +-0.0732519 0.0648877 0.00719031 +-0.0769992 0.155545 -0.0179052 +0.0377103 0.0955073 -0.00984226 +0.0174667 0.122816 0.0304302 +-0.0366198 0.0505806 -0.010756 +-0.0144968 0.0472352 0.0484474 +0.00848126 0.0936832 0.0524446 +0.0197906 0.106497 -0.0168156 +-0.0930778 0.121531 0.0352811 +-0.0613674 0.169388 -0.0565896 +-0.0301276 0.038694 -0.0132786 +-0.0662928 0.044787 0.00771957 +-0.0195138 0.0448322 0.0525308 +-0.0886025 0.0887878 0.00646717 +0.0380432 0.109702 0.0166041 +-0.024753 0.0755695 -0.0376923 +-0.089639 0.0983559 0.0164014 +0.0373474 0.083464 0.036489 +0.0200866 0.0429332 -0.0206714 +-0.0362408 0.12776 0.00652715 +-0.0114267 0.182822 -0.0276369 +0.033977 0.115595 0.0137221 +0.016644 0.0381609 -0.019755 +-0.0160134 0.0959893 0.0521651 +-0.0194344 0.115555 -0.0163687 +0.00996296 0.0988804 -0.0226985 +0.0207021 0.0348049 0.000449352 +-0.0655859 0.0333717 0.000880867 +-0.0387964 0.0870429 -0.0222174 +-0.0365713 0.0483594 -0.015218 +0.0310154 0.110075 0.0327245 +-0.0376939 0.0665912 -0.0149459 +0.0401046 0.0466866 0.0313873 +-0.0110827 0.102149 -0.0241692 +0.00841559 0.0375405 -0.0234702 +0.0448731 0.0945767 0.0111579 +0.0145335 0.034759 0.0322003 +-0.059392 0.149673 0.0353015 +0.000291607 0.0641338 -0.034343 +0.00429568 0.0640516 -0.0331969 +0.0450422 0.0931924 0.0131619 +-0.00448954 0.122402 0.0358368 +-0.0326251 0.166779 -0.00520273 +-0.0566266 0.157159 0.00899778 +-0.0131915 0.184654 -0.0268832 +0.0372616 0.0915229 0.0364203 +0.0164447 0.0548852 0.0482217 +-0.0124867 0.11689 0.0385307 +0.00769138 0.039029 0.0323953 +-0.0150057 0.127967 0.0215456 +-0.0860589 0.113009 0.00328149 +-0.0718647 0.175275 -0.0427173 +0.000497507 0.112823 0.0420607 +-0.0832204 0.140695 0.0442806 +-0.0316065 0.039499 -0.0303181 +-0.0689448 0.129685 -0.00899835 +-0.020775 0.0742803 -0.0390259 +-0.0727533 0.0995199 0.0393322 +0.0032483 0.071196 -0.0343078 +-0.0400491 0.154783 -0.00892819 +-0.0345081 0.0832025 0.0425625 +-0.0522702 0.141391 0.00017327 +0.0278273 0.0795375 0.0455649 +0.0269552 0.122658 0.0110745 +0.0348501 0.112087 -0.000408122 +-0.0694924 0.0846972 0.0421957 +-0.0861949 0.139089 0.00320204 +-0.0823568 0.0802033 -0.00152209 +0.00894636 0.0644445 0.055029 +0.0266313 0.0563972 -0.0207832 +0.023933 0.0390696 0.0352942 +-0.0656041 0.136814 0.0420793 +0.0407616 0.105622 0.0111617 +0.058143 0.0551653 0.0211996 +-0.0138904 0.0897489 -0.0373664 +0.0117209 0.130528 0.015412 +-0.0181782 0.126773 0.00187925 +0.039239 0.0589589 -0.00512401 +0.0118091 0.0576645 0.0520801 +0.0101538 0.113447 -0.018237 +0.00107085 0.0391982 -0.0112505 +-0.0726176 0.0747594 -0.0108396 +-0.0504976 0.104261 0.040368 +-0.06047 0.0776106 0.0424994 +-0.0726162 0.166612 -0.0440006 +-0.0345099 0.109779 0.0372255 +0.0371511 0.110987 0.0177157 +-0.0594963 0.1084 0.0386802 +-0.0218558 0.120004 -0.0110164 +-0.0726436 0.159626 -0.0369279 +0.0162217 0.120841 -0.0102336 +0.0462172 0.0729792 0.0194263 +0.0503974 0.0595708 0.0303584 +-0.069034 0.139725 0.045939 +0.0222487 0.0359069 0.0273161 +-0.083623 0.0857135 0.0294569 +-0.0427492 0.0421438 -0.0223063 +-0.0635342 0.161573 -0.0210278 +-0.0632778 0.158345 -0.0436013 +0.049468 0.0445737 0.00523787 +-0.00949755 0.0856659 0.0574293 +0.0137231 0.129888 0.00901711 +-0.0849311 0.0980032 -0.00158096 +0.0094116 0.0360543 -0.0227822 +0.029005 0.115546 0.0303821 +-0.0136476 0.0481469 -0.0303471 +0.0203578 0.0985304 -0.0223097 +0.0386883 0.0767039 0.0348633 +0.0505119 0.0665023 0.0275359 +-0.0236064 0.038163 0.0249493 +-0.0662075 0.060375 0.00901189 +-0.0309847 0.0381919 0.0323901 +-0.0577888 0.0439091 -0.00660137 +0.0319539 0.0795563 0.0427459 +-0.0888256 0.100978 0.0104077 +-0.0149675 0.0986909 -0.0245721 +0.0080932 0.126458 -0.00628099 +-0.0629819 0.128219 -0.0083429 +0.00592947 0.0982847 -0.0240623 +-0.0791963 0.120405 0.0507691 +0.0385114 0.0583288 0.0314228 +0.0327231 0.116168 0.00178038 +-0.0838537 0.110728 0.0339922 +-0.0559583 0.0478125 -0.00439058 +-0.0864154 0.152983 0.0204471 +-0.0846489 0.0778245 0.0165124 +-0.0244888 0.120706 0.0294035 +-0.0565129 0.051223 0.00779351 +-0.00649552 0.111418 0.0421995 +-0.0400289 0.0336199 0.00584373 +0.00964377 0.120482 -0.0138306 +-0.0819198 0.126566 -0.00507678 +-0.023502 0.180157 -0.0112302 +-0.033578 0.0448331 0.0458046 +-0.0771053 0.177652 -0.0476237 +-0.0244946 0.0357757 0.0532784 +0.044574 0.0903504 0.0211613 +0.0317623 0.0938577 -0.0173357 +-0.0767292 0.0860417 0.0380634 +-0.0291365 0.165225 -0.016186 +-0.0558064 0.0562012 0.00862658 +-0.0197239 0.0612902 -0.0351879 +-0.0624763 0.163084 -0.0515885 +-0.00157869 0.0347285 -0.0237137 +0.0250862 0.0741055 0.0468243 +-0.00657564 0.0346831 -0.0243352 +-0.0927326 0.12419 0.0292678 +-0.0642565 0.0418897 0.0384072 +0.0074848 0.0976824 0.0494394 +-0.0324803 0.0436623 0.0489836 +0.0309993 0.0686673 0.04128 +-0.00959045 0.0337105 -0.0233226 +-0.0692347 0.176505 -0.0570351 +-0.0524975 0.111152 0.036921 +0.0434926 0.056984 0.0319757 +-0.0448698 0.104232 -0.0209188 +-0.0689139 0.148999 -0.0367601 +-0.0366298 0.0344715 0.0361774 +-0.0772403 0.0846603 0.0372078 +-0.0866727 0.139248 0.0421058 +-0.0692038 0.156713 -0.0519425 +-0.0286406 0.154979 -0.0065778 +-0.0516452 0.119776 0.0340339 +-0.0604002 0.0591276 0.0185111 +-0.0789005 0.172846 -0.0440952 +-0.0733588 0.0659821 0.00263497 +-0.0644533 0.0351399 0.0400818 +0.0349985 0.0619413 0.0382049 +-0.0116935 0.0584778 -0.0346471 +0.0397873 0.104095 -0.000789682 +0.0261507 0.0923065 -0.0217116 +-0.0643301 0.156694 -0.0446094 +0.0312874 0.108108 -0.0105276 +-0.0718754 0.119424 -0.00835095 +-0.0897483 0.0929448 0.0154361 +-0.0322408 0.125589 0.00213325 +0.0193474 0.0551603 -0.0276297 +-0.0355381 0.0335618 -0.0245193 +-0.0323633 0.175433 -0.0143069 +0.0591153 0.0705615 0.014025 +-0.0685156 0.168032 -0.0539935 +-0.0408127 0.127672 -0.0010356 +-0.070932 0.129672 -0.00889239 +-0.0315034 0.0717826 0.0402663 +0.0139874 0.0924572 -0.0278842 +-0.00310937 0.0390986 -0.00637767 +-0.0315484 0.0749387 -0.030532 +-0.0658202 0.0597996 0.0132017 +-0.074125 0.079542 -0.012586 +-0.042758 0.0336059 0.00168497 +-0.0376274 0.0534153 -0.0106276 +-0.0609006 0.106856 -0.0171292 +-0.0465015 0.112315 -0.0168133 +-0.00832405 0.129364 0.00227931 +0.000993844 0.0989182 -0.0247915 +-0.092775 0.128304 0.0272531 +-0.0024916 0.073257 0.0585379 +-0.0354714 0.0959602 0.0437897 +-0.0798628 0.122191 -0.00554615 +-0.0379836 0.153062 -0.00765575 +-0.0574689 0.0413481 0.0461934 +-0.0681352 0.166058 -0.0212868 +-0.0655788 0.037063 0.0157921 +-0.0104996 0.03868 -0.00189881 +0.00192546 0.0390395 0.0275923 +-0.0598545 0.0467827 -0.000327155 +-0.0510269 0.136724 0.0245519 +-0.0626706 0.0343644 0.032487 +0.0368248 0.11128 0.0190303 +0.047871 0.0733255 0.0156276 +-0.0291332 0.059286 -0.0234112 +-0.0554108 0.0344947 0.0391385 +-0.0892997 0.0956389 0.0174174 +-0.0880049 0.11182 0.00834875 +0.0309816 0.102484 -0.0145328 +0.0183118 0.0665429 -0.0287115 +0.00448658 0.111391 0.0416751 +-0.0902127 0.122664 0.0052855 +-0.0900898 0.119956 0.00430245 +-0.026505 0.174198 -0.0103819 +-0.0214492 0.0963545 -0.0261739 +0.0574071 0.0691343 0.00477569 +-0.0755392 0.154957 0.000803149 +-0.0205078 0.049871 0.046386 +-0.0302748 0.116055 -0.0148216 +0.0522643 0.0732287 0.00987093 +-0.0353184 0.153664 -0.00782609 +-0.0468563 0.101377 -0.0215448 +0.0252483 0.0713214 0.0452679 +-0.01624 0.0963836 -0.0301721 +-0.0374901 0.0505918 0.0391881 +-0.000727236 0.069749 -0.034387 +-0.0295801 0.0368886 0.052851 +0.0174262 0.0350846 0.00327627 +-0.0408044 0.0884947 -0.0224789 +-0.0540496 0.0546601 0.0106814 +-0.0841802 0.136658 0.046769 +0.0265654 0.0388814 0.0291555 +-0.0365515 0.115187 -0.0158874 +-0.0746646 0.0981736 0.0384691 +-0.0461647 0.162128 -0.00806097 +-0.0838755 0.106118 0.000396239 +-0.0634664 0.0345901 0.0373297 +-0.0487026 0.0708482 -0.0151225 +-0.0490488 0.150196 -0.0040443 +-0.0454995 0.107082 0.0401134 +0.015502 0.109895 0.0399577 +0.0339767 0.0796167 -0.0178174 +-0.064903 0.110966 -0.0133006 +-0.0884279 0.0874564 0.00647862 +0.0303366 0.0352283 0.0150252 +-0.0476647 0.15359 0.00991943 +0.0491492 0.0460297 0.00132033 +0.0571336 0.0721807 0.0116675 +0.0423629 0.0398964 0.0150374 +-0.0075036 0.12108 0.0363047 +-0.0304017 0.0791045 -0.033577 +-0.0707511 0.0654954 0.0231537 +-0.0344941 0.171246 -0.000779029 +-0.0516393 0.0618882 -0.0103104 +0.0364959 0.064355 -0.0127735 +0.0258636 0.0344283 0.00929921 +-0.06094 0.0410414 0.0167056 +0.0388283 0.102661 -0.00481845 +0.00951185 0.0560842 0.0527429 +0.0250009 0.0629104 -0.0235842 +-0.0883814 0.100948 0.00841627 +-0.0896675 0.150196 0.0231327 +-0.0502775 0.0487457 0.0176637 +-0.0574379 0.0576833 0.0026039 +-0.0889127 0.145822 0.0300758 +0.00105802 0.0387062 0.0241019 +0.0432951 0.0987146 0.0161577 +-0.00981592 0.123797 -0.00918874 +-0.0235467 0.119499 0.0316537 +-0.0203743 0.127028 0.00506457 +-0.0546314 0.138445 -0.00241154 +0.0144977 0.11819 0.0360011 +-0.0468871 0.150669 0.00925072 +0.00310943 0.110155 -0.0202398 +-0.0315082 0.0817114 0.0416031 +-0.0361907 0.169669 -0.0137878 +-0.0266475 0.0904555 0.0474235 +0.00393808 0.131671 0.0154244 +-0.0594984 0.109765 0.0377884 +-0.0632488 0.167828 -0.0435907 +0.02054 0.116646 0.0351499 +0.046015 0.0862238 0.00817489 +-0.0472066 0.033531 -0.00644781 +-0.0382901 0.126893 -0.00216373 +0.0358746 0.0755562 -0.0137901 +-0.00915886 0.0385694 0.027547 +-0.083022 0.132397 -0.0026267 +-0.0665414 0.155108 -0.00331096 +-0.0344162 0.168264 -0.00253059 +-0.0891077 0.101031 0.0163881 +-0.0165765 0.119912 -0.0109781 +0.00442197 0.11861 -0.0157775 +-0.0234514 0.0892984 0.0527307 +0.0565327 0.0523952 0.0217798 +-0.0515006 0.111173 0.0369493 +-0.0218128 0.183092 -0.0122978 +0.0044132 0.0376001 -0.0242202 +-0.0654801 0.0675388 0.0330326 +-0.010497 0.0717087 0.0563199 +-0.065424 0.0399796 0.0326661 +-0.0228869 0.180156 -0.0121058 +0.0203379 0.125091 8.19329e-05 +-0.0802772 0.089954 0.0344521 +-0.0772906 0.165906 -0.0257637 +-0.012412 0.0382658 0.0163183 +0.0102284 0.0616887 0.0533551 +-0.00987882 0.105925 -0.0227673 +-0.00348977 0.122389 0.0359468 +-0.0759061 0.0675035 0.00967604 +-0.0414986 0.0874028 0.042497 +-0.0605969 0.06056 0.0225173 +0.0395569 0.0702481 -0.0107925 +-0.0329324 0.0638892 -0.016427 +-0.000943594 0.0381622 0.0205587 +-0.0338755 0.107095 -0.0200162 +-0.0125023 0.0486789 0.0487656 +0.0274856 0.0400248 0.0301572 +-0.0008153 0.10869 -0.0211159 +0.0343096 0.0419726 0.0279684 +-0.0247603 0.0865587 0.0527086 +-0.00553736 0.113796 -0.0185731 +-0.021633 0.035044 -0.0280533 +0.00828872 0.130472 0.0213052 +-0.0242184 0.0593353 0.0417104 +0.0288386 0.111536 -0.010211 +-0.0581339 0.0334069 -0.00670381 +0.037704 0.0574555 -0.00668675 +-0.0710158 0.13691 0.0483444 +-0.0305078 0.112529 0.0355647 +0.0343502 0.114842 0.0181324 +-0.0485971 0.0359097 0.00925535 +-0.0288479 0.0578621 -0.0233922 +-0.051497 0.0890197 0.045238 +0.0121456 0.0347039 0.0353715 +-0.0716902 0.155937 0.00211062 +-0.0790692 0.0804499 0.033529 +0.0545445 0.0589886 -0.00181806 +0.0529955 0.0716182 0.0219676 +-0.056511 0.121265 0.0393235 +0.032607 0.0527076 -0.00976892 +-0.0376644 0.0335909 0.0081569 +-0.0936994 0.128298 0.0232525 +-0.0809806 0.0720629 0.0115411 +-0.0239408 0.0886576 -0.0363455 +-0.0859344 0.107632 0.00736881 +-0.0277915 0.0782183 -0.0359607 +-0.0571511 0.0394305 0.0468685 +-0.0839381 0.0791399 0.0214982 +-0.0234217 0.0359155 0.0533704 +-0.0739011 0.106421 -0.010241 +-0.0567145 0.0334976 0.000765085 +-0.0241329 0.157302 -0.00905689 +-0.0128819 0.126866 -0.00238505 +-0.0250553 0.0707727 0.0450037 +-0.0444963 0.119293 0.0294103 +-0.0463222 0.0411097 -0.0132713 +-0.0451547 0.0437693 -0.0122411 +0.0475648 0.0553802 0.031711 +-0.0494965 0.11266 -0.0171746 +0.00314926 0.122256 -0.0116623 +-0.089161 0.137877 0.0251937 +-0.0171561 0.0387671 0.0311342 +-0.0659181 0.10388 -0.0158661 +-0.062107 0.163118 -0.0365927 +0.0444569 0.0444867 0.0259758 +-0.0206484 0.0464719 -0.0278809 +-0.0668387 0.144945 -0.0185544 +-0.0574928 0.102919 0.0421703 +-0.0655518 0.166572 -0.0275081 +-0.0339393 0.126307 0.017694 +-0.0176989 0.0554882 -0.03328 +0.012239 0.0794574 -0.0314827 +-0.0344963 0.094609 0.0443801 +0.0228685 0.123786 0.00100726 +-0.0920259 0.132307 0.0132318 +-0.0713267 0.169665 -0.0267525 +-0.081588 0.0788215 -0.00249997 +-0.0755712 0.102178 0.0364401 +-0.0482055 0.0335674 -0.00667883 +-0.0295069 0.109802 0.0378356 +-0.0819634 0.103331 0.0300688 +-0.0766364 0.0788383 -0.00918256 +-0.0472353 0.12392 0.0280317 +-0.0424858 0.064826 0.0410217 +-0.00749383 0.112788 0.0415528 +-0.0321607 0.174124 -0.015122 +-0.0148084 0.124344 -0.00565133 +-0.0630295 0.126909 0.044075 +-0.0122771 0.129643 0.0167063 +-0.0137469 0.0714346 -0.0382786 +0.0253964 0.0981715 0.0439168 +-0.0105339 0.100499 0.0452584 +-0.0909546 0.139232 0.0191849 +-0.0239226 0.16684 -0.0101968 +-0.00433796 0.0387886 -0.000752538 +0.00920046 0.0879669 -0.0320124 +-0.0404937 0.0662835 0.0416604 +-0.0569887 0.118401 0.0385929 +-0.0715396 0.0362187 -0.000138838 +0.0226226 0.0591926 0.0466634 +-0.0544937 0.112536 0.0358256 +-0.0843481 0.145997 0.00513587 +-0.022811 0.0756351 -0.0385829 +-0.0666897 0.0735998 -0.0145924 +-0.0404977 0.116683 0.0325662 +0.0032744 0.114489 -0.0193505 +0.00148054 0.0413996 0.0463959 +-0.0245078 0.0767611 0.0513331 +-0.0308625 0.101511 -0.0227041 +0.00533966 0.0345787 0.0412861 +-0.0774755 0.170095 -0.0341987 +-0.0650593 0.125632 0.048098 +0.0112751 0.0505364 0.0494832 +-0.0786212 0.0976351 -0.0095679 +-0.0726748 0.0647223 0.00565049 +-0.0350102 0.158094 0.00367693 +0.0175012 0.11539 0.036772 +-0.0205761 0.0350586 0.0512942 +-0.0408828 0.108487 -0.0195205 +-0.0324978 0.0661054 0.0396515 +-0.0860138 0.0845642 0.00148082 +0.00924462 0.0710839 -0.0326657 +-0.0573888 0.0342428 0.0302238 +-0.0809405 0.141759 -0.00181375 +0.0351408 0.0931106 -0.0145377 +0.0391769 0.106978 0.0201683 +-0.0378047 0.0342916 0.0307956 +-0.0614885 0.0932285 0.0449784 +-0.00750736 0.0561433 0.0534652 +0.0317881 0.0564278 0.038783 +-0.0258626 0.0378286 0.0139698 +-0.0515546 0.0445278 -0.00899667 +-0.010869 0.165486 -0.0158779 +-0.0297303 0.109983 -0.0184292 +-0.0469177 0.0346518 0.0071269 +-0.0286016 0.109083 -0.0194963 +-0.0109096 0.172768 -0.0212178 +0.00821291 0.0711477 -0.0331375 +0.00315167 0.10307 -0.0219554 +-0.0472567 0.132959 0.0215876 +-0.0825276 0.142074 0.0435561 +-0.0136058 0.093388 -0.035076 +-0.0179202 0.0385865 -0.0163394 +-0.0641268 0.0405801 0.0396199 +0.0124469 0.129111 0.00141235 +-0.0637038 0.0343279 0.0323025 +0.0354218 0.100763 0.0338403 +0.0121385 0.130422 0.0141392 +0.00281822 0.126541 -0.00629609 +0.000901863 0.122026 -0.0113896 +-0.0702669 0.176516 -0.0559875 +-0.0576072 0.0336162 0.0112663 +0.0129045 0.125515 -0.00527553 +-0.021518 0.115416 0.036565 +-0.01542 0.16691 -0.0137031 +-0.0365035 0.168234 0.000585726 +0.00464616 0.034105 0.00716872 +-0.0319348 0.125225 0.000800634 +-0.0169495 0.0390889 0.0362738 +-0.024481 0.104364 0.0426891 +0.0161036 0.0393372 0.0440174 +-0.0397156 0.127552 0.0155957 +-0.0063009 0.09425 -0.0339062 +-0.00549064 0.104476 0.0440202 +-0.0455034 0.104326 0.041412 +-0.0625466 0.16468 -0.0375945 +-0.0334032 0.0765382 -0.0275106 +-0.0118225 0.0855318 -0.0386599 +0.0100166 0.0833203 0.0549696 +-0.0685481 0.156429 0.0206858 +-0.0705717 0.158164 -0.0459142 +-0.0185161 0.125172 -0.00248935 +-0.0185539 0.095955 -0.0297446 +0.0191428 0.127427 0.0167214 +-0.0145095 0.171282 -0.0176637 +0.0352621 0.0826509 -0.01774 +-0.0526579 0.0504274 0.026653 +0.00237351 0.0465882 -0.0283321 +-0.0854761 0.132564 0.04817 +-0.0868299 0.0846427 0.00348465 +-0.0105903 0.0377043 -0.0258398 +0.00953188 0.0455622 0.0461832 +-0.0662037 0.154495 -0.0505507 +-0.0856221 0.107687 0.0203552 +-0.0858054 0.102155 0.00239755 +-0.0248162 0.126254 0.00926143 +-0.0398081 0.128271 0.00374611 +-0.00949649 0.0546877 0.0525704 +-0.0474662 0.0960033 0.0439936 +-0.0787761 0.1431 -0.00379727 +0.0264606 0.0663192 -0.0226274 +-0.0294891 0.119549 -0.0104626 +-0.0285179 0.0948797 -0.0246293 +-0.0561001 0.14389 0.0312058 +-0.0930288 0.116051 0.018311 +-0.00894653 0.174179 -0.0257648 +-0.0524908 0.113899 0.0349209 +0.0158504 0.0959717 -0.0236278 +-0.0694879 0.0368888 0.0112092 +-0.0802884 0.146109 0.0411929 +-0.0498232 0.0349806 0.0446412 +0.0342731 0.115225 0.0123899 +0.0283978 0.0955434 -0.019149 +-0.0515486 0.141607 0.0193759 +-0.0458573 0.147704 0.00717141 +-0.0735436 0.175947 -0.0433626 +-0.0758292 0.0935231 -0.0136873 +-0.0554898 0.041398 0.0465154 +0.0604856 0.0623173 0.00815473 +0.0135991 0.100782 -0.0226731 +-0.021666 0.16235 -0.015178 +-0.0474866 0.0573572 0.0366835 +-0.0645248 0.154173 -0.00692339 +0.0454055 0.0747572 0.0215389 +-0.0497578 0.0797288 -0.020162 +-0.0463447 0.129406 0.0234768 +0.0153317 0.0580768 -0.0287753 +0.0124861 0.100431 0.0478938 +-0.0288456 0.0986889 -0.0235542 +-0.00949656 0.0471698 0.047803 +-0.0644726 0.165628 -0.0285568 +0.0564615 0.0703554 0.0055259 +-0.0477419 0.0345444 0.0337565 +-0.0415114 0.0520187 0.0393909 +-0.0165872 0.128419 0.0166112 +-0.0649318 0.168832 -0.0387572 +-0.0230309 0.0906523 0.0522978 +-0.0289316 0.0889882 -0.0316153 +-0.0522528 0.0567257 0.0259279 +-0.0113061 0.169739 -0.0249506 +0.0329977 0.0514306 -0.00763543 +-0.0104801 0.120983 0.0360777 +-0.0848294 0.111312 0.0422165 +0.0597675 0.0609389 0.00613027 +-0.0264774 0.0473675 0.0499125 +-0.00223749 0.0939165 -0.0335391 +-0.0188762 0.171241 -0.0152046 +0.0460317 0.0820288 0.0151733 +-0.00015619 0.0389464 0.0272511 +-0.0490964 0.156122 -0.00621407 +0.0240569 0.111353 0.0367066 +-0.0427705 0.0826571 -0.0207663 +-0.0844768 0.0856095 0.0274708 +-0.0120306 0.174239 -0.0210892 +-0.00550834 0.0689154 0.0563731 +0.0289606 0.0679277 -0.0207366 +-0.0308933 0.12367 0.0217821 +-0.00650569 0.0675101 0.0559953 +-0.0789661 0.0859916 0.0360799 +-0.0291346 0.177171 -0.00534178 +-0.0560039 0.140764 -0.00299974 +-0.0584999 0.107052 0.0397144 +0.00834583 0.0539265 -0.0302958 +-0.0169173 0.16018 -0.0117745 +-0.0698587 0.0680767 -0.00467294 +0.00525002 0.0740223 -0.0345195 +0.0110199 0.0860342 0.0546992 +0.0173361 0.0608154 -0.0277985 +0.0111302 0.107269 -0.019511 +-0.021494 0.10578 0.0424616 +0.0436775 0.0859385 0.0262014 +-0.0587477 0.0767588 -0.0188591 +0.0107799 0.0548821 0.052327 +0.0185294 0.0358466 0.0392699 +-0.0859998 0.135257 0.0457789 +-0.0767885 0.154209 -0.0148974 +-0.0613392 0.0587193 0.00967832 +-0.0712669 0.0381904 0.00872646 +0.00351715 0.0561463 0.0534882 +-0.0427983 0.0884442 -0.0218161 +-0.0898373 0.133802 0.0342135 +-0.0414226 0.150668 0.00483874 +0.0173651 0.049165 -0.0241471 +-0.0213294 0.0783028 0.0551779 +0.0143433 0.0537792 -0.0282321 +-0.0784743 0.140032 0.0478552 +-0.0334891 0.0889549 0.0439078 +0.0190476 0.0795376 0.0522219 +0.0286264 0.0638437 -0.020406 +-0.054069 0.139552 0.0288194 +-0.0132381 0.0385471 0.0267309 +0.0118566 0.0887261 0.0541581 +0.0316481 0.100683 -0.014625 +-0.093138 0.120057 0.0112982 +0.0244505 0.0384021 -0.00302114 +0.0122037 0.0864617 -0.0308592 +-0.0121165 0.0973987 0.0513433 +0.0371269 0.09285 0.0362758 +0.00753839 0.119505 -0.0147629 +-0.0698326 0.0937229 -0.0162704 +-0.046496 0.105677 0.0407002 +-0.00449814 0.0870358 0.0571267 +-0.00560579 0.042007 -0.0256504 +-0.0748416 0.154048 -0.0189002 +0.0138852 0.0348367 0.0283807 +-0.0890009 0.118943 0.0464523 +-0.0703858 0.16802 -0.0500308 +-0.0208115 0.124915 -0.0021319 +-0.0399669 0.0343914 -0.00210399 +-0.0188044 0.120762 -0.00982397 +-0.0825182 0.0816676 0.0298907 +-0.0625957 0.0588736 0.0128867 +-0.0908844 0.150204 0.0171288 +-0.073715 0.17176 -0.0333959 +0.0304194 0.0446109 0.0313507 +-0.0364972 0.0605644 0.0405385 +-0.0684905 0.158118 -0.0539401 +0.011386 0.0343226 -0.0122219 +-0.0375464 0.119352 -0.0122401 +-0.036497 0.102841 0.0405772 +0.0373988 0.0430101 -0.00376662 +-0.00864037 0.0526884 -0.0330777 +-0.0505191 0.112725 -0.0172384 +0.000747713 0.131321 0.00709666 +-0.0821064 0.110205 0.0294137 +-0.0338319 0.0498039 0.0388148 +-0.0399647 0.128635 0.00811119 +0.0262642 0.0479348 -0.017662 +-0.093142 0.118716 0.0123041 +-0.0234219 0.0537493 0.0424994 +0.0109672 0.0977693 -0.023517 +-1.32571e-05 0.13145 0.0125463 +0.0200527 0.0618555 0.0482337 +-0.0119089 0.128954 0.021205 +-0.0524994 0.0903873 0.0447034 +-0.0334979 0.0845774 0.0421828 +0.0190672 0.117213 -0.0123322 +-0.0263135 0.0381467 0.0262093 +0.034589 0.108233 -0.00663102 +0.0435886 0.091694 0.0241609 +-0.00849618 0.0939016 0.0554996 +-0.0579701 0.125253 -0.00738272 +-0.016138 0.0382862 0.0119165 +-0.0709351 0.0742605 0.0366097 +-0.0125367 0.128434 0.00198737 +-0.0244307 0.0379986 0.0104913 +-0.0681277 0.152206 0.0356633 +-0.0279464 0.0689892 -0.032513 +0.0398535 0.0752995 0.0330037 +-0.0636875 0.0722354 -0.0149801 +0.00569987 0.0949071 -0.0304911 +0.0217235 0.120687 0.0315848 +0.0306109 0.0549842 0.038821 +-0.0719231 0.155792 0.0253493 +-0.0350091 0.168257 -0.00164334 +-0.0919787 0.13239 0.0232249 +-0.0781961 0.0730005 -0.00359699 +0.0587114 0.0663183 0.00513779 +-0.0669656 0.147091 -0.0266318 +-0.0880403 0.150094 0.0102212 +-0.0137235 0.0657235 -0.0372342 +-0.0884987 0.102354 0.0183681 +-0.0219433 0.0386564 0.0320445 +-0.0629896 0.0341974 0.0167609 +0.0436977 0.0404602 0.0147575 +-0.0413787 0.124797 0.0224172 +-0.0255118 0.0931431 0.0461963 +-0.0122206 0.175683 -0.0283056 +-0.0580888 0.115436 0.0369297 +-0.0783607 0.150068 -0.00187639 +0.0561422 0.049398 0.0141897 +-0.0334907 0.0932064 0.044455 +-0.0784392 0.144133 0.0443751 +0.0134754 0.0990564 0.0479483 +-0.0673994 0.0396352 0.0118227 +-0.0719379 0.131113 -0.00828186 +-0.0675058 0.060447 0.0122781 +-0.0276134 0.0408758 -0.0294796 +0.0326756 0.117173 0.0132168 +-0.0741715 0.151271 -0.0318825 +0.0191559 0.0577995 0.0486799 +-0.0624968 0.102902 0.0415908 +-0.0467288 0.054632 0.0374442 +0.0400692 0.0773178 -0.00879643 +-0.0293794 0.119962 0.0282913 +0.026315 0.0849274 0.0469361 +0.00747158 0.0458651 0.0478111 +-0.0644149 0.0731789 0.038947 +0.0243686 0.118145 -0.00732959 +0.0357612 0.0614637 -0.0127934 +-0.00578852 0.0784633 -0.0377499 +-0.0177178 0.125534 0.0250034 +-0.0264348 0.0891318 0.0486594 +0.000504451 0.0842848 0.0575158 +0.00240772 0.0390703 -0.0246208 +-0.0401081 0.172699 -0.00896014 +-0.0494967 0.101524 0.042218 +-0.0255895 0.0365546 -0.0292581 +0.0458597 0.0428246 0.0032848 +-0.0627733 0.141026 0.037362 +-0.0278525 0.100136 -0.023576 +0.03144 0.0681325 -0.0188162 +0.0112459 0.129755 0.00240428 +-0.0872718 0.144583 0.0355002 +-0.0552077 0.119827 0.0376818 +-0.0324974 0.0859857 0.0423469 +-0.0872251 0.0950749 0.0256867 +-0.0468678 0.104213 -0.0207743 +-0.0445775 0.0462028 -0.0108205 +-0.0612826 0.0343712 0.0345145 +-0.0144859 0.0951551 0.0535558 +-0.0770239 0.141306 -0.00545257 +-0.0572927 0.0447946 0.0143752 +0.0334156 0.0430777 -0.00456693 +-0.073856 0.154091 -0.0259028 +0.0392277 0.108354 0.00916622 +-0.0254312 0.0379511 0.0211651 +-0.0579761 0.145744 -0.00191597 +0.016043 0.107446 -0.0178315 +0.0243862 0.0955601 0.0459654 +-0.0527854 0.146248 0.0203946 +-0.0908456 0.137855 0.0191944 +-0.0688648 0.111591 0.0438135 +0.00950305 0.108494 0.0403312 +-0.0846701 0.133487 -0.000689201 +-0.0146178 0.161254 -0.0115208 +-0.0517406 0.0704199 0.0388209 +-0.00483682 0.0910121 -0.035647 +-0.0455024 0.0438631 0.0430524 +-0.0269915 0.165366 -0.00760144 +-0.000429299 0.131494 0.0138246 +-0.0108252 0.0340132 -0.0200775 +-0.053792 0.141582 0.0273817 +-0.0807416 0.0720213 0.00853917 +-0.0886543 0.102345 0.0123871 +0.00450201 0.0745047 0.0565768 +-0.0651106 0.120024 0.049809 +-0.0816493 0.14593 0.000178819 +-0.0317919 0.0396266 0.0512352 +-0.0868829 0.105004 0.0193534 +-0.0587854 0.0839965 -0.0207846 +-0.0568787 0.10406 -0.0186489 +0.0234195 0.0349614 0.0211471 +-0.0247363 0.0683356 -0.0352871 +-0.0124919 0.105832 0.0432095 +0.040945 0.0957511 0.0281635 +-0.0357042 0.0681118 -0.016092 +0.0393973 0.0899152 -0.0117774 +-0.00550412 0.0547964 0.0538028 +0.0275305 0.105074 -0.0152759 +0.0436438 0.0973161 0.0031761 +-0.0642775 0.0356785 0.0173446 +-0.0578787 0.118384 0.0390612 +-0.0235304 0.111308 0.039012 +-0.0248685 0.10443 -0.0231858 +0.0332298 0.0870923 -0.0186827 +-0.050788 0.13247 -0.00197537 +0.0485095 0.0723104 0.0188157 +0.0122831 0.123395 -0.0089862 +0.0075079 0.0786108 0.055765 +0.00110358 0.114412 -0.0192684 +-0.0434472 0.0344528 0.0312293 +0.0149724 0.0740286 0.0533099 +-0.0773286 0.0696655 0.0199272 +-0.000294503 0.124716 -0.00828566 +0.0391665 0.0916193 -0.0109453 +-0.0671371 0.169442 -0.0570354 +-0.0101504 0.0993437 0.0489973 +-0.0383111 0.172675 -0.0109203 +-0.048519 0.137086 0.0153953 +0.0537553 0.0686728 0.0251859 +-0.0642372 0.158555 -0.0140759 +-0.0177679 0.0959988 0.0511065 +-0.071022 0.0408196 0.00705143 +-0.0272272 0.0562777 -0.0264072 +-0.0594982 0.10293 0.0419773 +-0.0516777 0.0668198 0.0365892 +-0.00645905 0.128953 0.0260767 +0.0161504 0.121694 -0.0091598 +0.0437177 0.0457281 0.0283091 +-0.092911 0.118706 0.0113064 +0.0110654 0.0346569 0.0243461 +-0.0131306 0.0351789 0.049391 +0.0159998 0.123366 -0.00698095 +-0.0668407 0.0952437 -0.0171577 +-0.071815 0.0936645 -0.0155813 +-0.0350082 0.162373 -0.00163299 +-0.00952557 0.169814 -0.0256004 +-0.0483792 0.0345623 0.0353569 +0.042732 0.0733313 -0.00479409 +-0.0838195 0.113254 0.0462465 +-0.0700699 0.0415411 0.00206928 +-0.0834164 0.110194 0.0380909 +0.0395682 0.0582726 0.0307001 +-0.0527297 0.0738092 -0.0169322 +-0.0800112 0.0826849 -0.00756298 +0.0378591 0.102628 -0.00683982 +-0.010049 0.165099 -0.0207588 +-0.0214981 0.0486638 0.0490621 +-0.0429934 0.0337652 -0.0113325 +-0.000805756 0.0881637 -0.035184 +-0.0796191 0.0899783 0.0351979 +-0.0774871 0.138654 0.0489668 +-0.0910383 0.131037 0.0312282 +-0.0353528 0.121762 0.0276148 +-0.0692517 0.16944 -0.0530112 +-0.0314965 0.0760483 0.040909 +0.0238425 0.124265 0.00565298 +0.00628938 0.0341841 -0.018778 +-0.0581165 0.0576994 0.00562055 +0.0291881 0.120758 0.0119009 +-0.0722612 0.0718535 0.0331389 +0.00962203 0.129808 0.0232185 +-0.0350797 0.159271 -0.0126349 +-0.0536324 0.0335534 0.00133593 +-0.0104359 0.0944019 -0.0340934 +-0.00347107 0.112728 -0.01944 +0.0492065 0.0445737 0.00425603 +-0.014689 0.0555534 -0.0339367 +-0.0729302 0.110914 0.0452396 +0.0128104 0.0891816 -0.030491 +0.0173644 0.052219 -0.0267492 +-0.0755038 0.138646 0.0489499 +-0.0664863 0.0657678 0.0290911 +0.014321 0.0608889 -0.0289153 +-0.0109854 0.0891937 -0.0368255 +-0.0714642 0.155388 -0.0429121 +-0.0674015 0.178779 -0.0526749 +-0.0136021 0.0406665 -0.0268707 +-0.0656159 0.148667 -0.029991 +-0.0795217 0.0705829 0.00954625 +-0.0757838 0.06757 0.0150388 +-0.0619636 0.125289 -0.00856668 +-0.0639176 0.153606 -0.0366205 +-0.0839617 0.114292 0.0471508 +-0.0125655 0.164041 -0.0130929 +-0.0519903 0.161388 0.00628165 +0.0020129 0.0391581 -0.00540617 +-0.0585951 0.0582039 0.0052961 +0.034843 0.0862437 0.0399362 +-0.0416697 0.0377451 -0.0272469 +0.0488349 0.0718069 0.020409 +0.0223863 0.0449715 0.0408911 +-0.0822334 0.107404 -0.00162196 +-0.0602698 0.154572 0.0280125 +0.0297856 0.120093 0.00926746 +-0.0669649 0.131148 -0.00876196 +-0.0800697 0.154441 0.0255089 +-0.0849288 0.12649 -0.00334252 +-0.000500036 0.0952296 0.0545194 +0.0151613 0.0863718 -0.029541 +0.0388132 0.0794166 0.0350891 +-0.0171133 0.0390763 0.0521827 +-0.0784063 0.0886978 0.0368492 +-0.0643001 0.179479 -0.0601392 +-0.0766538 0.11399 -0.00481419 +-0.016912 0.0931258 -0.0348233 +0.0379841 0.0406211 -0.00115448 +-0.0331507 0.0821697 -0.0275285 +0.0162383 0.0953367 0.0482094 +-0.0326141 0.0638332 -0.0174509 +-0.0725041 0.146981 0.0423864 +-0.0910261 0.12541 0.00626868 +-0.0833424 0.104748 -0.00163012 +0.0153058 0.128412 0.00248962 +0.0403512 0.038719 0.00830945 +-0.0325027 0.0603855 0.0384943 +-0.0195554 0.0387278 -0.0149268 +-0.0839725 0.0897798 0.0296574 +-0.00149888 0.0634085 0.0566876 +0.0387554 0.108357 0.00416438 +-0.0444079 0.0409084 -0.0203048 +-0.0868827 0.0896245 0.0255163 +0.0430409 0.10011 0.0131585 +0.0194835 0.105739 0.0423148 +0.032957 0.115724 0.0233075 +-0.0114871 0.063283 0.055206 +-0.0528865 0.15117 0.0191272 +0.0045048 0.104341 0.0428855 +0.00104791 0.0346359 -0.0164332 +-0.0674529 0.180926 -0.0583799 +-0.0344427 0.15352 -0.00733684 +0.0397392 0.0658643 0.0327972 +-0.0465986 0.120315 -0.0132329 +0.015269 0.034844 0.035887 +-0.0554963 0.0791301 0.0442202 +-0.0342911 0.0473692 0.0421968 +-0.0842876 0.108899 0.00336188 +-0.0262668 0.179961 -0.0169689 +-0.0836964 0.0763445 0.00752427 +-0.0696635 0.159559 -0.0499324 +-0.0661058 0.151041 -0.0375744 +-0.0455019 0.122005 0.0261109 +-0.0890685 0.0969888 0.0194042 +-0.0946116 0.124177 0.0212718 +0.00351301 0.0828608 0.0571024 +-0.0555168 0.154658 0.0152234 +0.00450223 0.0730917 0.0563795 +-0.0125112 0.037888 -0.0164908 +-0.0595378 0.0337212 0.0161226 +-0.0645332 0.120008 0.0489179 +-0.0396568 0.0577566 -0.0113194 +-0.052454 0.13854 0.0254099 +-0.0106577 0.165418 -0.0198106 +-0.0477868 0.0855382 -0.0218048 +-0.07021 0.168534 -0.0249229 +0.0345025 0.0454126 0.0301845 +-0.0261438 0.168232 -0.0181898 +-0.0685956 0.0422314 0.00876662 +0.00130397 0.128647 -0.00252095 +-0.0558871 0.108356 -0.0181276 +-0.0163928 0.0384645 -0.00103951 +-0.0364756 0.0917702 0.0440382 +0.0409317 0.0971197 -0.00479362 +-0.015772 0.160715 -0.00958045 +-0.0428613 0.102811 -0.0212634 +-0.0285136 0.112565 0.0358423 +0.0484971 0.0678077 0.0264809 +-0.0319101 0.121969 -0.00695975 +-0.0200308 0.127492 0.00809368 +-0.0860481 0.114371 0.00228673 +-0.0597203 0.0638916 0.0303834 +0.00627327 0.0682324 -0.0325665 +0.0114155 0.128646 -0.000626619 +-0.0516778 0.140064 0.0213757 +-0.0218071 0.110009 -0.0205036 +-0.0218161 0.0798852 -0.0388524 +-0.02847 0.045966 0.0500228 +0.0429765 0.0987175 0.0181666 +-0.0795395 0.117686 0.0497856 +0.0342026 0.113899 0.000840527 +0.0067112 0.0353739 0.0246266 +0.0402464 0.0618954 -0.00472398 +-0.049455 0.118007 0.0316443 +-0.0442176 0.170815 -0.00391429 +0.00731658 0.0846292 0.0563131 +-0.0542668 0.0504201 -0.00539584 +-0.00648076 0.0969085 -0.030657 +0.0597202 0.067814 0.0181758 +-0.0267919 0.0380272 0.00817341 +-0.0702433 0.163232 -0.0134117 +0.0368364 0.0754262 0.037436 +-0.077497 0.168713 -0.0313178 +0.00996165 0.130854 0.00764162 +0.0133618 0.0523173 -0.0278769 +-0.0337147 0.120592 -0.00951232 +-0.0398766 0.113891 -0.0165093 +-0.089592 0.111931 0.0163329 +-0.0841359 0.0832101 0.027497 +-0.0848856 0.0792043 0.0194951 +-0.0291817 0.0832547 -0.0346104 +0.013224 0.0341678 -0.000459678 +-0.00759782 0.103673 0.0436498 +-0.0514921 0.0804912 0.0440592 +-0.0929632 0.124088 0.0102675 +-0.0586925 0.0677294 -0.0118268 +0.0392263 0.0874331 0.033936 +-0.052704 0.143169 0.0214165 +-0.0286941 0.0380883 0.0293671 +0.0183138 0.0348993 0.0256062 +-0.0644855 0.101502 0.0419335 +-0.0547363 0.159762 -0.000811248 +0.0123244 0.0567269 -0.0296218 +0.0294314 0.0509988 -0.0157519 +0.0386176 0.0874608 0.0348475 +-0.0759101 0.148612 -0.0128604 +0.0152406 0.0723235 -0.0303843 +-0.0475913 0.133999 0.00741747 +-0.0109726 0.115573 -0.0164387 +-0.040716 0.0681271 -0.0158645 +-0.000345107 0.127203 0.0297544 +-0.0856388 0.100529 0.0267624 +0.0372748 0.0576283 0.0326444 +0.0454709 0.0664599 0.0266758 +-0.040383 0.152127 0.00460721 +-0.0503264 0.131112 0.0307063 +-0.061863 0.0953699 -0.0186332 +-0.0356336 0.11996 -0.0108661 +-0.000498349 0.118323 0.0391474 +-0.00744633 0.0386202 0.0260498 +-0.0702648 0.156758 -0.047919 +-0.0607772 0.146055 -0.00361746 +-0.0557733 0.0797194 -0.0205764 +-0.0286229 0.0450027 -0.0280846 +-0.0400285 0.0339876 -0.0295458 +-0.0244818 0.0974513 0.0444604 +-0.0736592 0.0887741 0.0405778 +-0.0626256 0.150596 -0.021578 +-0.0455006 0.117978 0.0306048 +-0.0153159 0.119411 -0.012435 +0.00132313 0.0358703 0.0464707 +-0.0231138 0.0666037 0.0460408 +-0.0487946 0.0869761 -0.0218357 +0.0312031 0.0842875 -0.0196213 +-0.0866673 0.109085 0.0143521 +-0.0716243 0.157487 -0.00225608 +0.0404941 0.0555582 0.0318463 +-0.0624591 0.155071 0.0054624 +-0.043713 0.0695592 -0.0168487 +0.00662363 0.128671 -0.00261559 +0.0292045 0.0356392 0.0180684 +0.0152063 0.0878077 -0.0294658 +0.0560899 0.059136 0.000193317 +0.0162996 0.0623114 -0.0287447 +0.00333411 0.0539266 -0.0303683 +-0.0212016 0.0383732 -7.87452e-05 +-0.0683674 0.147186 -0.0280671 +-0.0614001 0.124084 0.0428232 +-0.0273522 0.0939518 -0.0257303 +-0.0526652 0.0647199 -0.0102 +-0.032486 0.0449059 0.0475402 +-0.0090473 0.168146 -0.0217175 +-0.069891 0.119438 -0.0086356 +-0.0744393 0.114503 0.0509494 +-0.0648928 0.0350374 0.038379 +-0.00019365 0.125094 0.0326823 +-0.039166 0.0355671 -0.0293815 +-0.0258209 0.0692735 0.0430043 +-0.0620187 0.175667 -0.057604 +-0.0903815 0.130904 0.00623191 +-0.00457753 0.11466 -0.0174869 +-0.0733982 0.114573 0.051125 +0.00137655 0.0380516 0.0229424 +-0.0197661 0.0728664 -0.0388949 +-0.0370853 0.162227 -0.0135318 +-0.0166846 0.109701 -0.0201927 +-0.0564987 0.0932477 0.0451284 +-0.086761 0.084678 0.016478 +-0.0201321 0.0568083 0.0475876 +-0.0893331 0.111939 0.012355 +-0.0291964 0.162421 -0.00376774 +-0.0840799 0.143223 0.00416483 +-0.0550692 0.121281 0.0379498 +-0.0258999 0.0382697 0.0279803 +-0.0881372 0.150234 0.0261027 +-0.0189632 0.0385431 -0.0165058 +0.0252198 0.0478964 -0.0186081 +-0.0250024 0.118057 -0.0129436 +-0.0341053 0.162392 -0.00207929 +-0.0455587 0.0461599 -0.0105245 +-0.0673284 0.11863 0.0518333 +-0.0767393 0.157602 -0.0105393 +-0.0460199 0.0377083 0.0451098 +0.00937824 0.0346871 0.0203526 +-0.0232543 0.181611 -0.01087 +-0.0185423 0.0342292 -0.0199208 +0.0094823 0.034855 0.0256576 +-0.00349094 0.060529 0.0547186 +-0.0536823 0.0678463 -0.0129474 +0.0573543 0.0687146 0.022093 +0.0297466 0.036015 0.0196643 +0.0183828 0.0447123 -0.0227438 +-0.00451438 0.1296 0.000561158 +-0.0575172 0.037335 -0.0101901 +-0.0273178 0.113609 -0.0162558 +-0.0127855 0.0392769 0.0369668 +0.0359154 0.0915824 -0.0149202 +-0.0321871 0.0680263 -0.0214501 +0.0373115 0.0673123 0.0362946 +-0.0482709 0.0345995 0.0405757 +-0.0586992 0.142676 -0.00307276 +-0.0720231 0.149543 -0.0391183 +-0.0926193 0.122848 0.0312739 +-0.00649959 0.103045 0.0436802 +-0.0172605 0.128293 0.0149127 +0.0500544 0.0553974 0.0300563 +-0.0459009 0.131661 0.0191601 +-0.0355139 0.176726 -0.00796363 +-0.0132739 0.162396 -0.014817 +-0.0205091 0.112696 0.0389743 +0.0400974 0.0943736 -0.00783899 +0.0445099 0.0945603 0.0161557 +-0.00940844 0.100291 -0.0242411 +-0.0880121 0.147225 0.0305337 +-0.0134729 0.17718 -0.0214028 +0.0289055 0.0408264 0.0297172 +-0.0386238 0.0335154 -0.0250853 +-0.0474847 0.0931518 0.0438057 +0.0385195 0.109282 0.00815775 +-0.0094889 0.119647 0.0372435 +-0.0558334 0.0358523 0.0464479 +0.0391497 0.108397 0.00837586 +-0.0166742 0.0668915 0.0537111 +-0.0514343 0.0647808 0.0348885 +-0.0506054 0.0575708 -0.00965819 +0.0186225 0.0355557 -0.00967449 +-0.0507888 0.0855066 -0.0215873 +-0.0563207 0.0562341 0.00763908 +0.00416104 0.0393786 0.0331643 +0.00410872 0.110162 -0.02034 +-0.0326921 0.152804 -0.00294992 +-0.0105902 0.0385498 0.00372703 +-0.0450772 0.0337168 -0.000691764 +0.00110427 0.111585 -0.0201254 +-0.086661 0.123026 0.0482846 +-0.00349688 0.0633763 0.0563118 +0.0181674 0.0959966 -0.023265 +0.0171824 0.126495 -0.000336309 +0.0349695 0.0577828 0.0363582 +-0.0893883 0.0956403 0.0164184 +-0.0132244 0.172771 -0.0193112 +-0.0115098 0.0702302 0.0553956 +0.0292762 0.0431552 0.0314362 +0.0355897 0.0411906 0.0271165 +-0.0396848 0.0344413 0.0355548 +-0.0488762 0.0335766 0.000473902 +-0.0845392 0.0778023 0.0145171 +-0.0600467 0.0342661 0.0313871 +-0.0484946 0.156406 0.00957752 +-0.0435279 0.0506014 0.0392212 +-0.0581322 0.0624985 0.0284102 +-0.0319273 0.126498 0.0125244 +-0.0692254 0.124258 0.0526584 +0.0346263 0.114673 0.0139267 +-0.0707453 0.113137 0.049314 +0.0440515 0.0722274 0.0248494 +-0.0190238 0.0384735 0.0274147 +0.0318733 0.11664 0.0243218 +-0.00980958 0.166665 -0.0207735 +-0.075878 0.0954761 0.0383509 +0.04237 0.0533961 -0.00679891 +-0.00515103 0.127241 0.0295045 +-0.0386117 0.0406767 0.0425487 +0.0591522 0.0552732 0.011174 +0.0399613 0.0806226 0.0334139 +-0.0892353 0.14446 0.0304266 +-0.0104754 0.127368 -0.00300647 +-0.0635158 0.162004 -0.0583208 +-0.0801984 0.0868229 -0.00856132 +-0.0600399 0.13696 -0.00647222 +-0.0777335 0.153443 0.0307864 +-0.046469 0.119345 0.0289808 +-0.0313084 0.126018 0.00688499 +-0.0190244 0.0385858 -0.00538325 +-0.0698329 0.112058 0.0465849 +-0.0761752 0.110468 0.0448594 +0.0607736 0.0651167 0.0161629 +-0.0738077 0.102191 0.0374953 +-0.0406116 0.0337811 0.00738645 +-0.0152574 0.166467 -0.0199789 +0.0135127 0.0860479 0.0530247 +-0.072308 0.159721 -0.00687103 +0.00549414 0.130728 0.00313392 +-0.00649655 0.0870315 0.0570873 +-0.0353742 0.125928 -0.00196324 +0.00551011 0.0870055 0.0566199 +0.00569172 0.093878 -0.0314287 +0.0453353 0.0533808 -0.00616451 +-0.0788788 0.16526 -0.0309581 +0.0122616 0.0765812 -0.0308581 +-0.0471876 0.131943 0.0231102 +0.0442177 0.0860807 -0.00279659 +-0.0735334 0.165176 -0.017728 +-0.0896904 0.116203 0.0443945 +-0.0887705 0.0969872 0.0214096 +-0.0201887 0.0754016 0.0541402 +0.0203245 0.0636 -0.0272806 +-0.0513256 0.0345659 0.0399502 +-0.0461113 0.034482 0.0324006 +-0.0773794 0.109459 0.0418273 +0.0262228 0.0747294 -0.0245497 +-0.0281178 0.0845911 -0.0356125 +-0.029049 0.0511502 0.0411139 +-0.0685509 0.065132 0.0256966 +-0.0660181 0.127026 0.048508 +-0.0475948 0.0403553 0.044655 +-0.0711998 0.15079 -0.0434624 +0.0346942 0.0401467 0.0260507 +-0.0803051 0.0719229 0.0175051 +0.0266708 0.121701 0.00384182 +-0.0637803 0.118542 0.0465326 +0.0257185 0.0699313 0.0441746 +-0.0865836 0.11378 0.0451954 +-0.0543656 0.153368 0.0199938 +-0.0147843 0.0981951 -0.0260468 +-0.0480746 0.134034 0.00539884 +-0.0172971 0.0386165 -0.00691824 +0.024363 0.0867852 -0.0239669 +0.000502788 0.056275 0.0546165 +0.0460119 0.0750141 0.00420589 +-0.0813458 0.154098 0.0250842 +-0.0504992 0.111154 0.0370407 +0.0480441 0.0725423 0.0171549 +0.0177377 0.0821568 0.0520978 +-0.0634907 0.0833477 0.0441845 +-0.0287709 0.04365 -0.0290051 +0.0412886 0.0858436 -0.00978207 +-0.0434867 0.0959016 0.0426578 +-0.0685902 0.112767 0.0465657 +0.0446015 0.0889424 0.0221651 +0.0387218 0.0993392 0.0297824 +-0.0569101 0.0984236 -0.0203516 +0.0460228 0.0834207 0.0061859 +-0.0608711 0.101136 -0.0186334 +0.0198592 0.123572 0.0284223 +-0.0670185 0.155095 -0.00202392 +0.00194178 0.0353485 0.0200578 +-0.0202225 0.0381837 0.0220241 +0.0372544 0.111046 0.00772111 +-0.0226761 0.0552382 -0.0304344 +-0.0500773 0.15315 -0.00486218 +0.0361622 0.075448 0.0382492 +0.00638813 0.0448624 -0.0253374 +0.0240783 0.123806 0.00430528 +-0.0874625 0.123933 -0.000723767 +0.0191746 0.064523 0.0487473 +-0.0528554 0.116872 0.0339893 +0.0012658 0.0697321 -0.0339789 +0.0363552 0.112269 0.0088181 +-0.0336364 0.0836212 -0.0255231 +0.0394621 0.0820907 0.0342997 +-0.0759857 0.112794 0.0483899 +0.042364 0.0505846 -0.00668018 +-0.0878291 0.0895228 0.0236162 +-0.0717396 0.156144 0.0122972 +-0.0118777 0.107304 -0.0220947 +-0.0518036 0.0898543 -0.0220029 +-0.0605307 0.142151 -0.00455603 +-0.00730388 0.0394625 0.048838 +-0.0695099 0.151355 -0.0447129 +0.0461391 0.0820336 0.0131698 +-0.0680095 0.151244 0.0371953 +-0.0696447 0.155522 0.00577511 +0.0106458 0.0343542 -0.00488721 +-0.0717447 0.165221 -0.0449739 +0.00872274 0.0346011 0.0383625 +-0.0601559 0.0472008 0.00728305 +-0.072526 0.149972 -0.0424686 +-0.0921507 0.129567 0.0102504 +-0.0195451 0.0382679 0.00943 +0.017351 0.0351839 -0.014686 +0.026638 0.0619848 -0.0226053 +-0.0779425 0.0757661 -0.00656744 +0.0456648 0.0834028 0.0181693 +-0.00238392 0.0391586 -0.00815532 +-0.0760947 0.171183 -0.0343205 +-0.037685 0.127343 0.0163262 +0.0200653 0.084847 0.0502217 +-0.0576821 0.0438911 0.0236882 +-0.00181158 0.0365903 0.0109133 +-0.0227414 0.0640418 -0.0345473 +-0.0607804 0.0397294 0.0180031 +0.00451899 0.0966593 -0.0283637 +-0.00904759 0.0994069 0.0493883 +0.036694 0.0368281 0.0111245 +-0.0476151 0.0378648 -0.0125385 +-0.0374934 0.0620193 0.0412021 +-0.0678369 0.0706443 0.0351197 +0.0262359 0.122255 0.0222063 +-0.0258834 0.0347926 0.045205 +-0.0730191 0.0808411 -0.0145801 +0.0272041 0.0968528 0.0430049 +-0.0387216 0.0710357 -0.0169218 +-0.0802983 0.0953773 0.0342868 +-0.0928216 0.122866 0.0342742 +0.0288283 0.120572 0.00606361 +-0.0872644 0.139206 0.0412952 +-0.0528885 0.108408 -0.0187758 +-0.0614742 0.149784 0.0364078 +-0.0888928 0.113895 0.0428033 +0.0133289 0.0681229 -0.0310343 +-0.000536732 0.10034 0.0474846 +0.0582707 0.0579579 0.00417743 +-0.0896629 0.124003 0.00427429 +-0.0333755 0.0483636 -0.0203394 +-0.0335104 0.169764 -0.00293532 +-0.0488446 0.119728 0.0310062 +0.0426741 0.0972641 0.0231497 +-0.0441044 0.0451364 -0.0122986 +-0.059855 0.0594826 0.0200848 +0.0270691 0.0942437 0.0445649 +-0.0896385 0.0969877 0.0134181 +-0.0456599 0.0636306 -0.0135866 +0.0575548 0.053733 0.00618309 +-0.054499 0.0776179 0.0432703 +0.0434163 0.0464179 0.0294988 +-0.0134899 0.0951663 0.0534531 +0.0324423 0.0754774 0.0416539 +-0.0117218 0.0382705 0.0200729 +-0.0308456 0.0396262 0.0517145 +0.0564645 0.0594668 0.0252844 +-0.0475135 0.0491287 0.0385522 +-0.0396908 0.0651397 -0.0142325 +0.0201781 0.0351992 0.0293411 +-0.0219159 0.175693 -0.0142737 +-0.0688718 0.063973 0.0231175 +0.0174279 0.12392 0.0289777 +-0.0699032 0.0687756 0.0310328 +-0.0528961 0.143026 -0.000455911 +-0.0475121 0.0438565 0.0432608 +-0.0275879 0.0384125 -0.00879832 +0.0421339 0.102871 0.00816377 +0.0276939 0.085014 -0.0220629 +-0.0593718 0.0422854 0.0165091 +0.0245725 0.122909 0.0244414 +0.00141552 0.0990584 0.0500955 +-0.0208664 0.103024 -0.023442 +-0.04595 0.0351008 -0.0224117 +0.0425933 0.066459 0.0273252 +-0.085327 0.0926016 -0.00256332 +-0.0496528 0.0345916 0.0385506 +-0.023191 0.178657 -0.0125853 +-0.0179257 0.0971306 -0.0269629 +0.0383787 0.0575308 -0.00558257 +-0.0190955 0.0939751 -0.033709 +-0.0659978 0.135528 -0.00820667 +-0.0379695 0.0348544 -0.0150276 +0.0231948 0.0344554 0.00500709 +-0.0577114 0.148197 0.0324041 +0.0473189 0.0638822 -0.00202275 +-0.091122 0.115466 0.0410527 +-0.0499316 0.141822 0.00385784 +-0.0663647 0.0360087 0.0372253 +-0.0453211 0.0345932 0.035979 +-0.00367712 0.0569332 -0.0329252 +-0.0883137 0.103697 0.0153744 +0.0333218 0.0981688 0.0378146 +0.0206459 0.0429683 -0.0197059 +-0.0718069 0.0887788 0.0415418 +-0.050581 0.0445938 -0.00942218 +-0.0589701 0.121961 -0.00876657 +-0.0786152 0.163841 -0.0309629 +-0.0919702 0.114664 0.0123319 +-0.0387263 0.127561 -0.000266265 +0.0573405 0.0635192 0.0248021 +-0.0778913 0.126656 -0.00702073 +-0.0685283 0.0434892 0.00727271 +-0.0779351 0.161108 -0.0209335 +-0.0892037 0.0956419 0.0194144 +-0.091675 0.147474 0.0191435 +0.00817319 0.0832888 0.0558122 +-0.051142 0.0627417 0.0330975 +0.00546913 0.116627 -0.0176566 +-0.0278605 0.124718 0.0184442 +-0.0689992 0.150311 0.0384044 +-0.0690062 0.162382 -0.0519693 +-0.00661995 0.130084 0.0216557 +0.0403849 0.0533789 -0.00673496 +0.0156377 0.0348863 0.0377268 +0.0577131 0.0523367 0.00917793 +-0.00120988 0.105335 0.044053 +-0.00579434 0.0351694 0.0474261 +0.0411666 0.0833385 0.031438 +-0.0325019 0.0988116 0.0438807 +0.00307304 0.124054 -0.00961404 +-0.0350636 0.0383682 -0.0121121 +-0.073931 0.128192 -0.0084465 +0.015055 0.123588 -0.00721903 +0.0455542 0.0875891 0.00417683 +-0.006733 0.0684593 -0.0359965 +0.00394905 0.100531 -0.0224465 +-0.0399008 0.128531 0.0110866 +-0.0778707 0.177255 -0.0480374 +-0.0310993 0.177108 -0.0141677 +-0.0307989 0.0833965 -0.031578 +0.00828982 0.0846467 0.0559983 +-0.0926147 0.121379 0.00928006 +-0.0309131 0.0848198 -0.0305724 +-0.0610919 0.155915 0.0160896 +0.0269409 0.117743 0.0296345 +-0.029909 0.0904807 -0.0265953 +0.0341142 0.0605859 0.0386759 +0.04958 0.0652138 -0.00133913 +-0.0406916 0.0651596 -0.014333 +-0.0186192 0.0393436 -0.0280481 +-0.0321414 0.16968 -0.0161315 +-0.0303394 0.0344325 -0.0205625 +-0.0749113 0.125246 -0.00804661 +0.0179783 0.035483 -0.0126728 +-0.0572916 0.0479655 -0.00237378 +-0.030388 0.0876244 -0.0295653 +-0.00273996 0.130454 0.0216129 +-0.0785777 0.0907895 -0.0106208 +-0.0237519 0.0683934 -0.0360687 +0.0305158 0.11943 0.00953878 +0.0436886 0.0777182 0.0262206 +-0.00223658 0.0383059 0.0473338 +-0.0174973 0.104415 0.0431217 +0.045327 0.0519476 -0.00589943 +-0.022701 0.0611501 -0.0334866 +-0.0334865 0.126881 0.00753677 +0.0458812 0.084809 0.00618736 +-0.0775185 0.147451 0.0411778 +-0.00849166 0.110041 0.0429425 +-0.00827497 0.0389568 -0.00728452 +-0.0154767 0.0545272 0.0507241 +0.0455115 0.0861913 0.0171661 +-0.0286176 0.124173 0.0196508 +-0.0903937 0.142028 0.0281621 +-0.00750142 0.0590729 0.0550185 +-0.0691508 0.152358 -0.047074 +-0.00484252 0.0384695 0.0194856 +-0.00149467 0.116953 0.0400314 +-0.0148242 0.128616 0.018702 +-0.00749757 0.0939067 0.0556187 +0.031866 0.115189 -0.00211013 +-0.0515259 0.0439564 0.0445165 +-0.0773104 0.159761 -0.0159076 +0.0205013 0.108449 0.0395681 +-0.0648774 0.159303 -0.0143091 +0.0267364 0.0606633 -0.022785 +0.00150878 0.0883997 0.0564367 +-0.0659091 0.06022 0.0163937 +-0.0625921 0.1213 0.0447428 +-0.0789765 0.135392 -0.00472816 +-0.0709567 0.0767623 0.0380194 +-0.0506142 0.0560954 -0.00917258 +-0.0707687 0.155356 -0.0469258 +-0.0675837 0.112197 0.043642 +-0.0159686 0.128428 0.0182857 +-0.0564715 0.132545 0.0359114 +-0.044247 0.157947 0.00609665 +-0.011089 0.038804 -0.005846 +-0.0380666 0.0385186 -0.00730796 +0.0253529 0.0520143 0.0399629 +0.00465347 0.0341223 0.0126365 +-0.0905147 0.136459 0.016202 +-0.0184793 0.0336465 -0.023124 +0.0165026 0.118175 0.0355154 +0.0109305 0.0685438 0.0544088 +-0.00849797 0.0952525 0.0545557 +-0.050269 0.11691 0.032477 +-0.0301947 0.125922 0.0102205 +-0.0914405 0.117414 0.0273008 +-0.0231534 0.0352107 0.0523184 +-0.0922901 0.125582 0.0342578 +-0.0703512 0.170836 -0.0520339 +-0.0881528 0.129472 0.0022725 +-0.0125497 0.0445369 0.0499253 +0.0104221 0.127848 0.0278469 +-0.0114754 0.0546403 0.0519269 +-0.0665146 0.16661 -0.0580261 +-0.0384984 0.169734 0.00180247 +0.0290438 0.0509642 -0.0167532 +0.0292682 0.0673021 0.0422638 +-0.0643695 0.149877 -0.0298747 +-0.0741326 0.180484 -0.0536706 +-0.0484658 0.144752 0.00741107 +0.02369 0.10485 -0.01704 +0.0383652 0.101327 -0.00724085 +-0.0516205 0.0604369 -0.00991236 +-0.0080847 0.125292 0.0313586 +-0.0117515 0.0714338 -0.0381291 +-0.0358096 0.12684 0.0170169 +-0.0620073 0.155313 -0.0175819 +-0.0861256 0.0937891 0.0274526 +-0.0627193 0.152197 -0.01058 +0.0557633 0.0538969 0.024211 +-0.0501537 0.152144 0.0115744 +-0.0504041 0.0345678 0.0349233 +-0.0622094 0.0655019 0.0319825 +-0.0630381 0.154049 0.0314099 +-0.0864944 0.112209 0.0250023 +-0.0765838 0.178662 -0.0494737 +-0.0880478 0.0908955 0.0237752 +-0.0540202 0.0513732 0.0109294 +0.0220807 0.125732 0.0192313 +0.000503516 0.0856702 0.0573793 +-0.0624013 0.116928 0.041368 +-0.0687693 0.0793684 -0.0165822 +0.0312024 0.114939 -0.00384217 +0.0394926 0.052754 0.032086 +-0.076502 0.12459 0.0526576 +0.0461265 0.0736153 0.00421619 +0.0493794 0.0453908 0.0224152 +0.0422961 0.0655994 0.0276352 +0.0444235 0.0917457 0.0211574 +-0.04812 0.128214 0.028687 +-0.0256026 0.0837946 0.0522209 +-0.00959872 0.0391743 -0.0260833 +0.0242446 0.0762105 -0.0254816 +-0.050147 0.145259 -0.000515581 +-0.0729617 0.136954 -0.00717713 +-0.0321019 0.119786 0.0288381 +-0.0723819 0.152607 -0.0408904 +0.0595077 0.0567056 0.0171693 +-0.0647247 0.16489 -0.0257757 +0.0214018 0.0473917 -0.0206345 +-0.0652965 0.147932 -0.0271042 +0.0404164 0.0647148 -0.00677085 +-0.0440757 0.0335994 -0.0169421 +-0.0658186 0.154852 0.00425231 +-0.0457713 0.156483 0.00739285 +-0.0550494 0.0577849 0.0202145 +-0.0233757 0.163881 -0.00766181 +-0.0658954 0.166616 -0.0590008 +0.0309109 0.0511672 -0.0117352 +0.0380176 0.101228 -0.00786632 +0.0272437 0.0732614 -0.0238068 +-0.0161865 0.0377383 0.0516902 +-0.051271 0.0356477 0.0458842 +-0.0184884 0.107161 0.042158 +0.0143121 0.0753991 0.0540935 +0.012486 0.0990688 0.0481132 +-0.069936 0.13258 -0.0084535 +-0.0324718 0.0546382 0.0373194 +-0.0637186 0.179242 -0.0585917 +-0.0560047 0.159776 0.00109778 +-0.0940215 0.120122 0.0233001 +-0.0734929 0.154069 -0.0299022 +0.0334431 0.0930091 -0.0164312 +-0.0568079 0.0869026 -0.0213473 +0.0600207 0.0595165 0.0181686 +-0.0282716 0.0376885 0.0226211 +-0.0608814 0.102587 -0.0185388 +-0.0689777 0.172299 -0.0388012 +-0.0333033 0.176609 -0.00426163 +-0.0726003 0.145757 -0.0168539 +-0.0351155 0.0460859 0.0430647 +-0.0668221 0.16563 -0.0222317 +0.0223344 0.0535713 -0.0254238 +-0.0555068 0.0341015 0.0254741 +0.0591828 0.0594427 0.0211715 +-0.076476 0.07597 0.0322323 +-0.0548438 0.043635 0.0177242 +-0.0545598 0.0616597 -0.0074577 +-0.0717138 0.073474 0.0353741 +-0.0123858 0.0383448 0.0108168 +-0.0878417 0.140531 0.0102059 +-0.0338438 0.0337316 0.012415 +-0.0362549 0.153841 -0.0082413 +-0.066147 0.0353356 0.0361254 +-0.0149468 0.125073 -0.0044168 +-0.0517378 0.0545135 0.0226244 +-0.0791517 0.0792478 0.0324066 +-0.0311673 0.0386498 -0.0134468 +-0.00138514 0.0391216 -0.00791905 +0.0249209 0.0782259 0.0483953 +-0.0288805 0.079237 0.0443379 +-0.0499299 0.0335056 -0.0106454 +0.000248169 0.0726618 -0.0353693 +-0.00679601 0.100851 0.0456503 +0.00749727 0.121002 0.0360768 +0.0281364 0.0448054 0.035097 +-0.0616338 0.0739295 0.0406212 +-0.0184922 0.11816 0.035496 +-0.0231843 0.0348489 0.0439808 +0.0524989 0.0718135 0.00595977 +-0.0114982 0.0943996 -0.0340943 +-0.0574587 0.045976 0.042703 +0.0272754 0.0703879 -0.0233186 +-0.0208041 0.127131 0.0063587 +-0.0449931 0.152736 -0.00651735 +-0.0154877 0.167822 -0.0210841 +-0.0738833 0.122317 -0.0079807 +0.0163998 0.0834424 0.0519345 +-0.0615988 0.156867 -0.0225865 +-0.0504372 0.0529682 0.0186225 +-0.0607622 0.0781498 -0.0187637 +-0.0208042 0.125974 0.0209606 +-0.0245306 0.112636 0.0373469 +-0.030708 0.121227 -0.00820323 +-0.0511359 0.0502476 0.0206335 +-0.0384993 0.0733372 0.0420402 +-0.0588719 0.102608 -0.018764 +-0.0774969 0.130279 0.0531227 +-0.0375712 0.124334 -0.00748059 +-0.0119956 0.0882297 -0.0377812 +0.0547499 0.0492946 0.00521444 +0.017211 0.088423 -0.0276786 +0.0381646 0.0644978 -0.0107883 +-0.04783 0.0927226 -0.0216222 +-0.0132756 0.0597275 0.0533794 +-0.00158335 0.0361983 -0.0246741 +-0.0612049 0.174131 -0.0607222 +-0.0655175 0.0356165 -0.00754656 +-0.0874441 0.0860134 0.00347726 +-0.00749507 0.10164 0.0441128 +-0.0175041 0.0382782 0.00983265 +0.00351386 0.100332 0.0462561 +0.0252498 0.0645397 -0.0230446 +-0.0717344 0.131221 0.0507858 +0.0525721 0.0648669 -0.000960413 +-0.0901978 0.11358 0.0212183 +-0.0560194 0.129616 -0.00591188 +0.0441279 0.0748554 -0.00179683 +-0.0307721 0.0349136 0.04922 +-0.0554801 0.0452738 0.0437595 +0.000511374 0.0503823 0.0524384 +0.0295573 0.0375392 0.0237122 +-0.00766545 0.0541253 -0.0331554 +-0.0226026 0.0379508 -0.0287016 +-0.0187506 0.162746 -0.0157051 +0.0546767 0.0732977 0.0167178 +0.042064 0.10006 0.0201605 +-0.0889838 0.099691 0.0193911 +-0.0644638 0.129733 0.0437115 +-0.043484 0.0987241 0.0424341 +-0.0252565 0.120536 -0.00953586 +-0.0159529 0.0390542 0.0365141 +-0.0915486 0.143335 0.0161726 +-0.0405267 0.169768 0.0017705 +-0.0726712 0.0651053 0.0195713 +-0.0132255 0.182074 -0.023933 +-0.0456018 0.0629458 0.0388902 +0.0287985 0.0385521 0.0262584 +0.0314095 0.0695437 -0.0187779 +-0.0625738 0.156865 -0.0165766 +0.0106756 0.0489592 0.0485841 +-0.0781956 0.163891 -0.0259488 +0.0262919 0.101687 -0.017683 +-0.0681573 0.180556 -0.0543707 +-0.0464942 0.100125 0.0422537 +-0.0294775 0.17726 -0.00505881 +0.00976325 0.0346476 0.0385339 +0.0351088 0.100136 -0.012024 +0.0398312 0.0992984 0.027798 +-0.0544975 0.080589 0.0448325 +-0.0251898 0.177123 -0.0193397 +-0.00463984 0.12746 -0.00519523 +0.0365694 0.109049 0.0260841 +-0.062967 0.159919 -0.044604 +0.0156331 0.0915267 -0.0269033 +-0.0577811 0.0472143 0.0403119 +-0.086179 0.107645 0.0083646 +-0.00357674 0.0347286 -0.0239915 +-0.0205507 0.066817 0.0505282 +-0.0590047 0.132542 0.0375172 +0.00657766 0.034511 0.0217547 +-0.0730595 0.110042 0.0423406 +-0.0725117 0.163674 -0.014076 +-0.0130193 0.115677 -0.016537 +0.0190348 0.0768352 0.0521916 +0.00221518 0.114462 -0.0193126 +-0.0142885 0.0390252 0.0350884 +-0.0492809 0.152135 0.0110836 +0.0378754 0.0980648 0.0320906 +-0.0377624 0.0420706 0.0430123 +0.00890997 0.125517 0.0316176 +0.00478616 0.0342999 0.00145343 +-0.0220536 0.0952953 -0.0290683 +-0.0883767 0.125344 0.00127971 +-0.055499 0.0761852 0.0427309 +-0.0505039 0.0487703 0.0186583 +0.0374548 0.0781001 0.0366194 +0.00520505 0.129939 3.61829e-05 +-0.0464525 0.146291 0.00643191 +-0.0545162 0.049049 -0.0054035 +-0.0209524 0.0920017 0.0529687 +-0.0534945 0.105667 0.0403502 +-0.0355002 0.174151 -0.00180627 +-0.0654804 0.146553 -0.0219125 +-0.0577458 0.131139 0.0375772 +0.0440584 0.0860884 0.0251529 +0.0484396 0.0486951 -0.00266239 +-0.0510317 0.0544187 0.0196187 +-0.0305049 0.0720397 -0.0305133 +-0.0513349 0.057067 0.0306313 +-0.0444577 0.123407 -0.0104693 +-0.0404418 0.0351129 -0.0289386 +-0.0611441 0.169381 -0.0576009 +-0.0704838 0.120388 0.0533274 +0.00150053 0.0591133 0.0550768 +-0.0504978 0.159322 0.00851944 +-0.0127755 0.126776 0.0267341 +0.00508634 0.0345614 -0.0155701 +-0.0433649 0.150829 -0.00565896 +-0.0276025 0.0888516 -0.0335952 +-0.0536948 0.0661603 -0.0107375 +0.0453129 0.0698237 0.023466 +-0.0407211 0.150643 0.00408479 +0.0111265 0.120476 0.0355761 +0.000791005 0.0398223 0.046536 +0.0460187 0.0482649 0.029417 +-0.0748889 0.119375 -0.00765967 +0.0240318 0.0591603 0.0451764 +0.0102193 0.129407 0.000604352 +-0.0662744 0.179701 -0.0600508 +-0.0165098 0.0772307 0.0561424 +0.0294369 0.0781918 0.0443709 +-0.0510278 0.0474301 0.0166894 +-0.0808293 0.0720933 0.0155437 +0.0139163 0.0953242 -0.0249235 +-0.0756827 0.0823892 -0.0125945 +0.00119778 0.0825383 -0.0355009 +-0.0614832 0.0775692 0.0421583 +-0.0816839 0.0830971 0.0318157 +-0.0257584 0.0736396 0.0456283 +0.0071927 0.124822 -0.00847934 +-0.0749667 0.0683767 0.0215337 +-0.0415307 0.127763 -0.00103989 +0.0217652 0.0862022 0.0491664 +-0.0758742 0.102063 -0.0106997 +0.00933423 0.0567711 -0.0303022 +-0.010684 0.0584354 -0.034314 +-0.0126507 0.0350556 0.0425263 +0.0424994 0.0597124 0.0306347 +-0.0147222 0.0643235 -0.037347 +0.0579415 0.0716454 0.0119821 +-0.000418875 0.0389219 -0.0131688 +-0.0480228 0.144604 0.00545108 +-0.0124881 0.120998 0.0354929 +-0.0941295 0.121483 0.024294 +0.0533093 0.0573451 -0.00263239 +-0.0426699 0.0336999 -0.0149012 +-0.0466248 0.0577591 -0.0115398 +-0.0628785 0.0393963 0.0426563 +-0.072166 0.063706 0.0120556 +-0.0912059 0.14882 0.0151457 +-0.033491 0.0904012 0.0444067 +0.0152459 0.0821521 -0.0296185 +-0.0608506 0.0333964 -0.00541551 +0.0483298 0.0694277 0.0246416 +-0.0144087 0.0383376 0.0158464 +-0.00316996 0.131012 0.0171239 +0.0247594 0.0929114 0.046503 +-0.0615203 0.153356 0.00130737 +-0.0618578 0.099667 -0.0183374 +0.0303629 0.0483136 -0.00765132 +0.00253507 0.0394917 0.0345311 +-0.0713444 0.144531 -0.0156116 +-0.0188175 0.159674 -0.00630165 +-0.0174928 0.111329 0.0404434 +-0.0425002 0.0437706 0.0420539 +0.038489 0.0484512 0.0319961 +-0.011814 0.163592 -0.0157611 +-0.0526941 0.0334208 -0.00928256 +-0.0613494 0.131082 0.0393909 +-0.0276253 0.0450182 -0.0280952 +-0.0449077 0.159414 0.00690868 +0.00747686 0.0474111 0.0493962 +-0.0535025 0.0917839 0.0444757 +0.0372578 0.0658262 -0.0127785 +-0.0616099 0.158421 -0.0325909 +-0.0443417 0.035118 -0.0243716 +0.0228959 0.0358901 0.0147404 +-0.0312846 0.119331 0.0291556 +-0.0748251 0.0906869 -0.0145799 +-0.0607901 0.0839118 -0.0197808 +-0.060035 0.0645406 0.0315175 +-0.0506187 0.0531538 -0.00831388 +0.0189959 0.104672 0.0434338 +-0.0328687 0.10291 -0.0220775 +0.0293781 0.0721886 -0.0217847 +0.0490097 0.0482239 0.0267018 +-0.00202044 0.0386496 0.0235231 +0.00793635 0.0980328 -0.0238123 +-0.0353308 0.0347033 0.016646 +0.00129902 0.039118 0.0292011 +0.0433693 0.0561672 -0.00598915 +0.0455002 0.059749 0.0314265 +-0.0891212 0.0888935 0.0154552 +-0.00853579 0.044404 0.0484956 +0.0227707 0.10612 -0.0163977 +-0.0830074 0.117688 0.0489709 +-0.0652397 0.150467 -0.0337229 +-0.0787271 0.0954037 0.0355432 +0.0320582 0.11345 0.0286813 +-0.0641355 0.160881 -0.0576174 +0.0459242 0.0806108 0.00418728 +0.0093871 0.0434015 -0.0246765 +-0.0501776 0.124028 0.032677 +-0.0486159 0.0547593 -0.0100622 +0.000494108 0.118289 0.0391022 +-0.0267825 0.0768545 -0.0363352 +0.039504 0.0914002 0.0327084 +0.0495572 0.0525985 0.0293193 +-0.0221892 0.177131 -0.0213718 +0.00724524 0.0369774 0.0269173 +0.0174748 0.0934539 0.0481542 +-0.021119 0.180019 -0.0220004 +-0.0938873 0.12827 0.0192438 +-0.0558806 0.138039 -0.00386657 +-0.0754975 0.123189 0.0531282 +-0.0682563 0.169911 -0.0313673 +0.00486454 0.131282 0.0057704 +-0.0544491 0.156028 0.0112408 +0.0259161 0.0713197 0.0444841 +-0.0205993 0.0408181 -0.0286892 +0.0326751 0.0902947 0.0421046 +0.0303546 0.107428 0.0353018 +-0.043641 0.0451148 -0.0133235 +0.0453399 0.0504735 -0.00539794 +-0.0640884 0.160897 -0.0576117 +-0.015926 0.178652 -0.0196554 +0.0285634 0.0463012 0.0357516 +-0.00467538 0.0353718 0.0474871 +0.00649755 0.131366 0.0177838 +-0.0721007 0.175064 -0.0530188 +-0.0454824 0.0959409 0.0431744 +-0.0892808 0.0888643 0.0124572 +0.00219675 0.0376886 0.0234384 +-0.0084105 0.095275 -0.0329664 +-0.0384962 0.11803 0.0312871 +-0.0451864 0.146266 0.00463419 +-0.0870838 0.0846865 0.0114769 +-0.0855325 0.107606 0.0053458 +-0.0457969 0.126831 -0.00605616 +-0.0164306 0.0384009 0.00449856 +-0.0355073 0.0662414 0.0411418 +0.0174851 0.0852069 0.0507856 +0.0160687 0.122524 -0.00804645 +-0.0586545 0.152137 0.0330321 +-0.0294308 0.0847062 -0.0336139 +-0.0725432 0.15415 0.0310449 +0.0567814 0.0724634 0.0130365 +0.0378457 0.0726607 0.0353699 +0.00540963 0.0375924 -0.0240752 +-0.0555707 0.033544 0.017104 +0.0295902 0.119982 0.0063504 +0.0197767 0.104476 -0.0186365 +-0.0484985 0.160789 0.00748776 +-0.0928176 0.120043 0.0102955 +-0.0427809 0.0464775 -0.012357 +-0.0285046 0.0645461 0.0380462 +0.00349921 0.126284 0.0311054 +-0.0670064 0.156281 0.0226936 +-0.0656496 0.0339611 -0.00733584 +-0.00649844 0.0814993 0.0573243 +0.0421622 0.0427592 0.0252421 +-0.0873651 0.0927561 0.00443631 +-0.00151033 0.108645 0.043169 +-0.0908157 0.116185 0.0427025 +0.0200734 0.0372985 0.0402199 +-0.062954 0.125297 -0.00870732 +-0.0633546 0.0720236 0.0383997 +-0.0691914 0.171601 -0.0360136 +-0.0688255 0.0937312 -0.0163709 +-0.0485029 0.112572 0.035725 +-0.00574267 0.0339825 -0.0190499 +-0.0604857 0.094604 0.0446906 +-0.0257335 0.166803 -0.00931015 +-0.0159771 0.186924 -0.0221541 +0.0463322 0.0743214 0.0180018 +0.0030519 0.130996 0.00365966 +-0.0421665 0.16366 -0.0107342 +-0.0225871 0.168294 -0.0117855 +-0.0484917 0.0718083 0.0405326 +0.0122698 0.0710113 -0.031719 +-0.0857101 0.0869161 0.0258492 +-0.0715046 0.0901731 0.0417302 +-0.0699133 0.123828 -0.00875488 +0.0279019 0.110786 -0.0114065 +-0.0354864 0.12379 0.0245568 +0.0305321 0.081181 -0.0200863 +0.0102651 0.128706 0.0263309 +0.0148603 0.0562539 0.0494599 +-0.0366932 0.0665933 -0.0149481 +0.041469 0.0711384 0.0300167 +-0.0554857 0.0834027 0.0450839 +-0.0113051 0.0389162 -0.0134542 +-0.0701665 0.143936 0.0443089 +0.0424986 0.0527982 0.0326152 +0.0132 0.115178 -0.01612 +-0.0566151 0.0335713 0.0115144 +-0.0746759 0.158036 -0.00628607 +-0.0710897 0.0678996 0.0280309 +-0.0684162 0.160948 -0.0539628 +-0.0788405 0.11444 0.0481937 +0.0425653 0.0859482 -0.00679004 +0.00508264 0.128731 0.0273249 +-0.0460392 0.132757 0.0146796 +-0.0644245 0.0335892 0.00631261 +-0.0779562 0.0727271 0.0259414 +-0.0320811 0.1577 -0.0118106 +-0.08561 0.123026 0.0486561 +-0.0183468 0.0445922 0.0521871 +-0.0646788 0.0378404 0.0247428 +-0.09254 0.118824 0.0413658 +0.0439353 0.0973509 0.0141605 +-0.0925657 0.116008 0.0123183 +-0.00476329 0.0770151 -0.03731 +-0.0647922 0.176686 -0.0531637 +-0.0267774 0.122204 0.0247423 +-0.0331437 0.169673 -0.0156322 +-0.0663865 0.0388997 0.0348294 +0.0255945 0.0477251 0.0385093 +0.0336609 0.0968599 0.0382997 +-0.0916539 0.147467 0.0181472 +-0.0336992 0.0435791 0.0473765 +-0.0785063 0.162438 -0.0279579 +-0.0756712 0.0759423 -0.00884701 +-0.0623186 0.155306 -0.0155862 +-0.0754942 0.124603 0.052984 +-0.0710841 0.0626658 0.0113319 +-0.0214966 0.101664 0.0441706 +0.0325091 0.0454335 0.0302933 +0.023348 0.0930459 -0.0224955 +-0.0477168 0.123954 0.0291105 +0.026559 0.119879 -0.0019388 +-0.0671262 0.150692 -0.0396095 +-0.054551 0.0416447 -0.00949548 +-0.0689 0.115705 0.0512836 +0.0420833 0.0409609 0.00227771 +0.021477 0.0961774 0.0469631 +-0.0517663 0.0812234 -0.0211522 +0.0324154 0.0541402 -0.0117355 +-0.0283184 0.0383801 -0.00152859 +-0.0454995 0.122409 -0.0114255 +-0.0786209 0.174303 -0.0444916 +-0.0570614 0.151623 -0.00120922 +0.0242791 0.118022 0.0317589 +-0.0639993 0.0370815 0.0170442 +-0.0395018 0.0733502 0.0421461 +-0.0174724 0.0388154 -0.0145918 +-0.0829949 0.115554 0.048125 +-0.0155328 0.0386551 0.0297691 +-0.00449743 0.110031 0.0429169 +-0.062341 0.164692 -0.0435908 +-0.016985 0.0384848 0.0278228 +0.0153998 0.109294 -0.0177665 +-0.0121134 0.0347053 0.046472 +0.0238752 0.0421864 0.0394869 +-0.0510476 0.139892 0.00172061 +-0.073661 0.147179 -0.0178577 +-0.0673436 0.155169 0.0284164 +-0.0375089 0.0790164 0.0426336 +-0.0881282 0.0888644 0.0224361 +-0.0165385 0.0459978 0.0505746 +0.0187298 0.0489829 0.0426596 +0.00514365 0.0400743 0.045751 +-0.0405081 0.080404 0.0427771 +-0.0559081 0.112628 -0.0165116 +-0.0414824 0.100082 0.0415393 +0.0326734 0.101648 -0.0136311 +0.0591059 0.0677548 0.00712748 +-0.00525238 0.0350087 0.0405181 +0.0272291 0.0788716 -0.0231926 +0.0526679 0.0554283 0.0285725 +-0.074839 0.15964 -0.0289433 +-0.0475589 0.0335011 0.00261705 +0.0224079 0.0809035 0.0500644 +-0.0774544 0.072993 0.0275707 +-0.0817516 0.140386 -0.000790241 +-0.0203273 0.127615 0.0123404 +-0.0570931 0.0535244 0.00162534 +-0.0775213 0.124569 0.0523637 +-0.0267733 0.15662 -0.0020223 +-0.0341168 0.0383136 -0.000825234 +-0.0926373 0.122856 0.0322729 +0.00549857 0.09243 0.054294 +0.0202616 0.0749268 -0.0272874 +0.0133552 0.13008 0.0103074 +0.0423653 0.0519948 -0.00681796 +-0.0627003 0.150649 -0.00857321 +0.0200754 0.0713524 0.0501382 +-0.0182235 0.123174 0.0292543 +-0.0130686 0.183424 -0.0252779 +-0.0128628 0.0896836 -0.0372956 +-0.0301706 0.0421547 -0.0296993 +0.0403707 0.0444834 -0.00362771 +-0.0253772 0.0722169 0.0453002 +-0.0241328 0.0565311 0.0416958 +-0.0657729 0.0378142 0.038507 +-0.0475733 0.0504004 -0.00924022 +0.0347756 0.0548514 0.0342768 +-0.01273 0.098974 -0.0248693 +-0.0749897 0.139866 -0.00647617 +0.0541381 0.0477755 0.0182012 +0.026052 0.121668 0.00219807 +-0.0178133 0.0827451 -0.0392154 +-0.00506384 0.129812 0.0236663 +-0.0022335 0.116052 -0.016996 +0.0194826 0.0892535 0.0485994 +-0.00549695 0.108658 0.0435455 +0.0411799 0.0844321 -0.00979241 +-0.0546525 0.154186 0.0155249 +0.0209039 0.0386887 -0.00868617 +-0.0522987 0.0504261 0.0316576 +-0.00860205 0.0406149 -0.0260948 +-0.0064872 0.119657 0.0377321 +-0.0794636 0.141716 -0.00376694 +-0.0494618 0.0347575 0.043629 +-0.0282938 0.176171 -0.0172378 +-0.0337476 0.119587 0.029726 +-0.0548148 0.0883935 -0.0220325 +-0.0759162 0.179384 -0.0516058 +-0.0444968 0.0747696 0.0424527 +0.0361181 0.111694 0.0216233 +-0.0677747 0.0370061 0.0137537 +-0.0497774 0.0826759 -0.0213753 +0.0238372 0.12269 -3.58731e-05 +-0.0478227 0.148347 -0.00331487 +-0.00860618 0.0968801 -0.0306409 +-0.0545965 0.0575496 0.0196126 +-0.06512 0.0430832 -0.00329452 +-0.0719312 0.128266 -0.00893149 +-0.0409612 0.0344092 -0.00782476 +0.0534457 0.0510274 0.0243391 +0.0276856 0.0494518 -0.0176966 +-0.0336693 0.0607336 -0.0127906 +-0.0284587 0.0446173 0.0507119 +-0.0255118 0.0936195 -0.0293755 +-0.0717668 0.172238 -0.0510285 +-0.047089 0.156143 -0.00736831 +-0.0756553 0.0837701 -0.0135751 +-0.013224 0.172718 -0.0260103 +-0.0301691 0.174141 -0.0165339 +-0.00226303 0.0382357 0.0184109 +0.0412731 0.0417215 0.0241695 +-0.0559192 0.0335546 0.0152404 +0.0277966 0.12141 0.0199376 +-0.0649916 0.0659907 0.0309635 +-0.0512719 0.127504 -0.00467957 +0.0313718 0.118521 0.0155758 +-0.0621134 0.0350003 0.0423988 +0.00602626 0.127371 -0.00517179 +-0.0500909 0.0358963 0.0459805 +-0.0852266 0.0854944 0.0253873 +-0.0209874 0.04034 0.0536055 +-0.0719403 0.179282 -0.0559874 +-0.0521219 0.120842 -0.0117106 +0.0579437 0.0700837 0.0193768 +-0.0786649 0.0764169 0.0296559 +-0.0724896 0.12743 0.0524304 +0.0400371 0.107017 0.0091647 +-0.0677955 0.0355805 0.0137906 +-0.0212083 0.0825271 0.0563448 +0.0305816 0.112813 -0.00758269 +0.0546919 0.0524816 0.0244106 +0.000503407 0.0647904 0.0566018 +-0.0211614 0.183089 -0.0130948 +-0.0364897 0.0648519 0.0414613 +0.00739557 0.0347435 -0.0216037 +-0.091466 0.14613 0.0241501 +-0.0496442 0.0620141 -0.0117058 +-0.0844141 0.083121 -0.000497419 +0.00924009 0.0846665 0.0556174 +-0.00137013 0.0367929 0.00718583 +0.0499211 0.0443554 0.0178724 +-0.0257693 0.158564 -0.0117505 +-0.08951 0.140665 0.0311774 +0.0074706 0.129229 -0.00123166 +0.0318377 0.0822312 0.0425933 +0.0347555 0.0768972 -0.0157225 +-0.0103619 0.179472 -0.0295714 +0.0350602 0.0968439 0.0368099 +0.0192972 0.063662 -0.0278633 +-0.0758841 0.106327 -0.00893896 +0.0225495 0.119713 -0.00701355 +0.0522449 0.0480372 0.0225432 +-0.0142613 0.0350279 0.0492532 +0.0588535 0.0566417 0.00718098 +-0.0834209 0.0911774 0.0304851 +-0.0354827 0.0945899 0.0441989 +0.0491837 0.0442045 0.019604 +-0.0441515 0.0335185 0.00510187 +-0.0605024 0.111127 0.0368734 +-0.0368482 0.0336146 -0.0266993 +0.0043237 0.131753 0.0112849 +-0.0519904 0.135575 0.0286552 +-0.0628904 0.102548 -0.0180123 +-0.0194395 0.062521 0.0495605 +0.0173831 0.0447578 -0.0232543 +-0.0925995 0.118805 0.0322947 +0.00218481 0.0838969 -0.0348518 +0.0331279 0.0428909 0.0287274 +-0.0528013 0.0884055 -0.0219839 +0.0151848 0.115917 -0.0149184 +0.0567976 0.0508328 0.0181941 +-0.0621222 0.0345142 0.0394173 +-0.0642021 0.071089 0.0372614 +-0.0701839 0.0658802 0.0247105 +0.0178908 0.0563588 0.0485803 +0.0392199 0.073038 -0.0108301 +0.0263921 0.0549677 -0.020802 +-0.0858835 0.0833066 0.0204824 +-0.0812999 0.0747823 0.0185535 +0.0025057 0.0688921 0.0558596 +-0.0804035 0.0745659 0.0220984 +-0.0604943 0.0804378 0.0430854 +0.0220864 0.122759 -0.00230579 +0.0416849 0.100037 0.02216 +-0.0387577 0.150948 -0.00516845 +0.0420841 0.090131 -0.00780186 +0.0270265 0.12251 0.0139387 +-0.0715501 0.0763344 0.0374538 +-0.0885696 0.137819 0.0397738 +0.00156461 0.124373 0.0333352 +-0.00526883 0.0355403 -0.0166416 +-0.0769711 0.133968 -0.00621304 +-0.0750334 0.0851031 -0.01456 +-0.00549741 0.0675328 0.0561955 +0.00134414 0.0524973 -0.030237 +-0.0573916 0.0718042 0.0398933 +0.0283911 0.0672932 0.0427559 +-0.0910025 0.133774 0.0232232 +-0.0354998 0.17123 0.000174393 +0.0458285 0.0801218 0.0204223 +-0.0574741 0.0819362 0.0441691 +0.0510603 0.0729911 0.0094016 +-0.0363492 0.0338444 -0.0305686 +-0.024023 0.17718 -0.0120308 +-0.0625429 0.143922 0.0377415 +0.0323895 0.0490788 -0.00667281 +0.00525838 0.123196 -0.010701 +-0.0294162 0.0890096 -0.030595 +0.0479414 0.0588591 -0.00500215 +0.0158474 0.128954 0.00837281 +0.0170299 0.0590745 0.0491032 +0.0534095 0.0553934 0.0278769 +-0.0600285 0.134031 -0.00683616 +-0.0595027 0.0876292 0.04502 +-0.0323351 0.172733 -0.00297212 +-0.0374903 0.172653 -0.000576721 +0.00749482 0.0546914 0.0525351 +0.0383894 0.0519545 -0.00670373 +-0.0331162 0.0436399 0.0481995 +0.0444193 0.0734774 0.000193217 +-0.0392699 0.127033 -0.00231305 +-0.0377966 0.0870844 -0.0227292 +0.0398005 0.0712586 0.0329247 +0.0227875 0.0348957 0.00078699 +-0.0825515 0.0748682 0.00752949 +-0.0162407 0.125507 -0.00287714 +-0.0654856 0.0398574 0.0313799 +-0.0623389 0.163139 -0.0325913 +-0.0686122 0.0432054 0.00454593 +-0.0379623 0.174733 -0.00453553 +-0.0563002 0.154681 0.0207165 +-0.0455391 0.0396225 -0.0172907 +0.033177 0.0592197 0.0390624 +-0.030845 0.0944191 -0.0240931 +0.0149304 0.0913967 0.05159 +-0.0283564 0.125587 0.00796681 +-0.0364861 0.0547872 0.0389196 +-0.0284285 0.0821494 0.0466355 +-0.0626767 0.0346583 0.0408688 +0.0226817 0.0618915 0.0467691 +-0.00273397 0.0346073 0.0449802 +-0.0747362 0.0663817 0.0145125 +-0.0135041 0.11966 0.0364252 +-0.0466771 0.0355018 -0.0172702 +-0.0711048 0.153963 -0.0459144 +-0.0910141 0.11449 0.034742 +-0.0801763 0.0854684 -0.0085384 +-0.0199842 0.183117 -0.0149159 +-0.0705018 0.155741 0.00837641 +-0.0229946 0.0381678 0.00700416 +-0.0428236 0.0913841 -0.0227682 +-0.0679787 0.154919 -0.0513588 +-0.0787367 0.168047 -0.0389551 +-0.0308479 0.0972408 -0.0233409 +-0.0127769 0.0784711 -0.0383296 +-0.0528408 0.0970645 -0.0221327 +0.0578361 0.0662412 0.00314493 +0.0132266 0.0822053 -0.0304726 +-0.058487 0.113928 0.0361856 +-0.0609416 0.0341022 0.0225725 +0.0498583 0.0540108 0.0297623 +-0.00985903 0.128582 0.0248602 +0.0180859 0.068641 0.0507282 +-0.0275932 0.0779206 0.0459339 +-0.0474983 0.11254 0.0358059 +-0.00306313 0.0346488 0.0430839 +-0.0494839 0.141682 0.00839735 +-0.0444006 0.0337168 -0.00238543 +0.0222885 0.0564166 0.0461469 +0.00464996 0.0378242 0.0256263 +0.00823548 0.113838 -0.0186606 +-0.0404969 0.0634536 0.0414219 +0.0464934 0.0638096 0.0291729 +-0.0275092 0.181505 -0.00874152 +-0.0850366 0.134888 0.000298852 +-0.053967 0.0687802 0.0379578 +0.0458863 0.0820184 0.0171704 +-0.0630174 0.113067 -0.0134471 +0.0163641 0.0348027 -0.00791773 +-0.0668226 0.0923514 -0.017257 +-0.073517 0.104058 0.0373151 +-0.0520334 0.0346252 0.0362685 +0.00147793 0.131501 0.00880182 +-0.0874177 0.131128 0.0459004 +-0.0124954 0.103038 0.0437348 +-0.0148129 0.0841518 -0.0390669 +-0.061937 0.111099 -0.0150221 +0.0286115 0.078186 0.0449305 +-0.0884601 0.0976543 0.0226015 +-0.0196643 0.111086 -0.0196461 +-0.0196772 0.178663 -0.0162873 +-0.0220478 0.0811409 0.0558034 +0.00850296 0.118331 -0.0155001 +-0.0404972 0.0506061 0.0393715 +-0.0833705 0.0767799 0.0142875 +-0.085765 0.112351 0.0286477 +0.0363022 0.0619082 0.0365841 +-0.000508059 0.0576316 0.0544767 +-0.089275 0.0969971 0.0184044 +-0.0708142 0.0694524 -0.00574088 +-0.0186131 0.0378854 -0.0277917 +0.0283679 0.103615 -0.0157324 +-0.0354292 0.0472715 0.0405203 +-0.0748611 0.163212 -0.0154286 +-0.0862421 0.14327 0.00816028 +0.0357067 0.0981492 -0.0118335 +0.0223181 0.0592817 -0.0260832 +-0.0625553 0.041701 -0.00649092 +-0.0824187 0.100645 0.0306028 +-0.0598691 0.101152 -0.0187591 +-0.0309758 0.0383278 -0.0168292 +0.0239145 0.0835849 0.0487444 +-0.00271812 0.0380275 0.0166967 +-0.00631097 0.0354995 -0.0168068 +-0.0435801 0.0491173 -0.010788 +-0.0586891 0.065984 -0.0090861 +-0.072851 0.148958 0.0401319 +0.0442902 0.0875035 0.0241471 +-0.0155441 0.165408 -0.0121335 +-0.084276 0.107651 0.0243439 +-0.0705376 0.04043 0.00377428 +-0.0107227 0.165105 -0.0188107 +-0.0550975 0.13533 0.0326236 +-0.0735773 0.0648576 0.0107478 +-0.0227215 0.0797443 0.0551012 +-0.0404988 0.043751 0.0418177 +-0.0507215 0.132501 0.0301542 +-0.0728912 0.11354 -0.00756484 +0.00242535 0.0343652 0.00462872 +-0.0556704 0.0335434 0.000932366 +0.00528142 0.0509933 -0.0292119 +0.0213389 0.0621093 -0.0262711 +-0.0275166 0.0348502 0.0465557 +-0.0826299 0.110259 0.0284001 +-0.00850001 0.125156 0.0314578 +-0.0707102 0.149836 -0.0414255 +0.0204972 0.107072 0.0404393 +-0.0215031 0.108553 0.041118 +-0.0404837 0.0818282 0.0429123 +-0.0586314 0.0580318 0.0162523 +-0.0648762 0.109524 -0.0137682 +-0.0687139 0.0394283 -0.00171366 +0.00150188 0.0938741 0.0550191 +0.027072 0.122359 0.0168201 +-0.0275307 0.0918372 0.0449329 +-0.00320104 0.131164 0.014241 +0.00886384 0.130684 0.0200808 +0.0402562 0.0857576 -0.0117696 +-0.0823675 0.147331 0.00217458 +-0.082659 0.0776741 0.0225196 +-0.0388763 0.107081 -0.0200218 +0.0151073 0.108635 -0.0180644 +0.0460054 0.0746307 0.0193568 +-0.0735009 0.117559 0.0527975 +-0.0337749 0.0338108 0.0177666 +0.032372 0.116958 0.0202394 +-0.0763319 0.15494 -0.00387485 +-0.0687774 0.0837142 -0.0175822 +-0.010498 0.0517545 0.0512545 +0.0210632 0.038679 -0.00769573 +0.0140028 0.091392 0.0520062 +-0.0842337 0.150005 0.032317 +0.0332536 0.0916169 0.0411931 +-0.0394897 0.0874644 0.0433271 +0.0207921 0.106393 -0.0166835 +-0.0368012 0.111669 -0.0181954 +-0.0495137 0.0503617 0.0366255 +-0.0314035 0.121359 0.0260922 +-0.0745094 0.140045 0.0479791 +-0.020484 0.0842242 0.0566713 +-0.00549585 0.0911858 0.0567127 +-0.0870672 0.0882048 0.024333 +-0.0377523 0.0783086 -0.0194038 +0.0407806 0.0717592 -0.0087638 +0.00365619 0.131646 0.00960837 +-0.0157548 0.0714554 -0.0386719 +0.0597099 0.0650292 0.0201784 +-0.0675187 0.0874976 0.0437834 +0.0405833 0.0670896 0.0305002 +-0.0180479 0.0418467 0.0526068 +-0.0427079 0.151894 -0.00649313 +-0.0220141 0.0388944 0.0538623 +0.00616925 0.0895403 -0.0330971 +-0.0064158 0.0391939 0.0347568 +0.0557201 0.0581302 0.0259556 +0.0563341 0.0711373 0.00671617 +-0.0727258 0.157431 -0.00265266 +0.0125423 0.120941 -0.012332 +0.00414764 0.103055 -0.021794 +-0.029166 0.0762862 0.0418904 +-0.0268469 0.0423164 0.0533212 +-0.0621198 0.0344764 0.0202314 +-0.0618524 0.169383 -0.0535961 +0.0250825 0.10872 0.0381638 +-0.0908254 0.142021 0.0251655 +-0.046283 0.129949 0.00285861 +0.0179105 0.0350278 -0.0116533 +-0.0397746 0.0826803 -0.0210594 +-0.0651763 0.16954 -0.0402745 +-0.0621336 0.16002 -0.0235787 +-0.0355709 0.168274 -0.000671324 +-0.037536 0.159586 0.00182669 +-0.0681305 0.148403 -0.0333773 +-0.0364875 0.100095 0.0421869 +0.0545857 0.0608947 0.0278753 +0.0195769 0.0347391 0.0223805 +-0.0765172 0.154938 0.0266851 +0.0329357 0.0710876 -0.0177809 +-0.0434945 0.111176 0.0370674 +-0.0144911 0.124164 0.030554 +-0.0644813 0.157544 -0.049277 +0.0162463 0.0722881 -0.029887 +0.0292794 0.111414 0.0337321 +-0.0730559 0.14548 -0.015959 +-0.032702 0.0694797 -0.021456 +-0.0682487 0.153053 0.0340661 +-0.0810659 0.143393 0.0434586 +-0.0508913 0.0474088 0.0186488 +-0.041491 0.0832013 0.0425516 +-0.0689521 0.151509 0.0368557 +0.00620362 0.0387395 0.045605 +-0.0437238 0.0739429 -0.018203 +-0.0589977 0.125247 -0.00779139 +0.0113495 0.0553023 -0.0296776 +-0.0665061 0.0972756 0.0420058 +0.00151221 0.0828796 0.0573767 +-0.000819486 0.131234 0.00795191 +0.0463579 0.0575632 -0.00556359 +-0.0223022 0.165377 -0.00961273 +0.0177451 0.0379283 0.0429098 +-0.0914397 0.143364 0.0211639 +-0.0366139 0.0493085 -0.0123994 +-0.0374871 0.0576725 0.0398228 +-0.0252778 0.0383536 -0.00088571 +-0.0593549 0.0410534 0.0179552 +-0.0667502 0.0337781 -0.00695475 +-0.0206534 0.0391059 0.0372895 +-0.0144184 0.0997913 0.0448499 +-0.0451841 0.16983 -0.00497124 +-0.017913 0.184413 -0.0239895 +-0.0265191 0.0388768 0.0380618 +-0.0908997 0.126938 0.0424248 +-0.000826517 0.0853922 -0.0362438 +-0.0534467 0.125409 -0.00644153 +-0.0368662 0.104233 -0.0205194 +-0.02728 0.181917 -0.0121056 +-0.0487731 0.0349958 0.0444688 +-0.0894993 0.135155 0.0302067 +0.0152294 0.0345961 -0.00794828 +-0.0135581 0.166929 -0.0145181 +-0.00316211 0.129199 -0.00103699 +0.0125106 0.108449 0.040622 +0.0494051 0.0734301 0.0147277 +-0.0427147 0.0710705 -0.0176966 +-0.0505553 0.136728 0.0232523 +-0.055076 0.154226 0.0167194 +-0.0598887 0.10828 -0.0169771 +-0.00348603 0.0489394 0.050606 +-0.0325038 0.107028 0.0393329 +-0.0558273 0.114722 -0.0152839 +-0.024429 0.062147 0.0418364 +0.0610039 0.0637491 0.0121545 +-0.0307981 0.0381678 0.00179566 +-0.0224893 0.0462052 0.0523041 +-0.0626699 0.13529 0.0374908 +-0.0871093 0.106357 0.0153576 +0.018535 0.0346925 0.0222104 +-0.0633642 0.142485 0.0383017 +0.0395752 0.0602985 0.0307005 +0.0196495 0.0356664 -0.00567711 +-0.00666974 0.0555272 -0.0330407 +-0.0554731 0.154191 0.0210182 +-0.00998984 0.177238 -0.0295136 +0.0366228 0.111865 0.00747742 +-0.00322809 0.0999661 -0.0238789 +0.00852647 0.0349744 0.0253569 +0.0337455 0.11169 -0.0043358 +-0.033869 0.10148 -0.022225 +0.0215013 0.108432 0.0393095 +0.027565 0.119234 0.026993 +-0.0477832 0.129154 -0.000397631 +-0.057288 0.0521607 0.00365094 +0.0119513 0.0873992 0.0542929 +0.0510679 0.0720267 0.021243 +-0.0525522 0.0487323 -0.0069784 +0.0419877 0.102851 0.0121565 +-0.0154922 0.126886 0.0243264 +-0.010476 0.0965182 0.0531854 +-0.0107078 0.0628117 -0.0359649 +-0.0848416 0.0858026 -0.00253503 +-0.0300028 0.125562 0.00590559 +-0.0137234 0.0643092 -0.0370705 +0.025242 0.0761745 -0.0249679 +-0.0268088 0.0852978 -0.0363495 +0.028746 0.0693043 -0.0217828 +-0.0525052 0.112524 0.0359139 +0.0608734 0.0637391 0.0151617 +-0.0820606 0.151973 0.00432386 +-0.065153 0.0712063 0.036955 +-0.0590564 0.0335255 0.00387291 +-0.0726667 0.0777379 -0.0132872 +-0.0639501 0.166025 -0.0326719 +0.033089 0.0892132 -0.0184699 +-0.0410037 0.148494 -0.000715623 +0.0152676 0.11708 -0.0141694 +-0.0405102 0.127658 -0.000961794 +0.0135046 0.108467 0.0407674 +-0.0598038 0.0341949 0.0280011 +-0.025416 0.0905129 0.0490114 +-0.0383992 0.0420226 0.0422608 +-0.0414999 0.0478558 0.040117 +-0.0525584 0.0501546 -0.00685551 +-0.0394783 0.0832832 0.0435432 +-0.0409872 0.0335947 -0.0218947 +-0.0234596 0.184384 -0.0119315 +-0.00549722 0.0633676 0.0561862 +-0.0249111 0.0958255 0.0441185 +-0.0794946 0.12171 0.0507273 +0.0218787 0.0430332 -0.0157248 +-0.0284679 0.0718578 -0.0335433 +-0.0287174 0.0344722 -0.0298467 +-0.0375646 0.0407082 -0.0285349 +-0.0684694 0.153743 0.0324784 +0.0275012 0.1187 -0.00304813 +-0.0654981 0.100096 0.041968 +-0.0728966 0.155445 -0.0329107 +-0.024103 0.171237 -0.0122056 +-0.0213641 0.0384977 0.0305062 +-0.00878734 0.0798675 -0.0379507 +-0.0034971 0.0703995 0.0574239 +-0.0628591 0.0679841 0.0349557 +-0.0205114 0.0512056 0.0456176 +-0.0215925 0.0364837 -0.0283556 +0.0308475 0.0751439 -0.0207339 +0.0345069 0.0483661 0.0310725 +0.00650269 0.044152 0.0457422 +-0.0404948 0.0733395 0.0422389 +0.00152573 0.0717149 0.0566366 +-0.00449638 0.110771 -0.0213478 +-0.0786622 0.0733343 0.0252726 +-0.00997021 0.129828 0.00744342 +-0.0368781 0.107107 -0.0201846 +0.0114979 0.112659 0.03891 +-0.0516419 0.126901 0.0340875 +-0.05391 0.13392 0.032587 +-0.0537085 0.0491368 0.0316573 +-0.086972 0.143283 0.00915353 +-0.0889751 0.0969295 0.00842099 +-0.0378902 0.121927 0.0281694 +-0.0870357 0.141902 0.00919077 +-0.056635 0.0350546 0.0452244 +-0.019816 0.0347801 0.0465131 +0.0392931 0.086096 0.0340337 +-0.0869334 0.0861006 0.0224549 +-0.0643967 0.0646443 0.0287462 +-0.0398612 0.101404 -0.0212384 +-0.0536876 0.0334698 -0.00403732 +-0.0785163 0.162478 -0.0269418 +-0.0638695 0.16329 -0.0240265 +-0.087202 0.10043 0.0240701 +-0.0736795 0.145791 -0.0128538 +0.0436314 0.0736519 0.026072 +-0.0326308 0.0352345 0.0485487 +-0.0158901 0.160985 -0.0130889 +0.0154243 0.0781303 0.053988 +0.00317805 0.0980649 -0.0258881 +-0.00360287 0.0419944 -0.0253901 +-0.0681856 0.169443 -0.0550153 +-0.0937199 0.12277 0.0132819 +-0.0335083 0.11115 0.0363293 +-0.0897769 0.0915868 0.0144438 +-0.00790609 0.0389527 -0.0109414 +-0.0512486 0.0474505 0.019655 +0.0299943 0.101654 -0.0156302 +-0.0688114 0.086573 -0.0173858 +-0.0425222 0.0435673 -0.0203211 +-0.0411345 0.037889 -0.0275181 +-0.0451234 0.0336213 -0.00611106 +-0.0513475 0.115214 -0.0158415 +-0.0135796 0.18457 -0.0255034 +0.0514482 0.0490026 0.000289284 +-0.0154766 0.160714 -0.011803 +-0.0871595 0.128427 0.0471391 +0.0253818 0.0487646 -0.0196147 +-0.0226623 0.0866242 0.0548392 +-0.00567144 0.0569411 -0.0332111 +0.046481 0.0764536 0.00918999 +0.0579995 0.0690441 0.020859 +-0.0371 0.126156 -0.00341777 +-0.073756 0.0716254 0.0312714 +-0.0320938 0.0457263 -0.0270587 +-0.0109396 0.165104 -0.0156606 +-0.088578 0.151544 0.0220955 +0.00637955 0.131641 0.0120332 +-0.00648723 0.114138 0.040862 +-0.058347 0.0335497 0.00759386 +0.00578775 0.0392649 0.0317966 +-0.0571091 0.140994 0.0314586 +-0.00487882 0.107372 -0.0225382 +-0.0806197 0.114932 0.047462 +-0.0334955 0.0874648 0.043047 +-0.0460993 0.132381 0.0175967 +-0.0638759 0.0334217 -0.000619218 +-0.0121322 0.038759 -0.00601251 +-0.0743637 0.153685 0.0319267 +-0.0445292 0.0547767 0.038815 +0.0265401 0.0686018 0.0436052 +0.0300756 0.0946988 -0.0182345 +-0.00649809 0.0703887 0.0571625 +-0.0574852 0.0861616 0.0444185 +-0.0204789 0.081458 0.0566556 +-0.045663 0.0367902 -0.0212772 +-0.0660163 0.156182 0.0230465 +0.0105014 0.112682 0.0391847 +-0.0863368 0.153207 0.0174967 +-0.0314199 0.0595176 -0.0174145 +-0.0903295 0.150229 0.0211233 +-0.0394972 0.0648803 0.0416583 +-0.0107858 0.0386823 0.0289151 +-0.0567014 0.0534733 -0.0003903 +-0.00348704 0.121028 0.0369539 +0.0367923 0.0967547 0.0340658 +-0.0206904 0.0538665 -0.0309758 +0.0171483 0.0535046 0.047456 +-0.052342 0.035529 0.0457534 +-0.0350351 0.0408695 0.0473482 +-0.0364795 0.0519621 0.0386972 +0.0339284 0.0669478 -0.0167571 +-0.0277715 0.0852268 -0.0356683 +0.00655622 0.121628 -0.0130526 +-0.0586532 0.0645395 -0.00761311 +-0.0582249 0.0344034 0.0351394 +-0.00633129 0.0388612 -0.00122239 +-0.0669198 0.113752 -0.0107887 +-0.0667337 0.0374088 0.0337222 +-0.00249774 0.0520145 0.0539036 +-0.0450377 0.0345968 0.0325315 +0.0242293 0.119847 -0.00515511 +-0.0932424 0.12021 0.0392849 +-0.0535442 0.129727 0.0348674 +-0.00517846 0.0367339 0.04845 +-0.0734548 0.0752713 0.0352251 +-0.0687371 0.155896 0.0104629 +-0.0471614 0.0336254 -0.00103179 +-0.00441737 0.117961 -0.0150091 +-0.0238639 0.0825121 0.0547585 +-0.0132802 0.102485 0.0435875 +-0.0649278 0.105334 -0.0156241 +0.0286778 0.116188 -0.00517917 +-0.0236663 0.0381653 0.00868472 +-0.0645999 0.0432992 0.0347148 +-0.0856886 0.0926246 -0.00156242 +-0.0835056 0.0777286 0.0204901 +0.0321567 0.107734 -0.010124 +-0.0895151 0.151559 0.0181181 +0.0110134 0.130158 0.00376449 +-0.0202842 0.16977 -0.0137262 +-0.00591514 0.12799 -0.00376372 +0.0143906 0.0373653 -0.0212799 +-0.0719296 0.11219 -0.00889601 +-0.0157228 0.0642918 -0.0372774 +0.0269219 0.115924 -0.00692402 +-0.0665225 0.0435914 0.00948645 +-0.0747288 0.102175 0.0369848 +0.0207343 0.120306 -0.00765281 +-0.0240392 0.0380418 0.0177619 +-0.0806691 0.107746 0.0299304 +0.0541727 0.0734662 0.0150335 +-0.0828869 0.0763004 0.0145215 +-0.0490771 0.154645 -0.00592496 +0.0211784 0.0973838 -0.0221644 +-0.0576844 0.0467193 0.0286753 +0.00985328 0.0602892 0.0527986 +0.0232608 0.0748451 -0.0261321 +-0.0524982 0.0862336 0.045539 +-0.0783198 0.147274 -0.0028373 +0.0082875 0.114937 -0.017843 +0.018445 0.0456517 -0.0226728 +-0.0239275 0.1816 -0.0100979 +-0.040758 0.0797297 -0.0196637 +-0.0485257 0.121087 0.0297472 +-0.0345208 0.0633716 0.0403553 +-0.00118398 0.0362533 0.0473478 +0.000189104 0.0867348 -0.0351526 +0.0231695 0.0520348 0.0420858 +-0.0324783 0.0337381 0.0144953 +-0.0597681 0.0334439 0.00560092 +0.0177557 0.0344112 0.00209212 +0.0159863 0.0860656 0.0513294 +-0.0393291 0.127134 0.01721 +-0.0628998 0.1209 -0.00884208 +0.04086 0.101423 0.0231764 +-0.0146702 0.122522 -0.00773793 +-0.0292113 0.156649 -0.000270817 +-0.0415254 0.172553 -0.00373349 +-0.0365135 0.084703 0.0437856 +-0.0208969 0.0381794 0.0236923 +0.011579 0.120136 -0.0134617 +-0.0347516 0.0383809 -0.00467189 +-0.0166266 0.172732 -0.0172138 +-0.0531086 0.126902 0.0355005 +-0.0154789 0.0347707 0.0439361 +-0.0110657 0.112343 -0.0190003 +0.0286979 0.0806527 -0.0216026 +-0.00681305 0.0345833 0.0441587 +-0.0245442 0.0708437 0.0459353 +-0.0613991 0.0718897 0.0389316 +-0.0682443 0.179461 -0.0589214 +-0.00573885 0.0698843 -0.0361103 +-0.0875967 0.100907 0.00640641 +0.0169866 0.0348952 0.0343866 +0.0228667 0.0444458 -0.0147763 +-0.0536029 0.162357 0.00297376 +-0.0723862 0.156822 -0.0359122 +0.000140075 0.103071 -0.0225088 +-0.0543692 0.0334679 -0.00234676 +-0.0771859 0.109877 -0.00559641 +-0.0922148 0.11614 0.0373108 +0.00616718 0.124896 -0.00854967 +-0.00125449 0.12189 -0.0112382 +0.0349132 0.114353 0.0126105 +-0.0534959 0.107052 0.0398334 +0.0553645 0.0492819 0.0192078 +0.0496613 0.0501912 -0.00270335 +-0.0917143 0.128313 0.0332436 +0.00552678 0.0619607 0.0559576 +-0.0252475 0.0736694 0.0465167 +-0.0656879 0.156227 0.015899 +0.0167178 0.128574 0.00869666 +-0.0616277 0.154191 0.00244865 +-0.0845352 0.136246 0.000324782 +-0.0835033 0.0804619 0.0265017 +-0.0380583 0.154792 -0.00920218 +-0.0683549 0.0382578 0.0114352 +-0.0713665 0.156324 0.018248 +0.0326986 0.0781958 0.0420379 +-0.0267044 0.158758 -0.0121466 +0.0274612 0.0417732 0.0323464 +-0.00748374 0.116886 0.0393445 +-0.0618946 0.0333508 -0.00558837 +-0.022958 0.166842 -0.0105567 +0.000373363 0.0349968 0.00734292 +-0.0437553 0.033642 0.00144997 +0.0267259 0.120866 0.0252428 +-0.0859248 0.0832079 0.00547822 +-0.00269975 0.109146 -0.0216168 +0.055733 0.052157 0.00319809 +-0.0704697 0.181218 -0.0537747 +0.00698645 0.0818884 0.0558396 +0.0424628 0.0943961 -0.00280162 +-0.0560128 0.0334549 0.00994988 +-0.000497737 0.11557 0.0407823 +0.0115122 0.104463 0.0449641 +0.0113328 0.124014 0.0325236 +-0.0257103 0.0983522 -0.0242349 +0.0385114 0.038461 0.00447642 +0.0274866 0.0994982 0.0416519 +-0.0205044 0.11679 0.0360351 +-0.0287307 0.0748955 0.0414817 +0.021677 0.0354914 0.00935068 +-0.0604978 0.109778 0.0376942 +0.0349482 0.114159 0.0154869 +-0.0891171 0.11284 0.0400327 +-0.0525174 0.133925 0.0310668 +-0.0467675 0.0811826 -0.0202513 +0.0148515 0.129255 0.0180171 +0.0134018 0.0418881 -0.0236384 +-0.0196836 0.0524593 -0.0309769 +-0.0907522 0.136478 0.0191999 +-0.0282073 0.178522 -0.0159874 +-0.0456817 0.146626 -0.00135754 +-0.0234782 0.174205 -0.0130294 +0.0157394 0.128861 0.0183169 +-0.049553 0.0432181 -0.0104928 +-0.0364431 0.0379518 -0.0296736 +-0.0342528 0.161016 -0.000502552 +-0.0106993 0.061373 -0.0355475 +0.0155546 0.034804 0.0269401 +0.0445305 0.0664178 0.0264316 +-0.0692603 0.166617 -0.0519986 +0.00900275 0.0343116 -0.0200681 +-0.0789639 0.13393 -0.00512141 +0.0183835 0.0490953 -0.0235496 +-0.0211568 0.177178 -0.0149257 +-0.0459855 0.0341655 0.0291843 +0.0234635 0.12256 0.0268857 +-0.0437241 0.0724973 -0.0179849 +-0.0492665 0.143175 0.00640774 +0.0310235 0.0363382 0.00298341 +-0.0703389 0.0353326 0.0107638 +-0.0505002 0.0762293 0.0432414 +-0.0641035 0.141307 -0.00745692 +-0.0474934 0.115292 0.0331905 +-0.050108 0.144746 0.0113816 +0.0325029 0.117364 0.00744623 +-0.0183192 0.124686 -0.00393431 +-0.00150748 0.059016 0.0544507 +-0.0104895 0.115533 0.0397944 +-0.023487 0.0435372 0.0536017 +-0.0655471 0.154522 0.00288522 +-0.0675989 0.156142 0.0239498 +-0.03165 0.0339865 0.0180432 +-0.0447604 0.0336698 -0.00424497 +-0.0348481 0.110331 -0.0188 +-0.0114927 0.0938853 0.0554733 +-0.0700706 0.155642 0.00707306 +0.0444883 0.05975 0.0312137 +-0.0788477 0.0773102 0.0306071 +-0.0712203 0.0706743 0.0326242 +0.00153616 0.078717 0.0572683 +-0.0243177 0.0607418 0.04177 +0.0445696 0.0677675 0.0254424 +0.0516179 0.0503639 -0.000756444 +-0.0610049 0.129668 -0.00770337 +-0.0731244 0.174613 -0.0403365 +-0.021137 0.166765 -0.0184531 +-0.068723 0.163208 -0.0142948 +-0.0415011 0.0676725 0.0415782 +-0.0829782 0.147345 0.00316952 +-0.056007 0.145723 -0.001571 +-0.023276 0.0768174 0.0529315 +-0.0303597 0.158405 -0.0122944 +-0.0594923 0.107014 0.0396564 +-0.0680504 0.156343 0.0223236 +-0.050518 0.054445 0.0327051 +-0.0324286 0.126663 0.0108668 +-0.0629263 0.108221 -0.0156274 +-0.0283572 0.0862879 0.0464179 +0.0304249 0.0399897 -0.00292852 +-0.0820851 0.106006 0.028693 +-0.081432 0.0776141 0.0263044 +0.0121657 0.0990535 -0.0228743 +-0.0148931 0.161809 -0.0143393 +0.0322568 0.0814321 -0.0193234 +-0.0249634 0.0631201 -0.0324542 +-0.0844782 0.152284 0.0269844 +-0.0284889 0.100156 0.0431683 +0.0335187 0.113275 -0.00203325 +0.0243141 0.0347256 0.0105738 +-0.0189924 0.127884 0.0157415 +-0.0555 0.0488797 0.0362241 +-0.0675079 0.104205 0.0395869 +-0.0181173 0.0384288 0.000495732 +-0.0138101 0.0841459 -0.0389466 +-0.0343542 0.0367977 0.0484644 +0.0170352 0.0393356 0.0436644 +-0.0255828 0.0620727 0.0401653 +0.0012257 0.0797035 -0.0352779 +-0.0033226 0.122983 -0.0103909 +0.0377895 0.0954381 0.0337234 +-0.0779478 0.107702 0.034147 +0.0309974 0.0673207 0.0412553 +0.0125192 0.0833344 0.053329 +-0.0569108 0.0471914 0.0407265 +-0.0765896 0.172837 -0.038783 +-0.0243798 0.168291 -0.0108587 +-0.0849208 0.114388 0.046865 +0.0270076 0.100021 -0.0178938 +-0.00936568 0.0388306 -0.00738531 +0.0124903 0.101789 0.047403 +0.0153634 0.050802 -0.0265798 +-0.051492 0.107057 0.0393982 +0.00022872 0.0769217 -0.0357549 +-0.073138 0.156184 0.0161734 +-0.0171943 0.171219 -0.0224352 +0.0282636 0.073195 -0.0229429 +-0.0554943 0.112513 0.0359102 +0.0268698 0.0448976 0.0368034 +-0.0567448 0.0548796 0.00465654 +0.00393342 0.0340406 0.014385 +-0.0269434 0.0864227 0.0492292 +-0.050859 0.0487888 0.015667 +-0.0524919 0.0762203 0.042799 +-0.025733 0.0751362 0.0469781 +-0.0870453 0.0846718 0.00449266 +-0.0765303 0.0961207 -0.0124976 +0.0303449 0.112749 0.0317399 +-0.070531 0.151779 -0.0453729 +0.0534729 0.0645627 -0.000631784 +0.0104112 0.0375138 -0.0230668 +0.0592863 0.0552837 0.0131736 +0.00525297 0.069736 -0.0335357 +0.0167263 0.0350159 0.0378322 +-0.0679113 0.0395796 0.0109828 +0.013918 0.129208 0.0205036 +-0.079478 0.142827 0.0451049 +-0.0708238 0.0631793 0.00551684 +-0.0687786 0.16979 -0.0301319 +-0.0187811 0.119777 -0.0107944 +0.021663 0.053586 0.0452157 +0.015783 0.0914175 0.0510677 +0.0258521 0.119872 -0.00319504 +-0.0172292 0.104564 -0.022745 +-0.0618136 0.0453397 -0.00172473 +0.0207685 0.0449736 0.0420523 +-0.0231964 0.0651165 0.0447582 +-0.0305175 0.0847809 -0.0315638 +-0.0658758 0.122838 0.0504663 +-0.0148324 0.107132 -0.0214612 +0.0460436 0.0778241 0.00519064 +0.00396334 0.0346642 0.000955872 +-0.000496537 0.0675633 0.0565514 +0.0342214 0.0813611 -0.0182381 +-0.0464961 0.0464761 0.0407845 +0.0547176 0.0680176 0.00187225 +-0.0580682 0.132534 -0.0063879 +0.0331199 0.0754691 0.0408773 +0.0401875 0.102783 0.0241636 +-0.0783656 0.151459 -0.000884796 +0.0238113 0.0754906 0.0485213 +0.0164183 0.0726599 0.0518741 +-0.0674097 0.173701 -0.0580011 +-0.0179511 0.175707 -0.0173471 +-0.0334973 0.0859864 0.0423406 +-0.0416172 0.17268 -0.00599082 +-0.0883846 0.119913 0.00130167 +-0.0154061 0.185475 -0.025609 +0.0464852 0.0429053 0.00427528 +0.0545912 0.0717149 0.021096 +-0.0661916 0.0334877 0.00245273 +-0.0495852 0.124005 0.0317323 +-0.0537144 0.0491343 0.0296614 +-0.0818927 0.122139 -0.0045131 +-0.0718108 0.0955414 0.0413269 +0.0221671 0.0444704 -0.016762 +-0.0798314 0.0733447 0.0205614 +0.0166594 0.125691 0.027245 +-0.0892473 0.0888575 0.0104669 +0.00551166 0.0504095 0.0521406 +-0.0627982 0.16724 -0.0607839 +-0.0646154 0.0457888 0.00269728 +-0.0485702 0.047508 -0.00937813 +0.026502 0.121591 0.0237374 +-0.0353601 0.152626 -0.00619729 +0.0403422 0.10564 0.0161674 +-0.0615416 0.034204 0.0241166 +0.0380593 0.0869714 -0.0147288 +0.0319925 0.114417 -0.00326976 +-0.0267368 0.0385445 0.0329521 +-0.0618964 0.108239 -0.0162152 +-0.063845 0.150027 0.0371387 +-0.0739579 0.155489 -0.0249104 +-0.0709691 0.153934 -0.0469289 +0.0249948 0.0405751 0.0353079 +-0.0304784 0.0381297 0.00370653 +-0.0247632 0.0741431 -0.0374571 +-0.0216593 0.0509046 -0.0292926 +-0.0446505 0.0592548 -0.0123035 +-0.0410267 0.172571 -0.00282243 +-0.060985 0.168641 -0.0594898 +0.0260213 0.111246 -0.0119 +-0.0224982 0.103036 0.0436276 +-0.0720537 0.0640001 0.00639175 +-0.08755 0.12805 0.000278104 +-0.0790371 0.0873264 0.0361062 +-0.055031 0.152471 0.0270238 +0.0537262 0.0622241 0.0283948 +0.0248385 0.107021 -0.0153684 +-0.0817292 0.154617 0.0205129 +-0.0776054 0.0804635 0.0348861 +-0.0644463 0.0769092 0.0410862 +-0.0737119 0.082093 -0.0148287 +-0.0782342 0.0694181 0.011104 +-0.0678631 0.0335656 -0.00155997 +-0.0771555 0.15282 -0.00488816 +0.028309 0.049176 0.0371723 +0.0122273 0.0342048 -0.000691958 +-0.0643947 0.15704 -0.046105 +-0.0276636 0.0522618 0.0383069 +-0.0587411 0.154535 0.0270999 +0.0275645 0.122014 0.00844231 +-0.0465457 0.0337901 0.0276252 +-0.0853906 0.110991 0.0352247 +-0.0338206 0.0367327 0.0490996 +-0.0145535 0.06115 0.0532234 +0.0367927 0.111755 0.0132988 +0.0458177 0.0820138 0.0181729 +-0.0444555 0.121377 -0.0123561 +0.0224202 0.0430392 -0.0127301 +0.0158478 0.102035 -0.022 +-0.0100884 0.0347013 0.0469069 +0.0374928 0.0498822 0.031843 +0.0351777 0.0559301 -0.00964394 +-0.00946358 0.169654 -0.0207426 +-0.0656264 0.15567 -0.0512009 +-0.0254805 0.0434932 0.0531599 +-0.0270955 0.0576776 -0.0274029 +-0.0228583 0.0350556 -0.0196661 +-0.0139903 0.169817 -0.0169155 +0.0176377 0.0348968 0.0272836 +-0.0144859 0.107222 0.0429439 +-0.0291189 0.15522 -0.00190906 +-0.0411739 0.165162 -0.0113688 +-0.0123514 0.0384213 0.00530714 +-0.0527141 0.141625 0.0234145 +-0.0612038 0.154834 0.027675 +-0.0338487 0.098628 -0.022813 +-0.000859642 0.105926 -0.0219248 +-0.0203431 0.186558 -0.0166005 +-0.01883 0.0882728 -0.037792 +-0.0635094 0.0987058 0.0422669 +-0.000483407 0.0787781 0.0579546 +-0.0700187 0.074071 0.0369567 +-0.0201986 0.186115 -0.0151371 +0.00141145 0.0376391 -0.024717 +0.0439647 0.0888964 0.0241631 +-0.0774025 0.100791 0.0354679 +-0.078513 0.145668 0.0427459 +0.0241305 0.0618675 0.0453428 +0.0109129 0.0833325 0.0545132 +-0.0798758 0.117757 -0.00451351 +0.0302928 0.119677 0.0137476 +0.0354021 0.0399255 -0.00156043 +-0.0489211 0.0687544 0.0390214 +-0.0493842 0.0558982 0.0343669 +-0.0524939 0.0776533 0.0431774 +-0.00761105 0.112944 -0.01965 +-0.0631004 0.038056 0.0429096 +-0.078061 0.117721 0.0511362 +-0.0228935 0.0375359 -0.0182249 +0.0168546 0.104974 -0.0191686 +-0.062493 0.0385506 -0.00796777 +-0.0814183 0.138999 -0.00180871 +-0.0585811 0.0344322 0.0332983 +-0.0299241 0.172727 -0.00652243 +0.0112861 0.130316 0.0195341 +-0.0325036 0.10978 0.0375732 +-0.0826224 0.141799 0.00118353 +-0.0805022 0.0831735 0.0334637 +0.0122352 0.0808526 -0.0312408 +-0.0771876 0.0907032 -0.0125611 +-0.0140608 0.038299 0.0231793 +-0.0386607 0.116212 -0.0149511 +-0.0276455 0.0376114 0.0210157 +-0.0832306 0.0871025 0.0304136 +-0.0334887 0.0471143 -0.0243565 +-0.0400971 0.153595 0.0050429 +-0.0647302 0.154215 -0.0408208 +-0.0194396 0.0527865 0.0471813 +-0.0665534 0.156088 0.0243177 +0.00850109 0.107119 0.0411949 +-0.0740753 0.174982 -0.0510829 +-0.0131928 0.11434 -0.0171133 +-0.00874908 0.0742103 -0.037697 +0.00967799 0.130572 0.00468392 +0.0318663 0.0862689 0.0426688 +0.0197994 0.0399634 -0.0167042 +0.0141672 0.0347073 0.00296826 +-0.0334912 0.0604137 0.038899 +-0.010802 0.0812949 -0.0382665 +-0.0626127 0.0339199 -0.00909656 +-0.0225179 0.0594554 0.0442529 +-0.0744235 0.152695 -0.0268913 +-0.0148262 0.181632 -0.021586 +-0.0501691 0.0348773 0.00986405 +0.0104481 0.102845 -0.020901 +-0.0127527 0.177163 -0.0221029 +0.008145 0.103004 -0.0207662 +-0.0548867 0.101301 -0.0205491 +-0.0772028 0.162464 -0.0309387 +0.0379552 0.0588939 -0.00773658 +-0.0134957 0.0925258 0.0558596 +0.0248886 0.0970269 -0.0206985 +-0.0393214 0.0342416 -0.0147308 +-0.0458838 0.129671 0.00293555 +-0.0574217 0.135337 0.0345321 +-0.0820284 0.13533 -0.00235647 +0.038582 0.0659177 0.034606 +-0.0494896 0.157875 0.00921755 +-0.0225598 0.125982 0.00280455 +0.0216881 0.102085 -0.0200779 +-0.0136509 0.0496769 -0.0312069 +-0.0615955 0.15529 0.0260796 +-0.0115193 0.0773584 0.0574493 +0.0404486 0.0745397 -0.00879543 +-0.057886 0.0969698 -0.0206731 +-0.0109392 0.038438 0.0236915 +-0.0148475 0.162865 -0.0159421 +-0.0183748 0.0353493 0.0515278 +0.029169 0.114081 0.0318014 +0.0232083 0.0449556 0.0403488 +-0.0234883 0.122057 0.0276339 +0.0359605 0.0936242 -0.0130764 +-0.0175335 0.0392471 0.0378093 +-0.0308588 0.171231 -0.00613945 +0.0247031 0.0463341 0.0389677 +-0.0925247 0.128292 0.0282327 +-0.0665656 0.122847 0.0512252 +0.0584586 0.0607609 0.022909 +-0.00884754 0.115581 -0.0164541 +-0.00309453 0.0984522 0.0515066 +0.0115015 0.119616 0.0358941 +-0.0494977 0.0903933 0.0446494 +-0.0126691 0.0348865 0.0479592 +-0.0149576 0.0897382 -0.0373658 +-0.0152002 0.174208 -0.0254562 +-0.0756281 0.167353 -0.024657 +-0.0627225 0.0402195 0.0247088 +-0.058955 0.151077 0.0341866 +-0.00932165 0.17502 -0.028678 +-0.0123491 0.183911 -0.0264322 +-0.0896074 0.135171 0.0322127 +-0.0426789 0.168728 0.0023488 +-0.0748775 0.0739125 0.0325733 +0.03891 0.10882 0.00971935 +-0.0633729 0.0431313 0.0286681 +-0.0551792 0.0336096 0.018904 +0.0268834 0.0875842 0.0460207 +-0.0168782 0.0351038 0.0503404 +-0.00549453 0.0590678 0.0548923 +-0.0286315 0.0383676 -0.00896928 +-0.0332631 0.177035 -0.011981 +-0.0748045 0.167943 -0.0420608 +-0.0851109 0.0939488 -0.00257672 +0.00096833 0.121103 -0.0124156 +-0.0558825 0.0465312 0.026676 +0.00712802 0.0975509 -0.0252935 +-0.00450103 0.0746726 0.0587526 +-0.0754962 0.141423 0.0471972 +-0.0514204 0.0548853 0.0209522 +-0.0107189 0.0642451 -0.0362023 +0.0428473 0.0944698 0.0251639 +0.0161732 0.12869 0.00706423 +0.0172673 0.128465 0.0103258 +-0.0624218 0.113827 0.0376933 +-0.0694289 0.039567 0.00968578 +-0.00956353 0.172645 -0.0227849 +-0.036529 0.0344176 0.0112583 +0.00747563 0.0378784 -0.00876072 +-0.0105064 0.0884021 0.0567868 +-0.0306153 0.0495713 -0.0203608 +-0.0832173 0.13898 0.000315163 +-0.00610064 0.0339097 -0.0209348 +-0.0081869 0.0386049 0.00598379 +0.0213573 0.057915 -0.0266602 +0.0391712 0.0402919 0.0231925 +-0.0346283 0.0533938 -0.0102529 +-0.00324688 0.0367886 -0.0155194 +-0.0734226 0.0711647 -0.00664488 +-0.0628413 0.144409 -0.0076345 +-0.0258745 0.104437 -0.023108 +-0.0100477 0.178214 -0.0295899 +-0.0839857 0.132609 0.0495198 +-0.0498484 0.121182 -0.0121 +0.0108333 0.130856 0.0150885 +-0.0104958 0.0939039 0.0555039 +-0.0863431 0.112514 0.0302243 +0.0475429 0.0429463 0.00623912 +-0.0334893 0.050539 0.0382432 +-0.0209099 0.158178 -0.00579641 +0.011514 0.10312 0.0464311 +0.0350456 0.0627954 -0.0138277 +-0.0161876 0.171234 -0.0230543 +-0.0268555 0.0987274 -0.0239779 +0.0118541 0.0404814 0.0449158 +-0.0104973 0.0856567 0.0572952 +0.0271955 0.0520724 0.0391174 +0.00248489 0.105788 0.0426651 +-0.0037871 0.0812341 -0.0371832 +-0.0231675 0.184436 -0.0160624 +-0.0612844 0.044277 0.027687 +0.0239731 0.061977 -0.0246362 +-0.00946933 0.0932363 -0.0348935 +-0.0178949 0.0971863 0.0483787 +-0.00196639 0.0392296 -0.0118812 +-0.0067485 0.0755804 -0.0372256 +-0.00967937 0.0555867 -0.0337759 +0.000980617 0.120181 -0.0134191 +-0.0806495 0.10968 0.039129 +0.0358807 0.0812282 -0.0166923 +0.0146499 0.0699433 0.0528108 +-0.034478 0.0590226 0.0391844 +0.0203856 0.0348183 -0.00149748 +0.0142674 0.0709686 -0.0310685 +-0.0334971 0.119329 0.0299275 +-0.0341948 0.0435484 0.0464376 +-0.00450247 0.056202 0.0539356 +-0.0721189 0.15515 0.0282101 +-0.000346509 0.12561 -0.00723663 +-0.0756644 0.0774182 -0.00947264 +0.014908 0.106309 -0.0185911 +0.0267515 0.102116 0.0406018 +-0.0626019 0.174089 -0.0546038 +-0.0574874 0.0805202 0.0440851 +-0.0609158 0.169795 -0.0608698 +0.0438296 0.0973504 0.015162 +-0.072512 0.104082 0.0376881 +0.0359801 0.0821479 0.0380155 +-0.0573808 0.129734 0.0381066 +-0.0236825 0.0566574 -0.0305632 +-0.0351787 0.0336265 -0.0226404 +-0.0257826 0.0783385 -0.0372231 +-0.0733446 0.159645 -0.0339252 +-0.024717 0.169741 -0.0113487 +-0.0597904 0.0825229 -0.0201763 +-0.0638365 0.0996097 -0.0175199 +-0.0897172 0.118919 0.0457459 +0.00851027 0.105753 0.0425683 +-0.0857293 0.121702 0.0488414 +-0.00654714 0.043 0.0484741 +-0.0524991 0.109798 0.0378325 +0.0089719 0.130372 0.00300057 +-0.0912936 0.114724 0.0218532 +-0.0758153 0.155373 0.0254598 +0.0443256 0.0931523 0.0201621 +-0.00159763 0.0391157 -0.0252097 +0.0358716 0.112393 0.0201061 +-0.0582724 0.0345955 0.0435663 +0.0444341 0.0861163 0.024155 +-0.0798668 0.12036 0.0500614 +-0.0486801 0.12235 -0.0113455 +0.044671 0.0931702 0.0171607 +-0.0867731 0.0820034 0.0144903 +-0.0444986 0.0465011 0.0409291 +-0.0132439 0.178631 -0.0284206 +-0.0014976 0.0856652 0.0573264 +-0.0555627 0.0351736 0.0453577 +-0.0757755 0.0948358 -0.0134771 +0.0116939 0.0459283 0.0447695 +-0.0334941 0.0690232 0.0409338 +-0.0717098 0.161007 -0.0419418 +-0.0620707 0.163126 -0.0385937 +0.0188526 0.103753 -0.0198618 +-0.0699102 0.14965 -0.0409667 +-0.0405063 0.0902417 0.0426463 +-0.071716 0.148756 -0.0367532 +-0.0218007 0.0637891 0.0462553 +0.0567259 0.0536428 0.00417778 +-0.0893948 0.09291 0.012442 +-0.0603715 0.133894 0.0372893 +0.0314991 0.054058 -0.0137198 +0.0203015 0.126964 0.0128708 +-0.0845068 0.120355 0.0490624 +-0.0624258 0.0342984 0.0291094 +-0.0395093 0.0930879 0.0428865 +-0.0277909 0.0380629 0.00793761 +0.0321502 0.106752 -0.0110706 +0.0298444 0.106115 0.0363002 +-0.054857 0.0970227 -0.0215362 +-0.0397671 0.127634 -0.000654541 +-0.0249592 0.0767123 0.050372 +-0.0265277 0.10717 0.0404632 +-0.0283702 0.0535742 -0.0233936 +0.00450189 0.050474 0.0524519 +0.00174762 0.0944417 -0.0320379 +-0.0810711 0.076096 -0.000474637 +0.0169426 0.11422 -0.015094 +-0.0380634 0.127686 0.00145512 +-0.0320932 0.0877303 -0.0254981 +-0.0569735 0.056267 0.00463231 +-0.0692551 0.175557 -0.0461164 +-0.0461819 0.130936 0.0220239 +0.0424151 0.101486 0.0141591 +-0.0816004 0.110405 0.0418977 +-0.0486814 0.0634873 -0.0123857 +-0.0354984 0.0491504 0.038916 +0.0232288 0.125257 0.0153837 +0.0251982 0.123641 0.0075622 +-0.0357278 0.07254 -0.0181295 +0.0451439 0.0802684 0.0230283 +-0.00649644 0.0605343 0.0557379 +-0.0697973 0.159564 -0.0489352 +-0.037469 0.120514 -0.011464 +-0.0869577 0.133848 0.0453706 +0.0185257 0.0352322 0.0362088 +-0.0206549 0.0768238 0.0545752 +0.0458945 0.0764062 0.00420006 +-0.0137194 0.091107 -0.0367438 +-0.0375014 0.106979 0.038117 +-0.0446156 0.0437685 -0.0132939 +-0.064545 0.156137 -0.0442784 +0.0275233 0.0621538 -0.0218174 +-0.0642285 0.0429095 -0.00424321 +-0.00460043 0.0434181 -0.0258683 +-0.0778454 0.158312 -0.0179205 +0.00252706 0.0800582 0.0567791 +0.0174798 0.0919971 -0.0254067 +-0.08982 0.133788 0.032216 +0.0343452 0.114918 0.0052408 +-0.0630651 0.167844 -0.0445874 +0.0164152 0.127597 0.00146207 +-0.0755176 0.120378 0.0530566 +-0.00615627 0.0994928 -0.025355 +-0.0501125 0.157587 -0.00554245 +-0.0332242 0.152554 -0.00262082 +0.0104732 0.0962984 0.0498872 +-0.0184975 0.111326 0.0402128 +-0.0228147 0.0826618 -0.0384205 +0.025553 0.0822419 0.0475803 +-0.0841632 0.11158 0.00227497 +-0.0198477 0.126879 0.00378288 +-0.069852 0.0951674 -0.0161643 +-0.0306901 0.0678681 -0.026462 +0.0155988 0.0699697 0.0524229 +-0.0167333 0.0642714 -0.0369951 +-0.0167796 0.121583 -0.00869919 +-0.0594953 0.0747194 0.0418121 +-0.0630515 0.152177 -0.00858675 +-0.0111714 0.129564 0.00700207 +-0.0890821 0.101017 0.0143926 +-0.0145147 0.116898 0.0378441 +-0.0462973 0.0368721 -0.0182757 +0.0251418 0.056415 0.0432482 +-0.0114906 0.0532044 0.051601 +-0.0514985 0.0931716 0.0440238 +-0.0536498 0.152894 0.0173581 +-0.0226294 0.157855 -0.00422736 +-0.0723402 0.0380689 0.00697334 +-0.0100211 0.0383173 0.0131334 +-0.0469913 0.0345734 0.0373898 +0.0117235 0.127254 -0.00315056 +0.0163555 0.0343012 4.3653e-05 +-0.000810177 0.084021 -0.0366442 +-0.0417008 0.153622 0.00625938 +-0.0695833 0.156717 -0.0509483 +-0.00967078 0.0541668 -0.0336446 +-0.0862734 0.13657 0.044609 +0.0363518 0.0562159 0.0330449 +-0.0528028 0.0666303 0.0365007 +0.0263615 0.0352587 0.00303932 +0.00111992 0.10872 -0.0203906 +0.00958242 0.0350342 0.0036093 +-0.0639107 0.108163 -0.0148371 +-0.00462988 0.0451748 -0.0282624 +0.00356053 0.130245 0.0239041 +-0.0428482 0.128274 0.00047704 +-0.0896015 0.136498 0.0242003 +-0.011119 0.163582 -0.018751 +-0.0521911 0.0531856 0.0256383 +0.02777 0.0808734 0.0454779 +0.0197898 0.0754906 0.0515075 +-0.0405912 0.0404909 -0.0262976 +-0.0184208 0.185917 -0.0222223 +-0.0738815 0.117926 -0.00764413 +0.0124741 0.0346639 0.0372734 +-0.057552 0.0336321 0.0166122 +0.0220421 0.0848959 0.0495666 +0.0184956 0.0962193 0.0472822 +-0.0577255 0.0578321 0.0166151 +0.00647696 0.11413 0.0402504 +-0.073854 0.100736 -0.0128364 +-0.0528758 0.0985097 -0.0219976 +0.0185485 0.111232 -0.0158588 +0.0257216 0.0672521 0.0441644 +-0.000523566 0.0428273 0.0465064 +-0.0354915 0.050532 0.0385401 +-0.0294972 0.0602632 0.0372614 +0.00410653 0.111609 -0.0202712 +0.0583904 0.0706508 0.00920486 +-0.0644959 0.084745 0.0443622 +-0.0182219 0.0954777 -0.0312615 +0.0163111 0.0608546 -0.0282401 +-0.0725001 0.120391 0.0535845 +-0.0164977 0.0828905 0.0574138 +0.0130474 0.0490028 0.046739 +-0.072956 0.173805 -0.0388399 +-0.0264766 0.0576077 -0.0284232 +-0.0644961 0.0602892 0.0183972 +0.0357477 0.074144 -0.0137952 +-0.0655596 0.171143 -0.0433207 +-0.0784904 0.133065 0.0521095 +-0.0651287 0.156206 0.0175513 +-0.0205565 0.183109 -0.0139659 +-0.0680156 0.156066 0.0121787 +0.0233417 0.0549864 0.0441504 +-0.0745084 0.134461 0.0510337 +-0.0489659 0.12587 -0.00699728 +-0.0422261 0.0339521 -0.0076663 +0.00337017 0.091416 -0.0329064 +0.040054 0.0998936 -0.00479776 +-0.0939204 0.128289 0.0212475 +-0.0301543 0.157156 -0.0110394 +-0.0456539 0.0606919 -0.0125779 +-0.0534986 0.0833862 0.0450488 +-0.047648 0.0614917 0.0367154 +-0.0486267 0.13356 0.00299082 +-0.0895466 0.0969995 0.0164128 +-0.0339552 0.0695264 -0.0185169 +-0.0176031 0.0711548 0.0545194 +0.0454033 0.0457238 -0.00184235 +-0.0546836 0.0478194 0.0276676 +-0.0875304 0.0861027 0.015468 +0.00919687 0.124582 -0.00824181 +0.0404579 0.0971405 0.0281735 +0.0219677 0.0346711 0.00269802 +-0.0114833 0.0618754 0.0549615 +-0.0209254 0.127401 0.0135903 +-0.0681737 0.074979 0.0383298 +-0.0357386 0.176065 -0.00515676 +0.0340797 0.115381 0.00660331 +-0.0207606 0.0670735 -0.0371287 +-0.075369 0.155134 0.0270903 +0.000773445 0.126081 0.0315854 +0.0414985 0.058326 0.0311197 +-0.03873 0.0340634 -0.0163036 +-0.0929281 0.121393 0.0102886 +-0.0680681 0.061235 0.0168081 +-0.0756991 0.0688679 0.00254149 +-0.0138611 0.0386244 0.0283378 +-0.0806333 0.120347 0.049427 +-0.0534714 0.115278 0.0343029 +-0.0365049 0.169731 0.000981263 +-0.0624922 0.100117 0.0423224 +0.00907886 0.126317 -0.00613291 +-0.0935493 0.125561 0.0262639 +0.022475 0.0933993 0.047467 +-0.015827 0.0921385 -0.0358122 +-0.0210449 0.0384562 -0.0168371 +-0.0207268 0.0612423 -0.0346723 +-0.0134967 0.109686 -0.0201653 +0.0456137 0.0708816 0.00289794 +-0.0090863 0.16966 -0.0247514 +-0.0889386 0.0888873 0.0194501 +-0.0532128 0.133944 -0.00360453 +0.0195053 0.0351963 0.0310168 +-0.0255119 0.104394 0.0424048 +-0.0174974 0.103031 0.0436129 +-0.0299173 0.0383162 -0.0299848 +0.00451386 0.0856474 0.057126 +0.0147725 0.0939169 -0.0254338 +0.0242867 0.0719771 -0.0256393 +0.0172719 0.0348529 0.0254373 +0.0558147 0.064873 0.0261542 +-0.0364911 0.0662596 0.041455 +-0.0758603 0.151341 -0.0198831 +-0.0616679 0.0643653 -0.00651734 +0.0383551 0.0603737 0.0324667 +-0.0477542 0.0782681 -0.0190718 +-0.0550269 0.0560444 -0.00440953 +-0.0395059 0.0972892 0.042147 +-0.0777926 0.167262 -0.0295303 +0.0604641 0.0623144 0.017179 +-0.0777137 0.177848 -0.0500546 +-0.0521757 0.0461175 0.0166821 +-0.0754874 0.130275 0.0528009 +0.0116887 0.0343979 -0.00472037 +-0.0617898 0.16156 -0.0335933 +0.0442649 0.0973538 0.00716867 +-0.0616258 0.0641254 0.029779 +0.00550935 0.0688576 0.0555484 +-0.053845 0.0955972 -0.0217935 +0.00741716 0.0375454 -0.0236134 +-0.0596132 0.113903 0.0363038 +-0.0508811 0.108424 -0.0190099 +-0.0437584 0.079737 -0.0197567 +-0.0733029 0.15632 0.000130521 +-0.003234 0.0960652 -0.0317479 +-0.0575581 0.0507849 0.00163524 +0.00435827 0.129372 -0.0013469 +-0.025212 0.123605 0.0223303 +-0.0669175 0.115159 -0.00990572 +-0.0722654 0.153589 0.032663 +-0.0147591 0.033582 -0.024214 +-0.00115893 0.11911 -0.0142672 +0.019441 0.0384709 -0.0146972 +-0.0772499 0.172214 -0.0459981 +-0.069531 0.14702 0.0417131 +-0.0343373 0.0443897 -0.0277936 +-0.0705699 0.152776 -0.0468148 +-0.0918951 0.117319 0.00831437 +0.0103421 0.0567446 -0.0299462 +-0.0336919 0.119642 -0.0105178 +-0.0629712 0.145905 -0.0115915 +0.00646739 0.0342464 -2.28584e-05 +0.00713618 0.103008 -0.0210892 +-0.018026 0.0384381 0.0276504 +0.0433583 0.0505545 -0.0063311 +-0.0882504 0.0900881 0.0054683 +0.00248872 0.118285 0.0387448 +-0.0227774 0.0713561 -0.0378898 +-0.0154972 0.122303 0.0324651 +-0.0322294 0.0708154 -0.0244722 +-0.025189 0.174162 -0.0196112 +-0.0871031 0.0846537 0.0064784 +0.00836869 0.0928852 -0.0303774 +-0.0424793 0.0958739 0.0423242 +-0.0640607 0.152536 -0.00179872 +0.00949301 0.118213 -0.015379 +0.0461867 0.0806341 0.00618373 +-0.0408599 0.102809 -0.0209257 +-0.0431187 0.159159 -0.0099383 +-0.0154785 0.0828416 0.0569929 +-0.0775215 0.161144 -0.0189221 +0.0358655 0.112954 0.0143927 +-0.0759551 0.131077 -0.00722143 +0.0465282 0.0726943 0.00507292 +-0.0784776 0.134439 0.0514602 +-0.0718916 0.0995338 0.0398851 +0.0174027 0.127944 0.018931 +-0.0494895 0.143125 0.00338457 +0.0333197 0.0357288 0.0133458 +0.0132595 0.0751478 -0.0304595 +-0.0324893 0.100164 0.0432113 +0.0343769 0.112004 0.0266888 +-0.0108703 0.180136 -0.0264173 +-0.0872312 0.1132 0.0437313 +0.0353616 0.106017 0.0302164 +-0.0282335 0.0382933 0.0310718 +-0.0646654 0.132541 0.0415985 +-0.0416682 0.0336125 -0.0201879 +-0.0690362 0.134069 0.0476421 +0.023852 0.057789 0.0449027 +0.0440963 0.0735854 0.0249308 +-0.0624573 0.163073 -0.0525854 +-0.0341025 0.169759 -0.00204136 +0.0589446 0.0649523 0.0051412 +-0.0602752 0.0336649 0.0124615 +-0.0628859 0.1495 -0.0200671 +-0.0722644 0.0671374 -0.000515551 +0.0135851 0.0658847 0.0529797 +-0.00198691 0.0368792 0.0142478 +0.0367682 0.0700097 -0.0138015 +-0.0296169 0.0408892 -0.0298249 +-0.0376612 0.0606745 -0.0122764 +0.00800811 0.0345328 -0.00370443 +0.0105539 0.104067 -0.0202515 +-0.0488192 0.0586801 0.0351334 +-0.0557857 0.0840569 -0.0214422 +0.0308153 0.0525508 -0.0137522 +0.0423969 0.0451283 0.0286278 +-0.0332147 0.036763 0.0499127 +-0.0736682 0.0730938 -0.00832442 +-0.0175484 0.124749 0.0265509 +-0.063425 0.163107 -0.0254606 +-0.0727351 0.0832969 0.03983 +0.0319929 0.088146 -0.0193446 +-0.0444371 0.122416 -0.011439 +-0.0858505 0.116285 0.047652 +-0.00444148 0.0916785 -0.0352643 +0.022957 0.0981907 0.0456622 +-0.053144 0.0595659 0.0253997 +-0.0788525 0.107465 0.0324362 +-0.0457478 0.130844 0.0207105 +-0.0684896 0.172346 -0.0400602 +-0.034733 0.0498868 -0.0123113 +0.0415062 0.0499285 0.0325086 +-0.0665679 0.0404538 -0.00528616 +-0.00650346 0.112991 -0.0197156 +-0.0448474 0.0999398 -0.0215303 +-0.0816586 0.137613 -0.00180043 +-0.0585618 0.124728 -0.00774237 +-0.0466281 0.0592297 -0.0120314 +-0.0670784 0.0653289 0.0275882 +-0.0835882 0.125784 0.0507488 +-0.0164643 0.0842755 0.0572298 +-0.0904705 0.135055 0.0132171 +-0.022546 0.116788 0.03495 +-0.0334891 0.091814 0.044517 +-0.0719917 0.151909 0.0358108 +-0.0151953 0.168341 -0.0151527 +-0.0590718 0.156479 0.0080978 +-0.0154402 0.120098 -0.0111735 +-0.036496 0.17271 -0.000384966 +0.0392898 0.0993144 0.028831 +0.024983 0.0795787 0.048494 +0.0483695 0.0734096 0.0143189 +0.0196959 0.0394038 0.04222 +-0.00886334 0.103392 -0.0235214 +-0.0118005 0.0841384 -0.0387163 +0.0252205 0.0888413 -0.0232794 +0.0298168 0.052105 0.0376191 +-0.0776927 0.169444 -0.0419634 +-0.0314915 0.057461 0.0373842 +-0.0504539 0.0558071 0.0326022 +0.0138422 0.0901622 -0.0294996 +-0.0510104 0.149266 0.0138316 +-0.0341485 0.0337694 0.0159272 +-0.085608 0.144617 0.0380805 +-0.0475132 0.0875996 0.0450977 +-0.091127 0.143391 0.0261688 +-0.0781968 0.0778917 0.0320122 +0.0284509 0.104793 -0.0149826 +-0.0223025 0.0957816 -0.0275832 +-0.0179573 0.123303 -0.00653742 +0.0369901 0.111103 0.00416682 +-0.0643667 0.159406 -0.0155654 +-0.0701684 0.165994 -0.0191552 +-0.0863906 0.0819518 0.00951177 +-0.0224965 0.100254 0.0443771 +-0.0757302 0.147214 -0.00986768 +0.0357939 0.0699287 -0.0148404 +-0.0376499 0.0577418 -0.0112619 +0.019292 0.0988007 -0.0225555 +-0.00992376 0.097544 0.0521376 +-0.0493712 0.0572598 0.0342952 +0.0255474 0.054922 0.0420386 +-0.0494259 0.144129 0.00171058 +-0.0624989 0.104282 0.0409609 +-0.0430319 0.0336432 -0.0167728 +0.0179185 0.121996 -0.0074786 +-0.0190623 0.127503 0.00554509 +-0.0474205 0.145822 -0.000777163 +0.0526083 0.0475984 0.0212218 +0.00022388 0.0797271 -0.0356555 +-0.0301525 0.168207 -0.0169318 +-0.00151732 0.0576213 0.0542293 +-0.00248496 0.0548872 0.0545581 +-0.0502022 0.12654 -0.00566411 +-0.0529063 0.0676787 0.0373317 +0.00249985 0.107203 0.0424791 +0.0029144 0.125773 -0.00745627 +0.00334453 0.0496343 -0.0297987 +0.00449641 0.11692 0.039168 +0.0399282 0.041091 0.0244564 +0.0178192 0.126124 0.0248053 +-0.0799402 0.132433 -0.00455304 +-0.0649027 0.179945 -0.0575726 +0.0404255 0.0914089 -0.00978781 +-0.065797 0.132562 0.0435297 +-0.0372368 0.172627 -0.0118528 +-0.0554974 0.10569 0.0407246 +-0.076892 0.165957 -0.0247772 +-0.0587093 0.0344925 0.0418625 +0.00823978 0.0768076 -0.0338586 +-0.0626545 0.150596 -0.0225786 +-0.0384668 0.0931237 0.0434147 +0.0141618 0.0576523 0.0502255 +-0.0683767 0.176522 -0.0580176 +-0.0129882 0.119781 -0.0128781 +0.00848559 0.0950467 0.0516302 +-0.0429797 0.127137 -0.00436425 +-0.0497252 0.141657 0.00538484 +-0.0179056 0.127636 0.0191062 +-0.0520277 0.0563658 0.0215194 +-0.02384 0.0968692 -0.0247025 +-0.0561697 0.0684762 0.0377129 +0.0120601 0.0343849 -0.00838478 +0.0299331 0.0362092 0.00288494 +-0.0763652 0.1528 -0.0108857 +-0.0736067 0.154075 -0.0289008 +0.00533532 0.0538992 -0.0301758 +-0.0599208 0.0394628 0.0453423 +-0.0184879 0.0856371 0.0571362 +-0.0208094 0.0376226 -0.0178912 +-0.0137231 0.183161 -0.0241068 +-0.0648137 0.0346657 0.0352478 +-0.0271872 0.0379033 0.0118238 +0.0264669 0.0477487 0.0380114 +-0.0723733 0.0352474 0.00704331 +-0.0322701 0.0835031 -0.0295487 +0.0272688 0.122366 0.00977001 +-0.0603093 0.0652594 0.0325934 +-0.00180254 0.0385071 0.00372255 +-0.0522762 0.123638 -0.00859751 +-0.0776201 0.171284 -0.03689 +-0.0802965 0.0872747 0.0345612 +-0.0889001 0.136394 0.00820864 +0.000412609 0.0393166 0.0342543 +-0.0642567 0.0344972 0.033776 +-0.0921303 0.11612 0.0363104 +-0.0679654 0.134068 -0.0084026 +-0.0839818 0.115583 0.0478751 +-0.00536465 0.129031 -0.000823415 +0.00514522 0.103044 -0.0216473 +-0.0496209 0.0517545 -0.00857532 +-0.0757023 0.177226 -0.0456228 +-0.0298766 0.05514 -0.0203901 +-0.0861039 0.0846923 0.0224682 +-0.0238144 0.0879301 0.05313 +-0.0611505 0.153585 0.0321143 +-0.0917527 0.113836 0.0170127 +-0.0374964 0.0591338 0.0402834 +-0.0187977 0.0799028 -0.0389405 +-0.0680553 0.17056 -0.0341587 +-0.0658521 0.0361993 0.0388506 +0.0111435 0.100252 -0.0225401 +-0.0425873 0.125894 -0.0070983 +-0.0265027 0.0498541 0.0461184 +0.00111147 0.110147 -0.0201294 +-0.00249391 0.119678 0.0379989 +-0.0117585 0.0742488 -0.0381827 +-0.0586841 0.0466878 -0.00234651 +0.0295244 0.0750328 -0.0218147 +-0.0218606 0.101624 -0.0238704 +0.0287102 0.0942447 0.0434182 +-0.0709345 0.0627948 0.0166551 +-0.0225064 0.10717 0.041634 +-0.0335027 0.074683 0.04142 +-0.092242 0.128315 0.0292604 +-0.0374976 0.0888821 0.0433743 +0.0303768 0.0578247 0.0402716 +-0.00891857 0.0338467 -0.0251248 +-0.0533378 0.162724 0.0010506 +-0.0869041 0.141929 0.0394374 +-0.047972 0.135544 0.0173874 +0.0485157 0.0597129 0.0310438 +-0.00667005 0.0904165 -0.0359686 +-0.0759966 0.0994807 0.0369297 +-0.0625222 0.149113 -0.00558111 +-0.0718118 0.14996 0.0389054 +-0.0844416 0.147376 0.00515339 +-0.0165344 0.0392124 0.0380479 +-0.079893 0.0949635 -0.0095262 +0.0236407 0.0347514 0.0177381 +-0.0196654 0.0683158 0.0524244 +0.0245994 0.0981921 0.0445203 +-0.0849795 0.0952966 -0.00257745 +-0.0528207 0.121242 0.0358805 +-0.0236049 0.0394052 -0.0289635 +-0.0332166 0.165305 -0.0043102 +-0.0251865 0.160795 -0.0139572 +-0.0865509 0.152927 0.0144746 +-0.0693964 0.157876 -0.00437702 +-0.0628145 0.169399 -0.0485883 +-0.0643644 0.153473 -0.0380226 +-0.081904 0.115723 0.0482136 +0.0101277 0.0911581 -0.0305812 +-0.0405043 0.0944618 0.0422679 +0.021919 0.118008 0.0336347 +-0.0203338 0.123782 -0.00500918 +0.0111252 0.108699 -0.019265 +-0.0574976 0.0776487 0.0433498 +-0.0354848 0.0987251 0.0428224 +-0.0651932 0.141087 0.0409428 +-0.0240513 0.0386342 -0.0120079 +0.039324 0.106993 0.0191699 +-0.0754947 0.142836 0.0460912 +-0.0122699 0.0338184 -0.0220638 +-0.0246982 0.0551057 0.0409028 +-0.0578691 0.105465 -0.0183362 +-0.0264983 0.10435 0.041876 +-0.07915 0.166638 -0.0349654 +-0.0578202 0.140285 -0.0045343 +0.0220783 0.0686046 0.0476717 +-0.0770892 0.107143 -0.00760422 +-0.0902136 0.13513 0.0232187 +-0.0723372 0.156305 0.0208189 +-0.0650055 0.135525 -0.0079735 +-0.0549293 0.154823 0.0139773 +0.0292317 0.0773621 -0.0219141 +-0.0817276 0.0964548 -0.00656413 +-0.018203 0.175668 -0.0239316 +-0.0553377 0.0457536 -0.00639551 +-0.0161975 0.0432999 0.0517769 +0.0304284 0.0383851 -0.001443 +-0.0345483 0.152531 -0.00560476 +-0.0629676 0.160574 -0.0208244 +-0.0935783 0.124186 0.0262856 +-0.0311645 0.0580869 -0.017406 +-0.0317989 0.0382037 0.00155838 +0.0576172 0.0686777 0.0217698 +-0.00505811 0.0339518 -0.0207718 +-0.0696447 0.166615 -0.0510113 +-0.0629867 0.155807 0.0241223 +-0.0340215 0.0794269 -0.0255119 +-0.0867747 0.0981404 0.0024092 +-0.0880604 0.13085 0.0022566 +0.0184887 0.0948214 0.0475148 +-0.021497 0.0988475 0.0444941 +-0.0416678 0.0592681 -0.0121392 +-0.0567258 0.0480405 0.0316684 +-0.0423133 0.129133 0.00872164 +-0.000508444 0.105851 0.0435843 +-0.0592465 0.046889 0.0316721 +0.0461219 0.0806353 0.0161697 +-0.0281528 0.0348412 0.0481365 +-0.0702797 0.180333 -0.0522624 +-0.0478122 0.134031 0.00640478 +-0.0077489 0.0713239 -0.0366154 +-0.0122439 0.168894 -0.023749 +0.0212552 0.0777078 -0.0266851 +-0.0917522 0.132325 0.0122241 +-0.0361034 0.165201 -0.01444 +-0.052501 0.0805516 0.0443114 +-0.0654153 0.0336345 0.00606909 +-0.0623235 0.139333 -0.00679766 +-0.0616576 0.170967 -0.0555865 +0.00174509 0.0392548 -0.00741822 +-0.0260001 0.0677977 0.0418131 +-0.0684331 0.0336931 0.00540027 +-0.0448348 0.0942101 -0.0220316 +-0.0731091 0.158237 -0.0329184 +0.0078778 0.0989406 -0.0227671 +0.0314417 0.115539 0.0270138 +-0.00906667 0.129748 0.004892 +0.00649868 0.108551 0.0413323 +-0.0382124 0.150071 -0.00262103 +0.0332799 0.0564373 0.0374441 +-0.00349826 0.0647878 0.0565544 +-0.0487816 0.084091 -0.021606 +-0.0568391 0.118972 -0.0116757 +-0.0644875 0.156696 -0.0456027 +-0.0411616 0.152146 0.00524032 +-0.0636742 0.142603 -0.0078783 +-0.0711318 0.0777267 0.0384114 +0.00321355 0.0796602 -0.0346071 +0.00447281 0.110003 0.0420134 +-0.0174998 0.0772311 0.0559767 +-0.0263139 0.182659 -0.010558 +-0.0322455 0.15809 0.00238998 +0.045843 0.0760483 0.0203743 +-0.0548028 0.0464121 0.0246755 +-0.0376206 0.0376543 -0.029358 +-0.0523414 0.0402098 0.0465679 +-0.0432186 0.121963 0.0262727 +-0.0321664 0.125608 0.018357 +-0.0857232 0.0792432 0.0155047 +-0.0782439 0.151233 0.0351897 +-0.0187146 0.058392 -0.0343021 +0.0452185 0.0847535 0.00320441 +-0.0640415 0.167322 -0.0369994 +-0.0823499 0.132665 0.0507367 +-0.0301219 0.0493909 -0.0214267 +-0.0843946 0.0818335 0.0225112 +-0.0246526 0.0386383 0.0332956 +0.0563147 0.0580894 0.0250386 +0.00021169 0.0389894 0.029096 +-0.00241379 0.126666 -0.00637642 +-0.0301429 0.0551656 -0.0193914 +0.0331811 0.0417541 0.0279348 +-0.0861938 0.104994 0.0213645 +-0.0824118 0.0788951 -0.000494108 +-0.0743937 0.157452 -0.00470821 +0.0187225 0.127515 0.0179893 +-0.0829047 0.0763015 0.0175246 +-0.0650238 0.0641454 0.0272956 +0.0355567 0.0878311 -0.0169845 +-0.0887171 0.117597 0.0462102 +-0.0760085 0.141318 -0.005968 +-0.0127703 0.0756733 -0.0384193 +-0.0158456 0.122449 -0.00760827 +-0.0842393 0.107513 0.00238784 +-0.0674898 0.0986608 0.0416951 +-0.0554949 0.0427291 0.0458455 +-0.0201912 0.0383436 0.00560257 +-0.0372682 0.0344921 0.0377782 +-0.0357437 0.0380351 0.0467216 +-0.0450103 0.054631 0.0385549 +-0.0369768 0.047531 -0.0185543 +0.0520769 0.0581909 0.0294992 +-0.0329038 0.153455 -0.00604291 +-0.0725184 0.128806 0.0519752 +-0.0270556 0.0706113 0.0413767 +-0.0285061 0.116641 0.0323888 +-0.0144886 0.109993 0.0419529 +-0.0285168 0.0803552 -0.0356291 +0.00952067 0.0702149 0.0551678 +-0.0355616 0.151785 -0.00432824 +-0.0826529 0.0796856 0.0277856 +-0.0365963 0.127614 0.0137714 +-0.0657008 0.139678 0.041893 +-0.0758694 0.0777615 0.0343673 +-0.00737907 0.0367231 0.0491533 +-0.0704775 0.114632 0.0510417 +-0.059558 0.128315 0.0402204 +-0.0538405 0.0941624 -0.0218364 +-0.0274601 0.124651 0.00100866 +-0.0637125 0.0705931 -0.0131267 +-0.0644549 0.043254 0.0326925 +-0.0746657 0.154121 -0.0198989 +-0.0348879 0.043516 0.0457289 +-0.0234602 0.17569 -0.0129988 +-0.0720698 0.176015 -0.0442709 +-0.043544 0.157959 0.00535766 +-0.0407405 0.0739506 -0.0180651 +-0.0696125 0.150354 -0.0430103 +0.0418343 0.0943991 0.0271656 +-0.0932461 0.129666 0.0232459 +-0.0398464 0.0957237 -0.0225845 +-0.0764914 0.171559 -0.0359139 +0.0408836 0.0614281 -0.00367417 +-0.0356978 0.0346221 -0.0180732 +-0.0895729 0.151493 0.0191084 +0.0263253 0.122966 0.0165355 +0.0113407 0.0567362 -0.0298085 +-0.0736511 0.180693 -0.0540178 +-0.042544 0.16227 0.00511409 +-0.0522198 0.0374253 0.0467614 +-0.0777691 0.0689598 0.0151422 +0.0463347 0.0428813 0.020444 +0.0509435 0.0554131 0.029582 +0.0233146 0.125046 0.00829766 +0.00834665 0.0958673 -0.0275066 +-0.00680856 0.127356 -0.00506622 +-0.0554704 0.157309 0.00940753 +-0.0754721 0.103526 0.0362863 +0.044978 0.086159 0.0221711 +-0.0716236 0.170198 -0.0283222 +-0.0196387 0.0464931 -0.0280998 +0.0569791 0.0686933 0.0226042 +-0.0233118 0.182976 -0.0180572 +0.0290367 0.060539 0.0418753 +-0.0708458 0.0980019 -0.0152545 +-0.044501 0.0562098 0.0390177 +-0.00787685 0.105931 -0.0227718 +-0.0774743 0.140015 0.0480697 +0.0275361 0.10477 0.0382193 +0.00254476 0.127971 -0.00383507 +0.0235041 0.108407 0.0388101 +-0.055098 0.146723 0.029184 +-0.0257112 0.0634738 0.0402437 +0.0222133 0.103397 0.0428172 +0.0239484 0.0901184 -0.0234122 +-0.0265532 0.080945 0.0504296 +-0.0801014 0.0881671 -0.00858727 +-0.0467634 0.0560036 0.0374321 +0.0562967 0.0661688 0.0251012 +-0.0323569 0.124066 -0.00320487 +-0.00891511 0.126415 -0.00600997 +0.0343206 0.094597 -0.0141158 +-0.0876587 0.151372 0.0112162 +-0.0723621 0.114661 0.051285 +-0.033385 0.126374 0.00317306 +-0.0465636 0.146777 -0.00183655 +-0.0086601 0.174145 -0.0268323 +0.0224333 0.0422246 0.0409441 +-0.0723219 0.171178 -0.0314543 +-0.0633454 0.159973 -0.0185957 +-0.0741825 0.156237 0.0158024 +0.0283215 0.117455 0.0287048 +-0.0518625 0.050332 0.0226347 +-0.0345112 0.112532 0.034973 +0.0102504 0.0766955 -0.0323547 +-0.0628937 0.146875 -0.0135938 +-0.0913593 0.126907 0.0414668 +-0.0755221 0.11896 0.0528247 +-0.0186351 0.0933648 0.0534492 +-0.00679579 0.0826768 -0.0377354 +0.00822704 0.0782053 -0.033734 +-0.0942744 0.126919 0.0202522 +-0.0462848 0.131856 0.0204922 +-0.05065 0.0706021 0.0388719 +-0.00522459 0.0384215 0.0122026 +-0.0524927 0.0987339 0.0429361 +-0.0388306 0.112851 -0.0174267 +-0.0268641 0.101582 -0.02361 +-0.0846396 0.153647 0.0136585 +0.0166715 0.0353808 -0.0156588 +-0.0553627 0.139574 0.0304759 +-0.0257886 0.0768981 -0.036857 +-0.0402218 0.0342366 0.0285657 +-0.045101 0.156152 -0.00816042 +-0.0348248 0.0473223 0.0413292 +0.0145592 0.0672414 0.0526521 +-0.0436275 0.0548777 -0.0111987 +-0.0248971 0.163359 -0.0156802 +-0.0449755 0.115277 -0.0159431 +-0.0492995 0.0345621 0.0403913 +-0.0257365 0.0348667 0.0503471 +-0.0754593 0.159053 -0.00907047 +-0.0632614 0.0601538 0.00426714 +-0.0265686 0.0382637 0.0296453 +-0.0355718 0.165308 -0.0024565 +-0.0727498 0.180616 -0.0549771 +-0.0381364 0.171203 -0.0118442 +0.0153228 0.0362397 0.00366285 +-0.0383106 0.0336688 0.00433881 +-0.0125102 0.0897843 0.0566766 +-0.0484982 0.0890084 0.0450201 +-0.0889791 0.0915153 0.00944503 +-0.0511466 0.124736 -0.0077758 +-0.00758688 0.0376797 -0.0254717 +-0.0509981 0.147813 0.0138388 +-0.0147745 0.0382944 0.014 +-0.0305049 0.0617476 0.0379767 +-0.0109155 0.0356188 0.0494667 +-0.0703667 0.142544 -0.0104932 +-0.0424925 0.0902452 0.0426486 +0.0099296 0.113714 0.0390911 +0.0145599 0.088488 -0.0297413 +-0.00249512 0.122376 0.0359373 +-0.0216559 0.0972103 0.0449705 +-0.0717874 0.0850294 -0.0163139 +0.0281202 0.0348895 0.0148787 +-0.0582075 0.154657 0.0258383 +0.0103893 0.0434318 -0.0247637 +0.0283214 0.115107 0.0315696 +-0.0408808 0.115001 -0.0156637 +-0.0569818 0.0548922 0.00263009 +-0.0347008 0.0666358 -0.0153327 +-0.0518449 0.146252 0.0164181 +-0.0388328 0.0943088 -0.0230504 +-0.0315145 0.0788556 0.0411289 +0.0268942 0.0988154 -0.0185978 +-0.0875561 0.0968363 0.00343541 +0.0426825 0.0805137 0.0283126 +-0.0683872 0.0690317 0.0328821 +-0.0609319 0.0343399 0.0363539 +-0.0258016 0.0867079 -0.0364604 +-0.0891389 0.120288 0.0465529 +-0.062692 0.155999 0.0140721 +0.0223974 0.0473356 -0.0199928 +-0.0616833 0.0676348 -0.0109359 +-0.0752375 0.0864841 -0.0145142 +0.014283 0.0681091 -0.0306905 +-0.0603219 0.0470192 0.0356706 +-0.015495 0.104397 0.0428489 +-0.0698499 0.0994423 -0.0150141 +-0.0293842 0.08757 0.0444817 +-0.00548831 0.112771 0.0416249 +-0.0120723 0.0353434 0.0494553 +0.0118631 0.0894057 -0.0307263 +0.0362901 0.0769906 -0.0138255 +-0.0372663 0.033541 -0.0229762 +0.0110129 0.0846936 0.0546683 +-0.0563673 0.0575771 -0.00141956 +0.0162242 0.0835192 -0.0290783 +-0.0466776 0.13337 0.0173732 +0.0116668 0.0548951 0.0518589 +-0.0175019 0.0758159 0.0556202 +-0.0865692 0.133541 0.00131146 +-0.0366797 0.0636525 -0.0138021 +-0.074087 0.0734714 0.0331119 +-0.0762512 0.156264 -0.00677505 +-0.0414995 0.168206 0.00296291 +0.0023065 0.128418 0.0277808 +-0.0141822 0.0378114 0.0510973 +-0.0674332 0.127053 0.0499702 +-0.0482072 0.0335431 -0.012174 +-0.072499 0.117558 0.0529308 +-0.0281279 0.03862 -0.0128123 +-0.0616129 0.149191 -0.00221638 +0.0436181 0.0416961 0.0210317 +-0.0758657 0.097813 -0.01246 +-0.0818672 0.120683 -0.00433302 +0.00940058 0.0342529 -0.0182643 +-0.018805 0.0625267 0.0503254 +-0.053876 0.126919 0.0361236 +-0.0884983 0.0941957 0.00744581 +-0.0165005 0.120964 0.0336371 +0.0433486 0.0519969 -0.00665823 +-0.0624811 0.149792 0.0367836 +-0.0615025 0.16984 -0.0615386 +-0.0364388 0.0352264 0.0443258 +0.0340769 0.0556934 -0.0107486 +-0.00261634 0.0450445 -0.0274328 +-0.0328486 0.0986298 -0.0228073 +0.0198481 0.0795335 0.0516115 +-0.0599778 0.148254 0.0362061 +-0.00849422 0.0674811 0.0555845 +-0.0530196 0.144246 -0.000696127 +-0.0836424 0.0924862 -0.00555232 +-0.0691184 0.165207 -0.0519806 +-0.0305063 0.111166 0.0367005 +-0.0447319 0.125394 0.0226968 +-0.0165708 0.056922 0.0510974 +-0.0568794 0.0548721 0.000601057 +-0.0355126 0.10012 0.0421792 +-0.00149054 0.131258 0.0163007 +-0.0814469 0.0761204 0.000521161 +-0.0700369 0.0765697 0.0383694 +-0.0791449 0.166643 -0.0339646 +0.0151117 0.0434234 0.0444141 +-0.0568399 0.0344097 0.0371692 +-0.0180623 0.177182 -0.017491 +0.0492456 0.0728121 0.0176064 +-0.0178752 0.105871 -0.0225888 +0.00334696 0.0342028 0.0159318 +0.0153617 0.0344714 0.021761 +-0.0945397 0.121475 0.0202819 +-0.073516 0.18065 -0.0535934 +-0.0934071 0.117385 0.0163015 +-0.0631359 0.0699525 0.0366992 +-0.0252161 0.0550594 0.0400126 +-0.00605897 0.125119 0.0321155 +-0.0360017 0.17408 -0.0118959 +-0.00638198 0.124385 -0.00985914 +-0.0145975 0.0378025 -0.0168233 +0.00417447 0.127894 0.028461 +-0.0410286 0.0345047 0.0334549 +0.0292997 0.0538256 -0.0177694 +0.0372061 0.0980869 0.0328651 +-0.0745356 0.104026 0.0368301 +-0.00436707 0.0386778 0.0266309 +0.0189949 0.0449386 0.0430002 +0.00529011 0.0668325 -0.0327227 +0.00166319 0.130955 0.0203219 +-0.0905947 0.115833 0.0426569 +0.00338984 0.116722 -0.0177517 +0.0203176 0.126182 0.0214303 +-0.0598293 0.139488 -0.00569497 +0.0142784 0.11622 -0.015243 +0.0231289 0.0835821 0.0493611 +0.0515475 0.0540038 0.0286923 +-0.0317664 0.058161 -0.0143983 +-0.0397537 0.0782783 -0.0191449 +0.012627 0.12184 0.0342326 +-0.0823735 0.148711 0.0361489 +-0.012301 0.110982 -0.0195491 +-0.0883046 0.122998 0.0470686 +-0.0315077 0.113893 0.0345441 +-0.0888952 0.137894 0.0271916 +-0.0610259 0.126912 0.0416133 +-0.0475344 0.05323 0.0369443 +-0.00961348 0.0434416 -0.0262361 +-0.0541404 0.124102 0.0375109 +0.0509994 0.044648 0.0132154 +0.0303038 0.118886 0.0223059 +-0.0596345 0.0336285 0.0108415 +-0.0196267 0.0450293 -0.0277098 +-0.0247099 0.0381195 0.00851258 +-0.0774982 0.133088 0.0521596 +0.0276359 0.0629152 -0.0215123 +0.0535119 0.0717543 0.00602975 +-0.0334971 0.0831472 0.0419572 +-0.0596476 0.14187 -0.00422882 +-0.0924522 0.125595 0.0392516 +-0.068714 0.143769 -0.0144235 +-0.0468988 0.126761 -0.00595632 +-0.0303571 0.0537911 -0.0173707 +-0.0709316 0.147597 -0.0300096 +-0.0514754 0.115278 0.0338114 +0.0190263 0.120653 0.0329746 +-0.0340031 0.1089 -0.0192874 +-0.0335001 0.116617 0.0321346 +-0.0671562 0.0724925 0.0371747 +-0.0746759 0.152711 -0.0238933 +-0.0590669 0.120714 -0.00943474 +0.00548706 0.108567 0.0416722 +-0.0114996 0.101652 0.0440245 +-0.0649779 0.141437 -0.00794337 +0.0112608 0.130411 0.00668952 +0.0436616 0.0987354 0.0121603 +-0.0558948 0.101262 -0.0199275 +-0.0309036 0.0436875 0.0502489 +0.0142962 0.0652331 -0.0300484 +0.000574283 0.0347216 0.0149023 +-0.00623443 0.0389648 -0.00688285 +-0.0810472 0.147398 0.0390836 +-0.0491606 0.0375682 0.0458781 +-0.055978 0.0534457 0.00767233 +-0.0685375 0.17487 -0.0458569 +0.0289287 0.100617 -0.0165368 +-0.0709835 0.0353942 0.00988845 +0.0337836 0.0754424 0.0400679 +0.041497 0.0527902 0.0324777 +-0.0204109 0.178661 -0.0155986 +-0.0623894 0.149097 -0.0105741 +-0.0644192 0.16051 -0.0170316 +-0.0350535 0.0346922 0.0433273 +-0.0740398 0.145796 -0.011857 +0.0214237 0.0444841 -0.0187153 +-0.0570526 0.113331 -0.0158151 +0.0134717 0.127798 0.0260714 +0.0324011 0.0446474 -0.00561054 +0.00231866 0.0568936 -0.0320023 +-0.0273763 0.112504 -0.0170987 +-0.0224223 0.072452 0.0507888 +-0.0614531 0.154118 0.0305097 +-0.0222065 0.179998 -0.0209469 +0.00315207 0.102056 -0.0221009 +0.0413778 0.0561233 -0.00592276 +0.037882 0.105959 0.026802 +-0.0607248 0.0722644 -0.016058 +0.00061382 0.126415 -0.00611002 +0.0592992 0.0566775 0.0181738 +0.0474969 0.0638142 0.0292952 +-0.0321069 0.162239 -0.0144989 +-0.0520198 0.147215 -0.00210798 +-0.0819286 0.0748755 0.0145293 +-0.0333602 0.0339348 0.0195439 +-0.0555018 0.0987713 0.0432834 +-0.0630837 0.164691 -0.0325918 +-0.0473982 0.0343754 -0.0164682 +-0.0807821 0.0980376 0.0332837 +-0.0645109 0.0370591 -0.00764757 +-0.085403 0.141865 0.00516647 +0.0420715 0.0859357 0.0292923 +0.0391529 0.107674 0.00402907 +0.024552 0.110059 0.0374287 +-0.0631521 0.0360725 0.0429133 +-0.0619885 0.156033 0.0186659 +-0.024223 0.17569 -0.0123366 +-0.0138299 0.0392302 0.0367944 +-0.0306217 0.126038 0.0115365 +-0.0714938 0.120397 0.053531 +-0.0869305 0.151358 0.010227 +-0.0788893 0.125151 -0.00625598 +-0.0447778 0.0409599 -0.0173005 +-0.09234 0.131039 0.0252374 +0.0321511 0.0724311 -0.0187615 +-0.0735819 0.0777026 -0.0122023 +-0.0678037 0.166983 -0.024036 +-0.0897153 0.135171 0.0332079 +-0.0447805 0.0840976 -0.0212945 +0.0371007 0.10968 0.00116733 +0.0112368 0.0836448 -0.0310335 +-0.036484 0.0505609 0.038833 +-0.0118972 0.116803 -0.015741 +-0.0346708 0.0621866 -0.0131726 +-0.0397664 0.0812015 -0.0202928 +-0.069532 0.172114 -0.0375728 +0.00626682 0.131047 0.00486423 +-0.0590022 0.0579904 0.014414 +-0.00972298 0.0642282 -0.0359259 +-0.0269413 0.181454 -0.0140289 +0.033222 0.0842418 -0.0188996 +0.00639168 0.0433788 -0.024537 +0.00926262 0.129557 0.000393265 +-0.00751646 0.0732149 0.0579299 +-0.0513203 0.142869 0.00077197 +-0.0288553 0.0385536 -0.0110371 +0.0555265 0.0728462 0.0170262 +-0.085954 0.146023 0.00719275 +-0.0371011 0.0461641 -0.0234326 +0.0579592 0.0537863 0.0201793 +0.0104003 0.0418913 -0.0239147 +-0.0396188 0.0505923 -0.0110041 +0.0326207 0.0944486 -0.0159568 +-0.0170933 0.0554767 0.0502631 +-0.0891859 0.139294 0.0371595 +-0.0637097 0.166224 -0.0345967 +0.00422867 0.0824562 -0.0341922 +-0.0594261 0.151258 -0.000475846 +-0.0552814 0.0464664 0.0256754 +-0.0424851 0.0776249 0.0430145 +0.0184693 0.111176 0.038468 +-0.0294978 0.0574079 0.0367222 +-0.0435452 0.0405422 0.0435069 +-0.0600989 0.0598417 0.00157193 +0.0526979 0.0525681 0.0268245 +-0.0625031 0.0602955 0.00246046 +-0.0675133 0.108346 0.0377589 +-0.00349512 0.111424 0.0424267 +-0.00549779 0.110034 0.0429298 +0.0164758 0.0713296 0.0519403 +0.0458506 0.0876137 0.00718075 +0.0244747 0.0400424 -0.00510986 +0.00547063 0.131454 0.017409 +-0.0728779 0.117943 -0.00788041 +-0.0142717 0.17714 -0.027303 +-0.0257193 0.0617764 -0.0314442 +-0.050991 0.0504175 0.03464 +0.00152343 0.0759482 0.0573355 +-0.0304944 0.064586 0.038393 +0.016253 0.0794879 0.0534651 +-0.00764651 0.0496471 -0.0308946 +-0.077844 0.0743656 -0.00558198 +-0.0326464 0.0563525 -0.0113988 +-0.061813 0.175696 -0.0586065 +-0.0681691 0.0682156 0.031879 +-0.0493845 0.0657885 0.0368321 +-0.019309 0.0362824 -0.0277788 +-0.063712 0.167032 -0.0383216 +-0.0379003 0.123041 0.0266516 +-0.000679533 0.0554388 -0.0315999 +-0.0886752 0.135106 0.0413889 +0.011146 0.128332 0.0266558 +-0.0740639 0.178692 -0.0478641 +-0.0809318 0.142082 0.0447817 +-0.00975763 0.0742329 -0.0379217 +-0.0600964 0.0334795 0.00370066 +-0.0566436 0.0657735 0.0346839 +-0.0767139 0.070678 0.0244626 +-0.0810351 0.0787684 -0.0035164 +0.0405001 0.076619 0.0321646 +-0.0283979 0.155793 -0.00852382 +-0.0535904 0.0617699 -0.00886774 +-0.0149347 0.127911 0.00262222 +-0.0197362 0.181499 -0.0230211 +-0.0781409 0.0718256 0.0231698 +-0.0337588 0.121858 0.0267132 +-0.0741051 0.0686193 0.025039 +0.0417534 0.0788713 -0.00674491 +-0.0515024 0.0340065 0.0263967 +-0.0763933 0.111249 -0.00565203 +-0.0538034 0.0898608 -0.0222645 +-0.000575856 0.0980296 -0.0278345 +0.0581094 0.0704417 0.00814168 +-0.0891434 0.137902 0.0291936 +0.00340212 0.0390598 -0.024445 +-0.0620333 0.153738 -0.0275809 +-0.0177087 0.0584461 -0.0348025 +-0.0823897 0.104663 0.0290404 +-0.0194981 0.10024 0.044034 +0.0242883 0.0705502 -0.0254969 +-0.0899225 0.133822 0.0382154 +-0.0195055 0.108574 0.0413935 +-0.0446392 0.0548635 -0.0110876 +0.00035867 0.048192 -0.0299591 +0.0364284 0.0413843 -0.00274773 +0.0187875 0.0351105 0.0327558 +-0.0568852 0.111179 -0.0170834 +0.0118445 0.0806629 0.0540991 +-0.0687285 0.155709 0.0264626 +0.00655625 0.109588 0.0412446 +0.00917706 0.113608 -0.0184169 +-0.0613933 0.155777 0.0101812 +-0.0314952 0.0903684 0.0441958 +0.0124021 0.0448701 -0.0249804 +-0.0241038 0.0865955 0.0534593 +-0.0631641 0.149054 -0.0215452 +-0.0401934 0.0365351 0.0429119 +-0.0898981 0.135185 0.0362087 +-0.0526397 0.0618282 -0.00966488 +-0.0844214 0.0777776 0.012517 +0.0222568 0.0748707 -0.0265095 +-0.0150366 0.0384845 0.00106724 +0.0180702 0.0879847 -0.0272411 +-0.0142291 0.127243 0.024765 +0.0382486 0.104643 0.0273123 +-0.0748494 0.0964384 -0.0137204 +-0.0808743 0.136754 0.0491531 +-0.0568962 0.0970004 -0.0209687 +-0.0803034 0.072641 0.00422068 +-0.0584156 0.0459799 0.0422363 +-0.0579142 0.114001 -0.0151155 +-0.0561079 0.0571065 0.0121919 +0.00037651 0.0978532 -0.0276151 +-0.0336642 0.082217 -0.0255373 +0.0457702 0.0735931 0.00320764 +-0.056498 0.07472 0.0419593 +0.00305684 0.124987 -0.00863513 +-0.0272404 0.0877435 0.0480762 +-0.040496 0.0577326 0.0402811 +-0.0202415 0.0392282 0.0390567 +-0.020926 0.0334921 -0.0253378 +-0.0690953 0.0751628 0.0379926 +-0.0520047 0.0344961 0.0416004 +-0.0141843 0.128965 0.0174774 +0.0288353 0.0368345 0.0223773 +-0.0444076 0.0394861 -0.0222996 +-0.0838483 0.119157 -0.00284212 +-0.0034971 0.0732704 0.0586485 +-0.03681 0.0886191 -0.0239226 +-0.0669297 0.105269 -0.0144963 +-0.07603 0.0941366 0.0385416 +-0.0716625 0.145448 -0.0198949 +-0.0165056 0.0382425 0.0100681 +-0.0909349 0.113307 0.0123445 +-0.0192269 0.0381483 0.0222601 +0.026296 0.0862676 0.0469202 +-0.0118259 0.0386358 0.028745 +-0.0513331 0.0334323 -0.00718543 +-0.0685946 0.0353745 -0.00558788 +-0.0370306 0.151785 -0.00571407 +-0.0891386 0.129503 0.00423129 +-0.0447856 0.0348265 0.00740272 +0.040097 0.105566 0.00218117 +0.00862183 0.120558 -0.0139068 +-0.0679053 0.171131 -0.036968 +0.0164071 0.0345184 0.0219352 +-0.0501179 0.137029 0.00241503 +0.0125996 0.0459414 0.0443461 +-0.0654928 0.0818627 0.0433416 +-0.0215596 0.0891328 -0.036783 +-0.0685096 0.147001 0.0412847 +0.0400896 0.0702922 -0.00980716 +-0.0291528 0.0378835 0.0276599 +-0.0624944 0.145991 -0.00758108 +-0.029375 0.0621337 -0.0244169 +-0.0655919 0.151202 -0.0366034 +-0.064581 0.128354 0.0453237 +-0.0626195 0.153328 0.0013944 +-0.0863817 0.148632 0.0316852 +-0.0153553 0.112218 -0.0188504 +-0.0602045 0.0441634 0.0266895 +-0.0204995 0.111306 0.0398343 +-0.0454802 0.112265 -0.0167776 +0.0212764 0.0693138 -0.0277613 +-0.0458225 0.146281 0.00549558 +-0.065521 0.0335373 -0.00466605 +-0.00710114 0.0339482 -0.0211688 +0.0551094 0.0539301 0.0250409 +-0.0781434 0.0927222 0.0364655 +0.0291436 0.0707502 -0.0218013 +-0.091117 0.143373 0.0231646 +-0.0575628 0.0576989 0.003607 +-0.0745558 0.0684435 0.0233437 +0.000679346 0.0933957 -0.0329817 +0.0136703 0.0446634 0.0441067 +0.0425933 0.0791563 0.0282081 +-0.0098481 0.112657 -0.0193422 +-0.0678577 0.102354 -0.0152646 +-0.0245236 0.0838729 0.0539551 +-0.0522319 0.125489 0.0349878 +-0.0331359 0.168192 -0.0157544 +0.0437182 0.0944809 0.000197915 +-0.0271741 0.161328 -0.0145155 +-0.0635247 0.139599 0.0380296 +-0.0105236 0.0787711 0.0579243 +0.0221704 0.109999 -0.014573 +-0.0626188 0.166275 -0.0435849 +-0.0162218 0.186444 -0.0207352 +-0.00481374 0.128076 -0.00386981 +-0.0761439 0.154623 0.0283179 +-0.00628506 0.0952929 -0.0329709 +-0.0244623 0.0348843 0.0471798 +-0.0764469 0.175411 -0.0430646 +-0.0374817 0.0903202 0.0435434 +0.0448755 0.0917539 0.00218552 +-0.0464937 0.0411703 0.0442462 +0.00738566 0.0463583 -0.0259834 +-0.0269838 0.158131 -0.000540227 +-0.0195125 0.0800523 0.0567242 +0.0535386 0.0505579 0.00123438 +-0.0704829 0.066568 0.025804 +-0.0478545 0.117892 -0.0146818 +-0.0645863 0.144373 -0.0132186 +-0.0619148 0.161553 -0.037594 +-0.0328555 0.100056 -0.0225692 +-0.0605435 0.0660534 0.0336067 +-0.00290962 0.037693 0.0115129 +-0.0101883 0.0876449 -0.0371912 +-0.0625754 0.042738 -0.00542472 +0.00650044 0.0910463 0.0545358 +-0.0756811 0.154032 -0.0169094 +-0.0034723 0.130516 0.00409153 +0.00232953 0.116694 -0.0177181 +-0.0378274 0.0929022 -0.0235348 +-0.02161 0.158057 -0.00899889 +0.0304133 0.0415863 -0.00412062 +-0.0728954 0.176495 -0.0445729 +-0.0420309 0.0335517 -0.0220625 +-0.0187514 0.0906841 0.0550582 +-0.0855548 0.125248 -0.00272359 +-0.0137086 0.0614344 -0.0364468 +-0.020723 0.0597726 -0.0340423 +-0.0708646 0.0384387 0.000437312 +0.0310181 0.112726 0.0309619 +0.0131047 0.129972 0.0173477 +-0.0216432 0.124246 -0.00349177 +-0.0626999 0.0706798 -0.0138683 +-0.0865991 0.0833319 0.0164838 +-0.0644302 0.0384213 0.0160253 +-0.0187164 0.0611476 0.0502898 +-0.0791607 0.170809 -0.0419883 +0.00181256 0.0994772 -0.0233519 +0.0199074 0.11877 -0.0100039 +-0.0361903 0.151017 -0.000604378 +-0.084275 0.0897993 -0.00457099 +-0.0554832 0.0861944 0.0449632 +-0.0623633 0.0458155 0.0336786 +0.034658 0.114539 0.0168181 +-0.0736982 0.167846 -0.0232955 +-0.0181465 0.166773 -0.0192359 +0.0113761 0.0494361 -0.0277541 +-0.0440746 0.154693 -0.007872 +0.0606816 0.0664976 0.015162 +0.044367 0.0575454 -0.00546316 +0.0134639 0.0616949 0.0510096 +0.0400149 0.0829397 -0.0117765 +0.0423451 0.0690926 -0.00378897 +-0.0691689 0.0336248 0.00172074 +0.0582234 0.0593447 0.00320204 +-0.0900566 0.133779 0.0292173 +-0.0381652 0.0336678 -0.0288809 +0.0397017 0.104178 0.024171 +-0.0755036 0.121787 0.0531411 +-0.025634 0.122393 0.025161 +0.058528 0.0565928 0.00617045 +-0.0801768 0.155046 0.0137223 +0.0277963 0.0835666 0.045536 +-0.0628566 0.145948 -0.0105775 +-0.0133824 0.0383808 0.0105781 +-0.049358 0.146268 -0.00147688 +-0.0484712 0.0517504 0.0365675 +-0.0467968 0.0869913 -0.021986 +0.0553821 0.0590684 -0.000816519 +-0.0179551 0.0921164 -0.0358084 +-0.0789524 0.0921836 -0.0106406 +0.0374058 0.0893177 -0.0145297 +-0.032345 0.0473443 -0.0245628 +0.0173629 0.0537245 -0.0278081 +-0.0616059 0.160004 -0.0295877 +-0.0123225 0.124091 -0.00743567 +-0.0401607 0.163674 -0.0120006 +-0.06497 0.154244 -0.00563561 +-0.0510279 0.0336678 0.0250302 +-0.0771941 0.0893363 -0.0125642 +0.0224953 0.109772 0.0381484 +-0.0545656 0.13815 0.0298405 +-0.00171216 0.066944 -0.0344014 +-0.00330066 0.124033 -0.00952648 +-0.0724141 0.159616 -0.0379306 +-0.0128309 0.0869146 -0.0385108 +0.0379635 0.103337 0.0286718 +0.00150556 0.0870476 0.0569313 +0.0339501 0.0683557 -0.0167775 +-0.0296157 0.053701 -0.0213818 +-0.0239053 0.0350134 -0.0198326 +0.00348633 0.110018 0.042298 +-0.00459976 0.0405792 -0.0256485 +0.0313837 0.0352278 0.00968341 +-0.0524893 0.105673 0.0402508 +-0.0334757 0.072353 -0.0224701 +-0.00165204 0.0347369 0.0450897 +-0.0251253 0.179165 -0.0186166 +0.0418909 0.0939077 0.0272858 +-0.0417165 0.069628 -0.0168617 +-0.0751265 0.0670609 0.00488552 +-0.0702901 0.063891 0.0211244 +-0.0777094 0.170825 -0.0439812 +-0.0735195 0.135848 0.0500526 +-0.0690768 0.0739443 0.0372765 +0.0123912 0.116671 -0.0157278 +-0.0504991 0.105636 0.0396146 +0.0194996 0.0489742 0.0420155 +-0.0652338 0.145869 -0.0189253 +0.0183651 0.124757 -0.00246117 +-0.067493 0.105571 0.0389191 +0.00451331 0.0814276 0.0565046 +-0.0126391 0.0466477 -0.0295757 +-0.043534 0.0422491 -0.0203181 +-0.0576807 0.133928 0.0359191 +-0.0847679 0.10454 0.0257763 +-0.0763966 0.0748983 0.0314167 +-0.0163248 0.0390132 0.0346782 +0.0455396 0.083395 0.0201668 +-0.0404951 0.0747761 0.0426102 +0.0326457 0.113685 0.0274718 +-0.0533008 0.118582 -0.0133417 +-0.0548347 0.0518559 -0.00436961 +-0.0444358 0.0344955 0.0309851 +0.0022525 0.0986072 0.0504164 +0.0280941 0.107442 0.0372758 +0.0311382 0.100809 0.0381724 +-0.0608693 0.0982413 -0.018491 +-0.0808258 0.116274 -0.00349703 +-0.00493749 0.124022 0.0339675 +-0.0202041 0.0383371 0.000156328 +0.000176932 0.0881362 -0.0348875 +-0.0122454 0.128019 0.000407111 +-0.0750529 0.0860661 0.0392001 +-0.0200226 0.0403705 0.0532551 +-0.0196618 0.127752 0.0140421 +-0.0544977 0.0747139 0.0418232 +-0.0850765 0.107567 0.00438106 +-0.0759578 0.071995 0.0287387 +-0.0434567 0.155083 0.00724724 +-0.090134 0.132434 0.0362229 +0.022282 0.0706591 -0.0268891 +-0.090924 0.128274 0.0409748 +-0.0889908 0.13778 0.0388031 +-0.0788715 0.122217 -0.0060966 +-0.00443014 0.100204 0.0479984 +0.0327247 0.0646521 0.0402099 +-0.066223 0.15556 -0.0520809 +0.0118954 0.0685639 0.0540604 +-0.0805181 0.12599 0.0525745 +0.0465562 0.0753029 0.0092212 +-0.0743025 0.151276 -0.0308835 +-0.0905476 0.146077 0.0141502 +-0.0715441 0.112225 0.0480665 +-0.0679786 0.137002 -0.008171 +-0.0672001 0.044789 0.00569382 +-0.0714328 0.168025 -0.0480185 +-0.0584837 0.088969 0.0446761 +-0.0444852 0.0411138 0.0436529 +0.0142229 0.0821798 -0.0300828 +0.0137354 0.10206 -0.0220537 +-0.0532836 0.0335112 0.0086601 +-0.046743 0.0767653 -0.0182293 +-0.0653246 0.173014 -0.0475844 +-0.0105123 0.0633015 0.0555068 +-0.0652467 0.122825 0.0496059 +-0.0587837 0.0940397 -0.0203993 +-0.061496 0.107016 0.0394252 +0.032159 0.0404592 0.0270704 +-0.0550412 0.129739 0.0362139 +0.0187645 0.036357 0.00611202 +-0.051625 0.0474378 0.0157122 +-0.0945263 0.121474 0.0192827 +-0.0874631 0.104981 0.0103802 +-0.0444225 0.0587761 0.0392912 +0.00550135 0.107149 0.041587 +-0.0023107 0.0375379 0.0154093 +0.0365396 0.111887 0.0174946 +-0.0667677 0.0809002 -0.0178421 +0.0212994 0.0550028 0.0464604 +-0.00474995 0.0391641 0.0333259 +0.0385436 0.103322 0.0277283 +-0.0350927 0.168167 -0.014918 +-0.0381943 0.124735 0.0235454 +-0.0436117 0.125739 0.0201433 +-0.0122465 0.124398 0.0313659 +-0.018196 0.038272 0.00607299 +-0.0454731 0.0675709 0.040115 +0.0397094 0.0887389 0.0329441 +-0.0612601 0.0653881 0.0322823 +0.0358388 0.063303 0.0376893 +-0.0894207 0.0969969 0.0174102 +0.0247051 0.054807 -0.022754 +-0.0362363 0.0345287 0.0379647 +-0.0134852 0.104433 0.0435318 +-0.0390753 0.0353444 0.00990175 +-0.032893 0.0386199 -0.0119052 +-0.066881 0.172737 -0.0437921 +-0.0844296 0.0777425 0.00651672 +0.0102401 0.13009 0.0220074 +-0.0184847 0.091067 0.0550019 +-0.048793 0.155022 0.0100543 +-0.042488 0.1112 0.0368617 +-0.00484603 0.0989761 -0.0268273 +-0.0667655 0.079447 -0.0174677 +-0.0520123 0.033434 -0.00549431 +-0.0309502 0.0376665 0.0292806 +0.0125353 0.118934 -0.0141702 +0.0393762 0.0393721 0.0023232 +-0.0154839 0.0388074 -0.00858919 +-0.027433 0.108265 -0.0206521 +-0.0335566 0.11282 -0.0174155 +-0.0428158 0.126503 0.0190139 +0.0359007 0.0374161 0.00496434 +0.030827 0.118499 0.003976 +0.0482689 0.0616107 -0.00376704 +0.0172995 0.0637271 -0.0287659 +0.0352999 0.0727523 0.0387329 +0.0325099 0.0439072 0.0294151 +0.0434928 0.0597185 0.030951 +-0.0849411 0.14333 0.0402714 +-0.0419573 0.15213 0.00584722 +-0.0478585 0.101383 -0.0215741 +0.0158763 0.121559 0.0327664 +0.0196134 0.0505877 0.0439573 +-0.0408143 0.0899706 -0.0230035 +0.0179499 0.0360095 0.0408071 +-0.0491945 0.137084 0.0184007 +0.0422067 0.0898824 0.0277847 +-0.0568073 0.122 -0.00880521 +-0.0535468 0.0500774 -0.00609453 +-0.0791017 0.171279 -0.0410322 +-0.0812381 0.0774347 -0.00249764 +0.00451011 0.08973 0.0555486 +0.0360129 0.0947297 -0.0122566 +-0.0267986 0.0839175 -0.0367186 +-0.0336466 0.125738 0.0192922 +-0.0645061 0.0384674 -0.00726163 +-0.069197 0.145134 -0.0204031 +-0.0453102 0.150665 0.00801555 +-0.016121 0.0347931 0.0455365 +0.0372267 0.0827114 -0.0157704 +-0.0586519 0.047167 0.0396282 +-0.0723413 0.0352299 0.00501169 +-0.00850771 0.0457646 0.047699 +-0.0361402 0.0481769 -0.0171107 +-0.0694918 0.0986232 0.041191 +-0.0145821 0.0365575 -0.0175497 +-0.0152331 0.178626 -0.0269991 +-0.0375015 0.0761535 0.0421853 +0.0230994 0.0700125 0.0474321 +-0.0769031 0.149462 0.0386995 +-0.0160344 0.0394989 0.0396851 +-0.077278 0.155614 0.0132673 +-0.0461472 0.0695191 0.0407559 +0.013766 0.105146 -0.0193832 +-0.00180961 0.102694 -0.0227875 +-0.0404787 0.102851 0.0403978 +-0.0256602 0.0491814 -0.0262646 +-0.0640267 0.155773 0.0106957 +-0.0188798 0.0381919 0.018679 +0.0251044 0.111527 -0.0122017 +-0.00771141 0.130468 0.0154714 +-0.0143198 0.128437 0.0203415 +0.000556364 0.0427979 0.0462128 +-0.0107039 0.129221 0.0216334 +-0.0755898 0.0796389 -0.010614 +-0.0618567 0.156837 -0.0325918 +-0.0516893 0.0678068 -0.0129959 +-0.0631142 0.178334 -0.0583576 +-0.0386855 0.0651385 -0.0142461 +-0.0594798 0.0790546 0.0431577 +-0.029726 0.121561 0.0251755 +-0.0328596 0.153633 -0.000344229 +0.0339626 0.0356317 0.0117064 +-0.0718527 0.158151 -0.00382487 +-0.0194857 0.0486564 0.0485018 +0.0319575 0.0889685 0.042819 +0.00933955 0.0624337 -0.0310444 +-0.0172265 0.113695 -0.0184196 +-0.0866231 0.0846922 0.0194779 +-0.0663134 0.0608279 0.00678018 +-0.0718125 0.0922256 -0.0157107 +0.0550352 0.064867 0.0267865 +-0.0446824 0.0651214 -0.0145177 +-0.066499 0.0958724 0.0422345 +-0.0484771 0.135525 0.0064169 +0.0419641 0.0872658 0.0291034 +-0.0144336 0.120974 -0.0101151 +0.00537913 0.115468 -0.0184153 +-0.0169313 0.0940904 -0.0338108 +-0.0311219 0.087675 -0.0275557 +-0.0733475 0.129801 0.0519745 +-0.0628563 0.0432731 0.0396846 +-0.0181419 0.159077 -0.00932452 +-0.0244219 0.0752703 0.0498831 +0.0278638 0.0367181 0.000104301 +0.0464062 0.0525822 0.0317783 +-0.0352134 0.127051 0.0157486 +-0.037493 0.0605801 0.0408152 +0.0435542 0.0709351 0.0259153 +-0.061811 0.0896079 -0.0190442 +-0.0487502 0.167013 -0.00197199 +-0.011981 0.180127 -0.0244833 +-0.0273118 0.0346998 0.0432305 +0.0260624 0.113339 -0.0101501 +0.00139388 0.0977439 -0.0275242 +0.0217437 0.0348491 0.000619009 +-0.0598385 0.0385019 0.0199857 +-0.0742583 0.12978 0.0523998 +0.0125017 0.103142 0.0463418 +0.0222613 0.0768462 0.049813 +0.0226846 0.125635 0.0109073 +-0.0664848 0.153437 0.0331838 +-0.0635064 0.100118 0.0422551 +-0.0884181 0.136485 0.0410708 +-0.0821317 0.151156 0.0323844 +-0.035019 0.035354 0.0462574 +-0.0445836 0.049099 -0.0105442 +-0.0913513 0.126793 0.00727091 +-0.00465552 0.0526099 -0.031899 +-0.0536395 0.0361733 0.0466553 +-0.0624928 0.0775409 0.0419345 +-0.0454844 0.1652 0.00481603 +-0.0176555 0.10171 -0.0237622 +-0.0517386 0.139928 0.000994108 +-0.0894422 0.0969694 0.0114146 +0.0282036 0.106111 0.0374341 +-0.0930784 0.128223 0.0132485 +-0.0710378 0.113905 0.0504272 +-0.0589666 0.06768 0.0360494 +0.0249541 0.12014 0.0288767 +-0.0467094 0.0345808 0.0339444 +-0.0627411 0.0766785 -0.0179436 +-0.00548466 0.051944 0.0528973 +-0.0355056 0.0705073 0.0417804 +0.00377856 0.127353 -0.00517835 +-0.0595895 0.0659394 0.0339087 +-0.0639025 0.0344657 0.0356117 +-0.0549717 0.132532 0.0345672 +-0.0762259 0.0790445 0.0349679 +-0.0259103 0.0721759 0.0444214 +0.0315716 0.117859 0.00423829 +-0.0696582 0.0642657 0.000568637 +-0.0882731 0.143189 0.0351319 +-0.031681 0.0679763 -0.0234472 +-0.0699144 0.1253 -0.00883057 +0.0435982 0.0888699 0.0251665 +-0.0914617 0.144737 0.0211556 +-0.0205009 0.126788 0.0181341 +0.0311284 0.103423 0.0364018 +-0.0196184 0.043638 -0.0281382 +-0.0192518 0.185941 -0.0210687 +0.0556563 0.0725898 0.00964459 +-0.0899954 0.135014 0.00922069 +-0.0658394 0.170333 -0.0405107 +-0.0487066 0.064243 0.0362896 +0.0115006 0.100446 0.0479384 +-0.0479295 0.132887 0.00374503 +0.0216229 0.0700379 0.048827 +0.0151599 0.050478 0.0463014 +0.00510611 0.0386758 0.0457599 +-0.0284578 0.0789297 -0.0355663 +-0.081069 0.152209 0.0312004 +-0.0814521 0.13302 0.0511119 +-0.0115065 0.0517326 0.051159 +0.0190773 0.108184 -0.0165978 +-0.0879813 0.0860844 0.0054873 +-0.0565924 0.0442297 -0.00693458 +-0.0358918 0.166781 -0.00116722 +0.0263229 0.122689 0.0193841 +-0.0305096 0.0608404 -0.0204127 +-0.0790435 0.0718734 0.00353541 +-0.0264818 0.101588 0.0434387 +0.0224815 0.0892515 0.0484736 +-0.07435 0.0711851 0.0297739 +-0.0366402 0.0563002 -0.0110085 +-0.0858069 0.133905 0.0470456 +-0.0347686 0.16678 -0.00304399 +-0.0318926 0.0385829 -0.0116716 +0.0173027 0.0680054 -0.0293377 +-0.084368 0.114299 0.000284663 +-0.0761089 0.149998 -0.0108814 +0.0437289 0.0987183 0.00617361 +0.0134057 0.0374127 -0.0219366 +0.000807934 0.124791 -0.00838237 +-0.0406768 0.0621783 -0.0128097 +-0.0926608 0.121474 0.0282925 +-0.0595443 0.155728 0.018094 +-0.0646509 0.168222 -0.0372156 +-0.0197896 0.127727 0.0110836 +0.0112619 0.069597 -0.0315203 +-0.0784667 0.141403 0.0468168 +-0.0881381 0.0996585 0.0223676 +-0.0495985 0.048927 -0.00879829 +-0.0567267 0.15478 0.0220083 +-0.0273659 0.119585 -0.010507 +0.0191093 0.0375318 0.0414884 +-0.054786 0.147744 0.027387 +0.0185111 0.114004 0.0370685 +-0.0106027 0.171925 -0.0271985 +-0.0795217 0.0748572 0.0255446 +0.0527001 0.0462105 0.0152086 +0.0191089 0.0889764 -0.0262512 +-0.0917278 0.114662 0.0113396 +-0.0311696 0.0749025 -0.031542 +0.0103976 0.0505032 0.04997 +0.00150167 0.0504398 0.0522275 +-0.00913054 0.0987984 -0.026694 +-0.0607072 0.0707896 -0.0151427 +-0.0314435 0.033488 -0.0292746 +0.0322402 0.0842577 -0.0191914 +-0.0617587 0.160001 -0.0265888 +0.0366758 0.0659888 0.0371374 +-0.0410386 0.153314 -0.00775366 +-0.0916156 0.146104 0.0201482 +-0.008275 0.130081 0.0196055 +-0.0716229 0.0395313 0.00756641 +-0.0555501 0.0448059 0.0154665 +-0.0519883 0.0545681 0.0276385 +-0.063796 0.145383 -0.0141799 +-0.0204903 0.107154 0.041938 +-0.00950118 0.06052 0.0554819 +-0.0297859 0.073336 -0.0325546 +0.0225502 0.0873848 -0.0245875 +-0.0658345 0.0367656 0.0273328 +-0.0335698 0.0354174 0.0482024 +-0.0826039 0.0829175 -0.00455606 +0.0133284 0.055284 -0.0292269 +-0.000932932 0.0363158 0.0167895 +0.0190541 0.116198 -0.0132311 +-0.000494259 0.0911454 0.0560111 +0.0112951 0.130595 0.0166808 +-0.0164761 0.0673645 0.0539812 +-0.0180225 0.0385494 -0.00514634 +-0.0610891 0.0339525 0.017372 +-0.0707478 0.147309 -0.0278341 +-0.0189873 0.180146 -0.0170482 +0.0237757 0.0343382 0.00896337 +-0.00265737 0.0899953 -0.0354905 +-0.0718661 0.100809 -0.0137558 +-0.00649817 0.0939276 0.0556503 +-0.0246455 0.126418 0.012252 +-0.0157508 0.070024 -0.0384074 +0.0256059 0.12104 -0.000826914 +0.00250363 0.0489881 0.0513443 +-0.029644 0.125848 0.0118936 +-0.024804 0.0737635 0.0475256 +-0.0672658 0.131206 0.0466969 +-0.0817178 0.0953366 0.0328835 +-0.0286351 0.0918211 -0.0275955 +0.0414472 0.0971985 0.0261597 +-0.0680972 0.121444 0.0525081 +-0.0683202 0.166619 -0.0540065 +-0.0375072 0.0775843 0.0424046 +-0.0143913 0.0384112 0.00490303 +-0.0518947 0.109852 -0.0185479 +0.0338477 0.0711662 -0.016803 +-0.0450894 0.154663 -0.00752455 +-0.0564919 0.0875695 0.0445907 +0.0391967 0.0726247 0.033788 +0.0574073 0.0717824 0.0103168 +-0.0237163 0.0380022 0.0196686 +0.0120538 0.0907862 -0.0301745 +-0.0669793 0.134061 -0.00834965 +-0.00947746 0.116894 0.0392479 +-0.0328734 0.0680853 -0.0194707 +0.030263 0.116206 0.0279976 +-0.0348513 0.0345425 0.0400019 +-0.0532018 0.0733522 0.0412342 +-0.0577592 0.033805 0.0199655 +-0.00439966 0.119978 -0.0131705 +0.0162591 0.0434903 0.0442636 +-0.0567225 0.0423764 0.0206991 +0.00325132 0.12142 -0.0127844 +0.0145581 0.125506 0.0293407 +0.00448398 0.0989824 0.0487111 +-0.0896848 0.0929338 0.0144339 +-0.04491 0.13036 0.00775303 +-0.048947 0.138616 0.00839947 +-0.0307428 0.0552453 -0.0153798 +-0.0826044 0.1367 0.0480323 +-0.0749507 0.0661289 0.00944516 +-0.00473325 0.069866 -0.0358872 +-0.0167995 0.0347343 0.0471976 +-0.0426342 0.12559 0.0204963 +-0.0444709 0.120321 -0.0132547 +0.010477 0.116818 0.0374755 +-0.0744965 0.123196 0.0533572 +-0.047302 0.16443 0.00497116 +-0.0859996 0.118394 -0.000793117 +-0.0326967 0.0849828 -0.026556 +-0.0843669 0.106153 0.00138874 +0.0167493 0.127305 0.0229819 +0.0223908 0.0489358 -0.0217863 +-0.0762839 0.155844 0.0209052 +-0.0839499 0.0979633 -0.0036111 +-0.0216926 0.126501 0.0176944 +0.0378596 0.0914955 0.035553 +0.0420895 0.102851 0.00717012 +0.0366464 0.103365 0.0302885 +-0.0696779 0.086056 0.0423345 +-0.0340311 0.0339294 0.0212063 +0.0162763 0.0361212 0.00396256 +-0.0426327 0.0338426 -0.00397459 +-0.027617 0.125471 0.0155889 +-0.0937433 0.118772 0.0222988 +-0.0518432 0.133909 0.0302884 +-0.0413643 0.124214 -0.00934406 +-0.0413386 0.121239 -0.0122322 +-0.0396582 0.0336638 0.00768797 +-0.0853564 0.091162 -0.00253932 +0.0179914 0.120614 0.0332262 +-0.0717184 0.0792466 -0.0147262 +0.0215785 0.11262 0.0367657 +0.0236405 0.0366106 0.026972 +-0.07448 0.0662148 0.0164657 +-0.00149557 0.0973426 -0.0290749 +0.0342448 0.0842103 -0.0184253 +0.0045204 0.0661365 0.0560558 +-0.0072649 0.0384115 0.0117959 +0.0362267 0.104294 -0.00842134 +0.0232091 0.0782074 0.0494446 +-0.0204762 0.0786229 0.0556935 +0.0189956 0.125897 0.000310264 +0.0582502 0.0661055 0.0226582 +-0.0884672 0.113635 0.0306037 +-0.0595891 0.155231 0.0238846 +-0.0540479 0.142765 -0.001179 +0.0139994 0.0807368 0.0537041 +-0.0660333 0.155202 -0.00458552 +-0.0371914 0.175481 -0.00856986 +-0.0114786 0.114128 0.0403922 +0.00280587 0.10648 -0.0207933 +-0.061629 0.148291 0.0370712 +-0.0305056 0.115271 0.0335326 +-0.0847456 0.0911272 0.0289858 +0.0294623 0.103445 0.0374919 +-0.0884887 0.122612 0.00129126 +-0.0869453 0.0846809 0.01048 +0.04631 0.0778469 0.00818385 +-0.077491 0.135849 0.0507593 +0.00650523 0.0745046 0.0565842 +-0.0193751 0.0711448 0.0534686 +-0.03164 0.0581442 -0.0153958 +0.00337821 0.0392113 0.0295452 +0.026954 0.116596 0.0310646 +-0.0623115 0.16311 -0.0435951 +0.0154275 0.0350916 0.0411096 +-0.0724818 0.165221 -0.0429802 +-0.0359956 0.151076 -0.00202594 +0.0162209 0.0779008 -0.0293961 +-0.0478366 0.133877 0.0213554 +0.0569921 0.0661536 0.0243514 +-0.0318346 0.0915622 -0.0244444 +-0.0864107 0.0819973 0.0174801 +-0.0497993 0.0677848 0.0379447 +-0.0671663 0.164687 -0.0194859 +-0.00868026 0.111843 -0.0204858 +-0.0195177 0.0933631 0.0529187 +-0.0535918 0.114983 -0.0155816 +-0.068804 0.18096 -0.0579804 +-0.0846698 0.148755 0.00515607 +-0.0808035 0.0868637 -0.00756861 +-0.0309282 0.156627 0.000764301 +-0.0561456 0.0642166 0.0326189 +-0.0864523 0.0899653 0.00147962 +-0.0802598 0.0734072 0.0195467 +-0.025101 0.114847 -0.0155729 +-0.0348703 0.102876 -0.0215726 +0.00151752 0.0547965 0.0538164 +-0.0216758 0.0969718 -0.024798 +0.0367496 0.0931371 -0.012555 +0.00330684 0.0583228 -0.0321215 +-0.0697412 0.154452 0.0305168 +-0.0618525 0.0343021 0.022204 +-0.00886294 0.171168 -0.0237423 +-0.0216854 0.168305 -0.0122385 +-0.0435207 0.0562403 0.0394546 +-0.0620233 0.159983 -0.0376027 +-0.0751309 0.154085 -0.0179327 +-0.0480694 0.153165 -0.00566954 +0.0283556 0.0605487 0.0426528 +0.0115864 0.0348612 0.0423222 +-0.064559 0.11407 0.0417666 +0.0210547 0.0358177 -0.00168489 +-0.042575 0.0491291 -0.011035 +-0.0742409 0.113562 0.0499634 +-0.0659446 0.146784 0.0398667 +-0.0670071 0.172276 -0.0580562 +0.0251821 0.0357118 0.0226481 +-0.0129957 0.0883892 -0.0379783 +0.01814 0.0713245 0.0508426 +0.0161851 0.0347246 0.0253316 +-0.0234485 0.122824 -0.00599554 +0.00849456 0.0412846 0.0453159 +-0.0253871 0.124202 0.0208009 +0.00860136 0.121512 -0.0129363 +-0.0764996 0.128859 0.0532215 +-0.0637886 0.083851 -0.0191517 +-0.073438 0.175304 -0.0418354 +-0.0464485 0.132668 0.0189406 +-0.018505 0.112714 0.0394706 +-0.0579749 0.117711 -0.0123561 +-0.0241311 0.0384069 -0.0174035 +0.0286891 0.119649 0.00175522 +0.0135044 0.118213 0.0361594 +0.00748569 0.0942514 -0.0297902 +0.0223281 0.111319 -0.0139783 +0.00796203 0.131149 0.00690102 +-0.0888712 0.101031 0.0183836 +0.0208523 0.0352023 0.0276656 +-0.0939805 0.118754 0.0182968 +-0.0886426 0.129716 0.0443401 +-0.0562403 0.128346 0.0379943 +-0.0946719 0.122818 0.0192736 +-0.0844496 0.151409 0.0062115 +-0.0488054 0.124161 -0.00921799 +-0.0495787 0.0503337 -0.00863311 +-0.0642728 0.174473 -0.0515364 +-0.0355869 0.116022 -0.0147547 +0.0353133 0.0362497 0.0114171 +-0.0570854 0.136926 -0.00500822 +-0.033504 0.079379 -0.0265108 +-0.062469 0.033932 0.0153305 +-0.000579953 0.0361804 -0.0245898 +-0.0314067 0.0423682 0.0507901 +-0.0112759 0.125368 0.030237 +-0.00950387 0.075936 0.0571919 +-0.0424487 0.125177 -0.00834623 +-0.0077039 0.113721 -0.0184781 +-0.00342161 0.0338005 -0.0221963 +-0.0140717 0.118746 -0.0137718 +-0.0231943 0.0388081 0.0352395 +-0.0639512 0.156212 0.0208686 +-0.0624954 0.0890364 0.0453804 +-0.0303734 0.125779 0.00722581 +0.003605 0.0340592 0.00699628 +-0.0765794 0.15423 -0.00189723 +-0.0759273 0.08606 0.0386654 +0.0508473 0.0446622 0.0112162 +0.00609443 0.127443 0.0291456 +-0.0428742 0.105667 -0.0205602 +-0.0188968 0.0381911 0.0132528 +-0.086324 0.106283 0.0073644 +-0.0320928 0.0336737 -0.0220791 +-0.0466544 0.119173 -0.0140371 +-0.0710688 0.156192 0.0139947 +-0.055712 0.155088 0.0136896 +-0.0525045 0.159361 0.00819169 +-0.0543637 0.116891 0.0353365 +0.0318466 0.0424663 0.0288342 +-0.051547 0.125478 0.0342157 +-0.00249266 0.0760635 0.0587913 +-0.00575365 0.0727093 -0.0362416 +-0.00680153 0.129324 0.00093339 +0.0495021 0.0664943 0.0276338 +-0.0282448 0.11486 -0.0155715 +0.031224 0.0786608 -0.0202592 +-0.0148026 0.0827563 -0.0392327 +-0.071855 0.0993885 -0.014251 +0.0177513 0.0462342 0.0429632 +-0.0242082 0.121982 0.0271598 +-0.0922854 0.116039 0.0223382 +0.0434814 0.0832239 -0.00379707 +-0.0384996 0.171162 0.000767348 +-0.0712408 0.114861 0.0513991 +-0.0157632 0.12799 0.00385748 +0.019082 0.126548 0.00245443 +-0.00388013 0.0394939 0.0368098 +-0.0204678 0.122105 0.0297617 +-0.0285693 0.0399846 -0.0296196 +-0.0831878 0.0764607 0.0163622 +0.0190867 0.0428243 -0.0216805 +0.0483631 0.0628304 -0.00297175 +-0.0927311 0.120157 0.0322864 +-0.0241838 0.0579409 0.0417219 +-0.0517297 0.0723507 -0.015831 +-0.0217729 0.0684817 -0.0372671 +-0.00949546 0.0829261 0.0578441 +0.0172524 0.0778474 -0.0286871 +-0.0441607 0.162142 -0.00945516 +-0.00587725 0.105934 -0.0226578 +0.0253567 0.0518232 -0.0216362 +-0.0494861 0.156424 0.00985611 +-0.0174771 0.0924389 0.0547456 +-0.0151406 0.126373 0.0259068 +-0.0852968 0.0818288 0.005494 +-0.0244818 0.0988555 0.0446892 +-0.0930791 0.118839 0.037294 +-0.0662836 0.114247 0.046332 +0.0127465 0.0672208 0.05354 +-0.0414757 0.109827 0.0377618 +-0.0435203 0.0519967 0.0390799 +-0.0417672 0.0812092 -0.0204027 +-0.0786424 0.0732312 0.000545367 +-0.0358502 0.0986071 -0.0225695 +0.0443653 0.0561662 -0.00597205 +0.0226111 0.0458717 -0.017849 +-0.0108336 0.116804 -0.0157483 +-0.0865451 0.110395 0.00835385 +0.031421 0.0399741 -0.00264961 +0.0363991 0.039859 -0.00104313 +-0.0468008 0.0347657 0.0424884 +-0.0398282 0.0914347 -0.0233046 +-0.025008 0.0334859 -0.0261337 +-0.0465231 0.0804789 0.0433941 +-0.0689665 0.135529 -0.00828838 +-0.0264689 0.0379883 0.0100865 +-0.0345116 0.111154 0.0360997 +-0.0225694 0.0387321 0.0336407 +0.0372794 0.0574491 -0.00767997 +-0.0707981 0.0672067 0.0269443 +-0.0150683 0.0384098 0.0065829 +-0.0592389 0.0452743 -0.00430196 +-0.0334924 0.102881 0.0413291 +-0.079025 0.153836 0.00536375 +-0.0229321 0.055215 0.043371 +-0.0601957 0.0341396 0.0262143 +-0.0688541 0.147497 -0.029579 +-0.0613597 0.172535 -0.0585911 +-0.0748166 0.0921259 -0.0144369 +-0.0632016 0.165278 -0.0601981 +0.0402098 0.04091 0.000378677 +-0.047469 0.117985 0.0306301 +0.0368134 0.0781201 0.03746 +0.000515748 0.0349973 0.0453092 +-0.0534255 0.124412 -0.00739059 +-0.000488424 0.0801341 0.0575904 +-0.0706455 0.0701231 -0.00669595 +-0.0477034 0.0649971 -0.0135628 +-0.0348898 0.0767003 -0.020496 +-0.00451076 0.0788064 0.0581316 +-0.0693915 0.117164 0.0523368 +-0.0200653 0.164398 -0.0170398 +-0.073544 0.177863 -0.0540307 +0.0427163 0.0399244 0.0113768 +0.0240483 0.0713748 0.0470522 +-0.0154968 0.0659374 0.0537935 +-0.0686329 0.175846 -0.0473222 +-0.0628372 0.172536 -0.0525874 +-0.0796429 0.148681 -0.00084361 +-0.0663392 0.0600723 0.0146241 +-0.00400483 0.123769 0.0343163 +0.0322222 0.0597861 -0.0166881 +-0.0640918 0.158696 -0.0546245 +-0.00248901 0.0456504 0.0469622 +-0.072774 0.10871 0.0380686 +-0.0810086 0.154578 0.0119766 +-0.0695005 0.091616 0.0421021 +-0.0665162 0.155345 0.00690315 +-0.030539 0.0748507 -0.0325674 +-0.0672648 0.0680031 0.0322561 +-0.0660205 0.131186 0.0449542 +-0.0246171 0.125897 0.00496292 +-0.077893 0.12518 -0.00689701 +-0.0883724 0.121658 0.047175 +-0.0773948 0.167309 -0.02854 +-0.0604 0.0470132 0.0371523 +-0.027746 0.0753954 -0.0356568 +-0.0748509 0.0782361 -0.0105914 +-0.0571323 0.14819 0.0314465 +-0.0415029 0.0803953 0.042616 +-0.0628829 0.0649103 0.0305991 +-0.00169833 0.0598396 -0.033652 +0.0151569 0.107807 -0.0181851 +0.0566945 0.0674374 0.0239376 +-0.0717279 0.155642 0.00502354 +-0.00382186 0.102465 0.0438439 +-0.0587089 0.155741 0.0125904 +0.0572801 0.0608152 0.0247108 +0.017703 0.0913635 0.0485583 +0.0260543 0.116303 -0.00733098 +-0.0345036 0.0690703 0.0414109 +-0.0292922 0.117943 -0.0127907 +0.0213023 0.0835644 0.0502546 +0.0464907 0.0664648 0.0271426 +-0.0564929 0.14962 0.0306387 +0.0282135 0.118937 -0.00132982 +-0.000391601 0.123621 0.0341495 +-0.00114981 0.12653 0.03091 +0.0304544 0.114562 -0.00546317 +-0.0547437 0.0337519 0.0206417 +-0.0468823 0.107031 -0.0193009 +-0.0631801 0.0406886 0.0415101 +-0.0910325 0.133669 0.0112223 +-0.0592476 0.145654 -0.00231326 +-0.0125718 0.100502 0.0445971 +-0.0298246 0.0378766 0.0293214 +-0.0839351 0.123564 -0.00377373 +-0.0621407 0.163665 -0.0567978 +-0.0389566 0.155104 0.00497717 +-0.0878144 0.105004 0.012374 +-0.0794305 0.0908376 -0.00963692 +-0.0246551 0.0507167 -0.0273858 +-0.0796103 0.0799856 -0.0065507 +0.0330411 0.10941 -0.00791346 +-0.00231596 0.121888 -0.0112268 +-0.0597326 0.154693 0.0267485 +0.0339669 0.0697663 -0.0167955 +0.0205734 0.0999616 -0.0218299 +-0.0354929 0.0917868 0.0443508 +0.00339585 0.0355203 0.0220096 +-0.0315414 0.125778 0.00387502 +-0.0478194 0.135564 0.0104014 +-0.00879058 0.0812731 -0.0379859 +-0.0037488 0.0386615 0.00318783 +-0.0464486 0.0959731 0.0434949 +-0.0306087 0.0394849 -0.0300968 +-0.00234671 0.0967246 -0.0304442 +-0.0312616 0.0735186 -0.0295121 +-0.0423301 0.0340883 0.0282541 +0.0355908 0.113068 0.0185826 +0.000833787 0.106762 -0.0210825 +-0.021676 0.184465 -0.0190713 +-0.0305406 0.0566147 -0.0184018 +-0.0876394 0.113262 0.0257017 +-0.0851868 0.0966727 -0.00156833 +-0.0465061 0.0425232 0.0438042 +0.0106037 0.121274 -0.0126925 +0.0290611 0.0523826 -0.0177704 +-0.000764451 0.0769261 -0.0359174 +-0.0416101 0.0338187 0.00715256 +-0.0893298 0.0969555 0.0104169 +-0.0345694 0.163827 -0.00275159 +-0.0888276 0.090232 0.0214359 +0.0208395 0.034464 0.00266226 +0.0428658 0.0623821 -0.00251673 +-0.00588102 0.130577 0.00751387 +-0.0133142 0.0337765 -0.0222266 +-0.0435242 0.0590876 0.0398271 +0.0545899 0.0478435 0.0151974 +-0.0107349 0.0699421 -0.0371274 +0.027906 0.0578072 0.0419759 +-0.0416225 0.0520166 -0.011127 +-0.0207276 0.168298 -0.0126147 +0.0256959 0.0491338 0.0386649 +-0.0550795 0.153114 -0.00215772 +-0.0380808 0.0483205 -0.0131774 +-0.0276317 0.056316 -0.0254148 +-0.00815144 0.127733 -0.00346398 +-0.0627849 0.0852772 -0.0191174 +-0.0619877 0.169385 -0.052596 +0.0234401 0.112665 0.0358138 +-0.0659073 0.110934 -0.0126703 +0.0280721 0.0360499 0.0211097 +0.0105243 0.0687767 0.0545753 +-0.00679638 0.0982761 -0.0281107 +-0.0309109 0.0462432 0.0473418 +-0.0196031 0.0393462 -0.028238 +-0.0871129 0.152836 0.0157593 +-0.0911632 0.133688 0.01322 +-0.0464961 0.102903 0.0415914 +-0.0206991 0.0553418 -0.0317435 +-0.00949277 0.073156 0.0570282 +-0.0864179 0.083353 0.0184733 +-0.0841891 0.111446 0.02976 +-0.0940387 0.126929 0.0232615 +0.0406221 0.0899944 0.0307666 +0.0208423 0.104696 0.0425993 +0.0445354 0.0407636 0.0127885 +-0.0623396 0.172509 -0.0536126 +0.0342346 0.0852576 -0.0183147 +-0.0866427 0.151554 0.0100877 +-0.0470988 0.0345244 0.0321531 +-0.080576 0.154494 0.0106641 +-0.0137759 0.0756859 -0.0386228 +0.0216235 0.0430155 -0.0167288 +0.0376424 0.109732 0.0031582 +0.0589875 0.0607291 0.021951 +-0.0923003 0.132372 0.0212228 +0.0311691 0.0942449 0.0417029 +-0.0174159 0.162512 -0.00777918 +-0.0156178 0.12076 -0.00985742 +-0.0507328 0.121196 0.0335979 +0.028716 0.119662 0.0245591 +-0.0738138 0.0950345 -0.0145557 +0.0204425 0.0350747 0.0258809 +-0.0207737 0.0351435 -0.019333 +0.0223353 0.12586 0.0121947 +-0.0155009 0.0951913 0.0533641 +-0.0143883 0.038338 0.0212719 +0.00741103 0.0391504 0.030425 +0.0433932 0.0691823 -0.000799598 +-0.0760543 0.149976 -0.0168736 +-0.0701178 0.170154 -0.0291958 +-0.0483555 0.146018 -0.00117385 +0.0336441 0.0578174 0.0379601 +-0.0913716 0.140622 0.0201693 +-0.0308539 0.0958394 -0.0237431 +-0.0766992 0.0702795 0.00252119 +-0.0544948 0.107078 0.0398767 +-0.0587729 0.0796565 -0.019784 +-0.013621 0.128874 0.0191382 +-0.0634727 0.156127 0.0195874 +-0.0880436 0.0977019 0.0235765 +-0.0606626 0.0738612 0.0409255 +0.0348653 0.0795228 0.0399156 +0.0387467 0.0828368 -0.0137708 +-0.0573402 0.0424553 0.0177175 +-0.0784976 0.148406 0.0395361 +-0.0917148 0.117385 0.0263102 +-0.0330041 0.122377 0.0254817 +0.0172403 0.0768113 0.0531129 +0.0595736 0.0691817 0.0101411 +0.0306903 0.0708797 -0.0198199 +-0.0845462 0.119028 0.0490922 +-0.0501127 0.0337803 -0.0127711 +-0.0670049 0.0372923 0.032499 +-0.0915067 0.129676 0.0312386 +-0.0550517 0.0504886 -0.00434688 +-0.0484873 0.0790818 0.0439275 +-0.0635173 0.159862 -0.0515858 +-0.0706155 0.173275 -0.0394062 +0.0352172 0.0952034 -0.0127755 +0.0251052 0.0382735 0.0297226 +-0.0668809 0.106639 -0.013906 +-0.0678418 0.143634 -0.0139334 +-0.0235762 0.184403 -0.0123621 +-0.0257601 0.0726356 -0.0363191 +-0.0573375 0.0472769 0.0101218 +-0.085611 0.106332 0.02136 +-0.0265671 0.0617846 0.0387137 +-0.0126044 0.12951 0.0108053 +0.0214416 0.0362735 0.0322576 +-0.0354711 0.126342 0.0186171 +-0.0594976 0.0904384 0.0451853 +0.00310705 0.0348555 0.0387811 +0.0254813 0.0942452 0.0457882 +-0.0308576 0.10008 -0.0228293 +-0.0176768 0.0510699 -0.0312435 +-0.0162281 0.181624 -0.0200739 +-0.0195138 0.038345 0.00392275 +-0.0645154 0.121409 0.0489254 +-0.0248162 0.0593033 0.0409035 +-0.0571389 0.136712 0.0331888 +-0.0435213 0.0379732 -0.0242868 +-0.0606582 0.12408 0.0421371 +0.0346832 0.0519191 0.0323364 +-0.0913706 0.116528 0.0258009 +-0.0426868 0.0651551 -0.0146214 +-0.0215064 0.116765 0.0355266 +-0.0581012 0.158247 0.00415445 +0.00842312 0.0385006 0.0330183 +-0.0523141 0.162661 -0.0019165 +0.0606845 0.0623337 0.0161711 +-0.0495055 0.0848369 0.0453213 +0.0333786 0.06058 0.0393695 +-0.0689469 0.131135 -0.00874709 +-0.078943 0.132461 -0.00522567 +-0.0196521 0.0386292 -0.00926197 +-0.0594457 0.0334843 -0.00338966 +-0.054161 0.0337073 0.0136843 +-0.0384829 0.0959056 0.0428235 +-0.0869182 0.148604 0.0308154 +-0.0323987 0.116048 -0.0147978 +0.0359194 0.0798211 -0.0157295 +-0.0328255 0.12127 -0.00820532 +0.0414852 0.0569681 0.0316528 +-0.0270871 0.0520359 -0.0253933 +0.0508347 0.0727393 0.0196905 +-0.0198767 0.105865 -0.0225965 +0.0206869 0.0400703 -0.0126929 +-0.0285033 0.0616825 0.0373869 +-0.0714181 0.143109 -0.0104276 +-0.0804568 0.138622 0.0481167 +-0.0458049 0.0532278 0.0379952 +-0.0509023 0.125469 0.0333647 +-0.0871853 0.145927 0.0339699 +0.0558536 0.0594884 0.0261475 +-0.0889169 0.126733 0.0032966 +0.0110737 0.125093 -0.00680678 +-0.0358405 0.094357 -0.023472 +0.0259145 0.102099 0.0411479 +0.0426389 0.0764517 0.0281735 +0.00597565 0.131268 0.0190237 +-0.0475211 0.165506 -0.00586183 +0.0138473 0.035286 0.0424107 +-0.0544751 0.0987674 0.042954 +0.0329063 0.0668566 -0.0177475 +-0.0715523 0.0819441 0.0400873 +-0.0483263 0.149906 -0.00403153 +0.0417112 0.0986332 0.0241669 +-0.0591403 0.039472 0.0459797 +-0.0649985 0.156251 0.0205012 +-0.0389795 0.034282 0.00907489 +-0.0627215 0.0592404 0.0161384 +-0.0367435 0.0437017 -0.0271198 +-0.0164726 0.0387782 -0.0143554 +0.0302495 0.0773125 -0.0211724 +0.0378723 0.109729 0.00416584 +-0.0033562 0.120959 -0.0122202 +-0.0465665 0.0433151 -0.011194 +-0.0597431 0.093988 -0.019461 +-0.0756514 0.0743685 0.0320217 +0.0461779 0.083439 0.010174 +-0.0757827 0.151399 -0.00889222 +-0.0417451 0.0768346 -0.0188724 +-0.0617437 0.0421117 0.0428503 +0.00176163 0.130465 0.00157228 +0.0429689 0.0696277 0.0268653 +-0.0432762 0.0450842 -0.0143236 +-0.0525312 0.0475838 0.0226634 +-0.0153636 0.128543 0.00690549 +-0.0685053 0.109678 0.0379594 +0.0174805 0.103096 0.0453391 +0.0217176 0.0632088 0.0471364 +0.0359993 0.0955223 0.036379 +-0.0451488 0.0335546 0.00486717 +-0.0681193 0.15804 -0.05439 +-0.0661021 0.155727 0.025928 +-0.00573558 0.0684573 -0.035843 +-0.0181282 0.187252 -0.018852 +-0.0445141 0.050571 0.038927 +-0.00049716 0.0856626 0.0573342 +0.016507 0.0913965 0.0503683 +-0.0333397 0.0410057 0.0499212 +-0.0351946 0.125334 -0.00338173 +-0.0616183 0.16622 -0.0565931 +-0.0624979 0.0760891 0.0414437 +0.0350466 0.107363 0.0297386 +-0.0720199 0.063399 0.00874547 +-0.0877434 0.135138 0.0431967 +0.0458379 0.0588925 -0.00503856 +-0.0385014 0.119389 0.0303589 +-0.0647267 0.0417808 0.0373932 +-0.0226655 0.0537608 -0.0296706 +-0.0584982 0.105689 0.0406051 +-0.0137228 0.0685659 -0.0377913 +-0.0817302 0.142079 0.0441697 +-0.0426358 0.0548841 -0.0113796 +-0.0135008 0.082884 0.0573146 +-0.00338001 0.130095 0.0228247 +0.0172769 0.0708593 -0.0295557 +-0.0246932 0.065394 -0.0335995 +-0.0314011 0.178523 -0.00645128 +-0.0575589 0.154615 -0.000238768 +-0.0407441 0.0753914 -0.0183192 +-0.084936 0.144668 0.0388142 +-0.0365092 0.108385 0.0376381 +-0.0851088 0.102115 0.000391121 +-0.0646522 0.0642554 -0.00503339 +-0.0754983 0.145823 -0.00786764 +-0.0474148 0.133778 0.0200381 +0.012958 0.0904818 -0.0298536 +-0.0425054 0.0705013 0.0420152 +0.0369946 0.0686204 -0.0137746 +0.0462743 0.0775122 0.0165366 +-0.0417874 0.128546 0.00302224 +0.00250208 0.0547919 0.0536548 +-0.0543206 0.140979 0.0284164 +-0.0492132 0.138613 0.0153977 +-0.0204064 0.162527 -0.00684616 +-0.0194926 0.111309 0.040066 +-0.00849594 0.0829198 0.0577964 +-0.0467773 0.0826601 -0.021013 +-0.0535197 0.0472233 -0.00680686 +-0.0092432 0.169141 -0.0244221 +-0.0594862 0.0804633 0.0433033 +-0.0764447 0.154164 -0.0158984 +0.0585888 0.0538213 0.0151823 +-0.0588396 0.0925945 -0.0203375 +-0.0761105 0.167387 -0.0256061 +0.0432176 0.0401728 0.0130684 +-0.0395679 0.152136 0.0040279 +-0.0685344 0.180035 -0.058648 +-0.0404998 0.0930589 0.0424923 +0.0428754 0.100088 0.00417324 +-0.0320271 0.0553591 -0.0124271 +0.0199862 0.0348656 0.0241629 +-0.069479 0.123198 0.0530616 +-0.0239594 0.117024 -0.0138685 +-0.013157 0.175712 -0.0209577 +0.00451102 0.0674972 0.0557889 +0.0304128 0.0431004 -0.0051324 +-0.0887794 0.151473 0.0131594 +0.0317917 0.0949031 -0.0164462 +0.0342895 0.112223 -0.00202032 +-0.0728652 0.170808 -0.0480355 +0.0253565 0.075473 0.0472224 +-0.0754952 0.15561 -0.00190651 +0.060278 0.0581371 0.013168 +0.00444274 0.131539 0.0170385 +0.00950273 0.0546854 0.0525766 +-0.028415 0.178753 -0.00594863 +-0.011518 0.0431769 0.0500228 +-0.0504724 0.141671 0.0164028 +-0.0424936 0.045133 0.0413379 +0.0207994 0.125738 0.00307388 +-0.0689469 0.0433261 0.00632212 +0.0111753 0.0766426 0.0548499 +0.0297504 0.0462054 0.0339396 +-0.0674791 0.0622216 0.0214031 +0.0131787 0.0793804 0.0542326 +-0.0630395 0.136976 -0.00741235 +-0.0026931 0.0386465 0.0251959 +-0.0862725 0.103636 0.0233541 +-0.072832 0.162419 -0.0389636 +-0.0670825 0.156321 0.0197603 +-0.0572305 0.057508 0.0152056 +-0.0876158 0.136354 0.00421533 +-0.0214752 0.0609386 0.0459919 +-0.007347 0.0952877 -0.0329727 +-0.0613578 0.0586321 0.0151557 +0.00350505 0.0590839 0.0549927 +-0.0372275 0.160948 0.000450465 +-0.0457572 0.0336839 -0.00997088 +0.0106658 0.0351593 0.00371028 +-0.0714997 0.16363 -0.0138384 +0.00840839 0.117161 -0.0162388 +-0.0493716 0.143224 0.00839291 +0.0251748 0.123444 0.0203849 +0.0329112 0.096871 0.0389677 +0.044554 0.0917551 0.0201604 +-0.0384935 0.0562767 0.0397971 +-0.0785284 0.123123 0.0516319 +0.0426769 0.101505 0.0101616 +0.00833271 0.0567886 -0.0305627 +-0.0876135 0.100396 0.0230423 +-0.0327059 0.0779055 -0.0285245 +0.0119151 0.0860485 0.0542349 +-0.0675927 0.17056 -0.0354212 +-0.0807265 0.0770568 0.0269252 +-0.0384859 0.0520062 0.0392089 +0.0452145 0.0482364 0.0300085 +0.0204736 0.0851385 0.0500118 +-0.0600179 0.155783 0.0193707 +0.0164701 0.0976264 0.0474551 +-0.0456663 0.0410589 -0.0152981 +-0.0821974 0.128571 0.0521036 +-0.0304964 0.0974331 0.0445755 +-0.0540878 0.128312 0.0358453 +0.0390858 0.0407779 -0.000614316 +-0.0725241 0.13724 0.0489632 +-0.0620129 0.0587144 0.0113478 +0.0455822 0.0848004 0.0171734 +-0.0839185 0.112898 0.00127069 +-0.0728197 0.155564 0.00463235 +0.0277412 0.121021 0.0227689 +0.0301995 0.0768447 0.0437008 +-0.0106344 0.174261 -0.0225996 +-0.0617342 0.0737271 -0.0167014 +-0.0414956 0.0464933 0.0408152 +0.03243 0.0535036 0.0361605 +-0.0377322 0.150234 -0.00179971 +-0.0847627 0.109032 0.02334 +-0.0642974 0.167953 -0.0385345 +-0.0221614 0.0825281 0.0558751 +-0.0504951 0.0960175 0.0443724 +-0.0508177 0.0501221 0.014822 +-0.0436492 0.0577877 -0.0118151 +-0.0189776 0.0390241 0.0529956 +-0.0623698 0.169401 -0.0505859 +-0.0105368 0.0850533 -0.0384463 +-0.0181795 0.183113 -0.0176247 +0.0314401 0.110365 -0.00894711 +-0.0127075 0.065682 -0.0367743 +-0.0273345 0.172717 -0.009826 +-0.0666857 0.141706 -0.00893584 +0.0408833 0.10285 0.0201769 +-0.0876525 0.145908 0.0330215 +-0.0436328 0.056346 -0.0115255 +-0.0611631 0.0428583 0.0256966 +-0.0330915 0.16076 -0.0136886 +-0.085208 0.150101 0.00618898 +-0.0615069 0.172523 -0.0575905 +0.0555907 0.0604655 -0.000426808 +-0.0850315 0.151395 0.00719993 +-0.0728007 0.0864364 -0.0158265 +-0.003188 0.127967 0.0287063 +0.0455462 0.0861954 0.016167 +-0.0217098 0.115215 -0.0159934 +-0.0414975 0.0916447 0.0424797 +0.0487043 0.0430197 0.0122221 +-0.0869351 0.106366 0.0163624 +-0.0156753 0.0541059 -0.0332392 +-0.06162 0.150156 -0.00124665 +-0.00577101 0.098213 -0.0280417 +0.0223236 0.0550419 -0.0260567 +-0.00429403 0.131101 0.0138416 +-0.0636168 0.143654 -0.00954122 +-0.0855598 0.0912595 -0.00155473 +-0.0404413 0.10705 0.0387043 +0.0547917 0.0553704 0.0263503 +-0.0822116 0.101996 0.0303518 +-0.0437463 0.128889 0.0155826 +-0.0664819 0.0397537 -0.00588584 +-0.067283 0.161835 -0.0137578 +-0.061699 0.0599431 0.00295203 +-0.0715633 0.170815 -0.0500445 +-0.0861137 0.0805676 0.00950062 +-0.0502228 0.125461 0.0326401 +0.0589666 0.0552427 0.017183 +-0.0327176 0.125444 0.0196276 +-0.0632934 0.151996 -0.00122225 +-0.0512927 0.135429 -0.000552487 +-0.0184842 0.0897075 0.0555921 +-0.0260646 0.11803 -0.0129143 +0.0198889 0.0631747 0.0480195 +-0.0465912 0.145038 0.00283923 +0.0534733 0.0728245 0.019221 +-0.0352804 0.0341155 -0.0193879 +-0.0829241 0.126549 -0.00467577 +0.0279852 0.0352646 0.0181572 +-0.0531741 0.150869 0.0213978 +0.0202497 0.0347399 0.020698 +-0.062763 0.149042 -0.0175788 +0.00226918 0.115596 -0.0185376 +0.0250704 0.12404 0.011788 +-0.045498 0.101529 0.0420301 +-0.058497 0.0426323 0.0447374 +0.0455164 0.0904085 0.0121603 +0.0215692 0.0352857 0.025924 +-0.0274987 0.0631476 0.0380009 +-0.0140602 0.172758 -0.0187663 +0.0587826 0.0538552 0.0121765 +-0.0628795 0.15219 -0.00958093 +-0.0468135 0.1536 0.00939603 +-0.0928405 0.121514 0.033281 +-0.0622964 0.150648 -0.0145762 +0.0475064 0.0611159 0.0308231 +0.00412571 0.107297 -0.0203039 +-0.0703978 0.156305 0.0156818 +-0.053643 0.135335 0.0311995 +0.0067064 0.0341407 0.0184863 +-0.0466442 0.0397388 -0.0142756 +0.0119051 0.0711889 0.0540767 +-0.0447375 0.0357143 0.0441717 +-0.0228183 0.0840509 -0.0381648 +-0.023326 0.122164 -0.00726067 +0.0441999 0.0790177 0.0251667 +-0.0276246 0.160982 -0.00149388 +-0.0399791 0.126816 0.018458 +0.0222264 0.09191 -0.0233017 +-0.0627692 0.156841 -0.0155919 +0.044508 0.0412168 0.00624902 +-0.0731279 0.155455 -0.0309078 +0.0183024 0.0347298 -0.00182982 +-0.01652 0.0715906 0.0550352 +-0.091634 0.141989 0.0201675 +0.0440337 0.0734407 -0.000804833 +-0.0524198 0.0648658 0.0346087 +0.0572481 0.0508905 0.0141872 +-0.0164766 0.111102 -0.0196668 +-0.0418874 0.108498 -0.0194287 +0.0321354 0.0549697 0.0375085 +-0.0644897 0.102874 0.0413067 +0.0465079 0.0583728 0.0318256 +-0.0334582 0.0518969 0.0377238 +-0.0729908 0.139888 -0.00698816 +-0.0534544 0.124093 0.0367404 +0.0173165 0.0622663 -0.028279 +-0.0554104 0.0513256 0.00948897 +-0.014903 0.172738 -0.0182312 +-0.0502115 0.141667 0.015397 +0.0229958 0.0375848 0.0332895 +-0.0749615 0.135451 -0.00681495 +-0.0855353 0.0938173 0.0282665 +-0.069508 0.102769 0.0393316 +-0.0205392 0.0971418 -0.0249761 +-0.0312923 0.0362769 0.0513145 +0.0260175 0.0991397 -0.0189626 +-0.00594641 0.0989148 -0.0267499 +-0.0708605 0.0347825 0.00928864 +-0.0845393 0.103233 0.0269979 +0.0406232 0.0953057 0.0289912 +-0.0456818 0.0650665 -0.0140257 +-0.0326318 0.168236 -0.00522072 +-0.0765723 0.0689281 0.00553415 +-0.0176728 0.049548 -0.0303695 +0.00113463 0.130461 0.00151005 +-0.08699 0.0859713 0.00247197 +-0.0338357 0.095789 -0.0234311 +-0.0304987 0.10293 0.0419798 +0.0336335 0.0713894 0.0398251 +-0.0224957 0.101642 0.0440993 +0.0309373 0.119109 0.0111337 +-0.0734894 0.156164 0.020416 +-0.000755237 0.0740961 -0.035785 +0.0354988 0.0469226 0.030944 +-0.00617179 0.128513 -0.00228639 +-0.00460988 0.0388908 -0.00276124 +-0.0678289 0.135464 0.0458614 +0.0345596 0.114411 0.00388032 +-0.0884532 0.112251 0.0353052 +-0.0709934 0.170517 -0.0295248 +0.0284454 0.0995183 0.0412905 +0.0402167 0.0685122 0.0317439 +-0.0665769 0.0362823 0.0365183 +-0.0765583 0.148625 -0.00886956 +0.0576507 0.0606695 0.00219201 +0.060413 0.0664733 0.017165 +0.022246 0.0835763 0.0498509 +-0.0821459 0.0912329 0.0320422 +-0.0746727 0.145787 -0.00986958 +0.0345089 0.111329 0.0271807 +0.0594367 0.0663847 0.00713811 +0.0282217 0.0664463 -0.0207545 +-0.0619747 0.170963 -0.0535908 +-0.0394944 0.0492076 0.0395541 +-0.0787666 0.165266 -0.0299591 +-0.0749441 0.129634 -0.00796551 +-0.00112962 0.125371 0.0323555 +-0.0154803 0.0500282 0.047966 +0.0153592 0.0953434 0.0487033 +-0.085237 0.147388 0.00618456 +-0.0128008 0.0841443 -0.0388521 +0.024383 0.0518665 -0.0223004 +-0.0342551 0.0766309 -0.0244955 +-0.0670839 0.173532 -0.0453192 +-0.0772544 0.0764799 0.0316515 +-0.0270646 0.053566 0.0376661 +-0.0225205 0.112681 0.0384786 +-0.0884304 0.0874699 0.00847782 +-0.0737584 0.0914853 0.0405847 +-0.064968 0.128232 -0.00872903 +0.000512384 0.127929 0.028588 +-0.0599553 0.0610872 0.0239566 +-0.0384792 0.116679 0.0322191 +-0.0485119 0.112536 -0.0170517 +-0.0304781 0.0523954 -0.0163632 +0.0387588 0.108855 0.00681782 +-0.0406156 0.155109 0.0060988 +-0.0471466 0.149481 -0.0040486 +0.0179495 0.127337 0.00345096 +-0.0395837 0.0336987 -0.0198537 +-0.0633751 0.0344193 0.0288044 +-0.0424853 0.128365 0.0145816 +-0.0364913 0.113889 0.0338295 +0.0353283 0.112832 0.00268414 +-0.0653226 0.0343003 0.0144151 +0.0435313 0.065065 0.0273105 +-0.0795726 0.0867837 -0.00954059 +-0.0104381 0.171321 -0.0205524 +-0.0737003 0.156269 0.0145144 +-0.0733818 0.155466 -0.0289107 +-0.0198527 0.0382258 0.0238627 +-0.0188257 0.0725897 0.0542693 +-0.0778777 0.117832 -0.00599287 +-0.0365049 0.10423 0.0397359 +-0.00948278 0.0978353 0.051868 +-0.0103201 0.0393296 0.0497389 +-0.0876274 0.137747 0.00620032 +0.0416732 0.0819555 0.0304093 +0.0608524 0.0609661 0.0101561 +-0.0767143 0.154218 -0.0048969 +0.0174945 0.0838575 0.0514031 +-0.066433 0.0337378 -0.00503676 +-0.0232113 0.177135 -0.0206374 +0.0100949 0.034771 0.018605 +0.042675 0.0751161 0.0282624 +-0.0866662 0.0833296 0.0114916 +-0.0504965 0.157865 0.00943584 +0.0433406 0.0973216 0.0191637 +-0.0888303 0.0915034 0.00845607 +-0.0555242 0.0415797 -0.00918326 +-0.0337405 0.075174 -0.025488 +-0.0906275 0.137865 0.0211926 +-0.0123027 0.0389534 -0.0136872 +-0.045835 0.0941966 -0.0219229 +-0.0238433 0.163025 -0.0155105 +-0.0522937 0.12758 -0.00475935 +0.0308793 0.0356029 0.0166157 +0.0423563 0.0588819 -0.00453174 +-0.00663392 0.0466819 -0.0297341 +-0.0484493 0.0656843 0.0374132 +-0.0270407 0.125883 0.0113821 +-0.0910269 0.129538 0.0072515 +-0.0455907 0.0447683 -0.0109766 +0.00905498 0.0971664 -0.0248901 +0.00396755 0.0341147 0.00886829 +0.00550365 0.123767 0.0339438 +0.0400787 0.0432895 0.0279756 +-0.00815712 0.126302 0.0298556 +-0.0609217 0.118124 -0.010668 +-0.0141549 0.129252 0.0145753 +0.0274448 0.120188 0.0255104 +-0.0485004 0.111187 0.0370789 +0.0451596 0.0789195 0.0230398 +-0.0138991 0.162654 -0.0155462 +-0.0528814 0.0447887 0.0196824 +0.0277468 0.0465681 -0.0107176 +-0.0580291 0.124109 0.0406616 +-0.0404897 0.0874362 0.0429424 +0.0316544 0.117354 0.0228159 +0.0277648 0.098182 0.0420578 +-0.0391765 0.165177 -0.0125287 +-0.0691207 0.112747 0.0474107 +-0.0614963 0.102908 0.0417081 +0.0393676 0.0927337 0.0325144 +0.0214921 0.125223 0.0232941 +-0.0167077 0.059948 -0.0356741 +-0.0619704 0.118373 0.041992 +-0.0359339 0.109235 -0.0196158 +-0.0150259 0.185694 -0.0231645 +0.0245929 0.0577938 0.0442192 +-0.00233157 0.122878 -0.010278 +-0.0434949 0.0817618 0.042266 +0.0298844 0.0350171 0.0132987 +-0.00424346 0.0409986 0.0479883 +-0.0776115 0.15005 -0.0049035 +-0.0124244 0.108763 -0.0212047 +-0.0798966 0.083235 0.0342815 +-0.0813623 0.104616 -0.00457868 +-0.0167402 0.0671791 -0.0380101 +0.0259555 0.123153 0.0178233 +0.0406613 0.0638232 0.0297482 +-0.0129458 0.117871 -0.0148632 +-0.0708515 0.0937008 -0.0159297 +-0.0688238 0.1383 0.0462399 +-0.0886846 0.136388 0.00720801 +0.0460186 0.0714912 0.0208033 +0.0465334 0.07646 0.0111853 +0.000795729 0.0345137 0.0115011 +0.0318042 0.0661523 0.0406683 +-0.0277917 0.0810724 -0.036339 +-0.012329 0.0361667 0.050366 +-0.0672863 0.151256 -0.0426939 +0.0328851 0.0556122 -0.0127142 +-0.0444939 0.107088 0.0401229 +-0.088037 0.113814 0.026966 +-0.0228073 0.184465 -0.0170667 +-0.00369909 0.0598617 -0.0340393 +-0.0698551 0.16523 -0.017589 +-0.0464984 0.047794 0.0396541 +-0.0756919 0.143067 -0.00582827 +-0.0208788 0.0383361 0.00183886 +-0.0768287 0.154208 -0.00589938 +-0.0147866 0.0799249 -0.0391233 +-0.0699384 0.150598 0.0380766 +-0.0866088 0.126656 -0.00171455 +-0.0792409 0.168033 -0.0359701 +-0.0650871 0.0417056 0.03635 +0.0353256 0.109535 -0.00390394 +0.00651309 0.0828012 0.0562471 +-0.0512535 0.0528689 0.0137817 +-0.0635072 0.0590749 0.0125217 +-0.0892074 0.127019 0.0449806 +0.0451896 0.0875706 0.0191665 +-0.0576689 0.0350157 0.0450337 +-0.0441239 0.129077 0.0169132 +0.00351519 0.0634007 0.0566286 +-0.0456618 0.0741031 -0.0174455 +-0.045802 0.0382259 -0.0192856 +-0.0774749 0.141413 0.0470689 +0.019092 0.0350694 0.0292369 +-0.0721908 0.176974 -0.0457483 +-0.0228049 0.0784515 -0.0385457 +-0.0196863 0.0539295 -0.0316066 +0.0370985 0.0632585 0.0359995 +-0.0097823 0.0613531 -0.0352263 +-0.0518485 0.147799 0.0174109 +-0.0424957 0.11253 0.0356818 +-0.00161218 0.0387745 0.0252993 +0.0432025 0.0777701 0.0272794 +0.0158912 0.0644868 0.0510299 +-0.0624956 0.0861834 0.0447184 +0.0226823 0.0605452 0.0467602 +-0.0345153 0.0780634 -0.0235017 +-0.0693572 0.156301 0.0160519 +-0.0848272 0.110715 0.0391424 +0.00397477 0.0389229 -0.0104191 +-0.0107444 0.0685007 -0.0365794 +0.0105122 0.0673666 0.0542979 +-0.0493982 0.113885 -0.0164603 +0.0292359 0.120576 0.0147663 +0.0143954 0.0433708 -0.024029 +-0.0548811 0.099887 -0.0210509 +-0.0345638 0.113971 -0.0166195 +-0.00945158 0.0346766 0.0453022 +-0.0114995 0.0486859 0.0490069 +0.047721 0.0729559 0.00883547 +0.00782583 0.131487 0.0111342 +0.018385 0.126365 0.000765748 +-0.0801977 0.117632 0.0490824 +0.0508224 0.0446928 0.0102182 +-0.0792484 0.154932 0.0111245 +-0.0616259 0.175734 -0.0596865 +-0.0554957 0.10156 0.042627 +-0.0693451 0.162383 -0.0509602 +0.0464905 0.0624784 0.0299685 +-0.0626979 0.149033 -0.0165859 +-0.027787 0.0838632 -0.0360686 +-0.068908 0.112267 -0.0105177 +-0.0464636 0.157957 0.00818306 +-0.0656199 0.0690554 -0.0100807 +-0.0594903 0.081873 0.0434438 +-0.042501 0.0803745 0.0423542 +-0.0715599 0.0733863 -0.0105456 +-0.00392373 0.129832 0.00104637 +0.0231411 0.0844685 -0.0255261 +-0.0582906 0.0411368 0.01871 +-0.0231503 0.121506 -0.00857745 +0.0353371 0.0534224 -0.00701071 +-0.028498 0.108421 0.0390601 +-0.0161996 0.0386499 0.0314325 +0.0417053 0.0943445 -0.00480688 +-0.037505 0.0874848 0.0436782 +-0.0859867 0.140484 0.00417932 +-0.0394569 0.124785 -0.00795634 +-0.0629125 0.111049 -0.0145904 +-0.0697706 0.0337438 0.00328799 +0.0353216 0.0863185 -0.0174167 +-0.0529232 0.125495 0.0357533 +-0.0145001 0.0870236 0.0569643 +-0.00422597 0.10111 -0.0231367 +0.026954 0.114984 -0.00791167 +0.0123614 0.0509077 -0.0278502 +-0.0705953 0.157132 -0.0018785 +-0.0270301 0.0604609 -0.0294673 +-0.0252429 0.163867 -0.00684922 +0.0164575 0.0900289 -0.0273543 +0.0182356 0.126981 0.00216332 +-0.0276261 0.15573 -0.00786612 +-0.0687195 0.165823 -0.0200644 +-0.0237576 0.0713185 -0.0373359 +-0.0350727 0.157773 -0.0116201 +-0.0115095 0.129073 0.00398865 +-0.000506085 0.0442149 0.046198 +0.0372544 0.109701 0.0220387 +-0.0154921 0.0382096 0.0157388 +-0.0500202 0.131989 -0.0014354 +-0.025472 0.0851651 0.0520429 +-0.0328435 0.125555 0.000439943 +-0.0773991 0.152954 0.0323974 +-0.0504161 0.144734 0.0123765 +-0.0576549 0.124438 -0.00742698 +0.0532901 0.0621073 -0.00218568 +-0.0298754 0.0748068 -0.0335581 +-0.0642433 0.0338438 0.0114826 +-0.0316113 0.0409091 -0.0301005 +0.00142887 0.0392678 -0.00936829 +0.0274179 0.122108 0.0155174 +-0.0144987 0.0884006 0.0568363 +-0.0184962 0.109943 0.0409607 +0.0379028 0.0997575 -0.00879746 +-0.0244855 0.0461464 0.0516096 +0.03717 0.0713299 0.0361376 +0.0442521 0.0804694 -0.00179963 +-0.0693598 0.153979 -0.049866 +-0.045049 0.0367204 -0.0222184 +0.0226853 0.115014 -0.0119595 +0.0308676 0.0713453 0.0410867 +-0.0253533 0.0381958 0.00468802 +0.0115087 0.101793 0.0474223 +0.0122157 0.0346138 -0.0197432 +-0.078807 0.10613 0.032485 +0.0412927 0.101424 0.0211601 +0.0449984 0.0413097 0.00725015 +-0.0614983 0.0861808 0.0447299 +0.0201601 0.0357218 -0.00467829 +-0.0270641 0.0376545 -0.0293745 +-0.0491197 0.137061 0.00540677 +-0.00249881 0.0829011 0.0575494 +0.021052 0.0358187 -0.0026817 +-0.0154895 0.0559453 0.0511175 +-0.0718433 0.0833097 0.0403454 +-0.087976 0.141871 0.0376917 +-0.0787586 0.163869 -0.0289482 +-0.0485008 0.0732772 0.0415918 +-0.0366615 0.0606699 -0.0121541 +0.0262206 0.0435744 -0.00668237 +0.000219502 0.0370979 0.0467851 +-0.00149685 0.0456811 0.047029 +-0.0545635 0.122251 -0.00910565 +-0.0186556 0.0480312 -0.0293255 +0.0387854 0.0701818 -0.0117862 +-0.0654945 0.0398115 -0.0063825 +-0.0437744 0.116579 -0.0153348 +-0.0344901 0.0987486 0.043091 +0.0610023 0.062364 0.012157 +0.0141007 0.120583 0.0346592 +-0.0823269 0.108767 -0.000607289 +0.0214843 0.092023 0.0479434 +-0.070667 0.0763937 -0.014042 +0.021114 0.0592021 0.0480036 +0.0252499 0.0775815 -0.0248688 +-0.0601377 0.0338299 0.0176745 +-0.0579501 0.0592474 0.0206872 +-0.0769058 0.154074 0.0295482 +0.0198639 0.11968 -0.0089705 +0.0022305 0.0754937 -0.0353597 +-0.00780413 0.0840976 -0.0379648 +-0.0611789 0.172541 -0.0596341 +-0.0447417 0.0768063 -0.0185987 +-0.017374 0.0569064 0.0504968 +0.00450466 0.087016 0.0568401 +-0.0709391 0.109631 0.0395791 +-0.0674006 0.0406253 -0.00334064 +-0.0311093 0.169745 -0.00652433 +0.0242906 0.0676576 -0.0247124 +-0.0326084 0.171239 -0.00339173 +-0.0325897 0.0666513 -0.0194517 +0.0319052 0.0437397 0.0295375 +-0.0450254 0.127281 -0.00449582 +-0.0226309 0.0478785 -0.0276417 +-0.0583127 0.0580812 0.00726379 +-0.037778 0.0827556 -0.0219531 +-0.0518874 0.106988 -0.0190452 +0.0163996 0.044784 -0.0236657 +0.0103374 0.0553349 -0.0300221 +0.0206753 0.126786 0.0115854 +-0.0850979 0.131233 0.0492505 +-0.0192324 0.177141 -0.0234526 +-0.0199616 0.0697296 0.0526775 +-0.0561055 0.158254 0.000206899 +-0.055732 0.115927 -0.0145408 +-0.0417663 0.162365 0.00442786 +-0.0305905 0.119479 -0.0103702 +0.0234999 0.0955508 0.0464417 +-0.0498856 0.149233 0.0119087 +-0.0154824 0.185702 -0.0219175 +0.00917376 0.125511 -0.00726227 +-0.0913426 0.147495 0.0231401 +-0.00381375 0.0896299 -0.0357356 +-0.0686943 0.154419 0.0308917 +-0.02552 0.111233 0.0379672 +-0.0705473 0.1414 0.0460484 +-0.00201946 0.100869 0.0458524 +-0.0876244 0.129442 0.00130199 +-0.00449535 0.0965559 0.0536663 +-0.0271292 0.0850573 0.0494379 +-0.0914908 0.1337 0.0152201 +0.00523694 0.126704 0.0302977 +-0.0470651 0.153179 -0.00606436 +-0.0672153 0.156284 0.0168104 +-0.0427934 0.0869807 -0.0215837 +0.0423379 0.0683118 0.0277209 +-0.0295859 0.0790353 -0.0345348 +-0.0477964 0.062891 0.036824 +-0.00968443 0.0570101 -0.0338896 +0.0451851 0.0861731 0.0211635 +0.00951284 0.0532319 0.0521285 +0.0302906 0.0787129 -0.0208549 +-0.0738862 0.104992 -0.0108534 +0.0453646 0.0575572 -0.00557548 +-0.0663103 0.0759418 0.0397029 +0.0143833 0.128699 0.00214848 +0.00580886 0.130668 0.0218239 +-0.0131274 0.0387957 -0.00624825 +-0.00997898 0.172997 -0.0279186 +-0.0620827 0.174072 -0.0556227 +-0.0546337 0.0334816 0.0119976 +0.0208676 0.121124 0.0316774 +0.0220436 0.125932 0.0163676 +0.0377227 0.0561747 0.0314909 +-0.0721609 0.147032 -0.0238695 +-0.0738111 0.0907253 -0.0150698 +-0.0362217 0.0335837 -0.0228111 +0.0387097 0.105846 2.20656e-05 +-0.0556277 0.0365615 0.0468082 +-0.0836005 0.0763298 0.006515 +0.0280677 0.100848 0.0407486 +-0.0831241 0.100626 0.0298981 +-0.0305493 0.0479587 -0.0242789 +0.0165747 0.0519808 0.0466207 +0.0447673 0.0847221 0.00118921 +-0.0146056 0.0435263 -0.0269315 +0.0273074 0.0346174 0.0112772 +-0.0683005 0.139737 0.0452157 +-0.0485925 0.132707 0.00186362 +0.00897502 0.113705 0.0394792 +0.010104 0.0343592 -0.0200136 +-0.0769339 0.126684 -0.00758482 +0.00350625 0.0547769 0.0535608 +-0.0850528 0.0993835 -0.000573805 +0.00144009 0.0350568 0.0184024 +-0.0301745 0.17266 -0.0167996 +-0.0732751 0.148715 -0.0303812 +-0.0837086 0.0952625 0.0306499 +-0.0742711 0.149885 -0.0318724 +-0.00654578 0.0384949 0.010053 +-0.0248989 0.0968475 -0.0246804 +-0.0633856 0.148243 -0.0195768 +-0.0647288 0.126998 0.0468559 +-0.058406 0.0598457 0.000248469 +0.0425358 0.0710418 0.0280089 +-0.0915343 0.140602 0.0181819 +-0.0407824 0.116214 -0.0149415 +-0.0445073 0.0491885 0.039305 +0.0294698 0.0801098 -0.0210213 +-0.0277559 0.0348695 0.0499059 +-0.0137302 0.107232 -0.0215702 +-0.0482685 0.037339 -0.0123839 +-0.0673815 0.0659915 0.0287149 +-0.0567046 0.11983 0.0390246 +0.0211901 0.113994 0.0360983 +0.0319596 0.11565 0.0257836 +-0.050462 0.0402796 0.0458238 +-0.0364752 0.09732 0.0430461 +0.00119043 0.0895238 -0.0341779 +-0.0699807 0.149351 0.039589 +0.0439472 0.0917185 0.0231564 +-0.0559199 0.113507 -0.0160179 +-0.0853556 0.095327 -0.00158429 +-0.0662723 0.154476 -0.00173975 +-0.0186027 0.111108 -0.0196906 +-0.0563562 0.140993 0.0307629 +-0.00358231 0.0383094 0.0162632 +-0.0568935 0.0562594 0.000567085 +-0.00649422 0.0590504 0.0549316 +-0.0245507 0.183147 -0.010424 +-0.032468 0.175717 -0.00291757 +-0.0132616 0.175663 -0.0275653 +0.00407218 0.0361395 0.0234015 +-0.00250245 0.104479 0.0441797 +0.00787676 0.127927 0.0283381 +-0.0760841 0.164579 -0.0198769 +-0.0814657 0.130234 0.0522094 +0.0322493 0.109934 -0.00848346 +-0.0747758 0.152715 -0.0228916 +-0.0360726 0.1261 0.0198793 +0.00651921 0.0869957 0.0564058 +-0.0863282 0.151358 0.00923307 +-0.00766666 0.0527037 -0.0328501 +0.0329828 0.110047 0.0302661 +-0.0819069 0.0844754 0.0320139 +0.020413 0.0521197 0.0451417 +-0.043267 0.149185 0.00566881 +0.03267 0.0767015 -0.0187757 +-0.0861456 0.140625 0.0415389 +-0.0665323 0.154667 0.00252946 +-0.0231566 0.158136 -0.0102789 +-0.0217907 0.0957944 0.0466571 +-0.0638349 0.156748 -0.0426051 +-0.0346441 0.117803 -0.0126135 +0.00980894 0.0658051 0.0545289 +-0.080258 0.0859229 0.0345477 +-0.0117542 0.0386862 -0.015202 +-0.080536 0.135397 0.0502642 +-0.0325368 0.0792892 -0.0295289 +-0.0784828 0.0717889 0.00251767 +-0.00149343 0.0883979 0.0566431 +-0.0137942 0.0386802 -0.0156021 +-0.0444896 0.101534 0.0420576 +-0.00192307 0.107424 -0.021877 +-0.0440699 0.153194 -0.00699527 +0.00318991 0.0880718 -0.0337792 +-0.0344943 0.0718865 0.0415833 +-0.030416 0.0692532 -0.0284548 +-0.0622359 0.167822 -0.0495929 +-0.0344858 0.100109 0.0424402 +0.00649387 0.0590149 0.0539921 +0.0360791 0.111295 0.00152105 +-0.0587368 0.0434475 0.0440841 +-0.0417025 0.0666657 -0.0153449 +-0.0533816 0.0513995 0.0117052 +-0.0285002 0.097396 0.0440561 +-0.0690491 0.153118 -0.0485047 +-0.0144923 0.093841 0.0546527 +-0.0633747 0.036885 -0.0080479 +-0.0706693 0.165215 -0.0479768 +0.0127157 0.0350729 0.0423657 +0.00853944 0.100396 0.0475311 +0.0211162 0.126093 0.00605375 +-0.0514924 0.113914 0.0348157 +0.0172187 0.117738 -0.0128881 +-0.01069 0.0969192 -0.0307004 +0.0121568 0.0930338 -0.0284961 +-0.0772387 0.158974 -0.0142914 +-0.0667905 0.0852019 -0.0183581 +0.0154254 0.0834009 0.0522607 +-0.0487147 0.0723044 -0.01565 +-0.0464696 0.0675313 0.0396048 +-0.0110203 0.0383532 0.0129011 +-0.0205151 0.114503 -0.0172551 +-0.0556769 0.0499718 0.00979142 +-0.0503626 0.0642656 0.0349674 +-0.00189958 0.130575 0.00323807 +-0.00749418 0.0533074 0.0526841 +-0.0781504 0.0736081 0.0268981 +-0.00216638 0.09997 -0.023881 +-0.0374964 0.119384 0.0304732 +-0.0237883 0.0932085 0.0487292 +-0.0846322 0.139314 0.044315 +0.00579995 0.0355749 0.0242599 +-0.0498385 0.0970763 -0.0221981 +0.0311277 0.0795524 0.0433085 +-0.080771 0.105947 -0.00458985 +-0.0541694 0.136721 0.0304424 +-0.0158788 0.038593 -0.0159367 +0.0375503 0.0588742 -0.00872526 +-0.0278572 0.0972984 -0.0239915 +-0.0609119 0.0678343 0.0355003 +0.0406749 0.0801882 -0.00878559 +-0.0891047 0.101026 0.0153901 +0.0370023 0.11146 0.00905905 +-0.00649525 0.0576581 0.0543368 +0.0215982 0.0645366 0.046975 +-0.0290293 0.160675 -0.0139931 +0.00903586 0.100133 -0.0220275 +-0.0584961 0.104303 0.041452 +-0.0664115 0.162305 -0.0579417 +0.0239006 0.0520481 0.0413924 +-0.0216874 0.126575 0.00458035 +-0.0485184 0.0438796 0.0435224 +-0.0231474 0.0384868 -0.00611954 +-0.00826521 0.0380456 0.0491273 +-0.0528526 0.147782 0.0214111 +-0.0907516 0.137857 0.0201957 +-0.0758557 0.103473 -0.0101675 +-0.0397582 0.079747 -0.0196231 +-0.0147733 0.078434 -0.0385776 +0.00381296 0.0379313 -0.0132938 +-0.0694673 0.0635361 0.0216095 +-0.0528954 0.105563 -0.0191967 +0.0343906 0.0529675 -0.00763383 +-0.0293172 0.172724 -0.00740528 +0.00850711 0.0688384 0.055257 +-0.016261 0.181575 -0.0262548 +0.0213104 0.0415776 -0.0147 +-0.0780733 0.100357 -0.00962255 +-0.0846334 0.108922 0.00436756 +-0.0186964 0.0569405 -0.033635 +-0.037924 0.175153 -0.00739726 +-0.049768 0.081217 -0.020889 +0.0335081 0.0942386 0.0398247 +-0.0729901 0.154042 -0.0338982 +-0.0233975 0.156883 -0.00572928 +-0.0873262 0.103661 0.0203534 +-0.0501055 0.129693 0.0310292 +0.029581 0.0907082 -0.0200166 +0.043329 0.066441 -0.000599376 +-0.00664168 0.0482162 -0.0304375 +0.021889 0.0963552 -0.0220144 +-0.0265893 0.161003 -0.00174275 +0.044803 0.0945847 0.0121616 +-0.0725608 0.109721 0.0409258 +-0.0372497 0.126436 -0.00264816 +0.005339 0.0971934 -0.026912 +-0.0241177 0.120704 -0.00972559 +-0.0462757 0.0390662 0.0448146 +-0.00565778 0.12946 0.000751082 +0.0213227 0.122349 -0.00385694 +-0.0414913 0.0790271 0.0430475 +0.0190905 0.127062 0.0195525 +-0.0805286 0.124537 0.0519983 +-0.0782836 0.0860139 0.0367982 +0.0219644 0.126042 0.013483 +-0.0325696 0.0410226 0.0505793 +0.0295979 0.039453 0.0274445 +-0.0475678 0.0446906 -0.0104074 +-0.0654918 0.0917539 0.043991 +-0.0307813 0.122738 0.0233033 +-0.0854845 0.112639 0.0445732 +0.0231366 0.0404268 -0.00664294 +-0.00398687 0.126095 0.0313534 +-0.0641503 0.0436305 0.0113748 +-0.0314872 0.0646167 0.0387865 +-0.0776274 0.0692865 0.00957677 +-0.0195579 0.0946763 0.0515134 +0.014517 0.0344542 -0.0117299 +-0.0376663 0.0621956 -0.0129723 +0.00459507 0.101613 0.0450146 +-0.0281642 0.0346776 -0.0203658 +0.0147654 0.125019 -0.0047274 +-0.0344283 0.0338921 0.0139586 +-0.0364985 0.117968 0.0313259 +-0.0456444 0.0592254 -0.0120696 +-0.0260288 0.0381935 0.00636573 +-0.088169 0.124336 0.0468831 +-0.0540681 0.135339 -0.00310003 +-0.0291607 0.171183 -0.0175503 +0.0104455 0.0488162 0.0487077 +-0.0881632 0.0861128 0.0124706 +-0.0258758 0.0578187 0.0391737 +0.00450037 0.0427385 0.0456181 +-0.0537204 0.0491564 0.0326591 +0.0388727 0.0645792 -0.00975725 +-0.0500679 0.0501277 0.0166633 +-0.0669104 0.120913 -0.00889891 +-0.036233 0.0469115 -0.0220883 +-0.0118859 0.163867 -0.0168515 +-0.0619905 0.129678 -0.00799355 +-0.0652279 0.0397522 0.0288372 +-0.0508809 0.104197 -0.0202021 +-0.00186382 0.104504 -0.0225214 +-0.0619023 0.120903 -0.00899386 +0.00323955 0.0754773 -0.0351385 +-0.0384934 0.105604 0.0386511 +-0.0905225 0.118622 0.0053153 +-0.0284893 0.0835322 0.0466293 +0.00823162 0.0387858 0.0309201 +-0.0616053 0.156855 -0.0285887 +-0.0508615 0.101367 -0.0215394 +-0.0318582 0.102916 -0.0222908 +0.00526525 0.0350275 0.0444668 +-0.0646344 0.0337755 0.00968147 +-0.0640121 0.136992 -0.00763419 +-0.0456074 0.0345826 0.0394197 +-0.0864043 0.111678 0.00530063 +-0.0207807 0.0581858 0.0468036 +-0.0608886 0.105445 -0.0177606 +0.0417928 0.0746499 -0.00676608 +0.0195225 0.0821843 0.0511684 +-0.0464961 0.0833304 0.0442498 +0.0164933 0.119532 0.0345952 +-0.0626731 0.158367 -0.0396045 +0.00725591 0.129807 0.000165614 +-0.0909094 0.114612 0.0400043 +-0.0496217 0.0532216 -0.00894483 +-0.0204558 0.0772045 0.0549311 +-0.0225647 0.184728 -0.0122995 +-0.0389284 0.111648 -0.0181691 +-0.0312712 0.125373 0.00251041 +-0.0157734 0.075693 -0.0388238 +0.0245364 0.0862451 0.0478999 +-0.0296756 0.125596 0.0148252 +-0.0446861 0.130064 0.0166863 +-0.0225936 0.0382891 0.00334965 +-0.0787949 0.0758277 -0.00557109 +-0.0665305 0.155586 -0.0523326 +-0.0631388 0.0620641 0.0242 +0.0275571 0.0875682 0.0452466 +-0.0838788 0.153353 0.0242347 +-0.0365497 0.124951 0.0226726 +0.0318595 0.0673315 0.0407335 +0.00950257 0.0896505 0.0545501 +-0.0597218 0.118329 0.0399103 +-0.0840037 0.0992695 0.0294026 +-0.0777723 0.0832737 0.0363717 +0.0427594 0.0986702 0.00117933 +-0.0422677 0.111306 -0.0177858 +-0.0762231 0.16043 -0.0125715 +-0.0634008 0.115527 0.0417242 +-0.036507 0.106984 0.0382357 +-0.0384749 0.0351927 -0.0135871 +-0.0744578 0.144386 -0.00789461 +0.0593202 0.0701868 0.012517 +-0.0226744 0.0522819 -0.0290541 +-0.0875766 0.122583 -0.000713178 +-0.0170034 0.127025 0.0015954 +-0.0705369 0.155342 -0.0479286 +-0.0709342 0.128224 -0.00904999 +0.00705252 0.0346309 0.0397936 +-0.0585604 0.133937 0.0364008 +-0.0863384 0.102179 0.00442425 +0.0107631 0.0671702 0.0541647 +-0.0695537 0.163673 -0.0146023 +-0.0452915 0.1298 0.0046882 +0.00836647 0.0494746 -0.0282442 +-0.0691053 0.0641529 -0.000471523 +-0.0065051 0.0518538 0.05236 +-0.0557789 0.0811944 -0.0212002 +-0.0801928 0.109885 0.0408487 +-0.0136098 0.0997657 0.0454373 +0.0375013 0.045461 0.0306904 +-0.0857877 0.152992 0.0221351 +-0.00139702 0.0346206 0.0416594 +-0.0501963 0.061364 0.033592 +0.0161097 0.0974052 -0.0230873 +-0.0194917 0.0568426 0.0483686 +0.0492985 0.0561391 -0.00508332 +0.0184753 0.100361 0.0464541 +-0.0504953 0.154968 0.0107183 +0.0147875 0.105075 -0.0193 +0.023524 0.11536 0.0341991 +0.0310013 0.118944 0.0140014 +-0.0172406 0.178621 -0.0252251 +-0.0367055 0.112873 -0.0174612 +-0.026888 0.0344315 -0.0290471 +-0.052616 0.0542078 0.012269 +-0.0374932 0.0478153 0.0397186 +-0.0727381 0.151148 -0.0398146 +0.0042421 0.0740405 -0.0347398 +-0.0170835 0.187214 -0.0216216 +-0.0744375 0.0658205 0.00791081 +-0.0225303 0.159751 -0.00283877 +-0.015413 0.0343578 -0.0194213 +0.0138178 0.034673 0.033937 +-0.0756035 0.0846721 0.0383975 +-0.0823671 0.0939609 0.0321712 +-0.0597053 0.0675469 -0.0111319 +-0.0911321 0.146088 0.0161475 +0.0350128 0.0797448 -0.0167143 +-0.0835371 0.151134 0.0310567 +-0.0125098 0.0759113 0.0569785 +-0.014877 0.12853 0.00563728 +-0.067594 0.162379 -0.0559888 +-0.0299722 0.0523401 -0.0183637 +-0.0175125 0.109971 0.0410978 +-0.0602175 0.0443014 -0.00489461 +0.047415 0.0539813 0.0314992 +-0.0695317 0.0366687 -0.00405392 +-0.0710533 0.04057 0.0057746 +-0.0594926 0.112518 0.0361699 +-0.0870454 0.128039 -0.000695727 +-0.0548606 0.0532734 -0.00439052 +0.0197584 0.121448 -0.00690816 +-0.0217284 0.0919768 0.0523353 +-0.0331407 0.073693 -0.0254949 +-0.0165233 0.0472885 0.0494939 +0.0430185 0.100102 0.00517011 +-0.0941673 0.124186 0.0242853 +0.0398988 0.106999 0.0131638 +-0.0388567 0.0985732 -0.0220835 +-0.013744 0.0347692 0.0478272 +0.0525444 0.0728335 0.00848027 +0.0340202 0.108707 0.0300072 +0.0135389 0.0341511 0.00148413 +-0.0255703 0.121939 -0.00698176 +-0.0627659 0.0795658 -0.0187488 +0.0159163 0.0366121 0.0434543 +-0.0677812 0.0823162 -0.0178553 +-0.00231448 0.129778 0.000344647 +-0.0224096 0.15809 -0.00961754 +-0.0369427 0.15804 0.00437449 +-0.0557441 0.0768187 -0.0193441 +-0.0661875 0.165349 -0.0586121 +-0.0764308 0.11585 0.051182 +0.00923994 0.0795457 -0.0327494 +-0.0141356 0.103403 -0.0235224 +-0.0725643 0.165173 -0.0170441 +-0.0708131 0.0922561 -0.0160967 +-0.052837 0.143168 0.022419 +-0.0289488 0.0487095 0.0453204 +-0.033511 0.104273 0.0404948 +0.0173468 0.0552065 -0.0282783 +-0.0643722 0.0392301 0.0399397 +0.0154605 0.100515 0.0471558 +-0.0389991 0.0361252 0.0429011 +-0.0912831 0.133698 0.0142161 +-0.042206 0.166657 -0.0103803 +-0.0829702 0.111001 0.0428895 +-0.0244677 0.122018 -0.00707965 +-0.00847955 0.107265 0.0437628 +-0.0410173 0.12678 -0.00403845 +-0.00247117 0.091392 -0.0349524 +-0.0733228 0.17276 -0.036126 +-0.0584972 0.102936 0.0420973 +-0.0275816 0.0549129 -0.0253866 +-0.0567567 0.0416998 -0.00856929 +0.00796329 0.0376774 0.0282412 +-0.0764966 0.130271 0.0529935 +-0.0385029 0.0346069 0.040918 +-0.0178242 0.0882801 -0.0380186 +-0.0592916 0.0381211 0.04617 +-0.0507734 0.0826521 -0.0214824 +-0.011501 0.0787467 0.0576654 +0.0135076 0.115425 0.0371825 +-0.0649944 0.132589 -0.00831046 +0.00449953 0.0474774 0.0501288 +-0.0183564 0.0639745 0.0512546 +-0.0454992 0.0425256 0.0437126 +0.00186325 0.0380873 -0.0138264 +0.0213321 0.100802 0.0450693 +-0.0855641 0.121149 -0.00272592 +-0.0898794 0.136494 0.0232114 +-0.0498262 0.0941747 -0.0218116 +0.0413792 0.0533854 -0.00680998 +-0.0912918 0.11477 0.0353243 +0.0585317 0.0565811 0.0212119 +0.000449556 0.130948 0.00412356 +-0.0343831 0.0766477 -0.0234928 +-0.0394659 0.108422 0.0377073 +-0.0477552 0.161949 -0.00697323 +-0.0278288 0.122593 -0.00568164 +-0.0563034 0.124125 0.0396482 +-0.0656415 0.129793 0.0454963 +0.0484031 0.0553841 0.03118 +-0.0455014 0.116621 0.0320048 +-0.0728613 0.102198 -0.0128504 +-0.0867252 0.0994863 0.00342747 +-0.00226785 0.0370021 0.0122687 +-0.0557143 0.0709328 -0.0156898 +-0.0610115 0.132585 -0.00747053 +0.00217526 0.0894962 -0.0338845 +-0.012585 0.0933765 -0.0350613 +-0.0553875 0.143884 0.0305002 +-0.0920989 0.117453 0.031314 +-0.0616144 0.155309 -0.0245851 +0.0502575 0.0602229 -0.00418894 +-0.0735402 0.0708078 0.0302704 +0.00614005 0.103026 -0.0213684 +-0.00271026 0.0669475 -0.0345168 +-0.049518 0.0344739 0.029929 +-0.0525731 0.128311 0.0345149 +-0.0605331 0.151186 -0.000375192 +-0.0866695 0.135213 0.0450386 +-0.0515626 0.0460585 0.0186779 +-0.00891802 0.0982381 -0.0280905 +-0.0170028 0.0977503 -0.0256286 +-0.0541413 0.128093 -0.005327 +-0.0234618 0.0385102 -0.00806272 +-0.0234875 0.125296 0.0010065 +0.0238248 0.0404881 0.03829 +-0.0564079 0.0334582 -0.0027528 +-0.0667678 0.0695012 0.0345692 +-0.00845839 0.0346349 0.045549 +-0.0748544 0.15611 0.0141114 +-0.0718277 0.141507 -0.00801564 +-0.0263582 0.120444 -0.00943021 +-0.0384861 0.0847024 0.0437961 +0.0154742 0.126309 -0.00212525 +-0.0329093 0.0461288 0.0451027 +-0.00179731 0.0390446 -0.00419837 +-0.0830843 0.0843065 -0.0045636 +-0.00849798 0.051815 0.0518583 +0.0211703 0.0458979 -0.0197309 +0.0250466 0.0534973 0.0413033 +-0.00301309 0.0994095 -0.0252863 +-0.0286636 0.0662687 -0.0294695 +-0.0275164 0.0588544 0.0372755 +0.021248 0.0707121 -0.0275992 +0.0118973 0.0699023 0.0540919 +-0.0850671 0.0831487 0.00248224 +0.0112963 0.123527 -0.00913288 +-0.0471043 0.0355495 0.00808039 +-0.0305886 0.0341169 0.0127308 +0.0232695 0.0795597 0.0495474 +-0.0781795 0.165241 -0.0349583 +-0.00548333 0.122374 0.0356916 +0.02636 0.0531741 -0.0208871 +-0.0117787 0.0784571 -0.0380559 +-0.0374622 0.0945463 0.043653 +0.0298506 0.0915959 0.0433109 +-0.063716 0.150986 -0.0306408 +-0.0915859 0.128175 0.00825933 +0.0456498 0.0806034 0.02116 +-0.0483119 0.0614742 0.035964 +0.0375235 0.0968947 -0.00979522 +-0.0923144 0.132364 0.0182222 +0.0175115 0.118187 0.0352964 +-0.027798 0.0824702 -0.0362167 +-0.0679219 0.123838 -0.00890383 +-0.0136906 0.0585033 -0.0353384 +-0.0560167 0.0334996 0.00451355 +-0.00170896 0.0655406 -0.0343993 +-0.0134843 0.053101 0.0504987 +-0.0675811 0.143978 0.0427672 +-0.0395371 0.165252 0.00310729 +-0.00177026 0.0987839 -0.0266092 +0.0449905 0.0917771 0.0161555 +-0.0142754 0.0385008 0.0265607 +-0.024936 0.0546494 -0.0284077 +-0.0737754 0.0849525 -0.0153987 +-0.00225491 0.0393816 0.0354457 +0.00953649 0.101759 0.0470503 +-0.030493 0.0731979 0.0402297 +0.0418277 0.0395362 0.0134182 +-0.0622707 0.058834 0.014793 +-0.0042883 0.0999626 -0.0238822 +-0.0511241 0.157581 -0.00475152 +-0.0110467 0.0382737 0.0183997 +-0.0111844 0.110115 -0.0206413 +-0.0906536 0.150215 0.0201223 +-0.0636975 0.0593607 0.0104272 +-0.00965605 0.0527028 -0.0331963 +0.011809 0.0846857 0.0540696 +-0.0439904 0.115156 -0.0158426 +0.00534103 0.0581999 -0.0308279 +-0.00449084 0.119679 0.0378771 +0.00251006 0.102973 0.0437486 +-0.0256326 0.0383152 0.00270994 +0.0101829 0.0893384 -0.0312282 +0.0359735 0.108741 0.0274101 +0.000505152 0.0675448 0.0563482 +-0.0431097 0.0335646 0.0052718 +-0.0748156 0.16245 -0.0339456 +-0.0890383 0.09964 0.0104144 +0.0425362 0.0972508 -0.000830625 +-0.0136711 0.162609 -0.0156561 +0.0241599 0.0418198 -0.00678118 +-0.0181519 0.16827 -0.0202389 +-0.0404977 0.0986657 0.0417206 +-0.0809707 0.15134 0.0022444 +0.0151979 0.0420601 0.0445385 +-0.00221102 0.0959857 -0.0316631 +-0.0329609 0.0709036 -0.0224656 +-0.079699 0.101798 -0.00757602 +-0.0725189 0.144585 -0.0159026 +-0.0466234 0.165492 -0.0068396 +0.0185106 0.12405 -0.00369129 +-0.014344 0.183095 -0.0226028 +-0.0788576 0.105851 -0.00657974 +-0.0240104 0.109837 -0.0203148 +0.00980942 0.110782 -0.0193656 +0.0108601 0.117776 0.0369396 +0.0193075 0.0536075 0.0470681 +-0.0925525 0.131032 0.0242364 +0.00749212 0.131495 0.0152913 +0.00495998 0.131626 0.0157979 +-0.00415159 0.0385426 0.00685716 +-0.0241881 0.038442 -0.0062907 +-0.0114972 0.0870124 0.0568248 +0.0383205 0.0589284 -0.00670105 +-0.050793 0.124044 0.0335488 +0.0216558 0.0436146 0.0415846 +-0.0488766 0.0663121 0.037594 +-0.0460367 0.115268 -0.015925 +0.0354061 0.0981387 0.0355669 +-0.0414966 0.064844 0.0412967 +-0.0492702 0.0334521 0.00412227 +-0.0788564 0.173596 -0.0449928 +-0.0720001 0.0374977 0.00101403 +-0.0745188 0.135846 0.0503978 +-0.0705133 0.0930254 0.0420143 +0.0544062 0.0520207 0.00120422 +-0.016347 0.159993 -0.0102438 +0.00949781 0.0440631 0.0448456 +-0.0123976 0.0991026 0.0482068 +-0.00535711 0.0347531 0.0461025 +0.026456 0.0929171 0.0454329 +0.0245089 0.042142 0.038636 +0.043716 0.0750115 0.0261739 +-0.0839359 0.102045 -0.00261805 +-0.0806754 0.155074 0.0150117 +-0.0689 0.172262 -0.0550342 +-0.0523543 0.073291 0.0414729 +-0.0301406 0.0636155 -0.0234264 +0.0407753 0.0452541 0.0299878 +0.00638455 0.0464233 -0.0264515 +-0.0755977 0.151334 -0.0218791 +-0.00594273 0.0383379 0.0139478 +-0.0600908 0.115373 0.0375616 +-0.0424965 0.0733822 0.0425454 +-0.00260003 0.0405608 -0.0253579 +0.00350637 0.0702767 0.0558823 +-0.0897267 0.135137 0.0262095 +-0.0591547 0.117476 -0.0120923 +-0.024542 0.0428919 0.0537128 +-0.0054972 0.0576157 0.054162 +-0.0397846 0.0841362 -0.0215764 +0.0415613 0.0751972 0.0301802 +-0.0631728 0.0596464 0.0174802 +0.0423363 0.101455 0.00317956 +-0.0533301 0.1416 0.0264013 +-0.0464855 0.0931347 0.0435353 +-0.0629725 0.150532 -0.00369044 +-0.0853889 0.108959 0.00634578 +-0.0909761 0.118636 0.00631645 +-0.0384966 0.101445 0.0410637 +0.0194941 0.107309 0.0406484 +0.0396169 0.0843072 -0.0127653 +-0.0223745 0.0566587 0.0441983 +0.0607493 0.059571 0.0121639 +-0.0844811 0.123027 0.0489478 +-0.0570341 0.144219 -0.00185162 +-0.0723674 0.177806 -0.0472523 +-0.0466801 0.130916 0.0233152 +-0.02246 0.183226 -0.0115124 +-0.0707386 0.165621 -0.0179174 +-0.0739884 0.1541 -0.0249038 +0.00161401 0.13159 0.0117114 +0.0295344 0.0524338 -0.0167463 +0.00137166 0.0465972 -0.0284573 +-0.0349979 0.152158 8.20736e-05 +-0.0459591 0.0424584 -0.0122548 +0.032247 0.0800194 -0.0194064 +-0.0215329 0.0768164 0.0540336 +0.0182351 0.12763 0.00640475 +0.0169629 0.0348939 0.0289563 +0.0193977 0.0490363 -0.0230642 +-0.0596322 0.0604401 0.0228281 +0.0145003 0.108488 0.0407955 +-0.0720741 0.0646161 0.00403373 +-0.0712116 0.15818 -0.0429219 +-0.0175993 0.15966 -0.00802789 +-0.0759222 0.159085 -0.0100036 +-0.0384682 0.15361 0.00387723 +-0.0725333 0.0379686 0.00575754 +0.0455601 0.0904134 0.011166 +0.0375907 0.0937201 -0.0111657 +0.00483671 0.039382 0.0314929 +-0.026559 0.0377408 0.0211248 +0.0385027 0.0454964 0.0307784 +-0.0564952 0.047766 0.0395183 +-0.0198831 0.107284 -0.0222237 +-0.0779551 0.163899 -0.0249456 +-0.0563521 0.0342791 0.0304121 +-0.00751948 0.0746046 0.0579524 +-0.0827498 0.154172 0.0128373 +-0.00710449 0.125174 0.0317411 +-0.0367613 0.0798086 -0.0204262 +-0.036915 0.175546 -0.00898243 +-0.0705043 0.0887655 0.0418556 +-0.0522651 0.0335597 0.0034159 +-0.0677174 0.0409231 -0.00173026 +-0.0113677 0.180126 -0.0253581 +-0.0161521 0.03911 0.0518105 +-0.0690092 0.122845 0.052951 +0.00570986 0.0341754 0.0182505 +0.0184933 0.0865452 0.0498488 +6.3531e-05 0.129314 -0.00119744 +-0.0804587 0.135827 0.0500319 +-0.0754196 0.111293 0.0461553 +0.0424555 0.0902012 0.0271644 +-0.0928081 0.120209 0.0412843 +-0.0634884 0.0789934 0.0424288 +-0.0615251 0.0457206 0.0316818 +-0.0115387 0.0458293 0.048671 +-0.066289 0.0747237 0.0389788 +-0.0173046 0.166847 -0.0129407 +0.0331853 0.116604 0.00769666 +0.0445518 0.069148 0.0246508 +-0.091691 0.12831 0.0342454 +0.0434619 0.0930961 0.0241585 +-0.0678925 0.0435809 0.00801004 +0.0234224 0.0519071 -0.0231048 +-0.0208141 0.0595795 0.0467936 +-0.087519 0.112 0.0410625 +-0.0213082 0.126358 0.00326486 +-0.0606822 0.0362429 0.0450162 +-0.0576914 0.0693962 -0.0144511 +-0.0769716 0.13837 -0.00578148 +-0.0653565 0.1551 0.00564588 +0.0264433 0.0485879 -0.0182655 +0.039746 0.101828 -0.00373788 +-0.0610724 0.144529 -0.00434459 +-0.0662237 0.145026 -0.0176812 +-0.0283728 0.156641 -0.000811787 +-0.00971651 0.0348541 0.0433186 +-0.00481466 0.0868424 -0.0368113 +-0.031088 0.0335574 -0.0273919 +-0.0544366 0.120435 -0.011246 +0.00248882 0.121002 0.0363406 +-0.00349433 0.0911707 0.0563818 +-0.0931447 0.118854 0.0382959 +0.0254683 0.121415 0.0262007 +-0.0467966 0.0336683 0.000813328 +0.0319522 0.103353 -0.0134365 +-0.0633409 0.155276 -0.011594 +-0.0720139 0.180999 -0.0528377 +-0.0164541 0.0630817 0.0527623 +0.016475 0.0352036 0.002978 +-0.00226088 0.124171 0.0334893 +0.0391263 0.0631992 -0.00875738 +-0.0818614 0.114723 -0.0022038 +-0.0930555 0.120208 0.0402916 +-0.0904236 0.116034 0.0273085 +-0.0705028 0.159578 -0.0459334 +-0.0862816 0.117641 0.0480424 +0.0531688 0.0733724 0.0176223 +-0.0578751 0.134121 -0.00585274 +0.0423147 0.091604 0.0271557 +0.0101515 0.071231 0.055077 +-0.0435318 0.087421 0.0430041 +-0.0560394 0.131064 -0.00575471 +0.00125071 0.0712122 -0.0347068 +-0.0348542 0.165303 -0.00316457 +-0.0860328 0.0912972 0.00145067 +-0.00116523 0.0371346 0.0178171 +-0.0637756 0.0795327 -0.0183843 +0.00482779 0.0366504 -0.0137865 +0.0435599 0.0987371 0.0131605 +0.00150087 0.101618 0.0443156 +0.0314312 0.0625198 -0.0186445 +-0.0672777 0.169987 -0.0338702 +-0.0903951 0.118903 0.0450094 +-0.0501563 0.11976 0.0326732 +-0.0750921 0.156856 -0.022942 +-0.0275197 0.109846 0.0382427 +-0.0535612 0.0416919 -0.00977582 +0.0556505 0.0677792 0.00213147 +-0.0685182 0.0368214 -0.0053939 +-0.0780099 0.114072 0.0486721 +-0.0248787 0.0796614 0.0530244 +-0.0638477 0.164736 -0.0283363 +0.0142201 0.0793919 -0.0305544 +0.00713749 0.130032 0.0237524 +-0.0187348 0.175696 -0.0167204 +-0.00682337 0.088234 -0.0365489 +-0.0217663 0.11209 -0.0186927 +-0.0171714 0.0432613 0.0521182 +0.00513012 0.0373402 0.0458408 +0.0461568 0.0626078 -0.00274862 +-0.0412659 0.160879 0.0033623 +-0.0853172 0.110382 0.0233555 +-0.0158006 0.108342 -0.0207487 +0.00813236 0.110171 -0.0197068 +0.0265802 0.0345508 0.0130494 +-0.0660018 0.133981 0.0432166 +0.041807 0.0885902 0.0288907 +-0.024509 0.109889 0.0396002 +0.0354948 0.10491 -0.00909103 +-0.00850916 0.0688709 0.0557558 +-0.054442 0.0373135 0.0469328 +-0.010539 0.0390893 0.0340058 +-0.0858022 0.150106 0.00719342 +-0.0451719 0.0347129 0.0411467 +-0.00510128 0.0385919 0.0229448 +-0.0521978 0.0336397 0.008764 +-0.0162925 0.180099 -0.0261659 +-0.0902934 0.147439 0.0121579 +-0.0793826 0.0705862 0.00854889 +0.0209269 0.0658956 0.0477693 +-0.0116051 0.171103 -0.0260001 +-0.0635102 0.151152 0.0361873 +-0.0865918 0.127084 0.0480364 +-0.0756208 0.166729 -0.0233779 +-0.0507818 0.0840955 -0.0217037 +-0.0623945 0.164686 -0.0405941 +0.0109143 0.034258 -0.00287102 +-0.0326136 0.0384639 -0.0154224 +-0.0883155 0.139178 0.0394996 +-0.0317158 0.0383538 -0.00403424 +-0.00682874 0.0896331 -0.0361816 +-0.060744 0.0766988 -0.0182193 +-0.00743574 0.129906 0.00405669 +-0.0792494 0.0723341 0.0207326 +-0.036173 0.152719 -0.00677506 +-0.0305128 0.10708 0.0396423 +-0.0435905 0.0505542 -0.0107756 +-0.0204554 0.0347978 0.0481157 +-0.0591045 0.0344689 0.0400978 +-0.0840365 0.147342 0.0364323 +0.00340018 0.0348289 -0.0229504 +-0.0693319 0.141141 0.045512 +-0.0561609 0.0344771 0.0355158 +0.00119588 0.0881146 -0.0344258 +0.0583564 0.0538008 0.0181861 +0.0342539 0.0387023 0.0236157 +-0.0264982 0.125984 0.010106 +-0.0611832 0.146298 -0.00395593 +-0.0910251 0.124245 0.0440568 +-0.089862 0.115281 0.0432597 +0.0247433 0.124313 0.0130924 +-0.000820873 0.128641 -0.00248283 +-0.0554557 0.0533368 -0.00338183 +-0.0464641 0.122081 0.0270508 +-0.0451868 0.126658 0.0224837 +0.00145793 0.0977369 0.0519067 +0.0405445 0.0610221 0.0298369 +-0.0744952 0.0941746 0.0398302 +-0.0351234 0.033632 -0.0282515 +-0.0839267 0.145982 0.00417548 +-0.0224934 0.0435545 0.0535652 +0.0159352 0.127804 0.0226817 +-0.0572144 0.154757 0.0232881 +-0.0498753 0.0336124 0.000239655 +-0.0191672 0.0596981 0.049368 +-0.0242921 0.0918773 0.0492675 +-0.0523718 0.133555 -0.00317026 +-0.0557218 0.0723836 -0.0166307 +-0.00457986 0.0361758 -0.0248798 +-0.0737533 0.0901294 0.040627 +-0.00549531 0.10728 0.0439307 +-0.0181568 0.165005 -0.0179156 +-0.0554997 0.108443 0.0389722 +-0.0144882 0.101623 0.0437286 +0.0215585 0.0387445 -0.00669407 +-0.0752039 0.0696978 0.0256249 +-0.0569183 0.115707 -0.0143002 +-0.0731283 0.155734 0.00889607 +0.0347498 0.081125 -0.0176886 +0.00113903 0.131571 0.0129682 +-0.0279379 0.155215 -0.0039665 +0.0438288 0.0860483 -0.00379124 +-0.0202818 0.0386671 -0.01315 +-0.0639713 0.0651159 0.0301523 +-0.0729034 0.123797 -0.00826534 +-0.00948854 0.0965445 0.0534324 +-0.0616146 0.158432 -0.0255892 +0.0348698 0.112104 0.0254475 +0.0462561 0.0792459 0.0151754 +0.0132092 0.0348336 0.0300558 +-0.0650018 0.0435996 0.0108034 +-0.0629926 0.156114 0.0183129 +0.0432806 0.100121 0.0101615 +-0.0634166 0.118511 0.0453283 +-0.0718747 0.151003 0.0373736 +-0.0693203 0.155248 -0.0509683 +-0.058528 0.0400924 -0.008802 +0.0150592 0.0590177 0.0497649 +-0.0136861 0.0570325 -0.0345667 +-0.02332 0.0391695 0.0384733 +0.0410592 0.0985428 -0.00379645 +-0.042915 0.0436274 -0.0183221 +-0.0324875 0.068969 0.0402984 +-0.0927384 0.122733 0.00927055 +-0.0697859 0.156365 0.01735 +-0.0525617 0.0403541 -0.0109145 +-0.0163792 0.186908 -0.0208435 +0.00555045 0.034504 0.00513967 +0.0259201 0.0406241 0.0333279 +0.0340795 0.103399 0.0336714 +-0.0295185 0.0579228 -0.0214101 +0.0443631 0.0475049 -0.00446946 +0.00261537 0.0341134 0.0122343 +-0.0104909 0.104437 0.0435533 +0.0240885 0.124582 0.018553 +-0.084606 0.0993653 -0.00159598 +0.0315994 0.0505647 0.0349136 +-0.0887091 0.0983318 0.0213821 +-0.0109917 0.177231 -0.0295208 +-0.00927372 0.0384768 0.00588152 +-0.0731505 0.0794744 -0.0135813 +0.0377774 0.0672774 -0.012792 +-0.0257539 0.157476 -0.0102144 +-0.0524923 0.0340498 0.0261507 +0.0359032 0.0905437 -0.0158269 +-0.0358241 0.0900699 -0.0240653 +-0.0507764 0.0715485 0.0397729 +-0.0857724 0.0872268 -0.000524277 +0.0122145 0.0850407 -0.0307351 +-0.0818191 0.154205 0.0234297 +0.0239009 0.12202 -0.0014718 +0.0509663 0.0446851 0.0122122 +0.0405026 0.0469928 0.0315524 +0.00123226 0.0769082 -0.0355253 +0.0395203 0.0569025 0.0311403 +-0.0861982 0.144641 0.0372484 +-0.0218898 0.0382146 0.0234539 +0.0278568 0.0643129 -0.0209613 +-0.06664 0.0601639 0.0127094 +-0.0682452 0.17678 -0.058273 +-0.0326534 0.0578275 -0.0120318 +0.0449519 0.0847263 0.00223902 +-0.0243874 0.0379977 0.0213348 +-0.0375049 0.0648832 0.0416292 +-0.049486 0.0531643 0.034537 +-0.00680823 0.0840973 -0.0379387 +-0.00662043 0.0383357 0.0156226 +0.0246827 0.0347978 0.0179097 +0.052528 0.0664738 0.0271694 +-0.017323 0.112508 -0.01916 +-0.0589359 0.0481542 0.00467247 +0.0560814 0.0704234 0.0216351 +0.0445162 0.087501 -0.00181141 +0.0204668 0.0400207 -0.013702 +-0.0828557 0.0979824 0.0311146 +0.0393677 0.0547517 -0.00623241 +-0.0301563 0.0382285 0.0524978 +-0.0740972 0.155492 -0.0239137 +-0.0266047 0.0397022 -0.0293069 +0.0044664 0.0344032 0.010526 +-0.0644057 0.16752 -0.0356951 +-0.085796 0.123875 -0.00272102 +-0.0251727 0.175641 -0.0195733 +-0.0147266 0.0922559 -0.0359307 +0.0166529 0.120978 0.0330533 +-0.0652865 0.1555 -0.0467797 +-0.0622893 0.15065 -0.0135783 +-0.0173344 0.128368 0.0119773 +-0.044366 0.0366412 -0.0232589 +-0.0913152 0.114759 0.0363194 +-0.0647364 0.118589 0.0486106 +0.011956 0.0976358 -0.0233787 +-0.0378922 0.04725 -0.0183117 +-0.079848 0.116269 0.0487575 +0.0431642 0.0987038 0.0171581 +-0.0334777 0.0546734 0.0376709 +-0.0677151 0.171772 -0.0397619 +-0.0124935 0.123722 0.0323282 +-0.00945147 0.0352364 0.0483453 +-0.0729035 0.125275 -0.00849683 +-0.0837744 0.107497 0.00138169 +-0.0529962 0.0461208 0.0157076 +-0.0677529 0.141137 0.0442717 +-0.0840303 0.151908 0.0287412 +-0.0636039 0.0445634 0.0326846 +0.0192911 0.109605 -0.016128 +-0.0838969 0.104764 -0.000610535 +-0.0887185 0.143427 0.0331607 +-0.0929968 0.130998 0.0182299 +-0.0543463 0.160987 0.00512087 +-0.0909281 0.132287 0.0082314 +-0.0354987 0.113848 0.0338946 +-0.0465077 0.088954 0.0443573 +0.0301352 0.0955658 0.0419698 +-0.0199202 0.0381456 0.0185107 +-0.0186134 0.161522 -0.0143726 +-0.0646921 0.0617226 0.0224003 +0.0222832 0.066418 -0.0268569 +-0.0661617 0.0353568 0.0288449 +0.0192795 0.122165 0.0310901 +-0.00560235 0.0406015 -0.0258376 +-0.0404738 0.108409 0.038128 +0.0420248 0.0710795 0.0289899 +0.0450277 0.0945898 0.0071675 +-0.0490784 0.153156 -0.00527602 +-0.00149713 0.0689596 0.0566805 +-0.0709057 0.106531 -0.0119068 +-0.0626824 0.0436041 -0.00418427 +-0.066536 0.166455 -0.0250024 +-0.0218698 0.104438 -0.0229686 +-0.0731886 0.149857 -0.036868 +-0.0122347 0.0392642 0.0504717 +-0.0935435 0.118764 0.0233045 +-0.0797382 0.10948 0.0394939 +-0.0892801 0.091541 0.0104497 +-0.0547119 0.146209 0.0284156 +-0.00241231 0.037367 0.0100902 +0.000818555 0.130756 0.00282721 +0.04586 0.0820013 0.00419826 +-0.0250963 0.0348756 0.0487637 +-0.0673565 0.112647 0.0446949 +-0.0634506 0.15272 2.24523e-05 +-0.0706828 0.180611 -0.0569213 +-0.0205931 0.163965 -0.00888333 +0.0115331 0.101889 -0.0218781 +-0.0664983 0.102849 0.0407048 +0.0185027 0.118159 0.035136 +0.0458454 0.0834099 0.00517797 +-0.00887527 0.109466 -0.0219533 +-0.0858669 0.119072 -0.00140229 +-0.0102872 0.0344076 -0.0184603 +-0.0211482 0.169745 -0.0200914 +-0.00849115 0.111421 0.0423213 +-0.0613599 0.128292 0.04114 +-0.0076798 0.0569676 -0.0334142 +-0.0710297 0.16381 -0.0459687 +-0.0454992 0.112558 0.0357052 +-0.0343115 0.126654 0.00282732 +0.0360267 0.110062 0.0258818 +0.0368044 0.0942002 -0.0116901 +-0.0421812 0.123012 0.0251172 +-0.066012 0.139954 -0.00779963 +0.00198723 0.123051 -0.0105036 +0.0172553 0.072257 -0.0294021 +-0.013113 0.184484 -0.0260544 +-0.072893 0.152634 -0.0368963 +-0.0938278 0.128299 0.0222532 +-0.0675171 0.0409229 0.0105489 +-0.0735479 0.162209 -0.012171 +-0.0517008 0.0626767 0.0322349 +-0.0433082 0.037957 -0.0253239 +-0.0516781 0.0345962 0.0381142 +-0.0046354 0.0467251 -0.0296701 +-0.0777504 0.112676 -0.00382147 +-0.0281162 0.181397 -0.0109687 +-0.047699 0.144615 0.00435323 +-0.0663959 0.148276 0.0393784 +-0.0249816 0.15956 -0.0126947 +-0.00758477 0.0968518 -0.0305822 +-0.019536 0.116371 -0.0152209 +-0.0298632 0.102958 -0.0228236 +-0.0224181 0.05387 0.0440179 +-0.0625128 0.145366 0.0377954 +-0.0843383 0.133967 0.0484219 +-0.00452146 0.0443187 0.0472734 +0.000177098 0.0839833 -0.0361114 +0.0207016 0.113271 -0.0140876 +-0.065484 0.0847424 0.0442074 +-0.0201913 0.175663 -0.0226485 +-0.0364476 0.166788 -0.00019754 +-0.0206091 0.162049 -0.0149623 +0.0350254 0.0700182 0.0383083 +-0.0455491 0.131451 0.0178282 +0.00819795 0.130005 0.00128654 +-0.0353536 0.12061 0.029103 +-0.0271732 0.169704 -0.0183584 +-0.0657382 0.0436129 0.0101245 +-0.0722291 0.166627 -0.044985 +0.0309191 0.0539829 -0.0147501 +-0.0308747 0.056662 -0.0163864 +-0.0867734 0.123909 -0.00174219 +-0.0279078 0.0347965 0.0447705 +0.0191594 0.100268 -0.0222959 +-0.0154293 0.0382918 0.0211029 +-0.0578159 0.0636603 0.0309898 +-0.024177 0.172689 -0.0201134 +-0.0669849 0.0359436 0.0326963 +-0.0879792 0.086094 0.00648058 +-0.0181742 0.169737 -0.0210312 +-0.0170499 0.122405 0.0312344 +0.00906582 0.123154 0.0343752 +-0.034503 0.0874637 0.0428605 +0.0391693 0.108394 0.0111647 +-0.0917004 0.143358 0.0201656 +0.027747 0.0902677 -0.021551 +0.0430843 0.0496743 0.0322331 +-0.0791989 0.150078 -0.000876106 +-0.0259631 0.177171 -0.00957335 +-0.0395279 0.079033 0.0429651 +0.0302372 0.118499 0.00231637 +0.0449793 0.061326 -0.0034541 +-0.0376334 0.0548474 -0.0107543 +-0.0274342 0.111364 -0.0178958 +-0.0315627 0.048073 -0.0232988 +-0.018823 0.121694 -0.0088173 +0.00895989 0.0979651 -0.0237371 +-0.0254423 0.0473682 0.0503166 +-0.046654 0.0606571 -0.0123502 +0.0606526 0.0595573 0.0131644 +-0.0873547 0.094105 0.00537923 +-0.0202891 0.184471 -0.0210772 +-0.093713 0.126863 0.0152623 +0.00938205 0.0449001 -0.0251557 +-0.0903092 0.140666 0.025165 +-0.0676501 0.0667159 0.0297862 +-0.0164899 0.0602176 0.0520938 +0.019355 0.0565693 -0.0275356 +0.0104604 0.0340987 0.00091581 +-0.0785409 0.166665 -0.0309637 +-0.018017 0.0390618 0.0526069 +0.0189962 0.123953 0.0281041 +-0.0814357 0.0734392 0.00553468 +-0.0223732 0.03801 0.0163235 +0.0110271 0.112101 -0.0187639 +0.0456518 0.0904151 0.00617296 +-0.0789509 0.170805 -0.0389931 +-0.0312407 0.0510927 0.0390643 +0.0359235 0.106756 -0.00582268 +-0.0815808 0.0950721 -0.00753639 +-0.0849546 0.0871617 -0.00253673 +-0.0265403 0.0592021 0.0383808 +0.0398305 0.0739567 0.0329917 +-0.00085919 0.0358547 0.00813469 +-0.0747624 0.0700921 -0.00148683 +0.0313786 0.113275 -0.00606229 +-0.0902327 0.124018 0.00527185 +0.0268091 0.0506065 0.038521 +-0.0727909 0.0685075 0.0271607 +-0.0578274 0.0666818 0.0354001 +-0.0738208 0.0921589 -0.0148323 +-0.0390631 0.127858 0.0143467 +-0.00922314 0.174168 -0.0285672 +-0.0035205 0.039017 -0.00265492 +0.0435098 0.098719 0.0141568 +-0.0493916 0.144765 0.00938332 +0.0189816 0.0563976 0.0484166 +-0.0731928 0.064943 0.0125198 +0.0453289 0.0833826 0.0211694 +-0.0211162 0.1638 -0.0163957 +-0.0306102 0.125527 0.00421635 +-0.0262987 0.113585 -0.0162365 +0.0252163 0.1238 0.0175509 +-0.0237403 0.0669252 -0.0352956 +-0.00549562 0.0472961 0.0485942 +0.0045023 0.122399 0.0348631 +-0.0701614 0.178224 -0.0493215 +-0.0173769 0.125333 -0.00267782 +-0.0470115 0.129603 0.00120357 +-0.0317094 0.0374952 0.0310681 +-0.0297217 0.0382812 -0.0035606 +-0.0415986 0.169934 0.00129157 +-0.064505 0.152553 -0.0362048 +-0.0667255 0.178008 -0.0524224 +-0.0236086 0.0335974 -0.0240827 +-0.0156885 0.0555599 -0.0339026 +0.0182783 0.0708328 -0.0291795 +0.0541184 0.0510309 0.0235647 +-0.0765193 0.119025 0.0524244 +-0.0118673 0.0339713 -0.0202424 +0.00548892 0.118228 0.0378342 +-0.067477 0.0336926 -0.00520632 +0.0168316 0.0926978 0.0490711 +0.0255432 0.0768418 0.0475089 +-0.0617634 0.0795901 -0.0189973 +-0.0156786 0.0526029 -0.032522 +0.000420458 0.036172 -0.0244623 +-0.0256593 0.0810401 0.0523557 +0.026836 0.0634537 -0.0220606 +-0.0621975 0.166246 -0.0505873 +0.0578529 0.0523616 0.0171842 +-0.0217254 0.126122 0.00269746 +0.0235742 0.124212 0.0226421 +-0.0578055 0.0883401 -0.0213124 +-0.0798409 0.103395 0.0321858 +-0.0123464 0.178658 -0.023274 +0.0212154 0.0476501 0.0409677 +-0.0342487 0.0752311 -0.0224883 +-0.0230529 0.0839079 0.0553134 +-0.0214993 0.112665 0.0388138 +-0.0327955 0.0873016 -0.0254019 +0.0258836 0.0605349 0.0443599 +-0.0096598 0.0907753 -0.0363722 +0.0450284 0.0875565 0.0211548 +0.0334239 0.0414863 -0.00351395 +-0.0488087 0.138617 0.0133952 +-0.0658054 0.0924099 -0.017991 +0.0104979 0.0896334 0.054299 +-0.0043048 0.123153 -0.010566 +-0.0174665 0.17272 -0.016673 +-0.0344763 0.0561322 0.0383021 +-0.0857072 0.152777 0.0118249 +-0.0575671 0.0494422 0.00671449 +-0.0430533 0.0345113 0.0330204 +-0.065164 0.147357 -0.0239331 +-0.0326268 0.0520227 -0.0107626 +-0.067905 0.106631 -0.013438 +-0.0258738 0.125824 0.0147443 +0.0544233 0.0635568 0.0276516 +-0.0872747 0.139127 0.00719289 +-0.0315055 0.109789 0.0377033 +-0.0763386 0.161799 -0.0152953 +0.0232414 0.0663429 -0.0257954 +0.0174948 0.109841 0.0394103 +-0.0507289 0.129704 0.0318965 +-0.0425042 0.0577064 0.0400486 +0.022545 0.0955327 0.0468247 +0.0403951 0.0475373 -0.00531603 +0.0183271 0.0475932 -0.02269 +-0.0572639 0.0601869 -0.00219809 +-0.0852337 0.104506 0.0248257 +-0.0933098 0.126856 0.0132534 +0.0352918 0.108619 -0.00504659 +-0.0628349 0.0939281 -0.0188357 +0.00277101 0.099815 0.0475918 +-0.0637196 0.147938 -0.020833 +-0.0636347 0.156368 -0.0124044 +-0.0882602 0.111934 0.0373837 +0.0451564 0.0931924 0.00517592 +-0.0883906 0.0874807 0.0144622 +-0.0179879 0.0654395 0.0522544 +-0.0334338 0.0382234 0.0500909 +-0.00283875 0.0389996 -0.00436591 +-0.0295052 0.11528 0.03366 +-0.00151332 0.104469 0.0441334 +0.0194927 0.0906432 0.0481529 +-0.0877693 0.113692 0.0289151 +-0.0661933 0.0335338 -0.00299624 +-0.0273899 0.0499801 0.045145 +-0.0338474 0.0972112 -0.023083 +-0.075849 0.149415 0.0390624 +0.0325609 0.114759 0.0260072 +-0.0821806 0.0776422 0.0235195 +-0.0759474 0.151351 -0.0188826 +0.013384 0.043414 -0.024368 +-0.0077421 0.0340597 -0.0195129 +-0.00965525 0.0511768 -0.0320162 +-0.0677487 0.111258 0.0407689 +-0.0214969 0.0461967 0.0522939 +-0.0466073 0.0518764 -0.00969859 +0.0357625 0.0364791 0.0131618 +-0.0124847 0.111379 0.041672 +-0.079194 0.0832222 0.0349745 +-0.0926331 0.130966 0.0142325 +0.00419789 0.123154 -0.0106599 +0.00969178 0.121836 0.0352946 +-0.0295306 0.123946 -0.00125424 +-0.0711733 0.128436 0.0516087 +-0.0585141 0.0386878 -0.00928985 +-0.0739244 0.0668664 0.00165643 +-0.0424856 0.0410553 0.0431368 +-0.0176939 0.162435 -0.0154936 +-0.00215916 0.0369163 -0.0154166 +0.0205271 0.126116 0.00440152 +0.000359464 0.0907103 -0.0342066 +0.038908 0.0631632 0.033303 +0.0223132 0.124739 0.023599 +-0.070737 0.159582 -0.0449318 +-0.0281334 0.155101 -0.00344078 +0.0323761 0.107397 0.032947 +0.0390072 0.0393837 0.00207442 +0.0420748 0.0457918 0.0297783 +-0.0187683 0.0699858 -0.0381989 +0.0176298 0.0382941 -0.0187111 +-0.0688111 0.0922897 -0.0164711 +0.0419266 0.101462 0.0171593 +0.00341059 0.0376223 -0.0244648 +0.0461634 0.0792418 0.0171768 +-0.0637535 0.0431846 0.0296789 +-0.0273632 0.0534705 -0.0254085 +-0.0394955 0.0562825 0.0399491 +0.00548498 0.0590856 0.0545593 +-0.0934182 0.124107 0.0122673 +0.0324897 0.100233 -0.014155 +-0.00952254 0.0688375 0.0554289 +0.0191204 0.042209 0.0431814 +0.0195848 0.035993 0.00660837 +-0.0748916 0.10354 -0.0108565 +-0.0685642 0.0406581 -0.00126009 +-0.0225344 0.118142 0.03379 +-0.013583 0.0386256 -0.002471 +-0.0898618 0.113382 0.0394321 +0.0601893 0.0595178 0.0171788 +-0.0630097 0.121328 0.0458592 +-0.0196415 0.0725672 0.0536854 +-0.0211896 0.172692 -0.021286 +0.024653 0.104647 -0.0168345 +-0.0795268 0.096746 0.0348816 +0.0485163 0.0672488 0.000612911 +0.0400064 0.0422019 -0.00166327 +-0.0197891 0.0785016 -0.0390423 +-0.0260568 0.0375908 -0.0291887 +-0.00717802 0.130589 0.0142265 +0.0156678 0.0346738 -0.0117297 +0.0424576 0.0845381 -0.00679736 +-0.0302701 0.0365155 -0.0302567 +-0.0274598 0.0863801 0.0483431 +-0.0831854 0.11075 0.0323354 +-0.0514986 0.109783 0.0378241 +-0.0183396 0.126605 0.021835 +-0.0497522 0.0716181 0.0399477 +0.0165016 0.116787 0.0362663 +-0.0670324 0.0672056 0.0312385 +0.0201473 0.0414664 -0.0187017 +0.0364932 0.0484054 0.0314672 +-0.0501327 0.159092 -0.00542351 +-0.0752763 0.0667216 0.0105318 +-0.0341695 0.0337715 0.0105094 +0.0137891 0.103175 -0.021246 +-0.073587 0.148629 -0.0261691 +-0.0169441 0.184483 -0.0249355 +-0.0097273 0.130072 0.0104159 +-0.00405402 0.0391419 -0.01222 +-0.0887371 0.0955614 0.00743378 +-0.0864769 0.0806081 0.0125015 +0.040053 0.107027 0.0101639 +-0.042812 0.14778 0.00347562 +0.0248383 0.0835695 -0.0246296 +0.0277899 0.116538 -0.00556904 +-0.0291577 0.0380555 0.005854 +-0.0525571 0.150877 0.0178 +-0.0639921 0.134062 -0.00777265 +-0.0838901 0.110998 0.0281595 +-0.0134922 0.107228 0.0429665 +-0.0586918 0.149676 0.0345486 +-0.0616651 0.119834 0.0424717 +0.0456475 0.0890064 0.00517807 +-0.0089791 0.0383636 0.0133044 +-0.0903646 0.135051 0.0122148 +0.0317594 0.0835691 0.0424885 +-0.0240368 0.11082 -0.0193477 +0.0271768 0.112761 0.0342135 +-0.0356473 0.116902 -0.0136714 +-0.0739197 0.151223 0.0366634 +0.0410535 0.0759945 -0.00777525 +-0.0734182 0.169757 -0.0275332 +-0.00232938 0.0359607 0.0474459 +-0.085737 0.110915 0.0387737 +-0.0775985 0.123137 0.0521223 +-0.0748309 0.100681 -0.0121692 +-0.0866976 0.109058 0.0133472 +-0.0701875 0.0395708 0.00901355 +-0.0306891 0.120328 -0.00923215 +-0.045477 0.1214 -0.012376 +-0.033489 0.172734 -0.00156283 +-0.0565822 0.0339881 0.0253464 +-0.0404955 0.0451407 0.0414639 +-0.0555537 0.0420256 -0.00889368 +-0.0598777 0.102599 -0.0186645 +0.0592051 0.0552531 0.0121703 +-0.0758111 0.0741872 -0.00760517 +-0.038197 0.0342285 0.0289964 +-0.00312706 0.0390512 0.0319597 +0.0476183 0.0426691 0.0171605 +-0.0306281 0.0831438 0.0423752 +-0.049274 0.1386 0.00640083 +-0.0210747 0.0753924 0.0536136 +-0.093596 0.126936 0.0252692 +-0.0629825 0.129686 -0.00825839 +0.00470729 0.128083 -0.0039713 +-0.0335515 0.0373466 -0.0164398 +0.0425502 0.0637218 0.0280932 +-0.0707401 0.13973 0.0469958 +-0.0644842 0.0804582 0.0430441 +-0.0618671 0.112377 0.0367302 +-0.0698247 0.169548 -0.0276555 +-0.0863191 0.0806082 0.0115067 +-0.0216814 0.0523409 -0.0297011 +0.0377238 0.110496 0.0121805 +-0.0689171 0.158096 -0.0529848 +-0.067181 0.156627 -0.0534662 +-0.0268045 0.0811284 -0.0369845 +-0.0546722 0.139567 0.0297056 +-0.0554146 0.0649279 0.0339175 +-0.0193967 0.186852 -0.0171886 +-0.0357817 0.0351096 0.0179926 +-0.0718839 0.173642 -0.0520314 +-0.0409497 0.0337305 -0.016439 +0.0396966 0.105593 0.0211678 +-0.0789279 0.0699144 0.0158521 +-0.0414163 0.0476371 -0.0122303 +-0.00671791 0.0642099 -0.0355692 +0.0547677 0.0509942 0.0227339 +-0.0686614 0.0735088 -0.0131618 +-0.0738123 0.0655371 0.0172042 +-0.0904479 0.129526 0.00625875 +0.0197334 0.044328 -0.0216983 +-0.0896348 0.140659 0.0301806 +-0.00748945 0.0870384 0.0571349 +0.0217161 0.119158 -0.00841047 +-0.0545346 0.125365 -0.00640975 +0.0368294 0.108237 -0.00182731 +-0.0672538 0.152901 0.0344187 +-0.0807043 0.0827741 -0.00656651 +-0.0305099 0.113915 0.0346878 +-0.0721764 0.154012 -0.0399025 +-0.045061 0.130334 0.0180279 +-0.00652053 0.0688834 0.0561767 +-0.0444953 0.0817848 0.0424707 +-0.0874489 0.105009 0.0173545 +-0.0175711 0.0387182 -0.00892429 +0.000506539 0.0883906 0.0565122 +-0.0265193 0.12549 0.0159805 +-0.0464789 0.0917181 0.0434263 +0.0455125 0.0918121 0.0101608 +-0.0834627 0.110719 0.0412267 +-0.057205 0.0480928 0.032667 +0.00517049 0.0350387 0.0228068 +0.0457999 0.0820138 0.0191697 +-0.0420324 0.171559 -0.00171063 +-0.0475118 0.128596 -0.00180437 +0.0204841 0.0948066 0.0474378 +-0.0719895 0.163815 -0.0429694 +-0.0644943 0.0861671 0.0446171 +0.00851416 0.06604 0.0550264 +-0.0670308 0.141141 0.0435296 +-0.0848818 0.142006 0.0416598 +-0.0384808 0.106985 0.038039 +0.0180116 0.0754634 0.0524537 +-0.0725251 0.155433 -0.0349062 +0.0182337 0.128007 0.0135344 +-0.0233093 0.162498 -0.00577898 +-0.0850563 0.112998 0.00231897 +-0.0823398 0.145942 0.00119384 +-0.0852211 0.103481 0.00138673 +-0.071875 0.136886 0.0488574 +-0.0794627 0.138625 0.0485832 +-0.0435009 0.117967 0.030956 +-0.038588 0.0341641 0.0271976 +-0.0408255 0.0914222 -0.0231618 +-0.0551021 0.154591 -0.0020359 +-0.0748456 0.159073 -0.00827714 +-0.0621666 0.152205 -0.0155784 +-0.0494972 0.0776899 0.0438666 +0.00751862 0.0799738 0.0554444 +0.00532494 0.0625045 -0.0319907 +0.00237701 0.131635 0.0162813 +-0.0546261 0.151324 0.0271982 +-0.0236176 0.123316 0.0244011 +0.00251869 0.05336 0.0534808 +0.0225511 0.0888829 0.0485585 +-0.0370273 0.174099 -0.0109221 +-0.090997 0.129691 0.0382289 +-0.0732672 0.148476 -0.0292583 +-0.053498 0.0465766 0.0420409 +-0.0330184 0.0474571 0.0438647 +-0.0246064 0.033636 -0.0243161 +-0.0234471 0.125053 0.0200484 +-0.0830784 0.138234 -0.000100609 +0.0406549 0.0820323 0.0324674 +-0.0842996 0.0965857 0.0297797 +-0.0527544 0.03448 0.0379838 +-0.0799451 0.15529 0.0167266 +-0.057093 0.0521243 0.00061739 +0.0154036 0.0477404 -0.0246897 +-0.060782 0.082481 -0.019648 +-0.0700267 0.166609 -0.0500213 +0.0451823 0.091796 0.014161 +0.0346837 0.106039 0.030986 +-0.0396713 0.0621627 -0.012718 +-0.05111 0.0375368 0.0465746 +-0.0688918 0.119449 -0.00874323 +0.000197079 0.035652 0.0464555 +-0.00149822 0.0661867 0.0567241 +0.00350858 0.074484 0.056374 +-0.0284992 0.0703316 0.0397848 +-0.0555164 0.0482866 0.0387265 +-0.0908309 0.136473 0.0182032 +-0.0634905 0.0861851 0.0447067 +-0.00918339 0.033864 -0.0215021 +-0.0748916 0.123775 -0.00787892 +-0.0270496 0.033483 -0.0265278 +0.00488911 0.035483 -0.0145807 +-0.0442085 0.165146 -0.00911238 +-0.0322103 0.0386054 -0.0136114 +0.0190336 0.11528 0.0364777 +-0.000494586 0.0897644 0.0562541 +-0.0350004 0.157209 -0.0112204 +-0.0635638 0.147341 -0.0176577 +-0.0902987 0.121315 0.00530766 +-0.0705068 0.102745 0.0389474 +-0.0662636 0.175335 -0.0598585 +-0.0239792 0.0680021 0.045464 +0.0413142 0.0637288 -0.00386959 +-0.051889 0.108419 -0.0189045 +-0.0477652 0.131125 0.00158524 +-0.0400469 0.169775 -0.0108504 +-0.0755266 0.109807 -0.00760163 +0.00107791 0.130709 0.0215491 +-0.0655994 0.0349763 0.0155159 +-0.0628742 0.161547 -0.05443 +0.0359645 0.0981106 0.0346243 +0.00934693 0.129002 0.0260013 +-0.0768843 0.109139 0.0404116 +-0.010503 0.0674297 0.0550101 +-0.028646 0.0535523 0.0364431 +-0.072824 0.0936306 -0.0150907 +0.028615 0.035804 0.0196241 +0.0282076 0.0706829 -0.0227535 +0.0596824 0.0622541 0.020173 +-0.0025152 0.0575969 0.0540026 +0.000110958 0.036978 0.020027 +-0.0273656 0.0360131 -0.0296152 +-0.0624735 0.0344952 0.0183787 +-0.0360892 0.159232 -0.0124312 +0.0418577 0.100066 0.0211691 +-0.063571 0.122754 0.0468224 +0.0523857 0.0624129 -0.0025136 +0.0383109 0.0632029 0.0342252 +-0.0144971 0.0786767 0.0566892 +-0.0928565 0.129591 0.0132418 +-0.0681034 0.152856 -0.0481556 +-0.0746787 0.169356 -0.0440586 +-0.0335137 0.107031 0.0389932 +0.0424926 0.0583469 0.0313486 +-0.0223256 0.0637459 0.0453694 +-0.0648797 0.106687 -0.0146649 +0.0250125 0.0632249 0.0448766 +-0.0624284 0.159959 -0.0405984 +0.00349445 0.12099 0.0360851 +0.022067 0.0981797 0.0461337 +-0.0734899 0.123206 0.0535424 +-0.0321688 0.171168 -0.015915 +-0.0848969 0.106313 0.0233612 +-0.067172 0.174543 -0.0467986 +0.0246727 0.0884534 -0.0236513 +-0.0504949 0.0477308 0.0397221 +-0.064202 0.155431 -0.0413859 +0.00347944 0.095162 0.0537659 +0.0105108 0.100431 0.0479236 +0.021311 0.123415 0.0275211 +0.0415141 0.104253 0.009162 +-0.0617635 0.0387159 0.0237173 +-0.0044982 0.0952431 0.0547633 +0.0398123 0.066053 -0.00878746 +-0.00271622 0.0627636 -0.0349069 +-0.00914442 0.0387021 0.000210725 +-0.0814422 0.106028 0.0294684 +-0.0136643 0.0922643 -0.0359313 +0.0420557 0.0676716 -0.00377172 +-0.0364793 0.0945677 0.0439429 +-0.05033 0.0517928 0.0340061 +-0.0470088 0.130577 0.00217989 +-0.0286777 0.158132 0.000508817 +0.0185266 0.0345532 0.000246197 +-0.0147199 0.184604 -0.0232088 +-0.0384921 0.111131 0.0361977 +-0.0384978 0.102835 0.0403416 +-0.0215751 0.0667511 0.0487462 +-0.0887264 0.0996152 0.00841821 +-0.060662 0.0644224 -0.00688354 +0.0397235 0.080129 -0.010751 +-0.0136601 0.0389486 0.0334846 +-0.0106876 0.129553 0.00573838 +0.00810435 0.0348429 0.0181346 +0.0256081 0.104449 -0.0166247 +-0.0682325 0.168499 -0.0270627 +-0.0474794 0.0917467 0.0438194 +0.00950115 0.119644 0.0365249 +0.0437324 0.0790794 0.0263023 +-0.0905234 0.132421 0.0302253 +-0.0748541 0.107208 0.0370405 +-0.0943565 0.12553 0.0182582 +-0.0131926 0.0378477 0.0507876 +-0.0570855 0.0480965 0.0356642 +-0.04493 0.0346468 0.0377647 +-0.0665925 0.064199 -0.00375071 +-0.0829976 0.133839 -0.00205551 +-0.0406365 0.0548831 -0.0112562 +-0.00950098 0.0884225 0.0571104 +0.0335068 0.0468989 0.0306812 +4.31947e-06 0.034593 -0.0165995 +-0.0725884 0.155473 0.0265843 +-0.0755167 0.0714511 -0.00453448 +-0.0669139 0.0704667 0.0354638 +-0.069981 0.180634 -0.0574865 +-0.0116389 0.034923 0.0481436 +-0.0307766 0.0720324 -0.0295197 +-0.0178239 0.107521 -0.0218927 +0.020822 0.043607 0.0421342 +-0.025466 0.0460651 0.0509844 +0.0349766 0.11396 0.0183585 +-0.0599273 0.122373 -0.00867944 +0.0365334 0.0980835 0.033685 +-0.0621481 0.159972 -0.0385982 +-0.0915531 0.115336 0.039285 +-0.0888763 0.0982745 0.00841224 +-0.00324635 0.130613 0.0199814 +-0.0668526 0.0914559 0.0435065 +0.0175786 0.0475536 0.0427473 +0.0318002 0.118052 0.00717688 +-0.0414667 0.104283 0.0404247 +0.0562407 0.0648113 0.00118357 +-0.0753758 0.170369 -0.0311391 +-0.0620405 0.138434 -0.00686017 +-0.00249822 0.0870283 0.0569791 +-0.0542914 0.129735 0.0355428 +-0.0274963 0.100194 0.0434874 +-0.00951883 0.17115 -0.0217635 +-0.0305995 0.121953 0.0248664 +-0.0770757 0.068957 0.00853894 +0.0135031 0.119752 -0.013055 +0.0413777 0.0491221 -0.00619394 +-0.0669027 0.0396709 0.012801 +-0.0249365 0.0607087 0.0409751 +-0.0124795 0.0517352 0.0508543 +-0.0304 0.0650386 -0.0254348 +-0.0267061 0.0765373 0.0464972 +0.0196875 0.0385058 -0.013693 +0.0518591 0.0461434 0.019211 +-0.0447475 0.146272 0.00240034 +-0.0336457 0.0562895 -0.0107616 +0.0237552 0.0887468 -0.0239425 +-0.000502572 0.0965565 0.053664 +-0.0664522 0.0376478 0.0363332 +-0.041205 0.169789 -0.00987939 +-0.0630084 0.142674 -0.00705706 +-0.0305333 0.178655 -0.00565353 +-0.0137626 0.0784616 -0.0384771 +-0.0616465 0.0397266 0.0174413 +0.00939844 0.0418898 -0.0239164 +0.0403895 0.0519763 -0.00684208 +0.00239172 0.0434053 -0.0248906 +-0.0663598 0.15609 0.0142173 +-0.0667166 0.136853 0.0439657 +-0.0132042 0.171245 -0.025107 +-0.0511148 0.117699 -0.0144446 +-0.0686887 0.0620968 0.00507892 +-0.066502 0.0889512 0.0442634 +-0.0531749 0.0487012 0.0129919 +-0.0464945 0.0532702 0.037612 +-0.0763048 0.0702707 0.00153293 +0.00237024 0.0481449 -0.0294793 +-0.0669085 0.108072 -0.0133167 +-0.0614834 0.166203 -0.0576271 +0.028089 0.0929174 0.0442737 +-0.0239187 0.036252 -0.0191133 +-0.0394562 0.0347283 0.0406132 +-0.0679286 0.17514 -0.0470724 +-0.0737519 0.14858 -0.0228576 +-0.0335079 0.105635 0.0395993 +-0.0780357 0.0769322 0.031104 +0.047273 0.0720618 0.00573289 +-0.0566027 0.0562228 -0.000407584 +-0.0336617 0.0592604 -0.0121578 +0.0390714 0.108406 0.0131668 +-0.067572 0.158668 -0.00806913 +-0.0668441 0.0995074 -0.0160123 +-0.0155786 0.0348181 -0.0259692 +0.0524799 0.0636428 -0.00173686 +-0.0666208 0.161046 -0.0135117 +0.012487 0.118181 0.036207 +0.00850767 0.067431 0.0550095 +-0.0568164 0.0333332 -0.00454462 +-0.00056724 0.0909565 -0.0345037 +0.0122553 0.0695892 -0.0315106 +-0.0747099 0.0713354 -0.00558545 +-0.0151964 0.178666 -0.0203777 +-0.0707468 0.161979 -0.010709 +-0.00364517 0.0496603 -0.0307711 +0.0292759 0.0787271 -0.0215887 +-0.0606931 0.0659255 -0.00858452 +-0.055281 0.0594285 0.0232183 +0.0168274 0.0658911 0.0506364 +-0.0286315 0.159193 -0.0128611 +-0.0753259 0.0689002 0.0227894 +-0.0278046 0.0364789 0.0536304 +-0.020238 0.0938075 -0.0335417 +-0.0787919 0.108745 0.0367247 +-0.0627356 0.150882 -0.0252578 +-0.0374903 0.111156 0.0359971 +0.0123741 0.0494269 -0.0274814 +-0.0550935 0.0685958 0.0378502 +0.0152655 0.0695272 -0.0306629 +0.0304209 0.0460912 -0.00653037 +-0.0896888 0.137919 0.0321971 +-0.076768 0.156222 -0.00903892 +-0.0177411 0.17422 -0.017052 +-0.0582856 0.0695544 0.0380966 +-0.0710157 0.179813 -0.0510815 +-0.0283604 0.112635 -0.0172343 +-0.0441537 0.0408799 -0.0213021 +0.0104769 0.0949778 0.0509942 +-0.00239285 0.100006 0.0487279 +0.0421962 0.0929549 -0.00479827 +0.0401191 0.0900359 0.0318057 +0.0226855 0.103953 -0.0180758 +-0.0705692 0.037778 -0.000833243 +0.0213756 0.0429924 -0.0177346 +0.0141656 0.0475343 0.0448184 +0.02539 0.0849287 0.0474039 +-0.0485578 0.0361757 -0.0124661 +0.0237226 0.0699627 0.0465409 +-0.062494 0.155703 0.00979223 +-0.0499478 0.135176 0.00116888 +-0.0731261 0.154051 -0.0329012 +-0.0565591 0.0344267 0.0337344 +-0.0757231 0.155771 0.0225635 +-0.081733 0.0783168 0.0273929 +-0.0465781 0.0504461 -0.00966731 +0.0370638 0.0376395 0.0160314 +0.0401736 0.0801429 -0.00978947 +-0.0295615 0.171229 -0.00778742 +-0.0625363 0.158377 -0.0386027 +-0.0482692 0.133969 0.0226705 +0.00454759 0.0341639 -0.0171912 +-0.0620171 0.153759 -0.016582 +-0.0878261 0.11219 0.0337097 +-0.05597 0.0519966 -0.00239063 +0.0400386 0.0871415 -0.0117889 +0.0205921 0.0807207 0.0509473 +-0.0296224 0.0352251 0.019146 +-0.0381589 0.163687 -0.0131595 +-0.0675595 0.163657 -0.0167503 +-0.0522361 0.15086 0.0163848 +0.0360023 0.103374 0.0311349 +0.0272712 0.0929162 0.0448522 +-0.0277389 0.0423333 0.0528015 +-0.0824451 0.140729 0.0449221 +-0.0329396 0.0386558 -0.0303928 +0.0296623 0.114075 -0.00693776 +-0.0221975 0.0652175 0.046591 +0.045212 0.0819736 0.0221688 +-0.0258761 0.0796032 0.0512286 +0.0272389 0.0873294 -0.0222582 +0.00242016 0.0361514 -0.024222 +-0.0615581 0.145382 0.0374116 +-0.0695688 0.160974 -0.049948 +-0.0858053 0.0953564 -0.000572964 +-0.0464927 0.165223 0.0045927 +-0.0624159 0.15064 -0.016574 +0.0473464 0.0561746 -0.0057008 +0.0237088 0.0942271 0.0467477 +-0.0494979 0.0762481 0.043343 +-0.078769 0.165248 -0.0339573 +-0.00950205 0.12806 0.0264334 +0.05377 0.0682444 0.00163269 +-0.0679209 0.163786 -0.054975 +0.0290078 0.087549 0.0438096 +-0.0840398 0.132376 -0.0018283 +-0.0306543 0.0650659 -0.0244333 +0.0322458 0.0355363 0.00770856 +0.00335212 0.131364 0.00663122 +-0.0154115 0.128891 0.0141212 +-0.0372876 0.0421099 0.0439093 +0.0308492 0.0931255 -0.0185705 +-0.029871 0.0459583 -0.0272702 +0.0300675 0.0822073 0.0435477 +0.000382137 0.128869 0.0270967 +-0.0174793 0.0730127 0.0550809 +-0.0387497 0.0782817 -0.0191475 +-0.0433943 0.0335852 -0.0186462 +0.0391881 0.0673984 -0.0107969 +-0.0280713 0.175691 -0.00734553 +0.0316149 0.0916151 0.0423373 +-0.0762132 0.0879097 -0.0135406 +-0.0316751 0.0665766 -0.0214412 +-0.00307655 0.0345443 -0.0171652 +-0.0426807 0.0636637 -0.0138633 +-0.0921228 0.126953 0.0372491 +-0.0235086 0.0347636 0.0474886 +-0.0506072 0.0546369 -0.00878713 +-0.0685971 0.162283 -0.0128033 +-0.0637348 0.156074 0.0136991 +0.0233928 0.0475951 -0.0196868 +-0.0519018 0.105587 -0.0193502 +-0.00551889 0.0746529 0.0585785 +0.000500504 0.0519731 0.0534094 +-0.0412672 0.0338015 -0.0128657 +-0.0819225 0.125087 -0.0048212 +0.00722702 0.0796252 -0.0338785 +-0.0893296 0.0956153 0.0124232 +-0.00167125 0.0554598 -0.0320096 +0.0267785 0.0402768 0.0313512 +-0.0867821 0.10632 0.010369 +-0.0451957 0.131364 0.0135329 +0.018149 0.0699846 0.0508404 +-0.0878008 0.119885 0.00028492 +-0.0612546 0.0341987 0.0206565 +0.0115009 0.111256 0.0392728 +0.0152633 0.0751002 -0.0297036 +-0.0351444 0.0865581 -0.0244792 +0.000649673 0.0963928 -0.0300705 +-0.0345272 0.121283 0.0279162 +0.0296818 0.0815643 -0.0205093 +-0.03348 0.115008 -0.0157024 +-0.0728312 0.136891 0.0492499 +-0.00265601 0.0540246 -0.0319128 +-0.0422272 0.127744 0.0161624 +-0.0494399 0.119744 0.0319359 +-0.0574019 0.116942 0.0379675 +-0.0468361 0.0970763 -0.0219471 +-0.0616292 0.146031 -0.00460349 +-0.0933662 0.126937 0.0262691 +-0.0228186 0.161021 -0.00330981 +-0.0635624 0.152855 0.034229 +-0.0625195 0.144437 -0.00658249 +-0.0839827 0.0830482 -0.0025149 +0.0144965 0.116791 0.0366152 +-0.0766305 0.155099 0.0076657 +-0.0365494 0.127902 0.0108341 +0.02042 0.126659 0.0186188 +-0.0470606 0.0628926 0.0375096 +-0.00665705 0.114661 -0.0174859 +0.0409886 0.104212 0.016155 +0.0264254 0.054947 0.041554 +-0.064618 0.0659249 -0.00682147 +0.0143052 0.127349 0.0263844 +-0.0254714 0.0379526 0.0103195 +0.0213669 0.0851498 -0.0262488 +-0.0469792 0.133264 0.00837709 +-0.0845615 0.0777561 0.014943 +0.0384886 0.0513309 0.0319844 +-0.0128833 0.165453 -0.0135102 +-0.0811951 0.147316 0.000164965 +-0.0523892 0.141597 0.0213852 +-0.045982 0.130505 0.00444274 +0.0279356 0.0520839 0.0384098 +-0.0931866 0.124098 0.0112689 +-0.0316005 0.0707575 -0.0264789 +0.00339515 0.0448431 -0.0258796 +-0.019688 0.0352649 -0.0192337 +-0.0492398 0.164062 -0.00484765 +-0.00759694 0.039172 -0.0259394 +-0.0456148 0.043386 -0.0114089 +-0.0706825 0.163806 -0.0469738 +-0.0111277 0.166928 -0.0162357 +0.0150914 0.0873948 0.0517971 +-0.0488841 0.0335499 -0.0104742 +0.0191832 0.0974256 -0.0227258 +-0.068761 0.17368 -0.0560297 +0.0347852 0.0821986 0.0398055 +-0.0656191 0.164967 -0.0232289 +0.0488884 0.0431235 0.0112233 +-0.0204394 0.0725535 0.0530664 +0.0198178 0.127196 0.0112616 +-0.0870347 0.13912 0.00619253 +-0.0619782 0.15683 -0.0335967 +0.0192552 0.0735767 -0.0281447 +-0.0582892 0.0589697 0.00149643 +-0.0794885 0.131664 0.0524764 +-0.0625817 0.159955 -0.0415973 +-0.0344319 0.0350721 -0.0182387 +0.0339652 0.0955609 0.0387182 +-0.0350568 0.0344135 0.0294961 +-0.00649976 0.0842428 0.0569087 +-0.0606247 0.0394421 0.0446315 +-0.066026 0.146409 -0.0228827 +0.0265887 0.0491527 0.0382012 +-0.0447519 0.078285 -0.0193632 +0.0442188 0.0833029 0.0251703 +-0.025021 0.178659 -0.00994683 +0.0382789 0.10977 0.00952257 +-0.0756137 0.176488 -0.0441876 +-0.0706968 0.169922 -0.0279808 +-0.0514769 0.0344526 0.0347935 +0.00449209 0.108585 0.0419458 +0.0591616 0.0552765 0.0151753 +0.0295012 0.0578054 0.0407589 +0.0323993 0.0505614 -0.00746951 +-0.0570338 0.131087 -0.00617819 +-0.0304972 0.101559 0.0427282 +-0.00116978 0.0991573 0.0506694 +-0.0238077 0.0811303 0.0547388 +-0.00701023 0.0988653 -0.0267279 +-0.0156999 0.0584946 -0.0353551 +0.00922562 0.0809438 -0.0326125 +0.0453737 0.0474164 -0.00383546 +0.0044338 0.117686 -0.0167913 +0.0239341 0.0561524 -0.0247597 +0.0591083 0.0705376 0.015147 +-0.0594646 0.151494 0.0342364 +-0.0657091 0.157202 -0.00882727 +-0.0250337 0.0381576 0.00660247 +0.0420581 0.102887 0.0101643 +0.0436509 0.0403831 0.00924323 +-0.00449056 0.130995 0.0108991 +0.0044777 0.112767 0.0412512 +0.00553763 0.100304 0.04669 +-0.0942962 0.120123 0.0192891 +-0.0620801 0.0339964 0.0171254 +-0.0160023 0.128658 0.015367 +-0.0432963 0.128843 0.0142751 +-0.0634932 0.104261 0.0408123 +-0.0746115 0.103538 0.0368408 +-0.0222463 0.0739152 0.0519932 +-0.0544743 0.034136 0.0256577 +-0.0252277 0.12616 0.0135052 +-0.0320296 0.171249 -0.00429305 +-0.0132393 0.1837 -0.0278845 +-0.0324962 0.0718107 0.0406773 +-0.0765269 0.165965 -0.0237196 +-0.0833313 0.0829966 0.0292517 +0.0259015 0.0902483 0.0463733 +0.0095961 0.0354723 -0.00987583 +0.0511798 0.0581784 0.029952 +-0.0848476 0.0845966 0.0254873 +-0.0509379 0.131197 -0.00260501 +0.00252027 0.0730778 0.0562797 +-0.0135504 0.122737 -0.00796322 +-0.00761024 0.0420402 -0.0258045 +-0.0508461 0.134795 0.0276114 +-0.0804072 0.155064 0.0209566 +0.00350727 0.103765 -0.0218529 +-0.0106066 0.0420419 -0.0261259 +-0.0713436 0.0632651 0.0179295 +-0.067959 0.169303 -0.0298283 +-0.0236585 0.049302 -0.027521 +-0.069473 0.158882 -0.00587612 +-0.0766843 0.15421 -0.00390102 +-0.0220401 0.0852804 0.0556778 +0.0275877 0.0465825 -0.0117097 +-0.00852427 0.130326 0.0108566 +0.0130382 0.0344991 0.00293188 +0.0559458 0.0605187 0.000117677 +-0.0348266 0.0900917 -0.0242073 +-0.0890869 0.135136 0.0402764 +-0.0897624 0.136545 0.033205 +0.00547548 0.112757 0.0410095 +-0.0712367 0.159654 -0.00650092 +-0.0121993 0.177175 -0.0288808 +-0.0823069 0.0748418 0.00552391 +-0.054558 0.0460859 0.0144477 +-0.070487 0.0669606 -0.00253268 +-0.0556924 0.159448 0.00648476 +-0.00649361 0.105887 0.04408 +-0.0602281 0.059992 0.0213112 +-0.0580325 0.0579587 0.00923969 +-0.0338627 0.110196 -0.0186635 +0.0546876 0.0597691 -0.00173886 +-0.0625369 0.149102 -0.00757295 +0.0542703 0.0575789 -0.00178727 +-0.0088618 0.129865 0.0208462 +-0.0801514 0.109359 0.0377151 +-0.00679227 0.0798757 -0.0378854 +-0.0424904 0.0860159 0.0426903 +0.0479819 0.0723794 0.00739708 +-0.0560722 0.13957 0.0312222 +-0.0365138 0.0804626 0.0431357 +0.00167631 0.105337 -0.0215515 +-0.0775111 0.0860271 0.0374369 +0.0259521 0.11908 -0.00433188 +-0.0558236 0.0526652 0.00846948 +-0.0846054 0.11036 0.02536 +-0.0765518 0.15421 -0.000899711 +0.0127846 0.0699169 0.0536174 +0.0208082 0.1264 0.00735797 +-0.0504584 0.0502644 0.0363006 +0.0174244 0.125027 -0.00283112 +-0.0308709 0.178515 -0.0130008 +-0.00718543 0.0385691 0.00621806 +0.0407891 0.0886694 0.0309807 +-0.0357951 0.124657 -0.0058294 +-0.0554873 0.0400326 0.0469712 +-0.057026 0.0675163 0.0366088 +-0.0497286 0.133927 0.0265636 +-0.00790814 0.0384861 0.0079669 +-0.0811308 0.0841829 -0.00653469 +-0.010479 0.0991873 -0.02508 +0.00856046 0.0354979 0.0447263 +-0.0634822 0.166302 -0.0366942 +-0.0223475 0.0360366 0.0535038 +-0.0795325 0.124539 0.0521412 +-0.00951606 0.0745243 0.0569833 +-0.0130122 0.127478 0.0251829 +-0.0936226 0.120076 0.0132919 +-0.0540996 0.154592 -0.00271527 +-0.0879876 0.132208 0.00230713 +-0.034669 0.15585 -0.0101443 +-0.0197012 0.0598498 -0.0346368 +-0.0276791 0.155231 -0.00339809 +-0.0842452 0.0818537 0.025498 +-0.054537 0.0560032 -0.00541843 +-0.0497623 0.0665865 0.0371903 +-0.0891577 0.092949 0.0214162 +-0.0577737 0.0782037 -0.0194332 +-0.064492 0.104249 0.0405622 +-0.0336047 0.0695556 -0.0194645 +-0.0558611 0.0955845 -0.021564 +-0.0184974 0.0869962 0.0565805 +0.00637923 0.0372606 0.0264872 +-0.0665048 0.104229 0.0399675 +0.0566718 0.0553009 0.0238011 +-0.0283123 0.0383433 -0.00703005 +-0.0114184 0.169868 -0.0184586 +0.0211822 0.0909362 -0.0242734 +0.0406295 0.0806796 0.0323988 +0.0123659 0.128443 -0.000397752 +-0.0384845 0.0833049 0.0437838 +-0.01051 0.0531978 0.0517663 +0.00250545 0.0842781 0.0574483 +-0.0674995 0.0972695 0.0419768 +-0.0618921 0.119466 -0.00942759 +-0.00594439 0.13066 0.0175514 +-0.0188708 0.0382701 0.00775373 +-0.0605698 0.0727907 0.0401099 +-0.0115041 0.115551 0.0394745 +0.0300401 0.11902 0.00366373 +-0.0812551 0.10738 0.02923 +-0.0704758 0.123201 0.0533571 +-0.0711231 0.141136 0.0464522 +-0.0222312 0.125137 -0.000350139 +0.0436968 0.0818627 -0.00278544 +-0.00557531 0.0383818 0.0157938 +-0.0175218 0.187118 -0.0194148 +0.000510392 0.0689287 0.0563645 +0.0339979 0.0519394 0.0331121 +0.00286804 0.129802 0.0250965 +-0.0290472 0.0777737 0.0431405 +0.0209137 0.102084 0.0444516 +-0.00628355 0.0409075 0.0485853 +0.0605521 0.0595441 0.0141714 +0.0386236 0.0898511 -0.0127692 +0.0302987 0.0539206 -0.0157566 +-0.0421651 0.149301 -0.00412295 +-0.0126067 0.040646 -0.0265976 +-0.0788091 0.168052 -0.033971 +0.0359211 0.112779 0.0172688 +-0.0394762 0.17111 0.000601324 +-0.0330305 0.0384181 -0.00620006 +-0.0859939 0.0940196 0.000445293 +-0.0359122 0.158048 0.00410154 +-0.0745011 0.151286 -0.0298782 +0.0531496 0.0491587 0.00225551 +-0.0243767 0.179986 -0.0189674 +-0.0891975 0.0996627 0.0124046 +-0.0742533 0.17954 -0.0493425 +-0.0510836 0.145457 -0.000907293 +0.0483282 0.0561556 -0.00540695 +-0.0224848 0.0474635 0.0510926 +-0.0647533 0.163375 -0.0214725 +-0.0127683 0.163589 -0.0126806 +0.0112702 0.0766287 -0.031501 +-0.0460801 0.153165 -0.0063697 +-0.0396673 0.0606846 -0.0120669 +0.0304753 0.100799 0.0389817 +0.0504441 0.0731136 0.0180651 +0.0195371 0.122997 -0.00457304 +-0.0455152 0.0505363 0.0385492 +-0.0525396 0.0458696 -0.00783738 +-0.0679101 0.109459 -0.0121777 +0.0257715 0.122252 0.0234619 +-0.0641925 0.158337 -0.0512857 +-0.0679573 0.0636968 0.0236258 +0.0336501 0.0872305 -0.0183746 +-0.081408 0.0801232 -0.00353296 +-0.068364 0.143961 0.043402 +-0.060807 0.170968 -0.0607383 +-0.0530022 0.0712206 0.0395879 +-0.0629233 0.149038 -0.01858 +-0.0911763 0.131044 0.0302322 +-0.0866097 0.0859466 0.00148078 +-0.0213048 0.0567472 0.0459531 +-0.0884724 0.111842 0.0093465 +-0.0232358 0.0382045 0.0267906 +-0.0687325 0.178002 -0.0502345 +0.0171734 0.0960138 -0.0234178 +-0.0336295 0.0533957 -0.0102549 +0.0404048 0.0661215 -0.00776758 +0.0352114 0.113974 0.0112756 +-0.0509894 0.131098 0.0315417 +-0.0825925 0.0857998 0.0312629 +0.0165569 0.0367823 -0.018664 +-0.0158447 0.163118 -0.0162484 +0.0463618 0.0504062 -0.00492067 +-0.0256024 0.0918183 0.0477571 +0.0401119 0.105635 0.0181717 +-0.075865 0.120825 -0.00747435 +-0.0515138 0.0502892 0.0216268 +-0.0597307 0.0737738 -0.017073 +0.0327302 0.0795508 0.0421017 +0.0561478 0.0493933 0.0131905 +-0.0491927 0.149222 0.0111539 +-0.0505664 0.0459962 -0.00889176 +-0.0346044 0.0381371 0.0484275 +-0.0571418 0.0341673 0.0268338 +-0.0508978 0.0335658 0.00549258 +0.0499018 0.0460625 0.00228276 +0.000648366 0.101032 0.0453587 +-0.064515 0.0945534 0.0434117 +-0.00933623 0.127529 -0.00319765 +-0.0931674 0.126844 0.0122586 +-0.0775055 0.120428 0.0519362 +-0.00412302 0.0390868 0.0317249 +-0.0444953 0.12065 0.0276432 +-0.0808257 0.114785 -0.00282613 +0.00848893 0.0976878 0.0492062 +-0.0204952 0.119495 0.0334766 +-0.0744171 0.1312 0.052182 +-0.0354802 0.0365931 -0.0303176 +-0.0158225 0.127346 0.0227279 +-0.0622273 0.163125 -0.0345932 +-0.0308039 0.0345326 0.0408762 +-0.0684942 0.0944611 0.0423345 +-0.0282259 0.115945 -0.0147131 +-0.00496131 0.0393649 0.0367022 +0.000507606 0.089764 0.0561546 +0.0184391 0.121423 0.0322194 +-0.0293563 0.0761839 -0.0345604 +-0.0798193 0.0993879 0.0336913 +-0.0260706 0.125207 0.0176138 +-0.0466789 0.0383303 -0.0162856 +-0.0551627 0.0709645 0.0393255 +-0.0708102 0.086505 -0.0166182 +-0.0534691 0.0491595 0.0373719 +-0.0176627 0.0365106 -0.0181139 +0.00950436 0.0910078 0.0538342 +-0.0895706 0.136541 0.0322035 +0.0538065 0.0721186 0.0208488 +-0.00549555 0.115561 0.0401898 +0.00964519 0.0349724 -0.00752839 +-0.0134864 0.112741 0.0406725 +-0.00206815 0.039143 -0.00620903 +0.0130247 0.112857 -0.017601 +-0.0790398 0.119048 0.050662 +-0.0808858 0.0872378 0.0337267 +-0.0123796 0.124965 -0.00637162 +-0.0213885 0.125739 0.00103732 +-0.089509 0.125659 0.045333 +-0.05553 0.137483 -0.00349047 +0.0417216 0.100008 -0.000812454 +-0.0294372 0.045874 0.0494957 +0.0458807 0.0774123 0.0204549 +-0.010796 0.120869 -0.0120713 +-0.0650859 0.171096 -0.0446086 +-0.0309091 0.0594671 -0.0184147 +0.0318276 0.102039 -0.0140664 +-0.050474 0.137043 0.0223997 +-0.0892111 0.0956026 0.0114219 +-0.0551272 0.0478339 0.0400497 +-0.0376142 0.115213 -0.0159111 +-0.0262205 0.0604134 -0.0304432 +-0.0395514 0.159448 0.00235113 +-0.0548296 0.0912974 -0.0221769 +0.0140209 0.113717 -0.0165571 +-0.0376838 0.0651596 -0.0143574 +-0.0357596 0.0367769 0.0465803 +0.0218833 0.124858 0.00205716 +-0.0515413 0.0403485 -0.0110842 +0.0196453 0.0521206 0.045827 +-0.0274751 0.109286 -0.019717 +-0.054346 0.125513 0.0372066 +-0.061806 0.172532 -0.0555873 +0.0193853 0.0367967 0.0404 +0.00315064 0.0340463 -0.0192491 +-0.0419902 0.127061 0.0177443 +-0.0753578 0.0671035 0.0137678 +-0.017747 0.0685932 -0.0381265 +0.0502404 0.0581527 0.030355 +-0.01349 0.11138 0.0414506 +-0.088473 0.0908539 0.022804 +-0.0623246 0.0380624 0.0435494 +-0.0315191 0.0831203 0.0417649 +-0.0908528 0.131057 0.0322319 +-0.0524868 0.0959601 0.0436811 +0.0383485 0.10917 0.00520513 +0.0405643 0.0599899 -0.00408877 +-0.00769877 0.0598808 -0.0345717 +0.0253549 0.0875981 0.0473346 +-0.0126907 0.166905 -0.0150111 +0.0384994 0.0541178 0.0316123 +-0.034906 0.0367338 -0.0161439 +-0.057208 0.048538 0.00854022 +-0.0255159 0.108511 0.0401259 +0.0305676 0.0350004 0.0115893 +-0.0520943 0.0559627 0.0266271 +-0.0610057 0.155949 0.0190169 +-0.067333 0.1766 -0.0497355 +0.0258363 0.0844839 -0.0235493 +-0.0689178 0.164003 -0.0158096 +-0.00849374 0.116931 0.0393004 +-0.0752784 0.113511 0.0497641 +-0.0888148 0.144497 0.0313918 +-0.0453871 0.145929 0.00156561 +-0.0599561 0.0677317 0.0357891 +-0.0125434 0.0386707 -0.00229897 +-0.000271447 0.0356914 0.00658166 +-0.0415825 0.0366566 0.0434527 +-0.0297036 0.165315 -0.00626903 +-0.0467885 0.0855251 -0.0217462 +-0.0827882 0.125806 0.051363 +-0.0176693 0.0966335 -0.0284397 +-0.0464991 0.115243 0.033257 +-0.0569748 0.146758 0.0317266 +-0.0430879 0.156177 -0.00890493 +-0.00350236 0.0774419 0.0585703 +-0.0699027 0.158151 -0.0489236 +0.0362459 0.112339 0.00591924 +0.0367118 0.0920329 -0.0133924 +-0.0539202 0.0610131 0.0274265 +-0.0093317 0.127279 0.0279745 +-0.0726772 0.112018 0.047983 +-0.0451365 0.160644 -0.00892562 +-0.0209165 0.172715 -0.0146234 +-0.0477839 0.125387 0.0290716 +-0.0734873 0.156859 -0.0289164 +0.00860516 0.061703 0.0545256 +-0.0246606 0.0422329 0.0539554 +-0.0315436 0.153515 -0.00448892 +0.0345459 0.0571781 -0.011728 +-0.0791321 0.170818 -0.0399882 +0.0254504 0.0415949 -0.00563526 +0.0230318 0.0355156 0.0114574 +-0.0554984 0.107053 0.0399469 +-0.0296361 0.0522471 0.0373693 +-0.0438179 0.0928034 -0.0224841 +-0.0199243 0.0387302 -0.0112686 +0.0212455 0.0791286 -0.0267859 +-0.0532861 0.0527919 0.0115704 +0.00450017 0.0441843 0.0459802 +-0.0329932 0.0339759 0.0213799 +0.0553011 0.0604636 -0.000842819 +0.00165238 0.0932332 -0.0327923 +-0.0552284 0.0527023 0.00927604 +-0.0783599 0.0708413 0.0204513 +-0.0767777 0.176413 -0.0510191 +-0.0394918 0.104211 0.0396007 +0.0327921 0.0889736 0.0422708 +-0.00991923 0.0986226 0.0505787 +-0.0806729 0.108958 0.0307202 +-0.0822864 0.135367 0.0491747 +-0.0649369 0.0609076 0.00327394 +0.0386477 0.0715748 -0.0117783 +-0.0240415 0.126597 0.0109996 +-0.0781422 0.141688 -0.0047364 +-0.0427782 0.0841106 -0.0212812 +-0.0641686 0.178174 -0.0558405 +0.0252976 0.0661311 -0.0233121 +0.0189895 0.0631559 0.0484766 +0.0182463 0.0722224 -0.0290012 +-0.0777504 0.161717 -0.020949 +-0.051966 0.138521 0.000416067 +-0.0605353 0.155832 0.0177371 +0.0437866 0.098742 0.00716534 +-0.0494703 0.0370271 -0.0120635 +0.0464078 0.0806576 0.0101793 +0.0218218 0.116393 -0.0114503 +-0.0533273 0.132699 -0.00427378 +-0.0681775 0.0762505 0.039044 +-0.0250035 0.0896 -0.0352857 +0.000769534 0.0946028 -0.0322154 +-0.0158082 0.0346932 0.0474464 +-0.076979 0.148604 -0.00699397 +0.0467055 0.0730498 0.0181295 +-0.0496483 0.0634464 -0.0118311 +-0.0197535 0.0700012 -0.0382558 +0.0232727 0.0989983 -0.0208236 +-0.0777 0.16251 -0.0219398 +-0.0908755 0.147455 0.0141474 +-0.0334742 0.0638502 -0.015538 +0.00219672 0.0825025 -0.0349885 +-0.0814773 0.128835 0.0524787 +-0.0784807 0.13724 0.0497912 +0.0361312 0.11046 8.71157e-05 +-0.0454849 0.0931252 0.0434035 +-0.0635463 0.153079 -0.00800928 +-0.0529285 0.0339107 0.0244154 +-0.00862356 0.0451919 -0.0286362 +0.0192377 0.117984 0.0350388 +-0.000496915 0.0883839 0.0565827 +0.0316988 0.118246 0.0142694 +-0.0398347 0.169198 -0.01127 +0.0219416 0.125622 0.00635903 +-0.092876 0.129604 0.0142376 +-0.023566 0.0579721 0.0425175 +-0.0447621 0.126552 0.0211574 +-0.0390659 0.157734 -0.0109824 +-0.0038734 0.104505 -0.022849 +-0.0810823 0.146103 0.0405774 +-0.00499552 0.038756 0.0282379 +0.00659654 0.102942 0.0449664 +-0.0528078 0.0898592 -0.0221628 +-0.0415043 0.0340515 -0.0039392 +-0.0118724 0.166916 -0.0155725 +0.00801932 0.113693 0.0398597 +-0.0873717 0.0895698 0.0245766 +0.0235801 0.11767 -0.00881398 +-0.0592051 0.0411249 -0.00803844 +-0.0631955 0.174736 -0.0540401 +-0.00904474 0.102005 -0.0240096 +-0.0893459 0.0888735 0.0114634 +-0.0847817 0.111591 0.0313073 +-0.0318636 0.155275 -0.00893878 +0.020119 0.0578214 0.0483165 +-0.0884363 0.140505 0.0381916 +0.0268748 0.0768062 0.0459093 +0.00650425 0.06886 0.0554952 +-0.0600274 0.155812 0.00342033 +0.00439509 0.0433687 -0.0246925 +-0.0644393 0.157952 -0.0526177 +-0.0626717 0.152516 0.0345768 +-0.0686641 0.0435432 0.00268116 +-0.0668913 0.155545 0.00822429 +-0.0513204 0.0545255 0.0306253 +-0.0216946 0.055283 -0.031103 +0.0201038 0.121698 0.0313961 +-0.0435092 0.0973014 0.0425845 +-0.0598342 0.124083 0.0415696 +-0.0290584 0.0385824 0.0360072 +-0.0211666 0.0959679 -0.0277597 +0.0393164 0.0948581 -0.00836399 +-0.0465497 0.0354834 -0.0182685 +-0.0577953 0.0577539 0.0112722 +0.0343862 0.0533953 0.033694 +-0.0356597 0.12459 0.0229985 +-0.0703962 0.0382223 -0.000484462 +0.0394034 0.0772645 -0.00977482 +0.0374516 0.110677 0.0163977 +0.022681 0.0549804 0.0449373 +-0.00661876 0.0388692 0.029605 +-0.0298463 0.0958488 -0.0239617 +-0.0500656 0.165567 2.77718e-05 +-0.0624265 0.163056 -0.0535855 +0.0182459 0.035082 -0.00972071 +-0.0535426 0.139527 0.0278286 +0.0535157 0.0664189 0.0268642 +-0.0618871 0.044625 0.0401036 +0.0279315 0.0813321 -0.0222629 +-0.0364738 0.0959436 0.0435424 +-0.0648009 0.0867059 -0.0190299 +-0.0910478 0.113254 0.017639 +0.0328625 0.115479 0.000361714 +-5.55454e-05 0.1192 -0.0143689 +0.00440015 0.0419024 -0.0241382 +-0.0356548 0.0459643 -0.0252685 +-0.00874142 0.0699019 -0.0364843 +-0.0786816 0.173602 -0.0460003 +-0.0750442 0.11265 0.048722 +0.0132032 0.0850348 -0.0305799 +-0.0275703 0.070462 0.0404211 +-0.0333885 0.082189 -0.0265241 +-0.0498121 0.0912811 -0.0216901 +-0.0121305 0.129539 0.00953518 +-0.0888371 0.0942243 0.00943852 +-0.0733262 0.151241 -0.0368807 +0.0159012 0.0347663 0.0342789 +-0.0464698 0.0336288 0.00272222 +-0.0219797 0.0381347 0.0126751 +-0.0434985 0.112577 0.0357301 +0.0374146 0.0807844 0.0365828 +-0.0150623 0.160937 -0.0114195 +0.00882514 0.0347544 -0.00561715 +-0.0793646 0.150083 0.036366 +0.0444807 0.0526489 0.0324592 +-0.0140843 0.0382987 0.0177555 +0.0371109 0.0630101 -0.0117592 +-0.0795655 0.0711751 0.0181423 +0.0314182 0.0968966 0.040312 +0.0553211 0.0622297 0.0271921 +-0.0344916 0.0789231 0.04184 +-0.0708134 0.0893817 -0.0163657 +-0.0786856 0.174223 -0.045863 +-0.0497628 0.0345507 0.0333201 +-0.026557 0.0646504 0.0393284 +0.0499455 0.0733656 0.0164225 +0.0233132 0.0902311 0.0479207 +-0.0441494 0.163638 -0.00943446 +-0.048497 0.0464891 0.040915 +-0.0638143 0.15519 -0.0396115 +0.0296208 0.115866 0.0291818 +-0.0505003 0.100168 0.042883 +0.00450871 0.0910904 0.0550512 +0.0223914 0.093257 -0.0227104 +-0.0346391 0.0469045 -0.0241611 +0.0600903 0.0608951 0.0181821 +0.0174829 0.0976104 0.0472234 +0.0245219 0.0382712 0.0311236 +0.0373902 0.0561474 -0.00613784 +-0.0725233 0.143597 -0.0104167 +-0.0755086 0.133058 0.0519758 +-0.0469091 0.134066 0.0158053 +-0.0365004 0.0719314 0.0420432 +0.0599383 0.0692126 0.0131498 +-0.0228512 0.126901 0.0114323 +0.0370832 0.0408236 0.0259314 +0.0430366 0.0709859 0.0269587 +0.0442558 0.0917077 -0.00080891 +0.0366443 0.0915417 0.0373244 +0.0149217 0.127634 0.0251635 +-0.0260773 0.0547586 -0.0274003 +0.0223322 0.0348324 0.0210401 +-0.0674741 0.169344 -0.0310786 +-0.0943935 0.125559 0.0222675 +0.000334373 0.0554042 -0.031412 +-0.023822 0.0694685 0.046666 +0.024828 0.0768588 0.0482443 +-0.0593221 0.0615947 0.0254084 +-0.0274704 0.0506795 -0.0243965 +-0.0172176 0.177147 -0.0249576 +0.0433823 0.0490357 -0.00560381 +0.0244317 0.116294 -0.00934411 +0.0184177 0.0350663 0.0309125 +0.0404265 0.102791 0.0231613 +-0.0243375 0.1639 -0.00728245 +-0.0675442 0.151908 -0.0456642 +-0.0311974 0.0474073 0.0447828 +-0.0726957 0.175719 -0.0430358 +-0.0165027 0.0499584 0.0473896 +0.0323852 0.0461686 -0.00610484 +0.0214495 0.0822346 0.0504578 +0.016822 0.123899 -0.00554312 +-0.0694694 0.178653 -0.050518 +-0.0741019 0.156119 0.0187476 +0.0510202 0.0736047 0.0138558 +-0.0739033 0.14718 -0.0168588 +-0.0165785 0.162548 -0.00831661 +-0.0414778 0.0347327 0.0401772 +0.0319294 0.118052 0.0100791 +-0.0502835 0.146495 -0.00183305 +-0.0758664 0.116415 -0.00636144 +-0.0824071 0.136209 -0.001703 +-0.0519598 0.0335208 -0.000101812 +-0.0819554 0.0993316 0.0315904 +0.0213579 0.055075 -0.0266156 +-0.0422106 0.112435 -0.0169649 +0.0150002 0.128745 0.00378903 +-0.0430993 0.157658 -0.00954173 +-0.0816795 0.117485 0.0486704 +-0.00999143 0.0383941 0.00762464 +0.0248936 0.12332 0.00461274 +-0.0644877 0.0972949 0.0424471 +-0.032514 0.105674 0.0400124 +-0.0517751 0.0826668 -0.0215624 +0.00214252 0.103065 -0.0221511 +-0.0609083 0.169363 -0.0596932 +0.0270498 0.0919981 -0.0213752 +0.00735643 0.038818 0.0454516 +0.0115845 0.121127 -0.0125402 +0.0591992 0.0552614 0.014176 +-0.0901723 0.112303 0.0149799 +-0.0627834 0.035148 0.0195098 +-0.074757 0.111898 0.0475989 +0.0570719 0.0578424 0.00217676 +-0.0528487 0.0500508 0.0126245 +-0.00477608 0.0784365 -0.0374195 +-0.0645432 0.0673992 0.033354 +-0.0540085 0.145723 -0.00127177 +-0.010995 0.0388834 0.0322933 +0.00247314 0.0964836 0.053027 +-0.0624566 0.177245 -0.0586155 +0.0368789 0.0941727 0.035906 +-0.0219544 0.120804 -0.00985027 +0.0570851 0.0508934 0.0101876 +0.0102738 0.0724526 -0.032232 +0.0544954 0.0655564 0.000403771 +0.0210681 0.0415437 -0.0156999 +-0.0692317 0.155651 0.00154206 +0.0527009 0.0518645 -0.000768796 +0.0334294 0.116181 0.00636312 +0.0448957 0.0945828 0.0101613 +0.00249575 0.0952068 0.0540463 +-0.0124032 0.0388598 -0.00801871 +0.045282 0.0889737 0.0021781 +-0.00350234 0.0388725 -0.0137373 +-0.0678317 0.0335757 0.00383638 +0.00921578 0.0767579 -0.0331902 +-0.0534996 0.0987387 0.0427565 +-0.0124888 0.126191 0.0283067 +0.0103285 0.130654 0.00635323 +0.0314005 0.0446447 -0.00577901 +-0.0295471 0.0804664 0.0436378 +0.00584239 0.0374362 -0.00493399 +0.0435663 0.0408867 0.018056 +-0.0206234 0.0950485 -0.0308006 +-0.0216102 0.0408331 -0.028871 +-0.0256808 0.0663835 0.041558 +0.0103698 0.0351865 0.034574 +0.0249548 0.0809223 0.0484627 +-0.0551501 0.0641879 0.0328568 +-0.0633147 0.132484 0.0400888 +-0.062948 0.163113 -0.0275941 +-0.0620302 0.141028 0.0366839 +-0.0484797 0.126826 0.0298997 +0.00950548 0.107102 0.041296 +0.0390056 0.0914413 0.0336848 +0.0300323 0.108764 0.0348296 +-0.0198832 0.0335337 -0.0251748 +0.0128315 0.0391361 0.0445812 +-0.0263531 0.11244 -0.0170322 +0.0359611 0.109622 -0.00183337 +-0.0572001 0.0380562 0.0469117 +0.00550248 0.121034 0.0357708 +-0.0667821 0.14845 -0.031825 +-0.016957 0.186039 -0.0193264 +-0.0878947 0.131105 0.044958 +0.0363312 0.107346 0.0280412 +-0.0614985 0.0833224 0.0439406 +0.0542552 0.0478973 0.00920996 +-0.0787615 0.0867217 -0.0105634 +0.0226207 0.0360088 0.0127544 +0.00886878 0.0343168 0.00225753 +-0.0266191 0.0618553 -0.0304537 +-0.00302574 0.0387303 0.00142158 +-0.019905 0.038668 0.0324503 +0.0527798 0.0683653 0.00150186 +0.021964 0.0402022 -0.00870612 +-0.0126432 0.0481635 -0.0303259 +-0.0124951 0.0925417 0.056096 +-0.0373842 0.0433946 0.0425967 +0.0243858 0.124139 0.00725423 +-0.0540808 0.0434992 0.0186914 +-0.0590026 0.0609591 0.0242669 +-0.0846496 0.129332 -0.00265191 +0.0108129 0.0887938 0.0544498 +-0.0599027 0.106882 -0.0174092 +0.0235199 0.123889 0.00267512 +-0.0364958 0.116629 0.0319219 +-0.0274016 0.0386836 -0.0145853 +0.0575354 0.0620414 0.00218896 +-0.0617076 0.156842 -0.0315932 +-0.0566848 0.0344893 0.0422998 +-0.0515556 0.0459336 -0.00836292 +0.034036 0.037677 0.020853 +0.0440634 0.064827 -0.000963389 +-0.0783551 0.090033 0.0367591 +-0.0451437 0.162134 -0.00879907 +-0.0870992 0.0913786 0.00345195 +-0.0896332 0.0983435 0.0144056 +0.00267954 0.131212 0.00494959 +-0.0521038 0.0531706 0.024633 +0.033292 0.0856433 -0.0187503 +-0.0284873 0.0606333 -0.0264114 +-0.0366237 0.123115 -0.00817194 +-0.0417568 0.0797359 -0.0197866 +-0.0466787 0.0650533 -0.0138917 +0.0360448 0.0392022 -6.35907e-05 +-0.0192403 0.0387115 -0.0129795 +0.0431391 0.098698 0.00317491 +-0.0224767 0.091498 -0.0352097 +0.0093588 0.0524416 -0.0295377 +-0.0833358 0.105954 0.0271122 +-0.0146006 0.127548 0.000963555 +0.0122907 0.0652688 -0.0305463 +-0.0515682 0.0488001 -0.00762593 +0.0214986 0.122612 0.0290301 +-0.0271235 0.11599 -0.0147668 +0.0381316 0.109734 0.0151646 +-0.00681664 0.0854791 -0.0376549 +-0.0147515 0.07145 -0.0385454 +-0.0659657 0.129697 -0.00887578 +0.0359834 0.11203 0.00292702 +-0.0631298 0.144906 -0.0101196 +0.00903132 0.0343268 -0.014573 +-0.0348704 0.101474 -0.022105 +-0.0693077 0.0614952 0.0145437 +0.0349262 0.0896582 -0.0169179 +-0.037886 0.109925 -0.0191545 +-0.0372775 0.0472266 -0.0193178 +0.0112393 0.0349033 0.0350041 +0.0430009 0.0705508 -0.00279727 +0.0400623 0.0956447 -0.00679711 +-0.0676126 0.155322 0.00651001 +0.0598737 0.0581052 0.00916393 +-0.061495 0.100138 0.0425963 +-0.0575075 0.0435504 0.0160321 +0.0228298 0.0827896 -0.0258286 +-0.0115004 0.0925527 0.0561224 +-0.0223058 0.184466 -0.0180708 +-0.0624348 0.161527 -0.0435948 +-0.0143997 0.0383922 -0.000568703 +-0.0793362 0.0881239 -0.0095476 +-0.0548971 0.10981 -0.018029 +-0.0707512 0.156365 0.0199172 +0.0244407 0.0405616 0.0372831 +-0.0545055 0.113958 0.0351234 +-0.00749363 0.0547355 0.05304 +0.044284 0.0819099 0.0251484 +0.0117499 0.0519912 0.0501875 +-0.0706809 0.109318 0.0378585 +-0.0640006 0.161566 -0.01976 +-0.0122192 0.0378665 0.050479 +-0.0715061 0.148353 0.0408514 +-0.0652549 0.0667307 0.0320259 +0.0162842 0.118981 -0.0122323 +-0.0584978 0.0959813 0.0440843 +-0.0261553 0.169713 -0.0187023 +0.0163086 0.108997 -0.0174538 +0.019812 0.035154 0.0274956 +0.0403843 0.0547484 -0.00641578 +-0.0370524 0.128064 0.00917633 +-0.0181528 0.0388364 -0.0128782 +-0.0703699 0.144073 -0.0154773 +-0.0821317 0.15265 0.0057634 +-0.0121975 0.182647 -0.0286755 +-0.0179487 0.126229 0.0234428 +-0.0713342 0.065071 0.0216423 +-0.0135059 0.0357879 0.0504712 +-0.0551243 0.0482803 0.0389113 +-0.043841 0.0970933 -0.0219235 +0.0307935 0.0619124 0.0409121 +-0.0872404 0.149912 0.0282765 +-0.0777833 0.0694772 0.0182331 +-0.0479563 0.0699321 0.0400053 +-0.0325179 0.0704032 0.0404934 +-0.04199 0.0336868 -0.0166047 +0.00497409 0.0340864 0.0145521 +-0.0449304 0.0643377 0.0396087 +-0.0778694 0.106226 -0.00738941 +-0.0126221 0.0389953 0.033657 +-0.0632121 0.172304 -0.0615699 +-0.0276205 0.0874255 -0.0346253 +-0.0625254 0.138119 0.0359126 +0.00425284 0.0711834 -0.0342035 +-0.0788838 0.153282 0.0303949 +0.00652169 0.0362747 0.0255863 +-0.0662316 0.0345008 0.0140489 +-0.02106 0.174206 -0.0148174 +0.0185004 0.109841 0.0391791 +-0.0646081 0.0450546 0.000685835 +-0.0136021 0.0363077 -0.0261392 +-9.29522e-05 0.131467 0.0096514 +-0.0451771 0.128971 0.00184527 +0.00750493 0.0561002 0.0528313 +0.0361319 0.074097 0.0381795 +0.022807 0.125614 0.0138049 +-0.0196774 0.0509888 -0.0303435 +-0.0930693 0.120128 0.0262942 +-0.0230193 0.120798 -0.0098328 +-0.0271496 0.0384219 0.0311819 +-0.0748224 0.0935599 -0.014192 +-0.0354943 0.119369 0.0303337 +0.060906 0.0609648 0.0111554 +0.0112135 0.130703 0.0137986 +-0.0266186 0.0589226 0.0382515 +0.0218458 0.0672628 0.0473581 +0.00922858 0.116392 0.0380826 +-0.0579872 0.0576809 0.00662705 +-0.0151861 0.168246 -0.0215615 +0.0431809 0.0791159 0.0272636 +-0.0755673 0.0727762 -0.00660131 +0.0242315 0.0818412 -0.0251267 +-0.0250124 0.0782139 0.0518051 +-0.0338224 0.0338142 0.00692539 +-0.00946746 0.0362215 -0.025425 +-0.0416936 0.0652006 -0.0145392 +-0.0546754 0.0335075 0.00116676 +-0.0233106 0.15969 -0.00223977 +-0.0842752 0.141807 0.00320102 +-0.0818378 0.131303 0.0516681 +-0.0234556 0.161598 -0.0145283 +-0.0499699 0.150693 0.011804 +-0.010495 0.0471724 0.0477907 +0.0380379 0.075373 0.0356471 +-0.0450739 0.0363473 0.0448052 +-0.0737333 0.15548 -0.0259091 +-0.0716137 0.178389 -0.0484 +-0.0384987 0.0691035 0.0417776 +0.00141943 0.122927 0.0347542 +-0.057332 0.137224 -0.00518105 +-0.0557698 0.136063 -0.00393718 +0.0558337 0.0494217 0.00919997 +-0.0580135 0.04944 0.00163802 +-0.0357372 0.111668 -0.0181975 +-0.0550044 0.145721 -0.00143834 +0.00110225 0.0344701 0.00796988 +-0.0157589 0.038402 0.00281447 +-0.0521458 0.121812 -0.0107191 +-0.00850406 0.11834 0.0382239 +-0.0498654 0.102788 -0.0210486 +-0.0630574 0.15313 -0.033029 +-0.0734528 0.143001 -0.00787011 +-0.0577717 0.0334512 -0.00484461 +-0.0926703 0.124234 0.0402542 +-0.0236253 0.0450591 -0.0281331 +0.0444641 0.0686626 0.00115575 +-0.0394989 0.0620307 0.0413298 +-0.0489043 0.0531988 0.0353928 +-0.0549375 0.140991 0.0293007 +0.0134789 0.100443 0.0476777 +0.0344381 0.102088 0.0341795 +-0.0629237 0.112473 -0.0138486 +0.0456048 0.0918125 0.0071715 +-0.0679688 0.135528 -0.00836676 +-0.0561131 0.145329 0.0311927 +0.0222077 0.0403059 0.0403109 +-0.0930104 0.131018 0.0202297 +-0.073597 0.161047 -0.0349306 +-0.073142 0.0762988 0.0362199 +-0.0868887 0.102318 0.0233696 +-0.074876 0.107788 -0.00905848 +-0.061968 0.159998 -0.0366167 +0.0234524 0.0505688 0.0407158 +-0.0374809 0.113893 0.0340704 +-0.052457 0.144675 0.0183665 +0.000496502 0.103028 0.0440499 +-0.0107515 0.039289 0.0373765 +0.0177346 0.123618 -0.0052308 +-0.0278908 0.0903405 -0.0316075 +0.0555538 0.0665692 0.0013688 +-0.0679616 0.181138 -0.0572245 +-0.0246921 0.156571 -0.00408158 +-0.0295045 0.112518 0.0356692 +-0.0523224 0.146252 0.0184018 +-0.0831779 0.111548 0.00129095 +0.0381693 0.109765 0.0141664 +-0.0465876 0.132486 0.00741919 +0.0351546 0.112861 0.0227039 +0.00752051 0.0855871 0.0562726 +-0.0236256 0.0464233 -0.0274769 +-0.0820555 0.138062 0.0474469 +-0.0332203 0.171246 -0.00251328 +-0.0471051 0.157621 -0.00763511 +-0.0883909 0.0874867 0.0154625 +-0.0769362 0.0914256 0.0381174 +-0.075265 0.148568 -0.0158698 +0.015355 0.119233 -0.0124997 +-0.0073165 0.13056 0.0112981 +-0.0167502 0.070002 -0.0383082 +-0.0672167 0.147775 -0.0296135 +0.00424945 0.126892 0.0299609 +0.0188897 0.120837 -0.00821554 +-0.0628446 0.0334683 -0.00588606 +0.0333858 0.103442 0.0343819 +-0.0748011 0.0878022 -0.0147955 +0.00250445 0.0519435 0.0530423 +-0.0565994 0.0548437 -0.000400453 +-0.0657591 0.0794867 -0.0178324 +-0.0893947 0.113204 0.00833335 +0.00550466 0.122397 0.0349805 +-0.0593516 0.0471429 0.038917 +-0.0691412 0.109612 0.0381472 +0.012166 0.127075 0.0284779 +0.00215147 0.0340847 -0.0194818 +-0.0357383 0.152143 0.000762654 +-0.0225608 0.0608496 0.0442445 +-0.00675345 0.0727271 -0.0364938 +-0.0504985 0.0776737 0.0437561 +0.012653 0.128571 8.59956e-05 +-0.0775017 0.148428 0.039927 +0.0194833 0.0961991 0.0471957 +-0.00134544 0.0999407 0.0490888 +-0.00745251 0.100521 0.0469096 +0.0293349 0.108769 0.0355782 +-0.0628076 0.0881622 -0.0190458 +0.0438908 0.0973298 0.0041758 +-0.0618594 0.154827 0.00385225 +0.0224603 0.0878572 0.0487762 +-0.0684419 0.0805248 0.0412962 +-0.0414824 0.0817867 0.0423837 +-0.0394972 0.0591632 0.0405173 +-0.0699138 0.0616664 0.0106715 +-0.0256486 0.050648 -0.0266189 +-0.0189668 0.125144 0.0245507 +-0.0548939 0.161294 0.00305835 +0.0593671 0.0566851 0.00917266 +-0.0619624 0.0371632 0.0192279 +-0.0458599 0.129594 0.0221735 +-0.078334 0.175787 -0.0461739 +-0.00822607 0.100046 0.0481626 +-0.0580744 0.136937 -0.00566118 +-0.0915979 0.115467 0.0229868 +0.0255167 0.123738 0.0133816 +-0.0331932 0.0348891 0.047012 +-0.076964 0.129602 -0.00711544 +-0.0598599 0.0358888 0.0454954 +0.0450831 0.0463904 0.0280485 +-0.0315243 0.0802674 0.0412906 +-0.0239631 0.11903 -0.0119726 +-0.0346068 0.0483825 -0.0183276 +-0.0825971 0.103328 -0.00360734 +-0.0887132 0.118572 0.00232339 +-0.0188128 0.082729 -0.0390748 +-0.0866936 0.0833424 0.0154842 +0.00371617 0.0348648 0.0208524 +0.0267042 0.122545 0.0181085 +-0.0738109 0.0935956 -0.0146814 +0.0287557 0.0348074 0.0132587 +-0.0344434 0.174206 -0.0015497 +-0.053794 0.086942 -0.0216962 +-0.0584166 0.126929 0.0401124 +-0.0837712 0.127162 0.0508887 +-0.0249431 0.0907384 -0.0344432 +-0.0817429 0.0748341 0.0165378 +-0.0709721 0.148372 0.0407622 +0.0453179 0.0861686 0.00320477 +-0.052904 0.159748 -0.00276649 +-0.0630387 0.15529 -0.0125891 +-0.0628558 0.170957 -0.0505963 +0.0198342 0.0408002 0.0424386 +0.0114164 0.0403794 -0.0231815 +-0.0270194 0.12568 0.0143315 +-0.0340325 0.126267 0.001455 +-0.0096483 0.171546 -0.0270746 +0.0461889 0.0792428 0.016179 +-0.0314795 0.0774889 0.0410863 +0.00441886 0.0361314 -0.0238164 +0.0140504 0.0379362 -0.0217239 +-0.0064667 0.128955 -0.000718006 +-0.00729042 0.0388645 0.0312728 +-0.0537922 0.14151 -0.001138 +-0.0843649 0.125772 0.0501053 +-0.0489003 0.033496 0.00596365 +-0.00972794 0.166651 -0.0186764 +-0.0537672 0.0812389 -0.0213883 +-0.0327797 0.0337757 0.0180041 +-0.0738907 0.107101 0.0373066 +0.0441357 0.0659575 -7.19207e-05 +-0.0929503 0.128215 0.0122521 +-0.0898716 0.133794 0.0302191 +-0.0643705 0.154697 0.0294695 +0.023375 0.0504685 -0.0225374 +-0.052801 0.0690675 0.0379843 +-0.0823518 0.0966615 0.0320686 +0.00650836 0.0813916 0.0558754 +0.0249135 0.0390596 0.0323329 +0.0422621 0.0746939 -0.00581448 +-0.0239734 0.0636045 0.0427616 +-0.0648684 0.0967433 -0.0176098 +-0.0661842 0.163921 -0.0584969 +-0.0338218 0.0886934 -0.0246941 +-0.0545067 0.102902 0.0418134 +-0.0298032 0.034287 0.0163531 +0.00993007 0.126906 -0.00476687 +-0.0376745 0.0379475 0.0444361 +-0.0658844 0.114191 0.045149 +0.0205436 0.121905 -0.00538746 +-0.0134808 0.108609 0.0426611 +-0.0484883 0.0960313 0.0444485 +-0.0326323 0.125019 -0.000941466 +-0.0254216 0.0999543 -0.0239282 +-0.0410688 0.11258 -0.017122 +-0.0434945 0.0676224 0.0409141 +0.0153651 0.0493118 -0.0259325 +0.00422707 0.0782528 -0.0345112 +0.0285181 0.0968051 -0.0184722 +-0.0597676 0.0796261 -0.0193897 +-0.0714963 0.118989 0.0533881 +-0.0566004 0.0335105 0.0169198 +-0.0880799 0.113511 0.0432934 +-0.0208348 0.0956185 -0.0294009 +-0.010501 0.0759377 0.0571751 +-0.0797391 0.110092 0.0425713 +0.0423965 0.0704871 -0.00480867 +-0.071352 0.110742 0.0439553 +-0.0617103 0.0604885 0.000571471 +-0.000492298 0.0605899 0.0560413 +-0.0819087 0.121685 0.0492514 +0.0133657 0.116504 -0.0155461 +-0.0035043 0.0589584 0.0540181 +-0.0700245 0.0833021 0.0413654 +0.0410401 0.0656705 0.029359 +-0.0623583 0.164673 -0.0485921 +0.027252 0.0549488 0.0409918 +-0.0568093 0.0883611 -0.0215879 +0.0409151 0.0390283 0.00994476 +0.0189976 0.0408013 0.0429893 +0.038497 0.0527286 0.031838 +-0.0436566 0.0592613 -0.0123074 +-0.0456035 0.0504974 -0.010193 +-0.0427107 0.0335694 -0.0203532 +-0.0107484 0.0348144 0.0431359 +0.0366972 0.106807 -0.00382741 +-0.0475 0.109814 0.0383224 +-0.0581584 0.0685383 0.037238 +-0.0888985 0.128369 0.0446279 +-0.0618211 0.164489 -0.0586698 +-0.0622151 0.166391 -0.0605094 +0.000668194 0.039196 0.03081 +-0.0494963 0.0974185 0.0440407 +-0.0327214 0.154341 -0.00788327 +0.00831584 0.0624371 -0.0312473 +-0.0441024 0.124581 0.0229348 +-0.00474585 0.0712867 -0.0359934 +-0.0211964 0.0725528 0.0524066 +0.0440002 0.0888695 -0.00280666 +0.0083541 0.0524293 -0.0297113 +0.0104364 0.0472441 0.0475563 +0.0130443 0.113867 -0.0167218 +0.035717 0.0533288 0.0320909 +-0.0439793 0.169659 0.00035763 +-0.0261771 0.0395393 0.0541115 +0.0142627 0.0751304 -0.0300927 +0.0172008 0.0849074 -0.0286671 +-0.0301348 0.156065 -0.00950629 +0.0153602 0.0672491 0.0520407 +0.038354 0.0547461 -0.00609927 +0.0326073 0.112448 0.0288842 +-0.0230436 0.0879523 0.0537722 +-0.0507107 0.0708743 -0.0151986 +0.00170937 0.0361659 0.0210822 +-0.0106905 0.18126 -0.0286694 +-0.0543257 0.121248 0.0372193 +-0.086895 0.143263 0.0379805 +-0.0300853 0.179019 -0.00589649 +-0.0624495 0.15591 0.022857 +-0.0597659 0.0448149 0.0126042 +0.00226448 0.0346925 0.0189009 +0.00270214 0.10527 -0.0214784 +-0.0843731 0.110309 0.0377873 +-0.0603328 0.153535 0.00105643 +-0.00601124 0.0348376 0.0423067 +-0.0419337 0.160883 0.00416203 +0.025639 0.0740461 0.0458389 +-0.0724467 0.0361675 0.00255211 +-0.0515329 0.0431219 -0.00982617 +-0.0668209 0.036036 0.0339126 +0.0328708 0.0740673 0.0404957 +0.0429413 0.0682748 0.0268013 +-0.0687158 0.171626 -0.0372714 +0.0231488 0.116662 0.0336476 +0.0322304 0.0505255 0.0340589 +-0.0869233 0.112018 0.0232463 +-0.078057 0.0907599 -0.0115869 +-0.0538087 0.119788 0.0361741 +0.00650273 0.121045 0.0359095 +-0.00425882 0.128035 0.0283342 +-0.0558184 0.158024 -0.000144968 +-0.0699106 0.10657 -0.0124287 +0.0101685 0.124401 -0.00806495 +-0.0774125 0.06897 0.0169693 +-0.0204069 0.09844 -0.0243451 +-0.0678094 0.180556 -0.0587896 +-0.0490427 0.0341369 0.0285626 +-0.0112286 0.0338605 -0.0218986 +0.0300773 0.0754873 0.0435133 +0.00030024 0.0612559 -0.033673 +0.000950727 0.129943 0.000110463 +-0.083524 0.154076 0.0213615 +-0.0688604 0.0819375 0.0416515 +-0.0674926 0.0889102 0.043735 +-0.000658033 0.0525337 -0.0307361 +-0.0805064 0.103384 0.0314383 +-0.0596514 0.142474 0.0348633 +-0.00849673 0.105867 0.0437425 +-0.0317522 0.0735748 -0.0285005 +0.0171692 0.0345228 -0.00186568 +-0.0229141 0.111944 -0.0185359 +-0.00375332 0.07411 -0.0361467 +-0.00849121 0.103027 0.0437022 +-0.0323725 0.16532 -0.00484492 +0.0250885 0.119458 -0.00473925 +0.00228893 0.0341509 0.0103163 +0.03989 0.0630598 0.0312004 +-0.0146968 0.175692 -0.019662 +-0.00218576 0.0355897 -0.0160761 +0.0318792 0.0686784 0.0407831 +-0.0783091 0.16249 -0.0249404 +-0.0807007 0.0752735 0.0231846 +-0.00686818 0.0385321 0.0081342 +-0.0114932 0.036278 -0.0256312 +-0.076524 0.178854 -0.050295 +-0.093475 0.1283 0.0242551 +-0.063929 0.0354009 0.0416662 +-0.064733 0.15377 0.0322824 +0.0293628 0.105677 -0.0139766 +-0.0544684 0.119419 -0.0121872 +-0.0878486 0.143233 0.0360974 +-0.0866257 0.081991 0.0115028 +0.0324736 0.0490215 0.0326282 +-0.0472578 0.121113 0.0280085 +0.0275416 0.0349624 0.00541796 +-0.0827616 0.091206 0.0312465 +-0.0627318 0.159944 -0.0435973 +0.0444941 0.0637658 0.0284543 +0.0512305 0.0723962 0.00737259 +-0.0374845 0.100078 0.0419234 +0.00446502 0.0977292 0.050995 +-0.090055 0.132436 0.0352224 +-0.0771832 0.107237 0.0346968 +0.0132863 0.0695708 -0.0313558 +-0.0833513 0.099287 0.0301656 +-0.050588 0.0599426 0.0326193 +-0.0116999 0.0599414 -0.0352829 +-0.0629554 0.156782 -0.0386059 +0.0452979 0.0875774 0.0181674 +0.0367705 0.074074 0.0373409 +-0.0378297 0.12794 0.00447467 +0.000472166 0.0388678 0.0256446 +0.00293826 0.0356401 -0.0151121 +0.0194959 0.11257 0.0373879 +0.0178674 0.103889 -0.0200126 +-0.0197782 0.075693 -0.0390468 +-0.0162539 0.171251 -0.016682 +-0.0719027 0.156807 -0.0389123 +-0.0816716 0.0734987 0.0125379 +0.00248698 0.0399628 0.0461692 +-0.0118767 0.105907 -0.0227385 +-0.0633264 0.159631 -0.0180726 +-0.0147126 0.0384481 0.00298688 +-0.0598094 0.0896854 -0.0200419 +-0.0586861 0.0603162 0.0231261 +-0.0518133 0.0531756 0.0296409 +-0.0201151 0.123178 -0.00639815 +-0.0197736 0.0998405 0.0442778 +-0.00649912 0.118331 0.038456 +-0.0868133 0.0846987 0.0154763 +-0.0052065 0.0389581 0.0316148 +-0.0886495 0.113065 0.0417436 +0.0045077 0.107168 0.0418669 +-0.0635616 0.174109 -0.0525858 +-0.0657828 0.082373 -0.0185031 +0.00281465 0.0379685 -0.0135285 +-0.0863919 0.099468 0.00241821 +0.0544797 0.0539552 0.0258897 +-0.0865727 0.08823 0.0252282 +-0.0778042 0.156927 -0.0169128 +-0.00349196 0.114194 0.0413026 +-0.0523232 0.13528 0.029621 +0.0359531 0.0673443 0.0378699 +0.0103588 0.130588 0.0191927 +0.0383356 0.10264 -0.0058258 +-0.0906686 0.139207 0.0161786 +-0.0534974 0.0876167 0.045276 +-0.0609918 0.138116 0.0346365 +-0.010493 0.114167 0.0405696 +-0.0260866 0.0349169 0.0485155 +-0.0519529 0.0531525 0.0236322 +-0.0670544 0.153567 -0.0495044 +-0.000486159 0.0689333 0.056515 +-0.034827 0.0929417 -0.0239227 +0.0157074 0.0821031 0.0526782 +-0.0185046 0.116829 0.0366774 +-0.0357116 0.0358916 0.0155029 +-0.0711005 0.148774 -0.0369587 +-0.0146296 0.185817 -0.0244743 +-0.0871678 0.11039 0.0183619 +-0.0897192 0.129664 0.0425949 +-0.0278047 0.074956 0.0433932 +-0.0408028 0.033851 -0.0276993 +-0.0260362 0.165356 -0.00798775 +-0.022832 0.0348259 0.0458328 +-0.0327846 0.0346162 0.0403814 +0.0292084 0.0350186 0.0149853 +-0.0908558 0.14471 0.0151666 +-0.0389013 0.0336802 -0.0215651 +-0.00950572 0.0590791 0.0548422 +-0.0252687 0.0931263 -0.0308668 +0.00727173 0.0667978 -0.0321541 +-0.0478216 0.109884 -0.018362 +0.00164525 0.0348132 0.00406568 +0.0377191 0.0632143 0.0350986 +-0.0468821 0.108426 -0.0186436 +0.0252001 0.0818001 -0.0245703 +0.00238035 0.127411 0.0292755 +0.0255053 0.103245 -0.0173339 +0.011492 0.0445292 0.0444785 +0.0458991 0.0414061 0.011234 +-0.0302302 0.0537755 -0.0183734 +-0.0870355 0.111737 0.0342553 +0.0298569 0.0835122 0.0432289 +0.0344154 0.0409101 0.0271225 +0.00697892 0.131225 0.0065571 +0.0443985 0.0748779 -0.000803542 +-0.0703751 0.112557 0.0480687 +0.0398576 0.101362 0.0261824 +-0.0146217 0.0450296 -0.0279689 +0.0305372 0.0592022 0.0405121 +-0.0427308 0.169809 0.000879537 +-0.00260639 0.0419888 -0.0252454 +0.000821596 0.0412233 0.0465397 +0.0447686 0.0889311 -0.000811854 +-0.00992934 0.166943 -0.0180552 +-0.0743075 0.170773 -0.046055 +-0.0564797 0.0356812 -0.0108166 +0.0302902 0.078207 0.0438447 +-0.0601407 0.0410386 0.0173224 +-0.0404944 0.0478337 -0.0126145 +-0.00989846 0.0384846 0.0238656 +-0.0338875 0.0780022 -0.0265044 +-0.0309197 0.0805646 -0.0325792 +-0.0788495 0.1177 0.0505094 +0.00204515 0.0345955 -0.0162029 +-0.0115453 0.0445033 0.0495732 +-0.048476 0.116631 0.0320328 +-0.0121876 0.113225 -0.0179296 +-0.0193167 0.0754023 0.0546877 +-0.0653246 0.0648097 0.0284194 +-0.0417336 0.0739469 -0.0182277 +0.0129121 0.0806948 0.0538726 +-0.087913 0.0900756 0.00446758 +-0.0459794 0.167363 0.00259136 +-0.00407632 0.124795 0.032822 +0.00214512 0.131665 0.0104804 +-0.0242177 0.0387671 0.0542484 +-0.0864391 0.131188 0.0477462 +0.0208043 0.12624 0.020186 +-0.0682771 0.163789 -0.0539724 +-0.0225729 0.172715 -0.0135004 +-0.0434823 0.12913 0.00531313 +-0.0465355 0.0790498 0.0431447 +0.0415243 0.0623608 0.0290336 +0.0206713 0.0868458 -0.0260413 +-0.0616015 0.0614498 -0.00273471 +-0.0698033 0.087974 -0.016854 +0.00908719 0.0358267 -0.00842564 +-0.0333922 0.068118 -0.0184774 +-0.0820819 0.150001 0.0344048 +0.0348029 0.113058 0.00110003 +-0.00477205 0.0345951 0.0445699 +-0.0740526 0.172196 -0.0480444 +-0.0192069 0.125855 0.0229991 +-0.0404977 0.0520197 0.0394004 +-0.0367886 0.156481 -0.0105439 +-0.0531367 0.0490718 0.026657 +0.015473 0.0962531 0.0481291 +-0.0492612 0.115146 -0.0157671 +0.0536465 0.0728799 0.00890065 +-0.0263571 0.0549776 0.0383278 +0.0333229 0.0997779 -0.013667 +-0.0551968 0.138069 -0.00309725 +-0.0563111 0.122698 0.0396267 +-0.02088 0.107273 -0.0222055 +0.000924532 0.100829 -0.0227814 +-0.0907853 0.117276 0.00630342 +-0.0134985 0.11551 0.0389419 +-0.0921826 0.114725 0.0193089 +-0.0218136 0.116051 -0.0148581 +-0.0915139 0.140599 0.0171878 +-0.0723659 0.100858 0.0389128 +-0.0227439 0.0669905 -0.0360641 +0.0133914 0.0448806 -0.0247967 +-0.0334245 0.0346344 0.0419763 +-0.083931 0.103265 0.0277985 +-0.0172469 0.116672 -0.0155678 +0.0141307 0.108667 -0.0183815 +-0.0676215 0.0688155 -0.00772966 +-0.049646 0.138599 0.0173958 +-0.0836562 0.0966099 0.0305537 +-0.0662913 0.165749 -0.0234747 +0.0434836 0.0734019 -0.00279222 +-0.0672802 0.0405919 -0.00423161 +-0.0468922 0.0334761 -0.010008 +-0.00688399 0.107372 -0.022762 +-0.0471129 0.13404 0.0104021 +-0.0613177 0.0470312 0.00669678 +-0.0857102 0.0912822 0.000468321 +-0.0564836 0.0589584 -0.00242578 +-0.0544716 0.0607811 0.0269495 +0.0392359 0.0685928 0.0338195 +-0.0907738 0.125596 0.0437739 +-0.0123469 0.0383491 0.0216787 +-0.00750765 0.123161 -0.01054 +0.0441233 0.0959295 0.00318315 +0.0262791 0.0675449 -0.0231801 +-0.0432671 0.0465873 -0.0113888 +0.00633058 0.0567988 -0.0308016 +-0.0135852 0.123715 -0.00700086 +-0.00140945 0.12836 0.0278943 +-0.0283882 0.0380697 -0.0179434 +0.0478387 0.0734572 0.0126134 +0.0038745 0.0367677 -0.0140867 +-0.05057 0.0335281 0.00739754 +0.036728 0.111857 0.010401 +-0.00844614 0.128164 -0.00189615 +-0.0247501 0.0578943 0.0408638 +-0.0467618 0.0657183 0.0385512 +0.038544 0.0726461 0.034619 +-0.00748755 0.111393 0.0423782 +-0.0658988 0.116581 -0.00961273 +-0.0415297 0.118854 -0.0137293 +-0.062219 0.164671 -0.0505894 +-0.00870995 0.128748 0.0252759 +-0.0315128 0.115295 0.0334421 +0.0503991 0.0466746 0.0233055 +-0.0753594 0.113961 -0.00568407 +-0.0866603 0.10494 0.00737931 +-0.0457163 0.0345386 0.0341935 +-0.0466235 0.0548092 -0.0105711 +-0.0516722 0.0693248 0.037985 +-0.0826957 0.0898386 0.0312187 +-0.0154881 0.0758696 0.0561745 +-0.0518084 0.0913012 -0.0220555 +-0.0751346 0.145812 -0.00886348 +-0.0732189 0.155097 0.0278276 +-0.0127272 0.0348945 -0.0256797 +-0.0698308 0.071946 0.0353261 +-0.0657288 0.163321 -0.0189522 +-0.0464914 0.08757 0.0446532 +0.0296359 0.112746 0.0324848 +0.0275411 0.044881 0.0360262 +-0.0187772 0.186086 -0.0166294 +-0.0884282 0.0874635 0.00747939 +0.0325508 0.115423 -0.000329209 +-0.0410423 0.0336551 0.000178151 +-0.0638018 0.0632948 0.0265284 +-0.0224569 0.0524128 0.0435307 +0.057327 0.0700157 0.00587175 +0.0345611 0.0740948 0.0394254 +-0.0409173 0.0351021 0.0417247 +-0.0742127 0.154103 -0.0229066 +-0.0824094 0.151775 0.0307901 +-0.0803828 0.11899 0.049226 +-0.010458 0.0953808 -0.0330949 +-0.0630414 0.149018 -0.0195802 +-0.0293211 0.123712 0.0208659 +-0.0231795 0.0622145 0.0434152 +-0.0287301 0.172704 -0.00834509 +0.00364827 0.128043 -0.00393793 +-0.0642706 0.166732 -0.060237 +-0.0108397 0.175678 -0.0290324 +0.0244048 0.112688 0.0354614 +-0.047561 0.0361661 -0.0123414 +-0.0534987 0.0427392 0.045857 +-0.0231257 0.165273 -0.0171671 +0.0388181 0.104067 -0.00210374 +-0.0356652 0.156121 -0.0104266 +-0.072524 0.106883 0.0374001 +-0.0331471 0.172636 -0.0149853 +0.040265 0.0391745 0.017119 +-0.0342456 0.0708723 -0.0195447 +-0.0687416 0.11428 0.0497375 +-0.0559525 0.0473442 0.0115659 +-0.0244817 0.107102 0.0411704 +-0.00571075 0.0627939 -0.0354611 +0.00805559 0.124767 0.0327601 +-0.0144892 0.0800879 0.0568709 +-0.0444848 0.0775765 0.0423436 +-0.063261 0.129725 0.0418859 +0.0349031 0.111324 -0.00180439 +0.00654043 0.0954774 -0.0291051 +-0.0290961 0.0410008 0.0527549 +-0.0234218 0.0738847 0.0503501 +-0.0567453 0.0342237 0.02862 +0.0376516 0.0425419 0.0281451 +0.0336732 0.115326 0.0207292 +-0.0174938 0.122238 0.0311921 +-0.073145 0.152886 0.0338966 +0.0392908 0.0660103 -0.00977956 +-0.0671096 0.125666 0.0504247 +-0.0815589 0.10988 0.0387619 +-0.00472043 0.0655745 -0.0349603 +-0.0584923 0.0818911 0.043717 +0.0395145 0.0415874 0.025748 +-0.0134628 0.0989564 0.047529 +-0.086226 0.143316 0.0387173 +-0.0675131 0.145595 0.0418048 +-0.0142233 0.174199 -0.0261217 +-0.0564238 0.0718073 0.0399857 +-0.0748487 0.0664559 0.00653551 +0.0254329 0.0835701 0.0474102 +-0.0735012 0.145587 0.0437725 +-0.0684894 0.104161 0.0391613 +0.046334 0.0533506 -0.00578803 +0.0111342 0.034487 -0.019828 +-0.0362745 0.033679 0.00474125 +-0.0580289 0.129633 -0.0066561 +-0.0674348 0.171149 -0.0382253 +0.0172278 0.0353072 0.0394845 +0.0290523 0.120756 0.00899975 +-0.0788357 0.148682 -0.00186858 +-0.0257486 0.0365571 0.0540093 +-0.076603 0.120411 0.0526033 +-0.0107827 0.0784509 -0.0379132 +-0.0283013 0.0648191 -0.0294785 +-0.0318386 0.0929851 -0.0242124 +-0.0504991 0.156412 0.0101915 +0.0435836 0.0722927 0.0259867 +0.0187342 0.112585 -0.0153321 +-0.0434831 0.0762058 0.0427502 +-0.00415334 0.0367895 0.0481682 +-0.0469304 0.116649 -0.0154073 +-0.0434764 0.0335212 0.0034233 +-0.0527322 0.0723715 -0.0160877 +-0.0593593 0.0651443 0.0328932 +-0.05784 0.0926528 -0.0211082 +-0.07134 0.156839 -0.0007386 +-0.000856246 0.103081 -0.0226647 +-0.000582144 0.0347482 -0.0236897 +-0.0384944 0.0464446 0.0402202 +0.0567142 0.0522491 0.00518691 +-0.0616825 0.0346164 0.0411183 +0.00851655 0.0758606 0.0561295 +0.0196258 0.127091 0.0083394 +-0.0719446 0.159605 -0.0399328 +-0.0356475 0.0379034 -0.0136529 +0.0172444 0.125917 0.0260258 +0.0094903 0.116849 0.0377607 +0.0232634 0.124781 0.0210949 +-0.0349607 0.125018 0.0217662 +0.0185443 0.12732 0.00510228 +0.0118903 0.0349087 0.0279111 +-0.00450764 0.0842735 0.0572857 +-0.0148777 0.0364156 0.0513074 +-0.0861402 0.0859086 0.000475654 +-0.0472303 0.164057 -0.00679428 +0.010042 0.0970288 -0.0247384 +0.0134328 0.0846923 0.0528905 +0.0456558 0.0449086 0.0258493 +-0.00349992 0.0746709 0.0587938 +-0.0719223 0.112846 0.049279 +-0.0117304 0.0670858 -0.0365895 +-0.0107336 0.0670714 -0.0363227 +0.0281295 0.110111 0.0355841 +0.00524969 0.0395071 0.0332712 +-0.030417 0.0360576 0.0517185 +-0.0191865 0.172705 -0.0222871 +0.032634 0.0954843 -0.0150589 +-0.0901468 0.129651 0.0415795 +0.015143 0.0346779 0.0251566 +-0.0926446 0.122835 0.02928 +-0.0735699 0.131215 0.0516643 +-0.0342826 0.126777 0.01609 +0.00752119 0.0813632 0.0555605 +-0.0325031 0.116645 0.0321616 +0.0237641 0.0349876 0.0120857 +-0.0592101 0.142401 0.0336275 +0.0449966 0.0931749 0.00418165 +0.0373285 0.0874946 0.0364747 +0.0175277 0.0348888 -0.0135142 +0.0451983 0.0889806 0.0171667 +0.0123957 0.0434077 -0.0245497 +-0.0759299 0.126701 -0.00794305 +-0.0895421 0.090213 0.0124508 +0.0392717 0.0938049 -0.00924672 +-0.087269 0.112677 0.0244432 +0.0369017 0.0770479 -0.0128074 +-0.019615 0.127443 0.00679651 +-0.058632 0.131139 0.0380532 +-0.0759599 0.0675387 0.00855626 +-0.0867924 0.139107 0.00519652 +-0.051888 0.0528335 0.0130005 +-0.0604943 0.108372 0.0386396 +-0.0620497 0.155563 0.0244621 +-0.0414999 0.0690877 0.0417125 +-0.000194321 0.121911 -0.011267 +0.0260147 0.0563895 0.0427437 +-0.00627779 0.0395112 0.048561 +0.0073902 0.0433817 -0.0245369 +0.00650458 0.105723 0.0419107 +-0.0890324 0.144705 0.01118 +0.0241216 0.0968854 0.045587 +-0.0284948 0.111359 -0.0178892 +-0.0842319 0.104575 0.0266516 +-0.0575865 0.0586919 0.0194779 +-0.0281815 0.125725 0.0109634 +-0.0638193 0.158306 -0.0465978 +-0.0355455 0.11407 -0.0167228 +-0.0683421 0.111385 0.0423299 +-0.0144529 0.178665 -0.0210547 +-0.00977952 0.0372711 0.0498001 +-0.0625714 0.164724 -0.0395894 +-0.088699 0.0915828 0.0224195 +-0.0594754 0.144099 -0.00268098 +-0.0925679 0.116061 0.0213084 +-0.0317212 0.0350332 0.0489115 +-0.0106525 0.165176 -0.016643 +0.00734712 0.12316 -0.0106668 +-0.0554936 0.104327 0.041387 +0.00250176 0.0620246 0.0566613 +-0.00947595 0.130265 0.0133884 +0.0276842 0.0768145 0.0453329 +0.00629218 0.0639808 -0.0323017 +0.00798329 0.130466 0.00265255 +0.0573764 0.0621793 0.0248727 +-0.0628961 0.158419 -0.0175871 +-0.0639761 0.129691 -0.00851425 +-0.0630898 0.161515 -0.0224551 +-0.0838815 0.111187 0.0425305 +0.0464938 0.0778639 0.0121785 +-0.0265128 0.116639 0.0325108 +-0.0545075 0.047347 0.012948 +-0.0677458 0.149084 -0.0355035 +-0.0687437 0.173038 -0.0415702 +-0.0258142 0.0389536 0.0363636 +0.0354622 0.0808406 0.0390375 +-0.028407 0.156859 -0.0100656 +-0.0728523 0.100773 -0.0133449 +-0.000973441 0.0353569 0.0464761 +0.0217031 0.104101 -0.0182402 +-0.0900893 0.135135 0.0242145 +-0.0209098 0.0382599 0.00734769 +-0.0384975 0.0676842 0.0417259 +0.0505086 0.0461176 0.0032623 +-0.0324927 0.0932098 0.0444316 +-0.029469 0.17882 -0.00554327 +-0.0770271 0.0743283 0.0300122 +0.0313581 0.116535 0.0255569 +-0.0772285 0.173502 -0.0405421 +0.0114915 0.130592 0.00962923 +-0.0739058 0.125263 -0.00826143 +-0.0709356 0.0780686 0.0386829 +-0.0450603 0.156487 0.00667449 +-0.00258285 0.0361873 -0.0247048 +-0.00135222 0.101336 0.0444015 +-0.0894746 0.139279 0.0281819 +-0.00967152 0.0968708 -0.0306358 +-0.0704928 0.117562 0.0527864 +-0.0678494 0.155094 0.00351036 +-0.0752747 0.175704 -0.0425921 +-0.032145 0.0863362 -0.0265533 +-0.0345086 0.0775176 0.0416541 +0.0409071 0.0711839 0.0309718 +0.0182107 0.084868 -0.0280483 +0.037986 0.0861315 0.0356473 +-0.0158582 0.107196 -0.0215252 +-0.0536497 0.0382495 -0.0113033 +0.0400088 0.107038 0.00721094 +-0.0111671 0.0867859 -0.0382994 +-0.0758579 0.0963896 -0.0129621 +0.00275941 0.0343655 0.0174794 +-0.0528912 0.109829 -0.018387 +0.0352142 0.037348 0.0177424 +-0.0770086 0.090082 0.0382275 +-0.0537852 0.0344427 0.037794 +-0.0317722 0.0335835 -0.0256749 +-0.0533077 0.12062 -0.0114531 +-0.0670377 0.155239 -0.0519345 +0.0248201 0.0343822 0.00913252 +-0.077345 0.0838842 -0.0115833 +0.0143045 0.0638067 -0.0299257 +-0.00129201 0.123843 -0.0093277 +0.0380905 0.0941294 0.0341306 +-0.0932985 0.125478 0.0122618 +-0.034118 0.163722 -0.0147399 +0.0298704 0.114081 0.0310466 +0.0255132 0.110081 0.0370706 +-0.0476672 0.0405803 -0.0117113 +-0.0472716 0.130968 0.0245047 +-0.0619845 0.128209 -0.0080954 +-0.0644855 0.0917771 0.0443552 +0.00846054 0.0341727 0.000449307 +0.000942621 0.0347668 0.0167534 +-0.0160225 0.0958165 -0.0315688 +-0.0534556 0.0353304 0.0456783 +0.0142349 0.129723 0.0106274 +-0.0726014 0.0365856 0.00586956 +0.033081 0.038417 0.0236373 +-0.0678588 0.128454 0.0493479 +0.0276968 0.0797349 -0.0226793 +0.0317217 0.0639399 -0.0186866 +-0.00482566 0.0896201 -0.0359284 +-0.0704978 0.124601 0.053003 +-0.00149487 0.115594 0.0408235 +-0.0360812 0.0358497 0.0136623 +-0.00514848 0.0385788 0.00662082 +-0.0791696 0.110508 0.0441428 +-0.0215028 0.0448835 0.0530162 +0.0173223 0.0699836 0.0514025 +0.0379734 0.0672941 0.0355158 +-0.0858805 0.0926571 0.00145452 +0.00396412 0.0977772 0.0510597 +-0.0656399 0.11715 0.0490043 +-0.0771179 0.165222 -0.035974 +-0.0198829 0.0383003 0.00206982 +-0.0187849 0.159551 -0.0109781 +-0.0655235 0.0347285 0.0315692 +0.0298088 0.0848631 0.0431899 +-0.0202144 0.186446 -0.0187314 +-0.0737921 0.165213 -0.0399888 +-0.0287531 0.0767493 -0.0350292 +-0.0108764 0.178532 -0.0297831 +0.00248459 0.114158 0.0410016 +0.0523216 0.0588453 -0.00357691 +-0.0424144 0.147803 0.00244515 +-0.0387777 0.0827042 -0.0213153 +-0.0338762 0.105703 -0.0205658 +-0.087924 0.1365 0.0420055 +-0.0747046 0.0837005 -0.0145969 +-0.0657521 0.033742 -0.00672308 +-0.045381 0.0381676 -0.0212668 +-0.0868004 0.0846768 0.00848321 +0.0294149 0.118962 0.0248216 +-0.034174 0.107559 -0.0198979 +0.0280502 0.0740858 0.0440821 +-0.0776167 0.0914005 0.037394 +0.0235133 0.0407023 0.0389233 +-0.0568656 0.102623 -0.018982 +-0.0678684 0.063022 0.000880975 +0.0360361 0.100737 0.0329764 +-0.0922724 0.125575 0.0332589 +-0.0929242 0.120168 0.0332909 +-0.018498 0.108568 0.0416031 +0.0174435 0.128281 0.0160914 +-0.0242219 0.178615 -0.0196227 +-0.0704096 0.163806 -0.0479588 +-0.0810819 0.0814326 -0.00557353 +-0.0595808 0.0380953 -0.00917151 +-0.00023307 0.0988811 0.0510016 +0.00703854 0.0344034 -0.0150394 +-0.092972 0.125468 0.0112596 +-0.00348845 0.115565 0.0406522 +-0.000499736 0.11143 0.0424297 +-0.00349598 0.0562185 0.05401 +0.0274875 0.0380349 0.0264602 +-0.0191507 0.168261 -0.0198644 +-0.0708777 0.131245 0.0502751 +-0.0591241 0.1154 0.0371963 +0.015252 0.122005 -0.00948865 +-0.0238533 0.0958019 -0.0255967 +-0.0225065 0.111294 0.03935 +0.0394335 0.0834241 0.0342316 +-0.0599597 0.121237 0.0413621 +-0.0151227 0.160977 -0.0122661 +-0.0856126 0.0792275 0.0145081 +-0.0304111 0.0336116 -0.02356 +-0.0300276 0.0875944 -0.030572 +-0.0387164 0.0695709 -0.0161311 +-0.0658849 0.153363 -0.0443952 +-0.0108819 0.168382 -0.0176467 +0.0450682 0.090383 0.0171641 +-0.0624967 0.149081 -0.013576 +-0.0222042 0.178612 -0.0212581 +0.0294982 0.120461 0.0105965 +-0.0414977 0.115265 0.0337662 +-0.0499421 0.135837 0.0234945 +-0.0843142 0.152356 0.00793113 +-0.0410616 0.156231 -0.0095971 +-0.0238697 0.104438 -0.0232028 +-0.0067213 0.065597 -0.0353344 +-0.0108037 0.0827117 -0.0384206 +0.0138699 0.049008 0.0461763 +0.016266 0.0750624 -0.0291952 +-0.0813824 0.099165 -0.00657823 +-0.0355882 0.126454 -0.000576513 +-0.0627783 0.0343233 0.0272634 +-0.0864194 0.133874 0.0462429 +-0.0424946 0.0972875 0.0422451 +-0.00875136 0.116762 -0.015718 +-0.00610573 0.035829 0.0485597 +-0.0634859 0.146784 0.0381458 +0.00949393 0.109876 0.0399119 +-0.0286135 0.0817842 -0.0355888 +-0.0785092 0.126003 0.0529555 +-0.0564526 0.0602802 -0.00348733 +-0.0632263 0.153648 -0.0346156 +-0.0212315 0.0839098 0.0563274 +-0.0185478 0.0382321 0.00966598 +-0.0629734 0.126755 -0.00855487 +-0.0607657 0.139716 -0.00595313 +-0.0192289 0.178619 -0.0235673 +-0.0154933 0.0730227 0.0553537 +0.0208153 0.0564412 0.0475406 +-0.0390833 0.0486663 -0.0122287 +-0.065493 0.153273 0.0335324 +0.0608914 0.0637395 0.0141606 +-0.0153829 0.18014 -0.0206255 +-0.0822314 0.0842513 -0.00555381 +-0.0678037 0.0880304 -0.0174902 +0.0361089 0.0577094 0.0344737 +-0.0464121 0.035458 -0.0187253 +-0.0666201 0.0338653 0.00919115 +-0.0674808 0.0688292 0.0332504 +-0.0659293 0.156005 0.0129201 +-0.0294246 0.0861745 0.0444819 +-0.0581309 0.155502 0.017154 +-0.0726537 0.15621 0.0148854 +-0.0168438 0.180138 -0.0192059 +-0.0656741 0.0356447 0.0159226 +0.0163545 0.0507599 -0.025927 +-0.0293383 0.123554 -0.00265044 +0.00679991 0.131589 0.0107583 +-0.0398245 0.0942915 -0.0229995 +-0.0945717 0.122812 0.0182725 +0.00440363 0.0390362 -0.0241943 +-0.0798195 0.105901 -0.00558882 +-0.0117856 0.0813065 -0.0386038 +0.00749342 0.0372096 -0.0118978 +-0.0744971 0.176396 -0.0436946 +-0.00968478 0.0584187 -0.0340646 +0.0312312 0.117425 0.00123717 +0.0184875 0.0976002 0.0470854 +-0.0716235 0.0693585 0.0301698 +0.039816 0.0393083 0.00327619 +-0.0835287 0.11032 0.027366 +-0.0245014 0.043543 0.0534366 +0.0370893 0.106835 -0.00283087 +-0.0567623 0.154944 0.0190948 +-0.0275761 0.125766 0.0126577 +-0.00827698 0.0408222 0.049207 +0.0553826 0.0699889 0.0228528 +0.012476 0.0976634 0.0485624 +0.0597169 0.0580863 0.0181825 +-0.0261346 0.168251 -0.00989215 +-0.0319337 0.0680008 -0.0224492 +-0.0367004 0.0680804 -0.0157124 +-0.0192371 0.0959207 0.0497533 +-0.0482812 0.115062 -0.0157267 +-0.0625405 0.132491 0.039434 +-0.0464975 0.163768 0.00545168 +-0.0809296 0.0885877 0.0337432 +-0.0341216 0.0395911 0.0493113 +0.0322123 0.0856789 -0.0192748 +-0.0822934 0.0775365 0.000511811 +0.00709964 0.0342068 0.00386204 +-0.086438 0.0832915 0.00949498 +-0.0244616 0.0474336 0.050725 +0.00565547 0.0365592 0.0251573 +-0.0274618 0.045988 0.0503593 +0.010522 0.119127 0.036469 +-0.0736141 0.151246 -0.0348888 +-0.024687 0.0892375 0.0511394 +0.00296667 0.0390863 0.0277676 +-0.0494919 0.154959 0.0103413 +-0.058864 0.139321 -0.00549203 +-0.0327877 0.082138 -0.0285334 +-0.0423065 0.150496 -0.00548521 +-0.0631749 0.149 -0.0205832 +-0.0218319 0.0363367 -0.0187811 +-0.0723757 0.0638786 0.0154336 +-0.0358563 0.126885 0.000788129 +0.0192111 0.080597 -0.0276192 +-0.0620809 0.0336347 -0.00771095 +-0.0313625 0.0510794 -0.0143586 +-0.063822 0.115596 0.0429106 +-0.0645614 0.138204 0.0400205 +-0.0824235 0.124446 0.0510342 +0.0555936 0.0567472 0.0257684 +-0.0293723 0.0422984 0.0515712 +0.0526995 0.0702438 0.0035897 +-0.0647148 0.06349 0.0261636 +0.00450679 0.0702611 0.0557926 +-0.0421206 0.171253 -0.0079388 +-0.00823225 0.127328 0.0283641 +0.0085198 0.0716538 0.0557746 +-0.0603515 0.116839 0.0389782 +-0.0758447 0.151365 -0.0158827 +-0.0913489 0.117296 0.00730629 +-0.0787438 0.101744 -0.00857364 +-0.0758718 0.109158 -0.00765228 +0.0141976 0.0850086 -0.0301852 +0.0110282 0.0968851 -0.0245853 +-0.0821235 0.0802564 0.0295192 +-0.0500787 0.154631 -0.00525635 +-0.0278864 0.105837 -0.0222471 +-0.0355149 0.0804148 0.0426568 +0.0156112 0.0519525 0.0469795 +-0.0758417 0.114903 -0.00554375 +-0.00130995 0.124776 -0.00834251 +-0.0285122 0.180211 -0.00692909 +0.0124807 0.0949598 0.0504131 +-0.0679136 0.113718 -0.0102762 +-0.0871543 0.105024 0.0183639 +0.0375648 0.0926236 -0.0120119 +-0.0297787 0.125132 0.0177406 +-0.0253546 0.121816 0.0267508 +0.0463872 0.0806547 0.00917972 +-0.0386145 0.0492284 -0.011639 +-0.0604969 0.0918487 0.0452694 +-0.0754744 0.151328 -0.022882 +0.0184783 0.101734 0.0458501 +-0.0250671 0.0385158 0.031526 +-0.0384759 0.091717 0.0434324 +-0.0394992 0.0916803 0.0429883 +-0.0668335 0.143964 0.0420823 +-0.0653424 0.0629827 0.0247148 +-0.0644392 0.112372 0.0382632 +0.0242087 0.039076 0.0343007 +-0.0535427 0.0402957 -0.0106063 +-0.082326 0.0748249 0.00451639 +-0.0544972 0.0959632 0.0436086 +-0.020823 0.0868434 -0.0377816 +-0.0636947 0.167813 -0.0415938 +-0.0448731 0.128505 0.000263047 +-0.0608825 0.0996865 -0.0185327 +0.0079329 0.0630739 0.055296 +0.00434495 0.0973121 -0.027058 +-0.091323 0.113292 0.0153266 +-0.0074977 0.0801462 0.0578122 +-0.0899881 0.118599 0.00429898 +-0.072593 0.155911 0.00171291 +0.00944326 0.128939 -0.000930002 +-0.0669203 0.110822 0.0381745 +-0.0378406 0.0957387 -0.0228102 +-0.00994641 0.0339021 -0.0251924 +-0.0261195 0.0706905 0.0432458 +0.0285346 0.121033 0.017364 +-0.0702811 0.17421 -0.0421289 +-0.00949024 0.104446 0.0436658 +-0.0877186 0.105023 0.0153645 +0.0487537 0.043125 0.0102298 +-0.0709615 0.148056 -0.0324394 +-0.0785455 0.146115 0.0422588 +-0.0777749 0.150053 -0.00387978 +-0.0747481 0.158885 -0.00783629 +0.022966 0.0347513 0.0194226 +-0.000497806 0.0842866 0.0575088 +0.0329127 0.116986 0.00902312 +0.0303386 0.119339 0.00661655 +0.0335365 0.0483507 0.0312493 +-0.0506321 0.0530807 0.0328365 +-0.0283907 0.123379 0.0211752 +0.043167 0.0831963 -0.0047762 +-0.00976599 0.121876 -0.011136 +-0.0836817 0.0786288 0.0214472 +-0.0584699 0.0344613 0.0385122 +-0.031399 0.116965 -0.0137545 +-0.0679334 0.145349 0.0422649 +0.0355447 0.11347 0.012835 +-0.0343438 0.0384811 -0.00836679 +-0.0303159 0.0678299 -0.0274662 +0.030827 0.0835413 0.0428747 +-0.0367713 0.0871639 -0.0235593 +-0.0249824 0.117062 -0.0139085 +-0.0633873 0.169402 -0.0465883 +-0.0567938 0.0498747 0.00808849 +-0.0719281 0.148635 -0.0350398 +-0.0764024 0.150045 -0.00692327 +-0.085242 0.115675 0.000251725 +0.0352163 0.0367258 0.0146563 +-0.0476332 0.0345872 0.0389835 +-0.0306482 0.0819602 -0.032565 +-0.0258283 0.172717 -0.011167 +-0.0745076 0.115686 0.0517763 +-0.0625234 0.0413191 -0.00677899 +-0.02745 0.110307 -0.0187882 +-0.0444951 0.104328 0.0415155 +-0.0774643 0.155549 -0.0139037 +0.0154943 0.105779 0.0433144 +-0.00688511 0.0982482 0.0516445 +-0.0476227 0.122378 -0.0113753 +-0.0830725 0.139367 0.045586 +-0.0431901 0.039319 -0.0232745 +0.00551778 0.0828244 0.0566316 +-0.0364708 0.152123 0.0014574 +-0.00749897 0.0815283 0.0577578 +-0.0165021 0.118207 0.0361456 +0.013481 0.0358562 0.0436245 +0.0102178 0.0836927 -0.0316174 +0.0514697 0.0462224 0.00523719 +0.0399822 0.0910991 -0.010396 +-0.0510223 0.0339346 0.00874224 +-0.0327803 0.0793117 -0.0285199 +0.0549936 0.0732019 0.0123756 +0.0461994 0.0750316 0.00518987 +0.0371924 0.0391306 0.0220088 +-0.0737191 0.152664 -0.0318934 +-0.0548531 0.149577 0.0276913 +-0.00305215 0.125834 0.0316944 +-0.021742 0.0389771 0.0371835 +0.0252695 0.0532659 -0.021679 +-0.0633235 0.0388939 0.025715 +-0.053898 0.105542 -0.0189379 +-0.0718855 0.122345 -0.00846405 +-0.0334848 0.0561021 0.0379001 +-0.0635384 0.061476 -0.00191873 +0.0137785 0.0346695 0.0230735 +0.0204936 0.1267 0.00866396 +-0.0258672 0.156547 -0.00846874 +-0.089402 0.0996815 0.0144017 +-0.010288 0.172711 -0.0218803 +0.00772266 0.115023 0.0394097 +-0.0363729 0.176071 -0.00683571 +-0.0525546 0.0444744 -0.00849373 +-0.0577063 0.155408 0.0158579 +-0.0512663 0.12652 -0.00563382 +-0.0277699 0.0661915 -0.0304661 +-0.0394907 0.0422995 0.0416287 +-0.0592646 0.0346371 0.0433189 +-0.0917594 0.117442 0.030311 +0.0188028 0.0349604 -0.00569856 +-0.0184644 0.0528818 0.0482087 +-0.0649365 0.1467 -0.0209465 +-0.0397769 0.152293 -0.00702124 +0.056742 0.0696177 0.0218717 +0.0435205 0.0637429 0.0281056 +0.0514429 0.0626408 -0.00275857 +-0.0668197 0.100942 -0.0159632 +-0.078886 0.0812827 -0.00855752 +0.0483563 0.0710513 0.00477309 +-0.0415729 0.151549 -0.00635576 +-0.0122139 0.169818 -0.0178463 +-0.0454996 0.163749 0.00555272 +-0.0779251 0.168693 -0.0322923 +-0.0455017 0.0973341 0.0429686 +-0.0932761 0.122751 0.0112823 +-0.00193792 0.0388572 0.00152241 +0.0379602 0.108292 0.00117706 +0.0447742 0.0777119 -0.00080388 +-0.0365645 0.0341557 0.0276322 +-0.077566 0.155252 0.0102497 +-0.00781043 0.0346187 0.0439246 +0.0218954 0.061892 0.0473866 +0.0229726 0.108506 -0.0149598 +0.0350891 0.111006 -0.00183676 +0.00866181 0.128565 0.0271896 +0.00435977 0.0481043 -0.0288152 +-0.00551112 0.0390255 -0.00865823 +-0.0205328 0.113457 -0.0181494 +-0.0851368 0.0832799 0.0224738 +0.00348766 0.115539 0.0402625 +-0.0174898 0.105786 0.0424611 +-0.087451 0.133828 0.0444349 +0.00492538 0.111581 -0.020193 +0.0318279 0.0713659 0.0407221 +-0.0121811 0.0984293 0.0498089 +-0.0747959 0.149331 0.0394056 +-0.0571923 0.0344404 0.0353306 +0.0154304 0.0417921 -0.0229429 +-0.0481114 0.159106 -0.00699154 +-0.0285 0.0960446 0.0448096 +0.0354946 0.0642547 -0.0137843 +-0.0204882 0.0388257 0.0339872 +0.0353716 0.0741014 0.0388421 +-0.0157653 0.161968 -0.0148041 +0.00551566 0.0799926 0.0558154 +0.0181043 0.128017 0.0106305 +-0.0644854 0.0986987 0.0423063 +-0.0415014 0.0492193 0.0396812 +-0.0900528 0.132428 0.0342227 +-0.0126494 0.0496668 -0.0310907 +-0.0321289 0.0337822 0.0109163 +-0.0625403 0.149101 -0.00657536 +-0.0124899 0.104431 0.0434394 +-0.0728072 0.15012 0.0385587 +-0.0275374 0.156717 -0.00957418 +-0.0627683 0.04307 0.0276693 +0.00651507 0.0344231 0.0163793 +-0.0631947 0.163133 -0.0265887 +-0.0264832 0.105687 0.0411729 +0.0072963 0.0341516 -0.018557 +-0.018657 0.109944 -0.0204332 +-0.0843505 0.0842533 0.0274024 +-0.0531944 0.139931 -0.000456373 +-0.0741436 0.100877 0.037779 +-0.0658548 0.0952898 -0.0176963 +-0.0504071 0.163936 0.00393123 +-0.00384396 0.0384339 0.019723 +-0.0889438 0.137894 0.0261932 +-0.017832 0.0346972 0.047013 +0.0156145 0.128768 0.00543431 +-0.0517309 0.0489114 0.0216412 +-0.0358204 0.046598 -0.0238768 +-0.059344 0.139552 0.0335155 +0.0510761 0.0567889 0.0297952 +-0.0787812 0.166656 -0.0319662 +0.030718 0.111397 0.0323042 +0.0535299 0.049514 0.0226619 +-0.0446433 0.0346533 0.0343218 +-0.0169852 0.186593 -0.0230311 +-0.0743965 0.149892 -0.0310959 +-0.0373231 0.0354917 0.0439186 +-0.000691629 0.100255 0.0478272 +-0.0818959 0.141783 0.000186922 +-0.0304023 0.0382885 -0.00186367 +-0.00349386 0.0925503 0.0560196 +-0.088924 0.151541 0.0211005 +-0.0824519 0.0856305 -0.00554258 +0.0469336 0.0511672 0.030779 +-0.0852791 0.132127 -0.000702015 +-0.0891862 0.112803 0.0347042 +0.0229651 0.0928857 0.047441 +-0.0442655 0.127665 -0.00291939 +-0.0917744 0.132406 0.0242297 +0.00738689 0.0359942 0.0260187 +0.0456627 0.0890114 0.0111648 +-0.0860966 0.11232 0.0268196 +-0.0556879 0.117086 -0.0137514 +0.0093902 0.0739182 0.0557875 +-0.0794167 0.137236 0.0495785 +-0.0893497 0.130881 0.0042394 +-0.0656682 0.0337431 0.00949839 +-0.0263524 0.059005 -0.029433 +0.0104643 0.0346107 -0.00703394 +-0.0631576 0.119928 0.0457283 +0.0423355 0.0972587 0.0241615 +0.0603447 0.0595379 0.00916361 +0.0495034 0.0488243 -0.00166079 +-0.0740753 0.155198 0.0041876 +-0.0656926 0.125639 0.0489587 +-0.00648958 0.0503786 0.0513549 +0.0381951 0.102007 0.0289909 +-0.0592102 0.0595951 0.00211544 +0.0285202 0.0622348 -0.0207982 +-0.0876555 0.144675 0.00917716 +0.0519851 0.0567984 0.0293579 +-0.0300707 0.124739 0.00148409 +-0.0725865 0.0874189 0.0409577 +-0.00281209 0.0882041 -0.0358187 +-0.0637344 0.0736795 -0.0161836 +0.0142616 0.0794232 0.0540604 +0.0458875 0.0787805 0.0205292 +0.0245051 0.0849065 0.0478503 +-0.0617895 0.083881 -0.0194032 +0.0333636 0.0364347 0.0163708 +0.0165102 0.111269 0.0389693 +0.033894 0.111352 0.0280456 +-0.00616098 0.0344967 -0.0177303 +-0.0662325 0.14347 -0.0127636 +-0.0199914 0.0962147 -0.0280142 +-0.0259005 0.126064 0.0117956 +-0.0929641 0.121523 0.0342815 +0.00656148 0.101677 0.0461619 +-0.0600389 0.0627348 0.027804 +0.0335486 0.0889696 0.0416029 +-0.0688127 0.0908552 -0.0166124 +-0.0856608 0.0854539 0.0244177 +-0.0759458 0.0974591 -0.0125133 +-0.0667171 0.171901 -0.0422833 +-0.0191016 0.0431933 0.0528315 +-0.0589426 0.0357407 0.0458703 +0.013481 0.127543 -0.00145794 +-0.0239185 0.0383353 -0.00428996 +-0.0627701 0.0824471 -0.0192325 +-0.0614696 0.136692 0.0357094 +-0.0810116 0.0734375 0.0175497 +-0.0759173 0.12523 -0.00781198 +-0.00824401 0.0384507 0.0170014 +-0.0641628 0.157463 -0.0125984 +-0.0178575 0.122517 -0.00769635 +-0.0596856 0.0659756 -0.00895149 +-0.0807952 0.106052 0.0302403 +0.0156574 0.0925729 -0.0260099 +-0.081817 0.0734713 0.00853447 +-0.052947 0.1293 -0.00466978 +0.0313864 0.0929268 0.0420114 +-0.0242749 0.174204 -0.0124276 +-0.0678958 0.0610238 0.00808464 +-0.0477867 0.135371 0.0169352 +-0.0514248 0.0500855 0.0140283 +0.0463863 0.075041 0.00619921 +-0.0120829 0.121468 -0.0106691 +0.0474936 0.0651497 0.0284001 +-0.0370341 0.127886 0.0121304 +-0.0240288 0.0385625 0.0316972 +0.0484803 0.0651161 -0.0012457 +-0.0516556 0.0569841 0.0295138 +-0.0639861 0.131146 -0.00837414 +-0.0504965 0.087636 0.0455301 +0.03603 0.0808066 0.0380541 +-0.0869174 0.117103 0.00125292 +-0.0617229 0.155313 -0.01958 +-0.0631289 0.15403 -0.0107687 +0.00528045 0.114267 -0.0191116 +-0.0639453 0.167747 -0.0398404 +0.0288613 0.0520696 0.0379853 +-0.0623548 0.166257 -0.0465894 +0.000543528 0.123331 0.0344653 +0.0375704 0.0618629 0.0348997 +-0.0391935 0.128299 0.00543562 +-0.0593991 0.0472653 0.0079341 +-0.0244003 0.0390404 0.0383653 +-0.0676508 0.0338326 0.0090061 +-0.0292136 0.07193 -0.032514 +-0.0374976 0.0861098 0.0439188 +0.0247244 0.0549721 0.0426251 +-0.0892169 0.151457 0.0141575 +-0.02429 0.121354 -0.00839434 +-0.0618416 0.098205 -0.0180486 +-0.0320742 0.0383234 -0.000421092 +-0.0488761 0.107007 -0.0192731 +-0.0476462 0.123357 -0.010393 +0.0220922 0.12286 0.0278182 +-0.00150357 0.0647954 0.0567431 +0.000502823 0.0870298 0.0569751 +-0.0581295 0.0643065 0.0321224 +-0.0188005 0.0568615 0.0490899 +-0.0794271 0.0732336 0.00151817 +0.019219 0.0848258 -0.027423 +-0.0344972 0.116614 0.0320154 +0.000192029 0.0811649 -0.0359709 +-0.0741702 0.0968478 0.0394202 +0.00621596 0.083814 -0.033411 +-0.0671177 0.159814 -0.0107973 +-0.0187526 0.0641914 -0.0363857 +0.0556876 0.0493473 0.0181935 +-0.0364983 0.059104 0.0398977 +-0.071802 0.181053 -0.0556554 +-0.0116602 0.168404 -0.0170453 +-0.0478952 0.0713156 0.0406183 +0.0354015 0.0476244 -0.00628637 +-0.0262003 0.0750789 0.0460261 +-0.0550327 0.0674609 0.0370807 +-0.0565425 0.0415574 -0.00871771 +-0.0546448 0.115434 0.0349037 +-0.0682182 0.15577 -0.00101225 +-0.066899 0.132617 0.0454244 +-0.0743656 0.172848 -0.0365047 +-0.0734703 0.155395 0.00293075 +-0.0125152 0.0589286 0.0534547 +0.00233104 0.0554199 -0.0313859 +-0.0805618 0.101855 -0.00659893 +-0.0537592 0.0797599 -0.020636 +-0.0237797 0.125538 0.0184413 +-0.0508814 0.161419 0.0066624 +-0.0742588 0.0655235 0.0100016 +0.0457502 0.0805926 0.00319942 +-0.0764848 0.142819 0.0460732 +-0.0442438 0.113637 -0.0162318 +-0.00550074 0.0870334 0.0571343 +-0.059876 0.0997119 -0.0187764 +-0.069062 0.149033 -0.0371338 +-0.0598711 0.154188 0.0296083 +-0.044481 0.0973337 0.0428134 +0.0255359 0.118038 0.0305151 +-0.000498881 0.112805 0.0421187 +-0.073083 0.0981963 0.0397086 +-0.0766217 0.068534 0.0175211 +-0.038773 0.11398 -0.0166127 +0.0194763 0.0837958 0.0507486 +-0.0809353 0.145916 -0.000819165 +0.0301953 0.0476864 0.0346108 +-0.0284906 0.0932063 0.0444855 +-0.071967 0.162417 -0.0419522 +-0.0647895 0.0838376 -0.0190209 +-0.00994817 0.0389455 -0.0113423 +0.00268547 0.035256 0.0455248 +-0.0587181 0.0481161 0.00163754 +-0.0537032 0.140954 0.0276054 +-0.0166811 0.0377146 -0.0171581 +-0.0896263 0.0969991 0.0154111 +-0.0475653 0.166962 -0.00492463 +-0.0684985 0.0986495 0.0414678 +0.0399619 0.0730961 -0.00981181 +-0.0433911 0.121364 -0.0123522 +-0.0619851 0.167813 -0.0525933 +-0.0768904 0.0733563 0.0291265 +-0.058879 0.104045 -0.0185386 +-0.0154965 0.0573571 0.0513792 +-0.0115598 0.09531 -0.0330219 +-0.0335104 0.125389 -0.00127044 +0.0292004 0.119729 0.0233163 +-0.0141909 0.171251 -0.024451 +0.00225805 0.0711729 -0.0343766 +0.000838494 0.130009 0.0243594 +-0.0186635 0.0360947 0.0525267 +0.0441946 0.0874765 -0.00278813 +-0.0347028 0.122731 -0.00776716 +-0.0478246 0.129609 0.027299 +-0.0784918 0.144814 0.0436628 +0.020477 0.0989516 0.0463466 +-0.0870404 0.113136 0.0295379 +0.012093 0.120504 0.0352323 +0.00825492 0.0739666 -0.0336091 +0.00112807 0.104475 -0.0219821 +-0.0142621 0.120334 -0.0114431 +-0.0507965 0.0345143 0.033135 +0.0311896 0.0857114 -0.0197343 +-0.0894234 0.0956355 0.01542 +-0.0775093 0.0961888 -0.0115304 +-0.0358262 0.0929298 -0.0238031 +-0.0774962 0.131676 0.0527303 +-0.0421326 0.160667 -0.0107094 +-0.0276983 0.125752 0.00966815 +-0.045336 0.129618 0.020889 +-0.00368188 0.0613041 -0.0346439 +-0.0748644 0.171601 -0.033829 +-0.0207882 0.0770942 -0.0390427 +-0.044533 0.160785 0.0064482 +-0.0789135 0.0799145 -0.00757704 +-0.0700794 0.154941 0.0289273 +-0.0313268 0.0609036 -0.0184352 +-0.0853384 0.107683 0.0213404 +-0.0624789 0.152144 -0.0275875 +-0.0427656 0.0797392 -0.0197597 +0.00722196 0.0865913 -0.0328221 +-0.0720619 0.109399 0.0395074 +-0.0911632 0.132299 0.00922827 +-0.00610552 0.129863 0.0232869 +0.02524 0.115374 0.03316 +0.00541955 0.0912903 -0.0327619 +0.00896308 0.0344141 -0.00340754 +-0.0356782 0.0636593 -0.0138055 +-0.0555057 0.153886 0.023914 +0.0207355 0.0349558 0.0059225 +0.0360179 0.0848402 0.038086 +-0.0488433 0.098515 -0.0220378 +-0.0633934 0.178218 -0.0607118 +-0.0846638 0.0778105 0.0155166 +0.0437393 0.0720229 -0.000789276 +-0.0288953 0.122588 -0.00566495 +-0.025973 0.0851197 0.051146 +-0.0782416 0.0913778 0.0366028 +-0.0494978 0.0960237 0.0444817 +-0.0785831 0.0731535 -0.00247436 +-0.0698391 0.165209 -0.0499791 +-0.0586839 0.0335669 0.00570948 +-0.0610591 0.155387 0.024814 +-0.0642828 0.163385 -0.0227384 +-0.0658667 0.0334936 -0.00108817 +0.037341 0.0888457 0.0365275 +0.02301 0.0347163 0.00286296 +-0.0590207 0.126708 -0.0075139 +0.0463679 0.0792556 0.0081871 +-0.00960203 0.0406207 -0.0262166 +-0.0771598 0.160359 -0.0157997 +-0.0425011 0.163766 0.00491011 +-0.00971544 0.177216 -0.0294611 +0.021747 0.102101 0.0439088 +-0.087802 0.139216 0.0403868 +-0.0694557 0.0421945 0.00370163 +0.0173244 0.0580274 -0.0281164 +-0.011686 0.178646 -0.0240587 +-0.0245154 0.158144 -0.00224812 +0.021637 0.0948486 -0.0224193 +0.00951901 0.0504027 0.0504431 +-0.0252093 0.112572 -0.0171753 +-0.0736758 0.108402 0.0380105 +-0.0551152 0.0341599 0.0272668 +-0.0462814 0.155049 0.00841735 +-0.0164865 0.0730277 0.0553332 +-0.0853981 0.109039 0.0213496 +-0.0817879 0.0734817 0.0075372 +-0.0543644 0.15733 0.00977334 +-0.0391365 0.0406682 0.0418102 +0.00445432 0.130749 0.00275136 +0.0247455 0.105845 -0.0161092 +-0.0554962 0.0904299 0.0451691 +-0.00849692 0.0731924 0.0575239 +-0.0665361 0.11864 0.0512424 +-0.0771905 0.152834 -0.00389169 +-0.0684956 0.0958684 0.0422138 +-0.086559 0.0806364 0.0135028 +-0.065258 0.156162 0.0146042 +-0.0134788 0.105828 0.0432751 +-0.00273284 0.0712345 -0.035418 +0.0276777 0.0972525 -0.0189451 +-0.0768441 0.113421 -0.00459179 +-0.0291819 0.174148 -0.0171874 +-0.0392913 0.0344977 0.0373408 +-0.00249868 0.0965524 0.0536599 +-0.026518 0.10985 0.0386071 +-0.0272212 0.114809 -0.0155223 +-0.0617195 0.0669875 0.0343055 +-0.0824261 0.101938 -0.00456304 +-0.0889571 0.0955775 0.00843273 +-0.0288529 0.100117 -0.0233232 +-0.0899265 0.130893 0.00523191 +-0.0346189 0.112824 -0.0174204 +-0.0154754 0.111334 0.0410203 +-0.053649 0.0335392 -0.00958395 +-0.000215874 0.126274 0.0312521 +0.00810763 0.0366956 0.0273459 +-0.0915032 0.133721 0.0182157 +0.0193574 0.0537071 -0.027254 +-0.0617049 0.070743 -0.0146345 +-0.0745149 0.121791 0.0533186 +-0.070524 0.0682803 0.0295828 +-0.0206697 0.0697068 0.051972 +-0.0918785 0.141976 0.0181723 +-0.0408421 0.0345979 0.00840679 +-0.0738542 0.15551 0.00718209 +0.0055205 0.0427186 0.0455303 +-0.065431 0.168513 -0.0346313 +0.0194077 0.0659 0.0490938 +-0.0485039 0.0876217 0.0453743 +-0.0622817 0.0458517 0.0346831 +0.0349983 0.0362655 0.0094693 +-0.0912374 0.140583 0.0161703 +-0.0884146 0.113764 0.0250911 +0.0142472 0.0860448 0.0523279 +-0.0131413 0.127389 -0.000900164 +0.0289187 0.0580129 -0.0187889 +0.00423189 0.0768627 -0.0347545 +0.0204663 0.0385832 -0.00969847 +-0.0217971 0.0348633 0.0460203 +-0.0864575 0.101794 0.0247295 +0.00132582 0.0568889 -0.0321653 +-0.0697484 0.0793376 -0.0160307 +-0.0845391 0.102087 -0.000621587 +-0.0733924 0.0656461 0.018954 +-0.0391909 0.0342717 0.0287528 +-0.065551 0.112475 0.040245 +-0.0628947 0.161497 -0.0505862 +-0.0455612 0.125305 -0.00846085 +0.0204165 0.110729 -0.0153427 +-0.0119941 0.16759 -0.0225943 +-0.0778434 0.153328 0.00140062 +-0.0743032 0.152688 -0.027892 +-0.0719627 0.134048 -0.00796724 +-0.0322554 0.0722092 -0.0264952 +-0.0689145 0.123836 -0.00886831 +-0.0292201 0.0564848 -0.022383 +-0.0336564 0.0343441 0.0369141 +0.0587559 0.0579922 0.0215357 +0.0331644 0.1138 0.0262385 +0.0155789 0.125536 -0.0032763 +-0.0511913 0.034459 0.0313456 +0.0336899 0.0357287 0.00969367 +0.0540437 0.0734433 0.0120297 +-0.0588961 0.106893 -0.0176578 +-0.0158316 0.18484 -0.0207268 +0.0120317 0.0342138 -0.0138856 +0.0335354 0.0380053 0.0222769 +-0.0118847 0.117889 -0.0148923 +0.00991822 0.0342953 -0.00310719 +0.00806259 0.0342288 -0.0204182 +-0.00962665 0.0384388 0.00947704 +-0.00349166 0.0534503 0.0541192 +0.0248931 0.108132 -0.0145556 +-0.0355172 0.106999 0.038376 +0.0298839 0.118971 0.0235707 +-0.0896201 0.0969823 0.0124196 +0.00795856 0.126912 0.0298215 +-0.0734288 0.149863 -0.0358672 +-0.0513643 0.132495 0.031006 +-0.056967 0.0535025 0.000612409 +-0.0226813 0.0349023 0.0509736 +0.0573538 0.0634191 0.00214341 +-0.0178849 0.0387376 -0.0108688 +-0.0690262 0.170476 -0.0316587 +-0.0162544 0.183109 -0.0200888 +-0.0569078 0.052097 -0.000371255 +-0.0845703 0.11062 0.0357089 +0.035496 0.0454077 0.0303438 +-0.00267498 0.100539 0.0471075 +-0.080721 0.0845507 0.0336553 +-0.0900133 0.150126 0.0131697 +-0.0628916 0.0631016 0.0268901 +-0.0739067 0.163816 -0.0379732 +-0.0313311 0.0487062 0.0434625 +-0.036476 0.0533606 0.0387027 +-0.0636484 0.15559 0.00937973 +0.0135801 0.0874029 0.0531363 +-0.0259964 0.0967524 -0.0245741 +-0.0665286 0.168031 -0.0580342 +-0.0794099 0.141428 0.0463829 +-0.0496093 0.0334738 -0.00871292 +0.0373859 0.082128 0.0365587 +-0.00650329 0.0547609 0.0534371 +0.0253836 0.0503366 -0.0210264 +-0.00332845 0.128773 0.0271941 +0.0363318 0.0601344 -0.0117401 +-0.0258635 0.103016 -0.0235702 +-0.0251408 0.168241 -0.0184358 +0.018845 0.0956057 -0.0232473 +-0.0712372 0.167165 -0.0209901 +-0.0759412 0.151358 -0.0178788 +-0.0784019 0.152013 0.0336008 +0.000968412 0.0391138 -0.00557511 +-0.0865136 0.106289 0.0083757 +-0.0623969 0.0335761 0.00673913 +-0.0769787 0.135423 -0.00568624 +0.021851 0.0591836 0.0473037 +-0.0524335 0.115217 0.0341034 +-0.0884925 0.144689 0.01017 +-0.0774954 0.147028 0.0416906 +0.00429953 0.0340852 0.0162355 +-0.0489061 0.0346101 0.0421693 +-0.0377668 0.0812615 -0.0209367 +-0.0321125 0.0496937 -0.0183514 +-0.00333701 0.121977 -0.0113118 +-0.063853 0.129717 0.0428324 +0.0122687 0.0724051 -0.0314733 +-0.0295052 0.113904 0.0347936 +0.0428284 0.0676747 -0.00179274 +-0.0665096 0.0944832 0.0425185 +-0.0324964 0.117987 0.0309791 +-0.0240568 0.0972281 0.0446316 +-0.0729302 0.128204 -0.00868672 +-0.0930613 0.118852 0.0392987 +-0.0179932 0.0940702 -0.0337993 +-0.0276364 0.0917699 -0.0296042 +0.0270825 0.114018 -0.00875387 +-0.0701334 0.160982 -0.047936 +0.0160414 0.0343167 -0.00190332 +-0.0407181 0.0336157 0.00208844 +0.0537368 0.0581963 0.0283843 +0.0459393 0.0792136 0.00418579 +0.00219887 0.0866713 -0.0341557 +-0.0874475 0.125307 -0.000719081 +0.0171658 0.0974165 -0.0229214 +-0.0555243 0.0344634 0.0339194 +0.00337546 0.131746 0.0137901 +-0.037361 0.155079 0.00374727 +-0.00966712 0.0394179 0.0374824 +0.0401633 0.102703 -0.00178896 +-0.0792807 0.167978 -0.037009 +0.0137845 0.0344 -0.00993851 +-0.0224906 0.034851 -0.0281799 +-0.0815485 0.124491 0.0516101 +0.0440694 0.0973609 0.0121636 +-0.0361101 0.0351289 -0.0167641 +-0.0672139 0.168667 -0.0295504 +0.00726635 0.0696573 -0.0326992 +-0.0474987 0.0987688 0.0431343 +-0.0879643 0.115809 0.00328051 +0.0212116 0.083355 -0.0266295 +-0.0413155 0.0345032 0.0369079 +-0.0830031 0.148729 0.00315098 +-0.0365029 0.0818729 0.0434567 +-0.0265303 0.0632322 0.0390504 +0.0560084 0.0549549 0.0021707 +-0.00162661 0.100486 0.0474782 +-0.00782745 0.0882395 -0.0367822 +-0.0874416 0.113109 0.00532366 +-0.0755108 0.126011 0.0529241 +0.0317406 0.107408 0.0337947 +-0.0280888 0.121741 0.0242898 +-0.0114519 0.126605 -0.00415103 +-0.00942316 0.129915 0.019193 +0.0305901 0.117314 -0.000462026 +-0.00449008 0.116939 0.0397737 +-0.0174829 0.0365879 0.0522725 +-0.0480399 0.136313 0.0145941 +0.0078895 0.0386539 0.0453509 +-0.059976 0.125502 0.0413668 +0.00922467 0.131237 0.0102208 +-0.0164537 0.0924837 0.0552632 +-0.0397063 0.0680709 -0.01554 +0.0144891 0.0990552 0.047648 +-0.0194892 0.0771957 0.0553527 +0.00314961 0.0344334 0.00286196 +0.0322227 0.0828447 -0.0192606 +-0.086166 0.115735 0.00128445 +-0.0628659 0.161473 -0.0525859 +-0.0897633 0.133813 0.0392039 +-0.0931113 0.126933 0.0272608 +0.0442448 0.0902943 -0.00180307 +0.0383075 0.041189 0.0258499 +-0.038679 0.0636652 -0.0136088 +-0.0640888 0.165507 -0.029848 +0.00695321 0.13108 0.0193768 +-0.0281007 0.162292 -0.0150733 +0.0192374 0.0749637 -0.0278698 +0.0244608 0.0941673 -0.021671 +0.0131476 0.100265 -0.0227775 +-0.0301385 0.166718 -0.0165418 +-0.0651412 0.159482 -0.0565006 +0.0342867 0.0700233 0.0389954 +-0.0695171 0.141232 -0.00845814 +-0.0904292 0.148866 0.0241237 +-0.0253439 0.0693349 0.0439513 +-0.0623474 0.166249 -0.0485903 +-0.0193027 0.0445534 0.0525624 +-0.0258791 0.105846 -0.022482 +-0.0331634 0.0381954 -0.000525199 +-0.0640739 0.0617863 -0.0011495 +0.0413993 0.0942972 -0.00577735 +-0.030183 0.155051 -0.00785968 +-0.0209835 0.159643 -0.00415092 +0.0227131 0.118044 0.0330191 +-0.0268485 0.124528 0.000469072 +-0.0241773 0.17417 -0.0202285 +-0.012912 0.0339283 -0.0204101 +0.0235417 0.109895 0.0378397 +-0.0800641 0.107437 0.0308747 +-0.0374695 0.0383458 -0.0088734 +0.0372523 0.0646113 0.0362056 +-0.0324907 0.0817336 0.0416408 +0.0138217 0.125251 -0.00497301 +-0.0427639 0.126553 -0.0057736 +-0.0467249 0.0753156 -0.0175399 +-0.0861037 0.109061 0.0193453 +0.0206619 0.0348672 0.0224824 +-0.0804996 0.127434 0.052885 +0.00919876 0.0964636 -0.0261302 +-0.0321423 0.0806683 -0.0305334 +0.0242996 0.120934 0.0286395 +-0.0429021 0.171269 -0.00696466 +0.0145253 0.126603 0.0278836 +-0.0657391 0.142564 -0.0101503 +-0.0125598 0.0943837 -0.0340846 +-0.0809608 0.0720856 0.0135459 +-0.0230054 0.0386784 -0.0118395 +-0.0234022 0.157317 -0.0083471 +-0.0700956 0.06197 0.00856658 +0.0361469 0.0875521 0.038321 +-0.00703497 0.101085 0.0445106 +-0.0217097 0.181473 -0.0209735 +-0.0310875 0.179405 -0.00921261 +0.00340822 0.117733 -0.0168392 +-0.0306641 0.062253 -0.0214244 +-0.00851812 0.0604987 0.0555487 +-0.0105044 0.0745085 0.0567054 +-0.00265316 0.0511482 -0.0311061 +-0.0764634 0.157616 -0.00941011 +-0.0224335 0.0371726 0.0541058 +-0.0432016 0.171084 -0.00202068 +-0.0523174 0.057382 0.0266177 +0.0595665 0.0566863 0.0161765 +0.00171621 0.126464 -0.00619605 +-0.0635036 0.095949 0.0432601 +-0.00748541 0.0856517 0.0572176 +-0.0142172 0.114376 -0.0171381 +-0.0106623 0.0511436 -0.032067 +-0.0292482 0.0345559 -0.0204636 +-0.0369573 0.0340894 0.0258321 +-0.0544756 0.0413314 0.0465715 +-0.0940023 0.125512 0.016258 +-0.0685195 0.0916417 0.0424016 +-0.076491 0.140037 0.0480957 +-0.021763 0.159801 -0.0034487 +0.0107652 0.110575 -0.0191667 +-0.0296434 0.0486725 0.0446006 +0.0205709 0.0463131 0.0417824 +0.0371829 0.0726727 0.036151 +0.00170794 0.1258 0.0319097 +0.00812607 0.108726 -0.0199063 +-0.088847 0.0874807 0.0104655 +-0.0614823 0.0761372 0.0417782 +-0.077632 0.077285 -0.00766199 +-0.0914347 0.132413 0.0262297 +-0.0380759 0.16073 -0.01276 +-0.0580841 0.132712 -0.00634758 +-0.00546375 0.117984 -0.0150376 +-0.0825526 0.110518 0.0415894 +-0.0567945 0.0589511 -0.00142935 +-0.00849356 0.0842936 0.0575382 +-0.0464941 0.0987388 0.0427545 +0.0199235 0.0365522 0.038924 +-0.0181358 0.159669 -0.00704365 +0.0214919 0.0906421 0.0482356 +-0.0308996 0.107699 -0.0200324 +0.0310327 0.118783 0.0168832 +-0.049761 0.069112 0.038562 +-0.0388211 0.091456 -0.0235256 +-0.0139638 0.180133 -0.0220777 +0.0153381 0.127037 -0.000904662 +-0.0219975 0.107603 -0.0219593 +-0.0448317 0.0927682 -0.0220335 +-0.0127292 0.0909963 -0.036642 +0.0174939 0.0350076 -0.00788091 +-0.016176 0.165587 -0.0188354 +0.0276821 0.0862408 0.0453967 +-0.00121407 0.102594 0.0440764 +-0.0167645 0.162218 -0.0151135 +-0.0446938 0.0665983 -0.0153032 +-0.0709583 0.135514 -0.00804855 +0.0152869 0.0794603 0.0538116 +-0.028039 0.0849631 0.0475609 +-0.0252122 0.108563 -0.020971 +-0.0501485 0.141642 0.00337658 +-0.0802229 0.143442 0.044034 +-0.0728736 0.0659781 0.0205309 +-0.083982 0.134868 -0.000717316 +-0.070349 0.172644 -0.037875 +-0.015485 0.0673895 0.0543529 +-0.0374989 0.108379 0.0375203 +0.0194281 0.0399108 -0.0177171 +-0.0508059 0.0898498 -0.0218327 +-0.0916067 0.130926 0.00923792 +-0.0657827 0.158229 -0.0103034 +0.00352818 0.0386899 -0.0121702 +-0.0147383 0.10835 -0.0207588 +-0.0496313 0.111407 -0.0178803 +-0.0413837 0.128875 0.00906534 +-0.0523163 0.134709 -0.00240246 +0.00961512 0.122501 0.0348066 +-0.0755017 0.140041 0.0481 +-0.0678883 0.145704 -0.022127 +-0.0230319 0.0374462 0.0541561 +-0.00425848 0.0961384 -0.0318255 +-0.0895594 0.135155 0.0312102 +-0.0623104 0.0594537 0.00702264 +0.00422975 0.0796448 -0.0342885 +-0.0618471 0.153751 -0.0215773 +-0.00905798 0.034739 0.0470958 +-0.0575286 0.126935 0.0396404 +-0.0298496 0.180049 -0.0116061 +-0.0317613 0.0567558 -0.0133876 +-0.0839019 0.105911 0.0262878 +-0.0715304 0.102729 0.03849 +0.0144241 0.127312 -0.00121761 +-0.0787914 0.14589 -0.00282549 +-0.00925999 0.0421824 0.0495336 +-0.0284001 0.0385729 0.034376 +-0.0690967 0.148938 0.0398784 +-0.0561651 0.153258 0.0280528 +0.0408211 0.10424 0.0171662 +0.0569661 0.0701435 0.00568959 +-0.0318479 0.09723 -0.023215 +0.00233723 0.0391647 0.0293747 +-0.0839319 0.117006 0.0485566 +-0.0310508 0.0693178 -0.0264576 +-0.0270974 0.0794315 0.0481933 +-0.00975454 0.0728065 -0.0376393 +-0.0907216 0.131054 0.0332303 +-0.00149823 0.0535022 0.0547476 +-0.0920442 0.126938 0.0322524 +-0.049095 0.140149 0.0113941 +-0.0605441 0.113772 -0.0142303 +-0.00976932 0.0756525 -0.0380331 +-0.0878532 0.127045 0.0464651 +-0.010533 0.178644 -0.025906 +0.0593699 0.0691831 0.0171767 +-0.024781 0.0769658 -0.0376048 +0.0423711 0.0575006 -0.00528711 +0.0460928 0.061454 -0.00359733 +-0.0408554 0.101386 -0.0212924 +-0.0446853 0.169846 -0.00596698 +-0.0499657 0.0572278 0.0334797 +-0.0145604 0.127706 0.0231688 +-0.0624931 0.153672 -0.0316068 +0.0559752 0.0635544 0.0263749 +-0.0741944 0.0678888 0.022137 +0.0128784 0.0534523 0.0500797 +-0.014497 0.082865 0.0570346 +0.0100519 0.0351376 0.0435561 +-0.0764979 0.135856 0.0507679 +-0.0505672 0.0545537 0.0173366 +-0.073291 0.0682485 0.025526 +0.0168973 0.0504721 0.0453108 +0.0597511 0.0567143 0.0111681 +0.00962081 0.119433 -0.0146957 +-0.0261763 0.0931476 0.0454624 +-0.0034975 0.0661744 0.0565538 +-0.0174573 0.0601724 0.0514531 +0.0587589 0.059387 0.00417226 +-0.0388249 0.122181 0.0278208 +-0.0685252 0.175096 -0.0570393 +-0.0628061 0.0896011 -0.0190246 +0.0306772 0.118704 0.0210209 +-0.0655003 0.083298 0.0438708 +0.0560223 0.0713695 0.00682475 +-0.0298518 0.100096 -0.0230635 +-0.0422245 0.148296 -0.00246029 +-0.00149333 0.112805 0.0421166 +-0.0829153 0.0925695 0.0313446 +-0.0394018 0.0468721 -0.0179145 +-0.0784825 0.135851 0.0506454 +-0.0734876 0.127439 0.0525898 +-0.0280931 0.033441 -0.0266965 +0.0607571 0.0609589 0.0141669 +-0.0692316 0.172989 -0.0403442 +-0.0397906 0.162354 0.00198884 +-0.0505067 0.0805184 0.044061 +-0.0716519 0.156794 -0.0409079 +0.0407885 0.10564 0.00816522 +-0.00717727 0.0999816 0.0485274 +-0.0646289 0.156694 -0.0465976 +-0.089623 0.0983355 0.0134109 +0.00279805 0.0339767 -0.0211497 +-0.0142152 0.17272 -0.0253585 +-0.0396036 0.174135 -0.00601981 +-0.0669938 0.0358141 0.0313063 +-0.0497731 0.0627792 0.0345527 +0.0229897 0.121378 0.0295865 +-0.0457551 0.0336493 -0.0154708 +-0.0539285 0.152376 0.0223916 +-0.0664975 0.108359 0.0380432 +0.0293811 0.04325 -0.00550019 +-0.0166832 0.0525719 -0.0322771 +0.0164877 0.105762 0.0431793 +-0.0171637 0.0956465 -0.0313986 +-0.0314959 0.111117 0.0366419 +-0.0788622 0.169438 -0.0409605 +-0.0673163 0.13687 0.0448543 +-0.00450662 0.0828853 0.0572758 +-0.086732 0.125284 -0.00171301 +-0.0339024 0.123839 0.0236394 +-0.0665906 0.0686018 0.0336345 +-0.0647932 0.143933 0.0397518 +0.0283692 0.0466516 -0.00870467 +0.0329293 0.104175 -0.0123189 +-0.0761401 0.0728821 0.0296904 +-0.0142042 0.169737 -0.0232161 +-0.068634 0.151185 -0.044245 +-0.0135754 0.0347863 -0.0255909 +0.019989 0.0436019 0.0426848 +-0.015693 0.057044 -0.0346551 +-0.00164401 0.0482043 -0.0300627 +-0.0311183 0.172722 -0.00474304 +-0.0250193 0.118984 -0.0119284 +-0.0325683 0.124672 -0.00180773 +-0.0781672 0.0694403 0.0164131 +0.0335232 0.0673414 0.0396281 +-0.0927165 0.117489 0.0383035 +0.0402856 0.10561 0.017163 +-0.0284035 0.166813 -0.0078902 +-0.00473635 0.13076 0.00793547 +-0.0216948 0.0386212 -0.00966204 +-0.0436382 0.11786 -0.014681 +0.0533192 0.0587911 -0.00291354 +-0.0153516 0.0970497 -0.0288687 +-0.0434963 0.0661943 0.0406667 +-0.0466152 0.145766 -0.000178732 +-0.0206008 0.0386838 -0.0150911 +-0.0509261 0.0335608 -0.00538789 +-0.0896998 0.137926 0.0341919 +-0.0278811 0.0378156 0.0189805 +0.0364086 0.0854455 -0.0167057 +0.0349072 0.0875927 0.04003 +-0.0243811 0.0738035 0.0484997 +-0.0470246 0.133586 0.0187098 +0.00950521 0.0772084 0.0556135 +-0.0192998 0.0985099 -0.0244 +0.0447739 0.0438422 0.0248039 +-0.0504965 0.0819144 0.0441383 +-0.0346492 0.0577427 -0.0111408 +-0.048101 0.135891 0.0168055 +0.00147386 0.103921 -0.02207 +0.0494979 0.0678406 0.0265165 +0.00621357 0.0880484 -0.0332214 +-0.0763594 0.158279 -0.023921 +0.0359549 0.0646627 0.0378653 +-0.0462327 0.128102 0.0242709 +-0.0570384 0.142741 -0.0023851 +-0.0156536 0.0496375 -0.0309655 +-0.0157015 0.164 -0.0105798 +0.0160661 0.0349193 -0.0155613 +-0.0555615 0.0615422 -0.00607893 +-0.0506452 0.142899 0.00154993 +0.0227041 0.124378 0.0023667 +-0.0690811 0.0343024 0.0100819 +0.0296092 0.114943 -0.00583865 +0.0252655 0.0864752 -0.0236184 +-0.0579352 0.153021 -0.000467328 +-0.0699851 0.168026 -0.0510102 +-0.0649515 0.126767 -0.00875296 +-0.0310902 0.124844 0.00108587 +-0.07951 0.149797 0.0367578 +-0.0514931 0.156432 0.0104716 +-0.0854224 0.0885478 -0.00153705 +-0.0622051 0.0333895 -0.00205752 +-0.00958914 0.0376967 -0.0257201 +0.0438525 0.0874765 0.0251696 +-0.00448652 0.114189 0.0411781 +-0.0741351 0.0860483 0.039718 +-0.0162681 0.118552 -0.0135478 +-0.00571384 0.0655793 -0.035147 +-0.051609 0.164108 -0.000948719 +-0.0346229 0.116833 -0.0136016 +0.0105065 0.107115 0.0414414 +-0.0484736 0.0917654 0.0440291 +9.10767e-05 0.108392 -0.0207972 +0.0522547 0.0611036 -0.00320855 +0.00856462 0.11946 -0.0147195 +0.0326237 0.0768475 0.0419257 +0.0282302 0.0872832 -0.0216049 +-0.0693757 0.155378 0.0277002 +-0.0182673 0.180142 -0.0177524 +-0.0285043 0.0545632 0.0363758 +-0.0218074 0.0756618 -0.0388536 +-0.0633749 0.1608 -0.057006 +-0.0892506 0.151522 0.0201032 +-0.0472272 0.0642822 0.0376403 +-0.0699509 0.134055 -0.00826728 +-0.0820286 0.074884 0.0125291 +-0.0576046 0.151067 0.0326375 +-0.0425494 0.0346163 0.040046 +-0.0619058 0.105434 -0.0174028 +-0.0753497 0.108878 0.0391875 +-0.0594974 0.0946317 0.0447571 +0.013384 0.078066 0.0545225 +-0.0431375 0.160652 -0.0100842 +-0.0258359 0.0945143 -0.0266147 +-0.0245117 0.0536384 0.0409132 +-0.0664072 0.169883 -0.0364165 +-0.0726615 0.0640995 0.00799778 +-0.0451579 0.0395668 -0.0202936 +-0.00773777 0.0727528 -0.0370634 +0.0135086 0.116829 0.0366875 +-0.0836964 0.106272 0.0263573 +-0.0303071 0.0339954 0.0147064 +-0.000759903 0.102685 -0.0227147 +0.0258263 0.0624492 -0.0231007 +-0.0674047 0.179923 -0.0541082 +-0.0857367 0.111526 0.0418488 +-0.0560454 0.148678 -0.00182226 +-0.0476918 0.0635243 -0.0129244 +-0.0642806 0.164881 -0.0270495 +-0.0574962 0.108397 0.0389105 +0.00241269 0.0347278 -0.0230504 +-0.00449379 0.0548276 0.0540049 +-0.0627171 0.147502 -0.0125815 +-0.0213288 0.0581411 0.0459349 +-0.0608837 0.0367165 0.0449842 +0.0211328 0.126504 0.0131782 +0.00740015 0.0418656 -0.0238182 +-0.0737971 0.148055 0.0412991 +-0.00374732 0.0726737 -0.0357771 +-0.0204954 0.103009 0.0433484 +-0.0210495 0.127369 0.0106273 +0.0306407 0.0431175 0.0298982 +0.0109957 0.0698921 0.0545336 +-0.0439898 0.0350927 -0.0256307 +-0.0670986 0.0347786 0.0136227 +0.0215717 0.0401714 -0.00970048 +0.0214864 0.0934187 0.0477129 +-0.0174765 0.0715932 0.0547125 +-0.0246025 0.0824997 0.0540808 +-0.0774249 0.155543 -0.015906 +-0.00557868 0.109705 -0.0221876 +-0.00234233 0.10113 0.044176 +0.0314145 0.0384146 -0.00113672 +-0.0708385 0.0965734 -0.0156262 +-0.0358426 0.0345846 0.0397566 +0.0166934 0.111749 -0.0164123 +-0.0461447 0.0396778 -0.0162811 +0.0460542 0.0820303 0.0141751 +0.024254 0.0776067 -0.0252579 +-0.0585858 0.14384 -0.00236725 +-0.0590542 0.155341 0.0226214 +-0.0425019 0.049221 0.0396798 +-0.0737231 0.156865 -0.0279142 +-0.0640946 0.155219 -0.00966954 +-0.0136075 0.0420889 -0.0267571 +-0.0149109 0.0391012 0.0366853 +-0.0768619 0.116386 -0.00596474 +0.0464851 0.0651547 0.0281822 +-0.0672589 0.077344 0.0400985 +-0.0768893 0.176966 -0.046083 +-0.0870251 0.136346 0.00321516 +-0.046566 0.128368 -0.00156221 +-0.0881324 0.103677 0.0173573 +-0.0358716 0.10426 -0.0206916 +-0.00158589 0.110252 -0.0207823 +-0.0645869 0.117148 0.0471018 +-0.0493593 0.121175 0.032055 +0.00351232 0.0575709 0.0538233 +-0.0114209 0.107659 -0.022044 +-0.0134464 0.0388153 -0.00818864 +-0.0485053 0.108444 0.0391022 +-0.0783276 0.0839475 -0.0105972 +-0.0422429 0.129048 0.0117038 +0.0230175 0.0903576 -0.0236845 +-0.0840147 0.0993167 -0.00358504 +-0.0538991 0.108397 -0.0185513 +-0.00168424 0.0583535 -0.0329231 +0.00135578 0.0347199 0.040341 +-0.0858041 0.131212 0.0485351 +0.0546169 0.0694261 0.0240301 +0.0349752 0.0684447 -0.0157877 +0.0095201 0.0716259 0.0554078 +-0.00749453 0.0952341 0.0547544 +-0.019553 0.163976 -0.00913576 +-0.0640343 0.0457636 0.00169557 +-0.017901 0.0381554 0.0134869 +0.0133255 0.0594987 -0.0290386 +0.00648582 0.047441 0.0497645 +-0.0239518 0.123773 0.0227902 +-0.0318252 0.0609455 -0.0174329 +-0.0928746 0.122834 0.0282828 +0.00226062 0.131309 0.0062251 +-0.0414935 0.112526 0.0356807 +0.0202561 0.0791555 -0.0271913 +-0.0331056 0.0338156 0.0161014 +0.0297787 0.0446629 0.032196 +-0.0792621 0.084024 -0.00957002 +-0.0697175 0.155623 0.0028257 +-0.0391149 0.0337868 -0.0291782 +-0.0893977 0.135151 0.0292068 +0.04371 0.0987542 0.0111628 +-0.0281559 0.0380199 0.00608926 +0.0552084 0.0493743 0.00621284 +-0.0861539 0.149931 0.0300167 +0.042296 0.0775058 -0.00576261 +0.0415736 0.0765545 0.0302447 +-0.0532046 0.133931 0.0318349 +-0.0939252 0.118758 0.016301 +-0.027019 0.123094 -0.00421217 +-0.0471842 0.0355635 -0.0162689 +0.0137449 0.12859 0.0232984 +-0.0388402 0.0957243 -0.0226737 +0.0393482 0.0966985 0.0306886 +0.0405486 0.0596459 0.0301455 +-0.083332 0.0992842 -0.00460735 +0.0403123 0.0491555 -0.00629774 +-0.0135559 0.0378433 -0.0166597 +-0.0655014 0.0958911 0.0424957 +-0.00976126 0.0358952 0.049479 +-0.0624412 0.150596 -0.00171821 +-0.064981 0.131148 -0.00860586 +-0.0763864 0.109432 0.0420745 +-0.00149437 0.0801423 0.0576885 +-0.0163316 0.166866 -0.0132843 +-0.0862104 0.140486 0.00518463 +-0.0484837 0.159357 0.00832828 +-0.063685 0.169395 -0.0455915 +-0.0676574 0.0344024 0.0120657 +-0.0324957 0.0889348 0.0439847 +-0.0285919 0.0494861 -0.0235098 +-0.0925344 0.124191 0.0302708 +-0.0898664 0.135182 0.0372006 +-0.0675175 0.146991 0.0409028 +-0.0643109 0.0721294 0.0381075 +0.0336777 0.107392 0.0312726 +0.0416487 0.0806113 0.0304012 +0.0108925 0.130607 0.00797847 +0.00350574 0.071674 0.0559901 +-0.0687556 0.0680025 -0.00564855 +-0.0668955 0.116554 -0.00922261 +-0.0147132 0.0599449 -0.0358879 +-0.023059 0.0825255 0.0553698 +-0.0305016 0.108423 0.0388291 +-0.0575086 0.0507939 0.00466306 +-0.0811465 0.155009 0.0163089 +-0.0281138 0.125637 0.0139342 +0.00450187 0.0575756 0.0536585 +-0.0124992 0.0745024 0.0565746 +0.030795 0.119096 0.00823469 +0.0112449 0.0943173 -0.0278535 +-0.00350029 0.0856691 0.0572933 +-0.0135749 0.18083 -0.0284353 +-0.0387321 0.0724952 -0.0174162 +-0.0366243 0.151025 -0.00298791 +0.0282135 0.0579727 -0.0197309 +-0.0828916 0.0775885 0.00151125 +-0.00164877 0.0496874 -0.0307148 +0.0386307 0.106935 0.00116239 +-0.0871923 0.0861012 0.021463 +-0.0760841 0.104861 0.0354581 +-0.0244788 0.0486839 0.0492934 +-0.0883766 0.141855 0.0366703 +-0.0509887 0.143164 0.0163768 +-0.0496168 0.0561697 -0.00993077 +-0.00378208 0.0390472 -0.0102032 +-0.0843646 0.087116 -0.00354087 +0.00990951 0.0819581 0.0548044 +-0.0425006 0.0888114 0.0424593 +-0.0728637 0.099356 -0.013752 +-0.0206243 0.0436469 -0.0283402 +-0.0828496 0.117685 -0.00271563 +-0.0715585 0.181081 -0.0541999 +-0.0338561 0.0475081 -0.0226504 +0.00224005 0.0768974 -0.0352993 +-0.0935755 0.117419 0.0183042 +-0.0754318 0.155396 0.00808247 +-0.0674328 0.172594 -0.0425404 +0.027377 0.122298 0.0126488 +0.0174898 0.0874014 0.0499964 +0.0109848 0.123169 0.033628 +-0.0367194 0.0710436 -0.0172369 +-0.0285781 0.0423048 0.0521933 +0.033068 0.0984004 -0.0141329 +-0.0475947 0.0601221 0.0367025 +-0.0635768 0.155628 0.0253794 +0.0262764 0.100811 0.0416679 +0.0147323 0.129513 0.0122405 +0.0321413 0.0366814 0.019545 +-0.00794631 0.127212 -0.00487976 +0.0374618 0.0376657 0.00680115 +-0.0450017 0.0355455 0.0439167 +-0.0613089 0.0634913 0.028639 +-0.0275028 0.0988006 0.0435593 +0.051337 0.0560222 -0.00385605 +-0.0701879 0.175082 -0.0550269 +-0.0424973 0.155091 0.0068798 +-0.0156018 0.0435495 -0.027203 +-0.0387577 0.0797624 -0.0199123 +0.036687 0.0909845 -0.0142871 +-0.0621605 0.170953 -0.0526019 +-0.0503178 0.0515583 0.0186309 +0.0183954 0.0645286 0.0493775 +-0.0816036 0.0774754 -0.00149976 +-0.0167638 0.0728801 -0.0389011 +-0.0612458 0.141043 0.0360828 +-0.0650382 0.153613 0.000196596 +-0.0506214 0.0416531 0.0455899 +-0.0218256 0.086832 -0.0376579 +-0.0368977 0.110447 -0.0189068 +-0.0390704 0.124042 0.0247581 +-0.0145052 0.0544906 0.0506759 +0.0346875 0.0955379 0.0380285 +-0.0427281 0.0478381 -0.0112773 +-0.0589463 0.0436711 -0.00636451 +0.044641 0.0945606 0.00417916 +0.0417801 0.041383 0.0227466 +-0.066757 0.170863 -0.0580345 +-0.0104152 0.0998773 0.0473736 +-0.0467325 0.133652 0.0114554 +-0.0376877 0.163829 -0.000238726 +-0.0725153 0.142823 0.0458217 +0.0207674 0.103342 -0.0194283 +-0.00540678 0.121074 -0.0123374 +-0.0424989 0.102887 0.0413486 +-0.0462349 0.0354247 -0.01929 +0.0180016 0.125305 0.0262968 +-0.0162469 0.184587 -0.0200786 +-0.079084 0.0994215 0.0343706 +-0.0557053 0.132552 0.0352577 +-0.0512629 0.0388692 0.0464256 +-0.0515065 0.160835 0.00704803 +-0.0826893 0.152358 0.0291683 +-0.0584964 0.0932599 0.0452695 +0.024564 0.103479 -0.0175815 +-0.0846694 0.0831371 0.000497005 +-0.0865668 0.118992 0.0483015 +-0.0192412 0.184576 -0.0155995 +-0.00659114 0.03769 -0.0254352 +-0.0245806 0.124862 0.0196194 +-0.0368731 0.105664 -0.0202847 +-0.0621883 0.177235 -0.0596222 +-0.0672213 0.1608 -0.0122924 +-0.0303274 0.0375897 0.0276802 +-0.0234293 0.0522884 0.0423691 +0.0538492 0.0711959 0.0223128 +0.00550075 0.0772523 0.0562045 +0.0438483 0.076237 -0.00278527 +0.00633738 0.0581963 -0.0307089 +-0.0646256 0.0674757 -0.0084666 +-0.0310521 0.0450006 0.0489427 +0.0109104 0.126748 -0.00460652 +-0.0409513 0.128783 0.00774742 +-0.000502218 0.0938722 0.0552243 +-0.0166066 0.035315 -0.0186674 +-0.02118 0.169768 -0.013264 +-0.048723 0.166988 -0.000980568 +0.0301667 0.116977 -0.00204442 +-0.0129037 0.181603 -0.0240442 +-0.0461681 0.033576 -0.00628041 +0.0377831 0.0813859 -0.0147095 +-0.050774 0.143198 0.0153986 +-0.0591392 0.118534 -0.0111826 +0.0601642 0.0622865 0.0071402 +0.0055201 0.0674746 0.0556049 +0.0539548 0.0603844 -0.00239402 +0.0345037 0.0468848 0.0307194 +-0.0226112 0.04084 -0.0289768 +-0.088041 0.0995721 0.00642464 +0.0313753 0.111403 0.0314731 +-0.0818093 0.0776109 0.0245029 +0.0196586 0.112307 -0.0150514 +-0.0547371 0.114833 -0.0154193 +-0.00335753 0.11894 -0.0140663 +-0.0675878 0.0614559 0.0185068 +-0.0374891 0.0973119 0.0427062 +-0.0618754 0.0967815 -0.0181397 +-0.0177948 0.161129 -0.00657359 +-0.0762411 0.0901005 0.0388673 +-0.00749994 0.0647419 0.0560829 +-0.0872439 0.132483 0.0457019 +-0.0207923 0.0756874 -0.0390657 +0.00773677 0.0341095 0.00222437 +-0.00405506 0.101077 0.0451334 +-0.0537766 0.0826585 -0.0215583 +-0.0484986 0.0425777 0.0442245 +0.0370248 0.10907 0.0248298 +0.0550045 0.0727719 0.0183019 +-0.0531047 0.0345095 0.0361399 +0.0240424 0.122784 0.0256717 +-0.0321586 0.0349269 0.0472031 +-0.0487458 0.123267 -0.0102852 +0.0164927 0.107123 0.0418084 +-0.0518639 0.0999443 -0.0218198 +-0.0259535 0.0592275 0.0392168 +-0.0169683 0.186741 -0.0196674 +0.012157 0.123544 0.032833 +-0.0236685 0.0919017 0.0500491 +0.0048864 0.127407 -0.00526463 +-0.00324909 0.0389153 -0.000648163 +0.0108689 0.0576426 0.0524778 +0.0396737 0.107002 0.0161655 +-0.0816849 0.073475 0.00953613 +-0.0743109 0.165184 -0.0390136 +-0.0728909 0.120866 -0.00826881 +0.040969 0.0926354 0.0294955 +-0.00410534 0.0385566 0.0231802 +-0.0167703 0.0742961 -0.0390024 +0.0376363 0.109584 0.0207569 +0.00538144 0.0464854 -0.0270709 +-0.0503176 0.0388958 0.046006 +-0.0793777 0.154922 0.0242883 +-0.0476898 0.0679558 -0.0146484 +-0.0108886 0.108738 -0.0217426 +-0.0532571 0.151368 0.0204421 +-0.068651 0.163792 -0.0529788 +-0.0441151 0.0643553 0.040206 +-0.0275094 0.107088 0.0401149 +-0.0275566 0.0890776 0.0469337 +-0.0274957 0.102963 0.0425886 +-0.0266136 0.0837142 0.0504396 +0.015157 0.122808 -0.00836184 +-0.0234279 0.0636514 0.0436342 +-0.00941329 0.0943623 -0.0340451 +-0.0174189 0.178658 -0.0183022 +-0.0187779 0.183117 -0.0166827 +0.0130462 0.129592 0.0201813 +-0.0751825 0.149958 -0.0238676 +0.00897367 0.131122 0.0172577 +0.0483469 0.0589383 -0.00490848 +0.0422406 0.0986762 0.0221715 +-0.0921564 0.130934 0.011242 +-0.0327106 0.0764924 -0.028531 +0.0102149 0.0725802 0.055192 +-0.0636711 0.0593571 0.0158341 +-0.0123306 0.0394822 0.0386711 +-0.0718333 0.156164 0.022455 +-0.0864971 0.150096 0.00821548 +-0.0110742 0.123419 -0.00875247 +-0.080097 0.11274 -0.00201289 +-0.00271881 0.0655507 -0.0345764 +0.00140103 0.0390882 -0.0248121 +-0.0618299 0.0939366 -0.0189413 +-0.0716693 0.147461 -0.0281971 +-0.0231858 0.17269 -0.0205136 +-0.0637876 0.155678 -0.0402328 +-0.0228589 0.0637031 0.0444908 +-0.0238626 0.169762 -0.0118641 +-0.0752191 0.155599 0.0242023 +-0.0345019 0.0461718 -0.0254652 +-0.01605 0.0946681 0.0536372 +0.0246905 0.0477085 0.0389599 +0.0101881 0.0341976 -0.00109267 +-0.0293326 0.154386 -0.00360575 +0.00276097 0.131717 0.0121378 +-0.0859012 0.0899317 0.000454719 +-0.0297834 0.121969 -0.0069874 +-0.0297126 0.0508986 -0.0203549 +-0.0888501 0.151809 0.0151852 +-0.0824868 0.0965084 -0.00559576 +-0.0279025 0.124426 0.000511349 +-0.0111071 0.0879305 -0.0374747 +-0.0895782 0.133632 0.00522749 +-0.0325779 0.0341004 0.0231549 +-0.087069 0.100891 0.00537711 +-0.0182966 0.038653 -0.00715499 +-0.0181652 0.097581 -0.0254283 +0.00716304 0.0378885 -0.010707 +-0.0117789 0.0582633 0.0533407 +-0.0679898 0.154859 0.0296647 +0.0270346 0.0384464 0.0278157 +-0.0446977 0.147484 -0.0025954 +-0.0797208 0.0757926 0.0264575 +-0.0827795 0.113314 0.0464356 +-0.0405007 0.118003 0.0314814 +0.00913581 0.103011 -0.0206427 +-0.0712761 0.153449 0.0330143 +0.0296113 0.108994 -0.0114792 +0.0120747 0.0958655 -0.0254962 +-0.0357119 0.0695868 -0.0167299 +-0.0777217 0.159728 -0.0179219 +-0.0619192 0.0343817 0.0361087 +-0.0839142 0.0843714 -0.00355138 +0.0295472 0.11806 0.0262972 +-0.0344935 0.0733008 0.0417052 +0.0305902 0.0996469 -0.0155371 +-0.0731059 0.151228 -0.0378853 +-0.0740388 0.151266 -0.032878 +-0.0419789 0.152954 -0.00736227 +-0.00349089 0.112806 0.0419152 +0.00607582 0.0348373 0.023168 +-0.000568628 0.0388214 0.0254737 +0.0445611 0.0931651 0.0181595 +-0.0469298 0.126751 0.026776 +-0.0318643 0.104333 -0.0219242 +0.0119312 0.0725978 0.0541603 +-0.0435985 0.108724 -0.0190759 +-0.0274517 0.043312 0.0519115 +-0.00149233 0.077429 0.0585147 +-0.0618993 0.0433992 0.0415482 +0.0131559 0.129936 0.00738875 +0.00749621 0.107111 0.0412811 +0.0354668 0.0573224 -0.0106723 +-0.0211412 0.0652998 0.0483526 +-0.00680045 0.129424 0.0244883 +-0.0187344 0.126979 0.0202236 +0.00853139 0.0813381 0.0552215 +-0.0254455 0.0389929 0.0381911 +-0.0507728 0.111366 -0.017973 +-0.027716 0.0387019 -0.0165247 +-0.000266462 0.0936214 -0.0332218 +-0.0855847 0.0806062 0.0194802 +0.0100369 0.130324 0.00340984 +-0.0449017 0.148739 -0.00386394 +-0.0321132 0.0482449 -0.0223421 +-0.0893696 0.140675 0.0341739 +0.0448261 0.0875458 0.0221634 +-0.0454912 0.0719252 0.0419203 +-0.0718306 0.148291 -0.0327712 +-0.0812513 0.108802 0.0293202 +0.0429574 0.0859786 -0.00579554 +-0.0338336 0.0380945 -0.0153271 +-0.060738 0.148827 -0.00180261 +-0.0568701 0.141076 -0.0033696 +-0.0358396 0.125396 0.0214464 +-0.0789386 0.168616 -0.0354931 +-0.0315115 0.108439 0.0386203 +-0.0842691 0.117693 0.0488129 +-0.032501 0.101545 0.0423652 +-0.0289779 0.174216 -0.00689295 +-0.0622726 0.163207 -0.0582148 +-0.00885889 0.172674 -0.0247544 +-0.0519291 0.13698 0.0263868 +-0.0829532 0.112769 0.000219247 +-0.0237394 0.038003 0.0142418 +0.0321413 0.0513188 -0.0087021 +-0.0473947 0.0359569 0.0452833 +-0.0488828 0.108449 -0.0190525 +0.0415402 0.0928967 -0.0067838 +-0.0800241 0.0745873 0.0239149 +0.005197 0.0866258 -0.0333998 +0.00148166 0.107215 0.0427825 +-0.0694376 0.159556 -0.0509365 +-0.0306541 0.0650706 -0.0234343 +-0.0653365 0.167223 -0.0303028 +-0.0262324 0.15581 -0.00635861 +-0.0362329 0.165306 -0.00162934 +-0.00330758 0.0379537 -0.0147265 +-0.0267799 0.0893467 -0.0340353 +-0.0591073 0.155657 0.0168017 +-0.0331866 0.15511 0.000984746 +-0.0671323 0.152011 0.0359968 +0.0112495 0.0710359 -0.0320326 +-0.0289103 0.0508426 -0.0224168 +-0.0582351 0.043574 0.0153571 +-0.0770169 0.112922 0.0479771 +-0.0146932 0.0570315 -0.0346956 +-0.0735209 0.134443 0.0506533 +-0.0445794 0.130477 0.0137726 +-0.0744939 0.127436 0.052791 +-0.0376156 0.0492564 -0.0118933 +-0.0462534 0.123907 0.0259058 +-0.0434909 0.104315 0.0413728 +-0.0779429 0.0893818 -0.0115854 +-0.067492 0.10005 0.0413205 +-0.0882017 0.0949941 0.0238463 +0.0438775 0.06952 0.000229591 +-0.0171444 0.168289 -0.0207283 +-0.0236004 0.0383091 -0.00235181 +-0.0697889 0.172796 -0.0390999 +-0.0291426 0.042089 -0.0296009 +-0.0446441 0.0338442 0.00651202 +-0.000500925 0.121055 0.0369996 +0.022042 0.12426 0.000701449 +0.00803725 0.125889 0.0313 +-0.0517799 0.0840941 -0.0216716 +-0.0145005 0.0842486 0.056982 +-0.0886066 0.113065 0.00725433 +0.0156656 0.0713152 0.0525386 +-0.0164665 0.068805 0.0544258 +0.0182285 0.0820502 -0.0281776 +-0.00610364 0.0386755 0.000846714 +-0.0599938 0.126727 -0.00781868 +-0.0155017 0.100285 0.044225 +-0.0638562 0.0423917 -0.00506847 +-0.0444796 0.0338614 0.0280014 +-0.000499767 0.100727 0.0463954 +-0.0162094 0.172709 -0.0239586 +-0.0690346 0.0338087 0.00696066 +-0.062316 0.158431 -0.019584 +0.00644358 0.129282 -0.00129108 +0.0188124 0.0393785 0.042705 +-0.0847946 0.140657 0.0430258 +-0.0835274 0.0979539 0.0303801 +-0.0241902 0.160559 -0.0136368 +-0.06502 0.161419 -0.0172527 +-0.0772789 0.154395 0.0279022 +-0.0681261 0.15638 0.0193912 +-0.0337268 0.111492 -0.0180397 +-0.0323736 0.176483 -0.0134412 +-0.0291608 0.0806486 0.0445728 +-0.0846331 0.0781756 0.0181083 +-0.0498753 0.106996 -0.0192538 +0.00350083 0.0730867 0.0562031 +-0.0231171 0.0347933 0.0492623 +-0.0616059 0.0342155 0.0188015 +-0.0516 0.0545447 0.0296397 +-0.0763817 0.169448 -0.0429673 +-0.069513 0.17974 -0.0519891 +-0.0588484 0.13671 0.0342246 +-0.0780833 0.1597 -0.0209281 +0.00109253 0.113026 -0.0199046 +-0.0227366 0.157094 -0.00651614 +0.0344933 0.0929192 0.0394802 +-0.000408544 0.126448 -0.00615558 +-0.0805024 0.128853 0.052889 +-0.00020637 0.0947598 -0.0324026 +-0.089811 0.143072 0.0296513 +0.0321792 0.0929416 0.0413986 +-0.0145721 0.168692 -0.0222333 +0.0595491 0.0594739 0.0201736 +-0.0810451 0.0800939 -0.00453207 +-0.0267843 0.0880044 -0.0350453 +-0.040033 0.126629 -0.00388698 +-0.0208083 0.0348218 0.0462671 +-0.082826 0.11472 -0.00162443 +-0.0301654 0.12556 0.01613 +-0.0485613 0.0418518 -0.011173 +-0.0784181 0.163881 -0.0269512 +0.0387541 0.0617571 -0.00875906 +0.0464006 0.0792571 0.0121793 +-0.00359562 0.043415 -0.0257386 +-0.0333921 0.126443 0.0164188 +-0.00106292 0.130975 0.00499363 +-0.0668008 0.060458 0.0159676 +-0.0254977 0.107106 0.0408331 +-0.0682758 0.06442 0.0246162 +-0.0298175 0.125729 0.00888885 +-0.088267 0.147416 0.00925394 +0.0542609 0.050631 0.00222604 +0.0422118 0.100079 0.0191646 +-0.081175 0.14869 0.00117764 +-0.0344163 0.0346761 0.0417292 +-0.0623017 0.163119 -0.0425932 +-0.0298952 0.0565521 -0.0204023 +-0.076686 0.0781369 0.0338733 +-0.0338704 0.102893 -0.0218261 +-0.0355104 0.0775398 0.0419002 +-0.0584924 0.0630612 0.0296076 +0.0454221 0.0889974 0.0141646 +-0.0417964 0.0347181 0.00810808 +0.0363875 0.0505227 -0.00658574 +-0.053281 0.144674 0.0233765 +0.0262687 0.0352193 0.019674 +-0.0168964 0.123328 -0.00656517 +-0.0606083 0.118309 0.0403758 +0.00639612 0.0418759 -0.0239341 +0.0231261 0.0431609 -0.0107258 +-0.00718079 0.0390105 -0.0127195 +-0.00364386 0.0901332 -0.0356262 +-0.00854262 0.033753 -0.0231542 +-0.0124761 0.0531764 0.0512005 +-0.0231395 0.168252 -0.0189417 +0.0233331 0.0354178 0.02435 +-0.000241537 0.0397743 0.0467748 +-0.0723661 0.147118 -0.0228625 +-0.0517688 0.0612265 0.030932 +-0.063068 0.161146 -0.0557557 +-0.0279123 0.0793217 0.046185 +-0.0627986 0.0441541 -0.00325511 +-0.0165065 0.100263 0.0439632 +-0.0217072 0.0582569 -0.0327502 +0.0254642 0.12325 0.0062381 +-0.086501 0.0833246 0.0174861 +-0.074502 0.11613 0.052068 +0.032458 0.0910982 -0.0184345 +-0.0729629 0.155811 0.0249814 +-0.0506733 0.162525 0.00564316 +-0.0697867 0.034416 -0.00452426 +0.0189467 0.0754919 0.0520404 +-0.0165401 0.0997826 0.0440769 +-0.086829 0.0847067 0.0174745 +-0.0474936 0.146975 -0.00223523 +-0.065417 0.154594 -0.0449582 +-0.0614906 0.0590888 0.0075192 +-0.0686207 0.128453 0.0500102 +-0.023162 0.0958328 0.0451924 +-0.0258056 0.0550238 0.0391969 +-0.0102599 0.0407381 0.0498453 +-0.0664749 0.0875478 0.0443297 +0.0581415 0.0538012 0.00818348 +-0.0384918 0.0903063 0.0434643 +-0.0457684 0.132352 0.0133121 +-0.0728932 0.0941961 0.0410307 +-0.0809085 0.111715 -0.000772193 +-0.0833393 0.0979244 -0.00460929 +-0.0671961 0.15591 -0.00355939 +-0.0455114 0.0338265 0.027816 +0.01975 0.0343373 0.00255688 +-0.0875501 0.120326 0.0478169 +0.0353576 0.0505704 -0.00670224 +0.00356645 0.0339958 0.0125338 +0.0590653 0.0552605 0.0161784 +-0.084435 0.0791603 0.0205035 +-0.0255122 0.0349295 -0.0287387 +-0.0724789 0.110508 0.0438845 +0.00447986 0.0385716 -0.0118677 +-0.066989 0.136993 -0.00809827 +0.0384287 0.064558 0.0344028 +-0.0516036 0.0560273 -0.00839821 +-0.00350028 0.110017 0.0429859 +-0.0111634 0.0391658 0.035606 +0.0183426 0.0906063 -0.0259275 +-0.031909 0.154239 -0.00732019 +-0.0800971 0.0773092 -0.00453369 +-0.0190564 0.0920061 -0.0357108 +0.0133608 0.0494245 -0.0271921 +-0.0787339 0.140316 -0.00472414 +-0.0275167 0.116662 0.0324113 +0.00652621 0.104352 0.0432895 +0.0358497 0.0713653 0.0377445 +-0.0918605 0.116299 0.0240619 +-0.0522199 0.061167 0.0299696 +-0.0201447 0.166816 -0.0117812 +-0.0433732 0.122414 -0.0114499 +-0.0645963 0.0430073 0.0358234 +-0.0779043 0.1583 -0.0209193 +0.0367132 0.0547551 0.0317845 +-0.0351109 0.16372 -0.0144674 +-0.0434603 0.109995 -0.0184047 +-0.0576869 0.0677197 -0.0118328 +0.00623854 0.074018 -0.0343382 +0.0443987 0.0959613 0.0131589 +-0.089865 0.120262 0.0458544 +0.0103837 0.0449023 -0.0251665 +-0.0770006 0.139838 -0.00569476 +-0.072687 0.0955359 0.0408041 +-0.0569361 0.046073 0.0125834 +-0.0604913 0.0818799 0.0434166 +-0.0460645 0.151688 -0.00554828 +-0.015331 0.0349099 0.0491212 +-0.0229594 0.0811266 0.055321 +0.0274663 0.0754645 0.0450048 +-0.00267666 0.0374926 0.0135597 +-0.011518 0.0673875 0.054571 +0.013368 0.122467 -0.00997636 +-0.0722821 0.143895 -0.0129091 +0.0454962 0.0443878 0.000424365 +-0.0127602 0.0382241 0.0199007 +-0.091546 0.146121 0.023146 +0.00392744 0.0371222 0.0242968 +-0.0385489 0.119476 -0.0123722 +0.0114833 0.0936471 0.0518498 +-0.0643328 0.146767 0.0386771 +-0.0624894 0.163088 -0.0505885 +-0.0375004 0.0464372 0.040096 +0.0460037 0.0834239 0.0131685 +0.033027 0.108336 -0.00876159 +0.013228 0.0990749 -0.0229052 +0.034148 0.0442132 0.0295363 +-0.0907186 0.113289 0.0113419 +0.0210633 0.106016 0.0411627 +-0.0454948 0.119311 0.0290591 +-0.0676975 0.0607342 0.0101856 +-0.0195364 0.0461211 0.0518679 +0.0161339 0.0672434 0.0514025 +-0.0693216 0.0620201 0.0176481 +0.0429729 0.0944315 -0.00180352 +-0.0494828 0.135763 0.0221907 +-0.060805 0.0867676 -0.0196616 +-0.0247298 0.125997 0.0151584 +0.059297 0.0608379 0.0211666 +-0.080116 0.153024 0.0299773 +0.0574282 0.0681585 0.00377242 +-0.0535498 0.0486673 -0.00635158 +-0.0304741 0.177281 -0.004356 +-0.0855011 0.0792275 0.0175034 +-0.0804698 0.130248 0.0526854 +0.000343862 0.0539275 -0.0306641 +-0.0900062 0.133811 0.0372136 +0.0104354 0.0347372 0.0259595 +-0.0574962 0.0440189 0.0444763 +-0.0573422 0.0335757 0.00237022 +0.0404449 0.0739232 0.0320846 +-0.00464724 0.0496642 -0.0307417 +-0.0311133 0.0510509 -0.015361 +0.0169782 0.128539 0.0144983 +-0.0872732 0.151714 0.0113029 +-0.0345546 0.0409268 0.0482929 +-0.0745628 0.173554 -0.0490908 +-0.0213027 0.0381376 0.0110019 +0.0223647 0.0782061 0.0499784 +0.0111959 0.0879068 -0.0311136 +0.0141654 0.115006 -0.0159235 +-0.0175094 0.116845 0.0368185 +0.0185047 0.0369619 -0.0146835 +-0.0924063 0.129578 0.0112381 +-0.00949945 0.0517772 0.0514996 +-0.0666563 0.0656524 -0.0048951 +-0.0494962 0.100168 0.0429965 +0.00776642 0.130336 0.022539 +-0.0564976 0.0904367 0.0452654 +-0.0648339 0.153263 -0.0390895 +0.0140569 0.12802 0.0248446 +-0.00977705 0.174183 -0.0237537 +-0.0154865 0.0530505 0.0500296 +-0.0627622 0.0810191 -0.0190992 +-0.0385594 0.173184 -0.00190958 +-0.00314149 0.0972112 0.0530078 +-0.0418773 0.107078 -0.0201516 +0.0363342 0.109637 -0.000829727 +0.021507 0.126326 0.01189 +-0.030496 0.0988081 0.0439786 +-0.0769628 0.150462 0.0371334 +-0.0941104 0.126894 0.0182531 +-0.0255083 0.112568 0.0366767 +-0.0746801 0.157704 -0.00556618 +-0.0418449 0.0971142 -0.0220611 +-0.0359493 0.125342 -0.00457539 +-0.0258164 0.0853463 -0.0368715 +0.0497106 0.0482066 0.0259506 +-0.0716942 0.1568 -0.0399156 +-0.0618117 0.0590403 0.0165038 +-0.0714498 0.15679 -0.0419165 +-0.0701989 0.0368637 0.0105096 +0.0597267 0.0636404 0.0201833 +-0.0915748 0.124221 0.0431828 +-0.0690929 0.156328 0.0219534 +-0.0302767 0.0622182 -0.0224251 +-0.00771091 0.0627931 -0.0356131 +0.0394872 0.0513548 0.03224 +-0.0229845 0.0724431 0.0499564 +-0.0290201 0.125445 0.00626167 +-0.0729777 0.138423 -0.00695981 +-0.00991212 0.111561 -0.0201766 +0.000200297 0.0825801 -0.036136 +0.0364442 0.0590953 0.0349595 +0.0364996 0.0928818 0.0370772 +-0.0181329 0.0432293 0.0524811 +0.00280759 0.0350639 0.0204847 +-0.0626379 0.152126 -0.0285986 +-0.0704211 0.15543 0.027334 +0.000301963 0.100099 0.0481787 +-0.049492 0.0917757 0.044207 +-0.015502 0.0897786 0.0564851 +-0.0318792 0.156356 -0.0104816 +0.0416778 0.102863 0.015161 +0.0504722 0.048918 -0.000684915 +-0.0611415 0.0359024 -0.0090437 +-0.0264937 0.098817 0.0439871 +-0.000436317 0.122463 0.0356275 +-0.0875676 0.129767 0.0460862 +-0.0312863 0.0777611 -0.0325602 +-0.0303664 0.112853 -0.0174686 +-0.00773829 0.0684701 -0.0360951 +-0.0647534 0.156678 -0.0475943 +-0.0891175 0.0983455 0.0194044 +0.00833741 0.055373 -0.0305597 +-0.0550257 0.131065 -0.00539027 +-0.0305029 0.0689001 0.0393777 +-0.0596554 0.0343168 0.0331724 +0.0436089 0.0680569 -0.000247417 +-0.0786395 0.163873 -0.0279533 +-0.0574243 0.0613459 0.0260206 +-0.0338728 0.0483909 -0.0193366 +-0.0287306 0.074519 0.0412207 +0.016916 0.0577101 0.0489225 +-0.0184307 0.0347944 0.0485523 +-0.0655112 0.0803784 0.0426229 +-0.0332327 0.160967 -0.000804209 +-0.0533105 0.0541891 0.0115512 +-0.0356689 0.117866 -0.0126779 +-0.0699903 0.034504 0.00971713 +-0.0588141 0.0341524 0.0282501 +-0.0177813 0.0770869 -0.0388032 +0.0445157 0.0467554 0.0289718 +0.00964716 0.128306 -0.00229994 +-0.0666126 0.148623 0.0392621 +-0.0325544 0.0348985 0.0454309 +-0.0623108 0.039732 0.0166963 +-0.0917483 0.122888 0.0433845 +0.0271866 0.0819517 -0.0229154 +-0.00863658 0.0467032 -0.0298179 +-0.0620847 0.166243 -0.0515916 +-0.0912832 0.125583 0.0428488 +-0.0588072 0.0481223 0.00266039 +-0.0913122 0.133748 0.0212171 +0.0482658 0.0433313 0.0185611 +0.00774922 0.0351262 -0.0136823 +0.0357585 0.0562848 0.0339755 +-0.029123 0.166739 -0.016877 +-0.0338028 0.122413 -0.00742547 +0.0216799 0.0415358 -0.0117265 +-0.0257594 0.171231 -0.0110774 +-0.0641199 0.162494 -0.0212451 +-0.0535748 0.155622 0.0115317 +0.0531674 0.0736169 0.0146631 +0.0135129 0.0347107 0.0374491 +0.0227019 0.123147 0.0266031 +0.025252 0.0719314 -0.0249494 +0.0309797 0.118122 0.0225615 +0.0415492 0.0724945 0.03012 +0.000493498 0.119652 0.0380928 +0.0229975 0.123119 -0.000380287 +0.0234322 0.100371 -0.0202365 +-0.0620057 0.153738 -0.0265835 +-0.0398723 0.105663 -0.0203219 +-0.0632416 0.0445478 0.0366988 +-0.0310386 0.154131 -0.00157547 +-0.0042992 0.0348909 0.0408189 +-0.00181562 0.0826307 -0.0368615 +0.0388816 0.0927717 0.0335536 +-0.0335058 0.0760991 0.0415371 +-0.0314963 0.0917789 0.0442247 +-0.0512549 0.0612644 0.0318233 +-0.00281159 0.131227 0.0100802 +-0.0531145 0.157563 -0.00324336 +-0.0635867 0.03486 0.0405057 +-0.0627936 0.15522 -0.0356106 +0.0166245 0.122097 0.0315907 +-0.0106759 0.119083 -0.0141801 +-0.0465015 0.0689677 0.0402969 +-0.0626599 0.0423324 0.0141491 +-0.0515376 0.053149 0.0306286 +0.00413437 0.124074 -0.00964261 +-0.0105331 0.127013 0.0275477 +-0.042312 0.0337552 -0.0130352 +0.0472026 0.0681414 0.0256953 +0.0213439 0.0741385 0.0502206 +0.0156241 0.128368 0.0211329 +0.0358549 0.0843357 -0.0172902 +-0.0533892 0.064921 0.0343521 +0.0273368 0.091573 0.0449418 +-0.0440333 0.0423079 -0.0173091 +-0.0764978 0.13864 0.0490601 +0.00750117 0.0716903 0.0560753 +0.0454321 0.0861887 0.0181684 +-0.0812985 0.084505 0.0328118 +-0.0605375 0.155317 0.003221 +-0.0065332 0.130449 0.0187888 +0.0247646 0.122114 0.0259409 +-0.0711064 0.152637 0.0345827 +-0.0155013 0.0716083 0.0551341 +0.0277791 0.0822205 0.0455159 +-0.0445183 0.0675631 0.0404632 +-0.0772746 0.147261 -0.00486297 +-0.0868795 0.0927253 0.00342064 +-0.0458425 0.0985138 -0.0217256 +-0.0906083 0.131058 0.0342318 +-0.091547 0.146101 0.0191506 +-0.00249086 0.116945 0.0398999 +0.0385734 0.0699568 0.0346425 +-0.0129648 0.116833 -0.0157687 +0.0215791 0.120444 0.0319368 +-0.0899229 0.115405 0.0270455 +-0.0697992 0.0836733 -0.0171139 +-0.0415794 0.128056 0.0149128 +-0.0734779 0.180121 -0.0504836 +-0.0466973 0.0665278 -0.0146823 +-0.0673893 0.156703 -0.00509746 +0.00108438 0.119342 -0.0145393 +-0.019494 0.0842608 0.0571688 +0.0285713 0.0551672 -0.0188053 +0.00650695 0.0731027 0.0564796 +-0.0557862 0.0854763 -0.0214113 +-0.0743851 0.163815 -0.0369793 +-0.0286768 0.123948 -0.00103929 +-0.0301123 0.163751 -0.0154896 +0.0410386 0.099944 -0.00278716 +0.00848446 0.0518256 0.0516867 +-0.051108 0.0530218 0.0319282 +-0.0905758 0.113954 0.0388293 +-0.00470317 0.038779 0.00289117 +-0.0247258 0.0638997 -0.032873 +-0.04111 0.159177 -0.0108205 +-0.0892399 0.140676 0.0351725 +-0.075004 0.141334 -0.0064915 +-0.0463338 0.132474 0.00863126 +-0.0541416 0.034749 0.0443256 +-0.0781873 0.168068 -0.0319708 +0.0328915 0.0696754 -0.0177356 +0.0346158 0.0369318 0.00517598 +-0.0694908 0.124597 0.0526574 +0.0581844 0.0711857 0.0106064 +-0.0378081 0.0841771 -0.022143 +-0.0281622 0.169703 -0.0179592 +0.0305485 0.118199 0.0238252 +-0.0289649 0.0747374 -0.0345478 +-0.0272221 0.0904382 0.0465675 +-0.0514982 0.0848246 0.0453901 +-0.051623 0.0531083 0.0226238 +-0.0398125 0.0899922 -0.0232612 +-0.0236559 0.0709438 0.0478646 +-0.053816 0.0559281 -0.00642904 +0.0603322 0.0636924 0.0181801 +-0.0884616 0.136381 0.00620417 +-0.0394936 0.046476 0.0404962 +-0.0530638 0.0723343 0.0404003 +0.0102711 0.0695708 -0.0315811 +0.0339253 0.115718 0.0108315 +-0.0295473 0.0358282 0.0521362 +0.0116453 0.090034 0.0538428 +0.0450904 0.0875663 0.0201674 +0.0326336 0.0519746 0.0346532 +0.03367 0.072742 0.0398859 +0.024638 0.124378 0.010214 +0.0415181 0.0484385 0.0321463 +-0.044143 0.159411 0.00624881 +-0.0495653 0.047469 -0.00900107 +-0.0894571 0.131034 0.0422704 +-0.075804 0.161028 -0.0299559 +-0.0164919 0.0968814 -0.0286925 +0.0229929 0.0371968 0.0317242 +0.0352506 0.101471 -0.011425 +-0.049558 0.0389942 -0.0116749 +-0.0223649 0.171249 -0.0132085 +-0.0667327 0.078026 -0.0171522 +0.0442166 0.0846846 -0.00180459 +-0.0518774 0.104165 -0.0200373 +-0.0393536 0.0336231 0.00416845 +0.00720473 0.0823989 -0.0333538 +-0.0288578 0.101545 -0.0231915 +0.0245524 0.106048 0.0391612 +-0.0851811 0.0897279 0.0280525 +-0.00334607 0.0347739 0.0411187 +-0.0430221 0.128224 0.015861 +0.0243931 0.0503998 -0.0217952 +-0.0394902 0.0506047 0.0393469 +0.0293799 0.0892796 -0.0205263 +-0.0574934 0.0875623 0.0444505 +-0.0644211 0.0347126 0.0370276 +-0.0169241 0.181626 -0.0193127 +-0.0564978 0.0732565 0.0410435 +-0.0544221 0.144671 0.0284168 +0.0203184 0.0650483 -0.0276666 +-0.0648645 0.041891 0.032665 +-0.0451284 0.159142 -0.00893675 +0.0451235 0.093189 0.0121575 +-0.0577489 0.0479998 -0.00135721 +-0.0606371 0.0448145 0.012064 +0.0495086 0.0638139 0.0293036 +0.0458685 0.0862133 0.0111669 +-0.0531099 0.136165 -0.00197183 +0.0285441 0.0509095 -0.0177614 +-0.013074 0.0383381 0.00704947 +-0.0223231 0.0391341 0.0387105 +0.0393846 0.0429207 -0.00283799 +0.0202147 0.0847891 -0.0269071 +0.00923869 0.035402 -0.0117616 +-0.060367 0.11933 -0.00999174 +-0.0772797 0.157576 -0.0127941 +-0.0732669 0.179344 -0.0490063 +-0.0683896 0.0420777 -0.000309277 +-0.0539058 0.102757 -0.0202213 +-0.0453256 0.169857 -0.00299568 +-0.0616838 0.0659304 -0.00830259 +0.00414244 0.129952 4.9397e-05 +-0.0404915 0.113924 0.0347061 +-0.0942425 0.120105 0.0182851 +-0.0324906 0.080327 0.0414535 +0.0529677 0.0595446 0.0290441 +-0.0904857 0.114242 0.0332623 +-0.0703591 0.181312 -0.0565189 +-0.0475241 0.112407 -0.0169253 +0.0109831 0.0341684 -0.0140433 +-0.089612 0.139257 0.0251846 +-0.0373738 0.0365422 0.044687 +0.0564401 0.0662549 0.00171258 +-0.0581251 0.0334091 -0.00125013 +-0.0407273 0.0696207 -0.0166002 +-0.0669961 0.165196 -0.05701 +0.0131268 0.120538 0.0349816 +0.0367009 0.0812747 -0.0157528 +-0.0077824 0.0784642 -0.0379203 +-0.0647128 0.155185 0.0278857 +0.00549498 0.0951378 0.0528545 +-0.0108057 0.0342947 -0.0255969 +-0.0911579 0.129687 0.0342384 +-0.080608 0.0720682 0.0165498 +-0.073439 0.148627 -0.0298053 +-0.0271937 0.174158 -0.0183459 +-0.0244966 0.0509689 0.0431921 +-0.00162246 0.0450436 -0.027024 +-0.0775221 0.104823 0.0340694 +0.0154861 0.0927165 0.0506449 +-0.0599536 0.123822 -0.00839074 +-0.079866 0.0706372 0.0115498 +-0.0815235 0.0899003 0.0328752 +0.0313378 0.118325 0.00558524 +0.0248331 0.123944 0.0188283 +-0.0898787 0.112224 0.0169361 +-0.0662043 0.065068 0.0280019 +0.0246717 0.0434401 -0.00867806 +-0.0469681 0.134154 0.0128397 +-0.0291377 0.0860908 -0.0335904 +0.0147704 0.0519654 0.0475176 +-0.0296475 0.169744 -0.0079151 +-0.0211888 0.175661 -0.0220113 +-0.0347689 0.0780934 -0.0215038 +-0.013019 0.129549 0.0120959 +0.0421932 0.0662609 -0.00283376 +0.0111358 0.0352671 0.0436641 +-0.0705399 0.100871 0.0399167 +-0.0604975 0.0832903 0.0437356 +-0.0659485 0.126772 -0.00885106 +-0.0702518 0.06756 0.0285092 +-0.00688661 0.108791 -0.0226031 +-0.0786437 0.112204 0.0464731 +0.00637271 0.130879 0.0205945 +-0.066894 0.110895 -0.0121462 +0.0123118 0.0623753 -0.0299343 +-0.0285044 0.109801 0.0380702 +0.00650421 0.0883449 0.0558788 +-0.0545694 0.124267 -0.00721739 +-0.0626588 0.161511 -0.0455953 +-0.0861214 0.132549 0.0473951 +-0.0627776 0.125519 0.0444184 +-0.0177321 0.160293 -0.0123373 +-0.0490182 0.0345781 0.0369526 +-0.0297799 0.106834 -0.0211406 +-0.079558 0.151858 0.0332132 +-0.0404921 0.0648693 0.0415314 +-0.0530069 0.153493 0.0132253 +-0.0339683 0.0485791 0.0404406 +-0.0421354 0.0449426 -0.0173193 +-0.0517467 0.076797 -0.0188523 +-0.060863 0.0583083 0.0137477 +0.0112347 0.0794806 -0.0318525 +0.00351036 0.0856577 0.0572413 +-0.0648576 0.101039 -0.0173044 +-0.0601123 0.0381131 0.0455939 +-0.015494 0.0515277 0.0489706 +-0.0275254 0.1668 -0.00838328 +-0.0365126 0.077567 0.0421306 +-0.0195832 0.1596 -0.0115811 +0.00251466 0.0744821 0.0563666 +0.0589788 0.062133 0.0220601 +-0.066902 0.117219 0.0507079 +-0.0396194 0.0335538 -0.0253204 +-0.0297618 0.107877 -0.0202294 +-0.00601771 0.0990415 0.0504631 +-0.084398 0.0778007 0.013518 +0.0271613 0.0368693 0.0238228 +-0.0589877 0.0335902 0.00921609 +0.029871 0.0968887 0.0415927 +0.00949394 0.0426698 0.0450285 +-0.0697739 0.0382195 0.0100596 +0.0231426 0.0768603 0.0493195 +-0.00501253 0.125042 0.0324689 +-0.00710159 0.0387114 0.00061319 +-0.0177128 0.0599179 -0.0354327 +-0.045698 0.157938 0.00750606 +0.00190257 0.130874 0.00322319 +-0.0444648 0.0945053 0.0429498 +-0.0772757 0.148645 -0.0058688 +-0.069822 0.156776 -0.00162593 +-0.0445001 0.117958 0.0308281 +-0.0409685 0.0462375 -0.0173222 +-0.0305996 0.0509893 -0.0173575 +0.00196704 0.0385066 0.0244659 +-0.00668986 0.0584241 -0.0339312 +-0.0587805 0.0811174 -0.0202922 +-0.0492044 0.143127 0.00539863 +-0.0686509 0.155409 0.00612964 +-0.0404209 0.150087 -0.00469474 +-0.00449521 0.0925603 0.0561444 +-0.000397233 0.131333 0.0167016 +-0.0552402 0.138165 0.0306253 +0.0215752 0.056436 0.0468827 +-0.0248564 0.100174 -0.0239639 +-0.0165731 0.0386082 0.0295958 +0.0232801 0.125085 0.0182493 +0.0228318 0.0357435 0.0257706 +-0.0492021 0.127407 -0.00458885 +-0.0878029 0.112934 0.0313303 +0.0465727 0.0554592 0.0320923 +-0.0288967 0.0499669 0.0438168 +-0.000173892 0.120963 -0.0122496 +-0.0704499 0.154022 0.0317661 +-0.0151711 0.0346724 0.0458457 +-0.0640566 0.138182 0.0390191 +0.0398408 0.105612 0.0201716 +0.0444976 0.0583814 0.0318302 +0.031639 0.0370094 0.0209702 +-0.0104878 0.112778 0.0413082 +-0.0672962 0.0785128 0.0408262 +-0.0760729 0.0675487 0.00755458 +-0.0571409 0.0642584 0.0323718 +0.0261418 0.0859362 -0.0230192 +-0.015502 0.0856307 0.0568812 +0.0189265 0.119915 -0.00924366 +-0.0119328 0.103575 -0.0236984 +-0.00622128 0.0384574 0.0119659 +-0.0779451 0.128117 -0.00684087 +-0.0657248 0.120041 0.0506761 +-0.0623817 0.147548 -0.00757469 +-0.0875561 0.121673 0.0477803 +0.0222529 0.0365833 0.0139797 +-0.00142937 0.126525 -0.00622577 +-0.0226373 0.0386776 -0.0154938 +-0.0648114 0.0335165 0.00450366 +0.0210136 0.0713836 0.0497227 +-0.0348346 0.0347214 0.0345782 +-0.027609 0.0850124 0.048532 +-0.0856119 0.0819492 0.0204815 +-0.0601038 0.0347331 -0.00989443 +0.00929494 0.0956507 -0.0272714 +-0.0915391 0.118654 0.00731945 +-0.00449819 0.0604864 0.0551163 +0.0204818 0.0854612 -0.0266087 +-0.0429251 0.129071 0.00699388 +-0.0789967 0.138332 -0.00474353 +0.0343592 0.0519767 -0.00689954 +-0.0921408 0.125525 0.040859 +0.0516782 0.0702939 0.00352664 +-0.022659 0.0508417 -0.0286643 +-0.00138527 0.0424799 0.0468649 +0.0452912 0.0903849 0.0031762 +0.0401652 0.0717052 -0.00977551 +-0.0905185 0.148805 0.0131551 +-0.0470106 0.149195 0.00904699 +-0.0201874 0.0711262 0.0528634 +-0.0555353 0.0388223 -0.0103544 +-0.0714965 0.154091 0.0314059 +0.0232354 0.0968772 0.0460698 +-0.020264 0.0381835 0.0111715 +-0.0267635 0.177003 -0.0181719 +-0.0755105 0.151351 -0.0138965 +-0.00749931 0.0925693 0.0562701 +-0.063994 0.152679 -0.0352218 +0.0453927 0.0833662 0.00319518 +-0.0137973 0.081348 -0.0391911 +-0.0433806 0.120699 0.0278302 +0.0462048 0.0792353 0.00618416 +-0.0498122 0.141672 0.00439987 +-0.0592291 0.156682 0.00368263 +-0.0525972 0.055954 -0.00763978 +-0.0796979 0.108952 0.0363543 +-0.0334959 0.0335656 -0.024125 +0.0047441 0.131688 0.0100125 +-0.0530342 0.15087 0.0203968 +-0.0794975 0.133078 0.0519067 +0.0231582 0.125381 0.0124998 +-0.0898343 0.122953 0.0457467 +0.0336909 0.115719 0.00499933 +-0.0364989 0.0705154 0.0419282 +-0.0641133 0.155183 -0.0406054 +-0.0303694 0.034667 0.0426012 +-0.0474034 0.126784 0.0277907 +0.0312862 0.107094 -0.0114403 +-0.0399374 0.122179 0.0274746 +-0.0715157 0.106884 0.0372861 +0.0432452 0.100105 0.0111579 +-0.0264035 0.0386467 -0.0143525 +-0.053047 0.162457 0.00378602 +-0.0573985 0.155942 0.000257732 +-0.0104925 0.119661 0.037142 +-0.0107108 0.0656519 -0.03625 +0.0153129 0.0637748 -0.0295702 +-0.047649 0.128193 0.0275289 +-0.0395091 0.0986823 0.0417741 +0.0582857 0.0709436 0.0165587 +0.0144142 0.0418406 -0.0232939 +-0.0406818 0.0636695 -0.0135779 +-0.0700194 0.0408862 0.000674154 +-0.0898984 0.139201 0.0142132 +-0.0368759 0.102855 -0.0211016 +-0.031161 0.177923 -0.0048433 +-0.0216559 0.0380957 0.0145856 +-0.00121026 0.129846 0.000241032 +-0.0176504 0.0583335 0.0507279 +0.0492902 0.0704301 0.0235452 +0.008888 0.126629 0.0301427 +-0.0897638 0.136555 0.0361946 +-0.0903944 0.113745 0.0354564 +0.0327067 0.0659933 0.0401778 +-0.0167299 0.0383654 0.0243772 +0.0403616 0.0561214 -0.00579676 +-0.0891677 0.150225 0.0241083 +-0.0128992 0.165641 -0.0199242 +-0.0596113 0.0581543 0.0105384 +0.0326521 0.108705 0.0315863 +-0.0448105 0.126695 -0.00590468 +0.0440256 0.0973461 0.0131583 +-0.0694635 0.0618968 0.00696654 +-0.0667991 0.06462 0.0265045 +0.0388894 0.060327 0.0314833 +0.0120611 0.11304 -0.0178164 +-0.0635386 0.151731 -0.00361755 +-0.00656125 0.130634 0.0158888 +0.0344174 0.0430387 -0.00433126 +-0.00549778 0.129792 0.00189197 +-0.0499313 0.134148 0.000258943 +-0.0563569 0.155043 0.0148967 +-0.00737522 0.0388161 -0.00139235 +0.0283929 0.0347449 0.011384 +-0.010683 0.0908469 -0.0364652 +-0.048501 0.109818 0.0382143 +-0.0690431 0.169001 -0.0273587 +0.0102657 0.0954683 -0.0270889 +0.0126468 0.0820043 0.0535026 +-0.0507783 0.0613366 0.0327704 +0.00559724 0.128727 -0.00267638 +-0.044734 0.0724552 -0.0176324 +-0.0283736 0.0336157 -0.0231629 +-0.0679859 0.155562 0.00782161 +-0.0939853 0.126886 0.0172543 +-0.0238126 0.0840242 -0.0378907 +-0.0152029 0.16973 -0.0225848 +0.0303318 0.0382842 0.0249985 +-0.0463034 0.0382871 -0.0172845 +-0.012857 0.0968183 -0.0306036 +0.0139515 0.0933972 -0.0268828 +-0.0598089 0.0334419 -0.0052474 +-0.0682308 0.180685 -0.0584278 +-0.0564615 0.0452367 0.0437224 +0.0122525 0.036039 -0.0217262 +-0.0324956 0.119317 0.0295507 +-0.050852 0.0985174 -0.022094 +0.0359226 0.0926166 -0.0140085 +0.0475195 0.0583521 0.0315949 +0.00440154 0.12483 0.0329119 +-0.0725064 0.152612 -0.0398907 +-0.00124079 0.0388178 0.0271443 +-0.0855936 0.143251 0.00719107 +-0.0618131 0.161554 -0.0315928 +-0.0315498 0.0848744 -0.0295692 +-0.0167783 0.0770825 -0.0387039 +-0.024832 0.0930098 -0.0316179 +-0.0356976 0.121856 -0.0088333 +0.0456324 0.0875991 0.0131626 +0.0344601 0.0660136 0.0392214 +0.008313 0.0639391 -0.0318667 +0.0352496 0.0656442 -0.0147977 +-0.0468498 0.0999476 -0.0216953 +-0.0215077 0.111305 0.0395987 +-0.0345319 0.122423 0.0264163 +0.0333657 0.0835669 0.0412915 +-0.0594982 0.143919 0.0350801 +-0.0210079 0.184692 -0.0198306 +-0.09225 0.125605 0.0402535 +-0.0764966 0.117544 0.0520468 +0.0261457 0.100404 -0.0183041 +0.0314049 0.0431209 -0.00494122 +-0.000675964 0.056864 -0.0322097 +-0.0759667 0.135448 -0.00632576 +0.0194608 0.0865014 0.0497298 +0.0480114 0.0447211 0.0227621 +0.0382636 0.109749 0.0121659 +-0.0191397 0.0920316 0.0539979 +0.0148906 0.112386 -0.0170744 +-0.0156084 0.0378086 -0.0269252 +0.0166879 0.0355485 0.0409566 +-0.0719103 0.125286 -0.00863314 +0.0390766 0.0901064 0.0338413 +0.0238446 0.123573 0.0241681 +0.0180905 0.1262 -1.26099e-05 +-0.0241861 0.0351713 0.0521271 +-0.0864494 0.107673 0.0113573 +0.00554907 0.0341243 -0.0169616 +-0.0740319 0.152138 0.0351116 +-0.00773495 0.12664 -0.00628182 +-0.0408221 0.0343419 0.0301151 +0.0589083 0.0700926 0.0167877 +-0.0321537 0.168198 -0.0161712 +-0.0504087 0.0385253 -0.0116443 +-0.0719982 0.132651 0.0504199 +-0.0314938 0.0946271 0.0446065 +0.0415387 0.0610238 0.0295203 +0.0439094 0.0623682 -0.0025277 +-0.0745832 0.173457 -0.038075 +-0.0135013 0.163627 -0.011822 +0.00544999 0.097676 0.0507202 +-0.0233157 0.0695067 0.0475588 +0.0280693 0.112767 0.0337398 +0.0217645 0.057833 0.0471676 +-0.0875176 0.123015 0.0477063 +-0.0696847 0.0339658 -0.0022881 +-0.0251326 0.166747 -0.01768 +-0.0196064 0.177176 -0.0161969 +-0.0704588 0.109521 0.0380634 +-0.068398 0.171087 -0.0357069 +0.0111209 0.0908234 -0.0303895 +-0.0634854 0.149796 0.0371525 +0.00199826 0.122137 -0.0115071 +-0.0620402 0.161574 -0.0285866 +0.0543448 0.0567886 0.0274783 +0.00150309 0.0619973 0.0566118 +-0.0476286 0.0532889 -0.00972253 +0.0589424 0.064749 0.0219118 +0.00619535 0.0866083 -0.0331365 +0.00933928 0.0947261 -0.0283032 +0.0354634 0.113562 0.00993821 +-0.0622597 0.0337543 0.0119702 +-0.0286126 0.0778208 0.0441079 +-0.0291848 0.0649007 -0.0284708 +0.00716146 0.130043 0.000903466 +0.00854238 0.122369 -0.0118647 +0.0207709 0.0422154 0.0420468 +-0.0728566 0.114991 -0.00711315 +-0.062327 0.161572 -0.0265871 +-0.029645 0.121258 -0.00823608 +-0.0358448 0.0971832 -0.0228124 +-0.0241278 0.166765 -0.0179136 +-0.0833762 0.111067 0.0302504 +-0.0714085 0.0715566 0.0335759 +-0.0285052 0.11799 0.0309781 +-0.0436341 0.171062 -0.00299049 +-0.0254563 0.120601 0.0288472 +0.029856 0.0552774 -0.0168073 +-0.0277474 0.076815 -0.0357774 +-0.0305568 0.0845973 0.042796 +-0.0927119 0.117479 0.0363033 +0.00128405 0.131584 0.0158806 +-0.0853072 0.129862 0.0494994 +-0.0379579 0.11044 -0.0188969 +-0.0647113 0.0736859 -0.0158833 +-0.055064 0.0698751 0.038539 +-0.049499 0.0747526 0.0426395 +-0.0315694 0.0461612 0.0465874 +-0.0452548 0.169651 -0.00135352 +-0.0891941 0.0888738 0.0164555 +-0.0424866 0.0396651 0.043393 +-0.0870945 0.0846532 0.00548002 +-0.0530436 0.142764 -0.000526483 +-0.0664988 0.146992 0.0401715 +-0.0606301 0.0613516 -0.00265703 +-0.0321846 0.121876 0.025771 +0.0462743 0.0806463 0.0131736 +0.0355309 0.0527205 0.03199 +-0.0515418 0.0389441 -0.0114685 +0.0203586 0.0565379 -0.0271575 +-0.065976 0.0624665 0.0232686 +-0.0399438 0.0336374 -0.0217314 +-0.0584862 0.0833066 0.0438144 +-0.0449507 0.157934 0.00683281 +-0.0161733 0.168253 -0.0210405 +-0.0807961 0.0747709 0.0205502 +-0.0450711 0.153185 -0.00674331 +0.0122509 0.0766796 0.0546284 +-0.0165839 0.159908 -0.00982549 +-0.000693426 0.0367942 0.0054988 +-0.051438 0.0643214 0.0343604 +0.0173166 0.0411975 -0.0216758 +-0.0350925 0.0344983 0.0186791 +-0.0263041 0.10845 -0.0208491 +-0.0233997 0.0384863 0.0301002 +0.0336304 0.116029 0.0121428 +-0.084184 0.106292 0.0253661 +-0.0668605 0.102389 -0.0157781 +-0.0617744 0.0585089 0.0133805 +-0.037501 0.0634549 0.0414009 +0.0430852 0.0973049 0.0211625 +-0.0895621 0.0902365 0.017449 +0.0358939 0.0591552 0.0359628 +0.00041272 0.0994106 0.0497851 +0.0297429 0.112241 -0.00897067 +-0.0614607 0.155749 0.0232098 +-0.0190678 0.0347878 0.0501361 +0.0278403 0.121636 0.00711658 +-0.0293538 0.0475081 0.0471486 +-0.0878748 0.0861246 0.0134664 +-0.065267 0.132559 0.042478 +-0.0557536 0.0782586 -0.0197587 +0.0163546 0.0537375 -0.0279072 +-0.0768389 0.102007 -0.0101454 +-0.0762457 0.0708701 0.0261488 +-0.0434929 0.0410777 0.0433607 +-0.0820951 0.100566 -0.0055776 +-0.0124865 0.114128 0.0400495 +0.0495003 0.0496818 0.0274333 +0.0157351 0.0562704 0.0489701 +-0.0269138 0.0660937 -0.0314934 +-0.0205217 0.0448565 0.0528623 +-0.0147659 0.0742889 -0.0388052 +0.0292558 0.120076 0.0204837 +-0.0416192 0.0505822 -0.0110011 +0.00560187 0.0957087 -0.0293479 +-0.00449169 0.0575673 0.0538908 +0.0302324 0.0374168 2.32521e-05 +0.0404422 0.105635 0.0151656 +-0.0407521 0.0782965 -0.0192261 +-0.0321404 0.106348 -0.0206098 +0.0240312 0.1242 0.0213823 +0.0163901 0.0476981 -0.0240512 +-0.0540847 0.0341953 0.0274512 +0.0565883 0.0716209 0.0188851 +-0.063971 0.0343652 0.0164556 +0.0222263 0.0790988 -0.0263649 +-0.0480529 0.15019 -0.0042011 +-0.0364615 0.155102 -0.00949574 +-0.0107913 0.165034 -0.0192459 +-0.0720629 0.166594 -0.0198059 +0.0596228 0.0581166 0.00817617 +0.0193916 0.12656 0.0211758 +-0.029103 0.162278 -0.0149633 +-0.0114929 0.118282 0.0379089 +-0.0766495 0.0810868 -0.0106019 +-0.00184307 0.128669 -0.00252946 +-0.0100488 0.177211 -0.0257537 +-0.0544738 0.0624824 0.0299832 +-0.0840733 0.0966087 -0.0036103 +-0.0707265 0.080778 -0.0161096 +-0.0214771 0.122102 0.0291424 +-0.0428932 0.0358165 0.00869673 +0.0135568 0.129672 0.01894 +-0.00280854 0.081222 -0.0368531 +0.00517895 0.130408 0.0230466 +-0.067269 0.167119 -0.0252721 +-0.00747948 0.0919417 -0.035549 +-0.0365036 0.0478079 0.0395886 +-0.0569665 0.0548885 0.00161507 +-0.0744851 0.0663284 0.00571192 +0.0455621 0.0889987 0.00417598 +-0.0292503 0.036802 0.0530596 +-0.0435044 0.0605182 0.0400424 +-0.0915766 0.14196 0.0161629 +-0.0696706 0.14899 -0.0379959 +-0.0770107 0.152809 -0.00688788 +-0.0705529 0.0628294 0.0184736 +-0.044794 0.0870021 -0.0219374 +-0.0107414 0.120001 -0.0131465 +-0.000720709 0.0669492 -0.0343521 +-0.0214315 0.0906458 0.0534872 +-0.0354995 0.0619703 0.0405316 +-0.0628269 0.1502 -0.00476792 +-0.0640626 0.136748 0.0389546 +-0.0474986 0.102884 0.0412273 +-0.0116527 0.129557 0.00826831 +-0.0347732 0.0337732 -0.0208295 +-0.0214023 0.161048 -0.0139992 +-0.0752954 0.15636 -0.00353298 +-0.0688076 0.150274 -0.0424283 +-0.0238582 0.0382811 0.0283891 +-0.0935937 0.118737 0.0143019 +0.0184606 0.0475775 0.0422564 +0.00850874 0.0575011 0.0529664 +-0.0532082 0.149319 0.0233918 +-0.0320154 0.082069 -0.0305372 +-0.0190294 0.0739916 0.05444 +-0.00216392 0.0992947 0.0503069 +-0.0162644 0.11453 -0.017303 +0.0278981 0.113772 -0.00862034 +0.0459848 0.0602104 -0.00435135 +-0.0564936 0.0465915 0.0420515 +0.0169002 0.103075 -0.0211457 +-0.00731691 0.128182 0.0272242 +0.0205916 0.112587 0.0371117 +-0.0176105 0.0435992 -0.0276633 +-0.0274971 0.0619365 -0.0294418 +0.000272434 0.109746 -0.0202486 +0.0416377 0.084481 -0.00877138 +-0.0784224 0.0725404 0.0242536 +-0.00880164 0.0826803 -0.0379328 +-0.0147316 0.0685868 -0.0380387 +0.0333786 0.0476367 -0.00619535 +0.00348805 0.0413645 0.0460201 +-0.0227229 0.0625945 -0.0340193 +-0.0669932 0.138471 -0.00790807 +-0.037224 0.169679 -0.0130647 +0.0535575 0.0477942 0.0072134 +-0.0575878 0.158069 0.0020235 +0.0345395 0.0727588 0.0393885 +-0.0699466 0.072981 0.0361776 +0.020686 0.0367224 0.0371237 +-0.0728722 0.0355547 0.00103582 +0.00487825 0.131703 0.0129125 +0.0580945 0.0523756 0.014183 +-0.0866528 0.145956 0.0348405 +-0.00749813 0.125151 0.0317009 +0.0403042 0.0398794 0.0201445 +0.0355341 0.0875716 0.0391778 +-0.0249398 0.157384 -0.00964166 +0.00350274 0.0489558 0.0513808 +-0.00381736 0.131135 0.0125816 +-0.00837752 0.0353543 0.048476 +0.0140849 0.129676 0.00773008 +-0.010101 0.102023 -0.0240718 +0.0446756 0.091763 0.0191604 +-0.0637279 0.173384 -0.0513558 +-0.031495 0.061765 0.0382603 +0.0366571 0.0968397 -0.0108144 +-0.0285085 0.115306 0.0336868 +-0.00497421 0.126254 0.0309961 +0.00248615 0.104372 0.0430232 +0.00642086 0.116423 -0.0174422 +-0.0636795 0.0658475 -0.00727738 +-0.0891519 0.0956005 0.0104313 +-0.0860649 0.0994533 0.00140442 +-0.0735831 0.152654 -0.0328925 +0.00651157 0.066084 0.0555109 +0.0344822 0.102017 -0.0120204 +-0.0637552 0.15245 -0.00517189 +-0.077532 0.159745 -0.0169143 +0.00251128 0.0661582 0.0562906 +0.0151093 0.0887421 0.0518346 +-0.00945842 0.0387253 -0.00172767 +-0.0471724 0.133935 0.00981498 +-0.0188178 0.158773 -0.00942574 +-0.0194961 0.0654004 0.0509321 +-0.0774489 0.163906 -0.0229523 +-0.0267283 0.156621 -0.00899742 +-0.0465008 0.111213 0.0371008 +-0.00249784 0.0939038 0.0553992 +-0.0715513 0.0342218 0.00249626 +0.0107439 0.130936 0.0122066 +0.0266603 0.0421651 0.0343135 +0.011996 0.0344545 0.00276628 +-0.0653727 0.074532 0.0393295 +-0.0417745 0.172541 -0.00446528 +-0.0368752 0.0345479 0.0395694 +0.00440907 0.131695 0.0141669 +0.0189748 0.0699869 0.0502663 +-0.0690298 0.155601 0.00744971 +-0.0265663 0.0356908 0.0529027 +-0.0621593 0.13389 0.0382274 +-0.0375341 0.0356789 0.0117182 +-0.00861273 0.0434199 -0.0261503 +0.0317849 0.0490447 0.0333888 +-0.0637123 0.0445754 0.0336875 +0.0376665 0.0374378 0.0089364 +-0.058497 0.0904388 0.0452323 +-0.0442728 0.0437529 -0.0143172 +0.0204519 0.0357096 0.00704168 +0.0282191 0.0941913 -0.0197138 +-0.0688839 0.117973 -0.00851105 +0.0338372 0.104851 -0.0110391 +0.024912 0.0505255 0.0392969 +0.0125119 0.107097 0.0421465 +-0.00117532 0.0998676 -0.0237773 +0.0246952 0.0420222 0.0382704 +-0.0398433 0.0971287 -0.022179 +0.0268619 0.108823 -0.0133055 +-0.0799271 0.140795 0.0466609 +0.0180138 0.0808533 0.0524986 +-0.0868879 0.111328 0.0363925 +0.000567537 0.0921561 -0.0336854 +-0.0892038 0.0969467 0.00941895 +0.00816432 0.0904541 -0.0318561 +-0.064746 0.155508 0.00899366 +-0.0911853 0.113324 0.0173235 +-0.00120622 0.113981 -0.0187843 +-0.00924245 0.0407867 0.049553 +-0.00349897 0.0575855 0.053786 +-0.0375091 0.0407357 0.0441865 +-0.0584982 0.108398 0.0387966 +0.0391307 0.0786589 -0.0107679 +-0.0474967 0.100136 0.0424923 +0.0275962 0.102142 0.0400686 +0.0233313 0.0578274 -0.025582 +-0.0510235 0.0723937 0.0407728 +0.0280639 0.121158 0.0057742 +-0.0318235 0.0637622 -0.0194381 +-0.038893 0.0378836 0.042947 +-0.0455156 0.14919 0.00769333 +-0.0724664 0.0678961 0.0260135 +-0.0614699 0.156861 -0.0255852 +0.0511802 0.0687267 0.0256724 +-0.0639329 0.153712 -0.0368711 +-0.055548 0.0628794 0.0303893 +0.0228246 0.0344564 0.00866393 +0.0333583 0.0505553 -0.00686804 +-0.0436286 0.0534388 -0.0110764 +0.0170321 0.128388 0.0173658 +-0.0484634 0.122511 0.0297787 +-0.0908772 0.119982 0.00630567 +-0.0251882 0.121015 0.0283088 +-0.0621056 0.167818 -0.0515918 +-0.0434918 0.0451945 0.0416496 +-0.0261859 0.172679 -0.0191085 +0.0581533 0.0685799 0.00535861 +-0.0308235 0.12443 -0.00028071 +-0.088653 0.0982606 0.00741366 +0.000114549 0.110154 -0.0201623 +0.032895 0.11463 -0.00105927 +0.0393368 0.0984458 -0.00682083 +0.0171551 0.0988258 -0.0226279 +0.0605804 0.0651016 0.017176 +-0.0528261 0.149337 0.0214103 +-0.0213292 0.159914 -0.0125433 +0.000685965 0.124734 0.0330095 +0.0425127 0.0872289 0.028142 +-0.0754377 0.172239 -0.0469918 +-0.00949675 0.039136 0.0341772 +-0.0750736 0.0773173 0.0349007 +-0.0204972 0.104391 0.0429524 +0.044682 0.0804275 0.0241291 +0.0288766 0.0477511 0.0362254 +-0.0590849 0.0584397 0.0175987 +-0.0187468 0.0685918 -0.0381091 +-0.0908268 0.137853 0.0181986 +-0.0934137 0.128236 0.0152484 +-0.0722094 0.155629 0.00630789 +-0.0701241 0.109501 0.0382316 +-0.0833629 0.0829469 -0.00357326 +-0.0219158 0.177176 -0.0142605 +-0.0038834 0.0389548 -0.00453366 +-0.0468309 0.0956366 -0.0220125 +0.0589161 0.0621713 0.00415053 +-0.0518659 0.144686 0.0163701 +-0.0589723 0.0448133 0.0132235 +0.05973 0.0664208 0.00812497 +-0.0911185 0.128332 0.0402364 +0.0082766 0.0667723 -0.0317926 +-0.0557755 0.0826404 -0.0214196 +-0.0254275 0.181837 -0.00892324 +-0.0899879 0.140645 0.0281829 +-0.0725199 0.141421 0.0466976 +0.0173961 0.0343459 0.000212982 +-0.0435004 0.0424369 0.0431009 +-0.0397849 0.155107 0.00553982 +0.0474231 0.0702463 0.00356979 +0.00935197 0.130836 0.00599246 +-0.0466333 0.0562665 -0.0109539 +-0.0134154 0.0393527 0.0385623 +0.0202221 0.0721388 -0.0279345 +-0.0855696 0.139064 0.00222203 +-0.0690425 0.0382325 0.0107396 +-0.0147406 0.129011 0.0158201 +-0.0436768 0.0636379 -0.0137577 +0.058107 0.0694858 0.00643586 +-0.0523916 0.160438 -0.00307609 +-0.0208502 0.120881 -0.00994613 +-0.0144972 0.0772805 0.0565653 +0.0146633 0.0548535 0.0491553 +-0.0872189 0.103599 0.00739967 +-0.013497 0.0701643 0.0543951 +-0.0727808 0.161025 -0.0379399 +0.0541744 0.0495318 0.0218692 +-0.0180637 0.122407 0.0308158 +-0.0437406 0.150663 0.00676805 +-0.0471693 0.128157 0.0265222 +0.000324051 0.0583269 -0.0327186 +0.0183373 0.109817 -0.016338 +-0.0826495 0.137607 -0.000712655 +0.0256839 0.122773 0.00490001 +0.0354824 0.111268 -0.000157004 +-0.0457208 0.0643263 0.038969 +0.0547017 0.0700348 0.00381661 +-0.00761606 0.128811 0.0256727 +-0.0687402 0.156349 0.0177202 +-0.085121 0.108927 0.00536277 +-0.0739548 0.136937 -0.00691386 +-0.00649589 0.0884166 0.05709 +-0.068322 0.144999 -0.0199128 +-0.0891584 0.142048 0.0331685 +-0.0282821 0.0889315 -0.0326167 +-0.0270715 0.0381475 0.00619785 +0.0226739 0.0430625 -0.011732 +-0.0895091 0.147137 0.0278175 +-0.0396286 0.0534411 -0.011004 +-0.0570587 0.0521462 0.00466373 +-0.0421407 0.162162 -0.0108328 +-0.0831356 0.0816494 -0.00150376 +-0.0274399 0.180304 -0.00715734 +-0.055838 0.0927189 -0.0219026 +-0.0624754 0.163097 -0.0475912 +-0.064973 0.0365283 0.0405192 +-0.0434783 0.0690982 0.041489 +0.0407433 0.102836 0.021176 +-0.0588838 0.0468495 0.0306747 +0.00493781 0.100395 -0.0223096 +0.00122691 0.116615 -0.0176232 +-0.035551 0.0451135 -0.0264751 +-0.025842 0.091626 -0.0326108 +0.0509675 0.0463703 0.0218015 +-0.077144 0.164539 -0.0230622 +-0.0613807 0.122656 0.0428396 +0.0364941 0.0454217 0.0304675 +-0.0655017 0.0931357 0.0435076 +-0.0869021 0.114398 0.00327085 +-0.0624965 0.109755 0.0377659 +-0.0219613 0.124807 -0.00195706 +-0.0564977 0.109762 0.0379025 +-0.0489044 0.0413839 -0.0112514 +-0.0464999 0.104301 0.0412272 +-0.0689362 0.173831 -0.0430963 +-0.0274521 0.175685 -0.00821886 +-0.00850113 0.0633575 0.0560799 +-0.0350673 0.0752529 -0.020583 +-0.0702674 0.128451 0.0511564 +-0.0318141 0.156607 0.00124178 +0.0187844 0.127527 0.00803838 +-0.0133229 0.0978873 -0.0277326 +0.00349851 0.0356817 -6.66678e-05 +-0.0714787 0.0630924 0.012741 +-0.0723877 0.16801 -0.0460141 +-0.0314985 0.12639 0.0112101 +0.0103131 0.0935662 -0.0290602 +0.0162881 0.0708862 -0.0299631 +-0.0486922 0.0693814 -0.0146213 +-0.00965082 0.0496857 -0.0310806 +-0.0472721 0.035073 0.043832 +-0.0505797 0.0528906 0.0145102 +-0.00843296 0.037899 -0.0156923 +-0.0276376 0.0383723 -0.00322479 +-0.0394609 0.174124 -0.00699657 +-0.0444987 0.125316 -0.00848377 +0.0413134 0.0732089 -0.00778125 +-0.0654437 0.17819 -0.0606312 +-0.0194942 0.0498847 0.046612 +-0.0470957 0.0376632 0.0453493 +-0.0435029 0.0832144 0.0426759 +-0.0134871 0.123689 0.0319378 +-0.0174978 0.0744121 0.0553624 +0.0333782 0.11597 0.0192002 +-0.0203318 0.0946383 0.0508766 +-0.0412055 0.0419705 -0.0232873 +-0.0815038 0.0885533 0.0328994 +-0.0703591 0.0620888 0.0120183 +-0.0334658 0.0396217 0.0500837 +-0.036771 0.0343273 0.0309808 +-0.0165061 0.126041 -0.00139683 +0.0369819 0.102039 0.0307859 +-0.0207502 0.0626823 -0.0352205 +0.0061481 0.104478 -0.0212191 +0.0323926 0.117262 0.0173907 +-0.0357746 0.08137 -0.0222094 +-0.0375579 0.0341991 0.0273875 +-0.0503289 0.0543622 0.0156654 +-0.0287388 0.076371 0.0428795 +-0.0631791 0.0597373 0.0065938 +-0.00649181 0.104468 0.0439265 +0.00653601 0.0924318 -0.0319265 +-0.0371937 0.168177 -0.0134205 +-0.0375614 0.128197 0.00751871 +-0.0898903 0.135179 0.0352087 +0.037196 0.0699864 0.036159 +0.0276189 0.0564968 -0.0197599 +0.0447325 0.0931835 0.0161662 +0.0398803 0.0927067 0.0314285 +-0.0468272 0.125328 0.0268353 +-0.0715318 0.0347543 -0.000134182 +-0.0859938 0.0978404 0.0272064 +-0.0460065 0.0410789 -0.0142843 +-0.0499829 0.0586014 0.0334591 +-0.0614235 0.172219 -0.0618413 +0.00350193 0.0474397 0.0500395 +0.0226438 0.0875613 0.0487078 +0.0374992 0.0644481 -0.0117672 +-0.00648083 0.111994 -0.0206545 +-0.0934649 0.120072 0.0123034 +0.00542168 0.12935 -0.00135496 +-0.0765071 0.126009 0.0528667 +-0.0308338 0.109919 -0.0183719 +0.018594 0.125548 0.0250901 +-0.0205082 0.0474421 0.0508554 +-0.0252811 0.168282 -0.0104061 +-0.051716 0.150726 0.0145842 +-0.0317716 0.0863018 -0.027557 +-0.0793223 0.151473 0.000118749 +-0.0823192 0.154091 0.0115231 +0.0432611 0.071972 -0.00279979 +-0.0761461 0.154973 -0.00265921 +-0.032878 0.156591 -0.0107994 +0.0360211 0.0628935 -0.0127986 +-0.0321679 0.120788 0.027294 +-0.00521106 0.038426 0.0176436 +0.0377365 0.0388851 0.0205214 +0.0183131 0.127887 0.0164149 +-0.0580398 0.0608775 0.0245548 +-0.0791963 0.108632 0.0349508 +-0.00201716 0.131125 0.0175388 +0.0407504 0.0633497 -0.00473671 +0.0447287 0.0917385 0.00119217 +-0.0534928 0.0848236 0.0453456 +0.00605741 0.0346665 0.039556 +-0.0276244 0.0436594 -0.0289391 +-0.00868086 0.056987 -0.0336771 +-0.058573 0.0613666 -0.00334192 +0.00741372 0.0360842 -0.0231635 +0.00514996 0.0337963 0.0112147 +-0.064123 0.113942 -0.0123233 +0.0527625 0.0723674 0.0204268 +-0.0354974 0.0634085 0.0409173 +0.0287147 0.0352518 0.00538775 +-0.0522813 0.0461425 0.0206748 +0.0547864 0.0548406 0.00018303 +0.00557978 0.101599 0.0456072 +0.00472897 0.0950887 -0.030676 +0.0355131 0.0781566 0.0390786 +0.0402454 0.0843611 -0.0117637 +-0.0605819 0.0468615 0.000669297 +-0.0394923 0.074754 0.042367 +-0.0331798 0.0779303 -0.0275261 +-0.0683095 0.178205 -0.0587107 +-0.00995429 0.0389301 0.0324647 +-0.0495001 0.108413 0.0388185 +-0.0659124 0.113781 -0.0114133 +-0.0404538 0.105662 0.0393313 +-0.0654729 0.17978 -0.0563035 +-0.0614888 0.0918402 0.045217 +0.0333657 0.0640658 -0.0168115 +-0.0809488 0.144539 -0.000825536 +-0.0545043 0.0918174 0.0448821 +-0.0504943 0.147794 0.0128405 +-0.0745085 0.118967 0.0529255 +-0.0596424 0.0629313 -0.00554826 +0.0600133 0.0636587 0.00714888 +0.0272456 0.0746657 -0.023693 +0.0433693 0.0575272 -0.00543691 +-0.0084928 0.0591086 0.0550857 +0.0327041 0.0686805 0.0402125 +-0.0371896 0.166685 -0.0135589 +0.0115191 0.107071 0.0419973 +0.0398757 0.096658 0.0297176 +-0.0882102 0.118977 0.047099 +-0.0794917 0.134473 0.0511764 +-0.0147562 0.0388704 -0.0103641 +-0.0729608 0.135493 -0.0074448 +-0.0829718 0.144576 0.00217748 +0.0121355 0.107265 -0.0192728 +0.00249537 0.0427747 0.0458993 +-0.0590743 0.136941 -0.00615344 +-0.0740187 0.0822617 -0.01463 +0.0274881 0.0349726 0.0165028 +0.0249311 0.118938 0.0303034 +-0.0860712 0.137702 0.0022107 +-0.00546373 0.0337972 -0.022595 +-0.0425018 0.0506116 0.0394181 +0.0044907 0.119648 0.0370088 +-0.066886 0.129814 0.0472408 +-0.033949 0.0667384 -0.0165589 +0.0265464 0.0699406 0.043619 +-0.0486667 0.134012 0.00340208 +0.0201914 0.117982 0.0346477 +-0.033458 0.0353739 -0.0310204 +-0.0251991 0.0536651 0.0400375 +-0.0689113 0.147966 -0.0319204 +-0.0650665 0.151369 -0.0356223 +-0.065894 0.118002 -0.00906639 +-0.00150449 0.0350731 0.0394353 +0.00648653 0.0951017 0.0524749 +0.0322641 0.11194 -0.00663069 +0.0356067 0.113152 0.00567562 +-0.0317604 0.120314 -0.00921321 +-0.0666072 0.0846933 0.0437683 +-0.0745085 0.13306 0.0516401 +-0.0914301 0.133749 0.0202171 +-0.0271327 0.0917299 -0.030613 +0.0356733 0.107346 0.028881 +0.021724 0.104691 0.0421173 +-0.0214953 0.0474568 0.0509792 +0.0189666 0.119003 -0.0102495 +0.0330783 0.0534528 0.0353209 +-0.0796959 0.154266 0.00805358 +-0.0370933 0.175555 -0.00565624 +-0.0324183 0.116998 -0.0137964 +-0.015069 0.117815 -0.0147928 +-0.0541455 0.0482522 0.0392578 +-0.017538 0.18639 -0.0186026 +-0.0486882 0.138613 0.0123943 +-0.0134995 0.0786948 0.0569449 +-0.0792474 0.0803083 0.033239 +-0.0523607 0.12647 -0.00557636 +-0.0261456 0.180134 -0.00803266 +-0.0654933 0.0875673 0.0446215 +0.0410795 0.0647663 -0.00478377 +0.038759 0.104954 -0.0010414 +0.0213206 0.103387 0.0432887 +0.00249002 0.112797 0.0416669 +-0.02662 0.157614 -0.0107103 +-0.0524373 0.0487028 0.0136696 +0.0367672 0.0605146 0.0354804 +-0.0769184 0.0832691 0.0369336 +-0.0650248 0.0337055 0.00787315 +-0.0515046 0.159378 0.00834015 +-0.0547588 0.079768 -0.0207581 +-0.0799475 0.0796892 0.0318714 +-0.0819371 0.129486 -0.00455242 +0.0162371 0.0359566 0.0423025 +-0.052497 0.108432 0.038849 +-0.0330169 0.0750953 -0.0275046 +-0.0367909 0.0856326 -0.0224706 +-0.0909792 0.143017 0.0266346 +-0.0790213 0.169435 -0.0369802 +-0.0224887 0.120777 0.0306794 +-0.0714154 0.063966 0.00470687 +-0.0833338 0.121705 0.0492392 +-0.00224884 0.0410819 0.0473849 +-0.0064961 0.0647536 0.0562043 +-0.0154675 0.0382885 0.0102401 +0.0316901 0.0754766 0.0423249 +-0.0682663 0.0409329 0.00988698 +-0.0397472 0.0753921 -0.0181662 +-0.0404974 0.0534278 0.0394751 +-0.027235 0.0964545 -0.0242996 +0.01346 0.094917 0.0501359 +-0.0101655 0.178729 -0.0267529 +-0.0368558 0.0971787 -0.022608 +-0.0618627 0.061311 0.023361 +-0.00785703 0.0384956 0.0242725 +-0.00828946 0.0422134 0.0491908 +-0.0626761 0.177191 -0.057627 +-0.0197826 0.0770974 -0.0390157 +-0.0283747 0.0368322 -0.0186629 +-0.0678325 0.165206 -0.0549947 +-0.0762767 0.179149 -0.050884 +-0.0126939 0.0585083 -0.0350263 +0.0259904 0.108758 0.0377477 +0.042201 0.0819186 0.0294354 +0.0164623 0.11028 -0.0168584 +-0.000216315 0.0411702 0.046762 +-0.0166283 0.0393036 -0.0275139 +-0.0660426 0.171124 -0.0420386 +0.0456785 0.0862046 0.0141695 +0.00138117 0.044939 -0.0263139 +0.0461205 0.0704224 0.0223322 +-0.0776245 0.0703136 0.0210685 +-0.0756983 0.148597 -0.0138657 +-0.00849865 0.0773628 0.0576515 +-0.0145231 0.0446315 0.0506096 +-0.0683418 0.0625091 0.0209713 +0.0172542 0.0764235 -0.0285503 +0.00803706 0.0343648 -0.0148062 +0.02126 0.0748992 -0.0268979 +-0.0630463 0.113863 0.0385547 +-0.0145507 0.0980154 0.0489953 +-0.0546077 0.131128 0.0350935 +-0.012492 0.061843 0.0546212 +-0.028497 0.0550003 -0.0233987 +0.0217846 0.11532 -0.0122874 +-0.0931885 0.121553 0.0392843 +-0.0522878 0.055669 0.0133058 +-0.0592645 0.138135 0.0336221 +-0.0895773 0.139272 0.0261794 +-0.0653179 0.156011 -0.0499494 +0.0382996 0.103126 -0.00513692 +-0.00322923 0.0355467 -0.0162422 +0.0141613 0.0988714 -0.0229756 +-0.0404979 0.0776396 0.043177 +-0.000517251 0.0386237 0.0468325 +-0.0745039 0.117561 0.0526615 +-0.0404908 0.101464 0.0408992 +0.00150976 0.0562224 0.0541662 +-0.0302058 0.0649962 -0.0264588 +-0.0427465 0.0393017 -0.0242897 +-0.0680504 0.12005 0.0525411 +0.0105239 0.101777 0.0472989 +-0.051788 0.0855011 -0.0215694 +0.0121427 0.124109 -0.00776299 +-0.0714952 0.123214 0.0534125 +-0.0377025 0.0444987 -0.0253388 +-0.0285008 0.0573948 0.0366096 +-0.0557355 0.0753549 -0.0185519 +-0.0136024 0.0377623 -0.0264268 +-0.055443 0.13396 0.033868 +-0.0329956 0.122915 -0.00595413 +-0.0659107 0.120913 -0.00886784 +-0.00952503 0.0920885 -0.0357277 +-0.0437604 0.036567 -0.0252782 +-0.020729 0.181491 -0.0220031 +0.00793492 0.130935 0.0197362 +-0.00287417 0.10736 -0.0221559 +-0.0531678 0.0503031 -0.00638771 +-0.0649059 0.116607 -0.0100071 +0.0311853 0.0491232 0.0343139 +-0.0464498 0.034849 -0.0185661 +-0.0448976 0.168579 0.00154181 +0.0324248 0.0752705 -0.0187807 +0.00488488 0.0387234 -0.0100497 +-0.0607447 0.0752603 -0.0176616 +-0.0575406 0.0387439 -0.00960491 +-0.0874426 0.110454 0.0173412 +-0.0517698 0.0516016 0.0312301 +-0.0727656 0.156832 -0.0339136 +0.0123073 0.0638424 -0.0304488 +-0.00866157 0.0541436 -0.0334268 +0.00183737 0.0373069 0.04638 +-0.0298138 0.0344903 0.0411187 +-0.0674167 0.149888 -0.0375972 +-0.0770317 0.088754 0.0382806 +-0.0857815 0.0897033 0.0272482 +-0.0125983 0.037741 -0.0261872 +0.0182378 0.0893522 -0.0266421 +-0.0766704 0.154203 -0.00290271 +-0.0684648 0.0617211 0.0180797 +0.0505111 0.0637895 0.0291551 +-0.0497918 0.143216 0.0113941 +-0.0616227 0.156855 -0.0295846 +0.0290304 0.0968725 0.0421292 +-0.0756542 0.0679921 0.00394259 +-0.0526765 0.0514226 0.0124143 +-0.0625972 0.0348156 0.0215996 +-0.0544966 0.0791235 0.0440855 +-0.0544133 0.159808 0.00694146 +2.76528e-05 0.0391548 -0.0114154 +-0.00549746 0.0503818 0.0516227 +-0.0646199 0.0359342 0.0410351 +0.0410489 0.0445052 0.0289111 +-0.0356376 0.0548341 -0.0105043 +0.0272051 0.0465425 -0.0127095 +-0.0513967 0.161204 -0.00381805 +-0.0424671 0.124776 0.022048 +-0.0300883 0.0335187 -0.027157 +-0.0362553 0.0336801 0.0101688 +0.0513156 0.0588831 -0.00408417 +0.0399488 0.0688733 -0.0097971 +-0.0617146 0.155302 -0.0255819 +-0.0112103 0.129394 0.0199977 +-0.0552256 0.153277 0.0254807 +-0.0697772 0.0409122 0.00855159 +-0.0257631 0.0755055 -0.0369491 +-0.0601959 0.0422699 -0.00706205 +-0.0475933 0.134581 0.0184866 +0.0267481 0.0659374 0.0438828 +-0.0790343 0.0886679 0.0360671 +0.0606094 0.0637127 0.00915317 +-0.0823359 0.140394 0.000222625 +-0.0792589 0.1445 -0.00280742 +0.0288607 0.118772 0.0260462 +-0.000258207 0.0388058 4.93079e-05 +0.0142249 0.0779815 -0.0305449 +0.0279207 0.111816 -0.0105079 +-0.0649061 0.108122 -0.0141961 +0.0372666 0.0547889 -0.00619261 +-0.0258342 0.159627 -0.000620301 +-0.0761165 0.0874143 0.0388159 +0.0425599 0.101502 0.0121632 +0.0533305 0.0723883 0.0073663 +-0.0814882 0.139397 0.0468344 +-0.0119496 0.127575 -0.00116297 +0.0308488 0.116432 0.0267923 +-0.0342458 0.127284 0.0102001 +0.0488271 0.0733963 0.0130056 +-0.017912 0.059765 0.0509406 +0.0133103 0.0753629 0.0544488 +-0.0896061 0.126751 0.00429509 +0.034401 0.0461473 -0.00601616 +-0.0485411 0.166778 0.000587101 +0.0342862 0.0782566 -0.0167489 +-0.00549615 0.0925657 0.0562617 +-0.0700277 0.153659 -0.0489787 +0.00562336 0.034628 0.021452 +-0.0825014 0.0978733 -0.00561152 +-0.0665019 0.0818141 0.0428543 +-0.0628077 0.166262 -0.0415912 +0.0329576 0.0753133 -0.0177979 +0.0159612 0.0887478 0.0513106 +-0.0348521 0.0972102 -0.0229902 +0.00689753 0.13043 0.00224143 +0.0163113 0.0637479 -0.0291811 +-0.0681449 0.144372 -0.0168262 +-0.0709402 0.170831 -0.0510269 +-0.0618586 0.161576 -0.034591 +-0.05709 0.0562779 0.00261705 +-0.0511762 0.163872 0.00329038 +-0.0295002 0.0688631 0.0391758 +-0.0548706 0.0634738 0.0317723 +0.00519565 0.0838361 -0.0338494 +0.0412244 0.0703917 -0.00779979 +-0.0485608 0.164 0.00493162 +0.0405319 0.0913292 0.030651 +-0.0364055 0.0394201 0.0459276 +-0.0885895 0.126718 0.00227148 +-0.00135158 0.0925397 -0.0341169 +-0.0155034 0.0472755 0.0490261 +-0.0533709 0.0334238 -0.0075905 +-0.0135602 0.174221 -0.0197865 +0.0151695 0.0534137 0.0481113 +0.00249824 0.119676 0.0375233 +-0.0574904 0.0847348 0.0442092 +-0.0706266 0.111419 0.0453421 +-0.0498404 0.122243 -0.0112035 +-0.0580787 0.133988 -0.00600022 +-0.0856455 0.0845341 0.000486997 +-0.0677324 0.0847093 0.0432514 +-0.0516192 0.112658 -0.0171697 +-0.0294883 0.101537 0.0426799 +-0.0562967 0.0548357 0.00668262 +-0.0870689 0.0968011 0.00243877 +-0.0809104 0.126584 -0.00546143 +0.0226682 0.115322 0.0347114 +-0.0702279 0.156078 0.0244771 +0.00613975 0.0976727 -0.0254362 +-0.0654107 0.0782591 0.0414837 +0.0154936 0.104462 0.0445958 +-0.0557216 0.125528 0.0387388 +-0.0708946 0.1037 -0.0131771 +0.0207514 0.10232 -0.0203322 +0.040798 0.105646 0.00916422 +-0.0789759 0.136856 -0.00458832 +0.00163159 0.126824 0.0304308 +0.0217692 0.0444645 -0.0177596 +0.00149843 0.0965502 0.0531993 +0.00416774 0.034456 0.0194982 +-0.022279 0.185099 -0.0171819 +-0.0144819 0.0759021 0.0565083 +-0.062395 0.163038 -0.0545883 +0.0386856 0.0757975 -0.0108084 +0.0230618 0.0389706 0.0372995 +-0.0661823 0.154393 0.00121795 +-0.0751879 0.179229 -0.0530087 +-0.000499764 0.0590718 0.0548831 +-0.0616117 0.16 -0.0305904 +-0.0254372 0.0796492 0.0521904 +-0.087722 0.128407 0.0462822 +-0.0361331 0.122312 0.027301 +-0.0259579 0.0383264 -0.00469023 +-0.0615278 0.0399873 -0.00779984 +-0.0911978 0.147452 0.0151543 +-0.0776353 0.15693 -0.0189052 +-0.048662 0.0345502 0.0387985 +0.00500615 0.0390969 0.0281732 +-0.0664605 0.152204 -0.0437352 +-0.0514963 0.157854 0.00954267 +-0.0893902 0.139278 0.0291842 +-0.092072 0.128303 0.0302461 +-0.0166194 0.0421642 -0.027592 +-0.0880283 0.128084 0.00127828 +-0.06275 0.178179 -0.0598124 +-0.0242491 0.0796961 0.0538111 +-0.0575802 0.14965 0.0326026 +-0.0598499 0.0364094 -0.00954648 +0.0260337 0.0639191 -0.0225668 +-0.0215138 0.185205 -0.0184453 +0.00733204 0.0567933 -0.0307054 +-0.0394107 0.125604 0.021627 +-0.0805747 0.154604 0.0238516 +0.0319556 0.0942571 0.0410831 +-0.0503335 0.0345244 0.0401985 +-0.0521615 0.159088 -0.00368491 +-0.0816591 0.0828436 -0.00556986 +0.0120628 0.0346214 0.0245844 +0.00946799 0.112678 0.0395888 +-0.00501719 0.0348021 0.0425449 +-0.080434 0.0763484 0.0258387 +0.0419394 0.0802864 -0.00678235 +-0.0270715 0.179993 -0.0160072 +-0.00929516 0.17029 -0.0258484 +0.028889 0.0549767 0.0398373 +-0.0324184 0.123701 0.0227019 +-0.00768132 0.0976452 -0.0294292 +-0.0534956 0.0478266 0.0400304 +-0.0637998 0.0852745 -0.0191701 +0.0175395 0.0364962 0.0420884 +0.0289699 0.100814 0.0402993 +-0.0384924 0.0478181 0.0398313 +-0.00649796 0.0457161 0.0472731 +0.00861625 0.13122 0.00857267 +-0.0424707 0.0634258 0.0409808 +-0.0147714 0.163994 -0.0109737 +0.0514504 0.0735674 0.0125302 +0.0157166 0.0461353 0.0435597 +-0.0886232 0.152074 0.0182297 +-0.0732612 0.155462 -0.02991 +0.0560042 0.0728404 0.0157211 +-0.0465551 0.0447198 -0.0107805 +-0.020486 0.18455 -0.0138786 +0.00948927 0.0976692 0.0490505 +0.0112322 0.0342419 -0.000927635 +0.0153695 0.0617406 0.0502582 +-0.0137598 0.0382596 0.0196658 +0.0302365 0.0828976 -0.0200496 +-0.00484087 0.0994589 -0.0252596 +-0.0335771 0.177292 -0.00581839 +-0.0706171 0.160991 -0.0459386 +-0.0381352 0.155099 0.00439417 +0.0262713 0.112733 0.0346521 +-0.0288992 0.0377652 0.0242203 +-0.0741081 0.174769 -0.0407073 +0.0312687 0.106096 -0.0123707 +-0.0467828 0.168244 0.000200438 +-0.0544952 0.0440117 0.0450302 +0.00623037 0.129867 0.000104943 +-0.043169 0.163647 -0.0101027 +-0.0034944 0.103046 0.0439357 +-0.0265042 0.106069 -0.02235 +-0.0577843 0.0811473 -0.0206854 +-0.0358177 0.0886369 -0.024178 +-0.0726405 0.148337 -0.0310398 +-0.0454975 0.111194 0.0370842 +-0.0671848 0.0335335 0.00220964 +-0.0117936 0.0667192 0.0544625 +-0.0609674 0.125285 -0.00834926 +-0.080841 0.0760714 -0.00147772 +-0.0522091 0.118697 -0.0134778 +-0.074349 0.162439 -0.0349528 +-0.0740415 0.112641 0.0489542 +-0.0294567 0.0847909 0.044594 +-0.0204364 0.038385 0.0254029 +-0.0497015 0.070866 -0.0150622 +-0.0525829 0.113848 -0.0164008 +-0.0415348 0.163761 0.00444738 +-0.0644934 0.106993 0.039043 +0.0437981 0.0734503 -0.00176783 +-0.0284962 0.0946634 0.0451029 +0.0309795 0.0506032 0.0357766 +-0.0395331 0.128532 0.0067941 +-0.0424235 0.12018 -0.013117 +-0.0197167 0.103079 -0.0233045 +-0.0430994 0.12944 0.0113807 +-0.0913339 0.117411 0.0283055 +0.026348 0.0463448 0.037827 +-0.0406738 0.0606904 -0.0121867 +-0.071511 0.0930107 0.0417462 +-0.0866623 0.0964635 0.0264805 +0.00386952 0.131337 0.0182591 +0.0282305 0.08443 -0.0217055 +0.0128412 0.0347905 0.0282102 +0.00434097 0.053874 -0.0300717 +-0.0754795 0.0704499 0.0266608 +-0.0699695 0.135529 -0.00821968 +-0.0305143 0.0348089 0.0211376 +0.00750189 0.118272 0.0376599 +-0.0504996 0.108397 0.0385655 +-0.0779682 0.135412 -0.00525448 +-0.0273965 0.0380183 0.0261038 +-0.0520915 0.129726 0.0334448 +-0.0221568 0.157426 -0.00647102 +-0.0562219 0.0560519 -0.00142054 +-0.0817829 0.110167 0.0313299 +-0.0502435 0.0335698 -0.00160666 +0.0331444 0.0584441 -0.0147212 +-0.00651273 0.0760152 0.058184 +-0.0285619 0.108073 -0.0204718 +-0.0157027 0.123907 0.0301351 +-0.0175006 0.10024 0.0438179 +-0.0297515 0.154263 -0.00514597 +-0.0475033 0.113884 0.0346438 +-0.0154952 0.087016 0.0568367 +0.0435889 0.0706095 -0.000776861 +-0.0930208 0.116049 0.0173125 +-0.0783399 0.174997 -0.0480125 +-0.0650728 0.117149 0.0481049 +0.0600369 0.0650499 0.00814341 +-0.0678832 0.147765 -0.0303891 +-0.0802136 0.0813857 -0.00655277 +-0.0356852 0.127701 0.00820492 +0.0154871 0.0990335 0.0473819 +-0.019377 0.127678 0.00978651 +-0.0208657 0.123339 0.0268408 +-0.0553906 0.073233 0.0409139 +0.0560337 0.0553031 0.0245952 +-0.0306612 0.0816984 0.0420491 +0.04335 0.0902653 0.0251673 +-0.0137008 0.0599733 -0.0359611 +-0.0535493 0.045819 -0.00734382 +0.0152704 0.07093 -0.0305648 +-0.0706849 0.0819434 0.0406373 +0.0104915 0.114065 0.0387753 +-0.052073 0.150157 -0.00315276 +0.00150908 0.0458287 0.0477014 +-0.00149907 0.122451 0.0357652 +0.0346578 0.114254 0.0196698 +-0.0263079 0.125672 0.00579971 +-0.0662371 0.173912 -0.0594768 +-0.0111949 0.178453 -0.0296295 +-0.039457 0.0403768 -0.0273046 +-0.0321606 0.153429 -0.00535973 +0.0505072 0.0678423 0.0265215 +0.0377143 0.106919 0.0261871 +-0.0717609 0.172825 -0.0369735 +-0.034656 0.0592094 -0.011649 +-0.0237103 0.0348634 0.0507821 +-0.0409865 0.0355803 0.00929737 +0.0240747 0.0915746 0.0472686 +-0.0576816 0.0336048 -0.0104516 +0.034582 0.0563647 0.0357928 +-0.0304985 0.0631621 0.0381216 +-0.0145978 0.0392398 -0.0269855 +-0.0446029 0.130656 0.0108143 +0.0240159 0.124704 0.0156714 +0.00222038 0.0796794 -0.0348837 +-0.029229 0.179986 -0.0130226 +-0.0371614 0.0338798 0.00980443 +-0.0654857 0.101487 0.0416824 +-0.0386286 0.0534191 -0.0107521 +-0.0743388 0.0659419 0.0131754 +-0.0775178 0.172972 -0.0399134 +-0.0704983 0.0999903 0.0403231 +-0.0754673 0.153642 0.0315487 +-0.0567915 0.158113 0.00751453 +-0.0733158 0.165215 -0.0409863 +-0.0878452 0.096803 0.00445868 +0.02849 0.120167 0.00308975 +-0.0866911 0.107697 0.0133542 +-0.0422556 0.127428 -0.00269381 +-0.0684868 0.135467 0.0467048 +-0.0187173 0.108826 -0.0212527 +-0.0109134 0.038586 0.0018115 +-0.0689089 0.106601 -0.012938 +0.00232768 0.0597693 -0.0328325 +-0.0759088 0.150426 0.0375079 +-0.0642836 0.175364 -0.0612207 +-0.0626162 0.142488 0.0376248 +-0.0388973 0.150052 -0.00339157 +0.0187974 0.0398349 -0.0187285 +0.0404333 0.0725805 0.0320798 +-0.0863763 0.0991625 0.0261078 +0.0544186 0.0725633 0.0195702 +-0.076294 0.155585 0.0106948 +-0.0611522 0.045903 0.0393286 +-0.0167746 0.0756989 -0.0389455 +-0.0578115 0.0619893 0.0271205 +-0.0127071 0.179586 -0.0289228 +-0.0568431 0.0926948 -0.0216401 +-0.0900812 0.150215 0.0221142 +0.0222403 0.0416489 -0.00972259 +-0.0504069 0.135839 0.0247969 +-0.0304966 0.0545819 0.0366047 +-0.0103146 0.180354 -0.0288775 +0.0320122 0.117952 0.0129635 +0.0440424 0.0496996 0.0318585 +0.0393181 0.0603877 -0.00577734 +-0.071953 0.16101 -0.0409434 +-0.0437665 0.168716 0.00196199 +-0.0498819 0.105595 -0.0195612 +0.0217639 0.0458254 -0.0188683 +-0.0921421 0.116123 0.0383102 +-0.0636791 0.157483 -0.0138656 +0.0266706 0.04428 -0.00700704 +0.0433132 0.0818321 0.0274518 +-0.0580456 0.0494852 0.00468232 +-0.0735836 0.159386 -0.00731186 +-0.0544231 0.0344532 0.039385 +-0.00150237 0.089761 0.0564112 +0.015933 0.126357 0.0269718 +-0.0425015 0.0719333 0.0422422 +-0.0589488 0.147198 -0.00200697 +-0.087209 0.0941073 0.00444199 +-0.0120214 0.178126 -0.0292101 +-0.0835465 0.101952 0.0288636 +0.041496 0.0555737 0.0320634 +-0.0025007 0.0675576 0.0566246 +-0.0756877 0.15767 -0.00739081 +-0.0105023 0.0829243 0.0578427 +-0.00627368 0.128136 0.0276028 +-0.0404708 0.109814 0.0374017 +-0.00378356 0.130498 0.0212315 +0.0580765 0.0566038 0.0222343 +-0.0853725 0.111782 0.0273822 +0.0428559 0.0972978 0.0221679 +0.00122739 0.121444 0.0362285 +-0.0274798 0.0446461 0.0507675 +-0.0304832 0.12104 0.0263992 +-0.0371379 0.127502 0.0150528 +-0.0778671 0.177131 -0.0494084 +-0.0775564 0.166657 -0.0379504 +-0.0605167 0.0386224 -0.00865968 +-0.0171147 0.161213 -0.00734926 +-0.0726687 0.161352 -0.00991102 +0.032766 0.0700345 0.0403232 +-0.0458559 0.10138 -0.0215412 +0.017353 0.0374009 0.0430484 +0.000357196 0.0347559 0.0401008 +-0.0604421 0.0427792 0.0246961 +-0.0440271 0.128143 0.0184429 +0.0423724 0.056151 -0.00596664 +0.00534844 0.0596161 -0.0309806 +0.0320447 0.061134 -0.0177676 +-0.00279591 0.0988433 -0.0266823 +0.0289846 0.0664902 -0.0199255 +0.000300027 0.0360761 0.019065 +-0.0250833 0.0379957 0.0175874 +0.0345167 0.0754586 -0.0157294 +0.0153241 0.0623295 -0.0291944 +-0.0609083 0.0612023 0.0236586 +-0.0698972 0.0655268 -0.00153079 +0.00337067 0.115645 -0.0185908 +-0.0315398 0.0589058 0.0377684 +-0.00748372 0.0488969 0.0502433 +-0.0877886 0.0861226 0.0174689 +0.0414464 0.101443 0.020163 +0.0252372 0.0926012 -0.0220221 +-0.0572172 0.0498044 0.00711465 +-0.0384957 0.0719179 0.0419735 +0.0143485 0.0552312 -0.0288146 +-0.0512659 0.0360808 0.0462964 +-0.0880011 0.0941555 0.00641769 +-0.0508873 0.109845 -0.0186279 +-0.0514991 0.112527 0.0359192 +-0.0338144 0.0342727 0.0263277 +-0.0615036 0.0804118 0.0430159 +-0.0663263 0.0606754 0.0176657 +-0.0909825 0.11607 0.0303184 +0.0184707 0.107054 0.0413783 +-0.0243398 0.183957 -0.0138554 +-0.0158705 0.161111 -0.00904539 +-0.0335094 0.0647262 0.0398847 +-0.0782927 0.098997 -0.00960155 +0.0486963 0.0730972 0.0159514 +-0.0478872 0.0335336 -0.00475407 +-0.0154917 0.0883884 0.056678 +-0.077344 0.119067 0.051823 +-0.0560293 0.0674866 0.0368481 +-0.0635813 0.138158 0.0379352 +-0.0217661 0.0670215 -0.0366181 +0.0483442 0.0575601 -0.00531363 +-0.0237817 0.0727523 -0.0377511 +0.0443603 0.0490341 -0.0052894 +-0.0604973 0.0904382 0.0452731 +-0.0627563 0.152415 -0.0301468 +-0.0714195 0.067071 -0.00151156 +-0.0861662 0.147397 0.00721409 +0.011631 0.0474937 0.0464252 +0.0254946 0.0406248 0.0343049 +0.035443 0.111045 0.0256623 +-0.000588677 0.037658 -0.0249499 +-0.0388448 0.0971399 -0.0223049 +-0.0660244 0.166553 -0.0262486 +-0.048499 0.0848032 0.0451307 +0.0371019 0.111384 0.0119604 +-0.00927598 0.177254 -0.0287785 +-0.0389846 0.1533 -0.00797514 +-0.0351198 0.0484277 -0.0173281 +-0.00353807 0.0389271 0.0301841 +0.0132013 0.0864568 -0.0307211 +-0.0390625 0.110364 -0.0188163 +0.033372 0.106071 0.0326127 +-0.0831505 0.0857608 0.0304017 +0.0552187 0.0635647 0.027041 +0.0399168 0.0999289 0.0271558 +-0.0579697 0.0339719 0.0233097 +-0.0137397 0.178677 -0.0217984 +-0.0203244 0.0385446 0.0306811 +0.00122549 0.0359125 0.00298025 +0.0117447 0.0343946 -0.0103375 +-0.0913959 0.132306 0.0102259 +-0.0429194 0.0898997 -0.0223492 +-0.0511515 0.0337361 -0.0129379 +-0.0750027 0.155319 0.00677634 +-0.0771027 0.0689891 0.00817725 +-0.0353224 0.0340121 0.0244595 +-0.0291276 0.0386567 -0.0130433 +0.0303577 0.105377 -0.0136057 +0.0235082 0.12516 0.0112114 +-0.00249775 0.0787967 0.0582683 +0.0533686 0.0732758 0.0102917 +-0.0586915 0.0472669 0.00864036 +0.0328626 0.0738919 -0.0178203 +-0.017795 0.038392 0.00241319 +-0.044502 0.0478297 0.0399289 +-0.0747378 0.0687745 0.000531905 +0.0172248 0.12732 0.0217261 +0.0428517 0.0885116 0.026874 +-0.078089 0.159705 -0.0229182 +-0.00858725 0.0362397 -0.025275 +-0.0867205 0.102198 0.00542391 +-0.0926774 0.131034 0.0232376 +0.0167938 0.128074 0.00445644 +0.0541315 0.0553714 0.0271399 +-0.000925431 0.131188 0.0179397 +0.0288719 0.121048 0.0132077 +-0.00849451 0.0965679 0.0534544 +0.0226575 0.102902 -0.0189538 +-0.0787984 0.113337 -0.0032043 +-0.0099585 0.1135 -0.0182227 +-0.0282274 0.162443 -0.0041123 +-0.082525 0.0896742 -0.00660526 +-0.0477053 0.0708612 -0.0154107 +-0.0435026 0.0465062 0.0407289 +0.00126756 0.0669175 -0.0339113 +-0.0341799 0.0335887 -0.0224091 +-0.0623664 0.0443972 0.0296888 +-0.0374964 0.0676867 0.0416821 +0.00859545 0.0382141 0.0296981 +0.0458872 0.0834155 0.0151706 +-0.0908205 0.132399 0.0292201 +-0.0191683 0.0336751 -0.0214022 +-0.0140554 0.126614 -0.00210251 +-0.0260065 0.0335246 -0.026366 +0.0324259 0.0399358 -0.00240332 +-0.0296544 0.0346993 -0.0301222 +-0.0669615 0.129698 -0.00899609 +-0.0471845 0.0383965 -0.0142868 +-0.0572808 0.0345537 0.0438127 +-0.0627957 0.153425 0.0330074 +-0.0515105 0.13416 -0.00180112 +-0.0434907 0.171345 -0.00503558 +-0.0677742 0.0808646 -0.0174732 +0.00350312 0.0441648 0.0458711 +0.0291321 0.0686302 0.0420784 +0.0132792 0.0343795 0.0214237 +-0.0866978 0.12169 0.0483599 +-0.00350013 0.0801522 0.057807 +0.0371657 0.0997172 -0.00981258 +-0.0447383 0.0738987 -0.0178782 +-0.0605228 0.155495 0.0235493 +-0.0362392 0.151744 -0.00510561 +0.0454797 0.0637982 0.0288243 +-0.0672083 0.0609402 0.0172424 +0.0241031 0.0782197 0.0489777 +0.0442629 0.0672699 0.000591455 +-0.0289948 0.0522303 -0.0223864 +-0.0645013 0.0774777 0.0413253 +0.0444938 0.0959562 0.00517859 +-0.00459579 0.039143 -0.025596 +0.0184671 0.0913654 0.0479185 +0.0146407 0.129582 0.00935921 +-0.0505573 0.0439128 0.0441317 +-0.0141262 0.119616 -0.0126879 +-0.0849191 0.117035 0.0482987 +0.0280536 0.119554 5.13011e-05 +-0.0247655 0.0712486 -0.0365856 +0.0034971 0.091096 0.055256 +-0.0641848 0.0432086 0.0316934 +-0.0881185 0.151555 0.0230923 +-0.0680885 0.16093 -0.05501 +0.0474345 0.0682488 0.00159582 +0.0111403 0.105858 -0.0199086 +-0.0369545 0.0349347 0.0427177 +-0.0604782 0.144516 -0.00363507 +-0.0394712 0.08608 0.0435352 +-0.0548214 0.143869 0.0295389 +-0.028506 0.107069 0.0398546 +0.0281659 0.121502 0.0158045 +-0.0797197 0.143117 -0.0027917 +-0.0616803 0.166235 -0.0555923 +-0.0204271 0.0893191 -0.0369723 +0.0361287 0.085855 -0.0169039 +-0.00251199 0.107268 0.0437857 +-0.0114962 0.0842854 0.0575311 +-0.0738001 0.0651206 0.00865838 +-0.0114808 0.0353662 -0.0177045 +0.0391473 0.0421646 0.0269754 +-0.0565891 0.129759 0.0374849 +-0.0720408 0.171996 -0.0342175 +-0.0139288 0.0883705 -0.0380287 +-0.0562656 0.0335637 0.0133743 +-0.0196985 0.0957936 -0.0295783 +-0.00486881 0.104509 -0.0228932 +-0.0550525 0.129598 -0.0055846 +-0.0584858 0.0776493 0.0431837 +-0.0898534 0.121302 0.00430136 +-0.0191218 0.165312 -0.0179178 +-0.0249563 0.0383168 0.00102848 +-0.0199274 0.0958752 0.0490354 +-0.0574825 0.113918 0.0359516 +-0.00850157 0.101663 0.0440465 +-0.0873724 0.124348 0.0475064 +0.00764213 0.03621 -0.0128239 +-0.0264494 0.0648769 0.0395324 +0.0541546 0.0547912 -0.000791322 +-0.0434926 0.0789866 0.0425224 +0.0241906 0.121901 0.0271611 +-0.0866809 0.0819772 0.0124969 +-0.0717212 0.0344863 0.00580157 +0.0302841 0.11623 -0.00325108 +-0.0737112 0.155478 -0.0269075 +-0.0424683 0.108486 0.0389261 +0.0176716 0.0658898 0.0500991 +0.0494857 0.064014 -0.00214923 +-0.0514961 0.0945888 0.044111 +0.0340749 0.0901032 -0.0173771 +-0.0719584 0.0942006 0.0415089 +-0.0544894 0.0594391 0.0238452 +-0.0877192 0.101 0.0223776 +-0.0758319 0.173116 -0.0385323 +-0.0114857 0.119632 0.0369891 +-0.0313874 0.0581183 -0.0163942 +-0.0157652 0.0728861 -0.0388826 +0.0167046 0.0945555 -0.0241181 +-0.000498244 0.0647983 0.0567029 +0.0256473 0.0420743 0.0363142 +-0.0630437 0.12273 0.0457647 +-0.0540131 0.144678 0.0264098 +0.0135054 0.10711 0.0421551 +-0.00428335 0.124198 -0.00969837 +0.0415325 0.0816649 -0.00777347 +-0.0392229 0.0337594 -0.0179786 +0.0593141 0.0691549 0.00914325 +-0.0219522 0.0382139 0.00717586 +0.0288925 0.112764 0.0331675 +-0.0524014 0.152599 0.0134601 +-0.0628726 0.147915 -0.0152353 +-0.030456 0.158107 0.0014598 +0.0308953 0.0400111 0.0272142 +-0.0757616 0.109947 0.0435791 +0.0253341 0.0591059 -0.0237971 +-0.0261555 0.155801 -0.00568703 +-0.0679463 0.128236 -0.00906158 +-0.0156387 0.0377596 -0.0169892 +-0.0757064 0.112028 0.0472849 +-0.0155135 0.0631057 0.0533345 +-0.0512066 0.125627 -0.00670494 +-0.0896222 0.111892 0.015334 +-0.0493777 0.160927 -0.00574679 +-0.0630274 0.166296 -0.040584 +0.058244 0.0580344 0.0225642 +0.0413547 0.102812 0.0011821 +-0.0162922 0.125122 0.0270033 +0.02338 0.0632213 0.0460213 +0.0609114 0.0623534 0.0131596 +-0.0691061 0.164802 -0.0173282 +-0.0870447 0.0977755 0.0254107 +-0.00849378 0.112803 0.0415796 +0.0145027 0.115416 0.0371643 +-0.0184257 0.066889 0.0526426 +-0.0448982 0.123992 0.0241166 +-0.050497 0.0903958 0.0446608 +-0.0315626 0.0348573 0.0456798 +-0.0684915 0.0902546 0.0428415 +-0.0180785 0.0337977 -0.021304 +0.0043349 0.0389929 -0.00853324 +-0.0830349 0.153941 0.0230111 +-0.0800798 0.103192 -0.0065999 +0.0437731 0.0973301 0.016155 +0.00944321 0.131132 0.0160037 +-0.0514165 0.0627417 0.0327301 +-0.0528926 0.154865 0.0118243 +0.0187407 0.0740964 0.0517477 +-0.0721682 0.0657282 0.00147121 +0.00959045 0.131031 0.00893055 +-0.0694847 0.181423 -0.0563964 +-0.0569551 0.11454 -0.0150747 +-0.0821005 0.0885236 0.0320901 +-0.0174725 0.0383553 0.00432532 +-0.00258809 0.0348892 -0.0237423 +0.0413648 0.0939401 0.0283252 +-0.00375638 0.13079 0.0183493 +-0.0686466 0.0719376 -0.0111307 +-0.0688202 0.180176 -0.0531787 +-0.0397209 0.0710215 -0.0169451 +0.0184831 0.105752 0.0426872 +0.00809551 0.112572 -0.0192987 +0.0206432 0.121117 -0.00652883 +-0.0718516 0.0979698 -0.0147575 +-0.0662716 0.170413 -0.0392349 +0.0237477 0.0605032 -0.0251433 +-0.0340875 0.177472 -0.00744261 +-0.0167857 0.0784752 -0.0385587 +-0.0565291 0.0373798 -0.0104777 +0.00297843 0.0341587 0.014086 +-0.0667756 0.124253 0.0509201 +-0.026364 0.0359692 -0.029405 +-0.0550408 0.0334649 -0.000671931 +-0.0697701 0.0874139 0.0423816 +0.0246944 0.0835826 0.0481083 +0.0199488 0.115322 0.0360728 +0.0383916 0.042968 -0.00337479 +-0.0365829 0.0335193 -0.0246869 +-0.0355007 0.112502 0.0349387 +-0.0689238 0.125301 -0.00884615 +0.0395927 0.0385536 0.0157178 +-0.0889313 0.0875027 0.0114635 +0.0448665 0.0945715 0.00517989 +-0.0477042 0.0664777 -0.0141832 +-0.0434727 0.125255 -0.0084227 +-0.0166904 0.169787 -0.0155577 +-0.0134983 0.0501789 0.0495792 +-0.0624968 0.0833205 0.0441176 +-0.0342132 0.0345231 0.0384015 +0.043295 0.084533 0.027498 +-0.0819819 0.112797 -0.000848269 +0.0121624 0.129948 0.0198557 +-0.0674677 0.10143 0.0408399 +-0.0626754 0.059895 0.0191264 +-0.0367892 0.0459324 0.0404864 +-0.027194 0.0764697 0.0455544 +-0.0824053 0.0748814 0.00852871 +-0.0656294 0.0642362 -0.0044412 +0.032725 0.116988 0.0160848 +-0.0764226 0.102162 0.0358668 +0.00148048 0.0952613 0.0542408 +0.0228866 0.122341 0.0280976 +-0.0584486 0.139576 0.0330542 +-0.0402835 0.123242 -0.0103332 +-0.012241 0.0406566 0.0504983 +-0.0489426 0.0614374 0.0351759 +-0.0844851 0.0778045 0.00951927 +-0.0369817 0.156591 0.00432745 +-0.0882804 0.103688 0.0163664 +-0.0258065 0.0825691 -0.0373737 +-0.0355052 0.102861 0.0407303 +-0.0524183 0.131115 0.0329855 +-0.0227031 0.175691 -0.0136597 +0.050697 0.0684106 0.00144017 +0.000504835 0.0911354 0.0558722 +0.00231832 0.0583343 -0.0324165 +-0.0148886 0.169807 -0.0164639 +-0.0722033 0.152534 -0.0417656 +-0.0134817 0.073078 0.0557755 +-0.0255231 0.109882 0.0391184 +-0.0655581 0.135384 0.0421104 +-0.024745 0.0698061 -0.0360534 +0.0559546 0.0524347 0.0227151 +-0.0283257 0.118773 -0.011655 +-0.0335185 0.0974234 0.0440535 +-0.0817699 0.0748179 0.0155353 +-0.027189 0.162441 -0.00437298 +-0.0267454 0.0711222 -0.0350441 +-0.03015 0.171175 -0.0170282 +-0.026605 0.06607 0.0397555 +-0.074698 0.179765 -0.0510072 +0.0143367 0.0504741 0.0468665 +-0.0594975 0.111137 0.0367915 +-0.0346758 0.127158 0.0144691 +-0.0465015 0.0847604 0.0446321 +0.00381747 0.0354686 0.0455691 +0.0172732 0.0792708 -0.0288683 +0.0323738 0.104756 0.0346971 +-0.0794458 0.0813481 -0.00752304 +-0.0312226 0.0367355 -0.0304453 +-0.0110616 0.168437 -0.0238044 +-0.0579369 0.119806 -0.0105246 +-0.0337394 0.0355643 0.0323212 +0.0312129 0.0525777 -0.012761 +-0.0346988 0.120729 -0.0096591 +-0.0388776 0.0364147 0.043017 +-0.0271127 0.16377 -0.0158754 +-0.0114338 0.0347606 0.0448027 +-0.0897559 0.114544 0.00631807 +0.0408171 0.04213 0.0255289 +-0.0648854 0.102482 -0.0170908 +-0.0137359 0.061178 0.0537969 +-0.00359581 0.130946 0.00835725 +0.0439346 0.0959403 0.0181595 +-0.0194977 0.104404 0.0429832 +-0.0691323 0.0776098 0.0394254 +-0.00248627 0.097432 -0.0292057 +0.00445885 0.0387258 0.0265895 +0.0492859 0.0567642 0.0307116 +-0.077476 0.164468 -0.0240677 +-0.0666867 0.175728 -0.049503 +-0.0251661 0.0664206 0.0424455 +-0.027701 0.0549269 0.0368456 +-0.018943 0.164042 -0.0169159 +-0.0435133 0.0846552 0.0431729 +-0.0888345 0.136443 0.0400961 +0.00149473 0.112812 0.0419217 +-0.0298299 0.09304 -0.0247313 +-0.0836967 0.0790161 0.00252063 +-0.000924151 0.039273 -0.0117161 +-0.0567677 0.0811908 -0.0210238 +-0.0934681 0.120116 0.0253121 +-0.0429479 0.170625 -0.000616016 +-0.075975 0.156283 -0.00563956 +-0.00861288 0.0384077 0.0151551 +-0.00160584 0.0434015 -0.0251635 +-0.00451637 0.113738 -0.0185133 +-0.0780673 0.0690482 0.0132523 +-0.0237986 0.0784163 -0.0381462 +0.0404558 0.0643575 0.0302495 +0.00150103 0.0576486 0.0543674 +-0.0314973 0.0746234 0.0406619 +-0.0430409 0.0337266 -0.000289053 +-0.0303409 0.0462461 0.0481864 +0.0215433 0.04083 0.0414017 +-0.0328294 0.0901297 -0.0245803 +-0.0654933 0.0370192 -0.00733845 +-0.0128512 0.129269 0.0078276 +-0.0102634 0.129467 0.00444971 +-0.0525768 0.0530264 -0.00686565 +0.0152424 0.0737083 -0.0300265 +-0.0523202 0.0474101 0.0149978 +-0.03228 0.059616 -0.0144015 +0.0262796 0.0733084 -0.0244949 +-0.091934 0.128302 0.0312437 +-0.0556539 0.153362 0.0267778 +0.00449629 0.118272 0.0381357 +-0.00902947 0.129018 0.00125187 +-0.00169837 0.0391357 -0.00987107 +0.0277845 0.0849076 0.045525 +-0.0241779 0.1712 -0.0197595 +0.0450874 0.0847681 0.0221666 +-0.0251342 0.0878826 0.0516343 +0.00641806 0.0347537 -0.00236123 +-0.0411191 0.111396 -0.0179091 +0.027653 0.0506012 0.0379885 +0.0219297 0.123716 0.0263137 +-0.0688294 0.148429 -0.0341374 +-0.0315292 0.124197 -0.00202254 +0.00150698 0.0801002 0.0571866 +-0.0615835 0.0366556 0.0444374 +-0.0481389 0.160609 -0.00688834 +-0.0254054 0.0766649 0.0494071 +-0.0774728 0.155537 -0.0149084 +-0.0401214 0.159176 -0.0112287 +0.0596647 0.0691741 0.016158 +-0.011487 0.110004 0.0424075 +-0.0381186 0.128235 0.00584498 +0.048576 0.0464424 0.0249843 +-0.0923754 0.118793 0.0312942 +-0.0639323 0.123848 -0.00887264 +-0.0798905 0.126603 -0.00582167 +-0.0413231 0.0462396 -0.0163116 +-0.0908165 0.145736 0.0263481 +0.0446156 0.0959646 0.00916087 +-0.0821218 0.075868 0.0188618 +0.05068 0.0673838 0.000483718 +-0.0501479 0.0515412 0.017644 +-0.00617289 0.130741 0.0117189 +-0.051836 0.0956238 -0.0221428 +-0.074878 0.122304 -0.00772392 +-0.00159817 0.0419657 -0.0250292 +-0.0474982 0.162268 0.00647513 +-0.0331161 0.0498057 0.0395103 +0.00234342 0.0510926 -0.0302041 +-0.0851404 0.125756 0.0494653 +-0.0699016 0.160977 -0.0489386 +-0.0798846 0.0706301 0.0125498 +-0.0697873 0.0819627 0.0411407 +-0.0547576 0.161266 0.00105716 +-0.0895055 0.0902528 0.0184453 +-0.0261075 0.162258 -0.0150297 +0.046501 0.0611194 0.0308227 +0.0238707 0.0929061 0.0469915 +-0.0533713 0.0334322 -0.00211203 +0.0417012 0.085878 -0.00880084 +0.0288139 0.110493 -0.0110929 +-0.083716 0.087071 0.0295098 +-0.0798758 0.155212 0.019678 +0.0049172 0.0339971 0.00916661 +0.0160048 0.0590435 0.0493667 +0.0573849 0.0699459 0.0206376 +0.0345802 0.103262 -0.0113359 +-0.0797481 0.0789376 0.0314228 +-0.0346581 0.0340056 0.0228095 +-0.0631272 0.0656833 0.0316274 +-0.0145321 0.0459268 0.0498594 +-0.0364091 0.0339112 -0.0194195 +0.0181222 0.116444 -0.0134944 +0.0341932 0.113962 0.0237708 +-0.0761778 0.148614 -0.0108668 +-0.0044937 0.0473352 0.0489501 +-0.0328741 0.0807299 -0.0285171 +-0.0724981 0.121807 0.0536688 +-0.0657234 0.153927 0.0319321 +-0.0548973 0.112625 -0.01673 +0.0464212 0.0764513 0.00819032 +0.0272261 0.0451183 -0.00768323 +-0.0629092 0.156144 0.021238 +-0.0631603 0.151216 -0.00238889 +-0.0347632 0.076687 -0.0214942 +-0.0906385 0.147509 0.0131579 +-0.0122779 0.122169 -0.00937841 +-0.0588974 0.156171 0.00210438 +-0.0123378 0.123047 -0.00831897 +-0.0496312 0.0590927 -0.0108209 +-0.0409256 0.153594 0.00561766 +-0.0405007 0.0860467 0.0431081 +0.0445131 0.0735224 0.0237705 +-0.0213844 0.123724 -0.0049697 +-0.0633941 0.159891 -0.0485891 +0.0364077 0.044553 -0.00488844 +-0.0739928 0.155924 0.011504 +-0.0111043 0.0366055 0.0502176 +0.03375 0.0929319 0.0401542 +-0.00645978 0.0918654 -0.0354548 +-0.0827096 0.131285 0.0511192 +-0.0835459 0.133987 0.0490485 +-0.0294951 0.0617035 0.0376524 +-0.0493817 0.138599 0.0163919 +-0.055623 0.120216 -0.0109924 +-0.00449347 0.121049 0.0367461 +-0.048904 0.144756 0.0084067 +0.00645901 0.0392685 0.0301228 +-0.0913214 0.114759 0.0373166 +-0.0265805 0.0377426 0.0157053 +-0.00572231 0.0669806 -0.0352658 +-0.0525421 0.050441 0.0296546 +0.0313831 0.11825 0.0184294 +-0.0288441 0.0958675 -0.0242091 +-0.0149484 0.177196 -0.0200335 +0.0230906 0.0973761 -0.0211755 +-0.0134888 0.11412 0.0398002 +-0.0652337 0.169622 -0.0599681 +-0.069106 0.161031 -0.0101008 +-0.0147444 0.0700214 -0.0382575 +0.000412578 0.0376462 -0.0248548 +-0.0694764 0.165214 -0.0509787 +-0.0817245 0.100671 0.0313188 +-0.0464909 0.0704463 0.0410366 +-0.0604958 0.0890419 0.0453253 +-0.0356646 0.155102 0.0026804 +0.0313895 0.0549645 0.0381834 +-0.0390844 0.149487 -0.000628748 +-0.0799141 0.109193 0.0343277 +-0.033406 0.159477 0.0024166 +0.0461298 0.0806288 0.00519237 +-0.00455042 0.0384226 0.0105194 +0.054633 0.0708998 0.00492223 +0.0466692 0.0754291 0.0122452 +-0.0510158 0.118895 -0.0136999 +0.0442088 0.0931449 0.0211603 +-0.026052 0.036748 0.0540507 +-0.0121151 0.0568039 0.0522997 +-0.0605217 0.0372227 -0.00906293 +-0.0505374 0.138563 0.00240881 +-0.0499851 0.135487 0.00142097 +0.0375229 0.0590309 0.0330268 +0.00350924 0.0842701 0.0573364 +0.0132839 0.0652538 -0.0302637 +-0.0742776 0.161639 -0.0118948 +-0.0507685 0.164108 -0.00292996 +-0.0198709 0.104468 -0.0228058 +0.0376047 0.0616532 -0.0107499 +-0.0773811 0.108845 0.0387481 +0.0226208 0.102094 0.0434114 +-0.0882171 0.135133 0.0423395 +-0.0506614 0.0515945 0.0196285 +-0.0603044 0.155837 0.0105687 +-0.0124866 0.11001 0.0423152 +0.02167 0.125998 0.00768374 +0.0323984 0.0396183 0.0260504 +-0.0709343 0.126767 -0.00893718 +-0.0135132 0.116917 0.0382221 +-0.0116656 0.051126 -0.0319435 +-0.0309822 0.125744 0.00553845 +0.0459345 0.0862193 0.0101703 +0.00749696 0.119642 0.0368719 +-0.00350244 0.107276 0.0438161 +-0.0521339 0.128852 -0.00413976 +-0.0786185 0.152695 0.0319953 +0.0163345 0.0781449 0.0535802 +0.0377538 0.0771288 -0.0117747 +-0.0215296 0.0387791 0.0338148 +-0.0350693 0.0384092 -0.00660408 +-0.0919891 0.124178 0.0422069 +-0.0444587 0.11222 -0.0167423 +-0.0171725 0.0985232 -0.0244048 +-0.057494 0.112512 0.0360215 +0.0396241 0.0900718 0.0328369 +-0.0621913 0.163125 -0.0405922 +-0.0255449 0.0384207 -0.00839698 +0.0162606 0.0736784 -0.0295549 +-0.0663455 0.040996 0.0121932 +-0.0292314 0.114996 -0.0157151 +0.0252254 0.095572 0.0454222 +0.00388853 0.130454 0.00153712 +-0.0454814 0.0335414 -0.0134702 +-0.08387 0.148679 0.0348187 +-0.0174749 0.184587 -0.0183292 +0.0188962 0.0370007 -0.0126843 +-0.0625159 0.163122 -0.0305925 +-0.0433987 0.03363 -0.0131325 +0.0291629 0.037982 0.025034 +0.0129127 0.129715 0.00445998 +0.0182606 0.0778122 -0.0281935 +-0.0476906 0.0356242 -0.0142735 +-0.0190478 0.0404047 0.0529202 +-0.00364871 0.0982082 -0.0280452 +-0.0195235 0.184467 -0.0220738 +0.00382729 0.106411 -0.0207174 +0.00350781 0.064793 0.0565955 +-0.0205171 0.0383642 -0.00178242 +0.0122268 0.0836141 -0.0306261 +-0.0444606 0.147723 0.0056898 +-0.0869664 0.148754 0.00824898 +-0.0689807 0.155012 0.0293114 +0.0302795 0.0795477 0.0438394 +-0.0660235 0.174935 -0.0492702 +-0.0804891 0.133061 0.0515278 +-0.0447252 0.109884 -0.0183457 +-0.0902839 0.137831 0.0151959 +-0.0702292 0.153353 0.0333614 +-0.0915979 0.146114 0.0211525 +-0.0905232 0.122929 0.0450175 +0.00448177 0.0951431 0.0532987 +-0.0234909 0.120747 0.0300444 +0.0274801 0.0445395 -0.0065618 +-0.091814 0.116108 0.0403567 +-0.0537253 0.151161 0.0246275 +-0.0205455 0.126353 0.00242085 +-0.00205946 0.129266 -0.00113907 +0.00252933 0.0758769 0.0564116 +0.00824452 0.129671 0.000311795 +-0.000397685 0.0923281 -0.0338988 +-0.0559448 0.126938 0.0384169 +-0.0428369 0.0942645 -0.0226678 +-0.0598806 0.105454 -0.017999 +-0.0837054 0.10067 -0.00361944 +-0.0545817 0.152467 0.0257328 +0.0103827 0.0365006 0.0297934 +-0.0898089 0.133793 0.0332137 +-0.0618767 0.15376 -0.0175826 +-0.0665983 0.155819 0.0112334 +-0.0454977 0.108441 0.0393231 +0.000688563 0.105475 -0.0216898 +0.0156183 0.0348875 0.0323047 +0.0598096 0.0622539 0.00613597 +0.0222628 0.0359732 0.0163557 +-0.0492522 0.165358 0.00274428 +-0.018422 0.0583296 0.0500808 +-0.0233794 0.126748 0.0127038 +-0.0635915 0.172518 -0.0506017 +0.000120368 0.0351316 0.0162576 +-0.0286059 0.0564269 -0.0233938 +0.0373643 0.110979 0.0106211 +-0.0143444 0.162546 -0.0104323 +0.0174821 0.10039 0.0467276 +0.00834248 0.0609508 -0.0305126 +-0.0650557 0.129761 0.0446036 +0.0584157 0.0647883 0.022872 +0.0450662 0.0889731 0.0191643 +-0.0554099 0.0334223 -0.00251784 +-0.00144558 0.106667 0.0437112 +-0.0626402 0.0627915 -0.00434322 +-0.0406608 0.0335117 -0.0254825 +-0.0621215 0.15372 -0.0285871 +-0.0304827 0.0538056 -0.016375 +0.0276877 0.0607373 -0.0218456 +-0.0332153 0.107417 -0.0197253 +-0.0709666 0.138448 -0.00754922 +-0.0554983 0.0973521 0.0432389 +0.0051585 0.127708 0.0288034 +-0.0497318 0.0354763 -0.0126201 +-0.0713898 0.160567 -0.00801414 +-0.0135985 0.108507 -0.0209218 +-0.0701499 0.0695315 0.0320822 +-0.0618453 0.155287 -0.0285878 +-0.0774937 0.145636 0.0432119 +-0.0499442 0.140127 0.0163925 +-0.0622517 0.147555 -0.00557481 +0.0112895 0.0624411 -0.0303571 +-0.054281 0.0573695 -0.00641449 +-0.0468263 0.128888 -6.3255e-05 +0.0167125 0.0343686 0.00192575 +0.025374 0.0938744 -0.0213667 +0.0374202 0.110869 0.0135214 +-0.0202897 0.0381028 0.016664 +0.0122214 0.13032 0.0170232 +-0.0424979 0.0817557 0.0420871 +0.0247834 0.123596 0.021665 +0.0458295 0.0890233 0.00817039 +-0.0246722 0.05361 -0.0281576 +-0.0368219 0.0900544 -0.0239252 +-0.0331266 0.0338175 0.0106794 +-0.0863242 0.111849 0.0243217 +-0.0881544 0.121251 0.000301062 +-0.0639205 0.112438 -0.0133308 +0.00114374 0.101639 -0.0226194 +0.0117494 0.0671858 0.0538619 +-0.0177987 0.0336176 -0.0248428 +0.0384483 0.10837 0.0201721 +-0.0895436 0.0902218 0.014448 +-0.0441053 0.129054 0.00361434 +-0.0447524 0.033564 -0.0207541 +-0.040486 0.0346908 0.0404235 +0.0158804 0.124131 -0.00578699 +-0.0301445 0.169695 -0.0171502 +-0.0906194 0.139243 0.0211829 +-0.0653253 0.142516 0.0407395 +-0.0320761 0.0447291 -0.0281131 +-0.0764158 0.0699842 0.0233785 +-0.0254497 0.052221 0.0403383 +0.0262523 0.076131 -0.0243472 +-0.0174971 0.101623 0.0437353 +0.00533357 0.055349 -0.0305496 +-0.0493266 0.134948 0.0237381 +0.0053984 0.122421 -0.0118951 +0.038604 0.108395 0.0191762 +-0.0638345 0.0431637 0.0378429 +-0.0748055 0.0863518 -0.0148055 +0.0157558 0.127182 0.025475 +0.0337414 0.0384723 -6.48206e-05 +-0.0564853 0.0791423 0.0441771 +0.0234983 0.102092 0.0429315 +-0.00524932 0.101176 -0.023207 +-0.0804177 0.153092 0.00488677 +-0.0764988 0.13725 0.0499203 +-0.0550791 0.134447 -0.00412579 +0.0139517 0.124505 -0.00617757 +-0.0839821 0.127994 -0.00381712 +-0.0571198 0.115445 0.0365816 +-0.0622396 0.155257 -0.0325976 +-0.0454972 0.0761548 0.042184 +0.0313815 0.0461664 -0.00629419 +-0.0438412 0.0942345 -0.0223045 +-0.0236613 0.0852675 0.0544729 +-0.0616609 0.147135 -0.00399772 +-0.0600825 0.0413306 0.0227014 +-0.0105535 0.180959 -0.0288535 +-0.0676833 0.155656 0.026832 +0.0282931 0.118599 0.0272385 +-0.0871972 0.102223 0.00642609 +0.0103624 0.0494805 -0.028102 +0.0154246 0.0685991 0.0521564 +-0.0416312 0.117641 -0.0144485 +-0.0276264 0.046347 -0.026964 +-0.0916136 0.132311 0.0112256 +0.0178346 0.0505132 0.0449253 +-0.0444935 0.155066 0.00750552 +-0.037487 0.115255 0.0329307 +-0.0185008 0.119534 0.0344711 +-0.052516 0.0452355 0.0436109 +-0.00977222 0.11683 -0.0157853 +-0.0558279 0.0635792 0.0314789 +-0.0607324 0.0592584 0.00571875 +-0.0621725 0.160005 -0.022587 +-0.0603904 0.152423 0.000272984 +-0.0697355 0.134074 0.048407 +-0.0688943 0.103764 -0.0141878 +-0.0871513 0.117629 0.0474896 +0.0463722 0.0764454 0.00719365 +0.0582269 0.0686747 0.0208601 +0.0410646 0.07659 0.0312229 +-0.0298717 0.104385 -0.0225787 +-0.0346365 0.0766699 -0.022492 +-0.0639324 0.147049 -0.0189093 +0.0414492 0.10286 0.0161642 +0.041276 0.104245 0.0131611 +-0.0550666 0.151635 -0.00215779 +-0.0723648 0.0763024 0.0368597 +-0.0166996 0.0540293 -0.0329391 +-0.0108856 0.107334 -0.0222671 +-0.0609787 0.126745 -0.00811044 +-0.0495024 0.109811 0.0380885 +-0.0814376 0.0978185 -0.00662583 +-0.0771326 0.163938 -0.0219397 +-0.0690818 0.18144 -0.0564572 +0.031034 0.0964814 -0.0161287 +0.0445032 0.0555996 0.0323503 +-0.0335401 0.0732865 0.0413362 +0.0315592 0.035603 0.0149292 +-0.0625155 0.0344693 0.0376364 +0.0223706 0.0505198 -0.0231651 +-0.051638 0.0663266 -0.0117848 +0.0132667 0.0519749 0.0488584 +-0.0568732 0.108333 -0.017952 +0.0448639 0.0833492 0.023175 +-0.0316705 0.0806285 -0.0315587 +-0.0714676 0.155482 0.0269686 +0.0118001 0.034659 0.0389456 +-0.0860496 0.128472 0.048867 +-0.0155071 0.175699 -0.0190868 +-0.058019 0.131103 -0.00658932 +0.0113955 0.0434069 -0.0246972 +0.0568205 0.0566796 0.0240006 +-0.0267763 0.0365192 0.0538225 +-0.0564971 0.0987696 0.0431638 +0.0353453 0.0835128 0.0388598 +-0.0602464 0.144668 -0.00329576 +-0.00749863 0.0884246 0.0571361 +-0.0816964 0.0734472 0.00653139 +0.0399806 0.105624 0.0191716 +-0.0676913 0.172275 -0.0570278 +-0.0358314 0.0356542 0.0457978 +0.0503129 0.0516868 -0.00299828 +-0.0414959 0.0705202 0.0419075 +0.0246022 0.0942401 0.0462765 +-0.0735775 0.170801 -0.0470392 +0.0373196 0.105416 -0.00382358 +0.0463401 0.0518943 -0.00540594 +0.0400167 0.0646852 -0.00776271 +-0.0597593 0.07671 -0.0185219 +-0.0237194 0.0639841 -0.033754 +-0.0473867 0.0345201 0.0356021 +0.00159304 0.131118 0.00454966 +-0.073925 0.126728 -0.0084362 +-0.0243269 0.0616478 -0.0324508 +0.0457562 0.0904226 0.00816981 +-0.0688748 0.159133 -0.00709894 +-0.0394914 0.0944889 0.0427101 +-0.0687998 0.0822684 -0.0173873 +-0.0455924 0.119193 -0.014062 +-0.0369476 0.033676 0.00641963 +-0.09079 0.1297 0.0392322 +-0.0389556 0.0350986 0.042208 +-0.0414578 0.107073 0.0393054 +-0.00265934 0.098112 -0.0279111 +-0.0331649 0.0652734 -0.0174782 +-0.0343312 0.0836736 -0.0246034 +0.0134882 0.101805 0.0472084 +-0.0594997 0.0846925 0.0439263 +-0.0423306 0.040657 -0.0232664 +0.0092124 0.114671 -0.0175632 +0.0538026 0.0595499 0.0284925 +-0.0256867 0.0380701 0.0246091 +-0.0693658 0.16286 -0.0130912 +0.0333604 0.037057 0.0194583 +0.00949693 0.121023 0.0358683 +0.0321446 0.0360609 0.0164637 +0.0341544 0.0548861 0.0351403 +-0.000334987 0.0965293 -0.0302242 +0.0585628 0.0673807 0.0213416 +-0.053406 0.12345 -0.00838645 +-0.0749578 0.132548 -0.00734349 +0.0282219 0.0816125 -0.0219304 +-0.0351889 0.171161 -0.0140358 +0.00949153 0.0936876 0.0522363 +-0.0157849 0.172748 -0.017746 +-0.0175848 0.169785 -0.0150947 +-0.0835905 0.112379 0.0452164 +-0.0404862 0.0846544 0.0431896 +0.0231358 0.0404562 0.0392455 +-0.00366205 0.0540631 -0.0322696 +0.00959837 0.0403395 0.0451906 +-0.0692421 0.0422187 0.00798097 +-0.0285258 0.0717501 0.0402231 +-0.00789542 0.108803 -0.0224197 +0.0159009 0.113257 -0.0160529 +-0.00149436 0.0620061 0.056412 +-0.0420891 0.0363826 -0.0272583 +-0.00449341 0.104477 0.0440393 +-0.0683512 0.0607717 0.0117847 +-0.0927055 0.120137 0.0415853 +-0.0484911 0.115278 0.0334198 +0.02514 0.0350088 0.0196342 +-0.065935 0.125307 -0.00885715 +-0.0621483 0.0699034 0.036962 +-0.0178695 0.104461 -0.0227631 +0.0351768 0.0563002 0.0348659 +0.0105044 0.115477 0.0381888 +-0.0938558 0.126876 0.0162567 +-0.0632514 0.033799 0.0117273 +-0.0736013 0.0654333 0.0137843 +-0.0577792 0.0341881 0.0284371 +-0.0763952 0.0838159 -0.0125906 +-0.0296632 0.180174 -0.00867233 +0.00819029 0.0851531 -0.0324575 +-0.071633 0.174549 -0.0412084 +-0.0538265 0.0927341 -0.0220469 +-0.0471905 0.156504 0.00887867 +-0.0661815 0.0615106 0.0205126 +0.0144985 0.107111 0.0421568 +-0.0721929 0.152802 0.0342528 +0.0142765 0.0666697 -0.0302658 +0.0349485 0.0942163 0.0384062 +-0.0664891 0.0369705 -0.00688594 +-0.077495 0.158339 -0.0149115 +-0.0739383 0.160975 -0.0103701 +-0.00971429 0.0386927 -0.0148008 +-0.0618555 0.155289 -0.0295874 +-0.0621574 0.152203 -0.016578 +-0.032494 0.096035 0.0446186 +0.044345 0.0519693 -0.00630996 +0.0319954 0.0520213 0.0354999 +-0.0300925 0.0509394 -0.0183595 +-0.018449 0.0388382 0.0343981 +-0.0670639 0.154762 0.000889218 +0.0361767 0.0888967 0.0383392 +0.0262873 0.0942382 0.0451936 +0.0186534 0.103359 0.0446898 +-0.0523328 0.0334686 -0.00741897 +0.0507066 0.0540083 0.0292331 +0.0529037 0.0462692 0.0142047 +-0.0888522 0.0996312 0.00941041 +0.0275656 0.0563642 0.0414619 +-0.0371627 0.0336289 -0.0286501 +-0.0198294 0.0882519 -0.0375379 +-0.0907603 0.140585 0.0151783 +-0.00458896 0.0376652 -0.0252351 +-0.093041 0.12831 0.0262642 +-0.0743429 0.0955133 0.0396401 +-0.089704 0.111925 0.0143387 +0.0453684 0.0889907 0.0151607 +0.0456444 0.086201 0.0151659 +-0.0635175 0.0399079 -0.00714576 +-0.0294925 0.0903536 0.0441109 +-0.0888771 0.100994 0.011394 +-0.0121064 0.0869584 -0.0384624 +0.0373352 0.108319 0.0251875 +-0.0882187 0.112165 0.0210064 +0.0349174 0.110993 0.0268865 +-0.0849268 0.122064 -0.00322109 +0.0124968 0.112648 0.0387734 +-0.0662562 0.163203 -0.0177078 +-0.0640701 0.113939 0.0406208 +-0.0654246 0.0794919 0.0421931 +-0.0519669 0.0569186 0.0284516 +-0.0519207 0.0493094 0.0353906 +0.00333114 0.0341656 0.00499397 +-0.056914 0.133942 0.035273 +-0.0780215 0.158305 -0.0199209 +0.0276406 0.111416 0.0348725 +-0.0172565 0.181572 -0.0253576 +0.0372544 0.0379189 0.00466817 +-0.0211197 0.1653 -0.017528 +-0.0557637 0.121264 0.0386516 +0.0274329 0.121878 0.0183804 +-0.0623369 0.16467 -0.04959 +0.00450432 0.0883672 0.0562441 +-0.0649333 0.145142 -0.016034 +-0.0918355 0.118761 0.0292947 +0.0503561 0.073461 0.0121181 +-0.0732571 0.0860546 0.040246 +-0.0543933 0.14384 0.0284354 +0.0235922 0.124679 0.00697037 +0.049638 0.0724241 0.0192263 +-0.0691135 0.0647604 0.0241382 +-0.0277318 0.0385796 0.0327127 +0.0249679 0.0605263 0.0447882 +0.0220764 0.0741142 0.049509 +-0.012493 0.16839 -0.0164935 +0.0220311 0.0550166 0.0457656 +-0.0197467 0.0364265 -0.0184459 +0.000577278 0.0388845 -0.0129362 +-0.0178004 0.121647 -0.00876548 +-0.0516521 0.0334655 -0.0091126 +0.0221612 0.0754835 0.0496518 +-0.0384539 0.162349 0.000413916 +-0.0711225 0.0388168 0.00193457 +0.0334725 0.0950337 -0.0145821 +-0.00505247 0.102417 0.0438081 +0.0159216 0.0348476 0.0287894 +0.0277666 0.0347822 0.00749516 +-0.0675802 0.144972 -0.0192338 +-0.0477088 0.132967 0.0228963 +-0.0134912 0.0386664 0.0301779 +-0.0590273 0.134027 -0.00648451 +0.0244484 0.124114 0.020115 +0.0218798 0.0374214 -0.00364164 +-0.0658775 0.102439 -0.0164403 +-0.0743971 0.166132 -0.0206985 +-0.0634619 0.0339766 0.015084 +-0.0497324 0.138579 0.00441928 +-0.00151689 0.0428507 0.0468014 +0.00660528 0.0935786 -0.0311099 +-0.0862444 0.0819176 0.00849345 +-0.0634827 0.0876134 0.0450541 +0.0182388 0.0763952 -0.028136 +-0.0765343 0.0681368 0.0143622 +-0.092883 0.116038 0.0143172 +0.000494981 0.0442085 0.0460563 +-0.0518518 0.0970732 -0.0222063 +-0.0248173 0.0693751 0.0448313 +-0.089421 0.135156 0.0282104 +-0.0566159 0.0573558 0.0107416 +0.0312695 0.0800594 -0.0199503 +-0.03437 0.0738393 -0.0214808 +0.0226051 0.113885 -0.0127298 +-0.0658838 0.16421 -0.0204509 +-0.0417953 0.0435116 -0.0223513 +-0.0710782 0.156778 -0.0439119 +0.00348525 0.108604 0.0422849 +-0.0239399 0.118058 -0.0129545 +-0.0498545 0.0999668 -0.0218887 +0.0176793 0.0852191 -0.0283526 +-0.0426623 0.0592741 -0.0122692 +-0.0642751 0.044386 -0.00129652 +-0.0456062 0.127883 0.0223049 +-0.0818286 0.147374 0.0384552 +0.0125066 0.10443 0.0450477 +-0.0763281 0.174543 -0.0415648 +-0.0144887 0.0387707 -0.00835843 +-0.00853122 0.0430617 0.0490142 +-0.0783677 0.176339 -0.0480853 +-0.0408918 0.109911 -0.0187996 +-0.0634329 0.159891 -0.0505847 +-0.0278615 0.0987172 -0.0237448 +0.0172353 0.0806842 -0.0288156 +-0.0768582 0.104852 -0.0089026 +0.0310274 0.118497 0.0197321 +0.0262422 0.122687 0.00652555 +-0.000524008 0.041433 0.0467891 +0.0292827 0.060879 -0.0197951 +0.00853553 0.0366751 -0.00931803 +-0.092315 0.125571 0.0312621 +-0.000472926 0.0972534 -0.0289903 +-0.0604964 0.0861621 0.0446513 +0.0117525 0.0432202 0.0447834 +-0.0738828 0.103582 -0.0116089 +-0.00249719 0.0488761 0.0505372 +-0.0307845 0.0580469 -0.0184096 +-0.00234994 0.125819 -0.00745455 +-0.0301636 0.153871 -0.00371356 +-0.0815418 0.0912589 0.0328461 +-0.0901131 0.132441 0.0382173 +0.037389 0.0476423 -0.00613109 +-0.0646684 0.155196 -0.0425404 +-0.0928057 0.124227 0.0372672 +-0.0297999 0.12434 0.000117203 +-0.032492 0.0746402 0.0409516 +-0.0555716 0.122697 0.0389476 +-0.0717789 0.154685 0.0298089 +-0.0930714 0.12018 0.0352857 +0.0144798 0.109585 -0.0180587 +0.00343169 0.0361267 -0.0240106 +-0.0288758 0.046967 -0.0262149 +-0.0616418 0.158426 -0.0235923 +0.0103202 0.0609665 -0.0299301 +-0.0910325 0.14477 0.0261671 +-0.083926 0.0775674 0.0187821 +-0.0575363 0.138153 0.0326058 +-0.0295 0.0703058 0.0395502 +-0.0217308 0.0626511 -0.0346671 +-0.0640717 0.164086 -0.0255357 +-0.063271 0.158522 -0.0165888 +0.0210264 0.0895934 -0.0248804 +-0.0731992 0.145774 -0.0148545 +-0.0334943 0.0803079 0.0415842 +-0.0862122 0.111364 0.0347412 +0.0338239 0.11087 -0.00547119 +-0.0135288 0.0458914 0.0493586 +-0.0643715 0.139866 -0.00735458 +-0.0568939 0.158351 0.00118769 +-0.0405106 0.151258 -0.00613685 +-0.00551608 0.110856 -0.0214408 +-0.0787639 0.0696569 0.0125705 +0.00378339 0.0381062 0.0251953 +-0.0650446 0.154908 -0.0437098 +-0.089228 0.114813 0.0276717 +-0.00277394 0.0797805 -0.0365537 +-0.0661523 0.136835 0.0429956 +-0.0434818 0.0902492 0.04268 +-0.0184702 0.0959697 0.0503933 +-0.0801387 0.142096 0.0454029 +-0.00485582 0.0989472 0.0508482 +-0.0336234 0.153659 0.000337049 +0.00250661 0.0924946 0.055168 +-0.0729484 0.132565 -0.00781242 +0.0194715 0.127423 0.0125674 +0.00484292 0.129473 0.025811 +-0.0576054 0.0658547 0.0344063 +-0.0502601 0.0543084 0.0166402 +-0.027407 0.0396009 0.0539527 +-0.0105297 0.0560622 0.0527517 +-0.0456126 0.0519231 -0.010201 +0.000501847 0.0590908 0.0549783 +-0.0569845 0.0535242 0.00365398 +-0.0671097 0.0432428 -0.000257978 +0.0214666 0.0975514 0.0465681 +-0.08997 0.132328 0.0399309 +-0.0761969 0.167972 -0.0410261 +0.0170202 0.121328 -0.0087569 +-0.0138948 0.17568 -0.0202542 +-0.0281655 0.17267 -0.018055 +-0.0638531 0.04136 -0.00615806 +-0.0348821 0.0342989 0.0153052 +-0.000342105 0.0380462 0.00257941 +-0.00749789 0.0898138 0.0570783 +0.028524 0.0808687 0.0448153 +-0.0331206 0.0356024 -0.0184705 +0.0043586 0.119499 -0.0147306 +0.0467625 0.0462832 0.0266316 +0.0368364 0.111573 0.0161776 +0.00851174 0.0799624 0.0552814 +-0.00244825 0.112634 -0.0193375 +-0.0235385 0.11268 0.0379979 +-0.0115345 0.0922826 -0.0359317 +-0.09304 0.122895 0.0392709 +-0.0271645 0.17563 -0.018169 +-0.0772929 0.117422 0.0514809 +0.0179164 0.102978 -0.02104 +-0.0709646 0.0754682 0.0373385 +0.0216627 0.126095 0.0176515 +-0.0640284 0.119984 0.047923 +-0.0444795 0.0874935 0.0436599 +-0.0893861 0.0943037 0.0204146 +-0.0720651 0.173384 -0.0385311 +-0.0894927 0.14204 0.0311659 +-0.0454987 0.120637 0.0275066 +-0.0250745 0.0954862 -0.0252675 +-0.0895496 0.13918 0.0132126 +0.0192289 0.0820148 -0.027672 +-0.0154803 0.0645289 0.0535158 +0.0164872 0.108442 0.0405002 +-0.00663864 0.115688 -0.0165748 +-0.0494985 0.104247 0.040228 +-0.0673252 0.149334 0.0390086 +0.0300883 0.0872505 -0.0203879 +-0.0278877 0.0633808 -0.0294488 +0.0182732 0.069417 -0.0291542 +0.0171905 0.116688 -0.0137466 +0.0502632 0.0713497 0.022405 +0.0350985 0.114043 0.00837763 +-0.0505103 0.0452467 0.0429196 +0.0302544 0.113856 0.0308506 +-0.0605348 0.0333568 -0.0034971 +-0.00390558 0.0383472 0.0143493 +0.0270583 0.122199 0.00683201 +-0.0241505 0.0378782 0.0124647 +-0.0606031 0.0352186 0.0442288 +-0.0906667 0.113308 0.0195238 +-0.00876475 0.075634 -0.0378123 +-0.0531345 0.0641573 0.0333061 +-0.0262078 0.123609 -0.00273748 +-0.0629032 0.154793 0.00389792 +0.00322165 0.0782734 -0.0348651 +-0.0232226 0.0950277 -0.0288098 +-0.0497962 0.0869626 -0.02172 +0.0239811 0.109404 -0.0139261 +-0.00287196 0.105931 -0.0223953 +0.00350624 0.0619975 0.0564502 +0.0152965 0.129062 0.00674245 +-0.0198254 0.120831 -0.00989132 +-0.0672111 0.0749069 0.0386416 +-0.0199192 0.0375867 0.0533971 +-0.0507132 0.054338 0.0146004 +0.0338375 0.109906 -0.00644408 +-0.052068 0.0531865 0.02764 +-0.0665349 0.0638845 0.0254353 +-0.0340904 0.160759 -0.0135462 +-0.0456409 0.0577841 -0.0117617 +0.0425336 0.0678584 0.0273676 +-0.0549188 0.148123 0.0275408 +0.0178543 0.0352284 0.0378786 +-0.0254848 0.100235 0.0442056 +-0.014497 0.0856418 0.0570702 +0.0151023 0.0860518 0.0518047 +-0.0616341 0.0628646 -0.00472902 +0.02366 0.0848996 0.0483924 +-0.0496187 0.054694 -0.00943972 +-0.0328776 0.105721 -0.0208169 +-0.0144506 0.103914 0.0432646 +-0.0248813 0.105869 -0.0225199 +0.024788 0.0591582 0.0445118 +-0.0159391 0.0999021 -0.023843 +-0.0539979 0.153168 0.0186815 +-0.0738816 0.120852 -0.00799698 +0.0296461 0.118491 0.000643936 +-0.0540045 0.13652 -0.00234857 +-0.0593798 0.0335176 0.00740926 +0.0366379 0.08347 0.0371909 +-0.0520867 0.151648 -0.00355308 +-0.0188227 0.0387965 0.0325596 +0.00898388 0.131012 0.0072855 +-0.0682589 0.154325 -0.0506473 +-0.0521805 0.0531921 0.0266366 +-0.0617514 0.175333 -0.0614739 +-0.0169338 0.185679 -0.0240586 +0.015477 0.103104 0.045929 +-0.0729148 0.0713134 0.0317175 +-0.0172476 0.114664 -0.0174436 +-0.0126734 0.0384579 0.00339052 +-0.0832791 0.0884633 0.0304387 +-0.0858155 0.103519 0.00339021 +-0.0146369 0.0466344 -0.0294365 +-0.0773163 0.098935 -0.0105842 +-0.0145015 0.0631456 0.0536787 +-0.0689178 0.0717538 0.0356819 +-0.0255986 0.0394109 -0.0291464 +-0.0623671 0.0719748 0.0386642 +-0.0301518 0.0360809 0.0236741 +-0.030565 0.0383245 0.0341404 +-0.0574984 0.0918591 0.045399 +-0.0861528 0.0951452 0.0274373 +-0.0644941 0.0412041 -0.00599039 +-0.0363521 0.126723 0.0183002 +0.00755707 0.10303 0.0452955 +-0.0396625 0.0399023 -0.0274567 +-0.0838382 0.11616 -0.00137187 +0.0166591 0.0349342 0.0324763 +-0.0647933 0.15319 -0.00116291 +0.00911841 0.110151 -0.0195223 +-0.0697747 0.155761 0.0260978 +0.045415 0.0763654 0.00219579 +-0.0127734 0.171309 -0.0186592 +0.00748545 0.0964088 0.0510363 +0.0125027 0.109886 0.0398286 +-0.0779306 0.0866645 -0.0115691 +-0.0830177 0.0951656 -0.00554205 +-0.0184064 0.186879 -0.0179354 +-0.0866419 0.0923952 0.0266005 +0.026251 0.103389 0.0398709 +0.0333357 0.116389 0.013468 +-0.0452756 0.131436 0.0105618 +-0.035474 0.0519266 0.0383228 +-0.0536233 0.0657097 0.0353836 +0.0013977 0.0433563 -0.0248502 +0.0269244 0.118903 0.0281816 +0.0395 0.055533 0.0316092 +-0.0723024 0.111428 0.0467445 +-0.0364387 0.0357946 -0.0155844 +-0.0276413 0.159598 0.000270855 +-0.00596208 0.0394 0.0364646 +-0.00479094 0.0798443 -0.0373862 +-0.00779065 0.130523 0.0125627 +-0.0464848 0.12067 0.0277891 +-0.0645002 0.0889975 0.0448988 +-0.0896121 0.0902414 0.0154476 +0.0130231 0.0965172 -0.0241956 +-0.0452605 0.0391077 0.0445023 +0.0587398 0.0709245 0.0152557 +-0.0596114 0.0726835 0.0404064 +0.0240499 0.0348797 0.0195293 +-0.0682817 0.156606 -0.0532672 +0.0178388 0.104825 -0.0190099 +-0.0288938 0.180785 -0.00982491 +0.0323759 0.0738626 -0.0187418 +0.0314474 0.112439 -0.00717966 +-0.074091 0.144362 -0.00888576 +0.0510178 0.0461394 0.00424124 +0.00750963 0.0646928 0.0554932 +-0.0643093 0.0665984 0.0323388 +0.0133515 0.0566849 -0.029233 +-0.0243216 0.10004 -0.0240037 +-0.00749239 0.096543 0.0535421 +-0.00533786 0.0388247 -0.000985585 +-0.0884258 0.0996766 0.0213895 +-0.0320326 0.0609937 -0.0164107 +0.0535495 0.0533436 -0.000784809 +0.0393899 0.0533602 -0.00667374 +-0.0717205 0.168577 -0.0240459 +-0.0704919 0.126012 0.052539 +-0.0388888 0.109926 -0.019043 +-0.0507025 0.140081 0.0193694 +-0.0263231 0.034658 0.0434735 +0.0398861 0.0766416 0.0330246 +-0.0941682 0.126929 0.0222624 +-0.0117712 0.0770642 -0.0382004 +-0.0417668 0.040639 -0.0243092 +-0.0517327 0.164109 0.00103678 +-0.0721705 0.158208 -0.0379206 +-0.0356893 0.0651361 -0.0144415 +-0.065143 0.156205 -0.00860924 +0.00354988 0.0342019 -0.0174252 +0.00312416 0.107287 -0.0203844 +-0.0340011 0.127005 0.00589371 +-0.0418419 0.09571 -0.0225712 +-0.0333161 0.126997 0.0105451 +-0.0717391 0.165925 -0.0182956 +0.0559734 0.0494153 0.0101945 +0.0174969 0.108466 0.0401752 +-0.0507291 0.133637 -0.00121966 +0.0083246 0.0581885 -0.03043 +-0.0711713 0.176467 -0.0550529 +0.0165931 0.100464 -0.0223776 +-0.0544905 0.0862124 0.0452239 +-0.0574075 0.0649991 0.0334306 +0.0195092 0.092819 -0.0242669 +-0.0856512 0.0899172 -0.000541045 +0.0081342 0.104445 -0.020865 +-0.0752567 0.160324 -0.0108988 +-0.0376087 0.118212 -0.0130418 +-0.055019 0.14719 -0.00165707 +-0.04909 0.0628007 0.0352845 +-0.018783 0.0770899 -0.0389016 +-0.0336421 0.175583 -0.0129563 +-0.082659 0.0871422 0.0312687 +-0.0621779 0.061949 0.0245023 +-0.0782836 0.162467 -0.0289415 +0.0339055 0.0599168 -0.014725 +-0.0414124 0.128336 0.00169512 +-0.0398827 0.035133 -0.0101165 +-0.00781609 0.0854881 -0.0377912 +0.0082433 0.13138 0.00986533 +-0.0358714 0.105673 -0.0204021 +0.00749975 0.0589567 0.0535286 +-0.072631 0.0670284 0.0231935 +0.0525192 0.0691267 0.0251103 +-0.0688901 0.0621533 0.0194032 +-0.0824666 0.11008 0.0383967 +-0.0438038 0.0884337 -0.0219011 +-0.00534725 0.0379464 -0.0151277 +-0.0425045 0.0478596 0.0401075 +0.0214753 0.11175 -0.0144217 +-0.000497779 0.0489051 0.0509033 +0.0236032 0.116718 -0.00979024 +-0.0648062 0.0852609 -0.0190538 +-0.0395435 0.101505 0.0409276 +0.0209425 0.124573 -0.000263497 +-0.0286807 0.0383267 -0.00339493 +-0.0585081 0.0422988 0.0170665 +-0.0316383 0.0367739 0.0511824 +-0.085482 0.104867 0.00337403 +-0.00926648 0.100073 0.0477845 +-0.00448593 0.118295 0.0389891 +-0.0377467 0.0768482 -0.0188928 +-0.0640837 0.156142 0.0179222 +-0.0515285 0.144709 0.0153879 +-0.0267903 0.0866521 -0.0358137 +-0.0626407 0.163129 -0.0295903 +-0.00752629 0.0443832 0.0481509 +-0.0750304 0.169881 -0.0295693 +-0.0907748 0.12133 0.00629364 +0.0164129 0.0417834 -0.0225068 +-0.0317772 0.169741 -0.00573949 +-0.0546238 0.0527377 0.0100793 +0.0453589 0.0561811 -0.00597324 +-0.0651505 0.0366918 0.0402161 +-0.032507 0.108409 0.0384637 +0.0185107 0.108486 0.0398481 +0.0450172 0.0749324 0.00120229 +0.00251449 0.0702821 0.0560425 +-0.0434424 0.160833 0.00573037 +0.056541 0.064854 0.0254614 +-0.0648306 0.156078 0.013307 +-0.00545884 0.111961 -0.020621 +-0.0222505 0.0336283 -0.0219672 +-0.0319114 0.16826 -0.00591385 +0.0045246 0.0828376 0.0569094 +-0.0849678 0.0844642 -0.00152644 +0.0277057 0.120723 0.00280565 +-0.0133613 0.182397 -0.0284169 +-0.0569294 0.13993 -0.00415472 +-0.0104844 0.118266 0.038122 +-0.0725121 0.144203 0.0447958 +-0.0661037 0.0713259 0.0366501 +-0.050851 0.138527 0.021367 +-0.0580927 0.0577897 0.0147789 +-0.0157117 0.033701 -0.0245127 +-0.00261732 0.0341102 -0.0185505 +-0.0614975 0.10975 0.0377559 +0.00661243 0.131425 0.00784474 +-0.0602206 0.142504 0.0358229 +0.0126673 0.104052 -0.020179 +-0.0624955 0.0904382 0.0452713 +0.0164839 0.0699861 0.0519409 +-0.0334933 0.0946149 0.0444857 +-0.0904058 0.114907 0.0416618 +-0.0182558 0.178619 -0.0243596 +-0.0436529 0.0346111 0.0345638 +-0.00297107 0.0340356 -0.0204416 +-0.0246065 0.0394112 -0.0290873 +-0.0257404 0.0712076 -0.0359148 +-0.0285156 0.0433359 0.0513164 +0.0262381 0.119658 0.0279158 +-0.0734823 0.0649094 0.0160661 +0.0249492 0.109234 -0.0137375 +-0.0651326 0.157423 -0.0100634 +-0.0578906 0.0600472 -0.00173427 +-0.0868853 0.0847213 0.0144753 +-0.0610173 0.135506 -0.00686914 +0.0547011 0.0728313 0.00929699 +0.00513733 0.104474 -0.0214038 +-0.0199542 0.180019 -0.0229778 +0.022195 0.0344915 0.00477409 +-0.0509846 0.123023 -0.00999375 +0.0173702 0.0506958 -0.0254566 +0.0327797 0.0727287 0.040356 +-0.0376189 0.0505906 -0.0108802 +-0.057408 0.0521648 0.00264452 +-0.0845698 0.111358 0.0279354 +0.045113 0.0861573 0.00219478 +-0.0694333 0.0348816 0.0112742 +-0.0621334 0.15599 0.0157191 +0.0379075 0.0398433 0.0233434 +-0.0695824 0.180796 -0.0534457 +0.00287682 0.0368053 -0.01432 +0.0592296 0.0635939 0.00512091 +-0.0326951 0.0680731 -0.0204474 +-0.017619 0.161286 -0.0140538 +-0.00121244 0.0358159 0.011737 +-0.0485025 0.167013 -0.00296472 +0.0139694 0.0974449 -0.0231882 +0.0336763 0.102539 -0.0125747 +-0.0769165 0.147253 -0.00586064 +-0.0894763 0.140666 0.0321759 +-0.079441 0.139988 0.0475582 +-0.019773 0.0742847 -0.0390372 +-0.066871 0.0626922 0.0228964 +-0.0473301 0.134807 0.0120125 +0.0244991 0.106997 0.0390493 +0.0296386 0.114736 0.0306143 +0.0275719 0.0433403 0.0342886 +-0.0524918 0.107066 0.0397432 +-0.0544973 0.0427375 0.0458563 +-0.0837407 0.129905 0.0507752 +0.0390362 0.108381 0.0141662 +0.0136873 0.0685864 0.0531495 +-0.0780988 0.162499 -0.0239377 +-0.0804325 0.078146 0.029561 +-0.0720693 0.0709772 0.0321852 +-0.036497 0.0903135 0.0436162 +-0.0157593 0.121529 -0.00864145 +-0.0640118 0.135519 -0.00771971 +-0.0096474 0.0481504 -0.030386 +-0.0889991 0.11248 0.0367803 +-0.0718704 0.117956 -0.00810673 +-0.00253303 0.110473 -0.0210263 +-0.0151271 0.118705 -0.0137294 +-0.0533766 0.126536 -0.00565695 +-0.050165 0.0501393 0.0176523 +-0.0617795 0.126914 0.0422805 +-0.0077906 0.079881 -0.0380243 +-0.0181903 0.172708 -0.0227977 +0.0362974 0.0657667 -0.0137187 +-0.0193672 0.122992 0.0288371 +0.0118921 0.127946 0.0270512 +-0.0528594 0.0344415 0.0327571 +-0.0440834 0.0344755 0.0328349 +0.00820576 0.0343954 0.0203732 +-0.0384853 0.0819001 0.0436414 +0.0279153 0.112797 -0.00956049 +-0.0233818 0.177171 -0.0128784 +0.00211138 0.110155 -0.0201605 +-0.0214231 0.0385184 -0.00765668 +-0.0590379 0.13549 -0.00623086 +-0.0654804 0.152163 -0.03833 +-0.0328363 0.0957996 -0.0235469 +-0.0574937 0.0333307 -0.00285911 +-0.0723124 0.154022 -0.038905 +-0.00125765 0.0383424 0.0470318 +0.022422 0.125761 0.0150782 +-0.0285891 0.0935252 -0.0252241 +-0.0395009 0.16971 0.00189803 +-0.0211973 0.0363196 0.0534993 +-0.0671438 0.037039 0.0145094 +-0.0455015 0.115241 0.0333765 +-0.0416597 0.057808 -0.0117566 +-0.0597745 0.0434652 0.0436848 +-0.0594246 0.0334838 0.00203125 +-0.0609255 0.122379 -0.00879585 +-0.0633414 0.0357702 0.0187502 +-0.0629834 0.0594485 0.00869517 +-0.0240199 0.0537379 0.0416895 +-0.0382462 0.044597 -0.024375 +-0.00732189 0.100225 -0.0241674 +-0.0425982 0.0463965 -0.0133084 +-0.0889045 0.133745 0.0416542 +0.00049898 0.0385943 0.0466363 +-0.0295864 0.0462965 0.0488628 +0.00439164 0.0448792 -0.025855 +-0.0608362 0.0341593 0.0278122 +-0.0547243 0.0723714 -0.0165135 +-0.0274694 0.155208 -0.00473974 +0.0246484 0.0713321 0.0461382 +0.0124372 0.0548875 0.0512192 +-0.00549842 0.0828666 0.0570203 +-0.0616148 0.0337181 0.0103501 +-0.0346312 0.0752701 -0.0214845 +-0.0629229 0.058915 0.0109817 +-0.0424386 0.147805 0.00141712 +-0.0363751 0.12414 0.0242241 +0.0176113 0.111464 -0.0161155 +-0.0314976 0.0603384 0.0380002 +-0.0138112 0.128252 0.0219818 +-0.0603076 0.0409502 -0.0078507 +-0.0735166 0.141431 0.0469479 +0.0326456 0.111384 0.0297678 +-0.0635438 0.0341847 -0.00786744 +0.02297 0.122414 -0.00191144 +0.0401375 0.0953636 -0.00688813 +-0.0141538 0.0965092 0.052175 +-0.00422659 0.0383846 0.0124357 +-0.0311024 0.0343581 0.019624 +-0.0780471 0.153854 0.029137 +-0.0581213 0.151582 -0.000807379 +-0.0267449 0.0725846 -0.0356647 +-0.0191918 0.174184 -0.0227992 +-0.00378536 0.0798194 -0.0370348 +-0.0249464 0.0349691 -0.0199992 +-0.0564664 0.0423189 0.0186897 +0.0266976 0.119444 -0.00271582 +-0.023525 0.0349287 -0.0283944 +-0.0800951 0.15261 0.00324045 +0.0268493 0.119915 0.0267269 +0.0354747 0.0390827 0.0235255 +-0.0127812 0.17424 -0.0204206 +-0.0338617 0.168258 -0.00349456 +-0.0144845 0.0744882 0.056153 +0.0261935 0.0402752 0.032238 +0.0102706 0.0681153 -0.0309054 +-0.00974239 0.0387292 0.0290909 +-0.0644512 0.125591 0.047275 +0.010367 0.0479585 -0.0270631 +-0.0246099 0.0984431 -0.024327 +-0.0476227 0.0370311 -0.0128189 +-0.0780422 0.0846436 0.0366002 +-0.0566171 0.135321 0.0339425 +-0.0556004 0.0505584 -0.00338763 +-0.0907186 0.136468 0.0172046 +-0.0245124 0.180278 -0.0098524 +0.00742535 0.0346722 0.0416328 +-0.0699342 0.0651273 0.0236486 +-0.0124071 0.172769 -0.0198823 +-0.041856 0.149196 0.00419837 +-0.0809107 0.103235 -0.00559799 +-0.0631328 0.0335051 0.0030611 +-0.00851461 0.0647289 0.0558918 +0.0154483 0.127759 0.0239281 +0.0255922 0.123349 0.0191129 +0.0138934 0.0631004 0.0516475 +0.00118569 0.0983354 -0.0261952 +-0.0325387 0.118791 -0.011658 +-0.000757843 0.0354065 0.0103826 +-0.0248998 0.158417 -0.0112592 +-0.035233 0.0374002 -0.014964 +-0.0541243 0.156074 -0.00260128 +-0.0584646 0.0588965 0.0024905 +-0.0615294 0.0333928 -0.00373148 +-0.0602915 0.0343294 0.0347628 +0.0265767 0.0994658 0.0420977 +0.0347214 0.0712416 -0.0157876 +-0.040399 0.128703 0.00942739 +0.00251855 0.096887 -0.0286022 +-0.076485 0.148385 0.0403892 +-0.0606115 0.155938 0.0148123 +0.010878 0.0806434 0.0544608 +0.0384784 0.105492 -0.00082855 +0.0438672 0.0916755 -0.00180444 +-0.0513529 0.0733082 0.0416893 +0.0451032 0.0777437 0.000209071 +-0.0817242 0.148679 0.0369003 +0.0461375 0.0834298 0.00718398 +-0.0514739 0.135214 -0.000924577 +-0.00531173 0.100039 -0.0239686 +-0.0176147 0.042187 -0.0278695 +0.00727636 0.114035 -0.0188609 +0.0268989 0.0632714 0.044083 +0.0102735 0.0924657 -0.0299319 +0.010651 0.121836 0.0349107 +0.00895558 0.0361581 -0.0106394 +-0.0905601 0.144393 0.0275534 +0.043756 0.0467626 0.0296361 +-0.0417806 0.126404 -0.00562318 +-0.0358424 0.095771 -0.0231986 +-0.0809037 0.153834 0.0267225 +-0.0777263 0.156926 -0.0159116 +0.00417967 0.034897 0.044357 +-0.0351879 0.125718 0.0201989 +-0.0284012 0.038721 -0.0148192 +-0.0351226 0.169652 -0.0145814 +-0.0203438 0.180146 -0.0154935 +0.0345359 0.11019 -0.00473263 +-0.0932568 0.121548 0.0382795 +-0.0334767 0.152548 -0.00159465 +-0.0271731 0.174192 -0.00959576 +0.0159989 0.11444 -0.0153318 +-0.054238 0.13299 -0.00459005 +0.0366798 0.105376 -0.00582172 +0.0386277 0.0672715 0.0346845 +-0.0227209 0.162682 -0.0153632 +-0.0760409 0.0677685 0.0130189 +0.00250507 0.0772798 0.0565792 +-0.0345053 0.101515 0.0417518 +-0.0546003 0.0541349 0.0100271 +-0.000643212 0.127926 -0.00376413 +0.00284904 0.131659 0.0150261 +-0.0184884 0.186846 -0.021092 +0.0335193 0.114014 -0.000843968 +0.00632048 0.123167 -0.0106939 +-0.0564752 0.0624455 0.0290854 +-0.0138322 0.105995 -0.0224296 +0.00423384 0.0754618 -0.0348642 +-0.0281096 0.0778495 0.0450018 +-0.0776289 0.158329 -0.0159141 +0.0148253 0.0447411 0.0439981 +-0.0859023 0.122521 -0.0027014 +-0.0578481 0.0940916 -0.0211113 +0.00150378 0.0842858 0.0575429 +0.0326379 0.0849202 0.042017 +-0.0549752 0.0499938 0.0105067 +-0.0568824 0.10976 -0.0175883 +-0.00970298 0.0627929 -0.0357349 +-0.0178968 0.163686 -0.0167578 +-0.074969 0.105672 0.0364824 +0.00650677 0.0702743 0.0558788 +0.00487604 0.0992462 -0.0230983 +0.042474 0.101514 0.0131646 +-0.0643723 0.0593574 0.0120942 +0.0593748 0.0580631 0.00716733 +-0.00149842 0.111423 0.0424113 +-0.00749339 0.119159 -0.0142858 +-0.0771313 0.0754374 0.0308061 +-0.0477996 0.0869772 -0.0218762 +0.014411 0.0833733 0.0525453 +-0.0202678 0.159643 -0.00488449 +-0.0159305 0.0950186 -0.0327431 +-0.0279294 0.0931359 -0.0265478 +-0.0855021 0.102147 0.00137916 +-0.0938092 0.125562 0.0252741 +-0.058744 0.140559 -0.00481674 +-0.031677 0.126244 0.00820251 +-0.0264922 0.0447022 0.0511549 +-0.0205862 0.0382221 0.00925741 +-0.053491 0.104292 0.0408761 +-0.0370674 0.156264 -0.0103696 +-0.0634966 0.109514 0.0378318 +-0.0867621 0.084687 0.0184803 +-0.0830364 0.104646 0.028271 +0.0442212 0.0804374 0.0252067 +-0.0448473 0.0339909 -0.0230279 +-0.0037539 0.0755488 -0.0365646 +-0.0661663 0.158028 -0.0551775 +-0.0238007 0.0741774 -0.0380398 +-0.018731 0.0627665 -0.0359648 +0.0446574 0.0720977 0.0012022 +-0.0927955 0.121487 0.0416389 +-0.0620012 0.1241 0.0437622 +0.0300963 0.0995295 0.0401727 +-0.0719316 0.149607 -0.0394232 +0.0355637 0.0889227 0.0392444 +0.0493081 0.0547033 -0.00484617 +-0.0668328 0.0604514 0.0106116 +0.00304719 0.123088 -0.0105402 +-0.0255191 0.118043 0.0319974 +-0.0394865 0.115305 0.0335817 +-0.0326614 0.0592947 -0.0125392 +0.0575508 0.0523393 0.00818574 +-0.0893959 0.0942918 0.0174254 +-0.0269084 0.160002 -0.0134029 +-0.0506856 0.0345547 0.0383582 +-0.0800885 0.0739226 0.0209531 +-0.0277305 0.073972 -0.0353872 +-0.0320496 0.0849187 -0.0285721 +-0.0217999 0.0866355 0.0553929 +-0.0322022 0.0465812 -0.0258568 +-0.0442317 0.12547 0.021384 +0.0214935 0.0781932 0.0504764 +-0.0444883 0.150664 0.00744383 +-0.0303843 0.0566029 -0.0193937 +-0.0723854 0.155427 -0.0359059 +-0.0245149 0.0811097 0.0540325 +0.0189031 0.068639 0.0501604 +-0.0650109 0.041163 0.0307556 +-0.0194954 0.107168 0.0420699 +-0.0325124 0.113906 0.0343195 +-0.0544418 0.118427 -0.0131672 +-0.0536811 0.113759 -0.0162997 +-0.0559476 0.153959 0.0252069 +-0.0675391 0.124252 0.0515729 +0.0440796 0.0450784 0.0271934 +-0.0594971 0.101543 0.0424741 +-0.0184988 0.100234 0.0438197 +0.0434554 0.0790039 -0.00377815 +0.0140981 0.0343905 -0.0079847 +-0.0615105 0.0406302 -0.00752326 +0.0320683 0.0578123 0.0392046 +0.0144666 0.0962642 0.0485999 +-0.0315047 0.0631978 0.0384961 +-0.0306251 0.038441 -0.00943325 +-0.0847861 0.0804507 0.00450965 +-0.0549519 0.160962 0.00433648 +-0.0470839 0.131413 0.00333034 +-0.00104546 0.0391448 0.0323048 +-0.0526926 0.151783 0.016281 +-0.0223808 0.0958588 0.045836 +-0.0841478 0.15365 0.0123539 +0.0536189 0.0735747 0.0133449 +-0.00350831 0.0975151 -0.0292875 +-0.0571277 0.155869 0.0117051 +0.00341369 0.131576 0.0166618 +-0.0237378 0.0654511 -0.0345337 +-0.0858145 0.0991904 0.0269676 +-0.0759199 0.0783227 -0.00959072 +0.032684 0.0640121 -0.0177767 +-0.056282 0.132113 -0.00567386 +0.00328959 0.131137 0.0194851 +0.00882643 0.110931 -0.0195298 +-0.00876485 0.1716 -0.0262973 +-0.0151483 0.0405525 0.0515137 +-0.0498071 0.0343093 0.00865348 +-0.0569766 0.0339283 0.0235563 +-0.0226683 0.0381298 0.00891697 +-0.0855438 0.106245 0.00446783 +0.0454924 0.0651146 0.027904 +0.0150017 0.0576648 0.0496654 +0.00644791 0.119491 -0.0147367 +-0.0156486 0.0481142 -0.0300898 +-0.0650134 0.13537 0.0410634 +0.0113952 0.116794 -0.0158535 +0.0173388 0.0781757 0.0532571 +0.0536226 0.0587546 -0.00269037 +-0.0709897 0.0340252 0.000991695 +0.038384 0.106978 0.0241932 +-0.0385431 0.038993 -0.0286239 +-0.0451337 0.127804 0.0210049 +-0.0690676 0.152436 0.0353067 +-0.0883368 0.137775 0.00920322 +-0.0714828 0.0362083 0.00943052 +-0.0717062 0.159603 -0.040933 +-0.0255949 0.125933 0.00752005 +-0.047874 0.0346487 0.0423594 +0.0367516 0.111162 0.00316661 +-0.00949217 0.110042 0.0428369 +-0.0572015 0.0336196 0.0184714 +0.0150246 0.0392642 0.0442415 +-0.00832489 0.0993422 -0.0252442 +-0.0304761 0.0342807 0.0180201 +-0.026997 0.0382812 -0.00486026 +-0.0916784 0.144722 0.0181573 +-0.0703317 0.172249 -0.0530308 +-0.0159101 0.1643 -0.0176565 +-0.0850976 0.106195 0.00337687 +-0.035284 0.173981 -0.0126295 +-0.032733 0.155408 -0.00943888 +0.00217615 0.12934 0.0262849 +0.00123579 0.075497 -0.0355058 +-0.0332024 0.0455956 -0.0269373 +-0.0155006 0.103015 0.0432792 +0.0396392 0.106988 0.00416547 +-0.021523 0.118151 0.0342827 +-0.0184974 0.103009 0.0434402 +-0.047784 0.038449 -0.0122332 +-0.0104903 0.0604984 0.0550813 +0.0293518 0.0659692 0.0423806 +0.0185572 0.0930309 -0.0244868 +0.0173756 0.109987 -0.0165543 +-0.0865489 0.109072 0.0153468 +0.0363255 0.10537 -0.00683316 +-0.0394998 0.076195 0.0426907 +-0.0603651 0.0470889 0.0366883 +-0.0144951 0.119623 0.0361429 +0.0406661 0.105634 0.0121644 +0.0383891 0.0460848 -0.00524865 +0.0295409 0.0942529 0.0428642 +0.0373159 0.0880544 -0.0152271 +-0.0784316 0.0799342 0.0337318 +-0.0548348 0.124111 0.0382711 +0.0178682 0.0672532 0.0504022 +-0.0788979 0.123682 -0.00614143 +-0.0298552 0.0986755 -0.0232224 +-0.0771653 0.156191 -0.0114635 +-0.0923833 0.130942 0.0122392 +-0.0651094 0.121429 0.0498115 +-0.042493 0.0690949 0.0416622 +0.0416337 0.0792551 0.0303335 +0.0189066 0.0808659 0.0520326 +-0.029145 0.125694 0.0135548 +-0.0619967 0.14761 -0.00462246 +0.0255017 0.0449453 0.0383425 +-0.0925798 0.11747 0.0343056 +-0.00233027 0.0339229 -0.0220991 +0.00799401 0.0819204 0.0555296 +-0.0699548 0.147947 -0.0321477 +0.0415131 0.0394077 0.00724875 +-0.0712173 0.0846981 0.0410753 +-0.0880447 0.0874003 0.00446864 +0.00798497 0.0890814 -0.0324293 +-0.0117258 0.0656807 -0.0365783 +-0.0114796 0.112753 0.0411508 +-0.0817304 0.107364 -0.00260486 +-0.0293156 0.0820403 0.0446588 +-0.0495645 0.0375773 -0.0119604 +-0.043838 0.0956679 -0.0221641 +-0.00869681 0.129559 0.00358698 +-0.0933816 0.129671 0.0222434 +-0.0700603 0.163804 -0.0489659 +-0.00755399 0.0384559 0.0207545 +0.0159604 0.125249 0.0284184 +-0.0514974 0.0791051 0.0438079 +-0.0840796 0.0818676 0.0264914 +0.037525 0.0785071 -0.0127982 +0.0299804 0.119686 0.0179058 +-0.0638039 0.0881523 -0.0190251 +-0.0272788 0.0350567 0.0515587 +-0.00562089 0.115673 -0.0165634 +-0.0104428 0.0347186 0.0450504 +-0.0427898 0.116428 -0.015168 +0.0165768 0.126998 0.000104849 +-0.0238911 0.0738255 0.0493988 +-0.0485539 0.0376116 -0.0123218 +-0.0396922 0.0460798 -0.021311 +-0.0485652 0.0335345 -0.00306359 +0.0414749 0.104231 0.00716597 +-0.0445241 0.0409237 -0.0192998 +-0.0220397 0.0354083 0.0523916 +-0.0380711 0.0340829 0.00944176 +0.0139247 0.0348347 0.0392218 +-0.0297288 0.0335868 -0.0252735 +-0.00107263 0.0385746 0.00195199 +0.0117524 0.0352863 0.00381322 +0.0170772 0.0847646 0.051153 +-0.0656775 0.067321 -0.00750664 +-0.00543271 0.0918052 -0.0353894 +0.0133691 0.0343357 -0.00620151 +0.0451372 0.0875619 0.0011816 +0.0503362 0.0703636 0.0239238 +-0.0474927 0.0804818 0.0437565 +-0.00542063 0.0391587 0.0349931 +0.00193935 0.03568 -0.0153447 +-0.0774115 0.160346 -0.0169397 +0.049877 0.0727457 0.00893584 +-0.0640788 0.0598458 0.0171155 +-0.00650105 0.0472142 0.0482843 +-0.0241121 0.163789 -0.0160029 +-0.0173263 0.0611887 0.051725 +0.0171559 0.100271 -0.022436 +-0.0604932 0.155795 0.0206537 +-0.0609595 0.142497 0.0365005 +-0.0668489 0.0966702 -0.0167929 +-0.0149394 0.183104 -0.021718 +-0.0321779 0.0750041 -0.0285287 +-0.0226305 0.0710127 0.0496427 +0.0463117 0.0820487 0.00917902 +-0.0795939 0.112319 0.0461682 +-0.0658419 0.0995396 -0.0165139 +-0.0810165 0.134048 0.0507919 +-0.0486855 0.131027 0.0278379 +-0.0788429 0.112725 -0.00283498 +-0.0784933 0.0832425 0.0356821 +-0.0258381 0.0781035 0.0498012 +0.0426426 0.0858997 0.0283401 +-0.0677549 0.154168 0.0312275 +-0.0306743 0.0383989 -0.00386137 +-0.0857757 0.0926386 -0.000557841 +-0.0210104 0.0417331 0.053591 +0.0161529 0.100264 -0.0224296 +0.0387814 0.0821002 0.0350599 +0.0484193 0.0639761 -0.00211304 +-0.0858985 0.111778 0.0253403 +-0.0389634 0.128304 0.0114309 +-0.0634823 0.0352819 -0.00824664 +0.0395163 0.0646366 -0.0087647 +-0.0591064 0.0435686 0.0148077 +0.00621882 0.12419 0.0335647 +-0.0171539 0.0347559 0.0453522 +-0.0314811 0.0546225 0.0370229 +-0.0182701 0.114743 -0.017523 +-0.0605388 0.141029 0.0353291 +-0.063605 0.126943 0.0449774 +-0.03749 0.0533987 0.0390423 +-0.0573191 0.0507885 0.00568774 +-0.0424884 0.109818 0.0380938 +-0.082569 0.0790202 0.0265184 +-0.0653913 0.0757553 0.0400472 +-0.0105137 0.0589924 0.0541839 +0.0198393 0.0700116 0.0497622 +-0.0814721 0.135361 0.0497671 +0.00809889 0.111578 -0.0196036 +-0.0276072 0.038217 0.0294729 +-0.0647783 0.173212 -0.0488362 +-0.0760415 0.0675654 0.00655947 +-0.0322855 0.0610195 -0.0154117 +-0.00948933 0.0674612 0.0553354 +-0.0922478 0.11733 0.00930597 +0.0325339 0.116751 0.00316678 +-0.0788837 0.117794 -0.00533035 +0.0177807 0.10571 -0.0179484 +-0.0648315 0.0895741 -0.0187043 +-0.0303114 0.0384164 -0.0075003 +-0.0728418 0.0685704 -0.00149472 +0.0396278 0.103602 -0.00160767 +-0.0575003 0.109781 0.0378101 +-0.0359224 0.034124 0.026018 +-0.0230844 0.126658 0.00843513 +-0.0904612 0.131068 0.0382266 +-0.0782718 0.165861 -0.029036 +0.0284552 0.0607955 -0.0208488 +-0.0495337 0.163976 0.00447865 +-0.0665318 0.134006 0.0442059 +-0.0622043 0.0590015 0.0092504 +0.0124693 0.0962821 0.0494059 +0.0199668 0.115907 -0.0129188 +-0.0101559 0.0386047 0.027311 +-0.0224495 0.0580629 0.0442448 +-0.0768471 0.09916 -0.0110394 +-0.0438495 0.0999429 -0.0214407 +-0.0642587 0.173261 -0.0500973 +-0.0291541 0.123106 -0.00418201 +-0.0785185 0.16527 -0.0289621 +-0.0773807 0.0774654 0.0325309 +0.0184997 0.0892768 0.0486726 +-0.0147168 0.0628748 -0.03682 +0.0133075 0.062355 -0.0296823 +0.0174899 0.111215 0.038757 +-0.0829923 0.130939 -0.00341376 +-0.0749763 0.152739 -0.0169005 +-0.00979029 0.0798633 -0.0379189 +-0.0243904 0.183518 -0.0110527 +0.0382626 0.0899111 -0.0131489 +0.0353274 0.107617 -0.00596632 +-0.0649093 0.06918 0.0352438 +0.0545625 0.0595427 0.0278248 +-0.0664402 0.128427 0.0478848 +0.0302544 0.035019 0.00964843 +-0.0212084 0.186026 -0.0155815 +-0.00559653 0.0391515 -0.0257085 +-0.00382316 0.0854518 -0.0372434 +0.0556932 0.0688929 0.00299188 +0.0435925 0.0958855 0.00119521 +-0.061875 0.156868 -0.0195857 +-0.0283944 0.174224 -0.00779385 +0.000326986 0.131385 0.00837406 +0.0583787 0.0621209 0.00318289 +0.0262357 0.0740751 0.0449841 +-0.0747322 0.0729443 0.0316828 +-0.0650821 0.148822 -0.0290175 +-0.0436469 0.0601588 0.0398932 +0.0443703 0.0410834 0.0161644 +-0.0674507 0.155183 -0.000720573 +-0.0165017 0.177176 -0.0187481 +0.0352588 0.0755049 -0.0148105 +0.00551455 0.110936 0.0415028 +0.0248664 0.0898261 -0.023121 +0.00550646 0.078617 0.0558754 +-0.0698407 0.127049 0.051763 +-0.0375072 0.123454 -0.00854988 +-0.052616 0.0657163 0.0355847 +-0.0748963 0.0690517 0.0244939 +0.023431 0.11936 -0.00662051 +-0.0185076 0.120924 0.0327413 +0.0394332 0.101324 0.027167 +-0.00864992 0.124983 -0.00848236 +-0.0872247 0.152479 0.0216964 +-0.0215688 0.0623472 0.0460467 +-0.0475797 0.035695 0.0449374 +-0.0510737 0.151654 -0.00393732 +-0.0415 0.0930514 0.0423592 +-0.0544965 0.100156 0.0427594 +0.049267 0.0717276 0.00605578 +0.0292141 0.0815364 -0.0209002 +-0.0052585 0.095242 -0.0329133 +0.0151527 0.129419 0.0109697 +-0.0294996 0.100187 0.0432585 +0.0363367 0.0432226 0.0290731 +0.0327757 0.035977 0.0148418 +0.00349523 0.0427434 0.0456833 +0.046121 0.0848311 0.00917504 +-0.067462 0.157723 -0.00658264 +-0.0876012 0.0995367 0.00546504 +-0.0356487 0.0352259 -0.0310792 +-0.0585981 0.0658974 0.0341563 +-0.0639239 0.116652 -0.0103062 +-0.0525394 0.0472909 -0.00733632 +-0.0398304 0.034299 0.0303636 +0.0252131 0.0803965 -0.024704 +-0.0721022 0.165224 -0.0439746 +-0.058758 0.148538 -0.00150368 +-0.0625812 0.150647 -0.00957658 +-0.0878641 0.137757 0.00720039 +0.0109534 0.0475021 0.0472035 +-0.0699012 0.105141 -0.0130553 +0.0318353 0.0540522 -0.0127622 +-0.0866591 0.107689 0.0123597 +0.0552547 0.0595292 0.0270628 +0.0320484 0.11465 0.0272407 +0.0433462 0.0818009 -0.00379375 +-0.0294668 0.176906 -0.0160057 +-0.0169961 0.094658 0.0531741 +-0.0202578 0.0596247 0.0476545 +-0.0798939 0.123658 -0.00558813 +0.0482025 0.0703533 0.0231278 +-0.0206189 0.186125 -0.0151754 +0.0100127 0.0349584 -0.0111996 +-0.0661914 0.152591 -0.0424622 +-0.0478408 0.098515 -0.0219326 +0.026913 0.0619271 0.0440949 +-0.0328507 0.126562 0.0151396 +-0.0689146 0.108019 -0.0123122 +-0.00583756 0.0390351 0.0332216 +-0.0125377 0.0365668 -0.017148 +-0.0373858 0.0446552 0.0411638 +-0.0759006 0.161818 -0.014334 +0.0304033 0.107421 -0.0117891 +-0.0654084 0.175187 -0.050486 +-0.0633716 0.143922 0.0382956 +0.0194957 0.0920261 0.0477827 +-0.0288404 0.0972702 -0.0238091 +-0.00475508 0.0741241 -0.036385 +-0.0104985 0.0362063 -0.0254961 +-0.0625516 0.147537 -0.0115723 +-0.0816708 0.0869142 -0.00660013 +-0.00823999 0.130343 0.0167173 +-0.0809733 0.130966 -0.00434035 +-0.0437659 0.0811743 -0.0201658 +0.00743904 0.129465 0.0253135 +-0.00451238 0.0760575 0.0586977 +0.0302883 0.103408 0.0369471 +-0.0379006 0.151906 -0.00621808 +-0.00550346 0.076042 0.0585145 +-0.0217032 0.0597401 -0.0334972 +-0.0868755 0.112781 0.0262639 +-0.0336701 0.155604 -0.00983793 +-0.0126927 0.0599517 -0.0357172 +-0.0638978 0.150075 -0.0288161 +-0.0144059 0.112046 -0.0186792 +-0.00421023 0.0383902 0.0178766 +-0.0453052 0.113634 -0.0162273 +0.0147972 0.102084 -0.0220848 +-0.0484999 0.105649 0.0400819 +0.0216294 0.0875507 0.0490393 +-0.0124184 0.175705 -0.0216387 +-0.0328373 0.163842 -0.00376818 +-0.0666614 0.0672261 -0.0064803 +-0.0395052 0.119385 0.0302298 +-0.0489243 0.0675117 0.0383488 +-0.0552807 0.0343936 0.0305403 +0.00553119 0.0603997 0.0554086 +-0.0914264 0.14884 0.0201323 +0.0231929 0.110938 -0.0135659 +-0.065154 0.164972 -0.0244937 +-0.050496 0.074792 0.0427038 +-0.0657515 0.154274 -0.0462128 +-0.0343486 0.0367995 -0.0305331 +-0.0826303 0.103323 0.0293175 +-0.0597443 0.0338929 0.0194732 +-0.0425056 0.0591222 0.0401769 +-0.0743438 0.156862 -0.0249223 +-0.00222977 0.0396912 0.0474006 +-0.00562206 0.0388337 0.0298422 +-0.0338556 0.0723894 -0.0214737 +-0.0635465 0.0333817 0.00128463 +-0.0330138 0.0356955 0.0305887 +-0.0730865 0.16659 -0.0202232 +-0.0570856 0.153101 -0.000954757 +0.0275543 0.0960379 -0.019637 +-0.0229677 0.169763 -0.0123298 +0.0217819 0.106251 -0.0165369 +-0.0575003 0.0630187 0.0298519 +-0.00864981 0.171144 -0.0247734 +-0.053919 0.0587242 -0.00741756 +-0.0595 0.105675 0.0404663 +0.0351077 0.0740897 -0.0147891 +-0.0620479 0.155306 -0.016587 +0.0278721 0.0522836 -0.0197543 +0.0325208 0.0469245 0.0310812 +-0.06629 0.139698 0.0427919 +-0.078132 0.172939 -0.0407193 +-0.0294988 0.0559628 0.0364214 +-0.0374897 0.0562507 0.0395531 +-0.0662219 0.155662 0.00991681 +-0.0408786 0.0346362 0.0386374 +-0.0208999 0.185581 -0.0139755 +-0.0330517 0.0624982 -0.0144201 +-0.0767419 0.164619 -0.0220172 +-0.0697905 0.0865423 -0.0170841 +-0.0784816 0.0755217 0.0287043 +0.0172033 0.118701 -0.0119316 +-0.0185134 0.0473863 0.05026 +0.00729554 0.0653986 -0.0323322 +-0.0415011 0.0506114 0.0394281 +-0.0541424 0.033642 0.0190888 +-0.0921005 0.132392 0.0222257 +-0.0136741 0.0384938 0.00315386 +-0.0383322 0.163825 0.00056966 +-0.0762889 0.0738479 0.0305832 +-0.0875285 0.133568 0.00229932 +-0.0736181 0.0688668 0.0266732 +0.02687 0.0981666 0.0425225 +-0.051308 0.153569 0.0116824 +4.86222e-05 0.11836 -0.0154829 +-0.0517937 0.0583908 0.0296448 +0.0605105 0.0595417 0.010156 +-0.0573945 0.0371513 -0.0102727 +0.00965733 0.0345667 0.0223294 +0.0463647 0.0703187 0.00350637 +-0.0625718 0.1468 0.0377209 +-0.089178 0.137924 0.0381661 +-0.0134956 0.0759117 0.0568004 +-0.00574286 0.0755721 -0.037104 +0.0261865 0.123233 0.0107875 +-0.0580499 0.11553 -0.0140963 +-0.00762589 0.0451743 -0.028662 +0.0535357 0.0635428 0.028124 +-0.0718987 0.123811 -0.00847645 +-0.0635357 0.119961 0.0469254 +0.00211859 0.130671 0.0219319 +0.00252859 0.0358017 0.021576 +0.0527591 0.0693467 0.00250314 +-0.0451218 0.0335948 -0.0116042 +-0.0769111 0.100434 -0.0105662 +0.0223237 0.0564658 -0.026195 +0.0394644 0.107011 0.0181712 +-0.0776021 0.0994637 0.0357144 +-0.0632381 0.170981 -0.0495819 +-0.00862433 0.122038 -0.0113292 +-0.0548269 0.0450002 0.0157095 +-0.0506815 0.134691 -0.000340536 +-0.0495888 0.146296 0.0105853 +-0.00908464 0.173025 -0.027717 +-0.00410488 0.0346022 0.0429088 +-0.0260906 0.0386266 -0.0124061 +0.0283176 0.118208 -0.00273298 +-0.0318098 0.121167 -0.00811427 +-0.0737276 0.154081 -0.027902 +0.0162665 0.119939 -0.0112703 +-0.0270805 0.0349584 0.0482667 +-0.0284917 0.101554 0.0428228 +-0.0249764 0.159657 -0.0011434 +-0.0585904 0.142433 0.0328417 +-0.0486888 0.138617 0.0104009 +-0.0234979 0.0724108 0.049066 +-0.019247 0.158526 -0.00845424 +-0.0716194 0.0382939 0.000706648 +-0.0412769 0.0356814 0.042879 +0.0483353 0.0532726 -0.00489034 +0.0606695 0.0664968 0.0121468 +-0.069489 0.104131 0.0386578 +0.00750734 0.0990008 0.0480837 +-0.0624532 0.126929 0.0430601 +-0.0629568 0.15367 -0.0336031 +-0.0374985 0.0747273 0.041938 +0.0426086 0.0930422 0.0261716 +-0.0849422 0.153595 0.0209155 +-0.0543959 0.12661 -0.00573734 +-0.0742502 0.161028 -0.0329547 +-0.0627767 0.112367 0.0371562 +-0.0532977 0.158553 0.00873827 +-0.0769168 0.123731 -0.00719316 +0.0393533 0.0847596 0.0341247 +-0.0692244 0.15634 0.0190049 +0.0343018 0.0936044 -0.01506 +-0.0165008 0.0800909 0.0572191 +-0.014166 0.184338 -0.0242563 +-0.0631574 0.159924 -0.0465929 +-0.0374857 0.0519831 0.0389557 +0.03646 0.112262 0.0117392 +-0.0411413 0.0364371 -0.0278037 +0.0185712 0.126949 0.0207922 +-0.0603223 0.0385556 0.0217181 +-0.0769591 0.131054 -0.00672048 +-0.0295123 0.0565107 -0.0214026 +0.0430875 0.0930739 0.0251589 +-0.00582403 0.0390405 -0.0106025 +-0.0553855 0.0337802 0.0222515 +0.014479 0.100435 0.047468 +-0.0548752 0.0984577 -0.0213117 +-0.0501571 0.0529434 0.0176286 +0.0183573 0.0461568 -0.0227219 +-0.0554809 0.0440191 0.0450323 +-0.0877934 0.0860475 0.0044818 +0.00321463 0.130705 0.0223233 +-0.0505315 0.0389504 -0.011562 +-0.0819835 0.132406 -0.00340088 +-0.0758067 0.0877331 -0.0139103 +-0.091338 0.14476 0.0251578 +-0.0649682 0.034557 0.0300942 +-0.0283013 0.113756 -0.016413 +0.0259713 0.0619044 0.0444933 +-0.0535159 0.0640852 0.0330775 +-0.0046427 0.0482096 -0.0303136 +-0.0584956 0.0861498 0.0443498 +-0.0655423 0.145055 -0.0169033 +-0.0423586 0.123855 0.0235885 +-0.0864234 0.0806346 0.0145003 +-0.033107 0.125984 0.00180258 +0.000400525 0.0433705 -0.0249688 +-0.0337351 0.126905 0.0148106 +0.0594437 0.0677773 0.0191638 +-0.0433018 0.0342732 -0.0267127 +-0.0668634 0.040937 0.011312 +-0.0651408 0.146773 0.0392721 +0.0142259 0.080787 -0.0303234 +-0.0564981 0.0973554 0.0431547 +0.0234826 0.113521 -0.012343 +-0.022737 0.0385766 -0.00982941 +-0.0695434 0.0352232 -0.00418951 +0.060768 0.0651161 0.0111484 +-0.00338536 0.100168 0.0483773 +-0.0154942 0.0772732 0.0564359 +-0.0581438 0.114319 -0.0148345 +-0.0758612 0.165153 -0.0370257 +-0.0666041 0.164889 -0.0207192 +-0.0401309 0.160681 -0.0117333 +-0.00727995 0.0389199 -0.00704692 +-0.0726288 0.07489 0.035733 +0.0572537 0.0657957 0.00220085 +-0.0564793 0.151056 0.0307055 +-0.0459743 0.153608 0.00885524 +-0.046245 0.034596 0.0410145 +-0.0611658 0.168359 -0.0606871 +-0.0242347 0.0401682 0.0541848 +0.0432765 0.10012 0.00816425 +0.0330202 0.102118 0.0356213 +-0.00368236 0.0583856 -0.0334327 +-0.016783 0.0973001 -0.0271368 +0.018711 0.100467 -0.0223545 +-0.0500289 0.122604 0.03284 +-0.063243 0.0333437 -0.00222576 +-0.0187202 0.0613304 -0.0355606 +-0.0268504 0.0548324 -0.0264063 +0.0215374 0.086463 -0.0256391 +-0.0138967 0.099791 -0.0237429 +-0.00550708 0.0774167 0.0583085 +0.055466 0.0507517 0.00421414 +0.00822806 0.0344179 0.00390084 +0.028423 0.0535254 0.0391477 +-0.00689074 0.103109 -0.0232386 +-0.0320031 0.0370471 -0.0177181 +-0.0255422 0.0377889 0.0158759 +-0.0476682 0.165409 0.0039929 +-0.0673807 0.115762 0.049991 +0.00348136 0.111402 0.0420175 +-0.081586 0.0734778 0.0135382 +0.0427229 0.10007 0.00318201 +-0.0456223 0.0548403 -0.0108081 +-0.0226179 0.0464363 -0.0275647 +-0.0201905 0.172698 -0.0217858 +0.0374948 0.0941477 0.0350502 +0.0227469 0.0686119 0.0468992 +-0.012216 0.174205 -0.0276647 +-0.0906322 0.112714 0.0163744 +-0.0599044 0.111127 -0.0158584 +0.00535116 0.0480874 -0.0284111 +-0.0295604 0.158116 0.000994125 +0.0104513 0.122961 -0.0105071 +-0.0619452 0.123832 -0.00870252 +0.00605345 0.0341614 0.00369541 +-0.0696099 0.138316 0.0468524 +0.00349102 0.11963 0.0373483 +-0.0495577 0.0338416 0.0269497 +-0.0500211 0.0529295 0.0155558 +-0.0534917 0.0491191 0.0286591 +0.0546976 0.0478581 0.0131951 +-0.0803392 0.0841108 -0.00756769 +-0.0693719 0.180628 -0.057909 +-0.0247145 0.161052 -0.00252569 +0.0299408 0.0713176 0.0415086 +-0.0779905 0.173544 -0.0470087 +-0.0168218 0.086916 -0.0386596 +-0.0658968 0.109505 -0.0131657 +0.0326969 0.10609 0.0333845 +0.0191388 0.0356129 -0.00667825 +-0.0168818 0.100112 -0.0240537 +-0.0620293 0.135502 -0.00717407 +0.0377405 0.110012 0.0179226 +0.0360001 0.0381146 0.00239588 +-0.0151683 0.160834 -0.010917 +-0.0894324 0.117571 0.0455052 +0.0402874 0.063301 -0.00576463 +0.000231956 0.0755133 -0.0357459 +-0.0663652 0.0422587 0.0107808 +-0.0908359 0.114163 0.0368153 +0.0456753 0.0833922 0.00418733 +-0.0426429 0.0563425 -0.0115708 +-0.0472127 0.168412 -0.001987 +0.0163989 0.0433061 -0.0232691 +-0.0181224 0.165314 -0.018178 +0.014203 0.08785 -0.0301032 +0.00716038 0.0832586 0.0561062 +0.0547452 0.0661481 0.0263648 +0.0207672 0.0700064 0.0493524 +-0.0820552 0.1102 0.0401793 +0.0336664 0.0753805 -0.0167583 +-0.0827158 0.108829 0.000295564 +0.0250546 0.0420912 0.0376641 +-0.0866523 0.0868042 0.0239447 +-0.082018 0.151309 0.00327526 +0.0209029 0.107601 -0.0159886 +-0.0134952 0.0659366 0.0537869 +-0.0902062 0.143054 0.0286714 +0.0484774 0.0431365 0.00824398 +0.00679595 0.0352467 -0.0139815 +0.0154 0.0448131 -0.0240573 +-0.0715189 0.0972122 0.0409969 +0.0152962 0.0652155 -0.0297912 +0.0106046 0.128135 -0.0020835 +0.0273536 0.106086 0.0379553 +-0.0176729 0.0540415 -0.0325983 +-0.00110521 0.131378 0.0121444 +-0.0724827 0.124619 0.0532114 +-0.0738593 0.174047 -0.0391959 +-0.0646169 0.109762 0.0377795 +0.00521659 0.0824462 -0.0340286 +-0.0280135 0.0591603 -0.0264206 +-0.0676617 0.0433934 0.000689977 +0.0407264 0.0999947 0.0251764 +-0.0322885 0.177691 -0.00536129 +-0.0547546 0.035972 0.0465789 +-0.0425002 0.115266 0.0336474 +-0.0687451 0.0708436 0.0347552 +-0.0375019 0.0804666 0.0432825 +-0.0182946 0.181579 -0.0243778 +-0.0789826 0.115456 0.0491224 +-0.0415063 0.0534301 0.0394734 +-0.0708913 0.0403263 0.00282802 +-0.0548298 0.0927311 -0.0220321 +-0.0745142 0.138634 0.0488155 +-0.0807745 0.102028 0.0317433 +-0.0249646 0.181509 -0.0170525 +-0.0727415 0.154031 -0.0358995 +-0.0698172 0.0908437 -0.0164973 +-0.0366476 0.0577363 -0.0111372 +-0.0192308 0.0947234 -0.0324688 +-0.0118669 0.165326 -0.0197278 +-0.0804375 0.137229 0.0490949 +0.0134351 0.129972 0.01319 +0.0457654 0.0791979 0.00319646 +-0.0469166 0.129554 0.0250362 +-0.0581769 0.137607 -0.00562722 +0.04256 0.0817421 -0.00578018 +-0.0478101 0.0884245 -0.0219224 +-0.0424147 0.0344885 0.0314161 +-0.0645764 0.139638 0.0400104 +0.00451352 0.10035 0.0463879 +0.0423459 0.0915624 -0.00580854 +-0.0833163 0.106091 -0.000625527 +-0.0510681 0.0429687 0.0449412 +-0.0258019 0.0564099 0.0391373 +-0.0908661 0.142018 0.0261694 +-0.0222707 0.180155 -0.0129798 +-0.0375032 0.0987213 0.042382 +-0.0135516 0.0445689 0.0502862 +-0.0749157 0.0818909 0.0378096 +-0.042351 0.0336287 -0.0184783 +-0.0104895 0.0660607 0.0552117 +-0.0713722 0.163817 -0.0449613 +-0.0170629 0.040485 0.0522671 +-0.0629502 0.151043 -0.0063137 +-0.0420636 0.159404 0.00394669 +-0.0438717 0.105649 -0.0205239 +0.00352724 0.10161 0.0446753 +-0.00861199 0.118019 -0.01506 +-0.0658335 0.0881117 -0.0184537 +0.00251222 0.126485 0.0307749 +-0.0485567 0.0390246 -0.0119389 +-0.0600846 0.0399274 0.0217122 +0.0128427 0.034706 0.0391137 +-0.0306178 0.0409006 -0.0300462 +-0.0635449 0.0356868 -0.00823988 +-0.0063607 0.125295 -0.00886018 +-0.025376 0.059259 0.0400414 +0.0015066 0.0490028 0.0513272 +-0.0107915 0.0798668 -0.0380291 +0.0455381 0.0540654 0.0323771 +-0.0645999 0.0347243 0.0265296 +-0.074389 0.0874223 0.0399149 +0.0147945 0.0909396 -0.0283095 +-0.0256418 0.0382997 -0.00275652 +-0.0249427 0.17123 -0.0116584 +-0.0860007 0.147303 0.0341634 +-0.00989368 0.129282 0.00314288 +-0.056803 0.119986 -0.0107265 +0.0131837 0.129339 0.0031365 +0.0204173 0.0925165 -0.0239466 +-0.0881399 0.122604 0.000302573 +-0.0687931 0.166618 -0.053004 +-0.0116307 0.0337076 -0.023716 +-0.0395047 0.0776369 0.0429957 +-0.0435015 0.086056 0.04322 +0.0313221 0.0899509 -0.0192278 +-0.0512591 0.0544504 0.0206222 +0.0450165 0.0718833 0.00186291 +-0.0240342 0.0381218 0.00683415 +-0.0643335 0.153058 -0.000307605 +-0.0553413 0.0491317 -0.00437815 +0.0461434 0.0834347 0.0111711 +0.0469552 0.0427274 0.0188429 +0.0403147 0.061632 0.0300225 +-0.0345217 0.127119 0.00425139 +-0.0560415 0.0335011 -0.000906542 +0.0458803 0.0848141 0.013166 +0.0355169 0.0713149 -0.0148173 +-0.00649249 0.0978569 0.0522238 +-0.0720202 0.152598 -0.0428872 +0.00936768 0.0509673 -0.0289075 +-0.017803 0.0813337 -0.0391893 +-0.0164921 0.101629 0.0439544 +-0.0749763 0.136928 -0.00646616 +-0.018438 0.165372 -0.011068 +-0.0749694 0.0749712 0.0333987 +-0.0344916 0.0547205 0.0381399 +-0.0252176 0.0351344 0.0519405 +-0.0785113 0.10447 -0.00758869 +-0.0837382 0.0804711 0.0245022 +0.0352492 0.043109 0.0289456 +-0.0657408 0.0353871 0.0379044 +-0.0633722 0.04322 0.0387983 +0.0187703 0.0504962 0.0444745 +0.0134519 0.128957 0.00181284 +0.00181742 0.106617 -0.0209271 +-0.069971 0.156225 0.0143836 +-0.0793623 0.0739499 0.024599 +0.0192573 0.0903239 -0.0256184 +-0.0785673 0.0716608 0.0214639 +0.0207235 0.123161 0.0287274 +-0.0694864 0.116115 0.0518347 +-0.022007 0.0754165 0.0531212 +0.00541958 0.0361021 -0.0235849 +0.0126937 0.0345417 0.0229719 +-0.0272554 0.0377383 0.0173779 +0.0183414 0.126234 0.023568 +-0.0782171 0.159705 -0.021925 +0.0319954 0.11684 0.00152318 +-0.0364949 0.0747255 0.0419725 +-0.00631217 0.0422986 0.0485312 +-0.0696892 0.0733745 -0.0120577 +-0.0574743 0.0452883 0.0435332 +0.0270163 0.115378 0.0322111 +0.0100342 0.126121 -0.00591235 +-0.0765631 0.160404 -0.0136187 +0.0104935 0.0976882 0.0488434 +-0.088546 0.102334 0.0113879 +-0.0488628 0.0600536 0.0351294 +-0.0102645 0.038442 0.0220215 +-0.0471272 0.159118 -0.00765489 +0.0282711 0.0480264 -0.0137299 +0.0106928 0.0341923 -0.0160349 +-0.0413207 0.122297 -0.0113384 +-0.0112299 0.173502 -0.0278641 +-0.0702692 0.146349 -0.0238997 +-0.0311686 0.0820079 -0.0315681 +-0.058698 0.0349789 0.0448461 +0.0225489 0.0444802 -0.0157666 +0.00650352 0.0547197 0.0529464 +0.0375985 0.10834 0.0241868 +0.026474 0.110098 0.0367031 +0.0104332 0.0344417 -0.0125223 +-0.00834994 0.0943471 -0.0340215 +-0.0726673 0.155437 -0.0339106 +-0.0830075 0.0762889 0.0105229 +-0.0846192 0.0805533 0.0214764 +-0.0805239 0.148418 0.0381727 +-0.087237 0.106355 0.0143591 +-0.0447805 0.0423866 -0.0153071 +-0.0837301 0.147364 0.00414541 +-0.0832136 0.0770175 0.0194025 +-0.0259181 0.0649186 0.0404266 +0.0449079 0.0931824 0.0151569 +0.0348585 0.0808647 0.0399076 +-0.000497657 0.066177 0.0565989 +-0.081976 0.138997 -0.000769762 +-0.0164973 0.088378 0.056467 +-0.0655061 0.041163 -0.00538315 +0.0250139 0.0449606 -0.012685 +-0.0684343 0.0667749 -0.00454154 +0.0313723 0.0597573 -0.0175925 +-0.073748 0.0805288 0.0380979 +-0.0431166 0.0378307 0.0441123 +-0.0704863 0.169511 -0.0510127 +-0.0418064 0.0884466 -0.0220226 +-0.0725566 0.0737794 0.034925 +-0.0432285 0.12305 0.0247373 +0.0537086 0.0670896 0.000808459 +-0.0318715 0.0510682 0.0382665 +0.00533718 0.124533 0.0332195 +-0.0234982 0.0988724 0.0447778 +-0.0873895 0.143261 0.0370491 +0.0450408 0.0625178 -0.00265494 +-0.0618764 0.138649 -0.0067701 +-0.0637266 0.174609 -0.0527846 +-0.0739864 0.158247 -0.0289285 +-0.0616651 0.174109 -0.0575903 +-0.0346424 0.0780819 -0.0225024 +-0.0310543 0.0337173 -0.0219116 +-0.0769455 0.154831 -0.00883158 +-0.0339952 0.0752026 -0.0244888 +0.0354333 0.111001 -0.000827134 +-0.0790203 0.0935614 -0.0105962 +-0.0879913 0.136375 0.00520661 +-0.0582272 0.048399 0.00675942 +-0.00714757 0.130278 0.00704353 +0.0114556 0.0340617 0.001148 +0.0458421 0.0876102 0.0101629 +0.00312017 0.129984 5.00643e-07 +-0.0376568 0.0591992 -0.0116433 +0.00923557 0.129984 0.00166977 +-0.0579608 0.139021 -0.00516612 +-0.0909934 0.148856 0.0221303 +-0.0611919 0.0341824 0.0259657 +-0.0917869 0.115969 0.00931507 +0.00445187 0.116712 -0.0177471 +0.00711096 0.111601 -0.019782 +-0.00341693 0.115827 -0.0167447 +0.0411288 0.0792971 0.0313687 +-0.0358185 0.0337288 -0.0209957 +-0.0304972 0.0703216 0.0396594 +-0.076218 0.0887607 0.0388797 +-0.0701244 0.0632147 0.00385793 +0.0432229 0.0888059 -0.00480108 +-0.0321931 0.123411 -0.0044713 +0.0221624 0.0959197 -0.0219723 +0.0234605 0.0367801 -0.00165856 +-0.0234711 0.183379 -0.010712 +-0.0461137 0.0368295 -0.0192985 +0.023814 0.119372 0.031074 +-0.0617151 0.0722545 -0.0157777 +-0.0697425 0.164473 -0.0161193 +-0.0700395 0.077854 0.0390736 +-0.0793237 0.108591 -0.00458021 +-0.0622625 0.155951 0.0127725 +-0.0579896 0.126711 -0.00710506 +-0.0819874 0.0788394 -0.00151395 +-0.051802 0.111349 -0.0178923 +-0.0548009 0.0547174 0.00969263 +0.0456361 0.0819814 0.00319705 +-0.0362696 0.0447516 0.0428152 +-0.0678285 0.156225 0.0151421 +-0.0441012 0.15765 -0.00916962 +-0.0698712 0.102299 -0.0142744 +-0.0434973 0.0719505 0.0423325 +-0.0385101 0.124563 -0.00772445 +-0.0720478 0.154003 -0.0409023 +-0.0415192 0.155101 0.00654483 +0.030443 0.0496674 -0.00974777 +0.0100263 0.0352289 0.0272451 +-0.0657931 0.0349145 0.0296068 +-0.00453349 0.0975685 -0.029357 +-0.0575464 0.0576229 0.00774375 +-0.0675655 0.156308 0.0210392 +-0.0625478 0.177823 -0.0603383 +-0.0164994 0.107189 0.0421238 +-0.0628199 0.164682 -0.0345962 +-0.0725695 0.162422 -0.0399552 +-0.0295698 0.0377598 0.0258888 +-0.0285577 0.048864 -0.0238529 +-0.051128 0.0487627 0.0151791 +0.0297172 0.11319 -0.0079908 +-0.0129858 0.0389757 -0.0119758 +-0.0519687 0.0514416 0.0131188 +0.00659366 0.0345497 0.005308 +0.0431201 0.0959054 0.0231686 +0.0426395 0.101487 0.00716583 +-0.0326038 0.039499 -0.0302708 +-0.022273 0.0879769 0.0544159 +-0.0501719 0.132485 0.029178 +-0.0104724 0.123683 0.0330383 +0.0158783 0.103153 -0.0212298 +-0.0380583 0.0406922 0.0433465 +-0.05672 0.0341106 -0.0113244 +0.00284082 0.0994342 -0.0233056 +-0.00189869 0.037664 0.017192 +0.00849573 0.122392 0.0350922 +-0.0911887 0.13375 0.0222165 +0.0145889 0.124413 0.0307966 +0.0365837 0.0686678 0.0370221 +0.00534141 0.0341316 0.016402 +-0.0652159 0.16242 -0.0585196 +-0.0708983 0.120893 -0.00865195 +-0.0790974 0.103427 0.0328545 +-0.0233223 0.0386973 -0.0137829 +-0.0870669 0.0909973 0.0256595 +-0.0237781 0.0389651 0.0367703 +-0.0314981 0.107032 0.0395669 +-0.0488684 0.125064 -0.00815774 +0.0188255 0.104686 -0.0188612 +-0.0214383 0.162534 -0.00657802 +-0.0923673 0.124202 0.041188 +-0.0116952 0.0383509 0.0145738 +-0.0933085 0.117399 0.0213072 +0.00147085 0.0388322 0.0258794 +0.041327 0.0986069 0.0251647 +-0.063339 0.160302 -0.0538579 +0.0235731 0.114695 -0.0116124 +-0.0828981 0.101969 0.02963 +-0.0616452 0.139553 0.0354433 +-0.0343725 0.0357923 0.047703 +-0.0451209 0.0377458 0.0446873 +-0.0920088 0.118668 0.00830639 +-0.0495672 0.135498 0.00241956 +-0.0603606 0.0633645 0.0289482 +-0.067238 0.175347 -0.0588701 +0.053058 0.0705565 0.0234346 +0.0380671 0.0821074 0.0357563 +-0.0797544 0.0720045 0.0191472 +-0.0844521 0.153452 0.0225801 +-0.0749035 0.113464 -0.00617122 +-0.0384926 0.0605846 0.0409778 +-0.075255 0.0832856 0.0380964 +-0.0198342 0.0855003 -0.0383524 +-0.0649244 0.113824 -0.0119395 +0.0421 0.0690665 -0.00478535 +-0.0615968 0.0595411 0.0052883 +0.0357976 0.0378059 0.0192762 +-0.0314223 0.0343059 -0.0206653 +-0.0805979 0.0786983 -0.00455339 +-0.0516467 0.0481272 0.0388737 +-0.0325014 0.0618008 0.0386259 +0.0188656 0.11384 -0.0146811 +0.0360105 0.106014 0.0293761 +-0.0489136 0.125469 0.0310273 +-0.0702125 0.173659 -0.0540385 +0.0100557 0.112263 -0.0189498 +-0.0643724 0.0341771 0.0147182 +-0.023212 0.165344 -0.00918469 +0.059734 0.0692161 0.0111359 +0.0164747 0.104398 0.044527 +-0.0870127 0.10633 0.011369 +0.030786 0.0765476 -0.0208061 +-0.0657333 0.121445 0.0506733 +-0.00450341 0.0703715 0.0573471 +-0.0525943 0.0544911 -0.00726112 +-0.0226202 0.181624 -0.0117104 +0.00179227 0.0340095 -0.0213712 +-0.0768516 0.103431 -0.00952853 +-0.0773369 0.105608 0.0341784 +-0.0364954 0.0987325 0.0427313 +-0.0532526 0.161216 -0.00188451 +-0.0658747 0.0981197 -0.0167177 +-0.00202406 0.126832 0.0305449 +0.0396296 0.0392572 0.0187428 +0.0114981 0.0658063 0.0534716 +-0.0660116 0.154522 0.0303582 +0.0322049 0.0871235 -0.0192744 +-0.0161934 0.116736 -0.0156361 +-0.00805531 0.101876 -0.0238922 +-0.0425065 0.0548487 0.0395533 +-0.0623557 0.152158 -0.0235797 +-0.0550956 0.0333795 -0.00606735 +0.0194036 0.123725 -0.00335403 +0.0149002 0.0348014 0.0340409 +-0.0174953 0.112701 0.0395679 +-0.0824727 0.0992304 -0.00559052 +-0.0428553 0.101381 -0.0214106 +-0.0291214 0.0621103 -0.0254198 +-0.0530392 0.146248 0.021397 +-0.0658806 0.040185 0.0344505 +0.0298766 0.0889056 0.0433386 +0.0206783 0.0361727 0.0176735 +-0.029331 0.0791866 0.0433726 +-0.0474654 0.135069 0.0155888 +-0.0798447 0.116298 -0.00419638 +0.0278259 0.115624 -0.00659973 +-0.0400692 0.157713 -0.010751 +-0.087695 0.0860952 0.016472 +0.0119148 0.0630446 0.0522963 +-0.0586388 0.0367329 -0.00984378 +-0.0545581 0.0628278 0.0306388 +-0.0904983 0.133768 0.0272133 +0.0424823 0.0958192 -0.00180898 +-0.085893 0.115781 0.0473131 +-0.0827739 0.0762807 0.0135216 +-0.0783317 0.109572 0.0415234 +-0.0535658 0.132546 0.0330634 +-0.0901834 0.114057 0.0406088 +0.0134074 0.0463149 -0.0249889 +0.0112253 0.0952809 -0.0268838 +0.0150227 0.080777 0.0534508 +-0.0278391 0.168266 -0.00883037 +-0.0698489 0.175309 -0.0448893 +-0.0895811 0.137877 0.0241855 +-0.0790004 0.100402 -0.00859092 +-0.062851 0.116991 0.0425454 +0.0239206 0.0352552 0.0228022 +-0.000501715 0.0634055 0.0567322 +0.046037 0.0806318 0.0171753 +-0.0766672 0.154399 0.00327135 +-0.0117177 0.129576 0.0183624 +-0.0885031 0.148521 0.0281728 +-0.0728479 0.14776 0.0416103 +-0.015205 0.175685 -0.0260892 +-0.082938 0.100617 -0.00458659 +0.0398543 0.102779 0.025179 +-0.0336965 0.120802 0.028215 +-0.0625742 0.17727 -0.0581696 +-0.00806953 0.0988363 -0.0267114 +-0.0560752 0.0602595 -0.0044615 +0.0597447 0.0594744 0.0191904 +-0.0106444 0.0481591 -0.0303544 +0.00351281 0.081445 0.056735 +-0.0672464 0.173921 -0.0582812 +0.00251634 0.0459065 0.0480561 +0.000471055 0.038278 0.000679374 +-0.0002129 0.122901 -0.0103152 +-0.0382613 0.0393263 0.043596 +0.00848754 0.0426921 0.0451471 +-0.0482154 0.137103 0.0123981 +-0.015727 0.0657542 -0.0377517 +-0.0282054 0.0676114 -0.0305119 +-0.0306807 0.0363386 -0.0186663 +-0.0476849 0.119711 0.0291692 +-0.0663764 0.12565 0.049733 +-0.0488788 0.134867 0.0224297 +-0.0877229 0.0888584 0.0234132 +-0.0756171 0.172473 -0.0369846 +-0.033348 0.0384446 -0.00813352 +-0.0442894 0.126542 0.0198398 +0.0235131 0.101506 -0.0194672 +0.0538716 0.0661448 0.0268494 +-0.073604 0.148628 -0.0255988 +-0.0671901 0.0335697 -0.00322908 +-0.0886344 0.0949473 0.0228281 +-0.0761608 0.175035 -0.0499961 +0.0306065 0.111866 -0.00856301 +-0.0317456 0.124703 -0.000629789 +-0.0904268 0.150188 0.0141369 +-0.0639022 0.10675 -0.0154602 +-0.0541798 0.157923 -0.00210942 +-0.00323215 0.0940338 -0.0336602 +-0.0164901 0.115444 0.0380258 +0.053298 0.0648217 0.0277585 +-0.0843615 0.0993477 -0.00259153 +-0.00674006 0.0712942 -0.0362643 +-0.0653258 0.140047 -0.00770568 +-0.00635478 0.123294 -0.010702 +-0.055158 0.0361639 -0.0112393 +0.00412979 0.113096 -0.0199676 +-0.064574 0.0418551 0.0316967 +0.0525746 0.0462075 0.0162071 +-0.0234833 0.0448815 0.0530288 +-0.071322 0.138326 0.0479203 +0.0425401 0.0986672 0.000167984 +0.0273648 0.102724 -0.0167839 +0.0332874 0.111381 0.0289227 +-0.0537039 0.0594504 0.0244709 +-0.0227345 0.0390118 0.0369431 +-0.00354236 0.0429091 0.0474905 +-0.0724136 0.156792 -0.00114359 +-0.00249623 0.0689511 0.056733 +-0.0482461 0.131793 0.0256765 +-0.0515081 0.0490357 0.0376444 +-0.0944953 0.125552 0.0212653 +0.00638447 0.0346255 0.0414585 +0.0141724 0.0940368 0.0505038 +-0.0688973 0.120914 -0.00896239 +-0.0520364 0.14934 0.0173988 +0.00422853 0.0810435 -0.0341743 +-0.0515685 0.0473635 -0.00788512 +-0.0237608 0.156715 -0.0053038 +-0.0356104 0.127425 0.0141251 +0.035299 0.113666 0.0170439 +0.0334236 0.0903004 0.0414245 +-0.0251823 0.172681 -0.0196186 +-0.08807 0.113074 0.0239452 +0.0189601 0.036126 0.0191857 +0.00788239 0.0363273 0.00580236 +-0.0173959 0.0348327 0.0487444 +-0.0878896 0.111968 0.039224 +-0.064655 0.115706 0.0452756 +0.0311169 0.0445787 0.030603 +0.0441778 0.076309 0.025099 +-0.0896358 0.0915718 0.0124456 +-0.065807 0.090969 -0.0181206 +-0.0709064 0.123821 -0.00862928 +0.00649864 0.0924086 0.053834 +-0.0704989 0.134077 0.0490714 +-0.0596081 0.0614162 -0.00289701 +0.0242732 0.0346695 0.0161217 +-0.0464984 0.101529 0.041912 +-0.0498635 0.101385 -0.021584 +0.00433106 0.0496013 -0.0292546 +0.0107427 0.041795 0.045086 +-0.0739382 0.132552 -0.00766265 +-0.0162071 0.174195 -0.0247085 +-0.0886736 0.132413 0.0428724 +0.0320792 0.05838 -0.0156698 +-0.0192343 0.038226 0.00590432 +-0.0445033 0.11527 0.0334071 +-0.0847891 0.15265 0.0254465 +-0.0933214 0.129622 0.0172404 +-0.0346417 0.056288 -0.0107606 +-0.072488 0.172225 -0.0500329 +0.0233375 0.0606402 -0.0253621 +0.0366723 0.106016 0.0285439 +-0.0276074 0.0356491 0.0527176 +-0.053407 0.152198 0.0189083 +-0.0742721 0.166608 -0.0409997 +-0.0457331 0.0753099 -0.0177194 +-0.00672552 0.0670096 -0.035497 +-0.00219357 0.131295 0.0117423 +-0.0261647 0.0620468 0.0393395 +-0.0553241 0.0335005 0.00825618 +-0.0228582 0.119091 -0.0120569 +0.0213076 0.110412 -0.0149847 +-0.0314817 0.0889488 0.0439042 +0.0313336 0.0477022 -0.006755 +-0.0386183 0.174771 -0.00621679 +0.040988 0.0392554 0.0153655 +0.0608733 0.0623548 0.014161 +-0.00841473 0.0366574 -0.0164161 +-0.0191613 0.038383 0.000326194 +-0.00880856 0.0882704 -0.0368626 +-0.0596465 0.149865 -0.00094307 +0.00994371 0.0978413 -0.0235989 +0.0455086 0.055594 0.0323303 +-0.0860233 0.102167 0.0034068 +-0.0281256 0.165243 -0.0164075 +0.00425042 0.072607 -0.0344972 +0.0235113 0.118015 0.0324132 +-0.000261091 0.0350803 0.00896105 +-0.0532978 0.147774 0.0234078 +-0.0554295 0.0433 -0.00807812 +-0.0771312 0.155572 -0.0108986 +-0.0841536 0.0790628 0.0035277 +-0.0900384 0.135039 0.0102136 +-0.0727986 0.0849862 -0.0158247 +0.0336101 0.0962478 -0.0138935 +-0.0284441 0.0732827 -0.0345293 +0.00969167 0.0357093 0.0447693 +-0.0267255 0.0380235 0.0244373 +-0.0572883 0.132547 0.0364836 +-0.0528311 0.0941603 -0.0218064 +0.0400501 0.0644468 0.0314841 +-0.036531 0.116238 -0.0149852 +-0.00649604 0.0912014 0.0567618 +0.0144842 0.101799 0.0469727 +0.00323629 0.131729 0.0108817 +-0.0308992 0.0734931 -0.0305082 +0.0172066 0.068625 0.0512164 +-0.0657497 0.0765846 -0.017077 +-0.0737602 0.111876 0.0478461 +-0.0694356 0.066827 -0.00357005 +-0.0585001 0.119809 0.0399342 +0.0441644 0.0931187 0.000177172 +-0.0843417 0.0952366 0.029868 +-0.054753 0.0782755 -0.0197234 +-0.00738705 0.0379427 -0.0155249 +-0.0910658 0.143334 0.0151805 +-0.00249685 0.08015 0.0577289 +0.0340507 0.0835544 0.0405264 +-0.0523382 0.161184 -0.00281855 +-0.0812419 0.109765 0.0353982 +-0.0582589 0.129739 0.0385905 +0.0543559 0.049285 0.0042337 +0.015086 0.0406501 0.0443863 +-0.0280294 0.0835807 0.0475884 +-0.0393811 0.128131 0.00244283 +0.0208178 0.0415166 -0.0167046 +-0.0881465 0.111869 0.0203319 +0.0179003 0.0347727 0.0238228 +-0.0656433 0.0657616 -0.0058195 +-0.0840769 0.0911454 0.0297191 +0.00624923 0.0796338 -0.0339546 +0.0328487 0.0876389 0.0423414 +0.0276661 0.034679 0.0131567 +-0.00286572 0.104506 -0.0226523 +-0.0862889 0.10771 0.0183439 +0.0408829 0.0937805 -0.00720194 +0.000164408 0.0895345 -0.0346177 +-0.0843436 0.144613 0.00514953 +-0.0675701 0.180805 -0.0555973 +0.0220024 0.0727679 0.0493999 +-0.0156461 0.186781 -0.0233704 +-0.0187078 0.0364661 -0.0182818 +-0.0254003 0.0649585 0.0413183 +0.0122459 0.0780339 -0.0313519 +-0.0555013 0.0547806 0.00866941 +-0.0521449 0.157571 -0.00396744 +-0.073564 0.156227 0.0174776 +-0.00865052 0.104822 -0.0230347 +-0.0529425 0.0516633 -0.00638853 +-0.0652396 0.0384193 0.0154218 +0.0233172 0.0809188 0.0496338 +-0.0494012 0.054529 0.0344155 +0.0222475 0.0847573 -0.0259093 +0.0413844 0.0438265 0.0277643 +-0.0818597 0.146076 0.0399402 +0.0111047 0.0345035 -0.00868495 +-0.006336 0.10011 -0.0240468 +0.0245413 0.0819542 -0.0249712 +-0.00496439 0.130958 0.0121612 +-0.00978935 0.0841125 -0.0382567 +0.00551162 0.104351 0.0429177 +-0.0384918 0.0874952 0.0437107 +0.00946556 0.123094 -0.0106511 +-0.0897739 0.137922 0.033196 +-0.0653284 0.0349129 0.0366619 +0.00350126 0.104382 0.0428343 +-0.0368171 0.04253 -0.0279956 +-0.0634962 0.0775171 0.0416907 +-0.0558399 0.0666 0.0358943 +-0.033501 0.113967 -0.0166209 +-0.0105678 0.0384807 0.0255376 +-0.0875349 0.110472 0.0163392 +-0.0221423 0.0430524 0.0536615 +-0.0485662 0.0337988 0.0271958 +-0.0681764 0.0335792 0.00196619 +-0.00165753 0.05399 -0.0314052 +0.0457818 0.0746903 0.0202853 +-0.0845781 0.148672 0.0341151 +0.0452897 0.0861791 0.0201631 +0.00831626 0.0356874 -0.00657792 +-0.0196215 0.042233 -0.0284571 +-0.0649431 0.145366 0.0395451 +-0.0704953 0.104114 0.0382884 +-0.0414996 0.117985 0.0314618 +-0.0712521 0.17555 -0.0439596 +0.0452514 0.0931962 0.00916141 +0.00133085 0.058325 -0.0325937 +-0.0620033 0.158406 -0.0355965 +0.030344 0.1101 0.0335023 +0.0463602 0.0692197 0.00260588 +0.0444762 0.0945372 0.00319063 +-0.0491293 0.0430398 0.0442413 +-0.0789669 0.172206 -0.0419919 +0.0106503 0.130383 0.00504386 +-0.0484141 0.113756 -0.016334 +0.00450584 0.0547654 0.053433 +0.0441531 0.0720542 0.000197496 +-0.0134923 0.120989 0.0351213 +-0.0907438 0.135107 0.0202099 +-0.0590287 0.0481317 0.00366474 +0.0364319 0.108205 -0.00282023 +0.0178615 0.122874 -0.00643626 +-0.0356427 0.112876 -0.017464 +-0.0668607 0.154942 0.00387089 +-0.0486527 0.162759 0.00599863 +-0.00949915 0.105857 0.0435217 +-0.0615042 0.121243 0.0426924 +-0.0784762 0.0731416 -0.000473316 +-0.0740322 0.156054 0.0216877 +-0.0847959 0.101901 0.0272869 +-0.0596957 0.14074 -0.00502874 +-0.050497 0.0987878 0.0435099 +-0.071801 0.0745407 0.0361884 +-0.0549619 0.14242 0.0292765 +-0.0427321 0.0739589 -0.0183224 +-0.0508117 0.0354248 -0.0125858 +-0.0642011 0.0410429 0.0143098 +-0.0132685 0.101107 0.0437078 +-0.0475187 0.0790945 0.0436556 +0.0209941 0.0373175 -0.00464913 +-0.0204991 0.100239 0.044421 +-0.0684679 0.110537 0.0393979 +0.0243777 0.124503 0.0143821 +-0.0830368 0.0762381 0.00350806 +-0.073622 0.0747015 -0.00970199 +-0.0461368 0.13275 0.0116924 +0.0104091 0.0389479 -0.0231008 +0.0155004 0.116786 0.0363781 +0.0387891 0.096727 0.0316453 +0.0196906 0.074125 0.0513576 +-0.0225582 0.0383546 -0.00218286 +0.0487458 0.0724992 0.00846572 +-0.0668418 0.138273 0.0438208 +-0.0309771 0.0339917 0.0163773 +0.0411176 0.0661976 -0.00575682 +-0.0229076 0.0852723 0.0551257 +0.000828067 0.123861 -0.00936286 +-0.0250326 0.0621165 0.0410328 +-0.0651714 0.128382 0.0462127 +-0.0434333 0.15941 0.00551467 +-0.0264854 0.0348879 0.0467436 +-0.0628107 0.150584 -0.0245802 +-0.0123081 0.181626 -0.0249909 +-0.00919366 0.172678 -0.0237455 +0.0126063 0.0576596 0.0514859 +-0.0332159 0.0709306 -0.0214641 +0.0240158 0.0658883 0.0452055 +-0.0660765 0.124251 0.0501642 +-0.0588552 0.0351368 -0.0102919 +0.0124134 0.0346609 0.020994 +0.0122384 0.0644368 0.0527864 +0.0452304 0.0763569 0.00121116 +0.0242611 0.0448626 -0.0136813 +-0.0304238 0.12007 0.0279522 +0.0145126 0.0347575 0.026768 +-0.0217663 0.065545 -0.0358558 +0.00816067 0.125635 -0.0073679 +0.0183075 0.0679765 -0.028974 +-0.0180555 0.0909221 -0.0366017 +0.00824317 0.0602927 0.0539848 +-0.0687967 0.0894213 -0.0168337 +-0.0450098 0.146255 0.00342574 +-0.0335022 0.0661629 0.0402747 +-0.0781465 0.155117 0.0246877 +0.00450914 0.0758818 0.0564153 +-0.0135396 0.0366033 -0.0173816 +0.045728 0.077798 0.00320493 +-0.0913745 0.142001 0.0211607 +-0.0284862 0.102933 0.0423265 +-0.0302445 0.16108 -0.00171322 +0.0327554 0.116907 0.00609585 +0.0201031 0.0379621 0.0410367 +-0.090178 0.113449 0.0375353 +0.0422255 0.0887323 -0.00780894 +-0.0632995 0.045657 0.000708444 +-0.0344955 0.0889014 0.0434521 +-0.0735138 0.0874308 0.0404487 +-0.081144 0.11 0.0405445 +-0.046701 0.144949 0.00345496 +0.0239825 0.114006 0.0348506 +0.00951792 0.0799496 0.0550675 +-0.0589753 0.0343808 0.0315144 +-0.0715764 0.0724969 0.0344898 +-0.0763465 0.151411 -0.00788806 +0.0476241 0.0444058 0.00228058 +-0.0865319 0.0910336 0.0265354 +-0.0761893 0.0686573 0.0192806 +-0.0738377 0.169377 -0.0450494 +-0.013497 0.089796 0.0568243 +-0.003677 0.129286 0.0256231 +0.00334505 0.0372684 -0.00154693 +0.0285394 0.0735396 -0.0227021 +-0.067513 0.132633 0.0463034 +0.0459145 0.0862168 0.00717824 +-0.0631406 0.152896 -0.00931447 +-0.0777879 0.113218 0.0476364 +-0.023707 0.0340979 -0.0208155 +-0.0144671 0.110884 -0.0194361 +0.0102739 0.0667155 -0.0310192 +-0.00350236 0.0842813 0.0574606 +-0.0664798 0.0832826 0.043443 +-0.0635622 0.0403137 0.0257086 +-0.0426942 0.0666296 -0.0154091 +-0.017221 0.187225 -0.0211553 +-0.0336762 0.062222 -0.0135529 +-0.0673972 0.0641749 0.025006 +-0.0740248 0.149858 -0.0328754 +-0.0467235 0.128128 0.0253508 +-0.0262045 0.163884 -0.00647025 +-0.0271883 0.118982 0.0306038 +0.033772 0.0543003 -0.00971113 +-0.0758953 0.12228 -0.00740649 +0.00448236 0.11415 0.0407558 +-0.0698932 0.103728 -0.0136756 +-0.0567617 0.0782351 -0.019665 +0.0543638 0.0534389 0.000229046 +-0.081811 0.11456 0.047449 +-0.0565132 0.053486 0.0056729 +-0.057003 0.128342 0.0386502 +-0.0664962 0.0370022 0.0293944 +-0.0624918 0.101519 0.0421076 +-0.0687869 0.155336 0.00316719 +-0.0685122 0.141137 0.0449382 +-0.0527211 0.0709092 -0.0154358 +-0.00549985 0.0703921 0.057296 +-0.0709113 0.107952 -0.0112859 +0.00912605 0.108716 -0.0196568 +0.0361188 0.0794771 0.0382118 +-0.0588731 0.101172 -0.0189069 +-0.068257 0.129831 0.0487832 +0.0374605 0.0754022 0.0365814 +-0.032324 0.161031 -0.00122654 +0.0285746 0.0351013 0.0166057 +0.0394117 0.0870933 -0.0127933 +0.0113423 0.0644371 0.0532354 +-0.0583019 0.0447396 0.0435847 +-0.00749863 0.0773617 0.0576592 +-0.050194 0.116459 -0.0151638 +-0.0481437 0.0545922 0.0360102 +-0.0104704 0.100279 -0.0242341 +-0.0347529 0.111555 -0.0180951 +-0.0155011 0.120965 0.0341268 +-0.0784442 0.154274 0.027518 +0.0120599 0.0739551 0.0543847 +-0.0633352 0.0436031 0.0119653 +0.0217763 0.115313 0.0351727 +-0.0415089 0.165252 0.00421093 +0.0335736 0.0700381 0.039723 +0.00251112 0.0647983 0.0566425 +-0.0654261 0.0391693 0.0381077 +-0.0695564 0.114278 0.0502908 +-0.00162211 0.0369274 0.0160989 +-0.058966 0.123797 -0.00809452 +-0.0942641 0.126921 0.0212556 +-0.0335104 0.175675 -0.00315318 +-0.0368415 0.0943464 -0.0233446 +0.0133357 0.128238 -0.000223601 +0.00322397 0.0768846 -0.0351052 +0.00583724 0.038604 -0.0097514 +0.0244991 0.0390622 0.0333159 +0.039204 0.0699354 0.0337973 +-0.00749309 0.122405 0.0352331 +-0.0204932 0.0624346 0.0477982 +-0.0366651 0.0353042 0.023032 +0.0167127 0.0887461 0.050636 +-0.0697357 0.167099 -0.0218834 +0.0364696 0.0632797 0.0368445 +-0.0745038 0.141441 0.0470955 +-0.0621205 0.0458041 0.0366793 +-0.0544906 0.0820201 0.0451936 +-0.0645123 0.172574 -0.0485643 +-0.0421309 0.128083 -3.62159e-05 +0.0281636 0.121218 0.0186511 +-0.0121987 0.171236 -0.0257581 +-0.0281113 0.0605968 -0.0274147 +-0.0631879 0.0449558 -0.00115255 +-0.056884 0.0955743 -0.0213395 +-0.0516987 0.131736 -0.00321408 +0.00826283 0.110977 0.0402103 +-0.0738401 0.154086 -0.0269016 +0.00525204 0.071179 -0.0340737 +-0.0710521 0.173649 -0.0530415 +-0.0508226 0.162642 -0.00385759 +-0.0802179 0.141741 -0.00280512 +-0.0104908 0.12238 0.0346088 +-0.082839 0.145958 0.00218243 +-0.0764995 0.134472 0.0515165 +0.0572674 0.0552579 0.0228777 +-0.0459192 0.038241 -0.0182827 +0.0212995 0.0664627 -0.0275106 +-0.00266999 0.131274 0.0130017 +-0.0615996 0.159996 -0.0335919 +-0.0172476 0.12413 0.0281151 +0.0257469 0.104744 0.0391433 +0.033213 0.112692 0.0276861 +0.0156033 0.0352036 -0.0174539 +-0.030256 0.0608147 -0.0214135 +-0.0554996 0.0746996 0.0418498 +0.0250243 0.0618819 0.0448807 +0.0333333 0.0528011 -0.00875184 +0.0462789 0.0820452 0.011174 +0.0413782 0.0519867 -0.00685663 +-0.0228771 0.11806 -0.0129657 +-0.0608849 0.0381036 0.0449409 +-0.0255027 0.103002 0.0430099 +-0.0102615 0.128766 0.00159795 +-0.0140304 0.0389318 -0.0121434 +0.0242826 0.0691154 -0.0252241 +-0.0262141 0.0383199 -0.0177378 +0.000134491 0.116503 -0.0174981 +-0.0556551 0.0575 -0.00342108 +-0.0641179 0.115013 -0.0114251 +-0.0523454 0.059725 0.0287459 +-0.039493 0.0888698 0.0432118 +-0.0635876 0.0600882 0.0187607 +-0.0527647 0.138519 0.0263974 +-0.0421778 0.150669 0.00550662 +-0.0898169 0.147438 0.0111767 +-0.0440117 0.149183 0.00634807 +-0.0124981 0.0842783 0.057419 +-0.041501 0.0888244 0.0425932 +0.0390954 0.0814754 -0.0127535 +-0.00978632 0.0812687 -0.0379822 +-0.0143122 0.127128 -0.000614565 +0.043146 0.0650339 -0.00117659 +0.0508787 0.0465582 0.0223162 +-0.0187679 0.0341854 -0.027695 +0.0104088 0.0403968 -0.0232872 +-0.0615714 0.111062 0.0370307 +-0.0574772 0.0344195 0.038759 +-0.029988 0.0381577 0.0326274 +-0.0293835 0.0775974 -0.0345936 +-0.0174998 0.115454 0.0379182 +-0.0492034 0.0336154 -0.00143623 +-0.0160718 0.124871 -0.00420428 +0.0153397 0.120197 -0.0115352 +-0.0588103 0.157344 0.00530008 +-0.0448304 0.0956436 -0.0219722 +0.0199962 0.120682 0.0326204 +0.050389 0.0482108 0.0251806 +0.0208954 0.116644 -0.0117151 +-0.079388 0.147286 -0.00182539 +-0.0747645 0.0849032 -0.0147477 +-0.0505016 0.107064 0.0390734 +-0.0174992 0.03427 -0.0197565 +-0.01005 0.166619 -0.017705 +-0.0581312 0.0342101 0.0265873 +-0.0613803 0.17096 -0.0575947 +-0.0304965 0.0917653 0.0441169 +-0.0458806 0.10564 -0.0201801 +0.0202101 0.0833915 -0.0271395 +0.0323169 0.0376319 0.0223694 +-0.0223063 0.0380908 0.0216787 +0.035616 0.10962 -0.00284805 +0.0484836 0.0582148 0.031165 +-0.0809138 0.125107 -0.00520991 +-0.00566591 0.0540919 -0.0326394 +-0.00149662 0.114206 0.0415504 +-0.0263202 0.0930635 -0.029586 +-0.0680426 0.110046 0.0381289 +0.0249883 0.12025 -0.003603 +-0.0736149 0.155479 0.0262237 +-0.0299566 0.122268 0.0236125 +0.0238471 0.107154 -0.0155051 +-0.0566015 0.0451895 0.0246815 +-0.028491 0.0987621 0.0434122 +-0.0338535 0.0870951 -0.024854 +-0.0478322 0.0956344 -0.0220665 +-0.0226614 0.177177 -0.0135831 +-0.0810787 0.154935 0.0192662 +0.0439336 0.0428821 0.0236685 +-0.0114115 0.128814 0.0228458 +-0.0417827 0.0840916 -0.0212196 +0.0249862 0.118037 0.0310154 +-0.0641215 0.0336259 -0.00810847 +-0.0795112 0.081834 0.0339273 +-0.041505 0.119362 0.0299569 +-0.0033398 0.119986 -0.0131833 +0.0411805 0.0745986 -0.0077775 +-0.0446675 0.0636475 -0.0137193 +0.00937092 0.0937948 -0.0292997 +0.0415042 0.104246 0.00816492 +-0.0792333 0.169423 -0.0379787 +-0.0414888 0.0437926 0.0421195 +-0.00148881 0.0760516 0.0586512 +-0.0126769 0.0541386 -0.0335166 +-0.00577674 0.0385885 0.0246132 +-0.0394947 0.0676998 0.0417669 +0.0147262 0.129115 0.00511474 +-0.0045144 0.0774415 0.0584948 +0.0334512 0.0365216 0.00521608 +-0.0662857 0.0625946 -0.00141881 +-0.0659868 0.0418098 -0.00430732 +-0.0485691 0.0460686 -0.00963735 +0.0269239 0.0493817 -0.018692 +-0.0652895 0.175332 -0.0607504 +0.0558431 0.0722822 0.0186151 +0.0389971 0.039341 0.0203664 +-0.0252734 0.05785 0.0399799 +-0.0537245 0.0723552 -0.016258 +-0.0214963 0.104399 0.0429755 +-0.0649507 0.13395 0.041174 +-0.0641915 0.179229 -0.0572988 +-0.00649249 0.110023 0.0430195 +-0.0925801 0.120153 0.0312943 +0.0364682 0.111067 0.00216795 +-0.0487462 0.118344 0.031163 +0.0272987 0.047751 0.0374572 +-0.0235246 0.079724 0.0545007 +0.044563 0.0819287 0.0241608 +0.018083 0.0887399 0.0491141 +0.0180337 0.115273 -0.0142355 +-0.0838753 0.135332 0.0479212 +-0.0707318 0.154624 0.0301689 +-0.0897339 0.0916034 0.0174376 +-0.0487526 0.0782553 -0.019094 +-0.021696 0.0567795 -0.0319795 +-0.0524624 0.139899 0.000243693 +-0.016317 0.0384896 0.0261516 +-0.0172081 0.172701 -0.0233314 +-0.0664965 0.109745 0.0377695 +-0.0117557 0.0345134 -0.025836 +-0.000654571 0.0391799 -0.00969942 +0.00820345 0.083757 -0.0326005 +-0.0458982 0.107069 -0.0194756 +-0.0567459 0.15948 0.00480369 +0.00650779 0.0575337 0.0533257 +0.037787 0.0377202 0.0142753 +0.00846774 0.13132 0.015646 +-0.0475009 0.0425468 0.0439593 +-0.0766415 0.100814 0.0361238 +-0.028614 0.0408765 -0.0296027 +0.00929873 0.115842 -0.01682 +-0.0828745 0.119161 -0.00328383 +-0.0769895 0.0790529 0.034321 +-0.0878006 0.151251 0.0245374 +0.0208653 0.122279 0.030221 +-0.00768551 0.130297 0.0183702 +-0.0545511 0.0430136 -0.00860983 +0.030217 0.0843227 -0.0201565 +-0.0467665 0.152145 0.00944802 +-0.0631219 0.156103 0.0153645 +-0.0681832 0.155264 -0.0517309 +0.0142805 0.0345676 -0.0138073 +-0.0664934 0.0624679 -0.000297249 +-0.0641994 0.16384 -0.059407 +0.0464327 0.0769932 0.014129 +-0.041507 0.0591281 0.0403212 +0.0223695 0.0993436 -0.0211483 +-0.088603 0.087513 0.0164636 +0.00038562 0.0392239 -0.00953586 +0.0270604 0.0795391 0.0462139 +-0.0684865 0.0611195 0.0150424 +0.0105195 0.053345 0.0519069 +-0.0620106 0.15528 -0.0315878 +-0.00991465 0.0385501 0.00204441 +-0.0151984 0.171233 -0.0237028 +-0.026193 0.171192 -0.0190186 +0.0404914 0.0541681 0.032094 +-0.0115119 0.181449 -0.0261319 +-0.027122 0.166756 -0.0173778 +0.0338583 0.105892 -0.0101458 +-0.0671444 0.0628365 -0.000338348 +-0.0788571 0.120751 -0.0060883 +-0.0525645 0.0417313 -0.0101531 +0.0278652 0.0996344 -0.0174729 +-0.0681363 0.122845 0.0524474 +-0.0228108 0.0770465 -0.0385748 +-0.0135961 0.12464 -0.00600832 +-0.00365126 0.0525899 -0.0316543 +-0.068996 0.139931 -0.00789046 +-0.0310262 0.153728 -0.00354608 +-0.0497211 0.131062 0.0298847 +-0.00109314 0.103948 0.0441727 +-0.0204702 0.16083 -0.0136222 +-0.0865394 0.109089 0.0183378 +0.0400949 0.095337 0.0300286 +-0.0693797 0.128452 0.0506772 +-0.0438868 0.107083 -0.0199439 +-0.0470477 0.150201 -0.00445632 +-0.0370064 0.121579 0.0285082 +0.0198288 0.120602 -0.00797301 +-0.0549804 0.0334872 0.0101333 +0.00782186 0.127915 -0.00384433 +-0.0495314 0.12548 0.031876 +-0.0926082 0.117405 0.0243082 +-0.0215209 0.0382567 0.0252967 +0.00181128 0.125691 -0.00735123 +-0.0771897 0.117737 0.0516815 +-0.0554751 0.0519418 -0.00338574 +-0.0771699 0.154422 0.00455736 +-0.00649896 0.092559 0.0563419 +-0.0704303 0.164039 -0.0149268 +-0.036643 0.118048 -0.0128637 +-0.0535056 0.136701 0.0296589 +-0.0594928 0.0761776 0.0424443 +-0.00649656 0.0856337 0.0569558 +-0.0586618 0.0637687 0.0307411 +-0.0650964 0.155112 0.00596226 +-0.0626129 0.0371673 0.0184653 +0.0330114 0.107386 0.0320976 +0.0333812 0.0490928 -0.00645546 +-0.069711 0.1744 -0.043385 +-0.00744712 0.0961017 -0.0318028 +0.0413373 0.0392631 0.0117259 +-0.0487556 0.137056 0.00741027 +-0.0845701 0.112449 0.0449336 +0.0531449 0.0608429 -0.00288049 +-0.0358592 0.10284 -0.0213952 +-0.0778493 0.11932 -0.00645768 +0.0172333 0.0750251 -0.0287502 +-0.0195083 0.11546 0.0373373 +-0.0542618 0.0348321 -0.0120282 +-0.0344386 0.125663 -0.00162003 +-0.0690003 0.160066 -0.00858817 +0.0285895 0.0979793 -0.017709 +0.015268 0.0341755 -6.02454e-05 +-0.012432 0.12921 0.00653602 +-0.0222335 0.171216 -0.0204735 +-0.0656059 0.0615317 0.0026003 +-0.0324965 0.174231 -0.00238999 +-0.0398336 0.0384391 -0.0280596 +-0.0513902 0.122634 0.0344378 +-0.0735123 0.142806 0.0460464 +-0.0703661 0.16678 -0.0206717 +0.0128439 0.0343776 -0.0158182 +-0.074941 0.152735 -0.0189 +-0.0785348 0.0771858 -0.00655705 +0.0347176 0.114447 0.00679736 +-0.0192836 0.0385916 0.0308544 +-0.00226925 0.130756 0.00454173 +-0.0622845 0.161545 -0.0405978 +-0.0687671 0.0900946 0.0427048 +-0.028252 0.050761 -0.0234049 +-0.0818245 0.107456 0.0283887 +0.0216927 0.103078 -0.0191449 +-0.0539655 0.0364915 -0.0115887 +-0.0577688 0.142406 -0.00278963 +0.0347443 0.08354 0.0397721 +0.041088 0.0912985 0.0296287 +0.0209984 0.0578395 0.0478214 +-0.0607897 0.155834 0.0118473 +-0.0427999 0.167662 -0.00952768 +-0.0135045 0.0870342 0.0571061 +0.0551275 0.0637038 0.000299703 +-0.0500088 0.124901 -0.00796654 +0.040891 0.0917758 -0.00909975 +-0.057302 0.152908 0.030569 +-0.0490908 0.140152 0.0103957 +-0.062514 0.0399436 -0.00751704 +-0.0901142 0.14065 0.0241685 +-0.0614977 0.0847334 0.0442553 +0.00401707 0.125848 -0.00755459 +-0.0295217 0.0402041 -0.0298306 +-0.0770884 0.0866038 -0.0125752 +0.00250242 0.0441898 0.0459568 +-0.0884166 0.13498 0.0042424 +-0.0144984 0.11138 0.0412273 +-0.0543527 0.155034 0.0127444 +-0.0485461 0.135607 0.0194861 +-0.0763654 0.155962 0.0179624 +0.0194741 0.0351845 0.0201392 +0.0604235 0.0678625 0.0131519 +-0.0147437 0.0383723 0.00849375 +0.0123077 0.035562 0.0436453 +-0.0878555 0.0861109 0.00948006 +0.0461918 0.0820393 0.0121748 +-0.0376617 0.0344352 0.0359896 +-0.0640313 0.13251 0.040793 +0.00650251 0.122426 0.0350167 +0.046473 0.0747304 0.00699979 +-0.090578 0.13228 0.00723516 +-0.0665138 0.0986787 0.0417758 +-0.0753611 0.0724331 0.0302407 +-0.0737585 0.160179 -0.00884095 +-0.0875779 0.102333 0.0213648 +-0.0213902 0.0905176 -0.0361974 +-0.0663379 0.132604 0.0444522 +0.0420458 0.0817019 -0.00677657 +-0.0739471 0.131099 -0.00783391 +-0.00249367 0.0925505 0.0559214 +-0.0748382 0.149925 -0.0278668 +-0.0734967 0.126028 0.0530224 +-0.0386362 0.117281 -0.0140679 +0.00347668 0.0964809 0.0526894 +0.0453833 0.074968 0.00220665 +0.012072 0.11405 -0.0168987 +-0.0774663 0.168085 -0.0299733 +-0.0534988 0.0761753 0.0426023 +-0.0233682 0.126286 0.00541909 +-0.00704598 0.0392708 0.0363567 +-0.0791658 0.0990564 -0.00863296 +-0.0464518 0.0945568 0.0436355 +-0.0404194 0.128239 0.00205017 +0.0393898 0.107905 0.00701069 +-0.0398611 0.0338561 -0.0163385 +-0.0665222 0.156255 0.0214077 +-0.0672076 0.171872 -0.0410051 +-0.0708261 0.144835 -0.0182015 +-0.0650483 0.0701635 0.0361166 +-0.00764186 0.11082 -0.0214014 +-0.0836837 0.151385 0.0303528 +-0.0496912 0.162854 0.00564102 +-0.0114821 0.125053 0.0306553 +-0.0713615 0.158186 -0.0419305 +-0.0348112 0.0336186 -0.0263013 +-0.0652015 0.0334423 0.00269659 +-0.00682217 0.0390777 -0.0108403 +-0.0745121 0.155307 0.0054919 +0.00849016 0.0441134 0.0451901 +-0.041821 0.0914074 -0.0230213 +0.0243874 0.048835 -0.0205112 +-0.0578612 0.158406 0.00308521 +-0.0781467 0.116431 0.0503206 +0.0429791 0.071952 -0.00379352 +-0.00196689 0.131088 0.00752604 +-0.0728984 0.156837 -0.0329194 +0.00543206 0.119469 -0.0147017 +-0.00442631 0.0386612 0.00487339 +-0.089531 0.0983552 0.0174009 +0.00679264 0.0379024 -0.00704418 +-0.0255688 0.0356598 0.0531386 +-0.0343151 0.0794495 -0.0245241 +-0.0124944 0.0870249 0.0570339 +-0.0710693 0.155098 0.0285743 +-0.0663511 0.0350877 0.0310837 +0.00349789 0.122445 0.0347995 +-0.0414975 0.045132 0.0414403 +0.0348194 0.0365264 0.00732462 +-0.0740113 0.141343 -0.00688783 +-0.0303332 0.0706347 -0.0294852 +0.0503042 0.0691243 0.0253774 +-0.0701319 0.158154 -0.0479233 +-0.0358242 0.0915039 -0.0239402 +-0.0645394 0.0596403 0.015406 +0.0213135 0.0650138 -0.0271409 +0.0262112 0.0873747 -0.0229809 +-0.052671 0.112615 -0.017101 +-0.0592898 0.045994 0.0417021 +-0.0717164 0.163822 -0.0439567 +0.0178664 0.127935 0.017674 +-0.0655034 0.108381 0.0382088 +0.0278762 0.0942373 0.043974 +-0.0457869 0.0855328 -0.0217062 +-0.0643109 0.169365 -0.0428818 +0.0100266 0.0346111 0.0241784 +-0.00361434 0.0341476 -0.0187856 +-0.0389438 0.047744 -0.0146455 +-0.0676963 0.0648397 0.0261272 +-0.0374998 0.0691046 0.0417769 +-0.0568378 0.0613597 0.0260949 +-0.0369296 0.036554 0.0451414 +-0.0284901 0.0688983 0.0393825 +-0.0534824 0.0340932 0.0259063 +-0.0631168 0.15992 -0.0455978 +-0.0444353 0.0335419 -0.0188134 +-0.0168224 0.0960286 0.0515795 +-0.076233 0.145832 -0.00587217 +-0.0231748 0.0709692 0.0487695 +-0.0104382 0.0354056 -0.0175403 +-0.0897878 0.136555 0.0351995 +-0.0717761 0.0344583 0.000444464 +0.0353682 0.103387 0.0319873 +-0.00977607 0.0770524 -0.0379416 +0.00551406 0.0375423 0.0260562 +-0.00350144 0.0675505 0.0564719 +-0.0564947 0.102955 0.042036 +-0.061361 0.0336079 0.00692461 +0.00850062 0.121038 0.0360118 +0.0202826 0.0693621 -0.0284085 +-0.00908512 0.169637 -0.0217386 +0.0255848 0.123614 0.0162626 +0.0234098 0.0871372 -0.0242525 +0.0269727 0.112042 -0.0107557 +0.0262833 0.0935743 -0.0210485 +-0.059 0.0412164 0.021703 +0.0345357 0.0373492 0.0194302 +0.0530102 0.0462982 0.0132036 +-0.00365111 0.0511553 -0.0312289 +-0.0591025 0.0338635 0.0178635 +-0.0144888 0.0673806 0.0542261 +-0.0416194 0.0336308 -0.0257822 +-0.0186097 0.0407857 -0.0282477 +-0.0298888 0.0474725 0.0462905 +-0.00306646 0.0386027 0.0233477 +0.0330707 0.110451 -0.00703014 +0.0146846 0.037467 0.0442233 +-0.0390505 0.154795 -0.00905663 +-0.0306702 0.0891071 -0.0265975 +-0.090498 0.131069 0.0362301 +-0.0189866 0.10628 -0.022556 +-0.0125142 0.181139 -0.0289621 +-0.0236648 0.0522261 -0.0284113 +-0.0564969 0.100177 0.0431307 +-0.0314961 0.10429 0.0412052 +-0.0509168 0.0335668 6.7085e-05 +-0.0773495 0.081875 0.035997 +-0.0834254 0.141805 0.00220396 +0.00104126 0.108173 -0.0205653 +0.0181741 0.0988563 -0.0226017 +-0.0797776 0.115912 0.0485816 +-0.0816869 0.0734846 0.011537 +0.00150486 0.0856703 0.0573817 +-0.00849476 0.0745791 0.0575173 +-0.00549893 0.0939194 0.0556385 +0.0221626 0.0490425 0.0405889 +0.0363661 0.0873006 -0.0164353 +0.0491174 0.0712134 0.0219878 +-0.079214 0.155524 0.0184351 +-0.0654627 0.0598015 0.0150426 +0.0330982 0.0626311 -0.0167961 +-0.0839336 0.126519 -0.00402298 +-0.00950667 0.125161 0.0310898 +0.0292092 0.0563773 0.0403225 +-0.0273861 0.0720614 0.0416635 +-0.0647467 0.0379255 0.0402853 +-0.0521847 0.140082 0.0224024 +-0.0276164 0.0422898 -0.0293674 +0.0360108 0.100867 -0.0107814 +-0.0946899 0.124172 0.0202666 +0.0446233 0.0903218 -0.000806954 +-0.00230838 0.0348204 0.04129 +0.00391726 0.126651 -0.0064175 +-0.0633881 0.0336212 0.00649796 +0.00838362 0.046349 -0.0258656 +-0.0577252 0.156918 0.00853143 +-0.0693669 0.17099 -0.0332104 +0.0249955 0.0347512 0.0143719 +0.00961895 0.12141 -0.0128393 +0.021665 0.0416371 -0.0126942 +-0.0521438 0.0568294 0.0272279 +-0.0628733 0.0996403 -0.0179913 +0.0218834 0.0415901 -0.0107198 +-0.0546838 0.0435714 0.0206922 +-0.0176301 0.183064 -0.0184359 +-0.00750517 0.0471136 0.0478292 +-0.0520933 0.154615 -0.00405641 +-0.0865732 0.0860822 0.023453 +-0.0665787 0.163768 -0.0579853 +0.00636801 0.0479975 -0.0276935 +0.0368613 0.0587703 -0.00975684 +-0.0879266 0.10368 0.0183585 +-0.016623 0.0450359 -0.0278307 +-0.0895401 0.135156 0.0272131 +0.000356348 0.0496808 -0.0306188 +-0.0836962 0.138005 0.0462469 +0.0441945 0.077668 0.0251701 +-0.0685147 0.0930476 0.0422841 +-0.0232574 0.100051 -0.0240138 +-0.03748 0.0548048 0.0392179 +-0.0293599 0.15815 -0.0119938 +-0.021522 0.0336815 -0.0237529 +0.00128503 0.0655494 -0.0343406 +-0.0861178 0.0953813 0.000442214 +0.0350885 0.099465 0.0350983 +-0.0779853 0.13835 -0.00526914 +-0.0857179 0.124363 0.0486993 +-0.0309707 0.163858 -0.00458082 +-0.0722468 0.174258 -0.0400013 +-0.0149026 0.105901 -0.0222117 +-0.0673665 0.165482 -0.0209987 +-0.0876017 0.152029 0.0126504 +-0.0220763 0.0666765 0.0478151 +-0.0624814 0.094591 0.0443423 +-0.0196147 0.0379102 -0.0280301 +-0.0346582 0.0422066 0.0469558 +-0.0199036 0.0739897 0.0538964 +-0.00877818 0.0387104 -0.00343461 +0.000535895 0.0548656 0.0545076 +-0.0454881 0.10014 0.0423159 +-0.0404927 0.0958661 0.0421915 +-5.87354e-05 0.100974 -0.0229378 +-0.0283024 0.0362399 -0.0299084 +0.026308 0.0822369 0.0469135 +-0.06337 0.156813 -0.0136043 +-0.0624231 0.0357528 0.0196573 +-0.0709978 0.0698591 0.0316215 +-0.00550273 0.0661441 0.0562254 +0.00539692 0.0418924 -0.0240197 +-0.0711187 0.0642492 0.0206358 +-0.0614458 0.0606683 0.0222701 +0.0189142 0.0353585 0.00519133 +0.0315596 0.0497964 -0.00774264 +-0.0548596 0.0462919 -0.006395 +0.0010398 0.0392387 0.0326514 +0.0448141 0.0889533 0.0211601 +-0.0898897 0.136442 0.013225 +0.0409408 0.0873455 0.0311847 +-0.0866496 0.106304 0.00937201 +0.0315171 0.118424 0.0085036 +-0.091229 0.14471 0.0161551 +-0.00263717 0.12924 0.026005 +0.0142425 0.0645148 0.0521595 +-0.0509259 0.0571242 0.0316152 +-0.0585706 0.155353 0.0213449 +0.0242207 0.111888 -0.0125803 +-0.0305755 0.0788685 0.0415824 +-0.0664528 0.145477 0.0410093 +-0.00432524 0.0423738 0.047881 +-0.0434528 0.12491 0.0216806 +-0.0610445 0.045667 0.0306816 +-0.0148175 0.0855384 -0.0388203 +0.0594886 0.0594575 0.00616841 +-0.0740871 0.156873 -0.0259173 +-0.0414785 0.105663 0.0400022 +-0.0376995 0.0680509 -0.0154542 +-0.0698935 0.122364 -0.00881274 +-0.00848477 0.0718045 0.0573713 +-0.0394932 0.127549 -0.000886358 +-0.0856022 0.136615 0.0453504 +-0.0889467 0.143422 0.0321606 +-0.0738723 0.109242 -0.00905672 +-0.0222267 0.0906414 0.0528718 +0.00551724 0.0661119 0.0558057 +-0.0588983 0.0582416 0.00880815 +0.0225876 0.0388978 0.0383164 +0.0022443 0.0974458 0.0519249 +-0.056455 0.12554 0.0394323 +-0.00949777 0.091187 0.0566315 +0.00149085 0.103013 0.043912 +-0.00374904 0.0712712 -0.0357267 +-0.0394946 0.119701 -0.0126173 +-0.0631669 0.152168 -0.0312981 +-0.0139477 0.0625843 0.0539847 +-0.0604937 0.100137 0.0425915 +-0.0749718 0.138395 -0.00644263 +0.00624486 0.0401371 0.0456279 +0.0193551 0.0475975 0.0417872 +-0.0303971 0.0890708 -0.0275789 +0.0196022 0.0462781 0.0421275 +0.0317544 0.0632771 0.0405733 +-0.0662966 0.156977 -0.00759157 +0.0183734 0.0506657 -0.0252113 +0.0404388 0.0427247 -0.00185446 +0.0115151 0.105777 0.0436811 +-0.0301364 0.0349235 0.0476426 +0.0254917 0.0369057 0.0252691 +-0.0850483 0.109026 0.0223524 +0.0157867 0.112048 -0.0167369 +0.0360751 0.0370336 0.00715793 +-0.0781026 0.0818813 0.0353359 +-0.00650962 0.0773868 0.0579538 +-0.0494324 0.0586474 0.0343285 +0.0112135 0.116429 0.0374582 +-0.0555782 0.159581 0.0063787 +-0.0454954 0.160804 0.00677344 +-0.0709975 0.139911 -0.00751202 +-0.0547852 0.0339346 -0.0120065 +-0.079504 0.128859 0.053141 +-0.0155349 0.0459646 0.0502157 +-0.0704857 0.116111 0.0520944 +-0.0454716 0.0404727 0.0442216 +-0.0890267 0.148493 0.027289 +0.0192952 0.126057 0.00111502 +0.00542039 0.0392223 0.0299552 +-0.0509634 0.152153 0.0121451 +0.0432798 0.100122 0.00916351 +-0.0722295 0.16736 -0.0213426 +-0.0311459 0.0354418 0.0504241 +-0.0834736 0.114211 -0.000781836 +-0.0258217 0.181482 -0.0160394 +-0.0517798 0.115481 0.0337859 +-0.0763629 0.108471 -0.00759882 +-0.0757916 0.155001 0.00503825 +-0.0893649 0.111932 0.017326 +-0.0619999 0.132592 -0.00773229 +-0.033844 0.171255 -0.00164046 +-0.0352015 0.153653 0.00157065 +-0.0722895 0.147809 -0.0265569 +-0.0217088 0.114301 -0.017023 +0.026785 0.0955535 0.0441601 +-0.0481378 0.0672057 0.0386531 +-0.026667 0.0823364 0.0504973 +0.00619086 0.131536 0.009113 +-0.0526119 0.0580506 0.0248562 +0.00250286 0.0576093 0.0540213 +-0.0810169 0.0953587 0.0335948 +0.029848 0.0875415 0.0432926 +0.0464379 0.0778615 0.0131806 +-0.0134997 0.0856507 0.057198 +0.0263535 0.0795425 0.0469281 +-0.0265857 0.0603669 0.0385952 +-0.0334943 0.11802 0.0311453 +-0.00337868 0.117905 -0.0149619 +-0.0660268 0.177263 -0.0521591 +-0.0238887 0.156697 -0.00604726 +-0.00760592 0.125948 -0.00752899 +-0.0221488 0.0383333 0.0268965 +-0.0293863 0.155004 -0.00725783 +0.0105543 0.126889 0.0293082 +0.0501729 0.0446765 0.00723117 +0.0310879 0.115727 -0.00269046 +-0.0191314 0.122285 0.0303949 +-0.0777065 0.155692 0.0145746 +-0.0797904 0.152563 0.0316147 +-0.0710154 0.0391332 0.00421404 +-0.0889531 0.100999 0.0124002 +-0.0147295 0.0942902 -0.0339999 +-0.0812191 0.0785924 0.0290188 +-0.0766463 0.0803349 -0.0100768 +-0.0435275 0.152141 0.00710463 +-0.0608313 0.092512 -0.0191943 +0.0227948 0.124775 0.0223512 +-0.0831943 0.132626 0.0501472 +-0.0317593 0.0449779 0.048226 +0.00552401 0.0633596 0.0561453 +-0.0492065 0.128269 0.0305743 +-0.0634388 0.152153 -0.00650488 +-0.0568117 0.135044 -0.00489316 +0.0252231 0.117755 -0.00691168 +-0.0716366 0.0874136 0.0414306 +-0.0725279 0.091561 0.0413901 +-0.0764449 0.084677 0.0378167 +-0.00880306 0.0841017 -0.0380883 +-0.0688616 0.033602 -0.00179476 +0.0161578 0.0988387 -0.0226848 +-0.0829912 0.0966357 0.0312921 +0.00854504 0.101743 0.0468013 +-0.0161113 0.0419173 0.0519008 +-0.0115772 0.0991016 -0.0249869 +0.026625 0.0839457 -0.0229857 +0.0451532 0.0931968 0.0111604 +-0.0264982 0.113889 0.035131 +-0.00351628 0.0442826 0.04692 +-0.0202282 0.0639107 0.048901 +0.0154069 0.0403121 -0.0220991 +-0.0725345 0.140015 0.0475615 +-0.0340447 0.1653 -0.00374721 +0.00850451 0.0883096 0.055394 +-0.0516913 0.0680528 0.0372779 +-0.070167 0.162396 -0.0479528 +-0.0174382 0.127681 0.00469302 +0.0354105 0.0965418 -0.0122281 +-0.0427202 0.152139 0.00651185 +-0.00023381 0.123831 -0.00932637 +-0.073929 0.152666 -0.0308896 +0.0244967 0.0375596 0.0281073 +-0.038496 0.0450464 0.0406484 +0.0424477 0.0803262 -0.00578172 +-0.017618 0.163994 -0.00984759 +0.042638 0.101488 0.0111603 +-0.0114747 0.111375 0.0418865 +-0.0878262 0.152428 0.0199936 +-0.0605498 0.0341606 0.0243603 +-0.0474966 0.088987 0.0447599 +0.0139221 0.0913152 -0.0287052 +-0.0182228 0.038194 0.0115761 +-0.0697006 0.0619862 0.0158161 +0.0317346 0.0619381 0.0405155 +0.0470668 0.0701831 0.0226957 +-0.0222639 0.0783263 0.0546841 +-0.0624118 0.148891 -0.00459657 +-0.0245152 0.111258 0.0385919 +-0.0623581 0.164692 -0.0425931 +0.0189449 0.0348191 0.0239933 +-0.0489525 0.123989 0.0308621 +-0.0294789 0.0732089 0.0403736 +-0.0912678 0.12968 0.0332366 +0.0188735 0.102787 -0.0208351 +-0.0542898 0.0343509 0.030786 +0.0541934 0.0628656 -0.00090927 +-0.024607 0.037979 -0.0290368 +-0.0461075 0.164061 -0.00779976 +-0.00480748 0.0854817 -0.0373491 +-0.0398973 0.160894 0.00183362 +0.0122013 0.0878954 -0.0308742 +-0.0609826 0.13955 0.0346529 +0.01801 0.126774 0.0220214 +-0.0720383 0.149669 -0.0395937 +0.0268545 0.0350543 0.018119 +-0.00249757 0.0952299 0.0546317 +-0.0177632 0.0728777 -0.0388934 +-0.00835092 0.0354934 -0.0172056 +-0.0123646 0.109877 -0.0203825 +-0.0385 0.120755 0.0293207 +-0.0614467 0.0335533 -0.00933279 +-0.0144984 0.108621 0.0424908 +-0.071459 0.151188 -0.0433221 +-0.0227544 0.0753712 0.0524561 +-0.0581897 0.157381 0.00697939 +-0.0588054 0.0825509 -0.0205914 +-0.0254269 0.0781373 0.050782 +-0.0176233 0.0450417 -0.02779 +-0.0345002 0.10287 0.040969 +0.0398172 0.0390737 0.00420564 +-0.0642915 0.169488 -0.0607786 +-0.0391909 0.150688 0.00279786 +-0.0817139 0.108721 -0.00159489 +-0.0691226 0.174646 -0.044619 +0.0542982 0.0579702 -0.00188368 +-0.0903603 0.143336 0.0142018 +-0.0554977 0.109766 0.0379077 +-0.0646073 0.15754 -0.0113176 +-0.0857257 0.0994313 0.000394941 +-0.0634657 0.0730594 0.0392535 +-0.0114926 0.0604332 0.0544994 +0.00136064 0.0481752 -0.0296995 +-0.0476605 0.124307 -0.00939578 +0.00152589 0.0731231 0.0568629 +0.0454513 0.0412382 0.0102351 +-0.0555526 0.124119 0.0389742 +0.0111749 0.035437 0.032711 +-0.0631468 0.156791 -0.0395997 +-0.0364943 0.115224 0.0327734 +-0.0687764 0.180487 -0.0583042 +-0.0558353 0.0912839 -0.0220329 +-0.0487756 0.0826651 -0.0212781 +0.0222353 0.0804964 -0.0261413 +-0.0698715 0.11424 0.0504282 +-0.0534972 0.0732542 0.0410474 +-0.0354707 0.0874527 0.0429689 +-0.0522647 0.117566 -0.0142997 +-0.0687471 0.158212 -0.0056007 +0.0254863 0.0578069 0.043747 +-0.0625026 0.0973365 0.0428841 +-0.00849427 0.0925522 0.0562249 +-0.076914 0.17371 -0.0479126 +0.0285085 0.121244 0.0144975 +-0.0649629 0.0620542 -0.00149187 +-0.0487919 0.135536 0.0203921 +-0.0406031 0.160882 0.00257136 +-0.0717214 0.0807275 -0.0154713 +-0.0759462 0.128163 -0.00785989 +0.0065117 0.129736 0.0249737 +-0.00106791 0.0391062 -0.00597311 +-0.0539473 0.03352 0.0103166 +0.0264479 0.103016 -0.017087 +0.0368588 0.0672041 -0.0137655 +-0.0209608 0.0380992 0.0183358 +-0.0922682 0.12272 0.00827864 +-0.0758891 0.119352 -0.00728174 +-0.0619808 0.0469192 0.00268857 +0.0286963 0.0991802 -0.016993 +0.0173223 0.125777 -0.00156033 +-0.071812 0.0879125 -0.0161091 +-0.0634945 0.102894 0.0414572 +-0.0534816 0.0491363 0.0336594 +-0.0677428 0.164471 -0.018256 +0.0418243 0.102828 0.00318021 +-0.0345003 0.0347932 0.0310568 +-0.0508009 0.0912872 -0.0218676 +0.0344847 0.0868408 -0.0179179 +0.0193386 0.0579734 -0.027391 +-0.0621388 0.0334692 0.00329381 +-0.017215 0.175671 -0.0245809 +-0.0538714 0.0449084 0.0167075 +0.0201621 0.124133 -0.00175315 +0.00612185 0.108732 -0.0201634 +0.0101112 0.110138 -0.0193681 +0.0407992 0.0698146 0.0307925 +-0.0186672 0.0495328 -0.0300927 +-0.0804551 0.134426 0.050865 +-0.0719585 0.0377493 0.00378419 +0.00950065 0.0688226 0.0549942 +0.0451024 0.091769 0.003186 +0.0116064 0.121838 0.0345253 +-0.07744 0.155698 0.0205089 +0.0154982 0.118174 0.0357451 +0.0455409 0.0918154 0.00916522 +-0.0825371 0.14737 0.037761 +0.00019241 0.0853625 -0.035651 +-0.0413557 0.0405762 -0.0252979 +-0.00795135 0.129264 0.0240771 +-0.00779714 0.0812765 -0.0379169 +0.0279176 0.0508447 -0.0187774 +-0.0851867 0.0791254 0.00650076 +-0.071556 0.161392 -0.00951947 +0.0302201 0.119789 0.0108648 +-0.0664004 0.120055 0.0514481 +-0.0652563 0.0459546 0.00568144 +-0.0484523 0.0349311 0.00836568 +0.050668 0.0451751 0.0191374 +0.0235092 0.118527 -0.00774096 +-0.0799897 0.135372 -0.00407226 +0.0454193 0.0875784 0.00318139 +0.0218862 0.107458 -0.0158341 +0.0519418 0.0525693 0.0274887 +-0.0174883 0.044685 0.0517611 +-0.0503006 0.134918 0.0263293 +-0.0797918 0.11331 -0.00252121 +0.0170867 0.039703 -0.0206999 +-0.00603107 0.130744 0.0146461 +-0.0614566 0.0372076 0.0201515 +-0.0634342 0.039353 0.0417984 +-0.0520389 0.0545474 0.0246248 +-0.0700192 0.172057 -0.036324 +0.0425828 0.0778099 0.0282065 +-0.0943409 0.12415 0.0172628 +-0.03739 0.165304 0.000185179 +0.0380556 0.0834519 0.0357476 +-0.0140374 0.0384483 0.0012996 +-0.0834291 0.14469 0.0401339 +-0.055347 0.0335038 0.00284205 +-0.0577441 0.0590406 0.000553128 +-0.0586534 0.154964 0.024223 +-0.0627416 0.148221 0.0374769 +-0.0597552 0.0781833 -0.0189903 +-0.0882134 0.141936 0.0111996 +0.0441966 0.0973694 0.0101636 +0.00324014 0.0740573 -0.0349749 +-0.0320743 0.0763998 -0.0305477 +0.0424682 0.0642865 0.0278791 +0.00647808 0.111357 0.041027 +0.0241747 0.0351145 0.0138772 +-0.0842625 0.100702 -0.00260902 +-0.0538049 0.0486373 0.0382673 +0.0033632 0.097467 -0.0272178 +-0.0526204 0.141613 0.022402 +0.0331357 0.0570437 -0.0137102 +0.00753436 0.104363 0.0436686 +-0.029494 0.0631194 0.0377814 +0.0357221 0.0994501 0.0342567 +0.0398205 0.0604422 -0.00479028 +-0.0134826 0.109991 0.0421694 +-0.0618817 0.161578 -0.0325898 +-0.00560304 0.0434101 -0.0260312 +-0.0274608 0.0473022 0.0495228 +-0.065855 0.0967089 -0.0173163 +-0.00276158 0.0698244 -0.0351738 +-0.00250067 0.110029 0.0428965 +0.0142116 0.123033 -0.00860213 +-0.0633963 0.145356 0.0382744 +-0.033621 0.0519746 -0.0102559 +0.0385319 0.0997972 -0.00779458 +0.0312326 0.118751 0.0098088 +-0.011143 0.128894 0.00267925 +-0.0574832 0.0833327 0.0441985 +-0.0668542 0.114225 0.0472279 +0.0369848 0.0561762 0.0322 +-0.0688663 0.102328 -0.014772 +-0.0246521 0.0478035 -0.0267776 +-0.0806498 0.110292 0.0422048 +-0.0475911 0.163428 -0.00670042 +-0.00358669 0.0376696 -0.025221 +-0.0499193 0.118992 -0.0138138 +-0.0766944 0.171427 -0.0358927 +0.0174979 0.126711 0.000451693 +-0.0107378 0.177152 -0.0244143 +0.0397983 0.0672171 0.0328832 +0.00289976 0.039936 0.0460731 +0.030847 0.0875798 0.0429743 +-0.0394926 0.102848 0.0402648 +0.00332264 0.0568618 -0.0316357 +-0.0367537 0.0783235 -0.0195335 +-0.038823 0.0928858 -0.0233898 +-0.0644838 0.0931562 0.0439721 +-0.0298466 0.0385336 -0.0167929 +-0.0548009 0.0449973 0.0226803 +0.0118375 0.0344099 -0.0160341 +-0.0683506 0.181259 -0.055895 +-0.0107728 0.0387832 -0.00390135 +-0.0300375 0.0890464 -0.0285748 +-0.0710857 0.168903 -0.0252489 +-0.0757782 0.149978 -0.0188682 +0.030839 0.0995119 0.0394948 +-0.0329249 0.0369927 0.0503412 +-0.0732448 0.144163 -0.0109449 +-0.0897565 0.140652 0.029182 +-0.0735905 0.154201 0.0306806 +0.00579855 0.0347845 0.042995 +-0.0519166 0.0545256 0.0236155 +-0.01212 0.102458 0.0438351 +-0.0211595 0.178661 -0.0149212 +-0.014608 0.0421127 -0.0270124 +-0.0885789 0.0922253 0.0228661 +-0.0145885 0.128899 0.00863716 +0.010498 0.0909888 0.0536897 +-0.0066489 0.0388823 -0.00316153 +-0.0258212 0.0839605 -0.0371412 +-0.0797525 0.15498 0.0124103 +-0.0414563 0.108465 0.0385585 +-0.0525315 0.149847 0.0192949 +-0.0156627 0.184575 -0.0209705 +0.0428837 0.0887839 -0.00581701 +0.0242564 0.0734016 -0.0257301 +0.0192994 0.062217 -0.0274738 +-0.0310269 0.122601 -0.0056394 +-0.0569847 0.153801 0.0277423 +-0.0526515 0.0504392 0.0286525 +0.00150192 0.0634213 0.0567922 +-0.0838556 0.139345 0.0449552 +-0.0476133 0.0562658 -0.0107838 +-0.0527007 0.0693372 -0.0141095 +-0.0311494 0.157393 -0.0113544 +0.00313658 0.0348497 0.0441849 +-0.0311581 0.17265 -0.0162683 +0.0453494 0.0847845 0.0201731 +0.0285114 0.0619268 0.0428923 +0.000499004 0.0634057 0.0567297 +0.00751117 0.0575089 0.0530994 +-0.000499443 0.114191 0.0415203 +-0.0794921 0.146102 0.0417961 +-0.0252738 0.0381933 0.0263814 +-0.0376796 0.16681 0.00156763 +0.0387661 0.0870401 -0.0137857 +0.0296088 0.12015 0.0163431 +-0.0938694 0.121489 0.0252875 +-0.0396002 0.125498 -0.0067103 +0.0370837 0.103994 -0.00683208 +-0.0465559 0.0461276 -0.0102455 +0.0404351 0.0389029 0.0137659 +-0.0424925 0.100104 0.042001 +-0.0285717 0.12063 0.0270994 +-0.0800863 0.148726 0.0380799 +0.00214563 0.119376 -0.0145717 +-0.0288792 0.104408 -0.0227314 +-0.0312735 0.034639 0.0229335 +-0.0669165 0.12238 -0.00897156 +-0.0890273 0.0956446 0.021399 +-0.0897683 0.091592 0.0154417 +-0.0739499 0.156872 -0.0269145 +0.00919729 0.039194 0.0451612 +-0.0374937 0.109757 0.0368609 +0.0523694 0.0545712 -0.00274385 +-0.0339801 0.0348087 0.0434578 +-0.00541562 0.128879 0.0264449 +-0.0636022 0.151642 0.0357576 +-0.0693902 0.0672718 0.0289371 +-0.0220481 0.121595 -0.00868192 +-0.0390536 0.127857 0.00108873 +-0.090122 0.144414 0.0285066 +-0.0629168 0.114269 -0.0126902 +-0.0930993 0.129616 0.0162363 +-0.0325132 0.0575193 0.0378292 +-0.0193156 0.162502 -0.00702982 +0.00550789 0.0910775 0.054811 +-0.0234801 0.168298 -0.011313 +0.0473422 0.0575607 -0.00551801 +0.0214637 0.0989203 0.04607 +-0.0827604 0.106087 -0.00164696 +-7.52397e-05 0.037877 0.020989 +-0.0345343 0.126083 0.0189612 +-0.0512338 0.164096 -0.00192926 +-0.0477776 0.0826677 -0.0211258 +-0.0368214 0.16531 -0.000729186 +-0.0673944 0.162815 -0.015253 +-0.0186701 0.0971551 0.0477534 +-0.0366241 0.0360289 0.0452882 +-0.0195815 0.0341867 -0.0200865 +0.0298019 0.0862025 0.0431971 +-0.0932655 0.120203 0.038289 +-0.000505415 0.110024 0.0426421 +-0.0191383 0.16678 -0.0189611 +0.0173062 0.0421724 0.0440438 +0.0105403 0.105742 0.0436489 +-0.0345641 0.11594 -0.0146748 +-0.0944618 0.125537 0.019259 +-0.0679091 0.108046 -0.0128123 +0.0268137 0.118694 -0.00391821 +-0.0577288 0.0738232 -0.0175832 +-0.0494959 0.0988033 0.0435442 +0.0425948 0.0873487 -0.0068057 +-0.0366079 0.114094 -0.0167422 +-0.0064886 0.118022 -0.0150746 +-0.0694599 0.155751 0.00874428 +-0.0727804 0.0887809 0.0411113 +-0.0921325 0.117269 0.0252198 +-0.0769942 0.154149 -0.012901 +0.00413641 0.0979047 -0.0256761 +-0.0504737 0.113932 0.0347324 +-0.00655213 0.0389811 -0.00882376 +-0.021105 0.0431099 0.0534593 +-0.0732611 0.161033 -0.0359392 +-0.0668535 0.0938084 -0.0173106 +0.0523234 0.0724358 0.00729932 +-0.02575 0.0536249 0.0391706 +-0.0529014 0.114056 -0.0162353 +-0.0887923 0.1378 0.0112057 +-0.0604332 0.0585193 0.0100455 +-0.0105014 0.0546468 0.0522278 +0.0475389 0.0482604 0.0280949 +0.00247406 0.123881 0.0337357 +0.0282809 0.0389301 0.0276504 +-0.0903128 0.141958 0.0142327 +-0.0457178 0.0724199 -0.0170809 +-0.0393802 0.149525 0.00137589 +-0.0384762 0.128323 0.0101316 +-0.0387951 0.0343342 0.0305488 +-0.0627886 0.154765 0.0285735 +-0.044804 0.0884409 -0.0220028 +0.00621048 0.0851628 -0.0331463 +-0.0124997 0.0938947 0.0551641 +-0.0760018 0.163203 -0.0170986 +-0.0568081 0.154369 0.0248865 +0.0141304 0.056278 0.0501629 +-0.000201542 0.0357861 0.0174114 +-0.0687337 0.0764635 -0.0155195 +-0.0465141 0.0518831 0.0377757 +0.0306859 0.0377485 0.0237503 +-0.0887758 0.149859 0.0255696 +-0.0468066 0.088437 -0.0220186 +-0.0104567 0.111397 0.0420636 +0.00949238 0.0487693 0.0494463 +-0.0344171 0.0343826 0.0278837 +-0.0747225 0.161031 -0.0319529 +-0.00127097 0.123959 0.0338052 +0.0484686 0.0511467 0.0294828 +0.0216142 0.042218 0.0415059 +0.0159587 0.0874032 0.0512942 +-0.0579584 0.0336225 0.00939861 +0.0262865 0.0689766 -0.0234385 +-0.0457839 0.11676 -0.0154906 +-0.0431023 0.149502 -0.00451393 +0.0575358 0.0592738 0.00218909 +-0.0907151 0.116093 0.0293225 +-0.0626986 0.0658458 -0.00782349 +-0.0680529 0.0874243 0.0435129 +-0.0323521 0.0336874 -0.0296376 +-0.0208013 0.108893 -0.0213287 +0.00800637 0.0345135 0.0400968 +0.0600686 0.0650603 0.0191749 +-0.0881094 0.0861284 0.0104766 +-0.0292466 0.166794 -0.00735295 +-0.0455037 0.159315 0.00726546 +-0.0361152 0.127822 0.0095198 +-0.00430156 0.130062 0.00233767 +-0.032509 0.0506603 0.0384213 +-0.0316129 0.119551 -0.0104429 +0.0414143 0.104258 0.0111621 +-0.075527 0.0733333 0.0311756 +-0.0549715 0.161246 0.00205939 +-0.0503915 0.140104 0.0183826 +0.0152276 0.0835585 -0.0295949 +-0.0464862 0.0718998 0.0415251 +-0.00551998 0.0732424 0.0584734 +-0.0900165 0.133639 0.00622839 +-0.069719 0.0887582 0.0422978 +0.00474777 0.0367585 0.0247919 +-0.027126 0.165248 -0.0165316 +-0.0283135 0.0350192 0.0513697 +-0.0318897 0.0721821 -0.0275085 +0.0437433 0.0945326 0.0221692 +-0.0126802 0.0961728 -0.031918 +-0.0567215 0.04662 0.0276747 +-0.00532834 0.0367049 -0.0158504 +-0.0529595 0.0335568 -0.000338033 +-0.0240311 0.112816 -0.0174462 +0.01097 0.0520216 0.0508135 +-0.0328411 0.0915526 -0.0242438 +-0.0552728 0.0335199 0.0136226 +-0.0820994 0.104661 -0.00359906 +0.035799 0.0558975 -0.00871505 +-0.0868952 0.0991223 0.0252196 +-0.0296012 0.120713 0.0267425 +-0.0695324 0.125657 0.0522171 +-0.0424937 0.0790081 0.0428161 +-0.0632658 0.0419596 0.040132 +-0.0699149 0.161541 -0.0103834 +-0.0345105 0.0676457 0.041143 +-0.00514301 0.0997589 0.0492461 +-0.0697588 0.147131 -0.0275571 +0.0580762 0.0648724 0.00314588 +0.0241035 0.1245 0.0085821 +0.0377445 0.110141 0.00501649 +0.0413546 0.0999884 -0.00181466 +0.0180964 0.0604579 0.0488964 +-0.0341434 0.0780256 -0.025502 +0.0365014 0.0756142 -0.0127863 +0.0485013 0.0651587 0.0285278 +-0.0331365 0.162399 -0.0024379 +-0.0578171 0.08688 -0.0211007 +-0.0591308 0.125513 0.0408421 +-0.0248084 0.0826031 -0.0377611 +-0.00847175 0.0920515 -0.0356471 +-0.0281451 0.166722 -0.0170726 +0.0321478 0.0740867 0.0412125 +-0.0318598 0.0496767 -0.0173511 +-0.0683644 0.0381281 -0.00463362 +-0.0293612 0.0383343 -0.00169706 +-0.0546971 0.0334232 0.00665025 +-0.0604511 0.0584329 0.0155226 +0.0356702 0.108162 -0.00482135 +-0.087994 0.0981671 0.00544953 +0.042672 0.0737568 0.0282004 +-0.0414969 0.095865 0.0421344 +0.0227593 0.0727654 0.0487302 +0.0247922 0.121532 -0.00113746 +0.0282353 0.0775351 -0.0225519 +-0.0487687 0.0559317 0.0351683 +-0.0192566 0.180095 -0.0235875 +-0.0250606 0.0603159 -0.031412 +-0.0310964 0.160762 -0.0139612 +0.0143682 0.0767494 0.0542274 +-0.0714649 0.159596 -0.0419316 +0.0454023 0.0875829 0.0161653 +-0.0354973 0.0470472 -0.0223112 +-0.0465703 0.0490167 -0.00974944 +0.025334 0.0435501 0.0381106 +-0.0785372 0.168054 -0.0329755 +-0.0148858 0.0985034 0.047376 +-0.0302927 0.117007 -0.0138211 +-0.0802651 0.0963563 -0.00854135 +-0.030624 0.0348272 -0.0303515 +-0.000406928 0.0996624 0.04942 +-0.0576871 0.0335309 0.00594357 +-0.0923088 0.114683 0.0143254 +0.00732004 0.0351406 -0.00439972 +-0.00948171 0.174183 -0.0285537 +-0.0320503 0.12646 0.00953655 +0.0270529 0.0822264 0.0462092 +-0.0900419 0.139254 0.023178 +-0.0498185 0.0927102 -0.0215416 +-0.00751389 0.102333 0.0437439 +-0.0775302 0.161724 -0.0197184 +-0.044496 0.0451943 0.0419603 +-0.0362032 0.160944 0.000172036 +-0.0314741 0.053189 0.0369367 +-0.072385 0.158213 -0.0369175 +-0.0860963 0.145967 0.0357039 +-0.0554937 0.100184 0.0430705 +-0.0523102 0.116406 -0.0150785 +-0.0518166 0.09273 -0.0219218 +-0.024907 0.0916549 -0.0335476 +-0.0634479 0.141036 0.0381413 +0.0152366 0.121915 0.0327966 +-0.0631227 0.0445391 0.0377156 +-0.0865336 0.141884 0.00820248 +0.00748358 0.11412 0.0398951 +-0.071965 0.136965 -0.0074383 +-0.0608999 0.058839 0.0168686 +-0.0886398 0.102364 0.0173768 +-0.0688031 0.0659098 0.026726 +0.02824 0.0686155 0.0425458 +-0.0196877 0.127428 0.0169554 +0.0332508 0.0906175 -0.0178979 +0.019654 0.122236 -0.00577023 +-0.0457281 0.151677 -0.00565337 +-0.0685681 0.156629 -0.0529972 +0.0455148 0.0801982 0.0216904 +0.0232513 0.0734458 -0.026356 +-0.0856264 0.110331 0.00634317 +0.032415 0.0383305 -0.000488607 +-0.0697489 0.17084 -0.0530327 +0.0127518 0.0887452 0.0537008 +-0.0650469 0.168333 -0.0359323 +-0.0312058 0.066507 -0.0244549 +-0.0481456 0.14427 0.00342034 +-0.0250932 0.0385898 -0.0121739 +-0.0268796 0.181867 -0.0133655 +-0.0624905 0.0804598 0.0431805 +-0.0664501 0.0353918 0.0342807 +-0.0287674 0.078167 -0.0351681 +0.0384815 0.0729589 -0.0117402 +-0.0325668 0.0347124 0.0262002 +0.0258782 0.0645831 0.0443789 +-0.0486546 0.0620591 -0.0122264 +-0.086684 0.149909 0.029141 +0.0138472 0.123867 0.0319554 +-0.0513866 0.0584422 0.0306256 +-0.00251219 0.0378133 0.00785027 +-0.00926128 0.126278 0.029483 +0.0147315 0.0347337 -0.0176578 +0.0417187 0.066227 -0.00378154 +-0.0149615 0.0883672 -0.0380383 +-0.0678931 0.0900993 0.043242 +0.0149683 0.113515 -0.0163113 +-0.0719356 0.110274 0.042413 +-0.0333618 0.0751438 -0.0264858 +0.0116984 0.034577 0.0227351 +-0.0670519 0.166375 -0.0237602 +-0.0454276 0.0345386 0.0307405 +-0.00249621 0.0883993 0.0567366 +-0.0235661 0.115415 0.0353667 +-0.0944357 0.121484 0.0222838 +0.0334736 0.0940135 -0.0155006 +-0.0436018 0.0519969 -0.0109067 +-0.0781065 0.0948585 -0.0115273 +0.0456581 0.0729488 0.0206934 +-0.0274951 0.157765 -0.0111917 +-0.00306441 0.100922 0.0454807 +-0.0618021 0.116863 0.0404147 +-0.0344937 0.041903 -0.0294247 +-0.0427476 0.159417 0.00474491 +0.0374917 0.0484328 0.0317174 +-0.00814387 0.0339061 -0.0213361 +-0.0737927 0.132633 0.0513524 +-0.0397231 0.116184 -0.0149076 +-0.00950395 0.0773592 0.0576807 +-0.0505908 0.03436 0.0298011 +0.0187381 0.119283 0.0342968 +0.00523462 0.075444 -0.0346019 +-0.0321194 0.165225 -0.0156285 +-0.0276791 0.1239 0.019992 +0.0190254 0.061825 0.0484929 +-0.0821717 0.11152 0.00033013 +0.0241621 0.0505303 0.0399762 +0.0378012 0.0604211 0.0334272 +-0.0182252 0.159192 -0.00975232 +0.0423754 0.100105 0.0181719 +-0.0546942 0.0661242 -0.0103565 +-0.0685912 0.131247 0.0482807 +0.000498438 0.0938703 0.0551155 +-0.0281544 0.168213 -0.0175818 +-0.0417796 0.0485307 -0.0113147 +0.0287445 0.109341 -0.0118595 +-0.00260812 0.130913 0.0187596 +-0.0454889 0.0660999 0.0395126 +-0.0655106 0.0972881 0.0421527 +-0.0194848 0.0869694 0.0563134 +-0.0264967 0.121204 -0.00819998 +0.00829502 0.0653838 -0.032076 +-0.0287456 0.0753309 -0.0348961 +-0.0727338 0.0821447 -0.0156124 +-0.0470607 0.146242 0.00718592 +-0.0209665 0.0386858 -0.0114366 +-0.0600079 0.128191 -0.00754937 +-0.0653109 0.180421 -0.0593142 +-0.0559148 0.0548054 0.00768529 +-0.0524976 0.0917711 0.0441581 +0.0212182 0.0847586 -0.026404 +-0.0579878 0.0414274 -0.0083271 +-0.0726954 0.0791971 -0.0139413 +-0.0307256 0.0915724 -0.0247467 +-0.0556334 0.11822 -0.0129265 +-0.0457806 0.0841121 -0.0213757 +0.00438413 0.0465246 -0.0275852 +-0.010477 0.110005 0.0426237 +-0.0896333 0.0929554 0.018431 +0.0397783 0.106996 0.0151622 +-0.0127593 0.0728576 -0.0383837 +0.0319543 0.0766492 -0.0197037 +0.00131984 0.0612266 -0.0334746 +-0.0834451 0.136657 0.0474496 +-0.0558128 0.0869147 -0.0214989 +0.00250708 0.0474439 0.0499052 +0.0125018 0.115423 0.0374065 +-0.00563766 0.13083 0.0104776 +-0.0658527 0.144237 -0.0148815 +-0.089646 0.0929438 0.0164332 +0.0436072 0.041137 0.00426675 +0.0444767 0.0889055 -0.00179899 +-0.057137 0.0562876 0.0015684 +0.00522768 0.0810328 -0.0339223 +-0.0137183 0.0628763 -0.0368336 +0.00133514 0.0554198 -0.0315391 +-0.0188851 0.0334951 -0.0249427 +0.052927 0.0495927 0.0235839 +0.0522184 0.0461787 0.0182078 +0.0165976 0.0348504 0.0271124 +-0.0589342 0.12267 0.0410891 +-0.0669714 0.163891 -0.0179699 +-0.0703202 0.132668 0.0493213 +-0.0776493 0.0787462 -0.00818258 +-0.0881736 0.132451 0.0437642 +-0.0632228 0.141176 -0.0069873 +-0.0713401 0.171022 -0.0310853 +-0.047409 0.166836 0.00227952 +-0.0141433 0.181604 -0.0223083 +-0.0619045 0.104018 -0.0180451 +-0.0483068 0.13712 0.0113971 +0.0136813 0.0952834 0.0497668 +0.035272 0.0660164 0.0386352 +0.0461881 0.0785676 0.017326 +-0.0532105 0.0335853 0.013987 +-0.0171786 0.0971676 0.04907 +-0.0725346 0.145512 -0.0179133 +-0.0333802 0.0498304 -0.01435 +0.0509184 0.0496314 0.0259504 +-0.0572784 0.0576838 0.00160501 +-0.0619689 0.153737 -0.0245819 +-0.0544985 0.104295 0.0412117 +-0.0500704 0.137041 0.0213927 +-0.0191411 0.0697535 0.053261 +0.0582061 0.0634965 0.00313887 +-0.0204853 0.0800483 0.0563065 +-0.0472097 0.0335059 -0.0119372 +-0.0749299 0.155492 -0.0209193 +-0.0698715 0.116492 -0.00825865 +0.0375436 0.055493 0.03143 +-0.0538462 0.137744 -0.0016929 +-0.0607335 0.034496 0.0414254 +0.0295159 0.107768 -0.0121736 +-0.0689178 0.168027 -0.0530164 +-0.0779935 0.171503 -0.0379488 +-0.0881443 0.0887489 0.00447233 +-0.00442605 0.128738 0.0268092 +0.00451348 0.0633892 0.056472 +-0.0818952 0.134036 0.0502533 +-0.0372574 0.124492 0.0238955 +0.0138426 0.11139 -0.0180298 +-0.0818741 0.119187 -0.00382424 +-0.0756587 0.0744591 -0.00795246 +-0.026115 0.158145 -0.00104516 +0.037495 0.0513025 0.031739 +0.0589255 0.0580383 0.0211692 +0.0434376 0.0874432 0.0261531 +-0.0260776 0.125932 0.00880255 +-0.0740662 0.155757 0.0246008 +-0.0178239 0.0387614 0.0327968 +0.0417114 0.091515 -0.00780409 +-0.0241449 0.0905492 0.0505682 +-0.074497 0.124608 0.0532356 +-0.0458334 0.0927472 -0.0217986 +-0.0804383 0.111326 0.0449881 +-0.00529252 0.125273 -0.00885488 +-0.0889223 0.0888194 0.00846703 +-0.00624295 0.130196 0.00449841 +-0.0669483 0.0447271 0.0026821 +-0.0548497 0.0941617 -0.0218342 +-0.0534962 0.0931826 0.0441514 +-0.0347147 0.0696617 -0.0176192 +-0.0440132 0.0366004 -0.0242792 +-0.0474979 0.0464882 0.040801 +-0.0653409 0.0600919 0.00943789 +-0.0231718 0.171204 -0.0201308 +-0.00587295 0.130011 0.00319127 +-0.0664676 0.0383698 -0.00648508 +-0.0886456 0.0935942 0.0229142 +-0.0447618 0.116708 -0.0154556 +0.0194756 0.100345 0.0462123 +-0.0154951 0.0911415 0.0560918 +-0.0371641 0.0342638 0.0291868 +0.0162971 0.0651874 -0.0294171 +-0.0291548 0.169699 -0.0175574 +-0.0704877 0.0623972 0.0153213 +-0.0774944 0.092744 0.0372295 +-0.00984328 0.0975178 -0.0293224 +-0.0784995 0.162482 -0.0259435 +-0.0145068 0.0730096 0.0554058 +0.0203473 0.0727595 0.0505294 +-0.0616196 0.156864 -0.0215888 +-0.0832232 0.0789707 0.00151853 +0.0163786 0.0403059 -0.0216745 +0.000325641 0.0568761 -0.0321896 +-0.0192766 0.0554309 0.0481999 +-0.00592104 0.0389465 -0.0049376 +-0.0499986 0.143197 0.012378 +-0.0355049 0.076131 0.0419036 +0.053394 0.0525543 0.0260735 +0.00630024 0.125509 0.0321214 +-0.0349082 0.033686 0.00682403 +-0.0714928 0.117552 0.0529474 +-0.0589919 0.15382 0.0299308 +0.0585035 0.0621132 0.0229868 +0.00569406 0.0341002 0.00181761 +-0.0155184 0.118264 0.0365807 +-0.0424989 0.16674 0.00381643 +-0.0863225 0.128011 -0.00168174 +-0.0553953 0.118382 0.0373919 +0.0469197 0.0444607 0.00136465 +-0.056091 0.0334157 -0.00629765 +-0.0361548 0.166687 -0.0142688 +-0.0127937 0.0386426 -0.0153707 +-0.0118501 0.11995 -0.013068 +-0.00670797 0.0627873 -0.0354975 +-0.079327 0.169353 -0.0390258 +-0.0437872 0.0855322 -0.0215732 +-0.0280896 0.0549613 -0.0243859 +-0.0584052 0.033525 -0.00869675 +-0.0482395 0.144672 0.00644062 +-0.0554929 0.0932384 0.0449182 +-0.0347045 0.0851136 -0.0245778 +-0.0494996 0.0791204 0.0440794 +0.0372047 0.0385834 0.00228863 +0.0193241 0.0607694 -0.0271316 +0.00852018 0.0702413 0.0555324 +-0.0778099 0.148638 -0.00388521 +-0.06539 0.178765 -0.0548301 +-0.04996 0.133052 -0.000571002 +-0.0847199 0.0939171 -0.00356265 +-0.0326229 0.0385148 -0.00990233 +0.032773 0.036599 0.0179277 +0.0427869 0.0611675 -0.0033403 +-0.0366336 0.0548529 -0.010755 +-0.0870489 0.0900041 0.00248653 +0.0416085 0.0656213 0.0284032 +0.00293844 0.100629 -0.0225769 +-0.0728162 0.0907583 -0.0154663 +-0.0718707 0.116473 -0.00776413 +-0.0937263 0.121427 0.0132848 +0.00471758 0.0346554 0.0428856 +-0.0704897 0.0719829 -0.0097429 +-0.050201 0.0344166 0.0315946 +-0.0796522 0.0704439 0.0152371 +-0.0425023 0.0986936 0.0421906 +0.0383887 0.0445417 -0.00444706 +0.0311086 0.103751 -0.0138751 +-0.0667119 0.155932 -0.00484005 +-0.0912006 0.121567 0.0443209 +-0.019019 0.0418114 0.0529435 +-0.0892823 0.141954 0.0132429 +-0.0221125 0.0389367 0.0353489 +-0.0563218 0.0335364 0.00802021 +-0.0896372 0.0929496 0.0174335 +0.0130767 0.125591 0.0302496 +0.0537776 0.0692651 0.00258827 +0.0106605 0.0363802 0.031763 +-0.0297187 0.0523119 -0.0193651 +-0.0140732 0.0383739 0.00681638 +0.0269054 0.0726895 0.0441444 +0.0246103 0.075474 0.0479027 +-0.00359864 0.0405713 -0.0254999 +0.0269298 0.0804165 -0.0233375 +-0.0488158 0.0912881 -0.0217052 +-0.00415439 0.0390536 -0.00654274 +0.000507304 0.0828912 0.0574668 +-0.0158173 0.038248 0.0138275 +-0.0624172 0.0599054 0.00479638 +0.0162074 0.0821136 -0.0291532 +-0.0419982 0.0337727 -0.000124238 +0.0250957 0.0348061 0.00319961 +-0.0309108 0.0608665 -0.0194213 +-0.0387236 0.174145 -0.00898261 +0.0464355 0.0778581 0.0101835 +-0.0639936 0.132595 -0.00811291 +-0.0340062 0.0381682 0.049242 +-0.0477004 0.131837 0.0244001 +-0.00268932 0.130846 0.00581897 +0.0302059 0.0857499 -0.020278 +0.0384903 0.0499056 0.0320993 +0.010384 0.0463357 -0.0254801 +-0.00660048 0.0405957 -0.0258634 +-0.0114989 0.0366056 -0.0169842 +0.0105059 0.0348976 0.020389 +-0.0487973 0.070279 0.0395574 +-0.0394971 0.057712 0.040203 +-0.0253679 0.125634 0.0163937 +0.0361389 0.0902387 0.0383091 +-0.0654905 0.0889779 0.0446185 +-0.0197462 0.0656505 -0.036857 +0.0320676 0.117774 0.0158308 +0.00351414 0.0661565 0.0562774 +-0.0226137 0.0422636 -0.0288734 +-0.019191 0.123923 -0.00519119 +-0.0532423 0.046246 0.0226735 +-0.021638 0.0464604 -0.0276852 +0.0272834 0.0689403 -0.022937 +0.0211914 0.124678 0.000362022 +0.04653 0.0760573 0.0105389 +-0.0338201 0.127158 0.00888963 +-0.077651 0.154407 0.00585132 +-0.0417202 0.0710768 -0.017536 +-0.0887218 0.0874968 0.0134639 +0.0165095 0.0354073 -0.0166384 +-0.0454406 0.0336534 -0.00804117 +-0.0504088 0.153575 0.0112235 +-0.0286428 0.107004 -0.0213195 +-0.0218765 0.0933131 0.0510401 +0.0329715 0.116865 0.0119087 +-0.0914625 0.148845 0.019136 +-0.0596259 0.155781 0.0151651 +0.0375784 0.099381 0.0316743 +-0.0157845 0.0784788 -0.0385671 +-0.0795217 0.123111 0.0512585 +-0.0418108 0.0343847 0.029868 +0.0389991 0.108356 0.0151637 +-0.0709225 0.109376 -0.0106672 +0.0579353 0.0634887 0.0239229 +-0.058577 0.0727277 0.0406017 +-0.062479 0.152546 0.000181648 +-0.0544934 0.0834141 0.0452404 +0.0357112 0.102065 0.0324889 +-0.0715263 0.0944187 0.0416527 +-0.0651404 0.112408 0.0390225 +-0.0545541 0.160714 0.00540511 +-0.0144079 0.183333 -0.0275579 +-0.0621531 0.152198 -0.0185797 +-0.0657166 0.14722 -0.0249021 +-0.0460756 0.154674 -0.00723534 +0.01519 0.127729 0.000331934 +-0.0489579 0.137072 0.00640402 +-0.0485683 0.0335187 -0.00854361 +-0.0885037 0.114225 0.0283481 +-0.0540375 0.141288 -0.0013423 +-0.0472373 0.134368 0.0171539 +-0.0272298 0.037736 0.022792 +-0.0518585 0.0985114 -0.0220738 +-0.0110867 0.180248 -0.025982 +-0.0236236 0.0593674 0.0425181 +-0.0408247 0.092859 -0.0231395 +0.0561988 0.0567015 0.0248562 +-0.0086058 0.172644 -0.0268228 +0.0163504 0.0552051 -0.0284322 +-0.0344945 0.0336038 -0.0243554 +-0.0556539 0.0345276 0.0424927 +-0.0348371 0.155104 0.00211833 +0.0276605 0.0605608 0.0434107 +-0.0623508 0.146001 -0.00658982 +-0.0248115 0.081196 -0.037776 +0.0240847 0.110594 -0.013209 +-0.0895075 0.148492 0.0263454 +-0.0926235 0.124077 0.00926903 +0.0292051 0.0843756 -0.0209031 +-0.0353048 0.127501 0.00687019 +-0.0859011 0.134922 0.00126737 +-0.0742444 0.0756609 0.0347079 +-0.0752605 0.157705 -0.0064221 +-0.0337955 0.0808164 -0.0255276 +-0.0288635 0.154571 -0.00355817 +0.0360371 0.0547702 0.0325687 +-0.0101249 0.0392126 0.0357767 +0.0288986 0.120838 0.016073 +-0.0106831 0.0570151 -0.0340192 +-0.0628045 0.144114 -0.00718004 +-0.0895701 0.151478 0.0161361 +-0.0176156 0.0385615 0.0294218 +-0.0211148 0.0389017 0.0355855 +0.0329392 0.0541774 -0.0107445 +-0.00428899 0.0367463 -0.0156853 +-0.0458368 0.0956376 -0.0219211 +0.0381262 0.080772 0.035847 +0.0268148 0.0976356 -0.019356 +-0.0625367 0.161521 -0.0446005 +-0.0517979 0.0869425 -0.0216307 +0.0344672 0.111064 -0.00366583 +-0.0911264 0.115738 0.024682 +-0.0753098 0.0805155 0.0368289 +-0.0133248 0.129244 0.00909724 +-0.0272428 0.0370384 -0.018628 +-0.0384762 0.0423266 0.0418914 +0.0203738 0.0521374 -0.0257342 +0.0585485 0.0552063 0.00817117 +0.0134367 0.121611 -0.0110511 +-0.089438 0.113514 0.0412091 +0.0444691 0.0790854 -0.00178456 +-0.000786355 0.0797462 -0.0360298 +-0.0269011 0.155694 -0.0071882 +-0.08839 0.0995952 0.00742201 +-0.0662162 0.0396687 0.0135434 +-0.0355277 0.0846755 0.0433772 +-0.0858238 0.104979 0.0223569 +-0.0778773 0.120773 -0.00663343 +-0.0263675 0.107348 -0.0216948 +-0.0927086 0.12286 0.0332776 +-0.0661966 0.15171 0.0363078 +-0.0202018 0.177138 -0.0227808 +-0.0855834 0.141979 0.0409477 +-0.0504886 0.0946205 0.0445363 +-0.0604928 0.101522 0.0423039 +0.0379519 0.0659398 0.0354557 +-0.0840048 0.140674 0.0436515 +-0.0558989 0.109796 -0.0177742 +0.00991096 0.0343624 0.00242681 +-0.0506409 0.0514954 0.0146147 +-0.0324809 0.117911 -0.0127388 +-0.0621631 0.164652 -0.0535815 +0.0025214 0.130289 0.0235241 +-0.0506513 0.150706 0.0125676 +-0.0175006 0.0829087 0.0576844 +-0.00809599 0.0347439 0.04196 +-0.0340295 0.0384544 -0.00643688 +-0.0694928 0.101384 0.0400561 +0.0446992 0.0776181 0.0241159 +-0.0935142 0.126862 0.0142561 +0.0248702 0.121138 0.0274186 +0.00114443 0.118463 -0.015597 +-0.053795 0.115431 0.0343764 +-0.0905823 0.131055 0.0352302 +-0.00177837 0.0811944 -0.0365591 +0.0316669 0.110076 0.0318865 +0.0355137 0.0902592 0.0391607 +-0.0911524 0.122908 0.0442317 +-0.0909787 0.118866 0.0441649 +-0.0647368 0.0350417 0.0261211 +-0.0694997 0.166373 -0.0203616 +-0.0256221 0.0450194 -0.0280788 +-0.0652445 0.171051 -0.0600934 +-0.0773393 0.152802 -0.0018868 +-0.00223434 0.118045 -0.0151238 +-0.0662482 0.063188 0.0243484 +0.0400602 0.0922366 -0.00959201 +-0.00562712 0.0451708 -0.0285409 +0.000501495 0.0457296 0.0472541 +-0.0123701 0.125297 0.0298351 +-0.0778681 0.101964 -0.00928868 +-0.0609537 0.123826 -0.00859412 +0.0224677 0.112582 -0.013341 +0.00921575 0.0781468 -0.0329463 +-0.0349236 0.126603 0.0011375 +-0.00878487 0.0784493 -0.0377777 +0.00650569 0.075888 0.056486 +0.0412418 0.0802411 -0.00774788 +-0.093262 0.128309 0.02526 +-0.0314363 0.171254 -0.00518552 +-0.0520579 0.0336325 0.0248414 +-0.0815026 0.127419 0.0524098 +-0.0894637 0.136534 0.031204 +-0.084288 0.111698 0.0438155 +0.0333653 0.0918289 -0.0171871 +-0.0324333 0.126109 0.00355422 +-0.00141447 0.0391026 0.0304627 +0.00110904 0.0340429 -0.0196452 +-0.0650297 0.138462 -0.00769967 +-0.015954 0.105864 -0.0221228 +-0.0523859 0.0626167 0.0314055 +0.026783 0.122575 0.00815739 +-0.0385209 0.128019 0.0130694 +-0.029395 0.125597 0.00758806 +-0.0328882 0.0666632 -0.0184721 +-0.0494036 0.13704 0.0193807 +-0.0782331 0.109897 -0.00456592 +0.0157741 0.036715 -0.0196413 +-0.0294956 0.0660091 0.0384906 +-0.0679029 0.105215 -0.0140793 +-0.0620463 0.158428 -0.0205873 +-0.0703503 0.159267 -0.00619145 +-0.0378682 0.104226 -0.0203027 +-0.0918252 0.118761 0.028299 +-0.0411447 0.163664 -0.0114686 +-0.0574975 0.0426993 0.0453715 +-0.0747471 0.147201 -0.0128585 +-0.0134963 0.0744967 0.0564394 +-0.054142 0.0722337 0.0402304 +-0.0642908 0.169609 -0.0607929 +-0.0154978 0.0977476 0.0489325 +-0.0800099 0.07203 0.0185532 +-0.0921132 0.115989 0.0103178 +0.00725505 0.0754138 -0.0341479 +0.0536301 0.0568087 0.0282148 +-0.0479854 0.0346149 0.0371396 +-0.00149257 0.0746611 0.0586297 +0.0203189 0.05934 -0.026848 +-0.0115998 0.0391898 -0.02633 +-0.0295596 0.0663471 -0.0284716 +0.00348965 0.105764 0.0424132 +-0.0703543 0.0703917 0.033048 +-0.0606347 0.0629111 -0.00512698 +-0.01408 0.166026 -0.0199736 +-0.061044 0.0400333 0.0227114 +-0.0810735 0.143155 -0.000828212 +-0.0617474 0.0766736 -0.0179709 +0.0217467 0.124535 0.0248197 +0.00507814 0.101571 -0.0215886 +0.0346034 0.0592134 0.0376264 +-0.0712039 0.0342165 0.00436442 +-0.0288195 0.0384506 0.0326078 +-0.053518 0.1534 0.0145047 +-0.0556759 0.0661408 -0.010195 +-0.0677895 0.175109 -0.0580246 +-0.0699291 0.0421822 0.0072491 +-0.0067422 0.0741543 -0.0369448 +0.0199779 0.0885978 -0.0258535 +-0.0488263 0.0941792 -0.0218889 +0.0343607 0.0505331 -0.00657713 +-0.0725404 0.162229 -0.0113532 +-0.00793663 0.0384098 0.0134736 +-0.0556415 0.043673 0.0216881 +-0.0145298 0.100345 0.0444168 +-0.0815281 0.1484 0.0374104 +-0.0387388 0.0753845 -0.0180569 +-0.0116442 0.0481633 -0.0303354 +0.0363562 0.0559126 -0.00774494 +-0.0652193 0.1682 -0.0598394 +-0.0776736 0.10169 -0.00957801 +-0.0196644 0.0494984 -0.0297043 +-0.0282432 0.0763981 0.0437868 +-0.0328471 0.033696 0.0126517 +0.00347146 0.128699 -0.00262952 +0.0461484 0.0806375 0.015174 +0.0337656 0.111689 0.027893 +-0.0271752 0.172675 -0.0185845 +-0.0693701 0.141497 -0.00893397 +0.0317719 0.115994 -0.000976469 +0.0347163 0.0544411 -0.00865089 +-0.0651886 0.172101 -0.0460875 +-0.0678768 0.1616 -0.0125361 +-0.0634522 0.0423282 0.0135276 +0.0601313 0.0581272 0.0101639 +-0.0107388 0.117999 -0.0150205 +0.0339646 0.0916099 0.0404552 +-0.0498374 0.138571 0.0183794 +-0.0934962 0.117401 0.0173034 +0.0383972 0.0491164 -0.00642484 +-0.0280195 0.0378733 -0.0295429 +-0.0146147 0.12166 -0.00880985 +0.0372641 0.0686531 0.0362559 +0.0239959 0.0549509 0.0433236 +0.00994394 0.0362916 0.0335003 +-0.0208017 0.0799082 -0.0390716 +0.0233991 0.0534151 -0.0239637 +0.00722024 0.0851796 -0.0327872 +-0.0639758 0.128226 -0.00858393 +0.0238189 0.124864 0.00990899 +0.00150975 0.0474485 0.049901 +-0.0361905 0.168183 -0.0140562 +-0.0174884 0.0801344 0.0573382 +-0.0918829 0.116106 0.0333156 +0.00614351 0.12581 -0.00755937 +0.0340287 0.115127 0.0194375 +-0.0908622 0.135106 0.0192089 +-0.000650637 0.0496936 -0.0307015 +-0.0856199 0.144636 0.00717286 +0.0438423 0.0804362 -0.00278861 +-0.00949487 0.0503088 0.0507661 +0.0271211 0.103444 0.039376 +-0.0386188 0.04066 -0.0277325 +-0.0654456 0.154232 -0.00436037 +-0.0264896 0.100224 0.0439794 +-0.0715324 0.144165 0.0446205 +-0.0694829 0.118967 0.0529378 +0.0378869 0.110163 0.00793964 +0.0353212 0.108669 0.0283742 +0.0601522 0.0581329 0.0151721 +-0.0542607 0.057796 0.0208407 +0.00222051 0.130562 0.00190808 +-0.0641033 0.156361 -0.011127 +0.0432299 0.0944972 0.0241641 +-0.0229686 0.033489 -0.025736 +-0.0221215 0.127119 0.0131583 +-0.0671797 0.0604061 0.0141816 +-0.0288776 0.0903901 -0.0295833 +0.0603694 0.0609168 0.00815448 +-0.0494359 0.138587 0.00541192 +-0.0023893 0.0424447 0.047211 +-0.0543474 0.135324 0.0319505 +0.0228597 0.125444 0.016672 +-0.0334812 0.0737514 -0.024477 +0.0348071 0.0781711 0.0398247 +0.0054972 0.0547598 0.0532635 +0.00645879 0.122419 -0.0119062 +-0.0438011 0.128754 0.0022734 +-0.0849152 0.0791131 0.00550947 +-0.0506838 0.0678366 -0.0132392 +0.0126337 0.110109 -0.0186257 +-0.0497701 0.140145 0.0153991 +-0.0724387 0.0819305 0.0395669 +0.0576036 0.0717386 0.0163116 +0.00802743 0.0346823 0.0237027 +0.00218868 0.098191 -0.0260404 +-0.0368205 0.162344 -0.00074381 +-0.070799 0.0908224 -0.0163205 +-0.0539828 0.0700164 0.038652 +0.0135945 0.128354 0.000408423 +-0.0264981 0.0959784 0.0437675 +0.0190214 0.118116 -0.0113006 +-0.0618485 0.153752 -0.0205795 +-0.0552085 0.151192 0.0284379 +-0.0266144 0.0408668 -0.0293519 +0.00698354 0.131641 0.013682 +-0.0316463 0.0595496 -0.0164023 +-0.0758985 0.159659 -0.0269354 +-0.0491601 0.160603 -0.00598464 +-0.00858383 0.0384847 0.0096485 +-0.0717673 0.146065 -0.0213605 +-0.0899696 0.15095 0.0147905 +-0.00955085 0.0385956 0.00389466 +-0.0607249 0.0737695 -0.0169262 +-0.0751542 0.0995011 0.0375123 +-0.0707959 0.0850638 -0.0167146 +-0.0312047 0.123257 -0.00431908 +-0.053995 0.0675039 0.0372692 +-0.0419532 0.0345214 0.0385087 +-0.0289695 0.0380956 -0.0297496 +-0.0121936 0.163667 -0.0136225 +0.021294 0.0721108 -0.027322 +0.0597965 0.0678036 0.00914167 +-0.0657015 0.0736405 -0.0152375 +0.00697022 0.12731 -0.00520393 +0.033357 0.100796 0.0361067 +0.0587791 0.0686289 0.0199155 +0.00149398 0.0394449 0.0343588 +-0.0875531 0.12123 -0.000692815 +-0.0744527 0.154114 -0.0209063 +-0.0172261 0.0356447 0.0515267 +-0.0200013 0.0389743 0.053287 +-0.0569508 0.0343746 0.0319473 +-0.0184875 0.0829081 0.0576141 +-0.019368 0.183116 -0.0157888 +-0.0626506 0.153382 -0.0318715 +-0.00943219 0.095325 -0.0330289 +0.0431395 0.100108 0.0121576 +-0.0608162 0.0881975 -0.019441 +0.0357777 0.070014 0.0376374 +0.0505254 0.0735568 0.0151501 +0.0307633 0.0476275 0.0336614 +0.0294554 0.0416168 0.02991 +-0.0611913 0.173613 -0.0615062 +-0.0146115 0.109635 -0.0201085 +0.0379445 0.0686366 0.0354907 +-0.076675 0.154077 0.000107436 +-0.0315189 0.0351239 -0.0306591 +-0.0768434 0.109781 0.0434593 +-0.0522791 0.0490314 0.0356585 +-0.0380005 0.12652 0.0191796 +-0.0861323 0.103534 0.00440203 +-0.0659084 0.106679 -0.0142087 +0.000468869 0.0388702 -0.00172096 +-0.0623487 0.141045 -0.00649873 +-0.0484952 0.0862244 0.0454118 +-0.0685451 0.170527 -0.0328985 +-0.037499 0.101465 0.0412127 +0.0274201 0.0431121 -0.00573463 +-0.0197554 0.158352 -0.00754965 +-0.0567366 0.0753362 -0.0185878 +0.0533817 0.063336 -0.00140725 +0.0135006 0.105771 0.0435499 +-0.0631905 0.166285 -0.0395881 +-0.0932173 0.122834 0.0272862 +-0.0284888 0.0396421 0.053637 +-0.0134794 0.0559661 0.0512091 +-0.04424 0.130203 0.0124253 +0.0196407 0.0940896 -0.0236062 +-0.0625219 0.151129 0.0359075 +-0.0585008 0.0732388 0.0410714 +0.0608111 0.0651191 0.0151635 +-0.0275116 0.0560234 0.0370088 +-0.0127931 0.0799092 -0.038653 +-0.0544725 0.0478754 0.0402183 +-0.0905041 0.147099 0.0259896 +0.0291224 0.0877617 -0.0209279 +0.0381679 0.0993665 0.0307411 +0.00549435 0.0474709 0.0500045 +-0.0842531 0.102059 -0.0016008 +0.0164869 0.128389 0.00575868 +-0.043156 0.162156 -0.0100947 +0.0445553 0.0846952 0.000180444 +0.0409145 0.07739 -0.0077683 +0.0297353 0.111221 -0.00987421 +-0.0220481 0.0379707 0.0182323 +-0.0636401 0.0337302 0.00992182 +-0.0277909 0.0796672 -0.0363416 +-0.0247513 0.0944605 0.0453863 +-0.0291577 0.0733109 -0.0335988 +-0.0264744 0.0486202 0.0485825 +-0.0654948 0.104238 0.0403184 +-0.054309 0.153692 0.0171048 +0.000886988 0.0365316 0.0205866 +0.025787 0.114054 0.0339562 +-0.0624998 0.091833 0.0450322 +-0.0825753 0.107428 -0.000626511 +-0.0879726 0.100935 0.0073995 +-0.0849555 0.110375 0.0243559 +-0.00450509 0.0815118 0.0573962 +0.0411647 0.0886413 -0.00977915 +0.00923376 0.0823418 -0.0323881 +0.0250818 0.0983923 -0.0201688 +-0.0460388 0.0353834 -0.0203139 +-0.0563344 0.154371 0.0236088 +-0.0786725 0.15564 0.0171569 +-0.0174933 0.120917 0.0332266 +-0.0405771 0.0447491 -0.0223069 +-0.0706839 0.0363372 -0.00115986 +-0.0827485 0.134001 0.0496722 +-0.0566419 0.0336495 -0.0102846 +-0.0932956 0.12823 0.014251 +-0.0183957 0.116542 -0.0154107 +0.03698 0.0590759 0.0339965 +-0.0709427 0.132583 -0.00826816 +-0.0697213 0.0778913 -0.0154943 +-0.0222445 0.159024 -0.0114139 +-0.0571999 0.0684533 0.0375014 +-0.04663 0.0533425 -0.0102323 +0.00628325 0.0668147 -0.0324472 +-0.0477443 0.0767654 -0.0182192 +0.000336625 0.0525175 -0.0304496 +-0.0562455 0.0345922 0.0440034 +-0.00249349 0.0474079 0.0491587 +-0.00849662 0.115566 0.0401952 +-0.0346349 0.176996 -0.009991 +-0.0315471 0.0665587 -0.0224416 +-0.0114919 0.121016 0.0357517 +-0.00348929 0.0884115 0.0568027 +-0.0275554 0.0689002 0.0398598 +0.0463861 0.080656 0.0111753 +-0.0335046 0.109774 0.0374515 +-0.0104184 0.179993 -0.0295246 +0.0299649 0.0370453 0.0224182 +-0.0229027 0.109901 -0.0203838 +0.0326144 0.117295 0.0103313 +0.0369028 0.0954111 -0.0108822 +-0.0564742 0.041367 0.0464242 +-0.0770729 0.168746 -0.0303374 +-0.0310065 0.124592 0.0202545 +-0.06762 0.17339 -0.0440641 +-0.0124743 0.0632507 0.0548154 +-0.06879 0.067714 0.0304363 +-0.0188136 0.124392 0.0261122 +-0.0775236 0.155819 0.0175602 +-0.0744868 0.14835 0.0408614 +-0.0798509 0.120721 -0.00541034 +-0.0474977 0.0747299 0.0422594 +-0.0819076 0.08016 -0.00254028 +-0.0104535 0.0366522 -0.0168147 +0.0107598 0.0346122 0.0387698 +-0.0618853 0.158437 -0.0215849 +-0.0248668 0.103031 -0.023615 +0.0521945 0.0697716 0.0245573 +0.0156704 0.0936059 -0.0251021 +0.0371318 0.111041 0.00479819 +-0.0835634 0.0897492 -0.00557879 +0.00648846 0.118239 0.0378444 +-0.0454996 0.0464888 0.0408011 +0.00251072 0.0388788 0.0260522 +-0.0757603 0.10082 0.036651 +-0.072674 0.131225 0.051196 +-0.0107806 0.0770662 -0.0381287 +-0.0336363 0.153436 -0.00674709 +-0.0843022 0.0938821 0.0298739 +-0.00957953 0.177197 -0.0268263 +-0.06621 0.148552 -0.030869 +-0.0367939 0.127143 0.000444502 +0.0450752 0.0819431 0.00117926 +0.00252922 0.0387278 -0.0124032 +0.0124259 0.130345 0.00996559 +-0.039483 0.112566 0.0355031 +-0.0896451 0.11724 0.00430849 +-0.0307561 0.0876495 -0.0285591 +-0.0336555 0.0363317 0.0490618 +0.00481949 0.0349074 0.0372909 +0.0324749 0.095557 0.0400886 +-0.0601974 0.126918 0.041055 +0.0561271 0.0494063 0.0121912 +-0.0663732 0.0796127 0.0418746 +-0.0634873 0.105626 0.040045 +-0.0348887 0.174114 -0.0129217 +-0.0331172 0.123673 -0.00477506 +-0.0158191 0.0855498 -0.0389623 +-0.0630684 0.138136 0.036884 +0.00839558 0.0418967 -0.0238735 +-0.000234213 0.0957245 -0.0313684 +-0.00270805 0.0387067 0.00335713 +-0.0066107 0.0434378 -0.0261152 +0.0267348 0.0889072 0.0458132 +-0.057498 0.0762057 0.0428357 +-0.0559977 0.128155 -0.00607843 +-0.0652856 0.176792 -0.0608019 +-0.0847322 0.10481 0.00139005 +0.0045205 0.0842507 0.0571459 +-0.0540417 0.148675 -0.00217424 +0.00157845 0.0388465 -0.0127005 +-0.0649294 0.123847 -0.00887936 +0.0268943 0.0906576 -0.0219805 +-0.0692389 0.149629 -0.0402111 +0.0424058 0.101483 0.00416631 +-0.069135 0.0354547 0.0122501 +-0.0311414 0.168206 -0.0166543 +0.0247254 0.0405634 0.0363023 +-0.035656 0.0591967 -0.0115208 +-0.0492298 0.13342 0.00108021 +0.0186953 0.0943115 -0.0238444 +-0.0632815 0.159908 -0.0475928 +-0.0744952 0.144184 0.0450216 +-0.0273351 0.0750142 0.0443436 +0.0129485 0.0726239 0.0538836 +-0.0256504 0.178665 -0.00908499 +-0.0152817 0.126335 -0.00175389 +0.0171854 0.035921 0.00432788 +0.00536983 0.0385261 0.026955 +-0.069701 0.0749104 -0.0135814 +-0.0936513 0.125496 0.0142597 +-0.0218218 0.0854612 -0.0381675 +-0.0670338 0.0819342 0.0426575 +-0.0637771 0.0824308 -0.0191299 +-0.0579197 0.0410941 0.0197057 +0.004329 0.114453 -0.0192954 +-0.0743852 0.111313 0.0463698 +0.0153242 0.0566704 -0.0288596 +0.0201589 0.0349933 -0.00358051 +-0.0674387 0.0336478 0.00564073 +0.0380425 0.109755 0.0161689 +0.0214264 0.0348625 -0.00133145 +0.0129483 0.0405423 0.0447572 +-0.00171529 0.0627358 -0.0345403 +-0.0206569 0.0494682 -0.0293042 +0.0369479 0.0784891 -0.0137448 +-0.0877279 0.139146 0.00920485 +-0.0228745 0.0383806 -0.00412065 +0.0407791 0.105635 0.00716484 +-0.0164884 0.161116 -0.0081783 +0.0261701 0.115347 0.0327443 +-0.0171143 0.0393698 0.0395766 +0.0364251 0.0840505 -0.0167267 +-0.0413094 0.0336719 -0.0183114 +-0.00449481 0.0619627 0.0557718 +0.0354002 0.054813 0.0334165 +0.0257124 0.0795754 0.0477924 +-0.0900689 0.132434 0.0392074 +0.0111597 0.124256 -0.00791398 +0.023574 0.105697 0.0395934 +0.0172046 0.061784 0.0493931 +-0.0738846 0.110669 -0.00843945 +0.00601824 0.128477 0.0276707 +-0.0581623 0.155642 0.0142378 +-0.046474 0.0903329 0.04369 +-0.0204963 0.0988407 0.0444811 +0.0448392 0.0847511 0.0231667 +-0.0246346 0.0464142 -0.0272665 +-0.0164056 0.0347921 0.0489909 +-0.048358 0.146267 0.00883601 +-0.0626778 0.0407451 0.0424121 +-0.06586 0.154377 -0.00304604 +0.0375072 0.103901 -0.00584413 +-0.00221994 0.0380783 -0.0146251 +0.00247871 0.110023 0.0425049 +0.0588331 0.0552392 0.0181818 +-0.0156079 0.0352742 -0.0184368 +-0.0112854 0.0344473 -0.0186905 +-0.0170355 0.0338392 -0.0211402 +-0.0137571 0.128142 0.00234571 +0.0353694 0.082169 0.0388786 +-0.065182 0.160968 -0.0576695 +-0.0324895 0.0874934 0.0434306 +-0.0637445 0.0781022 -0.0180675 +-0.0882379 0.0914593 0.00646904 +0.0256941 0.120543 -0.00190068 +-0.0750751 0.149943 -0.025867 +-0.0477253 0.135673 0.0140062 +-0.0678845 0.116524 -0.00880656 +-0.0627671 0.15529 -0.013592 +-0.0588282 0.0408079 0.0456406 +-0.056691 0.0506774 -0.00137882 +-0.0828622 0.0910525 -0.0066104 +-0.0499126 0.0515141 0.0166499 +-0.0490107 0.146266 0.00962371 +0.0122318 0.130219 0.0070475 +-0.0116803 0.0570084 -0.0342026 +-0.0651676 0.167884 -0.0330971 +-0.0730453 0.0699885 -0.00346826 +0.0174821 0.0990004 0.0469682 +-0.0908453 0.133761 0.025216 +-0.0657306 0.150277 -0.0347821 +-0.0671422 0.159475 -0.0561779 +-0.00377564 0.078412 -0.0370359 +-0.0617811 0.042326 0.0146867 +-0.0252077 0.0348536 0.0435448 +-0.028493 0.0602587 0.0370952 +-0.08903 0.119932 0.00232561 +-0.0345174 0.105629 0.0392495 +-0.0234134 0.181486 -0.0190275 +-0.0664685 0.0611724 0.00451786 +0.0367619 0.0414833 0.0270934 +-0.0275613 0.121213 -0.00819283 +0.0347392 0.0848817 0.0397697 +-0.0655835 0.0626949 -0.00273961 +-0.0187525 0.0671388 -0.037784 +-0.0904123 0.13106 0.0392156 +0.0183728 0.0521803 -0.0265242 +-0.0394837 0.113931 0.0345962 +-0.050497 0.0848226 0.0453947 +-0.026736 0.125755 0.00710307 +-0.0284884 0.0890334 0.0453918 +-0.0441667 0.0657175 0.0402548 +0.0109368 0.035027 0.0276086 +-0.0219243 0.0335307 -0.0255712 +-0.0865855 0.100865 0.00437928 +-0.0114057 0.038823 -0.00778731 +-0.0606205 0.136712 0.0351771 +-0.0938957 0.124187 0.0252761 +-0.0877217 0.151511 0.024071 +0.0027861 0.0392982 -0.00725238 +-0.0435747 0.127942 -0.00117905 +0.00626863 0.114136 -0.0189815 +-0.0182416 0.0386382 0.0310248 +-0.065785 0.145733 -0.0198954 +-0.0867571 0.0833567 0.0144816 +0.0263294 0.0517767 -0.02097 +0.0205436 0.0357642 -0.00368285 +-0.0174561 0.0544373 0.0497557 +0.0051136 0.11017 -0.0202785 +0.0320036 0.0972394 -0.014969 +0.018368 0.0537078 -0.0275601 +0.00449367 0.115547 0.0400425 +0.030957 0.0564285 0.0393343 +-0.0480871 0.166778 0.00155196 +-0.0374511 0.122567 -0.00961353 +-0.067466 0.154933 0.00219081 +-0.0645473 0.0334176 0.0010517 +-0.0507826 0.0530079 0.0196214 +-0.0269873 0.0549465 0.0375414 +-0.0318114 0.0361324 -0.0187 +0.0211923 0.12581 0.0217553 +-0.0485738 0.111377 -0.0178292 +-0.0790938 0.10996 -0.003593 +0.0410408 0.0408917 0.00130956 +-0.0171973 0.174198 -0.0240623 +-0.0136738 0.0526181 -0.0325173 +-0.0194987 0.0828823 0.05729 +-0.00149547 0.119691 0.0381347 +0.0125362 0.127772 -0.00169738 +0.00352032 0.0772514 0.0561756 +-0.0037108 0.0392109 0.0335024 +-0.0682887 0.164315 -0.0170259 +-0.0861823 0.107654 0.00936346 +0.0116633 0.0616767 0.0519085 +-0.0828359 0.104706 -0.00261356 +-0.0473623 0.129578 0.0262098 +0.0143608 0.0508459 -0.0270896 +-0.0265586 0.171236 -0.0104749 +0.0203688 0.0459169 -0.020834 +-0.0404996 0.0591463 0.0404229 +-0.0164937 0.0758406 0.0558352 +-0.00649647 0.0898144 0.056995 +-0.070489 0.118975 0.0531649 +-0.0665486 0.169315 -0.0336077 +-0.0869443 0.101766 0.0237835 +0.0413201 0.104267 0.012164 +-0.0705201 0.0646959 0.0221381 +-0.0345088 0.104256 0.0402356 +0.0590657 0.0691634 0.0182335 +0.0274527 0.103904 -0.0160338 +-0.0321732 0.0461161 0.0457813 +-0.0446011 0.0519723 -0.0106716 +-0.0932418 0.125562 0.0272746 +-0.0458642 0.128671 0.00011454 +-0.0885465 0.0902329 0.022415 +-0.0693724 0.136902 0.0471868 +0.0383558 0.102292 -0.0062663 +-0.0638617 0.125566 0.0463833 +-0.017504 0.0870094 0.0567302 +-0.0370734 0.0393951 0.0451959 +0.00329134 0.119473 -0.0147093 +-0.0543235 0.0334648 0.00849253 +0.0274945 0.0381011 -0.00197122 +-0.0703836 0.151592 -0.0450749 +0.0441667 0.0973563 0.00616912 +0.0240844 0.0547426 -0.0237664 +-0.015779 0.0770791 -0.0385675 +-0.0731035 0.0667848 0.0215468 +0.0455074 0.0569933 0.0321208 +-0.0438752 0.128361 0.000408951 +-0.0622566 0.0709345 0.0378148 +-0.0713089 0.156055 0.0109968 +0.0323876 0.047596 -0.00623106 +-0.0610541 0.068813 0.0363796 +-0.0175437 0.119111 -0.0121224 +-0.0136792 0.0541002 -0.0332811 +-0.0477406 0.135604 0.0113959 +-0.0709176 0.112214 -0.00951227 +0.0301974 0.0887542 -0.0200097 +-0.0734581 0.168 -0.0440151 +-0.0685258 0.165031 -0.0185494 +-0.0264962 0.0690788 0.0415599 +-0.0249134 0.0383716 -0.00452352 +-0.086697 0.114875 0.0460769 +-0.0752073 0.156095 0.0183637 +-0.0189411 0.0376177 0.0530488 +-0.0634886 0.064446 0.0291098 +-0.0261594 0.066324 0.0406106 +-0.0142604 0.0974009 0.0506069 +-0.0316679 0.0763713 -0.0315414 +-0.040787 0.0855384 -0.021437 +0.0590343 0.06983 0.00945078 +-0.07763 0.165322 -0.0259443 +-0.0631195 0.176032 -0.0554618 +-0.0918958 0.129686 0.0292517 +-0.029505 0.0545565 0.0362962 +-0.0356809 0.123888 -0.0070042 +0.0421291 0.070468 -0.00580336 +0.0297749 0.0920783 -0.0194766 +-0.0415439 0.148326 -0.00168489 +-0.090059 0.136447 0.0142016 +-0.0555057 0.0946 0.044463 +-0.0945025 0.125547 0.0202583 +-0.0304869 0.0532061 0.0367531 +0.00830607 0.0917456 -0.031199 +0.0182274 0.125477 -0.00123802 +0.0138055 0.0712841 0.0533593 +0.0294478 0.0506302 0.0370841 +-0.0802909 0.104732 0.0311813 +0.0308738 0.115323 0.0282321 +-0.0889738 0.137888 0.0281941 +-0.0750897 0.149941 -0.0248696 +0.0395014 0.0469731 0.0315971 +-0.0599935 0.0586398 0.0172334 +-0.0790056 0.166641 -0.0359617 +-0.00233373 0.114874 -0.0177321 +-0.0241436 0.180147 -0.0104229 +-0.0746876 0.0700138 0.0272066 +-0.00503592 0.13043 0.00494647 +-0.069435 0.179317 -0.0579979 +-0.0896062 0.137812 0.0131974 +-0.0625358 0.155244 -0.0346054 +-0.071543 0.155755 0.00800576 +-0.0746181 0.165272 -0.019163 +-0.0386347 0.0548667 -0.0110053 +0.00350742 0.103001 0.0436938 +-0.0629079 0.15056 -0.0255866 +0.0200283 0.0371524 -0.00668325 +-0.0375331 0.127856 0.0134298 +-0.075576 0.155851 0.0124034 +-0.0145239 0.118305 0.0371093 +-0.0528711 0.15259 0.0147483 +-0.0639569 0.158297 -0.0475943 +-0.0437953 0.0869983 -0.0218056 +0.0183 0.0651194 -0.0285252 +0.0410434 0.0689808 -0.00777311 +-0.0391241 0.157933 0.00465789 +-0.0617079 0.155317 -0.0205813 +0.049194 0.055373 0.030576 +-0.0577821 0.0826022 -0.0210434 +0.00750154 0.123796 0.0339733 +-0.0844011 0.0777797 0.0105147 +-0.0508742 0.137048 0.0234112 +-0.0487311 0.13178 0.0269763 +-0.0224768 0.123487 0.0248086 +0.0572102 0.0550739 0.00417234 +0.0523558 0.0647992 0.0281407 +-0.0804668 0.131637 0.0521945 +0.0276827 0.0480336 -0.0156964 +-0.0121824 0.178673 -0.0292354 +-0.0228778 0.10587 -0.0225138 +-0.0644637 0.0743344 0.0396953 +-0.0655821 0.153706 -0.0431373 +-0.0176845 0.0525387 -0.0318817 +0.0256228 0.0363687 8.49366e-07 +-0.0208533 0.0866413 0.055877 +-0.0490886 0.157599 -0.00632625 +0.00958152 0.0417197 0.0451866 +-0.0135001 0.0800899 0.0570677 +-0.0885594 0.112819 0.0222051 +0.0440561 0.0945388 0.0201582 +0.00630898 0.0624816 -0.0315869 +-0.0560997 0.155362 -0.00113519 +-0.0238123 0.0867774 -0.0372362 +-0.0711896 0.155374 -0.0449035 +0.018728 0.0549999 0.0480114 +-0.0696134 0.172257 -0.054028 +-0.00359831 0.101107 0.0440537 +-0.033095 0.0723179 -0.02347 +0.0338305 0.107861 -0.00824999 +-0.0354812 0.0383051 -0.00290933 +-0.0238593 0.0838986 0.0547079 +0.0239371 0.103424 0.0418106 +-0.076687 0.14724 -0.00686649 +-0.0113442 0.129847 0.0112634 +-0.0595215 0.131137 0.0385262 +-0.00250336 0.0633801 0.0564795 +-0.0765967 0.152807 -0.00988734 +0.00617007 0.126444 0.0306412 +0.0264293 0.0400385 -0.00421056 +-0.0261224 0.165258 -0.0166522 +-0.00669164 0.129496 0.00145082 +-0.0531001 0.154605 -0.00338641 +0.0347186 0.113797 0.00249877 +-0.0746345 0.0660496 0.0075612 +-0.0897609 0.0915993 0.0164407 +-0.0848984 0.0965537 0.0289739 +-0.0217829 0.111029 -0.0195757 +-0.0890662 0.123985 0.0032876 +0.0609254 0.0637423 0.0131584 +-0.0495476 0.147557 -0.00269468 +-0.00609162 0.0391352 -0.0126175 +-0.047607 0.144918 0.0010701 +-0.0484709 0.165547 -0.00491912 +0.0489576 0.0466396 0.0248167 +-0.0391315 0.160685 -0.012118 +-0.0530423 0.14778 0.0224018 +-0.0471085 0.0683456 0.0397676 +-0.0785029 0.128864 0.0532728 +0.0368255 0.109713 0.0241821 +0.0163171 0.0686116 0.0516854 +-0.0729482 0.0914984 0.0411605 +-0.0805357 0.113778 0.0465863 +0.0302378 0.0727042 0.0419554 +-0.0625354 0.122703 0.0447625 +-0.0615083 0.170965 -0.0565878 +-0.0124852 0.0659775 0.0542376 +0.0219313 0.0605513 0.0474343 +-0.048186 0.135579 0.00839494 +-0.014696 0.0585192 -0.0354314 +-0.0818834 0.109932 0.0368633 +-0.0564976 0.101562 0.0427397 +-0.0692156 0.0343564 -0.00463486 +-0.0924819 0.125444 0.00927262 +-0.0116015 0.0406252 -0.0263738 +0.000388646 0.0448955 -0.0263577 +-0.0474886 0.05462 0.0367747 +-0.0150651 0.12575 -0.00315467 +-0.0225002 0.104414 0.0430095 +-0.016108 0.038364 0.00641286 +-0.0474972 0.105664 0.0404447 +0.053572 0.0650953 0.0274823 +-0.068963 0.0874301 0.0429809 +-0.0206158 0.0422474 -0.0286271 +-0.0745126 0.131657 0.0521168 +0.0246516 0.122175 0.000230276 +-0.00982514 0.16696 -0.0220459 +-0.00885716 0.0385311 0.024037 +-0.0568241 0.063612 0.0312362 +-0.0787856 0.109366 0.039802 +0.0392221 0.075321 0.0338531 +-0.0725057 0.102685 0.0380563 +0.0318729 0.0380045 0.0237472 +-0.0704322 0.13832 0.0474328 +-0.0325018 0.177105 -0.00443384 +-0.0226059 0.0381278 0.0251854 +-0.00949201 0.129843 0.00617837 +-0.00878563 0.110674 -0.0212403 +0.0347324 0.0882263 -0.0174421 +-0.046782 0.0841151 -0.0215173 +-0.0692662 0.0692944 0.0324707 +0.00925419 0.0696192 -0.0318888 +-0.0303184 0.0423041 0.0510935 +-0.0780856 0.0784826 -0.00760345 +0.0256389 0.0929167 0.0460121 +0.00457646 0.108164 0.0418882 +-0.0519222 0.0461016 0.019678 +0.00234204 0.0367065 0.0225428 +0.0457266 0.0847913 0.00519644 +0.0292205 0.0857953 -0.020938 +-0.0196964 0.0384682 0.0290787 +0.0127826 0.0926962 0.0520031 +0.0390362 0.0980073 0.030266 +0.0186124 0.127837 0.0122439 +-0.0535608 0.0430661 -0.00900679 +-0.0509276 0.0346131 0.0417321 +0.0233086 0.0634336 -0.024957 +0.00850697 0.0546686 0.0524774 +-0.0275662 0.123979 -0.00112939 +-0.0688326 0.13265 0.047942 +0.0112159 0.0922395 -0.029689 +0.00233442 0.0539469 -0.0306143 +-0.0446508 0.040942 -0.0182992 +-0.00948977 0.114167 0.0408028 +0.0254079 0.10205 -0.0180571 +-0.0850056 0.146006 0.00617966 +-0.00850241 0.0870443 0.0572609 +0.0097783 0.1251 0.0319006 +-0.0222638 0.126605 0.016039 +-0.0722117 0.0348867 0.00176609 +-0.0327045 0.111423 -0.0179721 +-0.057835 0.0897878 -0.0213715 +-0.076573 0.153595 0.0311713 +0.0595629 0.058084 0.0191786 +-0.0323163 0.155148 0.000487548 +0.0120506 0.0505153 0.0488388 +-0.0524497 0.140085 0.0234103 +-0.0325359 0.172727 -0.00270207 +-0.0711683 0.149278 -0.039104 +-0.0641214 0.155412 0.0266328 +0.0288394 0.112544 -0.00929606 +-0.0217358 0.0384567 0.028668 +-0.0719124 0.168014 -0.0470137 +-0.0448486 0.0351369 -0.0234128 +0.0159855 0.12897 0.0112743 +0.0311432 0.0373381 0.0223917 +-0.000793766 0.0867716 -0.0355698 +-0.0900654 0.132428 0.033223 +-0.0935895 0.122834 0.0262964 +-0.0520638 0.0723523 0.0405753 +-0.0111299 0.129809 0.0171219 +-0.0491641 0.0344528 0.0317811 +-0.0849325 0.0938555 0.0290926 +-0.0809703 0.132422 -0.00393108 +-0.0887798 0.140493 0.0370948 +-0.0577868 0.0840301 -0.0211707 +-0.0814849 0.0872077 0.0329213 +0.0191348 0.102061 0.0453843 +0.0573171 0.0523102 0.00718519 +0.039991 0.0847392 0.0332858 +-0.0668403 0.0335301 0.004077 +-0.0117893 0.0392416 0.0372019 +0.0216437 0.120011 -0.00733339 +-0.0125093 0.0883992 0.0567932 +-0.0378236 0.125803 -0.00505851 +-0.0750347 0.154671 0.0286993 +-0.0887093 0.112351 0.0387402 +-0.0638899 0.102518 -0.0176142 +-0.0600535 0.138395 -0.00620678 +-0.0103882 0.129888 0.00873113 +-0.0610188 0.119808 0.0416066 +0.0158574 0.104091 -0.0202309 +-0.0839121 0.122095 -0.00374203 +-0.0841686 0.143365 0.0409129 +-0.00166671 0.12799 -0.00382866 +-0.0434723 0.0647942 0.0406198 +0.0406639 0.0815903 -0.00978474 +-0.0652464 0.154114 0.00157024 +-0.0257535 0.0740897 -0.0368116 +-0.0739579 0.13841 -0.00677972 +-0.0288788 0.0592582 -0.0244095 +0.0093177 0.0926652 -0.0301396 +-0.0452267 0.150119 -0.00491516 +-0.0319894 0.0384633 -0.00603174 +-0.0794952 0.0854073 -0.00956797 +-0.0675492 0.129835 0.0480321 +-0.0523266 0.033478 -0.00194369 +-0.00450192 0.0718383 0.058171 +-0.0535372 0.0578641 0.0215172 +-0.0140108 0.0596764 0.0527295 +-0.000532268 0.111266 -0.0199168 +0.0523683 0.0540101 0.0281247 +0.0211966 0.123092 -0.002693 +-0.00468835 0.0598784 -0.0344633 +-0.0718785 0.102239 -0.0132694 +-0.0678239 0.15109 -0.0436673 +0.0350895 0.0686836 0.0383949 +0.0422361 0.101506 0.0151693 +0.0317521 0.0794454 -0.0197442 +-0.0577724 0.0796775 -0.0200459 +-0.0461631 0.0335506 -0.0117706 +-0.0827169 0.105982 0.0279083 +-0.0922534 0.122854 0.0424865 +0.0128317 0.0712714 0.0536973 +-0.0126798 0.126321 -0.00380105 +-0.00116162 0.0980337 0.0521962 +-0.0814909 0.0788596 0.028943 +-0.0501013 0.15611 -0.00554414 +0.00939521 0.0609325 -0.0302492 +-0.030101 0.160758 -0.0141091 +-0.031497 0.117989 0.0308563 +0.0231755 0.0916964 -0.0230758 +0.0434109 0.0987186 0.0151565 +-0.0514982 0.108428 0.0386132 +-0.0644896 0.0833289 0.0440861 +-0.0238622 0.101613 -0.0238665 +0.04258 0.0422624 0.0239479 +0.0354547 0.103863 -0.00997386 +0.0217345 0.0994968 0.0456553 +-0.0743457 0.168929 -0.0264214 +0.01504 0.0343531 -0.00213727 +0.00148487 0.0399885 0.0464307 +0.0273636 0.0699427 0.0430425 +-0.0548013 0.086928 -0.0216118 +-0.0729344 0.0901459 0.0411907 +0.0305961 0.110839 -0.00946183 +-0.0721093 0.0846859 0.0405598 +-0.067036 0.180898 -0.0568882 +0.0496382 0.068363 0.00147832 +-0.0149904 0.165173 -0.0188028 +-0.0928971 0.117368 0.0123132 +-0.000378579 0.101174 0.0451223 +-0.00167056 0.0392225 0.0339103 +0.0308479 0.0567691 -0.0158074 +0.00821609 0.0823703 -0.0328688 +0.0179771 0.0393777 0.0432522 +-0.0917891 0.141969 0.0171701 +0.0284614 0.0398271 -0.00325429 +-0.0273719 0.0335777 -0.022929 +-0.0799767 0.138308 -0.00390962 +0.0224205 0.0519815 -0.0241272 +-0.0206006 0.0393656 -0.0285093 +-0.075081 0.147222 -0.0118498 +-0.0748806 0.0992858 -0.0126164 +0.0126717 0.127043 -0.00291981 +-0.0321779 0.0474216 0.0442941 +0.0248435 0.0822524 0.0483141 +-0.087169 0.0964235 0.0255876 +-0.00114332 0.0356309 -0.0159104 +-0.0674627 0.138295 0.0446438 +-0.0656974 0.169193 -0.0361564 +-0.065794 0.155512 0.00862557 +0.0346025 0.0754478 0.0394941 +-0.0145323 0.043279 0.0510718 +-0.0739879 0.139879 -0.00672352 +-0.0921938 0.132347 0.0162256 +-0.077508 0.174998 -0.0490226 +-0.0161182 0.180144 -0.0199393 +0.0442692 0.0973579 0.00816486 +-0.0885535 0.112746 0.0331115 +-0.0527601 0.0447727 0.0186838 +-0.0301237 0.12585 0.013192 +-0.0359512 0.151053 -0.00163407 +-0.0579079 0.121934 -0.00872095 +-0.0709562 0.158172 -0.0439179 +-0.00996463 0.114432 -0.0172214 +-0.0308542 0.0986541 -0.0229751 +-0.0199407 0.0381449 0.0130842 +-0.0439068 0.129921 0.011069 +0.0290675 0.120111 0.00471365 +-0.0203588 0.175699 -0.0155519 +0.0542673 0.0491964 0.0212031 +-0.0348545 0.0986254 -0.0227182 +0.0413986 0.0830578 -0.00877387 +-0.0554939 0.0477978 0.0398952 +-0.0760774 0.166574 -0.0390172 +0.0438486 0.0846749 0.0261721 +0.0021495 0.0388151 -0.00319944 +0.04114 0.104231 0.00317036 +0.0165359 0.0912212 -0.0265781 +-0.0518469 0.0545626 0.0286406 +-0.0568589 0.0562507 0.00563881 +-0.0383911 0.127983 0.00280515 +-0.0857603 0.130763 -0.000714461 +-0.0173678 0.0389666 0.0345056 +-0.0266954 0.125077 0.00273937 +0.0143393 0.0349605 0.0410018 +0.0132369 0.0709965 -0.0314873 +-0.0317622 0.0338243 0.0127586 +-0.0767072 0.0724697 0.0281768 +-0.0694593 0.040787 -0.000292884 +0.013984 0.129601 0.0176686 +-0.00527436 0.124342 -0.0098488 +-0.0749724 0.149924 -0.0268701 +-0.0188238 0.0855077 -0.0385626 +-0.0577531 0.141417 -0.00374252 +-0.0506075 0.0335251 -0.00346549 +-0.0105008 0.103039 0.0436514 +-0.062498 0.0847471 0.0443617 +-0.0166725 0.0495705 -0.0306349 +-0.0368813 0.108512 -0.0198737 +0.0510305 0.0733741 0.0168194 +-0.0275083 0.112548 0.0360564 +-0.0636421 0.0627085 -0.00368166 +0.0411669 0.104244 0.0141607 +-0.00149973 0.0965741 0.0536819 +-0.0288186 0.0862428 0.0454609 +-0.0526183 0.0343668 0.0293685 +-0.0601235 0.15512 0.0251504 +-0.0378644 0.111663 -0.0181901 +0.0344602 0.0726275 -0.0157808 +-0.0144826 0.0530653 0.0501401 +-0.0700881 0.131265 0.0496481 +-0.0878883 0.0914318 0.00546674 +-0.0415923 0.0491549 -0.0111971 +0.0234288 0.0618809 0.0460892 +-0.0630663 0.151874 -0.00782908 +-0.0866506 0.128453 0.0480393 +-0.0781275 0.152854 0.000107941 +-0.0106285 0.174518 -0.0286758 +-0.0596993 0.0345337 0.0416145 +-0.0579832 0.0466328 -0.00336399 +-0.0265008 0.124041 -0.00116405 +-0.0254725 0.0400777 0.0541415 +-0.0178664 0.12824 0.013233 +-0.0206926 0.0385034 0.0288434 +-0.0534934 0.0747559 0.0420439 +-0.0652623 0.158339 -0.0115587 +-0.0767656 0.152802 -0.00889022 +0.0245199 0.0520168 0.0405174 +0.0264125 0.0450979 -0.0096842 +-0.012488 0.107228 0.0430572 +-0.078668 0.170753 -0.0430283 +-0.0625286 0.164689 -0.038593 +-0.0241791 0.159685 -0.00173809 +0.00849261 0.092349 0.0531984 +-0.0759472 0.132533 -0.00707033 +-0.0806057 0.0720192 0.00754007 +0.00646347 0.117501 -0.0166002 +-0.0178266 0.0947205 0.0526193 +0.000481761 0.10723 0.0430499 +-0.013526 0.162053 -0.0127433 +-0.0186103 0.042208 -0.0281438 +-0.0252891 0.0336623 -0.0225985 +0.00751041 0.0688465 0.0554032 +0.0252903 0.0675893 -0.0238235 +-0.065902 0.112354 -0.012152 +-0.0476622 0.0620749 -0.0123691 +-0.0940806 0.122789 0.0152778 +-0.0229201 0.115998 -0.0147881 +-0.0344826 0.0519106 0.0380623 +-0.0890068 0.11621 0.0451247 +0.0107555 0.0404168 0.045078 +-0.0894686 0.136415 0.011209 +-0.0757697 0.145819 -0.00688494 +-0.071833 0.152571 -0.043913 +0.0235861 0.0352777 0.0154316 +-0.0926495 0.129588 0.0122381 +-0.0647445 0.0780775 -0.0178137 +-0.00582898 0.0896214 -0.0360418 +0.0559073 0.0721087 0.0082759 +-0.0261702 0.0823861 0.0514348 +-0.0558857 0.0970202 -0.0212239 +-0.0630553 0.148575 -0.0182369 +0.00714931 0.123902 0.0338795 +0.0304322 0.0902625 -0.0195701 +-0.0137593 0.0388335 -0.0101314 +0.0427673 0.0818692 0.0284169 +-0.0651233 0.155698 0.0103085 +-0.0897032 0.113874 0.0229056 +-0.0447211 0.129823 0.00637961 +-0.0575 0.0588269 0.0212602 +0.0104936 0.11823 0.0368787 +0.0202805 0.12337 -0.00295598 +-0.0340138 0.155107 0.00155033 +0.0602047 0.0622908 0.0181797 +-0.0859874 0.153017 0.0132012 +0.0433237 0.0846089 -0.00479162 +-0.0678527 0.0937535 -0.0166708 +0.0608755 0.0651235 0.0141559 +-0.0737739 0.0878479 -0.0153893 +0.0296171 0.11988 0.0191943 +-0.00324005 0.038276 0.0477168 +-0.0806315 0.139432 0.0474021 +0.0455013 0.0583861 0.0319381 +-0.0740734 0.172255 -0.0349568 +0.0224678 0.0975265 0.046211 +-0.0525514 0.0389481 -0.0113995 +0.0281531 0.119463 0.0257844 +-0.0765864 0.155527 -0.0189073 +-0.0289503 0.0931616 -0.025199 +-0.0573663 0.0338673 0.0217593 +0.0396386 0.064502 0.0326274 +0.00539495 0.0433546 -0.0245866 +0.0256558 0.0782254 0.0477034 +0.0162437 0.0764684 -0.0291666 +0.0272037 0.100805 0.0412523 +-0.0316694 0.0357391 0.0272619 +-0.0623836 0.163119 -0.0315939 +0.0275463 0.095549 0.0435012 +0.0393856 0.0475887 -0.00567863 +-0.0394934 0.163848 0.00245451 +0.0242993 0.0928305 -0.0222726 +-0.0271788 0.0358787 -0.0194139 +-0.0734977 0.124615 0.0532793 +-0.0883817 0.123968 0.00128346 +-0.0257849 0.174205 -0.0110873 +-0.0281104 0.163768 -0.0157424 +-0.0662143 0.0386042 0.0318887 +-0.0109132 0.103533 -0.0236899 +-0.0616548 0.140062 -0.00630976 +-0.060057 0.135486 -0.00665791 +0.0434691 0.0624283 0.0290897 +-0.0236196 0.0436733 -0.0286374 +0.043495 0.0610671 0.0301862 +-0.0910584 0.133686 0.0122173 +0.0291029 0.0938741 -0.0193597 +-0.0261534 0.0383869 0.0314189 +0.00850666 0.0896726 0.0548038 +-0.0247527 0.0340557 -0.0209813 +-0.0186132 0.0436215 -0.0279143 +-0.0124858 0.0911558 0.0565265 +0.0053433 0.0524636 -0.0297405 +0.0403239 0.0999619 0.0261672 +-0.0522155 0.149331 0.0183918 +-0.0534968 0.0973516 0.0432358 +-0.0284959 0.10431 0.0415782 +-0.0908913 0.139194 0.0171389 +0.0264487 0.0948748 -0.0204583 +-0.0834511 0.149763 0.0335021 +-0.00425208 0.0941246 -0.0337645 +-0.0337113 0.0652961 -0.0165207 +-0.0405229 0.128682 0.00643622 +0.025364 0.0547555 -0.0216571 +0.0209176 0.124997 0.0245115 +0.0147936 0.104084 -0.0202238 +-0.0510936 0.156101 -0.00485677 +-0.00104637 0.116277 -0.0172455 +-0.0564804 0.0613799 -0.00459099 +-0.0261657 0.11885 -0.0117616 +-0.0612216 0.155927 0.0131437 +-0.0264503 0.181668 -0.00853376 +0.0163083 0.0594423 -0.028212 +-0.0188061 0.081321 -0.0390856 +-0.0660982 0.156586 -0.0534726 +-0.0596936 0.155857 0.0122367 +-0.0656404 0.0608118 0.00501538 +0.00550383 0.0716948 0.0562222 +-0.0473457 0.134062 0.00939848 +0.0233312 0.0436331 0.0404882 +0.0342215 0.0827959 -0.0185003 +0.00407718 0.131556 0.00833758 +-0.0524976 0.0931679 0.0439324 +-0.0206125 0.0553712 0.0467047 +-0.0499367 0.0345722 0.0419808 +-0.0720303 0.169416 -0.0480254 +0.0463102 0.0820482 0.0101764 +0.0239273 0.0383233 0.0327312 +-0.0556472 0.0657358 0.0349277 +0.0082124 0.0879974 -0.0324239 +-0.0483251 0.123967 0.0299918 +-0.00979541 0.0826872 -0.0380854 +-0.0104818 0.0688481 0.0551963 +-0.0738713 0.116445 -0.00712552 +-0.0783268 0.0804305 0.0341941 +-0.0318616 0.0386777 -0.0303614 +-0.0685663 0.0335043 0.000153325 +0.0419445 0.0972272 0.0251571 +-0.0324967 0.0831278 0.0417023 +-0.0385753 0.165326 0.00202421 +-0.0574991 0.105703 0.0407441 +-0.0735089 0.120392 0.0535609 +-0.0194999 0.105809 0.042534 +-0.0918084 0.11461 0.0202058 +0.0373089 0.0604869 0.0345236 +-0.0397982 0.0885212 -0.0227204 +-0.0838603 0.0771078 0.0156983 +-0.0683511 0.16683 -0.0228013 +0.00825384 0.0357096 0.0264477 +-0.0487592 0.0797294 -0.0200154 +-0.067984 0.13847 -0.00792156 +-0.0205709 0.127392 0.00935219 +0.0158596 0.0940217 0.0494261 +-0.00476401 0.100643 0.0463697 +-0.0144795 0.0617481 0.0535104 +-0.0635003 0.0931972 0.0443921 +-0.06148 0.0371866 -0.00855801 +-0.0235696 0.0368882 0.0541538 +-0.00084278 0.129714 0.0251926 +-0.0857238 0.0792489 0.0165033 +-0.00382707 0.0868147 -0.0366286 +-0.0623716 0.0433162 0.04063 +-0.0481783 0.127343 -0.00452632 +0.0258208 0.0577421 -0.0227411 +-0.0464997 0.109825 0.0383354 +-0.0632202 0.150553 -0.0275915 +0.0594014 0.060828 0.00515272 +-0.0379322 0.0359407 -0.029738 +-0.0628566 0.163115 -0.0590591 +0.032875 0.0504741 0.0332188 +-0.0798256 0.114817 -0.00349908 +0.00979876 0.0631089 0.0545118 +-0.00479883 0.0826783 -0.0376925 +-0.0586564 0.152453 0.0326111 +-0.0847868 0.0979024 0.0288114 +-0.0248237 0.0853842 -0.0372699 +-0.00156343 0.13088 0.0191419 +-0.0624949 0.0729745 0.0395167 +-0.0208752 0.105853 -0.0224653 +0.0381305 0.0743398 -0.0117665 +0.00679871 0.128004 -0.00391746 +-0.0769289 0.125211 -0.00745968 +-0.0251918 0.111615 -0.0181703 +-0.0538836 0.0984784 -0.021806 +-0.0535445 0.0444164 -0.0080927 +0.0449223 0.0903552 0.00117592 +0.00748556 0.116867 0.0384917 +0.0479919 0.0426572 0.0134999 +0.0269115 0.116892 -0.00595645 +0.0287509 0.0911639 -0.0204971 +-0.00583539 0.0910195 -0.0356702 +0.0122548 0.126063 0.0299441 +-0.0732964 0.0791377 0.0376894 +-0.0578898 0.108324 -0.0176181 +-0.0316803 0.111369 -0.0179291 +-0.00248889 0.101618 0.0440339 +0.0583601 0.0593964 0.0227402 +-0.0568793 0.105485 -0.0183902 +0.0313941 0.108732 0.0332945 +-0.0104953 0.0801622 0.0580036 +-0.0799858 0.150056 0.000166757 +-0.0448968 0.146123 0.00263093 +-0.0595037 0.0344238 0.0383245 +-0.0836036 0.133464 -0.00169527 +-0.0115063 0.0575113 0.0530742 +-0.0112578 0.037897 0.0501369 +-0.0404967 0.071918 0.0419528 +-0.024201 0.0373653 0.0542269 +-0.063129 0.0366622 0.0429743 +0.0461067 0.069238 0.0238359 +-0.0217169 0.0945664 0.0494448 +0.0519577 0.0621966 0.0293389 +0.0286828 0.072686 0.0432253 +0.0389262 0.103315 -0.00332456 +-0.0908979 0.126784 0.00627265 +-0.0604951 0.097348 0.0432235 +0.00320361 0.0838721 -0.0343861 +-0.0615214 0.155998 0.0173864 +0.0174482 0.090927 -0.0262636 +-0.0428815 0.108469 -0.0193857 +0.0528827 0.0476533 0.00520477 +-0.0692155 0.155426 0.0044718 +-0.0116319 0.126956 0.0271535 +0.0555832 0.0661715 0.0258304 +-0.0669079 0.139705 0.0437201 +0.0208911 0.120687 0.0321527 +-0.0692559 0.157013 -0.00287665 +-0.0642658 0.131126 0.0422113 +-0.00350345 0.108655 0.04343 +0.00595359 0.131311 0.0061803 +-0.0652676 0.179645 -0.0602668 +0.0113097 0.0609536 -0.0296395 +0.0202287 0.0385462 -0.010699 +-0.0528896 0.0556157 0.0124842 +-0.0830831 0.152763 0.0275295 +-0.0929926 0.121477 0.0272936 +-0.0679169 0.115123 -0.00939662 +-0.0715189 0.150138 -0.0417489 +0.0502478 0.0496891 0.0267596 +-0.088826 0.122625 0.00229599 +0.045739 0.0876044 0.00618298 +0.0276204 0.0364605 0.0224657 +0.0550864 0.0576626 -0.000774412 +-0.0601415 0.0397484 0.0187938 +-0.0467117 0.131872 0.0218067 +-0.00211002 0.131247 0.0146415 +0.0400335 0.107013 0.011165 +-0.0875275 0.141918 0.0101858 +-0.0321386 0.0511687 -0.0124242 +-0.05996 0.047085 0.0381143 +-0.0771576 0.158311 -0.0229061 +-0.0910473 0.139231 0.0181913 +0.0586943 0.0552354 0.0191792 +0.0541025 0.0616928 -0.00172111 +0.0193458 0.0347743 -0.00166328 +-0.0785503 0.175004 -0.046006 +0.0361753 0.0767902 0.0382584 +-0.00218115 0.0950603 -0.0327048 +-0.00446475 0.03907 -0.00848801 +-0.0509412 0.0543847 0.0317288 +-0.031974 0.126184 0.0154629 +-0.0517139 0.047497 0.0206563 +0.0390432 0.106963 0.0211652 +-0.0661031 0.169296 -0.0348743 +-0.0461189 0.0353483 0.0438447 +-0.0618314 0.155872 0.0114752 +-0.0414861 0.169687 0.00162271 +-0.0640913 0.154089 -0.00821335 +-0.0474977 0.0776489 0.0433419 +-0.000495324 0.0870356 0.0569136 +0.0572432 0.0508915 0.0131865 +0.0162675 0.0348087 0.0361219 +-0.0561497 0.0697401 0.0384165 +-0.0632023 0.166731 -0.0605917 +-0.0297129 0.0382953 0.00190139 +-0.00511763 0.0345398 -0.0175639 +-0.0614326 0.0342559 0.0293559 +-0.0526737 0.0678526 -0.0129346 +0.0213104 0.092205 -0.0236008 +0.0197097 0.119321 0.0339587 +-0.0214979 0.120818 0.0311972 +0.0121652 0.0940439 -0.0275601 +0.0264769 0.122884 0.00946172 +-0.0236707 0.0536853 -0.0289139 +-0.0413464 0.0470648 -0.0139804 +0.0254796 0.122858 0.0219249 +-0.0924012 0.125564 0.030262 +-0.0879683 0.133795 0.0435491 +-0.0521211 0.0500618 0.0133132 +-0.0655655 0.115703 0.0473772 +-0.0739163 0.0808829 -0.0136046 +-0.0678507 0.166619 -0.0550103 +-0.0116556 0.127143 -0.00273206 +-0.0318682 0.101497 -0.022474 +-0.0710899 0.143489 -0.012899 +-0.0174739 0.0587291 0.0509898 +-0.0238083 0.125586 0.00234805 +-0.0296624 0.0691842 -0.029462 +0.00123889 0.0998292 0.0485145 +-0.0648099 0.0910089 -0.0186372 +-0.0624633 0.170945 -0.051605 +-0.0911968 0.145718 0.0253129 +-0.0208075 0.0827095 -0.0389174 +-0.0156288 0.184043 -0.0262877 +0.0422094 0.0873179 -0.00779978 +0.00273738 0.0943137 -0.0318997 +-0.082233 0.0925905 0.0320729 +-0.0782161 0.110396 0.044452 +-0.0842181 0.153993 0.0196689 +-0.00949468 0.0532459 0.0520833 +-0.0867806 0.115997 0.0469199 +-0.0547757 0.0826557 -0.0215494 +-0.0382309 0.0365042 0.0436563 +0.021227 0.0727783 0.05004 +-0.00441949 0.0338393 -0.022426 +-0.0712771 0.0648585 0.00216525 +-0.0364976 0.111093 0.0360234 +-0.0669244 0.123843 -0.00898539 +-0.0178669 0.0554748 0.0496143 +0.020489 0.0906324 0.0482147 +-0.00549595 0.0605287 0.0555985 +-0.0289733 0.0536405 -0.0223788 +0.0191474 0.0435971 0.0432171 +0.00434602 0.0346139 0.0410512 +-0.0400219 0.111533 -0.0180322 +0.012127 0.0534588 0.0507501 +0.0284176 0.0415874 -0.00471776 +-0.0270737 0.125279 0.00405866 +-0.0221888 0.0348068 0.0442295 +-0.0447592 0.0797381 -0.0197229 +-0.0304968 0.172715 -0.00561384 +-0.0762362 0.0865455 -0.0135615 +0.0197685 0.0371215 -0.00768223 +0.0379293 0.0417908 0.0270611 +-0.0809612 0.0747382 0.0015261 +0.00168043 0.0346784 0.042239 +0.0257721 0.0915784 0.0461947 +-0.0898405 0.133789 0.0312158 +-0.0355388 0.0441134 -0.0275262 +0.00710192 0.0379595 0.027814 +-0.0620019 0.0401372 0.0237075 +0.0429025 0.100097 0.0151567 +-0.00267325 0.0569172 -0.0326724 +-0.0285904 0.110146 -0.0186081 +-0.0762074 0.0906406 -0.013533 +0.0535161 0.0677623 0.0259787 +-0.00262958 0.0466399 -0.0290845 +-0.0839307 0.125043 -0.00388859 +-0.0340047 0.0386047 -0.0302796 +0.0184751 0.082463 0.0515958 +-0.0574796 0.115365 0.0367006 +-0.0420623 0.154724 -0.00848194 +-0.0860758 0.0924352 0.0274562 +-0.0930739 0.122895 0.0382751 +0.051883 0.0734548 0.0112114 +-0.0811474 0.0769537 0.0251701 +-0.0618709 0.0338217 0.0137712 +0.0195119 0.0370935 -0.00868114 +0.00449835 0.0590783 0.0547231 +-0.0645467 0.148975 -0.0280488 +0.0404587 0.0426892 0.0267677 +-0.0712073 0.146616 -0.0240304 +-0.0512571 0.0488673 0.0206327 +-0.00789661 0.098211 -0.0280331 +-0.0821992 0.0980013 0.0318751 +0.0249936 0.037232 0.0266864 +-0.00349731 0.0456721 0.0469862 +0.0464132 0.0472054 -0.00271728 +-0.0659208 0.0390922 0.037189 +-0.0655814 0.167928 -0.031824 +-0.0726143 0.1704 -0.0286759 +-0.032982 0.0423452 0.0495212 +-0.0442602 0.153622 0.00782588 +0.0320708 0.117667 0.00585111 +0.0181014 0.0354956 -0.0136744 +-0.0756189 0.168382 -0.0269354 +-0.0302725 0.114038 -0.0167089 +-0.06455 0.166996 -0.0328772 +-0.0136948 0.125921 0.0278767 +-0.0594946 0.0973472 0.0432255 +-0.0660053 0.138467 -0.00776776 +-0.0538886 0.161243 -0.000916627 +-0.0521229 0.0491646 0.0356345 +-0.0669695 0.167967 -0.0280306 +-0.0692702 0.0635509 0.00193084 +-0.057893 0.109749 -0.0172343 +0.0162169 0.116863 -0.0139359 +-0.0837452 0.0818387 0.0274964 +-0.0188705 0.104448 -0.0228566 +0.017085 0.0604224 0.0492086 +-0.0636469 0.11387 0.0394431 +0.0060852 0.126695 -0.00651247 +-0.0563559 0.0448266 0.0148606 +-0.0534962 0.0959644 0.0436141 +0.0587007 0.0538335 0.0141792 +0.00148321 0.105804 0.0429258 +-0.0696571 0.0662079 0.0262916 +0.0292497 0.0745452 -0.0220465 +-0.0363535 0.0380033 0.0459253 +-0.0388642 0.104209 -0.02036 +0.0363189 0.106784 -0.00482843 +-0.0506381 0.0473796 0.0176699 +0.0415736 0.0738523 0.0301911 +0.00841968 0.0357631 -0.0122614 +-0.0449132 0.130768 0.0151196 +-0.0348253 0.0822923 -0.0236386 +-0.0756565 0.0672218 0.011813 +-0.0840475 0.0856522 0.0284432 +0.0358352 0.11315 0.0115155 +0.0378536 0.10688 -0.000832307 +0.0327708 0.0862789 0.0422215 +-0.0510409 0.034583 0.0365198 +0.0285939 0.108783 0.0362583 +-0.0291219 0.163733 -0.0155493 +-0.0075062 0.071811 0.0576623 +-0.0285902 0.125327 0.00496117 +0.022493 0.120697 0.0309281 +-0.081164 0.0734408 0.004547 +-0.011709 0.0628424 -0.0363307 +-0.0258651 0.101595 -0.0237434 +0.0205831 0.11206 -0.0147671 +0.0444356 0.0931566 0.0191609 +-0.04739 0.113671 -0.0162364 +-0.0489307 0.0334882 -0.00491951 +-0.0129236 0.118879 -0.0139348 +-0.0161652 0.0382063 0.017415 +-0.00495697 0.0978375 0.052341 +-0.0277397 0.0605536 -0.0284245 +-0.00547292 0.0385489 0.021098 +-0.00115741 0.0949656 -0.0326157 +-0.0444374 0.124419 -0.00954541 +-0.0821611 0.0761834 0.00152312 +-0.0144467 0.0348076 0.0441223 +-0.0715687 0.153984 -0.0439053 +-0.00636015 0.130593 0.00877385 +-0.0127796 0.0382227 0.0144711 +0.0370519 0.110502 0.0205344 +-0.0322265 0.0637977 -0.0184499 +-0.0106706 0.054151 -0.0336931 +-0.0455975 0.169625 -0.00241942 +0.0182033 0.0435661 0.0436183 +-0.0718144 0.147892 -0.0304457 +-0.0577521 0.050802 0.00265023 +-0.0586963 0.0588331 0.00348495 +-0.0866227 0.109058 0.0173532 +-0.0383512 0.122877 -0.00994551 +-0.070675 0.0778663 -0.0147995 +-0.0181879 0.174194 -0.0234207 +-0.0587357 0.153161 0.0315118 +-0.0350971 0.16074 -0.013448 +0.00536912 0.049521 -0.0287338 +-0.0474407 0.134003 0.00841493 +-0.0624554 0.1522 -0.0115838 +-0.0760236 0.150016 -0.00789124 +-0.0261434 0.0379494 0.0119939 +-0.068707 0.0613453 0.00749837 +0.0495547 0.0702574 0.0035522 +0.0608929 0.0651253 0.0121512 +0.0417276 0.0683416 0.0285931 +-0.0322652 0.177059 -0.0129859 +-0.027328 0.0951114 -0.0248637 +-0.0207784 0.0714012 -0.0384405 +-0.0483231 0.128062 -0.00327126 +-0.0424968 0.0449805 -0.0163196 +-0.0550216 0.142767 -0.00162505 +-0.0444981 0.112567 0.0357183 +0.039909 0.107011 0.00616363 +0.0103602 0.0524141 -0.0291489 +-0.0621527 0.0372105 -0.00831557 +0.0052003 0.124064 -0.00964829 +0.0584567 0.0701808 0.018095 +0.0154065 0.0880419 -0.0292971 +-0.0675878 0.0672405 -0.0057657 +0.0141143 0.129082 0.00347211 +-0.0769907 0.154191 -0.00889586 +-0.0351753 0.160922 -0.000113952 +-0.0865124 0.0819745 0.0105022 +-0.0802058 0.0759672 -0.0035211 +0.0412042 0.046738 0.0312341 +0.0531089 0.0539671 0.0274209 +-0.0202736 0.0966137 -0.0264451 +-0.021864 0.108885 -0.0213157 +0.0172909 0.0900542 0.0497289 +0.0151151 0.0645034 0.0516546 +-0.00371721 0.100591 0.046739 +-0.0281684 0.117044 -0.0138686 +0.044615 0.0762444 0.0239446 +0.00250222 0.0504849 0.0522926 +-0.0407291 0.0724971 -0.0177035 +-0.076873 0.114866 -0.00505023 +-0.0509699 0.0334609 -0.0108109 +-0.0307494 0.125973 0.00854668 +-0.0842046 0.10344 -0.000635192 +-0.0637785 0.0335481 0.00468656 +0.0573103 0.0709688 0.0191461 +-0.0548852 0.0344475 0.0323271 +-0.0566985 0.0694351 -0.0145553 +0.0116873 0.128578 0.0254498 +-0.0635208 0.0384034 0.0165311 +-0.0193913 0.161115 -0.00536021 +-0.0517184 0.0708739 -0.0153462 +-0.0355107 0.0789772 0.0422885 +-0.0308674 0.0359912 0.0254031 +-0.0496962 0.137023 0.0203775 +-0.000496498 0.0549075 0.0548747 +0.0203519 0.0506032 0.0432764 +-0.00603714 0.0387093 0.0280658 +-0.0424971 0.165251 0.00449932 +-0.088747 0.148763 0.0102254 +0.0140119 0.072675 0.0536492 +-0.0355033 0.109745 0.0370663 +-0.0495176 0.0451863 0.0426306 +0.0161864 0.128058 0.00281004 +-0.0689044 0.110844 -0.0111483 +-0.0648164 0.0412793 0.0318749 +-0.0594946 0.0959853 0.0440949 +-0.0201946 0.0918367 -0.0355405 +-0.00451061 0.0534011 0.0538125 +-0.0256167 0.0422692 -0.0291044 +-0.0366019 0.0472824 -0.0203909 +-0.0714721 0.152551 -0.0449162 +-0.0686495 0.0395764 0.0103048 +-0.0916814 0.147477 0.020141 +0.0344933 0.0646793 0.0392567 +0.0354037 0.0848596 0.0389463 +0.0335837 0.114911 0.0235455 +-0.00948608 0.0488348 0.0496357 +0.0162564 0.0875946 -0.0288434 +-0.0495004 0.0876335 0.045502 +-0.00788756 0.107371 -0.0226705 +0.0279061 0.0479696 -0.0147397 +-0.0593675 0.145365 0.0352791 +-0.0297371 0.179987 -0.0120259 +-0.00152895 0.1273 -0.00507098 +-0.053021 0.0473885 0.0142865 +-0.031661 0.0351392 -0.0196159 +-0.0428508 0.127424 0.0174253 +0.00853656 0.103079 0.0455737 +-0.0428329 0.0928281 -0.0227901 +-0.0533229 0.121583 -0.0104498 +-0.0281276 0.163902 -0.00573037 +0.00550696 0.0647473 0.0560963 +-0.0786632 0.155487 0.0200952 +0.0373574 0.0841251 -0.0157743 +0.00845531 0.04577 0.0469205 +-0.0816426 0.140732 0.045535 +-0.0198636 0.184564 -0.0147357 +-0.0441 0.149758 -0.00480897 +-0.0394895 0.0478295 0.0398724 +-0.0902912 0.136455 0.0152001 +-0.0912584 0.116106 0.0417079 +-0.078373 0.161039 -0.0249642 +-0.0823003 0.143183 0.00115625 +-0.0366712 0.0621691 -0.0130418 +0.0483193 0.0518215 -0.00445791 +-0.0647832 0.179003 -0.0560548 +-0.066692 0.1555 0.0271809 +0.0251524 0.123931 0.0146708 +-0.0729716 0.175028 -0.0520538 +0.0249807 0.0645674 0.0448324 +0.0189844 0.127654 0.0109555 +-0.023546 0.114036 0.0366055 +-0.0166929 0.178668 -0.0190282 +-0.0838411 0.0884243 0.0295799 +0.0340178 0.106064 0.0317678 +0.0172301 0.0834905 -0.0285819 +-0.0836745 0.0939124 0.0306595 +0.00650612 0.0856084 0.0565927 +-0.00650337 0.0633626 0.0562557 +0.00724714 0.123914 -0.00950504 +-0.04049 0.0677003 0.0417506 +-0.083014 0.0816043 0.0289568 +-0.0791181 0.10724 -0.00560787 +-0.0643983 0.155173 -0.0416037 +-0.0194853 0.0382676 0.0257029 +0.017193 0.0407686 0.0438767 +-0.0578741 0.0997697 -0.0193936 +-0.00470039 0.0340249 -0.0188849 +0.009491 0.0923319 0.053062 +-0.0679779 0.0615132 0.00568001 +-0.00851004 0.0960786 -0.0317903 +0.0222567 0.0734747 -0.02675 +0.0396829 0.102719 -0.00275708 +0.0333394 0.0519958 0.0339463 +-0.0317958 0.166782 -0.0057687 +-0.0851069 0.104842 0.00238218 +0.040355 0.0712163 0.0319238 +-0.0796414 0.0719293 0.00453596 +-0.00871509 0.0670095 -0.035665 +-0.04676 0.0797358 -0.0197068 +0.00759602 0.120603 -0.0139518 +-0.00757253 0.0384534 0.015324 +0.027396 0.0902329 0.0450202 +-0.0837001 0.104608 0.0275279 +-0.0648437 0.159826 -0.0567739 +-0.0182921 0.113707 -0.0184295 +-0.0318101 0.0499111 0.0410759 +0.0042017 0.130577 0.0226921 +-0.0882785 0.102304 0.00940329 +-0.0669196 0.157864 -0.00782765 +-0.0574974 0.104327 0.0414929 +-0.028183 0.0499752 0.0445203 +0.0437475 0.087439 -0.00380588 +0.047365 0.0735855 0.0109418 +-0.0355275 0.04785 0.0396404 +-0.00564979 0.0511569 -0.0315211 +-0.0622081 0.163133 -0.0355907 +-0.0126796 0.0555759 -0.033924 +-0.0434133 0.12436 -0.00948612 +0.0325363 0.0605817 0.0399114 +0.00828387 0.0859903 0.0560092 +-0.0377619 0.0480619 -0.0149351 +-0.0152064 0.0377587 0.0513804 +0.0337034 0.0740969 0.0399489 +0.0386678 0.106943 0.0231645 +-0.0568902 0.10122 -0.0192994 +-0.0629975 0.158364 -0.0415982 +0.0174963 0.116768 0.0361173 +-0.018574 0.174216 -0.0164984 +-0.0916005 0.147489 0.0211447 +0.0351839 0.113522 0.00409669 +-0.0642224 0.175708 -0.0529566 +-0.0646189 0.0691309 -0.0109873 +-0.0744709 0.159641 -0.0299365 +-0.0810037 0.0777776 0.0280061 +-0.0468539 0.0397424 -0.0132276 +-0.0387576 0.152152 0.00343994 +-0.0355301 0.0350253 0.0446914 +-0.0252945 0.179999 -0.0179968 +-0.0594833 0.0440844 0.0256893 +-0.0262483 0.175689 -0.00998917 +-0.0357 0.0344414 0.0311095 +-0.0348452 0.0957896 -0.0233484 +-0.0694619 0.0701676 0.0334316 +-0.0704025 0.156596 -0.000355665 +0.0197946 0.0872171 -0.0264236 +-0.00225576 0.119004 -0.0141489 +0.0447595 0.0819096 0.000199099 +-0.0414725 0.16704 -0.0108149 +0.0383695 0.0533606 -0.00654853 +0.0436976 0.0763605 0.0261605 +-0.059412 0.0342492 0.0297869 +-0.0105538 0.0962042 -0.0319333 +0.0354985 0.0483762 0.03122 +-0.0232213 0.183101 -0.0108227 +-0.0454832 0.0704956 0.0415155 +-0.0818632 0.143391 0.0428465 +-0.00588211 0.0384235 0.0193174 +-0.0715611 0.065876 0.0226562 +-0.0557658 0.0561367 -0.00241411 +-0.007704 0.0613485 -0.0352024 +-0.050582 0.13546 0.000440434 +-0.0239591 0.0958294 0.044594 +-0.0344217 0.156595 0.00275895 +-0.0721769 0.146332 -0.0246714 +-0.00172768 0.0683482 -0.0343533 +0.0465137 0.0736858 0.00606841 +-0.0379081 0.0345108 0.0393807 +-0.0536272 0.0632225 -0.00927695 +0.0216001 0.0346735 0.00635285 +-0.00546011 0.130518 0.00622904 +0.025022 0.0994981 0.0433749 +-0.059626 0.14292 -0.00334389 +-0.0662647 0.160967 -0.0574681 +-0.086688 0.0937529 0.026595 +-0.0292509 0.122699 0.0223824 +-0.020881 0.0609703 0.0467992 +-0.0727056 0.0704556 0.030746 +-0.0670342 0.154632 -0.0510962 +-0.0818617 0.117704 -0.00327392 +-0.00930377 0.0384012 0.0113924 +-0.0294534 0.0382504 0.0532249 +-0.0428028 0.034428 0.0296237 +0.034591 0.113857 0.0224952 +0.0260945 0.0981604 0.0431638 +0.0157288 0.0740195 0.0526622 +0.00528348 0.0654438 -0.0329345 +0.0342272 0.113045 -0.000582475 +0.0177023 0.127344 0.0204737 +-0.00349601 0.0619414 0.0556852 +-0.0633856 0.13531 0.0381918 +-0.0187732 0.0742782 -0.038946 +-0.0714922 0.124606 0.0531293 +-0.0387588 0.0432047 -0.0253505 +-0.0377685 0.112865 -0.0174473 +-0.0811078 0.0831466 0.0326628 +0.0121734 0.0347014 0.0407838 +-0.0423463 0.0344667 0.0367209 +-0.0247884 0.0905387 0.0498003 +-0.0589097 0.111154 -0.0162513 +-0.0119878 0.0389387 -0.0117395 +-0.0746688 0.0730125 -0.00771761 +-0.0636783 0.0344406 0.016873 +-0.0718387 0.063614 0.0140147 +-0.0537353 0.0753205 -0.0183524 +0.0399868 0.0793585 0.0332409 +0.0342696 0.0686799 0.038964 +0.0283038 0.121367 0.00870899 +0.020694 0.101208 -0.0211426 +-0.0607079 0.149875 -0.000940868 +-0.0663226 0.0771733 0.0404118 +-0.0856352 0.151298 0.0280417 +0.00450086 0.0533884 0.0535142 +0.0193556 0.0370965 -0.0106758 +-0.073245 0.152646 -0.0348949 +-0.0311279 0.168264 -0.00654632 +-0.0314769 0.122323 0.024544 +-0.00965298 0.0383614 0.0149817 +0.0322912 0.117174 0.00450048 +-0.0303956 0.0833549 -0.0325649 +-0.0305081 0.109824 0.0377476 +0.060267 0.0581373 0.011162 +-0.0782363 0.119072 0.0512696 +-0.0819743 0.130956 -0.00393996 +0.0125568 0.129953 0.0057397 +-0.0750314 0.165158 -0.038026 +-0.0842614 0.0857549 -0.00354776 +-0.0194949 0.122198 0.0303074 +-0.0885869 0.0914877 0.00746285 +0.0183032 0.0622432 -0.0278633 +-0.0188389 0.0383463 0.00224079 +0.0169223 0.0354899 -0.0154522 +-0.0510859 0.154625 -0.00472421 +-0.04134 0.171235 -0.00891614 +-0.00271064 0.0641639 -0.0348647 +-0.0404957 0.119327 0.0301663 +0.0161104 0.038261 0.0437952 +-0.0788559 0.0706244 0.0187647 +-0.0565382 0.0387829 -0.00997998 +0.00406092 0.0347375 0.0390843 +-0.052431 0.0503969 0.0246465 +-0.0548238 0.136818 -0.00273484 +-0.0168361 0.163394 -0.0165332 +0.0085002 0.0589241 0.0531764 +-0.00349833 0.104479 0.0440938 +0.041165 0.0675922 -0.00677134 +-0.0766837 0.0941158 0.0377884 +-0.0715005 0.108276 0.0374406 +-0.0514917 0.154976 0.0111 +-0.0766573 0.0758638 -0.0078194 +-0.0708734 0.116483 -0.00801313 +-0.0584915 0.0333664 -0.00308936 +-0.0132404 0.0420117 0.0507817 +0.0504568 0.0627892 -0.00292241 +0.0181009 0.0617863 0.0489038 +-0.0686053 0.155434 -0.0518073 +-0.0866142 0.111799 0.023338 +-0.0087012 0.0613261 -0.0351009 +-0.0667075 0.179209 -0.0538653 +0.0133269 0.036855 0.044466 +-0.0308424 0.0930072 -0.0244625 +-0.0526579 0.118327 0.034303 +-0.0802651 0.0940224 0.034298 +-0.0895241 0.094286 0.0154262 +-0.0580951 0.0448084 0.0137644 +0.0187472 0.0369987 -0.01368 +-0.0174935 0.0786826 0.056671 +-0.026682 0.0779832 0.0478067 +0.0449566 0.0931917 0.0141646 +-0.0598355 0.0968573 -0.0194316 +-0.015743 0.0388551 0.0331436 +0.045657 0.07639 0.00319799 +0.00221136 0.0782941 -0.0352071 +-0.0725589 0.0360747 0.00146649 +-0.0641358 0.117113 0.0460384 +-0.0709488 0.0833216 0.0408543 +0.0230126 0.0366914 0.0285839 +0.0164832 0.101772 0.0464774 +-0.0114886 0.10724 0.0431864 +-0.0748949 0.0968349 0.0387401 +-0.0428468 0.0368545 0.044028 +-0.0121243 0.183164 -0.0282842 +-0.0110799 0.0973863 0.0517395 +-0.0283441 0.0346627 0.0430398 +-0.0591236 0.0454581 0.0276809 +0.0359903 0.0834983 0.0380665 +-0.0894731 0.112826 0.0381953 +-0.0633619 0.165109 -0.0324564 +-0.0893245 0.139298 0.0361742 +-0.0113718 0.177173 -0.0236196 +0.0314957 0.0386039 0.0249642 +-0.0153586 0.171251 -0.0171482 +-0.0501632 0.165541 -0.000963216 +-0.0125979 0.0362885 -0.0258846 +-0.0109041 0.121705 -0.010941 +-0.01134 0.181374 -0.0292688 +-0.0636417 0.067527 -0.00924444 +-0.0645561 0.151545 -0.0345673 +0.0234128 0.0685823 0.0460905 +-0.0204536 0.184888 -0.0139868 +-0.0362035 0.16829 0.000195359 +-0.0423655 0.0354607 0.0428683 +0.029434 0.0414849 -0.00426139 +-0.0548859 0.0335879 0.0154264 +0.0301337 0.0958138 -0.0174156 +-0.0231819 0.174173 -0.0207431 +0.0495183 0.0596792 0.0306871 +-0.0615314 0.169388 -0.0555899 +-0.0645149 0.156191 0.0192193 +-0.0808163 0.150056 0.00117383 +-0.0203106 0.127423 0.0152774 +-0.048501 0.0946267 0.0446158 +-0.0621404 0.0458224 0.0356845 +0.014817 0.0713159 0.0530708 +-0.0482359 0.0600875 0.0359237 +0.0583839 0.0607371 0.00317993 +0.0532979 0.0476993 0.0202039 +-0.00334167 0.13115 0.0113211 +-0.0451105 0.146112 0.00345863 +-0.0728436 0.0965116 -0.0147387 +-0.00290701 0.128667 -0.00250924 +-0.0175351 0.0472943 0.0498404 +-0.0710465 0.156278 0.000878407 +0.0130461 0.106823 -0.0191157 +-0.0241467 0.169732 -0.0193183 +0.0184844 0.092024 0.0477707 +-0.0849646 0.0925759 -0.00355765 +-0.0135115 0.0617879 0.0541775 +0.0358003 0.0371828 0.0161878 +-0.0563756 0.0338236 0.0220041 +-0.0344987 0.119335 0.0301753 +-0.0207895 0.0363821 -0.0186131 +0.0366896 0.0394563 0.0234361 +0.0454465 0.0903989 0.00417224 +-0.0686026 0.0339552 0.0087048 +-0.0248008 0.0797877 -0.0377608 +-0.0253831 0.0645504 -0.0324979 +-0.0924079 0.114699 0.0153245 +0.0404169 0.104204 0.0201615 +-0.0864551 0.137921 0.0433346 +0.0453383 0.0861836 0.0191712 +-0.0550359 0.12552 0.0379729 +0.0499773 0.0719552 0.0208312 +-0.0878453 0.10502 0.0133698 +0.0226563 0.0416586 -0.00875234 +0.00847112 0.0503629 0.0509458 +0.0193029 0.12103 0.032512 +-0.0288694 0.102979 -0.023086 +-0.0655006 0.155906 0.0116223 +-0.0865291 0.125714 0.0480303 +-0.0762092 0.103511 0.0356214 +0.027039 0.0433782 0.0352623 +-0.00878391 0.0340179 -0.0196776 +0.01688 0.104029 -0.0201606 +-0.0779922 0.155321 0.011561 +0.012978 0.0975651 -0.0232996 +-0.0570356 0.142438 0.0315884 +0.00678439 0.0392286 0.0320303 +-0.0187316 0.184448 -0.0230478 +-0.05583 0.0898375 -0.0220234 +-0.0624118 0.168239 -0.0611966 +-0.019552 0.0381879 0.0203532 +-0.0619388 0.0647772 0.0309092 +-0.0929984 0.129612 0.0152364 +0.0241882 0.0633761 -0.0240832 +-0.0154901 0.11097 -0.019533 +0.0335254 0.101204 -0.0131717 +0.0440036 0.0411539 0.00525252 +0.0443474 0.05051 -0.00579969 +-0.00564997 0.0526431 -0.0322774 +0.024909 0.124002 0.00889289 +-0.0551719 0.0344352 0.0357625 +-0.00149801 0.0828985 0.0574954 +-0.0649207 0.122383 -0.00889091 +-0.0371067 0.163706 -0.0138205 +-0.013511 0.0673225 0.0538556 +-0.0664425 0.121454 0.0513831 +-0.0749127 0.151363 0.0363064 +-0.0786131 0.166659 -0.0369473 +0.0259941 0.0889184 0.046498 +-0.0508607 0.133588 0.0291236 +-0.0624206 0.150641 -0.0155752 +-0.0345377 0.0353482 -0.0311793 +-0.0926334 0.130971 0.0152338 +0.00420379 0.0852404 -0.0337772 +0.0493319 0.0575419 -0.00502247 +0.0210858 0.0848756 0.0499424 +-0.0209282 0.0711316 0.0521839 +-0.0556334 0.121157 -0.00996616 +-0.0578782 0.0955404 -0.0210377 +-0.0636177 0.149382 -0.0259273 +-0.023437 0.0753613 0.0517266 +-0.0424368 0.033567 0.00359466 +-0.0366861 0.0651313 -0.0144389 +0.00275029 0.0392893 0.0311503 +-0.0858603 0.137915 0.0441653 +0.00249981 0.0938632 0.054785 +-0.0405815 0.125646 -0.00686289 +0.00652265 0.0633208 0.0557678 +-0.0736187 0.0665006 0.01992 +0.0178849 0.106917 -0.0172488 +-0.0404999 0.16823 0.00286674 +-0.0578818 0.101192 -0.0190391 +0.0415111 0.0596706 0.0303495 +0.0445386 0.0917351 0.000179816 +0.0404099 0.0926692 0.0304567 +-0.0715386 0.177351 -0.0469381 +-0.00955325 0.129382 0.0220461 +-0.0304508 0.11875 -0.0116176 +-0.0553453 0.138992 -0.00307013 +0.0373215 0.0444316 0.0300039 +-0.0439866 0.0342955 -0.0250034 +0.0438502 0.081834 0.0262681 +0.0105117 0.057471 0.0526043 +-0.0609073 0.0423237 0.0152297 +-0.0566933 0.0478983 -0.00338525 +-0.0882052 0.0955366 0.00643448 +-0.0697305 0.146842 -0.0262196 +-0.0654573 0.131176 0.0439868 +-0.0332792 0.168261 -0.00439757 +0.0262829 0.0520004 0.03955 +-0.0246803 0.0386712 -0.0158919 +-0.0243119 0.0382419 0.00485642 +-0.0650689 0.0416148 -0.00522845 +-0.0224969 0.105778 0.0423492 +-0.0675666 0.163787 -0.0559757 +-0.0625249 0.0642497 0.029495 +-0.066705 0.170483 -0.0379595 +-0.0387912 0.0855771 -0.0218281 +-0.0362227 0.121033 0.0288309 +-0.0351413 0.166693 -0.0148789 +0.0484731 0.0728694 0.00986875 +-0.0715958 0.035386 0.00909438 +-0.0654475 0.0414866 0.0340095 +-0.0897915 0.135018 0.00821888 +-0.0256856 0.161028 -0.00218154 +-0.0294591 0.0367076 -0.0187628 +-0.0318602 0.0341892 0.0214236 +-0.0741619 0.0781636 -0.0115723 +-0.0759684 0.138187 -0.00615578 +-0.0746432 0.067744 0.0203901 +-0.0481968 0.058714 0.0359259 +-0.0809888 0.100705 0.031995 +0.0223647 0.0795488 0.0499944 +-0.0164996 0.0587643 0.0515064 +-0.0843239 0.0775269 0.0169616 +-0.0474174 0.157905 0.00867917 +0.0256365 0.0450396 -0.0116814 +-0.0560862 0.153109 -0.0014946 +-0.0364777 0.0491722 0.0391199 +-0.0353775 0.172711 -0.013245 +0.0345426 0.0361041 0.0132537 +-0.0476575 0.0606291 -0.0121142 +0.0517359 0.0693876 0.00244776 +-0.0895642 0.139283 0.0271809 +-0.0554895 0.087587 0.0448409 +-0.00460242 0.0419996 -0.0255341 +-0.0747436 0.0846695 0.0389578 +-0.0522959 0.0518057 0.0276471 +0.0344259 0.0713949 0.0392126 +-0.0858246 0.111645 0.00429163 +7.90085e-05 0.131159 0.00541676 +-0.0876151 0.1105 0.015342 +-0.0308705 0.0385373 -0.0301935 +-0.0174841 0.088353 0.056296 +-0.0717036 0.179379 -0.0498901 +-0.0872579 0.113355 0.0275168 +-0.0132522 0.180136 -0.0286131 +0.0147067 0.111012 -0.0176211 +0.0100468 0.0698695 0.0549195 +-0.00549411 0.130838 0.0134037 +-0.0444864 0.070528 0.0418968 +-0.0694946 0.0902043 0.0422251 +-0.0125029 0.0673483 0.0540527 +-0.0889341 0.0928773 0.0104474 +-0.049902 0.0335302 0.00572664 +0.0224871 0.0436168 0.0410219 +-0.0391731 0.163682 -0.0125377 +-0.0389872 0.0336658 0.00601497 +0.0423783 0.0676875 -0.00279832 +-0.0314483 0.177007 -0.0139273 +0.0365023 0.0700019 0.0369139 +-0.0817843 0.113273 -0.0014411 +-0.0155011 0.0786732 0.0567092 +-0.0616004 0.115786 -0.012288 +0.0336937 0.0994802 0.0365924 +-0.0819199 0.0775142 -0.000486403 +-0.0620032 0.154899 0.00420466 +-0.0689571 0.134062 -0.00839151 +0.0341993 0.115326 0.00949444 +-0.0853268 0.127125 0.0496018 +-0.0075399 0.0430305 0.0487452 +-0.000964681 0.0992981 -0.0251507 +-0.0896495 0.146064 0.0111487 +0.0457169 0.0792126 0.021174 +-0.0677903 0.180834 -0.0585489 +-0.0525855 0.0528134 0.0122839 +0.045458 0.0847917 0.019171 +-0.0620511 0.164652 -0.0545872 +-0.0012817 0.0411143 0.047028 +-0.0620444 0.166711 -0.0606187 +0.0416044 0.0774454 -0.0068035 +-0.0180891 0.0568831 0.0497969 +0.0289502 0.0888845 0.043761 +-0.0361509 0.0471597 -0.0213258 +0.0209931 0.0505428 0.042434 +-0.081698 0.0939818 0.0329068 +-0.0701548 0.148741 -0.0366493 +-0.0726057 0.158224 -0.0359121 +0.0452801 0.0777562 0.00119407 +0.0034868 0.107186 0.0422902 +-0.0603898 0.116109 -0.0126519 +-0.0799294 0.154987 0.0226092 +-0.0412543 0.0342017 0.0283816 +-0.073067 0.0692219 0.0282366 +-0.0232836 0.0382816 -0.000419572 +-0.0843726 0.0952582 -0.00357113 +-0.0871856 0.0923586 0.0257303 +0.0415318 0.09261 0.0284783 +-0.0528539 0.1113 -0.0177773 +-0.0653767 0.0770838 0.0407622 +0.0608603 0.0609709 0.0131614 +0.0163938 0.128844 0.0100049 +-0.028759 0.0386585 -0.0166912 +-0.0688752 0.11651 -0.00852528 +-0.00266028 0.0525834 -0.0313625 +0.0395925 0.0979794 0.0293107 +-0.063517 0.0417383 0.0266777 +-0.0206145 0.038142 0.0147556 +-0.0746919 0.0745094 -0.0088781 +-0.0730235 0.16103 -0.0369405 +-0.0511023 0.141628 0.018382 +0.026686 0.0963684 -0.0200186 +0.00049039 0.0952019 0.0544773 +-0.0374215 0.0466159 -0.0218044 +-0.0396639 0.0592228 -0.0116772 +0.0589085 0.0593684 0.0217913 +-0.069935 0.128232 -0.00913858 +-0.0154583 0.128246 0.0199229 +-0.082956 0.0762572 0.0165263 +-0.0698527 0.139727 0.0465118 +-0.0793995 0.0962934 -0.0095136 +0.029447 0.119051 0.00204245 +-0.0406195 0.0505975 -0.0111291 +-0.0337259 0.125903 0.000119567 +-0.00361865 0.109419 -0.0218821 +-0.0324923 0.0845615 0.0419149 +-0.0304819 0.0903593 0.0440392 +-0.0289421 0.0848695 0.0456392 +-0.067993 0.172429 -0.0412978 +-0.0699656 0.167828 -0.0233999 +-0.0633908 0.0664235 0.0326881 +-0.0328103 0.178226 -0.00982944 +-0.0144938 0.0897854 0.0566872 +-0.00301248 0.0391855 -0.0120497 +-0.0467348 0.10982 -0.0182008 +-0.0347751 0.123588 -0.00668109 +-0.081672 0.0966878 0.0327979 +0.0208066 0.08618 0.0495337 +-0.0294922 0.102919 0.0420695 +-0.0514977 0.0917694 0.0441515 +-0.0561584 0.13394 0.0346041 +0.0587961 0.055231 0.00916964 +0.0239769 0.0672243 0.0451455 +-0.0590987 0.135299 0.0356206 +-0.0833215 0.153324 0.00972396 +-0.0775565 0.148654 -0.00488618 +0.0134356 0.129163 0.0217505 +0.00242681 0.0392303 -0.00913048 +-0.00111738 0.0369593 -0.0152505 +-0.0884159 0.102321 0.0103913 +0.0452046 0.0684536 0.0248447 +-0.0107692 0.1278 -0.0014358 +-0.067702 0.169446 -0.0560134 +-0.0645991 0.162478 -0.0199783 +-0.0384905 0.0591295 0.0404813 +-0.0133897 0.0383025 0.0215062 +-0.0335039 0.113859 0.0341437 +0.00725148 0.0739904 -0.0339985 +-0.0197912 0.0347004 -0.0276305 +-0.0364291 0.0383909 -0.00870817 +-0.0382525 0.154358 -0.00883541 +-0.0576615 0.0645392 -0.00788705 +0.0271486 0.0677873 -0.0226945 +-0.0484929 0.0776741 0.0437591 +-0.0538207 0.0913026 -0.0221948 +-0.0414756 0.102877 0.0407886 +-0.0194769 0.0384097 -0.0016118 +0.0409764 0.0725373 0.0310711 +-0.046711 0.0723683 -0.0164352 +-0.0169229 0.0385492 -0.0161043 +0.0274461 0.0888981 0.0450769 +0.0384486 0.0446185 0.0300797 +-0.0498739 0.120141 -0.01301 +-0.0147995 0.0382136 0.0194957 +-0.034222 0.0422724 0.0479221 +-0.00554376 0.0388664 -0.0141367 +-0.00771915 0.0642161 -0.0356843 +0.0380609 0.108343 0.0221716 +-0.0496329 0.05762 -0.010324 +-0.0640324 0.0336604 0.00811729 +0.0288939 0.0349903 0.0075309 +-0.0369254 0.170672 -0.0129456 +0.0567415 0.0605855 0.00115011 +-0.026353 0.0382316 0.0044532 +-0.088166 0.0963498 0.023753 +-0.0332851 0.0368458 -0.0306141 +-0.0138558 0.0387296 -0.0044727 +0.0597512 0.0650182 0.00715554 +-0.0267551 0.0740245 -0.0360482 +0.0214915 0.0369736 0.0352586 +-0.0515738 0.0559395 0.0296214 +0.00622241 0.123988 -0.00957575 +0.0558148 0.0493476 0.0171957 +-0.0766567 0.112144 0.0469767 +0.0408877 0.0928069 -0.00817715 +-0.0862272 0.0886081 0.000477626 +-0.0341682 0.0723955 -0.0204945 +0.0468003 0.0745424 0.0107517 +-0.00983206 0.0896484 -0.0366649 +-0.00782261 0.0985178 0.051315 +-0.070543 0.17193 -0.0350862 +0.0371254 0.0869172 -0.0157926 +-0.059432 0.152725 0.0327387 +-0.0644942 0.149793 0.0375095 +-0.02966 0.0875784 -0.0315907 +0.0234483 0.0350084 0.0101439 +-0.0672661 0.155709 0.00954294 +0.0249549 0.0915796 0.0467751 +-0.0750729 0.0675817 0.0186826 +-0.065557 0.158804 -0.0559152 +-0.0869809 0.112371 0.0426661 +-0.0388924 0.0336117 -0.0270987 +-0.0925871 0.117342 0.0103086 +-0.0285134 0.0559644 0.0364164 +-0.0592485 0.148248 0.0355123 +-0.0386245 0.0472623 -0.0172994 +0.0417415 0.0676611 -0.00475281 +0.017067 0.127696 0.00312982 +-0.00768714 0.116771 -0.0157299 +-0.0210692 0.0667823 0.0496379 +0.0306718 0.0605569 0.0407187 +-0.086202 0.0805924 0.0105044 +0.0248868 0.0727438 0.0465386 +-0.0226479 0.182963 -0.0190305 +-0.064868 0.0953298 -0.0181139 +-0.0212331 0.0553385 0.0459146 +-0.0900228 0.148451 0.0254546 +-0.0659345 0.109414 0.0377967 +-0.0156357 0.0466082 -0.0291798 +-0.0783295 0.108958 0.0384425 +-0.0353519 0.169773 -0.000327923 +-0.0576724 0.155657 0.012957 +0.0299243 0.0902598 0.0434097 +-0.0938789 0.125503 0.0152603 +0.00849738 0.0910108 0.0540495 +-0.0924729 0.117499 0.0403021 +-0.0538856 0.101336 -0.0209374 +0.0230068 0.125355 0.00960117 +-0.0753773 0.0887668 0.039456 +-0.0164714 0.0348128 0.0436847 +-0.0124833 0.108618 0.0427908 +0.00650022 0.0937602 0.0531051 +-0.0254901 0.101602 0.0435889 +-0.0681644 0.132655 0.0471068 +0.0116725 0.130674 0.0125466 +-0.0658455 0.0693268 0.0349111 +0.0131057 0.0346676 0.0247536 +0.0111453 0.0752893 0.0548169 +-0.0414315 0.120058 -0.0129928 +-0.0667828 0.0837809 -0.018353 +-0.0558768 0.105489 -0.0184971 +-0.0646849 0.0705888 -0.0125799 +0.00250861 0.0634123 0.0567384 +-0.0102337 0.0987343 -0.0266102 +-0.0475686 0.0376232 -0.0123457 +0.0326729 0.0388984 0.0249367 +-0.0754158 0.14997 -0.0218646 +0.0149498 0.0475024 0.0442108 +-0.0897923 0.144692 0.013139 +-0.065193 0.0597221 0.0116014 +-0.0777759 0.113375 -0.00398806 +-0.0457101 0.131722 0.0089192 +-0.0575663 0.0481384 0.0346641 +-0.0838122 0.128533 0.0508937 +-0.0104939 0.0933018 -0.0349679 +0.0252085 0.0464911 -0.0166174 +-0.0789879 0.13894 -0.00474105 +-0.0475728 0.0656919 0.0379498 +0.0110822 0.113195 -0.0179885 +-0.0649225 0.170267 -0.0430968 +-0.00871405 0.112847 -0.0195489 +0.0452857 0.0889846 0.0161633 +-0.0171038 0.128182 0.00771491 +-0.0114919 0.0911558 0.0564108 +-0.0672347 0.158081 -0.05503 +-0.0375789 0.0335576 -0.0249215 +-0.028354 0.0521667 -0.0233844 +-0.0687469 0.179151 -0.0517127 +-0.0635972 0.164728 -0.0295802 +-0.00849416 0.0661021 0.0557034 +0.0018938 0.131459 0.00752669 +-0.0104875 0.10724 0.0431922 +0.0420847 0.0764929 0.0291356 +-0.0164676 0.125926 0.0254562 +-0.0666931 0.162075 -0.0149837 +0.000392133 0.0405199 -0.0247969 +-0.062597 0.0740287 0.040345 +-0.038486 0.115285 0.0333239 +-0.0134767 0.0545379 0.0508338 +-0.0379773 0.128134 0.0117903 +0.0282176 0.0746072 -0.022898 +-0.00949856 0.0898059 0.0569552 +-0.0633588 0.166271 -0.0375898 +-0.088608 0.0874693 0.0094764 +-0.00658802 0.126776 -0.00645935 +0.00550371 0.0533623 0.0533002 +0.0568364 0.0723477 0.016027 +-0.0746813 0.077485 -0.0103851 +0.0599778 0.0622697 0.0191849 +-0.0834343 0.143353 0.0415913 +0.0461466 0.0773319 0.0190905 +-0.0643928 0.0366139 0.0414145 +0.017105 0.0913787 0.0494605 +0.0113838 0.0463423 -0.025328 +0.00150906 0.0925101 0.0553138 +-0.0905552 0.131061 0.0372264 +0.0271939 0.0479684 -0.0167032 +0.0118641 0.130407 0.00833975 +-0.0534963 0.0413918 0.0463882 +-0.00348783 0.0548509 0.0542207 +-0.0241218 0.165279 -0.0170232 +0.0526044 0.0736805 0.0129696 +0.00493694 0.0358587 0.023833 +-0.0308996 0.0862326 -0.0295626 +-0.0749566 0.152744 -0.0158977 +0.022407 0.0700249 0.0481925 +-0.0644326 0.152123 0.0354487 +-0.083145 0.0762813 0.00952219 +-0.0066641 0.130277 0.00578337 +-0.0503124 0.0487527 0.0166746 +-0.0857975 0.0926505 0.000473688 +0.0319954 0.0554568 -0.0137989 +-0.0325248 0.0371997 0.032926 +-0.0378236 0.0914714 -0.0236656 +0.0107752 0.0603237 0.0523688 +-0.0709378 0.0995366 0.0403447 +0.00229927 0.0641027 -0.0339638 +0.0301658 0.0510827 -0.0137422 +-0.0152122 0.0387061 -0.0065833 +0.0328168 0.0373031 0.0209449 +-0.0564976 0.0959787 0.0438593 +-0.0530296 0.137293 -0.00118635 +-0.0114929 0.0745162 0.0566704 +0.0339687 0.0768049 0.0403387 +0.0229251 0.0476731 0.039919 +0.0153286 0.0594649 -0.0285327 +-0.0650165 0.0356472 0.0166692 +-0.0872319 0.104968 0.0093836 +0.0317565 0.0752189 -0.019756 +0.0174897 0.107108 0.0415537 +0.00650555 0.0716952 0.056225 +0.0214733 0.0808843 0.0504673 +-0.0157973 0.0382489 0.019257 +-0.073889 0.119392 -0.00790358 +-0.0588895 0.0969269 -0.0201624 +-0.0614701 0.166956 -0.0604533 +-0.0411287 0.160673 -0.0112161 +-0.0558134 0.0883826 -0.0218608 +-0.0206962 0.0385843 -0.00942784 +0.0401892 0.0759203 -0.00879733 +0.0191194 0.0349494 -0.00374623 +-0.0414976 0.113906 0.0346806 +-0.00581815 0.0854694 -0.0375201 +-0.0859756 0.0805547 0.00750576 +-0.0833395 0.103378 -0.00262342 +-0.0446335 0.126046 -0.00723965 +0.0260088 0.0910229 -0.0223512 +0.034944 0.10998 0.0278542 +-0.00248857 0.0703789 0.0573235 +-0.0102702 0.0385128 0.00564525 +-0.0283572 0.0578046 -0.0244014 +-0.0210295 0.0958616 0.0473023 +-0.0141375 0.0347096 0.0460356 +-0.0244241 0.178665 -0.0108375 +0.00749812 0.109597 0.0408218 +-0.0356643 0.0606925 -0.0124069 +-0.0638002 0.166551 -0.0354938 +-0.0862312 0.0940245 0.00140199 +-0.0365789 0.0337187 0.00826156 +0.0240933 0.0685753 0.045325 +-0.0891661 0.132396 0.0419315 +-0.0177346 0.065722 -0.0374816 +-0.0224613 0.12203 0.0284859 +-0.0509119 0.055753 0.0316394 +-0.0340805 0.0680941 -0.0175876 +-0.0166639 0.0364717 -0.017882 +0.0347021 0.0768104 0.0396564 +0.0213412 0.0565052 -0.0267347 +-0.0707159 0.179287 -0.0569572 +-0.0748092 0.0790936 0.0363823 +-0.0577944 0.0460393 0.0120187 +-0.0302932 0.123607 -0.00301843 +0.00749105 0.050377 0.0513506 +-0.0641553 0.162388 -0.0586672 +-0.0197076 0.059653 0.0484949 +0.0376477 0.110588 0.00928033 +-0.0151896 0.0391404 0.0514631 +0.020848 0.0400652 -0.0117024 +-0.0208303 0.119929 -0.0109428 +0.0157129 0.124796 -0.00448994 +-0.00658665 0.0388228 -0.0143041 +0.0254417 0.121647 0.000551492 +0.0535789 0.0658041 0.000119664 +0.0473148 0.0518659 -0.00495567 +0.0299175 0.0524736 -0.0157475 +-0.0183959 0.112492 -0.0191613 +-0.0893828 0.0916068 0.0204288 +-0.0614858 0.175719 -0.0606762 +-0.0901396 0.13244 0.0372222 +-0.0238257 0.0881589 -0.0366228 +-0.0218791 0.0383442 -0.00388387 +0.00124143 0.0390154 -0.00356473 +-0.0669805 0.1589 -0.00929727 +0.0483233 0.0547304 -0.00526262 +-0.0444857 0.0661533 0.0401374 +-0.0514919 0.076238 0.0430598 +-0.0301912 0.0664057 -0.0274649 +-0.0408343 0.0942887 -0.0229156 +-0.00749956 0.121159 -0.0124082 +-0.061476 0.158429 -0.028587 +-0.0675029 0.109729 0.0377486 +-0.0697083 0.1638 -0.0499695 +-0.062151 0.152195 -0.0205783 +0.0342924 0.0619556 0.0389482 \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny_ran.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny_ran.pts new file mode 100644 index 000000000000..91de67a41378 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/bunny_ran.pts @@ -0,0 +1,35948 @@ +150 +-0.0164722 0.0382453 0.0209318 +-0.0641407 0.171114 -0.0471776 +0.023086 0.119339 0.0317977 +0.00506037 0.0347021 0.0393176 +-0.066143 0.143958 0.0413147 +-0.0445017 0.163753 0.00542301 +-0.0689729 0.181022 -0.0546459 +-0.0931085 0.131006 0.0192314 +0.000506827 0.0489752 0.0512269 +-0.0615935 0.160001 -0.0315914 +-0.0245032 0.0960169 0.0442753 +-0.0258992 0.0891655 0.049535 +-0.000499367 0.0456802 0.0470389 +-0.0171808 0.0654583 0.0528522 +0.00116916 0.131228 0.00582139 +-0.0356565 0.122935 -0.00798984 +-0.0701892 0.156285 0.021569 +-0.0173569 0.038443 0.0259817 +-0.0716413 0.0763478 -0.0132577 +0.0528545 0.0568172 0.0288563 +-0.0325067 0.0732308 0.0407775 +-0.0760686 0.150008 -0.00987485 +-0.030561 0.0774145 0.0410957 +-0.0833901 0.0762729 0.00451303 +-0.000492618 0.0925258 0.0556594 +-0.0358778 0.159506 0.00240863 +0.0115111 0.114076 0.0384616 +-0.0877889 0.0887187 0.00347532 +-0.0261028 0.115949 -0.0147279 +-0.0682913 0.165205 -0.0539869 +-0.0225512 0.0933694 -0.0331106 +-0.0538783 0.0999149 -0.0214389 +0.0435587 0.0959151 0.0211557 +-0.0167991 0.0388632 -0.0107644 +-0.0569142 0.0548839 0.00364185 +0.00749229 0.091015 0.0542708 +-0.065316 0.0625169 -0.002419 +-0.00749647 0.119689 0.0375376 +-0.0772165 0.0934484 -0.0125951 +-0.029008 0.0478606 -0.0250513 +0.00934189 0.0553527 -0.0303034 +-0.0578677 0.104042 -0.0186102 +0.0405495 0.0999198 -0.00379356 +-0.0894314 0.137929 0.0371779 +0.00710731 0.126603 -0.00643182 +0.058913 0.070492 0.0108657 +-0.0922485 0.120133 0.0292903 +0.0395325 0.105566 0.0221621 +-0.0376065 0.0365426 0.0444186 +-0.0550158 0.128128 -0.00563226 +-0.0561672 0.0336533 0.0186553 +0.0123436 0.0351165 0.0296251 +-0.0899184 0.131005 0.0413145 +0.0065365 0.100373 0.0469448 +-0.0502879 0.133796 0.0278403 +-0.0716838 0.0351362 0.00880221 +0.0579126 0.0523842 0.0101848 +-0.0639212 0.154791 0.00385831 +-0.0654795 0.0384216 -0.00684663 +-0.0615513 0.0624603 0.0259481 +-0.0368013 0.0842007 -0.0223672 +0.0522757 0.0574291 -0.0035048 +-0.0764972 0.123179 0.0527664 +0.0302998 0.0694384 -0.019812 +-0.0334269 0.0486094 0.0413091 +-0.00450651 0.0689184 0.0565193 +0.0425976 0.0887597 -0.00680771 +-0.0707351 0.156208 0.0228366 +0.0548799 0.0492406 0.0202107 +-0.00962948 0.168316 -0.023669 +-0.0313363 0.11605 -0.0148117 +-0.0225249 0.125571 0.0012278 +0.0122871 0.124953 0.0313975 +-0.0343047 0.125361 0.0205265 +-0.038499 0.0747376 0.0420783 +0.0292349 0.0759579 -0.0220376 +-0.0255784 0.0477093 -0.0263526 +-0.0750958 0.151313 -0.0258791 +0.0057743 0.0347896 0.0375885 +-0.0926124 0.120126 0.0272917 +-0.0366664 0.175138 -0.00407486 +-0.00549337 0.088417 0.0570387 +-0.0711473 0.17507 -0.0540267 +-0.0776118 0.0739521 0.0284675 +0.0376746 0.104662 0.0282621 +-0.0634881 0.121359 0.0469409 +0.0233296 0.0564006 -0.0254415 +-0.0399361 0.123254 0.0259269 +-0.000577398 0.0341134 -0.0181551 +-0.000496894 0.0520342 0.0541515 +-0.0701023 0.177167 -0.0478719 +-0.0641167 0.143926 0.0389732 +-0.0679369 0.165269 -0.0197719 +-0.0681029 0.138305 0.0455026 +-0.00280426 0.0384802 0.0198949 +-0.0628273 0.0924874 -0.0189476 +0.0084946 0.0869435 0.0558386 +0.00910286 0.0348066 0.0183719 +-0.0195983 0.126231 0.0213862 +-0.0584949 0.143878 0.0330085 +-0.0218343 0.0553077 0.0451067 +-0.0645685 0.147457 -0.0230581 +0.0426227 0.0691122 -0.00279622 +-0.035813 0.0842739 -0.0225525 +-0.0819685 0.0791215 0.0284136 +0.0328852 0.113087 -0.00384394 +-0.0677123 0.168615 -0.0283035 +-0.0556635 0.140996 0.0299986 +-0.0764958 0.131682 0.0526442 +0.0421796 0.0832522 0.0293553 +-0.0848653 0.0855483 0.0264341 +-0.0329445 0.121338 0.0269922 +-0.0320197 0.058187 -0.0133973 +-0.0322785 0.0421631 -0.0296986 +0.0401757 0.067497 -0.00878165 +-0.0904989 0.148452 0.0245146 +-0.00947974 0.0561444 0.0530127 +-0.0310333 0.0383692 -0.000250742 +-0.0780713 0.150403 0.0367551 +-0.0872126 0.146051 0.00824907 +-0.0735722 0.148626 -0.0268487 +-0.00548676 0.116904 0.0394711 +-0.0599006 0.132533 0.037981 +-0.093479 0.129659 0.0212406 +-0.0639063 0.120904 -0.00875525 +-0.028606 0.0356961 0.0524615 +-0.0652024 0.153998 -0.041972 +-0.0262134 0.0765572 0.0473962 +-0.0774721 0.155387 0.0234212 +-0.0628707 0.0345025 0.0358026 +0.0434964 0.0555926 0.0322399 +-0.0618022 0.142496 0.0370478 +-0.0638273 0.0910291 -0.0188305 +-0.0636286 0.0672101 0.0337087 +-0.0842132 0.092522 0.0298256 +0.0185123 0.115397 0.0365584 +-0.0666269 0.131204 0.0458398 +-0.0653475 0.165775 -0.0260007 +-0.0182573 0.181629 -0.0177335 +-0.0142757 0.185348 -0.0257883 +0.0485082 0.0624718 0.0300814 +-0.0254927 0.0974122 0.0441083 +-0.0446561 0.0349999 0.0427486 +-0.0616719 0.0410515 0.0160296 +-0.0179307 0.0931593 -0.0348763 +-0.00828798 0.130102 0.00662088 +-0.0525878 0.149334 0.020403 +-0.0102534 0.128943 0.0232512 +0.0445378 0.0959706 0.0101622 +-0.0465291 0.0335268 -0.00814027 +0.00437534 0.131145 0.0198749 +-0.0394369 0.03436 0.0321562 +-0.0107155 0.127812 0.0260097 +-0.0273383 0.17123 -0.0098418 +-0.0037118 0.0655569 -0.0347446 +-0.0630689 0.150547 -0.0265942 +-0.0776846 0.16386 -0.0329461 +-0.0728796 0.151218 -0.0388899 +0.038172 0.0967289 0.0325586 +-0.058907 0.0983413 -0.0195805 +-0.00549542 0.0965711 0.0536823 +0.00650609 0.0503877 0.0517539 +-0.0847722 0.113367 0.0459387 +0.0309512 0.0822193 0.0430727 +-0.0159859 0.0984773 0.0464357 +0.0361586 0.0781359 0.0382445 +0.0417308 0.0422749 0.000248643 +-0.0631435 0.175042 -0.061564 +-0.0251041 0.0945178 -0.0276305 +0.018776 0.122594 -0.0061273 +0.0173125 0.0726566 0.0514253 +-0.0377229 0.0724783 -0.0174913 +0.0173872 0.0432828 -0.0228623 +0.0416262 0.0912615 0.0286616 +-0.050567 0.0474222 -0.00850865 +-0.0150865 0.162585 -0.00969001 +0.0143357 0.0566765 -0.0290221 +-0.0309078 0.065095 -0.0224325 +0.045522 0.0805737 0.00219452 +-0.0725374 0.138625 0.0483183 +-0.0476365 0.150675 0.00992423 +-0.0799103 0.125126 -0.00560703 +-0.051025 0.159915 -0.00453945 +0.00139766 0.0419298 -0.0244976 +-0.0664219 0.0352675 0.015055 +-0.00832508 0.130422 0.0138058 +-0.00366678 0.0481589 -0.0301707 +-0.0738566 0.161044 -0.0339379 +0.0319703 0.0475137 0.0318758 +0.0188215 0.126955 0.00377584 +-0.0309617 0.044825 -0.0281993 +0.0456484 0.0875951 0.00518134 +-0.0521074 0.0583062 0.0285239 +-0.0171825 0.0382402 0.011747 +-0.0692976 0.0615474 0.00912978 +-0.0232044 0.175652 -0.0207635 +-0.0406662 0.0592305 -0.0118049 +0.0572429 0.0508905 0.0121849 +-0.0488285 0.0416917 0.0446681 +0.0455301 0.0677752 0.0254231 +-0.0846369 0.110251 0.00429821 +-0.0754652 0.163196 -0.0162299 +-0.0247271 0.0564997 0.0408849 +-0.0639975 0.0601011 0.00610183 +-0.0741599 0.155538 0.00126713 +-0.0728899 0.122329 -0.00823917 +0.010861 0.0360066 0.0447493 +0.0150176 0.0355797 0.04239 +-0.0437155 0.0710509 -0.0175901 +0.0271589 0.093209 -0.0206672 +-0.00592646 0.12418 0.0336126 +-0.0810295 0.0895599 -0.00769505 +-0.0920663 0.121362 0.00826874 +-0.0862277 0.0832671 0.00749085 +-0.085371 0.127983 -0.0026626 +-0.081815 0.108922 0.02836 +-0.0491537 0.135503 0.0034228 +0.00885847 0.0887054 -0.0320419 +-0.0673146 0.0446682 0.00602001 +0.0152697 0.128852 0.0195703 +0.0231834 0.0422122 0.040252 +-0.0286261 0.0463451 -0.0269667 +0.0449154 0.0763231 0.00019353 +-0.0387296 0.0739178 -0.0177449 +0.0212191 0.0819428 -0.0266321 +-0.00126307 0.039726 0.0470556 +-0.0261021 0.0379463 0.0228342 +-0.0448562 0.101383 -0.0214692 +-0.0014827 0.0390261 -0.00225591 +-0.0648948 0.103911 -0.0165942 +-0.0624902 0.155293 -0.0145941 +0.000436968 0.130385 0.0227651 +-0.0219738 0.059501 0.0451263 +-0.0502789 0.129408 -0.00267456 +-0.0216757 0.065257 0.0474751 +-0.0621482 0.16155 -0.0395978 +0.0427418 0.0916392 0.0261768 +0.00967962 0.127274 0.0289934 +-0.0728707 0.168003 -0.0450202 +-0.0305611 0.179398 -0.00755573 +0.0341402 0.0902832 0.0407178 +-0.0491119 0.0361611 0.0459929 +0.0392087 0.0739776 0.0338431 +-0.0897017 0.151503 0.0171224 +0.0407967 0.105643 0.0101649 +-0.023633 0.0478399 -0.0272396 +-0.0504958 0.0862332 0.0455716 +-0.0451092 0.153606 0.00834539 +-0.0616087 0.146812 0.0373554 +0.0280342 0.0346822 0.009507 +0.0565861 0.0685555 0.00335277 +-0.027568 0.0674298 0.0392602 +-0.0926576 0.117463 0.0373027 +-0.0334278 0.124984 0.0208436 +-0.0602518 0.034678 0.0430709 +-0.0574989 0.107052 0.0398301 +-0.091226 0.128161 0.00727002 +0.0400022 0.0913669 0.0315547 +-0.0656743 0.138242 0.0419702 +-0.0852141 0.0805923 0.0204766 +-0.0444957 0.111173 0.0370595 +-0.044489 0.0803636 0.042222 +-0.00648998 0.122405 0.0354776 +0.00602348 0.111527 -0.0200414 +-0.0860119 0.132159 0.00027761 +0.0521231 0.0734583 0.0172399 +-0.0155403 0.0446621 0.0510487 +-0.0397503 0.0768521 -0.0186787 +-0.0682155 0.0787029 0.0404793 +-0.0813927 0.0758934 0.0225084 +-0.010188 0.0386565 4.14997e-05 +-0.00149609 0.0912323 -0.0347548 +-0.0294974 0.111128 0.0367729 +-0.0503924 0.0501648 0.0186468 +-0.0104698 0.070299 0.0557764 +0.0327323 0.0809002 0.0421262 +-0.0328911 0.122131 -0.00712262 +-0.0861948 0.1005 0.0258994 +-0.0319282 0.178722 -0.00808101 +-0.050675 0.140101 0.0024044 +-0.0346788 0.0636729 -0.0139354 +-0.00820144 0.0344928 -0.0181278 +-0.0830162 0.0939316 0.0314035 +0.0438286 0.0611702 -0.00330591 +-0.0162799 0.127645 0.0211086 +-0.0615233 0.0354132 0.043881 +-0.0755937 0.0809959 -0.0116148 +-0.0632393 0.166259 -0.0385929 +-0.0156738 0.0511142 -0.0317767 +0.000751147 0.0339678 -0.0215355 +-0.0534027 0.0336932 0.022744 +0.0102837 0.0348658 -0.0091814 +-0.0285082 0.0874866 -0.0336017 +-0.0849712 0.111906 0.0292041 +-0.0732162 0.169408 -0.0460252 +-0.00746424 0.110009 0.0430329 +-0.0587154 0.0723411 -0.016523 +-0.00333145 0.0968513 -0.0305901 +0.0385608 0.0713011 0.0346329 +-0.0463734 0.133247 0.0130756 +-0.0474986 0.104275 0.0408376 +-0.0714849 0.147284 -0.0260827 +-0.0404433 0.0461446 -0.0193164 +0.000709469 0.125628 -0.00726116 +0.028516 0.117882 -0.00302906 +-0.00249354 0.0746702 0.0587588 +0.0463101 0.0806468 0.00818141 +-0.0245515 0.114015 0.0358596 +-0.0396488 0.0563195 -0.0111963 +-0.0236961 0.0607746 0.0425604 +-0.0336359 0.0548461 -0.0105101 +-0.0585033 0.0337545 0.0163089 +0.0212208 0.126407 0.0160623 +-0.0729862 0.15207 0.0354642 +-0.085378 0.128494 0.0496125 +0.00429457 0.122356 -0.0118056 +0.0203517 0.0672611 0.0487139 +-0.0452845 0.0395903 -0.0182935 +-0.0211124 0.182965 -0.0210132 +-0.0295465 0.0819132 0.0441437 +-0.0777488 0.07493 0.029356 +0.00824435 0.0966482 -0.0263491 +-0.0588066 0.0854157 -0.0208208 +-0.0718999 0.113582 -0.00821597 +-0.0893735 0.0901981 0.0104595 +0.032603 0.0835706 0.0419526 +-0.0230608 0.0594124 0.0433799 +0.0284544 0.121423 0.0116324 +-0.0832785 0.12444 0.0504652 +-0.0396241 0.0520021 -0.0108773 +0.00721225 0.0837864 -0.0330068 +-0.046713 0.131987 0.00556897 +-0.0663702 0.157999 -0.00906779 +-0.067736 0.0779793 -0.0166569 +-0.0508692 0.102779 -0.0209206 +-0.0828958 0.151378 0.00422572 +-0.0346622 0.118788 -0.0116368 +-0.0726425 0.0716156 -0.00744076 +-0.059725 0.0469427 0.0326718 +-0.0468444 0.033579 -0.0045851 +-0.0384976 0.100064 0.0415702 +-0.050989 0.121022 -0.0119137 +-0.0624226 0.152205 -0.0125757 +-0.085741 0.151793 0.0266482 +-0.0826468 0.144713 0.0407672 +-0.0685649 0.0705046 -0.00966184 +-0.0734033 0.167233 -0.0217479 +-0.0455099 0.155064 0.0077969 +0.022652 0.0862116 0.0486888 +0.043364 0.0547822 -0.00644446 +-0.054457 0.14621 0.0274041 +-0.0639777 0.155958 0.0237716 +-0.0882347 0.0861347 0.011472 +0.00545294 0.1216 -0.0129959 +-0.0334673 0.174268 -0.00177832 +-0.00402179 0.129762 0.0240423 +-0.0185051 0.0711438 0.0540217 +-0.0872329 0.150111 0.00920897 +-0.090033 0.147105 0.0269347 +-0.0141936 0.0419832 0.0511586 +-0.0335873 0.154463 -0.00838872 +0.0441357 0.083266 -0.000805736 +-0.0528842 0.102762 -0.0205636 +-0.0125091 0.0815143 0.0575917 +0.0197435 0.125962 0.0226458 +-0.067993 0.0619274 0.01978 +-0.0216083 0.039391 -0.0287125 +-0.0767116 0.165247 -0.022942 +-0.0861936 0.111308 0.0401352 +-0.0238165 0.0854111 -0.0376407 +-0.0442161 0.123225 0.0243959 +-0.0175443 0.0460366 0.0510389 +-0.0272334 0.0902723 -0.0326005 +-0.0459359 0.168402 -0.00594095 +0.0355423 0.0512597 0.0315836 +0.0451079 0.0636949 -0.00183531 +-0.0368834 0.125578 -0.00482073 +0.0196258 0.0457587 -0.0217227 +-0.00773224 0.109619 -0.0221011 +-0.0514957 0.0876341 0.0455102 +-0.00269376 0.0613003 -0.0344696 +-0.0512049 0.147808 0.0143958 +0.0266901 0.106496 -0.0148024 +0.0383861 0.0476151 -0.00591592 +-0.0136895 0.0952904 -0.0330103 +0.0368491 0.0767795 0.0374896 +-0.029592 0.0522946 -0.0203629 +0.0482309 0.0500295 -0.00369862 +0.0381363 0.0794306 0.0358549 +-0.0677271 0.155796 -0.00229118 +0.026043 0.0392404 0.0305576 +0.0208388 0.126564 0.0173475 +0.0159735 0.0448127 0.0438765 +-0.0681757 0.118633 0.0523539 +-0.065068 0.136793 0.0410949 +-0.0454458 0.168254 0.00168996 +-0.0715222 0.142818 0.0455702 +-0.0604912 0.112522 0.03629 +-0.00074702 0.0712329 -0.0350931 +-0.0894331 0.150114 0.0121902 +-0.0185746 0.0381525 0.0151621 +0.0291213 0.0348096 0.00960912 +0.0404448 0.0985503 0.0271661 +0.0134712 0.0936014 0.0511282 +-0.021496 0.103017 0.0435858 +0.00918856 0.0342345 -0.00132638 +-0.0508332 0.0956285 -0.0221275 +-0.0613646 0.0394268 0.0439671 +0.0264379 0.0968548 0.0436578 +-0.0646669 0.0405364 0.0387423 +0.0125029 0.0475354 0.045933 +0.0412949 0.104257 0.00416372 +-0.00222052 0.117102 -0.0161156 +-0.00995662 0.169734 -0.0198047 +0.0200755 0.0399795 -0.0157069 +-0.0839165 0.110514 0.0395089 +-0.0546435 0.116042 -0.0146857 +0.0268767 0.0854059 -0.022529 +-0.0543926 0.0337363 0.0224962 +-0.049781 0.0841032 -0.0216622 +0.0431463 0.100109 0.00616795 +0.0393814 0.0780345 0.0341058 +-0.0162612 0.17862 -0.0260128 +-0.0335093 0.0676035 0.0406399 +-0.0176483 0.0352702 -0.0188352 +-0.031463 0.0519033 0.0373773 +-0.0803572 0.0803552 0.0319871 +-0.0320868 0.159267 -0.0129293 +0.0132853 0.0589897 0.0507165 +-0.0103631 0.180289 -0.0277342 +-0.0144925 0.0559441 0.0511232 +-0.0246444 0.0381166 0.0247786 +0.0170669 0.0871276 -0.028336 +0.00372554 0.105196 -0.0213905 +-0.0777857 0.156925 -0.0179137 +0.0578227 0.0710073 0.0178627 +-0.0582482 0.0336534 0.0128901 +-0.0520861 0.0545712 0.0266312 +0.0269849 0.113053 -0.00983991 +0.0429421 0.0467386 0.030224 +0.00548112 0.11414 0.0405028 +0.0607975 0.0637336 0.0101416 +-0.0895137 0.135181 0.0391853 +-0.0822803 0.139383 0.0462108 +0.00350363 0.0883757 0.0563643 +-0.0599112 0.109712 -0.0163845 +-0.0699244 0.107994 -0.0118147 +-0.073438 0.145781 -0.0138542 +-0.0702694 0.156361 0.0186365 +0.0365208 0.0713424 0.036933 +-0.0764811 0.141399 0.0471717 +-0.0338378 0.0943788 -0.02372 +-0.0185768 0.055451 0.0489119 +-0.0294962 0.107041 0.0398129 +0.0351663 0.0783387 -0.0157415 +-0.0823976 0.095314 0.0321564 +0.0458052 0.08902 0.00916777 +0.00466954 0.0341296 0.0180802 +0.012258 0.0751733 -0.0308354 +-0.0176564 0.0480544 -0.0295902 +-0.0487658 0.0811872 -0.020682 +-0.0375125 0.045091 0.0407522 +0.00960807 0.0375632 0.0322947 +0.0522688 0.0462249 0.00921199 +-0.0452834 0.0395877 -0.019291 +-0.0396931 0.126183 0.0200311 +-0.0903381 0.144712 0.0141544 +-0.0430213 0.0450576 -0.0153284 +-0.0539191 0.129665 -0.00510771 +-0.0384876 0.108386 0.0375357 +-0.0496388 0.0605583 -0.0113235 +-0.034501 0.115223 0.0328885 +-0.0540284 0.131061 -0.00500164 +-0.0147028 0.0389017 0.0333119 +-0.0207376 0.0641563 -0.0358205 +0.00590682 0.131658 0.0132863 +-0.0819436 0.154696 0.0145801 +0.0526661 0.0660937 -0.000184776 +-0.0526201 0.14007 0.0244025 +-0.0752504 0.177839 -0.0529463 +-0.0574955 0.0946379 0.0447737 +0.0456129 0.0904097 0.00518194 +-0.0282629 0.122524 0.022734 +-0.0680338 0.142566 0.0438693 +-0.0643033 0.0426016 0.0312522 +-0.0314971 0.102929 0.041974 +-0.00589664 0.0980966 0.0519993 +-0.0542782 0.132533 0.0338047 +-0.0911122 0.11473 0.0343167 +-0.0493972 0.140141 0.00739907 +-0.0577664 0.0485104 0.00767417 +-0.0629684 0.139576 0.0370615 +-0.0122087 0.128137 0.0240139 +0.00116984 0.129366 -0.00128907 +-0.039496 0.0634667 0.0415276 +-0.0427066 0.0696149 -0.0170299 +-0.0721201 0.149786 -0.0402916 +-0.0637423 0.168365 -0.0426884 +-0.0228169 0.0383283 0.0285633 +-0.0894925 0.143336 0.0131803 +-0.0408822 0.128708 0.0107294 +-0.043783 0.147719 0.00491206 +0.00912223 0.0833108 0.0554277 +-0.0543042 0.0335497 0.00301212 +-0.0544171 0.0333785 -0.00775516 +0.0295237 0.0727272 0.042682 +-0.0504982 0.112495 0.0358796 +-0.0240218 0.119915 -0.0108978 +-0.0535232 0.0556038 0.0117195 +-0.0480175 0.133707 0.00490199 +0.00583381 0.129313 0.0261699 +-0.0405566 0.149165 -0.00293165 +-0.0286765 0.0690744 -0.0314836 +0.0453693 0.0693828 0.00245115 +0.0581659 0.056561 0.00517446 +0.0192888 0.0651078 -0.0282476 +-0.0228892 0.0739252 0.0512281 +-0.0217183 0.113234 -0.017904 +0.0365187 0.0526805 0.0315096 +0.0490482 0.0539975 0.0303486 +0.0175085 0.114012 0.0373101 +-0.0328107 0.126843 0.0122027 +-0.0687814 0.0336983 0.00353162 +0.0220892 0.0906332 -0.0239505 +-0.0460528 0.122513 0.026245 +0.0381409 0.109688 0.00657231 +0.0368421 0.0742334 -0.0127504 +-0.0657975 0.0340784 0.0127357 +-0.0706216 0.146831 -0.0255714 +-0.0468292 0.091298 -0.0217206 +-0.0914681 0.144718 0.0171554 +-0.0624908 0.0343254 0.0238098 +0.0543739 0.0477987 0.0161989 +-0.0195403 0.1757 -0.0161256 +0.0224671 0.0343921 0.00678503 +-0.0654707 0.155271 0.00728456 +-0.0897135 0.12265 0.00431103 +-0.0501651 0.0361307 0.0461721 +-0.0901888 0.139114 0.0151891 +-0.0726107 0.156829 -0.0349095 +-0.0334964 0.0718545 0.0411869 +0.0106165 0.0644536 0.0539383 +0.0274263 0.0491525 0.0376576 +-0.0157908 0.169796 -0.0160148 +-0.0608326 0.17151 -0.0610901 +0.0136156 0.126814 -0.00267762 +0.0293325 0.0535401 0.0386956 +-0.0652579 0.153012 -0.0402459 +0.0264019 0.036087 0.0225582 +0.0101281 0.105858 -0.0202342 +-0.0674046 0.0833115 0.0429955 +-0.0312435 0.0538841 -0.0143722 +0.0424267 0.0441756 -0.00158684 +-0.0305089 0.0760274 0.0408429 +-0.0849899 0.127963 -0.0030064 +-0.0223249 0.0386602 -0.0135496 +0.0216012 0.112963 -0.0137495 +-0.0224297 0.0552774 0.0442986 +-0.093152 0.121537 0.0362834 +-0.0384463 0.166779 0.00239389 +0.0317419 0.0667553 -0.0187125 +-0.0127135 0.100022 -0.0239701 +0.0204112 0.0371925 -0.00568428 +0.0383001 0.0969495 -0.00880451 +-0.0500528 0.150184 -0.0037815 +-0.0578783 0.106898 -0.0179862 +0.0485378 0.0682762 0.00156381 +-0.0708965 0.0341323 0.00629169 +-0.0871174 0.110466 0.0103621 +-0.0235739 0.0944939 0.0470656 +-0.0164815 0.0515035 0.0485835 +0.0325428 0.0380502 1.57112e-05 +0.0385774 0.0888011 0.0348199 +-0.0628692 0.0445185 0.0382675 +-0.0572856 0.125533 0.0399888 +-0.0780066 0.0940671 0.0362827 +-0.0361012 0.160724 -0.0132118 +0.0200495 0.124902 -0.000599563 +0.0101263 0.107276 -0.0197522 +0.0224877 0.0961643 0.0466342 +-0.077715 0.0852782 -0.0115916 +-0.0164955 0.105778 0.0423459 +-0.0725318 0.101313 0.038599 +-0.0663565 0.0783826 0.0411592 +-0.0644378 0.17995 -0.0588828 +-0.0645973 0.171184 -0.0458828 +0.0111199 0.129735 0.0223368 +-0.018333 0.172741 -0.0161594 +-0.0864925 0.10492 0.00639597 +-0.0144943 0.0500942 0.0487331 +-0.0855601 0.095177 0.0282718 +1.67787e-05 0.0386604 0.0239291 +0.0109499 0.0344084 0.00259617 +-0.0270041 0.168274 -0.00938266 +-0.0378811 0.107099 -0.0200653 +0.060304 0.0664655 0.0101406 +-0.0478845 0.108472 -0.0188663 +0.0181085 0.0591163 0.0489014 +-0.0260899 0.0522789 0.0395517 +0.0049437 0.0984176 -0.0242128 +-0.0623314 0.0357831 0.0433788 +0.0110403 0.0725847 0.0546235 +-0.0864956 0.084691 0.0204775 +-0.00849993 0.0787667 0.0579153 +-0.0260008 0.0382709 0.000860974 +-0.06937 0.145758 -0.0234859 +-0.0314168 0.117929 -0.0127586 +-0.0261669 0.0378674 0.0174813 +-0.0832309 0.120353 0.049216 +-0.0617814 0.16156 -0.0355923 +-0.0779669 0.165862 -0.0278956 +-0.0698398 0.0922797 -0.0162924 +0.0483255 0.0503286 -0.00380134 +0.0451716 0.0889782 0.0181643 +0.0329815 0.112282 -0.00498623 +0.0279206 0.0916217 -0.0209795 +0.0155 0.11402 0.0377783 +-0.0105379 0.0431327 0.0497176 +0.0606167 0.0609422 0.00915424 +-0.0181983 0.18599 -0.0174024 +0.0189716 0.115037 -0.0139804 +-0.0590849 0.0644137 0.0318252 +-0.0819254 0.12582 0.0519232 +-0.0588398 0.0954803 -0.0203334 +-0.0674426 0.148384 -0.0326115 +0.0387628 0.10462 0.0262683 +0.00841723 0.129272 0.0256623 +-0.0196119 0.0364667 -0.0278852 +-0.0376923 0.162356 -0.000243841 +1.88808e-05 0.115368 -0.0182789 +0.0393962 0.0505525 -0.00668347 +-0.0116788 0.0555838 -0.0339192 +0.0363865 0.0713868 -0.0138007 +-0.0821651 0.110069 0.034903 +0.022728 0.117081 -0.0101857 +-0.0515389 0.0417461 -0.0105815 +0.0219588 0.123501 -0.00109075 +0.00735928 0.0960033 -0.0276522 +-0.00349428 0.119696 0.0379021 +-0.0470844 0.151656 -0.00519447 +-0.0242296 0.0941248 -0.0298734 +0.0152433 0.0658912 0.0518711 +-0.021804 0.0376594 -0.0181241 +-0.0133966 0.121962 -0.00916065 +0.0365536 0.108655 0.0265769 +-0.0668098 0.0880715 -0.0180091 +-0.0665181 0.171112 -0.0407548 +0.0493343 0.0532247 -0.0043679 +0.0423933 0.0901635 -0.00682346 +-0.0624126 0.150651 -0.0115734 +0.0373944 0.0505276 -0.00658166 +-0.0411461 0.162173 -0.0113613 +-0.065916 0.0662086 0.0305519 +-0.0289729 0.083488 0.0456837 +-0.000642523 0.0347913 0.0398677 +-0.0738147 0.065744 0.00631032 +0.00351431 0.0938625 0.0544725 +-0.0467733 0.12389 0.0269319 +0.0246632 0.123785 0.00595837 +-0.0715256 0.0958228 0.0413941 +0.00252922 0.0362636 0.0463395 +0.00948792 0.0963424 0.0500581 +0.0292035 0.0400739 0.0286474 +-0.0309481 0.0706991 -0.0284733 +-0.054091 0.152763 0.0215579 +0.0118527 0.105542 -0.0197545 +-0.0404793 0.0832528 0.0431634 +-0.0448438 0.0985036 -0.0215544 +-0.032014 0.0567822 -0.0123897 +0.00040853 0.0356817 0.00488121 +0.0447245 0.0861403 0.0231669 +-0.0426307 0.0338188 -0.00946517 +-0.0710495 0.141325 -0.00813095 +-0.0255896 0.182763 -0.0105092 +-0.0838169 0.107636 0.0253505 +-0.0796245 0.0859561 0.0353266 +0.0240034 0.0449703 0.0396985 +0.00450108 0.0716864 0.0560951 +-0.0676894 0.0750921 -0.0153176 +-0.0466572 0.0369109 -0.0172699 +-0.016529 0.0558872 0.0508401 +-0.087831 0.103641 0.0093887 +0.0272256 0.10745 0.0377741 +-0.0670064 0.0337953 0.0073865 +-0.0866888 0.0833263 0.0124872 +0.0152687 0.0779357 -0.0299953 +-0.0851819 0.152725 0.0105454 +0.000352424 0.0511166 -0.0306262 +0.0518495 0.0464359 0.0201911 +0.0554005 0.0553511 0.0254886 +-0.0886141 0.0928486 0.00844707 +0.0129712 0.130228 0.0115965 +-0.085549 0.104961 0.0233427 +0.0515991 0.0496316 0.0251833 +0.0131946 0.0878791 -0.0305989 +-0.0693376 0.131255 0.0489674 +-0.0660205 0.167997 -0.0305503 +-0.0666146 0.174697 -0.0480375 +-0.0293346 0.0347045 0.0427947 +-0.0553259 0.126836 -0.00601308 +-0.058583 0.0460291 0.0113967 +-0.0416277 0.0337441 -0.014735 +-0.0446642 0.0621749 -0.0132201 +0.0295862 0.120365 0.0134787 +-0.0697163 0.064282 0.022673 +-0.0805487 0.0789662 0.0306236 +-0.0787564 0.154933 0.00983696 +-0.0662707 0.14708 -0.0258685 +-0.0248167 0.0949702 -0.0267501 +-0.0407693 0.0826515 -0.0208197 +0.000514101 0.0346343 0.00952105 +-0.0533361 0.138123 0.0280776 +-0.0689277 0.115103 -0.00892086 +-0.0865224 0.0913375 0.0024428 +0.0232602 0.0790529 -0.0256674 +0.0296786 0.0679688 -0.0198342 +-0.0331127 0.123309 0.0239558 +0.0276403 0.118218 0.0284429 +0.00238303 0.0449286 -0.0261957 +-0.0928278 0.124236 0.0382657 +-0.0868685 0.11045 0.00936714 +-0.0254875 0.0959781 0.0438332 +0.0132252 0.0808221 -0.0308314 +0.035265 0.0591791 0.0368077 +-0.00944135 0.168135 -0.0197365 +0.0011864 0.12951 0.0259323 +-0.0139593 0.0967237 -0.0305143 +-0.00848922 0.0385737 0.0258802 +0.0562981 0.0619429 0.0011209 +0.0322546 0.0987343 -0.0145759 +-0.0268707 0.103016 -0.0234914 +-0.00655639 0.0384205 0.0209905 +-0.0296666 0.0774462 0.0418826 +-0.0626586 0.0676213 -0.0103966 +0.0374569 0.0904362 -0.0137042 +-0.0712181 0.161 -0.0439365 +0.0243668 0.0889213 0.0476805 +-0.0336134 0.0408899 -0.0298935 +-0.0404969 0.0916505 0.0425962 +0.0443454 0.0903358 0.0221636 +-0.0435232 0.163746 0.00524284 +-0.0649943 0.0623954 0.0235277 +-0.0613093 0.0593276 0.0181457 +-0.0717978 0.155398 -0.0409076 +-0.00868753 0.0584178 -0.0339256 +-0.0904383 0.119966 0.00529664 +-0.0601615 0.0333995 -0.00165181 +-0.0612252 0.0407891 0.0437895 +-0.0537348 0.0738508 -0.0172852 +-0.0709057 0.10512 -0.0125462 +-0.00333997 0.039253 0.0353398 +-0.0469903 0.145002 0.00194161 +-0.0250386 0.0659034 -0.0335362 +-0.023273 0.0382876 0.00502865 +0.0111228 0.0960826 -0.0257288 +0.0198113 0.0954368 -0.0230239 +0.038476 0.104075 -0.00282883 +-0.0843581 0.0883713 0.0286614 +-0.0930341 0.118841 0.0362969 +-0.0646767 0.146003 -0.0179612 +0.0284626 0.102127 0.0395666 +-0.0435018 0.113907 0.034675 +-0.0604863 0.0790224 0.042794 +-0.089042 0.112536 0.0205154 +-0.0524675 0.0344946 0.0345461 +-0.0848716 0.119101 -0.00207765 +-0.0120923 0.11442 -0.0172013 +-0.079929 0.151371 0.00121035 +-0.0920085 0.116136 0.0393096 +0.0361533 0.112569 0.0130564 +-0.0196629 0.125034 -0.00230889 +0.000499429 0.115573 0.0406664 +-0.0560183 0.147198 -0.00168648 +-0.0873616 0.110481 0.0113565 +-0.0416844 0.0636674 -0.0137203 +-0.0651889 0.153592 -0.00278678 +0.0471599 0.07398 0.0153485 +0.0404106 0.0873775 0.0321991 +-0.019434 0.184905 -0.0153275 +-0.0438294 0.0913555 -0.0224139 +-0.0527613 0.0797578 -0.020501 +-0.0314155 0.0651435 -0.021432 +0.00948509 0.0950229 0.0512669 +0.0346346 0.107297 -0.007625 +-0.0870053 0.0954387 0.00242783 +-0.0617312 0.142927 -0.00565867 +-0.0538929 0.14622 0.0244012 +0.0339044 0.115273 0.00366751 +0.049575 0.0693171 0.00251779 +-0.0861009 0.106274 0.00635995 +-0.00751182 0.075985 0.0578234 +-0.0761849 0.0933719 -0.0135017 +0.0266626 0.0672707 0.0437593 +-0.0314925 0.0932138 0.0444288 +0.0112937 0.0680868 -0.0307505 +-0.086045 0.141863 0.00720055 +0.000490707 0.111422 0.0424934 +-0.0516022 0.0502173 -0.00741774 +-0.0709386 0.131124 -0.00852217 +-0.0291841 0.125368 0.0164845 +-0.0012258 0.095852 -0.0315171 +-0.000697567 0.0641196 -0.0342689 +-0.0797379 0.0738711 0.0228323 +-0.0705682 0.0382102 0.00943236 +-0.0558807 0.102663 -0.0193944 +0.0262875 0.0835737 0.0468767 +-0.0206175 0.0364922 -0.0281092 +0.0306136 0.0779431 -0.0207534 +0.037492 0.0983062 -0.0097724 +-0.0861064 0.0806138 0.0174966 +-0.0488748 0.105594 -0.0196597 +-0.0499497 0.0724883 0.0409516 +-0.060435 0.131107 0.0389542 +-0.0197383 0.108898 -0.0213322 +-0.0328414 0.0943934 -0.0238538 +0.0071329 0.104451 -0.0211019 +-0.0904392 0.125398 0.00528343 +0.0579573 0.0676391 0.00414749 +-0.0890486 0.0915916 0.0214249 +0.0544885 0.0716156 0.00618127 +0.037936 0.0901639 0.0356574 +-0.0631289 0.155254 0.0269868 +0.0280038 0.120349 0.024295 +0.00325461 0.0697315 -0.0336623 +0.0198002 0.0768324 0.0515324 +0.0135718 0.0504901 0.0475195 +-0.0220331 0.041681 0.0538782 +-0.0322365 0.126297 0.00653811 +-0.020497 0.0855906 0.0563403 +0.0100844 0.123139 0.0340691 +-0.0917617 0.141982 0.0191718 +-0.00665267 0.0526646 -0.0325345 +0.0325469 0.0922927 -0.0176842 +-0.00490321 0.0383839 0.0141185 +0.0393963 0.049102 -0.00636122 +-0.0468295 0.0927337 -0.0216687 +0.0393484 0.0561243 -0.00568756 +0.0381042 0.0392738 0.00134927 +-0.02061 0.0653432 0.0492306 +-0.0644858 0.152894 -0.00250698 +0.0316363 0.118365 0.0113851 +-0.0625842 0.162383 -0.0563311 +-0.0126137 0.180121 -0.0236267 +-0.0562637 0.142432 0.0309288 +0.0389203 0.10838 0.0161659 +0.0468209 0.0708789 0.021127 +0.0153317 0.060873 -0.028643 +-0.067208 0.0447917 0.00368814 +-0.0638714 0.15469 -0.0385902 +-0.0624126 0.161536 -0.0416011 +-0.011049 0.124435 -0.00785173 +0.0143712 0.0493733 -0.0267066 +-0.0374862 0.0931566 0.0438456 +-0.0278525 0.0807805 0.0474761 +0.0573848 0.0670309 0.00292365 +-0.0304938 0.0960556 0.0449536 +0.0182602 0.127523 0.0192457 +0.0182204 0.080645 -0.0282763 +-0.00275795 0.0740872 -0.0359501 +-0.072697 0.155649 0.00759319 +-0.0857527 0.0792184 0.0135098 +-0.0604443 0.0456013 0.0296807 +-0.0528198 0.0927332 -0.0219739 +-0.0457202 0.0709417 -0.0164642 +-0.054497 0.0889964 0.0448823 +-0.0541353 0.147754 0.0254132 +0.05074 0.0503045 -0.00171178 +-0.0926993 0.124215 0.0352716 +0.00850767 0.0786 0.0556334 +-0.0141847 0.0405865 0.0511605 +-0.0500491 0.0345412 0.0367666 +-0.0744234 0.156022 0.0128056 +-0.0148381 0.0386367 -0.0157684 +-0.0896535 0.0916031 0.0184402 +-0.0279306 0.125506 0.00666413 +-0.0249827 0.0918474 0.0485489 +-0.0247746 0.0385687 -0.0102357 +-0.0718755 0.10648 -0.0114758 +0.0303733 0.115414 -0.00438737 +0.0390771 0.099844 -0.00681802 +-0.0601235 0.0447437 0.0425684 +0.0559507 0.0508031 0.00520531 +-0.087948 0.102288 0.00840013 +-0.0802939 0.0732789 0.00250413 +-0.00347452 0.114725 -0.0175669 +-0.0780015 0.155773 0.018849 +-0.0868392 0.0873072 0.00147849 +0.0114304 0.0346172 0.0371012 +-0.0154945 0.0925097 0.0555061 +0.0207547 0.10431 -0.0184628 +-0.0805113 0.153427 0.0283513 +-0.0133702 0.0343611 -0.0190243 +0.045363 0.0932019 0.00717004 +-0.0517619 0.079747 -0.0203928 +-0.011137 0.171308 -0.0197957 +-0.0797359 0.0706327 0.0105539 +-0.0435047 0.116629 0.0323741 +0.0461192 0.0786876 0.0190773 +0.0257679 0.0349257 0.0180133 +-0.0377436 0.127354 0.000111554 +0.0455391 0.0875946 0.0141649 +-0.0115776 0.0962625 -0.032007 +-0.0304054 0.0580102 -0.0194062 +-0.0519213 0.118323 0.0336042 +-0.0615165 0.15114 0.0355512 +-0.0268549 0.175688 -0.00910606 +0.0291872 0.0462618 0.034893 +-0.0828817 0.143196 0.00216401 +-0.0229243 0.0972075 0.044901 +-0.0420606 0.0344689 0.0332688 +0.00840712 0.0404044 -0.0234014 +-0.0584986 0.100161 0.0428821 +0.0267286 0.0521731 -0.0207566 +-0.0343564 0.043282 -0.028737 +0.035312 0.0840703 -0.0177861 +0.0167493 0.0874098 0.0506847 +-0.0706375 0.156126 0.0126907 +0.0395317 0.0596774 0.0306966 +0.0160357 0.0807986 0.0531419 +-0.0719071 0.105086 -0.0120336 +0.057752 0.0523416 0.0181873 +-0.0705862 0.166615 -0.0490027 +-0.069998 0.157611 -0.0031485 +-0.0629727 0.118457 0.044154 +-0.0098895 0.107351 -0.0224128 +-0.0668287 0.169972 -0.0351376 +-0.0538607 0.152062 0.0231076 +0.0286155 0.0795328 0.044942 +0.00747725 0.131195 0.0181386 +0.0525355 0.0678367 0.0261828 +-0.069983 0.033931 0.00665746 +-0.00449526 0.10588 0.044033 +-0.0647467 0.143415 -0.011401 +-0.0242451 0.0337053 -0.0224295 +0.0405945 0.102819 0.0221712 +-0.0253936 0.106122 -0.0223873 +-0.031866 0.126076 0.00521848 +-0.0903832 0.132413 0.0312232 +0.0270423 0.0648893 -0.0216756 +-0.0416036 0.125525 0.0208631 +-0.0642885 0.148287 -0.0250747 +0.043249 0.0705728 -0.00179391 +0.00750831 0.0772509 0.056126 +-0.0360471 0.125746 -0.0036679 +-0.0534999 0.0820142 0.0450601 +-0.0268076 0.0782799 -0.0366273 +-0.0630392 0.0336157 0.00836468 +0.00450283 0.0924607 0.0546761 +-0.0794816 0.0846149 0.0352279 +-0.0354976 0.116636 0.0319301 +0.0590094 0.0552651 0.0101755 +0.0177618 0.100614 -0.0224544 +0.0141872 0.0347155 0.0357788 +-0.0626395 0.0644043 -0.00619313 +-0.0472223 0.168222 -0.000777409 +-0.0688709 0.156258 0.0147705 +-0.00209707 0.130745 0.0203917 +0.0438165 0.0959355 0.0191615 +0.0272253 0.120021 -0.000250724 +-0.0623918 0.152158 -0.026581 +-0.0619803 0.153737 -0.02558 +-0.0110119 0.122536 -0.00980812 +-0.00845767 0.100229 0.0476033 +-0.053626 0.1255 0.0365054 +0.029243 0.0872327 -0.0208644 +-0.0561028 0.133503 -0.00512832 +-0.0536146 0.150855 0.0243962 +-0.0729449 0.0805494 0.0386997 +-0.0113093 0.0384672 0.00547553 +0.013929 0.0392001 0.0444158 +-0.0743245 0.179234 -0.0539852 +-0.0670834 0.168031 -0.0569976 +0.0269196 0.0418157 0.0333163 +-0.0261604 0.114813 -0.0155316 +0.054979 0.06227 -0.000302264 +0.0447631 0.0931576 0.00318223 +-0.028552 0.159576 0.000695282 +-0.0196334 0.0906851 0.0545345 +-0.0681661 0.173216 -0.0428508 +-0.0670035 0.166617 -0.0570134 +-0.00170857 0.0641356 -0.0344906 +-0.0302923 0.115032 -0.0157497 +-0.017789 0.0998203 0.0439009 +0.0575984 0.0711737 0.0088801 +-0.0559485 0.119826 0.0383628 +-0.0508832 0.106998 -0.0191626 +-0.0856518 0.096702 -0.000561949 +0.0433856 0.0475038 -0.0047769 +-0.0141839 0.177168 -0.0206609 +-0.0318261 0.0623615 -0.0184459 +-0.0694684 0.158126 -0.0509379 +-0.059088 0.0445923 -0.00517311 +-0.0680469 0.0887699 0.043444 +0.0413366 0.0588699 -0.00449648 +-0.0108613 0.16611 -0.0209706 +-0.0810695 0.111472 -0.000645954 +0.0236683 0.0535376 0.0428398 +-0.0525009 0.104252 0.0406803 +0.0178265 0.128119 0.0148069 +-0.0833287 0.0817012 -0.000498118 +-0.0582078 0.148218 0.0334722 +0.0469627 0.0735494 0.00823046 +0.0348898 0.0889372 0.0400127 +0.0544139 0.0478718 0.0102055 +-0.0519767 0.0343446 0.0277664 +-0.0526872 0.144684 0.0193835 +-0.0654577 0.0403952 0.0367257 +-0.0632766 0.146612 -0.0147592 +-0.0756638 0.0968147 0.0380937 +-0.0121766 0.169774 -0.0245851 +-0.0313173 0.115081 -0.0157968 +0.00550009 0.105744 0.0419393 +0.0170456 0.0808203 0.0528345 +0.00997537 0.129323 0.0247881 +-0.000565033 0.0348667 0.0451983 +-0.0170398 0.124093 -0.00535053 +0.0359746 0.112738 0.007259 +-0.0264982 0.112519 0.0362632 +-0.0108141 0.0841239 -0.038537 +-0.0464922 0.097353 0.0431423 +0.0456344 0.0820067 0.0201819 +-0.00765915 0.0388225 0.0294318 +0.00952232 0.057476 0.0527668 +-0.0114724 0.180094 -0.0295969 +-0.0324762 0.0778813 -0.0295332 +-0.0515001 0.0465582 0.0417907 +-0.0716564 0.0639047 0.0190638 +-0.00648988 0.10728 0.0440126 +0.0517118 0.048146 0.0235716 +-0.00973422 0.0712867 -0.0371391 +-0.0311873 0.0499402 0.0418672 +-0.0652548 0.0380623 0.0267185 +-0.0353491 0.0346157 0.0221204 +-0.00455763 0.115688 -0.0165869 +-0.0158711 0.0941172 -0.0338261 +-0.0307264 0.0510087 -0.0163552 +-0.0674749 0.0861001 0.0436947 +-0.00549495 0.0456998 0.0471564 +-0.0127624 0.0742651 -0.0384156 +-0.0667813 0.0354951 0.0323861 +-0.0650934 0.040468 0.0377689 +0.00949782 0.11825 0.0371477 +0.042476 0.0986857 0.0211679 +0.0134353 0.0833572 0.0528968 +-0.006265 0.0381462 0.0486516 +0.019505 0.108463 0.0397034 +-0.0531501 0.13113 0.0336749 +-0.0169066 0.174228 -0.0176024 +-0.0877346 0.144562 0.0345528 +-0.0620052 0.131132 -0.00795604 +0.00350354 0.0967589 -0.0284524 +-0.0379926 0.15214 0.00278328 +-0.0250008 0.0678945 0.0436439 +0.013488 0.120719 -0.0120957 +-0.0546814 0.0342953 0.0289953 +-0.0493523 0.128134 -0.0033313 +-0.00536457 0.0387134 0.026395 +-0.0301008 0.162274 -0.0148279 +-0.0520761 0.153139 -0.00390728 +-0.0312974 0.120401 0.0276066 +-0.072708 0.173064 -0.0373345 +-0.0634981 0.0847405 0.0443851 +-0.00748204 0.123738 0.0339317 +0.0398166 0.0726016 0.0329349 +-0.0204571 0.159751 -0.0120682 +-0.0398664 0.104215 -0.0203975 +0.006345 0.0351555 0.0445736 +-0.0295025 0.0974144 0.0445077 +-0.00148646 0.0489421 0.0507365 +-0.0158009 0.0813621 -0.039398 +-0.0661715 0.0383371 0.0290301 +-0.0520592 0.0517918 0.0296489 +0.0132683 0.0765435 -0.0305058 +0.0357248 0.113154 0.00859849 +0.0452751 0.0847797 0.0211588 +0.0408906 0.0942563 -0.00676992 +-0.0621992 0.16466 -0.0525894 +-0.0704991 0.101365 0.0396906 +-0.0514936 0.0959907 0.0439844 +-0.0738976 0.0662178 0.00410027 +-0.0308753 0.104365 -0.0222089 +-0.0454852 0.0411575 0.0440424 +0.0264018 0.0591975 -0.0228202 +-0.0372554 0.154082 -0.00855912 +-0.0104302 0.175693 -0.0238578 +-0.0581296 0.0583212 0.0178996 +-0.0237002 0.0610797 -0.032726 +-0.0366248 0.127943 0.00786237 +-0.00749367 0.0605601 0.0556586 +-0.0317091 0.0749949 -0.0294856 +-0.0617882 0.138121 0.0352393 +-0.0764283 0.117143 0.0518912 +-0.0476607 0.120291 -0.0131944 +-0.0617261 0.158412 -0.0335949 +-0.0794782 0.106106 0.0317497 +-0.00127622 0.127442 0.029403 +-0.0850735 0.0819457 0.0214598 +-0.088151 0.137836 0.0407884 +-0.0622605 0.152178 -0.0225796 +-0.0896207 0.132365 0.0409732 +-0.0392773 0.153597 0.0044688 +-0.0477636 0.0797421 -0.0198355 +0.0475024 0.06248 0.0300852 +0.0137309 0.0344041 -0.00431645 +-0.0864106 0.136323 0.00223079 +-0.0622483 0.0470201 0.00467011 +-0.0218601 0.0893132 0.0539604 +-0.0404866 0.0390699 -0.027317 +-0.0563767 0.0650155 0.0336358 +-0.022785 0.0727991 -0.0382731 +0.00745846 0.0952014 -0.0287983 +-0.0728877 0.143976 -0.0119757 +-0.0485361 0.130681 1.6802e-05 +-0.08227 0.0830732 0.0310042 +-0.0458007 0.0884477 -0.0220772 +-0.0674901 0.102816 0.040307 +-0.0295082 0.0987895 0.0437091 +0.0266247 0.0591987 0.0436528 +-0.0166425 0.0970062 0.0498004 +-0.0754488 0.151352 -0.0128993 +-0.0561187 0.04231 0.0196965 +-0.0125561 0.107483 -0.0218463 +-0.0258638 0.0987461 -0.0241399 +-0.0150968 0.0965608 -0.0303463 +0.0403869 0.0505617 -0.00671315 +-0.0618596 0.135275 0.0369058 +-0.00853806 0.120181 -0.0133625 +0.0152242 0.123558 0.0310525 +-0.0669104 0.112326 -0.011534 +-0.00121369 0.0389243 -0.000247464 +0.0599261 0.0581121 0.0171753 +-0.0104999 0.0842933 0.0575891 +0.0236959 0.120687 0.0298434 +0.0407626 0.105627 0.00616707 +-0.0204813 0.10165 0.0438784 +-0.0497999 0.0884036 -0.0217208 +0.0455191 0.0847794 0.00419259 +-0.0113995 0.128605 0.00179072 +-0.0808762 0.0733317 0.00350919 +-0.0634956 0.0804499 0.0432131 +-0.0737877 0.170302 -0.0290826 +-0.00649113 0.0718493 0.0579775 +-0.0445186 0.0533636 0.0386768 +0.0320623 0.104555 -0.0127247 +-0.0491177 0.138604 0.00740359 +0.0459251 0.0848195 0.0121712 +0.0423718 0.0547731 -0.00653415 +-0.0505603 0.0417939 -0.0107632 +-0.0551112 0.0477166 -0.00539308 +-0.0492183 0.150688 0.0111503 +-0.0868019 0.0886457 0.00149241 +-0.0414982 0.166749 0.00369508 +-0.00533161 0.123249 -0.0106624 +0.00612795 0.107304 -0.0203065 +0.023391 0.0605296 0.0460187 +-0.0778945 0.102117 0.0345146 +-0.0177322 0.108689 -0.0211068 +-0.0341359 0.168185 -0.0152479 +-0.0364811 0.0931828 0.0441998 +-0.0645148 0.15586 0.0250316 +-0.0133496 0.124356 0.0309811 +-0.053528 0.131291 -0.0047694 +0.0236875 0.0373106 0.0299772 +0.00806894 0.0972917 -0.0250353 +0.0518069 0.0518147 -0.00170668 +-0.0580149 0.0675718 0.0363481 +-0.0916942 0.124053 0.00727726 +0.0143227 0.0344255 0.0215932 +-0.0828034 0.0762521 0.011522 +-0.0523769 0.119775 0.034728 +-0.0380638 0.174118 -0.00995608 +-0.0515288 0.0559219 0.0167726 +-0.0665225 0.10009 0.04154 +0.0449219 0.0497223 0.0313654 +-0.00374083 0.069852 -0.0355987 +-0.0448162 0.12956 0.0195798 +0.00318984 0.0852564 -0.0341139 +-0.0901249 0.125637 0.04453 +0.0248625 0.12099 -0.00239034 +-0.0357073 0.03405 0.0117511 +-0.0461509 0.05879 0.0381434 +0.0389649 0.108275 0.00542368 +-0.0857362 0.141867 0.00617644 +-0.0755097 0.135846 0.0506323 +0.0384382 0.0954258 0.0328906 +0.00385238 0.131766 0.0125385 +-0.0277181 0.0382234 0.00237012 +0.0554262 0.0714159 0.00640835 +-0.0707971 0.168292 -0.02371 +-0.0131917 0.169758 -0.0239616 +-0.0344904 0.0661905 0.0406967 +-0.00154364 0.130277 0.00186507 +-0.0647696 0.148087 -0.0261392 +-0.0577571 0.0334518 0.000595927 +-0.0334995 0.0618586 0.0392638 +-0.0657123 0.171986 -0.0448274 +-0.0254896 0.049863 0.0466034 +-0.0207287 0.058287 -0.0332963 +-0.040488 0.088839 0.0428058 +0.00826686 0.0681716 -0.0316571 +-0.0382076 0.0431174 -0.0263315 +-0.0192007 0.0392753 0.0392298 +0.0446778 0.0701888 0.00161208 +-0.0681688 0.0340999 0.0104427 +-0.0891956 0.099693 0.0183885 +0.00250408 0.0856622 0.0573274 +0.00673484 0.0364109 -0.0131882 +-0.0273112 0.0917698 0.0451953 +0.0360152 0.072737 0.038003 +-0.0174841 0.0910963 0.0554741 +-0.0882831 0.114383 0.0443189 +-0.0562701 0.0534697 0.00668599 +0.0184737 0.104403 0.0439338 +0.0591195 0.067343 0.0203999 +-0.0464971 0.107057 0.0400682 +0.0224712 0.125479 0.00796738 +-0.00281596 0.0896133 -0.0355773 +-0.0892259 0.113441 0.0323782 +-0.0532781 0.0476794 0.0246524 +0.00120832 0.0811183 -0.0353756 +-0.0820812 0.0748515 0.0115294 +-0.0344414 0.153644 0.000910386 +-0.0915313 0.147463 0.0171482 +-0.0778811 0.12224 -0.00662917 +0.00275904 0.130985 0.0207146 +0.0333375 0.115599 0.0220283 +-0.0925663 0.116874 0.0234322 +-0.0461657 0.168264 0.000998904 +-0.0608088 0.148246 0.0367611 +-0.0740333 0.13404 0.0510058 +0.046183 0.0806404 0.0141758 +-0.0177485 0.0700027 -0.0382786 +-0.05252 0.0490121 0.0379722 +-0.0142459 0.168321 -0.0155387 +-0.0894247 0.0996886 0.0153976 +-0.0654783 0.0861634 0.0444498 +0.0323217 0.116577 0.0230638 +-0.0676059 0.141897 -0.00935244 +-0.0514978 0.10289 0.0412322 +-0.00575874 0.0741425 -0.036638 +-0.0913439 0.11607 0.03131 +-0.0313824 0.0877015 -0.0265568 +0.0373688 0.102607 -0.00785264 +-0.0106393 0.169838 -0.0190633 +-0.0716387 0.0675256 0.0265031 +-0.0396636 0.0340515 0.0270767 +-0.0779219 0.0717107 0.00150831 +0.0451585 0.0670735 0.000845212 +-0.045692 0.126639 0.0237789 +-0.0914166 0.131046 0.0292353 +-0.0845601 0.0832447 0.0254813 +-0.00465613 0.0540645 -0.0324247 +-0.0573264 0.15429 0.0261567 +-0.0776607 0.0817583 -0.0102119 +-0.0614708 0.165833 -0.0590275 +-0.0866007 0.129822 0.0479412 +-0.0751026 0.155922 -0.00200459 +0.0292911 0.0364248 0.021021 +0.0168648 0.0958851 -0.0235234 +0.0566532 0.0608369 0.0255651 +-0.0447794 0.128887 0.00190497 +-0.024583 0.0635737 0.0419612 +-0.0534745 0.0360014 0.0464895 +-0.0488506 0.0999451 -0.0218934 +0.00224668 0.0740592 -0.0351433 +-0.0223056 0.126998 0.0101726 +-0.0907871 0.14608 0.0151486 +-0.0506704 0.0680761 0.0375114 +-0.0689054 0.113678 -0.00975253 +-0.032497 0.0917926 0.0443017 +0.0282492 0.102359 -0.0164093 +0.0375206 0.0540908 0.0314327 +-0.00566586 0.0555015 -0.0328252 +-0.0896969 0.139298 0.033185 +-0.0707473 0.127025 0.0521985 +-0.0455052 0.162274 0.00622301 +-0.0188243 0.0868874 -0.0382929 +0.00890069 0.0988547 -0.0226736 +0.0103725 0.130878 0.016344 +-0.0568151 0.142191 -0.00256359 +-0.0576833 0.0660478 -0.00944709 +-0.0394154 0.128541 0.00978788 +-0.0112757 0.0392934 0.0501019 +-0.0875442 0.11045 0.0133403 +0.0108543 0.128955 0.0251156 +-0.0306705 0.0692801 -0.0274547 +0.0193368 0.0460939 -0.0219388 +0.0280428 0.0928381 -0.0202889 +0.0101954 0.0879315 -0.0314901 +-0.0425303 0.153621 0.00682011 +0.046342 0.0671736 0.000660587 +0.0133755 0.0508647 -0.0275026 +-0.0815821 0.0803018 0.0303913 +-0.059075 0.137911 -0.00597298 +0.0419587 0.0958192 0.0261617 +0.0444321 0.0482656 0.0306384 +-0.0444939 0.0519693 0.038747 +0.0141421 0.107244 -0.018655 +-0.0258198 0.0880859 -0.0357275 +0.0511643 0.0525875 0.0281258 +-0.0838035 0.0884157 -0.00457068 +-0.0075843 0.111951 -0.0206051 +0.020155 0.0344845 0.00437508 +-0.0141697 0.038751 -0.00641336 +0.0160515 0.039741 -0.0214719 +-0.0627129 0.161593 -0.024579 +-0.0329051 0.0359381 0.0496011 +-0.0738068 0.0892836 -0.0151913 +0.0299737 0.0934986 -0.0189639 +-0.0618436 0.129703 0.0404325 +0.0117043 0.110341 -0.0188996 +0.013386 0.0576661 0.0508541 +-0.0636966 0.117092 0.044917 +-0.0634835 0.0890243 0.0452141 +-0.0874124 0.136542 0.0428952 +-0.0391888 0.168166 -0.0121398 +0.0376532 0.101954 -0.00791483 +-0.0708338 0.143978 -0.0149516 +-0.0135013 0.0687469 0.0541774 +-0.0671166 0.134015 0.0451603 +-0.0645196 0.148285 0.0383203 +-0.0216796 0.18469 -0.0188168 +-0.00148992 0.070365 0.0570874 +-0.0291401 0.0875323 -0.0325902 +0.0251009 0.122815 0.00327552 +-0.0111221 0.0980696 -0.0279124 +-0.0635024 0.0918143 0.0447779 +-0.0887995 0.0901451 0.00746775 +0.0164935 0.0962515 0.0477962 +0.046272 0.0806446 0.00718674 +0.038459 0.094268 -0.00974763 +0.0100793 0.0873522 0.0550703 +0.0183745 0.0874107 0.0495162 +-0.0547819 0.0840722 -0.0215429 +0.0249849 0.0576546 -0.0237943 +0.0262469 0.11849 0.0293617 +0.0187045 0.0462587 0.0425837 +-0.0433933 0.123406 -0.0104784 +-0.0615139 0.0385816 -0.00827445 +-0.0234882 0.104381 0.0428298 +0.0334188 0.115464 0.00204907 +-0.0251305 0.0810774 0.0532367 +-0.0661661 0.0431586 -0.00127362 +-0.0689806 0.138464 -0.0078252 +0.0324954 0.0484967 0.0321634 +-0.0650217 0.154743 0.00396393 +-0.0615004 0.0818818 0.0435978 +0.0289072 0.10744 0.0367037 +-0.0720417 0.156813 -0.0379146 +-0.0232564 0.171248 -0.0127378 +0.0211195 0.109025 -0.0155233 +-0.0668614 0.150018 -0.036632 +0.0204284 0.122662 -0.00423372 +-0.0628194 0.162004 -0.0576316 +-0.0641553 0.168532 -0.0413683 +0.0278158 0.0649933 -0.0208789 +-0.0788364 0.0742331 0.0262211 +0.0527925 0.0505032 0.000257908 +-0.0738772 0.107826 -0.00969763 +-0.0819791 0.08171 0.030761 +-0.0904343 0.136488 0.021207 +-0.0584473 0.145323 0.0330944 +0.00225674 0.0697235 -0.0336823 +-0.0228155 0.081267 -0.0385568 +0.0290261 0.106116 0.036871 +0.0121361 0.105839 -0.0196306 +-0.0365486 0.12125 -0.0102225 +-0.070219 0.146984 -0.026659 +0.00749947 0.122404 0.035106 +-0.0234912 0.107132 0.0414501 +0.0116034 0.0355849 -0.021581 +-0.0896067 0.0902304 0.0134498 +0.0274272 0.0781922 -0.0230908 +-0.0228318 0.114095 -0.016802 +-0.0510675 0.0598803 0.0316706 +0.0525281 0.0730706 0.0188626 +-0.0503624 0.128323 -0.00347306 +-0.0758088 0.0906346 -0.0139136 +0.0428831 0.0902351 0.0261862 +-0.00171604 0.131316 0.0104838 +-0.0845537 0.143232 0.00516668 +0.0183451 0.0551894 -0.0280076 +-0.0914715 0.128331 0.0382421 +-0.0654644 0.148292 0.0388168 +0.025254 0.122206 0.00192061 +0.0102154 0.0850922 -0.0315035 +-0.0913446 0.12833 0.0392393 +-0.0282035 0.125211 0.0168448 +0.0435793 0.0677809 0.0261624 +-0.014506 0.114132 0.0394731 +0.0146525 0.0927004 0.0511905 +-0.0777124 0.0900603 0.0375253 +0.0426104 0.0723991 0.0281081 +-0.0165087 0.10859 0.0417725 +-0.0293809 0.118905 0.0298455 +-0.0747355 0.161794 -0.0126957 +-0.0194977 0.103001 0.0433214 +-0.0774975 0.111156 0.045792 +-0.0235187 0.0551838 0.0425567 +0.00826699 0.0696219 -0.0321852 +-0.0671246 0.042281 0.0101216 +0.0443577 0.0547836 -0.00632411 +-0.0771697 0.152833 -0.00289126 +-0.0455143 0.0335109 0.00302189 +-0.0154906 0.0744572 0.0558178 +0.0390604 0.0575755 -0.00514174 +-0.0300453 0.0861604 -0.0315778 +0.0243112 0.0999667 -0.0198415 +0.0337476 0.0534432 0.0345417 +-0.0207506 0.0685447 -0.0377382 +-0.0883977 0.0983242 0.022387 +-0.043533 0.162269 0.00566221 +-0.0580451 0.047259 0.00941407 +-0.0435244 0.129538 0.0127129 +-0.0129572 0.163516 -0.016687 +-0.018238 0.0985224 -0.0244062 +-0.0468429 0.132502 0.00641278 +-0.012834 0.128656 0.00349339 +-0.00949586 0.0938956 0.0554931 +0.0405174 0.0829825 -0.0107762 +-0.0306755 0.0409906 0.0514223 +-0.0887381 0.139163 0.03848 +-0.0639163 0.105371 -0.0163736 +0.0319159 0.0876168 0.0427503 +-0.0165553 0.128252 0.0064647 +-0.0695817 0.168848 -0.0261289 +-0.0702082 0.141157 0.0460159 +0.0179624 0.0489942 0.0433049 +0.0363477 0.102053 0.0316389 +-0.029898 0.0385093 -0.0112051 +-0.0687619 0.169445 -0.0540038 +-0.0726588 0.143932 -0.0130219 +0.0162319 0.0849386 -0.0291053 +-0.0620358 0.136971 -0.00707833 +0.0166416 0.0740317 0.0522091 +0.0213347 0.0607071 -0.0262571 +-0.0576194 0.143675 -0.00218012 +-0.0913297 0.148826 0.016141 +-0.0751782 0.152724 -0.0149145 +-0.062838 0.153641 -0.0115615 +-0.0579073 0.152669 0.031812 +-0.0401847 0.173392 -0.00391542 +0.0166876 0.0475243 0.0432195 +-0.0393167 0.0432044 -0.0243027 +0.00658649 0.0945677 -0.0301242 +-0.00883076 0.130134 0.0179537 +-0.0248377 0.0867614 -0.0367865 +0.0135609 0.0343729 -0.0176058 +-0.0367327 0.0739624 -0.0182558 +-0.0891756 0.088886 0.0174542 +-0.0869535 0.131154 0.0468504 +0.00298644 0.131511 0.0079308 +-0.0116778 0.0541503 -0.0336719 +-0.00992638 0.128404 -5.81123e-05 +-0.0544374 0.131586 -0.00508481 +-0.0384968 0.104212 0.0394832 +-0.074384 0.0726496 -0.00763941 +-0.0530656 0.150158 -0.00286677 +-0.0166345 0.0465837 -0.0289175 +0.0567453 0.0707667 0.0204115 +0.0381172 0.0659142 -0.0117557 +0.00256341 0.131601 0.00920655 +0.0391019 0.106936 0.00217583 +-0.0480338 0.0685335 0.039429 +-0.0794876 0.0745597 -0.0035364 +-0.0248661 0.101609 -0.0237851 +-0.0647841 0.0448471 0.00913709 +-0.0446647 0.117939 -0.0147658 +-0.0152743 0.180101 -0.0270399 +-0.0859599 0.106341 0.0203569 +0.0111873 0.0893276 -0.0308633 +-0.0922566 0.126816 0.00926569 +-0.0618365 0.166237 -0.0545929 +0.0181719 0.0795251 0.0527143 +-0.0684871 0.120374 0.0527878 +-0.0476953 0.0723623 -0.0159721 +-0.0472614 0.125357 0.0280089 +-0.0494961 0.113894 0.0347794 +-0.0374992 0.0847101 0.0439351 +-0.0404923 0.0620428 0.0412639 +0.0609826 0.0637492 0.0111528 +-0.0849504 0.136625 0.0461206 +0.0337121 0.104741 0.0331059 +-0.00864132 0.0907031 -0.0362798 +0.00988706 0.0373676 0.0450724 +-0.024511 0.0782394 0.0527049 +-0.0716377 0.0368114 0.00909586 +-0.0832904 0.111663 0.0440643 +-0.0156647 0.109623 -0.0201068 +-0.0766606 0.163806 -0.0339802 +0.0165486 0.0631544 0.0502063 +-0.0753023 0.155004 0.00375308 +0.039051 0.0380783 0.00858362 +0.0420573 0.0943632 -0.00379153 +-0.0924935 0.124207 0.0332695 +-0.0745678 0.155931 0.022959 +-0.0348878 0.0336855 0.0122448 +-0.0755817 0.14859 -0.0148673 +-0.0712419 0.0628661 0.0147709 +-0.0722512 0.170824 -0.0490235 +-0.044945 0.146638 -0.00064718 +-0.0327132 0.0383899 -0.00426549 +-0.0656128 0.0626699 -0.00283823 +-0.0615924 0.156857 -0.0275883 +-0.0306139 0.051126 0.0398517 +-0.0552831 0.0478834 0.0286656 +-0.0825962 0.0869865 -0.00556699 +-0.0743429 0.0777095 0.0359578 +-0.00912413 0.125328 0.0309758 +-0.0877256 0.112462 0.0226926 +-0.0624682 0.148372 0.0373168 +-0.0772099 0.0954309 0.0368548 +-0.0657805 0.04031 0.0356744 +0.0390337 0.102562 -0.00454148 +-0.0218167 0.0770677 -0.0388569 +-0.013694 0.165443 -0.0129401 +-0.0242656 0.0588495 -0.0313753 +-0.0201769 0.16108 -0.00474531 +-0.0746468 0.151291 -0.0288803 +-0.0870878 0.147265 0.0324302 +-0.0667973 0.0823343 -0.0181512 +-0.0894818 0.137913 0.0311948 +0.0410937 0.100015 0.0241739 +0.0260496 0.0420955 0.0353242 +-0.0497977 0.134944 0.0250398 +-0.0824554 0.0748386 0.00652396 +-0.0420037 0.0449364 -0.0183222 +-0.00587956 0.107379 -0.0226761 +-0.0298783 0.0719759 -0.0315267 +-0.0649016 0.118019 -0.00923352 +-0.0461849 0.131841 0.0072241 +-0.0384968 0.066293 0.0418062 +-0.0375363 0.128085 0.0104763 +-0.0684218 0.173931 -0.0443685 +-0.0921191 0.131045 0.0262423 +-0.0269088 0.0720784 0.0425891 +-0.0318614 0.109962 -0.0183828 +-0.0576346 0.139576 0.0324737 +-0.0582272 0.151065 0.033498 +-0.0824187 0.0788859 0.0267668 +-0.0386191 0.0474546 -0.0163861 +0.0266281 0.0902434 0.0456585 +-0.00674435 0.0340208 -0.0192827 +0.0167681 0.0348096 -0.0116543 +0.00555478 0.102979 0.0445124 +0.0101351 0.0346886 0.0403762 +-0.0715049 0.147007 0.0421623 +0.0583177 0.0551766 0.00716644 +-0.0774854 0.142838 0.0458543 +-0.0630637 0.0343143 0.0307056 +-0.00979508 0.122843 -0.0101629 +-0.0497184 0.0723081 -0.0156401 +0.0463136 0.0660623 -0.000202599 +-0.0455839 0.0490621 -0.0101677 +-0.0746807 0.110131 0.0436879 +-0.0107636 0.0728162 -0.0377336 +-0.0155087 0.105817 0.0426846 +-0.0419504 0.0338103 -0.0111665 +0.0243299 0.0661738 -0.0239819 +0.0195943 0.041435 -0.0196763 +0.0590873 0.0566489 0.0191831 +-0.0828908 0.120639 -0.00384458 +0.0299951 0.111426 0.0329993 +-0.0685146 0.033856 -0.00470573 +-0.0492135 0.140151 0.00839688 +-0.0489146 0.121146 0.0309679 +-0.00870224 0.0627847 -0.0356447 +-0.086772 0.140601 0.0407491 +-0.0293203 0.0381642 0.0309659 +-0.0330003 0.0497903 -0.0153502 +-0.0425517 0.127843 -0.00110505 +0.0328934 0.0381571 -2.41096e-05 +-0.0525195 0.0426931 0.0456595 +0.021748 0.0349954 0.0225893 +0.00827474 0.123868 -0.00945393 +-0.029563 0.0377844 -0.01791 +-0.0370175 0.163827 -0.00102436 +-0.0664999 0.101466 0.0412188 +0.0064937 0.048929 0.05087 +0.0287604 0.121079 0.0103057 +0.0252285 0.11379 -0.0106368 +-0.0599544 0.0581084 0.014112 +-0.062196 0.154993 0.0273195 +-0.0901963 0.136492 0.0222062 +0.0243441 0.0535282 0.0420575 +-0.0779175 0.0954136 0.0361479 +0.0233436 0.112218 -0.0129499 +-0.0707139 0.0721775 0.0349299 +-0.0640765 0.0658063 0.0313225 +-0.012499 0.112778 0.04085 +0.00184795 0.0345666 0.017115 +-0.0706528 0.0621972 0.0100461 +-0.0885678 0.139164 0.0111992 +-0.0188224 0.0347384 0.0467634 +-0.0867734 0.103584 0.00638913 +0.0585617 0.0692487 0.0195963 +-0.0597919 0.0868174 -0.0202685 +0.00547344 0.0964656 -0.0281399 +0.0206378 0.123881 0.0271063 +-0.0699457 0.0641869 0.00125597 +-0.0625615 0.156051 0.017016 +-0.0417544 0.0339701 -0.0279962 +-0.0649712 0.129694 -0.00875388 +-0.0862104 0.107661 0.0103578 +-0.0932554 0.121405 0.0112928 +-0.0354965 0.0533413 0.0383699 +-0.0288938 0.0821008 0.0456772 +-0.0504899 0.115263 0.0337703 +0.0589314 0.0635744 0.022157 +-0.0186162 0.0391183 0.0377018 +-0.00206852 0.0346139 0.0433223 +-0.0274904 0.108416 0.0392888 +0.0114791 0.0353993 0.0291949 +0.0231094 0.1217 -0.00313916 +-0.0577454 0.0767844 -0.0191155 +-0.00909377 0.175718 -0.0267745 +0.0517415 0.0673755 0.000499527 +-0.0128851 0.164546 -0.0183954 +-0.0673534 0.170861 -0.0570311 +-0.0929853 0.13101 0.0212315 +0.0234643 0.0889079 0.0481435 +-0.088271 0.126713 0.00126975 +-0.0657845 0.0809163 -0.0181411 +-0.0623578 0.139562 0.0361839 +0.0537838 0.0608937 0.0284739 +-0.0417084 0.0681156 -0.0160245 +0.0391698 0.101249 -0.00580082 +0.0314319 0.059214 0.0400505 +-0.0609535 0.135292 0.0364528 +-0.000337321 0.0338454 -0.0216338 +-0.0194278 0.169807 -0.0142312 +-0.0348191 0.0886631 -0.024431 +0.0343015 0.0925788 -0.0159761 +-0.0484766 0.166987 4.90724e-06 +-0.0665297 0.149283 -0.0337543 +-0.0801184 0.0845811 0.0344552 +-0.0728936 0.109289 -0.00959602 +-0.0631344 0.177233 -0.0567528 +-0.0405211 0.16525 0.00379284 +-0.0231365 0.166757 -0.0180638 +0.00733914 0.0539337 -0.0304234 +-0.0448725 0.105637 -0.0203982 +-0.0120489 0.177175 -0.0228491 +-0.0935183 0.117402 0.0193034 +-0.0218743 0.178667 -0.0141782 +0.0371376 0.0728556 -0.0127896 +0.00251304 0.0828672 0.0572444 +-0.0659599 0.128235 -0.00885739 +0.0572369 0.0523165 0.0201815 +0.00234985 0.1177 -0.0168004 +0.0136405 0.0534411 0.0494225 +0.0440001 0.081852 -0.00180195 +-0.0352323 0.0337248 0.00491425 +-0.0852903 0.152844 0.0238067 +-0.0841107 0.0938743 -0.00455389 +-0.0327087 0.156604 0.00170747 +-0.0136478 0.0384232 0.0249573 +0.0203982 0.126887 0.0157559 +-0.0256832 0.0878506 0.050771 +-0.0859766 0.117044 0.000228439 +-0.0275277 0.0660102 0.0388181 +0.0386899 0.0941002 0.0332667 +-0.0072203 0.0994662 -0.0253456 +-0.0387089 0.068094 -0.0155018 +-0.0447414 0.149173 0.00704529 +-0.037003 0.126393 0.0195465 +-0.0691196 0.118603 0.052746 +0.0126876 0.0376693 0.0445214 +0.00235997 0.0496442 -0.0301148 +-0.0852421 0.0804972 0.00551565 +-0.0315104 0.105689 0.0403731 +0.045017 0.0410596 0.00889517 +-0.0645229 0.0335011 -0.00443342 +-0.0237309 0.092173 -0.0338912 +-0.0696939 0.158144 -0.0499358 +-0.00649106 0.116924 0.0392844 +0.0203532 0.0579488 -0.0270415 +0.0454669 0.0761165 0.0216249 +-0.0776599 0.103464 0.0342449 +-0.0732 0.113624 0.050147 +-0.0760799 0.147225 -0.00886324 +0.0300894 0.118197 0.0250757 +0.0134949 0.103141 0.0462202 +-0.0890108 0.142042 0.0341592 +-0.0804084 0.0719394 0.00662383 +-0.0695221 0.143851 -0.0150076 +-0.0608967 0.108264 -0.0166058 +0.024601 0.0954054 -0.0210454 +-0.022965 0.108799 -0.0212234 +-0.0611808 0.060116 0.0210055 +0.0302694 0.104198 -0.014346 +-0.0556068 0.119255 -0.0119973 +0.0521834 0.0709362 0.0231159 +-0.0314011 0.159502 0.00180977 +-0.0393243 0.172677 -0.00992732 +-0.0273795 0.0859709 -0.0356537 +-0.0158141 0.084157 -0.0391976 +-0.0748503 0.150353 0.0378605 +-0.0898842 0.145774 0.0282412 +-0.0830081 0.135296 -0.00152379 +0.00239673 0.0404932 -0.0244502 +0.0427154 0.0482477 0.0316879 +-0.0266384 0.166791 -0.00886205 +0.0140069 0.0433574 0.0445182 +-0.0554949 0.102938 0.0419937 +-0.0535677 0.121244 0.0365515 +-0.091536 0.147482 0.0221363 +-0.0926871 0.118696 0.0103064 +-0.0944412 0.121464 0.0182801 +-0.0562674 0.0521079 0.00770249 +0.0268173 0.0563551 0.0421393 +0.0126767 0.102031 -0.0220157 +-0.0753389 0.14722 -0.0108566 +-0.0856054 0.119006 0.0487694 +-0.0533885 0.122494 -0.00938247 +0.0431078 0.0438619 0.0262578 +-0.0605291 0.0337655 0.01588 +-0.0126252 0.045057 -0.0279244 +-0.045035 0.131096 0.00921538 +-0.0885624 0.127032 0.0457658 +0.040497 0.0569389 0.0314027 +0.0364907 0.111851 0.00455337 +-0.0834729 0.144593 0.00316535 +0.0433385 0.080395 -0.00378638 +-0.0318429 0.0944059 -0.023975 +-0.0484939 0.0747239 0.0424157 +-0.0110217 0.175722 -0.0231509 +0.000137104 0.104495 -0.0221519 +-0.0521218 0.0553341 0.025863 +0.0390662 0.103279 0.0267541 +-0.0365034 0.105591 0.0389607 +0.0135363 0.0347941 0.0319644 +-0.0857201 0.113489 0.0456231 +-0.0225205 0.114038 0.037332 +-0.0424861 0.107068 0.0398635 +-0.0498903 0.161248 0.00701432 +-0.0261589 0.0660162 -0.0325063 +-0.061193 0.167783 -0.0585846 +-0.0153476 0.186173 -0.0245951 +-0.0220085 0.0386415 -0.0116054 +-0.0746541 0.0660086 0.0112783 +-0.0857094 0.107615 0.00636703 +-0.000110081 0.106984 -0.0213197 +-0.0293764 0.039648 0.0531021 +0.028771 0.0495105 -0.0157345 +-0.0168713 0.184583 -0.0192109 +-0.0517714 0.14934 0.0163945 +-0.059475 0.0776368 0.0428908 +-0.0109445 0.0385116 0.00732721 +-0.0636281 0.177112 -0.0556446 +-0.074576 0.0901236 0.0400162 +0.0161292 0.0604031 0.0495734 +0.022982 0.114019 0.0351746 +0.0259399 0.098006 -0.0197455 +-0.0097165 0.0698878 -0.0366754 +-0.069561 0.132665 0.0486469 +-0.0530949 0.0350628 -0.012244 +-0.0680607 0.153823 -0.0498908 +-0.0135439 0.125168 0.0294386 +-0.00340282 0.12679 -0.00651364 +-0.0391911 0.149452 0.000405422 +-0.0764653 0.177807 -0.0519745 +-0.0287178 0.121983 -0.00700749 +-0.0619687 0.155933 0.0215789 +-0.0411389 0.0448599 -0.0213399 +-0.0553956 0.0560936 -0.00341211 +-0.0930152 0.116045 0.0163142 +-0.0538732 0.0634525 0.0320061 +-0.0265911 0.123944 0.0203778 +0.0521155 0.073659 0.0142686 +-0.0733241 0.158247 -0.0319134 +-0.0109096 0.167211 -0.0224966 +-0.0387656 0.0459335 -0.0222844 +-0.0438685 0.104239 -0.0209341 +-0.0404958 0.0464911 0.0408136 +-0.0546568 0.133929 0.033262 +-0.0875345 0.0914089 0.00446769 +0.0213976 0.0505253 -0.0237217 +0.00734362 0.0524803 -0.0298755 +0.0300864 0.0686462 0.0416997 +0.0343005 0.110021 0.028645 +0.0541591 0.0648613 0.0272743 +-0.0267629 0.124714 0.018819 +-0.084006 0.130916 -0.00261237 +-0.032464 0.126152 0.0167563 +0.0411083 0.0816433 -0.00876203 +0.0569799 0.0538694 0.0224893 +-0.0104937 0.0502816 0.0505289 +-0.0809192 0.0899278 0.0336764 +-0.0706578 0.10688 0.0373417 +-0.0634399 0.160562 -0.0195565 +-0.0491873 0.165537 -0.00392571 +-0.0506864 0.137014 0.00141591 +0.0414602 0.0985756 -0.00280597 +-0.0725308 0.161023 -0.0389355 +-0.0593508 0.0339548 0.0212701 +-0.0724089 0.155986 0.0106072 +0.0454654 0.0819915 0.0211715 +-0.0231673 0.169718 -0.0195033 +0.014393 0.129494 0.0163965 +-0.0185111 0.0499058 0.0467842 +-0.0180519 0.128104 0.0102643 +-0.0161793 0.169751 -0.0220442 +0.0178585 0.0957539 -0.0234025 +0.0277062 0.122023 0.0113437 +-0.0356288 0.0533886 -0.010251 +-0.00862621 0.0394649 0.0376552 +-0.0708134 0.0624523 0.0134268 +-0.0338786 0.104305 -0.0212068 +-0.0471517 0.160622 -0.00754132 +-0.0925898 0.124211 0.034269 +-0.0584616 0.0717087 0.039721 +-0.0146591 0.0511639 -0.0318396 +-0.0607891 0.0597911 0.00342454 +0.0222547 0.0819067 -0.0260667 +0.0230644 0.109683 -0.0142211 +-0.0844174 0.110829 0.0409213 +-0.0687289 0.0779401 -0.0161359 +-0.0752643 0.0941545 0.0391883 +-0.0876028 0.105024 0.0163629 +-0.077844 0.114867 -0.00473455 +-0.0325542 0.0341026 -0.0206973 +-0.0589604 0.0340153 0.0230639 +-0.00211759 0.125578 0.0320366 +0.0126989 0.0342761 -0.010037 +0.013184 0.0740073 0.0542309 +-0.0477691 0.130137 0.000614804 +-0.0718381 0.155405 -0.0399144 +-0.0622568 0.148888 -0.00391238 +-0.0159434 0.0385311 0.027994 +0.0373005 0.103362 0.0294506 +-0.02276 0.093942 -0.0316991 +-0.0520122 0.14159 0.0203687 +-0.082015 0.110886 0.0432009 +-0.0745865 0.0720219 0.0307608 +-0.00953059 0.096141 -0.0318625 +-0.0495789 0.046041 -0.00928879 +-0.00423381 0.0382248 0.0479393 +-0.0382126 0.169665 -0.0124129 +0.0318584 0.0981802 0.0392129 +-0.0314643 0.126198 0.0141678 +-0.0622546 0.152185 -0.0195775 +-0.0424907 0.0831788 0.0422885 +-0.0205087 0.18589 -0.0190712 +-0.00369262 0.0366899 0.0482034 +-0.0197122 0.0583602 -0.0339067 +-0.0106092 0.0434444 -0.026227 +0.0245832 0.0562081 -0.0237654 +-0.0891532 0.121635 0.0465292 +-0.0629277 0.161435 -0.0535909 +0.047295 0.0711844 0.0046334 +-0.0417522 0.0782987 -0.0193601 +-0.000496629 0.0828922 0.0574621 +-0.0320822 0.0335961 -0.0276233 +-0.0571072 0.154583 -0.000558004 +0.0584978 0.0634546 0.0229811 +-0.0581231 0.149655 0.0336366 +-0.0619701 0.160031 -0.0245798 +-0.0800787 0.0980611 0.0339873 +-0.0219645 0.0403079 0.0539432 +-0.0699065 0.110817 -0.0106385 +-0.0725366 0.154032 -0.0369032 +-0.0224974 0.0498852 0.046496 +0.00485548 0.0339942 -0.0207847 +-0.0614772 0.0338873 0.0155724 +0.00946392 0.0472926 0.0483305 +-0.019502 0.109944 0.0407387 +-0.0539465 0.0486826 0.012352 +-0.0355502 0.175589 -0.0109785 +-0.0784832 0.155333 0.0128492 +0.0266099 0.122879 0.0123678 +-0.0472066 0.134653 0.0142236 +-0.0078767 0.103255 -0.023393 +-0.0504989 0.101536 0.0421291 +-0.0266231 0.0450263 -0.028096 +-0.0916243 0.131038 0.0282288 +0.0125747 0.0445985 0.0442752 +-0.0196537 0.0480066 -0.0290701 +0.0172432 0.108764 -0.0171862 +-0.0295071 0.0635474 -0.0264265 +-0.0620034 0.040777 0.0431481 +-0.00243593 0.113721 -0.0185019 +-0.0630177 0.135513 -0.00745136 +0.0433285 0.0874073 -0.00479371 +-0.0154888 0.0688106 0.054717 +-0.0882956 0.116235 0.0458325 +-0.0494969 0.0946343 0.044743 +-0.0619637 0.147832 -0.00431835 +-0.092816 0.124239 0.0392636 +-0.0629366 0.147438 -0.0146052 +-0.0782928 0.163856 -0.0319501 +-0.064798 0.174285 -0.0502768 +-0.0112267 0.038611 -0.000125945 +-0.0820175 0.148708 0.00217249 +0.0401192 0.0979552 0.0282751 +-0.0877344 0.132461 0.0447656 +-0.050513 0.143196 0.0143929 +0.0136958 0.0672461 0.0531523 +-0.0608764 0.033777 0.0140174 +0.00552563 0.0813962 0.0561869 +-0.0768476 0.148423 0.040238 +-0.0306152 0.0552238 -0.0173804 +-0.0567885 0.123073 -0.00794084 +-0.0255089 0.119394 0.0308336 +0.0223261 0.116663 0.0342169 +-0.0475261 0.0335634 -0.00837623 +-0.0582936 0.157998 0.00361947 +0.0051303 0.105879 -0.0208781 +-0.00896496 0.0383664 0.01874 +-0.0444005 0.0336982 -0.00787213 +-0.00659427 0.0391448 -0.0257394 +-0.0414965 0.0424145 0.0425934 +-0.0846517 0.135301 0.0472783 +-0.0634992 0.0973124 0.0426152 +-0.0488679 0.135513 0.00441971 +0.037597 0.0883595 -0.0147642 +-0.00186878 0.0388962 0.0287527 +-0.028023 0.0380941 0.0277005 +-0.0474992 0.0718408 0.0410603 +-0.0899231 0.113261 0.00935255 +0.044663 0.094574 0.0141596 +-0.0613242 0.174126 -0.0596453 +0.0131192 0.0913894 0.0524895 +0.0569982 0.0642691 0.00177262 +0.029911 0.120086 0.0121698 +-0.0341992 0.124637 -0.00378015 +-0.0714932 0.121802 0.0535223 +-0.060211 0.120578 -0.00928669 +0.0514409 0.0718132 0.00596213 +-0.0055446 0.0384588 0.0102869 +0.0401137 0.0933035 -0.00871241 +-0.077868 0.12372 -0.00684832 +-0.0438994 0.148485 -0.00356582 +-0.0478093 0.0898718 -0.0219802 +-0.050356 0.0501549 0.0156949 +-0.044116 0.168361 -0.0078879 +0.0274031 0.12156 0.0212208 +-0.0198084 0.119865 -0.0108751 +-0.00808629 0.0392239 0.0361848 +-0.074679 0.177203 -0.0452121 +-0.0717079 0.162415 -0.0429474 +-0.0817249 0.153192 0.027965 +-0.0830361 0.0952877 0.0313817 +-0.0410879 0.12806 0.000341883 +-0.0268762 0.104433 -0.0231038 +-0.028867 0.0620809 -0.0264195 +0.0400441 0.0834026 0.0333734 +0.00148401 0.0427923 0.0460657 +-0.021597 0.124211 0.0236359 +-0.0493581 0.0389276 0.0456407 +-0.0251636 0.119759 -0.0107128 +-0.0305455 0.0776911 -0.0335901 +0.0434944 0.0719976 -0.00179535 +-0.0730641 0.148297 -0.027137 +-0.0403032 0.0335749 -0.0236075 +-0.0838696 0.117633 -0.00194246 +-0.0183958 0.0360837 -0.0274195 +0.0306925 0.119003 0.0181751 +-0.0287719 0.0876257 0.045371 +-0.0150862 0.116786 -0.0157023 +-0.0226105 0.0393974 -0.0288175 +-0.00549593 0.114185 0.0409403 +0.0172148 0.0820814 -0.0286624 +0.0204946 0.0878829 0.0490965 +0.0144377 0.119508 -0.0127985 +0.0084105 0.0389663 -0.0233493 +0.042717 0.0705281 -0.00378792 +-0.0721585 0.0349122 0.00711943 +-0.0700117 0.176166 -0.0463861 +-0.0559881 0.0594067 0.0225062 +-0.0934924 0.121416 0.0122906 +0.0386755 0.101225 -0.00680717 +-0.00386806 0.105937 -0.0224388 +-0.0104995 0.091174 0.0564817 +-0.0012394 0.131315 0.00922853 +-0.0497873 0.0855205 -0.0216876 +-0.0168713 0.104463 -0.0227606 +0.0101956 0.0865002 -0.0314726 +-0.0534959 0.108443 0.038977 +-0.0548951 0.0610993 0.0270145 +-0.0755046 0.137255 0.0498073 +-0.0485754 0.0489523 -0.00913959 +-0.0331264 0.163719 -0.0148995 +-0.00945074 0.100225 0.0471086 +-0.0342862 0.0340473 0.0246456 +-0.0294128 0.0335741 -0.023325 +-0.026685 0.0349864 0.0500364 +-0.061923 0.12237 -0.00883821 +0.0501668 0.0567787 0.0302284 +-0.011856 0.127622 0.0255897 +-0.0429498 0.0338754 -0.00590515 +-0.000398209 0.131157 0.00667235 +-0.0163397 0.112374 -0.0190184 +-0.0651151 0.138224 0.0409979 +0.0355326 0.0544702 -0.00765701 +0.0264528 0.0348348 0.00531809 +-0.0438555 0.101385 -0.0214526 +-0.0234974 0.0498976 0.0468652 +-0.0436816 0.0651561 -0.0146099 +-0.00750789 0.0386054 0.00429878 +-0.0494719 0.0643044 0.0356628 +-0.0857911 0.0847131 0.0234468 +0.0202388 0.0735294 -0.0276011 +-0.0826135 0.153724 0.024657 +0.0377117 0.0799594 -0.0137509 +-0.0629014 0.0384346 0.017326 +-0.0564952 0.112508 0.0359017 +-0.00450514 0.0647631 0.0563697 +0.0228849 0.0849076 0.049031 +-0.0136101 0.17129 -0.0181213 +-0.0659308 0.168025 -0.05906 +0.00616007 0.130231 0.0233995 +0.0200475 0.0355684 0.0326031 +0.0207235 0.0355731 0.0309275 +-0.0914203 0.133738 0.0192152 +-0.0894168 0.0942943 0.0184246 +-0.0486795 0.137079 0.00840446 +-0.0268516 0.0981872 -0.024073 +-0.0296061 0.0499557 0.0431146 +-0.0645444 0.136771 0.0400377 +0.00960463 0.0369501 0.029234 +-0.0077992 0.0826766 -0.0378216 +-0.0705096 0.145613 0.0431794 +0.038042 0.109981 0.0137429 +-0.0323904 0.0346717 0.0421656 +0.0166765 0.12456 0.0286792 +0.0496183 0.0673428 0.0005193 +-0.0256005 0.175695 -0.0107936 +-0.0178219 0.0896296 -0.0373512 +-0.010186 0.0339025 -0.0217341 +-0.047823 0.0912927 -0.0217091 +0.0214379 0.121585 -0.00505488 +-0.063535 0.0741856 0.0400495 +-0.0175015 0.119559 0.0348485 +0.0378045 0.0701003 -0.0128173 +-0.06064 0.140962 -0.00527103 +-0.0745647 0.162191 -0.0132518 +0.0175747 0.0931801 -0.024649 +-0.0413443 0.159411 0.00325579 +-0.0692325 0.161954 -0.0115912 +-0.0598828 0.104039 -0.0184233 +-0.0275135 0.111195 0.0372083 +0.017284 0.0435398 0.0440147 +-0.043478 0.0633766 0.0405033 +0.0234516 0.0389975 0.0363054 +-0.0705331 0.144185 0.0442754 +-0.00248752 0.0897873 0.0564419 +-0.0728742 0.149812 -0.0379734 +0.0462595 0.0834414 0.00917612 +0.00549045 0.0459551 0.048539 +0.038562 0.0568882 0.0311978 +-0.0404973 0.10005 0.041322 +-0.0633155 0.125546 0.0454063 +-0.0425091 0.0520201 0.0393163 +0.00748602 0.041302 0.0454759 +-0.0652746 0.0378654 0.0394026 +-0.0208078 0.081314 -0.039065 +0.00735987 0.131518 0.0123881 +-0.0507686 0.0812185 -0.0210302 +0.0289317 0.0369927 0.000264038 +-0.0895362 0.119938 0.00329723 +0.0339261 0.0564017 0.0366181 +0.0387571 0.0780554 0.0349576 +-0.00249465 0.111426 0.042426 +0.0312166 0.0814571 -0.0197537 +0.00710696 0.112707 -0.0194319 +0.0182552 0.0736117 -0.028651 +-0.0747384 0.149908 -0.0288721 +-0.0142729 0.16729 -0.0212151 +-0.0796554 0.0776931 0.0301108 +-0.0308995 0.0385461 -0.0114399 +-0.0135011 0.162185 -0.0138332 +-0.062358 0.172308 -0.0618736 +-0.0779551 0.131028 -0.00606492 +0.0053093 0.0610791 -0.0314051 +-0.0622044 0.163118 -0.0415929 +-0.0875561 0.0900472 0.00346813 +-0.0693763 0.0627096 0.00438827 +0.0577316 0.0594186 0.0235899 +-0.076964 0.0686471 0.0102516 +-0.068516 0.156454 -0.00263594 +-0.0116226 0.0389602 0.0338935 +-0.053617 0.0500325 0.0119809 +0.0600963 0.059514 0.00816569 +-0.0667396 0.168684 -0.03081 +0.0461456 0.0820314 0.0061875 +-0.0433217 0.0391871 0.0438385 +0.0426589 0.0598822 -0.00401987 +-0.0496436 0.132456 0.0281905 +0.0526393 0.0635217 0.0285801 +0.0276786 0.107363 -0.0137282 +0.0429561 0.100122 0.0141624 +0.0420203 0.102869 0.0111608 +0.0352633 0.113355 0.0198926 +-0.0527821 0.0840792 -0.0215781 +-0.0731314 0.179106 -0.0550054 +-0.0772542 0.116219 0.0507045 +-0.0448961 0.131042 0.0121815 +-0.0659423 0.149401 -0.0328697 +-0.00381497 0.0882175 -0.036071 +-0.00434542 0.130565 0.019581 +0.0267602 0.0365817 2.43485e-05 +0.0169695 0.107204 -0.0175448 +-0.062502 0.0625858 0.0256444 +-0.00350098 0.0815126 0.05747 +0.000251433 0.0712294 -0.0349609 +-0.0113059 0.174226 -0.0217772 +-0.0348319 0.0943645 -0.0236767 +-0.0786972 0.0940445 0.0355566 +0.0177903 0.112808 -0.0155711 +-0.0318198 0.0887354 -0.0251772 +-0.0198038 0.0827175 -0.0390158 +-0.0190696 0.126125 0.000571573 +-0.0793168 0.102079 0.0331119 +0.021502 0.109802 0.0384228 +-0.0927296 0.124224 0.0362665 +-0.0209485 0.0682779 0.0508919 +0.041224 0.101389 -0.000814438 +-0.0468126 0.0898791 -0.022022 +-0.0348994 0.124334 -0.00549397 +-0.0341879 0.127198 0.0131711 +-0.049291 0.131272 -0.000642386 +-0.0359021 0.0337218 0.00658675 +-0.0837824 0.091132 -0.00556609 +-0.0335134 0.101547 0.0420338 +0.0210931 0.0429808 -0.0187308 +0.0424902 0.0555855 0.0321183 +-0.0557185 0.0570014 0.011057 +-0.0194912 0.112675 0.0392933 +-0.025189 0.156576 -0.00769163 +0.0400265 0.10701 0.00816505 +-0.0540901 0.153118 -0.00271435 +-0.00486253 0.101638 -0.0232055 +-0.0436472 0.0338067 0.00674466 +-0.0211436 0.168262 -0.0193322 +-0.0763578 0.141673 -0.00573846 +0.0465682 0.041911 0.0139236 +-0.0534989 0.109802 0.0378386 +-0.0811057 0.0748245 0.0195385 +0.0366496 0.0848209 0.0372394 +0.0520606 0.0608742 0.0294954 +-0.0810176 0.109646 0.0372868 +0.0260062 0.121547 0.0249766 +-0.0134941 0.0773082 0.0569169 +-0.0759274 0.108411 0.0376421 +0.0131577 0.0548631 0.0504935 +-0.0556243 0.0335264 0.0117574 +-0.0445311 0.119183 -0.0140568 +-0.0651138 0.155569 0.0262833 +0.0254608 0.100767 0.0422505 +-0.0354939 0.101471 0.0414493 +-0.0526525 0.152155 0.0150192 +-0.0578899 0.111162 -0.0167182 +-0.050471 0.0571806 0.032579 +-0.0881725 0.103664 0.0113862 +-0.0124346 0.0985527 -0.0264295 +0.0459022 0.0876188 0.00817319 +-0.0598831 0.0337324 0.0142605 +0.0420206 0.092566 0.0274869 +-0.0622887 0.152203 -0.0145776 +-0.0483961 0.150684 0.0105827 +0.00023463 0.0985537 -0.0263753 +-0.0719091 0.107919 -0.010771 +0.0379248 0.0575872 0.0318029 +-0.0684803 0.169194 -0.0285889 +-0.0388617 0.099995 -0.0218283 +-0.0776097 0.0796169 0.0342011 +0.00633113 0.0553726 -0.0306713 +0.0163088 0.048977 0.0444188 +-0.0838449 0.0817176 0.00149669 +-0.0216263 0.0341828 -0.0204844 +-0.0187634 0.0728738 -0.0388715 +-0.0626025 0.0388129 0.0247151 +-0.0373475 0.0347779 0.0107604 +-0.00558664 0.0376733 -0.0253626 +0.0599615 0.0678313 0.0171716 +-0.0295401 0.0904607 -0.0275932 +0.0284451 0.114053 0.0325229 +0.0418253 0.0830818 -0.00779351 +0.00746772 0.0343056 0.0166757 +-0.0865698 0.0833108 0.0104907 +-0.0729271 0.151083 0.037025 +-0.0781924 0.155673 0.0158655 +-0.0788514 0.116332 -0.0048797 +0.00512317 0.107303 -0.0203142 +-0.0103272 0.0383585 0.0166568 +-0.0348025 0.040194 -0.0297923 +-0.000491404 0.0814979 0.0573536 +-0.0290382 0.16386 -0.00530596 +-0.0694805 0.121794 0.053195 +-0.0704544 0.150585 -0.0434585 +-0.0639717 0.0459278 0.00771742 +-0.03056 0.124009 -0.00164624 +0.0144021 0.0780973 0.054252 +-0.0808546 0.140749 0.0461596 +0.0103353 0.0581557 -0.0299403 +-0.00949578 0.084298 0.0576062 +-0.0249013 0.0382346 0.0282196 +-0.0316389 0.0409999 0.051064 +0.0387381 0.0381712 0.0065938 +-0.0580729 0.0345066 0.0402882 +-0.0663198 0.150167 -0.0356652 +-0.064292 0.168172 -0.0605879 +-0.0314424 0.0679449 -0.0244554 +0.0603913 0.0595429 0.0161691 +0.0102649 0.129908 0.00205228 +-0.0440813 0.0336392 -0.0114358 +0.0309277 0.0497348 -0.00874 +-0.0267697 0.0750695 0.0452054 +-0.0791015 0.170034 -0.0382691 +-0.0864283 0.0954013 0.00141653 +0.00852849 0.0646614 0.0551736 +0.0473561 0.0503594 -0.00438005 +0.039601 0.107391 0.00564087 +-0.0861267 0.0833147 0.0194823 +-0.0786738 0.10815 0.0335843 +0.043481 0.0832455 0.0271768 +0.0281352 0.0915776 0.0443357 +-0.0298099 0.0677811 -0.0284707 +-0.0229012 0.115018 -0.0157633 +-0.0270064 0.0808968 0.0494715 +0.0404227 0.0885874 -0.0107894 +-0.087216 0.0937177 0.0257149 +-0.0690509 0.0654544 -0.0025414 +-0.0695527 0.04187 0.00402445 +0.00429234 0.0668529 -0.0329804 +-0.046755 0.0336866 -0.0157033 +0.0576125 0.0580597 0.0234109 +-0.000994561 0.129288 -0.0011666 +0.0454245 0.0904044 0.0131633 +-0.0438081 0.0899046 -0.0222231 +0.0199328 0.127154 0.0141603 +0.0114882 0.0963254 0.0495798 +0.0218142 0.117368 -0.0105004 +-0.0438465 0.0359346 0.00839642 +-0.0714426 0.0632696 0.00712846 +-0.0759079 0.150006 -0.00888842 +-0.06794 0.126772 -0.00890268 +-0.0343726 0.127227 0.0072164 +0.0578211 0.0537494 0.00717652 +-0.0483087 0.135537 0.00740851 +-0.0568342 0.0666429 0.0356476 +0.0481112 0.0431114 0.00725444 +-0.0425043 0.117982 0.0312159 +0.0144699 0.0976455 0.0479677 +0.0563061 0.0508424 0.00620646 +-0.0300578 0.163895 -0.00500569 +0.0102245 0.0823018 -0.0318649 +0.0598453 0.0608733 0.0191849 +-0.0620027 0.172528 -0.0545971 +-0.0197571 0.0971344 0.046022 +-0.0611783 0.167226 -0.0592729 +-0.00613038 0.0999315 0.0488982 +0.0488619 0.047436 -0.000620948 +-0.0208111 0.118967 -0.0119295 +0.00352005 0.0786345 0.0561775 +-0.071061 0.15959 -0.0439233 +-0.0765957 0.161076 -0.0289322 +0.0259255 0.123359 0.0149571 +-0.0746094 0.14858 -0.0188631 +0.0569296 0.058069 0.024171 +-0.0338241 0.152569 -0.00489392 +-0.0455023 0.0615609 0.0388319 +-0.0654625 0.143948 0.0405383 +-0.0560519 0.0345032 0.0407254 +-0.0709341 0.162789 -0.0122264 +-0.078067 0.144487 -0.00381208 +-0.094099 0.121442 0.0152795 +-0.00327736 0.0410332 0.0476549 +-0.0500433 0.165539 -0.00195268 +-0.0774288 0.0712256 0.0238415 +-0.00725841 0.0408714 0.048906 +-0.0833667 0.142023 0.0429747 +-0.0692361 0.153199 0.0337122 +-0.0360543 0.0398378 -0.0294769 +-0.0403231 0.0344611 0.0371557 +-0.0207576 0.069984 -0.0381379 +0.0122374 0.0737871 -0.031159 +-0.0241603 0.0665253 0.044272 +0.0399369 0.0860773 0.0331939 +-0.0809073 0.123633 -0.00507492 +-0.00964827 0.166616 -0.0197629 +-0.00664529 0.1307 0.0129838 +-0.0209361 0.0381808 0.0128466 +-0.0538563 0.0970443 -0.0219059 +-0.0662078 0.0723697 0.0374848 +-0.0398566 0.099981 -0.0216989 +-0.0494761 0.0600183 0.034326 +-0.0157667 0.0742966 -0.0389627 +-0.0875711 0.0977385 0.0245274 +-0.0529166 0.0566407 0.0191372 +0.000745542 0.0955759 -0.0312149 +-0.0688619 0.10089 -0.0150284 +-0.0130273 0.178658 -0.0225027 +-0.00548585 0.118301 0.0387556 +-0.063934 0.169417 -0.04458 +0.00224686 0.131192 0.0191047 +-0.0526917 0.0662141 -0.0112413 +0.0316126 0.104759 0.0353509 +0.0222548 0.0776918 -0.0264111 +-0.0685061 0.105552 0.0384458 +-0.0576201 0.135609 -0.00546838 +-0.00760577 0.128788 -0.000526473 +-0.0262755 0.0383516 -0.00662702 +0.0096904 0.0344726 -0.0051827 +0.0183649 0.0355244 -0.0106716 +-0.0892922 0.0996701 0.0134013 +-0.0748707 0.116421 -0.00675171 +-0.054019 0.0333099 0.015848 +-0.0927402 0.125562 0.0292626 +-0.00859312 0.0384098 0.0205847 +-0.0574617 0.0399955 0.0466824 +-0.0890962 0.0996533 0.0114017 +-0.0393675 0.120945 -0.0119262 +-0.0498057 0.144755 0.010389 +-0.0800056 0.108388 0.0313605 +-0.0694061 0.153071 -0.0482738 +-0.0529002 0.0701503 0.0387731 +-0.00979568 0.178776 -0.0277733 +-0.0749384 0.177982 -0.0467773 +-0.080224 0.0913049 0.0343483 +0.0274404 0.0399547 -0.00370609 +0.0064659 0.11274 0.0407332 +-0.0218179 0.0350986 -0.0195001 +-0.0723907 0.151114 -0.0412874 +0.00590733 0.0340449 -0.020637 +0.0460177 0.0800284 0.0189631 +-0.0576496 0.0629466 -0.00612077 +-0.0519433 0.0503866 0.0326949 +0.0377573 0.0757194 -0.0117756 +0.0434133 0.0930689 -0.00182579 +-0.0445007 0.165214 0.00483168 +-0.0196553 0.063928 0.0497256 +-0.0766812 0.154876 -0.00631355 +-0.0344859 0.0335245 -0.0299041 +0.0132509 0.0349689 -0.0195966 +-0.0264467 0.0459901 0.0505652 +-0.00131456 0.122836 -0.0102349 +0.0122169 0.129551 0.00276868 +-0.0137494 0.0383366 0.00873382 +-0.0445005 0.116602 0.0322264 +-0.0346258 0.0408721 -0.0296689 +-0.0706305 0.0401508 0.00122659 +-0.0765009 0.0716493 0.0271716 +-0.0708234 0.155869 0.0257344 +-0.0311277 0.0566897 -0.0153882 +-0.0896944 0.133694 0.0395953 +0.000231967 0.0783204 -0.0356621 +0.0338144 0.115724 0.00791606 +-0.0300912 0.15662 0.000215848 +0.0464982 0.0677769 0.0257597 +-0.0214151 0.0595466 0.0459898 +-0.0572298 0.0696188 0.0382761 +0.0366123 0.064635 0.0370437 +-0.0264937 0.0973851 0.0437224 +0.0404949 0.0513767 0.0324659 +-0.0350844 0.107815 -0.0201106 +-0.0205025 0.0486482 0.0489372 +-0.0610181 0.13697 -0.00676267 +-0.0906044 0.135075 0.015212 +-0.0194066 0.174211 -0.0159442 +-0.0394983 0.0719214 0.0419294 +-0.0883414 0.120307 0.04718 +-0.00748928 0.0978336 0.0520944 +-0.0846404 0.107661 0.0233457 +-0.0214945 0.10716 0.0418366 +0.0181073 0.0398088 -0.0196993 +0.0190777 0.0384168 -0.0157069 +-0.0636502 0.159498 -0.051954 +0.0283128 0.0754542 0.0444772 +-0.054074 0.15164 -0.0027148 +-0.083614 0.154208 0.0184012 +-0.056485 0.0343785 0.0390076 +0.0337482 0.102096 0.0349353 +-0.0782584 0.1764 -0.0490322 +0.0136057 0.0460076 0.0440344 +-0.00550326 0.0801395 0.0576107 +0.0334132 0.0849144 0.041374 +-0.0113988 0.126257 0.0287047 +-0.0655972 0.169628 -0.0389928 +-0.0832568 0.154212 0.0141255 +-0.0820934 0.0898659 0.0320222 +-0.067283 0.17966 -0.0595334 +-0.062529 0.150617 -0.0195776 +-0.0299377 0.0847457 -0.0326018 +0.0607552 0.0664989 0.0131533 +-0.0228597 0.101618 -0.023963 +-0.0618668 0.165619 -0.0600772 +-0.081854 0.0937329 -0.00756112 +-0.0679516 0.170855 -0.0560296 +-0.0295118 0.108456 0.0388793 +0.0482509 0.0539799 0.0309574 +0.00823122 0.079605 -0.0335706 +-0.0526044 0.041455 0.0460966 +-0.0496802 0.165544 -0.00294037 +-0.0910152 0.129688 0.0372352 +-0.0404973 0.0972715 0.0419896 +0.00850648 0.0772375 0.0559821 +-0.0717922 0.153989 -0.0428988 +-0.0507334 0.147965 -0.00270623 +0.0127323 0.0860509 0.0536553 +0.0565626 0.0508082 0.0192018 +-0.047499 0.10845 0.0392246 +-0.00917487 0.0875708 -0.0370938 +-0.0783316 0.0788746 0.032897 +-0.0896787 0.135012 0.00721892 +0.00550113 0.0883518 0.0561015 +-0.0423419 0.0335706 -0.0240051 +0.0405574 0.104219 0.0191648 +0.00286437 0.130486 0.00148286 +-0.0643911 0.133918 0.0402655 +-0.0620868 0.139878 -0.00655442 +-0.0557051 0.12209 -0.00891575 +0.0589396 0.0566475 0.0201757 +0.0386112 0.0603508 -0.0077511 +-0.0806595 0.0855046 -0.00754297 +-0.0718229 0.0965348 -0.0152102 +0.0459498 0.0806271 0.0191734 +-0.0515557 0.141366 0.000880581 +-0.0859779 0.0910726 0.0273961 +-0.0194809 0.0757644 0.0547346 +-0.0526104 0.0335154 0.00699108 +-0.080479 0.155159 0.0180021 +-0.0500595 0.117739 -0.014504 +-0.0638596 0.0939187 -0.018635 +-0.0469776 0.034208 0.0289371 +0.0315208 0.0994913 0.038731 +0.0444927 0.0610909 0.0304355 +0.0212529 0.1262 0.0189269 +-0.0254692 0.0509386 0.0434079 +0.0476579 0.0715472 0.019969 +0.022698 0.118017 -0.00920048 +-0.0384222 0.125448 0.0219859 +-0.038314 0.170034 -0.0122167 +-0.0530543 0.14469 0.0223994 +-0.00492317 0.0389099 -0.00470281 +0.0373499 0.0533605 -0.00643641 +-0.0696712 0.171569 -0.0347594 +0.0436954 0.0959268 0.0201595 +0.0285253 0.065965 0.0429423 +-0.0466394 0.0345455 0.0392313 +0.0412883 0.0886287 0.0299331 +-0.0251747 0.0383636 -0.0175696 +-0.0674763 0.168038 -0.0560148 +-0.0634115 0.166723 -0.0396505 +-0.0443984 0.0671335 0.0404051 +-0.0524987 0.100127 0.0423619 +-0.0837023 0.110333 0.0361338 +-0.0757541 0.0819089 0.037226 +-0.0475033 0.0973719 0.0436212 +-0.0418104 0.0899475 -0.0227382 +-0.0308563 0.174216 -0.00433975 +-0.00771604 0.130016 0.0212618 +-0.0691125 0.156051 0.011784 +-0.049655 0.0664173 -0.0130805 +0.0212145 0.0401172 -0.0107008 +-0.0418108 0.128972 0.0103834 +-0.0623408 0.164683 -0.0455908 +-0.0776167 0.145877 -0.00384676 +0.0294578 0.079544 0.0444105 +-0.052057 0.15088 0.0153954 +0.0551015 0.0521065 0.00221795 +-0.0568769 0.116868 -0.0135067 +-0.0856284 0.151402 0.00824006 +-0.0512523 0.116429 -0.0151143 +-0.0568623 0.0941345 -0.0215512 +-0.0153943 0.099814 0.0443638 +0.0368805 0.101462 -0.00941022 +-0.0293998 0.0355494 -0.0195486 +-0.040872 0.105663 -0.0204372 +-0.0279821 0.0821961 0.0475971 +-0.0106963 0.176084 -0.0292514 +-0.00933224 0.038323 0.0168951 +-0.0792032 0.10313 -0.00756064 +-0.0540718 0.118333 0.0357708 +0.00450074 0.0938217 0.0540732 +-0.0746595 0.15617 0.0170913 +-0.0708414 0.0994113 -0.0147342 +-0.0516111 0.0530832 -0.00753985 +-0.0486234 0.0532712 -0.0094518 +-0.031704 0.172718 -0.00384226 +-0.00272576 0.130091 0.00149765 +-0.092388 0.120024 0.00928585 +-0.037643 0.153612 0.00331291 +0.0356049 0.0577583 0.0355158 +-0.0668801 0.103821 -0.0153002 +0.0379456 0.10977 0.0171703 +0.0191769 0.0959952 -0.0230407 +0.0391807 0.0658814 0.0336832 +-0.0690863 0.0666121 0.0278101 +-0.089106 0.114375 0.0298659 +-0.0216155 0.0436703 -0.028439 +-0.0266188 0.0490904 -0.0254391 +0.000108091 0.0340814 -0.0198793 +-0.0171613 0.159788 -0.00903074 +0.041574 0.0397142 0.0168995 +0.019656 0.0347604 0.000281692 +0.00764804 0.128583 -0.00254334 +-0.0553782 0.151032 0.0287496 +-0.0528315 0.0558373 -0.00742005 +0.0115037 0.109883 0.0397133 +0.03545 0.105907 -0.00815474 +-0.0629114 0.115341 -0.0117985 +-0.0234208 0.172725 -0.0129655 +-0.0890673 0.101028 0.0173829 +0.0236359 0.056409 0.0445932 +-0.0187325 0.0374026 0.0529482 +-0.0394792 0.105608 0.0388858 +0.0151319 0.0603601 0.0498992 +-0.080949 0.137599 -0.00280806 +-0.0546196 0.0345652 0.0426785 +-0.0465281 0.033544 -0.0026564 +0.0395657 0.0998694 -0.00580754 +0.0101223 0.108705 -0.0195083 +-0.0104988 0.09255 0.056119 +0.0330296 0.116688 0.0147767 +-0.0910722 0.141959 0.0151878 +-0.00849613 0.0703395 0.0565554 +-0.0574961 0.0904385 0.0452768 +-0.0530142 0.0490552 0.0256583 +-0.0294931 0.0717523 0.039896 +-0.0311676 0.0348856 0.0474529 +-0.00876366 0.0347363 0.0436201 +-0.0666703 0.0612745 0.0188657 +0.0173575 0.0940342 0.0480767 +0.0284806 0.111435 0.0343318 +-0.0468308 0.0941893 -0.021914 +-0.0265985 0.0562164 -0.027412 +-0.0871843 0.135176 0.0441499 +-0.063207 0.06374 0.0280276 +-0.0345021 0.0647803 0.0405279 +0.0597837 0.0567045 0.0121686 +-0.0474843 0.0818872 0.0439119 +-0.0589237 0.11399 -0.014753 +-0.0490056 0.122549 0.0307687 +0.0548584 0.0611516 -0.00113589 +-0.0458004 0.0353434 -0.021332 +0.00134052 0.0539375 -0.0306386 +-0.0278278 0.177181 -0.00696301 +-0.0427537 0.0783105 -0.0194623 +0.00651372 0.089712 0.0551929 +-0.0494951 0.0819134 0.044146 +0.0305588 0.055351 -0.0157687 +0.0297469 0.0929269 0.0431563 +0.0125099 0.0519837 0.0495237 +0.0459653 0.0806289 0.018177 +-0.053548 0.149321 0.0244145 +-0.0317948 0.0651814 -0.020436 +-0.019834 0.0868717 -0.0379507 +-0.0119886 0.038466 0.00715809 +-0.0770198 0.170132 -0.03325 +-0.0269539 0.17866 -0.00745161 +-0.0756616 0.0695139 0.0239361 +-0.0474944 0.116586 0.0319739 +-0.0671319 0.0355924 0.0145398 +-0.0783661 0.108548 -0.00557568 +-0.0284012 0.0860445 -0.0346283 +0.0257301 0.0379057 0.0280361 +0.00740689 0.0389878 -0.0235836 +-0.0629696 0.131105 0.0405653 +-0.0380606 0.157756 -0.011216 +-0.0361107 0.0459963 0.0412564 +-0.053455 0.0625326 0.0304805 +-0.0731839 0.178324 -0.0475338 +0.0137018 0.0888713 -0.0301465 +-0.0894038 0.140678 0.0331776 +-0.0114925 0.06602 0.0547394 +-0.0853984 0.0872002 -0.00151975 +-0.00957697 0.128995 0.00181181 +0.0571986 0.0536922 0.00517882 +0.0181761 0.0974249 -0.0228373 +0.0414526 0.0425673 -0.000513932 +-0.0423634 0.121318 -0.0123099 +-0.0854479 0.0898939 -0.00155092 +-0.0136017 0.0392183 -0.0267222 +-0.0353577 0.174409 -0.00212011 +-0.0930586 0.122743 0.0102788 +0.0208421 0.0882147 -0.0254487 +0.000267595 0.0697483 -0.0342392 +0.0443612 0.0458824 -0.00271937 +-0.0794062 0.147442 0.0402641 +0.0285362 0.120755 0.0202147 +-0.0354498 0.0346389 0.0415402 +0.0189212 0.0875932 -0.0268145 +-0.0326685 0.0478014 -0.0229356 +0.0213046 0.0374522 0.0382518 +0.0119628 0.111848 -0.018535 +-0.0754368 0.114522 0.050709 +-0.0575342 0.0415089 -0.00843308 +-0.0289002 0.0348381 0.0445217 +-0.0558188 0.0336396 0.0205147 +-0.0294901 0.0946648 0.0450535 +0.0140142 0.0519753 0.0481823 +-0.0499383 0.162625 -0.0047964 +-0.0285131 0.111188 0.0369648 +-0.0777024 0.176292 -0.0501047 +-0.0458377 0.0970756 -0.021885 +-0.0647866 0.167644 -0.0344082 +-0.08472 0.111015 0.033569 +-0.0624074 0.1491 -0.0095736 +0.0455563 0.078849 0.0217954 +0.0386173 0.0673644 -0.0117551 +-0.0516941 0.147804 0.0164166 +-0.0638593 0.0953482 -0.0183667 +-0.0887889 0.117194 0.003272 +-0.0667452 0.0342007 0.0124321 +-0.0921816 0.132336 0.0152245 +-0.0790475 0.168047 -0.0349702 +-0.0445079 0.0424992 0.043443 +-0.0914924 0.12135 0.00727423 +0.00205109 0.0347195 0.0440743 +-0.0757523 0.0687815 0.0210323 +0.0254197 0.0394349 0.0320923 +0.0445209 0.095967 0.011159 +0.00418461 0.0908826 -0.0329329 +-0.0447434 0.0753343 -0.0181391 +0.0465277 0.0497043 0.0301725 +-0.0231678 0.124994 -0.000333927 +-0.0261386 0.0359205 -0.0192491 +0.000314733 0.0597904 -0.0332055 +-0.0664067 0.0336797 0.00582425 +-0.0179785 0.068344 0.053543 +0.0128834 0.035495 0.00385056 +-0.064012 0.0432207 0.0306772 +0.0356112 0.0942094 0.0375896 +0.0433586 0.0589158 -0.00469925 +-0.0741431 0.153026 0.0335308 +-0.0366764 0.0421455 0.0447176 +-0.0616357 0.158429 -0.0245888 +-0.0777899 0.164478 -0.0251991 +-0.0774203 0.177255 -0.0472003 +-0.0723466 0.0663158 0.0221054 +-0.00945876 0.0366145 -0.0165831 +-0.00782909 0.0896438 -0.0364286 +-0.0483458 0.0338972 -0.0143683 +-0.0548931 0.111218 -0.0174922 +0.0263272 0.0545944 -0.0208638 +-0.078467 0.147461 0.0407301 +0.0472196 0.0430325 0.00527833 +0.0313294 0.118714 0.0127065 +-0.00880796 0.0868775 -0.037347 +-0.054028 0.0344996 0.0411656 +-0.00639115 0.121199 -0.012466 +0.0300864 0.0564003 0.0398351 +-0.0790124 0.0782686 0.0315155 +-0.0134683 0.0964232 0.0523159 +-0.0763221 0.159003 -0.0110053 +-0.0600876 0.0367271 0.0456071 +0.0364957 0.049851 0.0316154 +0.00849848 0.0402756 0.0453316 +0.0205837 0.0754832 0.0508919 +-0.071014 0.148895 -0.037822 +0.0170761 0.115474 -0.0144429 +-0.063767 0.0615586 0.0227478 +0.0437965 0.0987467 0.00816432 +-0.0513326 0.0542594 0.0137993 +-0.0414552 0.0341096 -0.00949275 +0.0395669 0.101281 -0.00480928 +-0.0918243 0.128307 0.0322434 +-0.0474749 0.0945717 0.0440635 +-0.0704486 0.16924 -0.0264473 +0.027192 0.101376 -0.017349 +-0.0895884 0.114751 0.0258504 +-0.0713206 0.156784 -0.042915 +0.0384501 0.0914717 0.0346309 +0.0214747 0.0996539 -0.0214946 +-0.0106582 0.0527176 -0.0332954 +0.00773558 0.128847 0.0268569 +0.0202904 0.0912514 -0.02462 +0.00332905 0.0553943 -0.0309954 +-0.0921247 0.116117 0.0353113 +-0.0146765 0.0526113 -0.0325234 +-0.0657759 0.0410192 0.0130518 +0.0587274 0.0538199 0.013179 +0.0291394 0.102042 -0.0160578 +-0.0701142 0.0625797 0.0062174 +0.0457389 0.0876049 0.0111625 +0.00224905 0.118538 -0.0156887 +0.0520156 0.0596733 -0.00368903 +-0.0891532 0.136419 0.0102028 +-0.0400348 0.0344619 0.0337052 +-0.0461887 0.0335082 0.00469546 +-0.0923435 0.115998 0.0113188 +-0.00713141 0.127357 0.0287426 +0.0252624 0.0747714 -0.0251152 +-0.0453044 0.0587827 0.038737 +0.03635 0.0368836 0.00917982 +-0.0527446 0.0753599 -0.0182797 +-0.0728584 0.132623 0.0509226 +-0.00672844 0.0698676 -0.0361675 +0.0413912 0.0459759 -0.00421898 +-0.0201655 0.0348026 0.0446658 +-0.0641545 0.0391804 0.0263583 +-0.00246627 0.111608 -0.0202454 +-0.0134033 0.110892 -0.0194483 +0.043074 0.0401669 0.0073914 +0.0192967 0.0693907 -0.0288221 +-0.0619039 0.16157 -0.0305885 +0.00333358 0.0341967 0.0104872 +0.0421258 0.100042 0.000179811 +-0.0386776 0.11516 -0.0158482 +-0.00807178 0.0386982 0.0276584 +-0.0756134 0.163772 -0.0350068 +-0.0672387 0.155112 0.00519073 +0.0276118 0.053509 0.0397341 +-0.0779406 0.158305 -0.0189233 +-0.00470743 0.0627772 -0.0352137 +0.0325643 0.0981766 0.0384761 +0.0296733 0.0481683 -0.00874324 +0.0113105 0.059545 -0.0296135 +-0.0653574 0.0733073 0.0386226 +-0.0120884 0.101067 0.0439606 +-0.0268179 0.0735627 0.0438663 +-0.0513902 0.0530791 0.0216216 +-0.0678614 0.042287 0.00944731 +-0.0899071 0.133806 0.0352156 +-0.0122404 0.0385117 0.0269697 +-0.0719375 0.16298 -0.0125698 +0.0473212 0.0533258 -0.00537345 +-0.030503 0.0588732 0.0373493 +-0.0905557 0.120241 0.0451196 +0.0219406 0.0388423 0.0393076 +-0.0672891 0.178209 -0.0595336 +0.0302182 0.0535528 0.0382346 +-0.0815406 0.110006 0.0333062 +-0.0477684 0.0811966 -0.0205178 +-0.048671 0.138621 0.0113976 +-0.0562999 0.0506286 -0.00237306 +-0.0854189 0.0791501 0.00750351 +0.000105856 0.117482 -0.0165473 +-0.0624071 0.149633 -0.00268499 +-0.0682914 0.172271 -0.0560251 +-0.0642448 0.0333797 -0.00245942 +0.0203456 0.053671 -0.0267089 +-0.0711203 0.163576 -0.0137477 +-0.0126641 0.0511309 -0.0317686 +-0.066211 0.180426 -0.0565833 +0.0266688 0.0892152 -0.0224539 +0.01736 0.128384 0.0132094 +-0.0541813 0.154195 0.0142529 +-0.0799749 0.0710714 0.0163832 +-0.0379044 0.0336424 -0.0213286 +-0.0747588 0.0669346 0.0175421 +-0.0221189 0.12668 0.005878 +-0.0623544 0.152149 -0.0255836 +0.0137867 0.0377633 0.0443361 +0.0469104 0.0589185 -0.00506663 +-0.0188119 0.0964492 -0.0282644 +-0.000384494 0.130522 0.00237337 +-0.0647338 0.0418755 0.0296857 +-0.0418518 0.0999485 -0.0214177 +-0.0135206 0.0432479 0.0507363 +0.0314548 0.113206 0.0298812 +0.0211096 0.0343656 0.00467028 +0.0493524 0.0516707 -0.00371978 +0.0324504 0.0916248 0.0417895 +-0.0405477 0.118695 -0.0135582 +-0.0421609 0.128746 0.00435225 +0.00852878 0.034888 0.0362651 +-0.0599768 0.12527 -0.00809043 +-0.0624255 0.16468 -0.0465913 +0.0305387 0.114047 0.0302625 +-0.0209297 0.158088 -0.00822134 +-0.00449554 0.0633716 0.0561592 +0.00751849 0.0440876 0.0454461 +-0.0617319 0.160008 -0.0275856 +-0.00111302 0.130629 0.0207594 +-0.000792652 0.0894877 -0.0349748 +-0.0534886 0.0862338 0.0454573 +0.0102426 0.0752832 -0.032327 +-0.0866178 0.151117 0.0269024 +0.00586712 0.0991316 -0.0229749 +-0.018487 0.0772258 0.0557066 +-0.0220963 0.0623062 0.0451655 +-0.0263156 0.124827 0.00142734 +0.00449781 0.0519669 0.0532713 +-0.0318681 0.105727 -0.021166 +-0.034171 0.0822565 -0.0245355 +-0.0160192 0.104518 -0.0227486 +-0.0336086 0.0394857 -0.0301589 +0.0179261 0.0900567 0.048881 +0.028994 0.0915879 0.0438177 +0.0419459 0.0625408 -0.0027477 +-0.0623435 0.161536 -0.0425937 +0.0521127 0.0595383 0.0295528 +0.00603967 0.0344425 -0.0152712 +-0.0200036 0.0384998 -0.0166705 +0.0335055 0.0549395 0.0359782 +0.0413899 0.0475369 -0.00516876 +0.0571049 0.0594437 0.0244408 +-0.0642323 0.124186 0.0475964 +-0.0104933 0.0952299 0.0545267 +0.0183283 0.0593891 -0.0275077 +0.0556724 0.0698728 0.00398853 +0.02895 0.086199 0.0437135 +-0.00575467 0.1008 0.0460186 +-0.0117555 0.0969094 -0.0306933 +-0.0570352 0.129621 -0.00626418 +-0.06396 0.034704 0.0249317 +-0.0269668 0.0674701 -0.0325423 +0.00372222 0.0941665 -0.0317421 +-0.0708312 0.0951391 -0.0158707 +0.0351494 0.0633173 0.038442 +0.0303372 0.119206 0.0194646 +-0.0174811 0.118153 0.0357243 +-0.0928105 0.116053 0.0203106 +-0.012498 0.078722 0.0572931 +0.0102589 0.100444 -0.0223447 +0.0311369 0.0982118 0.0399163 +-0.0870966 0.0995146 0.0044219 +0.0372771 0.100696 0.0312566 +-0.0464652 0.16842 -0.00496016 +-0.0340766 0.172586 -0.0145127 +-0.0632966 0.144361 -0.00960502 +-0.00396533 0.128634 -0.00247998 +-0.0810179 0.0964125 -0.00756981 +-0.0296304 0.159454 -0.0131553 +0.0323433 0.0592178 0.0396143 +0.0171685 0.0490344 0.0439112 +-0.0798847 0.0706373 0.0145533 +0.00550249 0.0758881 0.0564988 +-0.0285046 0.0588067 0.036767 +-0.054422 0.152991 0.0228754 +-0.0663081 0.150341 0.0377708 +-0.0409099 0.173193 -0.0056112 +-0.00259587 0.0391262 -0.0253465 +0.0394316 0.0807401 0.0342345 +0.048793 0.049707 0.0281736 +-0.0225905 0.0365035 -0.0286129 +-0.0185117 0.0387718 -0.0147573 +-0.0889514 0.121274 0.00229944 +0.0255827 0.034587 0.0128177 +-0.0258582 0.100162 -0.023852 +-0.0317095 0.0382098 0.0512104 +-0.0608875 0.104029 -0.0182853 +-0.0577034 0.0591273 0.0216745 +-0.0316861 0.0553325 -0.0133983 +-0.0579004 0.0336435 0.0147513 +-0.050636 0.0604891 -0.0105672 +-0.0484979 0.101507 0.0419588 +-0.0735846 0.159652 -0.032921 +-0.0596849 0.136693 0.0347693 +-0.0527883 0.0490273 0.0246529 +-0.00587038 0.038496 0.0083708 +0.0443161 0.095966 0.0141619 +-0.0355281 0.0832646 0.0432735 +-0.0552893 0.160933 0.00328411 +-0.0694051 0.177621 -0.0490523 +0.0553162 0.0608807 0.0271604 +-0.0115038 0.082913 0.0576973 +0.00149573 0.118307 0.0388892 +-0.0643923 0.178295 -0.0607754 +-0.0696234 0.0702067 -0.00731499 +-0.0684446 0.156174 0.0134711 +-0.0631402 0.158352 -0.0425984 +-0.028277 0.0807444 0.0465032 +-0.0851037 0.143224 0.00618561 +-0.0701909 0.171451 -0.0335218 +-0.0542038 0.149302 0.0263885 +-0.0230864 0.0416339 0.0540702 +-0.0848397 0.124371 0.0492354 +-0.0509437 0.0349503 0.0448676 +0.0147035 0.0490065 0.0456198 +-0.059742 0.156334 0.00641085 +-0.07522 0.0688188 0.0015368 +-0.0196569 0.0390707 0.0375255 +0.0459174 0.0834201 0.0141703 +-0.0785236 0.0894249 -0.0105705 +-0.0200463 0.0893341 0.0549931 +-0.0173075 0.11558 -0.0164072 +0.000516136 0.0760027 0.0580883 +0.042165 0.0859172 -0.00778247 +0.0203197 0.0664896 -0.0280597 +-0.0604906 0.0959808 0.043977 +-0.00180047 0.0840422 -0.0369301 +0.0106204 0.119324 -0.014581 +0.000242427 0.128645 -0.00250259 +-0.0544918 0.0876045 0.0451014 +-0.081252 0.0993542 0.0322994 +0.0225815 0.0632207 0.0466294 +-0.0528036 0.129718 0.0341858 +0.0388075 0.10554 0.0251669 +-0.071237 0.156366 0.0212013 +-0.0419921 0.0349859 0.0415962 +0.0319555 0.0413937 0.028007 +-0.0465003 0.112564 0.0357108 +0.00310161 0.111606 -0.0202814 +0.0306552 0.102095 0.0374778 +0.0158981 0.0576764 0.0492073 +-0.036508 0.127508 0.00348399 +0.0403284 0.0574912 -0.00511853 +-0.06805 0.157495 -0.00534926 +-0.0870566 0.0847034 0.0124776 +-0.0785035 0.127443 0.053282 +0.0093755 0.0479282 -0.0271091 +-0.00151782 0.111398 -0.0200294 +-0.0386619 0.0336282 0.00792475 +-0.0321818 0.0666221 -0.0204419 +-0.0516478 0.0334795 -0.00363494 +-0.0505323 0.0346392 0.0434961 +-0.0871097 0.129792 0.0470428 +-0.00115829 0.0378141 0.0044798 +0.00250327 0.0351261 0.00210209 +0.0232927 0.0720269 -0.0262872 +0.0386441 0.0772022 -0.0107761 +0.00730214 0.0624461 -0.0313742 +-0.0601285 0.0334799 -0.007174 +-0.0311809 0.165241 -0.0158459 +-0.0456556 0.126096 -0.00729728 +0.01482 0.0920349 -0.0274402 +-0.0578658 0.154169 0.0274197 +-0.0766831 0.148629 -0.00786722 +-0.0548976 0.0574275 -0.00541424 +-0.0213746 0.0936314 -0.0333712 +-0.0795038 0.127439 0.0531413 +-0.0719602 0.0381531 0.00797803 +0.0465231 0.0539629 0.0319545 +-0.0327551 0.126411 0.00489661 +-0.0907403 0.135093 0.0162106 +-0.0798437 0.119249 -0.00499812 +-0.0195891 0.186548 -0.0163318 +-0.0336818 0.0474202 0.0430149 +0.0387003 0.0847793 0.034951 +0.005123 0.108732 -0.0201833 +-0.0355723 0.127236 0.00383072 +-0.0593755 0.0706339 0.0387044 +-0.0701237 0.0337481 0.00141754 +-0.0596389 0.0645563 -0.0073211 +-0.0247044 0.0349045 0.050534 +-0.0698349 0.155896 0.010068 +-0.00664542 0.0496313 -0.030799 +-0.0560508 0.049202 -0.00336342 +-0.0846449 0.0777798 0.00851725 +0.0428444 0.0958802 0.0241636 +0.0226208 0.0505695 0.0412719 +-0.0421939 0.165153 -0.0106292 +-0.0530779 0.153128 -0.00337034 +-0.0183995 0.128105 0.0144964 +0.0110096 0.125946 -0.00574203 +0.0135498 0.109816 -0.0183273 +0.0246987 0.1167 0.0323736 +-0.0323986 0.169744 -0.00487272 +0.0414995 0.0513848 0.032599 +-0.0820948 0.0748388 0.0105311 +-0.0771842 0.102138 0.0352151 +-0.0627985 0.161541 -0.0235962 +0.0203907 0.0490438 0.0415331 +-0.0284862 0.120462 -0.00941436 +0.00850898 0.0990197 0.0481875 +0.0181919 0.0781799 0.0527467 +-0.0323958 0.0383608 -0.00233468 +-0.0198811 0.121697 -0.00881459 +-0.0289402 0.154865 -0.00285823 +-0.055522 0.0600566 -0.00554029 +-0.0446949 0.0680713 -0.0159309 +-0.0505296 0.0657745 0.0361047 +0.0251595 0.0995713 -0.0194056 +0.0456643 0.0876028 0.0121678 +-0.0533672 0.143136 0.0253913 +-0.05283 0.138085 0.0270749 +-0.0324865 0.0974182 0.0443398 +0.00543862 0.118556 -0.0157347 +-0.0704807 0.1602 -0.00768602 +0.00476485 0.0378127 -0.0129945 +0.0453303 0.0875809 0.0171699 +0.00844159 0.109753 0.0403226 +0.0199305 0.0645206 0.0480779 +-0.0865012 0.0967606 0.00143514 +0.0239407 0.0433254 -0.00969837 +-0.0464991 0.0818806 0.0436011 +-0.0365053 0.0832925 0.043701 +-0.0511539 0.144707 0.0143676 +-0.0354688 0.0973337 0.0432864 +0.0315086 0.0361416 0.0180806 +-0.0620392 0.152203 -0.0175795 +-0.00174908 0.0726707 -0.0356483 +0.0482658 0.0482112 0.0273759 +0.0205204 0.0686316 0.0489712 +0.0055446 0.129937 0.0246284 +-0.0509363 0.126898 0.0333376 +0.0503401 0.0525815 0.0286903 +-0.0663805 0.0356243 0.0152158 +-0.0631059 0.039729 0.0160762 +-0.0794629 0.0702542 0.0118898 +-0.0440204 0.0437247 -0.0153148 +-0.0258047 0.0811626 -0.0373791 +-0.0654527 0.156561 -0.05302 +-0.0801896 0.0926573 0.034266 +-0.0226625 0.0493576 -0.0281762 +-0.076512 0.15561 -0.00689633 +-0.0316228 0.0384779 -0.00967109 +0.0073096 0.0609801 -0.0307365 +-0.036779 0.0827886 -0.0223365 +-0.0454595 0.0846983 0.0440929 +-0.0310517 0.0636961 -0.0214339 +0.044971 0.0748214 0.0226935 +-0.0245671 0.182966 -0.016053 +-0.0343794 0.125292 -0.00246071 +0.0260218 0.0493062 -0.0196675 +0.00451349 0.0786214 0.0559314 +-0.0272596 0.0409813 0.0537728 +-0.0865558 0.105007 0.0203641 +-0.0427952 0.0347556 0.00787321 +-0.0294944 0.0889496 0.044252 +-0.0691615 0.0832998 0.0419252 +-0.077704 0.175863 -0.0450747 +-0.0595653 0.0407951 0.0449735 +-0.0118194 0.129824 0.0125318 +-0.0304269 0.169744 -0.0072967 +0.00750596 0.0674413 0.055134 +-0.0895098 0.0942825 0.014433 +0.0566953 0.0550372 0.00319006 +0.0358581 0.0995241 -0.0113664 +-0.0541815 0.15229 0.0244282 +-0.0924737 0.125588 0.0362608 +-0.0750911 0.110634 0.0449752 +-0.0272685 0.0368017 0.0538626 +-0.0614955 0.104283 0.0410789 +-0.0721148 0.067315 0.0248191 +0.034236 0.094243 0.0391072 +-0.0724407 0.178857 -0.0487083 +-0.06691 0.033448 -0.00125687 +-0.0660379 0.0349778 0.0329828 +-0.0701097 0.156012 0.00122102 +-0.0157478 0.0352634 0.050467 +-0.0465076 0.160794 0.0071118 +-0.0156218 0.0365183 -0.0177136 +-0.00687536 0.0389886 0.0330493 +0.0201949 0.0959886 -0.0227072 +0.00536718 0.125777 0.0317922 +-0.0689036 0.105186 -0.0135662 +-0.0576505 0.0508003 0.0036576 +-0.0372877 0.0353832 0.0246264 +-0.0766222 0.0824671 -0.0115781 +-0.0570813 0.0344654 0.0405363 +0.0284042 0.0431456 -0.00552671 +-0.078005 0.151454 -0.00188508 +0.00274784 0.0953419 -0.0309592 +-0.0764328 0.147234 -0.00786196 +-0.0187399 0.0656914 -0.0372373 +-0.0626784 0.0670893 0.0340154 +-0.066213 0.0377522 0.0375383 +0.00946024 0.0346841 0.0420404 +-0.00763703 0.046711 -0.0299661 +0.0217664 0.106013 0.0404033 +0.0159395 0.0900955 0.0512828 +-0.0714939 0.126019 0.0527835 +-0.035368 0.122868 0.0260927 +0.0397669 0.0885289 -0.0117744 +-0.0235296 0.159196 -0.00227474 +-0.0299919 0.0383903 -0.00556396 +0.00840449 0.0360838 -0.0229864 +-0.0688351 0.0951745 -0.0162656 +0.0188202 0.124811 0.0265908 +-0.0542034 0.0477679 0.0266683 +-0.00718512 0.0384992 0.0226001 +0.0191993 0.0352366 0.0345338 +-0.0486962 0.13553 0.00541025 +0.0065027 0.0533154 0.0528127 +-0.064997 0.0410349 0.013689 +0.0235192 0.107033 0.0392433 +-0.0526101 0.0632972 -0.0100113 +0.0288769 0.120252 0.0217702 +-0.00882418 0.0896578 -0.0365764 +-0.0563459 0.0335397 0.00260276 +0.0287652 0.114389 -0.00726895 +0.0564669 0.0577845 0.00118215 +-0.0623836 0.163016 -0.0556039 +-0.0235351 0.118111 0.0331575 +0.0443232 0.0889197 0.0231574 +0.0349753 0.114037 0.00545779 +0.0269837 0.108749 0.0374141 +-0.000496913 0.056284 0.0547664 +-0.0889882 0.115854 0.0042936 +-0.0688144 0.0851338 -0.0175228 +-0.0304795 0.0746468 0.0405648 +-0.0616784 0.0692367 -0.0132074 +-0.0554108 0.0334149 -0.00799207 +-0.0610813 0.0342293 0.0311986 +-0.0655517 0.155937 0.0246661 +-0.0767597 0.163153 -0.0191399 +-0.0140741 0.0388251 0.0317136 +-0.02858 0.0731702 0.040795 +-0.0480086 0.134685 0.0198054 +-0.00949027 0.107257 0.0434611 +-0.0224071 0.0510134 0.0440995 +0.0026516 0.0341771 0.00670019 +-0.00282121 0.086807 -0.0363939 +0.00461042 0.092806 -0.0323339 +0.0444404 0.0425371 0.0222477 +-0.0251232 0.0838362 0.0531591 +-0.0711154 0.155676 0.00670049 +-0.0144639 0.0977101 -0.0275565 +-0.0176152 0.0407641 -0.0279656 +-0.0273216 0.038344 -0.00129213 +-0.0781679 0.14865 -0.00288263 +-0.071113 0.171733 -0.033865 +-0.0362701 0.0365605 0.0458807 +-0.0245074 0.0384654 -0.0082311 +-0.0768529 0.106269 -0.00826114 +0.0173624 0.088714 0.0498122 +-0.0872512 0.106353 0.0133638 +-0.0647985 0.124215 0.0485 +0.0274255 0.0686124 0.0431235 +-0.0275944 0.0717748 -0.0345689 +-0.00449702 0.0590031 0.0543234 +-0.00869265 0.0598566 -0.0344628 +-0.0624896 0.106999 0.0393995 +0.00296819 0.0986498 -0.0244883 +-0.0716108 0.0701594 -0.00639514 +-0.0454969 0.0733342 0.042072 +0.0217583 0.0505253 0.0417779 +0.0599479 0.0692188 0.0141571 +0.0159709 0.0859869 -0.0291978 +0.0474137 0.0671743 0.000684928 +0.045537 0.0890033 0.0131643 +0.025235 0.0690602 -0.0242719 +-0.0140104 0.117853 -0.0148385 +-0.0417786 0.156522 0.00614116 +0.0529468 0.0608894 0.0290245 +-0.0623778 0.167137 -0.0608155 +-0.043781 0.0422821 -0.0183128 +0.0194047 0.0727279 0.0509389 +-0.025431 0.180214 -0.00870569 +0.00163035 0.0962275 -0.0299038 +-0.0609057 0.119508 -0.00974426 +-0.0265539 0.180361 -0.00771033 +-0.00586693 0.104511 -0.0229142 +-0.0446124 0.0534121 -0.0108089 +-0.0607974 0.125499 0.0419374 +-0.0676844 0.160922 -0.0559942 +-0.0718937 0.0376106 0.00231258 +-0.0769618 0.103489 0.0349575 +-0.0136243 0.0450811 -0.0280269 +-0.0656393 0.145367 0.0403005 +-0.067848 0.0994807 -0.015636 +-0.0674005 0.156127 0.0138467 +-0.0814089 0.141772 -0.000809353 +0.0343092 0.113032 0.0252402 +-0.0378129 0.0900392 -0.0237743 +0.0410972 0.0779427 0.031296 +-0.0594968 0.104294 0.0413247 +-0.045045 0.0657131 0.0396946 +0.0424943 0.0569701 0.0318321 +0.0380924 0.0618152 0.0338774 +-0.0181385 0.038277 0.0223668 +-0.0680503 0.114246 0.0489904 +-0.089636 0.0902445 0.0164491 +-0.0259323 0.124597 0.000115117 +-0.0341212 0.124555 0.022076 +-0.0117695 0.075665 -0.0382916 +-0.0666005 0.156329 0.0184798 +0.0143467 0.0580862 -0.0289605 +0.00620145 0.0832401 0.0564613 +-0.07299 0.158232 -0.0339184 +0.0179038 0.0866718 -0.0278625 +-0.0447879 0.085543 -0.0216723 +0.0240528 0.0347605 0.00303304 +0.0471472 0.0437632 0.0216364 +-0.0254743 0.105723 0.0415881 +-0.0914335 0.120003 0.00730918 +-0.0381624 0.035793 0.0434599 +-0.0470742 0.127422 -0.00463291 +0.000501079 0.0620074 0.0565701 +-0.0488714 0.104198 -0.020417 +-0.00949444 0.063336 0.0558203 +-0.0227837 0.0742285 -0.0385317 +-0.00949145 0.115547 0.0400498 +-0.0665386 0.0804536 0.042224 +0.00148883 0.121012 0.0365952 +-0.024281 0.069418 0.0457102 +0.019893 0.114777 -0.0136897 +-0.0904011 0.115144 0.0307537 +-0.00370938 0.0627709 -0.0350699 +-0.00367406 0.0555102 -0.0326331 +-0.0125077 0.0773203 0.0572074 +-0.0574951 0.093265 0.0451928 +-0.0942113 0.120123 0.0212925 +-0.0213358 0.165379 -0.00997448 +-0.0615068 0.0789665 0.042503 +0.00239149 0.0343213 0.0156312 +-0.0639126 0.11101 -0.0139478 +0.0381439 0.103967 -0.00387277 +-0.0816033 0.101897 -0.00556882 +-0.0582639 0.12123 0.0402958 +-0.0729322 0.156105 0.0220745 +-0.0514974 0.086244 0.0456131 +-0.0876158 0.137864 0.0416648 +0.0120082 0.0967361 -0.024421 +0.0147782 0.0929392 -0.0263979 +-0.0510555 0.150177 -0.00351578 +-0.0165661 0.163924 -0.0100865 +-0.00519498 0.0390091 -0.00671136 +-0.021716 0.0641363 -0.0354017 +-0.0523357 0.136679 0.027812 +0.0335961 0.0633113 0.0397473 +-0.0384865 0.0492045 0.0394845 +-0.0339969 0.152567 -0.000573454 +0.0175453 0.0645325 0.0499023 +-0.0895247 0.139293 0.0351741 +-0.0870044 0.115772 0.00228167 +-0.0852267 0.0792333 0.0184927 +-0.0927665 0.116031 0.013321 +-0.0240588 0.111793 -0.0183639 +0.0191819 0.123133 0.0296014 +0.0163312 0.0767998 0.0535416 +-0.0834123 0.0856961 -0.00454328 +-0.0614974 0.0904473 0.0454009 +-0.0648003 0.0370671 0.0164284 +-0.0102366 0.125327 0.0306172 +-0.0512935 0.0556822 0.0305914 +-0.0674962 0.0930678 0.0426016 +-0.0707247 0.156767 -0.045914 +-0.0611468 0.0584317 0.0117762 +0.0152753 0.0680849 -0.0302874 +-0.0638387 0.163409 -0.0592654 +0.030267 0.0496887 -0.0107252 +-0.0227695 0.0684387 -0.0367377 +0.0216497 0.065881 0.0470485 +-0.0849335 0.125015 -0.00321773 +-0.0364959 0.0562316 0.0392716 +-0.0132153 0.0406258 0.0508237 +0.00695506 0.0982177 -0.0239936 +0.00047843 0.12713 -0.00487855 +0.0354045 0.046148 -0.00604177 +-0.0913848 0.129679 0.0322355 +-0.0924762 0.124198 0.0322659 +-0.0057025 0.12744 -0.00517306 +0.032332 0.110047 0.0311032 +-0.0374975 0.0662835 0.0416878 +-0.0306651 0.155159 -0.000638202 +0.0161 0.12839 0.0198796 +-0.0392376 0.124806 0.0231803 +0.00131504 0.0597888 -0.0330641 +-0.0445007 0.0931064 0.043109 +-0.0174373 0.0336888 -0.022956 +-0.0536509 0.0343311 0.0291848 +0.0348249 0.110986 -0.0028353 +0.0280633 0.100998 -0.0169482 +0.0423903 0.0490515 -0.00589339 +0.0306614 0.119205 0.0153072 +-0.0604957 0.0876028 0.045161 +-0.0137303 0.0699989 -0.0380502 +-0.00750341 0.130405 0.00835201 +-0.0494799 0.116621 0.0323892 +-0.058737 0.075302 -0.0183386 +-0.0518764 0.0550741 0.0228473 +-0.0293899 0.118762 -0.0116358 +-0.0743199 0.158257 -0.0279194 +-0.0265758 0.0533991 -0.0263925 +-0.047508 0.0903548 0.0442194 +-0.0104972 0.0815462 0.0580111 +-0.0356136 0.0408304 -0.0293778 +-0.0622824 0.159968 -0.0396048 +-0.0727292 0.0730957 -0.00887693 +0.0252321 0.0889244 0.0471615 +0.0362811 0.0443655 0.0298564 +-0.0583717 0.138143 0.0331568 +0.0516174 0.0711387 0.00464104 +0.00649466 0.0427198 0.0454361 +-0.0187116 0.0598792 -0.0350421 +-0.0603468 0.0339987 0.0210215 +0.0310626 0.107429 0.0345663 +-0.0153967 0.0384283 -0.000805549 +0.0390675 0.0617702 -0.00778266 +-0.0718188 0.0907915 -0.0158595 +-0.0066784 0.0569449 -0.0331859 +0.00738229 0.0448872 -0.0251556 +0.0193881 0.0506007 -0.0247336 +-0.0171345 0.165288 -0.0183426 +0.0172728 0.0694422 -0.0295359 +0.0518225 0.072596 0.0200635 +-0.085483 0.140457 0.00319222 +-0.049383 0.140141 0.0133936 +-0.076884 0.155644 0.0221655 +-0.0584972 0.111135 0.0367864 +-0.0264895 0.102963 0.0427118 +-0.016526 0.0387631 -0.00875803 +-0.060493 0.107007 0.0395303 +-0.0133132 0.0385196 -0.000466347 +0.027107 0.0406036 0.0313674 +-0.0852773 0.137655 0.00128094 +-0.0776954 0.16804 -0.0399638 +-0.0465214 0.0505047 0.038174 +-0.0251912 0.178602 -0.0188241 +-0.0524991 0.101502 0.0417298 +-0.0142894 0.184628 -0.0268303 +0.00710791 0.110158 -0.019992 +-0.0766628 0.155608 -0.00789132 +-0.0814761 0.0734707 0.0145404 +-0.0644951 0.0789605 0.0422031 +0.0403539 0.105584 0.00317596 +-0.0633486 0.0371336 0.0178291 +-0.0808831 0.117721 -0.00384392 +-0.0265027 0.10847 0.0397156 +0.0236097 0.121674 0.028372 +-0.0623736 0.164689 -0.0415928 +-0.0495545 0.0404082 -0.0113965 +-0.0562131 0.054804 -0.00139993 +-0.0418518 0.098529 -0.0215916 +0.0133351 0.058103 -0.0291864 +-0.0594448 0.063179 0.0293052 +0.0113019 0.0652847 -0.0308368 +-0.0783582 0.0994351 0.0350546 +-0.0715439 0.0376425 0.00026118 +-0.0154996 0.112736 0.0400881 +0.0417289 0.0704356 -0.00679567 +-0.0406463 0.127804 0.0152535 +-0.0627661 0.170921 -0.0616075 +-0.0923057 0.12017 0.0426167 +-0.00727442 0.0422617 0.0488857 +0.0350851 0.0848737 -0.0178837 +-0.01578 0.128598 0.00819831 +-0.03217 0.0735917 -0.0275208 +-0.0673634 0.110954 0.0392365 +-0.0271001 0.0779439 0.0468281 +-0.0765081 0.156243 -0.00790412 +0.0277565 0.117474 -0.00457839 +-0.0113381 0.0986434 -0.0265191 +-0.0330823 0.0695155 -0.0204574 +-0.0652177 0.144322 -0.0140816 +-0.0094303 0.0379372 -0.0159242 +-0.0245144 0.0945317 -0.028309 +-0.05375 0.0560385 0.0116204 +-0.0679678 0.0383221 0.0123903 +0.00399334 0.0399971 0.0458959 +-0.0841715 0.0870272 0.0285556 +-0.0274573 0.0734015 0.0426855 +-0.0626773 0.153684 -0.0325991 +-0.0741408 0.105214 0.0369385 +-0.0134986 0.081495 0.0573009 +0.0463327 0.0421886 0.017365 +-0.0644937 0.108375 0.0384047 +-0.0653695 0.151233 0.0366147 +-0.018937 0.178659 -0.0169738 +-0.0820692 0.0748107 0.00351555 +-0.0841353 0.146019 0.0379782 +-0.0148578 0.163977 -0.0174595 +-0.0817263 0.0747702 0.00249857 +0.000235601 0.0740952 -0.0356038 +0.000940682 0.0357179 -0.0155776 +-0.0719363 0.129668 -0.0086833 +0.0301411 0.102934 -0.0150039 +-0.0651961 0.0334974 -0.00275965 +-0.0185844 0.16399 -0.00948536 +-0.0592125 0.042121 0.0445708 +7.57538e-05 0.0369473 0.00366537 +0.0152945 0.0666369 -0.0299356 +0.0410157 0.0739041 0.031202 +-0.0577153 0.0344512 0.0421091 +-0.0920793 0.129683 0.0282033 +-0.0497426 0.0753235 -0.0177986 +-0.0484934 0.047761 0.0395051 +-0.0809803 0.104706 0.0304576 +-0.0746935 0.111142 -0.00760178 +0.0204806 0.109788 0.0388648 +-0.0734977 0.128836 0.0522844 +-0.0426178 0.0520018 -0.0109441 +0.0112198 0.0932651 -0.0287439 +-0.0119274 0.182669 -0.0262872 +0.0145534 0.0347576 0.0376203 +-0.0810222 0.100509 -0.00657927 +-0.0033633 0.038102 0.0128662 +-0.0937861 0.128264 0.0182441 +0.0084061 0.0949783 -0.0285638 +-0.0695902 0.113495 0.0492959 +0.000169576 0.131258 0.0183392 +-0.0931626 0.117374 0.0143043 +-0.0195343 0.112367 -0.0190097 +-0.0524215 0.162453 0.00456363 +0.0184901 0.0879016 0.0492476 +-0.0685433 0.170852 -0.0550244 +-0.087182 0.130813 0.00128919 +0.00130454 0.0641388 -0.0343264 +-0.000757317 0.075519 -0.0359212 +0.0308776 0.0902792 0.0430757 +-0.00578939 0.0386518 0.00278679 +-0.076212 0.155059 0.00635026 +-0.0248315 0.0881388 -0.0362597 +-0.0222598 0.160103 -0.0129456 +-0.00877699 0.0770434 -0.0377883 +-0.06674 0.0383979 0.0141071 +-0.00350265 0.0689326 0.0566398 +-0.0295614 0.0861399 -0.0326125 +-0.0286647 0.125711 0.0122564 +-0.0699648 0.0791315 0.0398469 +0.0142764 0.128727 0.0220636 +-0.0638003 0.110914 0.037425 +-0.0719625 0.135504 -0.00769556 +-0.0527869 0.124083 0.0359567 +-0.0467161 0.0738381 -0.0169211 +-0.0117423 0.070003 -0.0378791 +-0.0517809 0.138537 0.023394 +-0.00482205 0.130969 0.0150835 +0.034711 0.0383001 0.0222555 +-0.00127486 0.120883 -0.0121504 +0.0112227 0.0850587 -0.0310098 +-0.0506063 0.0369029 -0.0119734 +0.0433147 0.0831895 0.0275132 +0.0112941 0.127457 0.0281604 +0.0151622 0.122267 0.032438 +0.0400834 0.082061 0.0334038 +-0.0745622 0.152707 -0.0248951 +-0.0528479 0.141625 0.0244146 +0.0245482 0.035172 0.0211866 +-0.0325075 0.11115 0.0364446 +0.0417109 0.0957641 -0.00380547 +-0.00538241 0.130597 0.0192035 +-0.0649174 0.0364897 0.025021 +-0.0770334 0.158982 -0.013085 +-0.0760388 0.148613 -0.0118618 +0.0283559 0.116347 0.030146 +-0.088594 0.121257 0.00130017 +-0.0268076 0.122539 -0.00562189 +-0.0346629 0.0607102 -0.0125376 +0.0413795 0.0505691 -0.00672382 +-0.0906746 0.1365 0.0201946 +0.00951942 0.100425 0.0477045 +-0.0642867 0.172466 -0.0611328 +-0.0242433 0.172722 -0.0123976 +0.00950564 0.0990636 0.0482467 +0.0101664 0.120462 0.0359466 +-0.0187755 0.107692 -0.0220397 +0.0335012 0.0795469 0.0414506 +-0.0834882 0.14321 0.00316117 +-0.0530161 0.141613 0.0254095 +-0.0395373 0.172163 -0.000837254 +0.0387477 0.0589461 -0.0057234 +-0.0647673 0.0795072 -0.0181104 +-0.00140393 0.0361018 0.00962515 +-0.00524162 0.0395598 0.0483202 +0.0236373 0.103743 -0.0178545 +-0.000477761 0.0760312 0.0584165 +-0.0210492 0.0348694 0.0496408 +-0.00244654 0.131114 0.00878185 +-0.033711 0.0384262 -0.00450177 +-0.0745333 0.152696 -0.0258905 +0.055409 0.0509629 0.0218922 +-0.0134774 0.127753 0.000758007 +-0.0120362 0.0388366 0.0321214 +-0.0278604 0.0487672 0.0470543 +0.0327952 0.0713854 0.0403707 +-0.0728362 0.0979301 -0.0143404 +-0.0367225 0.125751 0.02112 +0.0198232 0.0385183 -0.0126921 +-0.0377749 0.150712 0.00133662 +-0.0665966 0.180807 -0.0581921 +-0.0215095 0.114043 0.0376946 +-0.0620515 0.035927 0.0204607 +-0.0584945 0.150006 -0.0011129 +-0.0335992 0.1188 -0.0116562 +0.0196457 0.116633 0.0356159 +0.0248522 0.0685926 0.0446792 +-0.0164926 0.0544756 0.0504072 +-0.051136 0.140067 0.0203692 +-0.089139 0.139182 0.0122002 +0.0163249 0.0580554 -0.0285 +-0.0621816 0.0342254 0.0257179 +-0.0188821 0.0387745 -0.0111028 +-0.053388 0.034491 0.0395762 +-0.000472072 0.130948 0.0195451 +-0.0634988 0.173693 -0.0615446 +-0.054487 0.0452173 0.0438312 +-0.0202902 0.0906146 -0.0362948 +-0.0725702 0.17984 -0.0501722 +-0.0707759 0.162402 -0.0459559 +-0.0463694 0.113628 -0.0162147 +-0.0523573 0.0345285 0.0397607 +-0.0136632 0.0511316 -0.0317578 +-0.00948303 0.0703233 0.0561585 +-0.0852113 0.0869359 0.026743 +-0.0745333 0.0805197 0.0374668 +0.00349251 0.118288 0.0385113 +0.0493697 0.0693787 0.0250272 +0.029581 0.0736246 -0.0217333 +-0.0400646 0.156235 -0.00986121 +-0.0818113 0.136716 0.048659 +-0.0809364 0.129495 -0.00494346 +-0.0875459 0.110452 0.0143395 +0.0253164 0.112728 0.0350367 +-0.0852858 0.0845126 -0.000515374 +0.00212883 0.120316 -0.0135831 +-0.0192664 0.0381478 0.0114056 +0.0493315 0.0589269 -0.00474568 +-0.0183092 0.162495 -0.00732366 +-0.00730789 0.12834 -0.00208974 +-0.0286194 0.180015 -0.014033 +0.0255963 0.0648009 -0.0228004 +-0.00925832 0.177251 -0.027731 +-0.0485485 0.0432385 -0.0107358 +-0.0600861 0.14609 -0.00280453 +-0.026172 0.174158 -0.0190728 +-0.059111 0.0686528 0.0369372 +-0.0434854 0.0944868 0.0426487 +-0.0216341 0.038095 0.0200103 +-0.0670537 0.071446 0.0363402 +-0.0348255 0.0915164 -0.024068 +-0.0202598 0.174222 -0.0154191 +0.0344662 0.114921 0.00815778 +-0.0686919 0.0750175 -0.0147112 +0.026272 0.0789381 -0.0240124 +0.0202522 0.0805604 -0.0270674 +-0.0432329 0.156565 0.00586077 +-0.00650833 0.0787624 0.0577507 +-0.0335034 0.0774945 0.0414157 +-0.0606769 0.0676671 -0.0113119 +-0.0656284 0.162324 -0.0174746 +0.00729944 0.0639619 -0.0320669 +-0.00448657 0.0898027 0.0567005 +-0.0584972 0.0918588 0.045399 +0.00218731 0.0852799 -0.0344916 +-0.0417916 0.0869783 -0.0214259 +0.0463392 0.0489694 -0.00446687 +-0.0389761 0.128486 0.00847309 +0.00727028 0.11232 0.040519 +-0.0234564 0.0680424 0.0463484 +-0.0797185 0.0803984 0.0327643 +0.0232549 0.0645506 0.0458531 +0.0198821 0.0449543 0.0425235 +-0.0394974 0.0902763 0.0431118 +-0.0662858 0.172388 -0.0591199 +0.0259452 0.0364961 0.0239139 +-0.0714148 0.0386609 0.00057855 +-0.0638254 0.0924713 -0.0188016 +-0.0584874 0.112515 0.0360801 +-0.0623619 0.166253 -0.047591 +0.0452758 0.0875665 0.00218329 +-0.0244115 0.0379996 0.0159179 +0.0452209 0.0659646 -0.000116442 +-0.0707693 0.176767 -0.0466577 +-0.0650223 0.156803 -0.0519494 +0.0354173 0.0414682 -0.003097 +-0.0416808 0.0622091 -0.0130274 +0.0326595 0.114633 -0.00147403 +-0.0495274 0.14168 0.00739502 +0.0388579 0.0970015 -0.00784 +-0.00249575 0.0389742 0.0303561 +0.0070795 0.101453 -0.021277 +0.0291938 0.0754716 0.043989 +0.00502464 0.126695 -0.00649713 +-0.016158 0.0884114 -0.0380198 +0.0115883 0.102988 -0.0210311 +0.0576451 0.0661396 0.0235216 +0.0317192 0.118031 0.0171382 +-0.0116954 0.175688 -0.0223293 +0.00121183 0.0853285 -0.0350521 +-0.0158308 0.0883117 -0.038067 +-0.0686258 0.0846974 0.0427491 +0.00833511 0.0595736 -0.0302453 +0.0450509 0.0423962 0.0206492 +-0.027467 0.0793682 0.0471485 +-0.0679777 0.0716192 0.0360049 +-0.0718018 0.158195 -0.0399213 +-0.0114987 0.0856547 0.0572923 +0.0131441 0.0346685 0.0356066 +-0.0620328 0.156862 -0.0185851 +-0.0607717 0.113836 0.03657 +-0.0764751 0.146968 0.0421376 +-0.0207673 0.117009 -0.0138783 +0.0416942 0.0655359 -0.00371801 +-0.0306051 0.0524133 -0.0153638 +0.0107636 0.130209 0.0207729 +-0.0902734 0.133771 0.0282153 +-0.0235934 0.0383252 0.00311252 +-0.012672 0.0526484 -0.0327744 +-0.0309385 0.0622798 -0.0204312 +-0.0337803 0.122942 0.0251825 +-0.0598823 0.146825 0.0363335 +-0.0447526 0.0336781 0.00121434 +-0.0540428 0.0334293 -0.000440359 +0.0119421 0.123166 0.0332435 +0.0105328 0.103079 0.0462759 +-0.00696577 0.0389018 -0.00510709 +-0.033478 0.0632761 0.0395519 +-0.0386238 0.0519962 -0.0107523 +-0.0778526 0.159695 -0.0239243 +-0.0154805 0.109966 0.0416657 +-0.0688005 0.087996 -0.0171065 +-0.0428494 0.0999447 -0.0214282 +0.02441 0.101163 -0.0191142 +-0.0630974 0.160042 -0.0195595 +-0.0591899 0.154851 0.0254882 +-0.0694874 0.100005 0.0406788 +-0.063101 0.150495 -0.0266018 +-0.000774843 0.0783346 -0.0358957 +-0.0335129 0.112536 0.0351002 +0.00348618 0.11278 0.041408 +0.0454091 0.0918015 0.00517469 +-0.030521 0.0636541 -0.0224277 +-0.0564983 0.108415 0.0389345 +-0.0454982 0.045182 0.0420491 +0.0366564 0.089932 -0.0151793 +-0.00318743 0.0350129 0.0463208 +0.0397193 0.0787183 -0.00974279 +-0.0456155 0.165496 -0.00783315 +-0.0401614 0.110268 -0.0187071 +-0.0607836 0.171276 -0.0609166 +-0.0849643 0.0885105 -0.00254627 +0.000663768 0.131541 0.0142252 +-0.0773558 0.163115 -0.0213545 +-0.00442024 0.118937 -0.0140576 +0.029367 0.1045 -0.0146741 +-0.0767078 0.176155 -0.0445645 +-0.087862 0.117151 0.00226309 +-0.0674561 0.1652 -0.0559896 +0.0417828 0.101446 0.0181564 +-0.0504972 0.0465484 0.0414292 +0.0334855 0.0808915 0.0414362 +-0.0640951 0.0700461 0.0364211 +-0.0500004 0.121197 0.0329094 +-0.0640156 0.0344353 0.0303981 +0.0161688 0.0407187 0.0441528 +-0.0175288 0.165418 -0.0114925 +-0.0156111 0.0407209 -0.0274801 +-0.0136265 0.129395 0.0133241 +-0.060628 0.0588072 0.00794551 +0.0064803 0.0977098 0.0499318 +0.0439772 0.079046 -0.00278888 +0.0418428 0.0986036 -0.00180869 +-0.0225444 0.178667 -0.0133919 +-0.0606264 0.0336734 0.0105944 +-0.0434 0.0336807 -0.00215159 +-0.0886031 0.143176 0.0340326 +-0.0849284 0.107666 0.0223625 +0.0592303 0.0580467 0.0201933 +-0.0540206 0.147182 -0.0016614 +-0.00601913 0.126314 0.0306279 +-0.0686207 0.149674 -0.0393499 +-0.0919325 0.130933 0.0102425 +-0.0568299 0.143897 0.0319274 +-0.0354984 0.115235 0.0327878 +-0.0174958 0.0701523 0.0542792 +0.0270421 0.0862601 0.0462384 +-0.0488595 0.101383 -0.02158 +-0.0733679 0.152652 -0.0338969 +-0.0750934 0.159541 -0.00936327 +-0.0374543 0.155389 -0.00975319 +-0.0381729 0.166677 -0.0130206 +-0.087877 0.0990467 0.0233782 +-0.00160432 0.0405525 -0.0251988 +-0.0903048 0.139241 0.0221876 +-0.00139541 0.0385701 0.0219096 +-0.0221672 0.0839099 0.0558332 +-0.000827607 0.0389424 0.0289209 +-0.0177093 0.0385258 -0.00321073 +-0.0221552 0.169733 -0.0198584 +-0.0574718 0.156359 0.0101234 +0.0162407 0.0793143 -0.0294472 +0.0309621 0.0953572 -0.0169293 +-0.0167051 0.126576 2.44266e-05 +-0.0210968 0.161053 -0.00432438 +-0.0244887 0.100244 0.0443393 +-0.0637376 0.15365 0.0326508 +0.0154945 0.115387 0.0371086 +-0.0110238 0.098585 0.0502027 +-0.0466991 0.122484 0.0270727 +0.015569 0.110589 -0.0172093 +-0.0540772 0.146211 0.0253916 +0.0117081 0.0589891 0.0519593 +-0.0289244 0.033884 -0.0216457 +-0.08784 0.105023 0.0143674 +0.0262802 0.123151 0.0136687 +0.0122982 0.128768 0.0241985 +0.0428587 0.0803554 -0.00479839 +-0.0249679 0.0851951 0.0529639 +0.0259953 0.123127 0.0078705 +-0.000612836 0.0356605 0.0156316 +0.0462948 0.0820457 0.00817944 +-0.0179779 0.15947 -0.0103936 +-0.0237993 0.184341 -0.0145966 +-0.0300075 0.0337589 -0.0217484 +0.0233024 0.124378 0.00401489 +-0.0457643 0.0811616 -0.0200148 +-0.0786005 0.174957 -0.0470491 +0.00992987 0.0806149 0.0548353 +-0.036507 0.0464425 0.0402005 +-0.0229776 0.0681076 0.0472951 +0.0359077 0.111056 0.0244077 +-0.0691331 0.0612207 0.0112337 +-0.0653605 0.174136 -0.0490346 +-0.0246777 0.0366811 0.0541279 +0.00549638 0.115538 0.0397987 +-0.0512593 0.128575 -0.00377835 +-0.0227541 0.0889021 -0.0365754 +-0.052801 0.144689 0.0203903 +-0.0373724 0.0344314 0.0325332 +0.0302609 0.0461225 0.032895 +-0.0668934 0.119448 -0.00885989 +-0.0781478 0.107183 -0.00659237 +-0.0262448 0.109573 -0.0200299 +-0.0930011 0.116069 0.0193086 +0.0199447 0.104671 0.0430468 +-0.0902973 0.114585 0.00733567 +-0.0597131 0.0708022 -0.0154129 +0.011503 0.0909852 0.0534706 +-0.0601621 0.0433793 -0.00606772 +-0.0690356 0.068492 0.0314599 +-0.0662201 0.0390045 0.0360529 +0.0111444 0.104428 -0.02004 +-0.0620602 0.155611 0.00849054 +0.038029 0.105425 -0.00179734 +0.00952421 0.0346423 -0.0128865 +-0.0475328 0.0338333 0.0273813 +0.0275059 0.121239 0.00414409 +-0.0713739 0.162409 -0.0439557 +-0.0388285 0.0339925 0.000319116 +0.0209713 0.0966458 -0.0223043 +-0.0117867 0.0798822 -0.0383021 +-0.00231276 0.123919 -0.0094032 +-0.0623035 0.158393 -0.0375989 +-0.0498834 0.108435 -0.0190271 +-0.0450959 0.122461 0.0255697 +-0.086583 0.1077 0.0153543 +-0.0640141 0.128346 0.0443555 +-0.0910616 0.140621 0.0211716 +0.0222184 0.122028 -0.00352468 +-0.0197563 0.0685528 -0.0378978 +-0.0747315 0.0809443 -0.0125955 +0.0381487 0.056188 -0.00571384 +0.0310862 0.0808926 0.0432566 +-0.0418955 0.0336683 0.02694 +0.0454971 0.0861837 0.00419421 +-0.0515955 0.0575054 -0.00888629 +-0.0923422 0.120143 0.0302906 +-0.0388134 0.0900157 -0.0235053 +-0.0678286 0.139237 -0.00787376 +-0.0500776 0.136736 0.0219567 +-0.0524826 0.132311 -0.00383544 +-0.0725073 0.154019 -0.0378993 +-0.0164965 0.114086 0.0389356 +-0.0266334 0.0505574 -0.0257305 +0.0285947 0.0646316 0.0430307 +-0.050498 0.10288 0.0412159 +-0.0147348 0.0348101 0.0475803 +-0.0147627 0.0728806 -0.0387608 +-0.0425799 0.160887 0.00499665 +-0.0516371 0.0334814 0.00180973 +-0.0574972 0.0973516 0.04313 +-0.0294813 0.179959 -0.00726258 +-0.0696084 0.159782 -0.00738408 +-0.00175707 0.0783385 -0.0360812 +-0.0778906 0.0797955 -0.00863863 +0.0383322 0.0928141 0.0344469 +-0.0459579 0.0368224 -0.0202942 +0.0126438 0.130236 0.0157508 +0.0370668 0.109719 0.0231776 +-0.0650007 0.0600171 0.0167571 +-0.0294928 0.0931993 0.044345 +-0.0849548 0.0952071 0.0290738 +-0.0314917 0.0660582 0.0391556 +0.0283827 0.10475 0.0376855 +0.0125555 0.034405 -0.0178251 +0.0407099 0.0684593 0.0306869 +-0.0321086 0.163743 -0.0150961 +0.00529533 0.064011 -0.0326857 +0.0428516 0.0972538 0.000192155 +0.0475361 0.0451237 0.0241502 +-0.0188094 0.0382725 0.0240343 +-0.0242622 0.0650295 0.043001 +-0.0247852 0.0783802 -0.0377363 +0.0104929 0.0923225 0.0529394 +-0.0684671 0.140894 -0.00832284 +-0.013606 0.0435021 -0.0266802 +-0.0324058 0.05963 -0.0134049 +-0.0709313 0.156768 -0.044906 +-0.0794975 0.113845 0.0467655 +0.0215945 0.126233 0.0147739 +-0.0653369 0.0416124 0.0352199 +0.0546053 0.0733755 0.0137165 +-0.0893171 0.0996957 0.0173941 +-0.0835863 0.0817078 0.00050138 +0.029436 0.039931 -0.00313898 +-0.0614917 0.0661812 0.0332998 +-0.0923901 0.114734 0.0183133 +0.030053 0.0567138 -0.0167759 +-0.00342912 0.0915905 -0.0351346 +-0.0758824 0.100651 -0.0113429 +-0.0457293 0.0348843 0.042622 +0.00615023 0.0385922 -0.00780619 +-0.0547458 0.0768339 -0.0193157 +-0.0356142 0.0493225 -0.0125317 +0.024593 0.0345639 0.00705834 +-0.0892328 0.114145 0.0245988 +0.0348936 0.0586201 -0.0127038 +-0.0828513 0.138047 0.046826 +0.0569539 0.0508846 0.00918952 +-0.0797103 0.0711205 0.00752586 +-0.092065 0.118755 0.0273051 +-0.0103683 0.0388061 0.0306894 +-0.0431813 0.165147 -0.00997877 +-0.0813565 0.109598 0.0300528 +0.0477122 0.0511499 0.0301456 +-0.0678831 0.155252 0.000581516 +0.0349362 0.113582 0.0211925 +0.0280387 0.0549866 0.0403705 +-0.0615433 0.125505 0.042614 +0.0450739 0.0427888 0.00232236 +-0.0544975 0.121335 -0.0101688 +0.0117318 0.0833298 0.0539432 +-0.0144997 0.103011 0.0432504 +-0.0752992 0.149965 -0.0228671 +0.0196742 0.0686359 0.0495084 +-0.0394722 0.107013 0.0383007 +-0.0321381 0.0435397 -0.0289857 +0.0231687 0.0915577 0.0477207 +-0.0480905 0.156132 -0.00685995 +0.00882114 0.0589209 0.053036 +0.000540453 0.0731645 0.0574875 +-0.0842824 0.0818436 0.0235004 +-0.072066 0.0353469 0.00817017 +-0.0548518 0.122696 0.0382478 +-0.0283817 0.123518 -0.00261643 +-0.0178271 0.0855379 -0.0388455 +-0.00772146 0.0656018 -0.0354736 +0.0230836 0.12416 0.0238853 +-0.0125037 0.0730609 0.0559849 +0.0551355 0.0581678 0.0268835 +-0.0288448 0.124881 0.0180835 +-0.0566945 0.126945 0.0390945 +-0.0491155 0.0337431 -0.0125383 +-0.0100076 0.130157 0.0146359 +-0.0114787 0.0934019 -0.0350786 +-0.012503 0.0856552 0.057236 +-0.00822614 0.0384527 0.0224267 +-0.0288615 0.0353967 0.01735 +-0.035527 0.115134 -0.015836 +-0.085501 0.0791776 0.00851156 +0.0457594 0.0890174 0.0101642 +-0.0775133 0.126 0.0528602 +-0.0598229 0.0911123 -0.0198104 +0.0349018 0.0698502 -0.0158378 +-0.00371064 0.0641813 -0.0350983 +-0.0232497 0.0336668 -0.0221987 +-0.0337721 0.121485 -0.00843946 +0.0123855 0.0603174 0.0511841 +-0.0454994 0.0804154 0.0426755 +0.00893209 0.124393 0.0330753 +-0.00403191 0.0987119 0.0511654 +-0.0481285 0.0573264 0.0358964 +-0.0166099 0.0407431 -0.0277394 +-0.0440479 0.169839 -0.00695693 +0.0412738 0.0872408 -0.00977382 +-0.0604546 0.071762 0.0392488 +0.0529297 0.0581906 0.02898 +-0.0521631 0.138551 0.0244099 +-0.0366167 0.15106 0.000396988 +0.0417493 0.0611977 -0.0033567 +-0.070996 0.0683351 -0.00354604 +-0.0356709 0.0621736 -0.0130441 +-0.0170991 0.0383232 0.0225362 +-0.0487856 0.0573034 0.0351442 +0.022412 0.0372285 0.0333476 +-0.0249633 0.0931679 0.047071 +0.018008 0.0349409 0.0291289 +-0.0796085 0.154132 0.0271276 +-0.0406237 0.0336557 -0.0200198 +0.0169165 0.123099 -0.00667688 +0.0210051 0.0618768 0.0478546 +-0.0427644 0.0812202 -0.0203472 +-0.0672645 0.175508 -0.0482636 +-0.0639988 0.121381 0.0479339 +-0.0622266 0.158391 -0.0366041 +-0.0261802 0.161053 -0.0142499 +0.0186318 0.0821747 0.0516425 +-0.00531922 0.0961442 -0.0318294 +0.00250665 0.0341604 -0.0175888 +0.0167477 0.0563074 0.0486799 +-0.0106808 0.0555967 -0.0338825 +0.00925016 0.0724976 -0.0328208 +0.0123553 0.0552818 -0.0294499 +0.0212602 0.0735043 -0.0271352 +-0.0845249 0.129883 0.0501389 +-0.0764965 0.154899 -0.0050946 +-0.0621627 0.163132 -0.0395927 +-0.0144955 0.0701698 0.0547379 +-0.0084766 0.0489124 0.0500846 +-0.000135712 0.0381648 -0.0142912 +-0.0503963 0.1183 0.0322871 +-0.0761087 0.083292 0.0375324 +-0.0736943 0.094184 0.0404336 +-0.0691138 0.0763852 0.0387083 +-0.0290376 0.038297 0.000217512 +-0.0348553 0.0342935 0.020715 +-0.0220444 0.0384934 -0.0170721 +-0.0114987 0.0471911 0.0478612 +0.0375264 0.0714822 -0.0127977 +-0.0282394 0.087664 0.0462444 +-0.0757136 0.107486 0.0366393 +-0.0610115 0.134041 -0.00711168 +-0.0797372 0.0717415 0.00518109 +-0.0658978 0.147832 -0.0279808 +-0.00653882 0.110902 -0.0214831 +0.0296673 0.0591775 0.0410177 +-0.0217889 0.0696447 0.0502694 +0.0234089 0.0418644 -0.00766906 +-0.0364935 0.0888766 0.0431732 +0.0306541 0.0520995 0.0370911 +-0.060098 0.0687043 0.0366734 +0.0187338 0.0862153 -0.0273821 +-0.0839692 0.148747 0.00414299 +-0.0354821 0.0561791 0.038801 +-0.0481382 0.0376145 0.0455768 +-0.0676248 0.117206 0.0513943 +-0.0281854 0.174153 -0.0178233 +0.0359289 0.0386712 0.0221633 +-0.0256851 0.0824232 0.052338 +-0.0145953 0.0363242 -0.0264317 +-0.0303622 0.055196 -0.0183802 +-0.00165167 0.0525486 -0.0310164 +-0.0132125 0.168083 -0.022507 +-0.00949762 0.078776 0.0580091 +-0.0361357 0.127268 0.00216052 +0.048778 0.0525636 0.0299433 +-0.0256526 0.0520956 -0.0269974 +-0.0603733 0.0335628 0.0071663 +-0.0426157 0.035917 -0.0271302 +-0.0144999 0.162187 -0.0103051 +-0.0384864 0.0548303 0.0394681 +-0.0831442 0.107611 0.0263767 +-0.00111933 0.100971 -0.0229536 +-0.0548742 0.10693 -0.0184788 +-0.0218282 0.127027 0.00889322 +-0.0174982 0.111166 -0.0197324 +-0.0652616 0.0722487 0.0377992 +-0.0576238 0.145329 0.032529 +-0.0184507 0.117417 -0.0143314 +-0.081937 0.128034 -0.00496911 +0.0195332 0.12729 0.0154357 +-0.0293484 0.0705264 -0.0315108 +-0.00525979 0.0409541 0.0483014 +0.0555717 0.0706847 0.00515518 +-0.048428 0.0531039 0.036022 +-0.00279611 0.0826469 -0.0371795 +-0.0287124 0.0382592 0.00213562 +-0.0574984 0.0959784 0.0439666 +-0.091525 0.133725 0.0172151 +-0.016864 0.128415 0.0107007 +-0.0636978 0.164648 -0.0286005 +-0.0829735 0.127181 0.0515051 +-0.0488321 0.0956358 -0.0221459 +0.0400863 0.0899903 -0.0108207 +-0.0619683 0.12268 0.0437909 +0.0605435 0.0650981 0.0101416 +-0.0665542 0.169448 -0.0580509 +-0.0891009 0.0902275 0.0204481 +-0.0825815 0.112383 0.0454387 +0.0104883 0.0936688 0.0521003 +0.0142529 0.0765304 -0.0302113 +0.0165164 0.126586 0.0257514 +-0.0283423 0.118847 0.030216 +0.0142697 0.034212 -0.000289798 +-0.0478723 0.105599 -0.0198923 +-0.0739256 0.098177 0.0391323 +-0.049674 0.141672 0.0123895 +-0.0475977 0.15214 0.0100027 +-0.0424553 0.128377 0.00131486 +0.0224361 0.0645464 0.046427 +-0.0885609 0.087538 0.0184581 +0.0147132 0.0897404 -0.0290836 +-0.054132 0.143048 0.0274248 +0.00550441 0.0575487 0.0534334 +-0.0772682 0.155563 -0.0118971 +-0.0677628 0.079419 -0.0170759 +-0.0464924 0.159333 0.00779524 +0.0261579 0.0768253 0.0466356 +-0.0552963 0.0473377 0.0123212 +-0.0298441 0.0972531 -0.0235715 +-0.00563259 0.0974901 -0.0292726 +-0.0261993 0.095287 -0.0250572 +-0.0716941 0.0684125 -0.00254325 +0.00127365 0.0682996 -0.0335875 +0.0575871 0.0523587 0.0191771 +-0.00134429 0.0361889 0.0150058 +-0.0715096 0.1041 0.0379435 +-0.0921823 0.117455 0.0412015 +-0.0384872 0.0337149 -0.0296051 +-0.0287365 0.0475545 0.0479663 +-0.0257999 0.0422849 0.0537317 +-0.0230963 0.124618 -0.00175855 +-0.0924128 0.11471 0.0173177 +-0.00492025 0.0362041 0.048453 +-0.0186551 0.184576 -0.0164922 +-0.0802253 0.0772741 0.0285988 +0.0463015 0.0806481 0.0121762 +-0.0304105 0.0861968 -0.0305753 +-0.0346214 0.0348242 0.0450553 +-0.0652339 0.0355811 0.0395373 +-0.0788426 0.0825957 -0.0096075 +-0.0127163 0.038878 -0.00996632 +-0.0624916 0.166267 -0.0445898 +-0.0746075 0.156859 -0.0239292 +-0.0773753 0.161145 -0.0179242 +-0.0883931 0.1336 0.00326444 +-0.0661323 0.162373 -0.0581655 +-0.0510928 0.12386 -0.00885828 +-0.0384971 0.0705176 0.0419076 +-0.0723264 0.176481 -0.0540086 +-0.0271072 0.11707 -0.0138992 +-0.0591735 0.11954 -0.0102201 +0.0222809 0.11936 0.0323905 +-0.0302503 0.17123 -0.00702025 +-0.0809167 0.107332 -0.00361395 +-0.0627188 0.046051 0.00845692 +-0.00639449 0.0347093 0.0459249 +-0.0877048 0.0873692 0.00346654 +-0.0410427 0.15478 -0.00878846 +-0.069373 0.0655009 0.0252048 +-0.0270649 0.0689032 -0.0335294 +0.00976243 0.126251 0.030462 +-0.002483 0.114172 0.0414823 +-0.0532846 0.152692 0.0160461 +-0.0190668 0.12797 0.0127969 +-0.0645056 0.0818668 0.0436415 +-0.0144784 0.0645279 0.0535035 +-0.0598098 0.08825 -0.0201729 +-0.0614957 0.105649 0.0403113 +-0.0278003 0.174225 -0.00868668 +-0.0525152 0.0439969 0.0448982 +-0.00749319 0.0503553 0.0512463 +-0.0786706 0.0853441 -0.0105854 +-0.0447185 0.0709976 -0.0171011 +-0.0635722 0.0753573 0.0407707 +-0.0124985 0.0603974 0.0541523 +0.0344134 0.0655586 -0.0158419 +0.0196499 0.124334 0.0268969 +-0.0627763 0.0614875 0.0230054 +0.0416143 0.102832 0.00217563 +-0.0552881 0.147721 0.0283494 +-0.0143864 0.174216 -0.0192271 +0.0144149 0.0343798 -0.00603429 +-0.0101902 0.177186 -0.0254506 +0.0284808 0.120403 0.0230436 +-0.0149461 0.0384961 0.0282276 +-0.0778803 0.0710945 0.0220932 +-0.042083 0.168351 -0.00985967 +-0.056782 0.043535 0.0167171 +0.0143083 0.122234 -0.00973054 +-0.0266054 0.0916781 -0.031606 +-0.00249278 0.121064 0.0370013 +-0.0199096 0.0382242 0.00758286 +-0.0135056 0.0842656 0.0572305 +-0.0720125 0.148777 -0.0357596 +0.0251623 0.118606 -0.00580398 +-0.0618325 0.0334319 -0.000212632 +-0.0855476 0.136296 0.00125685 +-0.032605 0.0408975 -0.030074 +0.0426847 0.0986805 0.020158 +-0.00736899 0.0366982 -0.0162506 +0.00250252 0.0590979 0.0551087 +-0.0674921 0.106947 0.0382762 +-0.0289938 0.16114 -0.00164375 +-0.0509402 0.0584984 0.0315938 +-0.0350845 0.124972 -0.00417237 +-0.0686385 0.0435335 0.00569826 +0.0441509 0.0959467 0.0161545 +0.0131317 0.10725 -0.0189993 +0.0358259 0.0928903 0.0378885 +-0.0154981 0.060248 0.0524646 +0.0276762 0.118315 -0.00350857 +-0.0683312 0.0833327 0.042485 +0.033847 0.106899 -0.00922375 +0.048317 0.0466984 0.0256626 +-0.0570131 0.128126 -0.00643112 +-0.0788672 0.111379 -0.00271807 +0.0115311 0.122019 -0.0114981 +0.0275945 0.106191 -0.0144774 +-0.0591334 0.0584459 0.00677121 +-0.0780191 0.149419 0.0383262 +-0.0559631 0.0464314 -0.00541258 +-0.0192836 0.0894928 -0.0371367 +-0.033131 0.166707 -0.0157536 +-0.0495065 0.107045 0.0392662 +-0.073496 0.147014 0.0424214 +-0.0404833 0.111172 0.036485 +0.0284708 0.0565571 -0.0188308 +0.0511996 0.0711486 0.0227866 +-0.0681397 0.0738079 0.0376094 +-0.0905331 0.135117 0.0212107 +-0.0733037 0.155556 0.00591793 +0.0500217 0.0446984 0.00624267 +-0.00949805 0.0815484 0.0580308 +0.0211117 0.124199 0.0260136 +-0.0611133 0.149657 0.036321 +-0.0635959 0.153475 0.00125628 +0.0344187 0.0994578 0.0359067 +-0.0734442 0.163812 -0.0389777 +-0.0852938 0.0858468 -0.00152115 +-0.0559297 0.13815 0.0313829 +-0.0870302 0.13217 0.00132034 +0.0204036 0.0474506 -0.0212729 +-0.076548 0.0954614 0.0376104 +-0.0855527 0.153551 0.0192298 +-0.0729125 0.0928513 0.0411123 +-0.0404958 0.0478428 0.0400733 +-0.0121854 0.0980546 -0.0279084 +-0.0464966 0.108432 0.0393098 +-0.0177034 0.0569685 -0.0340386 +-0.0908687 0.135097 0.0172074 +-0.0862565 0.0846802 0.0214754 +-0.0297808 0.0348722 0.0494682 +-0.0764922 0.155931 0.0149956 +-0.0618119 0.115344 0.0386033 +-0.0487475 0.0767781 -0.0183253 +-0.0907804 0.150219 0.0191245 +-0.0524535 0.0335708 0.023045 +-0.0384946 0.0577019 0.0400515 +-0.074873 0.151297 -0.0278802 +0.00653661 0.120619 -0.0139577 +-0.0483957 0.0389613 0.0452757 +-0.0779524 0.165292 -0.0269536 +-0.0536531 0.0334694 0.00682116 +-0.0561549 0.118392 0.0380484 +-0.0201622 0.0337128 -0.0216346 +-0.0794073 0.0772395 -0.00557672 +-0.0135947 0.071631 0.0548042 +-0.0382622 0.0335792 -0.0232089 +-0.0183288 0.115615 -0.0164437 +-0.0507515 0.0768088 -0.0186854 +-0.0176367 0.181628 -0.0186063 +0.001434 0.0980064 0.0516014 +0.00449684 0.131467 0.00706378 +-0.0839655 0.111209 0.0317911 +-0.0769529 0.128149 -0.00749249 +0.0471199 0.0728094 0.00697834 +0.0460243 0.0737836 0.00392327 +-0.00149572 0.0505531 0.0529099 +-0.0431936 0.0363833 0.0440447 +-0.054345 0.151005 0.0266856 +0.00514071 0.12498 -0.00862525 +-0.0729614 0.112778 0.0490933 +0.0152498 0.0348445 0.0304622 +-0.0111539 0.0386404 0.0270766 +-0.0431779 0.113636 -0.0162215 +-0.0754447 0.164601 -0.0189193 +-0.0685657 0.0346013 0.0116976 +0.036686 0.110763 0.0218417 +-0.058015 0.128168 -0.00680186 +-0.0805084 0.121673 0.0499202 +-0.0750852 0.174913 -0.0410877 +-0.0394764 0.081876 0.0433844 +-0.01065 0.0383969 0.0147482 +-0.0236788 0.0551648 -0.029679 +-0.0207747 0.0728486 -0.0387932 +0.00733312 0.0553775 -0.0306811 +-0.0497252 0.137033 0.00342407 +-0.0650198 0.154365 0.0307072 +0.00051428 0.0383337 0.0225142 +-0.0625323 0.1568 -0.0366082 +-0.00383551 0.130671 0.00539431 +0.0310854 0.118732 0.00690653 +-0.0699388 0.131128 -0.00863643 +-0.023911 0.123885 -0.00309916 +-0.0495628 0.0402984 0.0453668 +-0.0639487 0.168098 -0.0606895 +-0.0706835 0.155594 0.0053992 +-0.0686442 0.156175 0.0235781 +-0.0572185 0.0575347 0.00867749 +-0.0788442 0.154658 0.0259054 +-0.0721793 0.15961 -0.0389315 +-0.0545051 0.119806 0.0369329 +-0.0254081 0.182912 -0.0140439 +-0.0729406 0.0676849 0.0243239 +-0.0353285 0.0851433 -0.0237512 +-0.0478735 0.104217 -0.0205651 +-0.0558395 0.0589131 -0.0044052 +0.0448613 0.0903726 0.0191701 +0.0576189 0.0719687 0.0133447 +-0.0511061 0.129858 -0.00316533 +-0.00880359 0.113633 -0.0183799 +-0.0618121 0.09105 -0.0190303 +0.0313027 0.114101 -0.00492854 +-0.042497 0.0874008 0.0424798 +-0.0508473 0.0970748 -0.0222124 +-0.0654906 0.102864 0.0410679 +-0.00458022 0.0347745 -0.0240516 +0.0553581 0.0524903 0.0236336 +0.00626754 0.071137 -0.0337471 +-0.0135115 0.118298 0.0374588 +-0.0604029 0.0342918 0.0295439 +0.0406411 0.0462159 0.0309092 +-0.0278584 0.0385169 -0.0108032 +0.0266728 0.0713177 0.0438181 +0.0101968 0.116422 0.0377394 +0.0446411 0.0959729 0.00816419 +-0.0597937 0.0334415 0.000190139 +-0.0210999 0.0811322 0.0562803 +-0.0474593 0.0559824 0.0367034 +0.0340242 0.115407 0.0165889 +0.0416569 0.0832977 0.0303966 +0.0340782 0.100772 0.035418 +-0.0604756 0.0747304 0.0414998 +0.0147905 0.128825 0.0208219 +-0.00109958 0.115152 -0.0180337 +-0.0237291 0.0650733 0.0438813 +-0.0261862 0.17712 -0.0185723 +-0.0381348 0.0338853 -0.0178771 +-0.0323789 0.115075 -0.0157884 +0.0168479 0.0856792 -0.0288312 +0.0383914 0.0390949 0.00219016 +0.0192558 0.0721931 -0.0285132 +-0.0837506 0.0776431 0.00349824 +0.00549734 0.0937843 0.053579 +0.0381875 0.10978 0.0131678 +-0.0707773 0.0822058 -0.016572 +-0.0623556 0.0337533 -0.00969501 +-0.0657944 0.0348418 0.0348835 +0.029813 0.0605585 0.0412449 +-0.067274 0.142559 0.0431983 +-0.00437946 0.039206 0.0351678 +-0.091267 0.130919 0.00823808 +0.056791 0.0717301 0.0086079 +-0.088725 0.0942104 0.00844208 +-0.0527517 0.076824 -0.0190661 +-0.075716 0.071204 0.0277224 +-0.0296574 0.175524 -0.0164728 +0.0201633 0.0535759 0.04656 +0.00320624 0.036422 0.0229702 +0.0192058 0.0834241 -0.02764 +-0.0918136 0.129556 0.00925121 +0.0276788 0.117119 0.0298812 +-0.0251464 0.0824617 0.0532115 +-0.0728771 0.154609 0.0294193 +0.00904539 0.03456 0.0402645 +-0.0534903 0.102908 0.0413848 +0.00940878 0.0389595 -0.0232113 +-0.0859627 0.109007 0.009354 +-0.0484951 0.0903851 0.0445307 +0.00263147 0.0345612 0.0425417 +-0.0770465 0.161776 -0.0174081 +0.0134975 0.104436 0.0449316 +-0.0388918 0.123217 0.0263098 +-0.0364947 0.112507 0.0349484 +-0.0629025 0.103986 -0.017642 +-0.0678178 0.0923118 -0.0167386 +-0.0689104 0.122371 -0.00889897 +-0.0255023 0.125351 0.00317915 +-0.000607228 0.0419595 -0.0248688 +0.0460131 0.0820178 0.0051921 +-0.0223034 0.0381733 0.0107634 +-0.0861005 0.10314 0.0243088 +-0.0674874 0.0958602 0.0421807 +-0.0538319 0.138205 -0.00152003 +-0.0199623 0.0624791 0.0486773 +-0.0187732 0.0946942 0.0521396 +0.0415957 0.0859827 0.0303559 +-0.0405006 0.0562797 0.0399754 +-0.0396087 0.0392284 -0.0278507 +-0.0203015 0.124709 0.0241059 +-0.0667178 0.127063 0.0492263 +-0.0727925 0.0893223 -0.0156729 +0.0370031 0.104683 0.029035 +0.0279524 0.103456 0.0388242 +-0.0186121 0.038597 0.0291868 +-0.0776508 0.152845 -0.000892884 +-0.0334818 0.0987718 0.0435747 +0.0329891 0.092935 0.0408139 +0.0391956 0.0712805 0.0337887 +-0.0631802 0.0590341 0.0144269 +-0.0537547 0.143134 0.0264016 +-0.0301924 0.153974 -0.00357072 +-0.0448379 0.0970765 -0.0217835 +0.00941817 0.0340541 0.000745803 +-0.0432126 0.168352 -0.00885275 +0.0554664 0.0549257 0.00120797 +-0.0225677 0.0932815 0.0503229 +-0.0524989 0.157892 0.00946562 +0.0390425 0.0953983 0.0320312 +0.04296 0.0817702 -0.00479044 +0.00635062 0.0510121 -0.0292209 +-0.0543105 0.149562 0.0267072 +0.0221931 0.100779 0.0445472 +0.0329366 0.0724958 -0.0177814 +0.0248886 0.114037 0.0344109 +-0.0550232 0.14424 -0.00134547 +0.0163915 0.04625 -0.0239163 +0.0177475 0.036867 -0.0166881 +-0.0617992 0.0867358 -0.0192812 +-0.0893599 0.133717 0.0406984 +-0.039718 0.0695625 -0.0162922 +-0.0089161 0.0389771 0.0326408 +-0.0245194 0.0879123 0.052427 +-0.0855508 0.0883229 0.0270467 +-0.0419398 0.0356984 0.00899705 +-0.0715816 0.0791203 0.0388191 +-0.0444898 0.0690526 0.0411578 +-0.070025 0.173518 -0.0406121 +-0.0628508 0.0981808 -0.0176907 +-0.0750322 0.144421 -0.00688246 +-0.0499825 0.0544896 0.033589 +-0.065333 0.177827 -0.0606985 +-0.0316114 0.123192 0.0229888 +-0.0760927 0.0805105 0.0361956 +-0.0370838 0.0486029 -0.013278 +-0.0785283 0.124553 0.0522615 +-0.0708435 0.0731956 0.0357937 +-0.0403104 0.0336344 -0.0180813 +-0.0609885 0.0628534 0.0274979 +-0.0323315 0.0624018 -0.0174393 +-0.0368547 0.100015 -0.0221726 +-0.0783796 0.172116 -0.0450441 +-0.0633655 0.139636 -0.00706655 +0.00173262 0.13137 0.0174841 +-0.0105091 0.0646847 0.0553841 +0.0266795 0.122765 0.0152477 +-0.0360635 0.034528 0.0238485 +-0.0541027 0.122637 0.0375656 +-0.0544908 0.0344999 0.0341095 +0.0176998 0.103348 0.0450658 +-0.0685644 0.145677 -0.0229009 +-0.0356468 0.0577276 -0.0110125 +-0.0696054 0.110911 0.0424293 +-0.0584669 0.0577494 0.0129387 +-0.0398029 0.0870085 -0.0218621 +-0.00967624 0.104885 -0.0231041 +0.00669982 0.0383228 -0.00932299 +-0.0609169 0.109692 -0.0160089 +-0.0646221 0.122809 0.0487379 +0.0174813 0.0865744 0.0503122 +-0.0067878 0.0386876 0.00254936 +-0.0628956 0.119461 -0.00917238 +-0.0404347 0.128451 0.0123721 +0.0304082 0.04464 -0.00596234 +0.00950687 0.0785812 0.0553914 +-0.0185636 0.161122 -0.00592394 +-0.0407009 0.066639 -0.0151117 +-0.0638844 0.0392942 0.0408356 +0.00208256 0.0392848 0.0328214 +-0.0891635 0.0901786 0.00945748 +-0.0714603 0.0390724 0.00325296 +0.0396909 0.105526 0.00119339 +-0.092918 0.118828 0.0342968 +-0.0809093 0.0912865 0.0336272 +0.0106278 0.12033 -0.0136749 +-0.079254 0.149169 0.0379325 +-0.0700516 0.177913 -0.0570165 +-0.0584973 0.0875674 0.0446281 +0.0363875 0.037641 0.0177175 +-0.0266625 0.178341 -0.0176816 +-0.0257516 0.0380733 0.00834253 +-0.0514727 0.147804 0.0154008 +-0.0475605 0.047528 -0.00960427 +0.0464078 0.0756596 0.0165703 +-0.0659757 0.132606 -0.00839654 +-0.0795255 0.0953936 0.0349279 +-0.0512091 0.118302 0.0328718 +-0.00441308 0.12096 -0.0123131 +-0.0322918 0.0358193 0.0288559 +-0.0907178 0.142015 0.0241681 +-0.0555193 0.152453 0.0283051 +-0.044345 0.152142 0.00768226 +0.0241695 0.0809229 0.0490966 +-0.0528659 0.0999263 -0.0216782 +-0.0669331 0.125307 -0.0088761 +-0.0303567 0.119073 0.029499 +0.025846 0.107916 -0.0143268 +-0.0617056 0.1325 0.0388812 +-0.0185965 0.0364224 -0.0275796 +-0.0207908 0.0384714 -0.00378381 +-0.0617181 0.0598008 0.019418 +-0.0474373 0.120726 0.0283448 +0.0366967 0.103968 -0.00783268 +0.0303183 0.0797251 -0.0205953 +-0.0317074 0.0436869 0.0496355 +-0.0623412 0.156794 -0.0356173 +-0.0765015 0.121776 0.0527715 +-0.0184879 0.122208 0.0309285 +0.0230909 0.103393 0.0423419 +0.0609018 0.0651278 0.0131549 +0.00916248 0.0355108 0.0268151 +0.0313289 0.0554154 -0.0147753 +-0.0025035 0.108652 0.0433127 +0.0546992 0.0478618 0.0141962 +-0.0620154 0.0689049 0.0360997 +-0.0388626 0.102809 -0.0208006 +-0.0555708 0.142434 0.0301615 +-0.0688026 0.146519 -0.0258522 +0.0194777 0.0878818 0.0491927 +-0.0228793 0.110931 -0.0194728 +-0.0324125 0.0849398 -0.0275574 +-0.0438855 0.03574 0.0440005 +-0.0917791 0.117463 0.0421754 +-0.0690116 0.129833 0.0494501 +-0.0743362 0.15411 -0.0219057 +-0.0638117 0.0867138 -0.0190744 +-0.045027 0.168395 -0.00690925 +0.0270479 0.080882 0.0462053 +-0.0114995 0.164138 -0.0150087 +-0.0325011 0.058955 0.0382451 +-0.0606931 0.0692955 -0.0138548 +-0.0566913 0.0572662 0.0137312 +-0.00649633 0.0488329 0.050181 +0.0223101 0.120965 0.030775 +-0.0805231 0.0993639 0.0329828 +-0.0644795 0.0959078 0.0429389 +-0.075154 0.17882 -0.048244 +0.00607351 0.0358936 0.0456569 +-0.035492 0.0648204 0.0410644 +-0.0576415 0.155076 0.0216791 +-0.0762945 0.152787 -0.0118902 +-0.00761327 0.0434711 -0.0261832 +-0.0814624 0.13163 0.0517276 +-0.0743185 0.067053 0.0192856 +-0.0842709 0.104792 0.000381661 +-0.0374161 0.12162 -0.0106267 +0.0282004 0.082909 -0.0218038 +-0.0538885 0.131144 0.0343613 +0.0268226 0.046511 -0.0137061 +-0.0500801 0.151654 -0.00422617 +-0.0843259 0.153929 0.0166903 +-0.0840259 0.124392 0.0498267 +-0.0906893 0.11752 0.0439252 +-0.0636773 0.162484 -0.0225185 +0.0362915 0.0534119 -0.00658438 +-0.0733102 0.0700068 0.0292571 +0.0432125 0.0858656 0.0273897 +0.0392299 0.108358 0.0101653 +-0.0357967 0.0383351 -0.00483874 +-0.0645865 0.0628123 -0.00359236 +-0.0838768 0.108986 0.0253683 +-0.0538875 0.139905 -0.00121756 +0.0463511 0.0764838 0.0150474 +0.0180384 0.119266 -0.0105437 +-0.0812898 0.0735018 0.0165324 +-0.0437426 0.076832 -0.018848 +-0.0489995 0.126854 0.0308899 +0.00913686 0.107291 -0.0199257 +0.0413467 0.0718054 -0.00779903 +-0.0407607 0.126285 -0.00553285 +-0.0564807 0.113914 0.0357075 +-0.0477527 0.149202 0.00972608 +-0.0737025 0.144377 -0.00986626 +-0.0237128 0.058121 -0.0313582 +-0.0884618 0.142054 0.0361609 +-0.00450592 0.0661541 0.056364 +-0.0448888 0.108464 -0.0189265 +-0.0531399 0.13506 -0.0028018 +0.0308728 0.114122 0.0296728 +-0.0120858 0.0382274 0.0182274 +0.045976 0.0820209 0.01617 +-0.0474955 0.0344671 0.0303636 +0.0116443 0.129846 0.0210966 +0.0429126 0.0775596 -0.00475805 +-0.0639176 0.122377 -0.00881224 +-0.0219078 0.0581082 0.0451165 +-0.0185957 0.118181 -0.0131167 +-0.0381658 0.165183 -0.0131497 +-0.0445045 0.0438483 0.042919 +-0.0464974 0.074738 0.042075 +-0.0819901 0.133862 -0.00285904 +-0.0633534 0.0445301 0.031682 +-0.0314905 0.0960436 0.0448087 +-0.0575997 0.0574661 0.0133658 +-0.0303698 0.154176 -0.00601441 +0.0133009 0.0666579 -0.0304883 +0.0108109 0.0819726 0.0543646 +-0.068057 0.178404 -0.0514469 +-0.0806807 0.0760273 -0.00253172 +0.0394926 0.0541437 0.0318453 +-0.00450121 0.0675415 0.056336 +-0.019491 0.0387907 0.0342254 +0.0147818 0.0631153 0.0511723 +-0.0291704 0.172664 -0.0174314 +0.0262968 0.070421 -0.0238548 +-0.0421212 0.159153 -0.0103433 +-0.0367588 0.172073 -0.0125043 +-0.0196292 0.117165 -0.0140584 +-0.042525 0.149193 0.00498605 +-0.0175612 0.186044 -0.0184493 +0.0221884 0.0973608 -0.0216774 +-0.0197019 0.0568866 -0.0331333 +-0.045504 0.0832988 0.0437099 +-0.0212803 0.0387041 -0.0133833 +-0.0770943 0.154164 -0.0118975 +-0.0484907 0.0833394 0.0445457 +-0.0238036 0.0798229 -0.0381557 +-0.0372926 0.0394674 -0.0291193 +-0.00273038 0.0683735 -0.0347173 +-0.0659296 0.14253 0.0416232 +0.0452769 0.0467388 0.0283148 +-0.0898014 0.11587 0.00528404 +0.0263587 0.0577877 0.0432503 +-0.0486968 0.067904 -0.0141574 +-0.0893812 0.113196 0.0217139 +-0.0841444 0.110242 0.00330414 +-0.0631329 0.17411 -0.0535854 +0.0348962 0.0387881 -4.46661e-05 +0.0431163 0.0888383 0.0261767 +-0.0444887 0.166716 0.00379579 +-0.0235591 0.0953745 -0.0271663 +0.0455985 0.0918132 0.00816712 +-0.0917403 0.12555 0.0418871 +-0.0890224 0.136404 0.0092064 +-0.0364114 0.175555 -0.00996795 +-0.0345906 0.0727451 -0.0199624 +0.0429111 0.040977 0.0196984 +0.00148534 0.0385845 0.0464325 +-0.0585016 0.0973698 0.0431908 +-0.0484982 0.0819185 0.0441136 +0.00821862 0.116409 0.0384227 +0.0456517 0.0413562 0.00923967 +-0.0769167 0.0873975 0.0382106 +-0.061867 0.101123 -0.0184855 +0.0202898 0.124676 0.0257091 +-0.0101432 0.130124 0.0117041 +-0.0138894 0.183111 -0.0237643 +-0.0707552 0.0792696 -0.0152786 +0.0465284 0.0761532 0.0136843 +-0.0888827 0.140531 0.0122011 +-0.0659605 0.110851 0.0377691 +-0.0638988 0.109582 -0.0144399 +0.0445103 0.0541956 0.0324876 +-0.0545376 0.0335773 0.0172858 +0.0156666 0.0726831 0.0525311 +-0.0224929 0.0448955 0.0530527 +0.00250097 0.0897336 0.0558646 +-0.0427601 0.128938 0.0129983 +-0.0749067 0.100837 0.0372176 +0.0100662 0.0792875 0.0550109 +0.031592 0.0738009 -0.0197207 +-0.0295595 0.111353 -0.0178807 +-0.0265381 0.155425 -0.00506198 +0.0110253 0.0793101 0.0546505 +0.0455932 0.0834007 0.019176 +-0.00963497 0.0389293 -0.00939263 +-0.0740278 0.157006 -0.00316778 +0.026879 0.121193 0.00250168 +-0.0840153 0.1376 0.000355984 +0.00144074 0.0344391 0.0153316 +-0.062494 0.0746373 0.0407954 +-0.0714338 0.100882 0.0394174 +-0.0511894 0.0558131 0.0154354 +0.0142545 0.0887312 0.0523539 +-0.0217647 0.0699552 -0.0378816 +0.042865 0.0958458 -0.000810373 +-0.0225278 0.18149 -0.0200273 +-0.0516224 0.0545433 -0.00792825 +-0.0894416 0.0943032 0.0194238 +-0.0450754 0.033637 -0.0171737 +-0.0189216 0.122512 -0.00768052 +-0.0278603 0.101566 -0.0234492 +0.0273313 0.094554 -0.020088 +-0.0568394 0.145329 0.0319256 +0.0299199 0.11779 -0.000781916 +0.0345811 0.0368089 0.0162808 +0.0130795 0.0927597 -0.0282037 +0.0239979 0.0768543 0.0488301 +-0.0560741 0.15232 0.0295584 +-0.0713082 0.165213 -0.0459899 +0.0214853 0.0948038 0.0473574 +-0.0124976 0.0472007 0.0479814 +0.0101747 0.096292 -0.0259611 +-0.0424942 0.0916602 0.0426604 +-0.000674255 0.10997 -0.0204918 +-0.0731036 0.0721584 0.0326952 +-0.0863191 0.0806349 0.0164939 +-0.0174959 0.0984963 0.0451272 +-0.0516134 0.0334804 0.007228 +0.0210892 0.0521114 0.044364 +-0.0767842 0.155599 0.0119802 +-0.0737106 0.0699801 -0.00251138 +0.0277999 0.0727164 0.0436883 +0.0605691 0.0637105 0.0171755 +-0.0720961 0.156364 0.000513559 +-0.0818934 0.154016 0.0102104 +-0.0184806 0.169783 -0.0146335 +-0.073631 0.173473 -0.03767 +-0.0385075 0.0888951 0.0435504 +-0.056184 0.0374619 -0.0105738 +-0.0164629 0.0616668 0.0525376 +-0.0214965 0.0525299 0.044709 +-0.0324599 0.0722556 -0.0254696 +-0.0781568 0.167257 -0.0305864 +-0.0633087 0.117017 0.0436447 +-0.084428 0.138004 0.0455627 +0.0287818 0.0480764 -0.0117305 +-0.0706135 0.175903 -0.0451833 +-0.0430742 0.0335089 -0.0222312 +0.0203664 0.0506236 -0.0244327 +-0.0807714 0.153393 0.00628177 +-0.0784635 0.138605 0.0489019 +-0.0754126 0.068174 0.019879 +-0.0105025 0.0773598 0.0576687 +-0.0399608 0.0418525 -0.0253044 +-0.0880973 0.137764 0.00820327 +-0.0862825 0.106347 0.0193454 +-0.0114851 0.123708 0.0326887 +-0.00700917 0.0348727 0.042072 +-0.0760973 0.0851761 -0.013541 +0.0421377 0.0912242 0.0276147 +0.0298218 0.119509 0.00500708 +-0.0550443 0.148674 -0.00204704 +-0.0107558 0.0386486 -0.0149703 +0.00849857 0.118254 0.0373924 +0.0373294 0.0848074 0.0364738 +0.0506886 0.0511228 0.0274131 +-0.0538924 0.106961 -0.0186698 +-0.0735555 0.105459 0.0371635 +-0.0532563 0.0343869 0.0309731 +-0.015483 0.0938222 0.0546278 +0.0454513 0.052559 0.0321398 +0.032601 0.100801 0.0367685 +-0.0688527 0.142579 0.0444582 +-0.0908832 0.150197 0.0161314 +-0.0811312 0.129963 0.0524484 +0.00846909 0.111301 0.0401143 +-0.0622744 0.0344133 0.0342699 +-0.0343155 0.0340522 0.0192395 +-0.0869096 0.111745 0.0223587 +0.0507656 0.0446256 0.0152142 +-0.0767707 0.151403 -0.00690852 +-0.00150011 0.103045 0.0440564 +-0.051019 0.147224 -0.00224048 +-0.025918 0.122982 0.0235755 +-0.0527617 0.0461943 0.0216742 +-0.0178184 0.0841429 -0.0390768 +-0.0345091 0.0461323 0.043875 +-0.0623881 0.149093 -0.0125752 +-0.0809179 0.0761444 0.0241516 +-0.00945917 0.175708 -0.0257473 +-0.0334992 0.0704401 0.0410454 +-0.0886682 0.141939 0.0121971 +-0.0120612 0.0383071 0.0127308 +-0.0853843 0.0980412 -0.000554198 +-0.0325205 0.0646875 0.0393461 +0.0503466 0.0615208 -0.00363326 +0.00449283 0.103624 -0.0217086 +-0.0698084 0.085099 -0.0171261 +0.0438316 0.0832073 0.0263179 +-0.0486418 0.0576652 -0.0108452 +0.0123248 0.0609207 -0.0293142 +0.0429772 0.0902337 -0.00478341 +-0.0619824 0.166238 -0.0535924 +0.0140441 0.0406072 0.0445814 +0.00249558 0.116934 0.0396534 +0.018473 0.0989902 0.0468145 +-0.0169827 0.0385945 -0.00497776 +0.0309161 0.0955754 0.0413413 +-0.0735982 0.110276 0.0438156 +-0.0903629 0.11521 0.0252935 +-0.0566835 0.124286 -0.00724626 +-0.0620082 0.134045 -0.00734981 +0.00521493 0.0852237 -0.0334342 +-0.0903999 0.124268 0.0448512 +0.0114719 0.1182 0.0365719 +0.0344326 0.0414166 -0.00330414 +-0.0403754 0.124077 -0.00919956 +0.0484547 0.0702338 0.00359645 +-0.0285016 0.113902 0.0349068 +-0.0526285 0.0596472 0.0276152 +-0.0325191 0.174119 -0.0148634 +-0.0204902 0.108532 0.041306 +0.010276 0.076623 0.0552854 +0.0133781 0.0537725 -0.0285433 +0.0402901 0.0698645 0.0318359 +0.0401742 0.0671588 0.0316675 +-0.0866887 0.120341 0.0484058 +0.0245253 0.0875975 0.0479106 +-0.050498 0.0890212 0.0452499 +-0.0598028 0.0853759 -0.0202992 +0.0354525 0.106753 -0.0069512 +0.0111874 0.0630268 0.0529412 +-0.0416003 0.12872 0.00602836 +0.0443487 0.0533892 -0.00643258 +-0.0229394 0.0985982 0.0448104 +-0.0678177 0.0894605 -0.0172539 +-0.0826703 0.0762102 0.00250991 +-0.0152189 0.172708 -0.0246075 +-0.0748382 0.0978559 -0.0133191 +0.0284295 0.0955564 0.0430179 +-0.04802 0.136068 0.0153684 +-0.0475691 0.0489734 -0.00936479 +-0.0813576 0.0734641 0.0155425 +-0.07594 0.14997 -0.0178724 +-0.0649871 0.152354 -0.0372683 +-0.0229947 0.122243 0.0275866 +-0.0108296 0.0855471 -0.0384547 +-0.0447583 0.0336472 -0.00973579 +-0.041838 0.0942787 -0.0228038 +-0.038857 0.101401 -0.0214118 +0.00839351 0.0342854 -0.0184828 +0.0436422 0.0748109 -0.00280304 +0.00409443 0.101828 -0.021842 +-0.0194474 0.054231 0.0477027 +0.0410346 0.0752467 0.03121 +0.0588047 0.0677091 0.00614939 +0.021598 0.10091 -0.0208238 +-0.0696323 0.156261 0.0232204 +-0.086966 0.0846591 0.00747852 +-0.0660124 0.176151 -0.0507054 +0.0425261 0.101486 0.00616657 +0.0305131 0.0418181 0.0291512 +-0.0554982 0.113948 0.0354054 +-0.0763852 0.108818 0.0389983 +-0.0785959 0.152697 0.00118419 +0.0184567 0.127794 0.00934393 +0.0105917 0.043143 0.0448676 +-0.0719858 0.0346482 0.00381826 +-0.0341243 0.0335931 -0.0280196 +-0.0564439 0.115317 0.036137 +-0.0928438 0.126838 0.0112559 +-0.0661071 0.164936 -0.0219713 +-0.0665376 0.142546 0.0425061 +-0.0167827 0.0388081 0.0329676 +-0.0614351 0.156032 0.020314 +0.0388231 0.106965 0.0221712 +0.0247856 0.0449735 0.0390757 +-0.0324984 0.0788891 0.0412743 +-0.068331 0.155325 0.0280685 +0.0267262 0.114038 0.0335472 +-0.0888783 0.111909 0.0103621 +-0.0772308 0.0920788 -0.012603 +0.0457689 0.0431024 0.0219801 +0.0474981 0.0737139 0.0139878 +-0.061487 0.0746791 0.0411579 +-0.0861526 0.148758 0.00721004 +0.0341879 0.0913684 -0.0166968 +-0.0200728 0.100101 -0.0240875 +-0.0286491 0.125506 0.0152069 +-0.0268606 0.0378639 0.0137313 +-0.0352216 0.0346633 0.0327857 +-0.0444613 0.12936 0.0182577 +0.0373383 0.0740435 0.0363986 +0.00751373 0.0869673 0.0561316 +-0.0888328 0.0942898 0.0224093 +0.00897858 0.127106 -0.00499333 +0.0363106 0.0994119 0.033375 +-0.0448194 0.0913346 -0.0221278 +0.000368669 0.0466323 -0.0286891 +-0.0606782 0.0639978 0.0300882 +-0.0735086 0.078138 -0.0125733 +-0.0358361 0.11045 -0.0189078 +0.0300578 0.0632721 0.0416198 +0.0173543 0.0349384 0.0362289 +-0.0104845 0.10863 0.0429333 +-0.0265155 0.115287 0.0336658 +0.0257868 0.0967214 -0.0203669 +0.0255714 0.119263 0.0291067 +-0.0404457 0.119913 -0.0128413 +-0.0596429 0.0622343 0.0265494 +-0.0522074 0.122732 -0.00965468 +0.00419216 0.0340885 -0.0190827 +-0.0614977 0.108395 0.0385563 +-0.0154933 0.0392591 0.0382209 +0.0568425 0.0592039 0.0011688 +0.033494 0.0619462 0.0395497 +0.0378948 0.0699732 0.0354084 +-0.0643687 0.155314 0.00767719 +-0.017163 0.124753 -0.00408239 +-0.0892062 0.128127 0.00426293 +-0.058497 0.101559 0.0426268 +-0.00170163 0.130406 0.0219933 +0.0258358 0.123453 0.0120756 +0.0200283 0.102079 0.0449293 +-0.0034976 0.0965806 0.0535793 +-0.0805988 0.090913 -0.0086158 +0.0307316 0.091606 0.0428217 +0.0293141 0.095566 0.0425395 +0.011103 0.0779768 0.0547588 +-0.0912353 0.14886 0.0211316 +0.0484812 0.0443317 0.021366 +-0.00581925 0.0868408 -0.0369183 +-0.0454559 0.0902978 0.0432333 +-0.0346794 0.119765 -0.0106544 +-0.00349323 0.113677 -0.0184484 +-0.0434907 0.101526 0.0420227 +-0.0385061 0.0986889 0.0419871 +-0.0599081 0.112539 -0.0152225 +-0.0242322 0.124794 -0.000701199 +0.0400813 0.104202 0.0221684 +-0.0828121 0.0830332 0.030132 +0.0159137 0.128436 0.00413586 +-0.0645186 0.0597262 0.00993302 +-0.0324512 0.0353306 -0.0309147 +-0.0484861 0.137101 0.00939484 +-0.0304745 0.0860755 0.0433189 +0.0188415 0.121733 -0.00718615 +-0.0643746 0.145275 -0.0151376 +0.0208541 0.11855 -0.00976629 +0.037465 0.0434297 0.0291248 +0.0517879 0.0461689 0.0072143 +-0.0837871 0.0829476 0.0282971 +-0.0917215 0.129668 0.0302355 +-0.0261628 0.0674202 -0.0335157 +-0.0631555 0.156855 -0.014582 +0.043463 0.077603 -0.00378219 +-0.0602407 0.058232 0.0121428 +-0.0458636 0.102811 -0.0213024 +-0.038884 0.108506 -0.019659 +-0.0705258 0.142815 0.0451961 +-0.0781039 0.070111 0.0193756 +-0.0758474 0.109198 0.0406016 +-0.0318501 0.0986369 -0.02282 +-0.038215 0.0471675 -0.018189 +-0.0134374 0.0516868 0.0502089 +0.0151412 0.0754034 0.0535569 +-0.043493 0.105703 0.0408668 +-0.0822959 0.0773319 0.0228488 +0.0452717 0.0903987 0.0151606 +0.0159567 0.120613 0.0338084 +-0.0623049 0.142641 -0.00633906 +0.000467241 0.105823 0.0432483 +-0.0177409 0.0671746 -0.0379913 +-0.0891252 0.0889064 0.0184472 +-0.0678748 0.125664 0.0510849 +-0.0337468 0.127104 0.0118588 +-0.0518684 0.102767 -0.0207881 +0.00221584 0.0364728 0.00081639 +-0.0296253 0.0759773 0.0411397 +0.00226876 0.0682822 -0.0333186 +-0.0542457 0.0574384 0.01981 +-0.0659991 0.136994 -0.00799651 +-0.00357593 0.127459 -0.0052112 +0.0103564 0.0538895 -0.0297771 +0.0272815 0.0718243 -0.0235929 +-0.0123281 0.0344052 -0.018857 +0.0416155 0.0404142 0.0199255 +-0.0106878 0.0598858 -0.0348312 +-0.0305006 0.116618 0.0322439 +0.0427332 0.084569 0.0284544 +-0.0712328 0.151001 -0.0437008 +0.0423623 0.0944394 0.0261744 +-0.000687654 0.0583509 -0.0327859 +-0.0779789 0.136876 -0.0051311 +-0.0657518 0.0780369 -0.0174491 +-0.0789069 0.155396 0.0141592 +-0.0701046 0.156748 -0.048906 +0.0281353 0.0593598 -0.0207767 +-0.066567 0.147777 -0.0287654 +-0.0167976 0.0383562 0.00264497 +-0.0708835 0.160996 -0.0449446 +0.0230988 0.111339 0.037076 +-0.0237033 0.091176 -0.0348871 +-0.0477118 0.073839 -0.0167643 +-0.0540526 0.0334248 -0.00589512 +-0.0535445 0.0389126 -0.0111352 +0.00251277 0.0675114 0.055914 +-0.0324736 0.0532348 0.0372028 +-0.0416459 0.056333 -0.0114534 +-0.0460476 0.0363198 0.0451262 +-0.0215027 0.163915 -0.00845889 +-0.0530817 0.139518 0.0266624 +-0.00971954 0.0656257 -0.0358484 +-0.0175293 0.038199 0.0153321 +-0.0388176 0.128112 0.00411022 +-0.0579212 0.120852 -0.00959233 +-0.0215953 0.03793 -0.0285032 +0.00849245 0.0473031 0.0488481 +-0.045123 0.157633 -0.00869072 +-0.0845016 0.0911794 -0.00456302 +-0.0130394 0.0384127 0.00153612 +-0.0054932 0.111405 0.0422861 +-0.00614297 0.0385457 0.0227705 +-0.0588822 0.108299 -0.017343 +-0.0647452 0.0766241 -0.0174472 +0.0333079 0.0768384 0.0411622 +-0.0345058 0.0704863 0.0415356 +-0.00385823 0.0988046 -0.0266644 +-0.0940576 0.125561 0.0242759 +-0.0406606 0.156554 0.00601794 +0.0458479 0.0724092 0.00333418 +-0.0536298 0.0345249 0.0429297 +0.0422446 0.0760949 -0.00580476 +0.0305908 0.106106 0.0356297 +-0.0744956 0.13026 0.0524093 +-0.060795 0.0853339 -0.0197774 +-0.0659276 0.123847 -0.00897257 +-0.0587952 0.0334058 0.000425547 +-0.0355002 0.111108 0.0360398 +0.0106562 0.0589179 0.0524466 +0.0220342 0.108737 -0.0152173 +0.0414017 0.104253 0.00516521 +-0.0487319 0.132909 0.0254731 +-0.073147 0.0648981 0.0178865 +-0.0655672 0.149686 0.0379738 +-0.0866855 0.14466 0.00818677 +-0.0690156 0.163795 -0.0519803 +0.0474899 0.0664975 0.0274045 +-0.0693729 0.175081 -0.056043 +-0.0811978 0.140383 -0.00182247 +-0.0609117 0.111106 -0.0154828 +-0.027448 0.125478 0.0053817 +-0.0601827 0.0460596 0.0101722 +-0.0116048 0.0377441 -0.0259987 +-0.0623577 0.147557 -0.00658086 +-0.0635933 0.167459 -0.0411888 +-0.0420303 0.153306 -0.00761985 +0.0045298 0.102977 0.0440255 +-0.0571296 0.124118 0.0402058 +-0.010491 0.0487865 0.0492904 +-0.00149595 0.0911539 0.0561263 +-0.0644925 0.0903995 0.0447493 +-0.0621097 0.156825 -0.0345957 +-0.0626845 0.0455625 -0.000282658 +-0.054778 0.0344845 0.0375447 +-0.0704967 0.156763 -0.0469167 +-0.0501084 0.0429877 0.0445637 +-0.074873 0.120838 -0.00772479 +0.0354301 0.112103 0.00127449 +-0.0218649 0.103029 -0.0235712 +-0.09096 0.148814 0.0141536 +-0.0645626 0.0459512 0.00669838 +0.0314584 0.111437 -0.00809824 +-0.022876 0.0362943 -0.0189473 +-0.0428901 0.0435976 -0.0193145 +-0.0746823 0.0663852 0.00625465 +-0.0476209 0.0547841 -0.0103184 +-0.0197585 0.171251 -0.0147167 +-0.0705035 0.0901829 0.0418541 +0.0494272 0.0628335 -0.00296645 +0.0266028 0.105322 -0.0155495 +0.0202061 0.126966 0.0100746 +0.013717 0.127103 0.0275992 +0.00956448 0.122301 -0.0117968 +-0.0846111 0.084433 -0.00253466 +-0.0889485 0.13651 0.0272017 +-0.000398103 0.0385343 0.0221462 +0.0428913 0.0402636 0.016655 +-0.0531156 0.156084 -0.00339606 +-0.0586999 0.141645 -0.00399496 +0.0175889 0.0549386 0.0481228 +0.0242735 0.0576737 -0.0247443 +-0.0435028 0.0548283 0.0392794 +-0.0509876 0.0343016 0.0280109 +-0.0371778 0.128019 0.00618657 +-0.067159 0.152634 -0.0476967 +-0.0524481 0.115128 -0.0157418 +-0.00787248 0.0390234 0.0328097 +-0.0368889 0.109941 -0.0191779 +0.0473251 0.0497353 0.0295737 +-0.0155015 0.10721 0.0425067 +-0.0607907 0.0609394 -0.0015406 +0.0214998 0.0358071 0.0181694 +-0.0152794 0.114388 -0.017154 +-0.0618553 0.153745 -0.0235803 +-0.00541506 0.100313 0.0476265 +0.0438051 0.0987511 0.0101628 +-0.0274965 0.0973724 0.0435854 +0.0448746 0.0601039 -0.00424277 +0.031559 0.0460718 0.0312637 +-0.0615188 0.0448284 0.0115308 +-0.0397761 0.115072 -0.015742 +-0.0918654 0.131039 0.0272344 +-0.0646035 0.156332 -0.00986181 +0.0383993 0.0413521 -0.00190432 +-0.026722 0.0386646 -0.0162927 +-0.0736148 0.0995067 0.0387799 +0.006499 0.119638 0.036869 +0.0405971 0.101404 0.0241737 +-0.0944613 0.121476 0.0212834 +-0.0105851 0.0337493 -0.0235512 +-0.0799934 0.136838 -0.00393652 +0.0529009 0.0462649 0.0122044 +-0.0539028 0.11125 -0.0176614 +0.00874316 0.130156 0.0228898 +0.0260633 0.114349 -0.00924148 +0.0113837 0.0449118 -0.0251572 +-0.0461015 0.150679 0.0086365 +0.00236523 0.128663 -0.00254763 +-0.0158845 0.0910066 -0.0366604 +0.0456174 0.0890068 0.0121612 +-0.0634393 0.144588 -0.0113838 +0.0175304 0.120577 0.0333463 +-0.0256229 0.0463679 -0.0270847 +-0.0606463 0.0343588 0.0329219 +-0.0622926 0.149098 -0.0115749 +-0.0266239 0.0463597 -0.0270834 +0.0142234 0.0864184 -0.0301272 +-0.0242795 0.0383175 -0.000652306 +-0.0599506 0.0340585 0.0228145 +-0.031899 0.0595768 -0.0154053 +0.0335035 0.0686838 0.0396083 +-0.00350655 0.105885 0.0441283 +-0.00849376 0.0576353 0.0542501 +-0.0596861 0.0693591 -0.0143393 +-0.0246408 0.0382637 -0.00251941 +0.0142384 0.0723592 -0.0308856 +0.0360996 0.112682 0.0101589 +0.00650478 0.0989998 0.0481043 +-0.0406764 0.0344836 0.0353061 +0.0208126 0.114503 -0.0133998 +-0.0664042 0.0385079 0.0306689 +-0.00851871 0.0471234 0.047663 +-0.0607941 0.143953 0.0367655 +-0.0469959 0.06153 0.0374819 +-0.0566078 0.0521283 0.00668717 +-0.0117953 0.0827249 -0.0387188 +-0.0651684 0.0346977 0.0334093 +0.0334291 0.0781951 0.0413414 +-0.00319773 0.0384234 0.00715593 +-0.0255204 0.115294 0.0339151 +-0.070852 0.100833 -0.0142398 +-0.0647775 0.0824087 -0.0188685 +0.0351918 0.0673501 0.0385292 +-0.0201767 0.0929008 -0.0346271 +-0.0292631 0.0351386 0.0510616 +-0.0487306 0.0345868 0.0335095 +-0.0909618 0.13376 0.0242167 +-0.0399614 0.0343338 -0.0130933 +0.0409886 0.0643095 0.0292691 +-0.0656099 0.0655077 0.0295065 +0.0113576 0.0509388 -0.0282254 +-0.0831709 0.101988 -0.00359129 +-0.0345055 0.113874 0.0339275 +0.0308648 0.0460986 0.0320207 +-0.023595 0.180085 -0.0196757 +0.056025 0.0493916 0.0151904 +-0.0805557 0.0977534 -0.00758611 +0.0084218 0.0346373 0.0418695 +-0.0774116 0.159696 -0.0249188 +0.0602932 0.0636878 0.00814035 +-0.0302474 0.125253 0.00290344 +-0.0741812 0.074527 0.0339368 +-0.0636646 0.15831 -0.045603 +-0.0332687 0.15271 -0.00392746 +0.0267163 0.0450608 -0.00869474 +0.0351226 0.0921155 -0.0154837 +-0.0278275 0.158128 -8.54892e-06 +-0.0771542 0.152814 -0.00588992 +0.00726262 0.0682112 -0.0321527 +-0.0590296 0.0424919 -0.00727859 +-0.0604873 0.0987275 0.0428004 +-0.0916073 0.128323 0.0352449 +0.0474407 0.0661575 -0.000283122 +0.03984 0.106962 0.00517391 +-0.0609078 0.155801 0.00889681 +-0.00849418 0.114178 0.0409373 +0.00894357 0.0819404 0.0551438 +-0.0767684 0.0756527 -0.0076025 +-0.0670227 0.0607355 0.00842954 +-0.0186908 0.0510113 -0.0307584 +-0.0706351 0.0733936 -0.01149 +-0.026674 0.0382695 0.00254021 +0.0585127 0.0649229 0.00410871 +0.0241246 0.0605253 0.0453245 +0.0172623 0.073643 -0.0290458 +-0.0564969 0.111123 0.0367634 +0.0543584 0.0674371 0.0258007 +-0.0511173 0.128308 0.0330935 +-0.075231 0.151315 -0.0248804 +-0.0492462 0.132382 0.000177088 +-0.0694944 0.11756 0.0525327 +-0.0721635 0.113702 0.0503204 +-0.0647819 0.0809531 -0.0185144 +0.00336694 0.130688 0.00234495 +0.0243671 0.0699418 0.0457082 +-0.000607851 0.0448652 -0.0263872 +-0.0506782 0.141637 0.0173818 +-0.0618089 0.0881716 -0.0191682 +-0.0886021 0.087516 0.0174642 +0.011433 0.034701 0.0261941 +-0.0405676 0.171048 0.000226569 +0.0111139 0.110132 -0.0191278 +0.0136046 0.121889 0.0339065 +-0.0107442 0.0742291 -0.0379783 +0.0438711 0.0959127 0.00218342 +-0.0299153 0.155169 -0.001314 +-0.0469317 0.0369443 -0.0162782 +-0.0887949 0.142048 0.03516 +-0.0459209 0.0346888 0.0375199 +-0.0022788 0.119988 -0.0131916 +0.00522675 0.0768423 -0.034472 +-0.0277078 0.0725313 -0.0348614 +-0.0679296 0.125304 -0.00887173 +-0.0528849 0.101359 -0.0212107 +0.0356786 0.076967 -0.014745 +-0.0567974 0.0854612 -0.0213212 +0.00206285 0.121236 -0.012553 +-0.0659186 0.159142 -0.0118027 +-0.0857862 0.0939971 -0.00056361 +-0.0318889 0.124978 0.0199371 +0.0110379 0.0712445 0.0546046 +-0.043282 0.147753 0.00390043 +0.0142589 0.0737441 -0.0304465 +-0.037534 0.168232 0.00175297 +0.0421124 0.0467315 0.0307997 +-0.0195242 0.0336044 -0.023287 +-0.0581683 0.0606896 -0.00283185 +-0.0892904 0.149814 0.024685 +-0.0328117 0.0335416 -0.0258378 +-0.0534094 0.150878 0.0234093 +0.0224588 0.120521 -0.00588511 +0.0297724 0.0549903 0.0393628 +-0.0689711 0.136995 -0.00816407 +0.0327608 0.11383 -0.00261931 +-0.0138771 0.164812 -0.0186885 +0.00401259 0.0341521 0.00329327 +-0.0776837 0.154812 0.0263001 +-0.0617213 0.0781294 -0.0185002 +0.0405341 0.105626 0.00416435 +-0.033143 0.157873 -0.0118064 +-0.0244152 0.0723023 0.0471532 +0.000983167 0.0373381 0.00163376 +-0.0227666 0.126779 0.0143916 +-0.0151278 0.128803 0.00988702 +0.000514565 0.0717586 0.0570729 +0.0202169 0.0591906 0.0484605 +-0.0591321 0.0334434 -0.0069378 +-0.0338188 0.0345795 0.040191 +-0.000499113 0.11695 0.0400287 +-0.0463678 0.13079 0.00400616 +0.0171482 0.0349466 -0.009792 +-0.064905 0.0607648 0.0196679 +-0.0624362 0.150651 -0.0105777 +-0.0354607 0.154847 -0.00919588 +-0.0211471 0.0377711 0.0538261 +-0.0691709 0.147293 -0.0286567 +-0.0360974 0.127648 0.0124754 +-0.0776508 0.151441 -0.00388634 +0.0365033 0.0512847 0.031619 +0.0193623 0.0370952 -0.00967348 +0.0153438 0.0522442 -0.0271619 +-0.0174947 0.0815257 0.0576296 +-0.0629203 0.122369 -0.00879811 +0.0168951 0.128644 0.0116162 +0.0397845 0.0699028 0.0328672 +0.00847616 0.0963576 0.0505263 +-0.0532837 0.0454354 0.0434394 +-0.0154326 0.0388218 -0.0141873 +0.058968 0.0691324 0.00813536 +-0.0155327 0.116851 0.0372458 +-0.0261049 0.0632214 -0.0314499 +-0.0580383 0.122682 0.0406302 +-0.0153478 0.0972963 0.0501876 +-0.0480268 0.116533 -0.0152488 +-0.0440293 0.0378087 0.0445145 +0.0122229 0.0822322 -0.030844 +-0.00477881 0.0390844 -0.0104359 +-0.0106511 0.0496684 -0.0311061 +-0.0197213 0.123533 0.0272668 +-0.000499702 0.119705 0.0381547 +-0.0497662 0.165331 0.00186024 +0.0034577 0.0989815 0.0493164 +-0.0623164 0.153672 -0.0306063 +-0.0676947 0.134039 0.046063 +-0.0536041 0.0588172 -0.00776341 +-0.0774688 0.144183 0.0446652 +-0.054123 0.064196 0.0330627 +-0.0515128 0.0452783 0.043411 +-0.0216106 0.0422609 -0.0287762 +-0.0721201 0.0655088 0.0210948 +-0.0214414 0.0682091 0.0499624 +0.0246691 0.103387 0.0411037 +-0.0584632 0.0480819 0.000648377 +-0.0193941 0.113623 -0.0183331 +-0.0642327 0.0431706 0.0367918 +-0.0673041 0.044774 0.00468689 +0.00124491 0.0726488 -0.0351082 +0.0293752 0.0646271 0.0424024 +0.0334188 0.0399387 -0.00226403 +-0.0648162 0.092445 -0.0185198 +-0.0588392 0.0371017 0.0463605 +-0.0464973 0.113852 0.0344899 +-0.0253214 0.158135 -0.00165461 +0.0565751 0.0564133 0.00219071 +-0.0628971 0.106793 -0.0162163 +-0.0672273 0.135447 0.0449702 +-0.0874127 0.118983 0.0477049 +0.0264339 0.0415833 -0.00518191 +-0.0649816 0.114139 0.0429675 +-0.087689 0.0861087 0.0184696 +-0.0759388 0.151364 -0.016882 +-0.00938485 0.0992897 -0.0251913 +-0.0906583 0.12815 0.00627512 +0.0420818 0.101483 0.016165 +-0.0366993 0.124957 -0.00615077 +0.0344101 0.0633165 0.0391255 +0.0312208 0.0578184 0.0397344 +-0.0245116 0.0679611 0.0445844 +-0.0494967 0.0932039 0.0445022 +-0.0762012 0.149986 -0.0138757 +-0.0469178 0.060141 0.0374462 +-0.0939221 0.128285 0.0202478 +-0.0488103 0.0898531 -0.0217755 +-0.013542 0.129298 0.0162538 +0.0557083 0.0616421 0.000366134 +0.0340796 0.0848941 0.0405554 +0.0303873 0.0525299 -0.0147333 +0.0173214 0.127268 0.00181685 +-0.0623602 0.164675 -0.0475927 +-0.0633366 0.0613129 -0.000511486 +-0.0663574 0.0370366 0.0151548 +-0.0567588 0.053509 0.00466959 +-0.082746 0.0802849 -0.00049163 +-0.00173892 0.0697883 -0.0347021 +-0.0444708 0.0888726 0.0431834 +-0.0676524 0.0720092 -0.0120172 +0.0578262 0.0552267 0.0219335 +-0.0418656 0.104235 -0.0206965 +0.0300166 0.0708304 -0.0207823 +-0.0533336 0.128311 0.0351755 +-0.0275965 0.0836272 0.048557 +-0.0894883 0.139285 0.0301857 +0.0461177 0.0511569 0.0313544 +0.0505588 0.0711508 0.00463977 +-0.0653079 0.154958 0.0291369 +-0.0185448 0.0460852 0.0515079 +-0.0843685 0.105877 0.0253348 +-0.0875722 0.151019 0.0254764 +-0.0711952 0.0805577 0.0397762 +0.0367726 0.100261 -0.0101361 +0.0280869 0.0432543 0.0332457 +0.000487446 0.041412 0.0465786 +-0.0266388 0.038336 -0.00299264 +-0.00342216 0.0391144 -0.00832149 +-0.0611289 0.0344725 0.039662 +-0.0517362 0.0738243 -0.0167692 +-0.0804236 0.104574 -0.00559216 +-0.0319013 0.0525534 -0.0124561 +-0.0616634 0.0612417 -0.00198952 +-0.0659473 0.151954 -0.0393992 +0.0336372 0.112962 -0.00230707 +-0.0699642 0.138462 -0.00776795 +0.00139789 0.0405023 -0.0245871 +-0.059508 0.0890036 0.0450344 +-0.0550222 0.141298 -0.00203484 +-0.0720681 0.0805547 0.0392361 +0.0126182 0.0846922 0.0534757 +0.0593665 0.0622129 0.00511321 +-0.0924363 0.118744 0.0263157 +-0.0166806 0.0510876 -0.0315182 +0.0119118 0.0342207 -0.00263798 +-0.0646486 0.156189 0.0162701 +-0.022872 0.104437 -0.0231879 +-0.0799264 0.129511 -0.00520384 +0.0394641 0.063132 0.032359 +-0.0114897 0.0951792 0.0542781 +-0.0474976 0.111158 0.0371638 +-0.0683525 0.155277 0.00186884 +-0.000867993 0.104495 -0.0223762 +-0.0462686 0.12794 -0.00315273 +-0.0306198 0.11135 -0.017885 +-0.0420238 0.0464078 -0.0143471 +-0.0115071 0.0801438 0.0578104 +-0.00552471 0.130134 0.0220582 +0.0553699 0.0651884 0.000788532 +0.000971023 0.0370418 -0.0149189 +-0.0695999 0.162389 -0.0499627 +-0.0593254 0.0447426 0.0431798 +-0.0163529 0.16023 -0.0109161 +-0.0074892 0.108662 0.0435531 +-1.59767e-05 0.130672 0.0211571 +-0.0414957 0.0762285 0.0430404 +-0.00181283 0.0854279 -0.036655 +-0.0573252 0.157131 0.000943525 +-0.0582662 0.0597287 0.0219286 +-0.0158083 0.0827626 -0.0393641 +-0.0636754 0.156752 -0.0416076 +-0.0399677 0.0461402 -0.0203282 +-0.025156 0.16972 -0.0189618 +-0.0527747 0.0826622 -0.0215537 +0.0251411 0.10209 0.0417928 +-0.043632 0.0462886 -0.0112814 +-0.0620154 0.164635 -0.0555847 +0.0104502 0.0343141 -0.0181143 +-0.0391566 0.162183 -0.0124024 +-0.0483573 0.129635 0.0282843 +0.00538744 0.0448871 -0.0255741 +-0.0054947 0.0533903 0.0535249 +-0.00732851 0.0942973 -0.033961 +-0.0241934 0.0388427 0.0350005 +-0.0181599 0.0393223 0.0394029 +0.0346554 0.10439 -0.0105413 +-0.0459466 0.0345121 -0.0200076 +-0.0409396 0.168342 -0.0108401 +0.0103005 0.0624571 -0.0307796 +-0.0681652 0.158429 -0.00684039 +-0.00243741 0.0385239 0.0217416 +0.060795 0.0623425 0.0151668 +-0.0927217 0.128206 0.0112525 +-0.0740576 0.168348 -0.0248615 +-0.0345432 0.114978 -0.015669 +-0.0591204 0.0334451 -0.00148219 +-0.0599836 0.043576 0.0142711 +-0.0568374 0.0898133 -0.021762 +-0.0727774 0.16869 -0.0244081 +-0.00877695 0.169647 -0.023748 +-0.0733702 0.171289 -0.0318245 +-0.0533609 0.033209 0.01963 +-0.012858 0.0386932 -0.00424091 +0.0446984 0.0804984 -0.000780025 +-0.0604981 0.105663 0.0403307 +-0.0437727 0.082626 -0.0206932 +-0.0251898 0.0388783 0.0347661 +-0.00550353 0.0561986 0.0539335 +-0.0649478 0.164181 -0.0229827 +-0.0145881 0.165422 -0.0124907 +-0.0415058 0.0577139 0.0401965 +0.0385298 0.0631329 -0.0097765 +-0.0643222 0.166215 -0.0313693 +-0.0769851 0.0690914 0.0187275 +-0.013127 0.120519 -0.0116431 +-0.0624813 0.156041 0.0199412 +-0.0475747 0.0390527 -0.0120963 +0.0154157 0.0433241 -0.0236953 +-0.00124361 0.130098 0.0236021 +-0.00149237 0.118319 0.0391398 +-0.0454304 0.130382 0.00608349 +0.0094151 0.117047 -0.0161127 +-0.0370213 0.0344129 0.0343812 +-0.0266349 0.121939 -0.00696588 +-0.0514954 0.0833657 0.0447762 +-0.0661547 0.1622 -0.0162285 +0.0354074 0.0446129 -0.00524037 +-0.0839561 0.144602 0.00415973 +-0.0114934 0.104435 0.0434539 +-0.0811445 0.153633 0.00754624 +0.0416181 0.0637615 0.0286411 +0.0336503 0.0646637 0.0398008 +0.00904657 0.129598 0.024451 +-0.075728 0.151337 -0.0208826 +-0.047856 0.132056 0.00259359 +-0.0635915 0.15525 -0.0109401 +-0.025528 0.0383109 0.0298198 +-0.0664625 0.145705 -0.0206681 +-0.0675712 0.139722 0.0445155 +-0.0630199 0.134039 -0.00765574 +-0.0859393 0.101835 0.0256124 +-0.0530219 0.147196 -0.00187885 +-0.00620458 0.038993 0.0313778 +0.0378425 0.10835 0.0231802 +-0.0877357 0.0860979 0.0084778 +0.0064767 0.115498 0.0396093 +-0.027105 0.162286 -0.015104 +-0.0801261 0.144525 -0.00183492 +-0.0858754 0.148602 0.0326009 +-0.060661 0.155018 0.0264156 +-0.0104794 0.0575747 0.0533869 +-0.0433 0.0336903 -0.024306 +-0.0668671 0.0980924 -0.0163226 +-0.0682097 0.171724 -0.0385204 +0.049328 0.0615911 -0.00371844 +-0.059497 0.0861573 0.0445009 +-0.0875265 0.087486 0.0224433 +-0.0660555 0.0600044 0.0111686 +-0.0578054 0.142438 0.0322424 +0.00123277 0.0783068 -0.0354173 +-0.0916354 0.132395 0.0252256 +-0.0117599 0.104933 -0.0231377 +-0.0346346 0.0548282 -0.01038 +-0.0222409 0.0383275 -0.000251248 +0.00824961 0.0725345 -0.0333305 +0.0313861 0.0740897 0.0418701 +0.0164934 0.100411 0.0468922 +-0.0719809 0.156292 0.0165776 +-0.0221908 0.175658 -0.0213821 +-0.00588737 0.108814 -0.0225516 +0.0336337 0.112484 -0.0031866 +-0.0393568 0.123991 -0.00912015 +-0.00841793 0.0387705 -0.00155909 +-0.0431088 0.0347881 0.0415217 +-0.0281377 0.171231 -0.00924208 +0.0317135 0.0955631 0.0407455 +0.0166807 0.124611 -0.00431903 +-0.0923991 0.132355 0.0192227 +0.0141807 0.0900592 0.0522594 +-0.0553478 0.054711 -0.00338754 +-0.0742948 0.147166 -0.0148659 +-0.0210322 0.0623911 0.0469253 +-0.0808524 0.0720445 0.00954101 +0.0185494 0.0379494 0.0423026 +-0.0841291 0.0817203 0.00248105 +0.0309459 0.0700081 0.0411857 +-0.0394974 0.0705046 0.0418138 +-0.0762918 0.169333 -0.0300921 +-0.0537237 0.0477139 0.0256667 +0.0448999 0.0861351 0.000186186 +-0.0313094 0.0384531 -0.00773361 +-0.0305219 0.0474445 0.0454913 +-0.0809514 0.0882189 -0.0076035 +0.0546575 0.0706779 0.0225865 +-0.0414965 0.0986758 0.0418571 +-0.0484435 0.0628471 0.0360579 +0.0594927 0.066407 0.020186 +-0.0627925 0.0838575 -0.0191674 +-0.0214511 0.184864 -0.013038 +-0.0935392 0.129637 0.0202382 +-0.0799546 0.100457 -0.00758867 +-0.0552688 0.126926 0.0376418 +0.0378584 0.0645918 0.0353403 +-0.0361046 0.0383233 -0.0122787 +-0.049226 0.14015 0.0123965 +-0.0164997 0.0938314 0.054193 +-0.0746007 0.0914774 0.0400082 +-0.0791205 0.0709783 0.00599758 +0.0253641 0.0347082 0.00521179 +-0.0594957 0.0918578 0.0453847 +0.0136708 0.0820393 0.0532361 +-0.0193315 0.182966 -0.0230088 +-0.000544127 0.127196 -0.00494172 +-0.030476 0.0664272 -0.0264734 +-0.0734051 0.0674458 0.022683 +-0.0136727 0.0337044 -0.0241151 +0.0214461 0.036336 0.0158614 +0.0583506 0.0662943 0.00413175 +-0.0639059 0.118033 -0.00945272 +-0.0454908 0.0987379 0.0426533 +-0.0318359 0.0344957 0.0406866 +-0.0657843 0.167288 -0.0290298 +0.0181885 0.053509 0.04724 +-0.0610973 0.169393 -0.058599 +-0.0167464 0.108538 -0.0209441 +-0.0826184 0.0802381 0.0286257 +-0.0731223 0.134062 0.0505767 +-0.0135829 0.03702 0.0510108 +0.0354665 0.0768048 0.0390018 +0.0499493 0.051169 0.0281186 +-0.00858939 0.0389741 -0.00922854 +-0.0482262 0.166987 -0.00394405 +0.000506781 0.0605965 0.0560209 +-0.0571262 0.0333733 -0.00101401 +-0.0527176 0.0611373 0.029069 +-0.0225206 0.0919822 0.0517607 +-0.0727584 0.158224 -0.0349231 +0.0221671 0.123584 -0.0006811 +-0.0697019 0.142554 0.0449861 +-0.0890361 0.146068 0.0101777 +0.0300144 0.0389449 0.0261617 +0.0457459 0.0834058 0.0171675 +-0.0828165 0.0790258 0.0245191 +-0.0216847 0.180158 -0.0138785 +-0.0260473 0.11708 -0.0139183 +-0.0263102 0.123352 0.021955 +-0.026277 0.0795343 0.0501986 +-0.04015 0.0473434 -0.014266 +-0.0911404 0.129685 0.035237 +-0.0376719 0.114063 -0.0167039 +-0.0138183 0.0855391 -0.0388001 +-0.0574963 0.111121 0.0367615 +-0.0459611 0.149058 -0.0040494 +-0.06359 0.153594 -0.035633 +0.0294595 0.116659 -0.00368699 +-0.0465112 0.0491437 0.0387964 +-0.0476612 0.135572 0.0133995 +-0.0122712 0.0385653 -0.000297189 +0.0438612 0.0930832 -0.000804157 +-0.00849948 0.0911907 0.056727 +-0.0554517 0.0444829 -0.0071986 +0.0112279 0.0808839 -0.0317275 +-0.0364414 0.0346808 0.041293 +-0.0768829 0.108524 0.037335 +-0.0212115 0.177139 -0.0220322 +-0.0498078 0.0898419 -0.0216876 +0.00832653 0.130915 0.00561741 +-0.0834391 0.153089 0.025871 +-0.0797915 0.0746069 -0.00248195 +0.0162926 0.0348913 0.030635 +-0.0720312 0.141354 -0.00781974 +-0.0640613 0.0606361 0.00380817 +-0.0616877 0.169385 -0.0545934 +-0.0180884 0.184586 -0.0174536 +-0.083714 0.0804887 0.0254979 +-0.0378459 0.0971527 -0.0224307 +-0.048763 0.120209 -0.0131018 +0.0257432 0.120365 -0.00224906 +0.0155215 0.0490175 0.0450471 +-0.0516538 0.162634 -0.00285466 +-0.00249513 0.0774404 0.0585569 +-0.0676995 0.0606833 0.0155957 +-0.0530523 0.0333885 -0.00566149 +0.00632209 0.0596079 -0.030662 +-0.075813 0.0681115 0.0180714 +0.0416741 0.0642804 0.0284921 +-0.04591 0.132311 0.0103278 +-0.0266282 0.0932643 0.045173 +-0.0409763 0.128303 0.0136557 +-0.0295455 0.0745738 0.040676 +-0.0236123 0.0408478 -0.0290846 +-0.062999 0.13114 -0.0082084 +-0.0282657 0.0357556 -0.0195136 +0.0383138 0.109087 0.0181423 +-0.0225227 0.0903335 -0.0360154 +-0.00581332 0.0840953 -0.0378871 +-0.0560848 0.155673 0.012015 +-0.0384894 0.0436513 0.0409963 +0.0250684 0.0912521 -0.0226015 +0.0327251 0.116757 0.0189485 +-0.00849679 0.081545 0.0579523 +0.00549376 0.116905 0.0389072 +-0.0684642 0.035536 0.0130279 +-0.0274333 0.0808284 0.0484505 +-0.0892338 0.0888828 0.0134587 +0.040773 0.0858024 -0.0107788 +-0.018787 0.0654231 0.0516453 +-0.057411 0.0334884 -0.00846165 +-0.0515646 0.0516091 -0.00736491 +-0.0341101 0.171131 -0.0149349 +0.0224908 0.0672402 0.0465227 +0.00748827 0.048894 0.0505047 +-0.0891497 0.139122 0.0375101 +-0.0324992 0.033739 0.00907408 +-0.00547868 0.112944 -0.019663 +-0.00364368 0.038223 0.0108877 +-0.00888297 0.175714 -0.027834 +-0.0616908 0.156845 -0.0305919 +-0.0454927 0.0747515 0.0421648 +-0.0628753 0.0333858 -0.000385113 +0.0200484 0.122759 0.029923 +-0.0624127 0.150637 -0.0175763 +-0.0772056 0.0717509 -0.00044869 +-0.070203 0.179305 -0.0507979 +-0.021805 0.0812974 -0.0389167 +0.00417139 0.0894659 -0.0333631 +-0.00354618 0.035584 0.0475305 +-0.0881296 0.100997 0.0213597 +-0.0344927 0.0803488 0.0420944 +-0.0142597 0.180104 -0.0279187 +-0.0772012 0.161073 -0.0279344 +0.0267764 0.0373043 0.025139 +-0.0764984 0.127442 0.0532158 +0.0305998 0.0741029 0.0424942 +-0.0429656 0.115061 -0.0157138 +-0.0569157 0.131148 0.0370227 +-0.087746 0.09368 0.0248353 +-0.0282695 0.0620042 -0.0284458 +-0.026741 0.0877745 0.0490115 +-0.0141005 0.0382966 0.0123251 +-0.040335 0.124745 0.0227896 +-0.0176742 0.109826 -0.020315 +0.0100598 0.0371564 0.0309489 +0.0330284 0.116174 0.0204895 +0.0194916 0.111179 0.0380087 +-0.0468321 0.144886 0.00412892 +0.00432629 0.0568097 -0.0310178 +0.0172994 0.0665713 -0.0290602 +-0.0776345 0.165887 -0.0268309 +-0.0754949 0.117024 0.0522099 +0.0129986 0.124708 -0.00640366 +-0.0551543 0.0561755 0.00960447 +0.0258384 0.0659192 0.0443144 +-0.0892157 0.0956404 0.0184193 +-0.062275 0.152174 -0.0245791 +-0.0712276 0.159591 -0.0429327 +-0.0468614 0.102797 -0.0212675 +-0.0888687 0.0942285 0.0104297 +0.00705483 0.113673 0.0402142 +-0.0846088 0.10754 0.00337493 +-0.0567766 0.0840541 -0.0213935 +0.0291103 0.0713139 0.0420683 +-0.0416245 0.172695 -0.00500345 +0.0467254 0.0741323 0.0166809 +0.0182946 0.123502 0.0292701 +-0.032545 0.0821172 -0.0295502 +0.0405942 0.0847142 0.0324234 +-0.063874 0.0967575 -0.0177619 +-0.0200635 0.0385408 -0.00554998 +-0.0617567 0.139364 -0.00656769 +-0.0151158 0.0388065 -0.0122456 +0.0258671 0.111418 0.0358303 +-0.0323169 0.126646 0.013854 +0.0128496 0.0432822 0.0446281 +0.0410596 0.104249 0.0151631 +0.0413114 0.0661977 -0.00477755 +-0.0524783 0.0442541 0.0446515 +-0.00534534 0.0423344 0.0481709 +-0.0154906 0.0587868 0.0517337 +-0.0768702 0.122267 -0.00710647 +0.018318 0.0607989 -0.0274966 +-0.0414689 0.101488 0.0411988 +-0.03948 0.109789 0.0371385 +-0.071689 0.171513 -0.0326505 +-0.0562412 0.0479891 0.0306662 +0.0198041 0.103539 -0.0196351 +-0.06089 0.146655 -0.00344226 +-0.0625194 0.150622 -0.0185752 +0.0162788 0.0421207 0.0443108 +-0.0926435 0.13098 0.0162303 +-0.0102744 0.0864318 -0.0379838 +0.0437196 0.0846401 -0.00379782 +-0.0575438 0.119835 0.0395668 +-0.0312754 0.118165 0.0306394 +-0.0384168 0.120732 -0.0116964 +-0.0133826 0.1039 0.0435877 +0.0232434 0.0804535 -0.0255191 +-0.0102585 0.0379591 0.0497745 +-0.0427371 0.0753968 -0.0185868 +0.0223381 0.0606785 -0.0258752 +-0.0124978 0.122374 0.0339942 +0.00450508 0.0688823 0.055725 +0.0471561 0.0614873 -0.00363177 +-0.0496676 0.0649029 -0.0122308 +-0.0360083 0.0485228 -0.0153235 +0.0255211 0.116701 0.0317994 +0.000516492 0.101662 0.0444028 +0.00434751 0.121547 -0.0129175 +-0.0374873 0.0959326 0.0432114 +0.0252705 0.0346338 0.0163557 +-0.0124579 0.0545987 0.0514221 +-0.0889602 0.131049 0.0432066 +-0.0372423 0.152141 0.00211029 +-0.0892956 0.0942653 0.013432 +-0.0518302 0.0344778 0.0329457 +-0.0187757 0.0756949 -0.0390019 +-0.0719603 0.0681626 0.0276375 +-0.0847959 0.147297 0.0357863 +-0.0683786 0.160357 -0.00982452 +-0.0326605 0.0863757 -0.0255732 +0.0456643 0.0848033 0.01617 +0.0560044 0.0608622 0.0263962 +0.0242808 0.034582 0.00510919 +-0.0255484 0.0414464 0.0539815 +0.0584482 0.0538047 0.0101717 +-0.0507323 0.0738128 -0.0166527 +-0.0145896 0.101524 -0.0235873 +0.00379349 0.0393361 0.0313217 +-0.060041 0.155524 0.0222725 +0.0330115 0.107346 -0.00970764 +-0.0356538 0.120932 -0.00987931 +0.0252334 0.114772 -0.00969056 +-0.0560291 0.051292 0.00869383 +0.039494 0.0484532 0.0321483 +0.0260206 0.095556 0.0448127 +-0.0144952 0.092498 0.0556089 +-0.0745303 0.0887706 0.0400356 +-0.0427423 0.0768225 -0.0188988 +-0.0254944 0.0348465 0.0469921 +0.0115755 0.104003 -0.020168 +0.0177398 0.128218 0.01192 +-0.0537709 0.0460941 0.0150722 +-0.0260174 0.0351047 -0.0290083 +0.0146321 0.0460649 0.043757 +-0.0725348 0.149777 -0.0387435 +-0.067793 0.0851703 -0.0179862 +-0.0345051 0.0491976 0.0390013 +-0.0575351 0.0727864 0.0407731 +-0.0902562 0.135043 0.0112131 +-0.0341019 0.0350895 0.0466468 +0.0354707 0.0862229 0.039086 +-0.0635111 0.15292 -0.0340962 +0.000752728 0.131478 0.01712 +0.0415962 0.101461 0.0191676 +0.0199544 0.117871 -0.0110405 +0.0125 0.0341066 0.00131673 +-0.0104877 0.105844 0.0434252 +0.000625364 0.130997 0.01994 +-0.00947876 0.108641 0.0432746 +0.0427329 0.0747306 -0.00479562 +0.0175177 0.121695 0.0318921 +-0.0724967 0.123205 0.0535111 +-0.0217998 0.0826894 -0.0387559 +-0.0474379 0.0384277 -0.0132876 +-0.0453217 0.127718 -0.00291517 +0.00149278 0.115548 0.0405079 +-0.00268673 0.0598311 -0.0338297 +-0.0282466 0.0410133 0.0533665 +-0.084979 0.0912122 -0.0035611 +-0.00188052 0.0377314 0.00623396 +-0.0719012 0.152408 -0.0434229 +0.0297667 0.100164 -0.016062 +-0.0446553 0.0615526 0.0394256 +-0.0935168 0.125484 0.0132627 +0.00892319 0.0349264 0.0435129 +-0.0906919 0.142015 0.0231619 +-0.0362968 0.126232 -0.00232089 +-0.0581074 0.0494572 0.00366497 +0.0584743 0.0538121 0.0171841 +0.0453685 0.090397 0.014157 +0.0451698 0.0903876 0.0161628 +-0.0648504 0.099576 -0.0170426 +-0.0336174 0.0385515 -0.0101375 +-0.0818746 0.144748 0.0414084 +-0.0921915 0.114676 0.0133297 +-0.0735116 0.140055 0.0477493 +-0.0625074 0.0334277 0.00145514 +0.0301634 0.0659717 0.0417895 +-0.0313891 0.0338671 0.0146006 +-0.0524964 0.0876231 0.0453765 +-0.0763164 0.155546 0.0238171 +0.0473804 0.0650284 -0.00116263 +-0.0203751 0.165368 -0.0103486 +-0.074953 0.131092 -0.00759533 +-0.0200723 0.0361973 0.0530852 +-0.0623326 0.164687 -0.0445921 +-0.0432796 0.127517 -0.00276726 +-0.0794589 0.155317 0.0154304 +0.0484584 0.0430177 0.0142199 +0.0516914 0.0635003 0.0289607 +0.0124992 0.111251 0.0392691 +-0.00916969 0.168123 -0.0207225 +-0.0624966 0.0987153 0.0424769 +0.0403564 0.0602895 0.0300713 +0.000529964 0.0745913 0.0578265 +-0.00430704 0.037991 -0.0149598 +-0.0458025 0.0336244 -0.00441422 +0.0244543 0.124393 0.0172632 +-0.0566778 0.0485827 0.00942267 +0.0118497 0.0354401 0.0310392 +-0.0460906 0.156154 -0.00788178 +0.0200436 0.125383 0.0241901 +-0.0110606 0.128229 0.000136123 +-0.0680155 0.149781 -0.0384715 +-0.0340535 0.158097 0.00328753 +-0.063246 0.0709836 0.037551 +0.00837353 0.0479453 -0.0272176 +-0.0704921 0.0944433 0.0420805 +0.0271048 0.0835778 0.0462962 +-0.0814225 0.0858535 0.0328878 +-0.0311244 0.126183 0.00987945 +0.00420219 0.0866314 -0.0335404 +-0.0160918 0.0359549 0.0514785 +-0.0387772 0.152061 -0.00669739 +-0.0394877 0.095879 0.0424449 +-0.0556734 0.0645255 -0.00818248 +-0.0721186 0.0637108 0.0173676 +-0.00866441 0.055565 -0.0335626 +0.034399 0.0476191 -0.006288 +0.0184894 0.03497 -0.0076507 +-0.0208903 0.0376209 0.05361 +-0.0721389 0.12842 0.0519775 +-0.0135421 0.093873 0.0547462 +-0.0114977 0.038716 -0.00213082 +-0.0444942 0.0761733 0.0424299 +-0.0162113 0.0387427 -0.00681752 +-0.0632795 0.162306 -0.0238202 +-0.0678999 0.11945 -0.00879052 +-0.0624555 0.163099 -0.0465902 +-0.0197676 0.0376635 -0.0177276 +-0.00982564 0.0339746 -0.0198462 +-0.0334993 0.115969 -0.0147052 +0.0241258 0.0914782 -0.0228484 +0.0393714 0.104176 0.025187 +-0.0877422 0.114422 0.00426669 +0.0169437 0.0346991 -0.00395051 +-0.0659364 0.0364202 0.0386491 +0.0236414 0.0741206 0.0482553 +0.0360643 0.108191 -0.003826 +-0.0498837 0.0340852 -0.0133065 +0.0109544 0.0459934 0.0454216 +0.0232194 0.06778 -0.026032 +0.0407755 0.0675587 -0.00776366 +0.0164452 0.127885 0.0214354 +0.0306214 0.073711 -0.0207585 +0.0310665 0.0768618 0.0431993 +-0.0326395 0.0549161 -0.0112709 +-0.0264479 0.0721314 0.0435447 +0.0185916 0.116689 0.0359263 +0.0210399 0.118016 0.0341276 +-0.0910253 0.115214 0.0323598 +0.000420695 0.0340758 -0.0179207 +0.011475 0.115421 0.0379758 +0.0558934 0.0728505 0.0127047 +-0.0168011 0.0813465 -0.0393174 +-0.0884013 0.103686 0.0143755 +0.00687166 0.100046 -0.0219438 +0.00938176 0.0463536 -0.0257255 +-0.0376115 0.11722 -0.0140038 +-0.0454999 0.102932 0.0417867 +-0.0638509 0.0597328 0.00826283 +-0.0626761 0.0691812 -0.0125769 +-0.0654105 0.124234 0.0493774 +-0.0585036 0.0790577 0.0434985 +0.025387 0.103408 0.0403826 +0.0322433 0.0896617 -0.0189276 +-0.0875821 0.0909427 0.0247332 +-0.0855607 0.103501 0.00239284 +-0.0436971 0.0419128 0.0432773 +-0.0946145 0.122826 0.0212791 +0.0282404 0.0858422 -0.0216043 +0.00524711 0.0726037 -0.0343433 +0.00348793 0.114165 0.0408953 +-0.0345349 0.108408 0.0380462 +-0.053757 0.152473 0.0202331 +-0.0684765 0.061182 0.0096252 +-0.0653795 0.17033 -0.0418012 +0.0335191 0.0398635 0.0260657 +0.00150101 0.0647986 0.0566673 +-0.0386685 0.0621637 -0.0127302 +0.0514753 0.0731205 0.0184716 +-0.0475108 0.159316 0.00812402 +-0.0418554 0.101378 -0.0213767 +0.059111 0.0580409 0.00617531 +-0.0235023 0.105779 0.0421282 +-0.0564932 0.0861648 0.0446121 +0.0463019 0.07925 0.0141776 +-0.037115 0.160706 -0.0129903 +-0.0454732 0.0917007 0.0431865 +-0.08762 0.143285 0.0101199 +0.0294825 0.0348729 0.0114843 +0.0351631 0.0941496 -0.0136388 +0.0169892 0.122251 -0.00777586 +-0.0286955 0.175698 -0.00647862 +-0.0586479 0.0629437 -0.00583333 +-0.0799097 0.0706493 0.0132254 +0.0440384 0.0959414 0.0171588 +0.00466861 0.0365644 -0.00250089 +-0.0368263 0.0929138 -0.0236695 +-0.0126068 0.0392015 -0.0264338 +0.014095 0.041997 0.0446638 +0.00757449 0.035092 0.025056 +-0.0564565 0.03337 -0.00815977 +-0.0774971 0.128861 0.0533302 +0.0348978 0.0613787 -0.0138096 +-0.0348784 0.10713 -0.0202183 +0.0074278 0.117326 -0.0164147 +-0.0416698 0.0345261 0.0350582 +-0.0711528 0.180791 -0.0525602 +-0.0633069 0.0343768 0.0340823 +-0.0795725 0.091329 0.0351135 +-0.00149388 0.0787876 0.0581499 +-0.0838841 0.12062 -0.00343109 +-0.0017512 0.0769296 -0.0360915 +0.00921045 0.0851252 -0.032 +0.0528986 0.056075 -0.00272531 +-0.088793 0.0888086 0.00747102 +0.0367516 0.061565 -0.0117718 +-0.00560731 0.0389273 -0.00299633 +-0.0145783 0.0348246 -0.0259715 +-0.0668255 0.162993 -0.016474 +0.0537671 0.0492093 0.00323447 +0.0164968 0.0990289 0.0471605 +0.0350254 0.0533499 0.0328505 +-0.0502577 0.127427 -0.00458948 +-0.0354996 0.0605317 0.0401535 +-0.0445094 0.0832466 0.0430632 +-0.061134 0.11687 0.0396165 +0.0288023 0.0594063 -0.0198054 +-0.0345743 0.120058 0.0294165 +-0.00577775 0.0812461 -0.0375203 +-0.0271582 0.125819 0.00840694 +-0.00487894 0.130442 0.0208375 +-0.0485449 0.165375 0.00344343 +0.00426734 0.0682596 -0.032922 +-0.0887148 0.12811 0.00328264 +-0.0688911 0.0610594 0.0132079 +-0.0845844 0.121705 0.0490448 +0.0086501 0.130656 0.00430717 +-0.0694892 0.109539 0.0380952 +-0.0883053 0.149858 0.0265188 +-0.0556122 0.136727 0.0318764 +0.00753471 0.0632773 0.055432 +-0.0675754 0.0334584 0.000400215 +0.0390555 0.064539 0.0335561 +0.00752021 0.073081 0.0562837 +-0.0898786 0.113438 0.0340422 +-0.0729585 0.134037 -0.00770509 +-0.0713317 0.151217 -0.0439201 +0.00350232 0.123774 0.0338316 +-0.0682244 0.142863 -0.0118107 +-0.0110454 0.113378 -0.0180964 +0.0539053 0.0478505 0.00821457 +-0.0614468 0.141404 -0.00570472 +-0.0113089 0.0383954 0.0218511 +-0.0281079 0.177558 -0.016771 +0.012409 0.0418787 -0.0238148 +-0.00282516 0.102957 -0.0229221 +0.0254031 0.123772 0.0104796 +-0.0305987 0.0803029 0.0419758 +-0.0750181 0.0761727 0.0341343 +-0.0144519 0.166922 -0.0140569 +0.00338055 0.0465728 -0.0280809 +-0.0162255 0.177147 -0.0257279 +0.0131167 0.108671 -0.0187213 +0.0272829 0.121723 0.00548626 +-0.0883907 0.115479 0.0451949 +-0.0879259 0.102339 0.0203636 +-0.0548201 0.128324 0.0365339 +-0.0820753 0.129944 0.0519532 +0.00724365 0.07823 -0.0340312 +-0.0819891 0.0923793 -0.00757573 +-0.0303556 0.168269 -0.0071929 +-0.00250456 0.0562401 0.0542942 +-0.0616678 0.143939 0.037247 +-0.0776245 0.151441 -0.00287924 +0.0374138 0.110303 0.0192381 +0.0348067 0.0902706 0.0399059 +-0.0127063 0.0671038 -0.0370425 +0.0160068 0.0347306 -0.00980024 +-0.0372246 0.0368821 -0.0130308 +0.0340234 0.0585319 -0.0137143 +0.0541559 0.0477549 0.017206 +-0.0405048 0.15944 0.00272423 +-0.0015963 0.0981039 -0.0279083 +-0.092935 0.117416 0.0233037 +-0.0832007 0.119017 0.0492012 +0.00140058 0.0348342 -0.0234319 +-0.0868724 0.106357 0.0173489 +-0.0166991 0.0570076 -0.034416 +-0.0907644 0.142021 0.0271708 +-0.0822477 0.106043 -0.00262262 +-0.0929753 0.11876 0.0253083 +-0.0263289 0.0434924 0.0526862 +-0.0374936 0.0733328 0.0420467 +-0.0355255 0.0818589 0.0431427 +-0.0650055 0.136996 -0.00788185 +-0.0705444 0.0712752 0.0339991 +-0.0549513 0.0339195 0.0239841 +-0.00779971 0.114512 -0.0173201 +0.0213851 0.0754916 0.050294 +0.0297243 0.0538559 -0.0167895 +-0.00746204 0.125196 -0.00874293 +-0.0385113 0.0973107 0.0424108 +0.0437641 0.0599949 -0.00412714 +0.00932784 0.0581716 -0.0301717 +-0.07404 0.148543 -0.0208687 +-0.067363 0.177688 -0.0512074 +-0.00213372 0.123188 0.0349488 +-0.0180211 0.168338 -0.0139614 +-0.0254657 0.0678395 0.0426887 +-0.0266217 0.0436536 -0.0288174 +-0.0498332 0.0956322 -0.0221283 +-0.0772795 0.155549 -0.0169029 +0.0369068 0.0799159 -0.0147176 +-0.0788489 0.119288 -0.00581129 +-0.0101059 0.171125 -0.0207965 +-0.0324932 0.0774699 0.0412179 +-0.0434937 0.0705308 0.0420517 +-0.0158265 0.0869335 -0.0385904 +-0.00548754 0.123746 0.0343085 +0.0610091 0.0623122 0.0111052 +-0.00962571 0.0451144 -0.0282927 +-0.0687445 0.160961 -0.0529537 +-0.00991099 0.115578 -0.0164445 +0.0199768 0.126969 0.0170274 +-0.0827793 0.0771313 0.0211566 +-0.0119077 0.0894805 -0.0370977 +0.0238643 0.100811 0.0434608 +-0.0130347 0.166801 -0.0212915 +-0.0934989 0.122762 0.0122811 +-0.0667245 0.0765676 -0.016644 +-0.0391998 0.0351247 -0.0118182 +-0.0445637 0.128075 -0.00132731 +-0.0258871 0.0377455 0.0194558 +-0.093776 0.124126 0.0142628 +-0.0698753 0.117966 -0.00835455 +-0.0515005 0.100157 0.0426446 +-0.0404873 0.112547 0.0355988 +-0.0674682 0.0382926 -0.00574154 +-0.0624974 0.0876076 0.0451456 +-0.0367451 0.0768715 -0.019149 +-0.00349748 0.0870382 0.0570453 +0.0243264 0.0591823 -0.0248233 +-0.0604582 0.154406 0.00215902 +-0.0742084 0.067281 0.00145303 +0.0461952 0.0834391 0.00817714 +-0.0246581 0.0664552 0.0433381 +0.0223219 0.0402539 -0.00770693 +-0.0269495 0.0511315 0.0418642 +-0.0426785 0.060742 -0.0126195 +-0.0470567 0.069722 0.0403886 +-0.057499 0.0889744 0.0446686 +-0.0925962 0.126825 0.0102659 +-0.0627541 0.166279 -0.0425846 +0.00227655 0.0655175 -0.0339267 +-0.0152717 0.181584 -0.0271612 +-0.0527991 0.0578707 0.0222512 +0.0181983 0.0768373 0.0527356 +-0.020287 0.0445184 0.0528933 +-0.0230546 0.0388523 0.0540611 +-0.0591948 0.0603156 -0.00052226 +-0.0356179 0.0505976 -0.0108834 +-0.0125985 0.0420542 -0.026434 +-0.0457346 0.0337173 0.00640665 +-0.0271239 0.117991 -0.0128729 +-0.0287901 0.105845 -0.0221143 +-0.0791947 0.116328 0.04948 +-0.037475 0.126933 -0.001254 +-0.0652274 0.172558 -0.0603808 +0.0249025 0.0659023 0.0447242 +0.0444853 0.062436 0.0294527 +-0.0584017 0.0411488 0.0207065 +-0.0637308 0.0380192 0.0421186 +-0.0224637 0.0768447 0.053535 +-0.0472049 0.132217 0.00449629 +-0.055985 0.033885 0.0237996 +-0.0637704 0.158563 -0.0153492 +-0.0889154 0.0875162 0.0124615 +-0.0630601 0.155204 -0.0366146 +-0.0858283 0.1008 0.00139713 +-0.00849876 0.0884233 0.057199 +-0.0464295 0.156494 0.00819518 +-0.0875333 0.0927687 0.0054156 +-0.0555067 0.053407 0.0086882 +-0.0319429 0.0346356 0.0246022 +-0.0532414 0.127751 -0.00500041 +-0.0324852 0.0946249 0.0445277 +-0.0652259 0.166727 -0.0597961 +0.0318258 0.090298 0.0426417 +0.0227624 0.0959793 -0.0216236 +0.0453464 0.0791637 0.00120688 +-0.00148178 0.0718081 0.0578063 +0.0484981 0.0664872 0.0276228 +-0.0638124 0.0339885 0.0132249 +0.0378702 0.100686 0.0303226 +0.0423416 0.0718943 -0.00578991 +0.0449549 0.0889654 0.0201657 +-0.0505604 0.0431885 -0.0101401 +0.0305345 0.113708 -0.00653825 +0.0175297 0.092684 0.048312 +-0.0405439 0.0338701 -0.0146326 +-0.0151193 0.0387785 0.0315419 +0.0425177 0.0660617 -0.00221978 +-0.0261619 0.0381432 0.054147 +-0.0435068 0.0576714 0.0396679 +-0.0531482 0.161241 0.00587596 +-0.0897425 0.0915834 0.0134432 +0.00549953 0.119637 0.0367537 +-0.00877042 0.130092 0.00788453 +-0.0417274 0.0725105 -0.0179617 +-0.0534984 0.0776159 0.0431279 +-0.0290767 0.121891 0.0239314 +0.0583737 0.0676977 0.00512132 +-0.0647358 0.157148 -0.0507072 +0.0435656 0.0945094 0.0231538 +-0.0220003 0.181634 -0.0125756 +-0.0298816 0.0621837 -0.0234188 +-0.0460097 0.127427 -0.00464706 +-0.0136152 0.0982979 -0.0261721 +-0.0662958 0.0637695 -0.0035905 +-0.0920915 0.118829 0.0424602 +-0.0157421 0.0686009 -0.0381423 +-0.063492 0.0819119 0.043822 +0.0519248 0.0461654 0.00821164 +-0.0528781 0.0490838 0.0346622 +-0.0896974 0.137929 0.0351902 +-0.0502406 0.140114 0.00340131 +-0.0460575 0.131197 0.00582383 +-0.0398248 0.0928735 -0.0232663 +-0.0287922 0.165339 -0.00670006 +-0.0017304 0.0712031 -0.0351875 +-0.0386191 0.118326 -0.013151 +0.0193849 0.126884 0.00540105 +0.0309645 0.0363887 0.0195722 +-0.0314998 0.155167 -8.72409e-05 +-0.000786782 0.0826169 -0.0366787 +-0.0771272 0.155133 0.00894547 +-0.00248977 0.112799 0.0419964 +-0.0279028 0.160261 -0.0136941 +-0.0431979 0.129461 0.00840104 +-0.0208217 0.0854768 -0.038298 +-0.01776 0.0714448 -0.0386564 +0.00624218 0.039472 0.0335072 +-0.0639011 0.119458 -0.00893676 +-0.0667029 0.176899 -0.0509708 +-0.0245413 0.0349941 -0.0287041 +-0.0487364 0.0753122 -0.0176891 +-0.0669945 0.169371 -0.0323347 +-0.00928822 0.0393788 0.0494849 +-0.0239808 0.0936155 -0.0313592 +0.0224894 0.0906371 0.0481279 +0.0242369 0.0748124 -0.0257049 +-0.0243462 0.1625 -0.00551798 +-0.0625942 0.153749 -0.0125838 +-0.0486891 0.137066 0.0163891 +-0.0679674 0.0350577 0.0131968 +-0.0626161 0.12969 0.0410793 +-0.0263812 0.120789 0.0279195 +-0.0802896 0.144766 0.0426469 +0.0132183 0.0794258 -0.0310561 +-0.0415045 0.0548576 0.0396938 +-0.00948994 0.0952069 0.0546127 +-0.0903261 0.135124 0.0222174 +-0.0574953 0.153709 0.0290191 +-0.0428742 0.10707 -0.020141 +0.057983 0.0674087 0.022273 +-0.0297438 0.0593588 -0.0214043 +-0.0562018 0.0589495 -0.00340637 +-0.0230647 0.0402418 0.0541248 +-0.062019 0.17397 -0.0618399 +-0.0412895 0.149153 -0.00363446 +-0.0485728 0.0503685 -0.00899002 +-0.00748812 0.10728 0.0439222 +-0.0336555 0.0709359 -0.0204834 +-0.0407158 0.171931 -0.00126808 +-0.0610791 0.151413 0.0351388 +-0.0221494 0.0384504 -0.005885 +0.00439305 0.11559 -0.018534 +-0.0241215 0.0944713 0.0461972 +-0.0547672 0.0812274 -0.0214088 +-0.0846583 0.0777659 0.00751712 +-0.0574282 0.0507609 0.000628334 +-0.00874511 0.0976201 -0.0294139 +-0.022979 0.0380859 0.023348 +0.043448 0.0916342 -0.00278755 +0.0145196 0.123096 0.0322223 +-0.0415646 0.125825 -0.00703356 +-0.0726695 0.171671 -0.0330178 +-0.010471 0.0378949 -0.0160892 +-0.0488368 0.0970812 -0.0221898 +-0.0586032 0.141 0.0328315 +-0.0117815 0.0347775 0.0429519 +0.0116378 0.0603198 0.0518663 +-0.0459594 0.0560107 0.0380589 +0.0399446 0.107028 0.0121641 +0.00710547 0.0893998 -0.032814 +0.0410678 0.10142 0.0221661 +-0.0244452 0.181836 -0.00961144 +-0.013259 0.121231 -0.0103976 +-0.0454789 0.123431 0.0251209 +0.0285377 0.0523356 -0.0187697 +0.0588289 0.0691072 0.0191593 +0.0125005 0.1007 -0.0226033 +-0.0595569 0.153648 0.0312116 +-0.00403867 0.0994311 -0.025339 +0.00148661 0.108625 0.0426664 +-0.0327389 0.0482896 -0.0213368 +-0.0380117 0.0344553 0.0341354 +-0.072467 0.0968801 0.0405541 +0.0151781 0.0847217 0.0519158 +-0.0425055 0.108838 -0.0192163 +-0.00749309 0.114174 0.0409291 +-0.0434968 0.119301 0.0295385 +0.0363932 0.0476439 -0.00624826 +-0.079546 0.0719865 0.0195582 +-0.0564882 0.042714 0.0457133 +-0.0113851 0.0383094 0.011049 +-0.0865431 0.106355 0.0183534 +-0.0313759 0.0553098 -0.0143786 +0.0515215 0.0651377 0.0281771 +0.0253513 0.0605347 -0.0238887 +-0.0627683 0.164709 -0.0355885 +-0.0520878 0.0489475 0.0226481 +-0.0371717 0.165191 -0.0136726 +0.0421423 0.0738117 0.0292393 +0.0499661 0.0451421 0.0208878 +-0.0394943 0.116662 0.0325452 +-0.085625 0.079203 0.01151 +-0.0716025 0.135501 0.0492566 +-0.00270958 0.0391757 0.033738 +-0.0911953 0.143381 0.0241598 +0.0418026 0.102869 0.0141608 +-0.0319458 0.0708051 -0.0254622 +-0.0626184 0.145978 -0.00858061 +0.0207857 0.0994851 0.0460447 +0.0275851 0.114088 0.0330397 +-0.040502 0.120714 0.028794 +-0.0853944 0.101863 0.0264831 +0.00328879 0.0668715 -0.0332298 +-0.0446453 0.0577855 -0.0118043 +0.0188777 0.03558 -0.00867348 +-0.064488 0.156133 0.0221359 +-0.00921165 0.172686 -0.0275682 +-0.0426232 0.0362716 0.0437883 +-0.0246131 0.0422659 -0.0289978 +-0.0766564 0.0773474 -0.00857073 +0.0281325 0.121698 0.0129367 +-0.00471394 0.0641886 -0.0352179 +-0.0274456 0.0382197 0.0539829 +-0.0417615 0.03357 0.00191851 +-0.0596536 0.0350995 0.0445384 +-0.0458215 0.091313 -0.0218951 +-0.00569643 0.0599053 -0.0346867 +-0.0728066 0.087878 -0.0157134 +0.00467021 0.0347458 0.0211501 +-0.0369631 0.0341718 -0.0179086 +-0.0700564 0.162427 -0.0118963 +-0.0938276 0.126933 0.0242666 +-0.0207424 0.110014 -0.0205123 +0.00150816 0.0911296 0.0556681 +-0.00874857 0.0727984 -0.0375275 +-0.0679476 0.156599 -0.00385029 +-0.076928 0.152806 -0.00788984 +-0.0860408 0.109124 0.0103593 +-0.0514909 0.0544833 0.0216233 +-0.0756545 0.151363 -0.0148873 +0.0423862 0.047532 -0.00502925 +-0.0895419 0.0916017 0.0194388 +-0.014074 0.128231 0.00303832 +-0.0747094 0.155646 0.00979649 +-0.0931712 0.117411 0.0223074 +-0.0548599 0.145302 0.0295141 +-0.058163 0.0467738 0.0296766 +0.00351191 0.0459363 0.0483003 +-0.091423 0.144753 0.0241539 +0.0174632 0.0948293 0.047857 +-0.0326373 0.119597 -0.0104942 +0.0206219 0.119357 0.0335278 +-0.0174992 0.0897364 0.0558751 +-0.00978193 0.0784455 -0.0377778 +0.0236993 0.12332 0.00130956 +-0.0792974 0.15265 0.00222093 +-0.0444956 0.102933 0.0417949 +0.0152822 0.129138 0.0167187 +0.0467013 0.0718392 0.0195936 +-0.0883363 0.112382 0.0405773 +-0.0515091 0.105631 0.0400498 +0.00121056 0.115576 -0.018509 +-0.0525671 0.0335472 0.0123651 +-0.0285962 0.0377287 0.0207135 +0.0043328 0.0341303 0.00522853 +-0.0914252 0.114627 0.0103302 +-0.0231203 0.163764 -0.0160465 +-0.0077447 0.0698983 -0.036343 +-0.0650951 0.162442 -0.0187197 +-0.0652725 0.0613084 0.02088 +0.0455972 0.0415054 0.0160287 +-0.0554928 0.148133 0.0286364 +-0.0709153 0.113624 -0.0087498 +-0.0390311 0.160893 0.00133569 +-0.0669712 0.156006 0.0125516 +-0.0607902 0.0334775 -4.36679e-05 +-0.0634989 0.108392 0.0384413 +-0.0239757 0.0768012 0.0522149 +-0.0671254 0.128435 0.0486555 +-0.0368355 0.153629 0.00272174 +-0.0280768 0.169745 -0.00916431 +0.00750786 0.0518308 0.0519822 +0.017486 0.112589 0.0378808 +-0.0694907 0.0930374 0.0422024 +-0.0457991 0.0336321 0.00104877 +0.0385285 0.0901386 0.0347352 +0.0154693 0.0976312 0.0477084 +-0.0134564 0.0347657 0.0443699 +0.0132374 0.123205 -0.00876652 +0.0204758 0.0975716 0.0468126 +-0.0702558 0.152263 -0.0463745 +-0.0361586 0.0382819 -0.0067057 +0.0546048 0.0478149 0.0122009 +-0.0455357 0.120317 -0.0132441 +-0.00750778 0.0828941 0.0575015 +-0.0338576 0.0347656 0.029445 +-0.0195033 0.118175 0.0352728 +0.0125203 0.0616669 0.0514026 +-0.0196496 0.0582641 0.0484904 +0.0383367 0.0910432 -0.012345 +-0.00538883 0.122125 -0.0114557 +-0.075455 0.0675485 0.016865 +-0.0362517 0.123246 0.0257763 +-0.0815948 0.123081 0.0504133 +-0.00479304 0.130806 0.0179661 +-0.0776418 0.158287 -0.0219264 +-0.0484803 0.117974 0.0310954 +-0.0386541 0.126132 0.0204051 +-0.0786087 0.102098 0.0338163 +0.0464344 0.0792618 0.0111808 +0.0289709 0.0848578 0.043728 +-0.0184969 0.10579 0.0426906 +-0.0245528 0.116739 0.0335827 +-0.0754858 0.146995 0.0422823 +-0.0528151 0.132539 0.0323863 +-0.00781365 0.086863 -0.0372016 +0.0145549 0.126574 -0.00243153 +-0.0834735 0.076324 0.00852235 +-0.0597355 0.0752692 -0.0179534 +-0.0853298 0.111023 0.0405559 +-0.0515948 0.137023 0.025408 +-0.0693375 0.168152 -0.0246084 +-0.0781507 0.115089 0.0495991 +-0.0468723 0.0587675 0.0374438 +0.0193537 0.0349459 0.0257791 +0.0243371 0.123621 0.0229269 +-0.0907106 0.133758 0.0262122 +-0.0542023 0.0435162 0.019691 +-0.036169 0.0335901 -0.0284162 +0.0196024 0.0858351 -0.0269873 +0.0084996 0.0488213 0.0500608 +-0.0308481 0.0664794 -0.025463 +0.0262324 0.0775308 -0.0242027 +0.0470911 0.0422949 0.0155431 +0.0315748 0.0605586 0.0402762 +-0.0722147 0.149455 -0.0385736 +-0.0695516 0.170347 -0.0304219 +-0.0404175 0.171209 -0.00987004 +0.0299365 0.0350356 0.00770058 +-0.0466417 0.133657 0.014443 +0.0130913 0.0937889 -0.0272955 +-0.0579449 0.059547 -0.000261977 +-0.0285818 0.121272 -0.00825717 +-0.0713326 0.0345571 0.00760774 +-0.0666503 0.135429 0.0440071 +-0.0303959 0.0762676 -0.0335676 +-0.00385838 0.101641 -0.0231016 +-0.0679568 0.13115 -0.00879393 +0.00350598 0.0870278 0.056972 +-0.0248582 0.0752289 0.048914 +-0.0588955 0.0336882 0.0145047 +-0.0563129 0.159837 0.00207063 +-0.064096 0.14766 -0.0219948 +-0.00992774 0.110288 -0.021044 +-0.0709029 0.110786 -0.0101311 +4.37647e-05 0.0392736 0.0324137 +0.0144567 0.0617415 0.0506755 +-0.0304982 0.117934 0.0308066 +-0.0124153 0.129138 0.0195683 +-0.0045458 0.042944 0.0478735 +-0.078629 0.155228 0.0230232 +-0.0793587 0.143462 0.044583 +-0.011946 0.163588 -0.0146751 +-0.0489654 0.138607 0.014392 +0.0130851 0.034266 -0.0137357 +0.0405023 0.0484755 0.0322215 +-0.0440255 0.0336276 -0.0225259 +-0.0185094 0.114097 0.0385959 +-0.0708508 0.173984 -0.0409178 +-0.0698895 0.170875 -0.0319754 +-0.0268752 0.105825 -0.0224483 +-0.0921157 0.118792 0.0303066 +-0.0715954 0.155396 -0.0419127 +0.0239203 0.108291 -0.0147313 +-0.0163998 0.119263 -0.0123023 +-0.0327198 0.0652554 -0.0184496 +0.0457714 0.0848094 0.0151676 +-0.062838 0.15526 0.00677387 +-0.0562712 0.146757 0.030967 +-0.00723161 0.0381024 0.0489495 +0.0208841 0.115302 0.0356376 +-0.0311112 0.162246 -0.0146263 +-0.0185025 0.0757876 0.0552584 +0.0369413 0.0993952 0.0325229 +-0.0597781 0.0668249 0.0348598 +-0.0676678 0.0697151 0.0342008 +-0.00507021 0.128586 -0.00238902 +0.035697 0.096801 0.0360155 +0.0179331 0.121039 -0.00844165 +0.00149286 0.100277 0.0469858 +0.0132581 0.0348304 0.0408908 +-0.0746487 0.0760382 -0.00984365 +-0.076866 0.0994719 0.0363813 +-0.00904748 0.0388121 -0.00544357 +-0.0378518 0.0985762 -0.0221892 +-0.0494929 0.0804959 0.044039 +0.0288964 0.120556 0.0189249 +0.0252898 0.0704815 -0.0246106 +-0.0831283 0.107448 0.000408412 +-0.0465019 0.129507 0.0239285 +-0.056621 0.0562362 0.00665228 +-0.00564116 0.0481924 -0.0303539 +-0.0944779 0.122838 0.0232837 +-0.0876178 0.105003 0.0113725 +0.0221833 0.125827 0.00929485 +-0.0376403 0.0562958 -0.0110081 +-0.027315 0.119916 0.0290701 +0.0347431 0.103404 0.0328426 +0.0317883 0.117354 0.00287906 +0.0203254 0.040014 -0.0146997 +-0.0780017 0.150056 -0.00287894 +-0.0106261 0.0451108 -0.0281505 +-0.0729498 0.156259 0.0191473 +0.0393029 0.10195 0.0270711 +0.0182702 0.0422045 0.0436952 +-0.0802626 0.147413 0.0397079 +-0.00132352 0.0966684 -0.0303753 +-0.015259 0.0984512 0.0471298 +0.0451952 0.0433405 0.023507 +-0.0438866 0.108471 -0.0191595 +-0.0159384 0.124168 -0.00545234 +-0.0654957 0.105611 0.0395613 +-0.0904683 0.135081 0.0142287 +0.025208 0.0874192 -0.0236148 +0.0366057 0.0954909 0.0355184 +-0.0887482 0.102363 0.0163794 +0.00249078 0.115545 0.0403845 +-0.0778809 0.0759658 0.0302027 +-0.045814 0.0898818 -0.0220292 +0.0125705 0.0658518 0.0532694 +-0.00597277 0.130385 0.0204408 +-0.0581881 0.125521 0.0404357 +-0.0307415 0.0374976 -0.017878 +-0.0742647 0.109022 0.03931 +0.0186443 0.123322 -0.00490878 +-0.0769902 0.154182 -0.00989517 +0.0130083 0.0956231 -0.0252421 +0.00953036 0.10442 0.0445691 +0.0186389 0.0520546 0.0461071 +-0.0463977 0.0397105 -0.0152844 +0.0444376 0.0959725 0.0121619 +-0.0216077 0.0350207 0.0511065 +0.0463433 0.054773 -0.00593764 +-0.0875696 0.115156 0.045661 +-0.00311195 0.130927 0.00709886 +-0.0627873 0.0335028 0.00493012 +-0.0894432 0.151569 0.0164701 +-0.0668923 0.109473 -0.0126504 +-0.053788 0.0854855 -0.0214384 +-0.00382944 0.108004 -0.0223654 +-0.0447162 0.0448943 -0.0112435 +0.0262334 0.121101 0.000829633 +0.0206734 0.0795401 0.0510479 +-0.0434655 0.127159 0.0186744 +-0.0273746 0.181651 -0.00921581 +-0.0045009 0.116806 -0.0157814 +-0.0529179 0.162663 -0.000927718 +0.0278575 0.109692 -0.0122334 +0.0114621 0.125412 0.0310862 +-0.055877 0.0984248 -0.0207921 +-0.0649536 0.0595166 0.0136311 +-0.0899789 0.116378 0.0441376 +-0.0344621 0.154617 -0.00886992 +-0.0641249 0.156393 -0.0431197 +0.0264267 0.0824949 -0.0235141 +-0.0699148 0.109401 -0.011164 +-0.0645122 0.0398643 -0.00676714 +-0.0927009 0.117475 0.0353038 +0.00812049 0.107282 -0.0201059 +0.0344124 0.0957227 -0.013333 +-0.0617126 0.170956 -0.0545977 +-0.0888439 0.150092 0.0112242 +-0.0600859 0.0421217 0.0440266 +-0.0535039 0.0805657 0.0446207 +0.00913683 0.0873343 0.0554698 +0.0318118 0.100781 0.0373962 +-0.0366211 0.124122 -0.00724685 +0.0255511 0.0463382 0.0384325 +-0.00473212 0.0386351 0.0247855 +-0.0857334 0.153425 0.016223 +3.04988e-05 0.11432 -0.019028 +-0.0622192 0.17721 -0.0606003 +-0.00533435 0.0930519 -0.0346806 +-0.0578363 0.0912193 -0.0212351 +-0.051575 0.132941 -0.0025104 +-0.0215094 0.0983521 -0.0242621 +-0.0663625 0.141125 0.0427387 +0.0411659 0.0952708 0.0280268 +-0.053497 0.0945663 0.0438533 +-0.0745177 0.171112 -0.0322615 +-0.0779361 0.129573 -0.00656407 +-0.0437814 0.0840812 -0.0212189 +0.00326914 0.0682665 -0.0330635 +-0.0739332 0.177709 -0.0464055 +0.0528574 0.0622185 0.0288955 +-0.0365021 0.101484 0.0413625 +-0.0445836 0.0476428 -0.0105653 +-0.0194973 0.101611 0.0435898 +-0.0137239 0.16215 -0.0118322 +-0.0287184 0.0806953 0.0455388 +-0.0933646 0.117392 0.0153085 +-0.0867701 0.113047 0.00428618 +-0.0052769 0.0941788 -0.0338289 +0.0134806 0.0976663 0.0482444 +-0.08743 0.111796 0.0214228 +0.00133097 0.0626915 -0.0339607 +0.0447988 0.0903457 0.000177034 +0.00183354 0.10009 0.0472603 +-0.0323685 0.0497273 -0.0163483 +-0.0848994 0.144621 0.00617242 +-0.0707871 0.0625817 0.00788057 +-0.0334706 0.0589721 0.0386927 +0.0458044 0.0834139 0.0161713 +-0.0638595 0.159101 -0.0532849 +-0.0169095 0.0379753 -0.0273392 +-0.0683614 0.15578 0.00913576 +-0.0841262 0.110345 0.0263651 +-0.0629048 0.1054 -0.0169977 +-0.00482937 0.038542 0.00854039 +0.00442082 0.039258 0.029719 +0.0287437 0.0416628 0.0306503 +-0.0480218 0.144366 0.00442748 +-0.0718881 0.109321 -0.0102252 +-0.0623027 0.153756 -0.0145815 +0.0312054 0.104936 -0.0131412 +-0.0502712 0.143189 0.0133798 +-0.0679015 0.120916 -0.00896008 +-0.0325574 0.126601 0.00788172 +0.00400981 0.0391328 0.0279405 +-0.0790033 0.16525 -0.0329555 +-0.0464892 0.117969 0.0304809 +-0.0171987 0.127433 0.00332106 +-0.0589607 0.145338 0.0340833 +-0.00576935 0.0346302 0.0443351 +-0.0894143 0.118584 0.00330542 +-0.0494955 0.0890237 0.0451636 +-0.0395958 0.118487 -0.0133369 +0.0256371 0.0346096 0.00722464 +0.0101261 0.0846794 0.0551401 +-0.000640169 0.0481947 -0.0300913 +0.00652044 0.0799801 0.0556018 +-0.0485004 0.157854 0.0090451 +-0.0674788 0.153589 0.0328337 +-0.0246191 0.0436702 -0.0286423 +-0.0380903 0.041957 -0.0274154 +-0.0592055 0.155872 0.0109493 +-0.0158317 0.0382446 0.00839116 +-0.0862834 0.141953 0.0402325 +-0.0178783 0.0381567 0.0189161 +-0.00165332 0.0511407 -0.0309868 +-0.0515122 0.0598238 0.030703 +0.0226361 0.118891 -0.00814073 +0.0433138 0.0902166 -0.00378785 +-0.0339799 0.0384942 -0.0120095 +-0.0424937 0.0748068 0.0427898 +-0.0640892 0.172567 -0.049571 +0.037431 0.0794424 0.0366005 +0.041759 0.0432404 0.0265421 +-0.0923571 0.121517 0.0426088 +0.0562687 0.0726263 0.0113628 +0.024692 0.100819 0.0429025 +-0.0729148 0.110726 -0.0089954 +-0.0295018 0.159581 0.00108834 +-0.0672997 0.0435653 0.00884843 +0.0172829 0.0651656 -0.0289948 +-0.0585687 0.0340745 0.0248573 +0.0320945 0.113613 -0.00441584 +-0.0726455 0.0655594 0.00286688 +0.0223162 0.0649555 -0.0263733 +-0.0636659 0.0691264 -0.011804 +-0.0495225 0.143222 0.00950726 +-0.0396922 0.156587 0.00568688 +0.00749975 0.089676 0.055015 +0.0495971 0.0465817 0.0239661 +-0.0390578 0.156263 -0.0100859 +-0.0708823 0.172457 -0.0366471 +0.0126883 0.0343606 -0.00448368 +-0.0454899 0.0690197 0.0407796 +-0.0413446 0.0335325 -0.0237744 +-0.0404379 0.124957 -0.00812413 +0.0440209 0.0945174 0.0011806 +-0.0627245 0.073729 -0.0165415 +-0.0286056 0.0475856 -0.0255224 +-0.0495036 0.153584 0.0107879 +-0.0896132 0.139307 0.0341845 +0.030074 0.119769 0.00796635 +-0.0517393 0.0517191 0.022632 +-0.023961 0.0723529 0.0481115 +-0.0309909 0.0384268 -0.00579914 +-0.00634516 0.0379873 -0.0153566 +-0.0547761 0.0333427 -0.00414144 +0.00202824 0.108029 -0.0204102 +0.0450661 0.0761937 0.0228711 +-0.084679 0.0869987 0.027663 +-0.0219636 0.0681726 0.0490783 +0.0226059 0.0375679 0.034289 +-0.0518654 0.101358 -0.0214215 +-0.0919525 0.126983 0.0392569 +-0.0663498 0.172859 -0.0450539 +0.00551307 0.0856288 0.0568655 +-0.0269831 0.0381412 0.0278748 +0.0430768 0.0411155 0.00329204 +0.0317014 0.117733 0.0199863 +-0.0326228 0.0506668 -0.0115219 +-0.0760639 0.155862 0.0136886 +-0.0581543 0.0337417 0.0181646 +0.0454926 0.0875897 0.015162 +-0.0197923 0.038435 -0.00354579 +-0.0461288 0.15913 -0.00829043 +-0.0235066 0.108523 0.0406075 +0.015525 0.127932 0.00115163 +0.00251501 0.0814623 0.0569927 +-0.0485603 0.131756 0.000870882 +-0.0909462 0.11476 0.0333322 +0.038369 0.0884214 -0.0137726 +0.0179084 0.127905 0.00771503 +0.0457915 0.0862101 0.0121678 +-0.0310416 0.0763051 -0.0325503 +-0.0584963 0.0946188 0.0448266 +-0.00142898 0.112626 -0.0193593 +0.0537506 0.0519895 0.000247391 +-0.00249736 0.0978288 0.0524276 +0.0474285 0.0692644 0.00256538 +-0.0157146 0.17719 -0.0193767 +-0.0688721 0.0369953 0.0119906 +0.0262296 0.0888085 -0.0227773 +-0.0876687 0.0981895 0.00443327 +-0.0435601 0.129686 0.00973169 +-0.0620348 0.146024 -0.00560988 +0.0228232 0.123119 -0.000681491 +0.0192101 0.0791931 -0.0277308 +-0.0285078 0.0348913 0.0463089 +-0.0295006 0.116619 0.032366 +0.00540344 0.040445 -0.0238712 +-0.0861937 0.0819823 0.0184808 +-0.0691313 0.170851 -0.0540166 +0.0232722 0.0691857 -0.0260989 +0.0346775 0.106404 -0.00868031 +-0.0626839 0.154165 0.00249175 +0.0203005 0.047637 0.041402 +0.0426083 0.0915862 -0.00481093 +-0.00121535 0.0394284 0.0356173 +-0.0290126 0.0606872 -0.0244213 +-0.0522249 0.152155 0.0138449 +0.0278367 0.0781921 0.0455692 +-0.0782715 0.168666 -0.0333616 +-0.0631194 0.0357147 0.0189543 +0.00237959 0.0976208 -0.0273765 +-0.0327796 0.0736593 -0.0265049 +-0.0590695 0.143884 0.0338908 +-0.0366032 0.0407784 -0.0289892 +-0.0564911 0.0400264 0.0468768 +-0.0891224 0.133627 0.00423095 +-0.00349883 0.095211 0.054715 +-0.0365564 0.0488017 -0.0133944 +-0.063603 0.0406323 0.0405017 +0.00388987 0.0987683 0.0495103 +-0.0341448 0.166698 -0.0152744 +0.0422984 0.0789118 -0.00576754 +-0.0821777 0.153468 0.0263012 +-0.0618022 0.0852922 -0.0192956 +-0.0825795 0.0937805 -0.00656944 +0.0526059 0.0476644 0.00422036 +-0.0617323 0.155315 -0.018581 +-0.0646798 0.158592 -0.0555006 +-0.0400438 0.127998 0.000725921 +-0.020826 0.0882193 -0.0372663 +-0.072774 0.083565 -0.0157894 +-0.0301375 0.0592681 -0.0204197 +0.053852 0.0700236 0.0237561 +-0.0192952 0.097132 0.0469462 +-0.0379042 0.0350553 0.0424096 +-0.0779467 0.170107 -0.0351609 +-0.0731753 0.162423 -0.0379582 +0.0293531 0.117442 -0.00254348 +0.00923639 0.0753581 -0.0333366 +-0.00523048 0.0381888 0.0482681 +0.0281109 0.0477624 0.0368744 +-0.00549683 0.095262 0.0547887 +0.016279 0.127286 0.0242335 +-0.000357095 0.0346671 0.0418309 +-0.0903031 0.113239 0.0103302 +-0.0435085 0.165227 0.00470373 +-0.000629686 0.0466337 -0.0288231 +-0.00267903 0.0583624 -0.0332032 +-0.0354553 0.163829 -0.00227816 +0.0329891 0.10525 -0.0114692 +-0.0511234 0.159083 -0.0045978 +-0.0738697 0.0672451 0.0209913 +-0.0513379 0.0345855 0.00988953 +0.0449495 0.041538 0.0177108 +0.0131716 0.128382 0.0245166 +-0.0119302 0.0975527 -0.0293786 +-0.0796395 0.11488 0.0476725 +-0.00554666 0.0429634 0.0481135 +0.0336755 0.115893 0.0150272 +-0.0865455 0.109036 0.0123603 +-0.0583287 0.0597422 0.0219213 +0.00142185 0.0361564 -0.0243567 +-0.0249379 0.182957 -0.0150514 +-0.00456935 0.0511652 -0.031379 +0.00983853 0.130485 0.0204326 +-0.020719 0.0739658 0.0533053 +-0.0922608 0.117447 0.0323019 +-0.0687753 0.15954 -0.0529632 +0.00943169 0.130854 0.0188531 +-0.0463671 0.133058 0.0160254 +0.0403868 0.0966272 0.0286723 +-0.0374342 0.125294 0.0223398 +-0.0254349 0.121225 -0.00822483 +-0.0287913 0.121291 0.025511 +-0.0275751 0.181449 -0.0130337 +-0.0292637 0.0364551 -0.0300736 +0.0333063 0.076755 -0.0177777 +-0.00838403 0.100228 -0.0241757 +-0.0917675 0.126924 0.040336 +0.0460105 0.0848241 0.0111686 +-0.0458316 0.03478 0.00723173 +0.0337176 0.0655129 -0.0167917 +-0.0900318 0.128311 0.0429434 +0.00340705 0.0404653 -0.0241388 +-0.0445167 0.0334752 0.00325528 +-0.0417025 0.170926 -0.000183345 +-0.0667272 0.0750614 -0.0156487 +-0.075008 0.0665773 0.0124915 +-0.0256788 0.0387085 -0.0161237 +0.0433708 0.0459415 -0.00338184 +-0.0333944 0.0420411 -0.0295771 +-0.0366574 0.173333 -0.0118804 +0.0279341 0.0376089 0.0251213 +-0.0591944 0.0589798 0.00447595 +-0.0117173 0.0642717 -0.0365887 +0.0284258 0.044601 -0.00619231 +0.0407559 0.0844033 -0.0107694 +-0.0149445 0.0386028 -0.00457425 +-0.0666364 0.150881 -0.0385507 +-0.0441588 0.156514 0.00623469 +-0.0338796 0.174703 -0.0134692 +-0.0700283 0.075334 0.0376711 +-0.0144851 0.120961 0.0347298 +-0.0394983 0.0690894 0.041721 +-0.0820593 0.0748753 0.013529 +-0.0262192 0.162456 -0.00472466 +-0.0573804 0.151726 0.0319973 +0.0238729 0.0463312 0.0395213 +-0.00887703 0.0985896 0.0509585 +-0.00180856 0.0881831 -0.0355551 +-0.0435257 0.128183 0.0171556 +-0.0137851 0.096091 -0.0318323 +-0.0776083 0.0770893 -0.00760024 +0.0515137 0.0637653 0.0289012 +0.0459041 0.087617 0.00917007 +-0.0946685 0.124165 0.0192665 +-0.0424078 0.0392874 -0.0253255 +0.0574465 0.0566575 0.0231489 +-0.0705315 0.0915903 0.0419348 +-0.062769 0.175495 -0.0615699 +-0.0614063 0.0419532 -0.0067475 +0.0222874 0.0635154 -0.025946 +-0.0325454 0.0624467 -0.016419 +0.0406665 0.105637 0.00516291 +0.00508145 0.125851 -0.00757191 +-0.0743566 0.148587 -0.0198592 +0.028537 0.0506236 0.0375191 +0.00550651 0.0897139 0.0554063 +-0.0165465 0.061194 0.0523676 +-0.0548344 0.113627 -0.016162 +-0.078421 0.120421 0.0514142 +0.0224472 0.0375897 0.0352799 +-0.0558038 0.116914 0.0367748 +0.0399293 0.104183 0.0231644 +0.00793957 0.0368635 -0.0077325 +-0.053287 0.119647 -0.012449 +0.0226022 0.1018 -0.0197774 +-0.0735157 0.102656 0.0375574 +-0.0544964 0.10974 0.0378742 +-0.0351154 0.127437 0.0128308 +-0.0759568 0.136911 -0.00615991 +-0.0228623 0.06956 0.0485197 +-0.00937118 0.0387712 0.0309279 +-0.0858362 0.103636 0.0243714 +-0.0777036 0.174395 -0.0426027 +0.0605358 0.0664822 0.0111446 +-0.0456637 0.0382067 -0.0202858 +-0.0494922 0.0833478 0.0446801 +-0.0717916 0.0893503 -0.0160567 +-0.0654224 0.156324 0.0217941 +0.0104303 0.128801 -0.000781749 +-0.0640931 0.122778 0.0478095 +0.012373 0.0343732 -0.00643255 +-0.00549358 0.0898053 0.0568842 +-0.0544984 0.0973596 0.0432594 +-0.0430782 0.154691 -0.00814248 +-0.058643 0.155634 0.0155202 +-0.0309118 0.10664 -0.0209245 +-0.0117675 0.0728437 -0.0380964 +-0.0685186 0.1456 0.0424246 +0.0168366 0.113017 -0.0157876 +-0.0567451 0.0768007 -0.0192338 +-0.0905785 0.121592 0.0451008 +-0.0564995 0.0889847 0.0448198 +-0.062649 0.164698 -0.0365908 +-0.0414211 0.0344456 0.0316667 +0.0235849 0.102638 -0.0186769 +0.0208761 0.115613 -0.0126037 +0.00135548 0.0496637 -0.030356 +0.0172645 0.0713208 0.051333 +0.0277553 0.0619298 0.0435605 +-0.0388696 0.105647 -0.0202518 +0.002402 0.041908 -0.0243037 +-0.00348806 0.11693 0.0398821 +-0.094215 0.120106 0.0172864 +-0.075338 0.161792 -0.0134783 +-0.0313944 0.0721215 -0.0285061 +-0.076236 0.178558 -0.0487103 +-0.0516597 0.0416063 0.0458402 +-0.0191702 0.169734 -0.0206461 +-0.0458479 0.0999438 -0.0215809 +-0.0608063 0.0939347 -0.0190005 +-0.0831639 0.108847 0.00132792 +0.0449523 0.0945963 0.00616781 +-0.089716 0.139255 0.0241831 +-0.0241715 0.165363 -0.00880477 +-0.0808978 0.121685 0.0496566 +-0.0776757 0.0873848 0.0375611 +-0.0575877 0.0343902 0.0335477 +0.0293569 0.0808765 0.0442663 +-0.0413959 0.1089 -0.0192706 +-0.0486555 0.0606014 -0.0118523 +-0.0263871 0.06465 -0.0314802 +-0.0479423 0.118344 0.0305757 +0.0368905 0.10997 0.023344 +0.00465961 0.0959425 -0.0295932 +-0.00250198 0.0647948 0.0567081 +0.0155008 0.0345049 -0.00593057 +-0.0414998 0.0944525 0.0421484 +-0.0425159 0.17187 -0.00332083 +-0.00662603 0.045146 -0.0285621 +-0.0728992 0.107873 -0.010241 +0.0162924 0.0680403 -0.0298148 +-0.058126 0.0494622 0.00265482 +-0.049929 0.0335244 -0.00515732 +-0.0592138 0.116352 -0.0129282 +-0.0876027 0.103683 0.0193632 +-0.0661658 0.170967 -0.0590604 +-0.00423283 0.0951855 -0.0328472 +-0.056711 0.153132 0.0293166 +0.0299135 0.0618945 0.0413957 +-0.0754312 0.179188 -0.0498593 +-0.0890756 0.0982905 0.00941744 +-0.0313333 0.114057 -0.0167329 +-0.0336201 0.0505969 -0.0107597 +0.0152428 0.0807565 -0.0298514 +0.000144172 0.129559 0.0255502 +-0.0166332 0.101644 -0.0236856 +0.0112856 0.0666869 -0.0306751 +-0.0719068 0.110755 -0.00961867 +-0.056773 0.082629 -0.0212703 +0.0224949 0.112674 0.0362232 +0.00494458 0.0356784 0.0456125 +-0.0401622 0.123949 0.0243503 +-0.0494029 0.0516267 0.0356191 +-0.000148869 0.0998138 -0.0237113 +-0.0494252 0.12902 -0.00225187 +-0.0351127 0.162221 -0.0139882 +-0.0801061 0.109977 -0.00253557 +-0.0583279 0.116979 0.0383609 +0.0214316 0.0768422 0.0503677 +-0.0637593 0.0357681 0.0182478 +-0.0679574 0.176267 -0.0485208 +-0.0466544 0.0636155 -0.0134601 +-0.018198 0.0896163 -0.0372798 +-0.0675078 0.167827 -0.0267933 +-0.0891218 0.136568 0.0391914 +-0.00634438 0.0961732 -0.0318818 +-0.0509131 0.144221 0.000402933 +0.020479 0.0822082 0.0508036 +0.0382522 0.0617095 -0.0097618 +0.0414447 0.0957847 0.0271584 +0.0495191 0.0624602 0.0299628 +-0.0525648 0.0515684 -0.00660684 +-0.0507038 0.0543653 0.0186143 +-0.0678764 0.117979 -0.00873338 +-0.0833731 0.0803286 0.00149951 +-0.0102345 0.169322 -0.0249254 +0.0161585 0.128774 0.0170439 +-0.0495011 0.0439447 0.0438293 +-0.0308936 0.0901442 -0.0248987 +-0.0380826 0.159224 -0.0120325 +-0.0684954 0.121776 0.0527683 +-0.0237994 0.178657 -0.0117033 +0.022476 0.125337 0.020807 +-0.0131867 0.0392232 0.050872 +-0.0828365 0.116201 -0.00217327 +-0.0792107 0.0760132 0.0281283 +-0.0418712 0.105657 -0.0205306 +-0.0265289 0.11806 0.03154 +-0.0485021 0.104259 0.0404773 +-0.0515007 0.164119 0.00202375 +-0.0628742 0.175671 -0.0555946 +-0.0385777 0.1595 0.00203018 +-0.0410438 0.162368 0.00371458 +-0.0683486 0.124257 0.0521552 +0.0311264 0.0469699 -0.00653546 +-0.0346775 0.127387 0.0115177 +0.0256926 0.105619 -0.0158649 +-0.0656817 0.0705232 -0.0118151 +-0.0889612 0.111861 0.0183359 +-0.027486 0.0646029 0.0384895 +0.0307322 0.108762 0.0340805 +-0.0647018 0.172123 -0.0473675 +-0.0914367 0.114681 0.021315 +-0.00481581 0.0882239 -0.0361964 +-0.0229882 0.0386094 0.0318708 +-0.0164825 0.0530314 0.0497852 +0.031763 0.0653471 -0.018741 +0.0313568 0.052068 0.0363454 +-0.0937998 0.118753 0.0153042 +-0.0460733 0.0336746 -0.01741 +0.00639772 0.0911374 -0.0325899 +-0.0665077 0.105605 0.0392145 +-0.037944 0.165312 0.00115508 +-0.0447719 0.0826286 -0.0206706 +0.015216 0.0849668 -0.0295884 +-0.00949197 0.121025 0.0361236 +-0.0728889 0.159628 -0.0359308 +-0.0212527 0.0696869 0.051144 +-0.0609844 0.0646638 0.031213 +-0.0787829 0.0926997 0.035689 +0.0098313 0.0644618 0.0545535 +-0.0435636 0.0476726 -0.0110362 +0.00292266 0.0383702 -0.00263564 +-0.0294982 0.0674485 0.03887 +-0.0594483 0.0590098 0.0188119 +-0.0331272 0.0335545 -0.0277881 +-0.0654135 0.17638 -0.0519366 +0.0381247 0.0827831 -0.0147803 +0.0274189 0.0834776 -0.02246 +-0.0754296 0.152593 -0.0138871 +-0.0626337 0.149615 -0.00617193 +0.0395378 0.100622 0.0273876 +-0.00317446 0.0951663 -0.0328247 +0.0284436 0.0721192 -0.0227379 +0.0256796 0.0353829 0.0212256 +-0.0100479 0.0388486 -0.00567581 +-0.0815042 0.149744 0.0353513 +0.0569923 0.0508892 0.0171854 +-0.0844404 0.100576 0.0283951 +-0.066663 0.0704664 -0.0109078 +0.011503 0.108488 0.0403225 +0.0346003 0.059954 -0.013776 +-0.00350072 0.0828956 0.0574459 +-0.0308908 0.0524482 -0.0143777 +0.0220365 0.0430228 -0.0147268 +-0.0499219 0.0558508 0.0334877 +-0.0315001 0.070354 0.040029 +0.0121741 0.0780107 0.0545179 +-0.040483 0.0423569 0.0419938 +-0.0438782 0.0343145 0.0294954 +-0.0243712 0.122748 0.0255975 +-0.013279 0.101966 -0.0239644 +-0.0635872 0.0445618 0.0346899 +-0.09116 0.146144 0.0251605 +0.0191385 0.125192 -0.000918824 +0.0439709 0.0776452 -0.00278508 +-0.034376 0.0448305 0.0451875 +-0.0292764 0.0508797 -0.0213979 +-0.0586802 0.148237 0.034554 +-0.0830867 0.0803012 0.027553 +0.0470243 0.0458757 -0.000608958 +-0.0124544 0.125711 -0.00519106 +-0.0316347 0.0511137 -0.0133654 +-0.0495769 0.126877 0.0317874 +0.0446953 0.0861142 -0.000824781 +-0.0164935 0.0744329 0.0555937 +-0.07397 0.135486 -0.00709777 +-0.0388049 0.0885478 -0.0231132 +-0.0738057 0.149865 -0.0338746 +-0.0612039 0.0347997 0.0427656 +-0.0248108 0.064983 0.0421327 +-0.0374965 0.120729 0.0294163 +-0.0773599 0.0940895 0.0370488 +-0.0221316 0.122996 0.0264112 +-0.0656835 0.180548 -0.0590311 +-0.0654403 0.114174 0.0440564 +-0.0576422 0.035457 -0.0105994 +0.0063341 0.0539359 -0.0303914 +-0.0624964 0.108382 0.0385383 +0.000507196 0.0474213 0.049671 +-0.0768403 0.0682209 0.0124564 +-0.0177152 0.0613627 -0.0358053 +-0.0708829 0.156323 0.0169624 +-0.0801272 0.0895173 -0.00861746 +-0.0681398 0.156014 0.0252192 +-0.0643944 0.0418449 0.0286723 +-0.0223108 0.122995 -0.00618559 +-0.0332179 0.0347336 0.0278325 +-0.0494838 0.129682 0.0301574 +-0.0874269 0.111566 0.0378689 +0.0078939 0.0373631 -0.01008 +-0.0556091 0.0372359 0.0469697 +-0.0495471 0.140136 0.00640196 +-0.0721891 0.0696552 -0.00460695 +-0.0645108 0.135348 0.0400634 +-0.00963836 0.0466527 -0.0295963 +-0.00450177 0.0856564 0.0572774 +-0.0726963 0.163825 -0.0409661 +-0.0831522 0.148677 0.0355101 +-0.0045943 0.109577 -0.0220661 +-0.0700292 0.14319 -0.0126949 +0.0170086 0.0672594 0.0509139 +-0.0184932 0.0842766 0.0574008 +0.0333985 0.0809938 -0.0187374 +-0.00658339 0.116828 -0.0157946 +-0.0830307 0.110356 0.0344756 +-0.0164574 0.11955 0.0353527 +-0.0437556 0.0335262 -0.0205177 +-0.0196754 0.180147 -0.0162801 +0.00748686 0.0427091 0.0452774 +0.047238 0.0525837 0.0312359 +-0.00150012 0.0842876 0.0575029 +-0.0647611 0.154265 0.00245101 +0.0385227 0.108358 0.00315989 +0.00616601 0.0343841 0.0199712 +0.0190967 0.127602 0.0138576 +0.0232916 0.104676 0.0408599 +-0.0209519 0.121676 -0.0087885 +-0.000475449 0.077417 0.0583222 +-0.0340577 0.0344858 -0.0194842 +-0.0449113 0.0342791 0.0293115 +-0.02963 0.125357 0.0045818 +-0.0442513 0.120873 0.0273959 +0.0233607 0.0713858 0.0478141 +0.0294074 0.0974659 -0.0171759 +-0.0251322 0.110719 -0.0192347 +-0.0168318 0.0883012 -0.0380546 +-0.0537516 0.078251 -0.0196488 +-0.0617185 0.155298 -0.026582 +0.0182327 0.0369462 -0.015679 +0.0204347 0.103384 0.043762 +-0.0271652 0.177189 -0.00775302 +-0.078183 0.161072 -0.0259393 +-0.000994284 0.0346324 -0.0168306 +-0.0369077 0.0407733 0.0449918 +-0.0117377 0.0685356 -0.0370961 +-0.0520176 0.136681 0.0271356 +-0.0244827 0.044849 0.0526821 +0.0122811 0.0490196 0.0473922 +-0.0310488 0.126128 0.0128475 +-0.0612252 0.0618413 0.0248018 +0.0110023 0.0872551 0.0546654 +0.0137177 0.0926941 0.0515916 +-0.050909 0.135812 0.0260882 +-0.0514988 0.090386 0.0447021 +-0.0776802 0.121779 0.0520726 +-0.0435045 0.0492094 0.0395536 +0.0427867 0.0445146 0.027427 +-0.0124587 0.0716774 0.0554083 +-0.0903482 0.115904 0.00630147 +-0.0676703 0.159658 -0.00956407 +-0.0534975 0.100135 0.0423919 +0.0299608 0.102103 0.0382304 +-0.0275896 0.0398384 -0.0294326 +-0.0354902 0.0576195 0.0391492 +-0.0365293 0.120277 -0.0112077 +0.000101878 0.111584 -0.0199068 +-0.0568115 0.11798 -0.012657 +-0.0134078 0.0383017 0.0160824 +-0.078485 0.131655 0.0526796 +-0.0630792 0.17626 -0.0613621 +0.00219436 0.0880897 -0.0340427 +-0.00664745 0.0511524 -0.0316637 +-0.0221856 0.122325 -0.00745001 +0.0517581 0.0684217 0.00143507 +-0.0206221 0.0450432 -0.0278804 +-0.0187788 0.181486 -0.0239544 +-0.0435029 0.119128 -0.0140097 +-0.0368374 0.0957548 -0.023046 +0.0360094 0.105316 -0.00780471 +-0.0310017 0.0339922 0.010953 +0.0468601 0.0467385 0.0270828 +-0.0800669 0.107282 -0.00460113 +0.0161405 0.0847501 0.0515574 +-0.0726437 0.152619 -0.0388965 +-0.030372 0.124909 0.019004 +-0.0532086 0.0387959 0.0470712 +-0.00947284 0.0717726 0.0568611 +-0.0417517 0.0449058 -0.0193246 +-0.0324319 0.159505 0.00208324 +-0.064273 0.0404086 0.0266782 +-0.0456914 0.0665681 -0.0150523 +-0.0317955 0.0901023 -0.0248195 +-0.0901544 0.148798 0.0121684 +-0.0448181 0.0898814 -0.0220536 +-0.00651 0.0385696 0.00453582 +-0.0505409 0.146308 0.012527 +-0.0736443 0.148637 -0.0247496 +0.0362923 0.0826461 -0.0167222 +-0.0582688 0.0380855 0.0465946 +0.0420736 0.0957824 -0.00279849 +0.059075 0.0677442 0.0201625 +-0.0118076 0.166362 -0.0213381 +-0.0293882 0.0593157 -0.02241 +-0.00750084 0.0688979 0.0559719 +-0.0834808 0.0763288 0.0055122 +0.0455463 0.0847945 0.0181695 +-0.0853379 0.139291 0.0436042 +-0.0127384 0.0714338 -0.0383051 +0.0288553 0.119043 0.000370228 +0.0382387 0.108322 0.00216703 +-0.0854254 0.147285 0.0350057 +-0.0290239 0.0918566 -0.0266024 +-0.089435 0.0996945 0.016394 +-0.0250572 0.0379934 0.0230062 +-0.0659224 0.108105 -0.0137141 +-0.0197383 0.064191 -0.0362126 +0.0332406 0.0828224 -0.0189128 +-0.050463 0.0627793 0.0338697 +-0.00332118 0.0928352 -0.0344367 +-0.0351624 0.0344214 0.0133327 +0.0337894 0.103744 -0.0118635 +-0.0685313 0.0435239 0.00368786 +-0.0915175 0.140609 0.0191776 +-0.0763247 0.0679089 0.0110614 +-0.0293662 0.0904135 -0.0285737 +-0.0268485 0.0931277 -0.028596 +-0.0493167 0.137038 0.00442458 +-0.0607789 0.121227 0.0419471 +-0.0167795 0.0984818 0.0458118 +-0.0218018 0.0947992 -0.0305488 +-0.0933659 0.118725 0.0133024 +-0.0263107 0.0780916 0.0488984 +-0.0689525 0.144454 -0.0174142 +-0.0698503 0.0980241 -0.015524 +0.0377251 0.0602627 -0.00973714 +-0.0616079 0.160003 -0.0285892 +-0.00362249 0.0451016 -0.0279234 +-0.0658161 0.0866791 -0.018673 +-0.0898976 0.132262 0.00523931 +-0.014426 0.0383347 0.0104075 +-0.0891789 0.14342 0.0311627 +-0.0516305 0.0633366 -0.0105425 +0.0421385 0.102872 0.00916356 +-0.073056 0.163825 -0.0399663 +0.0142799 0.0695538 -0.0310885 +-0.0191804 0.172724 -0.0156293 +-0.0111853 0.109046 -0.0214904 +-6.48961e-05 0.130222 0.00105503 +-0.037907 0.0368934 -0.0113278 +-0.0778791 0.116346 -0.00545689 +-0.0353032 0.042242 0.0460623 +-0.0732356 0.176411 -0.0530886 +0.0601048 0.0608967 0.00715985 +-0.052965 0.0595916 0.0265588 +-0.0564973 0.0762116 0.0428205 +-0.034872 0.104274 -0.0209307 +-0.058681 0.0336414 -0.0106847 +-0.082997 0.0883523 -0.00560613 +-0.0901456 0.140633 0.0231701 +0.059772 0.0594746 0.00715469 +0.0315129 0.0439606 0.0299133 +-0.0749354 0.108383 0.0378851 +-0.0718123 0.0950995 -0.0154446 +-0.017311 0.117579 -0.0145168 +-0.0492219 0.145089 -9.42983e-05 +-0.0492467 0.0335224 -0.00684693 +-0.077013 0.157587 -0.0116646 +-0.0395098 0.12077 0.029092 +-0.0676415 0.155906 0.0108585 +-0.0115046 0.0688083 0.054897 +0.00350877 0.068881 0.0557692 +-0.00832726 0.0349131 -0.024554 +0.00623924 0.0754282 -0.0343629 +-0.0601994 0.14968 0.0358889 +-0.0681006 0.0726203 0.0368546 +-0.0550659 0.154073 0.0197239 +0.0220423 0.0388246 -0.00567731 +-0.050633 0.0633988 -0.0111763 +0.0262673 0.0718723 -0.0242084 +0.00651709 0.084208 0.0565081 +-0.0508195 0.0927229 -0.0217389 +-0.0823617 0.110377 0.0328225 +-0.0443307 0.0345511 0.0362271 +-0.0664541 0.159015 -0.0105538 +-0.065725 0.180452 -0.0578644 +-0.00729397 0.0383333 0.0172997 +-0.083856 0.108875 0.00233606 +-0.0531754 0.160014 0.00733632 +-0.0617546 0.0335347 0.00511487 +-0.0436843 0.0666417 -0.0153695 +-0.0475053 0.16079 0.00736091 +0.0213151 0.0393899 0.0411211 +-0.0126085 0.0434839 -0.0264186 +-0.058072 0.135467 -0.00577889 +-0.0144744 0.0573903 0.0514423 +-0.0480757 0.15465 -0.00633475 +-0.0214326 0.158913 -0.0108411 +0.0317035 0.0927362 -0.0181479 +0.0258633 0.0505634 0.0389033 +-0.0916556 0.116096 0.0323166 +-0.0344737 0.0973629 0.0436701 +-0.0772898 0.158355 -0.013903 +0.00252455 0.078679 0.0567626 +-0.0768599 0.0852186 -0.0125783 +0.00638417 0.060281 0.0547831 +0.00351108 0.067509 0.0559028 +-0.0775506 0.172738 -0.0395384 +-0.0941076 0.120125 0.0222927 +0.0397169 0.0400457 0.0217023 +-0.00993012 0.125562 -0.00707028 +0.0207467 0.0387687 0.0412277 +-0.0770466 0.0947961 -0.0125384 +-0.0208658 0.163381 -0.0161046 +-0.0194871 0.0786419 0.0560662 +-0.00848562 0.0978428 0.0521021 +-0.00195749 0.0369571 0.00873581 +-0.0554658 0.14959 0.0286413 +-0.0613355 0.171315 -0.0617342 +-0.0405058 0.060576 0.0408455 +-0.019245 0.0381493 0.0168345 +0.0318352 0.0959581 -0.0155753 +-0.0894336 0.0956291 0.0144221 +-0.0562826 0.138192 -0.0042334 +-0.0587859 0.118384 0.0394982 +0.0557398 0.0577143 0.000186064 +0.021293 0.0347861 0.0208687 +-0.0521809 0.0564969 0.0230721 +-0.088994 0.140671 0.0361625 +-0.0626529 0.0336856 0.0101657 +-0.0346997 0.0808739 -0.0236048 +-0.0740754 0.0791322 0.0370556 +0.0424523 0.0958497 0.0251568 +0.0156501 0.129207 0.0125793 +-0.0758074 0.0766216 0.033593 +-0.053977 0.0335099 0.00491422 +-0.049617 0.115589 0.0334474 +-0.0151821 0.115592 -0.0164315 +0.0198002 0.113601 -0.0144182 +-0.0297803 0.0833036 -0.0335871 +-0.0888224 0.0929368 0.0224135 +-0.0255078 0.162179 -0.0150106 +-0.0468796 0.105628 -0.0200508 +0.0328144 0.0654355 -0.0177831 +0.0401246 0.0657991 0.0315825 +-0.0619246 0.161563 -0.0295917 +-0.0336612 0.0423072 0.0487868 +-0.0806782 0.140364 -0.00279029 +-0.0575747 0.034031 0.0251021 +-0.00250061 0.0856648 0.0572816 +-0.051497 0.0776631 0.0434639 +-0.0314085 0.177247 -0.00418119 +-0.0382796 0.035429 0.0243806 +-0.0273926 0.0381858 0.00428469 +-0.0590133 0.128179 -0.00718347 +-0.059761 0.058524 0.00837605 +-0.089717 0.142036 0.0301646 +-0.0708787 0.0634588 0.0196178 +0.017237 0.0368135 -0.0176915 +0.0283981 0.0848865 0.0446615 +0.042292 0.0669509 0.0276386 +-0.0400442 0.15362 -0.00816685 +-0.0666868 0.15458 -0.000433214 +0.00520355 0.0894816 -0.0332282 +-0.0438381 0.033833 0.0263899 +-0.0863798 0.100827 0.00341316 +-0.0560788 0.154579 -0.00133297 +-0.0130807 0.0387897 0.0319484 +0.0526374 0.0710929 0.00470311 +0.0114966 0.0923286 0.0527326 +-0.0637555 0.0336685 -0.00625178 +-0.0475689 0.0432884 -0.0109341 +-0.0725775 0.0367142 0.00725292 +-0.0374892 0.112529 0.0350998 +0.0350676 0.0395586 0.0248293 +-0.031508 0.0675059 0.0394967 +0.0422807 0.0831292 -0.00677447 +-0.0617624 0.0810326 -0.0192317 +-0.0601798 0.155861 0.0135147 +-0.0160151 0.185636 -0.0207096 +-0.0495589 0.141679 0.00640064 +0.0451001 0.0791381 0.000209359 +-0.00648871 0.115533 0.0401374 +-0.0179936 0.034905 0.0502652 +-0.0345243 0.0619374 0.0399691 +0.0253647 0.107408 0.0385761 +0.0241683 0.0795725 0.0490812 +-0.076883 0.154198 -0.00789596 +-0.022619 0.0436731 -0.0285417 +0.0302544 0.115002 0.0294335 +-0.0112354 0.0407042 0.0501624 +-0.0374964 0.118015 0.0312717 +-0.0264155 0.169752 -0.0102811 +-0.0325172 0.115309 0.0332233 +-0.0883434 0.0968836 0.00640652 +-0.0074894 0.104457 0.0437929 +-0.0122029 0.0391189 0.0354325 +0.0605626 0.0609358 0.0161739 +-0.0291057 0.0349617 0.0478282 +-0.00632683 0.0367419 -0.0160833 +0.0422139 0.06433 -0.00247442 +-0.0834639 0.0815548 0.0279962 +-0.091428 0.113787 0.018961 +-0.0164849 0.0911174 0.0558291 +-0.0521483 0.153554 0.0122178 +0.0344074 0.0446243 -0.00536213 +-0.09232 0.126938 0.0302595 +-0.0718881 0.12088 -0.00850233 +-0.0769692 0.155214 0.0250641 +-0.0847077 0.140411 0.00224002 +-0.0180254 0.171268 -0.0157212 +0.0102822 0.065327 -0.0312772 +-0.0271732 0.171194 -0.0185934 +-0.0475224 0.0587349 0.0366732 +-0.0815066 0.0980245 0.032594 +-0.0287322 0.0335484 -0.0250427 +0.000965074 0.0348235 0.00577003 +-0.0874433 0.114073 0.0447649 +-0.0745611 0.163685 -0.0159572 +-0.0504998 0.0931897 0.044287 +0.00144942 0.127679 0.0289378 +-0.0830551 0.128552 0.0515383 +-0.0537303 0.0473713 0.0135851 +-0.0226958 0.0380494 0.0144148 +-0.0698996 0.147518 -0.0298062 +-0.0374978 0.0833038 0.0438252 +0.0144108 0.118463 -0.013667 +-0.0810085 0.1097 0.0318734 +-0.0883068 0.151437 0.0121831 +0.0014962 0.114186 0.0411808 +-0.0457512 0.0782542 -0.0192962 +-0.0728503 0.107163 0.0374416 +-0.0546426 0.0335759 -0.00981752 +-0.0905935 0.133662 0.00922276 +-0.0777368 0.158322 -0.016916 +0.0333249 0.108715 0.0307644 +-0.0758319 0.0675199 0.00554661 +-0.0608714 0.0385134 0.0195368 +-0.0766234 0.167356 -0.0265012 +0.0324864 0.115764 0.0245556 +-0.051601 0.149349 0.0154046 +-0.0370133 0.1227 0.0269929 +-0.0556554 0.124247 -0.00722427 +-0.0272643 0.118767 -0.0116611 +-0.0284876 0.0660147 0.0384689 +-0.0890493 0.136506 0.0262024 +0.0455252 0.0918117 0.00617298 +-0.0739705 0.110854 0.0450522 +-0.054929 0.0378655 -0.0109689 +-0.0211646 0.0933284 0.0517404 +-0.00865087 0.0496719 -0.030975 +0.0599111 0.0692057 0.0151972 +0.0182222 0.0631608 0.0491228 +-0.0659867 0.134061 -0.00822741 +-0.0533518 0.117447 -0.0141574 +-0.0356207 0.0519761 -0.0103771 +-0.0674828 0.0383816 0.0133921 +-0.0179472 0.0391243 0.0360362 +-0.0353932 0.0352385 0.0143534 +-0.0381912 0.168168 -0.0127822 +0.0242439 0.0994852 0.044008 +-0.0331278 0.165217 -0.0153881 +0.0419441 0.102888 0.00516309 +-0.0744413 0.0833098 0.038687 +-0.0349807 0.177 -0.00919022 +0.00950876 0.0882899 0.055046 +0.0203114 0.0607424 -0.0267183 +-0.00473829 0.0684427 -0.0355801 +-0.0293549 0.0495451 -0.022456 +0.0213555 0.0521216 -0.0251867 +-0.0608025 0.132515 0.0384279 +-0.086306 0.0981081 0.00140707 +0.0124215 0.122685 -0.01021 +0.0534041 0.0547278 -0.00176167 +-0.0725172 0.105485 0.0374705 +-0.0925573 0.125589 0.0382552 +0.023685 0.124697 0.0198268 +0.0381226 0.0574698 -0.00591549 +-0.0358756 0.107103 -0.0202685 +-0.00445554 0.112864 -0.0195829 +-0.00333512 0.125963 -0.00760181 +0.0355639 0.058664 -0.0117324 +-0.0752743 0.171989 -0.0354168 +0.0264872 0.122262 0.00520712 +-0.0911855 0.114622 0.00933636 +-0.0888501 0.102361 0.0153809 +0.0303343 0.0358493 0.0181065 +0.0388945 0.108364 0.0171641 +0.0444906 0.0861036 -0.00180248 +-0.00457845 0.0388805 0.0300129 +-0.0689372 0.126774 -0.00892675 +0.0352594 0.113795 0.0141522 +0.0379749 0.0374097 0.0109015 +0.00640925 0.0404248 -0.023654 +-0.0569156 0.112617 -0.0162683 +-0.0161127 0.0388433 -0.0124778 +-0.0568734 0.0358081 0.0462717 +-0.0852004 0.111887 0.0434561 +-0.0393334 0.174116 -0.00798067 +-0.0335527 0.156609 0.00223348 +-0.06623 0.13826 0.0429445 +-0.029146 0.168214 -0.0173005 +0.0267233 0.0347365 0.00732658 +-0.0416725 0.0607151 -0.0124173 +-0.0304675 0.175749 -0.00423829 +-0.0888241 0.114444 0.00524771 +-0.00228102 0.038771 0.0269718 +-0.0353955 0.0337248 -0.0302701 +-0.0474965 0.0862056 0.045143 +-0.0615859 0.155307 -0.0235819 +0.0506383 0.0516722 -0.00273463 +0.0335552 0.036072 0.00748554 +-0.00436077 0.12603 -0.00766771 +-0.0239599 0.182991 -0.0170658 +-0.00549985 0.07185 0.0581365 +-0.0328429 0.0972178 -0.0231932 +-0.091474 0.148846 0.0181354 +0.0336134 0.0876336 0.0416906 +-0.0614982 0.101529 0.0422258 +-0.0495014 0.0464837 0.0411417 +-0.0551395 0.054088 0.00915623 +-0.0432223 0.147486 -0.00120685 +-0.0358825 0.108535 -0.0199213 +0.00990352 0.130871 0.0175976 +-0.00150184 0.0978367 0.052434 +-0.0334203 0.0667037 -0.0174892 +0.0289827 0.0467369 -0.00766304 +-0.0555362 0.0629843 -0.00681601 +-0.0758946 0.0992374 -0.0118631 +-0.0367472 0.127095 0.0166739 +-0.0571684 0.0576767 0.00966588 +-0.0823623 0.154598 0.0188308 +-0.0905142 0.129614 0.0405398 +-0.0677394 0.0764997 -0.0160371 +-0.0201192 0.163785 -0.0165508 +-0.0132881 0.113144 -0.01784 +0.0143956 0.046307 -0.0246969 +0.0117341 0.0390743 0.0447312 +-0.0746833 0.155701 -0.000366346 +-0.069527 0.156219 -3.70248e-05 +-0.0226679 0.0341396 -0.0206509 +-0.00924422 0.0344526 -0.0182921 +-0.0276907 0.0335904 -0.024878 +-0.00470812 0.0669686 -0.0349707 +-0.024291 0.106203 -0.0224613 +-0.0142085 0.0972199 -0.0290358 +-0.0465353 0.133196 0.0100953 +-0.0245088 0.108515 0.0403619 +-0.092997 0.116043 0.0153159 +-0.0517083 0.131123 0.0322407 +-0.0456135 0.053373 -0.0104441 +-0.0345226 0.0846315 0.0427551 +-0.00735617 0.0354566 -0.0169734 +-0.0865776 0.109066 0.0163469 +-0.0436408 0.0408205 -0.0223011 +-0.0526724 0.130856 -0.00431281 +-0.0516582 0.0647811 -0.0108241 +0.0182047 0.100313 -0.0224597 +0.0445886 0.0833307 0.0241696 +-0.0749819 0.151307 -0.0268775 +-0.0846364 0.0845811 0.0264985 +-0.0452001 0.165138 -0.00833108 +-0.0791947 0.168601 -0.0366432 +-0.0848581 0.120613 -0.00298955 +0.0319638 0.0780558 -0.0197042 +-0.0923737 0.128196 0.0102559 +0.0394261 0.0716433 -0.0107927 +0.0122035 0.115305 -0.0162457 +-0.0229162 0.0383263 0.00143492 +0.0428254 0.0986969 0.0191637 +0.0153612 0.0463061 -0.0243571 +-0.00764709 0.0511598 -0.0317878 +-0.0853621 0.135278 0.0465646 +-0.0829375 0.116994 0.0487646 +-0.085028 0.100559 0.0275605 +-0.0219183 0.0382906 0.00166561 +-0.0765591 0.0818865 0.0366215 +0.0417584 0.0971928 -0.00282344 +-0.064598 0.141073 0.0399979 +0.0464507 0.0764566 0.0101865 +-0.0788399 0.114858 -0.00418456 +-0.0825062 0.110166 0.000353593 +0.029005 0.0699505 0.0419019 +-0.0144969 0.0814706 0.0569355 +0.0278524 0.115393 0.0316598 +-0.0742949 0.17555 -0.0422185 +-0.0749686 0.158241 -0.0259415 +-0.0378653 0.102824 -0.0209313 +-0.0110297 0.11443 -0.0172182 +0.0092913 0.0739064 -0.0330363 +0.0274028 0.0416284 -0.00496361 +-0.0105374 0.130025 0.0158825 +-0.0530895 0.0530892 -0.00643833 +-0.0165413 0.0573347 0.0511714 +0.0165193 0.125294 -0.00303164 +-0.080526 0.109264 0.0359357 +-0.0639459 0.153257 -0.00670123 +0.0199666 0.126684 0.0198751 +0.0426813 0.101508 0.00916223 +0.0270307 0.0781852 0.0461538 +0.00819303 0.0342719 -0.00156322 +-0.0758021 0.154133 0.0299324 +0.0217183 0.114203 -0.013082 +-0.0761724 0.154401 0.00198863 +0.0253655 0.0814952 -0.0244829 +-0.0357817 0.0871994 -0.0240994 +-0.0181797 0.178658 -0.0176382 +-0.018211 0.0697307 0.0537615 +-0.0393811 0.154717 -0.00895732 +-0.014508 0.0659228 0.0537042 +-0.0294961 0.104302 0.0413374 +-0.0281692 0.171188 -0.018077 +-0.0564789 0.0833746 0.0446901 +-0.0817321 0.120346 0.0490739 +-0.0180945 0.124042 -0.00530863 +-0.0722448 0.0688588 0.0287217 +-0.064637 0.0404566 0.0276669 +-0.0642686 0.171043 -0.0609844 +-0.00150003 0.0520299 0.0541649 +0.0343966 0.0968432 0.0376227 +0.033587 0.0739599 -0.0167921 +-0.0916761 0.122705 0.00729331 +0.0435692 0.0691645 0.0259965 +-0.0583799 0.0342852 0.0299739 +0.0193411 0.0593649 -0.0271573 +-0.0630027 0.145885 -0.0118617 +-0.0492939 0.133961 0.00142725 +-0.0445641 0.0405033 0.0438121 +-0.0534909 0.101517 0.0419949 +-0.0137652 0.0728728 -0.0386088 +-0.000746952 0.0726633 -0.0355323 +-0.00426313 0.130924 0.016725 +-0.0833848 0.0776237 0.00250717 +0.0107457 0.127435 -0.00331768 +-0.0566099 0.136533 -0.00462162 +-0.0137664 0.0742812 -0.0386456 +-0.0253123 0.0865272 0.0518462 +0.0391332 0.0800655 -0.0117735 +-0.0595022 0.0987448 0.042776 +-0.031899 0.0792306 -0.0315346 +-0.074881 0.117904 -0.00727699 +-0.0755718 0.165165 -0.0201548 +0.0408155 0.0939721 0.0292858 +-0.0854938 0.096523 0.0281673 +-0.0644931 0.105621 0.039804 +-0.0196701 0.0554437 -0.0324495 +0.0139693 0.112639 -0.017366 +-0.00232624 0.124886 -0.00844394 +-0.0617679 0.0824635 -0.0193558 +-0.0599121 0.0588939 0.00621161 +-0.0826266 0.146034 0.0392943 +-0.0649084 0.165706 -0.0272764 +-0.0602113 0.0697286 0.0375341 +-0.00175042 0.0897209 -0.0353687 +-0.0275054 0.107176 -0.0215083 +-0.062122 0.0429616 0.0266943 +0.032428 0.0625798 -0.0177725 +-0.0663881 0.0677373 0.0326703 +-0.02076 0.0347198 -0.0277376 +-0.0519381 0.0597689 0.0297286 +-0.0595413 0.0582322 0.0158865 +-0.0445568 0.151229 -0.00569012 +-0.0210951 0.12531 -0.000542597 +-0.020213 0.178617 -0.0227863 +-0.00769265 0.0388371 -0.00333188 +-0.0344924 0.09037 0.0442186 +-0.0786032 0.107051 0.0327104 +-0.0434904 0.12843 0.000929671 +-0.058473 0.115363 0.0369711 +0.045085 0.0833373 0.00221176 +-0.0384977 0.0648621 0.0416261 +-0.0407478 0.0768336 -0.0187281 +-0.0578796 0.102621 -0.0187883 +-0.0846144 0.128516 0.0502768 +0.0170529 0.075444 0.0528157 +-0.018505 0.0786406 0.056357 +-0.0752579 0.0874199 0.0393733 +0.043967 0.0636126 -0.00172463 +-0.0914628 0.146095 0.0181484 +-0.0294715 0.117536 0.0312989 +-0.0581079 0.0480417 -0.000353036 +-0.0384621 0.172216 -0.000421117 +0.0412086 0.0684033 0.0296357 +-0.0332986 0.0384796 -0.0137148 +-0.0549774 0.0335456 0.00467992 +0.00953694 0.103082 0.0459273 +-0.048193 0.133027 0.0241926 +0.00364343 0.0960341 -0.0296841 +-0.0809226 0.0926448 0.0335946 +0.0316471 0.05126 -0.00972402 +-0.0622205 0.164668 -0.0515889 +0.0257137 0.0591918 0.0440938 +-0.0116637 0.0384284 0.00907266 +0.00758624 0.0341288 -0.016561 +-0.0732628 0.0731075 0.0335988 +0.0105031 0.0347322 0.0422156 +0.0273613 0.0592959 -0.0217662 +-0.0329323 0.126815 0.00921204 +-0.0462425 0.0615364 0.0381535 +0.00735972 0.130718 0.020957 +-0.0618449 0.152018 0.0348716 +-0.0311962 0.0475489 -0.0247586 +-0.0384898 0.113893 0.0344296 +-0.0268492 0.155368 -0.00477229 +0.0138974 0.0344287 -0.0156692 +-0.0374813 0.169748 0.00157136 +-0.0892091 0.137796 0.0122163 +-0.0705026 0.0958452 0.0418601 +-0.0862013 0.10903 0.0113533 +-0.0682521 0.15944 -0.00832765 +0.038441 0.100665 0.0293761 +-0.0639313 0.11526 -0.0113233 +-0.0664444 0.151761 -0.0404644 +0.0142088 0.034798 0.0302902 +-0.0244166 0.0931902 0.0479432 +-0.0714792 0.167875 -0.0225174 +-0.0161203 0.0383572 0.000963241 +0.0282773 0.0862159 0.0445154 +0.0375 0.107296 0.0262149 +-0.0891989 0.11586 0.044703 +0.00339178 0.0433892 -0.0247833 +-0.0790801 0.0704064 0.00826811 +-0.0237813 0.0756129 -0.0382516 +0.00190837 0.124868 -0.00847893 +0.0243137 0.119818 0.0300741 +-0.0758951 0.123764 -0.00763971 +0.052991 0.0735097 0.0116286 +-0.0175974 0.0393048 -0.0277532 +-0.013784 0.0799171 -0.0389774 +0.00451197 0.0619711 0.0562284 +-0.0331612 0.0342582 0.0246899 +0.0314823 0.114431 0.0284596 +-0.0530088 0.145722 -0.00115007 +-0.0684496 0.0369814 0.0129839 +-0.0203772 0.158233 -0.00725915 +0.0148967 0.0366228 -0.0205744 +-0.0250413 0.0925197 -0.0322644 +-0.0424949 0.168218 0.00285877 +-0.0414982 0.0719267 0.042103 +-0.0939163 0.120093 0.0142993 +-0.0164902 0.112704 0.0398029 +-0.000484486 0.0703477 0.056848 +0.060415 0.0678562 0.0151973 +-0.0550635 0.116914 0.036091 +0.0200483 0.0385661 -0.0116898 +-0.0250588 0.123734 -0.00291588 +0.0403936 0.0629925 0.0301493 +0.0379656 0.0874795 0.0356781 +-0.0548923 0.105518 -0.0186699 +-0.0311396 0.166714 -0.0162904 +0.0470624 0.0740285 0.0123586 +-0.0678676 0.100922 -0.0154166 +-0.0631629 0.124137 0.0456282 +-0.0731746 0.154066 -0.0319096 +-0.0307727 0.033545 -0.0254394 +-0.0890856 0.122978 0.0464209 +-0.0236634 0.123398 -0.00459221 +0.046259 0.0820395 0.0071847 +-0.000605347 0.130433 0.0223861 +0.0192013 0.0591556 0.0487522 +-0.0498987 0.124057 -0.00910218 +-0.0170638 0.168326 -0.0143421 +0.0265398 0.104204 -0.0163559 +-0.0938575 0.120136 0.0242923 +-0.0179474 0.100123 -0.0240926 +-0.058599 0.155538 0.0184341 +-0.0170777 0.0418831 0.0522589 +-0.0545484 0.0457621 -0.00683862 +0.00723985 0.076824 -0.0341303 +-0.0907031 0.148891 0.0231421 +-0.0174825 0.107148 0.0420092 +-0.0911131 0.129682 0.0362351 +-0.0499113 0.147776 0.0118822 +-0.0657818 0.152842 -0.0413063 +0.0528515 0.0592232 -0.00323634 +-0.0693828 0.0805427 0.0408087 +-0.060108 0.0423138 0.0158374 +0.0281616 0.0699505 0.0424355 +0.00679863 0.0347495 0.0432322 +-0.0458268 0.125298 0.0247658 +-0.0567225 0.043789 0.0226896 +-4.09913e-05 0.10064 0.0465907 +-0.0729374 0.129655 -0.00843737 +0.0415013 0.104244 0.010161 +0.0342459 0.0889575 0.0408509 +-0.0808289 0.138985 -0.00281163 +-0.0425095 0.171123 -0.00130836 +-0.0870569 0.137884 0.0425258 +0.00149552 0.116934 0.0397718 +-0.0158011 0.0388262 -0.0105326 +0.00549603 0.0413259 0.0457036 +-0.0325959 0.124521 0.0211556 +-0.058912 0.109738 -0.0167726 +-0.0772259 0.151416 -0.00590086 +-0.0077735 0.0770379 -0.0376668 +0.0385932 0.0436441 0.0291648 +-0.0778914 0.162484 -0.0299302 +-0.0641074 0.0639595 0.0276548 +0.0187103 0.0342934 0.0023932 +-0.0858293 0.151702 0.00893089 +0.0336067 0.0504819 0.0325279 +-0.0810076 0.10869 -0.00259876 +-0.0557401 0.0547516 -0.00240302 +-0.0335154 0.108413 0.0382413 +-0.00564795 0.049654 -0.0307584 +-0.0765497 0.0728479 -0.00560245 +-0.00214115 0.127727 0.0291435 +-0.0701217 0.159568 -0.0479252 +-0.0794787 0.104524 -0.00660043 +0.00849938 0.0366585 0.0454484 +-0.0305059 0.0889327 0.0438397 +-0.0638439 0.101082 -0.0177706 +-0.0045041 0.0801506 0.0577231 +0.013232 0.0835986 -0.0303791 +-0.0809796 0.0788834 0.0298322 +-0.0148841 0.0959887 -0.031739 +-0.0699437 0.0669048 0.0273786 +-0.0514117 0.134659 0.0288827 +0.0105257 0.123354 0.0336723 +0.0263222 0.107421 0.038207 +-0.0125183 0.095238 0.0536312 +-0.0634853 0.0904216 0.0451002 +0.0377424 0.110293 0.0150624 +-0.0700913 0.0419644 0.00613646 +-0.0565326 0.0401709 -0.00945456 +-0.0553504 0.0460785 0.0138247 +-0.0114916 0.0759418 0.0571389 +-0.0796666 0.0886389 0.0352895 +0.0338998 0.0888046 -0.0179815 +-0.0207237 0.0567772 0.0467736 +0.0293267 0.120376 0.00767428 +-0.0865466 0.137714 0.00320362 +-0.0815177 0.106 -0.00361682 +0.0360857 0.0784054 -0.0147648 +-0.0706254 0.129856 0.0506426 +0.0309103 0.088937 0.0430941 +0.0186908 0.127724 0.0151265 +0.0607002 0.0665033 0.01416 +-0.0347226 0.0711465 -0.0183854 +-0.0475247 0.0335798 -0.00289187 +0.00330662 0.0597508 -0.0323981 +0.0162777 0.117973 -0.0131407 +0.0260142 0.118212 -0.00538239 +-0.0524983 0.0477783 0.0397646 +0.00462528 0.109546 0.0419595 +-0.0848442 0.146005 0.0372765 +-0.0568876 0.0998079 -0.0197942 +-0.0478768 0.15504 0.00962757 +0.0236771 0.0956901 -0.0213272 +-0.0909699 0.113313 0.018324 +-0.0314956 0.0560344 0.0371147 +0.0419523 0.101425 0.00119033 +-0.0205212 0.118181 0.0347958 +0.00296971 0.0341513 0.00863676 +-0.0034922 0.0473569 0.0490622 +0.0168587 0.0347265 0.0236529 +-0.00422658 0.0396088 0.0480089 +0.0402871 0.104196 0.0211608 +-0.0211382 0.0985478 0.044502 +-0.0469324 0.0383628 -0.0152843 +0.0223386 0.0578809 -0.0262309 +-0.094679 0.122825 0.0202733 +-0.00649716 0.0619561 0.0561245 +-0.0530923 0.143138 0.0243879 +0.0586666 0.0690768 0.00715872 +-0.0632884 0.0444363 0.0372932 +-0.0584087 0.0421172 0.0451764 +0.0462769 0.0649494 -0.00109094 +-0.0892011 0.0983026 0.0104143 +-0.050311 0.033406 0.00395206 +-0.0171117 0.123425 0.0297114 +-0.0067867 0.0784694 -0.0378945 +-0.0413793 0.0448727 -0.0203291 +0.00613123 0.105885 -0.0208912 +-0.0209654 0.035527 0.0525237 +0.0515169 0.0664883 0.0274059 +-0.0186581 0.0985081 0.0446525 +0.00326552 0.127077 0.029619 +0.00950248 0.111292 0.0396928 +0.0420852 0.077848 0.0291974 +-0.0404715 0.0343242 0.0319689 +-0.0775002 0.156948 -0.0139048 +-0.0828255 0.0924347 -0.00656966 +-0.0256554 0.124701 0.019279 +0.00649798 0.107134 0.0414437 +-0.0067083 0.0613544 -0.0352012 +-0.0341277 0.165212 -0.0151261 +-0.0305288 0.0353431 -0.0195833 +0.00449494 0.105757 0.0421851 +-0.0313565 0.161046 -0.00157639 +0.00317447 0.0908801 -0.0331491 +-0.066706 0.0375681 0.0351923 +0.0146203 0.128223 0.0236197 +-0.0931816 0.121543 0.0372829 +-0.0390449 0.0344196 0.0339502 +0.0204938 0.0865196 0.0494812 +-0.0909512 0.147073 0.025026 +-0.0398753 0.149194 -0.00215183 +0.0371767 0.095465 0.0345819 +-0.0534525 0.116245 -0.0149003 +-0.00912597 0.168128 -0.0227626 +0.0103593 0.0509634 -0.0286117 +0.00839042 0.0434178 -0.024623 +0.012125 0.10869 -0.0190017 +-0.0749621 0.134014 -0.00721966 +-0.0789216 0.172194 -0.0440002 +-0.0258331 0.0561399 -0.0284181 +-0.0817922 0.143171 0.000171875 +0.0451306 0.0647669 -0.000900002 +-0.0514821 0.113924 -0.0164877 +0.00371763 0.0346901 0.0426483 +-0.0475701 0.0461114 -0.0100167 +0.0406981 0.104234 0.0181671 +-0.0453678 0.060156 0.0387657 +-0.0314314 0.0693522 -0.0254564 +-0.0154911 0.0702181 0.054969 +-0.0300755 0.123175 0.0220771 +-0.0216491 0.0479362 -0.0281524 +-0.0507589 0.144713 0.0133585 +-0.0670917 0.155954 0.0255845 +-0.0852375 0.1104 0.00532111 +-0.0573508 0.121267 0.0398601 +-0.0261065 0.0944666 -0.0262366 +-0.0897054 0.124293 0.0455762 +-0.000486036 0.047441 0.049521 +-0.0438029 0.167379 0.00334272 +0.0111963 0.0864748 -0.0310924 +0.0464517 0.0750534 0.00718936 +-0.036486 0.0619956 0.0409573 +-0.0314993 0.116609 0.0322344 +-0.0544997 0.117303 -0.0139925 +-0.0420673 0.0336103 0.00544111 +-0.0856626 0.0912736 -0.00055353 +-0.050495 0.0974075 0.0440057 +0.0309311 0.0355864 0.0055308 +0.0202177 0.109327 -0.0158556 +0.0249428 0.0968855 0.0450153 +-0.00751 0.070341 0.0568254 +-0.0604012 0.0335984 -0.00916237 +0.0245092 0.0406191 -0.00557292 +-0.0451779 0.152141 0.00822921 +-0.0607654 0.0668786 0.0346016 +-0.0593188 0.114075 -0.0145597 +-0.091214 0.143385 0.025163 +-0.0425978 0.0505652 -0.0109174 +-0.0423266 0.169779 -0.00887745 +-0.0224756 0.0348012 0.0476768 +0.0409735 0.0405135 0.0215425 +-0.0801239 0.110623 0.0438367 +-0.0138651 0.0987904 -0.0246748 +-0.043573 0.126043 -0.00725208 +-0.0208606 0.101617 -0.0238418 +-0.0425016 0.0605517 0.0404213 +-0.00249479 0.0590139 0.0541301 +0.0409984 0.102803 0.000176721 +0.0342014 0.0808856 0.0407312 +-0.0247835 0.166781 -0.00970724 +0.00931572 0.0725689 0.0556419 +-0.0642124 0.145356 0.038849 +-0.0716272 0.0748459 -0.0119866 +-0.012533 0.0458468 0.048979 +-0.0741728 0.15268 -0.0288898 +-0.0211868 0.174176 -0.0217698 +-0.054499 0.0761691 0.0426143 +-0.0851934 0.11068 0.0373035 +-0.00964195 0.120097 -0.0132573 +0.0149745 0.129329 0.00806984 +-0.0535552 0.0335918 0.0121227 +0.0387224 0.1084 0.018173 +-0.0858928 0.108988 0.00834067 +0.00426552 0.0697141 -0.0335935 +0.0304509 0.117992 0.000957505 +-0.0134723 0.0603845 0.0536243 +-0.0809665 0.133877 -0.00363658 +-0.0877284 0.0950339 0.0247524 +-0.0708769 0.155921 0.00969704 +-0.0388302 0.173903 -0.00342781 +0.0123125 0.0680946 -0.0309662 +-0.0540561 0.150161 -0.00256907 +-0.0662654 0.129803 0.0463681 +-0.0481341 0.0344887 0.0319692 +-0.0482356 0.137094 0.0133979 +-0.0638562 0.148524 -0.023921 +-0.0873971 0.140576 0.0399568 +-0.0920359 0.126943 0.0332532 +0.00766079 0.0616753 0.0549139 +-0.0820513 0.0882817 -0.00662822 +-0.0583711 0.0614813 0.0257087 +-0.046355 0.0345569 0.0357917 +0.0473411 0.0488863 -0.00367878 +0.0292435 0.0637114 -0.0199317 +-0.0250309 0.172718 -0.0117738 +0.0423872 0.0459654 -0.00393846 +-0.0484976 0.0805051 0.0439961 +-0.0497297 0.0737805 -0.0165746 +0.0463736 0.0682111 0.00160519 +-0.0334339 0.166782 -0.00461644 +-0.0772978 0.0685904 0.0138065 +-0.0645607 0.153661 0.00110457 +0.00849221 0.108496 0.0406568 +-0.0554287 0.1598 0.000101402 +-0.0412715 0.127285 -0.00254236 +-0.080968 0.0967089 0.0335048 +0.0225187 0.123964 0.0251042 +-0.0559057 0.0379831 0.047068 +-0.0594802 0.0716799 0.0395512 +-0.0618223 0.170491 -0.0617288 +-0.0564955 0.104323 0.0414899 +-0.0810442 0.152541 0.00426923 +-0.0435828 0.0345782 0.0398547 +0.0126008 0.128196 0.0257553 +-0.0526679 0.0579784 0.0235498 +0.0380115 0.110174 0.0108643 +0.0150842 0.114728 -0.0156323 +0.0148813 0.0348012 0.0286151 +-0.0479877 0.121051 0.028756 +-0.0883678 0.128089 0.00227451 +-0.0720422 0.15541 -0.0389078 +0.0112474 0.0724264 -0.0317987 +0.0267956 0.111385 0.0354031 +-0.0649586 0.160381 -0.0157887 +0.00550295 0.0702783 0.0558582 +-0.0238067 0.0899629 -0.0356649 +-0.090988 0.113988 0.0207121 +0.0194892 0.0934174 0.0476186 +-0.0655537 0.161293 -0.0160037 +-0.0625236 0.0609176 -2.19725e-05 +-0.0491589 0.162483 -0.00556124 +-0.042649 0.0378778 -0.0263104 +0.00374161 0.0952291 -0.0308324 +0.025598 0.0610493 -0.0236458 +0.00942462 0.0375116 -0.02327 +-0.00136682 0.125668 -0.00729488 +0.008486 0.0532759 0.0521458 +-0.00749086 0.0675042 0.0558082 +-0.092697 0.117351 0.0113077 +0.0251837 0.112665 -0.0114294 +-0.04997 0.140123 0.00440621 +-0.0534339 0.040168 0.0467985 +-0.0936376 0.124116 0.0132691 +-0.0222759 0.0382517 0.00526325 +0.0600635 0.0664445 0.00913698 +-0.0224559 0.092554 -0.0342812 +0.0582887 0.0538074 0.00917936 +0.046059 0.0834308 0.0121726 +-0.0619009 0.0678892 0.0352357 +-0.0566658 0.0473318 0.0108617 +-0.0457003 0.0694971 -0.0160523 +-0.0618544 0.174099 -0.0565963 +-0.0498016 0.128288 0.0314623 +-0.0225807 0.159177 -0.00302445 +-0.0623624 0.16436 -0.0595797 +0.0383958 0.0505315 -0.00659356 +-0.0332433 0.126938 0.0135159 +-0.0454819 0.0875316 0.0441596 +-0.0835389 0.110217 0.0023021 +0.0386074 0.0617702 0.0328492 +-0.0407686 0.0811968 -0.0203079 +-0.033827 0.0901076 -0.0243377 +0.0506567 0.0703381 0.00346635 +0.0228724 0.125195 0.0195238 +-0.0187529 0.0384803 -0.00337678 +0.0222732 0.12205 0.0293193 +-0.0294959 0.0645466 0.0380401 +-0.0689565 0.166538 -0.0215879 +-0.00506288 0.0387211 0.00101779 +-0.0647592 0.169439 -0.0415812 +0.00438439 0.037904 -0.00378653 +-0.0241621 0.125878 0.0168174 +0.0359934 0.0685324 -0.0147875 +-0.0182052 0.0381955 0.0170088 +-0.0753414 0.15612 0.015399 +0.0453867 0.0413474 0.00824507 +-0.00449218 0.123763 0.0343217 +0.0460213 0.0862262 0.00917159 +0.0346496 0.0972102 -0.0129196 +0.0196844 0.126554 0.00410284 +0.0202619 0.12651 0.00572713 +-0.00449958 0.0504123 0.0519892 +-0.0899789 0.133805 0.0362152 +0.00988218 0.0886651 0.0547874 +-0.00395268 0.131078 0.00966125 +0.00346471 0.0977538 0.051238 +-0.0236164 0.0422618 -0.0289626 +-0.0253603 0.124214 -0.00135534 +-0.00744498 0.124256 -0.00972454 +-0.0577765 0.0494102 0.000630355 +-0.0321623 0.172645 -0.015639 +-0.0661377 0.0669804 0.0316196 +-0.0240269 0.158277 -0.0107707 +-0.0762359 0.113613 0.0494664 +-0.0849952 0.141833 0.00418636 +-0.0569251 0.0366412 0.0466659 +-0.0283222 0.0749245 0.042497 +0.0216856 0.0878179 -0.0250022 +-0.0866951 0.0951098 0.0265657 +0.0296006 0.0982071 0.041203 +-0.0630317 0.060472 0.0203248 +-0.0304883 0.0574252 0.0370157 +-0.0638466 0.159519 -0.0168205 +-0.0544959 0.0848124 0.0452537 +0.0243406 0.113099 -0.011895 +-0.0900837 0.117534 0.0447346 +-0.00144097 0.0378708 0.018909 +-0.0699808 0.136988 -0.00795948 +-0.0823654 0.0815422 -0.00354068 +-0.00681555 0.0385421 0.0244437 +0.00431168 0.0611153 -0.0319161 +-0.0801269 0.10608 0.0309775 +0.0162329 0.0807169 -0.0293214 +-0.0158843 0.0377689 0.0515755 +-0.0829013 0.122118 -0.00412754 +0.0294673 0.106706 -0.01303 +-0.0534948 0.11254 0.0358256 +0.00150254 0.0605844 0.0560506 +-0.0234977 0.101642 0.0439992 +-0.0797566 0.074638 -0.000471413 +-0.00773143 0.0670178 -0.0355816 +-0.0705055 0.0342009 0.00809348 +0.0167377 0.0461846 0.0432665 +0.00646432 0.110948 0.0411124 +-0.0194753 0.160592 -0.0133076 +-0.00449865 0.115591 0.0404715 +0.0280707 0.046664 -0.00969251 +0.048051 0.0496945 0.0288529 +-0.0763852 0.114637 0.0504008 +-0.0886058 0.150235 0.0251076 +-0.0211531 0.0382979 0.0271326 +0.0408293 0.101363 -0.00180736 +-0.0203988 0.177179 -0.0155929 +-0.0718351 0.180364 -0.0513557 +0.00724322 0.0361893 0.0456372 +0.0124253 0.0374345 -0.0223624 +0.0378254 0.108706 0.0222481 +-0.0871672 0.127065 0.0471934 +-0.0686541 0.12565 0.0517171 +-0.0889642 0.136517 0.0281982 +-0.0304896 0.0559845 0.0366491 +-0.0839703 0.0843113 0.0284366 +-0.00895133 0.0384401 0.00779513 +-0.0942308 0.126903 0.0192529 +-0.0569855 0.0507747 0.00670607 +-0.063488 0.037094 -0.00797583 +0.0252887 0.122228 0.0247087 +-0.0433541 0.112279 -0.0167951 +-0.0255625 0.0532992 -0.0274025 +-0.00849647 0.0532799 0.0524507 +-0.0074932 0.0842694 0.0572981 +-0.0760467 0.0689134 0.00354542 +-0.0518697 0.144272 -0.000239851 +0.0302023 0.0808798 0.0437374 +-0.0276563 0.12199 -0.007026 +-0.0484978 0.100158 0.0428666 +-0.0654874 0.143443 -0.0120814 +-0.0308113 0.153953 -0.00248259 +0.0597604 0.0567164 0.0141707 +-0.0480122 0.0341726 0.0287503 +-0.0640462 0.0622661 0.0238361 +-0.0206969 0.0568414 -0.0326165 +0.0309722 0.116471 -0.00147933 +-0.0691516 0.0788347 0.0401452 +-0.058803 0.0883 -0.0207912 +0.00672447 0.0346721 0.0378883 +-0.0746893 0.154119 0.0302893 +-0.0529585 0.135327 0.0304274 +0.00863241 0.128438 -0.00238911 +-0.0478493 0.099947 -0.0217978 +-0.075086 0.0674684 0.00355063 +0.0326927 0.116394 0.0217802 +-0.0842229 0.144678 0.0395137 +-0.0166094 0.128602 0.0136868 +0.00411662 0.125005 -0.00865855 +-0.0754818 0.148362 0.0406222 +-0.065886 0.15405 -0.00011759 +-0.0425085 0.119367 0.0297171 +-0.0902093 0.131023 0.0402096 +0.0383601 0.0921445 -0.0115002 +-0.038495 0.0804525 0.0431634 +-0.0353039 0.0794833 -0.0226806 +0.0441637 0.0973591 0.0111613 +-0.0590115 0.153958 0.00054242 +0.0453728 0.0735622 0.00221503 +0.0569193 0.0710092 0.00714855 +-0.0114956 0.105842 0.0433599 +-0.0698279 0.181394 -0.0549266 +0.0375934 0.102015 0.0299178 +0.00590625 0.0356875 -0.00331654 +-0.0684622 0.16137 -0.0113077 +-0.0742229 0.109724 0.0423296 +-0.0202504 0.182971 -0.0220384 +-0.091455 0.148836 0.0171378 +0.0152238 0.0793568 -0.0300519 +-0.000512 0.107246 0.0433248 +-0.0428418 0.0971034 -0.0220359 +-0.0514947 0.0819216 0.0442721 +-0.00625132 0.0383797 0.0174726 +0.0252504 0.0789879 -0.0247523 +-0.0833347 0.0898073 0.030438 +-0.0509182 0.146274 0.0133981 +0.0202304 0.105998 0.0417108 +0.0571307 0.0508797 0.0151878 +-0.0330104 0.126012 0.0180287 +-0.0217816 0.0797281 0.0555871 +-0.00743438 0.120242 -0.0134406 +-0.0148225 0.086924 -0.0385597 +-0.0375897 0.174214 -0.00298303 +-0.00244861 0.0605864 0.0553645 +-0.00874133 0.128614 -0.000328304 +-0.00579055 0.0798611 -0.0376463 +-0.0096155 0.119132 -0.0142361 +0.000497149 0.0534577 0.0541163 +-0.0928025 0.131035 0.0222365 +0.0372258 0.108268 -0.000834485 +-0.0914674 0.129551 0.00825277 +-0.00149557 0.0675596 0.0566557 +0.0154848 0.0548588 0.0485877 +0.0396568 0.0815034 -0.0117853 +0.0174985 0.119533 0.0343583 +-0.0108678 0.0975625 -0.0293851 +0.0264007 0.116693 0.0313169 +0.005469 0.0964333 0.0520715 +-0.0455856 0.128182 -0.00140207 +-0.0175003 0.0499225 0.0470061 +-0.075934 0.0788992 0.0351468 +-0.0067913 0.0812637 -0.0377236 +-0.0769778 0.155918 0.0162848 +-0.0797877 0.0746142 -0.00147983 +-0.0599651 0.0469723 0.0336736 +0.0382386 0.084194 -0.0147697 +-0.0816947 0.113482 0.0465399 +0.00634478 0.0524665 -0.0299091 +-0.0112874 0.182441 -0.0284978 +-0.026226 0.178551 -0.0179991 +-0.0739945 0.1802 -0.0521965 +0.0105211 0.104445 0.0448284 +0.0580719 0.0523893 0.015182 +-0.0525108 0.0819776 0.0447141 +0.0148643 0.0961115 -0.0237665 +-0.00147854 0.0474532 0.049375 +0.00669444 0.0340637 0.00205518 +-0.0753884 0.151441 -0.0109145 +0.0413586 0.0394374 0.00625535 +-0.0196125 0.0381064 0.0149924 +-0.00986994 0.104508 -0.0232523 +-0.0720157 0.145244 -0.0182167 +0.0416371 0.0669849 0.0284796 +0.0284741 0.0381475 -0.00163189 +0.0474976 0.06778 0.0262203 +0.0259166 0.0434925 0.0371741 +0.0464333 0.0455453 -0.00066213 +-0.00640927 0.120163 -0.0133583 +-0.0236376 0.0387148 -0.0157231 +-0.092269 0.124069 0.00827163 +0.0144954 0.119572 0.0352389 +-0.0702988 0.15533 -0.0489684 +-0.0882036 0.143298 0.0111345 +-0.074863 0.0795889 -0.0115995 +-0.0174424 0.10313 -0.0232301 +-0.0686182 0.0628687 0.0026871 +-0.0620712 0.16624 -0.0525885 +0.058207 0.0538058 0.0191798 +-0.0333511 0.0463754 -0.0256604 +-0.0855025 0.0832965 0.0214753 +-0.0920057 0.11611 0.0343124 +-0.0227771 0.124071 -0.00329832 +-0.0610006 0.129721 0.0398956 +-0.0404973 0.0492165 0.0395965 +-0.0481836 0.0335793 0.00422402 +-0.0654948 0.160255 -0.0145439 +0.00736856 0.0479637 -0.0273222 +-0.0123571 0.12972 0.0137799 +0.0579783 0.0551346 0.00616127 +-0.0164763 0.064491 0.0530345 +-0.0608155 0.0896295 -0.0193008 +-0.0205289 0.0958269 0.048234 +-0.086716 0.132512 0.0465811 +-0.052836 0.095613 -0.0220115 +0.0406946 0.0647331 -0.00578164 +0.0121697 0.0950562 -0.0266386 +-0.00950093 0.0925586 0.0561384 +-0.0157375 0.0671877 -0.037968 +-0.0269293 0.0376983 0.0192799 +0.033595 0.0660055 0.039722 +-0.0481741 0.135565 0.0182752 +-0.0224128 0.163867 -0.00803238 +0.00810708 0.101446 -0.0211916 +-0.0458977 0.166944 -0.00688513 +-0.0238738 0.105835 -0.0226784 +0.0272653 0.121002 0.0240179 +-0.0701585 0.0623473 0.0172092 +0.0578867 0.0607943 0.0238444 +0.0565638 0.0695327 0.00435815 +0.012216 0.0753282 0.0545969 +-0.0583609 0.0339112 0.0215144 +-0.0664905 0.0861274 0.0441111 +-0.0514869 0.0987554 0.0433116 +0.0210708 0.0349944 0.0242708 +-0.0102986 0.126308 0.029096 +-0.0638201 0.089594 -0.0189434 +-0.0782747 0.174383 -0.0433933 +-0.0311143 0.16374 -0.0152454 +-0.0915885 0.128321 0.0362439 +-0.0379874 0.0336299 0.0062497 +-0.0854294 0.151325 0.0282936 +0.0124994 0.0909598 0.0531045 +-0.0434452 0.120253 -0.0131867 +0.0229768 0.0754886 0.0490742 +-0.0334786 0.100129 0.0429194 +-0.0741118 0.0819105 0.0384161 +0.0373216 0.0901862 0.036514 +-0.0565657 0.11693 0.0374284 +0.00334719 0.0481602 -0.0292882 +-0.0324526 0.0336078 -0.0239554 +0.0083446 0.116042 -0.0170347 +-0.00977658 0.0387467 -0.00366788 +-0.0206679 0.0509474 -0.0298149 +-0.0242736 0.181474 -0.0180054 +0.0160525 0.0350115 0.0395034 +-0.0543014 0.146215 0.0264084 +-0.00102573 0.0346607 0.0434939 +-0.0611888 0.155469 0.00589931 +-0.0406241 0.0520111 -0.0110025 +-0.0705109 0.148356 0.0407257 +0.0495286 0.0610841 0.0304744 +-0.019145 0.0893155 0.0554734 +0.00268229 0.12726 -0.0050686 +-0.0743228 0.155495 -0.0229079 +0.021268 0.0762952 -0.0266753 +-0.0239356 0.0374925 -0.0183912 +0.0262803 0.0660857 -0.0226574 +-0.0164998 0.0856439 0.0570811 +-0.0857415 0.120359 0.048887 +-0.0344903 0.0505305 0.0383369 +0.00230798 0.0346028 0.0406387 +-0.0929029 0.129672 0.0252445 +-0.0654938 0.0604629 0.00727621 +0.044722 0.0833037 0.0012072 +-0.0230106 0.0580182 0.0433839 +-0.0105663 0.0350401 0.0482738 +0.0582293 0.0690671 0.00613614 +-0.0600127 0.131125 -0.00733582 +-0.0321751 0.162395 -0.00280539 +-0.0555013 0.0623754 0.0293782 +-0.0252415 0.109687 -0.0201254 +-0.0560506 0.150155 -0.00188433 +-0.0600649 0.129705 0.039485 +0.0338293 0.0767952 -0.0167877 +0.01215 0.0919974 -0.0294248 +-0.0346452 0.0340944 0.0173387 +-0.050492 0.149246 0.012837 +-0.0550682 0.150156 -0.00218973 +-0.00881167 0.085499 -0.0379404 +-0.0780101 0.11134 -0.00369811 +-0.0795926 0.100727 0.0334268 +-0.0423449 0.122373 -0.0114097 +0.0248097 0.124191 0.0159771 +-0.0174692 0.0529782 0.0491698 +-0.0889728 0.101008 0.0133925 +0.00851959 0.0730626 0.056014 +-0.026729 0.159626 -0.000161004 +0.0222613 0.0720727 -0.026869 +0.0396492 0.0970274 -0.00677557 +-0.0301141 0.166809 -0.00684471 +-0.00834781 0.129635 0.0224773 +-0.0198097 0.0813191 -0.0390949 +-0.0489315 0.137078 0.0173942 +-0.0161123 0.0985355 -0.0244159 +0.0331161 0.0795687 -0.0187107 +-0.0365028 0.0761422 0.0420368 +-0.0315196 0.0834471 -0.0305496 +-0.0366299 0.0534085 -0.0105028 +-0.0844928 0.0979861 -0.00258986 +-0.049695 0.0693575 -0.0143663 +-0.0795053 0.148405 0.0389114 +-0.0143105 0.0338147 -0.022462 +-0.036834 0.0382539 -0.0105119 +-0.0528967 0.0476266 0.0236645 +-0.0431625 0.0436516 -0.0173214 +0.0442909 0.0959534 0.0041727 +-0.0499053 0.141681 0.0133989 +-0.084567 0.0897523 0.028848 +-0.035736 0.0740102 -0.0187661 +-0.0624191 0.163107 -0.0445959 +0.0553692 0.0711293 0.0213817 +-0.0384984 0.0634699 0.041507 +-0.0420929 0.156178 -0.00917116 +-0.0641565 0.166823 -0.0341745 +-0.0623968 0.162983 -0.056654 +0.0276466 0.0659543 0.0434322 +0.0454314 0.088986 0.0031764 +-0.0749519 0.164602 -0.018207 +-0.0345505 0.175605 -0.011982 +0.0363374 0.104678 0.0298648 +-0.00375231 0.128091 -0.0038931 +-0.0305006 0.100206 0.0434038 +-0.00849625 0.0547108 0.0528122 +-0.0485842 0.0517801 -0.00897412 +-0.00451507 0.0519264 0.0531932 +-0.0815948 0.0748474 0.0175368 +0.0572159 0.0648465 0.024658 +-0.0403921 0.162356 0.00287494 +-0.0749222 0.126715 -0.00818803 +-0.047238 0.0346371 0.0407654 +-0.0621416 0.141343 -0.00629843 +-0.0251564 0.113713 -0.0163747 +-0.00855727 0.119157 -0.0142712 +-0.074494 0.126019 0.0529923 +-0.0205102 0.0461853 0.0521703 +-0.084864 0.0789836 0.0191297 +-0.0187649 0.125661 -0.000995534 +-0.0218427 0.0567021 0.0450804 +-0.0622179 0.153696 -0.0295936 +-0.0364968 0.0576627 0.0395237 +-0.0368019 0.127806 0.00485952 +-0.0770975 0.0967852 0.0367 +-0.000433486 0.0366062 0.0184413 +0.0131024 0.123925 -0.00754958 +-0.0177683 0.0383192 0.0242073 +-0.0655356 0.0398001 0.0300899 +-0.0778591 0.161105 -0.0269202 +-0.0341012 0.162237 -0.0142117 +-0.017501 0.0842912 0.0575736 +-0.0280973 0.16079 -0.0140776 +-0.0421185 0.122004 0.0266511 +-0.0142563 0.178628 -0.0276625 +-0.0440063 0.0629698 0.0401358 +0.0128613 0.0347903 0.0336338 +-0.0248532 0.0348299 0.0453939 +-0.00152849 0.105863 0.0439958 +-0.0346038 0.123422 0.0248791 +-0.0346304 0.079471 -0.0235463 +-0.0639625 0.126764 -0.00871214 +0.0364026 0.0547846 -0.00674979 +-0.0064883 0.123768 0.0340789 +-0.0470974 0.168427 -0.00297818 +-0.0575443 0.0401418 -0.00909914 +0.0257874 0.0895854 -0.0228249 +0.0183006 0.0383341 -0.0177245 +-0.0524963 0.0848256 0.0453696 +0.0561175 0.0494119 0.0111925 +-0.0588172 0.123244 -0.00816875 +-0.00922198 0.0384881 0.0221926 +-0.0331235 0.126633 0.00621772 +-0.0119418 0.120727 -0.011899 +-0.0607049 0.145387 0.0368926 +-0.0306093 0.125854 0.0144859 +-0.0356146 0.127659 0.0111781 +-0.0776104 0.0802915 -0.00928059 +-0.0702074 0.0394853 -0.000301673 +0.0434891 0.0583702 0.0316051 +-0.0789513 0.128091 -0.00607242 +-0.042519 0.0534194 0.039352 +-0.00449744 0.0939058 0.0556112 +-0.0094927 0.0619497 0.0558121 +-0.0694824 0.0944579 0.0422945 +-0.0771177 0.0879695 -0.0126012 +0.014854 0.103191 -0.021265 +-0.043284 0.169832 -0.00794427 +-0.00983007 0.124748 -0.00821099 +0.048512 0.0692789 0.0025489 +-0.0620323 0.0343503 0.0308946 +-0.074493 0.145596 0.0437863 +-0.0375024 0.104216 0.0394845 +-0.047499 0.0451812 0.0421654 +-0.0836103 0.0769236 0.0176347 +-0.0636092 0.170093 -0.0469941 +-0.0483594 0.137097 0.0143972 +-0.087232 0.102325 0.0223672 +-0.035507 0.104243 0.0399833 +-0.0577119 0.0708497 -0.0156457 +-0.00436115 0.122059 -0.0113929 +0.0024069 0.037633 -0.0245625 +0.00251114 0.0911189 0.0554408 +-0.0357211 0.0710689 -0.0174927 +0.0183807 0.0432425 -0.0223469 +-0.0688327 0.09803 -0.0157395 +-0.0747491 0.155081 0.00248708 +0.0451476 0.0833704 0.0221542 +-0.0657925 0.14111 0.0417765 +-0.0365871 0.119162 -0.0120374 +0.0101976 0.131045 0.010577 +-0.0249388 0.183594 -0.0126758 +0.0330579 0.0598189 -0.0157593 +-0.0212823 0.0391811 0.0388836 +0.0144144 0.0403325 -0.0225056 +-0.0304932 0.104292 0.0413193 +0.0224755 0.0947811 0.0470955 +-0.0694247 0.0337382 0.00515427 +-0.00249301 0.118317 0.039019 +0.0288984 0.0924492 -0.0198656 +0.033052 0.0440867 0.029429 +-0.0616004 0.15843 -0.0275855 +-0.0438223 0.0615675 0.0400039 +-0.0452867 0.0410146 -0.0162976 +0.0314256 0.0991914 -0.015062 +-0.0524965 0.0833785 0.044899 +-0.0298946 0.0436977 0.0506861 +-0.076428 0.148619 -0.00986569 +-0.0761803 0.0914451 0.0387697 +-0.0730299 0.172199 -0.0345665 +-0.0274981 0.0960112 0.0443229 +0.0045023 0.13009 0.02428 +-0.0302254 0.162455 -0.00347789 +-0.0871035 0.11231 0.0319974 +0.00225053 0.0726262 -0.0348847 +-0.0748173 0.152727 -0.0208966 +-0.0354946 0.118017 0.0312708 +0.0436028 0.0973418 0.0171655 +-0.0754981 0.13448 0.0513067 +0.0513136 0.0574694 -0.00408483 +-0.0228193 0.0854366 -0.0379031 +-0.057217 0.0336859 0.0130711 +-0.0749012 0.110639 -0.0076926 +-0.00874782 0.125791 -0.00734235 +0.0343242 0.100732 -0.0126444 +-0.0155312 0.126827 -0.00025822 +0.0145856 0.0341976 0.00165401 +-0.0175043 0.114096 0.0387143 +0.0552517 0.0720728 0.0198735 +0.0406726 0.0731516 -0.00877611 +-0.0268119 0.082528 -0.0368734 +-0.0262156 0.0519422 -0.0264212 +-0.0464977 0.041126 -0.0122454 +-0.0711885 0.173044 -0.0381946 +0.0492058 0.0511603 0.0287949 +-0.00188013 0.105918 -0.0222309 +-0.046455 0.126722 0.0256927 +-0.0142526 0.181479 -0.0279552 +-0.0655009 0.0903733 0.0443899 +-0.0037337 0.131051 0.015481 +-0.0308026 0.0367564 0.0517774 +0.0277802 0.121908 0.0142262 +-0.0344815 0.0575696 0.0386716 +-0.0844149 0.0777754 0.0115138 +0.0294342 0.0383781 -0.00173395 +-0.0423644 0.120691 0.0280931 +-0.0350646 0.156323 -0.010574 +-0.0619093 0.0470515 0.00567882 +-0.00290933 0.0388493 0.0285794 +-0.059258 0.0467212 -0.00132733 +0.00450339 0.123789 0.033846 +-0.0229547 0.12614 0.0172488 +0.0410852 0.0394499 0.00526393 +0.0049695 0.0340349 0.00359293 +-0.0513689 0.0516822 0.0322144 +-0.0606335 0.122654 0.0421622 +-0.0645986 0.15064 0.0368964 +-0.0632078 0.143892 -0.00837073 +-0.0386435 0.0563025 -0.0111331 +-0.0658025 0.083802 -0.0186684 +-0.062835 0.128322 0.0425151 +-0.0715276 0.14003 0.0472238 +0.056383 0.0538774 0.0233551 +-0.0610939 0.0335153 0.00346695 +-0.00051118 0.0978394 0.0524335 +-0.0418663 0.0340021 -0.00580283 +-0.042485 0.0762268 0.0429934 +-0.0512844 0.138511 0.0223666 +0.0367682 0.0888721 0.037463 +0.00724928 0.0711363 -0.0334334 +-0.0505534 0.0543594 0.017626 +0.00614025 0.110185 -0.0202335 +-0.00850551 0.0561268 0.0532043 +-0.0295938 0.0789709 0.0427962 +-0.0287487 0.0349103 0.0496611 +-0.0584012 0.154047 0.0286827 +-0.0127037 0.064273 -0.0367671 +-0.0288624 0.0606727 -0.0254104 +-0.0376712 0.125956 0.0207679 +-0.0612726 0.0708854 0.0380779 +-0.0637251 0.155028 0.0282356 +0.0531328 0.0476715 0.00620176 +-0.00308571 0.124589 0.0331408 +-0.0186888 0.0352267 -0.0190015 +0.001497 0.119685 0.0377723 +-0.032734 0.120436 -0.00935257 +-0.054542 0.0631354 -0.00767633 +0.052054 0.0718585 0.0216053 +-0.00556188 0.116801 -0.0157696 +-0.0504949 0.138575 0.0203939 +-0.00542543 0.120041 -0.0132322 +0.0310541 0.0727142 0.0413756 +-0.0558801 0.045112 0.0236807 +-0.0167974 0.0382847 0.0190235 +0.0256741 0.0809122 0.047736 +-0.0199636 0.0668339 0.051351 +-0.0491191 0.159098 -0.00622225 +-0.0506725 0.0667938 0.036819 +-0.0492762 0.143079 0.00435473 +-0.0216794 0.0538141 -0.0303252 +0.0305352 0.10973 -0.0102674 +-0.0225945 0.157229 -0.0076361 +-0.0530851 0.151641 -0.00314317 +-0.0271151 0.122681 0.0231414 +-0.0134994 0.0884096 0.056966 +-0.0266886 0.0335519 -0.0246454 +-0.008499 0.12243 0.035017 +-0.0393069 0.033537 -0.0233717 +-0.033807 0.0461583 0.044586 +-0.0198183 0.158714 -0.00970491 +-0.0835554 0.0925405 0.0305699 +-0.0340008 0.0766042 -0.0254969 +0.00352334 0.12519 0.0325857 +-0.0424905 0.0424327 0.0427417 +0.0232877 0.123385 0.0253956 +0.0230237 0.100791 0.0439995 +0.0307365 0.117405 0.0253192 +-0.0772723 0.114862 0.0500033 +-0.0264336 0.0535943 0.0384453 +0.0177456 0.0350628 0.0325863 +-0.0121375 0.102128 -0.024127 +-0.000203909 0.130048 0.0239772 +0.00795806 0.127195 -0.00506697 +-0.0252695 0.156633 -0.00336931 +0.0179609 0.1201 -0.00942839 +-0.0769756 0.068555 0.0156381 +-0.0871021 0.111516 0.0397664 +-0.0544907 0.101557 0.0424048 +-0.0572843 0.0589766 -0.000464382 +-0.07902 0.0751794 0.0271309 +0.0102371 0.115602 -0.0165593 +-0.0105893 0.180273 -0.0272114 +-0.0528115 0.0913061 -0.0221889 +-0.064755 0.068231 0.0343382 +-0.0137258 0.125368 -0.00476898 +-0.0635922 0.178326 -0.0570781 +-0.0239683 0.126504 0.0139537 +-0.0600264 0.132579 -0.00719549 +0.044826 0.0791184 -0.000782084 +-0.00541885 0.0969111 -0.0306599 +-0.0301034 0.0537602 -0.0193727 +0.0409333 0.0900371 -0.0097907 +0.024446 0.115337 -0.010308 +-0.0283175 0.0963396 -0.0241496 +0.0299711 0.119398 0.020753 +-0.0265916 0.172718 -0.0105089 +-0.0586682 0.128313 0.0397417 +-0.0818638 0.147313 0.00119815 +-0.0254305 0.0357675 -0.0290845 +-0.038039 0.126372 -0.00365101 +-0.00149717 0.0815096 0.0574492 +-0.00738223 0.0931774 -0.0348179 +0.0558223 0.0493444 0.0161931 +0.0577347 0.0705061 0.0074689 +-0.0778727 0.096767 0.0360596 +0.0144985 0.11402 0.0378951 +0.00389123 0.0355229 -0.0148126 +0.0242948 0.124607 0.0114976 +0.0565412 0.0674698 0.002463 +-0.0308889 0.108768 -0.0191524 +0.011955 0.0349898 0.0332703 +-0.0129143 0.104805 -0.023047 +-0.0938592 0.11877 0.0212975 +0.0106595 0.0357626 0.0286983 +-0.0652684 0.163853 -0.0591668 +-0.0359879 0.0421738 0.0454409 +-0.0685089 0.100042 0.0409867 +0.03476 0.113033 0.0239837 +-0.0346506 0.126197 -0.000232823 +-0.0386758 0.0462873 -0.0214583 +0.0257808 0.10679 -0.0151172 +-0.0618601 0.153758 -0.0185818 +0.03067 0.0917687 -0.019137 +0.0275533 0.0672844 0.0433037 +-0.0414978 0.0748079 0.0427759 +-0.0218204 0.0840783 -0.0384285 +0.037815 0.0630498 -0.0108066 +-0.0602789 0.0617061 0.0251086 +-0.0768171 0.154199 -0.00689913 +0.00550054 0.0990386 0.0482677 +-0.0391759 0.16667 -0.0123913 +-0.0616525 0.116813 -0.0113459 +-0.0227683 0.0699063 -0.0373697 +-0.0825008 0.107588 0.0273509 +0.0253381 0.0418727 -0.00588506 +-0.014565 0.035318 -0.01827 +-0.00278761 0.0390101 -0.00997081 +-0.0895837 0.137934 0.0361877 +-0.0855599 0.112052 0.0307632 +-0.027858 0.0343176 -0.0296609 +-0.0325025 0.0675467 0.0400218 +0.0183334 0.0348857 0.00364336 +-0.0469365 0.0404762 -0.0121149 +-0.0777262 0.0825344 -0.0106004 +-0.00467074 0.0569349 -0.0330586 +-0.0194597 0.165415 -0.0107679 +-0.0210403 0.122456 -0.00761783 +-0.0388087 0.0446425 -0.0234233 +-0.0696543 0.0614896 0.0127042 +0.0440466 0.0931306 0.0221521 +-0.0647046 0.0352193 0.0243246 +-0.0166096 0.0435748 -0.0274243 +0.0441838 0.0712847 0.000450163 +-0.0285281 0.0522637 0.0377683 +-0.0599387 0.147394 -0.00221747 +-0.0440942 0.156163 -0.00853601 +0.0388076 0.0807597 0.0350812 +-0.0141543 0.161827 -0.01362 +-0.0210631 0.0385773 -0.00578617 +-0.0237266 0.161004 -0.00287357 +-0.0863431 0.0896619 0.0263909 +-0.0829431 0.0790271 0.0235207 +0.0268259 0.0605622 0.0439609 +-0.0224026 0.0384511 0.0303351 +-0.0635581 0.170962 -0.0485923 +-0.0456965 0.147701 -0.00292724 +-0.0532705 0.0373829 0.0469289 +0.0231843 0.0658868 0.0457612 +-0.0887459 0.132238 0.00325707 +0.00920248 0.0914355 -0.0308607 +-0.0298874 0.063588 -0.0244234 +0.00157852 0.12719 -0.00497022 +-0.0814436 0.153873 0.00890807 +-0.0624959 0.0607929 0.0219134 +-0.0680579 0.149988 0.0386907 +0.0166077 0.128469 0.0186355 +0.00550411 0.0731036 0.0564845 +-0.00249995 0.0661849 0.0567093 +-0.0735022 0.155469 -0.0279133 +-0.0851803 0.0899483 -0.00256663 +0.0394434 0.0585828 -0.00486619 +-0.0739433 0.134018 -0.00754124 +-0.038066 0.156257 -0.0102365 +0.00335185 0.118611 -0.0157819 +-0.00660848 0.0420213 -0.0257519 +-0.0639921 0.0605727 0.020032 +0.0252819 0.100786 -0.0187149 +-0.0820788 0.0765181 0.0218286 +-0.0167051 0.0584876 -0.0351851 +-0.023274 0.106158 -0.0224283 +-0.0878269 0.087472 0.021463 +-0.0786369 0.113551 0.047197 +0.0360644 0.0861926 0.0381664 +-0.082909 0.123594 -0.00426589 +-0.029497 0.177966 -0.015166 +-0.0170948 0.127006 0.022289 +0.0524062 0.0491022 0.00128138 +-0.0198015 0.10169 -0.0238258 +-0.0221328 0.166772 -0.0183109 +-0.00252234 0.038424 0.00547409 +-0.0255028 0.0606627 0.0401195 +-0.0385432 0.0337417 -0.0196892 +-0.0644389 0.0627719 0.0250864 +-0.0879688 0.113092 0.00628888 +0.000951329 0.10045 0.046938 +0.0386471 0.086118 0.0348681 +-0.0374734 0.0346441 0.0411075 +0.0233517 0.120203 -0.00555174 +0.0462175 0.0761811 0.0179689 +-0.0376403 0.0336717 0.00266115 +-0.0341867 0.172054 -0.0145892 +-0.0623617 0.0420762 0.0420515 +-0.0114712 0.0379322 -0.0163227 +-0.0177227 0.119786 -0.0108098 +-0.0801398 0.154387 0.00935749 +0.00187492 0.0398874 0.0463369 +-0.0730243 0.159629 -0.0349322 +0.0473276 0.0547587 -0.00564531 +-0.0376789 0.0636715 -0.0137557 +-0.0727421 0.180568 -0.051639 +-0.0616232 0.148175 -0.003118 +-0.0248231 0.0839948 -0.0375331 +-0.0652787 0.173897 -0.0604957 +-0.0740506 0.152673 -0.0298916 +-0.0571547 0.150227 -0.00146353 +-0.0903203 0.146073 0.0131505 +-0.0779569 0.132491 -0.00592536 +-0.0290048 0.0550494 -0.0223991 +-0.00849727 0.0898107 0.0570624 +-0.0324948 0.112838 -0.0174448 +-0.0523188 0.0518 0.026645 +0.0302802 0.0506319 0.0365295 +-0.0838507 0.103422 -0.00164978 +-0.0788492 0.100759 0.0340965 +-0.0874564 0.141909 0.0385732 +-0.0155155 0.115507 0.0382335 +-0.0777311 0.0887218 0.0375819 +-0.0730146 0.15545 -0.0319082 +-0.0523124 0.0360662 0.0464431 +-0.06188 0.164622 -0.0566003 +0.0367263 0.0794489 0.0373046 +-0.0734863 0.173577 -0.0500848 +0.00600107 0.0390612 0.028408 +-0.0278792 0.0339265 -0.0214795 +-0.000753868 0.0390895 -0.00403098 +-0.0578284 0.0450681 -0.00544742 +-0.0829344 0.129921 0.0513858 +-0.0111161 0.125335 -0.00680126 +-0.0679477 0.0860672 0.0434473 +-0.0705079 0.105505 0.0376955 +-0.0109443 0.0389825 -0.0115729 +-0.0399106 0.033865 0.000215963 +0.00351496 0.0924905 0.0549546 +-0.0424851 0.033913 -0.0262188 +-0.0792564 0.155246 0.0213567 +-0.0215304 0.127346 0.0119061 +-0.091259 0.117481 0.0430647 +-0.0404902 0.0790417 0.0431478 +-0.0945826 0.122834 0.0222802 +-0.0518346 0.0517811 0.0306554 +-0.0767129 0.161805 -0.0163426 +-0.0867595 0.107707 0.0143554 +-0.0693236 0.142228 -0.0102995 +-0.0204959 0.105781 0.0424626 +0.0438044 0.0987496 0.00916312 +-0.00281997 0.0854457 -0.0370162 +-0.00280088 0.0840687 -0.037315 +0.0293196 0.0632732 0.0423131 +0.00625559 0.0725849 -0.0341185 +0.0203077 0.0621778 -0.0269805 +0.0563556 0.0723446 0.0173318 +-0.0230123 0.107366 -0.0218426 +-0.00742046 0.035877 -0.0249268 +0.0374488 0.0402522 0.0247009 +0.0292061 0.055224 -0.0177993 +-0.0184858 0.127732 0.0173962 +-0.0921542 0.132321 0.0142287 +-0.0583136 0.145422 -0.00203607 +-0.0688478 0.0994593 -0.0152611 +-0.0615047 0.167821 -0.0555677 +-0.0915903 0.125424 0.00726612 +0.0199591 0.0564127 0.0480725 +0.0378679 0.0713179 0.0353865 +-0.000605671 0.129033 0.0267429 +0.0298673 0.0740916 0.0431977 +0.00443138 0.126024 0.0314422 +0.0239815 0.12134 -0.00278507 +-0.0246606 0.0521655 -0.0277657 +0.0146913 0.0820798 0.0529703 +0.0259518 0.075434 0.0462884 +-0.0332069 0.0609523 -0.0145937 +-0.0191994 0.0907344 -0.0364225 +0.0589179 0.0607855 0.00414854 +0.0361999 0.103252 -0.0093129 +-0.0498767 0.0529199 0.0166388 +-0.0681894 0.0774836 0.0397476 +-0.021626 0.038176 0.00908889 +-0.0723232 0.163826 -0.0419605 +0.0104934 0.109851 0.0397458 +-0.0177283 0.0627822 -0.0360863 +-0.0628376 0.161493 -0.0485893 +0.00323101 0.120377 -0.0136716 +0.0551973 0.0674594 0.0252672 +-0.0349319 0.127285 0.00554823 +0.0194228 0.125079 0.025397 +-0.00805064 0.130356 0.00959263 +-0.0314936 0.097435 0.044487 +-0.0557138 0.0342594 0.0288064 +0.0212843 0.0490624 0.0410711 +-0.0898642 0.114175 0.0316644 +-0.0868422 0.134936 0.00226938 +-0.0758819 0.156006 0.016671 +-0.00997005 0.175779 -0.0292074 +-0.0603522 0.0407823 0.0443369 +0.0416146 0.0598915 -0.00407392 +0.0165523 0.0922417 -0.0256623 +-0.0245975 0.0365494 -0.0290831 +-0.0381375 0.160902 0.00087141 +-0.0719085 0.064649 0.0201308 +0.0144227 0.0477589 -0.0252693 +0.0603421 0.0650847 0.0181826 +-0.0146479 0.0481463 -0.0303376 +0.00721829 0.131495 0.00948452 +0.0394741 0.102755 0.0261825 +-0.0127182 0.0685587 -0.0376659 +0.0338414 0.0392101 0.0249005 +-0.0639127 0.160548 -0.0182872 +-0.0885745 0.0901142 0.00646846 +-0.0497297 0.0416675 0.0451167 +-0.0695102 0.148387 0.0405048 +0.0369413 0.0618853 0.0357448 +-0.0614969 0.0987359 0.0427353 +0.0264406 0.0434552 0.0361928 +0.0457541 0.0497206 0.0308161 +-0.0184963 0.0486167 0.0482304 +-0.086692 0.140502 0.00718566 +-0.0116045 0.0420472 -0.0262702 +-0.0708693 0.149702 0.0392474 +-0.061676 0.0343224 0.032737 +-0.00749303 0.115552 0.0402888 +0.0603302 0.0678632 0.0121432 +-0.070517 0.146976 0.0420031 +0.0360463 0.0953891 -0.0118379 +0.0368862 0.0601656 -0.0107732 +0.0239184 0.116674 0.0330029 +-0.0804601 0.148683 0.000173633 +-0.0604926 0.0344653 0.0380756 +-0.0152525 0.177145 -0.0265204 +-0.0773226 0.108517 -0.00660544 +-0.0176381 0.0465514 -0.0286775 +0.0313677 0.11674 -0.000181085 +-0.0465999 0.111104 -0.0175509 +-0.0408947 0.172668 -0.00780492 +0.0241275 0.120631 -0.00401437 +-0.055903 0.111216 -0.0172629 +-0.0781607 0.0935055 -0.0115755 +0.0158369 0.105055 -0.0192576 +-0.0130717 0.0973914 -0.0292103 +0.00114663 0.103071 -0.022297 +-0.0545436 0.0443717 -0.00770843 +0.0381644 0.0887078 -0.0138852 +-0.0638458 0.0366675 0.0422565 +-0.0245954 0.122675 -0.00581505 +-0.0199502 0.0553853 0.0474489 +-0.0454976 0.13168 0.014882 +-0.0808086 0.113339 -0.00208766 +-0.0658194 0.154782 -0.0493821 +-0.0138747 0.104484 -0.023001 +-0.0293428 0.112771 -0.0173776 +0.0139014 0.0962996 -0.0239693 +-0.0834257 0.145967 0.00318768 +-0.0299391 0.175699 -0.00474628 +-0.00851553 0.0759427 0.057359 +-0.0679104 0.122376 -0.00896749 +-0.0104955 0.0731168 0.0565579 +-0.0480021 0.126873 0.0289133 +-0.052022 0.0561083 0.0186673 +-0.0627916 0.150662 -0.00757045 +-0.0667057 0.14638 -0.0236565 +-0.0714698 0.161004 -0.0429413 +-0.0459114 0.0657109 0.0391289 +-0.0127989 0.0827406 -0.0389623 +0.0240686 0.0436305 0.0398361 +0.00979486 0.0360464 0.02827 +-0.0144862 0.0715775 0.0549247 +-0.0798641 0.145899 -0.00181913 +-0.0607177 0.0335659 0.00529637 +-0.0635063 0.156747 -0.0406118 +-0.0171212 0.0383927 0.000728518 +0.02686 0.0646091 0.0440244 +0.0291243 0.117712 -0.00241857 +0.0411571 0.0846831 0.0314273 +0.0246298 0.0347052 0.0125163 +0.0376787 0.105425 -0.00281358 +-0.0520342 0.116871 0.0334143 +-0.0526315 0.0335173 0.00157493 +0.0103692 0.116852 -0.0159048 +-0.0299989 0.178534 -0.0140055 +0.0199608 0.126186 0.00277612 +-0.0226771 0.0567339 -0.0313199 +-0.0693087 0.165593 -0.0188405 +0.0435095 0.0527832 0.0325495 +-0.0292487 0.115981 -0.0147474 +0.0390778 0.105565 0.0241719 +-0.0449049 0.167415 0.00301648 +-0.0575339 0.0493779 -0.000368538 +-0.0396388 0.0548721 -0.0111311 +0.0314293 0.102107 0.036834 +0.000480507 0.104429 0.0436509 +-0.0299338 0.0468967 -0.0261593 +-0.0712424 0.155684 0.00373917 +0.0197271 0.0808668 0.051456 +-0.0761145 0.157637 -0.00836344 +-0.0144941 0.122325 0.033097 +-0.0597928 0.095429 -0.0195264 +0.0309421 0.0646254 0.0411415 +-0.0275054 0.104339 0.0416271 +-0.000516741 0.108636 0.04302 +-0.0777092 0.07194 0.024923 +0.0102045 0.0795083 -0.0323062 +-0.0379505 0.150881 -0.00456722 +-0.013105 0.0382607 0.0125563 +-0.0182317 0.187056 -0.0182936 +-0.0182699 0.166848 -0.0125771 +-0.0264587 0.0902029 -0.033595 +-0.0668807 0.112599 0.0436137 +-0.0537473 0.076818 -0.0192258 +-0.0306082 0.165302 -0.00581873 +-0.0796939 0.0873057 0.0353613 +0.0347714 0.100763 0.034674 +-0.035752 0.0415598 -0.0291214 +0.0289767 0.117846 0.0275093 +-0.000706682 0.0655468 -0.0343894 +-0.0610628 0.138403 -0.00654794 +-0.0625935 0.12412 0.0446596 +-0.0648295 0.14966 -0.0309451 +-0.0234815 0.0974495 0.044821 +-0.026575 0.0476865 -0.0258778 +-0.0528683 0.0367334 -0.0118941 +-0.0116753 0.0526919 -0.0331734 +-0.0615062 0.158429 -0.0265894 +0.0320656 0.117538 0.0186978 +-0.00988755 0.103466 -0.0236142 +0.0484958 0.0691068 0.025078 +0.0156548 0.128965 0.0154331 +-0.0665046 0.10698 0.0385746 +-0.0267998 0.0522633 0.0388472 +-0.058755 0.0782067 -0.0192512 +0.0211493 0.0672779 0.0481082 +-0.0288355 0.125617 0.00924976 +-0.0124826 0.0701993 0.05486 +0.0522007 0.0476683 0.00324556 +-0.0443004 0.130334 0.00946299 +-0.00241533 0.0389975 -0.0136337 +-0.0437474 0.0783133 -0.0194351 +-0.0629007 0.115475 0.040648 +-0.0311605 0.169689 -0.016551 +-0.0263193 0.0386673 0.0347214 +0.0366921 0.0807912 0.0372758 +-0.0395001 0.100068 0.0413695 +-0.0681116 0.112409 0.0451263 +0.0386091 0.0686148 0.0346703 +-0.0759482 0.152671 -0.0129066 +0.0145806 0.0953173 0.0493246 +-0.0385004 0.150676 0.00203305 +-0.0935499 0.129634 0.0192397 +-0.0619642 0.126755 -0.00826981 +-0.0537213 0.0709084 -0.0154466 +-0.0314688 0.175764 -0.00340966 +-0.046761 0.126023 -0.00719597 +0.0128678 0.128966 0.0229731 +-0.0721444 0.145534 -0.0189034 +-0.014649 0.0384586 0.0247211 +-0.0782079 0.165287 -0.027954 +-0.0738874 0.0695898 0.0277412 +-0.0880483 0.145895 0.0319999 +-0.00950131 0.0870429 0.0572309 +-0.082872 0.154403 0.0201091 +-0.0574419 0.0424556 0.0216968 +0.0432211 0.097315 0.0201647 +0.0484167 0.0567471 0.0312254 +-0.0899902 0.146067 0.012148 +-0.0384869 0.0860997 0.0437907 +-0.0677801 0.0837503 -0.017964 +-0.0304968 0.071744 0.0399232 +-0.0267649 0.0754486 -0.0363172 +0.0555795 0.068697 0.0240751 +-0.00326172 0.0994383 0.0499516 +-0.0539364 0.153495 0.0157968 +-0.0264808 0.0509031 0.0429156 +0.0477223 0.0435274 0.0201079 +-0.027646 0.071755 0.0409574 +-0.025483 0.0988427 0.0444451 +0.00433576 0.055339 -0.0305463 +-0.0809392 0.0721012 0.0145438 +-0.0859359 0.0980836 0.000413824 +-0.0660122 0.153896 -0.0475582 +-0.0275574 0.156658 -0.00139783 +-0.0134137 0.0581871 0.0521911 +-0.0774938 0.134462 0.0515018 +0.0104958 0.0560929 0.0526786 +-0.00951583 0.0848597 -0.0382215 +-0.0298676 0.0916468 -0.0252289 +-0.0751451 0.15577 0.0110973 +-0.0887521 0.0969152 0.00742291 +-0.00642846 0.119149 -0.0142793 +-0.0351305 0.127632 0.00987733 +-0.079479 0.1087 0.0330138 +-0.00387451 0.0384228 0.00884205 +-0.0794858 0.0940336 0.0349322 +-0.0809833 0.080323 0.0311985 +-0.0874477 0.148578 0.0299355 +0.015852 0.106086 -0.0183494 +-0.0799154 0.12806 -0.00573177 +-0.0810332 0.092317 -0.00857663 +-0.0428426 0.0956907 -0.0224311 +-0.0843197 0.0830919 -0.00150258 +0.0270369 0.0347621 0.0147774 +-0.0114905 0.108632 0.0428314 +-0.0298836 0.04486 -0.0282273 +-0.0675863 0.0915604 0.0429945 +-0.0858462 0.0806083 0.01849 +-0.0377888 0.0855996 -0.0220857 +-0.080296 0.0886098 0.0345053 +-0.0631283 0.163827 -0.0595262 +-0.0200798 0.0653829 0.0501099 +0.0101376 0.104418 -0.0202461 +0.00311717 0.113125 -0.0199945 +0.00740202 0.0404296 -0.0235788 +-0.0233436 0.179984 -0.0199453 +-0.0849416 0.153745 0.0179582 +-0.00950506 0.0660833 0.0554985 +-0.0149561 0.0997734 -0.0237179 +-0.0625045 0.160053 -0.0215634 +0.0134925 0.114016 0.0379994 +-0.0484084 0.144974 0.000471547 +-0.0765927 0.0770726 0.0330453 +-0.0522524 0.0566167 0.0245415 +-0.0446531 0.0607308 -0.0127894 +-0.077361 0.0729429 -0.00456158 +-0.0164852 0.0870004 0.0567616 +0.00917846 0.101539 -0.0214106 +-0.0114976 0.0883765 0.0564607 +-0.0365032 0.109752 0.0369592 +-0.0622101 0.169551 -0.0614764 +0.0134275 0.117615 -0.0147491 +-0.0194201 0.1246 -0.00382324 +0.000402662 0.121936 0.0359399 +0.0308218 0.101142 -0.0151148 +0.044544 0.0748845 0.0238506 +-0.0190349 0.0930706 -0.0347914 +-0.0284257 0.15795 -0.0115973 +-0.0835152 0.150011 0.0330149 +-0.0723608 0.0363259 0.00395733 +0.049239 0.0437392 0.0164633 +-0.0281399 0.0917982 -0.0286003 +-0.0894337 0.132252 0.00424863 +-0.0478863 0.033513 -0.0102384 +-0.0480003 0.126688 -0.00585567 +-0.0147076 0.0933085 -0.0349989 +-0.0344513 0.172765 -0.000813008 +-0.012881 0.107288 -0.0218461 +-0.0494996 0.111168 0.0370596 +0.0195435 0.100771 0.0459866 +0.0383256 0.0387198 0.0189634 +-0.0490718 0.151664 -0.00461846 +-0.0413062 0.123313 -0.010402 +-0.0764561 0.106685 0.0353026 +-0.0506178 0.0590261 -0.0100428 +-0.0085531 0.0385596 0.00412906 +-0.0510743 0.153146 -0.0044532 +-0.0168415 0.122494 -0.0076608 +-0.0724396 0.129821 0.051541 +-0.0447123 0.0336927 -0.0153017 +-0.0128672 0.038589 0.0285719 +-0.0769694 0.136896 -0.00565009 +-0.0204809 0.0526524 0.0459576 +-0.0190093 0.100114 -0.02409 +0.0491876 0.0602673 -0.00438234 +2.68966e-05 0.0991578 -0.0250032 +-0.0146066 0.0355634 0.0504427 +0.0437747 0.084485 0.0264379 +-0.0613665 0.0430534 -0.00574325 +0.0102029 0.0779579 0.0551886 +-0.0584973 0.109766 0.0377913 +0.0405117 0.0657145 0.0303349 +0.0123622 0.0523525 -0.0283928 +-0.0865442 0.107736 0.017365 +-0.0273471 0.0735222 0.0429845 +-0.076628 0.169808 -0.0316679 +-0.00310182 0.130332 0.00278812 +0.0456485 0.0904179 0.0101632 +0.0367704 0.109675 0.000243105 +-0.0088954 0.108786 -0.0222808 +-0.0722528 0.156819 -0.0369077 +-0.0343294 0.175491 -0.0032043 +-0.0612579 0.167808 -0.0576007 +-0.0225051 0.10854 0.0408657 +-0.0396128 0.0492137 -0.0115104 +-0.0528856 0.104156 -0.0198053 +-0.0114785 0.0965129 0.0526113 +-0.0493499 0.141685 0.00939558 +-0.053326 0.162717 0.00204741 +0.0382413 0.108427 0.0210592 +0.0250594 0.122946 0.0231962 +0.0436593 0.058746 -0.00488132 +-0.052188 0.0559056 0.0136207 +-0.0337241 0.163848 -0.00328844 +-0.0671575 0.17049 -0.0366968 +-0.0780353 0.0880327 -0.0115615 +-0.00752216 0.122122 -0.0114318 +-0.0578223 0.12834 0.0392194 +-0.0624397 0.16285 -0.0548313 +-0.00720215 0.0344571 -0.0178933 +0.0219696 0.0347867 0.0191885 +0.0134971 0.112635 0.0387508 +-0.0188778 0.168283 -0.0134663 +0.0418633 0.0718502 -0.00680416 +0.00188261 0.129936 0.0247306 +-0.0143909 0.0388658 -0.0140202 +-0.0866821 0.0819953 0.0154888 +0.0511122 0.059915 -0.00400422 +-0.0637796 0.0419038 0.0392448 +-0.0334673 0.0532523 0.0375728 +-0.0640539 0.142491 0.0390245 +-0.0197273 0.118003 -0.0129221 +-0.0739294 0.0686501 -0.000515794 +0.022253 0.0430673 -0.0137151 +0.0169102 0.120624 0.0334304 +-0.0533452 0.118341 0.0350731 +-0.0407313 0.0710722 -0.0172567 +-0.0444934 0.108473 0.0392485 +-0.0406946 0.0340162 0.0268873 +-0.0428689 0.104235 -0.0209095 +0.000289503 0.0391337 -0.00386275 +0.0202669 0.0819781 -0.0271085 +0.0339966 0.0363512 0.0147468 +-0.0623699 0.0366895 0.0436353 +0.0112859 0.0638878 -0.0308862 +0.044262 0.0945325 0.00218274 +0.0178069 0.0349979 -0.00592782 +0.00766772 0.130773 0.00395877 +-0.0518373 0.0337424 -0.0112411 +0.05138 0.0464792 0.0212617 +-0.054495 0.0932121 0.0445367 +0.0154864 0.0380581 -0.0207587 +0.0322412 0.0368006 0.00286913 +0.0226382 0.0714084 0.0485432 +-0.0474967 0.0761987 0.0428659 +-0.0433556 0.0337438 -0.00770024 +-0.0507933 0.0869468 -0.0215939 +-0.0428743 0.166323 -0.00997516 +0.0420989 0.0930078 0.0271705 +-0.0133438 0.11201 -0.0186315 +-0.0682581 0.156305 0.0164417 +-0.0709159 0.125294 -0.00875352 +-0.0758095 0.0920857 -0.0139153 +0.00691185 0.038861 0.0287775 +-0.0755745 0.0702081 -0.000465226 +0.0560342 0.0622175 0.0264602 +0.00750328 0.0532576 0.0522142 +-0.0557017 0.0693735 -0.0143448 +-0.0400399 0.0367774 -0.0284153 +0.0452718 0.0917995 0.0131601 +0.0113635 0.0534706 0.0514016 +-0.056641 0.0429978 -0.00777539 +-0.0163006 0.182966 -0.0260091 +-0.0724038 0.116078 0.0519992 +-0.0223961 0.161302 -0.0143028 +-0.016322 0.128515 0.00945034 +-0.0761998 0.14998 -0.0148766 +-0.084898 0.11701 -0.000772283 +0.0215009 0.111167 0.037529 +-0.0116746 0.164119 -0.0176003 +-0.0386977 0.0666031 -0.0147476 +-0.0475127 0.0411749 0.0444313 +-0.0741496 0.147181 -0.0158602 +0.0423699 0.0412112 0.0211935 +-0.0112343 0.126014 -0.00554296 +-0.0627796 0.16313 -0.0285907 +0.0598501 0.0664357 0.0191799 +0.0444747 0.0438727 0.000520461 +-0.0449903 0.16693 -0.00785376 +-0.0241862 0.125789 0.00366503 +0.0303543 0.0942493 0.0422823 +0.0385368 0.0800568 -0.0127167 +-0.0329258 0.120263 0.0285346 +-0.0277494 0.0764615 0.044728 +0.0072822 0.0344718 -0.00192729 +0.0164745 0.103092 0.0456772 +-0.000370674 0.0391495 0.0306363 +-0.0444932 0.109842 0.0382343 +-0.0228558 0.113062 -0.0177116 +-0.0323055 0.0384897 -0.00796454 +0.0330143 0.106332 -0.0106209 +-0.0905664 0.150208 0.0151282 +-0.0473203 0.122487 0.0279328 +-0.079976 0.076532 0.0275303 +-0.0185178 0.0383092 0.00415679 +-0.0400541 0.128036 0.0139949 +-0.0725037 0.079155 0.0383043 +-0.00705924 0.127865 -0.00358478 +-0.0474808 0.0518309 0.037336 +0.0281857 0.0888902 0.0443935 +-0.0325014 0.102916 0.0416129 +-0.0636379 0.131123 0.0413473 +-0.0194422 0.0952996 -0.0310527 +0.0343622 0.0673468 0.0390872 +0.00248248 0.0385592 0.0461627 +-0.0207428 0.0656176 -0.0364653 +-0.0354216 0.17545 -0.00362892 +-0.0186888 0.127303 0.00423263 +-0.0697675 0.129835 0.0501143 +-0.0645483 0.168715 -0.0400434 +0.0176026 0.0520233 0.0463575 +-0.0165066 0.11684 0.0369313 +-0.0539292 0.0475998 -0.00643542 +0.0206619 0.125677 0.022985 +0.0131 0.034428 -0.00821794 +-0.0884031 0.101017 0.0203758 +-0.089294 0.136502 0.0252035 +-0.0633961 0.0610267 0.0215327 +-0.0181382 0.0625693 0.0510808 +-0.0363013 0.0408102 0.0457892 +-0.0348891 0.0341588 0.0262022 +0.0321818 0.0994934 0.0379171 +-0.0650996 0.115729 0.046366 +-0.0446047 0.0505366 -0.0105481 +-0.0170833 0.0896859 -0.0373218 +-0.0135156 0.162506 -0.0153049 +-0.0264962 0.119343 0.030427 +0.053783 0.0561466 -0.00178141 +-0.0659739 0.131145 -0.00872206 +-0.022585 0.185119 -0.0131839 +-0.0902473 0.132271 0.00623314 +-0.0343818 0.038354 -0.0138166 +-0.087117 0.119846 -0.000719646 +-0.0514997 0.047729 0.0396118 +-0.0837154 0.0804764 0.0234959 +0.0452487 0.0681916 0.00167659 +0.0443433 0.0762807 -0.00178421 +0.0393871 0.0828883 -0.0127786 +0.0133395 0.0475307 0.0453837 +0.0393635 0.0445531 -0.00413158 +0.0464068 0.0778555 0.00918735 +0.0498828 0.0474685 0.000307011 +-0.0205115 0.114066 0.0379617 +-0.0795322 0.0826724 -0.00859002 +0.0277802 0.0692504 -0.0226951 +-0.0640511 0.139618 0.0390194 +-0.0622733 0.144309 -0.00616114 +-0.0598164 0.122657 0.0415831 +-0.039222 0.0363262 0.0107899 +-0.0476756 0.0694312 -0.0151035 +-0.0114975 0.12239 0.0342495 +-0.0759886 0.0701373 0.025079 +0.0247695 0.1047 0.0394768 +-0.0424955 0.0464529 0.0406301 +-0.0209812 0.0389557 0.0535988 +-0.0434801 0.0917165 0.0428888 +-0.0936604 0.128255 0.0172452 +-0.0319662 0.163855 -0.00423083 +-0.0864626 0.107749 0.0163884 +0.00261599 0.0960798 -0.0297441 +0.0192696 0.124452 -0.00213625 +-0.0635019 0.0945759 0.0438874 +-0.0434804 0.108484 0.0391565 +-0.0767016 0.15969 -0.0259195 +-0.0207953 0.0784993 -0.0390618 +-0.0168597 0.0382017 0.0136589 +-0.0128908 0.129601 0.0150315 +-0.063562 0.136724 0.0379539 +-0.0592557 0.146819 0.0355066 +-0.0102821 0.0421361 0.0498123 +0.00411674 0.108725 -0.0201726 +-0.0471696 0.16597 0.00363215 +-0.0324882 0.0560654 0.0375153 +0.016314 0.061771 0.0498607 +-0.0633808 0.154539 0.0298218 +0.0319993 0.108737 0.0323781 +0.0224822 0.0578106 0.0464363 +-0.0731478 0.0644323 0.00940567 +-0.0136846 0.0555659 -0.0339274 +-0.0485565 0.0335372 0.00238031 +-0.0485794 0.128753 -0.00187037 +-0.0761205 0.0927947 0.038671 +-0.00890397 0.114438 -0.0172305 +-0.0881957 0.146062 0.0092207 +-0.067835 0.0951999 -0.016639 +-0.0826594 0.0993103 0.0308836 +0.0194806 0.107063 0.040905 +-0.0755472 0.15139 -0.00989046 +-0.0619095 0.118087 -0.0102757 +-0.0770237 0.0716688 -0.00146855 +-0.0090472 0.129209 0.0236827 +0.0166896 0.0645037 0.050425 +-0.044493 0.0860963 0.0437549 +-0.0851043 0.10321 0.0261425 +-0.0929793 0.125561 0.0282631 +-0.0792446 0.0699823 0.0139682 +-0.0541984 0.150844 0.02639 +-0.0544369 0.147753 0.0264091 +0.029273 0.103313 -0.0154093 +-0.0661878 0.156038 -0.00610123 +0.0513324 0.0613858 -0.00348738 +-0.00765334 0.0905691 -0.0361471 +-0.0036313 0.046681 -0.0294588 +-0.0793953 0.154018 0.0066962 +0.0126509 0.103032 -0.0211055 +-0.0534982 0.0344579 0.0343548 +0.0254331 0.0400654 -0.00462996 +-0.0474929 0.163748 0.00542805 +-0.0174765 0.0514437 0.047967 +-0.023601 0.0379574 -0.0288347 +0.0380126 0.0687088 -0.0127776 +0.0454875 0.0624627 0.0298224 +-0.0929393 0.122846 0.0403052 +-0.0619477 0.0629617 0.0272004 +-0.0632548 0.171035 -0.0614506 +-0.062927 0.150005 -0.0233391 +-0.0539078 0.109837 -0.0181931 +-0.0143481 0.129147 0.0116153 +-0.00460956 0.130321 0.00366937 +0.00735598 0.0509889 -0.0291303 +-0.0480744 0.151666 -0.00489643 +-0.0220459 0.166878 -0.0109827 +-0.0178225 0.0869056 -0.0385387 +0.000268234 0.0669357 -0.034172 +-0.0454819 0.0861255 0.0441555 +-0.0606958 0.0340151 0.0191666 +0.0293305 0.049536 -0.0137505 +-0.0661283 0.153073 -0.0457545 +0.0127964 0.0685744 0.0536204 +-0.0806268 0.150792 0.0343829 +0.0338754 0.0626989 -0.015804 +-0.0415032 0.116675 0.0325492 +-0.00995367 0.16681 -0.0217203 +0.059153 0.0704954 0.0131546 +-0.084323 0.0804069 0.00350409 +-0.0217865 0.0742531 -0.0388026 +0.0333307 0.040756 0.0270424 +-0.00920453 0.175559 -0.0287981 +-0.0565093 0.148178 0.0306333 +-0.0476849 0.146264 0.00805502 +-0.0896679 0.144435 0.0294634 +0.028326 0.0882981 -0.0214817 +-0.0129215 0.129318 0.0179306 +-0.0275354 0.0822426 0.0485604 +-0.0727818 0.154043 -0.034905 +0.0264706 0.0430524 -0.00597567 +-0.0461097 0.129234 0.00159921 +0.00227538 0.0668963 -0.0335609 +-0.0869081 0.0847086 0.0134765 +-0.071509 0.105494 0.0375699 +-0.0564975 0.105681 0.0408231 +-0.0709683 0.136976 -0.00769814 +-0.0238604 0.0347884 0.0456435 +-0.0248096 0.123255 -0.00440954 +-0.0504992 0.0917781 0.0442368 +-0.0672114 0.120049 0.0520179 +-0.067142 0.163768 -0.057034 +-0.0628433 0.16149 -0.0495873 +-0.0851762 0.106326 0.0223754 +0.0111461 0.101633 -0.021979 +0.0319374 0.0568888 -0.0147656 +0.0282794 0.120663 0.00443205 +-0.0912918 0.116401 0.0420373 +-0.00467238 0.0555139 -0.0327809 +-0.0267099 0.0794912 0.0492298 +-0.0226371 0.0622591 0.0442913 +0.0496058 0.0730794 0.0103455 +0.0134712 0.0347114 0.0266012 +-0.027103 0.0633188 -0.0304321 +-0.00446177 0.12682 -0.00651375 +-0.0184963 0.10441 0.0431068 +0.0322846 0.110983 -0.00760517 +0.043549 0.0987325 0.00516762 +-0.0442869 0.166804 -0.00853834 +0.0150912 0.0940152 0.0500689 +-0.07081 0.110507 0.0424798 +-0.0141183 0.115602 -0.0164489 +-0.0567507 0.13816 0.0319811 +-0.0047515 0.0726952 -0.0359954 +-0.0647331 0.0606321 0.00547671 +0.0292295 0.102131 0.038919 +-0.0328692 0.104316 -0.0215625 +-0.0105189 0.165484 -0.0170149 +-0.062488 0.161561 -0.0255895 +-0.083006 0.110313 0.0398706 +0.00202549 0.0390793 -0.0109499 +0.0598509 0.0692231 0.0121425 +-0.0486599 0.0649886 -0.0131055 +0.0193632 0.0475344 -0.0219845 +-0.0505005 0.109789 0.0379415 +0.0227584 0.0942129 0.0471436 +-0.054587 0.123231 -0.00812744 +0.0595925 0.0636093 0.00613697 +-0.0304354 0.159526 0.00145329 +-0.0771836 0.152278 0.0340017 +-0.0641378 0.146153 -0.0169913 +-0.012496 0.0828987 0.0575341 +-0.062259 0.0636125 0.0283336 +-0.0543842 0.064934 0.034129 +-0.0580097 0.136726 0.0336791 +0.0431148 0.0723568 0.0271232 +-0.0719688 0.147362 0.0419058 +0.0324265 0.0414912 -0.00365574 +-0.0504972 0.083371 0.044762 +-0.0277551 0.121254 0.0258902 +0.0248126 0.0672364 0.0446067 +-0.0748658 0.148574 -0.0178655 +0.0199833 0.0422265 0.0426566 +0.00936651 0.0494737 -0.0282538 +-0.0209427 0.127053 0.0165011 +0.014824 0.0950266 -0.0246047 +0.0416966 0.0899224 0.0287651 +-0.0417723 0.0826397 -0.0208385 +-0.0228105 0.123961 0.023212 +-0.0701997 0.155611 0.00411308 +-0.0246949 0.0550734 -0.0288078 +-0.0220519 0.163768 -0.0162501 +-0.0324478 0.069454 -0.0224572 +-0.0827552 0.07629 0.0125227 +-0.0606527 0.151084 0.0352378 +-0.0798891 0.0706304 0.0135503 +0.0476495 0.073201 0.00955169 +-0.00859398 0.0391639 -0.0259828 +0.0142802 0.0873929 0.0523851 +-0.00841973 0.128157 0.0268439 +-0.0665531 0.160013 -0.0120422 +-0.029443 0.0834063 0.0447309 +-0.0564979 0.0776594 0.043476 +-0.0483279 0.119696 0.0300033 +0.0232683 0.0857035 -0.0248261 +0.0321971 0.112814 -0.0055615 +0.0190831 0.0713469 0.0504539 +-0.054494 0.0465534 0.0422647 +-0.0121699 0.165481 -0.0142428 +0.000511137 0.0814953 0.0573473 +-0.0115028 0.0730832 0.0562182 +-0.0401042 0.037954 0.0427598 +-0.0114161 0.0382303 0.016554 +0.0328182 0.0967204 -0.0144274 +-0.00449908 0.0732747 0.0586205 +0.00733671 0.115147 -0.0180672 +-0.0476206 0.111206 -0.0176722 +-0.0624082 0.147544 -0.00957064 +-0.0615795 0.156866 -0.0245858 +0.0175138 0.12671 0.0232635 +-0.0697118 0.0764164 -0.0147262 +-0.0543713 0.158326 -0.00178875 +0.00713327 0.105885 -0.0207766 +-0.033517 0.115303 0.0329858 +-0.0114926 0.0897634 0.0564161 +-0.0375058 0.171208 0.000818011 +0.00542741 0.0336773 0.0131964 +0.0379386 0.07401 0.0354837 +-0.0860277 0.0967286 0.000430639 +-0.0311614 0.0791685 -0.0325602 +-0.0541101 0.0531993 -0.0053725 +-0.0592659 0.0599215 0.0215991 +0.0586637 0.0709935 0.0122726 +-0.0792595 0.0894709 -0.0095871 +-0.026159 0.0918036 0.0468933 +-0.0249745 0.12528 0.0180213 +-0.0519836 0.0517496 0.0236325 +-0.0275449 0.178709 -0.00674077 +-0.0715237 0.165101 -0.0167379 +0.0256965 0.123446 0.00917645 +0.0235224 0.0727618 0.0480692 +-0.0144773 0.0603048 0.0528052 +0.0408807 0.0948081 -0.00628698 +-0.0515819 0.0344024 0.0295565 +0.0311435 0.0885162 -0.0196004 +-0.087234 0.0981695 0.00341761 +-0.0165631 0.165424 -0.0118502 +-0.0497796 0.0518319 0.0348836 +0.0296893 0.110128 -0.0107004 +-0.0212542 0.126244 0.0193308 +-0.0315215 0.0732244 0.0404306 +0.0265706 0.0535806 -0.0207269 +-0.0944184 0.12146 0.0172829 +-0.0780287 0.14129 -0.00491664 +-0.0653187 0.152492 0.0351215 +0.0369332 0.102635 -0.00864905 +-0.0100919 0.126182 -0.00573829 +-0.0589643 0.15508 0.0013052 +-0.00782857 0.0386419 0.00238313 +-0.0893654 0.145802 0.0291185 +-0.077209 0.110378 0.0446936 +-0.0127752 0.0770687 -0.0383028 +-0.060466 0.143311 -0.00379205 +-0.0907002 0.137837 0.017198 +-0.0553853 0.15628 0.0108911 +-0.0609254 0.0454597 -0.00231147 +0.041351 0.0574751 -0.0052144 +-0.0111235 0.0346639 0.0467191 +-0.0520649 0.148658 -0.00262972 +-0.0438434 0.0985095 -0.0215595 +-0.0678163 0.0866062 -0.0177767 +0.0287562 0.053781 -0.0187512 +0.0338991 0.057119 -0.0127141 +-0.0189243 0.181629 -0.0169471 +-0.0888863 0.113493 0.0234001 +-0.0456524 0.0621788 -0.0131898 +-0.0205797 0.0906821 0.0540574 +-0.0285047 0.059221 -0.0254142 +-0.0310985 0.154152 -0.00673494 +0.0362687 0.0941823 0.0368117 +0.0223945 0.0860763 -0.025219 +0.0228611 0.0741302 0.0488936 +-0.0274872 0.094655 0.0450969 +-0.0238248 0.0826344 -0.0380614 +-0.044527 0.0601701 0.0393419 +0.0160126 0.0658829 0.0512178 +-0.0663487 0.06206 0.00207137 +0.000401309 0.0390966 -0.0249339 +-0.027107 0.082291 0.0495314 +-0.0617626 0.0415173 0.0247032 +-0.093011 0.118839 0.0352993 +-0.0662787 0.168684 -0.0320741 +-0.000498287 0.0535066 0.0547347 +0.0431795 0.0737197 0.0272167 +-0.0565118 0.0454033 -0.00602573 +-0.0668006 0.086643 -0.0182518 +-0.0652487 0.163342 -0.0202167 +0.0392901 0.0766734 0.0339466 +-0.0619246 0.106845 -0.0166571 +-0.0611633 0.0334354 -0.00188959 +-0.0722746 0.15542 -0.0369062 +-0.0690618 0.110676 0.0409548 +0.0432493 0.100107 0.00716752 +0.0317499 0.0535218 0.0369319 +-0.0492036 0.131059 0.0288275 +-0.0693592 0.176521 -0.047588 +-0.0072207 0.0356289 0.0484876 +-0.0818563 0.150046 0.00220642 +-0.0435006 0.0534118 0.0391466 +-0.0714969 0.156283 0.0152923 +-0.0883581 0.0875191 0.0194553 +-0.0774993 0.127442 0.0532862 +0.0288434 0.0591735 0.0415864 +-0.053835 0.0329874 0.0179508 +-0.0855039 0.140637 0.0423198 +-0.0597327 0.156046 0.0093301 +-0.052462 0.0642313 0.0336351 +0.000500084 0.12107 0.0367737 +-0.0692573 0.169753 -0.0288779 +-0.0156709 0.0385345 -0.00280448 +-0.00949582 0.118295 0.0381649 +0.0330035 0.116489 0.00476188 +0.0153369 0.0552331 -0.0286287 +-0.0105333 0.0457993 0.0483516 +0.00652975 0.0380351 0.0455331 +-0.0714995 0.101334 0.0391804 +0.0236022 0.115739 -0.0107408 +-0.0580129 0.118724 -0.0113962 +-0.0543247 0.0500125 0.0112758 +0.0587422 0.0635506 0.00411936 +-0.0589036 0.112559 -0.0155981 +-0.0640258 0.15968 -0.0562568 +-0.00990982 0.175697 -0.0247542 +0.00695815 0.0340953 -0.0204902 +-0.0591465 0.152697 -5.16463e-05 +-0.00975768 0.167025 -0.0223761 +-0.0383481 0.0417109 -0.0273458 +0.0463963 0.0778578 0.0141787 +-0.0720541 0.0777606 0.0379027 +0.0259403 0.1091 -0.0135959 +-0.0758056 0.0891863 -0.013912 +0.0429603 0.0873797 -0.00580114 +-0.0676348 0.0704852 -0.0103532 +-0.066267 0.176761 -0.0601056 +-0.013866 0.129156 0.0103484 +-0.067642 0.150503 -0.040589 +-0.0180327 0.0404537 0.0526147 +0.0183116 0.0636834 -0.0282837 +-0.078386 0.154762 0.00850622 +0.030569 0.0491561 0.035175 +-0.0622212 0.169401 -0.0515858 +-0.0565139 0.0548538 0.00566103 +0.00623573 0.0382417 0.0273828 +-0.038479 0.0945169 0.0431902 +-0.00987706 0.108745 -0.0220853 +-0.0621803 0.161575 -0.027587 +-0.0176337 0.125847 -0.00119502 +0.0328914 0.0578172 0.038629 +-0.0414935 0.0776367 0.0431734 +0.0432388 0.0804742 0.027354 +-0.0137772 0.0770735 -0.0384143 +0.0572117 0.0509068 0.011186 +-0.0689532 0.132595 -0.00851473 +-0.0655849 0.0622273 0.00026904 +-0.0535585 0.062801 0.0308747 +-0.0779359 0.154614 0.00720975 +0.00448513 0.0964789 0.0523472 +-0.060329 0.11723 -0.0118118 +0.029915 0.0430998 0.0305942 +-0.0275027 0.115261 0.0337596 +-0.0635137 0.0412627 -0.00639269 +-0.0164929 0.11134 0.0406952 +0.0292409 0.0951488 -0.0187111 +0.0324104 0.0430965 -0.00468251 +0.0317605 0.08491 0.0425067 +0.0289099 0.0929198 0.0437028 +-0.0707001 0.15817 -0.0449161 +0.0551137 0.0732038 0.0153863 +-0.0823243 0.154364 0.0217732 +-0.0715111 0.145604 0.0434169 +-0.0325077 0.0632413 0.0389915 +-0.0696524 0.0680017 0.0300044 +0.0102276 0.0809104 -0.0321098 +-0.0244999 0.049902 0.0466266 +-0.0554111 0.0574706 -0.0044262 +-0.0628667 0.101101 -0.0182166 +-0.00650089 0.0661332 0.0560881 +-0.0330903 0.15925 -0.0128209 +0.042117 0.0792074 0.0292753 +-0.085793 0.0818712 0.00648437 +-0.0594817 0.0426754 0.0236965 +-0.0539359 0.0541543 0.0107637 +-0.00998113 0.12997 0.0175362 +-0.0633398 0.0410523 0.0148679 +0.0595186 0.0696512 0.0111197 +-0.0628106 0.0420167 0.0410925 +-0.0280399 0.038261 0.000453129 +-0.0314842 0.0386701 -0.0153847 +-0.0183396 0.183004 -0.0240946 +-0.0414917 0.0662628 0.0414077 +-0.0512875 0.0335238 -0.00177633 +-0.009723 0.0684621 -0.0362531 +-0.0736747 0.166615 -0.0419946 +-0.0678387 0.0966346 -0.0163917 +-0.0609822 0.170956 -0.0597011 +-0.0778143 0.0696403 0.00741827 +-0.00249339 0.0619776 0.0560364 +-0.0574944 0.0732758 0.0411576 +0.0174045 0.0834609 0.0516215 +0.0222999 0.0360441 0.0108303 +-0.0134047 0.0981882 0.0494032 +-0.0437579 0.0335748 -0.0150071 +0.0210813 0.123852 -0.00148905 +-0.0530498 0.14867 -0.00246875 +-0.00549096 0.105886 0.0440438 +0.0181231 0.0349865 -0.00397885 +0.011218 0.0822648 -0.0313395 +-0.0785671 0.172906 -0.0416992 +-0.0304948 0.094646 0.0448519 +-0.0315011 0.101567 0.0426346 +-0.0867319 0.116264 0.0471164 +-0.0745642 0.0928269 0.03994 +-0.0287411 0.0366033 0.0533099 +-0.0733382 0.158682 -0.00576511 +-0.011641 0.172783 -0.0205328 +-0.0261276 0.166758 -0.01752 +0.0323797 0.117481 0.0145242 +-0.073083 0.166616 -0.0429976 +0.00318323 0.0894801 -0.0335291 +-0.0592544 0.0696245 0.0378273 +0.00902499 0.0346466 0.0239397 +-0.0614627 0.0334736 0.00162861 +-0.081048 0.154699 0.0221975 +-0.0337735 0.0765809 -0.0265027 +-0.0440788 0.0336672 -0.00594116 +-0.0501186 0.0375352 0.0462556 +0.0383972 0.0931984 -0.0106151 +-0.0507798 0.0488052 0.0196439 +0.0480167 0.0525694 0.0306027 +-0.0715181 0.0657302 0.000515199 +-0.0584278 0.0383351 -0.00941724 +-0.0484961 0.0987927 0.0435149 +-0.00449408 0.088412 0.0569078 +0.00197552 0.0378956 -0.000532016 +-0.0538466 0.0665391 0.0363755 +-0.0736039 0.148578 -0.0278556 +-0.0406505 0.117474 -0.0142631 +-0.0354963 0.0690808 0.0415601 +-0.063566 0.148289 0.0378536 +0.0187266 0.0350257 0.0273865 +0.00460237 0.0388981 -0.00652166 +-0.0775459 0.0688051 0.0117853 +-0.0880987 0.13916 0.0101984 +-0.0871517 0.106348 0.0123653 +-0.0867616 0.0833332 0.0134846 +-0.053009 0.0343093 0.0275811 +-0.0793348 0.0980896 0.0346601 +-0.0751339 0.0669087 0.0157231 +0.0158163 0.0344928 -0.00398192 +-0.0754309 0.0981509 0.0378194 +-0.0695415 0.15615 0.0130838 +0.00196735 0.0370051 -0.0146847 +-0.0711264 0.142566 -0.0097279 +-0.0202009 0.17418 -0.0222934 +-0.0315791 0.125791 0.0170798 +-0.0460989 0.157633 -0.00826241 +-0.0164967 0.0701922 0.0547571 +0.0456793 0.0890097 0.00617442 +-0.0263303 0.0336202 -0.0227625 +0.0458885 0.0778077 0.00419775 +-0.0613708 0.044683 0.0409908 +0.00384566 0.0341227 -0.0209701 +-0.0771455 0.156966 -0.0119003 +0.0355806 0.113279 0.0157103 +-0.036902 0.0362143 0.0131672 +-0.0532397 0.146242 0.0224016 +-0.0474989 0.107059 0.0399589 +-0.0857477 0.109049 0.020349 +-0.0892569 0.122633 0.00330914 +0.054626 0.0562289 -0.00078591 +-0.0161012 0.16832 -0.0147108 +-0.0788763 0.0949177 -0.010577 +0.026592 0.0578126 -0.0217526 +-0.061825 0.164563 -0.0576805 +-0.0210306 0.180146 -0.0147237 +-0.0474984 0.0833402 0.0443799 +-0.0884317 0.131079 0.0440854 +-0.0591643 0.0341749 0.0263998 +0.0381002 0.078079 0.0357853 +-0.0515897 0.146262 0.0154112 +0.0121111 0.116449 0.0370148 +-0.0414388 0.033531 0.00382893 +-0.0200653 0.172726 -0.0151523 +-0.0170332 0.164657 -0.0177746 +-0.0212056 0.0336704 -0.0218021 +-0.0696662 0.0710058 0.0344116 +-0.0516682 0.152149 0.0128837 +-0.0125103 0.0687513 0.0543288 +0.0366353 0.0982561 -0.0107953 +-0.0789343 0.0700266 0.0104198 +-0.0897898 0.136552 0.0342 +-0.0127086 0.0383825 0.00890404 +-0.0624498 0.166273 -0.0455815 +0.0326592 0.0619445 0.0401066 +-0.0457467 0.132003 0.0161756 +-0.0886572 0.111878 0.019323 +-0.0532618 0.0335957 0.00317772 +-0.0164951 0.109966 0.0413377 +0.0543768 0.0731861 0.0106539 +-0.0174802 0.127364 0.0206736 +0.0567172 0.0621967 0.0256596 +0.0464307 0.0792576 0.0101822 +-0.0292965 0.0818454 -0.0346209 +0.0426284 0.0719164 -0.00480026 +0.0578503 0.0648244 0.0238145 +0.0430174 0.0637781 -0.0018983 +-0.0794408 0.0768726 0.0291038 +0.0545285 0.0622324 0.0277996 +0.0441819 0.0945484 0.0191589 +-0.0284244 0.119569 -0.0104891 +-0.0778403 0.10982 0.0432074 +0.0160506 0.0754058 0.0531341 +-0.0523159 0.0517943 0.0256431 +-0.0181754 0.17123 -0.0220272 +-0.049306 0.147765 0.0110054 +-0.0405044 0.166738 0.00354035 +0.0214342 0.0934308 -0.0229317 +0.0452295 0.0931909 0.0101587 +-0.0352058 0.126987 0.0025067 +-0.0177396 0.0642294 -0.0366219 +-0.0251728 0.1712 -0.0194857 +0.0122607 0.0538397 -0.0290819 +-0.0902417 0.133644 0.00722857 +-0.0815914 0.0767239 0.0235201 +-0.0534472 0.146228 0.0234079 +0.0235949 0.0875751 0.0483132 +-0.0647237 0.158466 -0.0128094 +-0.0260145 0.0688342 -0.034504 +-0.0770801 0.15139 0.0355785 +-0.0630768 0.0336712 -0.00794186 +-0.0574971 0.10156 0.0427298 +0.0435266 0.0664036 0.0265247 +-0.0500812 0.146304 0.0115954 +-0.0568525 0.0521385 0.00567837 +-0.0436626 0.0607395 -0.0127771 +-0.0426472 0.117732 -0.0145554 +-0.0805782 0.112389 0.0458728 +-0.0161125 0.127667 0.00290411 +-0.00749701 0.0576432 0.054379 +-0.0454968 0.0775542 0.0422104 +-0.0694956 0.0958583 0.0420894 +-0.0369639 0.0346855 -0.0305537 +-0.0640756 0.151735 -0.033508 +-0.00249095 0.0718247 0.0580407 +-0.0583644 0.065095 0.0331446 +-0.0748917 0.16378 -0.0359985 +-0.0710199 0.0662278 0.0242287 +0.035425 0.0754528 0.0389267 +-0.0547392 0.075379 -0.0185175 +0.0462455 0.0784487 0.0155769 +-0.0310503 0.155166 -0.00836756 +-0.0879532 0.117604 0.0468721 +-0.0630191 0.169374 -0.0476038 +-0.0445267 0.0423569 -0.0163056 +-0.0624997 0.0818785 0.0437679 +-0.0842794 0.115636 -0.000747849 +-0.0700345 0.0631474 0.0200567 +0.0125104 0.105746 0.0436503 +-0.0795696 0.0976882 -0.00856087 +-0.0495247 0.141678 0.0113921 +0.0166382 0.123302 0.0301317 +-0.0367737 0.0813353 -0.0218258 +0.0465043 0.0597504 0.0314309 +-0.0777677 0.0975799 -0.010556 +-0.0460219 0.166062 0.00401182 +0.0609087 0.0623561 0.0101482 +-0.0403969 0.033577 0.00400031 +0.0286533 0.0578113 0.0412965 +0.0447855 0.0917675 0.0181585 +-0.0238167 0.0929782 -0.0327062 +-0.0714891 0.129823 0.0511416 +-0.0235755 0.157761 -0.0033973 +-0.0525761 0.136549 0.0284096 +-0.0177757 0.0756957 -0.0389571 +-0.0184004 0.0383962 0.0258071 +-0.0162165 0.175672 -0.0252165 +-0.0326786 0.0835446 -0.0285522 +-0.0897198 0.135201 0.0382086 +0.0138704 0.12508 0.0305218 +-0.0334383 0.0383149 -0.00250434 +0.0173372 0.059408 -0.0277846 +0.02739 0.119413 -0.00163712 +-0.055795 0.129741 0.0368819 +-0.0124902 0.0560062 0.0517339 +0.00742257 0.034128 0.000278711 +0.0312441 0.0828649 -0.019558 +-0.0804968 0.149757 0.0362335 +0.0224909 0.107012 0.0395338 +-0.0282283 0.117946 -0.012805 +-0.0726553 0.180933 -0.0546755 +-0.0683563 0.134056 0.04686 +-0.0197453 0.163025 -0.0159769 +-0.0591933 0.155725 0.01387 +-0.0522733 0.13577 -0.00153662 +0.0413723 0.0971667 -0.00382246 +-0.0920493 0.125439 0.00826634 +-0.0522301 0.0388364 0.0467813 +0.0151427 0.107227 -0.0182666 +-0.0397192 0.03358 0.00232461 +0.0373971 0.049112 -0.00639066 +-0.0698932 0.120907 -0.00884856 +-0.0667865 0.156181 0.0155153 +-0.0865635 0.0819919 0.0164862 +-0.0276111 0.0476412 -0.0256716 +-0.050104 0.0515366 0.0156131 +-0.0466794 0.0620985 -0.0127944 +-0.0784369 0.170061 -0.0360578 +-0.0714268 0.173765 -0.0397048 +-0.0313808 0.0567165 -0.0143886 +-0.0309651 0.0347631 0.0441412 +0.0067865 0.130497 0.0221788 +-0.0524448 0.149335 0.0194038 +-0.0414976 0.0860064 0.0425981 +-0.0709701 0.155369 -0.0459101 +0.00322675 0.0810659 -0.0345434 +-0.0294909 0.0917678 0.0440939 +-0.0734658 0.151245 -0.0358847 +-0.079509 0.130274 0.0528999 +-0.00249263 0.0534855 0.0544759 +-0.070992 0.0395652 0.00837515 +-0.0868944 0.122556 -0.00173403 +-0.0574179 0.0608499 0.024689 +-0.0424855 0.09447 0.0423231 +-0.00342977 0.0386245 0.00511046 +-0.018769 0.037629 -0.017491 +-0.0527937 0.0869491 -0.0216809 +-0.0846182 0.106299 0.024344 +0.0443742 0.0818795 -0.000800454 +-0.0894613 0.148789 0.0111841 +-0.0867708 0.110409 0.0193573 +-0.0310025 0.176085 -0.0150686 +0.00863383 0.115058 0.0390007 +-0.0408994 0.163853 0.00394115 +-0.057289 0.0707546 0.0390509 +-0.0646832 0.0432745 0.0336962 +0.0205013 0.0892461 0.0486645 +-0.0625318 0.0662874 0.0329584 +-0.0608083 0.147764 -0.00265379 +0.00615212 0.112907 -0.0196236 +-0.0299927 0.0436118 -0.0290457 +-0.0158151 0.162561 -0.00896512 +0.00597686 0.130404 0.00157669 +0.0284244 0.0822003 0.0446831 +0.0211099 0.0605491 0.0480139 +-0.0234016 0.184697 -0.0149423 +0.00333349 0.0390305 -0.00876711 +-0.0635183 0.159851 -0.052592 +-0.0770983 0.150031 -0.00589737 +0.0214723 0.0878669 0.0490265 +-0.0679264 0.131258 0.0474463 +0.00194863 0.100763 -0.0227079 +0.00777681 0.0385776 0.0292039 +-0.022633 0.08929 0.0533197 +-0.00603192 0.127393 0.0291246 +-0.0911594 0.120221 0.0443019 +-0.0894985 0.121276 0.00330358 +-0.0368227 0.0914861 -0.023804 +-0.0530502 0.151987 0.0175947 +-0.0672887 0.121448 0.0519139 +-0.0568311 0.0912579 -0.0217399 +-0.0697681 0.0822532 -0.0170635 +-0.0874076 0.0990828 0.0243308 +-0.0355048 0.108366 0.0378272 +0.0287346 0.10342 0.0381993 +-0.0860991 0.0964962 0.0273389 +0.0321886 0.108821 -0.00928902 +-0.0781375 0.103077 -0.00856917 +-0.0630075 0.0458305 0.00872119 +-0.0737672 0.068042 0.0238437 +-0.0863239 0.111846 0.0325401 +-0.00949559 0.10164 0.0439977 +-0.0902184 0.117255 0.00530427 +-0.075404 0.0914629 0.0394057 +-0.0453927 0.0336614 -0.0191153 +-0.0827835 0.0790493 0.0255103 +-0.0912019 0.132413 0.0272298 +-0.0564798 0.081975 0.044689 +-0.072928 0.148723 -0.0327819 +-0.00163455 0.0466691 -0.0289171 +-0.0665675 0.0355377 -0.00701232 +-0.000953404 0.100702 0.0462281 +-0.00881786 0.169637 -0.0227487 +-0.0201288 0.165284 -0.0176913 +-0.0859703 0.127103 0.0488324 +0.0255102 0.106068 0.0387825 +0.0570523 0.0522954 0.00619533 +-0.0407044 0.0491484 -0.0113833 +-0.0394747 0.168236 0.00277528 +-0.0690053 0.160967 -0.0519594 +0.0161135 0.0534638 0.0477167 +0.0284604 0.079188 -0.0220838 +0.0113708 0.0523816 -0.0287924 +0.0393128 0.0955964 -0.00780286 +-0.020906 0.0387029 0.0322136 +-0.00871553 0.0642094 -0.0357226 +-0.0547883 0.08548 -0.0214211 +-0.0725291 0.0901409 0.0413911 +-0.0566631 0.0629472 -0.00640536 +0.00234532 0.0524899 -0.0301138 +-0.0938956 0.118755 0.0202995 +-0.0414996 0.0846033 0.0426094 +0.00904636 0.090083 -0.0314826 +0.00730102 0.131 0.00524198 +-0.0637681 0.0809918 -0.0188675 +-0.0414945 0.041025 0.0428519 +-0.087002 0.140499 0.00821758 +-0.0709364 0.151841 0.036169 +-0.0634902 0.106988 0.0392647 +-0.0628225 0.0910404 -0.0189489 +-0.0105509 0.165091 -0.0177492 +-0.00157082 0.0341515 -0.0183868 +-0.0378749 0.105661 -0.0201869 +-0.0689412 0.079144 0.0404114 +-0.0239658 0.0335277 -0.0259671 +-0.0732183 0.172207 -0.0490431 +-0.0205007 0.0971766 0.0453281 +-0.0778797 0.109167 0.0401678 +0.000488577 0.0965409 0.0535304 +-0.0172908 0.177187 -0.018141 +0.00409629 0.128905 0.0269756 +0.0212668 0.080528 -0.0265872 +-0.0484872 0.0931824 0.0442201 +-0.0703872 0.161044 -0.0469664 +-0.0556945 0.0334591 0.00641451 +0.043113 0.0972735 0.00118522 +-0.0465526 0.147719 0.00793526 +-0.0620051 0.0336477 0.00854436 +-0.0789484 0.130998 -0.00538086 +-0.0329884 0.0347673 0.0437059 +-0.011676 0.0389222 -0.00979553 +-0.0102112 0.168384 -0.01842 +-0.058489 0.0747585 0.0420339 +0.0115041 0.129313 0.00109395 +-0.0186879 0.0554617 -0.0328673 +-0.0198225 0.168315 -0.0130587 +-0.013087 0.0382629 0.0179922 +0.0130281 0.0916311 -0.029044 +0.0271142 0.0463333 0.0371793 +-0.0618303 0.167813 -0.0535931 +0.0164903 0.113991 0.0376096 +-0.0592845 0.0336203 0.0127024 +-0.0728419 0.0642516 0.016748 +-0.0527116 0.12267 0.0360612 +-0.091424 0.144749 0.0231531 +0.0225812 0.0946281 -0.0221802 +-0.073319 0.153662 0.0322986 +-0.0384844 0.109782 0.036904 +-0.0551177 0.156069 -0.00176933 +-0.0195075 0.0512747 0.046374 +0.0374508 0.109679 0.00217662 +-0.0624744 0.163093 -0.0485882 +-0.0482041 0.0335795 -0.00119996 +0.0115865 0.127977 -0.0019288 +0.00494704 0.131338 0.0186496 +0.00228726 0.131702 0.0133903 +-0.0890002 0.134996 0.00522535 +0.0114372 0.12283 -0.0103617 +-0.0719092 0.180772 -0.055937 +-0.0144633 0.051615 0.0495133 +0.0147782 0.034634 0.0233109 +-0.0647828 0.177875 -0.0546137 +-0.0882908 0.103675 0.012381 +-0.0631313 0.0343469 0.025414 +-0.0255881 0.169753 -0.0108444 +0.0323006 0.0361518 0.00522301 +-0.0682938 0.06404 -0.00150269 +-0.0705485 0.167591 -0.022181 +0.0271973 0.0508207 -0.0197147 +-0.01565 0.10151 -0.0235687 +-0.0233444 0.0380443 0.0215084 +-3.10615e-05 0.0346258 0.0437307 +-0.0391691 0.162354 0.00112683 +-0.0657552 0.0422954 0.0115704 +-0.0745006 0.142795 0.0461595 +0.0473913 0.0422357 0.0119475 +0.0144595 0.121944 0.0333941 +-0.00358089 0.036197 -0.0248262 +0.0394746 0.0459091 0.0309432 +-0.0744487 0.141666 -0.00675172 +-0.0615813 0.0380878 0.0442214 +-0.0393467 0.0392853 0.042122 +-0.0229052 0.0945537 0.0478017 +-0.0281182 0.0563778 -0.0244009 +-0.0325146 0.112544 0.0353443 +0.0114695 0.0949418 0.0507264 +-0.027899 0.0377311 0.0244577 +-0.0247344 0.0668597 -0.034525 +-0.0623338 0.163141 -0.0335899 +0.0341266 0.0993109 -0.0131459 +-0.0130965 0.169821 -0.0173751 +0.0250182 0.11137 0.036342 +-0.0513993 0.14316 0.0173798 +-0.0521465 0.121207 0.0350569 +0.0134264 0.0403382 -0.0227982 +-0.0919004 0.143349 0.0181646 +0.0256492 0.0831048 -0.024123 +-0.0614955 0.0973435 0.04311 +0.0110632 0.0360404 -0.022358 +-0.0702704 0.159573 -0.0469358 +-0.0135146 0.181607 -0.0231689 +0.0462675 0.0778418 0.00718957 +-0.057322 0.0452663 0.0256799 +-0.0473932 0.0337786 -0.0140697 +0.0180643 0.0577618 0.0488361 +-0.0840242 0.151932 0.0065796 +-0.0547337 0.0738545 -0.0174125 +-0.0647273 0.156687 -0.0474505 +-0.0184955 0.0513594 0.0472431 +0.0314014 0.0491212 -0.0073371 +-0.0336406 0.0339783 -0.0207966 +0.0302861 0.0722616 -0.0207987 +-0.0707237 0.135491 0.0487549 +0.0373244 0.0861524 0.0364715 +-0.0839874 0.129456 -0.00327263 +-0.0579656 0.0599816 -0.000771046 +-0.0374903 0.0917378 0.0437278 +-0.0421167 0.157651 -0.00983865 +-0.0774831 0.151439 -0.0048996 +-0.0664918 0.167987 -0.0292876 +-0.0348246 0.12664 0.0173665 +0.0288107 0.113482 -0.00830654 +-0.0939345 0.122834 0.0252963 +-0.0236453 0.0906062 0.0514725 +-0.0623453 0.151603 -0.000787959 +-0.0394885 0.0520168 0.0393574 +-0.0228668 0.103033 -0.0236969 +-0.0205005 0.115412 0.03703 +-0.0206187 0.158806 -0.0102834 +-0.00380864 0.0840797 -0.0375505 +-0.0846424 0.139002 0.00130344 +-0.0244403 0.0384399 0.0299279 +-0.0256136 0.0707601 0.0441795 +0.0431065 0.0733659 -0.00379081 +-0.0334964 0.0575473 0.0382542 +-0.0732341 0.100848 0.0383652 +-0.0417523 0.0392031 -0.0263092 +-0.0600247 0.0335577 0.00903367 +0.0319454 0.0782138 0.0427262 +-0.0478947 0.122501 0.0288841 +-0.0215102 0.0435311 0.0534788 +-0.0175036 0.0357848 -0.0270478 +-0.0659221 0.115196 -0.0104247 +-0.0452512 0.0574076 0.0387158 +-0.0318518 0.100063 -0.022678 +-0.062214 0.131105 0.0398962 +-0.0570307 0.151068 0.0316808 +-0.0390807 0.159219 -0.0117734 +-0.0575439 0.0421232 0.0457366 +-0.0434958 0.166715 0.00391556 +0.0435215 0.0973118 0.0181533 +0.0364745 0.0384289 0.0206775 +0.00783805 0.034796 0.0434029 +0.00550647 0.0519309 0.0530702 +-0.0452904 0.125307 0.0239255 +0.0384949 0.0469555 0.0314897 +-0.0344994 0.0860255 0.0426749 +-0.0604675 0.0334377 0.00185915 +0.00564306 0.109569 0.0416563 +-0.0341393 0.169665 -0.0151103 +0.0252174 0.115733 -0.00872379 +-0.0432318 0.0365168 -0.0263599 +-0.0648058 0.0881399 -0.0188881 +-0.0113055 0.0420913 0.0500945 +-0.0768733 0.0742923 -0.00658087 +-0.0718355 0.0757492 0.0369191 +-0.00552934 0.126815 -0.00649473 +-0.015298 0.113338 -0.0180384 +-0.0658513 0.168603 -0.0333515 +-0.0769239 0.160393 -0.0146649 +-0.0789031 0.0913518 0.0358575 +-0.0622512 0.175627 -0.0566298 +0.0427075 0.100107 0.0161639 +-0.0122664 0.0420539 0.0504523 +-0.0593768 0.116855 0.0386274 +-0.0207916 0.117992 -0.012906 +-0.0209967 0.0893299 0.0545201 +-0.0293388 0.0522666 -0.0213646 +0.042 0.102859 0.00616839 +-0.0915744 0.128321 0.0372423 +-0.0745556 0.104899 0.0367465 +-0.0874341 0.0860792 0.0144694 +-0.0893403 0.0983511 0.0184032 +0.0265834 0.0915781 0.0456097 +0.0111147 0.0359709 0.0304167 +-0.0251149 0.163764 -0.0159045 +0.0379525 0.0888235 0.0356698 +-0.0308593 0.102934 -0.0225503 +-0.0849458 0.0817985 0.00448942 +0.016843 0.101962 -0.021958 +-0.0602648 0.153206 0.0324327 +-0.00109974 0.118227 -0.0153259 +-0.0277867 0.0904111 0.0457123 +-0.0632329 0.149656 -0.0246848 +-0.0378318 0.0943285 -0.0232947 +0.00942926 0.0360304 0.00452751 +0.00308943 0.0346383 -0.0160359 +-0.0629538 0.164686 -0.0335942 +-0.0707579 0.0639499 0.00302292 +-0.0806378 0.0734203 0.0185511 +-0.0114878 0.0502762 0.0503958 +-0.051624 0.0589527 -0.00929309 +-0.0724662 0.156284 0.0178613 +-0.0755506 0.0791122 0.0357048 +-0.0599662 0.0605914 -0.00103222 +-0.0407972 0.128426 0.00338476 +-0.0685036 0.0972643 0.0418698 +0.0384545 0.081427 -0.0137424 +-0.0869304 0.137738 0.00419643 +-0.0915894 0.118845 0.0433559 +-0.0375104 0.0344317 -0.0164034 +0.0132714 0.0779991 -0.0309033 +-0.000460653 0.0717499 0.0573883 +-0.0689415 0.128234 -0.0091158 +-0.00449889 0.0389099 -0.0139692 +-0.00687105 0.104506 -0.0230032 +-0.0625734 0.0333471 -0.00389969 +-0.0466818 0.0680053 -0.0151447 +0.0325669 0.0564098 0.0381516 +-0.00676687 0.0770295 -0.0375725 +0.031043 0.0535582 0.0376713 +-0.0252324 0.0383969 -0.00646059 +-0.0781312 0.100777 0.0347873 +-0.0351912 0.0448435 0.0445858 +-0.0618482 0.0460583 0.00900481 +-0.0510378 0.148698 -0.00295565 +-0.0758068 0.170822 -0.0449998 +0.0228822 0.0407495 0.0397886 +-0.0556881 0.123137 -0.00801327 +0.041209 0.10285 0.0181659 +-0.057716 0.154704 0.0245626 +-0.0356589 0.0394362 0.046602 +-0.018436 0.0384553 -0.00144245 +-0.0725091 0.147853 -0.0287195 +0.0195403 0.0672509 0.0492981 +-0.00949487 0.11143 0.0422271 +0.0387128 0.0407096 0.0245464 +0.0274937 0.0354669 0.00307886 +0.0251817 0.0344441 0.0110044 +-0.0734653 0.11597 0.0519419 +-0.0517405 0.0367791 -0.0118947 +-0.0313584 0.0347088 0.042355 +-0.0271594 0.0577744 0.0376032 +0.0289959 0.083514 0.0437755 +-0.0609886 0.0421383 0.0435161 +-0.0642758 0.0379734 0.0412454 +-0.0669901 0.171097 -0.0394962 +0.00201718 0.0342688 0.0083365 +-0.0376227 0.0519888 -0.0106273 +-0.0604976 0.0761414 0.0420756 +0.0231651 0.0624431 -0.0251426 +-0.0444966 0.100126 0.0423688 +-0.0434704 0.0888362 0.0427012 +-0.0739012 0.112096 -0.00769672 +0.0113285 0.0381477 0.0446991 +0.0606492 0.0595518 0.0111602 +-0.0344028 0.0453249 -0.0266763 +-0.0238559 0.100178 -0.023968 +0.0124979 0.0363631 -0.0219171 +-0.0386629 0.0606634 -0.011982 +-0.0845122 0.0778323 0.0175087 +-0.0447652 0.0811738 -0.019998 +-0.0325802 0.0708663 -0.0234636 +-0.0428489 0.09852 -0.021578 +0.0343638 0.0491351 -0.00656846 +-0.00173319 0.108975 -0.0214067 +-0.0513914 0.0516798 0.0216239 +0.00608628 0.101527 -0.0214717 +-0.0746196 0.147202 -0.0138555 +-0.0464944 0.0733156 0.0418074 +0.0275533 0.0550749 -0.019815 +-0.0617588 0.0455326 -0.00130544 +-0.0627435 0.14749 -0.0135844 +0.0114636 0.0347788 0.020691 +0.0413154 0.0451948 0.0296022 +-0.0855482 0.149965 0.0308161 +0.045359 0.04899 -0.00489955 +0.000884291 0.038993 0.0274224 +-0.086804 0.0846773 0.00948205 +0.00217921 0.090906 -0.033534 +-0.0074916 0.0518487 0.0520774 +-0.000472995 0.0746288 0.0583091 +0.00707409 0.0348007 0.0234037 +0.0191098 0.127253 0.00673134 +-0.00312412 0.123427 0.0346626 +-0.0251492 0.0379137 0.0122303 +-0.030188 0.124116 0.0205603 +-0.0326284 0.178159 -0.00692862 +-0.0371849 0.0430027 -0.0273252 +0.000516139 0.0703294 0.0566091 +-0.061834 0.155291 -0.0275862 +0.0144787 0.103102 0.0461637 +-0.0601666 0.138122 0.0340792 +0.0447845 0.0903596 0.0201575 +-0.0175794 0.128153 0.00899134 +-0.0654784 0.133956 0.0422213 +-0.078379 0.0698242 0.00895098 +-0.0544145 0.0561001 0.0105768 +-0.0166845 0.0625881 0.0524778 +0.0283147 0.0712973 0.0426773 +0.00750546 0.105745 0.0420743 +-0.0365184 0.126747 -0.000928274 +-0.0297912 0.154227 -0.00467156 +0.0242356 0.0804257 -0.0251216 +-0.0507602 0.0797387 -0.0202693 +-0.0399713 0.112687 -0.0172474 +0.0170749 0.128355 0.00741174 +-0.0399375 0.150681 0.00347523 +-0.0608612 0.0435863 0.0137318 +-0.0365883 0.0485443 -0.0138981 +-0.0910601 0.132402 0.0282222 +-0.0795844 0.0759236 -0.00451678 +-0.0809274 0.12805 -0.00535084 +-0.0711513 0.132664 0.0498849 +0.0150413 0.120568 0.0342385 +0.00849911 0.119651 0.036768 +-0.0569109 0.033599 0.014995 +-0.0689033 0.0887623 0.0428815 +-0.020138 0.166773 -0.018707 +-0.0815894 0.0926183 0.0328436 +0.00319943 0.0866473 -0.0337836 +-0.0528475 0.140082 0.0254195 +0.0217844 0.118301 -0.00950952 +-0.0305318 0.0734349 -0.0315361 +-0.0355385 0.040818 0.0464546 +-0.0446309 0.0563208 -0.0114385 +-0.0779756 0.13395 -0.00568102 +-0.0924453 0.114684 0.0163206 +-0.0427865 0.0855262 -0.0214717 +-0.030041 0.0819074 -0.0335886 +-0.0350329 0.037518 0.0477355 +-0.0574727 0.0791252 0.0438951 +-0.0347822 0.124221 0.0233214 +0.0396853 0.0674479 -0.00978879 +-0.0280887 0.123076 -0.00418723 +-0.0357494 0.0383801 -0.010405 +-0.0896534 0.0983503 0.0154045 +-0.0393744 0.174134 -0.00504658 +-0.00548988 0.121033 0.0366102 +-0.0493281 0.143211 0.0074004 +-0.0618749 0.161566 -0.0365945 +-0.00486561 0.103096 -0.0233724 +-0.0158939 0.0387206 -0.00487532 +-0.0136298 0.0943834 -0.0340901 +-0.0708677 0.158014 -0.00345716 +-0.0679292 0.0674285 0.0308631 +-0.0698001 0.0894083 -0.0167108 +-0.0708742 0.117963 -0.00822963 +0.0544559 0.0679536 0.0254119 +0.0505447 0.0640078 -0.00213219 +-0.0328813 0.11004 -0.0184872 +-0.0329481 0.169751 -0.00390259 +-0.0730465 0.158091 -0.00419381 +-0.0642284 0.165303 -0.0599757 +-0.0393381 0.149359 -0.00118821 +0.027659 0.115893 0.031317 +0.00307915 0.03925 0.0330573 +-0.0268824 0.0338882 -0.0212482 +-0.076206 0.0892711 -0.0135327 +0.036558 0.0887304 -0.0159156 +-0.045503 0.0478046 0.0396725 +-0.00457894 0.0383459 0.0160278 +-0.014359 0.102532 0.0433738 +-0.0263218 0.038308 -0.00105771 +-0.0252694 0.0564528 0.0400125 +-0.0745038 0.137269 0.049596 +-0.0478639 0.102799 -0.0211716 +-0.0698236 0.144589 -0.0179026 +-0.00449355 0.112805 0.041803 +0.0395793 0.107012 0.0171684 +0.0320331 0.117177 0.0215305 +0.0319133 0.103439 0.0357737 +-0.0232571 0.160328 -0.0132723 +-0.0368559 0.101427 -0.0217814 +-0.0779001 0.105799 -0.00757653 +-0.0719733 0.155857 0.00930845 +-0.0667659 0.0664754 0.0301739 +-0.0116086 0.0384341 0.0253641 +-0.0828253 0.0815398 -0.00255091 +-0.00864403 0.0481881 -0.0304747 +-0.0695881 0.0687436 -0.00572614 +-0.053703 0.069339 -0.0141095 +-0.0875622 0.147255 0.0314849 +-0.060703 0.146825 0.0369155 +0.0559661 0.0563559 0.00119345 +-0.0899141 0.140577 0.0142032 +0.0290556 0.0480892 -0.0107335 +-0.0444676 0.0959215 0.0428438 +-0.0126944 0.0614008 -0.0362648 +-0.00712049 0.126279 0.0302479 +0.00717458 0.125139 0.032446 +0.0130051 0.123122 0.0330958 +-0.0658939 0.119442 -0.00885604 +-0.0535827 0.0550746 0.0114399 +0.00820634 0.0865719 -0.0325157 +-0.0358588 0.100033 -0.0223224 +-0.0816885 0.110103 -0.000571623 +-0.0517049 0.0693137 -0.014154 +-0.0304078 0.0499703 0.0425042 +0.0090211 0.0602846 0.0533569 +-0.0102692 0.126825 -0.00441849 +-0.0412575 0.123881 0.0239565 +-0.0304041 0.179805 -0.0103906 +-0.0119972 0.115638 -0.0165051 +0.0413233 0.102851 0.0171643 +-0.032272 0.0343596 0.0389523 +-0.0854712 0.0791996 0.00951147 +-0.0138083 0.082755 -0.0391488 +-0.0256473 0.0335939 -0.0244827 +0.0452831 0.0511563 0.0319003 +-0.0829803 0.153189 0.00837374 +-0.0435404 0.0351992 0.0428237 +0.0114184 0.0389206 -0.0228692 +0.0440394 0.0405103 0.0110966 +-0.0218345 0.0725147 0.0516294 +0.0173744 0.124995 0.027504 +-0.0771042 0.163136 -0.0202013 +0.0282746 0.0494546 -0.0167442 +-0.0703245 0.0805604 0.0403227 +-0.0558701 0.154311 0.0223113 +-0.0790495 0.0785612 -0.00658771 +0.0023439 0.122378 0.0350184 +-0.0220309 0.0609111 0.0451603 +-0.0853195 0.117662 0.0484974 +-0.0580048 0.0366442 0.0464062 +-0.00844255 0.0358982 -0.0250895 +0.0243113 0.119024 -0.0062727 +-0.0558892 0.141955 -0.00229647 +-0.0642262 0.115635 0.0441038 +-0.0719279 0.153998 -0.0419035 +0.0423481 0.0732982 -0.00579253 +0.0103113 0.0595614 -0.0298764 +-0.0818376 0.116236 -0.00283916 +0.0590795 0.0663557 0.00613696 +-0.039497 0.0436994 0.0413132 +-0.0702982 0.0846763 0.0415948 +-0.0167436 0.068615 -0.0382083 +-0.0690033 0.127063 0.0512206 +-0.0485018 0.102883 0.0409949 +-0.0541716 0.144673 0.0274046 +0.0243198 0.0564051 0.0438207 +-0.0308589 0.0382072 0.0517831 +-0.00548321 0.119649 0.0378412 +-0.0606463 0.0434636 0.0431332 +-0.008712 0.171156 -0.0257232 +-0.0444845 0.0846726 0.04342 +-0.0897848 0.135174 0.0342114 +-0.00690926 0.0349718 0.0473534 +-0.0808786 0.122166 -0.00503067 +-0.0779103 0.070378 0.00551561 +0.0134856 0.129689 0.00607818 +-0.0225837 0.0666453 0.0469216 +-0.0525012 0.046573 0.0420391 +-0.0444858 0.091688 0.0430295 +-0.0394965 0.0662956 0.0417788 +0.00897384 0.0364118 0.0277765 +-0.0782046 0.166684 -0.029962 +0.0192461 0.0777761 -0.0276631 +-0.0483417 0.137106 0.010396 +0.0258883 0.12226 0.00355652 +0.0398565 0.0384519 0.0122163 +-0.0408758 0.107069 -0.0201235 +-0.0315055 0.0689302 0.0397623 +-0.068912 0.148468 -0.034342 +-0.0496681 0.0705507 0.0391462 +0.00414266 0.131018 0.00407154 +0.0204354 0.100784 0.0455262 +-0.0587133 0.0708136 -0.0155469 +-0.00369415 0.0386815 0.0249596 +-0.0546088 0.0601814 -0.0071333 +0.0277597 0.0984362 -0.0181936 +0.00136992 0.128685 0.0274437 +-0.0166951 0.0555255 -0.0336624 +0.0054852 0.109984 0.0416767 +-0.079955 0.130987 -0.00485489 +-0.00265109 0.0497012 -0.030809 +-0.0697849 0.145343 0.0431021 +-0.0903934 0.12698 0.0433203 +-0.0409656 0.122163 0.0270528 +-0.056363 0.13673 0.0325483 +-0.00422605 0.0355815 -0.0164762 +-0.0158888 0.123338 -0.00654807 +0.0233356 0.0389315 -0.00470356 +-0.0377622 0.0797629 -0.0199128 +-0.0274204 0.12046 -0.00942796 +-0.0745042 0.0669844 0.00328572 +-0.0544992 0.0400332 0.0469658 +-0.022854 0.100181 -0.0240549 +-0.0748342 0.156367 -0.00257451 +0.00532997 0.0389553 -0.00830106 +-0.0591545 0.129731 0.0390508 +-0.0365933 0.117132 -0.0139142 +0.00710349 0.126169 0.0309735 +0.00420316 0.0838546 -0.0341295 +0.0424932 0.0541962 0.0323753 +-0.0447782 0.039524 -0.0212903 +0.0130456 0.0946785 -0.0262358 +0.0515873 0.047616 0.00226708 +-0.0226971 0.059684 -0.0328522 +-0.0489531 0.117804 -0.0145786 +-0.00521852 0.130779 0.0091953 +-0.0745798 0.155493 -0.021916 +-0.0211637 0.171222 -0.0207379 +-0.0681899 0.15036 -0.0415571 +-0.0645431 0.0356401 -0.00785526 +0.0444401 0.0776895 -0.00177282 +0.0191352 0.0356125 -0.00767677 +-0.0879901 0.0928029 0.00642738 +-0.0274823 0.0617236 0.037721 +0.0406194 0.104193 0.00117617 +-0.0205806 0.0342261 -0.0203167 +0.052283 0.0559902 -0.003254 +-0.0826845 0.0884898 0.0312484 +-0.0354914 0.0719062 0.0418497 +0.00222867 0.0810902 -0.0349213 +-0.0247631 0.123128 0.0239793 +0.00210157 0.111597 -0.0202587 +-0.029962 0.122606 -0.0056563 +-0.0642809 0.173904 -0.0612545 +0.0164873 0.128764 0.0128859 +-0.0290915 0.0334798 -0.0269263 +0.0563251 0.0686891 0.0234174 +0.0388229 0.0428364 0.0281231 +-0.0364553 0.171237 0.000642707 +-0.0695352 0.0422413 0.00168563 +0.0115865 0.119151 -0.014401 +-0.0445078 0.128204 0.0197407 +-0.0735439 0.101276 0.0379813 +-0.0842997 0.131249 0.0498733 +-0.0456134 0.0424471 -0.0132755 +0.00124079 0.0740793 -0.0353703 +-0.0590284 0.155612 0.0197248 +0.00626131 0.0696979 -0.0331897 +-0.0465413 0.123419 -0.0104793 +-0.0145087 0.0587885 0.0518852 +-0.0412993 0.127471 0.0164976 +-0.0621264 0.0457845 0.0326787 +0.00861617 0.0348422 -0.0132521 +-0.0699384 0.129684 -0.00901632 +-0.0174184 0.0961382 -0.0299203 +-0.0408477 0.0999502 -0.0215042 +-0.0629342 0.109643 -0.0151294 +-0.0588992 0.0593658 0.0203903 +-0.0622614 0.0594461 0.0178467 +0.0503092 0.0575099 -0.00459296 +0.0328071 0.0781213 -0.0187889 +0.0297936 0.0354746 0.0165125 +-0.0592597 0.0343664 0.034953 +-0.0736653 0.0761112 -0.0107553 +0.0358581 0.0686798 0.0377462 +-0.0814983 0.102013 0.0310531 +0.0072631 0.0968089 -0.0265119 +-0.0107695 0.0756601 -0.0381615 +-0.0665448 0.142647 -0.010737 +-0.0861837 0.0868588 0.0248974 +-0.0323987 0.114036 -0.016697 +-0.0526124 0.143167 0.0204083 +-0.00749979 0.118315 0.0383098 +-0.0366574 0.0591917 -0.011518 +-0.0854765 0.145991 0.0364919 +-0.0590102 0.131118 -0.0069845 +0.0099878 0.0342067 -0.0142754 +0.0406313 0.0833746 0.032449 +-0.0377389 0.0753784 -0.0182557 +-0.0265179 0.111211 0.0374625 +-0.0457781 0.109842 -0.0182449 +0.0106021 0.12463 0.0322012 +-0.0714609 0.172223 -0.0354286 +-0.0918002 0.143353 0.0191654 +0.009256 0.0681484 -0.0312392 +0.00426025 0.0352382 0.0224392 +-0.0497576 0.0782604 -0.019072 +-0.0628575 0.0953598 -0.0185102 +0.0594691 0.0677866 0.0081304 +0.0120479 0.124912 -0.00663019 +-0.0896003 0.111903 0.0133388 +-0.000572916 0.131478 0.0109076 +-0.0856485 0.103181 0.0252723 +-0.0825849 0.0762413 0.018536 +0.0357614 0.089262 -0.0164786 +-0.0853874 0.0978708 0.0280062 +-0.0250231 0.0373676 -0.0184933 +-0.0224668 0.0384735 -0.00782567 +-0.0215612 0.127036 0.0148264 +0.0375018 0.0527008 0.0316063 +0.0132903 0.0644915 0.0525417 +0.021025 0.0444507 -0.0197096 +-0.0230202 0.0380885 0.0125034 +-0.0190143 0.123258 -0.00649836 +-0.0634892 0.101502 0.0420523 +-0.0022961 0.120938 -0.0122094 +-0.0682754 0.155222 0.00480981 +-0.0105391 0.0444694 0.0492224 +-0.0314884 0.0988001 0.0440684 +-0.0162822 0.113495 -0.0182068 +0.0427502 0.0832247 0.0284671 +-0.0317184 0.124145 0.0214762 +-0.0228243 0.0868132 -0.0375213 +0.0112412 0.122679 0.0339481 +-0.0624726 0.093208 0.0448109 +-0.0195149 0.0474114 0.0506124 +-0.0305029 0.105682 0.0404793 +0.0297926 0.0510441 -0.0147439 +-0.0660587 0.0336733 0.00769062 +0.01375 0.126078 -0.00389468 +0.00623348 0.0768314 -0.0342539 +0.00723812 0.0725784 -0.0338132 +-0.0345032 0.0747169 0.0417978 +-0.0533429 0.0572662 -0.00744815 +-0.0588626 0.0344147 0.0367317 +-0.0597544 0.151092 0.0347772 +-0.066041 0.156288 0.0201296 +-0.0519452 0.0542248 0.0130044 +-0.0536545 0.154299 0.0129697 +-0.0553709 0.131821 -0.00535733 +-0.0165812 0.0355875 -0.0267111 +-0.0671293 0.149176 -0.0346332 +0.0364911 0.112064 0.0146153 +-0.0678122 0.0908837 -0.0169858 +-0.0433492 0.123979 0.0232099 +0.0233446 0.0489622 -0.0213372 +-0.0401353 0.162183 -0.0119788 +-0.0436993 0.0680874 -0.0160622 +-0.0575 0.0589785 0.0215704 +0.002504 0.0605716 0.0560843 +-0.0230753 0.078299 0.0540943 +-0.0532839 0.150877 0.0224035 +-0.0536299 0.144677 0.0243972 +0.0138044 0.129402 0.00474998 +0.0390959 0.0382591 0.0140545 +-0.0935248 0.128245 0.016248 +-0.017174 0.169749 -0.0215263 +-0.00210217 0.035143 0.0464295 +0.00913637 0.105871 -0.0204027 +-0.0861865 0.0926674 0.00242789 +-0.0615271 0.0344278 0.0378839 +0.0506397 0.0652197 -0.00133714 +-0.0859779 0.129848 0.0487451 +-0.0269007 0.0388242 0.0362546 +0.0349035 0.0987755 -0.0125611 +-0.0895593 0.13929 0.0311867 +0.0210026 0.126515 0.0102791 +0.0155029 0.119565 0.0348769 +-0.0660877 0.178333 -0.0536421 +-0.0134986 0.0911752 0.0564813 +-0.0462738 0.0671086 0.039469 +-0.0691002 0.0421453 0.000699576 +0.0106377 0.0658124 0.0539651 +-0.0372457 0.0381548 -0.00680953 +-0.0415057 0.0396254 0.0430594 +-0.0658022 0.0335619 0.00426403 +-0.0549779 0.135599 -0.00339213 +-0.0654711 0.157635 -0.0545345 +-0.0699145 0.135483 0.0481625 +-0.0647392 0.157599 -0.0538703 +-0.0405119 0.125571 0.0212459 +-0.0408461 0.0957242 -0.0225993 +-0.0211708 0.123144 -0.00636628 +0.0528302 0.048039 0.0216552 +0.0292509 0.119574 0.0033793 +0.0456488 0.0861985 0.00518381 +-0.0697746 0.169428 -0.052035 +-0.0583932 0.146765 0.0331817 +-0.0748301 0.174171 -0.0395847 +0.0397534 0.0685495 0.0327941 +0.0603506 0.0581587 0.0121666 +-0.0615125 0.0729203 0.0397926 +0.0320567 0.106099 0.0342281 +0.0259569 0.0632491 0.0444844 +-0.017781 0.12071 -0.00976707 +-0.00292868 0.129815 0.0244395 +0.042563 0.0650705 0.0275619 +0.051394 0.0726569 0.00804397 +-0.0147356 0.124887 0.0290085 +0.0124993 0.116805 0.0367613 +-0.0095857 0.128017 -0.00170998 +-0.0353912 0.0475494 -0.0206462 +-0.0197639 0.0714243 -0.0385337 +-0.0646745 0.0721957 -0.0143162 +-0.0418918 0.129001 0.00740866 +-0.0217734 0.0713925 -0.0382795 +-0.0493632 0.1301 -0.00139208 +0.0232238 0.0822541 0.0494986 +0.0449291 0.081953 0.02316 +0.0595997 0.0567108 0.0101713 +-0.0496185 0.140151 0.0144011 +-0.0524988 0.102874 0.0411998 +0.0342709 0.0876121 0.0408726 +-0.0295799 0.174217 -0.00600797 +-0.0251232 0.165382 -0.00841584 +0.0176002 0.124344 -0.00401113 +0.054323 0.064171 -0.000208879 +-0.0129906 0.0568055 0.0517595 +-0.0751884 0.153035 0.033144 +0.0124885 0.114028 0.0382457 +0.0104651 0.0444795 0.0447526 +-0.033472 0.124985 -0.00213286 +-0.0519318 0.0352921 -0.0124585 +-0.0621937 0.156854 -0.0175927 +-0.0755066 0.11755 0.0524265 +-0.0660809 0.135405 0.0431027 +0.0020291 0.0342762 0.0137843 +0.0320171 0.111398 0.0306261 +-0.0685791 0.147786 -0.0311476 +0.0139278 0.129741 0.0148027 +-0.075709 0.170829 -0.032719 +-0.0241819 0.175647 -0.0202251 +-0.0729646 0.147133 -0.0208616 +-0.0588824 0.0997395 -0.0190365 +-0.0396703 0.036174 -0.00733977 +-0.0195581 0.181635 -0.0160858 +-0.0449923 0.0381195 -0.0222607 +-0.0298707 0.101527 -0.0228594 +-0.0447239 0.169659 -0.000473292 +-0.0547075 0.153861 0.0184094 +-0.00344803 0.111769 -0.0204187 +-0.048864 0.162635 -0.0057974 +-0.0837218 0.154141 0.0154269 +-0.0709606 0.172226 -0.0520527 +-0.000498029 0.0505184 0.0529377 +-0.0916834 0.116094 0.0407438 +0.029535 0.0987313 -0.0165204 +-0.0649388 0.16711 -0.0315896 +-0.00669968 0.0599043 -0.0346663 +-0.0086066 0.042026 -0.0258639 +0.0380982 0.0589726 0.0320786 +0.0284966 0.0768217 0.0447581 +-0.0365356 0.155076 0.00317988 +0.0173692 0.0476632 -0.0235115 +0.0152466 0.0765161 -0.0298116 +-0.061679 0.175513 -0.061381 +-0.03626 0.0434916 0.0442696 +0.0033481 0.0346494 0.040814 +-0.0708559 0.177779 -0.0481346 +-0.0522853 0.153955 0.0120432 +-0.00577511 0.0770351 -0.037534 +-0.0279795 0.0577645 -0.0254 +-0.0474968 0.101477 0.0417865 +0.0418115 0.0872841 -0.00879032 +-0.0272728 0.0383881 -0.00686007 +-0.0828517 0.110648 0.028886 +-0.0677301 0.181168 -0.057983 +-0.0339959 0.0752105 -0.0234884 +0.0227878 0.0350417 0.0227582 +-0.0132511 0.177151 -0.0280569 +-0.0662758 0.159515 -0.0565111 +-0.0759663 0.179251 -0.0520449 +0.0494532 0.0710682 0.00472592 +-0.0158055 0.0931896 -0.0348885 +0.0506418 0.0475027 0.0012667 +-0.0220809 0.0348313 0.0494485 +-0.0681005 0.179488 -0.0529195 +-0.0457387 0.0767861 -0.0183415 +-0.0849611 0.0883696 0.0278927 +0.0410895 0.0670315 0.0294468 +0.0123862 0.0342845 -0.0119874 +-0.0861176 0.152173 0.0250218 +0.00146529 0.0341167 -0.0177588 +-0.0847663 0.132585 0.0488829 +0.041918 0.0732584 -0.00676718 +-0.0704834 0.174975 -0.0436743 +0.0101806 0.114501 -0.0173735 +-0.0274005 0.0647434 -0.0304718 +0.00306398 0.0374048 0.023868 +-0.0908043 0.122683 0.00627651 +-0.0126271 0.0337462 -0.0239473 +0.0294467 0.0623083 -0.0198501 +-0.031353 0.158667 -0.0125849 +-0.0600161 0.129661 -0.00742185 +0.0141451 0.0740257 0.0538731 +0.0348792 0.0378052 0.00236551 +-0.0223477 0.16248 -0.006155 +0.0184989 0.11258 0.037522 +-0.0107925 0.18028 -0.0267448 +0.0112772 0.0752122 -0.0313695 +-0.0481785 0.0341964 0.00728185 +-0.0564997 0.107064 0.0398466 +-0.0510086 0.119975 -0.0128249 +-0.0142596 0.175663 -0.0267921 +-0.028881 0.124884 0.00195054 +-0.0744184 0.069256 0.0261761 +-0.0527672 0.0812315 -0.0212685 +0.0424296 0.0696684 0.0278335 +-0.0272214 0.163934 -0.00616346 +0.0566888 0.0635446 0.0256358 +0.0446243 0.0959671 0.00617079 +-0.0160443 0.174209 -0.0181164 +-0.0310058 0.156198 -0.0100049 +-0.039513 0.166742 0.00312951 +-0.0651923 0.176525 -0.0608469 +-0.0649089 0.110873 0.0375872 +-0.0545067 0.0904158 0.0449797 +0.0328041 0.0682575 -0.0177764 +0.0296649 0.110072 0.0343033 +-0.00848516 0.121007 0.0363393 +-0.0284943 0.0674472 0.03888 +0.0207654 0.126697 0.0144664 +-0.0231479 0.0919482 0.0509374 +-0.0105985 0.0406145 -0.0262787 +0.0525369 0.0651172 0.0279377 +-0.0709498 0.165209 -0.0469921 +0.0101258 0.125306 -0.00703851 +-0.0198334 0.107697 -0.0220521 +0.0228667 0.107306 -0.0156684 +0.0410305 0.0422896 -0.000687891 +-0.0687631 0.080836 -0.0170666 +-0.0685062 0.142066 -0.00982847 +-0.0288706 0.171229 -0.00855169 +-0.0870246 0.129415 0.000309032 +-0.0367401 0.0754253 -0.0187666 +-0.0231137 0.159172 -0.011899 +-0.0445 0.113887 0.0346508 +-0.0617979 0.154608 0.0289232 +0.0322191 0.117688 0.00875184 +0.00258681 0.125467 0.0322572 +-0.0668846 0.117985 -0.00889164 +-0.0560239 0.144237 -0.00161522 +-0.0939473 0.122782 0.0142819 +-0.057663 0.155278 0.0187721 +-0.0653495 0.0459059 0.00467835 +-0.0838817 0.150077 0.00420446 +-0.0574972 0.100168 0.0430053 +0.0447715 0.070791 0.0233171 +0.0114258 0.129163 0.0238841 +-0.0415072 0.0605699 0.0406995 +-0.0495023 0.0862453 0.0455995 +-0.0309567 0.166794 -0.00630909 +-0.0310964 0.125815 0.0157855 +0.0577493 0.0579199 0.00320063 +-0.00748502 0.105882 0.0440003 +-0.0594987 0.0932573 0.0451741 +-0.0584823 0.080492 0.0436889 +0.0565518 0.0722252 0.0100192 +-0.0154726 0.123613 0.0307813 +-0.017794 0.0799068 -0.038901 +-0.0670193 0.0901061 0.04379 +-0.0506534 0.0619401 -0.0109597 +-0.0284985 0.0631152 0.0376198 +0.0405765 0.0793262 0.0323176 +0.0350622 0.0909926 -0.0162992 +-0.0679473 0.136882 0.0457212 +-0.0626008 0.160001 -0.0205855 +0.0143086 0.0623633 -0.0295361 +0.00349883 0.0605728 0.0559342 +0.0235231 0.0943993 -0.0219282 +0.0425314 0.0623712 0.0287546 +-0.0352518 0.156597 0.00331287 +-0.0807586 0.0950245 -0.00854945 +-0.085825 0.114595 0.0464925 +0.0420636 0.0915328 -0.00679501 +-0.0369296 0.0455099 -0.0248207 +-0.0610521 0.0460525 0.00962048 +-0.0476199 0.057734 -0.011287 +-0.0595357 0.0400627 -0.00844467 +-0.0604419 0.114971 -0.0134731 +-0.016194 0.128088 0.0051496 +-0.0365847 0.122192 -0.00920846 +-0.0464591 0.0345029 0.0305523 +-0.0644598 0.0432795 0.035714 +-0.0241405 0.168248 -0.0186857 +-0.0743787 0.145821 -0.0108474 +0.0173308 0.0566344 -0.0283721 +-0.0548894 0.136747 0.0311423 +-0.0579822 0.0343384 0.0317603 +-0.0262958 0.0634474 0.0394208 +-0.0183558 0.127798 0.00725695 +-0.0750251 0.152273 0.0347437 +-0.0648702 0.0334576 -0.000853911 +-0.0610584 0.138406 -0.00654552 +0.0224766 0.0920198 0.0478397 +0.044722 0.0945895 0.0131657 +-0.0873336 0.126682 -0.000726608 +-0.0880434 0.125329 0.00027907 +-0.0364509 0.174337 -0.00256774 +-0.053938 0.138144 0.0289679 +-0.00559979 0.114688 -0.0175182 +-0.00635915 0.0931082 -0.0347376 +-0.0861558 0.100815 0.00240792 +0.0184724 0.0934238 0.0476306 +-0.000245612 0.0350857 0.0144067 +-0.0547132 0.153591 0.0213081 +0.0445999 0.0931357 0.00219092 +-0.0649995 0.134056 -0.00807462 +-0.0360819 0.0351453 0.0214963 +0.0444988 0.0569914 0.0320977 +-0.0597101 0.0723346 -0.0163812 +-0.0468406 0.0985145 -0.021833 +-0.0397006 0.0666136 -0.0148744 +-0.0847301 0.0966436 -0.00257686 +-0.00176079 0.0741065 -0.0358743 +-0.0671962 0.0736816 0.0379285 +-0.0347085 0.169768 -0.00115359 +-0.0213445 0.0916844 -0.035421 +-0.0625559 0.150623 -0.0205762 +0.055585 0.0535517 0.00220948 +-0.0136228 0.128915 0.00609854 +-0.0654189 0.16417 -0.0217177 +-0.0613445 0.0434338 0.042412 +-0.0144732 0.096429 0.0522087 +-0.0707666 0.171245 -0.0323024 +-0.0713393 0.134067 0.0496215 +-0.0458732 0.104238 -0.0208285 +-0.0551833 0.07213 0.0401196 +0.0364832 0.0422343 0.0281778 +-0.0336503 0.0577563 -0.0112696 +-0.0810791 0.117571 0.0486733 +0.044724 0.0588042 -0.00496063 +-0.0568258 0.120959 -0.0097287 +-0.0257724 0.0797722 -0.0374309 +-0.0800654 0.121688 0.0502425 +-0.0569634 0.0335771 0.00964709 +-0.00939357 0.0354504 -0.0173725 +0.046214 0.0637709 -0.0019104 +0.00900714 0.0383394 0.0314785 +0.0457806 0.0890199 0.00717609 +-0.0524951 0.0747684 0.0423102 +0.0334058 0.0446363 -0.00548551 +-0.063072 0.0346346 0.0391063 +0.0073001 0.0907939 -0.0322622 +0.026147 0.0875952 0.0467145 +0.0130004 0.0419341 0.0448362 +0.0263999 0.0348437 0.0163952 +-0.0056357 0.0466988 -0.0297075 +-0.000747471 0.0987058 -0.0265343 +-0.0688283 0.0966095 -0.0161149 +0.00300687 0.0991424 0.049182 +-0.0154864 0.0814755 0.0571167 +-0.074497 0.120396 0.0533632 +-0.0748436 0.114924 -0.0060803 +-0.0168418 0.107354 -0.0217003 +-0.0459377 0.145792 0.000601046 +-0.0487849 0.0715634 0.0402545 +-0.0581679 0.154986 0.022946 +0.044397 0.0945546 0.0171571 +-0.0810292 0.0940061 0.0336494 +0.032953 0.0994589 0.0373001 +-0.0181454 0.0347978 0.0451006 +-0.0487902 0.0855221 -0.0217064 +-0.0776336 0.147268 -0.0038625 +-0.0891133 0.14743 0.0101992 +0.0134061 0.0767276 0.0545687 +-0.0451757 0.14769 0.00639824 +0.0340849 0.114614 0.00225198 +-0.0494981 0.105619 0.0396922 +-0.0291786 0.175627 -0.0167894 +0.0516271 0.0736236 0.0155669 +-0.0333156 0.0365169 -0.0174853 +-0.00225297 0.0388793 -0.00041461 +-0.0884617 0.14585 0.0310303 +-0.087958 0.12395 0.000268768 +-0.0637456 0.154158 0.00252195 +-0.0680618 0.0606588 0.013756 +0.00946449 0.0616923 0.0540126 +-0.00707285 0.12974 0.0027455 +-0.0190315 0.0389958 0.035931 +-0.00971778 0.0670387 -0.0360005 +0.0406669 0.102735 -0.000789188 +-0.085128 0.0845897 0.0244984 +0.00248558 0.111415 0.0422707 +0.00320889 0.0824712 -0.0345101 +-0.0467495 0.117966 -0.0147678 +0.0250223 0.110364 -0.0129553 +-0.044347 0.146755 0.000226372 +-0.0616655 0.144455 -0.00523057 +0.000474346 0.0977989 0.0522897 +0.0207702 0.036271 0.0339301 +0.0400498 0.0387801 0.0063192 +-0.0199993 0.185902 -0.0200623 +0.018427 0.0917703 -0.0251723 +-0.0354635 0.0860418 0.0431394 +-0.0475855 0.0518372 -0.00929506 +0.0429858 0.0691484 -0.00178958 +-0.0244489 0.052187 0.0413714 +-0.0500639 0.141673 0.0143962 +0.0144323 0.129298 0.0192627 +-0.0561449 0.04824 0.0383427 +0.0358665 0.0404526 0.0260172 +-0.0213253 0.0444675 0.0531428 +-0.0609289 0.112535 -0.0147528 +-0.0699845 0.139935 -0.00772138 +-0.0748631 0.106362 -0.00967707 +-0.0346028 0.0344648 0.0366099 +-0.0425153 0.118993 -0.0138741 +0.0153464 0.0537553 -0.0279934 +-0.0719831 0.170733 -0.0298702 +0.0460203 0.0848226 0.00718276 +-0.0760167 0.15688 -0.0219252 +-0.010059 0.109235 -0.0217082 +0.0010095 0.0346721 0.0439005 +-0.0198215 0.0841085 -0.0387066 +-0.020574 0.115387 -0.0161841 +-0.00203672 0.0345877 -0.0169988 +-0.0424883 0.0846004 0.0426298 +-0.0313435 0.0707327 -0.0274782 +-0.0490828 0.13552 0.0213898 +-0.0481015 0.157608 -0.00698963 +-0.0579692 0.0408152 0.0462221 +-0.0682257 0.127075 0.0505767 +-0.0434944 0.0733818 0.0425428 +-0.0905017 0.114314 0.0223543 +0.0242723 0.0647548 -0.0237835 +0.050682 0.0731977 0.010749 +0.0604945 0.0595549 0.015166 +-0.0490636 0.126668 -0.00583208 +0.00647697 0.0459611 0.0484012 +0.0279051 0.0395203 0.0288639 +-0.0314585 0.0335695 -0.0237257 +-0.0485262 0.0344313 0.0301756 +-0.0386172 0.0505956 -0.0110053 +-0.000657388 0.0511382 -0.0308268 +-0.0630072 0.0689485 0.0358468 +0.0316541 0.0351286 0.0116939 +-0.0517065 0.163863 0.00241874 +-0.0634695 0.0445577 0.0356919 +-0.0832566 0.147367 0.0370632 +0.02323 0.0762417 -0.0259573 +-0.0735922 0.0833012 0.0392631 +-0.00431736 0.130694 0.00665461 +-0.021599 0.0382532 0.00358087 +0.0465019 0.0778624 0.0111839 +0.0604451 0.0678689 0.0141533 +0.0213931 0.0489728 -0.0223035 +-0.0630692 0.153725 -0.0105955 +-0.0236572 0.0507797 -0.028024 +0.00430293 0.0625774 -0.0325544 +0.0421362 0.0845969 0.0293292 +0.010951 0.0562864 0.05258 +0.0369412 0.107321 0.0271722 +0.0502975 0.0560957 -0.00457555 +0.0410804 0.10284 0.0191681 +0.0102664 0.0739304 0.0552835 +-0.0397448 0.172952 -0.00234724 +-0.0829232 0.125068 -0.00442148 +-0.0284893 0.0903534 -0.0305816 +-0.0616586 0.172539 -0.056588 +0.0182369 0.0749953 -0.0283712 +-0.0168303 0.0382802 0.00815469 +0.0453551 0.0805854 0.0221747 +-0.0718567 0.0701514 0.0311867 +-0.0814119 0.152728 0.0295837 +0.0555021 0.0730293 0.0140468 +0.00650419 0.123782 0.0339598 +0.0422452 0.0986357 -0.000817871 +-0.072904 0.112135 -0.00834183 +-0.00786498 0.13001 0.00533674 +-0.0614753 0.15686 -0.0265876 +-0.0234913 0.103006 0.0434545 +-0.0093342 0.174192 -0.0247468 +0.048187 0.0717514 0.00605259 +-0.0554773 0.0820103 0.045038 +-0.091005 0.124034 0.00628346 +-0.0147917 0.0951887 -0.0329173 +-0.00125147 0.122854 0.0353 +-0.017497 0.0485942 0.047882 +0.0194854 0.0989751 0.0466096 +-0.0889579 0.0901579 0.00845534 +-0.065396 0.0605193 0.0180241 +-0.0469507 0.168415 -0.00396135 +0.0205156 0.111203 0.0377036 +-0.0928924 0.122885 0.0362699 +0.0213879 0.0686569 0.0484685 +0.0214143 0.0463213 0.0412437 +0.00882931 0.0373958 0.0286749 +0.0465562 0.0764652 0.0121829 +-0.0618529 0.153757 -0.0195806 +-0.0262234 0.119963 0.0294562 +-0.0354913 0.0889091 0.0432238 +0.037993 0.109314 0.0194453 +-0.0377299 0.0739307 -0.0178742 +-0.0184902 0.0815159 0.0575038 +-0.0314396 0.0637247 -0.0204391 +-0.0825513 0.110697 0.0307352 +-0.0728404 0.156111 0.0119063 +-0.0663982 0.164105 -0.0192035 +0.0062922 0.0654161 -0.0325779 +-0.0624759 0.0959475 0.043683 +-0.033686 0.0637452 -0.0146972 +0.0353693 0.102677 -0.0107148 +-0.0710479 0.166372 -0.0194754 +-0.059243 0.0367531 0.0461369 +-0.0908243 0.114994 0.023547 +-0.0650258 0.156351 -0.0487028 +-0.034444 0.159452 0.00265373 +0.0357616 0.0967769 -0.0118087 +0.044965 0.0903773 0.0181662 +0.0498767 0.0734333 0.0134213 +-0.031608 0.0496402 -0.0193495 +0.0404724 0.0408436 0.0229665 +-0.0473115 0.134637 0.0112388 +0.00743122 0.0352845 0.0446812 +-0.0297131 0.0509006 -0.0193584 +-0.0241845 0.177125 -0.0200954 +-0.0632603 0.157387 -0.0151607 +-0.0598965 0.0343774 0.0365453 +-0.0242309 0.0382399 0.0265535 +0.0433792 0.0972945 0.00218055 +-0.00691412 0.124317 0.0332409 +0.00451269 0.0561377 0.0533474 +-0.00250438 0.0842991 0.0575402 +-0.0903673 0.145762 0.0273033 +-0.0523714 0.143148 0.0193902 +0.0362345 0.0967824 0.0350211 +0.0264539 0.106068 0.0383874 +-0.0729303 0.131104 -0.00814819 +0.0116228 0.130194 0.0054038 +-0.0409771 0.113795 -0.0164017 +-0.0828306 0.150071 0.00319212 +-0.0676468 0.0338307 -0.00583252 +-0.0857374 0.0792227 0.0125087 +-0.0651015 0.0410328 0.0295625 +-0.0136795 0.0987823 0.0477955 +0.0258821 0.0794179 -0.0243188 +0.0449394 0.0734628 0.0226146 +-0.0694849 0.173671 -0.0550315 +0.0142482 0.127965 9.03059e-05 +0.0564285 0.0727253 0.0143999 +-0.0172735 0.180097 -0.0253788 +-0.0699136 0.162391 -0.0489495 +-0.09118 0.143373 0.022161 +-0.0644984 0.100116 0.0422372 +-0.0564709 0.0847764 0.0446514 +-0.043754 0.152254 -0.00662286 +-0.0547181 0.0708998 -0.0155975 +-0.0401471 0.163848 0.00326215 +-0.0814342 0.154656 0.0132857 +-0.0513196 0.0514695 0.0138904 +0.00680734 0.129132 0.0265205 +-0.0614938 0.0959769 0.0438595 +-0.0091676 0.171172 -0.0227371 +-0.0769695 0.154154 -0.0139015 +-0.0502302 0.126885 0.0326315 +0.00555777 0.034446 -0.000384949 +-0.0206136 0.0379294 -0.0283016 +0.00719386 0.0810104 -0.0336874 +0.0390033 0.0387188 0.0172773 +-0.0737727 0.0928414 0.040556 +-0.0829975 0.0763193 0.0155222 +0.0461381 0.0792322 0.00519228 +0.0313444 0.106098 0.0349666 +-0.0157326 0.0383302 0.0246146 +-0.0739329 0.072514 0.0322154 +-0.0287063 0.168278 -0.00832187 +-0.02709 0.0386639 -0.0126398 +-0.0689895 0.156345 -0.00130196 +-0.0622523 0.152181 -0.0215758 +-0.0408691 0.158042 0.00401656 +-0.0324935 0.0903869 0.0442776 +0.0156162 0.0904755 -0.0278196 +0.00543406 0.120555 -0.0138758 +-0.0874054 0.110457 0.012344 +-0.0534973 0.0903982 0.0447559 +-0.0007305 0.0683317 -0.0340878 +-0.0847135 0.152577 0.00925173 +0.0453586 0.0547792 -0.00610681 +-0.0513173 0.146268 0.0144074 +0.0146587 0.125796 -0.00358107 +-0.0790281 0.166651 -0.0329632 +-0.0519257 0.0563169 0.0201359 +-0.0206011 0.0382174 0.00381729 +-0.0499923 0.0342577 0.028256 +0.0222487 0.0365239 0.0303911 +-0.0762222 0.0981393 0.0371985 +-0.0381245 0.162196 -0.0129852 +-0.0462852 0.149202 0.00834502 +0.039774 0.0618507 -0.00575724 +0.0461841 0.0778325 0.00618859 +-0.0770439 0.154813 -0.0101321 +-0.0615001 0.152383 0.000341367 +-0.0665808 0.0334125 0.000644743 +-0.0212653 0.0381372 0.0218515 +-0.071123 0.111741 0.0467572 +-0.0265438 0.177186 -0.00862049 +-0.0523481 0.125498 -0.00654313 +-0.0522635 0.0343446 0.0312176 +0.0191745 0.060499 0.0487078 +-0.0855607 0.111744 0.0263451 +-0.0360977 0.156596 0.00383263 +-0.0479431 0.0356599 -0.0132734 +0.0366613 0.0821332 0.0372523 +-0.0478798 0.107016 -0.0192852 +-0.0356524 0.0460406 0.0421919 +0.00919662 0.0865327 -0.0319845 +-0.0808705 0.11922 -0.0043482 +-0.0335583 0.116878 -0.0136466 +-0.0112898 0.0395292 0.0388441 +-0.0194927 0.0814879 0.0571676 +0.0239403 0.124821 0.0127882 +-0.0444942 0.105717 0.0408954 +-0.0484929 0.162245 0.00645185 +-0.00849807 0.0801615 0.0580203 +-0.0487025 0.121311 -0.0122547 +0.00400584 0.0386131 0.0458842 +-0.00449485 0.0488681 0.0504112 +-0.0507263 0.122615 0.0336033 +-0.0801811 0.108648 -0.00360377 +0.029758 0.0352966 0.00556049 +-0.0236293 0.0665652 0.045154 +0.0470549 0.0602552 -0.00440662 +-0.059554 0.155543 0.0209921 +-0.00550703 0.0787847 0.0579843 +-0.0451509 0.0424209 -0.0143059 +-0.0674032 0.144345 -0.0161484 +-0.0621766 0.125515 0.0434733 +-0.0885651 0.0963045 0.0227197 +-0.0623911 0.154382 0.0301734 +-0.078298 0.0745267 0.0278337 +0.00377395 0.13125 0.00536065 +-0.0351573 0.0361738 0.0471926 +-0.0517432 0.0487299 0.0143843 +-0.0578034 0.0854472 -0.0211977 +0.0151488 0.10026 -0.0226403 +0.0225321 0.104677 0.0415312 +-0.0605798 0.155686 0.00466574 +-0.0891628 0.0942977 0.0214104 +0.0393896 0.106975 0.00316583 +0.00351619 0.0800296 0.056385 +0.0405703 0.105644 0.0131657 +-0.0507419 0.0753249 -0.0179378 +0.0269605 0.111014 -0.0116501 +0.0303852 0.098223 0.0405823 +0.0431361 0.0419917 0.0224684 +-0.0738026 0.1492 0.0397758 +-0.0725455 0.148857 -0.0337299 +-0.072371 0.0860632 0.0407672 +0.0158441 0.0475203 0.043749 +0.0104341 0.0346525 0.0368683 +0.0344146 0.0399125 -0.00185272 +-0.0764595 0.111219 0.0459768 +0.042138 0.101461 0.00217211 +-0.0213522 0.127058 0.00761225 +-0.0556879 0.0677603 -0.0123408 +0.00811587 0.129858 0.0241077 +-0.0637641 0.044271 -0.0022694 +-0.0104962 0.0897854 0.05669 +-0.0147283 0.0657495 -0.0376113 +-0.0881508 0.144556 0.0335371 +-0.0807759 0.0773963 -0.00349851 +-0.0388999 0.0345526 0.0391301 +0.0239365 0.0972468 -0.020928 +-0.0559996 0.126683 -0.00642409 +0.015329 0.118191 -0.013375 +-0.0894904 0.112329 0.0187618 +-0.0771865 0.153815 0.000183792 +0.00297917 0.0389607 -0.010651 +-0.0571826 0.122684 0.0401181 +0.0453844 0.091806 0.0121583 +-0.0908751 0.135104 0.0182068 +0.0216273 0.125269 0.00337714 +0.0572674 0.0722428 0.0147076 +-0.0417782 0.0473939 -0.012205 +-0.0658407 0.0938498 -0.0179236 +0.0102801 0.12364 -0.00922404 +0.00517588 0.113065 -0.0197995 +0.0139965 0.0343089 -0.00230394 +-0.0757024 0.160453 -0.0116926 +-0.0694905 0.10551 0.0380162 +0.0123252 0.0595168 -0.0292981 +0.00242842 0.0916453 -0.033159 +0.0363451 0.0519755 -0.00662669 +-0.0899083 0.121615 0.0458595 +-0.0569713 0.125238 -0.00711806 +-0.0616474 0.0458147 0.0384356 +-0.0816857 0.104685 0.0297488 +0.0417455 0.0760505 -0.00673474 +-0.0249373 0.175681 -0.0116247 +0.0233583 0.0592365 -0.0255115 +0.0296356 0.107455 0.0360045 +-0.0171544 0.0383178 0.00624466 +-0.0338857 0.12324 -0.00632922 +-0.0295434 0.168268 -0.00777595 +0.0237606 0.105983 -0.0162548 +-0.0636907 0.124164 0.0466174 +0.0299589 0.119939 0.0150519 +0.0387947 0.101959 0.0281808 +0.0346979 0.108688 0.0292348 +-0.00481267 0.108148 -0.0225124 +-0.0921162 0.126957 0.038246 +-0.0708767 0.0346286 -0.00100073 +-0.0434981 0.0803632 0.0422528 +-0.00776303 0.0742012 -0.03739 +-0.0164203 0.103082 -0.0232082 +-0.0368601 0.0336856 -0.0211611 +-0.0794788 0.13585 0.0504167 +-0.0622192 0.166249 -0.0495907 +-0.0632785 0.0347611 0.0232648 +-0.0678048 0.17421 -0.0455841 +-0.0292876 0.113893 -0.0165575 +-0.0116236 0.0451107 -0.0281433 +-0.0853661 0.0910995 0.0281927 +0.0152572 0.124805 0.0295869 +-0.0730257 0.141351 -0.00730576 +-0.0694123 0.111827 0.045291 +-0.048008 0.0642705 0.0370013 +-0.000600787 0.0405329 -0.0249772 +-0.0932444 0.124186 0.027283 +-0.050904 0.119772 0.0333476 +-0.00274076 0.0726647 -0.0356738 +-0.0635974 0.151927 -0.0324488 +0.025021 0.085012 -0.0240764 +-0.0749218 0.0661459 0.00857247 +0.0115292 0.119123 0.0361473 +0.0363972 0.0461521 -0.00588406 +0.0385505 0.0378908 0.0124577 +-0.0599745 0.14101 0.03437 +0.00637279 0.049483 -0.0283693 +-0.0896361 0.0969931 0.0144152 +0.0291455 0.0491758 0.0366259 +-0.013551 0.0588296 0.0525443 +-0.0381244 0.127641 0.0146907 +-0.00888364 0.107351 -0.0226177 +-0.0497129 0.165582 0.00102101 +0.0449595 0.0889486 0.000172046 +-0.0339085 0.177047 -0.0109944 +-0.0278445 0.0535534 0.0370258 +-0.0334735 0.0337737 0.0142583 +-0.0926366 0.121498 0.0312794 +-0.0298476 0.105726 -0.0219826 +-0.0771466 0.113816 0.049094 +0.0166749 0.0347919 -0.00596505 +-0.0767718 0.0716181 -0.00247133 +-0.0788159 0.0818529 0.0346403 +-0.0751616 0.0715622 0.0292788 +-0.0629391 0.12384 -0.00881569 +0.0155707 0.100538 -0.0224673 +0.0252284 0.116758 -0.00782512 +0.00112155 0.035712 0.0195623 +-0.0623204 0.0448503 0.0109236 +0.0577561 0.0565381 0.00419435 +-0.000697034 0.0626894 -0.03411 +-0.0739419 0.129646 -0.00820737 +-0.0552142 0.155428 0.0123927 +-0.0749344 0.128178 -0.00819506 +0.0183304 0.0579992 -0.0277502 +-0.0259227 0.123138 -0.0042558 +0.0130981 0.124462 0.0316831 +-0.0723893 0.172498 -0.0357772 +-0.015947 0.124632 0.0285893 +-0.0583387 0.0706756 0.0389009 +-0.0347052 0.0384254 -0.0102399 +-0.0149752 0.125602 0.0274605 +-0.0153278 0.0389782 0.0349161 +-0.0482032 0.131003 0.0267578 +0.0538412 0.0539826 0.0267309 +-0.0845696 0.12714 0.0502672 +0.0343613 0.111866 -0.00251995 +-0.0679623 0.16261 -0.0140168 +0.0251056 0.0902557 0.0469821 +-0.0373144 0.033633 0.00457247 +0.00149673 0.110036 0.0425823 +-0.0886162 0.100967 0.00940891 +-0.0734724 0.155984 0.0233451 +0.00740252 0.0402134 0.0455033 +0.0454345 0.0918112 0.0111626 +0.0252284 0.0420597 0.0372934 +0.026048 0.117275 -0.00637096 +-0.0768401 0.178514 -0.0509284 +-0.0719676 0.138437 -0.00730592 +0.00750673 0.0758763 0.0563548 +-0.0485658 0.0404434 -0.0115683 +-0.0402074 0.168164 -0.0113973 +-0.044494 0.0987314 0.042632 +-0.0530679 0.140053 0.026392 +0.0521064 0.0510719 0.0259326 +-0.0545309 0.0352136 0.0455493 +-0.0717133 0.0715245 -0.00752229 +-0.0899797 0.128138 0.00527223 +0.0045004 0.121001 0.0358516 +-0.0641393 0.143504 -0.0105249 +-0.0769685 0.156212 -0.0102521 +-0.0645952 0.155196 -0.0084031 +0.0323835 0.0460752 0.0307026 +-0.023205 0.178608 -0.0204967 +-0.042033 0.113762 -0.0163433 +-0.0512269 0.150712 0.0135153 +0.00120164 0.0839391 -0.0353946 +0.0300054 0.104778 0.0365239 +-0.00649214 0.0965537 0.0536631 +-0.0289152 0.0846603 -0.0346291 +0.0207024 0.0373647 0.039246 +-0.0386568 0.0577511 -0.0111914 +-0.0605191 0.153857 0.0308432 +0.0410047 0.0395957 0.0043142 +-0.0837262 0.151367 0.00522149 +-0.0378805 0.108506 -0.019759 +-0.0169176 0.183111 -0.0193016 +-0.0614849 0.0946016 0.0445824 +0.0332816 0.116574 0.0106008 +-0.0378618 0.101418 -0.0215553 +0.0383745 0.038179 0.01581 +0.010493 0.111264 0.0393941 +0.0353685 0.0600237 -0.0127796 +-0.0203175 0.0933679 0.052311 +-0.0434938 0.0619471 0.0402773 +-0.0393599 0.0418158 -0.0263353 +-0.0588856 0.105471 -0.0181522 +-0.0278953 0.124828 0.00229374 +-0.0894349 0.136561 0.0381888 +-0.0455406 0.124353 -0.00945534 +-0.0850289 0.111596 0.00326083 +0.01399 0.106595 -0.01887 +-0.0765357 0.0692333 0.0204809 +-0.0741239 0.165568 -0.0191297 +-0.056116 0.131133 0.036427 +-0.0715838 0.158191 -0.0409255 +-0.077037 0.111295 -0.0046823 +-0.0135016 0.0573891 0.0517499 +0.0374899 0.0469458 0.0313688 +-0.0297919 0.108873 -0.0192723 +-0.0616758 0.113831 0.0370124 +-0.0157188 0.0628375 -0.0366012 +-0.0879795 0.148554 0.029057 +-0.0890892 0.0955882 0.00942496 +-0.0709327 0.178806 -0.0496057 +0.0454967 0.0611109 0.0306935 +0.0193158 0.0835035 0.0508805 +0.000580692 0.131584 0.0113306 +-0.0615895 0.155312 -0.0215829 +-0.0134922 0.122339 0.0335983 +0.0458248 0.0806172 0.0201703 +-0.0225646 0.0983245 -0.0242201 +-0.0682478 0.066271 0.0282875 +0.0302092 0.117283 0.0265434 +-0.0829482 0.128017 -0.00457928 +-0.0715343 0.141411 0.0464325 +-0.0800761 0.0936246 -0.00957758 +-0.0851808 0.153525 0.0149377 +-0.0865771 0.124349 0.048115 +-0.0221188 0.100222 -0.0241961 +0.0224909 0.111137 0.037371 +0.00736705 0.0494733 -0.028237 +0.0432386 0.0750761 0.0273062 +-0.0564476 0.153922 0.0264803 +-0.0288608 0.0448354 -0.0281934 +-0.0776003 0.156937 -0.0149108 +-0.0784376 0.171472 -0.0389273 +-0.0178474 0.12806 0.016159 +-0.0284556 0.0472262 0.0488083 +-0.0677451 0.0629578 0.0224748 +-0.0567391 0.0576068 -0.000420382 +-0.0769537 0.132513 -0.00657383 +-0.0837476 0.0952109 -0.00455405 +-0.0427254 0.0358312 -0.0275925 +0.00623069 0.0782309 -0.0341321 +-0.0758642 0.117897 -0.00698249 +-0.0903736 0.13787 0.0221843 +-0.027962 0.155009 -0.00579987 +-0.0193391 0.0386082 -0.00732295 +-0.0237931 0.0698259 -0.0366341 +-0.015124 0.037267 -0.0266656 +0.0113671 0.0479427 -0.0268055 +0.0141489 0.0347135 0.0249225 +-0.0669549 0.160975 -0.0568649 +0.0208979 0.0359371 0.0087849 +-0.0570669 0.0493259 -0.00137722 +-0.0186112 0.0386738 -0.00909396 +-0.0055195 0.0443362 0.047543 +-0.0714237 0.153981 -0.0448933 +0.0119572 0.125728 -0.00550935 +-0.0310683 0.0679104 -0.0254551 +0.0514754 0.0531199 -0.00283685 +0.0135274 0.12988 0.0160733 +-0.0728856 0.148047 -0.0249504 +-0.0233454 0.122752 0.0259903 +-0.0578948 0.0983776 -0.0200563 +-0.0203263 0.0825295 0.0568715 +-0.0643532 0.142586 -0.00864957 +-0.0793976 0.151048 0.0347829 +0.0356609 0.104701 0.030636 +0.0063888 0.115364 -0.0182909 +-0.0289964 0.0383539 -0.00532847 +-0.0834239 0.0965619 -0.00458039 +0.019508 0.109842 0.0390589 +-0.0767379 0.10491 0.0348158 +-0.0825915 0.143398 0.0421649 +0.0182147 0.0834619 -0.0281698 +-0.0633435 0.060722 0.00207171 +0.0428335 0.076148 -0.00478426 +-0.0724349 0.0644357 0.0131399 +-0.0114637 0.165492 -0.0149909 +-0.0493961 0.033823 0.00737414 +0.0502518 0.0446339 0.0182039 +-0.0439305 0.0432632 0.0429545 +-0.0713305 0.0628284 0.00935991 +-0.0276378 0.158958 -0.0125395 +0.0600492 0.0581198 0.0161748 +0.00134506 0.0511101 -0.0304682 +-0.0692332 0.158118 -0.0519432 +-0.0133594 0.127978 0.0236019 +0.0292021 0.0619142 0.0421314 +-0.0667582 0.180263 -0.0553199 +-0.0197539 0.0671131 -0.0375162 +-0.0704746 0.040884 0.00781861 +-0.049499 0.112564 0.0357174 +-0.0322502 0.0367926 -0.0305484 +-0.00789583 0.129197 0.00105287 +-0.016169 0.117727 -0.0146898 +0.0295964 0.0580473 -0.0178274 +-0.0883598 0.0874311 0.00547496 +-0.0274913 0.101587 0.0432231 +-0.0768992 0.155831 0.0192356 +-0.0364902 0.0634253 0.0412069 +-0.0388025 0.125966 -0.00521606 +0.0196905 0.0550135 0.047657 +0.0571135 0.071717 0.0176058 +-0.0064991 0.0952675 0.0547927 +0.0174901 0.0346463 0.0220409 +-0.0024963 0.10305 0.0439671 +-0.0184804 0.0543192 0.0487134 +-0.0334418 0.0335662 -0.0297364 +-0.0620472 0.176838 -0.0608311 +-0.0308715 0.0522855 0.0371048 +-0.0367079 0.0695483 -0.0163464 +0.0158791 0.123986 0.0298499 +-0.0320536 0.0356449 0.0500425 +-0.0493943 0.14168 0.0103932 +-0.0558858 0.106922 -0.0182628 +0.059454 0.0647075 0.0208869 +0.0152596 0.125955 0.0281714 +0.038478 0.0980354 0.0312187 +-0.0744916 0.146991 0.0423999 +-0.0846211 0.0992422 0.0286106 +-0.0661191 0.156294 0.0171964 +-0.0794888 0.111206 0.0453002 +0.00519891 0.0880579 -0.0334439 +0.0153315 0.0346194 -0.0136599 +0.0395267 0.0632302 -0.00776648 +-0.0463407 0.0629206 0.0382092 +-0.0514201 0.121192 0.0343754 +-0.0528867 0.0334295 0.0213081 +-0.062446 0.163101 -0.0455941 +-0.0770308 0.167319 -0.027484 +-0.041999 0.126936 -0.00419358 +0.0289857 0.090239 0.0438092 +-0.0634397 0.158343 -0.0445972 +0.00692319 0.0630369 0.0555875 +-0.0294344 0.0381755 0.00387704 +0.0228628 0.0351973 0.0171792 +-0.0738758 0.0993275 -0.0132564 +-0.0668982 0.151542 -0.0415298 +-0.0629724 0.133897 0.038809 +-0.0928035 0.121507 0.0322842 +0.0305387 0.0609912 -0.0187852 +0.0385799 0.0739884 0.0346445 +-0.0814052 0.08555 -0.00656718 +-0.0621323 0.0602572 0.0206983 +-0.0294013 0.0804353 -0.034602 +0.0164763 0.0348375 -0.0136598 +-0.0659203 0.122383 -0.00896938 +-0.0328324 0.0929676 -0.0240794 +0.000521824 0.0801146 0.0573693 +0.0221547 0.0979182 -0.0216266 +-0.0649149 0.0392337 0.0390271 +0.0351689 0.0928995 0.0387113 +-0.0125327 0.0502379 0.050201 +-0.05553 0.12546 -0.00656458 +0.0330446 0.111446 -0.00610948 +0.0255618 0.120425 0.027665 +-0.0243325 0.126263 0.00798048 +-0.0654853 0.0944999 0.0429585 +-0.0478356 0.0970782 -0.0220591 +-0.0332116 0.0851655 -0.0254848 +0.00641089 0.036109 -0.0234066 +-0.0192798 0.0610993 0.0494354 +0.0363164 0.11089 0.0231265 +-0.0705311 0.0972485 0.0414142 +-0.0514267 0.135712 0.0273837 +-0.0564984 0.0918565 0.0453856 +-0.042499 0.113906 0.034677 +-0.0717955 0.156396 0.0195489 +-0.0215446 0.0942792 -0.0320343 +-0.0246821 0.177174 -0.0112336 +0.0177118 0.0944604 -0.0240064 +-0.0881735 0.15196 0.0139234 +-0.000296991 0.0392472 -0.00781836 +-0.00248723 0.115552 0.0407434 +-0.0147779 0.0756914 -0.0387415 +0.0503819 0.0717878 0.00597587 +-0.0396993 0.117276 -0.0140617 +-0.0628784 0.16149 -0.0515871 +-0.0769868 0.0713943 0.0255408 +-0.01852 0.115493 0.0376203 +-0.0632135 0.155458 0.00808821 +-0.0244921 0.103004 0.0433541 +-0.0392444 0.0481623 -0.0129943 +0.0317796 0.0647744 0.0406274 +-0.00516147 0.100957 0.0442706 +-0.0196118 0.040807 -0.0284935 +-0.0288146 0.0436325 0.0510094 +-0.0690473 0.0727409 0.0365464 +-0.0478629 0.125952 -0.00709772 +-0.0456346 0.123874 0.0250844 +-0.0214969 0.0498836 0.0466158 +0.0515378 0.0461489 0.00621743 +0.0472621 0.0627303 -0.00287883 +-0.0738666 0.0846755 0.0394915 +0.0247439 0.0490967 0.0390469 +0.0150281 0.097439 -0.0231662 +0.0456884 0.0904192 0.00716979 +0.0173787 0.046209 -0.0233857 +-0.00349533 0.123738 0.0342998 +-0.0905223 0.128294 0.0420009 +-0.0733752 0.0741466 0.034437 +-0.0106209 0.130105 0.0129711 +-0.0754549 0.158227 -0.0249553 +-0.0125993 0.0922824 -0.0359459 +-0.064348 0.0611447 0.0212332 +-0.0246221 0.0450443 -0.0281165 +-0.0383306 0.0379343 0.0437226 +-0.0423655 0.110099 -0.0185262 +-0.0750214 0.166563 -0.0400315 +-0.0338231 0.0915286 -0.0241849 +-0.0857793 0.088721 -0.000547834 +-0.00485752 0.103786 0.0439754 +-0.0334914 0.0960174 0.044365 +-0.040497 0.0705056 0.0418211 +0.0309495 0.065969 0.041175 +-0.0649024 0.119454 -0.00881631 +-0.0326689 0.0382268 0.0507498 +0.0366581 0.0727136 0.0371657 +0.0102886 0.13098 0.0134608 +0.0549839 0.0534895 0.00121219 +0.0229081 0.0608908 -0.0255785 +-0.0578484 0.0576892 0.00460939 +-0.0380707 0.123893 0.0251235 +0.0425051 0.049941 0.0324381 +-0.0208164 0.0797246 0.0560382 +-0.0600611 0.155861 0.0164593 +0.0128031 0.126304 -0.00413421 +0.0254584 0.0383883 -0.00303811 +-0.0782251 0.104799 0.0333593 +-0.011635 0.0466548 -0.0295721 +-0.0227746 0.0968676 -0.024693 +0.00330234 0.0626197 -0.0330565 +-0.00750217 0.0787518 0.0577101 +-0.043485 0.109867 0.0381531 +0.000280959 0.0655552 -0.0344559 +0.0303619 0.0982175 -0.0159971 +-0.0671228 0.150867 0.0375155 +-0.0251523 0.0635221 0.0411049 +-0.0732036 0.147141 -0.0198634 +-0.0403541 0.121097 -0.0120881 +0.0144177 0.0388354 -0.0218485 +-0.0912331 0.114706 0.0382141 +0.0261502 0.120654 0.0264581 +-0.0131682 0.0974746 0.0509922 +-0.0718669 0.115007 -0.00776782 +0.0425779 0.0929869 -0.00379718 +-0.0228308 0.0881946 -0.0369029 +-0.00860718 0.0361712 0.0494902 +-0.0685057 0.159542 -0.0539539 +-0.0864902 0.103559 0.00540359 +-0.0697818 0.16064 -0.00887941 +-0.05157 0.0657725 0.0357523 +0.036411 0.0430004 -0.00393346 +-0.0617308 0.0752409 -0.0175405 +-0.0384866 0.112537 0.0353486 +0.0446565 0.076299 -0.00080692 +-0.0444716 0.165339 -0.00887164 +0.0234256 0.0994865 0.0445818 +0.0411691 0.0899632 0.029736 +-0.0188353 0.12777 0.00853266 +-0.079023 0.172207 -0.0429929 +-0.0509196 0.141445 0.00173554 +-0.013506 0.0486161 0.0481837 +0.0193259 0.0665212 -0.0284749 +-0.0472913 0.128011 -0.00322004 +-0.0626481 0.167836 -0.0465871 +-0.0304696 0.0875178 0.0438182 +-0.0917743 0.120197 0.0434965 +-0.0648107 0.0617811 0.00082735 +0.000497836 0.114196 0.0414191 +0.0574118 0.0647963 0.00219725 +-0.0558676 0.0941545 -0.0217392 +-0.0336084 0.073768 -0.0234794 +0.00599322 0.131555 0.0161709 +0.00890036 0.0630937 0.0549611 +-0.062689 0.110949 0.0372761 +0.000505603 0.092515 0.0555251 +0.0223468 0.121292 -0.00473526 +-0.0486224 0.0562169 -0.0104362 +-0.00349838 0.0938964 0.0554871 +-0.0444734 0.111133 -0.0175908 +-0.0110869 0.111309 -0.0199045 +-0.0706182 0.161097 -0.00919138 +-0.0852334 0.0992128 0.0278144 +-0.0739196 0.15466 0.0290556 +0.0296062 0.0693912 -0.0207509 +-0.0310679 0.0435994 -0.0290446 +-0.0381696 0.0351458 0.0102677 +0.0601731 0.0664558 0.0181654 +-0.0779755 0.159708 -0.0199256 +-0.0656034 0.0619186 0.0220381 +-0.0875197 0.139142 0.00819442 +0.057949 0.0523838 0.0161799 +-0.0789979 0.165257 -0.0319521 +-0.0651299 0.139658 0.0409855 +-0.021445 0.0539977 0.0453008 +-0.0896519 0.136557 0.0371913 +-0.0534965 0.0890047 0.0449968 +-0.0534319 0.15708 0.0101259 +-0.0328837 0.0835575 -0.0275315 +-0.0164672 0.0659336 0.0534892 +-0.0354329 0.0383545 -0.00847377 +-0.0708675 0.102264 -0.0137609 +-0.023563 0.126621 0.00971624 +0.0103735 0.0460953 0.0463477 +-0.0660593 0.179544 -0.0550745 +-0.0527874 0.0854974 -0.0215293 +-0.0859388 0.0819759 0.019473 +0.0105508 0.12954 0.0235608 +-0.0103855 0.174149 -0.0227989 +-0.0669072 0.0448192 0.00702222 +-0.0284871 0.0932302 -0.0255941 +-0.0674877 0.041922 -0.00126982 +-0.0650925 0.142629 -0.00933509 +0.0420248 0.0845075 -0.00777453 +-0.0790747 0.0713835 0.0198308 +-0.0261077 0.0372445 -0.0185929 +-0.0370217 0.0410946 -0.0286549 +-0.0635554 0.166233 -0.0355972 +-0.0218769 0.105849 -0.0224625 +-0.0880158 0.125695 0.0466833 +-0.0621699 0.128298 0.0417254 +-0.0849635 0.115612 0.0476218 +-0.0132844 0.180127 -0.0228495 +-0.0282267 0.181005 -0.00798034 +-0.0312929 0.0665317 -0.0234435 +0.0182349 0.0355117 -0.0116753 +0.0151438 0.128336 0.0223847 +-0.0440686 0.0364096 0.0444754 +0.00518099 0.090879 -0.0329112 +-0.00712692 0.130239 0.0200248 +-0.00350074 0.0760658 0.0587997 +0.0285239 0.105924 -0.0141978 +-0.0560757 0.0486306 0.0102324 +-0.0647346 0.0751547 -0.0168067 +-0.0681413 0.163425 -0.0155251 +-0.0632877 0.151202 -0.0295741 +-0.0467953 0.0573798 0.0374139 +-0.0434795 0.10013 0.0422114 +0.0285718 0.0898068 -0.0210622 +0.0330592 0.116487 0.0176444 +-0.0241054 0.0348343 0.0490127 +-0.0124791 0.0354015 -0.0179384 +0.0405961 0.0624185 0.0297312 +-0.081387 0.11145 0.0446717 +0.00150869 0.0675259 0.0561223 +0.00629906 0.0381702 -0.0111411 +-0.0201579 0.171232 -0.0211109 +-0.0418025 0.1163 -0.0150397 +0.00651017 0.0786147 0.0558016 +-0.0940189 0.11877 0.0172997 +-0.0685972 0.0635876 0.000162346 +-0.0328398 0.0722904 -0.0244709 +-0.0455312 0.131052 0.00748081 +-0.023441 0.181825 -0.0105699 +0.0108694 0.130662 0.0179509 +0.0123886 0.0463398 -0.0252064 +-0.0652697 0.118619 0.0495916 +0.00206776 0.0348089 0.0386094 +-0.0298407 0.0705727 -0.0304857 +-0.0632339 0.164684 -0.0315914 +0.0353918 0.0491057 -0.00653987 +-0.0392946 0.123101 -0.0101877 +-0.0885378 0.137788 0.0102157 +-0.0234958 0.100256 0.0443804 +0.04037 0.0460545 -0.00454494 +-0.016752 0.0336597 -0.0246752 +0.0413281 0.0697537 0.029756 +-0.077268 0.161738 -0.0185704 +0.00995573 0.0897855 -0.0311748 +-0.0494127 0.0345257 0.0351696 +-0.00258654 0.0376582 -0.0251248 +-0.0538672 0.149311 0.025406 +0.0281029 0.0968693 0.0425418 +-0.0296256 0.0384042 -0.00919904 +-0.0659714 0.070335 0.0357803 +-0.0792849 0.109686 0.041215 +-0.0609581 0.142927 -0.00458074 +-0.064489 0.16418 -0.0242498 +-0.0585553 0.060477 0.023496 +-0.0851998 0.104954 0.024348 +0.0164098 0.126062 -0.00187701 +0.0235925 0.125057 0.0140956 +-0.00865281 0.123002 -0.0103525 +-0.0132305 0.174198 -0.0268981 +-0.0453894 0.130637 0.0193744 +0.0162761 0.0694793 -0.03005 +-0.0894525 0.128349 0.0437622 +-0.0562473 0.0708294 0.0392023 +0.0180456 0.044911 0.0433906 +-0.0626788 0.119898 0.0446407 +-0.0206698 0.116197 -0.0150314 +0.051506 0.0461707 0.0202521 +-0.0541367 0.13422 -0.00388726 +0.0303748 0.106409 -0.0127112 +0.0453408 0.0805541 0.00120995 +-0.00350137 0.0788045 0.0582113 +-0.052917 0.144693 0.0213981 +-0.0810085 0.136808 -0.00286908 +0.0435987 0.0482711 0.0311843 +-0.00549934 0.085642 0.0570911 +-0.0414264 0.125093 -0.00826982 +-0.0534716 0.0490986 0.0276613 +-0.0833044 0.10329 0.0285866 +-0.0394866 0.111153 0.0363447 +0.00954728 0.0389439 0.0451085 +-0.035694 0.0666325 -0.0153314 +-0.0301817 0.12316 -0.0042413 +-0.0383432 0.127011 0.0175779 +-0.0603252 0.0707596 0.0383929 +-0.0249438 0.0380891 0.0543244 +0.0144999 0.10985 0.0401157 +-0.0387789 0.0392857 0.0427431 +-0.0390181 0.126516 -0.0038056 +-0.0628844 0.116571 -0.0108779 +-0.0718222 0.0666154 0.0237319 +-0.0176233 0.0640054 0.0519373 +-0.0878362 0.112676 0.0422322 +-0.0661452 0.115702 0.0482687 +-0.0464951 0.116619 0.0318843 +-0.0501411 0.130626 -0.00198394 +-0.0497482 0.0767922 -0.0184367 +-0.0234881 0.0462034 0.0522022 +-0.0739006 0.162422 -0.0359639 +-0.0262017 0.0878115 0.0498853 +-0.0133444 0.0389099 -0.0138542 +0.040243 0.0970923 -0.00582991 +-0.011153 0.129981 0.0142184 +0.0309714 0.035145 0.0133989 +-0.0426252 0.0534503 -0.0112074 +-0.0538286 0.0338166 -0.0117099 +-0.0622047 0.0394245 0.0433885 +-0.0746849 0.14995 -0.0294029 +-0.0611865 0.0441212 -0.00432669 +-0.0182092 0.177147 -0.0243125 +0.0435018 0.0542009 0.0324922 +0.0364352 0.0371002 0.0145635 +-0.0321091 0.03378 0.0163326 +-0.0627516 0.145959 -0.00957815 +-0.0054968 0.061946 0.0559894 +-0.0738575 0.159643 -0.0319319 +-0.0640268 0.154208 0.0310565 +-0.0679826 0.0819454 0.0421862 +-0.0571357 0.158766 0.00595884 +0.0416081 0.101418 0.000182195 +-0.0235633 0.0565791 0.042552 +-0.0707052 0.0656331 -0.000502385 +0.0151645 0.126939 0.0266898 +0.0319146 0.0808971 0.042698 +0.0591439 0.0594194 0.00516163 +-0.0517306 0.164095 4.31123e-05 +-0.0802487 0.109228 0.032428 +-0.0124889 0.0964872 0.0522501 +0.0122905 0.06666 -0.0305971 +-0.00890819 0.0389895 -0.0111716 +-0.0414812 0.0634467 0.0412468 +0.0440882 0.090317 0.0231627 +-0.048759 0.14421 0.00252118 +-0.0240109 0.113853 -0.0165323 +-0.0863077 0.083293 0.0084931 +-0.0848578 0.117602 -0.00112226 +-0.0758939 0.107753 -0.00831552 +-0.0240922 0.0551393 0.0417051 +-0.048723 0.134043 0.0239744 +-0.075211 0.159631 -0.0279486 +-0.0458972 0.108476 -0.0187253 +-0.0827664 0.0789303 0.000509537 +-0.0413647 0.150284 -0.00509832 +0.00543597 0.131652 0.0145423 +-0.0567655 0.0797174 -0.020408 +-0.0314842 0.0875139 0.0436743 +-0.0272508 0.169746 -0.00972716 +-0.055503 0.0918468 0.0452512 +-0.0250407 0.11597 -0.0147569 +-0.0757456 0.155966 0.0196325 +0.0124869 0.0936385 0.0515089 +-0.0205861 0.122762 0.0284276 +-0.0807235 0.116228 0.0481624 +0.0260285 0.0450625 -0.0106845 +-0.0593728 0.0579489 0.0125735 +-0.049763 0.132774 0.0280532 +-0.0486523 0.128248 0.029602 +-0.0786364 0.0880738 -0.010561 +-0.0292743 0.157003 -0.0105584 +-0.0728269 0.0950692 -0.0149677 +-0.0571361 0.0333705 -0.00647115 +0.00471531 0.10507 -0.02128 +-0.0617504 0.158434 -0.0225881 +-0.044324 0.0573856 0.0392571 +-0.0231291 0.0608213 0.0434196 +-0.0736852 0.109489 0.0408578 +-0.0434867 0.102921 0.0416521 +-0.0745585 0.102629 0.0369846 +-0.00580621 0.0826794 -0.0377615 +-0.0293232 0.155967 -0.00892475 +-0.0785045 0.111148 0.0455755 +-0.0789041 0.126621 -0.00628203 +0.0387126 0.0984064 -0.00782785 +-0.00546749 0.0386155 0.00470576 +-0.00150095 0.0925253 0.0558525 +-0.0200678 0.0384268 0.0272406 +-0.0900294 0.114549 0.0240977 +-0.0775366 0.070359 0.00451989 +-0.0719896 0.139908 -0.00735583 +-0.0574975 0.0987515 0.0429871 +-0.0321271 0.107425 -0.0197503 +0.0188647 0.126347 0.0223312 +0.00641604 0.0962346 -0.0278978 +0.00311817 0.108714 -0.0201476 +-0.0160251 0.0375717 -0.0270066 +-0.0497158 0.140127 0.00540861 +-0.0603383 0.155998 0.00765284 +-0.0315045 0.100214 0.0434156 +-0.0865647 0.0978132 0.0263535 +0.030619 0.119354 0.0124235 +-0.0618449 0.153748 -0.0225793 +0.0357348 0.111877 0.0229152 +-0.0825172 0.108952 0.0273498 +-0.06497 0.156112 0.0234152 +-0.0141713 0.0391912 0.0511685 +0.0418096 0.0482673 0.0320498 +0.0293522 0.0768437 0.0442363 +-0.00664275 0.113752 -0.0185066 +-0.0339572 0.173519 -0.0141904 +-0.0868865 0.136539 0.0438118 +-0.0358508 0.0350331 0.0126434 +-0.0538363 0.0491492 0.0306601 +-0.0555251 0.040203 -0.0098178 +0.00654381 0.0340863 -0.0167284 +0.00392426 0.0984839 -0.0242888 +-0.0798351 0.078638 0.0310296 +-0.0520723 0.122646 0.0352105 +-0.0550812 0.153793 0.0226168 +0.014566 0.128157 0.000776346 +-0.0875094 0.103632 0.00838188 +0.0565843 0.0508466 0.00719292 +-0.0301736 0.0353405 0.0506988 +-0.054126 0.0491389 0.0369634 +-0.0213227 0.0927441 -0.0344661 +-0.0512299 0.133896 0.029412 +-0.0175551 0.0668893 0.0531861 +-0.0306537 0.125522 0.0174226 +0.00435638 0.0524337 -0.0297062 +-0.030037 0.0383331 -1.37538e-05 +-0.0748829 0.104948 -0.0102086 +0.0281452 0.12091 0.0214948 +-0.00129242 0.0339647 -0.0219341 +-0.0193753 0.114664 -0.0174341 +-0.0226586 0.185005 -0.0161016 +0.0333802 0.116202 0.0163348 +-0.0182505 0.0920203 0.0545129 +0.0291993 0.0821983 0.0440432 +0.040955 0.104188 0.00218636 +-0.0221399 0.16826 -0.0191908 +-0.0160775 0.128732 0.0124337 +-0.0494959 0.115246 0.0337414 +-0.0623926 0.155248 -0.0336012 +-0.0504873 0.0646576 0.0351978 +-0.0738463 0.114952 -0.00659368 +-0.0195012 0.0351765 0.0514244 +-0.0448823 0.107056 -0.0197924 +-0.0768765 0.119334 -0.00688293 +0.0107885 0.0345143 -0.0106366 +0.024237 0.0727429 0.0473317 +-0.00865103 0.0511695 -0.0319029 +-0.0877012 0.0963902 0.0247068 +-0.0518399 0.0559545 0.028629 +-0.00150749 0.0442279 0.0463824 +-0.066685 0.0361231 0.0351414 +-0.0298413 0.0511486 0.0404908 +-0.0104881 0.125079 0.0309157 +-0.0478366 0.0336224 0.000642732 +-0.0567073 0.152073 0.0307854 +-0.0772744 0.177812 -0.051035 +-0.0147745 0.0770701 -0.0384436 +-0.0929915 0.122891 0.0372721 +-0.0104786 0.116885 0.0389916 +0.0382147 0.0603208 -0.00873991 +-0.0754893 0.145614 0.0436847 +-0.0484504 0.134772 0.0211152 +0.013378 0.056283 0.0508299 +-0.00197361 0.0339973 -0.0202101 +0.0414332 0.100023 0.0231582 +0.0306311 0.076191 -0.0209647 +-0.0663516 0.155012 0.0287678 +-0.0710496 0.158811 -0.00499394 +-0.0554619 0.115432 0.0354757 +-0.0357408 0.0754574 -0.0191515 +0.000523827 0.0787529 0.057707 +-0.0189564 0.187079 -0.0195498 +-0.0849859 0.149949 0.0316738 +-0.0578691 0.0427244 -0.00751381 +-0.0739068 0.123785 -0.00803832 +-0.0355104 0.105608 0.0391036 +-0.0437169 0.0336921 -0.00956971 +0.0503986 0.0446075 0.0172106 +0.028338 0.0371627 0.023798 +-0.0835031 0.123045 0.0493423 +-0.051023 0.051637 0.0206282 +0.00799809 0.131294 0.0169006 +-0.0154642 0.0617228 0.0531313 +-0.0548148 0.0898539 -0.0222515 +0.0183688 0.0727072 0.0511848 +-0.0528816 0.143158 0.0234068 +0.0423208 0.0885482 0.027912 +-0.0489879 0.148715 -0.00337283 +0.0536516 0.0710277 0.00477709 +-0.0558317 0.154614 0.0193814 +-0.078074 0.0921324 -0.0116061 +-0.0138482 0.126055 -0.00351425 +-0.0484951 0.107035 0.0396855 +-0.0617568 0.113454 -0.0138737 +-0.0539631 0.0449066 0.021682 +-0.0323187 0.0763806 -0.0295323 +0.0441984 0.0917353 0.0221589 +-0.0830674 0.136771 -0.000769185 +-0.0741071 0.154101 -0.0239055 +-0.0686886 0.176906 -0.0487674 +-0.0561408 0.0460708 0.0131999 +-0.0685022 0.101419 0.0404594 +-0.0739688 0.0653923 0.0119616 +0.001175 0.0909253 -0.0339059 +0.0263146 0.0782009 0.0468843 +0.00192116 0.123969 -0.00948312 +-0.0587405 0.0737726 -0.0173801 +-0.0627949 0.167828 -0.0455908 +-0.0508006 0.0883889 -0.0215985 +-0.0481052 0.0559539 0.0359192 +0.0442623 0.0959503 0.0151546 +-0.0608758 0.0968112 -0.0186271 +-0.0345924 0.0485568 0.0396695 +-0.0618805 0.102572 -0.018381 +0.024797 0.0615121 -0.0241542 +0.0398079 0.0440192 0.0290809 +-0.0138249 0.0869198 -0.0385386 +-0.00950254 0.0801627 0.0580817 +-0.0893667 0.135016 0.00621309 +-0.0210328 0.0946153 0.0501685 +0.0124741 0.0347469 0.026362 +-0.0837947 0.100615 0.0291484 +-0.0677074 0.147127 -0.0273126 +-0.080936 0.0720826 0.0105433 +-0.0486367 0.0591511 -0.0114572 +-0.0856634 0.1104 0.0223511 +-0.0321401 0.16671 -0.0160336 +-0.0724955 0.174948 -0.0415233 +-0.0260317 0.0348457 -0.0200988 +-0.0274922 0.0497667 0.0454723 +-0.0394917 0.0534182 0.0393765 +0.0515114 0.0691441 0.0252354 +-0.0257438 0.12256 -0.00564443 +0.0437634 0.0832354 -0.00281017 +-0.0247629 0.0727034 -0.0370836 +-0.0655551 0.156269 0.0188465 +-0.0629848 0.136718 0.0370028 +0.0602499 0.0678328 0.0161531 +-0.0168173 0.0841632 -0.0392397 +-0.0683543 0.152019 -0.0462463 +-0.0567286 0.155485 0.0133042 +-0.0124895 0.119639 0.0367572 +-0.0620219 0.161552 -0.0385959 +-0.0485081 0.0504118 0.037253 +-0.0681426 0.159579 -0.055037 +-0.0339899 0.0738027 -0.0224777 +0.0187727 0.038419 -0.0166964 +-0.00951396 0.0647096 0.055646 +0.0373151 0.0659642 0.0362985 +-0.0697681 0.156742 -0.0499137 +-0.07512 0.161006 -0.0309706 +0.0445653 0.094573 0.0151616 +-0.0642545 0.154418 -0.039754 +0.0245051 0.108393 0.0385583 +-0.0423597 0.0337264 -0.0019814 +0.0111186 0.130773 0.0109156 +-0.0366056 0.0484481 -0.0142844 +-0.00762999 0.0387797 -0.0144679 +-0.0695561 0.0340783 0.00839793 +-0.0566909 0.0334951 0.00618234 +-0.0565711 0.159859 0.00306588 +0.000399482 0.0419381 -0.024642 +-0.0505546 0.0490872 0.0373101 +-0.0513639 0.0402537 0.0462611 +-0.0256858 0.0575487 -0.0293997 +-0.0524956 0.0890116 0.0451123 +0.044036 0.0973464 0.00517085 +-0.0774531 0.156901 -0.0199195 +0.0267966 0.0534918 0.0403155 +-0.0887231 0.0888754 0.0204484 +0.014348 0.0534071 0.0486823 +-0.0495075 0.0490436 0.0377607 +-0.0321324 0.154142 -0.000565596 +-0.0856354 0.143297 0.0395519 +-0.0344784 0.0932112 0.0445123 +-0.0688653 0.0860793 0.0429202 +-0.068567 0.167578 -0.0243154 +-0.0155024 0.084237 0.0568519 +-0.0768438 0.0975378 -0.0115852 +-0.054418 0.142404 0.0282888 +-0.00749562 0.091199 0.0567536 +0.0202715 0.077733 -0.0270961 +-0.0748613 0.102114 -0.0115761 +-0.0102609 0.0389601 -0.0132864 +-0.060805 0.0953608 -0.018741 +-0.0557308 0.0738305 -0.0174435 +-0.0789903 0.0900056 0.0359819 +0.0427074 0.0831548 -0.00579292 +-0.00549246 0.097843 0.0523265 +0.046038 0.0679968 0.0252834 +-0.0235521 0.116765 0.0343279 +0.0302394 0.0759037 -0.0212804 +-0.0212883 0.0638258 0.0471454 +0.0285217 0.0480557 -0.0127278 +-0.0326422 0.080708 -0.0295257 +-0.0545922 0.126915 0.0368606 +-0.07894 0.12954 -0.00577029 +-0.0871517 0.0874756 0.0234341 +0.0457525 0.0862068 0.0131643 +-0.0636848 0.163906 -0.0268361 +-0.01113 0.175691 -0.0290055 +-0.0644352 0.0424097 0.0302481 +0.00751322 0.0883379 0.0556646 +0.0450791 0.0411084 0.0144119 +-0.0801842 0.0990978 -0.00757647 +0.00942317 0.0752723 0.0558271 +-0.0720162 0.169175 -0.0255925 +-0.0706469 0.0749114 -0.0128891 +-0.0231537 0.124452 0.0216177 +-0.0354775 0.0932002 0.0444179 +-0.0467494 0.0782878 -0.0191673 +0.0402616 0.088708 0.0319407 +-0.0668021 0.0909191 -0.0174744 +-0.0798777 0.0922401 -0.00961163 +-0.00990791 0.168128 -0.0187599 +-0.0538472 0.144686 0.025416 +-0.0506923 0.0693793 -0.0143111 +-0.0628457 0.158366 -0.0406006 +-0.0472527 0.147738 0.00869118 +-0.0798492 0.140347 -0.0037915 +-0.0633595 0.155022 0.00583483 +0.0194938 0.0948135 0.0473832 +-0.0235952 0.03653 -0.0288249 +-0.0625329 0.155555 0.0257427 +-0.0293056 0.125075 0.00323421 +-0.0848075 0.100731 -0.000569426 +0.0362036 0.112389 0.0159326 +0.0148576 0.0726711 0.0531263 +-0.0648898 0.0353536 0.0257632 +-0.0225355 0.115413 0.0360839 +0.0344395 0.062733 -0.0148459 +-0.0404982 0.0548597 0.0396645 +0.0241838 0.0363666 0.0254891 +0.0185331 0.065881 0.0495848 +0.0124938 0.0589954 0.0513278 +0.00977817 0.131153 0.0118468 +0.0100829 0.0519948 0.0512903 +-0.0361503 0.127316 0.0154104 +-0.0482545 0.05323 0.0361705 +-0.0940988 0.124142 0.016266 +-0.0100812 0.168118 -0.0236136 +-0.00900002 0.1303 0.0121232 +0.044368 0.0832642 0.000211132 +-0.0417803 0.126317 0.0192991 +-0.0875576 0.0954908 0.0044419 +-0.0679508 0.168029 -0.055011 +-0.0131452 0.0346678 0.0462791 +0.00685606 0.0990064 -0.0228407 +0.0328304 0.0354201 0.0116657 +0.0278048 0.121695 0.017093 +0.0445188 0.0721805 0.0237826 +-0.0754994 0.115715 0.0515239 +-0.0115085 0.0815323 0.0578355 +-0.0530625 0.0625594 0.0307632 +-0.0510483 0.053037 0.0206135 +-0.0505791 0.0488657 -0.00826795 +-0.0426076 0.0338549 0.0069173 +0.0392521 0.0940728 0.0323259 +-0.0394892 0.0846821 0.0435801 +-0.0451321 0.0560164 0.0386443 +-0.00431394 0.0929621 -0.0345661 +-0.0559672 0.149602 0.0296453 +-0.0635672 0.159894 -0.0552656 +-0.0854828 0.0924603 0.0282645 +-0.000403311 0.102922 0.0441774 +-0.0728513 0.077742 0.0372898 +-0.0264927 0.0850795 0.0502634 +0.00748229 0.118415 -0.0155852 +-0.0301257 0.165235 -0.016018 +-0.00266679 0.0554838 -0.0324138 +0.0588141 0.0660698 0.0217199 +-0.0227042 0.0651451 0.0456598 +-0.0254758 0.0447668 0.0519525 +-0.0221249 0.165275 -0.017299 +-0.0673863 0.146352 -0.0244353 +0.0358297 0.112651 0.00431137 +-0.0600953 0.0345101 0.0398512 +-0.0315135 0.112545 0.0354646 +-0.0495533 0.0335732 0.00214603 +0.00748118 0.122397 -0.0118721 +-0.017033 0.0949215 -0.0326512 +-0.0465027 0.162256 0.00645028 +-0.0377072 0.0695284 -0.0160926 +0.0515389 0.0638758 -0.00198972 +-0.0406583 0.0577787 -0.0115563 +-0.078333 0.108337 0.035368 +-0.00970184 0.120973 -0.0121849 +0.0223756 0.0822421 0.0500191 +-0.0598969 0.0982824 -0.0189251 +-0.000418527 0.128183 0.0282442 +0.0398162 0.107019 0.0141667 +-0.0275139 0.118013 0.031246 +-0.0270215 0.0563432 0.0375362 +0.0105198 0.130786 0.00926843 +0.00339772 0.0418993 -0.0241367 +-0.0275013 0.113896 0.0350206 +0.0202412 0.0763232 -0.0271232 +-0.0919625 0.126955 0.0342506 +-0.0433008 0.0345877 0.0364134 +0.0433553 0.0860087 -0.00480358 +0.0208045 0.119446 -0.00872458 +-0.0930264 0.120177 0.0342925 +-0.0379377 0.157973 0.00463177 +-0.0253167 0.177183 -0.0103739 +-0.0366224 0.0519804 -0.0105023 +-0.0707047 0.079127 0.0393559 +-0.0260772 0.0606359 0.0392914 +-0.0238556 0.126292 0.00669874 +0.00550694 0.0561304 0.0532033 +-0.0537237 0.147766 0.0244131 +-0.0691531 0.167331 -0.0231015 +-0.0596786 0.0738084 0.0412039 +0.0326792 0.103442 0.0351236 +-0.0614661 0.174127 -0.0585981 +-0.0717687 0.0836085 -0.0162896 +-0.0457927 0.0869975 -0.0219586 +0.0105224 0.0990052 0.0483243 +-0.0829648 0.129479 -0.00406234 +-0.0356761 0.0343506 0.0364799 +-0.0884531 0.0888833 0.0214341 +-0.0627252 0.0416196 0.0257026 +-0.0564562 0.159872 0.00406757 +-0.0891671 0.0942549 0.0124334 +0.00850148 0.0561026 0.0528172 +-0.0897269 0.113038 0.0361809 +0.0510319 0.0481609 0.0243415 +-0.0355318 0.0341909 0.0278174 +0.0439268 0.0945301 0.0211547 +-0.0579061 0.0357757 0.046064 +-0.0154366 0.0383652 0.00473292 +-0.0175221 0.187321 -0.0198494 +-0.00549946 0.0842482 0.0569765 +0.0601999 0.0678503 0.0111396 +0.0144807 0.0658974 0.0525165 +0.0293268 0.0963357 -0.0179631 +-0.0397817 0.126122 -0.00537397 +0.0345713 0.109241 -0.00571538 +0.0142478 0.0846938 0.0523116 +-0.00151223 0.107257 0.0435513 +-0.0568094 0.0336832 0.0202688 +-0.00449913 0.108643 0.0435023 +0.0366018 0.0989128 -0.0107075 +-0.0520805 0.0552272 0.0244826 +-0.0564227 0.125779 -0.00685719 +-0.045508 0.0519257 0.0382686 +0.0321211 0.116144 0.000111339 +-0.0560271 0.142758 -0.00201441 +-0.0204991 0.12085 0.0318342 +-0.0572069 0.155002 0.0203881 +-0.0683862 0.0434928 0.00469407 +-0.0749362 0.167415 -0.0237916 +0.00950453 0.0758273 0.0557308 +0.0134626 0.0962698 0.0490469 +-0.0352581 0.0336435 0.0104036 +0.0033475 0.0524625 -0.0299019 +-0.0200406 0.0417644 0.0532372 +-0.020634 0.03806 0.0202475 +-0.0354822 0.0590569 0.0395591 +-0.0633421 0.145588 -0.0131138 +0.0560276 0.0714782 0.0201554 +-0.034079 0.157748 -0.0116645 +0.0430592 0.0871926 0.0271788 +-0.067061 0.0617728 0.0200983 +0.0054202 0.0385344 -0.0060218 +-0.0562382 0.115455 0.0360976 +0.0318915 0.0727133 0.0408308 +0.00701986 0.131464 0.0165435 +-0.00758439 0.038449 0.00988421 +-0.0401838 0.128459 0.00507702 +0.0467715 0.0482711 0.0287479 +-0.0918049 0.126804 0.00826817 +-0.0821184 0.0782385 0.0256306 +-0.0812562 0.103354 0.0307723 +-0.0639536 0.144435 -0.0123561 +-0.0108662 0.129871 0.00999779 +0.0155048 0.112635 0.0385412 +0.0182534 0.0792348 -0.0283217 +-0.0893331 0.0983151 0.0114073 +-0.00325216 0.0396403 0.0476826 +-0.0241255 0.089259 0.0519927 +-0.0858632 0.106258 0.00536057 +0.00408474 0.0346021 -0.0158016 +-0.0407936 0.0869784 -0.0214607 +-0.0166484 0.0480949 -0.029815 +-0.0157153 0.0613848 -0.0360938 +-0.0566239 0.0482507 0.0375737 +-0.0424946 0.0619914 0.040787 +-0.0676789 0.0735575 -0.0139417 +-0.00550026 0.0815011 0.0573318 +-0.0466697 0.166955 -0.00590454 +0.050335 0.0531616 -0.00370253 +-0.075448 0.162419 -0.0329687 +-0.0614914 0.089051 0.0454546 +-0.0467107 0.0709021 -0.0159388 +0.0485116 0.0611011 0.0306918 +0.0308141 0.0862286 0.0429136 +0.041033 0.0788113 -0.0077656 +-0.0332536 0.0434286 -0.0288825 +-0.0599631 0.0455474 0.028679 +-0.0106693 0.0383927 0.00930564 +0.00450171 0.04895 0.0512539 +-0.0567297 0.0738308 -0.0175741 +-0.0395016 0.128216 0.0127148 +-0.0236465 0.18441 -0.0150532 +-0.0541007 0.0517729 -0.00535724 +-0.00963566 0.0383633 0.0204127 +-0.072501 0.11898 0.053434 +-0.072483 0.0356257 0.00284128 +-0.0164962 0.0815146 0.0575151 +0.0321311 0.10568 -0.0119259 +-0.0628015 0.0867155 -0.0190743 +-0.0747157 0.155426 0.0258403 +-0.0655092 0.0986926 0.0420188 +-0.0621042 0.153787 0.0317461 +0.0075074 0.0702645 0.0557506 +-0.0873725 0.140519 0.00919988 +-0.0816979 0.073476 0.0105355 +-0.0251078 0.125921 0.00624226 +0.0143125 0.129601 0.0135477 +0.0537172 0.0701657 0.00367339 +-0.0658178 0.165764 -0.0247368 +-0.0706171 0.164859 -0.0164358 +-0.0268181 0.0385613 -0.0106363 +-0.0308492 0.121938 -0.00695618 +-0.0240991 0.0708914 0.0469009 +0.00836584 0.0509624 -0.0290525 +0.0146552 0.0361528 0.0436042 +-0.0759244 0.155422 0.00936737 +0.00291872 0.0383891 0.0247663 +-0.0483005 0.12541 0.0300666 +0.00749081 0.093253 -0.0307631 +-0.0441374 0.160646 -0.00957119 +-0.0454954 0.0945383 0.0433792 +0.0153865 0.0350801 0.00287497 +-0.0507565 0.078263 -0.0192091 +-0.014682 0.0540945 -0.0332776 +-0.0697195 0.0625059 0.018914 +-0.0850789 0.151288 0.0289026 +0.000998881 0.131517 0.0100563 +-0.0866192 0.111201 0.0383037 +-0.0257526 0.069725 -0.0351721 +-0.0832913 0.0938266 -0.00556456 +-0.00149798 0.121047 0.037107 +-0.0164922 0.103019 0.043564 +-0.00175716 0.0797524 -0.0362245 +-0.065193 0.165273 -0.0595568 +-0.00746087 0.0391472 0.0345828 +-0.0384976 0.0790115 0.0428361 +-0.00149834 0.095227 0.054625 +-0.00277478 0.078376 -0.0365291 +-0.0780329 0.155476 0.0217657 +-0.0632159 0.147647 -0.016402 +-0.0801569 0.0817921 0.0331577 +-0.0500022 0.16408 -0.00389251 +-0.0747874 0.0892505 -0.0147771 +-0.00949475 0.122405 0.0348735 +-0.0322196 0.0423712 0.0501883 +-0.00876131 0.174216 -0.0276966 +-0.0545091 0.161256 6.9518e-05 +0.0181832 0.102054 0.0457705 +-0.0604933 0.102915 0.04183 +0.0437773 0.0804492 0.0262342 +0.0388648 0.0842467 -0.0137667 +-0.00550336 0.0647558 0.0562438 +-0.0929299 0.122874 0.0352771 +-0.043447 0.0338958 0.0281851 +-0.0649274 0.155826 -0.0455264 +-0.00117719 0.0381217 -0.0144579 +-0.0146742 0.180146 -0.0213737 +-0.0911602 0.113316 0.0133388 +0.0114933 0.0990667 0.0482243 +-0.030492 0.093206 0.0443051 +-0.00885946 0.13031 0.0150517 +-0.073851 0.0979023 -0.0138506 +0.00349864 0.0505127 0.0525247 +0.0579498 0.0621469 0.0239372 +-0.0266127 0.121438 0.026306 +-0.0640364 0.138454 -0.00746704 +-0.0881537 0.0875035 0.020457 +-0.0693202 0.16097 -0.0509443 +-0.0258632 0.0384431 -0.0103374 +-0.0445084 0.162276 0.00597583 +0.002127 0.0994865 0.0488443 +-0.00523434 0.128086 0.0279795 +0.0441694 0.0706598 0.0245614 +0.00913312 0.10443 -0.020596 +-0.00849151 0.104452 0.0437135 +-0.0709552 0.134052 -0.00817596 +0.040546 0.0860518 0.0323351 +0.026933 0.109961 -0.012516 +0.0171797 0.119654 -0.0109592 +-0.0154871 0.10859 0.0421893 +-0.0544999 0.0945829 0.0441089 +-0.0942376 0.122836 0.024283 +0.0145822 0.10067 -0.0225932 +0.0416553 0.0900846 -0.00877196 +-0.0627089 0.0722313 -0.0153832 +-0.0265055 0.0946665 0.044662 +-0.0241067 0.108647 -0.0210644 +-0.0475093 0.0504634 0.0377677 +-0.0271626 0.0836755 0.0495254 +-0.0707023 0.155807 0.00247134 +0.0113316 0.0343299 -0.00659923 +0.0271512 0.0740976 0.0445232 +-0.00214312 0.101026 -0.0230018 +-0.0518271 0.094161 -0.0217872 +-0.0685768 0.0699128 0.0338326 +-0.0538957 0.0344051 0.0325721 +-0.0280624 0.17271 -0.00913079 +-0.0710555 0.148357 -0.0346175 +-0.0392482 0.165334 0.00281642 +-0.0494961 0.159354 0.00844009 +-0.0887346 0.0956375 0.0224045 +-0.0856504 0.126624 -0.00269798 +-0.0486707 0.147744 0.0101492 +-0.0735613 0.16372 -0.0149978 +0.0180716 0.0350245 0.0344937 +-0.0307362 0.053835 -0.015374 +-0.0887393 0.0928617 0.00944255 +-0.016725 0.0627999 -0.0362248 +-0.0190611 0.063953 0.0505398 +-0.0441816 0.0346721 0.0413945 +-0.0593157 0.126918 0.0405689 +-0.0111259 0.174182 -0.0282833 +-0.0436679 0.0621935 -0.0131864 +0.0275209 0.088828 -0.0220264 +-0.0297851 0.0890261 -0.0295849 +-0.0303849 0.154168 -0.00247422 +-0.0425281 0.128954 0.00568377 +0.0162787 0.126801 -0.0006607 +-0.0727179 0.0806647 -0.0147187 +-0.0753424 0.0928083 0.039305 +-0.0798316 0.111318 -0.00180655 +0.0192462 0.0346832 0.00400718 +-0.088108 0.129743 0.0452172 +-0.0103013 0.038437 0.0111565 +-0.0466082 0.166842 0.00289141 +-0.0459915 0.152139 0.00880917 +-0.02765 0.0504128 -0.0240838 +-0.00316977 0.101093 -0.0230747 +-0.081903 0.123614 -0.00465545 +0.0308134 0.104771 0.0359398 +-0.0649698 0.0444252 -0.000282601 +-0.0411724 0.128614 0.0047134 +-0.0566724 0.0661356 -0.00992741 +-0.0768027 0.1218 0.0526081 +0.0286707 0.0432432 0.0323583 +-0.0776442 0.112189 0.0467134 +-0.0599288 0.0595089 0.00385673 +-0.0751102 0.148577 -0.0168689 +-0.0422557 0.0435263 -0.021317 +-0.0109825 0.18157 -0.0273657 +0.0160657 0.128852 0.0141586 +0.0353395 0.113619 0.00703904 +-0.0746273 0.149901 -0.0298709 +-0.0108803 0.105927 -0.0227775 +-0.0134961 0.0472092 0.0480936 +0.0366578 0.0576635 0.0335112 +-0.019761 0.0984382 0.0445534 +-0.0662568 0.117183 0.0498756 +-0.0659606 0.17389 -0.0478108 +-0.0116079 0.0434695 -0.0263093 +-0.0926722 0.117507 0.0393006 +-0.0764843 0.145607 0.0435529 +-0.0467321 0.0337537 0.00617309 +-0.0558876 0.104087 -0.0189213 +-0.0920931 0.126941 0.031257 +-0.0204778 0.086949 0.0559493 +0.0205756 0.0550317 0.0471809 +0.0164894 0.10985 0.0397676 +-0.0639427 0.125311 -0.00880074 +-0.0233699 0.0380458 0.0160874 +0.00571651 0.037694 -0.0126956 +-0.0305064 0.059434 -0.0194047 +-0.0286182 0.0422955 -0.0294891 +-0.074262 0.155148 0.0274653 +-0.0780672 0.161102 -0.0219327 +-0.0710541 0.174778 -0.0424234 +-0.0641619 0.126957 0.0459503 +-0.0724375 0.0643068 0.0185598 +-0.0568864 0.106915 -0.0181412 +0.0293195 0.0995163 0.0407971 +-0.0644558 0.155894 0.01199 +0.00534877 0.131711 0.0116581 +-0.070964 0.169422 -0.0500317 +0.0101411 0.103018 -0.0207697 +0.0413802 0.0547717 -0.00646982 +-0.0385096 0.0776202 0.0427509 +-0.0239792 0.115969 -0.0147616 +-0.0225483 0.119525 0.0321637 +-0.060198 0.152175 0.0339452 +-0.0535114 0.0452153 0.0437642 +-0.0037319 0.0346421 0.0447442 +0.0102653 0.0944766 -0.0280245 +0.0270364 0.0347184 0.00926922 +-0.0660514 0.11246 0.0412419 +-0.0427238 0.072521 -0.0180673 +-0.057924 0.0453324 0.0266819 +0.0321473 0.0354374 0.0133726 +-0.0750002 0.0776536 0.0352037 +-0.0404922 0.11531 0.0337051 +-0.0201478 0.16826 -0.0196016 +-0.0263171 0.178663 -0.00829314 +0.0232364 0.0706221 -0.0263108 +-0.0228968 0.117028 -0.0138782 +-0.0477554 0.130992 0.0255865 +-0.05149 0.104281 0.0405196 +-0.00121687 0.120006 -0.0132177 +-0.0299396 0.0649723 -0.0274594 +-0.0187899 0.0784905 -0.0388371 +-0.0498267 0.109983 -0.0185775 +0.00334971 0.0510613 -0.029847 +0.0259096 0.0534724 0.0407837 +-0.0455367 0.111121 -0.0175743 +-0.0124237 0.0348026 0.0445556 +-0.0887181 0.123977 0.00228597 +-0.088156 0.151596 0.0228856 +-0.0530084 0.149326 0.0224058 +0.0191744 0.125775 0.0238749 +-0.0735068 0.118971 0.0531919 +-0.0585002 0.0987496 0.0428962 +-0.0310887 0.159271 -0.0130615 +0.000886159 0.12297 -0.0104051 +-0.0872227 0.0941086 0.00335062 +-0.0273424 0.0931435 -0.0275899 +0.0213306 0.126248 0.00896939 +0.0549036 0.0506667 0.00319831 +-0.0245658 0.115393 0.0346209 +-0.0908157 0.133668 0.01022 +0.011387 0.126452 0.0296316 +0.0342091 0.0430428 0.0288022 +-0.0759039 0.154928 -0.00089291 +-0.0834635 0.136224 -0.000676656 +-0.0242249 0.124407 -0.00155437 +-0.00949715 0.103034 0.0436292 +-0.0448632 0.102817 -0.0213129 +-0.0762912 0.162417 -0.0319674 +-0.087261 0.137734 0.00520439 +0.0359972 0.0915666 0.0381116 +0.0515419 0.0610093 0.0297195 +-0.0759846 0.168851 -0.0284951 +0.0192535 0.076364 -0.0276613 +0.00153258 0.130437 0.0231622 +-0.0552695 0.058846 -0.00542677 +-0.0478299 0.094184 -0.0219241 +0.0413096 0.0957202 -0.00478826 +0.00646546 0.131591 0.014917 +-0.0921802 0.132348 0.0172238 +-0.00096127 0.131397 0.0150615 +0.0373767 0.0519575 -0.00666499 +0.000499624 0.0661631 0.0564081 +-0.0624427 0.149095 -0.00857615 +-0.0158277 0.127263 0.00131837 +-0.0534778 0.0544994 -0.00645482 +-0.0393097 0.122071 -0.0111029 +-0.0552136 0.0346314 0.0441945 +-0.062546 0.0614527 -0.00215685 +0.0190515 0.0781917 0.0522129 +-0.00645816 0.122156 -0.0114796 +0.0547648 0.068691 0.024634 +-0.0165146 0.104417 0.0427511 +-0.0914381 0.133727 0.0162105 +-0.0621573 0.163143 -0.0375929 +-0.0927674 0.130992 0.0172311 +0.00308348 0.0981539 0.0507387 +0.0223728 0.0658814 0.0463438 +-0.039497 0.060614 0.0410267 +-0.0547684 0.0513541 0.0102674 +0.00252507 0.0561606 0.0537161 +-0.0427018 0.0681213 -0.0161497 +0.0102881 0.063916 -0.0312717 +-0.0443833 0.12939 0.00495951 +-0.0186027 0.160444 -0.0128213 +0.0371116 0.111176 0.0148387 +0.0282213 0.0875505 0.0444323 +-0.0274771 0.120676 0.0274866 +-0.0584936 0.0439589 0.0439647 +0.0240603 0.0822578 0.0489414 +0.0351443 0.071382 0.0384881 +-0.0164918 0.0897515 0.056205 +-0.0781864 0.161095 -0.0229348 +-0.0701455 0.111146 0.0439061 +-0.00742751 0.0346718 0.0457358 +-0.0757375 0.106056 0.0359296 +-0.0735163 0.138649 0.0485985 +-0.0786866 0.073183 -0.00146774 +-0.0425028 0.11664 0.0325093 +-0.0294965 0.105676 0.0405837 +-0.0253323 0.089221 0.0503626 +-0.00687638 0.105938 -0.022783 +-0.0680331 0.17369 -0.0570223 +-0.0709606 0.152484 -0.0460812 +-0.0145326 0.0386197 0.0300043 +-0.0284453 0.0903864 0.0448476 +-0.0688215 0.145351 0.0427408 +-0.0488146 0.109958 -0.0184987 +-0.0764868 0.144228 0.0448323 +-0.0204228 0.0384821 -0.0074254 +-0.050433 0.0505709 0.0355945 +0.00517866 0.131021 0.00445011 +-0.0697426 0.08081 -0.0166425 +-0.084857 0.0924919 0.0290512 +-0.00149439 0.0870302 0.0569025 +-0.072621 0.142849 -0.00891964 +0.0127783 0.105278 -0.0195273 +0.00375967 0.0343287 0.0177156 +-0.0724944 0.126022 0.052902 +-0.0520295 0.0429585 0.0453289 +-0.0373786 0.0478297 -0.016773 +-0.0165095 0.0446732 0.0513338 +0.0115347 0.118055 -0.0152175 +-0.0461946 0.0601644 0.0381445 +-0.0730192 0.156843 -0.0319176 +-0.0665818 0.173704 -0.0590137 +-0.0904622 0.133649 0.00822658 +-0.0661919 0.0387353 0.0332699 +0.0285711 0.0632767 0.0429905 +-0.0191373 0.0348399 0.0448528 +-0.0144945 0.115487 0.0386767 +-0.0885619 0.129493 0.00323888 +-0.00509715 0.039098 -0.012386 +0.00551873 0.0842341 0.0568816 +-0.0784525 0.0962411 -0.0105211 +-0.0126763 0.05824 0.052838 +-0.00571704 0.0642049 -0.0354496 +-0.0659809 0.169803 -0.037696 +0.00534315 0.0567731 -0.0307134 +-0.0104849 0.101611 0.0440429 +-0.0320291 0.108616 -0.01899 +0.0442879 0.0415947 0.0193873 +0.0261947 0.0449183 0.0375802 +-0.0626054 0.158425 -0.0185846 +-0.0321937 0.0694259 -0.0234551 +-0.0597828 0.0810723 -0.0197911 +-0.0274915 0.0602914 0.037483 +0.0278788 0.120142 0.00144262 +-0.00359535 0.0391334 -0.025473 +-0.0104902 0.0619157 0.0554492 +-0.0851123 0.133936 0.0477712 +0.0133897 0.0389058 -0.0222843 +-0.0778477 0.159718 -0.0189229 +-0.0817169 0.081448 -0.00456785 +0.00880568 0.131337 0.0114907 +-0.0885025 0.144515 0.032494 +0.00248318 0.0413744 0.0461608 +0.0393065 0.105567 0.023165 +0.0485408 0.0662379 -0.000364329 +-0.074114 0.159638 -0.0309374 +-0.0656277 0.0636798 0.0258038 +0.0326128 0.0934199 -0.0168733 +-0.0691845 0.152183 -0.0467119 +-0.0356328 0.0347409 0.0201566 +-0.067463 0.166618 -0.0559977 +0.0410852 0.0860175 0.0313838 +-0.0465484 0.0404249 0.0444582 +-0.0884823 0.147207 0.0295866 +-0.047064 0.168385 -0.0010022 +0.0204505 0.044377 -0.0207645 +-0.0460107 0.0426896 -0.0115747 +-0.0892694 0.136527 0.0301984 +-0.00170296 0.0612915 -0.034176 +0.016206 0.0927227 0.0499244 +-0.0816886 0.154881 0.0175845 +-0.0434863 0.0776041 0.0427475 +-0.0883068 0.098239 0.00641854 +-0.045625 0.056311 -0.011298 +-0.0524843 0.150872 0.017395 +-0.0641668 0.0334738 0.00287677 +0.0361211 0.0586877 -0.0107678 +0.0141254 0.0589894 0.0501816 +-0.0864962 0.112872 0.0280752 +-0.0863885 0.112851 0.0441987 +-0.0524922 0.0384865 -0.0115467 +-0.0776496 0.163935 -0.0239336 +-0.0554697 0.0345193 -0.0117205 +0.0176795 0.0740469 0.0519763 +-0.0728932 0.0642808 0.0113714 +0.0261658 0.0809584 -0.0239333 +0.058376 0.0713467 0.0136326 +0.0257313 0.0968616 0.0444005 +0.00516452 0.0344202 0.0197338 +-0.0686185 0.0687175 -0.00655491 +-0.0803464 0.147298 -0.000827063 +0.000190276 0.131527 0.0154789 +-0.0687909 0.0354139 0.0127136 +-0.05562 0.146743 0.0301728 +0.0240878 0.0645552 0.0452968 +0.0313304 0.0475675 0.0327114 +-0.0107396 0.0713653 -0.0375278 +-0.0444884 0.0733739 0.0424053 +-0.0892862 0.137904 0.0301929 +0.0430064 0.0930319 -0.00281527 +0.00152278 0.0688979 0.0560686 +0.02743 0.0663837 -0.0217206 +-0.0610765 0.167736 -0.0598039 +0.0469057 0.0738955 0.00933063 +0.010569 0.0630758 0.0538717 +-0.0636657 0.175908 -0.0542108 +-0.00887643 0.105922 -0.0227472 +0.0366768 0.0861722 0.0373065 +-0.00750518 0.0661146 0.0558703 +-0.0311481 0.174122 -0.0158676 +0.0165049 0.115408 0.0369209 +-0.0599957 0.135288 0.0360766 +0.023446 0.0385037 -0.00396461 +-0.0512658 0.0335234 0.00365116 +-0.0640041 0.0417908 0.0276702 +0.0505407 0.062451 0.0297568 +0.0381071 0.0767371 0.0357901 +0.0348186 0.114435 0.00971518 +-0.0808584 0.15153 0.0328055 +-0.0292731 0.0691492 -0.0304581 +-0.0482843 0.133992 0.00441773 +-0.0151264 0.0382524 0.0175843 +0.0457402 0.0749932 0.00321166 +-0.0514912 0.0529568 0.0308804 +-0.0841758 0.0777074 0.00551439 +-0.0724891 0.168081 -0.0228518 +-0.0578499 0.140998 0.0321632 +-0.0824678 0.0844329 0.0311552 +-0.035201 0.0380831 0.0475916 +-0.0225654 0.0336394 -0.0239171 +0.0463796 0.0792543 0.0131749 +0.0210505 0.125312 0.00175976 +-0.0835133 0.0843594 0.0293933 +-0.00767881 0.0555674 -0.03337 +-0.052489 0.159007 -0.00340529 +-0.0244459 0.156552 -0.00701262 +-0.0598434 0.0384999 0.0207227 +-0.0725078 0.160609 -0.0083559 +0.0429565 0.0986678 0.00218951 +-0.00967767 0.118026 -0.0150602 +0.038419 0.105512 0.0261645 +-0.00651495 0.0746355 0.058305 +0.0450144 0.0945871 0.00816469 +-0.0454802 0.123445 -0.0105099 +-0.00122028 0.0938312 -0.0334376 +-0.067038 0.143551 -0.013347 +0.043578 0.0888313 -0.0037919 +-0.0238161 0.078256 0.0534268 +-0.0455234 0.131922 0.0119481 +-0.0735087 0.137262 0.0493527 +-0.0183224 0.184952 -0.0232094 +-0.0148238 0.091051 -0.0367095 +-0.000496937 0.0620135 0.0565388 +-0.0217336 0.0611778 -0.0340471 +-0.0922703 0.125567 0.0322584 +0.0255559 0.0952317 -0.0208124 +-0.0748894 0.152721 -0.0218881 +-0.0770206 0.0981288 0.0365817 +-0.0262775 0.073604 0.0447421 +0.00842909 0.131472 0.01278 +-0.0815194 0.125984 0.0522053 +-0.0768497 0.156895 -0.0209209 +-0.0774933 0.0717304 0.000534742 +-0.0610597 0.172553 -0.0606091 +-0.00957846 0.178815 -0.0287373 +-0.062208 0.167823 -0.0505845 +-0.0225076 0.125867 0.0188793 +-0.0580565 0.0334897 0.00410791 +-0.00649004 0.112763 0.0415025 +-0.00176067 0.0755229 -0.0360316 +0.0456774 0.0904203 0.00916591 +0.0441351 0.0749462 0.0250125 +-0.0810675 0.11076 0.0435122 +0.00990869 0.048971 0.0492516 +-0.0728744 0.10362 -0.0122376 +0.0374772 0.106859 -0.00183322 +0.0151574 0.0988592 -0.0229537 +-0.016863 0.0640072 0.0526042 +-0.0418006 0.0462579 -0.0152948 +-0.0768234 0.0927696 0.0379671 +-0.0661935 0.155092 0.00556387 +-0.0810703 0.0752023 0.0214152 +-0.0235527 0.156826 -0.00518035 +-0.0194871 0.0883195 0.0557235 +-0.0716986 0.077793 -0.0140498 +-0.010631 0.0389663 -0.00962591 +-0.0570892 0.0602319 -0.00257411 +-0.0419839 0.128576 0.0133734 +-0.0151399 0.0382506 0.0121533 +-0.0759996 0.139851 -0.00609906 +-0.0506105 0.0694238 0.0381651 +-0.0658919 0.11864 0.0504465 +-0.0528899 0.106976 -0.018917 +-0.0521172 0.0545658 0.0256302 +-0.005498 0.103045 0.0437796 +-0.0524893 0.156469 0.0106374 +-0.0439563 0.147482 -0.0018962 +0.00349012 0.116915 0.0395094 +-0.0116538 0.0496371 -0.0310034 +-0.0360677 0.156277 -0.0104898 +0.0262747 0.0376552 0.0265482 +0.00369465 0.0390982 -0.00688719 +0.037401 0.0414131 -0.00242752 +-0.010004 0.0383201 0.0185669 +-0.0807853 0.0817556 0.0323751 +-0.00609738 0.037339 0.0487481 +-0.0254987 0.0945485 0.0446378 +-0.0446176 0.0345408 0.0396657 +-0.0522913 0.124591 -0.00759738 +-0.0244524 0.16187 -0.0148048 +-0.0144465 0.128429 0.00434765 +-0.0238211 0.0384511 -0.00993154 +0.0184111 0.122524 0.0307587 +-0.0815439 0.112456 0.0456165 +0.0549908 0.0567623 0.0266396 +0.0309112 0.0754873 0.0429619 +-0.0278697 0.103003 -0.0233536 +-0.0640545 0.149152 -0.0269946 +-0.0594536 0.133932 0.0368692 +0.0130152 0.130057 0.0144613 +0.0491953 0.0732159 0.0116573 +-0.0364993 0.0733348 0.0420574 +-0.0859116 0.107692 0.0193681 +0.0386236 0.109277 0.0110826 +0.00584547 0.0353648 -0.01428 +0.0198737 0.0358544 0.0359282 +-0.0174269 0.182963 -0.0250022 +0.0258436 0.0563286 -0.0217568 +0.0362122 0.112176 0.0188059 +-0.0564979 0.0805451 0.0445004 +0.0450117 0.0805305 0.000199058 +-0.043786 0.126623 -0.00583839 +0.0366462 0.100736 0.0320541 +-0.0198519 0.0357263 0.0525976 +-0.0872471 0.125707 0.0473263 +-0.0180735 0.0611876 0.0510587 +-0.0608049 0.0596005 0.019786 +0.0269735 0.121605 0.0224835 +0.033449 0.0380742 0.000639692 +-0.0174889 0.0856455 0.0572522 +-0.0298765 0.0607745 -0.022409 +-0.0371209 0.127449 0.0017956 +-0.0397839 0.0471068 -0.0160895 +-0.0245336 0.118082 0.0325274 +-0.0715136 0.0887445 0.0416191 +0.00419323 0.0880606 -0.0335488 +0.0353118 0.0520079 -0.00674902 +-0.00049849 0.101653 0.0443576 +-0.0570055 0.133804 -0.00545801 +-0.0215772 0.158162 -0.00503193 +-0.0640639 0.0351963 0.0227232 +-0.00287353 0.108795 -0.0218002 +0.0462936 0.0792458 0.00718673 +-0.00951316 0.0575536 0.0537045 +-0.0477812 0.0840973 -0.0215817 +-0.0526608 0.0504363 0.0276515 +-0.0340312 0.123966 -0.00509105 +0.00648697 0.11688 0.0387497 +0.0343069 0.0578226 0.0371782 +-0.0220745 0.169763 -0.0127977 +-0.0106374 0.0466553 -0.0295813 +0.0335656 0.114779 0.000629741 +-0.0269131 0.180109 -0.00739997 +0.0390081 0.105539 0.000161276 +-0.00175381 0.0993639 -0.0251444 +0.040909 0.0985658 0.0261474 +-0.0617277 0.159994 -0.0345941 +-0.0434138 0.111151 -0.0176174 +0.0319241 0.0700307 0.0408624 +-0.0349471 0.109117 -0.019515 +-0.0733885 0.111282 0.0466166 +0.0354121 0.0430461 -0.00417186 +-0.093028 0.117371 0.013308 +-0.0756832 0.149968 -0.01987 +0.0201512 0.0605237 0.0483852 +-0.0639979 0.158311 -0.048587 +0.0410638 0.0928718 -0.0077952 +-0.0845757 0.151155 0.0298105 +-0.0752762 0.167899 -0.0253615 +0.0587584 0.0580034 0.00517536 +-0.070971 0.166609 -0.0480118 +-0.0488701 0.10281 -0.0210946 +-0.0609926 0.128204 -0.00783795 +-0.0772884 0.155547 -0.0128979 +0.0120566 0.130535 0.0112565 +-0.0655484 0.039711 0.0142785 +-0.0465128 0.0438401 0.043121 +-0.0215234 0.0739469 0.0526909 +0.0238579 0.0490757 0.0395236 +-0.00446924 0.111373 0.0424038 +-0.0646993 0.150616 -0.0327557 +-0.0547216 0.118372 0.0366122 +0.055991 0.067441 0.024671 +-0.0164973 0.0485745 0.0476342 +-0.0243246 0.0415463 0.0540712 +-0.0679818 0.0653371 -0.00356488 +-0.0887934 0.125677 0.0460403 +-0.0672794 0.176766 -0.0591515 +-0.0201696 0.169725 -0.0202727 +0.0232197 0.0818757 -0.0256198 +-0.0521106 0.0503642 0.0236349 +-0.00378569 0.0826645 -0.03749 +0.0103848 0.03606 -0.0224393 +0.0144027 0.129384 0.00642559 +0.0154718 0.101771 0.0468044 +-0.0222044 0.174173 -0.0211642 +0.0605561 0.0664891 0.0161665 +-0.0110072 0.128401 0.0244439 +0.00979123 0.127622 -0.00353983 +-0.0586426 0.0335837 0.0110854 +-0.0324964 0.0518418 0.0373712 +0.0339681 0.114736 0.0222644 +-0.0278327 0.179989 -0.0150111 +0.0505141 0.0610459 0.0301699 +-0.084345 0.0818627 0.0244959 +-0.0780694 0.106243 0.0333548 +-0.0400434 0.149481 0.00241998 +0.0415851 0.0779004 0.0302476 +-0.0934884 0.117419 0.0203018 +0.0145324 0.0686382 0.0526166 +0.0105088 0.0546576 0.0523588 +-0.0166719 0.128014 0.0194984 +0.0111864 0.115382 -0.0163281 +0.0433489 0.0761902 -0.00378764 +0.00361131 0.0929227 -0.0324448 +0.0374765 0.0967619 0.0332563 +0.0118435 0.0418607 0.0449613 +0.00151372 0.070315 0.0563646 +-0.089555 0.092956 0.0194329 +-0.0309867 0.0458642 -0.0271867 +-0.0127025 0.0628523 -0.0366298 +-0.0211402 0.175693 -0.0149194 +-0.0410644 0.0466663 -0.0156422 +0.0229642 0.0564103 0.0453711 +-0.0689131 0.06155 0.0163724 +-0.0351956 0.0394954 0.0475468 +0.0545544 0.0478595 0.011201 +0.0307617 0.0848812 0.0428147 +-0.0854234 0.100771 0.000422318 +-0.00263926 0.0481807 -0.0301073 +0.0341204 0.0781827 0.0405841 +-0.0753485 0.151324 -0.0238793 +-0.040104 0.0359968 0.0427867 +0.00880995 0.127795 -0.00370552 +-0.0546717 0.0587861 -0.00643621 +-0.0527782 0.0338002 0.0103069 +-0.0644915 0.087588 0.0448694 +-0.0649403 0.125308 -0.00887181 +-0.0623267 0.035582 -0.00867786 +-0.0178682 0.127784 0.00598386 +-0.0477624 0.119115 -0.0139706 +-0.0272958 0.178509 -0.0169626 +-0.036773 0.0446897 0.0419462 +-0.0643144 0.0445281 -0.000908113 +0.0310215 0.117934 0.00259488 +-0.0657027 0.155342 0.0275329 +0.00812544 0.105869 -0.0206053 +-0.0845132 0.150109 0.0051703 +0.0147267 0.0343671 -0.00408399 +-0.0738652 0.150214 0.0382196 +-0.0396346 0.151103 -0.0056598 +-0.0548476 0.0665624 0.0361422 +-0.053656 0.116868 0.0345992 +0.0407085 0.0956949 -0.00580768 +-0.0407505 0.126266 0.0196745 +0.0327193 0.0632979 0.0402054 +-0.0423878 0.124291 -0.00941969 +0.0148847 0.0378033 0.0441286 +-0.0385893 0.036902 -0.00962928 +-0.0735502 0.095526 0.040254 +-0.0625469 0.169393 -0.0495927 +-0.0666556 0.0360676 0.0353877 +0.00702297 0.127188 0.0294846 +0.0123661 0.0479119 -0.026429 +0.00707963 0.0365612 -0.00575515 +0.00660499 0.0617786 0.0553203 +-0.056364 0.156406 0.0105108 +-0.02141 0.0511007 0.0448554 +-0.0417892 0.0855226 -0.0213401 +-0.0454873 0.0789625 0.0423892 +0.0541155 0.0731329 0.017974 +0.0124978 0.092313 0.0523832 +-0.0184886 0.0801089 0.0571361 +-0.0426749 0.0622014 -0.0131851 +-0.0711139 0.162407 -0.0449498 +-0.0234912 0.0474961 0.0510145 +-0.0722633 0.0367738 0.0082856 +-0.0207862 0.0638606 0.0480406 +-0.0570496 0.0562866 0.00362097 +0.023226 0.077646 -0.0258357 +0.00592655 0.0339685 0.0148513 +0.0327331 0.0942636 0.0404449 +0.0170625 0.0448711 0.043693 +0.0335588 0.0862851 0.0416032 +-0.0588111 0.0334057 -0.00501142 +-0.0718597 0.148728 0.0404251 +-0.0700765 0.0619608 0.0139832 +-0.0302069 0.174221 -0.00514504 +-0.088803 0.151599 0.0211964 +0.0155832 0.0893609 -0.0286847 +0.0270636 0.120631 0.00113345 +0.033576 0.0781814 -0.0177928 +-0.0894235 0.0942851 0.0164251 +-0.0386513 0.0344774 0.0357393 +-0.0348698 0.176878 -0.00628812 +-0.0102548 0.179004 -0.0295955 +-0.0708792 0.115031 -0.00817569 +0.0203316 0.0551325 -0.0272049 +-0.0942207 0.120117 0.0202902 +-0.0704743 0.121802 0.053345 +0.0441954 0.0847004 0.0251589 +-0.0662148 0.171945 -0.0435535 +-0.0579078 0.0494657 0.0056917 +-0.0364996 0.0789928 0.0425809 +0.00849936 0.0744764 0.056192 +-0.0263916 0.0563779 0.0383176 +-0.0556017 0.0336949 -0.0101219 +-0.0593537 0.140997 0.0335026 +-0.0941834 0.120103 0.0162919 +0.0184196 0.0442138 -0.0226321 +-0.0628603 0.033866 0.0135258 +-0.0229828 0.0566251 0.0433992 +-0.0295276 0.0383617 0.0343291 +-0.0439439 0.166904 -0.00881722 +-0.00750585 0.0633646 0.0562436 +-0.0553809 0.0486564 0.0109541 +0.0106398 0.0390088 0.044914 +0.0440071 0.0846602 -0.00280808 +-0.0184891 0.0743773 0.0548673 +0.0214529 0.0415824 -0.013701 +-0.0137336 0.0383402 0.0141683 +-0.0895155 0.0983259 0.0124123 +0.0129339 0.063079 0.0520141 +-0.0749499 0.112554 -0.00662315 +-0.0128237 0.0855345 -0.0387685 +-0.0175101 0.0381991 0.0207599 +-0.065046 0.0423247 0.012291 +-0.0570589 0.0507155 -0.000374425 +-0.0630045 0.132588 -0.00795426 +-0.0415001 0.0972709 0.0420669 +0.0313679 0.117954 0.0212794 +-0.00373539 0.0684024 -0.0350771 +-0.0896129 0.139294 0.0321884 +-0.0239769 0.0381215 0.0231095 +0.0347467 0.0670098 -0.0158076 +0.0178644 0.101883 -0.0218675 +-0.064813 0.0428917 0.034688 +-0.0618962 0.0443648 0.0286813 +0.0425837 0.100055 0.002186 +-0.056712 0.0708617 -0.0156392 +-0.066713 0.154086 0.0315791 +-0.0348246 0.0872331 -0.0245609 +-0.0155018 0.080076 0.0569734 +-0.0431381 0.128903 0.00398376 +0.0456202 0.0421608 0.019117 +-0.0637474 0.0766435 -0.0177206 +-0.070335 0.0339385 0.00479187 +-0.0452276 0.131073 0.0164666 +0.0175902 0.128186 0.00902123 +-0.0332219 0.0344808 0.0386469 +-0.000130337 0.0395577 0.0357254 +-0.0384117 0.12376 -0.00887525 +-0.0384745 0.0533908 0.0391471 +-0.0105486 0.0921685 -0.035821 +-0.0292627 0.125707 0.0105611 +-0.0740612 0.16798 -0.0430295 +-0.0794475 0.0732175 0.0216948 +-0.0525459 0.0430871 -0.00935537 +-0.0275149 0.0591111 -0.027433 +-0.0608279 0.0910686 -0.0191968 +0.0214831 0.0388585 0.0402401 +-0.0185078 0.0382343 0.0205228 +-0.0193476 0.0973552 -0.0251961 +-0.014626 0.03858 -0.00263697 +0.0364765 0.110061 0.0246179 +0.0394879 0.0499122 0.0322705 +-0.0738314 0.151256 -0.033887 +-0.0276072 0.0488225 -0.0246209 +0.0254616 0.0727112 0.0456024 +-0.054118 0.157553 -0.00229988 +-0.0100751 0.129607 0.0204184 +-0.0507271 0.115538 0.0335799 +-0.064203 0.176904 -0.0544031 +-0.0327997 0.0624741 -0.0154176 +-0.050486 0.0585567 0.0325562 +-0.0115057 0.0716604 0.0558672 +-0.041271 0.0338554 -0.00188008 +0.00149737 0.0969588 -0.0286791 +0.0222207 0.0833264 -0.0261432 +-0.0379669 0.0433397 0.0417712 +0.0433566 0.094461 -0.000803958 +-0.0485055 0.0490796 0.0381424 +-0.0398915 0.109923 -0.0189257 +-0.00650042 0.0533369 0.0530605 +-0.0902689 0.112791 0.0182006 +-0.0256204 0.0436547 -0.0287136 +-0.0432877 0.171276 -0.00598005 +0.00651867 0.0674599 0.0552944 +0.00755739 0.101711 0.046537 +0.0201484 0.0899648 -0.02526 +0.00621941 0.0351341 0.00654928 +-0.0641258 0.0611318 0.00140431 +-0.0841699 0.0979316 0.0296062 +-0.0893171 0.151601 0.0194969 +-0.0509112 0.0517382 0.0331779 +-0.0345095 0.0761212 0.0417709 +-0.0210879 0.0852798 0.0561484 +-0.0647084 0.033787 -0.00655215 +0.0485032 0.0638048 0.0293893 +0.0553414 0.0563023 0.000211666 +0.031191 0.0977616 -0.015509 +-0.0271419 0.168228 -0.0179326 +-0.0594934 0.0832968 0.0436941 +0.00712427 0.107292 -0.0202517 +-0.0670075 0.139964 -0.00790796 +-0.072631 0.169409 -0.0470274 +-0.0668128 0.0894987 -0.0177562 +-0.0638648 0.166212 -0.0336016 +-0.0305285 0.0348948 0.0458677 +-0.07494 0.0707543 0.0282709 +0.0217204 0.105135 -0.0173432 +0.0129112 0.111627 -0.0182976 +-0.0346615 0.0395406 0.0484261 +-0.0244963 0.105758 0.0419767 +-0.0275166 0.057436 0.037149 +-0.071563 0.151347 -0.0436244 +-0.00477478 0.0812297 -0.0373809 +-0.0544968 0.108447 0.0390956 +0.0191276 0.0370481 -0.0116797 +-0.0477678 0.125154 -0.0082648 +0.00907863 0.112423 -0.0191367 +-0.0148223 0.129108 0.012888 +-0.0685095 0.148391 0.0402581 +0.0438124 0.093116 0.0231537 +-0.0295173 0.175738 -0.0052542 +-0.0580932 0.155356 0.0200663 +-0.0140302 0.116852 -0.0157862 +-0.00427283 0.034883 0.0462122 +-0.0365117 0.0860935 0.0436284 +0.0428337 0.0789534 -0.0047828 +0.0143759 0.121374 -0.0108038 +-0.0478629 0.0335429 0.00613354 +0.0399096 0.0632641 -0.00677014 +0.0382182 0.0855917 -0.0147556 +-0.0586226 0.156199 0.00971481 +-0.0768739 0.0698402 0.0216311 +0.0359859 0.0660034 0.0379002 +-0.0517494 0.0782459 -0.0193853 +-0.0836382 0.0870656 -0.00453769 +0.0314216 0.0415146 -0.00377022 +-0.0633942 0.159878 -0.0495887 +-0.0762229 0.149992 -0.0128764 +0.0360298 0.0573371 -0.00970954 +-0.0378631 0.100009 -0.0219618 +-0.0631703 0.172516 -0.0516045 +-0.0893681 0.0902559 0.0194368 +0.0559048 0.0631077 0.000905369 +0.00350533 0.0758855 0.0563752 +0.0327662 0.0475454 0.0312717 +-0.0144964 0.104421 0.0432413 +-0.0925078 0.121485 0.0292837 +-0.0225266 0.123574 -0.00478676 +0.027859 0.114683 -0.0075901 +0.0336358 0.0725575 -0.0168317 +0.0133955 0.0900754 0.0528858 +-0.0320964 0.160758 -0.0138294 +-0.0665218 0.173689 -0.0465659 +-0.0314315 0.062325 -0.0194293 +0.0355057 0.0498307 0.031489 +0.0409937 0.0830284 -0.00976566 +-0.0484259 0.152144 0.0105657 +-0.0760489 0.0702549 0.00053996 +-0.0939567 0.121435 0.0142863 +0.0458128 0.0848143 0.0141708 +-0.088753 0.130866 0.00325856 +-0.0762076 0.0680671 0.0162505 +0.0295583 0.0594698 -0.0188239 +-0.0470685 0.0362699 0.0454096 +0.0515085 0.0678015 0.0264788 +0.0229945 0.0535474 0.0436214 +0.0102584 0.0738736 -0.0323425 +-0.0208293 0.0841002 -0.0385977 +0.013479 0.118711 -0.0139326 +-0.0577142 0.0723919 -0.0167433 +0.0343469 0.0740244 -0.0157906 +-0.0384895 0.050603 0.0393394 +-0.0411819 0.166655 -0.0111213 +-0.0314187 0.0525029 -0.0133876 +-0.0530781 0.119794 0.0354828 +0.0402398 0.0815675 -0.0107641 +-0.0334936 0.0817447 0.0419617 +-0.0284374 0.0381394 0.00411543 +-0.0669412 0.126769 -0.00883964 +-0.089797 0.129515 0.00524651 +-0.0607661 0.0796035 -0.0191344 +-0.0878523 0.0860961 0.00747941 +-0.00447426 0.0385132 0.0213354 +0.0222429 0.0463236 0.0406841 +-0.0167958 0.0799195 -0.0388883 +-0.0714505 0.16941 -0.0490283 +-0.00251639 0.0442645 0.0466529 +-0.0648891 0.0981501 -0.0170112 +0.00754987 0.100371 0.0472771 +-0.0694963 0.16803 -0.0520069 +-0.0920162 0.126943 0.0352547 +0.0233968 0.0355618 0.0133136 +-0.0660161 0.169448 -0.0590294 +-0.0555411 0.128344 0.0372391 +-0.0488244 0.0927169 -0.0215945 +0.0343104 0.114465 0.0209626 +-0.0501985 0.140132 0.0173988 +-0.0658096 0.0445087 0.000718728 +-0.0512856 0.136981 0.000438627 +-0.0269157 0.0703179 -0.0345192 +-0.0636699 0.112355 0.0376208 +-0.0754912 0.144221 0.0449451 +-0.062524 0.167829 -0.0475902 +0.030542 0.0511254 -0.0127382 +-0.0237052 0.0596068 -0.0321069 +-0.0547922 0.153188 0.0241866 +-0.0414961 0.0902351 0.0425692 +-0.0494981 0.0477699 0.0395132 +0.0289271 0.110086 0.0349831 +-0.0402206 0.0433137 -0.0233156 +-0.0246897 0.0560336 -0.0294195 +0.00733033 0.058195 -0.0305865 +-0.0633574 0.155908 0.0123853 +-0.0679376 0.162368 -0.0549778 +-0.0588165 0.0667309 0.0351477 +-0.0598716 0.0453976 -0.00333599 +-0.0238165 0.0812337 -0.0381734 +-0.047565 0.0370224 -0.0142792 +-0.010699 0.104948 -0.0231645 +0.0375184 0.0915609 -0.0128884 +-0.056974 0.0573893 0.011763 +-0.00401542 0.033994 -0.0206047 +0.0133173 0.0638081 -0.0300932 +-0.0402517 0.127178 -0.0024642 +0.00549546 0.0489597 0.051102 +-0.0755445 0.0668624 0.00857418 +-0.0465015 0.0643139 0.0383309 +0.00586085 0.130491 0.00185259 +-0.00908444 0.0392597 0.0359512 +-0.0724815 0.0696506 0.0297377 +-0.0588318 0.146817 0.0344225 +-0.0460118 0.126697 0.0245216 +-0.044079 0.0336811 -0.000461832 +-0.0565021 0.0946206 0.04473 +-0.0615844 0.155311 -0.0225818 +-0.0650869 0.155169 -0.00713868 +-0.089472 0.092961 0.0204149 +-0.0824758 0.0764829 0.0200121 +0.0429803 0.0916104 -0.003806 +-0.0914285 0.144743 0.0221537 +0.00329581 0.06408 -0.0335736 +-0.0554437 0.158541 0.0079523 +-0.0624977 0.0789785 0.042462 +0.00538842 0.0383711 -0.011506 +-0.0682947 0.162375 -0.0539731 +-0.0809901 0.135346 -0.00326263 +-0.0418435 0.0928469 -0.022966 +-0.0664939 0.0917254 0.0436166 +-0.0741328 0.170753 -0.0306566 +0.00842498 0.094018 -0.0295425 +-0.00912603 0.126983 -0.00460672 +-0.0144839 0.0911543 0.0563071 +-0.0247385 0.124904 0.000549003 +-0.064327 0.034541 0.0284972 +-0.0668589 0.156842 -0.00635476 +-0.0565065 0.0629707 0.0300974 +0.0567694 0.0522665 0.0211855 +0.0120332 0.0793354 0.0543348 +0.00749695 0.108523 0.0409368 +-0.0385157 0.0761871 0.0423388 +-0.0861163 0.11208 0.0430934 +-0.0554974 0.0776601 0.0434775 +-0.0519782 0.0531903 0.0286494 +0.00382899 0.0387567 -0.00467455 +-0.0437453 0.0348723 0.00757323 +-0.0876033 0.102265 0.00739801 +-0.0538689 0.152421 0.0214004 +0.0305964 0.0407785 0.0282841 +0.0465387 0.0750529 0.00819241 +-0.0664147 0.112558 0.0425241 +-0.0212669 0.123736 0.0252343 +-0.0144966 0.0485988 0.0478804 +-0.0270125 0.0891105 0.0478066 +-0.0328048 0.0886955 -0.0250147 +-0.0387676 0.0812185 -0.0204237 +-0.0179622 0.106228 -0.0225141 +-0.0121468 0.17267 -0.0267827 +-0.0155019 0.119619 0.0357771 +-0.0763961 0.0968047 0.0374195 +-0.00349611 0.0897823 0.0565938 +-0.0378917 0.0335733 -0.0268663 +-0.0464981 0.0451704 0.0419279 +0.0287219 0.115289 -0.00622497 +-0.0639806 0.135327 0.039077 +-0.045498 0.105695 0.0408472 +0.0546227 0.0668075 0.00110467 +-0.0690913 0.143 -0.0123014 +0.0356753 0.0619319 0.0374332 +-0.0141081 0.128922 0.00736661 +-0.0561495 0.0341243 0.0270787 +-0.038546 0.128369 0.00715642 +-0.0876142 0.116272 0.0465171 +-0.0722303 0.134063 0.0500963 +-0.0156039 0.0392636 -0.0272219 +-0.0361326 0.034299 0.0293707 +0.0285657 0.120967 0.00738594 +0.0111022 0.114226 -0.0170859 +-0.0218549 0.118022 -0.0129203 +0.0460721 0.0848306 0.00817735 +-0.0800935 0.138964 -0.00379173 +-0.0574953 0.0747475 0.0420563 +-0.00684325 0.130599 0.0100344 +0.020602 0.0768409 0.0509288 +0.0342103 0.0795441 0.0407378 +-0.0387822 0.0841715 -0.021953 +0.00854197 0.104373 0.044167 +0.0284181 0.0835438 0.0446794 +-0.0809789 0.0720684 0.0125422 +-0.0870329 0.152942 0.0187545 +0.0227098 0.105005 -0.0172062 +-0.0259693 0.156664 -0.00260696 +0.00630512 0.0970077 -0.026738 +-0.0293004 0.175699 -0.00559167 +-0.00764633 0.048167 -0.0303862 +-0.045682 0.0680577 -0.0156409 +-0.0545225 0.0645764 -0.00897215 +-0.0511988 0.137011 0.0243968 +-0.00714364 0.101607 -0.0236448 +0.00975279 0.123922 0.0333795 +-0.069363 0.163799 -0.0509746 +-0.000145407 0.0355938 -0.0156782 +0.0251101 0.0562501 -0.0227775 +0.047185 0.0692848 0.0242283 +-0.0610844 0.0335982 -0.00747508 +-0.0215973 0.0387212 -0.015323 +0.00621551 0.0824281 -0.0337654 +-0.0768656 0.120803 -0.0071099 +-0.072234 0.147352 -0.0242316 +-0.0251276 0.16525 -0.016804 +-0.00350994 0.110634 -0.0212045 +-0.051883 0.143128 0.0183637 +0.0388034 0.0687739 -0.0117998 +0.0522529 0.049588 0.0243549 +-0.0484974 0.0974063 0.0440017 +0.0292296 0.08295 -0.0208022 +0.0215976 0.121636 0.0305088 +-0.0576661 0.143885 0.0324483 +-0.062789 0.152113 -0.0295989 +-0.0686144 0.0632303 0.0220506 +-0.0812769 0.136213 -0.00276757 +-0.0898521 0.112924 0.020019 +0.0399617 0.0984844 -0.00581339 +-0.0197337 0.0627381 -0.0357065 +-0.0715197 0.0915892 0.0417662 +-0.0176796 0.037751 -0.0173923 +-0.0034931 0.0519852 0.0535284 +-0.0477302 0.0753108 -0.0175447 +-0.0720239 0.158203 -0.0389152 +0.012618 0.0562866 0.0514947 +-0.00341476 0.129699 0.000449344 +0.00761699 0.0345564 0.0219225 +0.0197796 0.101487 -0.0214363 +-0.0718751 0.150885 -0.0428436 +0.0226049 0.0994887 0.0451477 +-0.0275114 0.0379423 0.00991362 +0.0449899 0.0861501 0.00118902 +-0.0724942 0.0928706 0.0413391 +-0.0668563 0.151928 -0.044894 +-0.00758529 0.0395118 0.037828 +-0.0717266 0.143977 -0.0139286 +-0.0485566 0.0446478 -0.0101195 +-0.0498454 0.098516 -0.0220736 +-0.0687032 0.155739 0.000270534 +0.0305837 0.118921 0.00529549 +0.0181431 0.0408036 0.0434958 +-0.0644897 0.161538 -0.0184978 +-0.082117 0.127195 0.0520765 +0.0194801 0.0975854 0.0469408 +-0.0593004 0.0460479 0.0107053 +-0.051494 0.097382 0.0437255 +-0.0629042 0.151488 -0.0283316 +-0.0520794 0.132523 0.0317044 +-0.0086348 0.124041 -0.00947049 +-0.0408505 0.0971293 -0.022095 +-0.0501242 0.144161 0.00100252 +-0.0374501 0.127748 0.0031441 +-0.0242006 0.107431 -0.0217757 +-0.0185705 0.0597254 0.0501838 +0.0506634 0.0663167 -0.000433246 +-0.0778197 0.0981202 0.035968 +-0.0344836 0.0604651 0.0395531 +0.0141481 0.100268 -0.0227789 +-0.0201048 0.0920391 0.0535514 +0.0405223 0.0582848 0.0307512 +-0.0234669 0.126337 0.0156088 +-0.0879353 0.140547 0.0390784 +0.0495003 0.0691238 0.025332 +-0.0550177 0.034541 0.0409139 +-0.0558687 0.156831 -0.000812957 +-0.033113 0.162236 -0.0143657 +-0.0040053 0.127195 0.0298616 +0.00247063 0.0977635 0.0514765 +-0.0372934 0.126961 0.0179492 +0.00433485 0.120467 -0.0137766 +0.00930976 0.0595795 -0.0301167 +0.0437257 0.0902921 0.0241674 +-0.0363397 0.0344675 0.0327184 +0.000637516 0.0346318 0.0420689 +0.0283669 0.0563832 0.0408635 +-0.0890554 0.136524 0.0291987 +-0.0526322 0.0603614 -0.00917272 +-0.0555168 0.0610654 0.0262173 +-0.0398616 0.102806 -0.020798 +-0.0554959 0.0959795 0.0436611 +-0.0625279 0.0435825 0.012569 +-0.012539 0.0432081 0.0504383 +-0.0295399 0.0777526 0.042206 +0.0250153 0.0699448 0.0449142 +0.0418505 0.0929433 -0.00581175 +0.00749052 0.0923616 0.0534281 +-0.0508873 0.105589 -0.0194525 +-0.0577516 0.0752955 -0.0185275 +-0.0341251 0.166782 -0.00385534 +0.0204867 0.0961927 0.0470968 +-0.0860696 0.110951 0.0368762 +-0.0623929 0.0445563 0.039213 +0.0212831 0.0679005 -0.027755 +-0.0459741 0.03576 0.00812075 +-0.0128757 0.105895 -0.0226089 +-0.0713104 0.164383 -0.0152637 +-0.00570768 0.129479 0.0248833 +-0.0759611 0.0715461 -0.00349282 +-0.0154987 0.0485755 0.0476399 +-0.0271627 0.125166 0.0172175 +-0.052909 0.0559665 0.0126205 +0.0445771 0.0875296 0.0231612 +-0.0679602 0.132601 -0.00851511 +-0.0735016 0.14861 -0.0288774 +0.0321816 0.0968615 0.0396789 +-0.0617331 0.156868 -0.0205842 +-0.0310423 0.0467686 -0.0260418 +-0.0285615 0.0382432 0.0537594 +-0.0934477 0.121479 0.0262963 +-0.0220941 0.0710555 0.0505203 +-0.0299308 0.0348009 0.0443343 +-0.0161025 0.0382877 0.022773 +-0.0328698 0.101492 -0.0223548 +0.0454742 0.0412367 0.0106737 +-0.028101 0.0890412 0.0460663 +-0.0440047 0.127209 -0.00443148 +0.0593281 0.0649895 0.00613553 +0.0127896 0.130142 0.00867876 +0.0391468 0.0887707 0.0338836 +0.0223265 0.0535979 0.0444334 +-0.0897234 0.125377 0.0042981 +0.0287018 0.0447465 0.0341399 +-0.0924969 0.121493 0.0302824 +-0.0717492 0.0821807 -0.0161321 +-0.0756445 0.156326 -0.00458549 +0.00148921 0.104407 0.0433078 +-0.0361895 0.0355992 0.0192692 +-0.0662775 0.0734947 0.0382764 +-0.0730867 0.169281 -0.0259539 +-0.00640617 0.0386668 0.0262232 +-0.053287 0.0610602 0.0282137 +-0.0820828 0.0871799 0.032118 +-0.0474969 0.0477925 0.0396528 +0.0505278 0.0445977 0.0162148 +0.0314571 0.0378867 -6.50808e-05 +0.0244076 0.117212 -0.0083203 +0.0193833 0.052146 -0.0261511 +0.0213663 0.0593118 -0.0264401 +-0.0223265 0.0696009 0.0493961 +-0.0803036 0.100707 0.0327244 +0.0516025 0.0650498 -0.00116678 +-0.0572939 0.0597447 0.0223608 +0.0272121 0.088765 -0.0222319 +-0.0760712 0.152304 0.0343668 +0.0287584 0.0359201 0.00291435 +-0.00327774 0.125061 -0.00864173 +-0.0492123 0.134029 0.0252722 +-0.0157732 0.0799164 -0.0389165 +0.0137184 0.0699424 0.0531931 +0.0181521 0.124421 0.0277923 +0.0195548 0.127052 0.0182976 +-0.0788582 0.171448 -0.0399026 +-0.0820398 0.150272 0.03397 +0.0134064 0.0478115 -0.0258783 +-0.0637307 0.0344451 0.0269565 +0.00741391 0.0920665 -0.0315473 +0.0394368 0.0688303 -0.0107955 +-0.064416 0.154996 0.00586526 +-0.066663 0.144317 -0.015468 +0.0353499 0.042038 0.028119 +-0.00141558 0.03896 -0.0133998 +-0.0338581 0.0334994 -0.0260028 +0.0142608 0.0359816 -0.0203372 +-0.0776263 0.175005 -0.043567 +-0.0525965 0.0345626 0.0431188 +0.0335361 0.0372674 0.00265432 +0.0308902 0.0632769 0.0410591 +-0.0895335 0.144692 0.0121557 +-0.0612693 0.0337096 0.0122134 +-0.00661675 0.0976221 -0.0294208 +-0.0504448 0.128295 0.0323161 +-0.0571803 0.062383 0.0287138 +-0.0529076 0.136719 0.0287121 +-0.0247725 0.0390001 0.0365321 +-0.00277907 0.0769693 -0.0364873 +-0.0894255 0.0956236 0.0134235 +0.0183336 0.0566072 -0.0279953 +-0.0945117 0.124183 0.0222757 +-0.0670539 0.154574 0.0299913 +0.0377471 0.104052 -0.00484079 +-0.0277489 0.0877005 0.0471838 +-0.0465602 0.122394 -0.0114017 +0.0512982 0.0545874 -0.00353058 +-0.0255237 0.116678 0.0329121 +-0.0558854 0.0479468 0.0296668 +-0.0384602 0.127124 -0.00162988 +0.00941217 0.040392 -0.0233006 +-0.0788042 0.109939 0.0428886 +-0.00952807 0.0385271 0.0257083 +-0.0151514 0.041952 0.0515406 +-0.0896796 0.114349 0.0422656 +-0.0130415 0.0639857 0.0543784 +-0.0709434 0.168021 -0.0490096 +-0.042508 0.0562794 0.0398023 +-0.0723361 0.155599 0.00334302 +-0.0804662 0.0800422 -0.00555374 +-0.0320486 0.122707 -0.00572396 +0.0215589 0.120837 -0.00625561 +0.0181166 0.118416 -0.011621 +-0.0473179 0.0397941 -0.0120624 +-0.0797756 0.0706254 0.0155549 +0.00931098 0.130351 0.0216675 +-0.0082877 0.0388999 0.0310374 +-0.0475138 0.156385 0.00914965 +-0.000599084 0.0391028 -0.0250468 +-0.0114889 0.103024 0.0436761 +-0.0176179 0.0378672 -0.0275216 +-0.0423688 0.123346 -0.0104204 +-0.0387324 0.156611 0.00532643 +0.0047217 0.0940547 -0.0316305 +-0.0728512 0.152626 -0.0378881 +-0.00186255 0.103074 -0.0227526 +0.0529842 0.0692584 0.0249064 +-0.0792715 0.107765 0.0320009 +0.0324709 0.0353558 0.0097886 +-0.083008 0.154405 0.0171359 +0.0123335 0.0581189 -0.0294366 +-0.0570144 0.0335354 0.00427397 +-0.0520347 0.0349067 0.0446489 +0.0239781 0.084017 -0.0250643 +0.0450177 0.0875447 0.000184881 +-0.00260981 0.0434451 -0.0255195 +-0.00349422 0.0718336 0.0581766 +-0.0470698 0.154668 -0.0068409 +-0.0764224 0.152995 0.0327283 +-0.0382612 0.0345343 0.0375294 +-0.00240135 0.128537 0.0275513 +-0.0924704 0.117461 0.033305 +-0.0714888 0.127424 0.0521873 +-0.0439578 0.12961 0.0140149 +-0.0725837 0.0763091 -0.0123208 +-0.0595593 0.0341176 0.0246105 +-0.00343172 0.0385593 0.0215021 +0.0311358 0.0782102 0.04331 +-0.0494476 0.122586 0.0319364 +-0.0665119 0.0621274 0.0216726 +0.0544596 0.058178 0.0276568 +-0.0495972 0.118308 0.0316941 +-0.0314789 0.174225 -0.0034609 +-0.0728795 0.116451 -0.00740226 +0.00249754 0.108619 0.0424686 +0.0280724 0.0678498 -0.0217391 +-0.0278862 0.165359 -0.00713919 +-0.0117661 0.182389 -0.0287496 +-2.83383e-05 0.0370817 -0.0151505 +-0.0721646 0.155417 -0.0379087 +0.0297368 0.100819 0.0396604 +0.0224793 0.124852 0.00370943 +-0.0278708 0.104417 -0.0229648 +-0.0388092 0.0372561 -0.0289196 +0.0393949 0.0519685 -0.00680892 +-0.0114113 0.0387598 0.0305221 +-0.0668989 0.0372019 0.0312012 +-0.0634206 0.167809 -0.0425955 +-0.0738654 0.102167 -0.0123482 +0.000515293 0.09714 -0.0288497 +0.00321341 0.034575 0.0192003 +-0.0313524 0.158102 0.00192058 +-0.0879015 0.148743 0.00925863 +-0.0552908 0.158294 -0.000771282 +0.00144018 0.127924 -0.00374837 +-0.0374859 0.0491992 0.0393813 +0.0225251 0.100664 -0.0205487 +-0.0149527 0.0339242 -0.0208085 +0.00432828 0.0582523 -0.0314184 +0.0463488 0.0792498 0.00918224 +-0.0375014 0.105589 0.0387333 +-0.062506 0.149124 -0.0145611 +0.00329475 0.129383 -0.00133175 +-0.00689488 0.0384553 0.0136435 +-0.0384034 0.0343958 0.0323426 +-0.062465 0.163086 -0.0495893 +-0.0639661 0.0690471 0.0355624 +-0.0131121 0.0626059 0.0545133 +-0.0449324 0.0358062 0.00829108 +0.0406445 0.0871881 -0.0107716 +-0.0230795 0.0932192 0.0494322 +-0.0186385 0.0465274 -0.0284289 +-0.0571213 0.0576422 0.00058007 +-0.0705055 0.0343308 -0.00278598 +-0.0578994 0.112578 -0.0159728 +-0.0106785 0.0383169 0.0202432 +-0.0593417 0.119814 0.0404797 +-0.0505461 0.0403717 -0.011217 +-0.0453989 0.0342539 -0.0215146 +-0.011074 0.178648 -0.0249266 +-0.0523515 0.0582314 0.0273813 +-0.0254941 0.0486931 0.0489695 +0.0374187 0.0855245 -0.0157145 +0.0453002 0.0932088 0.00816687 +-0.0612769 0.133878 0.0377403 +0.00152786 0.0745369 0.0570999 +0.0245032 0.122816 0.00162459 +-0.00938967 0.130192 0.0162996 +-0.0703883 0.0339052 -0.000577152 +-0.0733601 0.156855 -0.0299134 +-0.0171472 0.166778 -0.0196136 +0.0116998 0.0819851 0.0538895 +-0.0502854 0.11522 -0.0158495 +0.050316 0.0546413 -0.00421167 +-0.0667548 0.115724 0.0491405 +-0.0609102 0.120922 -0.00906619 +-0.0866023 0.111811 0.0414218 +-0.0669546 0.128237 -0.00895731 +-0.0654028 0.177571 -0.0533847 +-0.0437352 0.0753785 -0.0184868 +-0.0329958 0.0793378 -0.0275102 +-0.00469334 0.101051 0.0441761 +-0.0137252 0.0671481 -0.0375067 +-0.0531289 0.138241 -0.000765665 +-0.0361236 0.163705 -0.0141169 +-0.0249029 0.0722756 0.0462509 +-0.0119797 0.0383916 0.0235247 +-0.0246067 0.157782 -0.00250374 +-0.0748771 0.109206 -0.00842538 +-0.0314894 0.0845774 0.0421902 +-0.0849159 0.123546 -0.00333555 +0.052731 0.0672551 0.000627241 +0.0453449 0.0710055 0.0220458 +-0.0665131 0.0419133 -0.00333369 +0.0194908 0.113962 0.0368661 +-0.0674148 0.142782 -0.0112266 +-0.0931203 0.121503 0.0403997 +-0.0084076 0.0932235 -0.0348708 +0.0125532 0.0900642 0.0534187 +0.0432399 0.0747788 -0.00379578 +0.00477967 0.130785 0.0214562 +0.0461172 0.0759623 0.0190037 +-0.0870553 0.118453 0.000244653 +0.00651257 0.056103 0.0529931 +-0.0623783 0.167824 -0.0485899 +-0.0258496 0.0864897 0.0509722 +0.0602482 0.0581464 0.0141691 +-0.0923082 0.120116 0.0282975 +0.00750533 0.0660627 0.0552439 +0.060666 0.0609482 0.0151682 +-0.0674289 0.114212 0.0481237 +-0.0514122 0.146842 -0.00193867 +-0.0768562 0.117877 -0.00659127 +-0.0825551 0.152911 0.00706582 +-0.0839745 0.0804809 0.0225006 +0.041166 0.0819934 0.0314416 +-0.0655442 0.155124 -0.0481259 +-0.0384965 0.0620329 0.0413169 +-0.0627141 0.159943 -0.0425974 +-0.0767176 0.159013 -0.0120318 +-0.0856607 0.0832001 0.00448541 +-0.0278526 0.181478 -0.0120494 +0.0114013 0.0419017 -0.0239008 +0.0243085 0.123343 0.00295625 +-0.0474528 0.119349 0.0293599 +-0.0304487 0.0334492 -0.0290445 +-0.0696417 0.0422524 0.0026904 +-0.0644028 0.146849 -0.019975 +0.0503218 0.0589081 -0.00447436 +0.0476236 0.0467222 0.0264254 +-0.0303554 0.117939 -0.0127791 +0.0338995 0.0591949 0.0383404 +-0.0746238 0.166812 -0.0222329 +-0.0186858 0.118957 -0.0119398 +0.0507854 0.0445928 0.0142166 +-0.0844285 0.0832425 0.0264792 +0.0593532 0.0636103 0.0211835 +-0.073524 0.16243 -0.0369561 +-0.0525841 0.0574366 -0.00812203 +0.0221795 0.040783 0.0405434 +0.0281375 0.0902298 0.0443276 +0.0214874 0.0892516 0.0486681 +-0.0702718 0.110271 0.0410027 +0.0386345 0.0753534 0.0347776 +-0.0646561 0.0344494 0.0319916 +-0.00663677 0.109707 -0.0221975 +-0.029185 0.0634891 -0.02746 +-0.0671416 0.145678 -0.0214457 +-0.0135214 0.0353632 -0.0181023 +-0.0376703 0.125135 -0.00632213 +0.0114179 0.0489704 0.047894 +-0.0923638 0.118682 0.00930083 +0.0483264 0.0430255 0.0152188 +0.00550628 0.0441375 0.0457857 +-0.0652333 0.0338884 0.0112389 +0.0482587 0.0460086 0.000382582 +0.0586626 0.0538435 0.0111779 +-0.000982862 0.0386959 0.0236934 +-0.0245147 0.119422 0.0312229 +-0.0155858 0.183111 -0.0209193 +-0.0867126 0.0819778 0.0134931 +-0.0785905 0.0980977 0.0353146 +-0.0907184 0.115992 0.0263684 +-0.0614986 0.158424 -0.0305881 +-0.090971 0.141997 0.0221703 +0.049023 0.0722611 0.00748575 +-0.0495658 0.0446328 -0.00989725 +0.000576288 0.0353387 0.0179719 +-0.00263978 0.131127 0.015882 +0.0260716 0.115341 -0.00830033 +-0.0571034 0.0535249 0.00264062 +-0.0471993 0.162132 -0.00733312 +-0.0750917 0.0664543 0.00723246 +-0.0617686 0.159987 -0.035592 +-0.0267825 0.079725 -0.0369434 +-0.061465 0.0438948 -0.0044823 +0.0457823 0.0862054 0.00618349 +-0.065804 0.0609905 0.0192925 +0.0197913 0.0781802 0.0515303 +0.0377275 0.0928421 0.0353087 +-0.0179367 0.12631 0.000372783 +0.0437374 0.0902563 -0.00280325 +-0.00792408 0.0384127 0.0189094 +0.0556221 0.0493651 0.00819776 +0.00641397 0.0375702 -0.0238447 +-0.0274537 0.0485303 0.0479606 +-0.0610187 0.152669 0.0336579 +-0.078775 0.170042 -0.0371202 +0.0527843 0.0462443 0.0112063 +0.0173793 0.0631583 0.049653 +-0.0359664 0.162375 -0.00125909 +-0.0559722 0.134715 -0.00446003 +-0.0484961 0.113915 0.0346796 +-0.00776872 0.0756191 -0.0375185 +-0.085947 0.104892 0.00437979 +-0.0866438 0.152376 0.0233632 +-0.0520552 0.0559741 0.0276222 +0.060777 0.0637293 0.0161648 +-0.0634196 0.15027 -0.0277557 +-0.0514307 0.12406 0.0344067 +-0.00747581 0.101243 0.0443796 +-0.0489909 0.133982 0.00241474 +-0.0174145 0.118412 -0.0133815 +0.0106556 0.0345311 0.0225637 +0.0207029 0.0950845 -0.0226908 +-0.000596635 0.0433605 -0.0249736 +-0.0628762 0.0967673 -0.0179048 +0.0102648 0.0752773 0.0552991 +-0.0281556 0.17562 -0.0175208 +-0.00541266 0.130784 0.0163058 +-0.0708319 0.0345819 -0.00103676 +-0.0204551 0.0879984 0.0554627 +-0.0640233 0.0347562 0.0388023 +-0.0255632 0.0589456 -0.0304089 +-0.0856596 0.0858717 -0.000523015 +0.000533962 0.0773889 0.0579724 +-0.0911932 0.147489 0.0241289 +-0.0536699 0.0338623 0.0207675 +-0.0330023 0.0807475 -0.0275162 +-0.0598207 0.148547 -0.00150215 +-0.0292722 0.116973 -0.0137779 +0.0389134 0.0603588 -0.00677348 +0.00149281 0.111426 0.0424095 +-0.0567184 0.0723883 -0.016755 +-0.0557727 0.0333786 -0.00437552 +-0.0514926 0.0503999 0.033682 +-0.00426203 0.129106 -0.000929037 +0.0209419 0.0535563 0.0459234 +-0.0665114 0.0931036 0.0430214 +-0.0313926 0.112895 -0.0174931 +-0.0358232 0.127618 0.00522677 +-0.0126066 0.128516 0.0224096 +0.0435838 0.0705579 0.0258591 +-0.00308793 0.0379842 0.0148477 +-0.0348769 0.105695 -0.0204457 +-0.0787914 0.0724652 0.0224838 +0.022277 0.0678419 -0.0269851 +0.021809 0.1242 0.000142479 +0.00528322 0.0682375 -0.0327226 +-0.0813944 0.0817284 0.031574 +0.0109283 0.0616839 0.0526314 +-0.0233033 0.0429927 0.0537933 +0.0135067 0.1196 0.0353985 +-0.0856435 0.0805169 0.00650219 +-0.0555634 0.0386377 0.0471443 +-0.0925953 0.129683 0.0262582 +-0.0908852 0.150208 0.0181276 +0.0274474 0.0591653 0.0430806 +-0.0143101 0.113201 -0.0178955 +-0.0695125 0.145609 0.0428052 +0.002489 0.103843 -0.0219556 +0.034067 0.0981569 0.0371457 +-0.0663951 0.140334 -0.00790584 +-0.0462961 0.162745 -0.00789878 +0.0286561 0.108194 -0.012625 +-0.0852651 0.14863 0.0333956 +-0.0290693 0.0677067 -0.0294879 +0.0414097 0.104256 0.00616512 +-0.0693963 0.0393871 -0.00132267 +0.0255358 0.0435625 -0.00763706 +0.0562825 0.0508178 0.0201866 +-0.0867977 0.144597 0.036443 +-0.0252829 0.0751884 0.0479421 +-0.0224834 0.0681349 0.0481925 +0.0575606 0.0537805 0.0213286 +0.00845802 0.129083 -0.00108013 +0.0113649 0.0538487 -0.0294289 +-0.0501252 0.138572 0.00341268 +-0.074971 0.152728 -0.0179063 +-0.0312043 0.0422041 -0.0297469 +-0.0846068 0.0791109 0.00453817 +-0.0536323 0.0602894 -0.00841331 +-0.0171387 0.171259 -0.0162017 +0.0409378 0.0397959 0.0185201 +-0.0781974 0.153502 0.00273811 +-0.0824089 0.107319 0.0275588 +-0.0723216 0.169832 -0.0271166 +-0.0716176 0.109058 0.0379622 +0.000146179 0.101649 -0.0227639 +-0.0522094 0.0517797 0.0246371 +0.0118426 0.0562933 0.0521284 +-0.0625131 0.11843 0.0430565 +0.00861514 0.0345206 0.0221572 +0.0244049 0.0741131 0.0475942 +0.00453562 0.128718 -0.00265628 +0.0138565 0.129875 0.0119166 +-0.070378 0.149076 -0.0386493 +0.0445575 0.0847276 0.0241575 +-0.0157056 0.0599572 -0.0358177 +-0.0558806 0.154815 0.016521 +0.000379078 0.127909 -0.00372478 +0.0266539 0.122169 0.0209401 +-0.0679962 0.167786 -0.0255431 +-0.0920426 0.126958 0.0362532 +-0.0594207 0.0398239 0.0196241 +0.0364837 0.0469104 0.0311466 +-0.0568261 0.139571 0.0318926 +-0.053019 0.141421 -0.000504477 +0.0435234 0.0433666 0.0249665 +-0.0277895 0.06758 -0.0314768 +0.0362342 0.0398741 0.0247937 +-0.0212837 0.0381384 0.0164325 +0.0257555 0.0994695 0.0426751 +0.0399676 0.101315 -0.00381805 +-0.0152962 0.0433291 0.0513434 +0.0573469 0.0674291 0.0231143 +-0.0520755 0.0475411 0.0216528 +0.0328365 0.0876935 -0.0188869 +0.0143568 0.0522918 -0.0274834 +-0.0725069 0.145589 0.0436497 +0.00651279 0.0647152 0.0557475 +0.00953758 0.128186 0.0275085 +-0.052193 0.119749 -0.012566 +-0.0686715 0.165205 -0.0529941 +-0.0896326 0.092928 0.0134378 +0.0289756 0.116666 0.0289439 +-0.0642519 0.118577 0.0476092 +-0.0257723 0.182903 -0.0115399 +-0.0844232 0.100698 -0.00156743 +-0.0206629 0.0479548 -0.0285983 +-0.0532393 0.0448331 0.0206817 +0.00230145 0.0612209 -0.0331693 +0.020878 0.117607 -0.0107498 +-0.0818428 0.103274 -0.0045788 +-0.0184976 0.101625 0.0435583 +-0.0305 0.0674574 0.0390127 +-0.0485029 0.0452121 0.0424266 +-0.0929791 0.124188 0.0282747 +-0.0302252 0.0523701 -0.0173649 +0.00350969 0.0897377 0.0556751 +-0.0219245 0.161037 -0.00376903 +-0.0619129 0.0458194 0.037691 +-0.00376935 0.0769928 -0.0369082 +0.0411698 0.0806497 0.0314486 +-0.0115592 0.100495 0.0448823 +-0.063251 0.15135 -0.00497603 +-0.0271171 0.059077 -0.028426 +0.0053978 0.0390279 -0.0240405 +-0.0676491 0.065582 -0.00407795 +-0.063925 0.0448804 0.0097039 +-0.00969446 0.0598719 -0.0345693 +-0.0860777 0.110355 0.00735249 +-0.0152136 0.174214 -0.0186712 +0.00434041 0.0596672 -0.031584 +0.0213842 0.125707 0.00472943 +-0.0835093 0.13127 0.0505027 +0.0165672 0.128654 0.015768 +0.0285444 0.0459645 -0.0070843 +-0.0721129 0.15894 -0.00533295 +-0.0525858 0.147787 0.0204037 +-0.0465092 0.0776139 0.042786 +-0.00623267 0.10133 -0.0233757 +0.0572046 0.0564633 0.00317356 +-0.0122436 0.112093 -0.0187249 +0.00624351 0.0810351 -0.0338384 +0.0462734 0.0764388 0.00619417 +-0.0168246 0.0855538 -0.0389836 +-0.0869607 0.111738 0.00633151 +-0.0370469 0.152854 -0.00726744 +0.0405338 0.105622 0.0141627 +-0.0164738 0.10119 0.0439603 +-0.0854876 0.0791977 0.0105097 +0.0272664 0.0760665 -0.0234764 +-0.0438604 0.102816 -0.0213031 +0.00350403 0.0533854 0.0535456 +0.0169167 0.127898 0.0201801 +0.0184941 0.0838333 0.0510457 +-0.00847869 0.123725 0.0338017 +0.0387498 0.0659721 -0.0107606 +-0.0437917 0.0422818 -0.0193111 +-0.0126098 0.0384695 0.0251301 +0.0135799 0.0887495 0.0531421 +0.00935699 0.131232 0.0131197 +0.0135065 0.109861 0.0400106 +-0.0850182 0.0831804 0.00149618 +-0.0740846 0.0657329 0.0152043 +-0.0265661 0.0706408 0.0422848 +-0.0847398 0.106178 0.00238203 +-0.0345218 0.0818067 0.0425242 +-0.0428232 0.12861 0.00263817 +0.0121427 0.100268 -0.0226753 +0.0447259 0.0749152 0.000215102 +0.0232974 0.0648673 -0.0252072 +-0.0822784 0.0951136 -0.0065238 +-0.0614844 0.158425 -0.031588 +-0.0521163 0.12407 0.0351298 +-0.0424777 0.104302 0.0409096 +-0.00407779 0.0345848 -0.0173958 +-0.0284243 0.0487716 0.0462084 +-0.0184625 0.0729785 0.0545802 +-0.015609 0.128774 0.0111587 +-0.0694586 0.153877 0.0321166 +-0.0484639 0.149215 0.0104667 +-0.0526002 0.146245 0.0194042 +-0.0263327 0.111444 -0.0179843 +-0.0331847 0.0445939 -0.0279862 +-0.0538972 0.104145 -0.0195691 +-0.0294956 0.124519 0.0193203 +0.0346714 0.0916012 0.0397133 +-0.0247788 0.0379568 0.0140716 +-0.0643494 0.153359 -0.00540282 +-0.00557634 0.0347311 -0.0241073 +-0.0258097 0.0766327 0.0484243 +-0.00867178 0.0387364 -0.0146344 +-0.0783855 0.0873596 0.0368663 +-0.0346878 0.0651683 -0.0148251 +0.0404983 0.0499404 0.0324741 +-0.0738591 0.0964804 -0.0142486 +0.0267717 0.107644 -0.0140409 +-0.0404701 0.104257 0.0399236 +-0.0381489 0.0448685 -0.0242105 +-0.0095211 0.045789 0.0480158 +-0.0311715 0.171175 -0.0164295 +-0.0695038 0.173637 -0.0418473 +-0.0823392 0.111551 0.0443764 +-0.0227424 0.0655154 -0.0353045 +-0.0508568 0.0999518 -0.0219402 +-0.0589296 0.1241 0.041105 +0.000488727 0.108629 0.0427903 +-0.0412638 0.110187 -0.018624 +-0.0147098 0.0613984 -0.0362354 +0.0459347 0.0413813 0.0124396 +0.00323976 0.128177 0.0281353 +-0.0743879 0.143042 -0.00684484 +-0.0264004 0.0577755 0.0382862 +-0.00692431 0.038377 0.0191445 +-0.0864209 0.080641 0.0154973 +-0.077237 0.0721326 0.0266059 +-0.0686311 0.136892 0.0464956 +-0.0792347 0.153789 0.0287725 +-0.0537819 0.0840761 -0.0215562 +-0.0117053 0.0909225 -0.0365538 +0.0365178 0.0541167 0.0317039 +-0.0616584 0.114654 -0.0131207 +0.0390548 0.0884875 -0.0128108 +-0.0887111 0.101017 0.0193703 +0.0162822 0.0666125 -0.0295206 +-0.064714 0.0600149 0.00783247 +-0.0175786 0.180143 -0.0185198 +-0.0408442 0.152602 -0.00723164 +0.0352097 0.0379704 0.0208298 +-0.0618294 0.0342021 0.0275686 +0.0185142 0.0412688 -0.0207398 +-0.0195264 0.159643 -0.00556617 +0.0318624 0.0768516 0.0425881 +0.0347681 0.0641816 -0.0148052 +-0.0479777 0.147732 0.00938552 +-0.0126851 0.0570335 -0.0344182 +0.00495057 0.130435 0.00152594 +-0.0486835 0.0664435 -0.0136416 +-0.0356438 0.0562686 -0.010631 +-0.084499 0.088474 -0.00355332 +-0.0503848 0.141583 0.00270968 +-0.0858587 0.125737 0.0487678 +-0.0426772 0.14763 -0.000244299 +-0.0378831 0.156583 0.00477982 +0.00350659 0.0388434 0.0262887 +-0.0887855 0.102363 0.0143842 +-0.0646755 0.142507 0.0398915 +-0.0909161 0.13091 0.00724248 +-0.055962 0.0343325 0.0321978 +-0.0723047 0.162425 -0.0409479 +-0.0696851 0.11012 0.0394623 +-0.083003 0.0803028 0.000504056 +0.0247589 0.0435818 0.039017 +-0.0218764 0.182954 -0.0200262 +0.0236525 0.124901 0.0169603 +0.0463445 0.0561751 -0.00589814 +-0.0218308 0.117001 -0.0138605 +-0.0747558 0.067415 0.00253432 +-0.0625552 0.176839 -0.0611671 +-0.0660641 0.0384249 0.0148213 +-0.000107958 0.12991 0.000141982 +-0.054081 0.071101 0.0394438 +-0.00558231 0.0361988 -0.024956 +-0.0684451 0.117201 0.0519481 +0.0333957 0.0461492 -0.00598528 +-0.0146115 0.03779 -0.0266447 +0.00133195 0.0385877 -0.00128958 +-0.0348901 0.0738831 -0.020486 +0.0373363 0.105992 0.0277645 +0.0084546 0.131034 0.0184964 +-0.0324996 0.0498708 0.0403614 +-0.0444999 0.0719382 0.0422118 +0.0369643 0.0405549 -0.00158789 +-0.0354954 0.0733233 0.0419636 +-0.0457735 0.0826328 -0.0207974 +0.00732527 0.0595899 -0.0304419 +-0.0874242 0.111776 0.00733879 +-0.0592783 0.115234 -0.0137669 +-0.0928043 0.11882 0.0332998 +-0.0116325 0.0385039 0.00355749 +-0.0398903 0.0344806 0.00870734 +-0.0722375 0.138308 0.048356 +0.0262204 0.0344897 0.0111735 +-0.0200589 0.0348282 0.0498878 +-0.0246346 0.0382795 0.00294393 +-0.0889887 0.147168 0.0287003 +-0.0574968 0.1584 0.00209189 +-0.0329778 0.0448862 0.0466174 +-0.0605914 0.0623502 0.0262507 +-0.0785506 0.0699758 0.0176232 +-0.0362833 0.17342 -0.00108904 +-0.0627087 0.161508 -0.0465953 +-0.0397898 0.0855606 -0.0217035 +-0.0064056 0.10047 0.0472751 +-0.0646908 0.166411 -0.0300665 +-0.0508247 0.0941547 -0.0216781 +0.00716942 0.125754 -0.00749941 +0.000702847 0.0392103 -0.00758345 +-0.0407154 0.0462046 -0.018322 +-0.0401921 0.166668 -0.0117758 +0.0124864 0.11785 -0.0149995 +-0.0887986 0.114294 0.0264066 +-0.0614886 0.156862 -0.0235899 +0.0301602 0.0673157 0.0417954 +-0.0697061 0.156309 0.0202886 +0.0512708 0.0700979 0.0242688 +-0.00208274 0.0390983 0.0321346 +-0.091649 0.146116 0.0221478 +-0.0423664 0.0392174 0.0434612 +-0.0288487 0.0944704 -0.0247187 +-0.0724483 0.148649 -0.034807 +0.0270658 0.12207 0.0196667 +-0.0370838 0.159234 -0.0122889 +-0.00750248 0.0619634 0.0561006 +-0.0533112 0.162693 5.53048e-05 +-0.00276518 0.0755391 -0.036261 +-0.0186814 0.0539839 -0.0321072 +-0.0875792 0.134961 0.00324767 +0.0120758 0.0363869 0.044646 +-0.0753955 0.0901087 0.0394375 +0.0338247 0.108829 -0.00728203 +-0.0444976 0.0789577 0.0421738 +0.0235632 0.0862591 0.0483322 +0.0465947 0.0750442 0.0151558 +-0.0733825 0.135448 0.0501828 +-0.0150618 0.0383341 0.0229424 +-0.00891681 0.0351082 0.0414685 +0.0315143 0.0525771 -0.0117816 +0.045527 0.0791773 0.00219591 +-0.0464963 0.076159 0.0423522 +-0.0708979 0.122353 -0.00862039 +-0.08595 0.110378 0.0213654 +-0.0783775 0.103446 0.0335489 +-0.0758029 0.111217 -0.00664466 +-0.0554837 0.0805968 0.0447827 +-0.0353516 0.166776 -0.00214363 +0.0562979 0.0633024 0.00123284 +0.0465716 0.0440008 0.0231655 +-0.0476369 0.0591928 -0.0118235 +-0.0288774 0.169748 -0.00856256 +0.0153133 0.121135 -0.0105519 +-0.0397313 0.072486 -0.017441 +-0.016397 0.0337307 -0.02279 +0.0603039 0.0650788 0.0091381 +-0.0878637 0.152463 0.0169978 +-0.0754938 0.127441 0.0530403 +-0.067202 0.162346 -0.0569974 +-0.0865386 0.147279 0.0332936 +-0.0535025 0.0440354 0.0449405 +-0.0735938 0.149845 -0.0348818 +-0.0728566 0.162156 -0.0114327 +0.0495045 0.0651553 0.0285253 +0.012555 0.130318 0.0128667 +0.0220735 0.113988 0.0356074 +0.0224569 0.125562 0.0179459 +-0.0810243 0.0936828 -0.00856919 +-0.0756675 0.155622 -0.00260296 +-0.0431622 0.0422126 -0.0213185 +-0.000694781 0.0597985 -0.0333207 +0.0271246 0.0849281 0.0463473 +0.0173609 0.0897252 -0.0270298 +-0.0358944 0.0334964 -0.0263993 +-0.0576531 0.0612704 -0.00372094 +-0.00707611 0.0386628 0.0278929 +-0.0560526 0.151627 -0.00172465 +-0.030326 0.045 0.0496314 +-0.00103499 0.117326 -0.0163697 +-0.0252491 0.162472 -0.00507229 +0.00208806 0.113117 -0.0199282 +-0.0939 0.124133 0.015262 +-0.0129795 0.0384272 0.0232864 +0.00120237 0.0867098 -0.0346725 +0.0353317 0.112044 0.0241962 +0.00450167 0.0459455 0.0484199 +-0.0863511 0.0872693 0.000483167 +-0.0164554 0.0963571 0.0512639 +0.0121283 0.11013 -0.0187853 +-0.0778795 0.103388 -0.00866618 +0.0245137 0.102392 -0.0184072 +0.0201875 0.0974057 -0.022456 +-0.0168907 0.0921233 -0.0358082 +-0.0691832 0.153837 -0.0495596 +0.0155185 0.129225 0.0096832 +-0.00814574 0.0386661 0.000442505 +-0.0927289 0.125458 0.0102641 +-0.0846445 0.0832051 0.023501 +-0.0527541 0.0782706 -0.0196088 +-0.0206459 0.171255 -0.0142383 +0.0273486 0.110085 0.0362063 +-0.0144833 0.105825 0.0431811 +-0.0295885 0.120405 -0.00932945 +-0.0914492 0.117418 0.0293041 +-0.0259115 0.159753 -0.0130913 +-0.0498456 0.123179 -0.0101809 +0.0474532 0.047084 -0.00164907 +0.0201466 0.0658754 0.0483972 +-0.0546819 0.0486825 0.0116705 +0.0366139 0.0573407 -0.00875458 +0.016382 0.0888799 -0.0281622 +-0.0128318 0.0653357 0.0541739 +-0.0495043 0.073253 0.0416255 +0.0380257 0.084795 0.0357219 +-0.055962 0.148162 0.0296522 +-0.00335679 0.11693 -0.0159223 +-0.0164885 0.0382449 0.0155037 +-0.0943085 0.12145 0.0162821 +-0.0604949 0.104288 0.0411949 +-0.0485787 0.153602 0.0103738 +0.0214629 0.119376 0.0329783 +-0.00921964 0.0390042 -0.0131222 +0.046038 0.044353 0.0245911 +0.00963825 0.115048 0.0386641 +-0.077742 0.161125 -0.0199262 +-0.0274983 0.0932247 0.0447643 +-0.0237144 0.062529 -0.0332478 +0.0256802 0.0685786 0.0440967 +-0.000627469 0.039269 0.0340794 +0.0387649 0.0834441 0.0350467 +-0.0144799 0.123658 0.0314246 +-0.0415001 0.0733705 0.042415 +0.0543119 0.0722872 0.00750454 +-0.0799536 0.133905 -0.00443135 +-0.0728995 0.10646 -0.0108772 +0.0465866 0.0714909 0.00427537 +-0.0734754 0.158245 -0.0309204 +-0.0217961 0.0784868 -0.0389208 +0.0328256 0.0611992 -0.0167775 +-0.00849082 0.119665 0.0373867 +-0.0345047 0.106995 0.0387065 +-0.0624367 0.153758 -0.0135798 +0.0343704 0.104711 0.0323207 +-0.0583832 0.0335298 0.00219999 +0.0202943 0.113982 0.0365633 +0.0149493 0.0344805 -0.015521 +0.0238985 0.104719 0.0399907 +-0.0270163 0.155641 -0.00359794 +-0.0207265 0.111071 -0.0196229 +0.00439792 0.0404664 -0.024069 +-0.0314988 0.165308 -0.00534483 +-0.0506374 0.0334455 0.00204379 +-0.0518913 0.130385 -0.00375074 +0.00347876 0.039945 0.0459765 +-0.0174912 0.108558 0.0415716 +-0.0618685 0.158412 -0.0345942 +-0.0509699 0.122064 -0.0109984 +-0.0801245 0.0746668 0.000525034 +0.0485976 0.0429932 0.0132228 +0.0202555 0.0707617 -0.0282449 +-0.086473 0.130788 0.000288786 +-0.0859798 0.13928 0.042828 +-0.0419021 0.157999 0.00424081 +0.0301266 0.0646197 0.0417292 +-0.0241332 0.0349697 0.043675 +-0.0554996 0.0466308 0.0421953 +0.0244135 0.114257 -0.0111426 +-0.0687634 0.168362 -0.025835 +-0.0212185 0.178615 -0.022031 +0.0451425 0.0775553 0.0229667 +0.0084768 0.116844 0.0380952 +-0.0619218 0.112503 -0.0143567 +0.0015045 0.0661578 0.0563313 +-0.0473123 0.0369901 -0.0152765 +0.0576745 0.0551294 0.00518333 +-0.0736262 0.148585 -0.0238576 +0.055706 0.0507437 0.0211984 +0.0038008 0.130941 0.0210967 +-0.0360463 0.0347343 0.0430826 +-0.0865396 0.139093 0.00420465 +-0.000664914 0.0539666 -0.0309917 +-0.0785368 0.0694183 0.0145853 +-0.0521695 0.144678 0.0173655 +0.0205519 0.0414936 -0.0177079 +-0.0764027 0.109871 -0.00664525 +-0.0455151 0.0533187 0.0381544 +-0.010362 0.0388675 -0.00761727 +-0.0465826 0.121367 -0.0123258 +0.060067 0.0636708 0.0191758 +-0.0214848 0.0347602 0.0479269 +0.0295458 0.115836 -0.00482165 +0.0188031 0.106638 -0.0169667 +-0.00873489 0.068452 -0.036144 +-0.0504955 0.0733248 0.0417999 +0.00250961 0.101617 0.0444387 +-0.0134598 0.0645734 0.0539775 +-0.0304851 0.038633 -0.015152 +-0.00443456 0.111901 -0.0205597 +-0.038606 0.0392918 -0.0284798 +-0.022624 0.0450535 -0.0281102 +0.0262273 0.117277 0.0307934 +0.0282585 0.063629 -0.0207965 +-0.0649158 0.115218 -0.010913 +-0.0197994 0.0799106 -0.0390737 +-0.042508 0.0930307 0.0424902 +-0.0683794 0.0434664 0.00169373 +-0.0648724 0.131147 0.0430922 +-0.00487539 0.105927 -0.0225105 +-0.0678583 0.112732 0.0457592 +0.00821621 0.124741 -0.00840458 +-0.0564446 0.0520481 -0.00138381 +-0.020896 0.107686 -0.0220438 +-0.0919111 0.120015 0.00829626 +-0.0188214 0.0841215 -0.0388306 +-0.00848834 0.10866 0.0434392 +-0.0674721 0.0639504 -0.00252382 +-0.0321962 0.0487152 0.0429222 +0.0422051 0.0972089 -0.00180239 +-0.0312857 0.125233 0.0186818 +0.0348151 0.0605689 0.0379285 +-0.07566 0.1555 -0.0199215 +-0.0582195 0.03947 0.0465299 +-0.0144966 0.0687907 0.0546395 +-0.0630713 0.173863 -0.0616798 +0.0398379 0.0874103 0.0331324 +0.0167269 0.0821369 0.052401 +0.0403742 0.101353 -0.00282827 +-0.0622911 0.150653 -0.0125749 +-0.0707931 0.0879477 -0.0165704 +0.048521 0.043083 0.00923259 +0.0132697 0.0603324 0.0507028 +-0.0230427 0.038006 0.0179945 +0.0585617 0.0538351 0.0161785 +-0.0548868 0.108372 -0.0183778 +-0.0712698 0.156094 0.0241098 +-0.0053845 0.126096 -0.00772897 +-0.076026 0.151346 0.0359505 +0.00881068 0.127643 0.0286728 +-0.0229191 0.119996 -0.0109969 +-0.0702091 0.156071 0.0113882 +-0.0285896 0.0704574 -0.0325207 +-0.0373694 0.173381 -0.00150317 +0.043508 0.0438731 -6.08517e-05 +-0.0434927 0.0747943 0.0426652 +-0.0817644 0.0758778 0.0206878 +-0.00439411 0.0968663 -0.0305974 +0.00748123 0.0937253 0.0527164 +0.0101565 0.0860282 0.0551829 +-0.0132478 0.039072 0.0352601 +-0.0786774 0.168631 -0.0343418 +-0.0500333 0.148713 -0.00320857 +0.00694939 0.128215 0.0280149 +0.0132662 0.0737717 -0.03084 +-0.089989 0.142041 0.0291697 +-0.0298412 0.0944347 -0.0243277 +-0.0866185 0.103641 0.022352 +0.0179014 0.114016 -0.0148856 +0.0537258 0.0735615 0.0163564 +-0.0413654 0.128702 0.0120304 +-0.0855876 0.0939777 -0.00157288 +-0.0828574 0.0764021 0.018249 +-0.0454932 0.0491469 0.0390026 +-0.0317045 0.0693753 -0.0244624 +-0.0587034 0.0579543 0.010904 +-0.0269178 0.034755 0.0450156 +-0.0520173 0.146257 0.0174096 +-0.0759561 0.112612 -0.00567952 +-0.0164906 0.0786958 0.056769 +-0.0778425 0.108614 0.0370385 +0.0422463 0.0403355 0.0183005 +-0.0845698 0.0831877 0.0245094 +0.00429984 0.0654625 -0.0332399 +-0.0572715 0.0482006 0.0365817 +0.0290027 0.0741128 0.0436952 +-0.0600502 0.143934 0.0360579 +0.0366467 0.0673305 0.0371158 +-0.0199983 0.126616 0.0197793 +-0.0728415 0.165906 -0.0186805 +-0.0634251 0.128316 0.0434644 +-0.0437757 0.12944 0.0066621 +0.000274533 0.0683164 -0.033854 +0.00152244 0.03707 0.0220484 +-0.0349517 0.151884 -0.00344832 +-0.0271199 0.0347243 -0.0201972 +0.0433938 0.0426486 0.00136855 +0.000501319 0.0576739 0.0545888 +-0.0636327 0.155181 -0.0386163 +-0.0884108 0.0928321 0.00744302 +-0.0495652 0.0614019 0.0343808 +-0.0434939 0.0930777 0.0427388 +-0.0662865 0.178231 -0.0601734 +-0.054498 0.111159 0.0367038 +-0.0460532 0.057401 0.0380948 +-0.0820259 0.0858257 0.0320864 +-0.0277337 0.0521019 -0.0243965 +-0.00442413 0.130145 0.0224484 +-0.00149759 0.0549023 0.0548542 +-0.035558 0.0430076 -0.0284728 +0.0593498 0.066038 0.0207029 +0.0515344 0.0624078 0.0294591 +-0.0197872 0.118912 -0.0118682 +-0.0168075 0.0827608 -0.0394117 +-0.0487872 0.0545643 0.0352206 +-0.0311424 0.174761 -0.015609 +-0.0326324 0.0534241 -0.0105104 +0.00577065 0.131636 0.0103849 +-0.0185368 0.123815 0.0276913 +-0.0454963 0.0818291 0.0431013 +-0.0634376 0.179008 -0.0598746 +-0.00652958 0.0443624 0.0478753 +-0.0308041 0.0566412 -0.01742 +0.0448472 0.0735234 0.00122364 +-0.00349567 0.0504603 0.052334 +-0.0298753 0.0537337 -0.0203803 +-0.00256734 0.0388997 -0.00235847 +-0.0502892 0.0334774 -0.00701976 +-0.00481396 0.0840888 -0.0377627 +0.0387801 0.058953 0.031306 +-0.0243507 0.0852386 0.0537426 +-0.077502 0.0785105 0.0333799 +-0.0695501 0.0378481 -0.00149869 +-0.0313945 0.0862693 -0.0285563 +-0.0759552 0.133992 -0.00682355 +-0.0783042 0.161088 -0.0239376 +0.0512217 0.0595245 0.030012 +0.0455105 0.0777762 0.00219892 +-0.0860997 0.0805682 0.0085045 +-0.0347118 0.121713 -0.00868145 +-0.0621446 0.0384632 0.0179813 +-0.0124987 0.115524 0.0391996 +-0.0407326 0.0341812 -0.0112599 +-0.0762949 0.0689313 0.00454567 +-0.0900211 0.137875 0.0231818 +0.0335661 0.0612752 -0.015761 +-0.0620569 0.121268 0.0436785 +0.0389827 0.104151 0.026189 +-0.0724692 0.135469 0.0497506 +0.0222613 0.0692548 -0.0269722 +-0.0614967 0.0876222 0.0452319 +-0.0694862 0.120387 0.0531587 +0.0384699 0.0786144 -0.011749 +-0.0225096 0.10992 0.040117 +0.0140839 0.123776 -0.0073928 +0.0455444 0.0774866 0.0217209 +0.0421217 0.0751567 0.0292241 +-0.0637125 0.165316 -0.0311513 +0.00714876 0.108764 -0.0200496 +-0.0613421 0.118288 0.041013 +0.0150763 0.0900809 0.0517899 +0.0392297 0.0926988 -0.0100859 +-0.0707648 0.0836514 -0.0167885 +0.0199669 0.107838 -0.0162613 +-0.0573264 0.0521522 0.00163442 +0.03817 0.0983612 -0.0088053 +-2.43522e-05 0.0348774 0.0110061 +-0.0647928 0.0346609 0.0159953 +-0.0765127 0.164562 -0.0208538 +-0.0398786 0.107079 -0.0200332 +-0.0315509 0.053914 -0.013393 +-0.0689152 0.109432 -0.0116742 +-0.0426992 0.0344898 0.0348747 +-0.0113643 0.182132 -0.0288209 +-0.0251052 0.162299 -0.0151004 +-0.0745879 0.156108 0.0200327 +-0.0686632 0.162379 -0.0529737 +-0.0867316 0.100467 0.0250232 +0.0335218 0.0499029 0.0322045 +0.0110844 0.0345718 0.0406762 +0.047975 0.0710438 0.0215578 +-0.0471313 0.132491 0.00541336 +0.0385464 0.0954957 -0.00890109 +-0.055495 0.154378 0.0181054 +-0.0486202 0.0403225 0.04496 +-0.0918049 0.121541 0.0434848 +-0.0427276 0.129253 0.0100405 +-0.0641572 0.150753 -0.03179 +0.0203307 0.08353 0.050588 +-0.0025157 0.127417 -0.00520554 +-0.0664375 0.153657 -0.0486366 +0.00823253 0.112336 0.0401545 +-0.0239671 0.075324 0.0508435 +-0.0519769 0.0340995 -0.0134375 +-0.0444607 0.0902688 0.0428496 +-0.043053 0.153237 -0.00732462 +-0.0520076 0.145723 -0.00116844 +-0.0587286 0.0620484 0.0269094 +-0.0876727 0.111787 0.0358475 +-0.0843489 0.0925325 -0.00454911 +-0.00849886 0.0856701 0.0574538 +-0.0681283 0.146379 -0.0251159 +-0.0800217 0.102057 0.0324029 +-0.0662458 0.167287 -0.027765 +0.0214869 0.0865002 0.0492244 +-0.0485551 0.129676 -0.000935313 +-0.021529 0.17126 -0.0137526 +0.0263623 0.0808978 0.0469671 +-0.00180556 0.0384438 0.0201303 +0.0199827 0.116932 -0.0120267 +0.000700235 0.0374335 0.0215506 +-0.0849215 0.130733 -0.00170191 +-0.0566837 0.0492811 -0.00237706 +0.013902 0.054865 0.0498147 +-0.0487235 0.0738176 -0.0166605 +-0.0588289 0.089737 -0.0207103 +-0.00415565 0.0996194 0.0496007 +0.00922789 0.0860105 0.0556146 +-0.052373 0.126911 0.0347775 +-0.0647638 0.0397203 0.0149016 +-0.0375028 0.102851 0.0403695 +0.012678 0.130036 0.0186174 +0.01582 0.0346802 0.0234839 +-0.0834012 0.146003 0.0386574 +-0.0855432 0.111388 0.0330811 +-0.0905559 0.1297 0.0402277 +0.0225 0.108418 0.039052 +-0.034538 0.033729 0.00866796 +0.0580527 0.0523859 0.0111812 +0.0489522 0.045877 0.023734 +-0.0741385 0.0703655 0.0287707 +-0.0261092 0.0409213 0.0540071 +-0.0124916 0.0801274 0.0575032 +-0.0480938 0.0362157 0.0456887 +0.0295798 0.047722 0.0354768 +-0.051366 0.129708 0.032749 +-0.0258406 0.0339312 -0.0210821 +-0.0627466 0.0751872 -0.0173542 +-0.0208698 0.104444 -0.0228641 +0.0391583 0.108387 0.0121653 +-0.0217873 0.0728206 -0.0385569 +-0.00162182 0.0363065 0.0130228 +-0.0125908 0.182249 -0.0250896 +-0.0463216 0.125305 0.0258345 +0.00739775 0.110951 0.0406753 +-0.0698286 0.0965949 -0.0159812 +0.0495953 0.0662964 -0.000416722 +0.0214 0.116687 0.0346491 +0.0355013 0.0605581 0.0371681 +0.0347485 0.0981702 0.0363481 +-0.0784998 0.130283 0.0530344 +-0.0139533 0.0338864 -0.0205741 +-0.0185901 0.128007 0.0115203 +-0.0538047 0.0884108 -0.022116 +0.0213383 0.0635548 -0.0266585 +-0.0194915 0.120861 0.0324568 +-0.0347476 0.127441 0.00854521 +-0.0126238 0.0952928 -0.0330113 +-0.00102634 0.107271 -0.0216101 +0.0225395 0.0352111 0.00978173 +0.0193228 0.0679612 -0.0287395 +0.00111873 0.0344764 0.0134191 +0.0375161 0.110639 0.00638069 +0.0222494 0.0762728 -0.0263867 +-0.0729386 0.0646873 0.0146181 +-0.0397368 0.0739371 -0.0178005 +-0.0543178 0.0387289 0.0471882 +0.016338 0.0566541 -0.0286494 +0.0299119 0.0491593 0.0359714 +0.0525507 0.0462401 0.0172033 +0.0138891 0.0942573 -0.0257865 +-0.00745761 0.0338748 -0.0230567 +-0.073507 0.121801 0.0535653 +-0.0771635 0.0705018 0.0227664 +0.014215 0.083589 -0.0300782 +0.0187635 0.105558 -0.0177865 +-0.0943455 0.121485 0.0232874 +-0.0190471 0.0582949 0.0492947 +-0.0482842 0.164088 -0.00583628 +0.00750123 0.074495 0.0564449 +0.0114903 0.0896115 0.0540357 +0.0111129 0.0739356 0.0547693 +-0.0243199 0.0387345 -0.0140132 +0.0343886 0.107359 0.0305696 +0.0280618 0.0416802 0.0314173 +0.01142 0.0374719 -0.022733 +0.0330999 0.114889 0.024788 +-0.0199406 0.122541 -0.00772092 +-0.0662581 0.15274 0.0347724 +0.00215199 0.101646 -0.0224127 +0.0164932 0.112605 0.0382483 +-0.06512 0.166493 -0.0287867 +-0.0848366 0.0898781 -0.00356125 +-0.0321536 0.0380399 -0.0168 +-0.000666067 0.037425 0.0194672 +-0.0009793 0.0356154 0.0137824 +-0.0338572 0.100054 -0.0225702 +-0.0466969 0.0694537 -0.0155404 +-0.0236112 0.0386852 0.0334692 +0.0506847 0.044695 0.00922239 +0.0143403 0.11733 -0.0144441 +0.0447757 0.0875223 -0.000814326 +0.0359341 0.0727624 -0.0138488 +-0.0526285 0.0588799 -0.00854194 +-0.090746 0.114598 0.00833305 +0.0454568 0.0819591 0.00221362 +-0.0191965 0.175667 -0.0232885 +-0.062765 0.0780997 -0.0182585 +0.0414338 0.0676164 -0.00577635 +-0.053491 0.113891 0.0350292 +0.0043588 0.0510132 -0.0293749 +-0.00874604 0.0713519 -0.0371122 +0.0193852 0.0915557 -0.024942 +-0.0944514 0.122808 0.0172688 +-0.00774122 0.115628 -0.0165086 +-0.0406319 0.0534345 -0.0110028 +0.0230588 0.0463265 0.0401038 +-0.0769246 0.0689689 0.00654258 +0.0278197 0.108769 0.0368873 +-0.078478 0.142827 0.0455967 +0.0339472 0.0368914 0.0179028 +0.0140143 0.0357038 0.00388789 +-0.0699623 0.155307 -0.0499609 +-0.0144161 0.0343188 -0.0191903 +-0.044261 0.122001 0.0258917 +-0.064466 0.170264 -0.0443864 +-0.0614851 0.112533 0.0365644 +-0.0649074 0.120907 -0.00883756 +0.0114806 0.097647 0.0487825 +0.00178793 0.0344587 0.00626566 +0.0404914 0.098527 -0.00482713 +-0.0714142 0.166619 -0.0469903 +0.0553639 0.0729653 0.0110394 +-0.00645384 0.126073 -0.0076982 +-0.042494 0.0676556 0.0412962 +-0.0328931 0.0486572 0.0421875 +-0.0218312 0.0882119 -0.0370399 +0.0433826 0.0987102 0.00417641 +-0.034498 0.0533048 0.037996 +-0.0749535 0.0823401 -0.0135889 +-0.0755022 0.131669 0.0524935 +-0.0118269 0.118985 -0.0140536 +-0.0698809 0.100876 -0.0145572 +-0.0920212 0.128183 0.00926455 +-0.0277533 0.155598 -0.00253083 +-0.0155991 0.0421323 -0.0272897 +0.0125549 0.119968 -0.0132874 +-0.0862929 0.15121 0.027304 +-0.0726068 0.147127 -0.0218633 +-0.0713282 0.0982044 0.0407618 +-0.023785 0.0621839 0.0426152 +-0.0294793 0.0446083 0.0503994 +0.050676 0.0693821 0.00244948 +-0.0520559 0.142894 8.38275e-05 +-0.085494 0.083212 0.00349969 +0.0219046 0.0892697 -0.0245066 +-0.0923861 0.125586 0.0352607 +-0.0578149 0.12313 -0.00798101 +-0.0630458 0.0345815 0.0177326 +-0.0890554 0.0888307 0.00946144 +-0.066735 0.167252 -0.0265095 +0.0143257 0.0594816 -0.0287805 +0.00349695 0.0519735 0.0532512 +-0.0658642 0.141582 -0.00840157 +0.014169 0.0603418 0.050255 +-0.0638047 0.152122 -0.00224548 +0.0332402 0.0814034 -0.0189012 +-0.0246071 0.0408479 -0.0291354 +-0.0320867 0.0651952 -0.0194497 +-0.0719291 0.0394019 0.00652921 +-0.0297834 0.0409697 0.0520218 +-0.035582 0.0336826 0.00849877 +-0.088744 0.0996845 0.0203875 +0.0516874 0.0662489 -0.000355134 +-0.0802571 0.096729 0.0342047 +-0.0669809 0.135535 -0.00827796 +-0.069479 0.0337046 -0.000209101 +-0.0675145 0.148386 0.0398761 +-0.0805311 0.123088 0.0509172 +-0.0084955 0.0503277 0.0510127 +0.00205693 0.129985 1.8398e-05 +-0.0172313 0.12808 0.0178394 +0.00170313 0.0343139 0.0118694 +-0.0773727 0.156953 -0.0129034 +-0.0717154 0.0632455 0.0160979 +0.00858548 0.0340902 -0.01633 +0.0124197 0.0403679 -0.0230567 +-0.0511271 0.116882 0.0329705 +-0.0728598 0.0355014 0.00645302 +-0.0791962 0.16801 -0.0379842 +-0.00268972 0.128069 -0.00389854 +0.0597918 0.0567046 0.013171 +0.0154995 0.111258 0.0392925 +-0.019299 0.0668878 0.052102 +-0.0233826 0.0866124 0.0541509 +0.0432138 0.091668 0.0251628 +-0.0396808 0.0636721 -0.0135815 +0.00652038 0.0518639 0.0525018 +0.0124104 0.0389053 -0.0225983 +-0.0119403 0.171322 -0.0192115 +-0.069435 0.0972593 0.0417284 +-0.0942583 0.125557 0.0232684 +0.030238 0.0814876 -0.0201701 +0.0449279 0.0945923 0.00916323 +-0.0553588 0.131132 0.0357618 +0.00929414 0.0653548 -0.0316941 +-0.0357484 0.0768864 -0.0192776 +-0.062693 0.156802 -0.0376031 +-0.0460193 0.128067 0.0236255 +0.0133301 0.0609017 -0.0290805 +0.00152141 0.0773467 0.0574533 +-0.0636035 0.156128 0.0166435 +-0.0361137 0.162217 -0.0137308 +-0.0595062 0.0386574 -0.00901889 +-0.0620309 0.153757 -0.0155846 +-0.0533723 0.122605 0.0368904 +-0.0264702 0.0676761 0.0408217 +-0.0147452 0.123455 -0.00671201 +-0.0703548 0.0643588 0.00158224 +-0.0814272 0.0752484 0.0195365 +0.0402499 0.0787503 -0.00875238 +-0.00644119 0.0828529 0.0570838 +0.0242228 0.0902502 0.0474811 +0.0336268 0.0557054 -0.0117007 +-0.0623153 0.13671 0.0362243 +0.0149059 0.124307 -0.00595517 +-0.0401601 0.165169 -0.0119868 +-0.077431 0.108115 0.0357399 +0.0402513 0.0940026 0.0302416 +0.0370616 0.0382621 0.0191175 +0.0225195 0.106011 0.0397482 +-0.0255993 0.037974 -0.029094 +-0.0759547 0.129619 -0.00760722 +-0.0360191 0.153642 0.00214438 +0.0596848 0.0566967 0.0151763 +-0.0264473 0.181471 -0.0150302 +-0.0346676 0.0359024 -0.017193 +0.0391135 0.0904981 -0.0117677 +0.00550174 0.0745058 0.0566062 +-0.0615874 0.117934 -0.0105067 +-0.0897323 0.115129 0.0291209 +0.0371127 0.037099 0.0128773 +0.000643571 0.127035 0.0301068 +0.04471 0.0789677 0.024116 +-0.0294983 0.0588236 0.0368769 +0.0243457 0.102123 0.0424029 +-0.0890326 0.125361 0.00330134 +-0.0671124 0.0618759 0.00376788 +0.0207378 0.105279 -0.0174962 +-0.0640597 0.156709 -0.043612 +-0.053836 0.112592 -0.0169505 +-0.0738585 0.0762694 0.0355202 +-0.00709045 0.130506 0.0171336 +-0.0735939 0.077695 0.036626 +-0.0453238 0.169855 -0.00399069 +-0.0609112 0.060145 0.00105228 +-0.0602298 0.119796 0.0409592 +-0.037803 0.0885803 -0.0235006 +0.0220645 0.0375334 0.0362702 +-5.6077e-05 0.112952 -0.0196345 +-0.0156034 0.097548 -0.0273897 +0.0330435 0.104766 0.033885 +0.0234619 0.0343557 0.00702041 +0.0309186 0.094253 -0.0177648 +-0.0406484 0.0563266 -0.0113192 +0.0305338 0.0929359 0.042541 +-0.0713282 0.155382 -0.0439108 +-0.0246656 0.0492403 -0.0269082 +-0.0344954 0.118007 0.0312549 +0.03264 0.0822319 0.0419892 +0.0393737 0.0381589 0.0105128 +0.00986741 0.131059 0.0147331 +-0.0521114 0.156091 -0.00406652 +0.0125143 0.121868 -0.0113432 +-0.019839 0.0610753 0.0486026 +-0.0714347 0.109953 0.0409933 +-0.0435006 0.115257 0.0335166 +-0.0700918 0.147968 0.0410511 +-0.0628279 0.151059 0.0360546 +-0.0269995 0.0383068 0.000625566 +-0.0459023 0.0546326 0.0380387 +-0.0705411 0.0860609 0.0417748 +-0.0360717 0.157766 -0.0114869 +0.018169 0.108481 -0.0169141 +-0.0656915 0.0720893 -0.0135891 +-0.0604976 0.0847283 0.0441029 +0.00648432 0.0413231 0.0455852 +-0.0757282 0.0754387 0.0328339 +0.00417753 0.0922823 -0.0325433 +-0.0272993 0.0381948 -0.0178418 +-0.0315044 0.0860003 0.0426216 +-0.00681874 0.0868473 -0.0370495 +0.0396972 0.0744788 -0.00980523 +0.0376515 0.0947835 -0.010301 +-0.078491 0.121738 0.0515581 +-0.0274838 0.105666 0.0409158 +-0.0202559 0.0365056 -0.0280118 +0.0201693 0.125674 0.00144037 +-0.0587501 0.0482189 0.00571238 +-0.013346 0.168342 -0.0159797 +-0.0683811 0.149044 -0.0363633 +-0.0558475 0.0343686 0.0374162 +-0.0590903 0.0626036 0.0281123 +-0.0331372 0.0336314 -0.0222436 +-0.0678611 0.0980605 -0.0159397 +-0.0472308 0.0334623 0.00452598 +-0.0167567 0.0714512 -0.0386579 +-0.0184671 0.10319 -0.0232847 +-0.0675365 0.0805511 0.0417814 +-0.0666009 0.15275 -0.0468174 +-0.00387787 0.10737 -0.022403 +-0.0300213 0.0579734 -0.0204069 +-0.00579466 0.103184 -0.0232761 +-0.0775304 0.143071 -0.00473432 +-0.00757151 0.0346922 -0.0244599 +-0.0355091 0.0676694 0.0413832 +-0.0185092 0.127137 0.00354165 +0.0289004 0.0650837 -0.0199869 +-0.0224914 0.04868 0.0491885 +-0.0194885 0.0856172 0.056795 +-0.0625301 0.147537 -0.0105732 +0.00324634 0.0726279 -0.0347233 +-0.0117444 0.129778 0.0154481 +0.0381223 0.106958 0.0251953 +0.0134297 0.0343278 -0.0118215 +0.00450615 0.0772491 0.0561317 +0.00914326 0.112364 0.0397506 +0.0165994 0.0933382 -0.024824 +-0.0530349 0.0448324 0.0176964 +-0.0861503 0.0818963 0.00748815 +-0.07574 0.144451 -0.00587632 +-0.0796195 0.104749 0.0319273 +0.0404835 0.052774 0.0322642 +0.0420568 0.0986443 0.0231563 +-0.0887511 0.102351 0.0133854 +0.0132668 0.0723896 -0.0312102 +-0.0507233 0.0723393 -0.0157137 +-0.00754786 0.039018 -0.00905888 +-0.0488259 0.138613 0.00940263 +0.0057745 0.128094 -0.00399317 +-0.0523396 0.147791 0.0193952 +-0.048265 0.136372 0.0159973 +-0.0604426 0.0470258 0.0346715 +0.0367367 0.0902141 0.03744 +-0.0895793 0.136441 0.0122186 +0.0376089 0.108292 0.000165208 +0.0353713 0.0915869 0.0389643 +-0.0211976 0.0347654 0.0444796 +0.00223085 0.129379 -0.00131325 +-0.0737831 0.0864021 -0.0154104 +-0.0127393 0.0700008 -0.0380391 +-0.0657273 0.0751276 -0.0164058 +0.00937487 0.0377648 0.0302588 +-0.035816 0.0448118 0.0437923 +-0.0549046 0.102722 -0.0198351 +0.0460481 0.046714 0.0276632 +0.00759173 0.131318 0.00819364 +-0.0721931 0.161015 -0.0399435 +0.0102622 0.0710503 -0.0323195 +0.0194745 0.0851519 0.050256 +-0.0399319 0.0345158 0.0389424 +-0.0616692 0.167812 -0.0545903 +-0.0056922 0.0584499 -0.034018 +-0.0203692 0.094546 -0.032294 +-0.070351 0.158156 -0.0469171 +-0.023866 0.103031 -0.0237009 +0.0528846 0.0533107 -0.0017243 +-0.0319516 0.077812 -0.0315646 +0.00951738 0.0660057 0.0546772 +0.0137336 0.122464 0.0333928 +-0.0199595 0.125484 -0.000738697 +0.00049871 0.116947 0.0399069 +-0.0359892 0.0344491 0.0345711 +-0.0443682 0.129764 0.015339 +0.0452819 0.0932028 0.00617084 +-0.00813465 0.0391286 -0.0130168 +0.0394097 0.0618135 -0.00677045 +-0.0701845 0.158483 -0.00465374 +0.0322675 0.102123 0.0362847 +-0.0374987 0.0819015 0.0436538 +0.0396969 0.0616754 0.0309066 +-0.0455673 0.0475992 -0.010259 +-0.0527627 0.115451 0.034109 +0.0208176 0.0631975 0.0476002 +-0.0618301 0.0924936 -0.0189652 +-0.053883 0.150856 0.0253998 +0.0245243 0.105615 0.0392344 +0.00385761 0.129628 0.0254511 +-0.00549072 0.0488848 0.0502608 +-0.0300389 0.036799 0.0524219 +-0.0580426 0.153536 0.0303048 +0.0220166 0.125337 0.0220596 +0.0312265 0.0393227 0.0260732 +-0.0171047 0.17569 -0.0178772 +0.016571 0.0940211 0.0486896 +-0.0505514 0.0338848 0.0267025 +-0.0625417 0.0410514 0.0154849 +0.0355348 0.112677 0.0214127 +0.00150774 0.0897546 0.056027 +-0.0190957 0.0968508 -0.0266962 +0.0511508 0.0608575 0.0299274 +0.0163905 0.0491901 -0.024833 +0.0345652 0.114846 0.0110543 +0.0581139 0.0523629 0.0131822 +-0.0417396 0.0754091 -0.018561 +-0.0814751 0.118981 0.0489466 +0.00013405 0.105909 -0.0216496 +-0.0908345 0.139239 0.02018 +-0.0424766 0.101515 0.0416909 +-0.0260624 0.0837492 0.0512652 +-0.0500875 0.0531258 0.0337221 +-0.0706477 0.0874116 0.0418374 +-0.0366978 0.0363155 -0.0300943 +0.00451245 0.064772 0.0563635 +-0.0753069 0.109577 0.0422017 +-0.0284025 0.119846 0.0286714 +0.033406 0.0822268 0.04133 +0.0595932 0.0608555 0.0201843 +-0.00204808 0.0983649 0.051847 +-0.0574847 0.0623327 0.0283417 +-0.0229389 0.126187 0.00412352 +0.0390327 0.0744186 -0.0107818 +-0.0855097 0.129367 -0.00169404 +-0.0647036 0.0653044 0.0298737 +-0.0064934 0.10867 0.043581 +-0.0685164 0.0669975 0.0293604 +-0.0705096 0.1624 -0.046948 +0.0125251 0.129483 0.0214195 +-0.0221845 0.172691 -0.0208918 +0.0153262 0.0767707 0.0538598 +-0.0905235 0.137837 0.0161933 +-0.0545439 0.0402656 -0.0102441 +-0.0688509 0.171089 -0.0344529 +-0.0884641 0.0887716 0.00547605 +-0.0903526 0.116014 0.0283099 +-0.0623807 0.147545 -0.00857398 +-0.061927 0.109672 -0.0156348 +-0.0579856 0.116646 -0.0132522 +0.0395731 0.0448559 0.0300931 +0.00658391 0.130753 0.00354793 +-0.0647804 0.153444 -0.00410741 +0.00522677 0.078235 -0.0342467 +-0.0495662 0.0335706 -0.0032948 +0.00181081 0.131692 0.0146438 +-0.0635975 0.15411 -0.00948093 +-0.0855227 0.133522 0.000289437 +-0.025262 0.107417 -0.0217613 +-0.0340021 0.0409714 0.0491624 +-0.0146057 0.0406867 -0.0271172 +-0.0174894 0.0687336 0.053904 +-0.01522 0.183001 -0.0269465 +-0.0500642 0.142991 0.00242772 +-0.0679313 0.0622594 0.0032802 +-0.0551811 0.133216 -0.00483226 +-0.0284216 0.0792864 0.045297 +0.00824429 0.0809884 -0.0331618 +0.00929618 0.123787 -0.00937811 +0.0228212 0.0889774 -0.0242065 +-0.0185099 0.0883573 0.0560195 +0.0282298 0.0717826 -0.0228933 +-0.0251238 0.125152 0.00185767 +0.019545 0.103378 0.0442321 +-0.0673703 0.122848 0.0518073 +0.0357587 0.067099 -0.014806 +0.00197653 0.0987575 -0.0246237 +-0.0655762 0.155146 -0.00586759 +0.012488 0.119576 0.0355898 +-0.0514967 0.101534 0.0419051 +-0.0095351 0.0444416 0.0488648 +-0.00470695 0.0982478 -0.0280611 +-0.05601 0.0575293 -0.00241387 +-0.0602761 0.139548 0.0339321 +-0.0517453 0.0753545 -0.0181561 +-0.038969 0.042042 0.0415955 +-0.0636896 0.064322 -0.00564195 +-0.0398457 0.0985451 -0.0219087 +-0.0191826 0.127252 0.0185952 +-0.0873123 0.0886781 0.00248146 +-0.0488082 0.0884112 -0.0217819 +-0.0498768 0.104205 -0.0203216 +-0.0409029 0.149467 0.00342301 +-0.069185 0.156032 0.0248455 +-0.0506717 0.0501974 0.0196351 +-0.0301161 0.0396403 0.0523893 +-0.000520242 0.104454 0.0440018 +-0.0290025 0.0578755 -0.022406 +-0.0610145 0.0336026 0.00878975 +-0.0917872 0.143341 0.0171661 +-0.0279974 0.0383174 -0.0050935 +-0.0913132 0.113305 0.0163255 +0.0313508 0.109263 -0.00976359 +-0.00332487 0.0387243 0.0268007 +0.0222104 0.125239 0.00503339 +-0.04503 0.129294 0.00327025 +-0.0176724 0.0933571 0.0538975 +-0.0234883 0.0487024 0.0493089 +0.0421092 0.0724515 0.0291612 +-0.0653912 0.159256 -0.0130566 +-0.00402317 0.0387663 0.0011878 +-0.0338313 0.0929547 -0.0239607 +0.00379004 0.0367184 0.046186 +-0.0186801 0.0525094 -0.0314832 +-0.0351354 0.165203 -0.0147634 +-0.0705038 0.108294 0.0372772 +0.0246817 0.0360382 0.0240669 +-0.0204805 0.0828473 0.0567838 +0.0326609 0.0673309 0.0401471 +-0.0296335 0.0635627 -0.0254272 +-0.0548571 0.0546624 -0.0043828 +0.00968485 0.0342244 -0.0162577 +-0.0810826 0.144759 0.0420272 +0.00767659 0.0346834 0.0054103 +-0.0830301 0.110196 0.00131843 +-0.00544058 0.119032 -0.0141551 +-0.0255852 0.0930492 -0.0306058 +-0.0714911 0.116102 0.0521112 +0.0318609 0.0710037 -0.0187224 +0.0280264 0.121739 0.0100361 +-0.0514799 0.0384723 -0.0115832 +-0.0764395 0.0988661 -0.011539 +-0.0186212 0.04503 -0.027692 +0.0334766 0.0519565 -0.00767966 +-0.0541438 0.151337 0.0259237 +-0.00148294 0.0606073 0.0558577 +0.0148272 0.0344434 -0.00977208 +-0.0391932 0.171233 -0.0109027 +-0.035755 0.0783248 -0.0195335 +0.0355134 0.0795005 0.0390801 +0.0603494 0.0609121 0.0171857 +0.0394635 0.075864 -0.00982057 +-0.0470363 0.0359078 0.0451061 +-0.0608634 0.154346 0.0292597 +-0.0748097 0.109257 0.0407877 +-0.0262745 0.0692227 0.0420449 +0.0243768 0.0533073 -0.022554 +-0.0530668 0.0348658 0.0444554 +0.0259946 0.0347155 0.014606 +-0.0591124 0.121234 0.0408265 +-0.0144894 0.112737 0.0404341 +-0.0838486 0.0803675 0.00250235 +-0.0582446 0.13534 0.0351018 +-0.0214986 0.100246 0.0444424 +-0.0713881 0.068562 0.0291565 +-0.0155474 0.160527 -0.0107791 +0.0215063 0.107058 0.0398344 +-0.0331542 0.158077 0.00281987 +-0.0863235 0.110381 0.0203696 +-0.0312005 0.162424 -0.00314295 +0.0384543 0.0395883 0.0218564 +0.0385307 0.0554981 0.0313684 +-0.0114896 0.0560578 0.0523304 +0.0593092 0.0622231 0.0211664 +-0.0648434 0.0339553 0.0130374 +0.0180082 0.0355585 0.00482766 +0.0399371 0.077993 0.0331058 +0.00160174 0.0351275 0.0454175 +-0.032718 0.0396362 0.0507617 +-0.0524899 0.0973506 0.0433264 +-0.032502 0.104286 0.0408563 +-0.00468764 0.0584239 -0.0337898 +-0.0672529 0.0760725 0.0393761 +0.0584714 0.0552095 0.0201836 +-0.0416396 0.0548863 -0.0113812 +0.014767 0.129313 0.0151085 +0.0271615 0.0578042 0.0426556 +-0.0133509 0.0384568 0.00507202 +-0.0770775 0.0703016 0.00351307 +-0.0514866 0.0748352 0.0426181 +-0.0882111 0.0936365 0.0238814 +-0.0906238 0.143032 0.0276653 +0.0233319 0.059176 0.0459237 +-0.036826 0.0446589 -0.0260242 +0.0332346 0.0955533 0.0394336 +-0.000484271 0.038989 -0.00201961 +0.0427221 0.101476 0.00816485 +0.0419002 0.102864 0.0131587 +-0.0208004 0.181643 -0.0143459 +0.0352424 0.0726953 -0.0147969 +-0.0234839 0.0509996 0.0435588 +0.0352381 0.0443124 0.029693 +0.000403091 0.0348316 -0.0232847 +-0.0684959 0.10279 0.039811 +0.019265 0.0708008 -0.0287723 +-0.0516068 0.0345225 0.0433683 +0.0391514 0.0617239 0.0318804 +0.0135008 0.111258 0.0394003 +0.0304359 0.108504 -0.0109544 +-0.038743 0.0768256 -0.018638 +-0.0223183 0.094515 0.0486399 +-0.0435018 0.0478421 0.040059 +-0.0727332 0.173623 -0.0510446 +-0.00349112 0.118315 0.0390164 +-0.0884421 0.133772 0.0426038 +-0.0454967 0.109818 0.0383281 +-0.0145 0.0392233 0.0384538 +-0.00466385 0.129429 0.0252614 +-0.00582274 0.088227 -0.0364178 +-0.0454902 0.0352033 -0.0224188 +-0.0348607 0.100046 -0.0224582 +-0.0792519 0.17071 -0.0410714 +-0.0376133 0.0393512 -0.0290006 +-0.0640598 0.170094 -0.0457055 +0.0303225 0.119467 0.0166127 +-0.0902791 0.116199 0.0435835 +0.0222032 0.0352055 0.0243097 +-0.073336 0.0968702 0.0400088 +-0.0376144 0.0393494 0.044329 +-0.0105011 0.0870252 0.0569814 +-0.0507332 0.161533 -0.00440491 +-0.0779412 0.162504 -0.0229403 +-0.0754919 0.128859 0.0530266 +-0.0541372 0.0344723 0.0359505 +0.0113242 0.0581457 -0.0297724 +-0.0442953 0.0391467 0.0441537 +0.0242713 0.035754 0.000294462 +-0.0615051 0.159991 -0.0325895 +-0.00166807 0.0568963 -0.03242 +-0.0119937 0.164096 -0.013967 +0.0166698 0.0900802 0.0505874 +0.0232051 0.0672264 0.0457926 +-0.0547028 0.0693497 -0.0142348 +-0.0645039 0.15312 0.03389 +-0.0344884 0.0918084 0.0445658 +0.0553932 0.0493283 0.0071983 +-0.047221 0.115086 -0.0157836 +-0.0737507 0.0835282 -0.0152437 +-0.00700363 0.0992954 0.0501023 +-0.0124605 0.0646213 0.0545516 +-0.0529942 0.0345374 0.0413527 +-0.0926054 0.122844 0.0302746 +-0.0652377 0.0419529 0.0337045 +0.0450967 0.0889619 0.00117113 +-0.0632063 0.0448721 0.0103941 +-0.0177692 0.074285 -0.0389303 +-0.0226723 0.0582322 -0.0321918 +-0.0233871 0.0380454 0.010662 +0.0144228 0.120472 -0.0118376 +-0.00758227 0.0362053 -0.0250795 +-0.0394882 0.0804267 0.0429074 +0.0505096 0.0651476 0.0284061 +0.0412879 0.0914659 -0.00877665 +-0.0613587 0.0343255 -0.00949544 +-0.0739143 0.148544 -0.0218644 +-0.0607701 0.0447346 0.0418038 +-0.0300938 0.0476999 -0.0248901 +-0.0666558 0.0720875 -0.0129051 +-0.0732714 0.156195 0.0132096 +-0.0340151 0.0498932 -0.013349 +-0.0484988 0.0762375 0.0432182 +-0.0614924 0.0384787 0.0187446 +-0.0572292 0.155416 0.0145778 +-0.0105966 0.0391805 -0.0262222 +0.00120442 0.117582 -0.0166604 +-0.070211 0.165211 -0.0489867 +0.0483875 0.0444574 0.00325794 +-0.0764978 0.13308 0.0521415 +-0.035201 0.0345651 0.0381519 +-0.00449959 0.107273 0.0439086 +-0.0266181 0.042276 -0.0292233 +-0.0364985 0.120712 0.0292752 +-0.0735593 0.15583 0.0102013 +-0.0554797 0.0848037 0.0450617 +-0.0845128 0.0817443 0.00347449 +-0.0169788 0.106067 -0.0223329 +-0.0699464 0.151677 0.0365135 +-0.0160243 0.0897174 -0.0373532 +-0.035698 0.0857595 -0.0237144 +-0.0308696 0.105755 -0.0215547 +-0.0475005 0.084795 0.044997 +0.00720445 0.088027 -0.0329216 +0.0388792 0.085648 -0.0137779 +-0.0451911 0.163637 -0.00858913 +-0.0752855 0.176467 -0.0519633 +-0.0568165 0.155074 0.0161832 +0.0369538 0.108295 0.0261877 +-0.0788782 0.172865 -0.0427748 +-0.0439777 0.0345259 0.038072 +0.0238242 0.0981836 0.0451545 +-0.0394936 0.0548399 0.0395943 +0.0242629 0.0790161 -0.0251629 +-0.0665084 0.0903473 0.0440273 +0.0291366 0.0495584 -0.0147305 +0.0191581 0.0357679 0.0376614 +-0.0278785 0.0535209 -0.0244081 +-0.00947834 0.12371 0.0334225 +-0.0570388 0.149629 0.0316784 +0.0117574 0.130329 0.0182774 +-0.00158005 0.131357 0.0134024 +-0.0657222 0.0431534 -0.00229362 +0.0404535 0.0689201 -0.00879299 +-0.0195496 0.161752 -0.0147401 +0.0435566 0.0695959 0.0259839 +-0.0893231 0.14203 0.0321578 +-0.0832597 0.10897 0.0263609 +0.00296745 0.0390391 -0.00510833 +0.0160439 0.0505074 0.0458237 +-0.0213985 0.181639 -0.0134576 +0.000249699 0.0347599 0.0129869 +-0.0138688 0.163706 -0.0171714 +-0.0787597 0.163865 -0.0299483 +-0.0321103 0.178539 -0.0110044 +-0.0062818 0.102371 0.0437669 +-0.0504236 0.113946 -0.0165184 +-0.0808373 0.0858965 0.0337281 +-0.0833697 0.0790868 0.0225099 +0.0174757 0.101745 0.0462033 +0.0562413 0.0521934 0.00418603 +-0.0386753 0.127489 0.0159666 +-0.0714887 0.0860678 0.0412957 +0.00930465 0.0639279 -0.0315779 +-0.038992 0.126654 0.0188148 +-0.0617292 0.0435742 0.0131822 +-0.0807044 0.109603 0.0338418 +0.01567 0.0343236 0.00175615 +-0.0151083 0.184586 -0.0219884 +-0.0792845 0.0704649 0.0170607 +-0.0611161 0.170955 -0.0586033 +-0.0656715 0.0684169 0.0339875 +-0.0346163 0.0505906 -0.0107587 +0.0292004 0.0566287 -0.0178044 +0.0402348 0.101386 0.0251818 +-0.0356488 0.118923 -0.0117804 +-0.00759062 0.117967 -0.0150103 +-0.0344873 0.0959942 0.0440904 +-0.0675456 0.035487 -0.00647 +-0.0177849 0.0784811 -0.0386843 +-0.0357813 0.0828042 -0.0224653 +-0.0217893 0.122494 0.0280004 +-0.040789 0.084093 -0.0212481 +-0.0448136 0.0629573 0.0395248 +-0.0851812 0.137956 0.0449006 +-0.0879612 0.103656 0.0103875 +-0.0558857 0.0998486 -0.020419 +0.017256 0.079507 0.0531399 +-0.0315382 0.178553 -0.0120253 +-0.06991 0.11224 -0.0100103 +-0.0512969 0.0556828 0.0150377 +0.0224682 0.0520683 0.0428376 +0.0143831 0.0448677 -0.0245168 +-0.0794364 0.144805 0.0432098 +-0.0638846 0.103946 -0.0172176 +-0.0284346 0.0849121 0.0465284 +0.0144928 0.11263 0.0387455 +-0.0860797 0.0882889 0.0261675 +-0.00931865 0.0862591 -0.0377315 +-0.0226749 0.0380487 0.0198364 +-0.0875543 0.0861148 0.0194651 +-0.0578317 0.0344516 0.0369209 +-0.0410907 0.157679 -0.0102957 +-0.0680436 0.0337635 0.00720288 +-0.0778811 0.104813 -0.00803583 +0.0518058 0.0553999 0.0290848 +-0.0504997 0.160817 0.00728082 +0.0241356 0.0632152 0.0453534 +-0.0268604 0.100151 -0.0237263 +0.0127955 0.0874066 0.0537621 +-0.0616261 0.155549 0.00719382 +-0.0593595 0.0336431 -0.00899455 +-0.065903 0.0643977 0.026882 +0.0278843 0.0536982 -0.0197695 +-0.0335041 0.0789099 0.0415331 +0.0414488 0.0873044 0.0301508 +-0.0627531 0.161513 -0.0475897 +0.0292606 0.0447502 0.0332372 +0.0105493 0.122164 -0.0116505 +-0.0908004 0.115922 0.00730178 +0.0306755 0.0581744 -0.0167704 +-0.0745653 0.158254 -0.0269305 +0.0417869 0.088692 -0.00877741 +-0.0765465 0.107865 0.0361429 +0.0291715 0.104768 0.0370747 +-0.0435198 0.0436724 -0.0163157 +-0.0639905 0.155091 0.00636862 +-0.0676976 0.156296 0.0180917 +0.0361371 0.0605355 0.0363255 +-0.0831336 0.135327 0.0485953 +-0.0205283 0.125395 0.0225414 +0.0218584 0.126105 0.0106 +-0.0573551 0.0335045 0.00783858 +-0.0766685 0.144473 -0.00485242 +0.0215827 0.0449804 0.0414892 +-0.0623027 0.152202 -0.0135791 +-0.0124889 0.118271 0.037774 +-0.058999 0.129653 -0.00698695 +0.0212269 0.035264 0.00760182 +-0.0558448 0.0533792 -0.00239414 +-0.042206 0.147853 0.000366775 +-0.0732213 0.156852 -0.0309091 +0.00482377 0.0349755 -0.00101746 +0.00553205 0.131427 0.00744951 +-0.0606157 0.0459479 0.0402046 +0.00228793 0.0626666 -0.0335374 +-0.00869718 0.172706 -0.0257786 +0.0265924 0.0466157 -0.0146569 +0.0293044 0.0481199 -0.00974071 +-0.0278981 0.0863323 0.047373 +0.029421 0.0461183 -0.00671048 +-0.058539 0.0588103 0.0191792 +-0.0577583 0.0479183 0.03595 +0.0299489 0.069977 0.0415097 +-0.0877683 0.149882 0.0273982 +-0.0403006 0.122206 -0.0112466 +-0.0731823 0.109139 0.039466 +0.00748061 0.115492 0.0392535 +-0.0323193 0.0339823 0.0197127 +-0.00249248 0.0911617 0.056251 +-0.0410706 0.0335739 0.0056728 +-0.0167629 0.120643 -0.00969861 +0.0170314 0.126681 0.0245104 +-0.0933703 0.118789 0.0242915 +-0.0167466 0.161131 -0.0135692 +-0.037714 0.0710075 -0.016855 +-0.0748306 0.094995 -0.0139518 +-0.0653015 0.169027 -0.0374543 +-0.0171592 0.0387994 -0.0126424 +-0.0649264 0.112407 -0.0127033 +0.0089357 0.131311 0.0143899 +-0.0695053 0.106913 0.0375568 +-0.0679519 0.129695 -0.00900682 +0.0196594 0.10025 -0.0221259 +0.0187375 0.0672729 0.0498973 +-0.0634922 0.0626336 0.0253957 +-0.0640428 0.0593154 0.0139941 +-0.0365043 0.0691064 0.0417512 +-0.0509946 0.0547172 0.0191515 +-0.0684996 0.106934 0.0379267 +-0.0391114 0.149509 -0.00165293 +0.00150153 0.0534013 0.0535077 +-0.0610153 0.131125 -0.0076807 +-0.015856 0.0980295 -0.0258983 +0.0549279 0.0723085 0.00788581 +0.0296197 0.117006 0.0277632 +0.00535242 0.130989 0.0202309 +-0.000691446 0.0612541 -0.0338404 +0.00150093 0.0441835 0.0459725 +-0.0611099 0.11531 0.0378549 +-0.0695161 0.108303 0.0373324 +-0.0543547 0.158623 0.00837339 +-0.0945603 0.124158 0.0182654 +-0.0535009 0.111177 0.0367213 +-0.0119534 0.0385403 0.00164014 +-0.0370531 0.166795 0.000693639 +0.0161005 0.115637 -0.0146217 +-0.0669681 0.132599 -0.00847972 +-0.0192376 0.0362049 0.0528295 +-0.0510947 0.138549 0.00140254 +0.0199501 0.126815 0.00703133 +-0.0280876 0.0511424 0.0415727 +0.0021184 0.108719 -0.0202691 +-0.0455158 0.0889126 0.0438293 +0.00898082 0.0376394 0.0339008 +-0.0913279 0.147458 0.016148 +-0.00573884 0.0712887 -0.036141 +0.0184912 0.0906471 0.0481735 +-0.0240484 0.159369 -0.0122932 +-0.00386335 0.103093 -0.0232514 +-0.0903131 0.126767 0.00528424 +-0.00141239 0.101018 0.0444401 +-0.0265472 0.0384572 -0.00862977 +-0.0461338 0.160629 -0.00828859 +0.0434078 0.0958974 0.0221477 +-0.0323682 0.0778417 -0.0305703 +-0.0104869 0.166942 -0.0170857 +0.0335642 0.11614 0.00925074 +-0.0679156 0.112303 -0.0110315 +0.0448529 0.0917799 0.0171662 +-0.0902457 0.140661 0.0271695 +0.0361358 0.102075 -0.0100705 +-0.0774559 0.158948 -0.0154272 +-0.0718839 0.142969 -0.00986002 +0.0254315 0.0862638 0.0474376 +0.0233509 0.0549381 -0.0249484 +0.0445042 0.0650854 0.0275412 +0.0472882 0.0731371 0.0168777 +0.0310703 0.0352449 0.00774073 +-0.0540072 0.144242 -0.000990452 +-0.0901845 0.132425 0.0322244 +-0.0305014 0.066031 0.0387492 +-0.0636396 0.163113 -0.0245909 +0.0265757 0.0754454 0.0454823 +0.0560761 0.0692634 0.0230866 +0.0323242 0.117657 0.0116569 +-0.0744896 0.128852 0.0526631 +-0.092535 0.126933 0.0292581 +-0.021881 0.107267 -0.0220871 +0.0216673 0.125834 0.0205048 +-0.0892808 0.140568 0.013241 +-0.0188177 0.0683045 0.0530002 +0.0181426 0.117476 -0.0126083 +-0.0562843 0.049932 0.00898241 +0.0271917 0.0858851 -0.0222975 +-0.0354636 0.172718 -0.000342918 +-0.0113055 0.0991708 0.0485876 +-0.0512476 0.149342 0.0143776 +0.0112062 0.129253 0.000760937 +-0.027273 0.123571 -0.00271305 +-0.0942867 0.122796 0.0162787 +-0.0731111 0.152638 -0.0358925 +-0.0630631 0.0351206 0.0420909 +-0.0638567 0.0981567 -0.0173229 +-0.0886136 0.0969805 0.0223931 +0.0376971 0.0381803 0.0174952 +-0.0389196 0.163835 0.00150184 +0.0470726 0.048551 -0.0036464 +-0.0195067 0.119545 0.0340058 +-0.0154952 0.101637 0.0439764 +-0.0615198 0.167807 -0.0565879 +0.000487515 0.110024 0.0426254 +0.0218587 0.0714183 0.0491823 +-0.0891206 0.0888853 0.014456 +0.00728906 0.0602827 0.0543511 +0.0159015 0.122788 0.0313235 +0.0287151 0.0982016 0.0416756 +-0.0515592 0.162515 0.00512403 +-0.0562626 0.0437454 0.0167126 +-0.0181312 0.0948304 -0.0325641 +-0.0375002 0.0337858 -0.019518 +-0.0283411 0.0368095 0.0535577 +0.0138368 0.126165 0.029064 +-0.0698832 0.115052 -0.00855978 +-0.0166197 0.126668 0.0238945 +-0.062914 0.11807 -0.00990368 +-0.0489018 0.129654 0.0292632 +-0.0524468 0.0489914 0.023647 +-0.0590382 0.132561 -0.00680716 +-0.0429798 0.150656 0.00610371 +-0.0708619 0.0368523 0.00979504 +0.0198172 0.102563 -0.0205962 +0.0416527 0.0846461 0.030449 +-0.0215106 0.119492 0.0328652 +-0.0144877 0.185446 -0.0257702 +0.0475192 0.0568404 0.0316921 +-0.0913388 0.115949 0.00831473 +0.0281313 0.0591962 0.0423168 +-0.035495 0.171374 -0.0137494 +-0.0736292 0.156748 -0.0014693 +-0.00249426 0.0505094 0.0526827 +-0.0909607 0.144377 0.0265412 +-0.0410851 0.123071 0.0255089 +-0.0226414 0.0961417 -0.0259441 +0.0264078 0.120534 -0.000510633 +-0.0193661 0.126578 0.00214409 +0.0465619 0.0568462 0.0320779 +0.0207007 0.040829 0.0419301 +-0.0564899 0.0440403 0.0448345 +0.000863008 0.0381264 -0.0140589 +-0.0418598 0.102811 -0.0210501 +-0.00158954 0.0376715 -0.025054 +-0.0723294 0.177884 -0.0550149 +-0.0544961 0.0732542 0.0409056 +-0.00649673 0.121064 0.0364033 +0.0504194 0.0446982 0.00822878 +-0.0153541 0.0337728 -0.0226273 +-0.0303696 0.0486908 0.0439216 +-0.0334968 0.033775 0.00883944 +-0.0685163 0.108328 0.0375372 +-0.0304988 0.0603029 0.0376116 +-0.0662971 0.0363734 0.0376513 +0.0311541 0.072342 -0.0197804 +0.016819 0.0860765 0.050782 +-0.067492 0.0944588 0.0423306 +-0.0187655 0.0714126 -0.0384549 +-0.0605051 0.128314 0.040613 +0.00838174 0.0449018 -0.0251393 +-0.0164768 0.122235 0.0319313 +0.0227625 0.125142 0.00666699 +-0.0528343 0.0337802 -0.0114802 +0.0451301 0.0903696 0.00218472 +-0.0576106 0.148673 -0.00161022 +0.00250457 0.100333 0.0462614 +-0.0262513 0.0350951 0.0517484 +-0.054684 0.067848 -0.0128124 +-0.0441291 0.159145 -0.00944971 +-0.0440467 0.0380432 -0.0230799 +-0.0447681 0.146394 0.00358641 +-0.0894274 0.0915536 0.0114438 +-0.0751139 0.0954949 0.0389973 +0.0383178 0.106879 0.000185785 +-0.0732998 0.0654414 0.00491231 +-0.00228741 0.13015 0.0232201 +-0.0372213 0.150899 -0.00386632 +-0.0261116 0.0809919 0.0513952 +0.0322341 0.112712 0.0291688 +-0.0690565 0.0338884 -0.00389811 +0.0101437 0.101615 -0.0217271 +0.0425651 0.10009 0.017161 +-0.0355201 0.16973 -0.000114667 +0.00176571 0.0954911 -0.0311224 +0.0373922 0.0461028 -0.00552229 +-0.0261166 0.163762 -0.0159025 +-0.0651006 0.0458549 0.00368955 +0.0212923 0.0982999 -0.0220426 +0.026467 0.0383015 -0.00253304 +-0.0231343 0.0383693 -0.0171708 +0.00758009 0.121578 -0.0129987 +-0.0491724 0.116402 -0.0151155 +-0.0174383 0.038419 -0.00120725 +-0.0368548 0.0985914 -0.0223265 +-0.0599288 0.145383 0.0362513 +0.00646924 0.0964123 0.0516046 +-0.0630484 0.138442 -0.00719818 +-0.0266978 0.0917701 0.0460149 +-0.0534968 0.0790911 0.0438637 +-0.0203653 0.0682964 0.0517114 +0.0203853 0.049027 -0.0227929 +-0.0539349 0.0527611 0.0108042 +0.0460422 0.0848268 0.0101717 +-0.0728228 0.148718 -0.0323717 +0.0337238 0.11401 0.0250189 +-0.0718098 0.0864713 -0.016231 +-0.000525817 0.0352062 0.0124275 +0.0044963 0.0605551 0.0556784 +0.0278498 0.045613 -0.00720046 +0.0242032 0.0987613 -0.0205495 +0.0133536 0.0359529 -0.0210721 +-0.00614443 0.0386147 0.00639011 +-0.091603 0.144731 0.0191577 +-0.00870302 0.0387758 0.0292604 +0.00137957 0.0343513 0.00995357 +0.0580311 0.0716366 0.0149943 +0.029585 0.0495591 -0.0127459 +-0.0873232 0.0873446 0.00247822 +-0.0562907 0.154938 0.0178178 +0.0227189 0.116065 -0.0110894 +-0.089541 0.143417 0.0301691 +-0.0295204 0.0607307 -0.0234192 +-0.072166 0.0982206 0.0402281 +0.0461397 0.0764263 0.0052018 +-0.0650238 0.0405393 0.0286621 +-0.0357662 0.0798799 -0.0213145 +-0.0210545 0.100222 -0.024166 +-0.051798 0.0884029 -0.0218862 +-0.0585235 0.0425717 0.0226979 +-0.0581184 0.132538 0.0370402 +-0.0500652 0.125773 -0.00688378 +-0.0570027 0.145725 -0.00171879 +-0.000114754 0.120081 -0.0133088 +-0.0558569 0.135328 0.0332838 +-0.071744 0.162192 -0.0110365 +-0.0533559 0.0609747 0.0280244 +-0.0678966 0.110866 -0.0116376 +-0.0708871 0.119431 -0.00850422 +-0.0743754 0.0995209 0.0381506 +-0.0827936 0.110133 0.0365 +0.0274001 0.0354299 0.0197116 +-0.0700593 0.152584 0.0349486 +-0.0594807 0.0398598 0.0207095 +-0.0506478 0.0648447 -0.0114426 +-0.0548507 0.0955893 -0.0216695 +-0.0735032 0.144216 0.0449341 +-0.0746874 0.169403 -0.0279937 +-0.041349 0.172669 -0.00697494 +-0.0879813 0.0968653 0.0054141 +-0.0639066 0.158701 -0.0499459 +-0.0295413 0.0348538 0.0461198 +0.0425062 0.0610428 0.0297234 +-0.0761006 0.0693618 0.0222283 +0.0350916 0.102085 0.0333486 +-0.0434936 0.107078 0.040105 +-0.0210995 0.166843 -0.0113898 +-0.0599936 0.0459773 0.0409964 +0.0260763 0.0726986 0.044735 +0.0368852 0.111459 0.00613554 +-0.00301536 0.127034 0.030217 +-0.0313536 0.0384061 -0.00216621 +0.0173795 0.0350198 0.030737 +-0.072846 0.165216 -0.0419869 +-0.0344415 0.176449 -0.00471515 +0.00170995 0.0392427 0.0309786 +-0.04085 0.0985381 -0.021696 +-0.0479764 0.135553 0.00940627 +-0.0332667 0.0835875 -0.0265323 +0.0206498 0.0781917 0.0510092 +0.0122103 0.0893249 -0.030653 +-0.0464803 0.0335784 -0.0137021 +-0.0367962 0.0383714 -0.00507539 +-0.00449141 0.0911839 0.0565229 +0.0243337 0.0605883 -0.0247185 +-0.0826166 0.123078 0.0498508 +0.0540378 0.0525213 0.0252382 +-0.0675101 0.0369158 -0.0062949 +-0.0205096 0.124449 -0.00369667 +0.0285796 0.107031 -0.0133812 +0.0320794 0.0526694 -0.0107538 +-0.0203373 0.0610131 0.0476733 +-0.0674469 0.0396367 -0.00494886 +-0.0599339 0.120955 -0.00911512 +0.0168017 0.105866 -0.0181237 +-0.0787857 0.0744548 -0.00455566 +0.0193044 0.127372 0.00964815 +-0.038368 0.0457007 -0.0229731 +-0.025877 0.125557 0.00449924 +-0.0609237 0.0414243 0.0237035 +-0.0433646 0.153626 0.00736711 +-0.0513808 0.0500433 0.0347314 +-0.0212772 0.0382158 0.00549847 +0.0220013 0.0348195 0.00816409 +-0.0519377 0.0335199 0.00532131 +0.00789859 0.0999878 -0.0218807 +0.0337096 0.115696 0.0178949 +-0.0404258 0.0418709 -0.0242648 +-0.0188763 0.105884 -0.0226282 +-0.0648153 0.175482 -0.051724 +-0.070065 0.148313 -0.0344143 +-0.0584005 0.0439707 0.0246877 +0.0215152 0.0795452 0.0505127 +-0.000765864 0.0811873 -0.0364626 +-0.0633527 0.0454486 0.000289555 +-0.0455004 0.113892 0.0345333 +-0.0205229 0.0336428 -0.0235211 +-0.0658189 0.0895406 -0.0182783 +0.00772286 0.0346363 0.0381279 +0.044441 0.093115 0.00120191 +-0.0859796 0.119771 -0.00178632 +0.00662772 0.0374926 -0.0123303 +-0.0495602 0.0418248 -0.0110192 +-0.0863354 0.129395 -0.000699295 +-0.00570279 0.0613633 -0.0351663 +-0.0195101 0.114089 0.03835 +-0.0679008 0.1038 -0.0147014 +0.045275 0.0917907 0.0041773 +0.0258455 0.110181 -0.0127425 +-0.00858661 0.0376839 -0.0256139 +-0.0494924 0.160775 0.00747898 +-0.0186783 0.101771 -0.0238107 +-0.0870678 0.11107 0.0203515 +-0.0692028 0.135485 0.0474165 +-0.0665472 0.0446244 0.00170489 +-0.0679768 0.0791427 0.0408622 +0.0184726 0.0851741 0.0505075 +-0.0203373 0.158355 -0.00674555 +-0.0364979 0.119358 0.0304421 +-0.0395021 0.0450562 0.0411081 +-0.00309828 0.0379762 0.00940157 +-0.054497 0.10568 0.0405938 +-0.0354869 0.0903478 0.043788 +-0.0882673 0.102346 0.019362 +-0.0518479 0.128319 0.033784 +0.0163666 0.0522247 -0.0268816 +-0.0216233 0.0450569 -0.0280185 +-0.0332919 0.124337 -0.00345787 +-0.0603705 0.118249 -0.0108601 +-0.0883316 0.128385 0.0454834 +-0.0681462 0.033688 -0.00353141 +0.0232453 0.12098 -0.00440593 +-0.0294449 0.038677 -0.0149866 +0.0110249 0.0988999 -0.0227192 +-0.0218748 0.174208 -0.0142339 +0.0205417 0.0741225 0.0508294 +-0.0627477 0.148893 -0.0169766 +-0.0398023 0.0338119 -0.0274661 +-0.0319551 0.0348046 0.0438977 +0.0104998 0.108437 0.040345 +-0.0139772 0.164028 -0.0115888 +-0.0247602 0.0379556 0.0194943 +-0.000934383 0.0340393 -0.0200439 +0.0476809 0.0472678 -0.00164326 +-0.0400291 0.0354632 0.00960076 +-0.0671756 0.0610764 0.00625684 +-0.0852257 0.114326 0.001271 +-0.0754019 0.151364 -0.0118956 +-0.0437605 0.146927 0.00133694 +-0.0619528 0.15527 -0.030594 +0.0363929 0.0490985 -0.00642376 +-0.0100186 0.0981603 -0.0280043 +-0.0119452 0.129197 0.00527137 +-0.0346207 0.0519685 -0.0102527 +0.0527588 0.0510331 0.0250995 +-0.0635082 0.148832 -0.022668 +-0.0147336 0.0671673 -0.0377424 +-0.0704174 0.170744 -0.0307374 +0.0105902 0.125785 0.0307704 +-0.0258145 0.0894344 -0.0348302 +-0.0177853 0.0383982 0.00785589 +-0.0875073 0.0954698 0.00341799 +-0.0424838 0.105689 0.0405023 +0.049326 0.0581361 0.0307698 +-0.0426568 0.0578158 -0.011891 +-0.0506189 0.0517055 -0.00806622 +-0.0751298 0.155996 0.0213056 +-0.0740765 0.0662649 0.0182774 +-0.055953 0.151039 0.0297159 +0.00149895 0.0519342 0.0529111 +-0.0476623 0.135572 0.0124001 +0.00259703 0.093007 -0.0325523 +-0.021995 0.185609 -0.0143485 +0.0421516 0.0805501 0.0292856 +-0.014868 0.104453 -0.022832 +-0.0398868 0.108509 -0.0195593 +0.0259209 0.122835 0.0206655 +-0.0616544 0.15599 0.0144357 +-0.0733101 0.14716 -0.0188577 +-0.0262613 0.119664 -0.0106051 +0.0355444 0.109985 0.0269213 +0.04069 0.0703475 -0.0087868 +-0.0658232 0.100991 -0.0166158 +0.0443888 0.0846966 -0.000809941 +-0.0235014 0.109891 0.0398372 +0.0275195 0.0713136 0.0432798 +0.0364601 0.111481 0.0203251 +-0.0766191 0.168746 -0.0293719 +0.041872 0.069712 0.028792 +-0.0188551 0.177186 -0.0168879 +-0.0430291 0.148351 -0.00306372 +0.0241638 0.0853333 -0.0244737 +0.017675 0.127712 0.00477874 +-0.0888835 0.0983415 0.0204012 +-0.0202474 0.0582316 0.0476806 +-0.0719293 0.126758 -0.00881076 +-0.0294958 0.0960659 0.0449891 +-0.0491744 0.14016 0.00939463 +-0.0284952 0.105677 0.0407009 +0.0215711 0.035903 0.0289947 +0.0112282 0.0780681 -0.031821 +0.0343153 0.115038 0.0152609 +0.0213375 0.0536353 -0.0261911 +-0.0754641 0.149954 -0.0208706 +0.0174704 0.1044 0.0442882 +0.00640724 0.0390095 -0.0238414 +-0.0396234 0.150027 -0.00409811 +-0.0900489 0.137821 0.0141988 +0.0252808 0.0733562 -0.0251315 +-0.0492373 0.132883 0.0267635 +-0.0430533 0.034543 -0.0263375 +0.0217093 0.0520814 0.0434982 +-0.0333828 0.0807789 -0.0265175 +-0.0761052 0.14997 -0.0158781 +-0.0707786 0.0690222 0.0306409 +0.0401031 0.0589615 -0.00453029 +-0.0260252 0.0904818 0.0482145 +-0.0895062 0.0902087 0.0114561 +-0.0526923 0.0334338 -0.00380212 +-0.0114811 0.0646532 0.0550744 +-0.0370678 0.157759 -0.0113588 +0.00952731 0.105746 0.0431674 +-0.0410118 0.126885 0.0180931 +0.0197485 0.105413 -0.017636 +-0.0629292 0.155832 0.0110869 +-0.0581695 0.15592 0.011334 +-0.00650086 0.0561902 0.0537938 +-0.0338729 0.15688 -0.0110666 +0.0405297 0.0779725 0.0322363 +-0.0642469 0.0423257 0.0129047 +0.0237846 0.0476926 0.0394013 +-0.0217726 0.172729 -0.0141007 +-0.0416287 0.0534443 -0.0111279 +-0.077087 0.154176 -0.0108977 +0.0304203 0.0366341 0.0210583 +-0.0306156 0.0552316 -0.0163811 +-0.0584355 0.0482117 0.00674018 +-0.0284904 0.0917855 0.0443788 +-0.0347085 0.0681808 -0.0168555 +0.0286267 0.117101 -0.00417221 +0.000831008 0.0996342 -0.0235195 +0.00330328 0.0611715 -0.0325304 +-0.0739165 0.113504 -0.00683708 +-0.0898235 0.126994 0.0441831 +-0.0889746 0.0942393 0.0114303 +-0.0279086 0.0704216 -0.0334901 +-0.041504 0.0562873 0.0399374 +0.0394095 0.0793879 0.0341721 +-0.0669825 0.112069 0.0420748 +-0.0847653 0.103459 0.000382003 +-0.00649785 0.0801379 0.0576218 +-0.0226054 0.126675 0.00715587 +-0.000755212 0.130746 0.00366553 +-0.0328403 0.0348519 -0.0195836 +0.0396279 0.0857065 -0.0127726 +-0.0805255 0.14991 0.0359696 +0.0353489 0.0955322 0.0372114 +0.0102384 0.0781052 -0.0323493 +-0.0296143 0.0551126 -0.0213868 +-0.0699315 0.126779 -0.00900092 +-0.0795103 0.126002 0.0528073 +-0.000474921 0.0732072 0.0579427 +0.00749418 0.095088 0.0520151 +-0.0841797 0.101927 0.0280813 +0.0424909 0.101472 0.00517268 +0.00951997 0.0673959 0.0546877 +-0.0472854 0.0671503 0.0390298 +0.0376148 0.100847 -0.00874384 +-0.0374929 0.116616 0.0320198 +0.029259 0.120361 0.0176317 +-0.0737149 0.158251 -0.0299203 +-0.0114976 0.116917 0.038689 +0.0413371 0.0444728 -0.00290745 +-0.0627029 0.150609 -0.0235776 +-0.0302691 0.080511 -0.0335682 +0.0300872 0.0497043 -0.0117138 +0.0222773 0.0620859 -0.0257917 +-0.0570144 0.147201 -0.00173114 +-0.0760781 0.173825 -0.0400503 +-0.00149572 0.101631 0.0441885 +-0.0261888 0.17564 -0.0188354 +0.0231825 0.0577956 0.0456852 +-0.0924811 0.125593 0.0372603 +0.00115082 0.131147 0.0187057 +-0.0841614 0.142011 0.042356 +0.042729 0.0901813 -0.0058099 +0.0213045 0.0372836 -0.00268556 +-0.0160362 0.0338015 -0.0209075 +0.0394869 0.10531 0.000602508 +-0.0239168 0.0383626 0.00119722 +-0.0164538 0.0343139 -0.019589 +-0.0592802 0.154415 0.0283608 +-0.0609269 0.155849 0.0219449 +-0.0250081 0.0361291 -0.0192131 +-0.0853634 0.14876 0.00617316 +-0.0253618 0.0386908 -0.0141849 +-0.0881693 0.0922771 0.0238938 +-0.0728038 0.0921924 -0.0153063 +-0.0708783 0.150832 0.0377201 +0.00548074 0.111376 0.0414038 +-0.0524967 0.0945727 0.0438723 +0.0115063 0.0343546 -0.0179688 +0.00151312 0.081484 0.0572224 +-0.0149936 0.0395459 0.0398583 +0.0120392 0.129427 0.0226627 +0.0591195 0.05666 0.00817454 +0.0328155 0.102974 -0.0130264 +-0.0371359 0.123595 0.025439 +0.0450698 0.0805625 0.0231647 +-0.028064 0.0385407 0.0362565 +-0.00648913 0.0732625 0.0583326 +-0.0374981 0.0719295 0.0420686 +-0.0736872 0.176894 -0.0449171 +-0.0672224 0.0339784 0.0107486 +-0.0758756 0.104904 -0.00955908 +0.0439403 0.083251 -0.00181959 +-0.0614723 0.15843 -0.0295877 +0.0442849 0.0945485 0.0181566 +-0.065503 0.044849 0.00843715 +0.00357616 0.0395385 0.0347033 +-0.028754 0.0634689 -0.0284339 +0.0315757 0.0914687 -0.0188156 +0.00716348 0.0343484 0.0202029 +-0.0216788 0.0493937 -0.0287126 +-0.0716516 0.139715 0.0474384 +-0.043721 0.033715 -0.00407894 +-0.0817894 0.0909919 -0.00761357 +0.0425053 0.0513815 0.0326154 +-0.0638693 0.170945 -0.0476012 +0.0316414 0.11271 0.0301021 +-0.0306212 0.159741 -0.0134031 +-0.0214041 0.0879871 0.0549671 +-0.0670934 0.0625692 0.00143601 +-0.0365003 0.087456 0.0430956 +0.00150165 0.0919153 -0.0334107 +-0.024293 0.124271 0.0211991 +-0.0604952 0.0932426 0.0451145 +0.00516194 0.0978455 -0.0256065 +-0.00249882 0.081515 0.0574957 +-0.0636907 0.146369 -0.0159165 +-0.0129939 0.103563 -0.0236849 +0.00282967 0.131401 0.0178813 +0.00250691 0.0883899 0.0564027 +0.0220994 0.0476682 0.0404859 +-0.0466625 0.12523 -0.00836412 +0.00382851 0.0992997 -0.0231609 +-0.0879384 0.126705 0.000268669 +-0.0725213 0.0636798 0.0102197 +-0.00645782 0.0338359 -0.0228235 +-0.0523786 0.138216 -8.53499e-05 +-0.041943 0.114992 -0.0156494 +0.0435142 0.0513638 0.0325031 +0.0432433 0.0958712 0.000187851 +-0.0729725 0.170894 -0.0302341 +-0.0303619 0.0381166 0.0307902 +-0.0942177 0.125518 0.0172578 +0.0446543 0.0959754 0.00716634 +-0.0263933 0.0864552 0.0500994 +0.0352313 0.064664 0.0385641 +-0.0913521 0.14609 0.0171489 +-0.00798473 0.0348553 0.0472244 +-0.00181216 0.086792 -0.0360393 +-0.0153678 0.09644 0.0517723 +0.0268857 0.117842 -0.00498093 +-0.0354986 0.0747267 0.0419454 +-0.0573263 0.0481094 0.0336642 +-0.0386241 0.125328 -0.00654651 +-0.020119 0.0431531 0.0531418 +-0.0226834 0.174208 -0.0136486 +-0.0554979 0.0889982 0.0448936 +-0.0321193 0.0366883 0.0508235 +0.013731 0.104072 -0.0202068 +0.0407967 0.0661529 -0.00677209 +-0.0792933 0.16941 -0.0399858 +-0.0250378 0.174204 -0.0117666 +-0.0718111 0.0631642 0.010775 +-0.0710553 0.181198 -0.0554882 +-0.058796 0.0868581 -0.0207882 +-0.0136362 0.0466649 -0.0295427 +-0.0924917 0.124196 0.0312677 +-0.0331602 0.171158 -0.0153905 +-0.0724259 0.0727975 0.0340482 +-0.0566618 0.0645338 -0.00803085 +-0.0705221 0.098629 0.0408842 +0.0118568 0.126524 -0.00436904 +-0.0784161 0.116342 0.0501163 +-0.0677948 0.160582 -0.0110564 +-0.0456903 0.11799 -0.0148012 +0.0526315 0.0462656 0.0102089 +0.0453672 0.0456539 0.0269438 +-0.00726729 0.129761 0.0228793 +-0.0659232 0.105312 -0.014993 +-0.087769 0.118492 0.00124641 +-0.00149512 0.0562755 0.0546084 +-0.089164 0.0928946 0.0114433 +-0.0841907 0.078353 0.0198111 +-0.0679412 0.0656184 0.0271584 +0.0224551 0.0368363 -0.00219983 +-0.0356854 0.0435567 0.045098 +-0.0457595 0.0797224 -0.0196258 +-0.0405031 0.0762353 0.0429954 +-0.0640239 0.14106 0.0390925 +-0.0797368 0.119028 0.049952 +-0.0864815 0.0846104 0.00248575 +-0.0774908 0.137247 0.0499166 +-0.0586931 0.0693474 -0.0143558 +-0.0340813 0.159269 -0.0127772 +-0.0889533 0.124321 0.0462453 +-0.0611638 0.0468972 0.00167818 +-0.0925249 0.130961 0.0132346 +-0.0707251 0.033867 0.00298473 +0.0514024 0.0510939 0.0266785 +-0.000225629 0.097747 0.0525183 +0.0260546 0.112325 -0.0110571 +-0.0429452 0.0345628 0.0382617 +-0.0174331 0.0625913 0.0517909 +0.0422611 0.0397457 0.00959333 +-0.0374974 0.0705158 0.0419336 +-0.0368535 0.0362973 -0.0142764 +-0.0132005 0.128825 0.00480743 +-0.0808442 0.110042 -0.00155764 +-0.0890966 0.114815 0.0438036 +-0.0195037 0.11681 0.0364149 +-0.0653439 0.127011 0.0477296 +-0.0749324 0.152731 -0.0198994 +-0.0131083 0.128689 0.020774 +-0.0761869 0.149999 -0.0118749 +-0.0657951 0.0852369 -0.0187501 +-0.0515872 0.0558557 0.0146208 +0.0414903 0.0541829 0.0322405 +-0.0094881 0.112787 0.0415502 +-0.0473098 0.0390167 0.04506 +-0.076903 0.112654 -0.00467049 +-0.0792829 0.109073 0.0381388 +0.0277273 0.0646184 0.0435417 +-0.0923959 0.132359 0.0202239 +-0.0505803 0.0502828 -0.00813802 +0.00549299 0.117639 -0.0167508 +-0.0166687 0.038571 -0.00303984 +-0.0728836 0.119408 -0.00813229 +-0.00373228 0.0669631 -0.0346735 +0.0373953 0.0445589 -0.00471693 +0.00577997 0.0365296 -0.0134893 +0.0065091 0.0772612 0.0561769 +-0.0785581 0.153669 0.00407716 +-0.0631137 0.14437 -0.00863045 +0.0335076 0.0453895 0.0300756 +-0.00148382 0.131063 0.00627096 +-0.0117022 0.0613984 -0.0359464 +-0.0390182 0.0473551 -0.0162983 +0.0174871 0.10577 0.0429453 +0.0173606 0.128011 0.00608341 +-0.0587951 0.0337712 0.0197789 +-0.0554323 0.145321 0.0304155 +-0.021174 0.184521 -0.0131308 +-0.0546552 0.0656851 0.0351815 +-0.00872132 0.0656071 -0.0355909 +0.00329381 0.0654903 -0.0335962 +-0.0874212 0.0861211 0.0204627 +0.0341358 0.0641297 -0.0158137 +-0.063479 0.0384929 -0.0076832 +0.0174063 0.0417452 -0.0219906 +-0.069028 0.0409064 0.00923732 +0.0577041 0.0703778 0.00716237 +-0.0506338 0.0663851 -0.0124105 +-0.04882 0.119077 -0.0139102 +-0.0660878 0.161167 -0.014759 +0.060054 0.0678303 0.0101401 +-0.063913 0.169258 -0.0441943 +-0.053845 0.0463107 0.0236764 +-0.0784828 0.175619 -0.0475153 +-0.0313957 0.12387 -0.00298136 +0.0154947 0.107116 0.0420405 +-0.036876 0.0434502 0.0434666 +-0.06715 0.145376 0.0416405 +-0.0155327 0.181625 -0.0208343 +-0.0715781 0.0968766 0.0410625 +0.0306462 0.0968954 0.0409575 +0.00964614 0.0589005 0.0527021 +0.0527245 0.0736707 0.0159788 +-0.0861826 0.104908 0.00538017 +-0.0812551 0.138069 0.0480599 +0.0475108 0.0597433 0.0313293 +-0.0156256 0.0450397 -0.0279587 +-0.0221316 0.125526 0.0205056 +-0.0322922 0.122832 0.0242564 +-0.0132407 0.164048 -0.012311 +-0.0415061 0.0620057 0.0410722 +-0.0657901 0.128396 0.0470862 +0.0282252 0.0760107 -0.0227881 +-0.0701785 0.136914 0.0477863 +0.03413 0.0822192 0.0406334 +0.0609039 0.0609671 0.0121585 +-0.0515277 0.136697 0.0258426 +-0.00994091 0.089177 -0.0367642 +0.0451266 0.0727442 0.0219703 +0.0336533 0.110026 0.0294894 +-0.0721725 0.156265 0.0135984 +0.0312336 0.051167 -0.0107736 +-0.0023355 0.0926921 -0.0342848 +-0.0524965 0.0790864 0.0437156 +-0.0095237 0.0431051 0.0494016 +0.000300907 0.0626948 -0.0340909 +-0.0905968 0.140629 0.0221693 +-0.00800869 0.0388567 -0.00527149 +-0.0584939 0.0847167 0.0439692 +-0.0635243 0.0334646 -0.00419693 +-0.090351 0.14066 0.0261698 +-0.0588327 0.0911696 -0.0205864 +-0.020414 0.0541289 0.0465389 +-0.056688 0.067746 -0.0120827 +-0.0344045 0.152028 -0.00248634 +-0.0154988 0.114109 0.0392017 +-0.0384878 0.168246 0.00236894 +-0.0115711 0.100192 -0.0241483 +-0.0167308 0.0657547 -0.0377116 +-0.0466962 0.147986 -0.00319779 +-0.0926613 0.122825 0.0414622 +0.0312237 0.0871647 -0.0198177 +-0.0257476 0.0682496 -0.0344079 +-0.0524537 0.0504524 0.0306643 +-0.0768211 0.0804727 0.0355147 +-0.00449363 0.0456798 0.0470573 +0.0418422 0.0690449 -0.00578965 +-0.0262667 0.110544 -0.0190457 +-0.00251293 0.105882 0.0441369 +-0.0707082 0.0395895 0.000643319 +0.0128917 0.127573 0.0272919 +-0.0354687 0.054727 0.0384538 +0.00920102 0.0837298 -0.0322138 +0.0094791 0.0347704 0.0365664 +-0.0435038 0.0438236 0.0424673 +-0.0551839 0.140262 -0.00246039 +0.00523902 0.0341335 -0.0189244 +0.0273731 0.0578707 -0.0207586 +0.0119495 0.129938 0.00409466 +-0.0494983 0.102885 0.0411106 +-0.0370447 0.0379826 0.045213 +0.0150108 0.0349639 0.0393317 +0.0345233 0.0498189 0.0314944 +-0.0153828 0.128676 0.0170423 +-0.0618725 0.160013 -0.0255862 +-0.0525544 0.0504168 0.0256484 +-0.073344 0.0672327 0.000494062 +0.0393875 0.0460438 -0.00485579 +-0.0152754 0.103231 -0.0233341 +-0.0753549 0.104884 0.0361423 +0.0108274 0.0362708 -0.0225637 +0.0342152 0.0862629 0.0407864 +-0.088758 0.143311 0.0121502 +-0.0572353 0.0465198 -0.0043437 +0.0198267 0.035157 0.00555798 +0.0261922 0.0507168 -0.0207207 +0.0268986 0.0357578 0.0211357 +-0.0349846 0.0837189 -0.0236297 +-0.0222119 0.158173 -0.00418672 +0.024391 0.115338 0.0336864 +-0.0200061 0.124102 0.0256765 +-0.069632 0.0719472 -0.0104624 +-0.0322859 0.0792627 -0.0305329 +-0.0506516 0.033429 -0.00887801 +-0.0358626 0.101452 -0.0219425 +0.0293657 0.0447288 -0.00609588 +-0.0662305 0.0339335 0.0109932 +-0.00786973 0.104508 -0.0230207 +-0.0712429 0.177886 -0.0560058 +-0.00159432 0.129182 0.0263815 +-0.0283933 0.0831937 -0.0356194 +0.0443268 0.0511334 0.0322609 +-0.0318469 0.0958266 -0.0236233 +0.0205346 0.0937418 -0.0232686 +-0.012793 0.0813325 -0.0389447 +-0.0235889 0.0983837 -0.0242804 +-0.062496 0.105649 0.040196 +-0.0194646 0.0347564 0.0483645 +-0.0124518 0.038713 0.0303489 +-0.0444408 0.0335855 -0.0133031 +-0.00148369 0.0732377 0.0582942 +-0.0837769 0.153466 0.0110188 +-0.0898767 0.135147 0.0252168 +0.0369605 0.105409 -0.00483089 +-0.0255274 0.113962 0.0353265 +-0.0539587 0.0338764 0.0242313 +-0.0789197 0.104773 0.0326412 +0.0105421 0.118176 -0.0153416 +-0.0256953 0.0385914 0.0331228 +-0.0336328 0.126783 0.00457249 +-0.0470116 0.0710509 0.0409961 +-0.0930389 0.129675 0.0242521 +-0.0464764 0.0861628 0.0446798 +-0.0561893 0.159558 0.00559608 +-0.0091854 0.130144 0.00917512 +-0.0798951 0.0840617 -0.00859358 +-0.0336645 0.0339705 0.0230467 +0.00935764 0.0539048 -0.0300706 +-0.0831098 0.0777207 0.0215128 +-0.0470469 0.155045 0.00906939 +-0.0135887 0.169514 -0.0234669 +0.0418337 0.0395215 0.00781447 +-0.0276517 0.15535 -0.00385533 +-0.0201931 0.18164 -0.0152257 +-0.0335046 0.177862 -0.00863199 +0.0345014 0.0513521 0.0321623 +-0.0804527 0.143139 -0.00181198 +-0.0816965 0.144555 0.000152955 +0.0607459 0.0623413 0.0091502 +-0.0779458 0.175786 -0.0452228 +-0.0577187 0.146758 0.0323537 +-0.0403111 0.127303 0.0168527 +0.0204871 0.0934146 0.0476927 +0.00588424 0.100173 -0.0220733 +-0.00768539 0.0584014 -0.0338334 +-0.0447099 0.069553 -0.0165571 +-0.0287391 0.0620637 -0.0274208 +0.0157473 0.0947545 -0.0243195 +-0.063441 0.156071 0.0225051 +0.00824182 0.0753956 -0.0338579 +0.00561249 0.0927088 -0.0322048 +-0.0475077 0.0732702 0.0416223 +0.0145005 0.11127 0.0394252 +0.00450182 0.0413372 0.0458645 +0.00631667 0.061015 -0.0309472 +-0.0794763 0.0926775 0.0349659 +-0.0718543 0.111061 0.0453722 +-0.0891984 0.129697 0.0434765 +0.0151955 0.129241 0.0138359 +0.0236821 0.0824052 -0.0254011 +-0.0015019 0.110031 0.0427805 +-0.0215043 0.109928 0.0403615 +-0.0939826 0.118759 0.0192971 +-0.0624131 0.11535 0.0394932 +-0.0833865 0.140392 0.00124854 +-0.0465624 0.124393 -0.00950278 +-0.0146513 0.0496822 -0.0311895 +-0.0641648 0.15616 0.0149932 +-0.0729217 0.126742 -0.00866826 +-0.0253625 0.126177 0.010523 +0.0277777 0.108556 -0.0130095 +-0.0788017 0.0846357 0.0359502 +-0.0247742 0.180145 -0.00956802 +0.0188129 0.101666 -0.0216414 +0.00516264 0.131576 0.00874185 +-0.0633822 0.164679 -0.0305938 +-0.0375944 0.116238 -0.0149818 +0.0194959 0.111012 -0.0156283 +-0.0342918 0.0780403 -0.0245107 +-0.0861846 0.083225 0.00647736 +-0.0161451 0.166792 -0.0199866 +-0.0872007 0.147399 0.00826035 +0.0567195 0.0508531 0.00818949 +-0.0594966 0.100149 0.0427407 +-0.0584967 0.0761953 0.0427061 +-0.0218317 0.124906 0.0220793 +-0.00826101 0.0384472 0.0115633 +-0.0383343 0.121902 -0.0109317 +-0.0521665 0.136903 -0.000627156 +-0.0215605 0.0383186 -0.00194746 +0.0481264 0.060275 -0.00442661 +0.0154998 0.108504 0.0406925 +-0.0729927 0.08468 0.0400334 +0.0156625 0.0631375 0.0506866 +-0.0244911 0.101622 0.043846 +-0.0464946 0.131544 0.00524728 +-0.0496757 0.0678792 -0.0135965 +0.0429479 0.0845778 -0.00579145 +-0.0889655 0.0969901 0.0204055 +-0.0641121 0.152654 -0.0038572 +0.0409571 0.0971716 0.0271682 +-0.0171621 0.0382418 0.0171791 +0.00646008 0.118492 -0.0156628 +0.0328247 0.054955 0.0367483 +-0.0843958 0.13208 -0.00165487 +-0.0521768 0.0517998 0.0286453 +0.0415397 0.0690275 -0.00677 +-0.00193982 0.12966 0.0247961 +-0.0686037 0.157344 -0.00409918 +-0.0332546 0.12417 0.0223928 +-0.0762473 0.0920177 -0.013581 +0.0392491 0.0672477 0.0338308 +-0.0841314 0.0776758 0.00449933 +-0.0638136 0.0680952 0.0346563 +-0.00579523 0.10109 0.0444886 +-0.0717812 0.166615 -0.0459981 +-0.0474379 0.0355948 -0.0152688 +0.0581028 0.0523658 0.0121806 +-0.0787218 0.0967552 0.0354897 +-0.0561139 0.139571 -0.00370722 +-0.0605064 0.0394509 -0.00845033 +-0.0890965 0.111935 0.0113594 +-0.0579064 0.158452 0.00407429 +0.0204977 0.0920241 0.0479175 +-0.0224928 0.0988548 0.044702 +-0.0289733 0.124361 0.000543811 +-0.00750575 0.0457415 0.0474579 +0.043354 0.053395 -0.00666154 +0.0230359 0.124766 0.00534006 +-0.0773785 0.174262 -0.0420678 +-0.0273153 0.0387018 0.0344821 +-2.85469e-05 0.0391507 -0.00580542 +-0.0653748 0.149517 -0.0319115 +-0.0386792 0.0336259 0.00249375 +-0.0655034 0.106997 0.0388261 +0.0203192 0.0679349 -0.0283363 +0.0395784 0.104495 -0.000545476 +-0.0239953 0.114912 -0.0156465 +-0.0660228 0.160133 -0.0132914 +0.0397718 0.0940445 0.031303 +-0.0719497 0.132579 -0.00806719 +-0.0634812 0.0760895 0.041143 +-0.0484925 0.14723 -0.00252533 +0.054748 0.0690996 0.0027667 +-0.0723713 0.156038 0.0237254 +0.034267 0.0613198 -0.014809 +-0.0483876 0.0348751 0.0437589 +-0.05979 0.0839541 -0.0202843 +0.0501248 0.0723145 0.00745971 +0.0347025 0.105449 -0.00966587 +-0.0352566 0.0382472 -0.0299775 +0.0470963 0.045623 0.0254581 +-0.0855435 0.108961 0.00733555 +-0.0206804 0.112216 -0.0188434 +0.00523056 0.0796312 -0.0340387 +-0.0465619 0.047561 -0.00986957 +-0.033587 0.0348608 0.0452447 +-0.0202523 0.125914 0.000840735 +-0.0501104 0.138566 0.0193811 +-0.0264363 0.125919 0.0130719 +-0.0691022 0.159548 -0.0519447 +-0.0245412 0.057448 -0.0303989 +-0.046121 0.0336712 -0.000864342 +-0.0742841 0.155582 0.00848891 +-0.0298186 0.154044 -0.00457012 +0.0302323 0.0969553 -0.0166472 +0.0266877 0.104744 0.0387392 +-0.0843417 0.109004 0.0243603 +-0.0496377 0.143234 0.0104059 +0.0174929 0.0962345 0.0475335 +0.0450677 0.0917906 0.015163 +0.0374841 0.076757 0.0366434 +-0.0215406 0.0711033 0.0513847 +-0.0282153 0.125116 0.00364014 +-0.0284773 0.177212 -0.00607735 +-0.0204956 0.109916 0.0405701 +-0.0784664 0.0703272 0.00666705 +-0.0031698 0.0384355 0.0180459 +-0.0655548 0.153788 -0.00146085 +-0.0229763 0.0945367 -0.0302901 +-0.0192339 0.166857 -0.012207 +-0.0866345 0.094046 0.00237751 +-0.0759405 0.177963 -0.0471435 +0.0442559 0.0973532 0.00916034 +-0.071904 0.103673 -0.0126696 +-0.00666902 0.0541115 -0.0328784 +0.0144947 0.105783 0.0434399 +-0.029312 0.0383797 -0.00726542 +0.0562076 0.0536042 0.00319408 +-0.0829319 0.114342 0.0473556 +-0.069928 0.113662 -0.00916203 +-0.080837 0.120705 -0.00484118 +-0.0680148 0.177312 -0.0499759 +-0.077886 0.0811556 -0.0096326 +0.0350121 0.104701 0.0314746 +-0.0571796 0.0582032 0.0181974 +-0.0932449 0.120197 0.0372886 +-0.0536204 0.0647024 -0.00963527 +0.00250481 0.0870342 0.0569864 +-0.0802055 0.0754813 0.024867 +-0.062996 0.0444935 0.0306768 +-0.00402267 0.0975528 0.0526596 +-0.0883984 0.103684 0.0133796 +-0.0637361 0.133925 0.0394224 +-0.00469624 0.0613427 -0.0349676 +-0.0570417 0.148685 -0.00168484 +-0.062221 0.119852 0.0434664 +-0.0361997 0.0483313 -0.0162949 +0.00950265 0.0517655 0.0513753 +0.00822226 0.0366869 -0.011267 +-0.0383571 0.0360437 0.0112202 +-0.0890914 0.0956431 0.0204208 +-0.0256081 0.0408536 -0.0292407 +0.0374062 0.0397236 -0.000139169 +-0.094388 0.124185 0.0232804 +-0.0615536 0.151288 -0.000477545 +-0.0674057 0.140585 -0.00814985 +-0.0913588 0.113353 0.0143394 +-0.0162447 0.115598 -0.0164334 +-0.00395415 0.0388026 0.0284096 +0.0272466 0.0774691 -0.0233342 +0.0337889 0.112917 0.0264745 +-0.0342171 0.0808501 -0.0245506 +0.0395831 0.0953666 0.0310696 +0.0424402 0.100042 0.00119598 +0.0588348 0.0704992 0.0161593 +0.0129551 0.034265 -0.00247291 +-0.0884357 0.140552 0.0112052 +-0.0545209 0.0388646 -0.0108239 +-0.00760223 0.0406064 -0.0259713 +-0.0671149 0.0634665 0.0239226 +-0.0571873 0.13241 -0.00599886 +-0.0652367 0.0347413 0.0281307 +-0.0733817 0.154066 -0.0309045 +-0.00253313 0.0428829 0.047136 +-0.0768102 0.145866 -0.00487051 +-0.0675702 0.166262 -0.0225175 +-0.0425031 0.0662262 0.0410651 +-0.0579829 0.147131 -0.0018633 +0.0230336 0.049071 0.0400904 +-0.0829949 0.0843947 0.0302754 +-0.0147977 0.0813547 -0.0393324 +-0.015272 0.0385359 0.0263224 +-0.0764401 0.163184 -0.0180705 +-0.00855639 0.121127 -0.0123669 +-0.018702 0.0459339 0.0516744 +-0.0274925 0.0577126 -0.0264141 +-0.0571934 0.155255 0.0174937 +-0.0620081 0.0469936 0.00367346 +-0.010275 0.170544 -0.0261793 +0.0537831 0.0477401 0.0192041 +0.0402375 0.104169 0.000177419 +0.0289937 0.118368 -0.00105099 +-0.039498 0.118035 0.0314 +0.0367284 0.0875226 0.0373878 +0.0431893 0.0764104 0.0272109 +0.0404723 0.0752779 0.0321515 +-0.071418 0.176406 -0.0454588 +-0.0570823 0.138706 -0.0047975 +-0.0666306 0.0689692 -0.00898899 +-0.0691773 0.0628504 0.020491 +0.0144923 0.104443 0.0448169 +-0.0227823 0.0798633 -0.0386035 +0.0278587 0.0463325 0.0365003 +-0.00850193 0.0391005 0.0344133 +-0.0677578 0.16996 -0.0326164 +-0.0367265 0.0725274 -0.0180009 +-0.0681226 0.115765 0.0506532 +-0.0824105 0.154634 0.0158747 +-0.0197211 0.109971 -0.0204733 +-0.0626214 0.149057 -0.0155813 +-0.0414792 0.111213 0.0366505 +0.0570161 0.0508675 0.0161892 +-0.0934473 0.129632 0.0182372 +-0.0463999 0.150559 -0.00488163 +-0.0823822 0.144566 0.00117046 +-0.0310391 0.0892178 -0.0256627 +-0.065854 0.172894 -0.0463248 +-0.069909 0.0416997 0.00317022 +0.0312116 0.11742 0.0240751 +-0.0118175 0.0387383 -0.00407256 +0.01303 0.126665 0.0287751 +-0.0440446 0.129866 0.0080667 +-0.0797747 0.106127 0.0313842 +0.00451933 0.0800063 0.0560543 +0.00739517 0.116252 -0.017256 +0.0277812 0.063284 0.0436054 +-0.0569949 0.126695 -0.00683103 +-0.00960244 0.0420101 -0.025949 +0.0084074 0.123136 -0.0106652 +-0.0428042 0.0338676 0.0265755 +-0.0325056 0.0760815 0.0412743 +-0.0386562 0.0591953 -0.0114762 +-0.0405007 0.0690879 0.0417151 +0.0419622 0.102841 0.00417469 +-0.047644 0.121343 -0.0122933 +-0.0729009 0.105047 -0.011511 +-0.0927931 0.126937 0.0282668 +-0.0656106 0.156261 -0.00734027 +-0.0802248 0.0719997 0.00554401 +-0.00476651 0.0755803 -0.0368945 +-0.0779912 0.139819 -0.00526751 +-0.0864372 0.14049 0.00618869 +-0.0427881 0.157985 0.00470835 +-0.0697618 0.112838 0.0482345 +-0.0800017 0.0786467 -0.00556567 +-0.00794001 0.0994214 0.049751 +0.00252738 0.0716721 0.0561852 +0.0244581 0.0366925 -0.000851561 +-0.0618581 0.153131 0.03333 +-0.0730605 0.177343 -0.046073 +-0.0670133 0.0791411 0.0413099 +-0.00657967 0.0361819 -0.0249969 +0.0332241 0.115988 0.0034015 +-0.0314758 0.118803 -0.0116777 +-0.0714107 0.144356 -0.0151846 +-0.0414986 0.120686 0.028403 +0.0126257 0.034994 0.0315996 +-0.0344792 0.0382691 -0.00267158 +-0.0696814 0.0354769 0.0114289 +-0.0454423 0.0336713 -0.00255197 +-0.0611633 0.0698433 0.0372322 +-0.0520495 0.147795 0.0183962 +0.0467993 0.0745196 0.0137565 +-0.00850445 0.0619527 0.0559735 +-0.0157643 0.0353272 -0.0263783 +-0.0915821 0.144732 0.0201581 +-0.0274038 0.123285 0.0215594 +-0.0667152 0.0419014 -0.00231002 +-0.0408646 0.104225 -0.0205494 +-0.092402 0.129661 0.0272343 +-0.0876501 0.0954829 0.0054069 +-0.063731 0.0751942 -0.0171769 +-0.016949 0.0909918 -0.0366612 +0.0216857 0.0374896 0.0372608 +-0.0733019 0.081934 0.0390113 +-0.033579 0.117839 -0.0126505 +0.00291054 0.0385481 0.0460492 +-0.0648688 0.0938916 -0.0183701 +-0.0931568 0.120191 0.0362904 +-0.0105693 0.129741 0.0187791 +-0.0330922 0.108613 -0.0189923 +-0.0867528 0.121192 -0.00171893 +-0.0398856 0.0351398 0.0419144 +-0.0500753 0.0599861 0.0335137 +-0.0362769 0.163827 -0.00170672 +-0.0161498 0.040504 0.0518582 +0.0390213 0.100628 0.0284944 +-0.0525203 0.0581461 0.0261597 +-0.06389 0.0397139 0.0154457 +-0.0114781 0.0589986 0.0537512 +-0.00335674 0.0424141 0.0475525 +-0.0200738 0.0389483 0.0357554 +0.0112326 0.0738116 -0.0315294 +0.0128141 0.0504969 0.0481838 +-0.0548971 0.104115 -0.019193 +-0.0887169 0.125354 0.00227396 +-0.0712974 0.0669397 0.02531 +-0.0542529 0.0545999 -0.00539104 +-0.0538048 0.159768 -0.00183632 +0.0171004 0.120495 -0.00987579 +0.00927611 0.0667424 -0.0314011 +-0.0928802 0.118867 0.0402859 +-0.0167191 0.0613704 -0.0359554 +-0.0515886 0.0460739 0.0176829 +-0.0182635 0.180096 -0.0244849 +-0.0014996 0.0938866 0.0553603 +-0.0518826 0.071407 0.0396894 +-0.0529375 0.0335557 0.00508499 +-0.0597956 0.0925385 -0.0196216 +-0.0869937 0.104951 0.00838372 +0.0481666 0.0731681 0.01124 +-0.00827202 0.0394277 0.049182 +-0.0607911 0.0810335 -0.0194373 +0.000667625 0.0985049 0.0513232 +0.00310867 0.129093 0.0266332 +0.0296013 0.119582 0.02204 +-0.0285282 0.0378067 0.0260568 +-0.0367133 0.0353138 0.0122122 +-0.0468392 0.132859 0.0202702 +-0.0139293 0.126622 0.0263262 +-0.0191687 0.171226 -0.0215143 +0.0205957 0.0394417 0.0417168 +-0.0692562 0.143958 0.0438704 +-0.037992 0.128312 0.00883318 +-0.0237829 0.0770195 -0.0382449 +-0.0940603 0.120098 0.0152926 +-0.0545976 0.139948 -0.00193829 +-0.0869674 0.103645 0.0213508 +-0.0689616 0.177928 -0.0580053 +-0.079103 0.0731629 0.0235749 +-0.0563149 0.0534289 -0.00138708 +-0.00430179 0.125159 -0.00873129 +-0.0217957 0.119089 -0.0120655 +0.047344 0.0721054 0.0183678 +-0.0206715 0.0524183 -0.0304469 +-0.0292161 0.178518 -0.014988 +-0.0567221 0.0575063 0.0096837 +0.00796175 0.131494 0.0140347 +-0.0163209 0.175704 -0.0185048 +0.0207575 0.0645289 0.0475184 +-0.0365005 0.0676756 0.0415398 +-0.0504985 0.079101 0.0439987 +0.0338763 0.0978118 -0.0135516 +-0.00887371 0.0385959 0.0022117 +-0.0644851 0.0755505 0.0404189 +-0.0877008 0.0923103 0.0248018 +-0.082219 0.074838 0.0095308 +-0.0554964 0.111163 0.0367062 +0.0260064 0.0465031 -0.0156607 +-0.0633419 0.155193 -0.0376165 +-0.0732519 0.0648877 0.00719031 +-0.0769992 0.155545 -0.0179052 +0.0377103 0.0955073 -0.00984226 +0.0174667 0.122816 0.0304302 +-0.0366198 0.0505806 -0.010756 +-0.0144968 0.0472352 0.0484474 +0.00848126 0.0936832 0.0524446 +0.0197906 0.106497 -0.0168156 +-0.0930778 0.121531 0.0352811 +-0.0613674 0.169388 -0.0565896 +-0.0301276 0.038694 -0.0132786 +-0.0662928 0.044787 0.00771957 +-0.0195138 0.0448322 0.0525308 +-0.0886025 0.0887878 0.00646717 +0.0380432 0.109702 0.0166041 +-0.024753 0.0755695 -0.0376923 +-0.089639 0.0983559 0.0164014 +0.0373474 0.083464 0.036489 +0.0200866 0.0429332 -0.0206714 +-0.0362408 0.12776 0.00652715 +-0.0114267 0.182822 -0.0276369 +0.033977 0.115595 0.0137221 +0.016644 0.0381609 -0.019755 +-0.0160134 0.0959893 0.0521651 +-0.0194344 0.115555 -0.0163687 +0.00996296 0.0988804 -0.0226985 +0.0207021 0.0348049 0.000449352 +-0.0655859 0.0333717 0.000880867 +-0.0387964 0.0870429 -0.0222174 +-0.0365713 0.0483594 -0.015218 +0.0310154 0.110075 0.0327245 +-0.0376939 0.0665912 -0.0149459 +0.0401046 0.0466866 0.0313873 +-0.0110827 0.102149 -0.0241692 +0.00841559 0.0375405 -0.0234702 +0.0448731 0.0945767 0.0111579 +0.0145335 0.034759 0.0322003 +-0.059392 0.149673 0.0353015 +0.000291607 0.0641338 -0.034343 +0.00429568 0.0640516 -0.0331969 +0.0450422 0.0931924 0.0131619 +-0.00448954 0.122402 0.0358368 +-0.0326251 0.166779 -0.00520273 +-0.0566266 0.157159 0.00899778 +-0.0131915 0.184654 -0.0268832 +0.0372616 0.0915229 0.0364203 +0.0164447 0.0548852 0.0482217 +-0.0124867 0.11689 0.0385307 +0.00769138 0.039029 0.0323953 +-0.0150057 0.127967 0.0215456 +-0.0860589 0.113009 0.00328149 +-0.0718647 0.175275 -0.0427173 +0.000497507 0.112823 0.0420607 +-0.0832204 0.140695 0.0442806 +-0.0316065 0.039499 -0.0303181 +-0.0689448 0.129685 -0.00899835 +-0.020775 0.0742803 -0.0390259 +-0.0727533 0.0995199 0.0393322 +0.0032483 0.071196 -0.0343078 +-0.0400491 0.154783 -0.00892819 +-0.0345081 0.0832025 0.0425625 +-0.0522702 0.141391 0.00017327 +0.0278273 0.0795375 0.0455649 +0.0269552 0.122658 0.0110745 +0.0348501 0.112087 -0.000408122 +-0.0694924 0.0846972 0.0421957 +-0.0861949 0.139089 0.00320204 +-0.0823568 0.0802033 -0.00152209 +0.00894636 0.0644445 0.055029 +0.0266313 0.0563972 -0.0207832 +0.023933 0.0390696 0.0352942 +-0.0656041 0.136814 0.0420793 +0.0407616 0.105622 0.0111617 +0.058143 0.0551653 0.0211996 +-0.0138904 0.0897489 -0.0373664 +0.0117209 0.130528 0.015412 +-0.0181782 0.126773 0.00187925 +0.039239 0.0589589 -0.00512401 +0.0118091 0.0576645 0.0520801 +0.0101538 0.113447 -0.018237 +0.00107085 0.0391982 -0.0112505 +-0.0726176 0.0747594 -0.0108396 +-0.0504976 0.104261 0.040368 +-0.06047 0.0776106 0.0424994 +-0.0726162 0.166612 -0.0440006 +-0.0345099 0.109779 0.0372255 +0.0371511 0.110987 0.0177157 +-0.0594963 0.1084 0.0386802 +-0.0218558 0.120004 -0.0110164 +-0.0726436 0.159626 -0.0369279 +0.0162217 0.120841 -0.0102336 +0.0462172 0.0729792 0.0194263 +0.0503974 0.0595708 0.0303584 +-0.069034 0.139725 0.045939 +0.0222487 0.0359069 0.0273161 +-0.083623 0.0857135 0.0294569 +-0.0427492 0.0421438 -0.0223063 +-0.0635342 0.161573 -0.0210278 +-0.0632778 0.158345 -0.0436013 +0.049468 0.0445737 0.00523787 +-0.00949755 0.0856659 0.0574293 +0.0137231 0.129888 0.00901711 +-0.0849311 0.0980032 -0.00158096 +0.0094116 0.0360543 -0.0227822 +0.029005 0.115546 0.0303821 +-0.0136476 0.0481469 -0.0303471 +0.0203578 0.0985304 -0.0223097 +0.0386883 0.0767039 0.0348633 +0.0505119 0.0665023 0.0275359 +-0.0236064 0.038163 0.0249493 +-0.0662075 0.060375 0.00901189 +-0.0309847 0.0381919 0.0323901 +-0.0577888 0.0439091 -0.00660137 +0.0319539 0.0795563 0.0427459 +-0.0888256 0.100978 0.0104077 +-0.0149675 0.0986909 -0.0245721 +0.0080932 0.126458 -0.00628099 +-0.0629819 0.128219 -0.0083429 +0.00592947 0.0982847 -0.0240623 +-0.0791963 0.120405 0.0507691 +0.0385114 0.0583288 0.0314228 +0.0327231 0.116168 0.00178038 +-0.0838537 0.110728 0.0339922 +-0.0559583 0.0478125 -0.00439058 +-0.0864154 0.152983 0.0204471 +-0.0846489 0.0778245 0.0165124 +-0.0244888 0.120706 0.0294035 +-0.0565129 0.051223 0.00779351 +-0.00649552 0.111418 0.0421995 +-0.0400289 0.0336199 0.00584373 +0.00964377 0.120482 -0.0138306 +-0.0819198 0.126566 -0.00507678 +-0.023502 0.180157 -0.0112302 +-0.033578 0.0448331 0.0458046 +-0.0771053 0.177652 -0.0476237 +-0.0244946 0.0357757 0.0532784 +0.044574 0.0903504 0.0211613 +0.0317623 0.0938577 -0.0173357 +-0.0767292 0.0860417 0.0380634 +-0.0291365 0.165225 -0.016186 +-0.0558064 0.0562012 0.00862658 +-0.0197239 0.0612902 -0.0351879 +-0.0624763 0.163084 -0.0515885 +-0.00157869 0.0347285 -0.0237137 +0.0250862 0.0741055 0.0468243 +-0.00657564 0.0346831 -0.0243352 +-0.0927326 0.12419 0.0292678 +-0.0642565 0.0418897 0.0384072 +0.0074848 0.0976824 0.0494394 +-0.0324803 0.0436623 0.0489836 +0.0309993 0.0686673 0.04128 +-0.00959045 0.0337105 -0.0233226 +-0.0692347 0.176505 -0.0570351 +-0.0524975 0.111152 0.036921 +0.0434926 0.056984 0.0319757 +-0.0448698 0.104232 -0.0209188 +-0.0689139 0.148999 -0.0367601 +-0.0366298 0.0344715 0.0361774 +-0.0772403 0.0846603 0.0372078 +-0.0866727 0.139248 0.0421058 +-0.0692038 0.156713 -0.0519425 +-0.0286406 0.154979 -0.0065778 +-0.0516452 0.119776 0.0340339 +-0.0604002 0.0591276 0.0185111 +-0.0789005 0.172846 -0.0440952 +-0.0733588 0.0659821 0.00263497 +-0.0644533 0.0351399 0.0400818 +0.0349985 0.0619413 0.0382049 +-0.0116935 0.0584778 -0.0346471 +0.0397873 0.104095 -0.000789682 +0.0261507 0.0923065 -0.0217116 +-0.0643301 0.156694 -0.0446094 +0.0312874 0.108108 -0.0105276 +-0.0718754 0.119424 -0.00835095 +-0.0897483 0.0929448 0.0154361 +-0.0322408 0.125589 0.00213325 +0.0193474 0.0551603 -0.0276297 +-0.0355381 0.0335618 -0.0245193 +-0.0323633 0.175433 -0.0143069 +0.0591153 0.0705615 0.014025 +-0.0685156 0.168032 -0.0539935 +-0.0408127 0.127672 -0.0010356 +-0.070932 0.129672 -0.00889239 +-0.0315034 0.0717826 0.0402663 +0.0139874 0.0924572 -0.0278842 +-0.00310937 0.0390986 -0.00637767 +-0.0315484 0.0749387 -0.030532 +-0.0658202 0.0597996 0.0132017 +-0.074125 0.079542 -0.012586 +-0.042758 0.0336059 0.00168497 +-0.0376274 0.0534153 -0.0106276 +-0.0609006 0.106856 -0.0171292 +-0.0465015 0.112315 -0.0168133 +-0.00832405 0.129364 0.00227931 +0.000993844 0.0989182 -0.0247915 +-0.092775 0.128304 0.0272531 +-0.0024916 0.073257 0.0585379 +-0.0354714 0.0959602 0.0437897 +-0.0798628 0.122191 -0.00554615 +-0.0379836 0.153062 -0.00765575 +-0.0574689 0.0413481 0.0461934 +-0.0681352 0.166058 -0.0212868 +-0.0655788 0.037063 0.0157921 +-0.0104996 0.03868 -0.00189881 +0.00192546 0.0390395 0.0275923 +-0.0598545 0.0467827 -0.000327155 +-0.0510269 0.136724 0.0245519 +-0.0626706 0.0343644 0.032487 +0.0368248 0.11128 0.0190303 +0.047871 0.0733255 0.0156276 +-0.0291332 0.059286 -0.0234112 +-0.0554108 0.0344947 0.0391385 +-0.0892997 0.0956389 0.0174174 +-0.0880049 0.11182 0.00834875 +0.0309816 0.102484 -0.0145328 +0.0183118 0.0665429 -0.0287115 +0.00448658 0.111391 0.0416751 +-0.0902127 0.122664 0.0052855 +-0.0900898 0.119956 0.00430245 +-0.026505 0.174198 -0.0103819 +-0.0214492 0.0963545 -0.0261739 +0.0574071 0.0691343 0.00477569 +-0.0755392 0.154957 0.000803149 +-0.0205078 0.049871 0.046386 +-0.0302748 0.116055 -0.0148216 +0.0522643 0.0732287 0.00987093 +-0.0353184 0.153664 -0.00782609 +-0.0468563 0.101377 -0.0215448 +0.0252483 0.0713214 0.0452679 +-0.01624 0.0963836 -0.0301721 +-0.0374901 0.0505918 0.0391881 +-0.000727236 0.069749 -0.034387 +-0.0295801 0.0368886 0.052851 +0.0174262 0.0350846 0.00327627 +-0.0408044 0.0884947 -0.0224789 +-0.0540496 0.0546601 0.0106814 +-0.0841802 0.136658 0.046769 +0.0265654 0.0388814 0.0291555 +-0.0365515 0.115187 -0.0158874 +-0.0746646 0.0981736 0.0384691 +-0.0461647 0.162128 -0.00806097 +-0.0838755 0.106118 0.000396239 +-0.0634664 0.0345901 0.0373297 +-0.0487026 0.0708482 -0.0151225 +-0.0490488 0.150196 -0.0040443 +-0.0454995 0.107082 0.0401134 +0.015502 0.109895 0.0399577 +0.0339767 0.0796167 -0.0178174 +-0.064903 0.110966 -0.0133006 +-0.0884279 0.0874564 0.00647862 +0.0303366 0.0352283 0.0150252 +-0.0476647 0.15359 0.00991943 +0.0491492 0.0460297 0.00132033 +0.0571336 0.0721807 0.0116675 +0.0423629 0.0398964 0.0150374 +-0.0075036 0.12108 0.0363047 +-0.0304017 0.0791045 -0.033577 +-0.0707511 0.0654954 0.0231537 +-0.0344941 0.171246 -0.000779029 +-0.0516393 0.0618882 -0.0103104 +0.0364959 0.064355 -0.0127735 +0.0258636 0.0344283 0.00929921 +-0.06094 0.0410414 0.0167056 +0.0388283 0.102661 -0.00481845 +0.00951185 0.0560842 0.0527429 +0.0250009 0.0629104 -0.0235842 +-0.0883814 0.100948 0.00841627 +-0.0896675 0.150196 0.0231327 +-0.0502775 0.0487457 0.0176637 +-0.0574379 0.0576833 0.0026039 +-0.0889127 0.145822 0.0300758 +0.00105802 0.0387062 0.0241019 +0.0432951 0.0987146 0.0161577 +-0.00981592 0.123797 -0.00918874 +-0.0235467 0.119499 0.0316537 +-0.0203743 0.127028 0.00506457 +-0.0546314 0.138445 -0.00241154 +0.0144977 0.11819 0.0360011 +-0.0468871 0.150669 0.00925072 +0.00310943 0.110155 -0.0202398 +-0.0315082 0.0817114 0.0416031 +-0.0361907 0.169669 -0.0137878 +-0.0266475 0.0904555 0.0474235 +0.00393808 0.131671 0.0154244 +-0.0594984 0.109765 0.0377884 +-0.0632488 0.167828 -0.0435907 +0.02054 0.116646 0.0351499 +0.046015 0.0862238 0.00817489 +-0.0472066 0.033531 -0.00644781 +-0.0382901 0.126893 -0.00216373 +0.0358746 0.0755562 -0.0137901 +-0.00915886 0.0385694 0.027547 +-0.083022 0.132397 -0.0026267 +-0.0665414 0.155108 -0.00331096 +-0.0344162 0.168264 -0.00253059 +-0.0891077 0.101031 0.0163881 +-0.0165765 0.119912 -0.0109781 +0.00442197 0.11861 -0.0157775 +-0.0234514 0.0892984 0.0527307 +0.0565327 0.0523952 0.0217798 +-0.0515006 0.111173 0.0369493 +-0.0218128 0.183092 -0.0122978 +0.0044132 0.0376001 -0.0242202 +-0.0654801 0.0675388 0.0330326 +-0.010497 0.0717087 0.0563199 +-0.065424 0.0399796 0.0326661 +-0.0228869 0.180156 -0.0121058 +0.0203379 0.125091 8.19329e-05 +-0.0802772 0.089954 0.0344521 +-0.0772906 0.165906 -0.0257637 +-0.012412 0.0382658 0.0163183 +0.0102284 0.0616887 0.0533551 +-0.00987882 0.105925 -0.0227673 +-0.00348977 0.122389 0.0359468 +-0.0759061 0.0675035 0.00967604 +-0.0414986 0.0874028 0.042497 +-0.0605969 0.06056 0.0225173 +0.0395569 0.0702481 -0.0107925 +-0.0329324 0.0638892 -0.016427 +-0.000943594 0.0381622 0.0205587 +-0.0338755 0.107095 -0.0200162 +-0.0125023 0.0486789 0.0487656 +0.0274856 0.0400248 0.0301572 +-0.0008153 0.10869 -0.0211159 +0.0343096 0.0419726 0.0279684 +-0.0247603 0.0865587 0.0527086 +-0.00553736 0.113796 -0.0185731 +-0.021633 0.035044 -0.0280533 +0.00828872 0.130472 0.0213052 +-0.0242184 0.0593353 0.0417104 +0.0288386 0.111536 -0.010211 +-0.0581339 0.0334069 -0.00670381 +0.037704 0.0574555 -0.00668675 +-0.0710158 0.13691 0.0483444 +-0.0305078 0.112529 0.0355647 +0.0343502 0.114842 0.0181324 +-0.0485971 0.0359097 0.00925535 +-0.0288479 0.0578621 -0.0233922 +-0.051497 0.0890197 0.045238 +0.0121456 0.0347039 0.0353715 +-0.0716902 0.155937 0.00211062 +-0.0790692 0.0804499 0.033529 +0.0545445 0.0589886 -0.00181806 +0.0529955 0.0716182 0.0219676 +-0.056511 0.121265 0.0393235 +0.032607 0.0527076 -0.00976892 +-0.0376644 0.0335909 0.0081569 +-0.0936994 0.128298 0.0232525 +-0.0809806 0.0720629 0.0115411 +-0.0239408 0.0886576 -0.0363455 +-0.0859344 0.107632 0.00736881 +-0.0277915 0.0782183 -0.0359607 +-0.0571511 0.0394305 0.0468685 +-0.0839381 0.0791399 0.0214982 +-0.0234217 0.0359155 0.0533704 +-0.0739011 0.106421 -0.010241 +-0.0567145 0.0334976 0.000765085 +-0.0241329 0.157302 -0.00905689 +-0.0128819 0.126866 -0.00238505 +-0.0250553 0.0707727 0.0450037 +-0.0444963 0.119293 0.0294103 +-0.0463222 0.0411097 -0.0132713 +-0.0451547 0.0437693 -0.0122411 +0.0475648 0.0553802 0.031711 +-0.0494965 0.11266 -0.0171746 +0.00314926 0.122256 -0.0116623 +-0.089161 0.137877 0.0251937 +-0.0171561 0.0387671 0.0311342 +-0.0659181 0.10388 -0.0158661 +-0.062107 0.163118 -0.0365927 +0.0444569 0.0444867 0.0259758 +-0.0206484 0.0464719 -0.0278809 +-0.0668387 0.144945 -0.0185544 +-0.0574928 0.102919 0.0421703 +-0.0655518 0.166572 -0.0275081 +-0.0339393 0.126307 0.017694 +-0.0176989 0.0554882 -0.03328 +0.012239 0.0794574 -0.0314827 +-0.0344963 0.094609 0.0443801 +0.0228685 0.123786 0.00100726 +-0.0920259 0.132307 0.0132318 +-0.0713267 0.169665 -0.0267525 +-0.081588 0.0788215 -0.00249997 +-0.0755712 0.102178 0.0364401 +-0.0482055 0.0335674 -0.00667883 +-0.0295069 0.109802 0.0378356 +-0.0819634 0.103331 0.0300688 +-0.0766364 0.0788383 -0.00918256 +-0.0472353 0.12392 0.0280317 +-0.0424858 0.064826 0.0410217 +-0.00749383 0.112788 0.0415528 +-0.0321607 0.174124 -0.015122 +-0.0148084 0.124344 -0.00565133 +-0.0630295 0.126909 0.044075 +-0.0122771 0.129643 0.0167063 +-0.0137469 0.0714346 -0.0382786 +0.0253964 0.0981715 0.0439168 +-0.0105339 0.100499 0.0452584 +-0.0909546 0.139232 0.0191849 +-0.0239226 0.16684 -0.0101968 +-0.00433796 0.0387886 -0.000752538 +0.00920046 0.0879669 -0.0320124 +-0.0404937 0.0662835 0.0416604 +-0.0569887 0.118401 0.0385929 +-0.0715396 0.0362187 -0.000138838 +0.0226226 0.0591926 0.0466634 +-0.0544937 0.112536 0.0358256 +-0.0843481 0.145997 0.00513587 +-0.022811 0.0756351 -0.0385829 +-0.0666897 0.0735998 -0.0145924 +-0.0404977 0.116683 0.0325662 +0.0032744 0.114489 -0.0193505 +0.00148054 0.0413996 0.0463959 +-0.0245078 0.0767611 0.0513331 +-0.0308625 0.101511 -0.0227041 +0.00533966 0.0345787 0.0412861 +-0.0774755 0.170095 -0.0341987 +-0.0650593 0.125632 0.048098 +0.0112751 0.0505364 0.0494832 +-0.0786212 0.0976351 -0.0095679 +-0.0726748 0.0647223 0.00565049 +-0.0350102 0.158094 0.00367693 +0.0175012 0.11539 0.036772 +-0.0205761 0.0350586 0.0512942 +-0.0408828 0.108487 -0.0195205 +-0.0324978 0.0661054 0.0396515 +-0.0860138 0.0845642 0.00148082 +0.00924462 0.0710839 -0.0326657 +-0.0573888 0.0342428 0.0302238 +-0.0809405 0.141759 -0.00181375 +0.0351408 0.0931106 -0.0145377 +0.0391769 0.106978 0.0201683 +-0.0378047 0.0342916 0.0307956 +-0.0614885 0.0932285 0.0449784 +-0.00750736 0.0561433 0.0534652 +0.0317881 0.0564278 0.038783 +-0.0258626 0.0378286 0.0139698 +-0.0515546 0.0445278 -0.00899667 +-0.010869 0.165486 -0.0158779 +-0.0297303 0.109983 -0.0184292 +-0.0469177 0.0346518 0.0071269 +-0.0286016 0.109083 -0.0194963 +-0.0109096 0.172768 -0.0212178 +0.00821291 0.0711477 -0.0331375 +0.00315167 0.10307 -0.0219554 +-0.0472567 0.132959 0.0215876 +-0.0825276 0.142074 0.0435561 +-0.0136058 0.093388 -0.035076 +-0.0179202 0.0385865 -0.0163394 +-0.0641268 0.0405801 0.0396199 +0.0124469 0.129111 0.00141235 +-0.0637038 0.0343279 0.0323025 +0.0354218 0.100763 0.0338403 +0.0121385 0.130422 0.0141392 +0.00281822 0.126541 -0.00629609 +0.000901863 0.122026 -0.0113896 +-0.0702669 0.176516 -0.0559875 +-0.0576072 0.0336162 0.0112663 +0.0129045 0.125515 -0.00527553 +-0.021518 0.115416 0.036565 +-0.01542 0.16691 -0.0137031 +-0.0365035 0.168234 0.000585726 +0.00464616 0.034105 0.00716872 +-0.0319348 0.125225 0.000800634 +-0.0169495 0.0390889 0.0362738 +-0.024481 0.104364 0.0426891 +0.0161036 0.0393372 0.0440174 +-0.0397156 0.127552 0.0155957 +-0.0063009 0.09425 -0.0339062 +-0.00549064 0.104476 0.0440202 +-0.0455034 0.104326 0.041412 +-0.0625466 0.16468 -0.0375945 +-0.0334032 0.0765382 -0.0275106 +-0.0118225 0.0855318 -0.0386599 +0.0100166 0.0833203 0.0549696 +-0.0685481 0.156429 0.0206858 +-0.0705717 0.158164 -0.0459142 +-0.0185161 0.125172 -0.00248935 +-0.0185539 0.095955 -0.0297446 +0.0191428 0.127427 0.0167214 +-0.0145095 0.171282 -0.0176637 +0.0352621 0.0826509 -0.01774 +-0.0526579 0.0504274 0.026653 +0.00237351 0.0465882 -0.0283321 +-0.0854761 0.132564 0.04817 +-0.0868299 0.0846427 0.00348465 +-0.0105903 0.0377043 -0.0258398 +0.00953188 0.0455622 0.0461832 +-0.0662037 0.154495 -0.0505507 +-0.0856221 0.107687 0.0203552 +-0.0858054 0.102155 0.00239755 +-0.0248162 0.126254 0.00926143 +-0.0398081 0.128271 0.00374611 +-0.00949649 0.0546877 0.0525704 +-0.0474662 0.0960033 0.0439936 +-0.0787761 0.1431 -0.00379727 +0.0264606 0.0663192 -0.0226274 +-0.0294891 0.119549 -0.0104626 +-0.0285179 0.0948797 -0.0246293 +-0.0561001 0.14389 0.0312058 +-0.0930288 0.116051 0.018311 +-0.00894653 0.174179 -0.0257648 +-0.0524908 0.113899 0.0349209 +0.0158504 0.0959717 -0.0236278 +-0.0694879 0.0368888 0.0112092 +-0.0802884 0.146109 0.0411929 +-0.0498232 0.0349806 0.0446412 +0.0342731 0.115225 0.0123899 +0.0283978 0.0955434 -0.019149 +-0.0515486 0.141607 0.0193759 +-0.0458573 0.147704 0.00717141 +-0.0735436 0.175947 -0.0433626 +-0.0758292 0.0935231 -0.0136873 +-0.0554898 0.041398 0.0465154 +0.0604856 0.0623173 0.00815473 +0.0135991 0.100782 -0.0226731 +-0.021666 0.16235 -0.015178 +-0.0474866 0.0573572 0.0366835 +-0.0645248 0.154173 -0.00692339 +0.0454055 0.0747572 0.0215389 +-0.0497578 0.0797288 -0.020162 +-0.0463447 0.129406 0.0234768 +0.0153317 0.0580768 -0.0287753 +0.0124861 0.100431 0.0478938 +-0.0288456 0.0986889 -0.0235542 +-0.00949656 0.0471698 0.047803 +-0.0644726 0.165628 -0.0285568 +0.0564615 0.0703554 0.0055259 +-0.0477419 0.0345444 0.0337565 +-0.0415114 0.0520187 0.0393909 +-0.0165872 0.128419 0.0166112 +-0.0649318 0.168832 -0.0387572 +-0.0230309 0.0906523 0.0522978 +-0.0289316 0.0889882 -0.0316153 +-0.0522528 0.0567257 0.0259279 +-0.0113061 0.169739 -0.0249506 +0.0329977 0.0514306 -0.00763543 +-0.0104801 0.120983 0.0360777 +-0.0848294 0.111312 0.0422165 +0.0597675 0.0609389 0.00613027 +-0.0264774 0.0473675 0.0499125 +-0.00223749 0.0939165 -0.0335391 +-0.0188762 0.171241 -0.0152046 +0.0460317 0.0820288 0.0151733 +-0.00015619 0.0389464 0.0272511 +-0.0490964 0.156122 -0.00621407 +0.0240569 0.111353 0.0367066 +-0.0427705 0.0826571 -0.0207663 +-0.0844768 0.0856095 0.0274708 +-0.0120306 0.174239 -0.0210892 +-0.00550834 0.0689154 0.0563731 +0.0289606 0.0679277 -0.0207366 +-0.0308933 0.12367 0.0217821 +-0.00650569 0.0675101 0.0559953 +-0.0789661 0.0859916 0.0360799 +-0.0291346 0.177171 -0.00534178 +-0.0560039 0.140764 -0.00299974 +-0.0584999 0.107052 0.0397144 +0.00834583 0.0539265 -0.0302958 +-0.0169173 0.16018 -0.0117745 +-0.0698587 0.0680767 -0.00467294 +0.00525002 0.0740223 -0.0345195 +0.0110199 0.0860342 0.0546992 +0.0173361 0.0608154 -0.0277985 +0.0111302 0.107269 -0.019511 +-0.021494 0.10578 0.0424616 +0.0436775 0.0859385 0.0262014 +-0.0587477 0.0767588 -0.0188591 +0.0107799 0.0548821 0.052327 +0.0185294 0.0358466 0.0392699 +-0.0859998 0.135257 0.0457789 +-0.0767885 0.154209 -0.0148974 +-0.0613392 0.0587193 0.00967832 +-0.0712669 0.0381904 0.00872646 +0.00351715 0.0561463 0.0534882 +-0.0427983 0.0884442 -0.0218161 +-0.0898373 0.133802 0.0342135 +-0.0414226 0.150668 0.00483874 +0.0173651 0.049165 -0.0241471 +-0.0213294 0.0783028 0.0551779 +0.0143433 0.0537792 -0.0282321 +-0.0784743 0.140032 0.0478552 +-0.0334891 0.0889549 0.0439078 +0.0190476 0.0795376 0.0522219 +0.0286264 0.0638437 -0.020406 +-0.054069 0.139552 0.0288194 +-0.0132381 0.0385471 0.0267309 +0.0118566 0.0887261 0.0541581 +0.0316481 0.100683 -0.014625 +-0.093138 0.120057 0.0112982 +0.0244505 0.0384021 -0.00302114 +0.0122037 0.0864617 -0.0308592 +-0.0121165 0.0973987 0.0513433 +0.0371269 0.09285 0.0362758 +0.00753839 0.119505 -0.0147629 +-0.0698326 0.0937229 -0.0162704 +-0.046496 0.105677 0.0407002 +-0.00449814 0.0870358 0.0571267 +-0.00560579 0.042007 -0.0256504 +-0.0748416 0.154048 -0.0189002 +0.0138852 0.0348367 0.0283807 +-0.0890009 0.118943 0.0464523 +-0.0703858 0.16802 -0.0500308 +-0.0208115 0.124915 -0.0021319 +-0.0399669 0.0343914 -0.00210399 +-0.0188044 0.120762 -0.00982397 +-0.0825182 0.0816676 0.0298907 +-0.0625957 0.0588736 0.0128867 +-0.0908844 0.150204 0.0171288 +-0.073715 0.17176 -0.0333959 +0.0304194 0.0446109 0.0313507 +-0.0364972 0.0605644 0.0405385 +-0.0684905 0.158118 -0.0539401 +0.011386 0.0343226 -0.0122219 +-0.0375464 0.119352 -0.0122401 +-0.036497 0.102841 0.0405772 +0.0373988 0.0430101 -0.00376662 +-0.00864037 0.0526884 -0.0330777 +-0.0505191 0.112725 -0.0172384 +0.000747713 0.131321 0.00709666 +-0.0821064 0.110205 0.0294137 +-0.0338319 0.0498039 0.0388148 +-0.0399647 0.128635 0.00811119 +0.0262642 0.0479348 -0.017662 +-0.093142 0.118716 0.0123041 +-0.0234219 0.0537493 0.0424994 +0.0109672 0.0977693 -0.023517 +-1.32571e-05 0.13145 0.0125463 +0.0200527 0.0618555 0.0482337 +-0.0119089 0.128954 0.021205 +-0.0524994 0.0903873 0.0447034 +-0.0334979 0.0845774 0.0421828 +0.0190672 0.117213 -0.0123322 +-0.0263135 0.0381467 0.0262093 +0.034589 0.108233 -0.00663102 +0.0435886 0.091694 0.0241609 +-0.00849618 0.0939016 0.0554996 +-0.0579701 0.125253 -0.00738272 +-0.016138 0.0382862 0.0119165 +-0.0709351 0.0742605 0.0366097 +-0.0125367 0.128434 0.00198737 +-0.0244307 0.0379986 0.0104913 +-0.0681277 0.152206 0.0356633 +-0.0279464 0.0689892 -0.032513 +0.0398535 0.0752995 0.0330037 +-0.0636875 0.0722354 -0.0149801 +0.00569987 0.0949071 -0.0304911 +0.0217235 0.120687 0.0315848 +0.0306109 0.0549842 0.038821 +-0.0719231 0.155792 0.0253493 +-0.0350091 0.168257 -0.00164334 +-0.0919787 0.13239 0.0232249 +-0.0781961 0.0730005 -0.00359699 +0.0587114 0.0663183 0.00513779 +-0.0669656 0.147091 -0.0266318 +-0.0880403 0.150094 0.0102212 +-0.0137235 0.0657235 -0.0372342 +-0.0884987 0.102354 0.0183681 +-0.0219433 0.0386564 0.0320445 +-0.0629896 0.0341974 0.0167609 +0.0436977 0.0404602 0.0147575 +-0.0413787 0.124797 0.0224172 +-0.0255118 0.0931431 0.0461963 +-0.0122206 0.175683 -0.0283056 +-0.0580888 0.115436 0.0369297 +-0.0783607 0.150068 -0.00187639 +0.0561422 0.049398 0.0141897 +-0.0334907 0.0932064 0.044455 +-0.0784392 0.144133 0.0443751 +0.0134754 0.0990564 0.0479483 +-0.0673994 0.0396352 0.0118227 +-0.0719379 0.131113 -0.00828186 +-0.0675058 0.060447 0.0122781 +-0.0276134 0.0408758 -0.0294796 +0.0326756 0.117173 0.0132168 +-0.0741715 0.151271 -0.0318825 +0.0191559 0.0577995 0.0486799 +-0.0624968 0.102902 0.0415908 +-0.0467288 0.054632 0.0374442 +0.0400692 0.0773178 -0.00879643 +-0.0293794 0.119962 0.0282913 +0.026315 0.0849274 0.0469361 +0.00747158 0.0458651 0.0478111 +-0.0644149 0.0731789 0.038947 +0.0243686 0.118145 -0.00732959 +0.0357612 0.0614637 -0.0127934 +-0.00578852 0.0784633 -0.0377499 +-0.0177178 0.125534 0.0250034 +-0.0264348 0.0891318 0.0486594 +0.000504451 0.0842848 0.0575158 +0.00240772 0.0390703 -0.0246208 +-0.0401081 0.172699 -0.00896014 +-0.0494967 0.101524 0.042218 +-0.0255895 0.0365546 -0.0292581 +0.0458597 0.0428246 0.0032848 +-0.0627733 0.141026 0.037362 +-0.0278525 0.100136 -0.023576 +0.03144 0.0681325 -0.0188162 +0.0112459 0.129755 0.00240428 +-0.0872718 0.144583 0.0355002 +-0.0552077 0.119827 0.0376818 +-0.0324974 0.0859857 0.0423469 +-0.0872251 0.0950749 0.0256867 +-0.0468678 0.104213 -0.0207743 +-0.0445775 0.0462028 -0.0108205 +-0.0612826 0.0343712 0.0345145 +-0.0144859 0.0951551 0.0535558 +-0.0770239 0.141306 -0.00545257 +-0.0572927 0.0447946 0.0143752 +0.0334156 0.0430777 -0.00456693 +-0.073856 0.154091 -0.0259028 +0.0392277 0.108354 0.00916622 +-0.0254312 0.0379511 0.0211651 +-0.0579761 0.145744 -0.00191597 +0.016043 0.107446 -0.0178315 +0.0243862 0.0955601 0.0459654 +-0.0527854 0.146248 0.0203946 +-0.0908456 0.137855 0.0191944 +-0.0688648 0.111591 0.0438135 +0.00950305 0.108494 0.0403312 +-0.0846701 0.133487 -0.000689201 +-0.0146178 0.161254 -0.0115208 +-0.0517406 0.0704199 0.0388209 +-0.00483682 0.0910121 -0.035647 +-0.0455024 0.0438631 0.0430524 +-0.0269915 0.165366 -0.00760144 +-0.000429299 0.131494 0.0138246 +-0.0108252 0.0340132 -0.0200775 +-0.053792 0.141582 0.0273817 +-0.0807416 0.0720213 0.00853917 +-0.0886543 0.102345 0.0123871 +0.00450201 0.0745047 0.0565768 +-0.0651106 0.120024 0.049809 +-0.0816493 0.14593 0.000178819 +-0.0317919 0.0396266 0.0512352 +-0.0868829 0.105004 0.0193534 +-0.0587854 0.0839965 -0.0207846 +-0.0568787 0.10406 -0.0186489 +0.0234195 0.0349614 0.0211471 +-0.0247363 0.0683356 -0.0352871 +-0.0124919 0.105832 0.0432095 +0.040945 0.0957511 0.0281635 +-0.0357042 0.0681118 -0.016092 +0.0393973 0.0899152 -0.0117774 +-0.00550412 0.0547964 0.0538028 +0.0275305 0.105074 -0.0152759 +0.0436438 0.0973161 0.0031761 +-0.0642775 0.0356785 0.0173446 +-0.0578787 0.118384 0.0390612 +-0.0235304 0.111308 0.039012 +-0.0248685 0.10443 -0.0231858 +0.0332298 0.0870923 -0.0186827 +-0.050788 0.13247 -0.00197537 +0.0485095 0.0723104 0.0188157 +0.0122831 0.123395 -0.0089862 +0.0075079 0.0786108 0.055765 +0.00110358 0.114412 -0.0192684 +-0.0434472 0.0344528 0.0312293 +0.0149724 0.0740286 0.0533099 +-0.0773286 0.0696655 0.0199272 +-0.000294503 0.124716 -0.00828566 +0.0391665 0.0916193 -0.0109453 +-0.0671371 0.169442 -0.0570354 +-0.0101504 0.0993437 0.0489973 +-0.0383111 0.172675 -0.0109203 +-0.048519 0.137086 0.0153953 +0.0537553 0.0686728 0.0251859 +-0.0642372 0.158555 -0.0140759 +-0.0177679 0.0959988 0.0511065 +-0.071022 0.0408196 0.00705143 +-0.0272272 0.0562777 -0.0264072 +-0.0594982 0.10293 0.0419773 +-0.0516777 0.0668198 0.0365892 +-0.00645905 0.128953 0.0260767 +0.0161504 0.121694 -0.0091598 +0.0437177 0.0457281 0.0283091 +-0.092911 0.118706 0.0113064 +0.0110654 0.0346569 0.0243461 +-0.0131306 0.0351789 0.049391 +0.0159998 0.123366 -0.00698095 +-0.0668407 0.0952437 -0.0171577 +-0.071815 0.0936645 -0.0155813 +-0.0350082 0.162373 -0.00163299 +-0.00952557 0.169814 -0.0256004 +-0.0483792 0.0345623 0.0353569 +0.042732 0.0733313 -0.00479409 +-0.0838195 0.113254 0.0462465 +-0.0700699 0.0415411 0.00206928 +-0.0834164 0.110194 0.0380909 +0.0395682 0.0582726 0.0307001 +-0.0527297 0.0738092 -0.0169322 +-0.0800112 0.0826849 -0.00756298 +0.0378591 0.102628 -0.00683982 +-0.010049 0.165099 -0.0207588 +-0.0214981 0.0486638 0.0490621 +-0.0429934 0.0337652 -0.0113325 +-0.000805756 0.0881637 -0.035184 +-0.0796191 0.0899783 0.0351979 +-0.0774871 0.138654 0.0489668 +-0.0910383 0.131037 0.0312282 +-0.0353528 0.121762 0.0276148 +-0.0692517 0.16944 -0.0530112 +-0.0314965 0.0760483 0.040909 +0.0238425 0.124265 0.00565298 +0.00628938 0.0341841 -0.018778 +-0.0581165 0.0576994 0.00562055 +0.0291881 0.120758 0.0119009 +-0.0722612 0.0718535 0.0331389 +0.00962203 0.129808 0.0232185 +-0.0350797 0.159271 -0.0126349 +-0.0536324 0.0335534 0.00133593 +-0.0104359 0.0944019 -0.0340934 +-0.00347107 0.112728 -0.01944 +0.0492065 0.0445737 0.00425603 +-0.014689 0.0555534 -0.0339367 +-0.0729302 0.110914 0.0452396 +0.0128104 0.0891816 -0.030491 +0.0173644 0.052219 -0.0267492 +-0.0755038 0.138646 0.0489499 +-0.0664863 0.0657678 0.0290911 +0.014321 0.0608889 -0.0289153 +-0.0109854 0.0891937 -0.0368255 +-0.0714642 0.155388 -0.0429121 +-0.0674015 0.178779 -0.0526749 +-0.0136021 0.0406665 -0.0268707 +-0.0656159 0.148667 -0.029991 +-0.0795217 0.0705829 0.00954625 +-0.0757838 0.06757 0.0150388 +-0.0619636 0.125289 -0.00856668 +-0.0639176 0.153606 -0.0366205 +-0.0839617 0.114292 0.0471508 +-0.0125655 0.164041 -0.0130929 +-0.0519903 0.161388 0.00628165 +0.0020129 0.0391581 -0.00540617 +-0.0585951 0.0582039 0.0052961 +0.034843 0.0862437 0.0399362 +-0.0416697 0.0377451 -0.0272469 +0.0488349 0.0718069 0.020409 +0.0223863 0.0449715 0.0408911 +-0.0822334 0.107404 -0.00162196 +-0.0602698 0.154572 0.0280125 +0.0297856 0.120093 0.00926746 +-0.0669649 0.131148 -0.00876196 +-0.0800697 0.154441 0.0255089 +-0.0849288 0.12649 -0.00334252 +-0.000500036 0.0952296 0.0545194 +0.0151613 0.0863718 -0.029541 +0.0388132 0.0794166 0.0350891 +-0.0171133 0.0390763 0.0521827 +-0.0784063 0.0886978 0.0368492 +-0.0643001 0.179479 -0.0601392 +-0.0766538 0.11399 -0.00481419 +-0.016912 0.0931258 -0.0348233 +0.0379841 0.0406211 -0.00115448 +-0.0331507 0.0821697 -0.0275285 +0.0162383 0.0953367 0.0482094 +-0.0326141 0.0638332 -0.0174509 +-0.0725041 0.146981 0.0423864 +-0.0910261 0.12541 0.00626868 +-0.0833424 0.104748 -0.00163012 +0.0153058 0.128412 0.00248962 +0.0403512 0.038719 0.00830945 +-0.0325027 0.0603855 0.0384943 +-0.0195554 0.0387278 -0.0149268 +-0.0839725 0.0897798 0.0296574 +-0.00149888 0.0634085 0.0566876 +0.0387554 0.108357 0.00416438 +-0.0444079 0.0409084 -0.0203048 +-0.0868827 0.0896245 0.0255163 +0.0430409 0.10011 0.0131585 +0.0194835 0.105739 0.0423148 +0.032957 0.115724 0.0233075 +-0.0114871 0.063283 0.055206 +-0.0528865 0.15117 0.0191272 +0.0045048 0.104341 0.0428855 +0.00104791 0.0346359 -0.0164332 +-0.0674529 0.180926 -0.0583799 +-0.0344427 0.15352 -0.00733684 +0.0397392 0.0658643 0.0327972 +-0.0465986 0.120315 -0.0132329 +0.015269 0.034844 0.035887 +-0.0554963 0.0791301 0.0442202 +-0.0342911 0.0473692 0.0421968 +-0.0842876 0.108899 0.00336188 +-0.0262668 0.179961 -0.0169689 +-0.0836964 0.0763445 0.00752427 +-0.0696635 0.159559 -0.0499324 +-0.0661058 0.151041 -0.0375744 +-0.0455019 0.122005 0.0261109 +-0.0890685 0.0969888 0.0194042 +-0.0946116 0.124177 0.0212718 +0.00351301 0.0828608 0.0571024 +-0.0555168 0.154658 0.0152234 +0.00450223 0.0730917 0.0563795 +-0.0125112 0.037888 -0.0164908 +-0.0595378 0.0337212 0.0161226 +-0.0645332 0.120008 0.0489179 +-0.0396568 0.0577566 -0.0113194 +-0.052454 0.13854 0.0254099 +-0.0106577 0.165418 -0.0198106 +-0.0477868 0.0855382 -0.0218048 +-0.07021 0.168534 -0.0249229 +0.0345025 0.0454126 0.0301845 +-0.0261438 0.168232 -0.0181898 +-0.0685956 0.0422314 0.00876662 +0.00130397 0.128647 -0.00252095 +-0.0558871 0.108356 -0.0181276 +-0.0163928 0.0384645 -0.00103951 +-0.0364756 0.0917702 0.0440382 +0.0409317 0.0971197 -0.00479362 +-0.015772 0.160715 -0.00958045 +-0.0428613 0.102811 -0.0212634 +-0.0285136 0.112565 0.0358423 +0.0484971 0.0678077 0.0264809 +-0.0319101 0.121969 -0.00695975 +-0.0200308 0.127492 0.00809368 +-0.0860481 0.114371 0.00228673 +-0.0597203 0.0638916 0.0303834 +0.00627327 0.0682324 -0.0325665 +0.0114155 0.128646 -0.000626619 +-0.0516778 0.140064 0.0213757 +-0.0218071 0.110009 -0.0205036 +-0.0218161 0.0798852 -0.0388524 +-0.02847 0.045966 0.0500228 +0.0429765 0.0987175 0.0181666 +-0.0795395 0.117686 0.0497856 +0.0342026 0.113899 0.000840527 +0.0067112 0.0353739 0.0246266 +0.0402464 0.0618954 -0.00472398 +-0.049455 0.118007 0.0316443 +-0.0442176 0.170815 -0.00391429 +0.00731658 0.0846292 0.0563131 +-0.0542668 0.0504201 -0.00539584 +-0.00648076 0.0969085 -0.030657 +0.0597202 0.067814 0.0181758 +-0.0267919 0.0380272 0.00817341 +-0.0702433 0.163232 -0.0134117 +0.0368364 0.0754262 0.037436 +-0.077497 0.168713 -0.0313178 +0.00996165 0.130854 0.00764162 +0.0133618 0.0523173 -0.0278769 +-0.0337147 0.120592 -0.00951232 +-0.0398766 0.113891 -0.0165093 +-0.089592 0.111931 0.0163329 +-0.0841359 0.0832101 0.027497 +-0.0848856 0.0792043 0.0194951 +-0.0291817 0.0832547 -0.0346104 +0.013224 0.0341678 -0.000459678 +-0.00759782 0.103673 0.0436498 +-0.0514921 0.0804912 0.0440592 +-0.0929632 0.124088 0.0102675 +-0.0586925 0.0677294 -0.0118268 +0.0392263 0.0874331 0.033936 +-0.052704 0.143169 0.0214165 +-0.0286941 0.0380883 0.0293671 +0.0183138 0.0348993 0.0256062 +-0.0644855 0.101502 0.0419335 +-0.0547363 0.159762 -0.000811248 +0.0123244 0.0567269 -0.0296218 +0.0294314 0.0509988 -0.0157519 +0.0386176 0.0874608 0.0348475 +-0.0759101 0.148612 -0.0128604 +0.0152406 0.0723235 -0.0303843 +-0.0475913 0.133999 0.00741747 +-0.0109726 0.115573 -0.0164387 +-0.040716 0.0681271 -0.0158645 +-0.000345107 0.127203 0.0297544 +-0.0856388 0.100529 0.0267624 +0.0372748 0.0576283 0.0326444 +0.0454709 0.0664599 0.0266758 +-0.040383 0.152127 0.00460721 +-0.0503264 0.131112 0.0307063 +-0.061863 0.0953699 -0.0186332 +-0.0356336 0.11996 -0.0108661 +-0.000498349 0.118323 0.0391474 +-0.00744633 0.0386202 0.0260498 +-0.0702648 0.156758 -0.047919 +-0.0607772 0.146055 -0.00361746 +-0.0557733 0.0797194 -0.0205764 +-0.0286229 0.0450027 -0.0280846 +-0.0400285 0.0339876 -0.0295458 +-0.0244818 0.0974513 0.0444604 +-0.0736592 0.0887741 0.0405778 +-0.0626256 0.150596 -0.021578 +-0.0455006 0.117978 0.0306048 +-0.0153159 0.119411 -0.012435 +0.00132313 0.0358703 0.0464707 +-0.0231138 0.0666037 0.0460408 +-0.0487946 0.0869761 -0.0218357 +0.0312031 0.0842875 -0.0196213 +-0.0866673 0.109085 0.0143521 +-0.0716243 0.157487 -0.00225608 +0.0404941 0.0555582 0.0318463 +-0.0624591 0.155071 0.0054624 +-0.043713 0.0695592 -0.0168487 +0.00662363 0.128671 -0.00261559 +0.0292045 0.0356392 0.0180684 +0.0152063 0.0878077 -0.0294658 +0.0560899 0.059136 0.000193317 +0.0162996 0.0623114 -0.0287447 +0.00333411 0.0539266 -0.0303683 +-0.0212016 0.0383732 -7.87452e-05 +-0.0683674 0.147186 -0.0280671 +-0.0614001 0.124084 0.0428232 +-0.0273522 0.0939518 -0.0257303 +-0.0526652 0.0647199 -0.0102 +-0.032486 0.0449059 0.0475402 +-0.0090473 0.168146 -0.0217175 +-0.069891 0.119438 -0.0086356 +-0.0744393 0.114503 0.0509494 +-0.0648928 0.0350374 0.038379 +-0.00019365 0.125094 0.0326823 +-0.039166 0.0355671 -0.0293815 +-0.0258209 0.0692735 0.0430043 +-0.0620187 0.175667 -0.057604 +-0.0903815 0.130904 0.00623191 +-0.00457753 0.11466 -0.0174869 +-0.0733982 0.114573 0.051125 +0.00137655 0.0380516 0.0229424 +-0.0197661 0.0728664 -0.0388949 +-0.0370853 0.162227 -0.0135318 +-0.0166846 0.109701 -0.0201927 +-0.0564987 0.0932477 0.0451284 +-0.086761 0.084678 0.016478 +-0.0201321 0.0568083 0.0475876 +-0.0893331 0.111939 0.012355 +-0.0291964 0.162421 -0.00376774 +-0.0840799 0.143223 0.00416483 +-0.0550692 0.121281 0.0379498 +-0.0258999 0.0382697 0.0279803 +-0.0881372 0.150234 0.0261027 +-0.0189632 0.0385431 -0.0165058 +0.0252198 0.0478964 -0.0186081 +-0.0250024 0.118057 -0.0129436 +-0.0341053 0.162392 -0.00207929 +-0.0455587 0.0461599 -0.0105245 +-0.0673284 0.11863 0.0518333 +-0.0767393 0.157602 -0.0105393 +-0.0460199 0.0377083 0.0451098 +0.00937824 0.0346871 0.0203526 +-0.0232543 0.181611 -0.01087 +-0.0185423 0.0342292 -0.0199208 +0.0094823 0.034855 0.0256576 +-0.00349094 0.060529 0.0547186 +-0.0536823 0.0678463 -0.0129474 +0.0573543 0.0687146 0.022093 +0.0297466 0.036015 0.0196643 +0.0183828 0.0447123 -0.0227438 +-0.00451438 0.1296 0.000561158 +-0.0575172 0.037335 -0.0101901 +-0.0273178 0.113609 -0.0162558 +-0.0127855 0.0392769 0.0369668 +0.0359154 0.0915824 -0.0149202 +-0.0321871 0.0680263 -0.0214501 +0.0373115 0.0673123 0.0362946 +-0.0482709 0.0345995 0.0405757 +-0.0586992 0.142676 -0.00307276 +-0.0720231 0.149543 -0.0391183 +-0.0926193 0.122848 0.0312739 +-0.00649959 0.103045 0.0436802 +-0.0172605 0.128293 0.0149127 +0.0500544 0.0553974 0.0300563 +-0.0459009 0.131661 0.0191601 +-0.0355139 0.176726 -0.00796363 +-0.0132739 0.162396 -0.014817 +-0.0205091 0.112696 0.0389743 +0.0400974 0.0943736 -0.00783899 +0.0445099 0.0945603 0.0161557 +-0.00940844 0.100291 -0.0242411 +-0.0880121 0.147225 0.0305337 +-0.0134729 0.17718 -0.0214028 +0.0289055 0.0408264 0.0297172 +-0.0386238 0.0335154 -0.0250853 +-0.0474847 0.0931518 0.0438057 +0.0385195 0.109282 0.00815775 +-0.0094889 0.119647 0.0372435 +-0.0558334 0.0358523 0.0464479 +0.0391497 0.108397 0.00837586 +-0.0166742 0.0668915 0.0537111 +-0.0514343 0.0647808 0.0348885 +-0.0506054 0.0575708 -0.00965819 +0.0186225 0.0355557 -0.00967449 +-0.0507888 0.0855066 -0.0215873 +-0.0563207 0.0562341 0.00763908 +0.00416104 0.0393786 0.0331643 +0.00410872 0.110162 -0.02034 +-0.0326921 0.152804 -0.00294992 +-0.0105902 0.0385498 0.00372703 +-0.0450772 0.0337168 -0.000691764 +0.00110427 0.111585 -0.0201254 +-0.086661 0.123026 0.0482846 +-0.00349688 0.0633763 0.0563118 +0.0181674 0.0959966 -0.023265 +0.0171824 0.126495 -0.000336309 +0.0349695 0.0577828 0.0363582 +-0.0893883 0.0956403 0.0164184 +-0.0132244 0.172771 -0.0193112 +-0.0115098 0.0702302 0.0553956 +0.0292762 0.0431552 0.0314362 +0.0355897 0.0411906 0.0271165 +-0.0396848 0.0344413 0.0355548 +-0.0488762 0.0335766 0.000473902 +-0.0845392 0.0778023 0.0145171 +-0.0600467 0.0342661 0.0313871 +-0.0484946 0.156406 0.00957752 +-0.0435279 0.0506014 0.0392212 +-0.0581322 0.0624985 0.0284102 +-0.0319273 0.126498 0.0125244 +-0.0692254 0.124258 0.0526584 +0.0346263 0.114673 0.0139267 +-0.0707453 0.113137 0.049314 +0.0440515 0.0722274 0.0248494 +-0.0190238 0.0384735 0.0274147 +0.0318733 0.11664 0.0243218 +-0.00980958 0.166665 -0.0207735 +-0.075878 0.0954761 0.0383509 +0.04237 0.0533961 -0.00679891 +-0.00515103 0.127241 0.0295045 +-0.0386117 0.0406767 0.0425487 +0.0591522 0.0552732 0.011174 +0.0399613 0.0806226 0.0334139 +-0.0892353 0.14446 0.0304266 +-0.0104754 0.127368 -0.00300647 +-0.0635158 0.162004 -0.0583208 +-0.0801984 0.0868229 -0.00856132 +-0.0600399 0.13696 -0.00647222 +-0.0777335 0.153443 0.0307864 +-0.046469 0.119345 0.0289808 +-0.0313084 0.126018 0.00688499 +-0.0190244 0.0385858 -0.00538325 +-0.0698329 0.112058 0.0465849 +-0.0761752 0.110468 0.0448594 +0.0607736 0.0651167 0.0161629 +-0.0738077 0.102191 0.0374953 +-0.0406116 0.0337811 0.00738645 +-0.0152574 0.166467 -0.0199789 +0.0135127 0.0860479 0.0530247 +-0.072308 0.159721 -0.00687103 +0.00549414 0.130728 0.00313392 +-0.00649655 0.0870315 0.0570873 +-0.0353742 0.125928 -0.00196324 +0.00551011 0.0870055 0.0566199 +0.00569172 0.093878 -0.0314287 +0.0453353 0.0533808 -0.00616451 +-0.0788788 0.16526 -0.0309581 +0.0122616 0.0765812 -0.0308581 +-0.0471876 0.131943 0.0231102 +0.0442177 0.0860807 -0.00279659 +-0.0735334 0.165176 -0.017728 +-0.0896904 0.116203 0.0443945 +-0.0887705 0.0969872 0.0214096 +-0.0201887 0.0754016 0.0541402 +0.0203245 0.0636 -0.0272806 +-0.0513256 0.0345659 0.0399502 +-0.0461113 0.034482 0.0324006 +-0.0773794 0.109459 0.0418273 +0.0262228 0.0747294 -0.0245497 +-0.0281178 0.0845911 -0.0356125 +-0.029049 0.0511502 0.0411139 +-0.0685509 0.065132 0.0256966 +-0.0660181 0.127026 0.048508 +-0.0475948 0.0403553 0.044655 +-0.0711998 0.15079 -0.0434624 +0.0346942 0.0401467 0.0260507 +-0.0803051 0.0719229 0.0175051 +0.0266708 0.121701 0.00384182 +-0.0637803 0.118542 0.0465326 +0.0257185 0.0699313 0.0441746 +-0.0865836 0.11378 0.0451954 +-0.0543656 0.153368 0.0199938 +-0.0147843 0.0981951 -0.0260468 +-0.0480746 0.134034 0.00539884 +-0.0172971 0.0386165 -0.00691824 +0.024363 0.0867852 -0.0239669 +0.000502788 0.056275 0.0546165 +0.0460119 0.0750141 0.00420589 +-0.0813458 0.154098 0.0250842 +-0.0504992 0.111154 0.0370407 +0.0480441 0.0725423 0.0171549 +0.0177377 0.0821568 0.0520978 +-0.0634907 0.0833477 0.0441845 +-0.0287709 0.04365 -0.0290051 +0.0412886 0.0858436 -0.00978207 +-0.0434867 0.0959016 0.0426578 +-0.0685902 0.112767 0.0465657 +0.0446015 0.0889424 0.0221651 +0.0387218 0.0993392 0.0297824 +-0.0569101 0.0984236 -0.0203516 +0.0460228 0.0834207 0.0061859 +-0.0608711 0.101136 -0.0186334 +0.0198592 0.123572 0.0284223 +-0.0670185 0.155095 -0.00202392 +0.00194178 0.0353485 0.0200578 +-0.0202225 0.0381837 0.0220241 +0.0372544 0.111046 0.00772111 +-0.0226761 0.0552382 -0.0304344 +-0.0500773 0.15315 -0.00486218 +0.0361622 0.075448 0.0382492 +0.00638813 0.0448624 -0.0253374 +0.0240783 0.123806 0.00430528 +-0.0874625 0.123933 -0.000723767 +0.0191746 0.064523 0.0487473 +-0.0528554 0.116872 0.0339893 +0.0012658 0.0697321 -0.0339789 +0.0363552 0.112269 0.0088181 +-0.0336364 0.0836212 -0.0255231 +0.0394621 0.0820907 0.0342997 +-0.0759857 0.112794 0.0483899 +0.042364 0.0505846 -0.00668018 +-0.0878291 0.0895228 0.0236162 +-0.0717396 0.156144 0.0122972 +-0.0118777 0.107304 -0.0220947 +-0.0518036 0.0898543 -0.0220029 +-0.0605307 0.142151 -0.00455603 +-0.00730388 0.0394625 0.048838 +-0.0695099 0.151355 -0.0447129 +0.0461391 0.0820336 0.0131698 +-0.0680095 0.151244 0.0371953 +-0.0696447 0.155522 0.00577511 +0.0106458 0.0343542 -0.00488721 +-0.0717447 0.165221 -0.0449739 +0.00872274 0.0346011 0.0383625 +-0.0601559 0.0472008 0.00728305 +-0.072526 0.149972 -0.0424686 +-0.0921507 0.129567 0.0102504 +-0.0195451 0.0382679 0.00943 +0.017351 0.0351839 -0.014686 +0.026638 0.0619848 -0.0226053 +-0.0779425 0.0757661 -0.00656744 +0.0456648 0.0834028 0.0181693 +-0.00238392 0.0391586 -0.00815532 +-0.0760947 0.171183 -0.0343205 +-0.037685 0.127343 0.0163262 +0.0200653 0.084847 0.0502217 +-0.0576821 0.0438911 0.0236882 +-0.00181158 0.0365903 0.0109133 +-0.0227414 0.0640418 -0.0345473 +-0.0607804 0.0397294 0.0180031 +0.00451899 0.0966593 -0.0283637 +-0.00904759 0.0994069 0.0493883 +0.036694 0.0368281 0.0111245 +-0.0476151 0.0378648 -0.0125385 +-0.0374934 0.0620193 0.0412021 +-0.0678369 0.0706443 0.0351197 +0.0262359 0.122255 0.0222063 +-0.0258834 0.0347926 0.045205 +-0.0730191 0.0808411 -0.0145801 +0.0272041 0.0968528 0.0430049 +-0.0387216 0.0710357 -0.0169218 +-0.0802983 0.0953773 0.0342868 +-0.0928216 0.122866 0.0342742 +0.0288283 0.120572 0.00606361 +-0.0872644 0.139206 0.0412952 +-0.0528885 0.108408 -0.0187758 +-0.0614742 0.149784 0.0364078 +-0.0888928 0.113895 0.0428033 +0.0133289 0.0681229 -0.0310343 +-0.000536732 0.10034 0.0474846 +0.0582707 0.0579579 0.00417743 +-0.0896629 0.124003 0.00427429 +-0.0333755 0.0483636 -0.0203394 +-0.0335104 0.169764 -0.00293532 +-0.0488446 0.119728 0.0310062 +0.0426741 0.0972641 0.0231497 +-0.0441044 0.0451364 -0.0122986 +-0.059855 0.0594826 0.0200848 +0.0270691 0.0942437 0.0445649 +-0.0896385 0.0969877 0.0134181 +-0.0456599 0.0636306 -0.0135866 +0.0575548 0.053733 0.00618309 +-0.054499 0.0776179 0.0432703 +0.0434163 0.0464179 0.0294988 +-0.0134899 0.0951663 0.0534531 +0.0324423 0.0754774 0.0416539 +-0.0117218 0.0382705 0.0200729 +-0.0308456 0.0396262 0.0517145 +0.0564645 0.0594668 0.0252844 +-0.0475135 0.0491287 0.0385522 +-0.0396908 0.0651397 -0.0142325 +0.0201781 0.0351992 0.0293411 +-0.0219159 0.175693 -0.0142737 +-0.0688718 0.063973 0.0231175 +0.0174279 0.12392 0.0289777 +-0.0699032 0.0687756 0.0310328 +-0.0528961 0.143026 -0.000455911 +-0.0475121 0.0438565 0.0432608 +-0.0275879 0.0384125 -0.00879832 +0.0421339 0.102871 0.00816377 +0.0276939 0.085014 -0.0220629 +-0.0593718 0.0422854 0.0165091 +0.0245725 0.122909 0.0244414 +0.00141552 0.0990584 0.0500955 +-0.0208664 0.103024 -0.023442 +-0.04595 0.0351008 -0.0224117 +0.0425933 0.066459 0.0273252 +-0.085327 0.0926016 -0.00256332 +-0.0496528 0.0345916 0.0385506 +-0.023191 0.178657 -0.0125853 +-0.0179257 0.0971306 -0.0269629 +0.0383787 0.0575308 -0.00558257 +-0.0190955 0.0939751 -0.033709 +-0.0659978 0.135528 -0.00820667 +-0.0379695 0.0348544 -0.0150276 +0.0231948 0.0344554 0.00500709 +-0.0577114 0.148197 0.0324041 +0.0473189 0.0638822 -0.00202275 +-0.091122 0.115466 0.0410527 +-0.0499316 0.141822 0.00385784 +-0.0663647 0.0360087 0.0372253 +-0.0453211 0.0345932 0.035979 +-0.00367712 0.0569332 -0.0329252 +-0.0883137 0.103697 0.0153744 +0.0333218 0.0981688 0.0378146 +0.0206459 0.0429683 -0.0197059 +-0.0718069 0.0887788 0.0415418 +-0.050581 0.0445938 -0.00942218 +-0.0589701 0.121961 -0.00876657 +-0.0786152 0.163841 -0.0309629 +-0.0919702 0.114664 0.0123319 +-0.0387263 0.127561 -0.000266265 +0.0573405 0.0635192 0.0248021 +-0.0778913 0.126656 -0.00702073 +-0.0685283 0.0434892 0.00727271 +-0.0779351 0.161108 -0.0209335 +-0.0892037 0.0956419 0.0194144 +-0.091675 0.147474 0.0191435 +0.00817319 0.0832888 0.0558122 +-0.051142 0.0627417 0.0330975 +0.00546913 0.116627 -0.0176566 +-0.0278605 0.124718 0.0184442 +-0.0689992 0.150311 0.0384044 +-0.0690062 0.162382 -0.0519693 +-0.00661995 0.130084 0.0216557 +0.0403849 0.0533789 -0.00673496 +0.0156377 0.0348863 0.0377268 +0.0577131 0.0523367 0.00917793 +-0.00120988 0.105335 0.044053 +-0.00579434 0.0351694 0.0474261 +0.0411666 0.0833385 0.031438 +-0.0325019 0.0988116 0.0438807 +0.00307304 0.124054 -0.00961404 +-0.0350636 0.0383682 -0.0121121 +-0.073931 0.128192 -0.0084465 +0.015055 0.123588 -0.00721903 +0.0455542 0.0875891 0.00417683 +-0.006733 0.0684593 -0.0359965 +0.00394905 0.100531 -0.0224465 +-0.0399008 0.128531 0.0110866 +-0.0778707 0.177255 -0.0480374 +-0.0310993 0.177108 -0.0141677 +-0.0307989 0.0833965 -0.031578 +0.00828982 0.0846467 0.0559983 +-0.0926147 0.121379 0.00928006 +-0.0309131 0.0848198 -0.0305724 +-0.0610919 0.155915 0.0160896 +0.0269409 0.117743 0.0296345 +-0.029909 0.0904807 -0.0265953 +0.0341142 0.0605859 0.0386759 +0.04958 0.0652138 -0.00133913 +-0.0406916 0.0651596 -0.014333 +-0.0186192 0.0393436 -0.0280481 +-0.0321414 0.16968 -0.0161315 +-0.0303394 0.0344325 -0.0205625 +-0.0749113 0.125246 -0.00804661 +0.0179783 0.035483 -0.0126728 +-0.0572916 0.0479655 -0.00237378 +-0.030388 0.0876244 -0.0295653 +-0.00273996 0.130454 0.0216129 +-0.0785777 0.0907895 -0.0106208 +-0.0237519 0.0683934 -0.0360687 +0.0305158 0.11943 0.00953878 +0.0436886 0.0777182 0.0262206 +-0.00223658 0.0383059 0.0473338 +-0.0174973 0.104415 0.0431217 +0.045327 0.0519476 -0.00589943 +-0.022701 0.0611501 -0.0334866 +-0.0334865 0.126881 0.00753677 +0.0458812 0.084809 0.00618736 +-0.0775185 0.147451 0.0411778 +-0.00849166 0.110041 0.0429425 +-0.00827497 0.0389568 -0.00728452 +-0.0154767 0.0545272 0.0507241 +0.0455115 0.0861913 0.0171661 +-0.0286176 0.124173 0.0196508 +-0.0903937 0.142028 0.0281621 +-0.00750142 0.0590729 0.0550185 +-0.0691508 0.152358 -0.047074 +-0.00484252 0.0384695 0.0194856 +-0.00149467 0.116953 0.0400314 +-0.0148242 0.128616 0.018702 +-0.00749757 0.0939067 0.0556187 +0.031866 0.115189 -0.00211013 +-0.0515259 0.0439564 0.0445165 +-0.0773104 0.159761 -0.0159076 +0.0205013 0.108449 0.0395681 +-0.0648774 0.159303 -0.0143091 +0.0267364 0.0606633 -0.022785 +0.00150878 0.0883997 0.0564367 +-0.0659091 0.06022 0.0163937 +-0.0625921 0.1213 0.0447428 +-0.0789765 0.135392 -0.00472816 +-0.0709567 0.0767623 0.0380194 +-0.0506142 0.0560954 -0.00917258 +-0.0707687 0.155356 -0.0469258 +-0.0675837 0.112197 0.043642 +-0.0159686 0.128428 0.0182857 +-0.0564715 0.132545 0.0359114 +-0.044247 0.157947 0.00609665 +-0.011089 0.038804 -0.005846 +-0.0380666 0.0385186 -0.00730796 +0.0253529 0.0520143 0.0399629 +0.00465347 0.0341223 0.0126365 +-0.0905147 0.136459 0.016202 +-0.0184793 0.0336465 -0.023124 +0.0165026 0.118175 0.0355154 +0.0109305 0.0685438 0.0544088 +-0.00849797 0.0952525 0.0545557 +-0.050269 0.11691 0.032477 +-0.0301947 0.125922 0.0102205 +-0.0914405 0.117414 0.0273008 +-0.0231534 0.0352107 0.0523184 +-0.0922901 0.125582 0.0342578 +-0.0703512 0.170836 -0.0520339 +-0.0881528 0.129472 0.0022725 +-0.0125497 0.0445369 0.0499253 +0.0104221 0.127848 0.0278469 +-0.0114754 0.0546403 0.0519269 +-0.0665146 0.16661 -0.0580261 +-0.0384984 0.169734 0.00180247 +0.0290438 0.0509642 -0.0167532 +0.0292682 0.0673021 0.0422638 +-0.0643695 0.149877 -0.0298747 +-0.0741326 0.180484 -0.0536706 +-0.0484658 0.144752 0.00741107 +0.02369 0.10485 -0.01704 +0.0383652 0.101327 -0.00724085 +-0.0516205 0.0604369 -0.00991236 +-0.0080847 0.125292 0.0313586 +-0.0117515 0.0714338 -0.0381291 +-0.0358096 0.12684 0.0170169 +-0.0620073 0.155313 -0.0175819 +-0.0861256 0.0937891 0.0274526 +-0.0627193 0.152197 -0.01058 +0.0557633 0.0538969 0.024211 +-0.0501537 0.152144 0.0115744 +-0.0504041 0.0345678 0.0349233 +-0.0622094 0.0655019 0.0319825 +-0.0630381 0.154049 0.0314099 +-0.0864944 0.112209 0.0250023 +-0.0765838 0.178662 -0.0494737 +-0.0880478 0.0908955 0.0237752 +-0.0540202 0.0513732 0.0109294 +0.0220807 0.125732 0.0192313 +0.000503516 0.0856702 0.0573793 +-0.0624013 0.116928 0.041368 +-0.0687693 0.0793684 -0.0165822 +0.0312024 0.114939 -0.00384217 +0.0394926 0.052754 0.032086 +-0.076502 0.12459 0.0526576 +0.0461265 0.0736153 0.00421619 +0.0493794 0.0453908 0.0224152 +0.0422961 0.0655994 0.0276352 +0.0444235 0.0917457 0.0211574 +-0.04812 0.128214 0.028687 +-0.0256026 0.0837946 0.0522209 +-0.00959872 0.0391743 -0.0260833 +0.0242446 0.0762105 -0.0254816 +-0.050147 0.145259 -0.000515581 +-0.0729617 0.136954 -0.00717713 +-0.0321019 0.119786 0.0288381 +-0.0723819 0.152607 -0.0408904 +0.0595077 0.0567056 0.0171693 +-0.0647247 0.16489 -0.0257757 +0.0214018 0.0473917 -0.0206345 +-0.0652965 0.147932 -0.0271042 +0.0404164 0.0647148 -0.00677085 +-0.0440757 0.0335994 -0.0169421 +-0.0658186 0.154852 0.00425231 +-0.0457713 0.156483 0.00739285 +-0.0550494 0.0577849 0.0202145 +-0.0233757 0.163881 -0.00766181 +-0.0658954 0.166616 -0.0590008 +0.0309109 0.0511672 -0.0117352 +0.0380176 0.101228 -0.00786632 +0.0272437 0.0732614 -0.0238068 +-0.0161865 0.0377383 0.0516902 +-0.051271 0.0356477 0.0458842 +-0.0184884 0.107161 0.042158 +0.0143121 0.0753991 0.0540935 +0.012486 0.0990688 0.0481132 +-0.069936 0.13258 -0.0084535 +-0.0324718 0.0546382 0.0373194 +-0.0637186 0.179242 -0.0585917 +-0.0560047 0.159776 0.00109778 +-0.0940215 0.120122 0.0233001 +-0.0734929 0.154069 -0.0299022 +0.0334431 0.0930091 -0.0164312 +-0.0568079 0.0869026 -0.0213473 +0.0600207 0.0595165 0.0181686 +-0.0282716 0.0376885 0.0226211 +-0.0608814 0.102587 -0.0185388 +-0.0689777 0.172299 -0.0388012 +-0.0333033 0.176609 -0.00426163 +-0.0726003 0.145757 -0.0168539 +-0.0351155 0.0460859 0.0430647 +-0.0668221 0.16563 -0.0222317 +0.0223344 0.0535713 -0.0254238 +-0.0555068 0.0341015 0.0254741 +0.0591828 0.0594427 0.0211715 +-0.076476 0.07597 0.0322323 +-0.0548438 0.043635 0.0177242 +-0.0545598 0.0616597 -0.0074577 +-0.0717138 0.073474 0.0353741 +-0.0123858 0.0383448 0.0108168 +-0.0878417 0.140531 0.0102059 +-0.0338438 0.0337316 0.012415 +-0.0362549 0.153841 -0.0082413 +-0.066147 0.0353356 0.0361254 +-0.0149468 0.125073 -0.0044168 +-0.0517378 0.0545135 0.0226244 +-0.0791517 0.0792478 0.0324066 +-0.0311673 0.0386498 -0.0134468 +-0.00138514 0.0391216 -0.00791905 +0.0249209 0.0782259 0.0483953 +-0.0288805 0.079237 0.0443379 +-0.0499299 0.0335056 -0.0106454 +0.000248169 0.0726618 -0.0353693 +-0.00679601 0.100851 0.0456503 +0.00749727 0.121002 0.0360768 +0.0281364 0.0448054 0.035097 +-0.0616338 0.0739295 0.0406212 +-0.0184922 0.11816 0.035496 +-0.0231843 0.0348489 0.0439808 +0.0524989 0.0718135 0.00595977 +-0.0114982 0.0943996 -0.0340943 +-0.0574587 0.045976 0.042703 +0.0272754 0.0703879 -0.0233186 +-0.0208041 0.127131 0.0063587 +-0.0449931 0.152736 -0.00651735 +-0.0154877 0.167822 -0.0210841 +-0.0738833 0.122317 -0.0079807 +0.0163998 0.0834424 0.0519345 +-0.0615988 0.156867 -0.0225865 +-0.0504372 0.0529682 0.0186225 +-0.0607622 0.0781498 -0.0187637 +-0.0208042 0.125974 0.0209606 +-0.0245306 0.112636 0.0373469 +-0.030708 0.121227 -0.00820323 +-0.0511359 0.0502476 0.0206335 +-0.0384993 0.0733372 0.0420402 +-0.0588719 0.102608 -0.018764 +-0.0774969 0.130279 0.0531227 +-0.0375712 0.124334 -0.00748059 +-0.0119956 0.0882297 -0.0377812 +0.0547499 0.0492946 0.00521444 +0.017211 0.088423 -0.0276786 +0.0381646 0.0644978 -0.0107883 +-0.04783 0.0927226 -0.0216222 +-0.0132756 0.0597275 0.0533794 +-0.00158335 0.0361983 -0.0246741 +-0.0612049 0.174131 -0.0607222 +-0.0655175 0.0356165 -0.00754656 +-0.0874441 0.0860134 0.00347726 +-0.00749507 0.10164 0.0441128 +-0.0175041 0.0382782 0.00983265 +0.00351386 0.100332 0.0462561 +0.0252498 0.0645397 -0.0230446 +-0.0717344 0.131221 0.0507858 +0.0525721 0.0648669 -0.000960413 +-0.0901978 0.11358 0.0212183 +-0.0560194 0.129616 -0.00591188 +0.0441279 0.0748554 -0.00179683 +-0.0307721 0.0349136 0.04922 +-0.0554801 0.0452738 0.0437595 +0.000511374 0.0503823 0.0524384 +0.0295573 0.0375392 0.0237122 +-0.00766545 0.0541253 -0.0331554 +-0.0226026 0.0379508 -0.0287016 +-0.0187506 0.162746 -0.0157051 +0.0546767 0.0732977 0.0167178 +0.042064 0.10006 0.0201605 +-0.0889838 0.099691 0.0193911 +-0.0644638 0.129733 0.0437115 +-0.043484 0.0987241 0.0424341 +-0.0252565 0.120536 -0.00953586 +-0.0159529 0.0390542 0.0365141 +-0.0915486 0.143335 0.0161726 +-0.0405267 0.169768 0.0017705 +-0.0726712 0.0651053 0.0195713 +-0.0132255 0.182074 -0.023933 +-0.0456018 0.0629458 0.0388902 +0.0287985 0.0385521 0.0262584 +0.0314095 0.0695437 -0.0187779 +-0.0625738 0.156865 -0.0165766 +0.0106756 0.0489592 0.0485841 +-0.0781956 0.163891 -0.0259488 +0.0262919 0.101687 -0.017683 +-0.0681573 0.180556 -0.0543707 +-0.0464942 0.100125 0.0422537 +-0.0294775 0.17726 -0.00505881 +0.00976325 0.0346476 0.0385339 +0.0351088 0.100136 -0.012024 +0.0398312 0.0992984 0.027798 +-0.0544975 0.080589 0.0448325 +-0.0251898 0.177123 -0.0193397 +-0.00463984 0.12746 -0.00519523 +0.0365694 0.109049 0.0260841 +-0.062967 0.159919 -0.044604 +0.0156331 0.0915267 -0.0269033 +-0.0577811 0.0472143 0.0403119 +-0.086179 0.107645 0.0083646 +-0.00357674 0.0347286 -0.0239915 +-0.0205507 0.066817 0.0505282 +-0.0590047 0.132542 0.0375172 +0.00657766 0.034511 0.0217547 +-0.0730595 0.110042 0.0423406 +-0.0725117 0.163674 -0.014076 +-0.0130193 0.115677 -0.016537 +0.0190348 0.0768352 0.0521916 +0.00221518 0.114462 -0.0193126 +-0.0142885 0.0390252 0.0350884 +-0.0492809 0.152135 0.0110836 +0.0378754 0.0980648 0.0320906 +-0.0377624 0.0420706 0.0430123 +0.00890997 0.125517 0.0316176 +0.00478616 0.0342999 0.00145343 +-0.0220536 0.0952953 -0.0290683 +-0.0883767 0.125344 0.00127971 +-0.055499 0.0761852 0.0427309 +-0.0505039 0.0487703 0.0186583 +0.0374548 0.0781001 0.0366194 +0.00520505 0.129939 3.61829e-05 +-0.0464525 0.146291 0.00643191 +-0.0545162 0.049049 -0.0054035 +-0.0209524 0.0920017 0.0529687 +-0.0534945 0.105667 0.0403502 +-0.0355002 0.174151 -0.00180627 +-0.0654804 0.146553 -0.0219125 +-0.0577458 0.131139 0.0375772 +0.0440584 0.0860884 0.0251529 +0.0484396 0.0486951 -0.00266239 +-0.0510317 0.0544187 0.0196187 +-0.0305049 0.0720397 -0.0305133 +-0.0513349 0.057067 0.0306313 +-0.0444577 0.123407 -0.0104693 +-0.0404418 0.0351129 -0.0289386 +-0.0611441 0.169381 -0.0576009 +-0.0704838 0.120388 0.0533274 +0.00150053 0.0591133 0.0550768 +-0.0504978 0.159322 0.00851944 +-0.0127755 0.126776 0.0267341 +0.00508634 0.0345614 -0.0155701 +-0.0433649 0.150829 -0.00565896 +-0.0276025 0.0888516 -0.0335952 +-0.0536948 0.0661603 -0.0107375 +0.0453129 0.0698237 0.023466 +-0.0407211 0.150643 0.00408479 +0.0111265 0.120476 0.0355761 +0.000791005 0.0398223 0.046536 +0.0460187 0.0482649 0.029417 +-0.0748889 0.119375 -0.00765967 +0.0240318 0.0591603 0.0451764 +0.0102193 0.129407 0.000604352 +-0.0662744 0.179701 -0.0600508 +-0.0165098 0.0772307 0.0561424 +0.0294369 0.0781918 0.0443709 +-0.0510278 0.0474301 0.0166894 +-0.0808293 0.0720933 0.0155437 +0.0139163 0.0953242 -0.0249235 +-0.0756827 0.0823892 -0.0125945 +0.00119778 0.0825383 -0.0355009 +-0.0614832 0.0775692 0.0421583 +-0.0816839 0.0830971 0.0318157 +-0.0257584 0.0736396 0.0456283 +0.0071927 0.124822 -0.00847934 +-0.0749667 0.0683767 0.0215337 +-0.0415307 0.127763 -0.00103989 +0.0217652 0.0862022 0.0491664 +-0.0758742 0.102063 -0.0106997 +0.00933423 0.0567711 -0.0303022 +-0.010684 0.0584354 -0.034314 +-0.0126507 0.0350556 0.0425263 +0.0424994 0.0597124 0.0306347 +-0.0147222 0.0643235 -0.037347 +0.0579415 0.0716454 0.0119821 +-0.000418875 0.0389219 -0.0131688 +-0.0480228 0.144604 0.00545108 +-0.0124881 0.120998 0.0354929 +-0.0941295 0.121483 0.024294 +0.0533093 0.0573451 -0.00263239 +-0.0426699 0.0336999 -0.0149012 +-0.0466248 0.0577591 -0.0115398 +-0.0628785 0.0393963 0.0426563 +-0.072166 0.063706 0.0120556 +-0.0912059 0.14882 0.0151457 +-0.033491 0.0904012 0.0444067 +0.0152459 0.0821521 -0.0296185 +-0.0608506 0.0333964 -0.00541551 +0.0483298 0.0694277 0.0246416 +-0.0144087 0.0383376 0.0158464 +-0.00316996 0.131012 0.0171239 +0.0247594 0.0929114 0.046503 +-0.0615203 0.153356 0.00130737 +-0.0618578 0.099667 -0.0183374 +0.0303629 0.0483136 -0.00765132 +0.00253507 0.0394917 0.0345311 +-0.0713444 0.144531 -0.0156116 +-0.0188175 0.159674 -0.00630165 +-0.0174928 0.111329 0.0404434 +-0.0425002 0.0437706 0.0420539 +0.038489 0.0484512 0.0319961 +-0.011814 0.163592 -0.0157611 +-0.0526941 0.0334208 -0.00928256 +-0.0613494 0.131082 0.0393909 +-0.0276253 0.0450182 -0.0280952 +-0.0449077 0.159414 0.00690868 +0.00747686 0.0474111 0.0493962 +-0.0535025 0.0917839 0.0444757 +0.0372578 0.0658262 -0.0127785 +-0.0616099 0.158421 -0.0325909 +-0.0443417 0.035118 -0.0243716 +0.0228959 0.0358901 0.0147404 +-0.0312846 0.119331 0.0291556 +-0.0748251 0.0906869 -0.0145799 +-0.0607901 0.0839118 -0.0197808 +-0.060035 0.0645406 0.0315175 +-0.0506187 0.0531538 -0.00831388 +0.0189959 0.104672 0.0434338 +-0.0328687 0.10291 -0.0220775 +0.0293781 0.0721886 -0.0217847 +0.0490097 0.0482239 0.0267018 +-0.00202044 0.0386496 0.0235231 +0.00793635 0.0980328 -0.0238123 +-0.0353308 0.0347033 0.016646 +0.00129902 0.039118 0.0292011 +0.0433693 0.0561672 -0.00598915 +0.0455002 0.059749 0.0314265 +-0.0891212 0.0888935 0.0154552 +-0.00853579 0.044404 0.0484956 +0.0227707 0.10612 -0.0163977 +-0.0830074 0.117688 0.0489709 +-0.0652397 0.150467 -0.0337229 +-0.0787271 0.0954037 0.0355432 +0.0320582 0.11345 0.0286813 +-0.0641355 0.160881 -0.0576174 +0.0459242 0.0806108 0.00418728 +0.0093871 0.0434015 -0.0246765 +-0.0501776 0.124028 0.032677 +-0.0486159 0.0547593 -0.0100622 +0.000494108 0.118289 0.0391022 +-0.0267825 0.0768545 -0.0363352 +0.039504 0.0914002 0.0327084 +0.0495572 0.0525985 0.0293193 +-0.0221892 0.177131 -0.0213718 +0.00724524 0.0369774 0.0269173 +0.0174748 0.0934539 0.0481542 +-0.021119 0.180019 -0.0220004 +-0.0938873 0.12827 0.0192438 +-0.0558806 0.138039 -0.00386657 +-0.0754975 0.123189 0.0531282 +-0.0682563 0.169911 -0.0313673 +0.00486454 0.131282 0.0057704 +-0.0544491 0.156028 0.0112408 +0.0259161 0.0713197 0.0444841 +-0.0205993 0.0408181 -0.0286892 +0.0326751 0.0902947 0.0421046 +0.0303546 0.107428 0.0353018 +-0.043641 0.0451148 -0.0133235 +0.0453399 0.0504735 -0.00539794 +-0.0640884 0.160897 -0.0576117 +-0.015926 0.178652 -0.0196554 +0.0285634 0.0463012 0.0357516 +-0.00467538 0.0353718 0.0474871 +0.00649755 0.131366 0.0177838 +-0.0721007 0.175064 -0.0530188 +-0.0454824 0.0959409 0.0431744 +-0.0892808 0.0888643 0.0124572 +0.00219675 0.0376886 0.0234384 +-0.0084105 0.095275 -0.0329664 +-0.0384962 0.11803 0.0312871 +-0.0451864 0.146266 0.00463419 +-0.0870838 0.0846865 0.0114769 +-0.0855325 0.107606 0.0053458 +-0.0457969 0.126831 -0.00605616 +-0.0164306 0.0384009 0.00449856 +-0.0355073 0.0662414 0.0411418 +0.0174851 0.0852069 0.0507856 +0.0160687 0.122524 -0.00804645 +-0.0586545 0.152137 0.0330321 +-0.0294308 0.0847062 -0.0336139 +-0.0725432 0.15415 0.0310449 +0.0567814 0.0724634 0.0130365 +0.0378457 0.0726607 0.0353699 +0.00540963 0.0375924 -0.0240752 +-0.0555707 0.033544 0.017104 +0.0295902 0.119982 0.0063504 +0.0197767 0.104476 -0.0186365 +-0.0484985 0.160789 0.00748776 +-0.0928176 0.120043 0.0102955 +-0.0427809 0.0464775 -0.012357 +-0.0285046 0.0645461 0.0380462 +0.00349921 0.126284 0.0311054 +-0.0670064 0.156281 0.0226936 +-0.0656496 0.0339611 -0.00733584 +-0.00649844 0.0814993 0.0573243 +0.0421622 0.0427592 0.0252421 +-0.0873651 0.0927561 0.00443631 +-0.00151033 0.108645 0.043169 +-0.0908157 0.116185 0.0427025 +0.0200734 0.0372985 0.0402199 +-0.062954 0.125297 -0.00870732 +-0.0633546 0.0720236 0.0383997 +-0.0691914 0.171601 -0.0360136 +-0.0688255 0.0937312 -0.0163709 +-0.0485029 0.112572 0.035725 +-0.00574267 0.0339825 -0.0190499 +-0.0604857 0.094604 0.0446906 +-0.0257335 0.166803 -0.00931015 +-0.0159771 0.186924 -0.0221541 +0.0463322 0.0743214 0.0180018 +0.0030519 0.130996 0.00365966 +-0.0421665 0.16366 -0.0107342 +-0.0225871 0.168294 -0.0117855 +-0.0484917 0.0718083 0.0405326 +0.0122698 0.0710113 -0.031719 +-0.0857101 0.0869161 0.0258492 +-0.0715046 0.0901731 0.0417302 +-0.0699133 0.123828 -0.00875488 +0.0279019 0.110786 -0.0114065 +-0.0354864 0.12379 0.0245568 +0.0305321 0.081181 -0.0200863 +0.0102651 0.128706 0.0263309 +0.0148603 0.0562539 0.0494599 +-0.0366932 0.0665933 -0.0149481 +0.041469 0.0711384 0.0300167 +-0.0554857 0.0834027 0.0450839 +-0.0113051 0.0389162 -0.0134542 +-0.0701665 0.143936 0.0443089 +0.0424986 0.0527982 0.0326152 +0.0132 0.115178 -0.01612 +-0.0566151 0.0335713 0.0115144 +-0.0746759 0.158036 -0.00628607 +-0.0710897 0.0678996 0.0280309 +-0.0684162 0.160948 -0.0539628 +-0.0788405 0.11444 0.0481937 +0.0425653 0.0859482 -0.00679004 +0.00508264 0.128731 0.0273249 +-0.0460392 0.132757 0.0146796 +-0.0644245 0.0335892 0.00631261 +-0.0779562 0.0727271 0.0259414 +-0.0320811 0.1577 -0.0118106 +-0.08561 0.123026 0.0486561 +-0.0183468 0.0445922 0.0521871 +-0.0646788 0.0378404 0.0247428 +-0.09254 0.118824 0.0413658 +0.0439353 0.0973509 0.0141605 +-0.0925657 0.116008 0.0123183 +-0.00476329 0.0770151 -0.03731 +-0.0647922 0.176686 -0.0531637 +-0.0267774 0.122204 0.0247423 +-0.0331437 0.169673 -0.0156322 +-0.0663865 0.0388997 0.0348294 +0.0255945 0.0477251 0.0385093 +0.0336609 0.0968599 0.0382997 +-0.0916539 0.147467 0.0181472 +-0.0336992 0.0435791 0.0473765 +-0.0785063 0.162438 -0.0279579 +-0.0756712 0.0759423 -0.00884701 +-0.0623186 0.155306 -0.0155862 +-0.0754942 0.124603 0.052984 +-0.0710841 0.0626658 0.0113319 +-0.0214966 0.101664 0.0441706 +0.0325091 0.0454335 0.0302933 +0.023348 0.0930459 -0.0224955 +-0.0477168 0.123954 0.0291105 +0.026559 0.119879 -0.0019388 +-0.0671262 0.150692 -0.0396095 +-0.054551 0.0416447 -0.00949548 +-0.0689 0.115705 0.0512836 +0.0420833 0.0409609 0.00227771 +0.021477 0.0961774 0.0469631 +-0.0517663 0.0812234 -0.0211522 +0.0324154 0.0541402 -0.0117355 +-0.0283184 0.0383801 -0.00152859 +-0.0454995 0.122409 -0.0114255 +-0.0786209 0.174303 -0.0444916 +-0.0570614 0.151623 -0.00120922 +0.0242791 0.118022 0.0317589 +-0.0639993 0.0370815 0.0170442 +-0.0395018 0.0733502 0.0421461 +-0.0174724 0.0388154 -0.0145918 +-0.0829949 0.115554 0.048125 +-0.0155328 0.0386551 0.0297691 +-0.00449743 0.110031 0.0429169 +-0.062341 0.164692 -0.0435908 +-0.016985 0.0384848 0.0278228 +0.0153998 0.109294 -0.0177665 +-0.0121134 0.0347053 0.046472 +0.0238752 0.0421864 0.0394869 +-0.0510476 0.139892 0.00172061 +-0.073661 0.147179 -0.0178577 +-0.0673436 0.155169 0.0284164 +-0.0375089 0.0790164 0.0426336 +-0.0881282 0.0888644 0.0224361 +-0.0165385 0.0459978 0.0505746 +0.0187298 0.0489829 0.0426596 +0.00514365 0.0400743 0.045751 +-0.0405081 0.080404 0.0427771 +-0.0559081 0.112628 -0.0165116 +-0.0414824 0.100082 0.0415393 +0.0326734 0.101648 -0.0136311 +0.0591059 0.0677548 0.00712748 +-0.00525238 0.0350087 0.0405181 +0.0272291 0.0788716 -0.0231926 +0.0526679 0.0554283 0.0285725 +-0.074839 0.15964 -0.0289433 +-0.0475589 0.0335011 0.00261705 +0.0224079 0.0809035 0.0500644 +-0.0774544 0.072993 0.0275707 +-0.0817516 0.140386 -0.000790241 +-0.0203273 0.127615 0.0123404 +-0.0570931 0.0535244 0.00162534 +-0.0775213 0.124569 0.0523637 +-0.0267733 0.15662 -0.0020223 +-0.0341168 0.0383136 -0.000825234 +-0.0926373 0.122856 0.0322729 +0.00549857 0.09243 0.054294 +0.0202616 0.0749268 -0.0272874 +0.0133552 0.13008 0.0103074 +0.0423653 0.0519948 -0.00681796 +-0.0627003 0.150649 -0.00857321 +0.0200754 0.0713524 0.0501382 +-0.0182235 0.123174 0.0292543 +-0.0130686 0.183424 -0.0252779 +-0.0128628 0.0896836 -0.0372956 +-0.0301706 0.0421547 -0.0296993 +0.0403707 0.0444834 -0.00362771 +-0.0253772 0.0722169 0.0453002 +-0.0241328 0.0565311 0.0416958 +-0.0657729 0.0378142 0.038507 +-0.0475733 0.0504004 -0.00924022 +0.0347756 0.0548514 0.0342768 +-0.01273 0.098974 -0.0248693 +-0.0749897 0.139866 -0.00647617 +0.0541381 0.0477755 0.0182012 +0.026052 0.121668 0.00219807 +-0.0178133 0.0827451 -0.0392154 +-0.00506384 0.129812 0.0236663 +-0.0022335 0.116052 -0.016996 +0.0194826 0.0892535 0.0485994 +-0.00549695 0.108658 0.0435455 +0.0411799 0.0844321 -0.00979241 +-0.0546525 0.154186 0.0155249 +0.0209039 0.0386887 -0.00868617 +-0.0522987 0.0504261 0.0316576 +-0.00860205 0.0406149 -0.0260948 +-0.0064872 0.119657 0.0377321 +-0.0794636 0.141716 -0.00376694 +-0.0494618 0.0347575 0.043629 +-0.0282938 0.176171 -0.0172378 +-0.0337476 0.119587 0.029726 +-0.0548148 0.0883935 -0.0220325 +-0.0759162 0.179384 -0.0516058 +-0.0444968 0.0747696 0.0424527 +0.0361181 0.111694 0.0216233 +-0.0677747 0.0370061 0.0137537 +-0.0497774 0.0826759 -0.0213753 +0.0238372 0.12269 -3.58731e-05 +-0.0478227 0.148347 -0.00331487 +-0.00860618 0.0968801 -0.0306409 +-0.0545965 0.0575496 0.0196126 +-0.06512 0.0430832 -0.00329452 +-0.0719312 0.128266 -0.00893149 +-0.0409612 0.0344092 -0.00782476 +0.0534457 0.0510274 0.0243391 +0.0276856 0.0494518 -0.0176966 +-0.0336693 0.0607336 -0.0127906 +-0.0284587 0.0446173 0.0507119 +-0.0255118 0.0936195 -0.0293755 +-0.0717668 0.172238 -0.0510285 +-0.047089 0.156143 -0.00736831 +-0.0756553 0.0837701 -0.0135751 +-0.013224 0.172718 -0.0260103 +-0.0301691 0.174141 -0.0165339 +-0.00226303 0.0382357 0.0184109 +0.0412731 0.0417215 0.0241695 +-0.0559192 0.0335546 0.0152404 +0.0277966 0.12141 0.0199376 +-0.0649916 0.0659907 0.0309635 +-0.0512719 0.127504 -0.00467957 +0.0313718 0.118521 0.0155758 +-0.0621134 0.0350003 0.0423988 +0.00602626 0.127371 -0.00517179 +-0.0500909 0.0358963 0.0459805 +-0.0852266 0.0854944 0.0253873 +-0.0209874 0.04034 0.0536055 +-0.0719403 0.179282 -0.0559874 +-0.0521219 0.120842 -0.0117106 +0.0579437 0.0700837 0.0193768 +-0.0786649 0.0764169 0.0296559 +-0.0724896 0.12743 0.0524304 +0.0400371 0.107017 0.0091647 +-0.0677955 0.0355805 0.0137906 +-0.0212083 0.0825271 0.0563448 +0.0305816 0.112813 -0.00758269 +0.0546919 0.0524816 0.0244106 +0.000503407 0.0647904 0.0566018 +-0.0211614 0.183089 -0.0130948 +-0.0364897 0.0648519 0.0414613 +0.00739557 0.0347435 -0.0216037 +-0.091466 0.14613 0.0241501 +-0.0496442 0.0620141 -0.0117058 +-0.0844141 0.083121 -0.000497419 +0.00924009 0.0846665 0.0556174 +-0.00137013 0.0367929 0.00718583 +0.0499211 0.0443554 0.0178724 +-0.0257693 0.158564 -0.0117505 +-0.08951 0.140665 0.0311774 +0.0074706 0.129229 -0.00123166 +0.0318377 0.0822312 0.0425933 +0.0347555 0.0768972 -0.0157225 +-0.0103619 0.179472 -0.0295714 +0.0350602 0.0968439 0.0368099 +0.0192972 0.063662 -0.0278633 +-0.0758841 0.106327 -0.00893896 +0.0225495 0.119713 -0.00701355 +0.0522449 0.0480372 0.0225432 +-0.0142613 0.0350279 0.0492532 +0.0588535 0.0566417 0.00718098 +-0.0834209 0.0911774 0.0304851 +-0.0354827 0.0945899 0.0441989 +0.0491837 0.0442045 0.019604 +-0.0441515 0.0335185 0.00510187 +-0.0605024 0.111127 0.0368734 +-0.0368482 0.0336146 -0.0266993 +0.0043237 0.131753 0.0112849 +-0.0519904 0.135575 0.0286552 +-0.0628904 0.102548 -0.0180123 +-0.0194395 0.062521 0.0495605 +0.0173831 0.0447578 -0.0232543 +-0.0925995 0.118805 0.0322947 +0.00218481 0.0838969 -0.0348518 +0.0331279 0.0428909 0.0287274 +-0.0528013 0.0884055 -0.0219839 +0.0151848 0.115917 -0.0149184 +0.0567976 0.0508328 0.0181941 +-0.0621222 0.0345142 0.0394173 +-0.0642021 0.071089 0.0372614 +-0.0701839 0.0658802 0.0247105 +0.0178908 0.0563588 0.0485803 +0.0392199 0.073038 -0.0108301 +0.0263921 0.0549677 -0.020802 +-0.0858835 0.0833066 0.0204824 +-0.0812999 0.0747823 0.0185535 +0.0025057 0.0688921 0.0558596 +-0.0804035 0.0745659 0.0220984 +-0.0604943 0.0804378 0.0430854 +0.0220864 0.122759 -0.00230579 +0.0416849 0.100037 0.02216 +-0.0387577 0.150948 -0.00516845 +0.0420841 0.090131 -0.00780186 +0.0270265 0.12251 0.0139387 +-0.0715501 0.0763344 0.0374538 +-0.0885696 0.137819 0.0397738 +0.00156461 0.124373 0.0333352 +-0.00526883 0.0355403 -0.0166416 +-0.0769711 0.133968 -0.00621304 +-0.0750334 0.0851031 -0.01456 +-0.00549741 0.0675328 0.0561955 +0.00134414 0.0524973 -0.030237 +-0.0573916 0.0718042 0.0398933 +0.0283911 0.0672932 0.0427559 +-0.0910025 0.133774 0.0232232 +-0.0354998 0.17123 0.000174393 +0.0458285 0.0801218 0.0204223 +-0.0574741 0.0819362 0.0441691 +0.0510603 0.0729911 0.0094016 +-0.0363492 0.0338444 -0.0305686 +-0.024023 0.17718 -0.0120308 +-0.0625429 0.143922 0.0377415 +0.0323895 0.0490788 -0.00667281 +0.00525838 0.123196 -0.010701 +-0.0294162 0.0890096 -0.030595 +0.0479414 0.0588591 -0.00500215 +0.0158474 0.128954 0.00837281 +0.0170299 0.0590745 0.0491032 +0.0534095 0.0553934 0.0278769 +-0.0600285 0.134031 -0.00683616 +-0.0595027 0.0876292 0.04502 +-0.0323351 0.172733 -0.00297212 +-0.0374903 0.172653 -0.000576721 +0.00749482 0.0546914 0.0525351 +0.0383894 0.0519545 -0.00670373 +-0.0331162 0.0436399 0.0481995 +0.0444193 0.0734774 0.000193217 +-0.0392699 0.127033 -0.00231305 +-0.0377966 0.0870844 -0.0227292 +0.0398005 0.0712586 0.0329247 +0.0227875 0.0348957 0.00078699 +-0.0825515 0.0748682 0.00752949 +-0.0162407 0.125507 -0.00287714 +-0.0654856 0.0398574 0.0313799 +-0.0623389 0.163139 -0.0325913 +-0.0686122 0.0432054 0.00454593 +-0.0379623 0.174733 -0.00453553 +-0.0563002 0.154681 0.0207165 +-0.0455391 0.0396225 -0.0172907 +0.033177 0.0592197 0.0390624 +-0.030845 0.0944191 -0.0240931 +0.0149304 0.0913967 0.05159 +-0.0283564 0.125587 0.00796681 +-0.0364861 0.0547872 0.0389196 +-0.0284285 0.0821494 0.0466355 +-0.0626767 0.0346583 0.0408688 +0.0226817 0.0618915 0.0467691 +-0.00273397 0.0346073 0.0449802 +-0.0747362 0.0663817 0.0145125 +-0.0135041 0.11966 0.0364252 +-0.0466771 0.0355018 -0.0172702 +-0.0711048 0.153963 -0.0459144 +-0.0910141 0.11449 0.034742 +-0.0801763 0.0854684 -0.0085384 +-0.0199842 0.183117 -0.0149159 +-0.0705018 0.155741 0.00837641 +-0.0229946 0.0381678 0.00700416 +-0.0428236 0.0913841 -0.0227682 +-0.0679787 0.154919 -0.0513588 +-0.0787367 0.168047 -0.0389551 +-0.0308479 0.0972408 -0.0233409 +-0.0127769 0.0784711 -0.0383296 +-0.0528408 0.0970645 -0.0221327 +0.0578361 0.0662412 0.00314493 +0.0132266 0.0822053 -0.0304726 +-0.058487 0.113928 0.0361856 +-0.0609416 0.0341022 0.0225725 +0.0498583 0.0540108 0.0297623 +-0.00985903 0.128582 0.0248602 +0.0180859 0.068641 0.0507282 +-0.0275932 0.0779206 0.0459339 +-0.0474983 0.11254 0.0358059 +-0.00306313 0.0346488 0.0430839 +-0.0494839 0.141682 0.00839735 +-0.0444006 0.0337168 -0.00238543 +0.0222885 0.0564166 0.0461469 +0.00464996 0.0378242 0.0256263 +0.00823548 0.113838 -0.0186606 +-0.0404969 0.0634536 0.0414219 +0.0464934 0.0638096 0.0291729 +-0.0275092 0.181505 -0.00874152 +-0.0850366 0.134888 0.000298852 +-0.053967 0.0687802 0.0379578 +0.0458863 0.0820184 0.0171704 +-0.0630174 0.113067 -0.0134471 +0.0163641 0.0348027 -0.00791773 +-0.0668226 0.0923514 -0.017257 +-0.073517 0.104058 0.0373151 +-0.0520334 0.0346252 0.0362685 +0.00147793 0.131501 0.00880182 +-0.0874177 0.131128 0.0459004 +-0.0124954 0.103038 0.0437348 +-0.0148129 0.0841518 -0.0390669 +-0.061937 0.111099 -0.0150221 +0.0286115 0.078186 0.0449305 +-0.0884601 0.0976543 0.0226015 +-0.0196643 0.111086 -0.0196461 +-0.0196772 0.178663 -0.0162873 +-0.0220478 0.0811409 0.0558034 +0.00850296 0.118331 -0.0155001 +-0.0404972 0.0506061 0.0393715 +-0.0833705 0.0767799 0.0142875 +-0.085765 0.112351 0.0286477 +0.0363022 0.0619082 0.0365841 +-0.000508059 0.0576316 0.0544767 +-0.089275 0.0969971 0.0184044 +-0.0708142 0.0694524 -0.00574088 +-0.0186131 0.0378854 -0.0277917 +0.0283679 0.103615 -0.0157324 +-0.0354292 0.0472715 0.0405203 +-0.0748611 0.163212 -0.0154286 +-0.0862421 0.14327 0.00816028 +0.0357067 0.0981492 -0.0118335 +0.0223181 0.0592817 -0.0260832 +-0.0625553 0.041701 -0.00649092 +-0.0824187 0.100645 0.0306028 +-0.0598691 0.101152 -0.0187591 +-0.0309758 0.0383278 -0.0168292 +0.0239145 0.0835849 0.0487444 +-0.00271812 0.0380275 0.0166967 +-0.00631097 0.0354995 -0.0168068 +-0.0435801 0.0491173 -0.010788 +-0.0586891 0.065984 -0.0090861 +-0.072851 0.148958 0.0401319 +0.0442902 0.0875035 0.0241471 +-0.0155441 0.165408 -0.0121335 +-0.084276 0.107651 0.0243439 +-0.0705376 0.04043 0.00377428 +-0.0107227 0.165105 -0.0188107 +-0.0550975 0.13533 0.0326236 +-0.0735773 0.0648576 0.0107478 +-0.0227215 0.0797443 0.0551012 +-0.0404988 0.043751 0.0418177 +-0.0507215 0.132501 0.0301542 +-0.0728912 0.11354 -0.00756484 +0.00242535 0.0343652 0.00462872 +-0.0556704 0.0335434 0.000932366 +0.00528142 0.0509933 -0.0292119 +0.0213389 0.0621093 -0.0262711 +-0.0275166 0.0348502 0.0465557 +-0.0826299 0.110259 0.0284001 +-0.00850001 0.125156 0.0314578 +-0.0707102 0.149836 -0.0414255 +0.0204972 0.107072 0.0404393 +-0.0215031 0.108553 0.041118 +-0.0404837 0.0818282 0.0429123 +-0.0586314 0.0580318 0.0162523 +-0.0648762 0.109524 -0.0137682 +-0.0687139 0.0394283 -0.00171366 +0.00150188 0.0938741 0.0550191 +0.027072 0.122359 0.0168201 +-0.0275307 0.0918372 0.0449329 +-0.00320104 0.131164 0.014241 +0.00886384 0.130684 0.0200808 +0.0402562 0.0857576 -0.0117696 +-0.0823675 0.147331 0.00217458 +-0.082659 0.0776741 0.0225196 +-0.0388763 0.107081 -0.0200218 +0.0151073 0.108635 -0.0180644 +0.0460054 0.0746307 0.0193568 +-0.0735009 0.117559 0.0527975 +-0.0337749 0.0338108 0.0177666 +0.032372 0.116958 0.0202394 +-0.0763319 0.15494 -0.00387485 +-0.0687774 0.0837142 -0.0175822 +-0.010498 0.0517545 0.0512545 +0.0210632 0.038679 -0.00769573 +0.0140028 0.091392 0.0520062 +-0.0842337 0.150005 0.032317 +0.0332536 0.0916169 0.0411931 +-0.0394897 0.0874644 0.0433271 +0.0207921 0.106393 -0.0166835 +-0.0368012 0.111669 -0.0181954 +-0.0495137 0.0503617 0.0366255 +-0.0314035 0.121359 0.0260922 +-0.0745094 0.140045 0.0479791 +-0.020484 0.0842242 0.0566713 +-0.00549585 0.0911858 0.0567127 +-0.0870672 0.0882048 0.024333 +-0.0377523 0.0783086 -0.0194038 +0.0407806 0.0717592 -0.0087638 +0.00365619 0.131646 0.00960837 +-0.0157548 0.0714554 -0.0386719 +0.0597099 0.0650292 0.0201784 +-0.0675187 0.0874976 0.0437834 +0.0405833 0.0670896 0.0305002 +-0.0180479 0.0418467 0.0526068 +-0.0427079 0.151894 -0.00649313 +-0.0220141 0.0388944 0.0538623 +0.00616925 0.0895403 -0.0330971 +-0.0064158 0.0391939 0.0347568 +0.0557201 0.0581302 0.0259556 +0.0563341 0.0711373 0.00671617 +-0.0727258 0.157431 -0.00265266 +0.0125423 0.120941 -0.012332 +0.00414764 0.103055 -0.021794 +-0.029166 0.0762862 0.0418904 +-0.0268469 0.0423164 0.0533212 +-0.0621198 0.0344764 0.0202314 +-0.0618524 0.169383 -0.0535961 +0.0250825 0.10872 0.0381638 +-0.0908254 0.142021 0.0251655 +-0.046283 0.129949 0.00285861 +0.0179105 0.0350278 -0.0116533 +-0.0397746 0.0826803 -0.0210594 +-0.0651763 0.16954 -0.0402745 +-0.0621336 0.16002 -0.0235787 +-0.0355709 0.168274 -0.000671324 +-0.037536 0.159586 0.00182669 +-0.0681305 0.148403 -0.0333773 +-0.0364875 0.100095 0.0421869 +0.0545857 0.0608947 0.0278753 +0.0195769 0.0347391 0.0223805 +-0.0765172 0.154938 0.0266851 +0.0329357 0.0710876 -0.0177809 +-0.0434945 0.111176 0.0370674 +-0.0144911 0.124164 0.030554 +-0.0644813 0.157544 -0.049277 +0.0162463 0.0722881 -0.029887 +0.0292794 0.111414 0.0337321 +-0.0730559 0.14548 -0.015959 +-0.032702 0.0694797 -0.021456 +-0.0682487 0.153053 0.0340661 +-0.0810659 0.143393 0.0434586 +-0.0508913 0.0474088 0.0186488 +-0.041491 0.0832013 0.0425516 +-0.0689521 0.151509 0.0368557 +0.00620362 0.0387395 0.045605 +-0.0437238 0.0739429 -0.018203 +-0.0589977 0.125247 -0.00779139 +0.0113495 0.0553023 -0.0296776 +-0.0665061 0.0972756 0.0420058 +0.00151221 0.0828796 0.0573767 +-0.000819486 0.131234 0.00795191 +0.0463579 0.0575632 -0.00556359 +-0.0223022 0.165377 -0.00961273 +0.0177451 0.0379283 0.0429098 +-0.0914397 0.143364 0.0211639 +-0.0366139 0.0493085 -0.0123994 +-0.0374871 0.0576725 0.0398228 +-0.0252778 0.0383536 -0.00088571 +-0.0593549 0.0410534 0.0179552 +-0.0667502 0.0337781 -0.00695475 +-0.0206534 0.0391059 0.0372895 +-0.0144184 0.0997913 0.0448499 +-0.0451841 0.16983 -0.00497124 +-0.017913 0.184413 -0.0239895 +-0.0265191 0.0388768 0.0380618 +-0.0908997 0.126938 0.0424248 +-0.000826517 0.0853922 -0.0362438 +-0.0534467 0.125409 -0.00644153 +-0.0368662 0.104233 -0.0205194 +-0.02728 0.181917 -0.0121056 +-0.0487731 0.0349958 0.0444688 +-0.0894993 0.135155 0.0302067 +0.0152294 0.0345961 -0.00794828 +-0.0135581 0.166929 -0.0145181 +-0.00316211 0.129199 -0.00103699 +0.0125106 0.108449 0.040622 +0.0494051 0.0734301 0.0147277 +-0.0427147 0.0710705 -0.0176966 +-0.0505553 0.136728 0.0232523 +-0.055076 0.154226 0.0167194 +-0.0598887 0.10828 -0.0169771 +-0.00348603 0.0489394 0.050606 +-0.0325038 0.107028 0.0393329 +-0.0558273 0.114722 -0.0152839 +-0.024429 0.062147 0.0418364 +0.0610039 0.0637491 0.0121545 +-0.0307981 0.0381678 0.00179566 +-0.0224893 0.0462052 0.0523041 +-0.0626699 0.13529 0.0374908 +-0.0871093 0.106357 0.0153576 +0.018535 0.0346925 0.0222104 +-0.0633642 0.142485 0.0383017 +0.0395752 0.0602985 0.0307005 +0.0196495 0.0356664 -0.00567711 +-0.00666974 0.0555272 -0.0330407 +-0.0554731 0.154191 0.0210182 +-0.00998984 0.177238 -0.0295136 +0.0366228 0.111865 0.00747742 +-0.00322809 0.0999661 -0.0238789 +0.00852647 0.0349744 0.0253569 +0.0337455 0.11169 -0.0043358 +-0.033869 0.10148 -0.022225 +0.0215013 0.108432 0.0393095 +0.027565 0.119234 0.026993 +-0.0477832 0.129154 -0.000397631 +-0.057288 0.0521607 0.00365094 +0.0119513 0.0873992 0.0542929 +0.0510679 0.0720267 0.021243 +-0.0525522 0.0487323 -0.0069784 +0.0419877 0.102851 0.0121565 +-0.0154922 0.126886 0.0243264 +-0.010476 0.0965182 0.0531854 +-0.0107078 0.0628117 -0.0359649 +-0.0848416 0.0858026 -0.00253503 +-0.0300028 0.125562 0.00590559 +-0.0137234 0.0643092 -0.0370705 +0.025242 0.0761745 -0.0249679 +-0.0268088 0.0852978 -0.0363495 +0.028746 0.0693043 -0.0217828 +-0.0525052 0.112524 0.0359139 +0.0608734 0.0637391 0.0151617 +-0.0820606 0.151973 0.00432386 +-0.065153 0.0712063 0.036955 +-0.0590564 0.0335255 0.00387291 +-0.0726667 0.0777379 -0.0132872 +-0.0639501 0.166025 -0.0326719 +0.033089 0.0892132 -0.0184699 +-0.0410037 0.148494 -0.000715623 +0.0152676 0.11708 -0.0141694 +-0.0405102 0.127658 -0.000961794 +0.0135046 0.108467 0.0407674 +-0.0598038 0.0341949 0.0280011 +-0.025416 0.0905129 0.0490114 +-0.0383992 0.0420226 0.0422608 +-0.0414999 0.0478558 0.040117 +-0.0525584 0.0501546 -0.00685551 +-0.0394783 0.0832832 0.0435432 +-0.0409872 0.0335947 -0.0218947 +-0.0234596 0.184384 -0.0119315 +-0.00549722 0.0633676 0.0561862 +-0.0249111 0.0958255 0.0441185 +-0.0794946 0.12171 0.0507273 +0.0218787 0.0430332 -0.0157248 +-0.0284679 0.0718578 -0.0335433 +-0.0287174 0.0344722 -0.0298467 +-0.0375646 0.0407082 -0.0285349 +-0.0684694 0.153743 0.0324784 +0.0275012 0.1187 -0.00304813 +-0.0654981 0.100096 0.041968 +-0.0728966 0.155445 -0.0329107 +-0.024103 0.171237 -0.0122056 +-0.0213641 0.0384977 0.0305062 +-0.00878734 0.0798675 -0.0379507 +-0.0034971 0.0703995 0.0574239 +-0.0628591 0.0679841 0.0349557 +-0.0205114 0.0512056 0.0456176 +-0.0215925 0.0364837 -0.0283556 +0.0308475 0.0751439 -0.0207339 +0.0345069 0.0483661 0.0310725 +0.00650269 0.044152 0.0457422 +-0.0404948 0.0733395 0.0422389 +0.00152573 0.0717149 0.0566366 +-0.00449638 0.110771 -0.0213478 +-0.0786622 0.0733343 0.0252726 +-0.00997021 0.129828 0.00744342 +-0.0368781 0.107107 -0.0201846 +0.0114979 0.112659 0.03891 +-0.0516419 0.126901 0.0340875 +-0.05391 0.13392 0.032587 +-0.0537085 0.0491368 0.0316573 +-0.086972 0.143283 0.00915353 +-0.0889751 0.0969295 0.00842099 +-0.0378902 0.121927 0.0281694 +-0.0870357 0.141902 0.00919077 +-0.056635 0.0350546 0.0452244 +-0.019816 0.0347801 0.0465131 +0.0392931 0.086096 0.0340337 +-0.0869334 0.0861006 0.0224549 +-0.0643967 0.0646443 0.0287462 +-0.0398612 0.101404 -0.0212384 +-0.0536876 0.0334698 -0.00403732 +-0.0785163 0.162478 -0.0269418 +-0.0638695 0.16329 -0.0240265 +-0.087202 0.10043 0.0240701 +-0.0736795 0.145791 -0.0128538 +0.0436314 0.0736519 0.026072 +-0.0326308 0.0352345 0.0485487 +-0.0158901 0.160985 -0.0130889 +0.0154243 0.0781303 0.053988 +0.00317805 0.0980649 -0.0258881 +-0.00360287 0.0419944 -0.0253901 +-0.0681856 0.169443 -0.0550153 +-0.0937199 0.12277 0.0132819 +-0.0335083 0.11115 0.0363293 +-0.0897769 0.0915868 0.0144438 +-0.00790609 0.0389527 -0.0109414 +-0.0512486 0.0474505 0.019655 +0.0299943 0.101654 -0.0156302 +-0.0688114 0.086573 -0.0173858 +-0.0425222 0.0435673 -0.0203211 +-0.0411345 0.037889 -0.0275181 +-0.0451234 0.0336213 -0.00611106 +-0.0513475 0.115214 -0.0158415 +-0.0135796 0.18457 -0.0255034 +0.0514482 0.0490026 0.000289284 +-0.0154766 0.160714 -0.011803 +-0.0871595 0.128427 0.0471391 +0.0253818 0.0487646 -0.0196147 +-0.0226623 0.0866242 0.0548392 +-0.00567144 0.0569411 -0.0332111 +0.046481 0.0764536 0.00918999 +0.0579995 0.0690441 0.020859 +-0.0371 0.126156 -0.00341777 +-0.073756 0.0716254 0.0312714 +-0.0320938 0.0457263 -0.0270587 +-0.0109396 0.165104 -0.0156606 +-0.088578 0.151544 0.0220955 +0.00637955 0.131641 0.0120332 +-0.00648723 0.114138 0.040862 +-0.058347 0.0335497 0.00759386 +0.00578775 0.0392649 0.0317966 +-0.0571091 0.140994 0.0314586 +-0.00487882 0.107372 -0.0225382 +-0.0806197 0.114932 0.047462 +-0.0334955 0.0874648 0.043047 +-0.0460993 0.132381 0.0175967 +-0.0638759 0.0334217 -0.000619218 +-0.0121322 0.038759 -0.00601251 +-0.0743637 0.153685 0.0319267 +-0.0445292 0.0547767 0.038815 +0.0265401 0.0686018 0.0436052 +0.0300756 0.0946988 -0.0182345 +-0.00649809 0.0703887 0.0571625 +-0.0574852 0.0861616 0.0444185 +-0.0204789 0.081458 0.0566556 +-0.045663 0.0367902 -0.0212772 +-0.0660163 0.156182 0.0230465 +0.0105014 0.112682 0.0391847 +-0.0863368 0.153207 0.0174967 +-0.0314199 0.0595176 -0.0174145 +-0.0903295 0.150229 0.0211233 +-0.0394972 0.0648803 0.0416583 +-0.0107858 0.0386823 0.0289151 +-0.0567014 0.0534733 -0.0003903 +-0.00348704 0.121028 0.0369539 +0.0367923 0.0967547 0.0340658 +-0.0206904 0.0538665 -0.0309758 +0.0171483 0.0535046 0.047456 +-0.052342 0.035529 0.0457534 +-0.0350351 0.0408695 0.0473482 +-0.0364795 0.0519621 0.0386972 +0.0339284 0.0669478 -0.0167571 +-0.0277715 0.0852268 -0.0356683 +0.00655622 0.121628 -0.0130526 +-0.0586532 0.0645395 -0.00761311 +-0.0582249 0.0344034 0.0351394 +-0.00633129 0.0388612 -0.00122239 +-0.0669198 0.113752 -0.0107887 +-0.0667337 0.0374088 0.0337222 +-0.00249774 0.0520145 0.0539036 +-0.0450377 0.0345968 0.0325315 +0.0242293 0.119847 -0.00515511 +-0.0932424 0.12021 0.0392849 +-0.0535442 0.129727 0.0348674 +-0.00517846 0.0367339 0.04845 +-0.0734548 0.0752713 0.0352251 +-0.0687371 0.155896 0.0104629 +-0.0471614 0.0336254 -0.00103179 +-0.00441737 0.117961 -0.0150091 +-0.0238639 0.0825121 0.0547585 +-0.0132802 0.102485 0.0435875 +-0.0649278 0.105334 -0.0156241 +0.0286778 0.116188 -0.00517917 +-0.0236663 0.0381653 0.00868472 +-0.0645999 0.0432992 0.0347148 +-0.0856886 0.0926246 -0.00156242 +-0.0835056 0.0777286 0.0204901 +0.0321567 0.107734 -0.010124 +-0.0895151 0.151559 0.0181181 +0.0110134 0.130158 0.00376449 +-0.0202842 0.16977 -0.0137262 +-0.00591514 0.12799 -0.00376372 +0.0143906 0.0373653 -0.0212799 +-0.0719296 0.11219 -0.00889601 +-0.0157228 0.0642918 -0.0372774 +0.0269219 0.115924 -0.00692402 +-0.0665225 0.0435914 0.00948645 +-0.0747288 0.102175 0.0369848 +0.0207343 0.120306 -0.00765281 +-0.0240392 0.0380418 0.0177619 +-0.0806691 0.107746 0.0299304 +0.0541727 0.0734662 0.0150335 +-0.0828869 0.0763004 0.0145215 +-0.0490771 0.154645 -0.00592496 +0.0211784 0.0973838 -0.0221644 +-0.0576844 0.0467193 0.0286753 +0.00985328 0.0602892 0.0527986 +0.0232608 0.0748451 -0.0261321 +-0.0524982 0.0862336 0.045539 +-0.0783198 0.147274 -0.0028373 +0.0082875 0.114937 -0.017843 +0.018445 0.0456517 -0.0226728 +-0.0239275 0.1816 -0.0100979 +-0.040758 0.0797297 -0.0196637 +-0.0485257 0.121087 0.0297472 +-0.0345208 0.0633716 0.0403553 +-0.00118398 0.0362533 0.0473478 +0.000189104 0.0867348 -0.0351526 +0.0231695 0.0520348 0.0420858 +-0.0324783 0.0337381 0.0144953 +-0.0597681 0.0334439 0.00560092 +0.0177557 0.0344112 0.00209212 +0.0159863 0.0860656 0.0513294 +-0.0393291 0.127134 0.01721 +-0.0628998 0.1209 -0.00884208 +0.04086 0.101423 0.0231764 +-0.0146702 0.122522 -0.00773793 +-0.0292113 0.156649 -0.000270817 +-0.0415254 0.172553 -0.00373349 +-0.0365135 0.084703 0.0437856 +-0.0208969 0.0381794 0.0236923 +0.011579 0.120136 -0.0134617 +-0.0347516 0.0383809 -0.00467189 +-0.0166266 0.172732 -0.0172138 +-0.0531086 0.126902 0.0355005 +-0.0154789 0.0347707 0.0439361 +-0.0110657 0.112343 -0.0190003 +0.0286979 0.0806527 -0.0216026 +-0.00681305 0.0345833 0.0441587 +-0.0245442 0.0708437 0.0459353 +-0.0613991 0.0718897 0.0389316 +-0.0682443 0.179461 -0.0589214 +-0.00573885 0.0698843 -0.0361103 +-0.0875967 0.100907 0.00640641 +0.0169866 0.0348952 0.0343866 +0.0228667 0.0444458 -0.0147763 +-0.0536029 0.162357 0.00297376 +-0.0723862 0.156822 -0.0359122 +0.000140075 0.103071 -0.0225088 +-0.0543692 0.0334679 -0.00234676 +-0.0771859 0.109877 -0.00559641 +-0.0922148 0.11614 0.0373108 +0.00616718 0.124896 -0.00854967 +-0.00125449 0.12189 -0.0112382 +0.0349132 0.114353 0.0126105 +-0.0534959 0.107052 0.0398334 +0.0553645 0.0492819 0.0192078 +0.0496613 0.0501912 -0.00270335 +-0.0917143 0.128313 0.0332436 +0.00552678 0.0619607 0.0559576 +-0.0252475 0.0736694 0.0465167 +-0.0656879 0.156227 0.015899 +0.0167178 0.128574 0.00869666 +-0.0616277 0.154191 0.00244865 +-0.0845352 0.136246 0.000324782 +-0.0835033 0.0804619 0.0265017 +-0.0380583 0.154792 -0.00920218 +-0.0683549 0.0382578 0.0114352 +-0.0713665 0.156324 0.018248 +0.0326986 0.0781958 0.0420379 +-0.0267044 0.158758 -0.0121466 +0.0274612 0.0417732 0.0323464 +-0.00748374 0.116886 0.0393445 +-0.0618946 0.0333508 -0.00558837 +-0.022958 0.166842 -0.0105567 +0.000373363 0.0349968 0.00734292 +-0.0437553 0.033642 0.00144997 +0.0267259 0.120866 0.0252428 +-0.0859248 0.0832079 0.00547822 +-0.00269975 0.109146 -0.0216168 +0.055733 0.052157 0.00319809 +-0.0704697 0.181218 -0.0537747 +0.00698645 0.0818884 0.0558396 +0.0424628 0.0943961 -0.00280162 +-0.0560128 0.0334549 0.00994988 +-0.000497737 0.11557 0.0407823 +0.0115122 0.104463 0.0449641 +0.0113328 0.124014 0.0325236 +-0.0257103 0.0983522 -0.0242349 +0.0385114 0.038461 0.00447642 +0.0274866 0.0994982 0.0416519 +-0.0205044 0.11679 0.0360351 +-0.0287307 0.0748955 0.0414817 +0.021677 0.0354914 0.00935068 +-0.0604978 0.109778 0.0376942 +0.0349482 0.114159 0.0154869 +-0.0891171 0.11284 0.0400327 +-0.0525174 0.133925 0.0310668 +-0.0467675 0.0811826 -0.0202513 +0.0148515 0.129255 0.0180171 +0.0134018 0.0418881 -0.0236384 +-0.0196836 0.0524593 -0.0309769 +-0.0907522 0.136478 0.0191999 +-0.0282073 0.178522 -0.0159874 +-0.0456817 0.146626 -0.00135754 +-0.0234782 0.174205 -0.0130294 +0.0157394 0.128861 0.0183169 +-0.049553 0.0432181 -0.0104928 +-0.0364431 0.0379518 -0.0296736 +-0.0342528 0.161016 -0.000502552 +-0.0106993 0.061373 -0.0355475 +0.0155546 0.034804 0.0269401 +0.0445305 0.0664178 0.0264316 +-0.0692603 0.166617 -0.0519986 +0.00900275 0.0343116 -0.0200681 +-0.0789639 0.13393 -0.00512141 +0.0183835 0.0490953 -0.0235496 +-0.0211568 0.177178 -0.0149257 +-0.0459855 0.0341655 0.0291843 +0.0234635 0.12256 0.0268857 +-0.0437241 0.0724973 -0.0179849 +-0.0492665 0.143175 0.00640774 +0.0310235 0.0363382 0.00298341 +-0.0703389 0.0353326 0.0107638 +-0.0505002 0.0762293 0.0432414 +-0.0641035 0.141307 -0.00745692 +-0.0474934 0.115292 0.0331905 +-0.050108 0.144746 0.0113816 +0.0325029 0.117364 0.00744623 +-0.0183192 0.124686 -0.00393431 +-0.00150748 0.059016 0.0544507 +-0.0104895 0.115533 0.0397944 +-0.023487 0.0435372 0.0536017 +-0.0655471 0.154522 0.00288522 +-0.0675989 0.156142 0.0239498 +-0.03165 0.0339865 0.0180432 +-0.0447604 0.0336698 -0.00424497 +-0.0348481 0.110331 -0.0188 +-0.0114927 0.0938853 0.0554733 +-0.0700706 0.155642 0.00707306 +0.0444883 0.05975 0.0312137 +-0.0788477 0.0773102 0.0306071 +-0.0712203 0.0706743 0.0326242 +0.00153616 0.078717 0.0572683 +-0.0243177 0.0607418 0.04177 +0.0445696 0.0677675 0.0254424 +0.0516179 0.0503639 -0.000756444 +-0.0610049 0.129668 -0.00770337 +-0.0731244 0.174613 -0.0403365 +-0.021137 0.166765 -0.0184531 +-0.068723 0.163208 -0.0142948 +-0.0415011 0.0676725 0.0415782 +-0.0829782 0.147345 0.00316952 +-0.056007 0.145723 -0.001571 +-0.023276 0.0768174 0.0529315 +-0.0303597 0.158405 -0.0122944 +-0.0594923 0.107014 0.0396564 +-0.0680504 0.156343 0.0223236 +-0.050518 0.054445 0.0327051 +-0.0324286 0.126663 0.0108668 +-0.0629263 0.108221 -0.0156274 +-0.0283572 0.0862879 0.0464179 +0.0304249 0.0399897 -0.00292852 +-0.0820851 0.106006 0.028693 +-0.081432 0.0776141 0.0263044 +0.0121657 0.0990535 -0.0228743 +-0.0148931 0.161809 -0.0143393 +0.0322568 0.0814321 -0.0193234 +-0.0249634 0.0631201 -0.0324542 +-0.0844782 0.152284 0.0269844 +-0.0284889 0.100156 0.0431683 +0.0335187 0.113275 -0.00203325 +0.0243141 0.0347256 0.0105738 +-0.0189924 0.127884 0.0157415 +-0.0555 0.0488797 0.0362241 +-0.0675079 0.104205 0.0395869 +-0.0181173 0.0384288 0.000495732 +-0.0138101 0.0841459 -0.0389466 +-0.0343542 0.0367977 0.0484644 +0.0170352 0.0393356 0.0436644 +-0.0255828 0.0620727 0.0401653 +0.0012257 0.0797035 -0.0352779 +-0.0033226 0.122983 -0.0103909 +0.0377895 0.0954381 0.0337234 +-0.0779478 0.107702 0.034147 +0.0309974 0.0673207 0.0412553 +0.0125192 0.0833344 0.053329 +-0.0569108 0.0471914 0.0407265 +-0.0765896 0.172837 -0.038783 +-0.0243798 0.168291 -0.0108587 +-0.0849208 0.114388 0.046865 +0.0270076 0.100021 -0.0178938 +-0.00936568 0.0388306 -0.00738531 +0.0124903 0.101789 0.047403 +0.0153634 0.050802 -0.0265798 +-0.051492 0.107057 0.0393982 +0.00022872 0.0769217 -0.0357549 +-0.073138 0.156184 0.0161734 +-0.0171943 0.171219 -0.0224352 +0.0282636 0.073195 -0.0229429 +-0.0554943 0.112513 0.0359102 +0.0268698 0.0448976 0.0368034 +-0.0567448 0.0548796 0.00465654 +0.00393342 0.0340406 0.014385 +-0.0269434 0.0864227 0.0492292 +-0.050859 0.0487888 0.015667 +-0.0524919 0.0762203 0.042799 +-0.025733 0.0751362 0.0469781 +-0.0870453 0.0846718 0.00449266 +-0.0765303 0.0961207 -0.0124976 +0.0303449 0.112749 0.0317399 +-0.070531 0.151779 -0.0453729 +0.0534729 0.0645627 -0.000631784 +0.0104112 0.0375138 -0.0230668 +0.0592863 0.0552837 0.0131736 +0.00525297 0.069736 -0.0335357 +0.0167263 0.0350159 0.0378322 +-0.0679113 0.0395796 0.0109828 +0.013918 0.129208 0.0205036 +-0.079478 0.142827 0.0451049 +-0.0708238 0.0631793 0.00551684 +-0.0687786 0.16979 -0.0301319 +-0.0187811 0.119777 -0.0107944 +0.021663 0.053586 0.0452157 +0.015783 0.0914175 0.0510677 +0.0258521 0.119872 -0.00319504 +-0.0172292 0.104564 -0.022745 +-0.0618136 0.0453397 -0.00172473 +0.0207685 0.0449736 0.0420523 +-0.0231964 0.0651165 0.0447582 +-0.0305175 0.0847809 -0.0315638 +-0.0658758 0.122838 0.0504663 +-0.0148324 0.107132 -0.0214612 +0.0460436 0.0778241 0.00519064 +0.00396334 0.0346642 0.000955872 +-0.000496537 0.0675633 0.0565514 +0.0342214 0.0813611 -0.0182381 +-0.0464961 0.0464761 0.0407845 +0.0547176 0.0680176 0.00187225 +-0.0580682 0.132534 -0.0063879 +0.0331199 0.0754691 0.0408773 +0.0401875 0.102783 0.0241636 +-0.0783656 0.151459 -0.000884796 +0.0238113 0.0754906 0.0485213 +0.0164183 0.0726599 0.0518741 +-0.0674097 0.173701 -0.0580011 +-0.0179511 0.175707 -0.0173471 +-0.0334973 0.0859864 0.0423406 +-0.0416172 0.17268 -0.00599082 +-0.0883846 0.119913 0.00130167 +-0.0154061 0.185475 -0.025609 +0.0464852 0.0429053 0.00427528 +0.0545912 0.0717149 0.021096 +-0.0661916 0.0334877 0.00245273 +-0.0495852 0.124005 0.0317323 +-0.0537144 0.0491343 0.0296614 +-0.0818927 0.122139 -0.0045131 +-0.0718108 0.0955414 0.0413269 +0.0221671 0.0444704 -0.016762 +-0.0798314 0.0733447 0.0205614 +0.0166594 0.125691 0.027245 +-0.0892473 0.0888575 0.0104669 +0.00551166 0.0504095 0.0521406 +-0.0627982 0.16724 -0.0607839 +-0.0646154 0.0457888 0.00269728 +-0.0485702 0.047508 -0.00937813 +0.026502 0.121591 0.0237374 +-0.0353601 0.152626 -0.00619729 +0.0403422 0.10564 0.0161674 +-0.0615416 0.034204 0.0241166 +0.0380593 0.0869714 -0.0147288 +0.0319925 0.114417 -0.00326976 +-0.0267368 0.0385445 0.0329521 +-0.0618964 0.108239 -0.0162152 +-0.063845 0.150027 0.0371387 +-0.0739579 0.155489 -0.0249104 +-0.0709691 0.153934 -0.0469289 +0.0249948 0.0405751 0.0353079 +-0.0304784 0.0381297 0.00370653 +-0.0247632 0.0741431 -0.0374571 +-0.0216593 0.0509046 -0.0292926 +-0.0446505 0.0592548 -0.0123035 +-0.0410267 0.172571 -0.00282243 +-0.060985 0.168641 -0.0594898 +0.0260213 0.111246 -0.0119 +-0.0224982 0.103036 0.0436276 +-0.0720537 0.0640001 0.00639175 +-0.08755 0.12805 0.000278104 +-0.0790371 0.0873264 0.0361062 +-0.055031 0.152471 0.0270238 +0.0537262 0.0622241 0.0283948 +0.0248385 0.107021 -0.0153684 +-0.0817292 0.154617 0.0205129 +-0.0776054 0.0804635 0.0348861 +-0.0644463 0.0769092 0.0410862 +-0.0737119 0.082093 -0.0148287 +-0.0782342 0.0694181 0.011104 +-0.0678631 0.0335656 -0.00155997 +-0.0771555 0.15282 -0.00488816 +0.028309 0.049176 0.0371723 +0.0122273 0.0342048 -0.000691958 +-0.0643947 0.15704 -0.046105 +-0.0276636 0.0522618 0.0383069 +-0.0587411 0.154535 0.0270999 +0.0275645 0.122014 0.00844231 +-0.0465457 0.0337901 0.0276252 +-0.0853906 0.110991 0.0352247 +-0.0338206 0.0367327 0.0490996 +-0.0145535 0.06115 0.0532234 +0.0367927 0.111755 0.0132988 +0.0458177 0.0820138 0.0181729 +-0.0444555 0.121377 -0.0123561 +0.0224202 0.0430392 -0.0127301 +0.0158478 0.102035 -0.022 +-0.0100884 0.0347013 0.0469069 +0.0374928 0.0498822 0.031843 +0.0351777 0.0559301 -0.00964394 +-0.00946358 0.169654 -0.0207426 +-0.0656264 0.15567 -0.0512009 +-0.0254805 0.0434932 0.0531599 +-0.0270955 0.0576776 -0.0274029 +-0.0228583 0.0350556 -0.0196661 +-0.0139903 0.169817 -0.0169155 +0.0176377 0.0348968 0.0272836 +-0.0144859 0.107222 0.0429439 +-0.0291189 0.15522 -0.00190906 +-0.0411739 0.165162 -0.0113688 +-0.0123514 0.0384213 0.00530714 +-0.0527141 0.141625 0.0234145 +-0.0612038 0.154834 0.027675 +-0.0338487 0.098628 -0.022813 +-0.000859642 0.105926 -0.0219248 +-0.0203431 0.186558 -0.0166005 +-0.01883 0.0882728 -0.037792 +-0.0635094 0.0987058 0.0422669 +-0.000483407 0.0787781 0.0579546 +-0.0700187 0.074071 0.0369567 +-0.0201986 0.186115 -0.0151371 +0.00141145 0.0376391 -0.024717 +0.0439647 0.0888964 0.0241631 +-0.0774025 0.100791 0.0354679 +-0.078513 0.145668 0.0427459 +0.0241305 0.0618675 0.0453428 +0.0109129 0.0833325 0.0545132 +-0.0798758 0.117757 -0.00451351 +0.0302928 0.119677 0.0137476 +0.0354021 0.0399255 -0.00156043 +-0.0489211 0.0687544 0.0390214 +-0.0493842 0.0558982 0.0343669 +-0.0524939 0.0776533 0.0431774 +-0.00761105 0.112944 -0.01965 +-0.0631004 0.038056 0.0429096 +-0.078061 0.117721 0.0511362 +-0.0228935 0.0375359 -0.0182249 +0.0168546 0.104974 -0.0191686 +-0.062493 0.0385506 -0.00796777 +-0.0814183 0.138999 -0.00180871 +-0.0585811 0.0344322 0.0332983 +-0.0299241 0.172727 -0.00652243 +0.0112861 0.130316 0.0195341 +-0.0325036 0.10978 0.0375732 +-0.0826224 0.141799 0.00118353 +-0.0805022 0.0831735 0.0334637 +0.0122352 0.0808526 -0.0312408 +-0.0771876 0.0907032 -0.0125611 +-0.0140608 0.038299 0.0231793 +-0.0386607 0.116212 -0.0149511 +-0.0276455 0.0376114 0.0210157 +-0.0832306 0.0871025 0.0304136 +-0.0334887 0.0471143 -0.0243565 +-0.0400971 0.153595 0.0050429 +-0.0647302 0.154215 -0.0408208 +-0.0194396 0.0527865 0.0471813 +-0.0665534 0.156088 0.0243177 +0.00850109 0.107119 0.0411949 +-0.0740753 0.174982 -0.0510829 +-0.0131928 0.11434 -0.0171133 +-0.00874908 0.0742103 -0.037697 +0.00967799 0.130572 0.00468392 +0.0318663 0.0862689 0.0426688 +0.0197994 0.0399634 -0.0167042 +0.0141672 0.0347073 0.00296826 +-0.0334912 0.0604137 0.038899 +-0.010802 0.0812949 -0.0382665 +-0.0626127 0.0339199 -0.00909656 +-0.0225179 0.0594554 0.0442529 +-0.0744235 0.152695 -0.0268913 +-0.0148262 0.181632 -0.021586 +-0.0501691 0.0348773 0.00986405 +0.0104481 0.102845 -0.020901 +-0.0127527 0.177163 -0.0221029 +0.008145 0.103004 -0.0207662 +-0.0548867 0.101301 -0.0205491 +-0.0772028 0.162464 -0.0309387 +0.0379552 0.0588939 -0.00773658 +-0.0134957 0.0925258 0.0558596 +0.0248886 0.0970269 -0.0206985 +-0.0393214 0.0342416 -0.0147308 +-0.0458838 0.129671 0.00293555 +-0.0574217 0.135337 0.0345321 +-0.0820284 0.13533 -0.00235647 +0.038582 0.0659177 0.034606 +-0.0494896 0.157875 0.00921755 +-0.0225598 0.125982 0.00280455 +0.0216881 0.102085 -0.0200779 +-0.0136509 0.0496769 -0.0312069 +-0.0615955 0.15529 0.0260796 +-0.0115193 0.0773584 0.0574493 +0.0404486 0.0745397 -0.00879543 +-0.057886 0.0969698 -0.0206731 +-0.0109392 0.038438 0.0236915 +-0.0148475 0.162865 -0.0159421 +-0.0183748 0.0353493 0.0515278 +0.029169 0.114081 0.0318014 +0.0232083 0.0449556 0.0403488 +-0.0234883 0.122057 0.0276339 +0.0359605 0.0936242 -0.0130764 +-0.0175335 0.0392471 0.0378093 +-0.0308588 0.171231 -0.00613945 +0.0247031 0.0463341 0.0389677 +-0.0925247 0.128292 0.0282327 +-0.0665656 0.122847 0.0512252 +0.0584586 0.0607609 0.022909 +-0.00884754 0.115581 -0.0164541 +-0.00309453 0.0984522 0.0515066 +0.0115015 0.119616 0.0358941 +-0.0494977 0.0903933 0.0446494 +-0.0126691 0.0348865 0.0479592 +-0.0149576 0.0897382 -0.0373658 +-0.0152002 0.174208 -0.0254562 +-0.0756281 0.167353 -0.024657 +-0.0627225 0.0402195 0.0247088 +-0.058955 0.151077 0.0341866 +-0.00932165 0.17502 -0.028678 +-0.0123491 0.183911 -0.0264322 +-0.0896074 0.135171 0.0322127 +-0.0426789 0.168728 0.0023488 +-0.0748775 0.0739125 0.0325733 +0.03891 0.10882 0.00971935 +-0.0633729 0.0431313 0.0286681 +-0.0551792 0.0336096 0.018904 +0.0268834 0.0875842 0.0460207 +-0.0168782 0.0351038 0.0503404 +-0.00549453 0.0590678 0.0548923 +-0.0286315 0.0383676 -0.00896928 +-0.0332631 0.177035 -0.011981 +-0.0748045 0.167943 -0.0420608 +-0.0851109 0.0939488 -0.00257672 +0.00096833 0.121103 -0.0124156 +-0.0558825 0.0465312 0.026676 +0.00712802 0.0975509 -0.0252935 +-0.00450103 0.0746726 0.0587526 +-0.0754962 0.141423 0.0471972 +-0.0514204 0.0548853 0.0209522 +-0.0107189 0.0642451 -0.0362023 +0.0428473 0.0944698 0.0251639 +0.0161732 0.12869 0.00706423 +0.0172673 0.128465 0.0103258 +-0.0624218 0.113827 0.0376933 +-0.0694289 0.039567 0.00968578 +-0.00956353 0.172645 -0.0227849 +-0.036529 0.0344176 0.0112583 +0.00747563 0.0378784 -0.00876072 +-0.0105064 0.0884021 0.0567868 +-0.0306153 0.0495713 -0.0203608 +-0.0832173 0.13898 0.000315163 +-0.00610064 0.0339097 -0.0209348 +-0.0081869 0.0386049 0.00598379 +0.0213573 0.057915 -0.0266602 +0.0391712 0.0402919 0.0231925 +-0.0346283 0.0533938 -0.0102529 +-0.00324688 0.0367886 -0.0155194 +-0.0734226 0.0711647 -0.00664488 +-0.0628413 0.144409 -0.0076345 +-0.0258745 0.104437 -0.023108 +-0.0100477 0.178214 -0.0295899 +-0.0839857 0.132609 0.0495198 +-0.0498484 0.121182 -0.0121 +0.0108333 0.130856 0.0150885 +-0.0104958 0.0939039 0.0555039 +-0.0863431 0.112514 0.0302243 +0.0475429 0.0429463 0.00623912 +-0.0334893 0.050539 0.0382432 +-0.0209099 0.158178 -0.00579641 +0.011514 0.10312 0.0464311 +0.0350456 0.0627954 -0.0138277 +-0.0161876 0.171234 -0.0230543 +-0.0268555 0.0987274 -0.0239779 +0.0118541 0.0404814 0.0449158 +-0.0104973 0.0856567 0.0572952 +0.0271955 0.0520724 0.0391174 +0.00248489 0.105788 0.0426651 +-0.0037871 0.0812341 -0.0371832 +-0.0231675 0.184436 -0.0160624 +-0.0612844 0.044277 0.027687 +0.0239731 0.061977 -0.0246362 +-0.00946933 0.0932363 -0.0348935 +-0.0178949 0.0971863 0.0483787 +-0.00196639 0.0392296 -0.0118812 +-0.0067485 0.0755804 -0.0372256 +-0.00967937 0.0555867 -0.0337759 +0.000980617 0.120181 -0.0134191 +-0.0806495 0.10968 0.039129 +0.0358807 0.0812282 -0.0166923 +0.0146499 0.0699433 0.0528108 +-0.034478 0.0590226 0.0391844 +0.0203856 0.0348183 -0.00149748 +0.0142674 0.0709686 -0.0310685 +-0.0334971 0.119329 0.0299275 +-0.0341948 0.0435484 0.0464376 +-0.00450247 0.056202 0.0539356 +-0.0721189 0.15515 0.0282101 +-0.000346509 0.12561 -0.00723663 +-0.0756644 0.0774182 -0.00947264 +0.014908 0.106309 -0.0185911 +0.0267515 0.102116 0.0406018 +-0.0626019 0.174089 -0.0546038 +-0.0574874 0.0805202 0.0440851 +-0.0609158 0.169795 -0.0608698 +0.0438296 0.0973504 0.015162 +-0.072512 0.104082 0.0376881 +0.0359801 0.0821479 0.0380155 +-0.0573808 0.129734 0.0381066 +-0.0236825 0.0566574 -0.0305632 +-0.0351787 0.0336265 -0.0226404 +-0.0257826 0.0783385 -0.0372231 +-0.0733446 0.159645 -0.0339252 +-0.024717 0.169741 -0.0113487 +-0.0597904 0.0825229 -0.0201763 +-0.0638365 0.0996097 -0.0175199 +-0.0897172 0.118919 0.0457459 +0.00851027 0.105753 0.0425683 +-0.0857293 0.121702 0.0488414 +-0.00654714 0.043 0.0484741 +-0.0524991 0.109798 0.0378325 +0.0089719 0.130372 0.00300057 +-0.0912936 0.114724 0.0218532 +-0.0758153 0.155373 0.0254598 +0.0443256 0.0931523 0.0201621 +-0.00159763 0.0391157 -0.0252097 +0.0358716 0.112393 0.0201061 +-0.0582724 0.0345955 0.0435663 +0.0444341 0.0861163 0.024155 +-0.0798668 0.12036 0.0500614 +-0.0486801 0.12235 -0.0113455 +0.044671 0.0931702 0.0171607 +-0.0867731 0.0820034 0.0144903 +-0.0444986 0.0465011 0.0409291 +-0.0132439 0.178631 -0.0284206 +-0.0014976 0.0856652 0.0573264 +-0.0555627 0.0351736 0.0453577 +-0.0757755 0.0948358 -0.0134771 +0.0116939 0.0459283 0.0447695 +-0.0334941 0.0690232 0.0409338 +-0.0717098 0.161007 -0.0419418 +-0.0620707 0.163126 -0.0385937 +0.0188526 0.103753 -0.0198618 +-0.0699102 0.14965 -0.0409667 +-0.0405063 0.0902417 0.0426463 +-0.071716 0.148756 -0.0367532 +-0.0218007 0.0637891 0.0462553 +0.0567259 0.0536428 0.00417778 +-0.0893948 0.09291 0.012442 +-0.0603715 0.133894 0.0372893 +0.0314991 0.054058 -0.0137198 +0.0203015 0.126964 0.0128708 +-0.0845068 0.120355 0.0490624 +-0.0624258 0.0342984 0.0291094 +-0.0395093 0.0930879 0.0428865 +-0.0277909 0.0380629 0.00793761 +0.0321502 0.106752 -0.0110706 +0.0298444 0.106115 0.0363002 +-0.054857 0.0970227 -0.0215362 +-0.0397671 0.127634 -0.000654541 +-0.0249592 0.0767123 0.050372 +-0.0265277 0.10717 0.0404632 +-0.0283702 0.0535742 -0.0233936 +0.00450189 0.050474 0.0524519 +0.00174762 0.0944417 -0.0320379 +-0.0810711 0.076096 -0.000474637 +0.0169426 0.11422 -0.015094 +-0.0380634 0.127686 0.00145512 +-0.0320932 0.0877303 -0.0254981 +-0.0569735 0.056267 0.00463231 +-0.0692551 0.175557 -0.0461164 +-0.0461819 0.130936 0.0220239 +0.0424151 0.101486 0.0141591 +-0.0816004 0.110405 0.0418977 +-0.0486814 0.0634873 -0.0123857 +-0.0354984 0.0491504 0.038916 +0.0232288 0.125257 0.0153837 +0.0251982 0.123641 0.0075622 +-0.0357278 0.07254 -0.0181295 +0.0451439 0.0802684 0.0230283 +-0.00649644 0.0605343 0.0557379 +-0.0697973 0.159564 -0.0489352 +-0.037469 0.120514 -0.011464 +-0.0869577 0.133848 0.0453706 +0.0185257 0.0352322 0.0362088 +-0.0206549 0.0768238 0.0545752 +0.0458945 0.0764062 0.00420006 +-0.0137194 0.091107 -0.0367438 +-0.0375014 0.106979 0.038117 +-0.0446156 0.0437685 -0.0132939 +-0.064545 0.156137 -0.0442784 +0.0275233 0.0621538 -0.0218174 +-0.0642285 0.0429095 -0.00424321 +-0.00460043 0.0434181 -0.0258683 +-0.0778454 0.158312 -0.0179205 +0.00252706 0.0800582 0.0567791 +0.0174798 0.0919971 -0.0254067 +-0.08982 0.133788 0.032216 +0.0343452 0.114918 0.0052408 +-0.0630651 0.167844 -0.0445874 +0.0164152 0.127597 0.00146207 +-0.0755176 0.120378 0.0530566 +-0.00615627 0.0994928 -0.025355 +-0.0501125 0.157587 -0.00554245 +-0.0332242 0.152554 -0.00262082 +0.0104732 0.0962984 0.0498872 +-0.0184975 0.111326 0.0402128 +-0.0228147 0.0826618 -0.0384205 +0.025553 0.0822419 0.0475803 +-0.0841632 0.11158 0.00227497 +-0.0198477 0.126879 0.00378288 +-0.069852 0.0951674 -0.0161643 +-0.0306901 0.0678681 -0.026462 +0.0155988 0.0699697 0.0524229 +-0.0167333 0.0642714 -0.0369951 +-0.0167796 0.121583 -0.00869919 +-0.0594953 0.0747194 0.0418121 +-0.0630515 0.152177 -0.00858675 +-0.0111714 0.129564 0.00700207 +-0.0890821 0.101017 0.0143926 +-0.0145147 0.116898 0.0378441 +-0.0462973 0.0368721 -0.0182757 +0.0251418 0.056415 0.0432482 +-0.0114906 0.0532044 0.051601 +-0.0514985 0.0931716 0.0440238 +-0.0536498 0.152894 0.0173581 +-0.0226294 0.157855 -0.00422736 +-0.0723402 0.0380689 0.00697334 +-0.0100211 0.0383173 0.0131334 +-0.0469913 0.0345734 0.0373898 +0.0117235 0.127254 -0.00315056 +0.0163555 0.0343012 4.3653e-05 +-0.000810177 0.084021 -0.0366442 +-0.0417008 0.153622 0.00625938 +-0.0695833 0.156717 -0.0509483 +-0.00967078 0.0541668 -0.0336446 +-0.0862734 0.13657 0.044609 +0.0363518 0.0562159 0.0330449 +-0.0528028 0.0666303 0.0365007 +0.0263615 0.0352587 0.00303932 +0.00111992 0.10872 -0.0203906 +0.00958242 0.0350342 0.0036093 +-0.0639107 0.108163 -0.0148371 +-0.00462988 0.0451748 -0.0282624 +0.00356053 0.130245 0.0239041 +-0.0428482 0.128274 0.00047704 +-0.0896015 0.136498 0.0242003 +-0.011119 0.163582 -0.018751 +-0.0521911 0.0531856 0.0256383 +0.02777 0.0808734 0.0454779 +0.0197898 0.0754906 0.0515075 +-0.0405912 0.0404909 -0.0262976 +-0.0184208 0.185917 -0.0222223 +-0.0738815 0.117926 -0.00764413 +0.0124741 0.0346639 0.0372734 +-0.057552 0.0336321 0.0166122 +0.0220421 0.0848959 0.0495666 +0.0184956 0.0962193 0.0472822 +-0.0577255 0.0578321 0.0166151 +0.00647696 0.11413 0.0402504 +-0.073854 0.100736 -0.0128364 +-0.0528758 0.0985097 -0.0219976 +0.0185485 0.111232 -0.0158588 +0.0257216 0.0672521 0.0441644 +-0.000523566 0.0428273 0.0465064 +-0.0354915 0.050532 0.0385401 +-0.0294972 0.0602632 0.0372614 +0.00410653 0.111609 -0.0202712 +0.0583904 0.0706508 0.00920486 +-0.0644959 0.084745 0.0443622 +-0.0182219 0.0954777 -0.0312615 +0.0163111 0.0608546 -0.0282401 +-0.0725001 0.120391 0.0535845 +-0.0164977 0.0828905 0.0574138 +0.0130474 0.0490028 0.046739 +-0.072956 0.173805 -0.0388399 +-0.0264766 0.0576077 -0.0284232 +-0.0644961 0.0602892 0.0183972 +0.0357477 0.074144 -0.0137952 +-0.0655596 0.171143 -0.0433207 +-0.0784904 0.133065 0.0521095 +-0.0651287 0.156206 0.0175513 +-0.0205565 0.183109 -0.0139659 +-0.0680156 0.156066 0.0121787 +0.0233417 0.0549864 0.0441504 +-0.0745084 0.134461 0.0510337 +-0.0489659 0.12587 -0.00699728 +-0.0422261 0.0339521 -0.0076663 +0.00337017 0.091416 -0.0329064 +0.040054 0.0998936 -0.00479776 +-0.0939204 0.128289 0.0212475 +-0.0301543 0.157156 -0.0110394 +-0.0456539 0.0606919 -0.0125779 +-0.0534986 0.0833862 0.0450488 +-0.047648 0.0614917 0.0367154 +-0.0486267 0.13356 0.00299082 +-0.0895466 0.0969995 0.0164128 +-0.0339552 0.0695264 -0.0185169 +-0.0176031 0.0711548 0.0545194 +0.0454033 0.0457238 -0.00184235 +-0.0546836 0.0478194 0.0276676 +-0.0875304 0.0861027 0.015468 +0.00919687 0.124582 -0.00824181 +0.0404579 0.0971405 0.0281735 +0.0219677 0.0346711 0.00269802 +-0.0114833 0.0618754 0.0549615 +-0.0209254 0.127401 0.0135903 +-0.0681737 0.074979 0.0383298 +-0.0357386 0.176065 -0.00515676 +0.0340797 0.115381 0.00660331 +-0.0207606 0.0670735 -0.0371287 +-0.075369 0.155134 0.0270903 +0.000773445 0.126081 0.0315854 +0.0414985 0.058326 0.0311197 +-0.03873 0.0340634 -0.0163036 +-0.0929281 0.121393 0.0102886 +-0.0680681 0.061235 0.0168081 +-0.0756991 0.0688679 0.00254149 +-0.0138611 0.0386244 0.0283378 +-0.0806333 0.120347 0.049427 +-0.0534714 0.115278 0.0343029 +-0.0365049 0.169731 0.000981263 +-0.0624922 0.100117 0.0423224 +0.00907886 0.126317 -0.00613291 +-0.0935493 0.125561 0.0262639 +0.022475 0.0933993 0.047467 +-0.015827 0.0921385 -0.0358122 +-0.0210449 0.0384562 -0.0168371 +-0.0207268 0.0612423 -0.0346723 +-0.0134967 0.109686 -0.0201653 +0.0456137 0.0708816 0.00289794 +-0.0090863 0.16966 -0.0247514 +-0.0889386 0.0888873 0.0194501 +-0.0532128 0.133944 -0.00360453 +0.0195053 0.0351963 0.0310168 +-0.0255119 0.104394 0.0424048 +-0.0174974 0.103031 0.0436129 +-0.0299173 0.0383162 -0.0299848 +0.00451386 0.0856474 0.057126 +0.0147725 0.0939169 -0.0254338 +0.0242867 0.0719771 -0.0256393 +0.0172719 0.0348529 0.0254373 +0.0558147 0.064873 0.0261542 +-0.0364911 0.0662596 0.041455 +-0.0758603 0.151341 -0.0198831 +-0.0616679 0.0643653 -0.00651734 +0.0383551 0.0603737 0.0324667 +-0.0477542 0.0782681 -0.0190718 +-0.0550269 0.0560444 -0.00440953 +-0.0395059 0.0972892 0.042147 +-0.0777926 0.167262 -0.0295303 +0.0604641 0.0623144 0.017179 +-0.0777137 0.177848 -0.0500546 +-0.0521757 0.0461175 0.0166821 +-0.0754874 0.130275 0.0528009 +0.0116887 0.0343979 -0.00472037 +-0.0617898 0.16156 -0.0335933 +0.0442649 0.0973538 0.00716867 +-0.0616258 0.0641254 0.029779 +0.00550935 0.0688576 0.0555484 +-0.053845 0.0955972 -0.0217935 +0.00741716 0.0375454 -0.0236134 +-0.0596132 0.113903 0.0363038 +-0.0508811 0.108424 -0.0190099 +-0.0437584 0.079737 -0.0197567 +-0.0733029 0.15632 0.000130521 +-0.003234 0.0960652 -0.0317479 +-0.0575581 0.0507849 0.00163524 +0.00435827 0.129372 -0.0013469 +-0.025212 0.123605 0.0223303 +-0.0669175 0.115159 -0.00990572 +-0.0722654 0.153589 0.032663 +-0.0147591 0.033582 -0.024214 +-0.00115893 0.11911 -0.0142672 +0.019441 0.0384709 -0.0146972 +-0.0772499 0.172214 -0.0459981 +-0.069531 0.14702 0.0417131 +-0.0343373 0.0443897 -0.0277936 +-0.0705699 0.152776 -0.0468148 +-0.0918951 0.117319 0.00831437 +0.0103421 0.0567446 -0.0299462 +-0.0336919 0.119642 -0.0105178 +-0.0629712 0.145905 -0.0115915 +0.00646739 0.0342464 -2.28584e-05 +0.00713618 0.103008 -0.0210892 +-0.018026 0.0384381 0.0276504 +0.0433583 0.0505545 -0.0063311 +-0.0882504 0.0900881 0.0054683 +0.00248872 0.118285 0.0387448 +-0.0227774 0.0713561 -0.0378898 +-0.0154972 0.122303 0.0324651 +-0.0322294 0.0708154 -0.0244722 +-0.025189 0.174162 -0.0196112 +-0.0871031 0.0846537 0.0064784 +0.00836869 0.0928852 -0.0303774 +-0.0424793 0.0958739 0.0423242 +-0.0640607 0.152536 -0.00179872 +0.00949301 0.118213 -0.015379 +0.0461867 0.0806341 0.00618373 +-0.0408599 0.102809 -0.0209257 +-0.0431187 0.159159 -0.0099383 +-0.0154785 0.0828416 0.0569929 +-0.0775215 0.161144 -0.0189221 +0.0358655 0.112954 0.0143927 +-0.0759551 0.131077 -0.00722143 +0.0465282 0.0726943 0.00507292 +-0.0784776 0.134439 0.0514602 +-0.0718916 0.0995338 0.0398851 +0.0174027 0.127944 0.018931 +-0.0494895 0.143125 0.00338457 +0.0333197 0.0357288 0.0133458 +0.0132595 0.0751478 -0.0304595 +-0.0324893 0.100164 0.0432113 +0.0343769 0.112004 0.0266888 +-0.0108703 0.180136 -0.0264173 +-0.0872312 0.1132 0.0437313 +0.0353616 0.106017 0.0302164 +-0.0282335 0.0382933 0.0310718 +-0.0646654 0.132541 0.0415985 +-0.0416682 0.0336125 -0.0201879 +-0.0690362 0.134069 0.0476421 +0.023852 0.057789 0.0449027 +0.0440963 0.0735854 0.0249308 +-0.0624573 0.163073 -0.0525854 +-0.0341025 0.169759 -0.00204136 +0.0589446 0.0649523 0.0051412 +-0.0602752 0.0336649 0.0124615 +-0.0628859 0.1495 -0.0200671 +-0.0722644 0.0671374 -0.000515551 +0.0135851 0.0658847 0.0529797 +-0.00198691 0.0368792 0.0142478 +0.0367682 0.0700097 -0.0138015 +-0.0296169 0.0408892 -0.0298249 +-0.0376612 0.0606745 -0.0122764 +0.00800811 0.0345328 -0.00370443 +0.0105539 0.104067 -0.0202515 +-0.0488192 0.0586801 0.0351334 +-0.0557857 0.0840569 -0.0214422 +0.0308153 0.0525508 -0.0137522 +0.0423969 0.0451283 0.0286278 +-0.0332147 0.036763 0.0499127 +-0.0736682 0.0730938 -0.00832442 +-0.0175484 0.124749 0.0265509 +-0.063425 0.163107 -0.0254606 +-0.0727351 0.0832969 0.03983 +0.0319929 0.088146 -0.0193446 +-0.0444371 0.122416 -0.011439 +-0.0858505 0.116285 0.047652 +-0.00444148 0.0916785 -0.0352643 +0.022957 0.0981907 0.0456622 +-0.053144 0.0595659 0.0253997 +-0.0788525 0.107465 0.0324362 +-0.0457478 0.130844 0.0207105 +-0.0684896 0.172346 -0.0400602 +-0.034733 0.0498868 -0.0123113 +0.0415062 0.0499285 0.0325086 +-0.0665679 0.0404538 -0.00528616 +-0.00650346 0.112991 -0.0197156 +-0.0448474 0.0999398 -0.0215303 +-0.0816586 0.137613 -0.00180043 +-0.0585618 0.124728 -0.00774237 +-0.0466281 0.0592297 -0.0120314 +-0.0670784 0.0653289 0.0275882 +-0.0835882 0.125784 0.0507488 +-0.0164643 0.0842755 0.0572298 +-0.0904705 0.135055 0.0132171 +-0.022546 0.116788 0.03495 +-0.0334891 0.091814 0.044517 +-0.0719917 0.151909 0.0358108 +-0.0151953 0.168341 -0.0151527 +-0.0590718 0.156479 0.0080978 +-0.0154402 0.120098 -0.0111735 +-0.036496 0.17271 -0.000384966 +0.0392898 0.0993144 0.028831 +0.024983 0.0795787 0.048494 +0.0483695 0.0734096 0.0143189 +0.0196959 0.0394038 0.04222 +-0.00886334 0.103392 -0.0235214 +-0.0118005 0.0841384 -0.0387163 +0.0252205 0.0888413 -0.0232794 +0.0298168 0.052105 0.0376191 +-0.0776927 0.169444 -0.0419634 +-0.0314915 0.057461 0.0373842 +-0.0504539 0.0558071 0.0326022 +0.0138422 0.0901622 -0.0294996 +-0.0510104 0.149266 0.0138316 +-0.0341485 0.0337694 0.0159272 +-0.085608 0.144617 0.0380805 +-0.0475132 0.0875996 0.0450977 +-0.091127 0.143391 0.0261688 +-0.0781968 0.0778917 0.0320122 +0.0284509 0.104793 -0.0149826 +-0.0223025 0.0957816 -0.0275832 +-0.0179573 0.123303 -0.00653742 +0.0369901 0.111103 0.00416682 +-0.0643667 0.159406 -0.0155654 +-0.0701684 0.165994 -0.0191552 +-0.0863906 0.0819518 0.00951177 +-0.0224965 0.100254 0.0443771 +-0.0757302 0.147214 -0.00986768 +0.0357939 0.0699287 -0.0148404 +-0.0376499 0.0577418 -0.0112619 +0.019292 0.0988007 -0.0225555 +-0.00992376 0.097544 0.0521376 +-0.0493712 0.0572598 0.0342952 +0.0255474 0.054922 0.0420386 +-0.0494259 0.144129 0.00171058 +-0.0624989 0.104282 0.0409609 +-0.0430319 0.0336432 -0.0167728 +0.0179185 0.121996 -0.0074786 +-0.0190623 0.127503 0.00554509 +-0.0474205 0.145822 -0.000777163 +0.0526083 0.0475984 0.0212218 +0.00022388 0.0797271 -0.0356555 +-0.0301525 0.168207 -0.0169318 +-0.00151732 0.0576213 0.0542293 +-0.00248496 0.0548872 0.0545581 +-0.0502022 0.12654 -0.00566411 +-0.0529063 0.0676787 0.0373317 +0.00249985 0.107203 0.0424791 +0.0029144 0.125773 -0.00745627 +0.00334453 0.0496343 -0.0297987 +0.00449641 0.11692 0.039168 +0.0399282 0.041091 0.0244564 +0.0178192 0.126124 0.0248053 +-0.0799402 0.132433 -0.00455304 +-0.0649027 0.179945 -0.0575726 +0.0404255 0.0914089 -0.00978781 +-0.065797 0.132562 0.0435297 +-0.0372368 0.172627 -0.0118528 +-0.0554974 0.10569 0.0407246 +-0.076892 0.165957 -0.0247772 +-0.0587093 0.0344925 0.0418625 +0.00823978 0.0768076 -0.0338586 +-0.0626545 0.150596 -0.0225786 +-0.0384668 0.0931237 0.0434147 +0.0141618 0.0576523 0.0502255 +-0.0683767 0.176522 -0.0580176 +-0.0129882 0.119781 -0.0128781 +0.00848559 0.0950467 0.0516302 +-0.0429797 0.127137 -0.00436425 +-0.0497252 0.141657 0.00538484 +-0.0179056 0.127636 0.0191062 +-0.0520277 0.0563658 0.0215194 +-0.02384 0.0968692 -0.0247025 +-0.0561697 0.0684762 0.0377129 +0.0120601 0.0343849 -0.00838478 +0.0299331 0.0362092 0.00288494 +-0.0763652 0.1528 -0.0108857 +-0.0736067 0.154075 -0.0289008 +0.00533532 0.0538992 -0.0301758 +-0.0599208 0.0394628 0.0453423 +-0.0184879 0.0856371 0.0571362 +-0.0208094 0.0376226 -0.0178912 +-0.0137231 0.183161 -0.0241068 +-0.0648137 0.0346657 0.0352478 +-0.0271872 0.0379033 0.0118238 +0.0264669 0.0477487 0.0380114 +-0.0723733 0.0352474 0.00704331 +-0.0322701 0.0835031 -0.0295487 +0.0272688 0.122366 0.00977001 +-0.0603093 0.0652594 0.0325934 +-0.00180254 0.0385071 0.00372255 +-0.0522762 0.123638 -0.00859751 +-0.0776201 0.171284 -0.03689 +-0.0802965 0.0872747 0.0345612 +-0.0889001 0.136394 0.00820864 +0.000412609 0.0393166 0.0342543 +-0.0642567 0.0344972 0.033776 +-0.0921303 0.11612 0.0363104 +-0.0679654 0.134068 -0.0084026 +-0.0839818 0.115583 0.0478751 +-0.00536465 0.129031 -0.000823415 +0.00514522 0.103044 -0.0216473 +-0.0496209 0.0517545 -0.00857532 +-0.0757023 0.177226 -0.0456228 +-0.0298766 0.05514 -0.0203901 +-0.0861039 0.0846923 0.0224682 +-0.0238144 0.0879301 0.05313 +-0.0611505 0.153585 0.0321143 +-0.0917527 0.113836 0.0170127 +-0.0374964 0.0591338 0.0402834 +-0.0187977 0.0799028 -0.0389405 +-0.0680553 0.17056 -0.0341587 +-0.0658521 0.0361993 0.0388506 +0.0111435 0.100252 -0.0225401 +-0.0425873 0.125894 -0.0070983 +-0.0265027 0.0498541 0.0461184 +0.00111147 0.110147 -0.0201294 +-0.00249391 0.119678 0.0379989 +-0.0117585 0.0742488 -0.0381827 +-0.0586841 0.0466878 -0.00234651 +0.0295244 0.0750328 -0.0218147 +-0.0218606 0.101624 -0.0238704 +0.0287102 0.0942447 0.0434182 +-0.0709345 0.0627948 0.0166551 +-0.0225064 0.10717 0.041634 +-0.0335027 0.074683 0.04142 +-0.092242 0.128315 0.0292604 +-0.0374976 0.0888821 0.0433743 +0.0303768 0.0578247 0.0402716 +-0.00891857 0.0338467 -0.0251248 +-0.0533378 0.162724 0.0010506 +-0.0869041 0.141929 0.0394374 +-0.047972 0.135544 0.0173874 +0.0485157 0.0597129 0.0310438 +-0.00667005 0.0904165 -0.0359686 +-0.0759966 0.0994807 0.0369297 +-0.0625222 0.149113 -0.00558111 +-0.0718118 0.14996 0.0389054 +-0.0844416 0.147376 0.00515339 +-0.0165344 0.0392124 0.0380479 +-0.079893 0.0949635 -0.0095262 +0.0236407 0.0347514 0.0177381 +-0.0196654 0.0683158 0.0524244 +0.0245994 0.0981921 0.0445203 +-0.0849795 0.0952966 -0.00257745 +-0.0528207 0.121242 0.0358805 +-0.0236049 0.0394052 -0.0289635 +-0.0332166 0.165305 -0.0043102 +-0.0251865 0.160795 -0.0139572 +-0.0865509 0.152927 0.0144746 +-0.0693964 0.157876 -0.00437702 +-0.0628145 0.169399 -0.0485883 +-0.0643644 0.153473 -0.0380226 +-0.081904 0.115723 0.0482136 +0.0101277 0.0911581 -0.0305812 +-0.0405043 0.0944618 0.0422679 +0.021919 0.118008 0.0336347 +-0.0203338 0.123782 -0.00500918 +0.0111252 0.108699 -0.019265 +-0.0574976 0.0776487 0.0433498 +-0.0354848 0.0987251 0.0428224 +-0.0651932 0.141087 0.0409428 +-0.0240513 0.0386342 -0.0120079 +0.039324 0.106993 0.0191699 +-0.0754947 0.142836 0.0460912 +-0.0122699 0.0338184 -0.0220638 +-0.0246982 0.0551057 0.0409028 +-0.0578691 0.105465 -0.0183362 +-0.0264983 0.10435 0.041876 +-0.07915 0.166638 -0.0349654 +-0.0578202 0.140285 -0.0045343 +0.0220783 0.0686046 0.0476717 +-0.0770892 0.107143 -0.00760422 +-0.0902136 0.13513 0.0232187 +-0.0723372 0.156305 0.0208189 +-0.0650055 0.135525 -0.0079735 +-0.0549293 0.154823 0.0139773 +0.0292317 0.0773621 -0.0219141 +-0.0817276 0.0964548 -0.00656413 +-0.018203 0.175668 -0.0239316 +-0.0553377 0.0457536 -0.00639551 +-0.0161975 0.0432999 0.0517769 +0.0304284 0.0383851 -0.001443 +-0.0345483 0.152531 -0.00560476 +-0.0629676 0.160574 -0.0208244 +-0.0935783 0.124186 0.0262856 +-0.0311645 0.0580869 -0.017406 +-0.0317989 0.0382037 0.00155838 +0.0576172 0.0686777 0.0217698 +-0.00505811 0.0339518 -0.0207718 +-0.0696447 0.166615 -0.0510113 +-0.0629867 0.155807 0.0241223 +-0.0340215 0.0794269 -0.0255119 +-0.0867747 0.0981404 0.0024092 +-0.0880604 0.13085 0.0022566 +0.0184887 0.0948214 0.0475148 +-0.021497 0.0988475 0.0444941 +-0.0416678 0.0592681 -0.0121392 +-0.0567258 0.0480405 0.0316684 +-0.0423133 0.129133 0.00872164 +-0.000508444 0.105851 0.0435843 +-0.0592465 0.046889 0.0316721 +0.0461219 0.0806353 0.0161697 +-0.0281528 0.0348412 0.0481365 +-0.0702797 0.180333 -0.0522624 +-0.0478122 0.134031 0.00640478 +-0.0077489 0.0713239 -0.0366154 +-0.0122439 0.168894 -0.023749 +0.0212552 0.0777078 -0.0266851 +-0.0917522 0.132325 0.0122241 +-0.0361034 0.165201 -0.01444 +-0.052501 0.0805516 0.0443114 +-0.0654153 0.0336345 0.00606909 +-0.0623235 0.139333 -0.00679766 +-0.0616576 0.170967 -0.0555865 +0.00174509 0.0392548 -0.00741822 +-0.0260001 0.0677977 0.0418131 +-0.0684331 0.0336931 0.00540027 +-0.0448348 0.0942101 -0.0220316 +-0.0731091 0.158237 -0.0329184 +0.0078778 0.0989406 -0.0227671 +0.0314417 0.115539 0.0270138 +-0.00906667 0.129748 0.004892 +0.00649868 0.108551 0.0413323 +-0.0382124 0.150071 -0.00262103 +0.0332799 0.0564373 0.0374441 +-0.00349826 0.0647878 0.0565544 +-0.0487816 0.084091 -0.021606 +-0.0568391 0.118972 -0.0116757 +-0.0644875 0.156696 -0.0456027 +-0.0411616 0.152146 0.00524032 +-0.0636742 0.142603 -0.0078783 +-0.0711318 0.0777267 0.0384114 +0.00321355 0.0796602 -0.0346071 +0.00447281 0.110003 0.0420134 +-0.0174998 0.0772311 0.0559767 +-0.0263139 0.182659 -0.010558 +-0.0322455 0.15809 0.00238998 +0.045843 0.0760483 0.0203743 +-0.0548028 0.0464121 0.0246755 +-0.0376206 0.0376543 -0.029358 +-0.0523414 0.0402098 0.0465679 +-0.0432186 0.121963 0.0262727 +-0.0321664 0.125608 0.018357 +-0.0857232 0.0792432 0.0155047 +-0.0782439 0.151233 0.0351897 +-0.0187146 0.058392 -0.0343021 +0.0452185 0.0847535 0.00320441 +-0.0640415 0.167322 -0.0369994 +-0.0823499 0.132665 0.0507367 +-0.0301219 0.0493909 -0.0214267 +-0.0843946 0.0818335 0.0225112 +-0.0246526 0.0386383 0.0332956 +0.0563147 0.0580894 0.0250386 +0.00021169 0.0389894 0.029096 +-0.00241379 0.126666 -0.00637642 +-0.0301429 0.0551656 -0.0193914 +0.0331811 0.0417541 0.0279348 +-0.0861938 0.104994 0.0213645 +-0.0824118 0.0788951 -0.000494108 +-0.0743937 0.157452 -0.00470821 +0.0187225 0.127515 0.0179893 +-0.0829047 0.0763015 0.0175246 +-0.0650238 0.0641454 0.0272956 +0.0355567 0.0878311 -0.0169845 +-0.0887171 0.117597 0.0462102 +-0.0760085 0.141318 -0.005968 +-0.0127703 0.0756733 -0.0384193 +-0.0158456 0.122449 -0.00760827 +-0.0842393 0.107513 0.00238784 +-0.0674898 0.0986608 0.0416951 +-0.0554949 0.0427291 0.0458455 +-0.0201912 0.0383436 0.00560257 +-0.0372682 0.0344921 0.0377782 +-0.0357437 0.0380351 0.0467216 +-0.0450103 0.054631 0.0385549 +-0.0369768 0.047531 -0.0185543 +0.0520769 0.0581909 0.0294992 +-0.0329038 0.153455 -0.00604291 +-0.0725184 0.128806 0.0519752 +-0.0270556 0.0706113 0.0413767 +-0.0285061 0.116641 0.0323888 +-0.0144886 0.109993 0.0419529 +-0.0285168 0.0803552 -0.0356291 +0.00952067 0.0702149 0.0551678 +-0.0355616 0.151785 -0.00432824 +-0.0826529 0.0796856 0.0277856 +-0.0365963 0.127614 0.0137714 +-0.0657008 0.139678 0.041893 +-0.0758694 0.0777615 0.0343673 +-0.00737907 0.0367231 0.0491533 +-0.0704775 0.114632 0.0510417 +-0.059558 0.128315 0.0402204 +-0.0538405 0.0941624 -0.0218364 +-0.0274601 0.124651 0.00100866 +-0.0637125 0.0705931 -0.0131267 +-0.0644549 0.043254 0.0326925 +-0.0746657 0.154121 -0.0198989 +-0.0348879 0.043516 0.0457289 +-0.0234602 0.17569 -0.0129988 +-0.0720698 0.176015 -0.0442709 +-0.043544 0.157959 0.00535766 +-0.0407405 0.0739506 -0.0180651 +-0.0696125 0.150354 -0.0430103 +0.0418343 0.0943991 0.0271656 +-0.0932461 0.129666 0.0232459 +-0.0398464 0.0957237 -0.0225845 +-0.0764914 0.171559 -0.0359139 +0.0408836 0.0614281 -0.00367417 +-0.0356978 0.0346221 -0.0180732 +-0.0895729 0.151493 0.0191084 +0.0263253 0.122966 0.0165355 +0.0113407 0.0567362 -0.0298085 +-0.0736511 0.180693 -0.0540178 +-0.042544 0.16227 0.00511409 +-0.0522198 0.0374253 0.0467614 +-0.0777691 0.0689598 0.0151422 +0.0463347 0.0428813 0.020444 +0.0509435 0.0554131 0.029582 +0.0233146 0.125046 0.00829766 +0.00834665 0.0958673 -0.0275066 +-0.00680856 0.127356 -0.00506622 +-0.0554704 0.157309 0.00940753 +-0.0754721 0.103526 0.0362863 +0.044978 0.086159 0.0221711 +-0.0716236 0.170198 -0.0283222 +-0.0196387 0.0464931 -0.0280998 +0.0569791 0.0686933 0.0226042 +-0.0233118 0.182976 -0.0180572 +0.0290367 0.060539 0.0418753 +-0.0708458 0.0980019 -0.0152545 +-0.044501 0.0562098 0.0390177 +-0.00787685 0.105931 -0.0227718 +-0.0774743 0.140015 0.0480697 +0.0275361 0.10477 0.0382193 +0.00254476 0.127971 -0.00383507 +0.0235041 0.108407 0.0388101 +-0.055098 0.146723 0.029184 +-0.0257112 0.0634738 0.0402437 +0.0222133 0.103397 0.0428172 +0.0239484 0.0901184 -0.0234122 +-0.0265532 0.080945 0.0504296 +-0.0801014 0.0881671 -0.00858727 +-0.0467634 0.0560036 0.0374321 +0.0562967 0.0661688 0.0251012 +-0.0323569 0.124066 -0.00320487 +-0.00891511 0.126415 -0.00600997 +0.0343206 0.094597 -0.0141158 +-0.0876587 0.151372 0.0112162 +-0.0723621 0.114661 0.051285 +-0.033385 0.126374 0.00317306 +-0.0465636 0.146777 -0.00183655 +-0.0086601 0.174145 -0.0268323 +0.0224333 0.0422246 0.0409441 +-0.0723219 0.171178 -0.0314543 +-0.0633454 0.159973 -0.0185957 +-0.0741825 0.156237 0.0158024 +0.0283215 0.117455 0.0287048 +-0.0518625 0.050332 0.0226347 +-0.0345112 0.112532 0.034973 +0.0102504 0.0766955 -0.0323547 +-0.0628937 0.146875 -0.0135938 +-0.0913593 0.126907 0.0414668 +-0.0755221 0.11896 0.0528247 +-0.0186351 0.0933648 0.0534492 +-0.00679579 0.0826768 -0.0377354 +0.00822704 0.0782053 -0.033734 +-0.0942744 0.126919 0.0202522 +-0.0462848 0.131856 0.0204922 +-0.05065 0.0706021 0.0388719 +-0.00522459 0.0384215 0.0122026 +-0.0524927 0.0987339 0.0429361 +-0.0388306 0.112851 -0.0174267 +-0.0268641 0.101582 -0.02361 +-0.0846396 0.153647 0.0136585 +0.0166715 0.0353808 -0.0156588 +-0.0553627 0.139574 0.0304759 +-0.0257886 0.0768981 -0.036857 +-0.0402218 0.0342366 0.0285657 +-0.045101 0.156152 -0.00816042 +-0.0348248 0.0473223 0.0413292 +0.0145592 0.0672414 0.0526521 +-0.0436275 0.0548777 -0.0111987 +-0.0248971 0.163359 -0.0156802 +-0.0449755 0.115277 -0.0159431 +-0.0492995 0.0345621 0.0403913 +-0.0257365 0.0348667 0.0503471 +-0.0754593 0.159053 -0.00907047 +-0.0632614 0.0601538 0.00426714 +-0.0265686 0.0382637 0.0296453 +-0.0355718 0.165308 -0.0024565 +-0.0727498 0.180616 -0.0549771 +-0.0381364 0.171203 -0.0118442 +0.0153228 0.0362397 0.00366285 +-0.0383106 0.0336688 0.00433881 +-0.0125102 0.0897843 0.0566766 +-0.0484982 0.0890084 0.0450201 +-0.0889791 0.0915153 0.00944503 +-0.0511466 0.124736 -0.0077758 +-0.00758688 0.0376797 -0.0254717 +-0.0509981 0.147813 0.0138388 +-0.0147745 0.0382944 0.014 +-0.0305049 0.0617476 0.0379767 +-0.0109155 0.0356188 0.0494667 +-0.0703667 0.142544 -0.0104932 +-0.0424925 0.0902452 0.0426486 +0.0099296 0.113714 0.0390911 +0.0145599 0.088488 -0.0297413 +-0.00249512 0.122376 0.0359373 +-0.0216559 0.0972103 0.0449705 +-0.0717874 0.0850294 -0.0163139 +0.0281202 0.0348895 0.0148787 +-0.0582075 0.154657 0.0258383 +0.0103893 0.0434318 -0.0247637 +0.0283214 0.115107 0.0315696 +-0.0408808 0.115001 -0.0156637 +-0.0569818 0.0548922 0.00263009 +-0.0347008 0.0666358 -0.0153327 +-0.0518449 0.146252 0.0164181 +-0.0388328 0.0943088 -0.0230504 +-0.0315145 0.0788556 0.0411289 +0.0268942 0.0988154 -0.0185978 +-0.0875561 0.0968363 0.00343541 +0.0426825 0.0805137 0.0283126 +-0.0683872 0.0690317 0.0328821 +-0.0609319 0.0343399 0.0363539 +-0.0258016 0.0867079 -0.0364604 +-0.0891389 0.120288 0.0465529 +-0.062692 0.155999 0.0140721 +0.0223974 0.0473356 -0.0199928 +-0.0616833 0.0676348 -0.0109359 +-0.0752375 0.0864841 -0.0145142 +0.014283 0.0681091 -0.0306905 +-0.0603219 0.0470192 0.0356706 +-0.015495 0.104397 0.0428489 +-0.0698499 0.0994423 -0.0150141 +-0.0293842 0.08757 0.0444817 +-0.00548831 0.112771 0.0416249 +-0.0120723 0.0353434 0.0494553 +0.0118631 0.0894057 -0.0307263 +0.0362901 0.0769906 -0.0138255 +-0.0372663 0.033541 -0.0229762 +0.0110129 0.0846936 0.0546683 +-0.0563673 0.0575771 -0.00141956 +0.0162242 0.0835192 -0.0290783 +-0.0466776 0.13337 0.0173732 +0.0116668 0.0548951 0.0518589 +-0.0175019 0.0758159 0.0556202 +-0.0865692 0.133541 0.00131146 +-0.0366797 0.0636525 -0.0138021 +-0.074087 0.0734714 0.0331119 +-0.0762512 0.156264 -0.00677505 +-0.0414995 0.168206 0.00296291 +0.0023065 0.128418 0.0277808 +-0.0141822 0.0378114 0.0510973 +-0.0674332 0.127053 0.0499702 +-0.0482072 0.0335431 -0.012174 +-0.072499 0.117558 0.0529308 +-0.0281279 0.03862 -0.0128123 +-0.0616129 0.149191 -0.00221638 +0.0436181 0.0416961 0.0210317 +-0.0758657 0.097813 -0.01246 +-0.0818672 0.120683 -0.00433302 +0.00940058 0.0342529 -0.0182643 +-0.018805 0.0625267 0.0503254 +-0.053876 0.126919 0.0361236 +-0.0884983 0.0941957 0.00744581 +-0.0165005 0.120964 0.0336371 +0.0433486 0.0519969 -0.00665823 +-0.0624811 0.149792 0.0367836 +-0.0615025 0.16984 -0.0615386 +-0.0364388 0.0352264 0.0443258 +0.0340769 0.0556934 -0.0107486 +-0.00261634 0.0450445 -0.0274328 +-0.0328486 0.0986298 -0.0228073 +0.0198481 0.0795335 0.0516115 +-0.0599778 0.148254 0.0362061 +-0.00849422 0.0674811 0.0555845 +-0.0530196 0.144246 -0.000696127 +-0.0836424 0.0924862 -0.00555232 +-0.0691184 0.165207 -0.0519806 +-0.0305063 0.111166 0.0367005 +-0.0447319 0.125394 0.0226968 +-0.0165708 0.056922 0.0510974 +-0.0568794 0.0548721 0.000601057 +-0.0355126 0.10012 0.0421792 +-0.00149054 0.131258 0.0163007 +-0.0814469 0.0761204 0.000521161 +-0.0700369 0.0765697 0.0383694 +-0.0791449 0.166643 -0.0339646 +0.0151117 0.0434234 0.0444141 +-0.0568399 0.0344097 0.0371692 +-0.0180623 0.177182 -0.017491 +0.0492456 0.0728121 0.0176064 +-0.0178752 0.105871 -0.0225888 +0.00334696 0.0342028 0.0159318 +0.0153617 0.0344714 0.021761 +-0.0945397 0.121475 0.0202819 +-0.073516 0.18065 -0.0535934 +-0.0934071 0.117385 0.0163015 +-0.0631359 0.0699525 0.0366992 +-0.0252161 0.0550594 0.0400126 +-0.00605897 0.125119 0.0321155 +-0.0360017 0.17408 -0.0118959 +-0.00638198 0.124385 -0.00985914 +-0.0145975 0.0378025 -0.0168233 +0.00417447 0.127894 0.028461 +-0.0410286 0.0345047 0.0334549 +0.0292997 0.0538256 -0.0177694 +0.0372061 0.0980869 0.0328651 +-0.0745356 0.104026 0.0368301 +-0.00436707 0.0386778 0.0266309 +0.0189949 0.0449386 0.0430002 +0.00529011 0.0668325 -0.0327227 +0.00166319 0.130955 0.0203219 +-0.0905947 0.115833 0.0426569 +0.00338984 0.116722 -0.0177517 +0.0203176 0.126182 0.0214303 +-0.0598293 0.139488 -0.00569497 +0.0142784 0.11622 -0.015243 +0.0231289 0.0835821 0.0493611 +0.0515475 0.0540038 0.0286923 +-0.0317664 0.058161 -0.0143983 +-0.0397537 0.0782783 -0.0191449 +0.012627 0.12184 0.0342326 +-0.0823735 0.148711 0.0361489 +-0.012301 0.110982 -0.0195491 +-0.0883046 0.122998 0.0470686 +-0.0315077 0.113893 0.0345441 +-0.0888952 0.137894 0.0271916 +-0.0610259 0.126912 0.0416133 +-0.0475344 0.05323 0.0369443 +-0.00961348 0.0434416 -0.0262361 +-0.0541404 0.124102 0.0375109 +0.0509994 0.044648 0.0132154 +0.0303038 0.118886 0.0223059 +-0.0596345 0.0336285 0.0108415 +-0.0196267 0.0450293 -0.0277098 +-0.0247099 0.0381195 0.00851258 +-0.0774982 0.133088 0.0521596 +0.0276359 0.0629152 -0.0215123 +0.0535119 0.0717543 0.00602975 +-0.0334971 0.0831472 0.0419572 +-0.0596476 0.14187 -0.00422882 +-0.0924522 0.125595 0.0392516 +-0.068714 0.143769 -0.0144235 +-0.0468988 0.126761 -0.00595632 +-0.0303571 0.0537911 -0.0173707 +-0.0709316 0.147597 -0.0300096 +-0.0514754 0.115278 0.0338114 +0.0190263 0.120653 0.0329746 +-0.0340031 0.1089 -0.0192874 +-0.0335001 0.116617 0.0321346 +-0.0671562 0.0724925 0.0371747 +-0.0746759 0.152711 -0.0238933 +-0.0590669 0.120714 -0.00943474 +0.00548706 0.108567 0.0416722 +-0.0114996 0.101652 0.0440245 +-0.0649779 0.141437 -0.00794337 +0.0112608 0.130411 0.00668952 +0.0436616 0.0987354 0.0121603 +-0.0558948 0.101262 -0.0199275 +-0.0309036 0.0436875 0.0502489 +0.0142962 0.0652331 -0.0300484 +0.000574283 0.0347216 0.0149023 +-0.00623443 0.0389648 -0.00688285 +-0.0810472 0.147398 0.0390836 +-0.0491606 0.0375682 0.0458781 +-0.055978 0.0534457 0.00767233 +-0.0685375 0.17487 -0.0458569 +0.0289287 0.100617 -0.0165368 +-0.0709835 0.0353942 0.00988845 +0.0337836 0.0754424 0.0400679 +0.041497 0.0527902 0.0324777 +-0.0204109 0.178661 -0.0155986 +-0.0623894 0.149097 -0.0105741 +-0.0644192 0.16051 -0.0170316 +-0.0350535 0.0346922 0.0433273 +-0.0740398 0.145796 -0.011857 +0.0214237 0.0444841 -0.0187153 +-0.0570526 0.113331 -0.0158151 +0.0134717 0.127798 0.0260714 +0.0324011 0.0446474 -0.00561054 +0.00231866 0.0568936 -0.0320023 +-0.0273763 0.112504 -0.0170987 +-0.0224223 0.072452 0.0507888 +-0.0614531 0.154118 0.0305097 +-0.0222065 0.179998 -0.0209469 +0.00315207 0.102056 -0.0221009 +0.0413778 0.0561233 -0.00592276 +0.037882 0.105959 0.026802 +-0.0607248 0.0722644 -0.016058 +0.00061382 0.126415 -0.00611002 +0.0592992 0.0566775 0.0181738 +0.0474969 0.0638142 0.0292952 +-0.0321069 0.162239 -0.0144989 +-0.0520198 0.147215 -0.00210798 +-0.0819286 0.0748755 0.0145293 +-0.0333602 0.0339348 0.0195439 +-0.0555018 0.0987713 0.0432834 +-0.0630837 0.164691 -0.0325918 +-0.0473982 0.0343754 -0.0164682 +-0.0807821 0.0980376 0.0332837 +-0.0645109 0.0370591 -0.00764757 +-0.085403 0.141865 0.00516647 +0.0420715 0.0859357 0.0292923 +0.0391529 0.107674 0.00402907 +0.024552 0.110059 0.0374287 +-0.0631521 0.0360725 0.0429133 +-0.0619885 0.156033 0.0186659 +-0.024223 0.17569 -0.0123366 +-0.0138299 0.0392302 0.0367944 +-0.0306217 0.126038 0.0115365 +-0.0714938 0.120397 0.053531 +-0.0869305 0.151358 0.010227 +-0.0788893 0.125151 -0.00625598 +-0.0447778 0.0409599 -0.0173005 +-0.09234 0.131039 0.0252374 +0.0321511 0.0724311 -0.0187615 +-0.0735819 0.0777026 -0.0122023 +-0.0678037 0.166983 -0.024036 +-0.0897153 0.135171 0.0332079 +-0.0447805 0.0840976 -0.0212945 +0.0371007 0.10968 0.00116733 +0.0112368 0.0836448 -0.0310335 +-0.036484 0.0505609 0.038833 +-0.0118972 0.116803 -0.015741 +-0.0346708 0.0621866 -0.0131726 +-0.0397664 0.0812015 -0.0202928 +-0.069532 0.172114 -0.0375728 +0.00626682 0.131047 0.00486423 +-0.0590022 0.0579904 0.014414 +-0.00972298 0.0642282 -0.0359259 +-0.0269413 0.181454 -0.0140289 +0.033222 0.0842418 -0.0188996 +0.00639168 0.0433788 -0.024537 +0.00926262 0.129557 0.000393265 +-0.00751646 0.0732149 0.0579299 +-0.0513203 0.142869 0.00077197 +-0.0288553 0.0385536 -0.0110371 +0.0555265 0.0728462 0.0170262 +-0.085954 0.146023 0.00719275 +-0.0371011 0.0461641 -0.0234326 +0.0579592 0.0537863 0.0201793 +0.0104003 0.0418913 -0.0239147 +-0.0396188 0.0505923 -0.0110041 +0.0326207 0.0944486 -0.0159568 +-0.0170933 0.0554767 0.0502631 +-0.0891859 0.139294 0.0371595 +-0.0637097 0.166224 -0.0345967 +0.00422867 0.0824562 -0.0341922 +-0.0594261 0.151258 -0.000475846 +-0.0552814 0.0464664 0.0256754 +-0.0424851 0.0776249 0.0430145 +0.0184693 0.111176 0.038468 +-0.0294978 0.0574079 0.0367222 +-0.0435452 0.0405422 0.0435069 +-0.0600989 0.0598417 0.00157193 +0.0526979 0.0525681 0.0268245 +-0.0625031 0.0602955 0.00246046 +-0.0675133 0.108346 0.0377589 +-0.00349512 0.111424 0.0424267 +-0.00549779 0.110034 0.0429298 +0.0164758 0.0713296 0.0519403 +0.0458506 0.0876137 0.00718075 +0.0244747 0.0400424 -0.00510986 +0.00547063 0.131454 0.017409 +-0.0728779 0.117943 -0.00788041 +-0.0142717 0.17714 -0.027303 +-0.0257193 0.0617764 -0.0314442 +-0.050991 0.0504175 0.03464 +0.00152343 0.0759482 0.0573355 +-0.0304944 0.064586 0.038393 +0.016253 0.0794879 0.0534651 +-0.00764651 0.0496471 -0.0308946 +-0.077844 0.0743656 -0.00558198 +-0.0326464 0.0563525 -0.0113988 +-0.061813 0.175696 -0.0586065 +-0.0681691 0.0682156 0.031879 +-0.0493845 0.0657885 0.0368321 +-0.019309 0.0362824 -0.0277788 +-0.063712 0.167032 -0.0383216 +-0.0379003 0.123041 0.0266516 +-0.000679533 0.0554388 -0.0315999 +-0.0886752 0.135106 0.0413889 +0.011146 0.128332 0.0266558 +-0.0740639 0.178692 -0.0478641 +-0.0809318 0.142082 0.0447817 +-0.00975763 0.0742329 -0.0379217 +-0.0600964 0.0334795 0.00370066 +-0.0566436 0.0657735 0.0346839 +-0.0767139 0.070678 0.0244626 +-0.0810351 0.0787684 -0.0035164 +0.0405001 0.076619 0.0321646 +-0.0283979 0.155793 -0.00852382 +-0.0535904 0.0617699 -0.00886774 +-0.0149347 0.127911 0.00262222 +-0.0197362 0.181499 -0.0230211 +-0.0781409 0.0718256 0.0231698 +-0.0337588 0.121858 0.0267132 +-0.0741051 0.0686193 0.025039 +0.0417534 0.0788713 -0.00674491 +-0.0515024 0.0340065 0.0263967 +-0.0763933 0.111249 -0.00565203 +-0.0538034 0.0898608 -0.0222645 +-0.000575856 0.0980296 -0.0278345 +0.0581094 0.0704417 0.00814168 +-0.0891434 0.137902 0.0291936 +0.00340212 0.0390598 -0.024445 +-0.0620333 0.153738 -0.0275809 +-0.0177087 0.0584461 -0.0348025 +-0.0823897 0.104663 0.0290404 +-0.0194981 0.10024 0.044034 +0.0242883 0.0705502 -0.0254969 +-0.0899225 0.133822 0.0382154 +-0.0195055 0.108574 0.0413935 +-0.0446392 0.0548635 -0.0110876 +0.00035867 0.048192 -0.0299591 +0.0364284 0.0413843 -0.00274773 +0.0187875 0.0351105 0.0327558 +-0.0568852 0.111179 -0.0170834 +0.0118445 0.0806629 0.0540991 +-0.0687285 0.155709 0.0264626 +0.00655625 0.109588 0.0412446 +0.00917706 0.113608 -0.0184169 +-0.0613933 0.155777 0.0101812 +-0.0314952 0.0903684 0.0441958 +0.0124021 0.0448701 -0.0249804 +-0.0241038 0.0865955 0.0534593 +-0.0631641 0.149054 -0.0215452 +-0.0401934 0.0365351 0.0429119 +-0.0898981 0.135185 0.0362087 +-0.0526397 0.0618282 -0.00966488 +-0.0844214 0.0777776 0.012517 +0.0222568 0.0748707 -0.0265095 +-0.0150366 0.0384845 0.00106724 +0.0180702 0.0879847 -0.0272411 +-0.0142291 0.127243 0.024765 +0.0382486 0.104643 0.0273123 +-0.0748494 0.0964384 -0.0137204 +-0.0808743 0.136754 0.0491531 +-0.0568962 0.0970004 -0.0209687 +-0.0803034 0.072641 0.00422068 +-0.0584156 0.0459799 0.0422363 +-0.0579142 0.114001 -0.0151155 +-0.0561079 0.0571065 0.0121919 +0.00037651 0.0978532 -0.0276151 +-0.0336642 0.082217 -0.0255373 +0.0457702 0.0735931 0.00320764 +-0.056498 0.07472 0.0419593 +0.00305684 0.124987 -0.00863513 +-0.0272404 0.0877435 0.0480762 +-0.040496 0.0577326 0.0402811 +-0.0202415 0.0392282 0.0390567 +-0.020926 0.0334921 -0.0253378 +-0.0690953 0.0751628 0.0379926 +-0.0520047 0.0344961 0.0416004 +-0.0141843 0.128965 0.0174774 +0.0288353 0.0368345 0.0223773 +-0.0444076 0.0394861 -0.0222996 +-0.0838483 0.119157 -0.00284212 +-0.0034971 0.0732704 0.0586485 +-0.03681 0.0886191 -0.0239226 +-0.0669297 0.105269 -0.0144963 +-0.07603 0.0941366 0.0385416 +-0.0716625 0.145448 -0.0198949 +-0.0165056 0.0382425 0.0100681 +-0.0909349 0.113307 0.0123445 +-0.0192269 0.0381483 0.0222601 +0.026296 0.0862676 0.0469202 +-0.0118259 0.0386358 0.028745 +-0.0513331 0.0334323 -0.00718543 +-0.0685946 0.0353745 -0.00558788 +-0.0370306 0.151785 -0.00571407 +-0.0891386 0.129503 0.00423129 +-0.0447856 0.0348265 0.00740272 +0.040097 0.105566 0.00218117 +0.00862183 0.120558 -0.0139068 +-0.0679053 0.171131 -0.036968 +0.0164071 0.0345184 0.0219352 +-0.0501179 0.137029 0.00241503 +0.0125996 0.0459414 0.0443461 +-0.0654928 0.0818627 0.0433416 +-0.0215596 0.0891328 -0.036783 +-0.0685096 0.147001 0.0412847 +0.0400896 0.0702922 -0.00980716 +-0.0291528 0.0378835 0.0276599 +-0.0624944 0.145991 -0.00758108 +-0.029375 0.0621337 -0.0244169 +-0.0655919 0.151202 -0.0366034 +-0.064581 0.128354 0.0453237 +-0.0626195 0.153328 0.0013944 +-0.0863817 0.148632 0.0316852 +-0.0153553 0.112218 -0.0188504 +-0.0602045 0.0441634 0.0266895 +-0.0204995 0.111306 0.0398343 +-0.0454802 0.112265 -0.0167776 +0.0212764 0.0693138 -0.0277613 +-0.0458225 0.146281 0.00549558 +-0.065521 0.0335373 -0.00466605 +-0.00710114 0.0339482 -0.0211688 +0.0551094 0.0539301 0.0250409 +-0.0781434 0.0927222 0.0364655 +0.0291436 0.0707502 -0.0218013 +-0.091117 0.143373 0.0231646 +-0.0575628 0.0576989 0.003607 +-0.0745558 0.0684435 0.0233437 +0.000679346 0.0933957 -0.0329817 +0.0136703 0.0446634 0.0441067 +0.0425933 0.0791563 0.0282081 +-0.0098481 0.112657 -0.0193422 +-0.0678577 0.102354 -0.0152646 +-0.0245236 0.0838729 0.0539551 +-0.0522319 0.125489 0.0349878 +-0.0331359 0.168192 -0.0157544 +0.0437182 0.0944809 0.000197915 +-0.0271741 0.161328 -0.0145155 +-0.0635247 0.139599 0.0380296 +-0.0105236 0.0787711 0.0579243 +0.0221704 0.109999 -0.014573 +-0.0626188 0.166275 -0.0435849 +-0.0162218 0.186444 -0.0207352 +-0.00481374 0.128076 -0.00386981 +-0.0761439 0.154623 0.0283179 +-0.00628506 0.0952929 -0.0329709 +-0.0244623 0.0348843 0.0471798 +-0.0764469 0.175411 -0.0430646 +-0.0374817 0.0903202 0.0435434 +0.0448755 0.0917539 0.00218552 +-0.0464937 0.0411703 0.0442462 +0.00738566 0.0463583 -0.0259834 +-0.0269838 0.158131 -0.000540227 +-0.0195125 0.0800523 0.0567242 +0.0535386 0.0505579 0.00123438 +-0.0704829 0.066568 0.025804 +-0.0478545 0.117892 -0.0146818 +-0.0645863 0.144373 -0.0132186 +-0.0619148 0.161553 -0.037594 +-0.0328555 0.100056 -0.0225692 +-0.0605435 0.0660534 0.0336067 +-0.00290962 0.037693 0.0115129 +-0.0101883 0.0876449 -0.0371912 +-0.0625754 0.042738 -0.00542472 +0.00650044 0.0910463 0.0545358 +-0.0756811 0.154032 -0.0169094 +-0.0034723 0.130516 0.00409153 +0.00232953 0.116694 -0.0177181 +-0.0378274 0.0929022 -0.0235348 +-0.02161 0.158057 -0.00899889 +0.0304133 0.0415863 -0.00412062 +-0.0728954 0.176495 -0.0445729 +-0.0420309 0.0335517 -0.0220625 +-0.0187514 0.0906841 0.0550582 +-0.0855548 0.125248 -0.00272359 +-0.0137086 0.0614344 -0.0364468 +-0.020723 0.0597726 -0.0340423 +-0.0708646 0.0384387 0.000437312 +0.0310181 0.112726 0.0309619 +0.0131047 0.129972 0.0173477 +-0.0216432 0.124246 -0.00349177 +-0.0626999 0.0706798 -0.0138683 +-0.0865991 0.0833319 0.0164838 +-0.0644302 0.0384213 0.0160253 +-0.0187164 0.0611476 0.0502898 +-0.0791607 0.170809 -0.0419883 +0.00181256 0.0994772 -0.0233519 +0.0199074 0.11877 -0.0100039 +-0.0361903 0.151017 -0.000604378 +-0.084275 0.0897993 -0.00457099 +-0.0554832 0.0861944 0.0449632 +-0.0623633 0.0458155 0.0336786 +0.034658 0.114539 0.0168181 +-0.0736982 0.167846 -0.0232955 +-0.0181465 0.166773 -0.0192359 +0.0113761 0.0494361 -0.0277541 +-0.0440746 0.154693 -0.007872 +0.0606816 0.0664976 0.015162 +0.044367 0.0575454 -0.00546316 +0.0134639 0.0616949 0.0510096 +0.0400149 0.0829397 -0.0117765 +0.0423451 0.0690926 -0.00378897 +-0.0691689 0.0336248 0.00172074 +0.0582234 0.0593447 0.00320204 +-0.0900566 0.133779 0.0292173 +-0.0381652 0.0336678 -0.0288809 +0.0397017 0.104178 0.024171 +-0.0755036 0.121787 0.0531411 +-0.025634 0.122393 0.025161 +0.058528 0.0565928 0.00617045 +-0.0801768 0.155046 0.0137223 +0.0277963 0.0835666 0.045536 +-0.0628566 0.145948 -0.0105775 +-0.0133824 0.0383808 0.0105781 +-0.049358 0.146268 -0.00147688 +-0.0484712 0.0517504 0.0365675 +-0.0467968 0.0869913 -0.021986 +0.0553821 0.0590684 -0.000816519 +-0.0179551 0.0921164 -0.0358084 +-0.0789524 0.0921836 -0.0106406 +0.0374058 0.0893177 -0.0145297 +-0.032345 0.0473443 -0.0245628 +0.0173629 0.0537245 -0.0278081 +-0.0616059 0.160004 -0.0295877 +-0.0123225 0.124091 -0.00743567 +-0.0401607 0.163674 -0.0120006 +-0.06497 0.154244 -0.00563561 +-0.0510279 0.0336678 0.0250302 +-0.0771941 0.0893363 -0.0125642 +0.0224953 0.109772 0.0381484 +-0.0545656 0.13815 0.0298405 +-0.00171216 0.066944 -0.0344014 +-0.00330066 0.124033 -0.00952648 +-0.0724141 0.159616 -0.0379306 +-0.0128309 0.0869146 -0.0385108 +0.0379635 0.103337 0.0286718 +0.00150556 0.0870476 0.0569313 +0.0339501 0.0683557 -0.0167775 +-0.0296157 0.053701 -0.0213818 +-0.0239053 0.0350134 -0.0198326 +0.00348633 0.110018 0.042298 +-0.00459976 0.0405792 -0.0256485 +0.0313837 0.0352278 0.00968341 +-0.0524893 0.105673 0.0402508 +-0.0334757 0.072353 -0.0224701 +-0.00165204 0.0347369 0.0450897 +-0.0251253 0.179165 -0.0186166 +0.0418909 0.0939077 0.0272858 +-0.0417165 0.069628 -0.0168617 +-0.0751265 0.0670609 0.00488552 +-0.0702901 0.063891 0.0211244 +-0.0777094 0.170825 -0.0439812 +-0.0735195 0.135848 0.0500526 +-0.0690768 0.0739443 0.0372765 +0.0123912 0.116671 -0.0157278 +-0.0504991 0.105636 0.0396146 +0.0194996 0.0489742 0.0420155 +-0.0652338 0.145869 -0.0189253 +0.0183651 0.124757 -0.00246117 +-0.067493 0.105571 0.0389191 +0.00451331 0.0814276 0.0565046 +-0.0126391 0.0466477 -0.0295757 +-0.043534 0.0422491 -0.0203181 +-0.0576807 0.133928 0.0359191 +-0.0847679 0.10454 0.0257763 +-0.0763966 0.0748983 0.0314167 +-0.0163248 0.0390132 0.0346782 +0.0455396 0.083395 0.0201668 +-0.0404951 0.0747761 0.0426102 +0.0326457 0.113685 0.0274718 +-0.0533008 0.118582 -0.0133417 +-0.0548347 0.0518559 -0.00436961 +-0.0444358 0.0344955 0.0309851 +0.0022525 0.0986072 0.0504164 +0.0280941 0.107442 0.0372758 +0.0311382 0.100809 0.0381724 +-0.0608693 0.0982413 -0.018491 +-0.0808258 0.116274 -0.00349703 +-0.00493749 0.124022 0.0339675 +-0.0202041 0.0383371 0.000156328 +0.000176932 0.0881362 -0.0348875 +-0.0122454 0.128019 0.000407111 +-0.0750529 0.0860661 0.0392001 +-0.0200226 0.0403705 0.0532551 +-0.0196618 0.127752 0.0140421 +-0.0544977 0.0747139 0.0418232 +-0.0850765 0.107567 0.00438106 +-0.0759578 0.071995 0.0287387 +-0.0434567 0.155083 0.00724724 +-0.090134 0.132434 0.0362229 +0.022282 0.0706591 -0.0268891 +-0.090924 0.128274 0.0409748 +-0.0889908 0.13778 0.0388031 +-0.0788715 0.122217 -0.0060966 +-0.00443014 0.100204 0.0479984 +0.0327247 0.0646521 0.0402099 +-0.066223 0.15556 -0.0520809 +0.0118954 0.0685639 0.0540604 +-0.0805181 0.12599 0.0525745 +0.0465562 0.0753029 0.0092212 +-0.0743025 0.151276 -0.0308835 +-0.0905476 0.146077 0.0141502 +-0.0715441 0.112225 0.0480665 +-0.0679786 0.137002 -0.008171 +-0.0672001 0.044789 0.00569382 +-0.0714328 0.168025 -0.0480185 +-0.0584837 0.088969 0.0446761 +-0.0444852 0.0411138 0.0436529 +0.0142229 0.0821798 -0.0300828 +0.0137354 0.10206 -0.0220537 +-0.0532836 0.0335112 0.0086601 +-0.046743 0.0767653 -0.0182293 +-0.0653246 0.173014 -0.0475844 +-0.0105123 0.0633015 0.0555068 +-0.0652467 0.122825 0.0496059 +-0.0587837 0.0940397 -0.0203993 +-0.061496 0.107016 0.0394252 +0.032159 0.0404592 0.0270704 +-0.0550412 0.129739 0.0362139 +0.0187645 0.036357 0.00611202 +-0.051625 0.0474378 0.0157122 +-0.0945263 0.121474 0.0192827 +-0.0874631 0.104981 0.0103802 +-0.0444225 0.0587761 0.0392912 +0.00550135 0.107149 0.041587 +-0.0023107 0.0375379 0.0154093 +0.0365396 0.111887 0.0174946 +-0.0667677 0.0809002 -0.0178421 +0.0212994 0.0550028 0.0464604 +-0.00474995 0.0391641 0.0333259 +0.0385436 0.103322 0.0277283 +-0.0350927 0.168167 -0.014918 +-0.0381943 0.124735 0.0235454 +-0.0436117 0.125739 0.0201433 +-0.0122465 0.124398 0.0313659 +-0.018196 0.038272 0.00607299 +-0.0454731 0.0675709 0.040115 +0.0397094 0.0887389 0.0329441 +-0.0612601 0.0653881 0.0322823 +0.0358388 0.063303 0.0376893 +-0.0894207 0.0969969 0.0174102 +0.0247051 0.054807 -0.022754 +-0.0362363 0.0345287 0.0379647 +-0.0134852 0.104433 0.0435318 +-0.0390753 0.0353444 0.00990175 +-0.032893 0.0386199 -0.0119052 +-0.066881 0.172737 -0.0437921 +-0.0844296 0.0777425 0.00651672 +0.0102401 0.13009 0.0220074 +-0.0184847 0.091067 0.0550019 +-0.048793 0.155022 0.0100543 +-0.042488 0.1112 0.0368617 +-0.00484603 0.0989761 -0.0268273 +-0.0667655 0.079447 -0.0174677 +-0.0520123 0.033434 -0.00549431 +-0.0309502 0.0376665 0.0292806 +0.0125353 0.118934 -0.0141702 +0.0393762 0.0393721 0.0023232 +-0.0154839 0.0388074 -0.00858919 +-0.027433 0.108265 -0.0206521 +-0.0335566 0.11282 -0.0174155 +-0.0428158 0.126503 0.0190139 +0.0359007 0.0374161 0.00496434 +0.030827 0.118499 0.003976 +0.0482689 0.0616107 -0.00376704 +0.0172995 0.0637271 -0.0287659 +0.0352999 0.0727523 0.0387329 +0.0325099 0.0439072 0.0294151 +0.0434928 0.0597185 0.030951 +-0.0849411 0.14333 0.0402714 +-0.0419573 0.15213 0.00584722 +-0.0478585 0.101383 -0.0215741 +0.0158763 0.121559 0.0327664 +0.0196134 0.0505877 0.0439573 +-0.0408143 0.0899706 -0.0230035 +0.0179499 0.0360095 0.0408071 +-0.0491945 0.137084 0.0184007 +0.0422067 0.0898824 0.0277847 +-0.0568073 0.122 -0.00880521 +-0.0535468 0.0500774 -0.00609453 +-0.0791017 0.171279 -0.0410322 +-0.0812381 0.0774347 -0.00249764 +0.00451011 0.08973 0.0555486 +0.0360129 0.0947297 -0.0122566 +-0.0267986 0.0839175 -0.0367186 +-0.0336466 0.125738 0.0192922 +-0.0645061 0.0384674 -0.00726163 +-0.069197 0.145134 -0.0204031 +-0.0453102 0.150665 0.00801555 +-0.016121 0.0347931 0.0455365 +0.0372267 0.0827114 -0.0157704 +-0.0586519 0.047167 0.0396282 +-0.0723413 0.0352299 0.00501169 +-0.00850771 0.0457646 0.047699 +-0.0361402 0.0481769 -0.0171107 +-0.0694918 0.0986232 0.041191 +-0.0145821 0.0365575 -0.0175497 +-0.0152331 0.178626 -0.0269991 +-0.0375015 0.0761535 0.0421853 +0.0230994 0.0700125 0.0474321 +-0.0769031 0.149462 0.0386995 +-0.0160344 0.0394989 0.0396851 +-0.077278 0.155614 0.0132673 +-0.0461472 0.0695191 0.0407559 +0.013766 0.105146 -0.0193832 +-0.00180961 0.102694 -0.0227875 +-0.0404787 0.102851 0.0403978 +-0.0256602 0.0491814 -0.0262646 +-0.0640267 0.155773 0.0106957 +-0.0188798 0.0381919 0.018679 +0.0251044 0.111527 -0.0122017 +-0.00771141 0.130468 0.0154714 +-0.0143198 0.128437 0.0203415 +0.000556364 0.0427979 0.0462128 +-0.0107039 0.129221 0.0216334 +-0.0755898 0.0796389 -0.010614 +-0.0618567 0.156837 -0.0325918 +-0.0516893 0.0678068 -0.0129959 +-0.0631142 0.178334 -0.0583576 +-0.0386855 0.0651385 -0.0142461 +-0.0594798 0.0790546 0.0431577 +-0.029726 0.121561 0.0251755 +-0.0328596 0.153633 -0.000344229 +0.0339626 0.0356317 0.0117064 +-0.0718527 0.158151 -0.00382487 +-0.0194857 0.0486564 0.0485018 +0.0319575 0.0889685 0.042819 +0.00933955 0.0624337 -0.0310444 +-0.0172265 0.113695 -0.0184196 +-0.0866231 0.0846922 0.0194779 +-0.0663134 0.0608279 0.00678018 +-0.0718125 0.0922256 -0.0157107 +0.0550352 0.064867 0.0267865 +-0.0446824 0.0651214 -0.0145177 +-0.066499 0.0958724 0.0422345 +-0.0484771 0.135525 0.0064169 +0.0419641 0.0872658 0.0291034 +-0.0144336 0.120974 -0.0101151 +0.00537913 0.115468 -0.0184153 +-0.0169313 0.0940904 -0.0338108 +-0.0311219 0.087675 -0.0275557 +-0.0733475 0.129801 0.0519745 +-0.0628563 0.0432731 0.0396846 +-0.0181419 0.159077 -0.00932452 +-0.0244219 0.0752703 0.0498831 +0.0278638 0.0367181 0.000104301 +0.0464062 0.0525822 0.0317783 +-0.0352134 0.127051 0.0157486 +-0.037493 0.0605801 0.0408152 +0.0435542 0.0709351 0.0259153 +-0.061811 0.0896079 -0.0190442 +-0.0487502 0.167013 -0.00197199 +-0.011981 0.180127 -0.0244833 +-0.0273118 0.0346998 0.0432305 +0.0260624 0.113339 -0.0101501 +0.00139388 0.0977439 -0.0275242 +0.0217437 0.0348491 0.000619009 +-0.0598385 0.0385019 0.0199857 +-0.0742583 0.12978 0.0523998 +0.0125017 0.103142 0.0463418 +0.0222613 0.0768462 0.049813 +0.0226846 0.125635 0.0109073 +-0.0664848 0.153437 0.0331838 +-0.0635064 0.100118 0.0422551 +-0.0884181 0.136485 0.0410708 +-0.0821317 0.151156 0.0323844 +-0.035019 0.035354 0.0462574 +-0.0445836 0.049099 -0.0105442 +-0.0913513 0.126793 0.00727091 +-0.00465552 0.0526099 -0.031899 +-0.0536395 0.0361733 0.0466553 +-0.0624928 0.0775409 0.0419345 +-0.0454844 0.1652 0.00481603 +-0.0176555 0.10171 -0.0237622 +-0.0517386 0.139928 0.000994108 +-0.0894422 0.0969694 0.0114146 +0.0282036 0.106111 0.0374341 +-0.0930784 0.128223 0.0132485 +-0.0710378 0.113905 0.0504272 +-0.0589666 0.06768 0.0360494 +0.0249541 0.12014 0.0288767 +-0.0467094 0.0345808 0.0339444 +-0.0627411 0.0766785 -0.0179436 +-0.00548466 0.051944 0.0528973 +-0.0355056 0.0705073 0.0417804 +0.00377856 0.127353 -0.00517835 +-0.0595895 0.0659394 0.0339087 +-0.0639025 0.0344657 0.0356117 +-0.0549717 0.132532 0.0345672 +-0.0762259 0.0790445 0.0349679 +-0.0259103 0.0721759 0.0444214 +0.0315716 0.117859 0.00423829 +-0.0696582 0.0642657 0.000568637 +-0.0882731 0.143189 0.0351319 +-0.031681 0.0679763 -0.0234472 +-0.0699144 0.1253 -0.00883057 +0.0435982 0.0888699 0.0251665 +-0.0914617 0.144737 0.0211556 +-0.0205009 0.126788 0.0181341 +0.0311284 0.103423 0.0364018 +-0.0196184 0.043638 -0.0281382 +-0.0192518 0.185941 -0.0210687 +0.0556563 0.0725898 0.00964459 +-0.0899954 0.135014 0.00922069 +-0.0658394 0.170333 -0.0405107 +-0.0487066 0.064243 0.0362896 +0.0115006 0.100446 0.0479384 +-0.0479295 0.132887 0.00374503 +0.0216229 0.0700379 0.048827 +0.0151599 0.050478 0.0463014 +0.00510611 0.0386758 0.0457599 +-0.0284578 0.0789297 -0.0355663 +-0.081069 0.152209 0.0312004 +-0.0814521 0.13302 0.0511119 +-0.0115065 0.0517326 0.051159 +0.0190773 0.108184 -0.0165978 +-0.0879813 0.0860844 0.0054873 +-0.0565924 0.0442297 -0.00693458 +-0.0358918 0.166781 -0.00116722 +0.0263229 0.122689 0.0193841 +-0.0305096 0.0608404 -0.0204127 +-0.0790435 0.0718734 0.00353541 +-0.0264818 0.101588 0.0434387 +0.0224815 0.0892515 0.0484736 +-0.07435 0.0711851 0.0297739 +-0.0366402 0.0563002 -0.0110085 +-0.0858069 0.133905 0.0470456 +-0.0347686 0.16678 -0.00304399 +-0.0318926 0.0385829 -0.0116716 +0.0173027 0.0680054 -0.0293377 +-0.084368 0.114299 0.000284663 +-0.0761089 0.149998 -0.0108814 +0.0437289 0.0987183 0.00617361 +0.0134057 0.0374127 -0.0219366 +0.000807934 0.124791 -0.00838237 +-0.0406768 0.0621783 -0.0128097 +-0.0926608 0.121474 0.0282925 +-0.0595443 0.155728 0.018094 +-0.0646509 0.168222 -0.0372156 +-0.0197896 0.127727 0.0110836 +0.0112619 0.069597 -0.0315203 +-0.0784667 0.141403 0.0468168 +-0.0881381 0.0996585 0.0223676 +-0.0495985 0.048927 -0.00879829 +-0.0567267 0.15478 0.0220083 +-0.0273659 0.119585 -0.010507 +0.0191093 0.0375318 0.0414884 +-0.054786 0.147744 0.027387 +0.0185111 0.114004 0.0370685 +-0.0106027 0.171925 -0.0271985 +-0.0795217 0.0748572 0.0255446 +0.0527001 0.0462105 0.0152086 +0.0191089 0.0889764 -0.0262512 +-0.0917278 0.114662 0.0113396 +-0.0311696 0.0749025 -0.031542 +0.0103976 0.0505032 0.04997 +0.00150167 0.0504398 0.0522275 +-0.00913054 0.0987984 -0.026694 +-0.0607072 0.0707896 -0.0151427 +-0.0314435 0.033488 -0.0292746 +0.0322402 0.0842577 -0.0191914 +-0.0617587 0.160001 -0.0265888 +0.0366758 0.0659888 0.0371374 +-0.0410386 0.153314 -0.00775366 +-0.0916156 0.146104 0.0201482 +-0.008275 0.130081 0.0196055 +-0.0716229 0.0395313 0.00756641 +-0.0555501 0.0448059 0.0154665 +-0.0519883 0.0545681 0.0276385 +-0.063796 0.145383 -0.0141799 +-0.0204903 0.107154 0.041938 +-0.00950118 0.06052 0.0554819 +-0.0297859 0.073336 -0.0325546 +0.0225502 0.0873848 -0.0245875 +-0.0658345 0.0367656 0.0273328 +-0.0335698 0.0354174 0.0482024 +-0.0826039 0.0829175 -0.00455606 +0.0133284 0.055284 -0.0292269 +-0.000932932 0.0363158 0.0167895 +0.0190541 0.116198 -0.0132311 +-0.000494259 0.0911454 0.0560111 +0.0112951 0.130595 0.0166808 +-0.0164761 0.0673645 0.0539812 +-0.0180225 0.0385494 -0.00514634 +-0.0610891 0.0339525 0.017372 +-0.0707478 0.147309 -0.0278341 +-0.0189873 0.180146 -0.0170482 +0.0237757 0.0343382 0.00896337 +-0.00265737 0.0899953 -0.0354905 +-0.0718661 0.100809 -0.0137558 +-0.00649817 0.0939276 0.0556503 +-0.0246455 0.126418 0.012252 +-0.0157508 0.070024 -0.0384074 +0.0256059 0.12104 -0.000826914 +0.00250363 0.0489881 0.0513443 +-0.029644 0.125848 0.0118936 +-0.024804 0.0737635 0.0475256 +-0.0672658 0.131206 0.0466969 +-0.0817178 0.0953366 0.0328835 +-0.0286351 0.0918211 -0.0275955 +0.0414472 0.0971985 0.0261597 +-0.0680972 0.121444 0.0525081 +-0.0683202 0.166619 -0.0540065 +-0.0375072 0.0775843 0.0424046 +-0.0143913 0.0384112 0.00490303 +-0.0518947 0.109852 -0.0185479 +0.0338477 0.0711662 -0.016803 +-0.0450894 0.154663 -0.00752455 +-0.0564919 0.0875695 0.0445907 +0.0391967 0.0726247 0.033788 +0.0574073 0.0717824 0.0103168 +-0.0237163 0.0380022 0.0196686 +0.0120538 0.0907862 -0.0301745 +-0.0669793 0.134061 -0.00834965 +-0.00947746 0.116894 0.0392479 +-0.0328734 0.0680853 -0.0194707 +0.030263 0.116206 0.0279976 +-0.0348513 0.0345425 0.0400019 +-0.0532018 0.0733522 0.0412342 +-0.0577592 0.033805 0.0199655 +-0.00439966 0.119978 -0.0131705 +0.0162591 0.0434903 0.0442636 +-0.0567225 0.0423764 0.0206991 +0.00325132 0.12142 -0.0127844 +0.0145581 0.125506 0.0293407 +0.00448398 0.0989824 0.0487111 +-0.0896848 0.0929338 0.0144339 +-0.04491 0.13036 0.00775303 +-0.048947 0.138616 0.00839947 +-0.0307428 0.0552453 -0.0153798 +-0.0826044 0.1367 0.0480323 +-0.0749507 0.0661289 0.00944516 +-0.00473325 0.069866 -0.0358872 +-0.0167995 0.0347343 0.0471976 +-0.0426342 0.12559 0.0204963 +-0.0444709 0.120321 -0.0132547 +0.010477 0.116818 0.0374755 +-0.0744965 0.123196 0.0533572 +-0.047302 0.16443 0.00497116 +-0.0859996 0.118394 -0.000793117 +-0.0326967 0.0849828 -0.026556 +-0.0843669 0.106153 0.00138874 +0.0167493 0.127305 0.0229819 +0.0223908 0.0489358 -0.0217863 +-0.0762839 0.155844 0.0209052 +-0.0839499 0.0979633 -0.0036111 +-0.0216926 0.126501 0.0176944 +0.0378596 0.0914955 0.035553 +0.0420895 0.102851 0.00717012 +0.0366464 0.103365 0.0302885 +-0.0696779 0.086056 0.0423345 +-0.0340311 0.0339294 0.0212063 +0.0162763 0.0361212 0.00396256 +-0.0426327 0.0338426 -0.00397459 +-0.027617 0.125471 0.0155889 +-0.0937433 0.118772 0.0222988 +-0.0518432 0.133909 0.0302884 +-0.0413643 0.124214 -0.00934406 +-0.0413386 0.121239 -0.0122322 +-0.0396582 0.0336638 0.00768797 +-0.0853564 0.091162 -0.00253932 +0.0179914 0.120614 0.0332262 +-0.0717184 0.0792466 -0.0147262 +0.0215785 0.11262 0.0367657 +0.0236405 0.0366106 0.026972 +-0.07448 0.0662148 0.0164657 +-0.00149557 0.0973426 -0.0290749 +0.0342448 0.0842103 -0.0184253 +0.0045204 0.0661365 0.0560558 +-0.0072649 0.0384115 0.0117959 +0.0362267 0.104294 -0.00842134 +0.0232091 0.0782074 0.0494446 +-0.0204762 0.0786229 0.0556935 +0.0189956 0.125897 0.000310264 +0.0582502 0.0661055 0.0226582 +-0.0884672 0.113635 0.0306037 +-0.0595891 0.155231 0.0238846 +-0.0540479 0.142765 -0.001179 +0.0139994 0.0807368 0.0537041 +-0.0660333 0.155202 -0.00458552 +-0.0371914 0.175481 -0.00856986 +-0.0114786 0.114128 0.0403922 +0.00280587 0.10648 -0.0207933 +-0.061629 0.148291 0.0370712 +-0.0305056 0.115271 0.0335326 +-0.0847456 0.0911272 0.0289858 +0.0294623 0.103445 0.0374919 +-0.0884887 0.122612 0.00129126 +-0.0869453 0.0846809 0.01048 +0.04631 0.0778469 0.00818385 +-0.077491 0.135849 0.0507593 +0.00650523 0.0745046 0.0565842 +-0.0193751 0.0711448 0.0534686 +-0.03164 0.0581442 -0.0153958 +0.00337821 0.0392113 0.0295452 +0.026954 0.116596 0.0310646 +-0.0623115 0.16311 -0.0435951 +0.0154275 0.0350916 0.0411096 +-0.0724818 0.165221 -0.0429802 +-0.0359956 0.151076 -0.00202594 +0.0162209 0.0779008 -0.0293961 +-0.0478366 0.133877 0.0213554 +0.0569921 0.0661536 0.0243514 +-0.0318346 0.0915622 -0.0244444 +-0.0864107 0.0819973 0.0174801 +-0.0497993 0.0677848 0.0379447 +-0.0671663 0.164687 -0.0194859 +-0.00868026 0.111843 -0.0204858 +-0.0195177 0.0933631 0.0529187 +-0.0535918 0.114983 -0.0155816 +-0.068804 0.18096 -0.0579804 +-0.0846698 0.148755 0.00515607 +-0.0808035 0.0868637 -0.00756861 +-0.0309282 0.156627 0.000764301 +-0.0561456 0.0642166 0.0326189 +-0.0864523 0.0899653 0.00147962 +-0.0802598 0.0734072 0.0195467 +-0.025101 0.114847 -0.0155729 +-0.0348703 0.102876 -0.0215726 +0.00151752 0.0547965 0.0538164 +-0.0216758 0.0969718 -0.024798 +0.0367496 0.0931371 -0.012555 +0.00330684 0.0583228 -0.0321215 +-0.0697412 0.154452 0.0305168 +-0.0618525 0.0343021 0.022204 +-0.00886294 0.171168 -0.0237423 +-0.0216854 0.168305 -0.0122385 +-0.0435207 0.0562403 0.0394546 +-0.0620233 0.159983 -0.0376027 +-0.0751309 0.154085 -0.0179327 +-0.0480694 0.153165 -0.00566954 +0.0283556 0.0605487 0.0426528 +0.0115864 0.0348612 0.0423222 +-0.064559 0.11407 0.0417666 +0.0210547 0.0358177 -0.00168489 +-0.042575 0.0491291 -0.011035 +-0.0742409 0.113562 0.0499634 +-0.0659446 0.146784 0.0398667 +-0.0670071 0.172276 -0.0580562 +0.0251821 0.0357118 0.0226481 +-0.0129957 0.0883892 -0.0379783 +0.01814 0.0713245 0.0508426 +0.0161851 0.0347246 0.0253316 +-0.0234485 0.122824 -0.00599554 +0.00849456 0.0412846 0.0453159 +-0.0253871 0.124202 0.0208009 +0.00860136 0.121512 -0.0129363 +-0.0764996 0.128859 0.0532215 +-0.0637886 0.083851 -0.0191517 +-0.073438 0.175304 -0.0418354 +-0.0464485 0.132668 0.0189406 +-0.018505 0.112714 0.0394706 +-0.0579749 0.117711 -0.0123561 +-0.0241311 0.0384069 -0.0174035 +0.0286891 0.119649 0.00175522 +0.0135044 0.118213 0.0361594 +0.00748569 0.0942514 -0.0297902 +0.0223281 0.111319 -0.0139783 +0.00796203 0.131149 0.00690102 +-0.0888712 0.101031 0.0183836 +0.0208523 0.0352023 0.0276656 +-0.0939805 0.118754 0.0182968 +-0.0886426 0.129716 0.0443401 +-0.0562403 0.128346 0.0379943 +-0.0946719 0.122818 0.0192736 +-0.0844496 0.151409 0.0062115 +-0.0488054 0.124161 -0.00921799 +-0.0495787 0.0503337 -0.00863311 +-0.0642728 0.174473 -0.0515364 +-0.0355869 0.116022 -0.0147547 +0.0353133 0.0362497 0.0114171 +-0.0570854 0.136926 -0.00500822 +-0.033504 0.079379 -0.0265108 +-0.062469 0.033932 0.0153305 +-0.000579953 0.0361804 -0.0245898 +-0.0314067 0.0423682 0.0507901 +-0.0112759 0.125368 0.030237 +-0.00950387 0.075936 0.0571919 +-0.0424487 0.125177 -0.00834623 +-0.0077039 0.113721 -0.0184781 +-0.00342161 0.0338005 -0.0221963 +-0.0140717 0.118746 -0.0137718 +-0.0231943 0.0388081 0.0352395 +-0.0639512 0.156212 0.0208686 +-0.0624954 0.0890364 0.0453804 +-0.0303734 0.125779 0.00722581 +0.003605 0.0340592 0.00699628 +-0.0765794 0.15423 -0.00189723 +-0.0759273 0.08606 0.0386654 +0.0508473 0.0446622 0.0112162 +0.00609443 0.127443 0.0291456 +-0.0428742 0.105667 -0.0205602 +-0.0188968 0.0381911 0.0132528 +-0.086324 0.106283 0.0073644 +-0.0320928 0.0336737 -0.0220791 +-0.0466544 0.119173 -0.0140371 +-0.0710688 0.156192 0.0139947 +-0.055712 0.155088 0.0136896 +-0.0525045 0.159361 0.00819169 +-0.0543637 0.116891 0.0353365 +0.0318466 0.0424663 0.0288342 +-0.051547 0.125478 0.0342157 +-0.00249266 0.0760635 0.0587913 +-0.00575365 0.0727093 -0.0362416 +-0.00680153 0.129324 0.00093339 +0.0495021 0.0664943 0.0276338 +-0.0282448 0.11486 -0.0155715 +0.031224 0.0786608 -0.0202592 +-0.0148026 0.0827563 -0.0392327 +-0.071855 0.0993885 -0.014251 +0.0177513 0.0462342 0.0429632 +-0.0242082 0.121982 0.0271598 +-0.0922854 0.116039 0.0223382 +0.0434814 0.0832239 -0.00379707 +-0.0384996 0.171162 0.000767348 +-0.0712408 0.114861 0.0513991 +-0.0157632 0.12799 0.00385748 +0.019082 0.126548 0.00245443 +-0.00388013 0.0394939 0.0368098 +-0.0204678 0.122105 0.0297617 +-0.0285693 0.0399846 -0.0296196 +-0.0831878 0.0764607 0.0163622 +0.0190867 0.0428243 -0.0216805 +0.0483631 0.0628304 -0.00297175 +-0.0927311 0.120157 0.0322864 +-0.0241838 0.0579409 0.0417219 +-0.0517297 0.0723507 -0.015831 +-0.0217729 0.0684817 -0.0372671 +-0.00949546 0.0829261 0.0578441 +0.0172524 0.0778474 -0.0286871 +-0.0441607 0.162142 -0.00945516 +-0.00587725 0.105934 -0.0226578 +0.0253567 0.0518232 -0.0216362 +-0.0494861 0.156424 0.00985611 +-0.0174771 0.0924389 0.0547456 +-0.0151406 0.126373 0.0259068 +-0.0852968 0.0818288 0.005494 +-0.0244818 0.0988555 0.0446892 +-0.0930791 0.118839 0.037294 +-0.0662836 0.114247 0.046332 +0.0127465 0.0672208 0.05354 +-0.0414757 0.109827 0.0377618 +-0.0435203 0.0519967 0.0390799 +-0.0417672 0.0812092 -0.0204027 +-0.0786424 0.0732312 0.000545367 +-0.0358502 0.0986071 -0.0225695 +0.0443653 0.0561662 -0.00597205 +0.0226111 0.0458717 -0.017849 +-0.0108336 0.116804 -0.0157483 +-0.0865451 0.110395 0.00835385 +0.031421 0.0399741 -0.00264961 +0.0363991 0.039859 -0.00104313 +-0.0468008 0.0347657 0.0424884 +-0.0398282 0.0914347 -0.0233046 +-0.025008 0.0334859 -0.0261337 +-0.0465231 0.0804789 0.0433941 +-0.0689665 0.135529 -0.00828838 +-0.0264689 0.0379883 0.0100865 +-0.0345116 0.111154 0.0360997 +-0.0225694 0.0387321 0.0336407 +0.0372794 0.0574491 -0.00767997 +-0.0707981 0.0672067 0.0269443 +-0.0150683 0.0384098 0.0065829 +-0.0592389 0.0452743 -0.00430196 +-0.0334924 0.102881 0.0413291 +-0.079025 0.153836 0.00536375 +-0.0229321 0.055215 0.043371 +-0.0601957 0.0341396 0.0262143 +-0.0688541 0.147497 -0.029579 +-0.0613597 0.172535 -0.0585911 +-0.0748166 0.0921259 -0.0144369 +-0.0632016 0.165278 -0.0601981 +0.0402098 0.04091 0.000378677 +-0.047469 0.117985 0.0306301 +0.0368134 0.0781201 0.03746 +0.000515748 0.0349973 0.0453092 +-0.0534255 0.124412 -0.00739059 +-0.000488424 0.0801341 0.0575904 +-0.0706455 0.0701231 -0.00669595 +-0.0477034 0.0649971 -0.0135628 +-0.0348898 0.0767003 -0.020496 +-0.00451076 0.0788064 0.0581316 +-0.0693915 0.117164 0.0523368 +-0.0200653 0.164398 -0.0170398 +-0.073544 0.177863 -0.0540307 +0.0427163 0.0399244 0.0113768 +0.0240483 0.0713748 0.0470522 +-0.0154968 0.0659374 0.0537935 +-0.0686329 0.175846 -0.0473222 +-0.0628372 0.172536 -0.0525874 +-0.0796429 0.148681 -0.00084361 +-0.0663392 0.0600723 0.0146241 +-0.00400483 0.123769 0.0343163 +0.0322222 0.0597861 -0.0166881 +-0.0640918 0.158696 -0.0546245 +-0.00248901 0.0456504 0.0469622 +-0.072774 0.10871 0.0380686 +-0.0810086 0.154578 0.0119766 +-0.0695005 0.091616 0.0421021 +-0.0665162 0.155345 0.00690315 +-0.030539 0.0748507 -0.0325674 +-0.0672648 0.0680031 0.0322561 +-0.0660205 0.131186 0.0449542 +-0.0246171 0.125897 0.00496292 +-0.077893 0.12518 -0.00689701 +-0.0883724 0.121658 0.047175 +-0.0773948 0.167309 -0.02854 +-0.0604 0.0470132 0.0371523 +-0.027746 0.0753954 -0.0356568 +-0.0748509 0.0782361 -0.0105914 +-0.0571323 0.14819 0.0314465 +-0.0415029 0.0803953 0.042616 +-0.0628829 0.0649103 0.0305991 +-0.00169833 0.0598396 -0.033652 +0.0151569 0.107807 -0.0181851 +0.0566945 0.0674374 0.0239376 +-0.0717279 0.155642 0.00502354 +-0.00382186 0.102465 0.0438439 +-0.0587089 0.155741 0.0125904 +0.0572801 0.0608152 0.0247108 +0.017703 0.0913635 0.0485583 +0.0260543 0.116303 -0.00733098 +-0.0345036 0.0690703 0.0414109 +-0.0292922 0.117943 -0.0127907 +0.0213023 0.0835644 0.0502546 +0.0464907 0.0664648 0.0271426 +-0.0564929 0.14962 0.0306387 +0.0282135 0.118937 -0.00132982 +-0.000391601 0.123621 0.0341495 +-0.00114981 0.12653 0.03091 +0.0304544 0.114562 -0.00546317 +-0.0547437 0.0337519 0.0206417 +-0.0468823 0.107031 -0.0193009 +-0.0631801 0.0406886 0.0415101 +-0.0910325 0.133669 0.0112223 +-0.0592476 0.145654 -0.00231326 +-0.0125718 0.100502 0.0445971 +-0.0298246 0.0378766 0.0293214 +-0.0839351 0.123564 -0.00377373 +-0.0621407 0.163665 -0.0567978 +-0.0389566 0.155104 0.00497717 +-0.0878144 0.105004 0.012374 +-0.0794305 0.0908376 -0.00963692 +-0.0246551 0.0507167 -0.0273858 +-0.0796103 0.0799856 -0.0065507 +0.0330411 0.10941 -0.00791346 +-0.00231596 0.121888 -0.0112268 +-0.0597326 0.154693 0.0267485 +0.0339669 0.0697663 -0.0167955 +0.0205734 0.0999616 -0.0218299 +-0.0354929 0.0917868 0.0443508 +0.00339585 0.0355203 0.0220096 +-0.0315414 0.125778 0.00387502 +-0.0478194 0.135564 0.0104014 +-0.00879058 0.0812731 -0.0379859 +-0.0037488 0.0386615 0.00318783 +-0.0464486 0.0959731 0.0434949 +-0.0306087 0.0394849 -0.0300968 +-0.00234671 0.0967246 -0.0304442 +-0.0312616 0.0735186 -0.0295121 +-0.0423301 0.0340883 0.0282541 +0.0355908 0.113068 0.0185826 +0.000833787 0.106762 -0.0210825 +-0.021676 0.184465 -0.0190713 +-0.0305406 0.0566147 -0.0184018 +-0.0876394 0.113262 0.0257017 +-0.0851868 0.0966727 -0.00156833 +-0.0465061 0.0425232 0.0438042 +0.0106037 0.121274 -0.0126925 +0.0290611 0.0523826 -0.0177704 +-0.000764451 0.0769261 -0.0359174 +-0.0416101 0.0338187 0.00715256 +-0.0893298 0.0969555 0.0104169 +-0.0345694 0.163827 -0.00275159 +-0.0888276 0.090232 0.0214359 +0.0208395 0.034464 0.00266226 +0.0428658 0.0623821 -0.00251673 +-0.00588102 0.130577 0.00751387 +-0.0133142 0.0337765 -0.0222266 +-0.0435242 0.0590876 0.0398271 +0.0545899 0.0478435 0.0151974 +-0.0107349 0.0699421 -0.0371274 +0.027906 0.0578072 0.0419759 +-0.0416225 0.0520166 -0.011127 +-0.0207276 0.168298 -0.0126147 +0.0256959 0.0491338 0.0386649 +-0.0550795 0.153114 -0.00215772 +-0.0380808 0.0483205 -0.0131774 +-0.0276317 0.056316 -0.0254148 +-0.00815144 0.127733 -0.00346398 +-0.0627849 0.0852772 -0.0191174 +-0.0619877 0.169385 -0.052596 +0.0234401 0.112665 0.0358138 +-0.0659073 0.110934 -0.0126703 +0.0280721 0.0360499 0.0211097 +0.0105243 0.0687767 0.0545753 +-0.00679638 0.0982761 -0.0281107 +-0.0309109 0.0462432 0.0473418 +-0.0196031 0.0393462 -0.028238 +-0.0871129 0.152836 0.0157593 +-0.0911632 0.133688 0.01322 +-0.0464961 0.102903 0.0415914 +-0.0206991 0.0553418 -0.0317435 +-0.00949277 0.073156 0.0570282 +-0.0864179 0.083353 0.0184733 +-0.0841891 0.111446 0.02976 +-0.0940387 0.126929 0.0232615 +0.0406221 0.0899944 0.0307666 +0.0208423 0.104696 0.0425993 +0.0445354 0.0407636 0.0127885 +-0.0623396 0.172509 -0.0536126 +0.0342346 0.0852576 -0.0183147 +-0.0866427 0.151554 0.0100877 +-0.0470988 0.0345244 0.0321531 +-0.080576 0.154494 0.0106641 +-0.0137759 0.0756859 -0.0386228 +0.0216235 0.0430155 -0.0167288 +0.0376424 0.109732 0.0031582 +0.0589875 0.0607291 0.021951 +-0.0923003 0.132372 0.0212228 +0.0311691 0.0942449 0.0417029 +-0.0174159 0.162512 -0.00777918 +-0.0156178 0.12076 -0.00985742 +-0.0507328 0.121196 0.0335979 +0.028716 0.119662 0.0245591 +-0.0738138 0.0950345 -0.0145557 +0.0204425 0.0350747 0.0258809 +-0.0207737 0.0351435 -0.019333 +0.0223353 0.12586 0.0121947 +-0.0155009 0.0951913 0.0533641 +-0.0143883 0.038338 0.0212719 +0.00741103 0.0391504 0.030425 +0.0433932 0.0691823 -0.000799598 +-0.0760543 0.149976 -0.0168736 +-0.0701178 0.170154 -0.0291958 +-0.0483555 0.146018 -0.00117385 +0.0336441 0.0578174 0.0379601 +-0.0913716 0.140622 0.0201693 +-0.0308539 0.0958394 -0.0237431 +-0.0766992 0.0702795 0.00252119 +-0.0544948 0.107078 0.0398767 +-0.0587729 0.0796565 -0.019784 +-0.013621 0.128874 0.0191382 +-0.0634727 0.156127 0.0195874 +-0.0880436 0.0977019 0.0235765 +-0.0606626 0.0738612 0.0409255 +0.0348653 0.0795228 0.0399156 +0.0387467 0.0828368 -0.0137708 +-0.0573402 0.0424553 0.0177175 +-0.0784976 0.148406 0.0395361 +-0.0917148 0.117385 0.0263102 +-0.0330041 0.122377 0.0254817 +0.0172403 0.0768113 0.0531129 +0.0595736 0.0691817 0.0101411 +0.0306903 0.0708797 -0.0198199 +-0.0845462 0.119028 0.0490922 +-0.0501127 0.0337803 -0.0127711 +-0.0670049 0.0372923 0.032499 +-0.0915067 0.129676 0.0312386 +-0.0550517 0.0504886 -0.00434688 +-0.0484873 0.0790818 0.0439275 +-0.0635173 0.159862 -0.0515858 +-0.0706155 0.173275 -0.0394062 +0.0352172 0.0952034 -0.0127755 +0.0251052 0.0382735 0.0297226 +-0.0668809 0.106639 -0.013906 +-0.0678418 0.143634 -0.0139334 +-0.0235762 0.184403 -0.0123621 +-0.0257601 0.0726356 -0.0363191 +-0.0573375 0.0472769 0.0101218 +-0.085611 0.106332 0.02136 +-0.0265671 0.0617846 0.0387137 +-0.0126044 0.12951 0.0108053 +0.0214416 0.0362735 0.0322576 +-0.0354711 0.126342 0.0186171 +-0.0594976 0.0904384 0.0451853 +0.00310705 0.0348555 0.0387811 +0.0254813 0.0942452 0.0457882 +-0.0308576 0.10008 -0.0228293 +-0.0176768 0.0510699 -0.0312435 +-0.0162281 0.181624 -0.0200739 +-0.0195138 0.038345 0.00392275 +-0.0645154 0.121409 0.0489254 +-0.0248162 0.0593033 0.0409035 +-0.0571389 0.136712 0.0331888 +-0.0435213 0.0379732 -0.0242868 +-0.0606582 0.12408 0.0421371 +0.0346832 0.0519191 0.0323364 +-0.0913706 0.116528 0.0258009 +-0.0426868 0.0651551 -0.0146214 +-0.0215064 0.116765 0.0355266 +-0.0581012 0.158247 0.00415445 +0.00842312 0.0385006 0.0330183 +-0.0523141 0.162661 -0.0019165 +0.0606845 0.0623337 0.0161711 +-0.0495055 0.0848369 0.0453213 +0.0333786 0.06058 0.0393695 +-0.0689469 0.131135 -0.00874709 +-0.078943 0.132461 -0.00522567 +-0.0196521 0.0386292 -0.00926197 +-0.0594457 0.0334843 -0.00338966 +-0.054161 0.0337073 0.0136843 +-0.0384829 0.0959056 0.0428235 +-0.0869182 0.148604 0.0308154 +-0.0323987 0.116048 -0.0147978 +0.0359194 0.0798211 -0.0157295 +-0.0328255 0.12127 -0.00820532 +0.0414852 0.0569681 0.0316528 +-0.0270871 0.0520359 -0.0253933 +0.0508347 0.0727393 0.0196905 +-0.0198767 0.105865 -0.0225965 +0.0206869 0.0400703 -0.0126929 +-0.0285033 0.0616825 0.0373869 +-0.0714181 0.143109 -0.0104276 +-0.0804568 0.138622 0.0481167 +-0.0458049 0.0532278 0.0379952 +-0.0509023 0.125469 0.0333647 +-0.0871853 0.145927 0.0339699 +0.0558536 0.0594884 0.0261475 +-0.0889169 0.126733 0.0032966 +0.0110737 0.125093 -0.00680678 +-0.0358405 0.094357 -0.023472 +0.0259145 0.102099 0.0411479 +0.0426389 0.0764517 0.0281735 +0.00597565 0.131268 0.0190237 +-0.0475211 0.165506 -0.00586183 +0.0138473 0.035286 0.0424107 +-0.0544751 0.0987674 0.042954 +0.0329063 0.0668566 -0.0177475 +-0.0715523 0.0819441 0.0400873 +-0.0483263 0.149906 -0.00403153 +0.0417112 0.0986332 0.0241669 +-0.0591403 0.039472 0.0459797 +-0.0649985 0.156251 0.0205012 +-0.0389795 0.034282 0.00907489 +-0.0627215 0.0592404 0.0161384 +-0.0367435 0.0437017 -0.0271198 +-0.0164726 0.0387782 -0.0143554 +0.0302495 0.0773125 -0.0211724 +0.0378723 0.109729 0.00416584 +-0.0033562 0.120959 -0.0122202 +-0.0465665 0.0433151 -0.011194 +-0.0597431 0.093988 -0.019461 +-0.0756514 0.0743685 0.0320217 +0.0461779 0.083439 0.010174 +-0.0757827 0.151399 -0.00889222 +-0.0417451 0.0768346 -0.0188724 +-0.0617437 0.0421117 0.0428503 +0.00176163 0.130465 0.00157228 +0.0429689 0.0696277 0.0268653 +-0.0432762 0.0450842 -0.0143236 +-0.0525312 0.0475838 0.0226634 +-0.0153636 0.128543 0.00690549 +-0.0685053 0.109678 0.0379594 +0.0174805 0.103096 0.0453391 +0.0217176 0.0632088 0.0471364 +0.0359993 0.0955223 0.036379 +-0.0451488 0.0335546 0.00486717 +-0.0681193 0.15804 -0.05439 +-0.0661021 0.155727 0.025928 +-0.00573558 0.0684573 -0.035843 +-0.0181282 0.187252 -0.018852 +-0.0445141 0.050571 0.038927 +-0.00049716 0.0856626 0.0573342 +0.016507 0.0913965 0.0503683 +-0.0333397 0.0410057 0.0499212 +-0.0351946 0.125334 -0.00338173 +-0.0616183 0.16622 -0.0565931 +-0.0624979 0.0760891 0.0414437 +0.0350466 0.107363 0.0297386 +-0.0720199 0.063399 0.00874547 +-0.0877434 0.135138 0.0431967 +0.0458379 0.0588925 -0.00503856 +-0.0385014 0.119389 0.0303589 +-0.0647267 0.0417808 0.0373932 +-0.0226655 0.0537608 -0.0296706 +-0.0584982 0.105689 0.0406051 +-0.0137228 0.0685659 -0.0377913 +-0.0817302 0.142079 0.0441697 +-0.0426358 0.0548841 -0.0113796 +-0.0135008 0.082884 0.0573146 +-0.00338001 0.130095 0.0228247 +0.0172769 0.0708593 -0.0295557 +-0.0246932 0.065394 -0.0335995 +-0.0314011 0.178523 -0.00645128 +-0.0575589 0.154615 -0.000238768 +-0.0407441 0.0753914 -0.0183192 +-0.084936 0.144668 0.0388142 +-0.0365092 0.108385 0.0376381 +-0.0851088 0.102115 0.000391121 +-0.0646522 0.0642554 -0.00503339 +-0.0754983 0.145823 -0.00786764 +-0.0474148 0.133778 0.0200381 +0.012958 0.0904818 -0.0298536 +-0.0425054 0.0705013 0.0420152 +0.0369946 0.0686204 -0.0137746 +0.0462743 0.0775122 0.0165366 +-0.0417874 0.128546 0.00302224 +0.00250208 0.0547919 0.0536548 +-0.0543206 0.140979 0.0284164 +-0.0492132 0.138613 0.0153977 +-0.0204064 0.162527 -0.00684616 +-0.0194926 0.111309 0.040066 +-0.00849594 0.0829198 0.0577964 +-0.0467773 0.0826601 -0.021013 +-0.0535197 0.0472233 -0.00680686 +-0.0092432 0.169141 -0.0244221 +-0.0594862 0.0804633 0.0433033 +-0.0764447 0.154164 -0.0158984 +0.0585888 0.0538213 0.0151823 +-0.0588396 0.0925945 -0.0203375 +-0.0761105 0.167387 -0.0256061 +0.0432176 0.0401728 0.0130684 +-0.0395679 0.152136 0.0040279 +-0.0685344 0.180035 -0.058648 +-0.0404998 0.0930589 0.0424923 +0.0428754 0.100088 0.00417324 +-0.0320271 0.0553591 -0.0124271 +0.0199862 0.0348656 0.0241629 +-0.069479 0.123198 0.0530616 +-0.0239594 0.117024 -0.0138685 +-0.013157 0.175712 -0.0209577 +0.00451102 0.0674972 0.0557889 +0.0304128 0.0431004 -0.0051324 +-0.0887794 0.151473 0.0131594 +0.0317917 0.0949031 -0.0164462 +0.0342895 0.112223 -0.00202032 +-0.0728652 0.170808 -0.0480355 +0.0253565 0.075473 0.0472224 +-0.0754952 0.15561 -0.00190651 +0.060278 0.0581371 0.013168 +0.00444274 0.131539 0.0170385 +0.00950273 0.0546854 0.0525766 +-0.028415 0.178753 -0.00594863 +-0.011518 0.0431769 0.0500228 +-0.0504724 0.141671 0.0164028 +-0.0424936 0.045133 0.0413379 +0.0207994 0.125738 0.00307388 +-0.0689469 0.0433261 0.00632212 +0.0111753 0.0766426 0.0548499 +0.0297504 0.0462054 0.0339396 +-0.0674791 0.0622216 0.0214031 +0.0131787 0.0793804 0.0542326 +-0.0630395 0.136976 -0.00741235 +-0.0026931 0.0386465 0.0251959 +-0.0862725 0.103636 0.0233541 +-0.072832 0.162419 -0.0389636 +-0.0670825 0.156321 0.0197603 +-0.0572305 0.057508 0.0152056 +-0.0876158 0.136354 0.00421533 +-0.0214752 0.0609386 0.0459919 +-0.007347 0.0952877 -0.0329727 +-0.0613578 0.0586321 0.0151557 +0.00350505 0.0590839 0.0549927 +-0.0372275 0.160948 0.000450465 +-0.0457572 0.0336839 -0.00997088 +0.0106658 0.0351593 0.00371028 +-0.0714997 0.16363 -0.0138384 +0.00840839 0.117161 -0.0162388 +-0.0493716 0.143224 0.00839291 +0.0251748 0.123444 0.0203849 +0.0329112 0.096871 0.0389677 +0.044554 0.0917551 0.0201604 +-0.0384935 0.0562767 0.0397971 +-0.0785284 0.123123 0.0516319 +0.0426769 0.101505 0.0101616 +0.00833271 0.0567886 -0.0305627 +-0.0876135 0.100396 0.0230423 +-0.0327059 0.0779055 -0.0285245 +0.0119151 0.0860485 0.0542349 +-0.0675927 0.17056 -0.0354212 +-0.0807265 0.0770568 0.0269252 +-0.0384859 0.0520062 0.0392089 +0.0452145 0.0482364 0.0300085 +0.0204736 0.0851385 0.0500118 +-0.0600179 0.155783 0.0193707 +0.0164701 0.0976264 0.0474551 +-0.0456663 0.0410589 -0.0152981 +-0.0821974 0.128571 0.0521036 +-0.0304964 0.0974331 0.0445755 +-0.0540878 0.128312 0.0358453 +0.0390858 0.0407779 -0.000614316 +-0.0725241 0.13724 0.0489632 +-0.0620129 0.0587144 0.0113478 +0.0455822 0.0848004 0.0171734 +-0.0839185 0.112898 0.00127069 +-0.0728197 0.155564 0.00463235 +0.0277412 0.121021 0.0227689 +0.0301995 0.0768447 0.0437008 +-0.0106344 0.174261 -0.0225996 +-0.0617342 0.0737271 -0.0167014 +-0.0414956 0.0464933 0.0408152 +0.03243 0.0535036 0.0361605 +-0.0377322 0.150234 -0.00179971 +-0.0847627 0.109032 0.02334 +-0.0642974 0.167953 -0.0385345 +-0.0221614 0.0825281 0.0558751 +-0.0504951 0.0960175 0.0443724 +-0.0508177 0.0501221 0.014822 +-0.0436492 0.0577877 -0.0118151 +-0.0189776 0.0390241 0.0529956 +-0.0623698 0.169401 -0.0505859 +-0.0105368 0.0850533 -0.0384463 +-0.0181795 0.183113 -0.0176247 +0.0314401 0.110365 -0.00894711 +-0.0127075 0.065682 -0.0367743 +-0.0273345 0.172717 -0.009826 +-0.0666857 0.141706 -0.00893584 +0.0408833 0.10285 0.0201769 +-0.0876525 0.145908 0.0330215 +-0.0436328 0.056346 -0.0115255 +-0.0611631 0.0428583 0.0256966 +-0.0330915 0.16076 -0.0136886 +-0.085208 0.150101 0.00618898 +-0.0615069 0.172523 -0.0575905 +0.0555907 0.0604655 -0.000426808 +-0.0850315 0.151395 0.00719993 +-0.0728007 0.0864364 -0.0158265 +-0.003188 0.127967 0.0287063 +0.0455462 0.0861954 0.016167 +-0.0217098 0.115215 -0.0159934 +-0.0414975 0.0916447 0.0424797 +0.0487043 0.0430197 0.0122221 +-0.0869351 0.106366 0.0163624 +-0.0156753 0.0541059 -0.0332392 +-0.06162 0.150156 -0.00124665 +-0.00577101 0.098213 -0.0280417 +0.0223236 0.0550419 -0.0260567 +-0.00429403 0.131101 0.0138416 +-0.0636168 0.143654 -0.00954122 +-0.0855598 0.0912595 -0.00155473 +-0.0404413 0.10705 0.0387043 +0.0547917 0.0553704 0.0263503 +-0.0822116 0.101996 0.0303518 +-0.0437463 0.128889 0.0155826 +-0.0664819 0.0397537 -0.00588584 +-0.067283 0.161835 -0.0137578 +-0.061699 0.0599431 0.00295203 +-0.0715633 0.170815 -0.0500445 +-0.0861137 0.0805676 0.00950062 +-0.0502228 0.125461 0.0326401 +0.0589666 0.0552427 0.017183 +-0.0327176 0.125444 0.0196276 +-0.0632934 0.151996 -0.00122225 +-0.0512927 0.135429 -0.000552487 +-0.0184842 0.0897075 0.0555921 +-0.0260646 0.11803 -0.0129143 +0.0198889 0.0631747 0.0480195 +-0.0465912 0.145038 0.00283923 +0.0534733 0.0728245 0.019221 +-0.0352804 0.0341155 -0.0193879 +-0.0829241 0.126549 -0.00467577 +0.0279852 0.0352646 0.0181572 +-0.0531741 0.150869 0.0213978 +0.0202497 0.0347399 0.020698 +-0.062763 0.149042 -0.0175788 +0.00226918 0.115596 -0.0185376 +0.0250704 0.12404 0.011788 +-0.045498 0.101529 0.0420301 +-0.058497 0.0426323 0.0447374 +0.0455164 0.0904085 0.0121603 +0.0215692 0.0352857 0.025924 +-0.0274987 0.0631476 0.0380009 +-0.0140602 0.172758 -0.0187663 +0.0587826 0.0538552 0.0121765 +-0.0628795 0.15219 -0.00958093 +-0.0468135 0.1536 0.00939603 +-0.0928405 0.121514 0.033281 +-0.0622964 0.150648 -0.0145762 +0.0475064 0.0611159 0.0308231 +0.00412571 0.107297 -0.0203039 +-0.0703978 0.156305 0.0156818 +-0.053643 0.135335 0.0311995 +0.0067064 0.0341407 0.0184863 +-0.0466442 0.0397388 -0.0142756 +0.0119051 0.0711889 0.0540767 +-0.0447375 0.0357143 0.0441717 +-0.0228183 0.0840509 -0.0381648 +-0.023326 0.122164 -0.00726067 +0.0441999 0.0790177 0.0251667 +-0.0276246 0.160982 -0.00149388 +-0.0399791 0.126816 0.018458 +0.0222264 0.09191 -0.0233017 +-0.0627692 0.156841 -0.0155919 +0.044508 0.0412168 0.00624902 +-0.0731279 0.155455 -0.0309078 +0.0183024 0.0347298 -0.00182982 +-0.01652 0.0715906 0.0550352 +-0.091634 0.141989 0.0201675 +0.0440337 0.0734407 -0.000804833 +-0.0524198 0.0648658 0.0346087 +0.0572481 0.0508905 0.0141872 +-0.0164766 0.111102 -0.0196668 +-0.0418874 0.108498 -0.0194287 +0.0321354 0.0549697 0.0375085 +-0.0644897 0.102874 0.0413067 +0.0465079 0.0583728 0.0318256 +-0.0334582 0.0518969 0.0377238 +-0.0729908 0.139888 -0.00698816 +-0.0534544 0.124093 0.0367404 +0.0173165 0.0622663 -0.028279 +-0.0554104 0.0513256 0.00948897 +-0.014903 0.172738 -0.0182312 +-0.0502115 0.141667 0.015397 +0.0229958 0.0375848 0.0332895 +-0.0749615 0.135451 -0.00681495 +-0.0855353 0.0938173 0.0282665 +-0.069508 0.102769 0.0393316 +-0.0205392 0.0971418 -0.0249761 +-0.0312923 0.0362769 0.0513145 +0.0260175 0.0991397 -0.0189626 +-0.00594641 0.0989148 -0.0267499 +-0.0708605 0.0347825 0.00928864 +-0.0845393 0.103233 0.0269979 +0.0406232 0.0953057 0.0289912 +-0.0456818 0.0650665 -0.0140257 +-0.0326318 0.168236 -0.00522072 +-0.0765723 0.0689281 0.00553415 +-0.0176728 0.049548 -0.0303695 +0.00113463 0.130461 0.00151005 +-0.08699 0.0859713 0.00247197 +-0.0338357 0.095789 -0.0234311 +-0.0304987 0.10293 0.0419798 +0.0336335 0.0713894 0.0398251 +-0.0224957 0.101642 0.0440993 +0.0309373 0.119109 0.0111337 +-0.0734894 0.156164 0.020416 +-0.000755237 0.0740961 -0.035785 +0.0354988 0.0469226 0.030944 +-0.00617179 0.128513 -0.00228639 +-0.00460988 0.0388908 -0.00276124 +-0.0678289 0.135464 0.0458614 +0.0345596 0.114411 0.00388032 +-0.0884532 0.112251 0.0353052 +-0.0709934 0.170517 -0.0295248 +0.0284454 0.0995183 0.0412905 +0.0402167 0.0685122 0.0317439 +-0.0665769 0.0362823 0.0365183 +-0.0765583 0.148625 -0.00886956 +0.0576507 0.0606695 0.00219201 +0.060413 0.0664733 0.017165 +0.022246 0.0835763 0.0498509 +-0.0821459 0.0912329 0.0320422 +-0.0746727 0.145787 -0.00986958 +0.0345089 0.111329 0.0271807 +0.0594367 0.0663847 0.00713811 +0.0282217 0.0664463 -0.0207545 +-0.0619747 0.170963 -0.0535908 +-0.0394944 0.0492076 0.0395541 +-0.0787666 0.165266 -0.0299591 +-0.0749441 0.129634 -0.00796551 +-0.00112962 0.125371 0.0323555 +-0.0154803 0.0500282 0.047966 +0.0153592 0.0953434 0.0487033 +-0.085237 0.147388 0.00618456 +-0.0128008 0.0841443 -0.0388521 +0.024383 0.0518665 -0.0223004 +-0.0342551 0.0766309 -0.0244955 +-0.0670839 0.173532 -0.0453192 +-0.0772544 0.0764799 0.0316515 +-0.0270646 0.053566 0.0376661 +-0.0225205 0.112681 0.0384786 +-0.0884304 0.0874699 0.00847782 +-0.0737584 0.0914853 0.0405847 +-0.064968 0.128232 -0.00872903 +0.000512384 0.127929 0.028588 +-0.0599553 0.0610872 0.0239566 +-0.0384792 0.116679 0.0322191 +-0.0485119 0.112536 -0.0170517 +-0.0304781 0.0523954 -0.0163632 +0.0387588 0.108855 0.00681782 +-0.0406156 0.155109 0.0060988 +-0.0471466 0.149481 -0.0040486 +0.0179495 0.127337 0.00345096 +-0.0395837 0.0336987 -0.0198537 +-0.0633751 0.0344193 0.0288044 +-0.0424853 0.128365 0.0145816 +-0.0364913 0.113889 0.0338295 +0.0353283 0.112832 0.00268414 +-0.0653226 0.0343003 0.0144151 +0.0435313 0.065065 0.0273105 +-0.0795726 0.0867837 -0.00954059 +-0.0104381 0.171321 -0.0205524 +-0.0737003 0.156269 0.0145144 +-0.0733818 0.155466 -0.0289107 +-0.0198527 0.0382258 0.0238627 +-0.0188257 0.0725897 0.0542693 +-0.0778777 0.117832 -0.00599287 +-0.0365049 0.10423 0.0397359 +-0.00948278 0.0978353 0.051868 +-0.0103201 0.0393296 0.0497389 +-0.0876274 0.137747 0.00620032 +0.0416732 0.0819555 0.0304093 +0.0608524 0.0609661 0.0101561 +-0.0767143 0.154218 -0.0048969 +0.0174945 0.0838575 0.0514031 +-0.066433 0.0337378 -0.00503676 +-0.0232113 0.177135 -0.0206374 +0.0100949 0.034771 0.018605 +0.042675 0.0751161 0.0282624 +-0.0866662 0.0833296 0.0114916 +-0.0504965 0.157865 0.00943584 +0.0433406 0.0973216 0.0191637 +-0.0888303 0.0915034 0.00845607 +-0.0555242 0.0415797 -0.00918326 +-0.0337405 0.075174 -0.025488 +-0.0906275 0.137865 0.0211926 +-0.0123027 0.0389534 -0.0136872 +-0.045835 0.0941966 -0.0219229 +-0.0238433 0.163025 -0.0155105 +-0.0522937 0.12758 -0.00475935 +0.0308793 0.0356029 0.0166157 +0.0423563 0.0588819 -0.00453174 +-0.00663392 0.0466819 -0.0297341 +-0.0484493 0.0656843 0.0374132 +-0.0270407 0.125883 0.0113821 +-0.0910269 0.129538 0.0072515 +-0.0455907 0.0447683 -0.0109766 +0.00905498 0.0971664 -0.0248901 +0.00396755 0.0341147 0.00886829 +0.00550365 0.123767 0.0339438 +0.0400787 0.0432895 0.0279756 +-0.00815712 0.126302 0.0298556 +-0.0609217 0.118124 -0.010668 +-0.0141549 0.129252 0.0145753 +0.0274448 0.120188 0.0255104 +-0.0485004 0.111187 0.0370789 +0.0451596 0.0789195 0.0230398 +-0.0138991 0.162654 -0.0155462 +-0.0528814 0.0447887 0.0196824 +0.0277468 0.0465681 -0.0107176 +-0.0580291 0.124109 0.0406616 +-0.0404897 0.0874362 0.0429424 +0.0316544 0.117354 0.0228159 +0.0277648 0.098182 0.0420578 +-0.0391765 0.165177 -0.0125287 +-0.0691207 0.112747 0.0474107 +-0.0614963 0.102908 0.0417081 +0.0393676 0.0927337 0.0325144 +0.0214921 0.125223 0.0232941 +-0.0167077 0.059948 -0.0356741 +-0.0619704 0.118373 0.041992 +-0.0359339 0.109235 -0.0196158 +-0.0150259 0.185694 -0.0231645 +0.0245929 0.0577938 0.0442192 +-0.00233157 0.122878 -0.010278 +-0.0434949 0.0817618 0.042266 +0.0298844 0.0350171 0.0132987 +-0.00424346 0.0409986 0.0479883 +-0.0776115 0.15005 -0.0049035 +-0.0124244 0.108763 -0.0212047 +-0.0798966 0.083235 0.0342815 +-0.0813623 0.104616 -0.00457868 +-0.0167402 0.0671791 -0.0380101 +0.0259555 0.123153 0.0178233 +0.0406613 0.0638232 0.0297482 +-0.0129458 0.117871 -0.0148632 +-0.0708515 0.0937008 -0.0159297 +-0.0688238 0.1383 0.0462399 +-0.0886846 0.136388 0.00720801 +0.0460186 0.0714912 0.0208033 +0.0465334 0.07646 0.0111853 +0.000795729 0.0345137 0.0115011 +0.0318042 0.0661523 0.0406683 +-0.0277917 0.0810724 -0.036339 +-0.012329 0.0361667 0.050366 +-0.0672863 0.151256 -0.0426939 +0.0328851 0.0556122 -0.0127142 +-0.0444939 0.107088 0.0401229 +-0.088037 0.113814 0.026966 +-0.0228073 0.184465 -0.0170667 +-0.00369909 0.0598617 -0.0340393 +-0.0698551 0.16523 -0.017589 +-0.0464984 0.047794 0.0396541 +-0.0756919 0.143067 -0.00582827 +-0.0208788 0.0383361 0.00183886 +-0.0768287 0.154208 -0.00589938 +-0.0147866 0.0799249 -0.0391233 +-0.0699384 0.150598 0.0380766 +-0.0866088 0.126656 -0.00171455 +-0.0792409 0.168033 -0.0359701 +-0.0650871 0.0417056 0.03635 +0.0353256 0.109535 -0.00390394 +0.00651309 0.0828012 0.0562471 +-0.0512535 0.0528689 0.0137817 +-0.0635072 0.0590749 0.0125217 +-0.0892074 0.127019 0.0449806 +0.0451896 0.0875706 0.0191665 +-0.0576689 0.0350157 0.0450337 +-0.0441239 0.129077 0.0169132 +0.00351519 0.0634007 0.0566286 +-0.0456618 0.0741031 -0.0174455 +-0.045802 0.0382259 -0.0192856 +-0.0774749 0.141413 0.0470689 +0.019092 0.0350694 0.0292369 +-0.0721908 0.176974 -0.0457483 +-0.0228049 0.0784515 -0.0385457 +-0.0196863 0.0539295 -0.0316066 +0.0370985 0.0632585 0.0359995 +-0.0097823 0.0613531 -0.0352263 +-0.0518485 0.147799 0.0174109 +-0.0424957 0.11253 0.0356818 +-0.00161218 0.0387745 0.0252993 +0.0432025 0.0777701 0.0272794 +0.0158912 0.0644868 0.0510299 +-0.0624956 0.0861834 0.0447184 +0.0226823 0.0605452 0.0467602 +-0.0345153 0.0780634 -0.0235017 +-0.0693572 0.156301 0.0160519 +-0.0848272 0.110715 0.0391424 +0.00397477 0.0389229 -0.0104191 +-0.0107444 0.0685007 -0.0365794 +0.0105122 0.0673666 0.0542979 +-0.0493982 0.113885 -0.0164603 +0.0292359 0.120576 0.0147663 +0.0143954 0.0433708 -0.024029 +-0.0548811 0.099887 -0.0210509 +-0.0345638 0.113971 -0.0166195 +-0.00945158 0.0346766 0.0453022 +-0.0114995 0.0486859 0.0490069 +0.047721 0.0729559 0.00883547 +0.00782583 0.131487 0.0111342 +0.018385 0.126365 0.000765748 +-0.0801977 0.117632 0.0490824 +0.0508224 0.0446928 0.0102182 +-0.0792484 0.154932 0.0111245 +-0.0616259 0.175734 -0.0596865 +-0.0554957 0.10156 0.042627 +-0.0693451 0.162383 -0.0509602 +0.0464905 0.0624784 0.0299685 +-0.0626979 0.149033 -0.0165859 +-0.027787 0.0838632 -0.0360686 +-0.068908 0.112267 -0.0105177 +-0.0464636 0.157957 0.00818306 +-0.0656199 0.0690554 -0.0100807 +-0.0594903 0.081873 0.0434438 +-0.042501 0.0803745 0.0423542 +-0.0715599 0.0733863 -0.0105456 +-0.00392373 0.129832 0.00104637 +0.0231411 0.0844685 -0.0255261 +-0.0582906 0.0411368 0.01871 +-0.0231503 0.121506 -0.00857745 +0.0353371 0.0534224 -0.00701071 +-0.028498 0.108421 0.0390601 +-0.0161996 0.0386499 0.0314325 +0.0417053 0.0943445 -0.00480688 +-0.037505 0.0874848 0.0436782 +-0.0859867 0.140484 0.00417932 +-0.0394569 0.124785 -0.00795634 +-0.0629125 0.111049 -0.0145904 +-0.0697706 0.0337438 0.00328799 +0.0353216 0.0863185 -0.0174167 +-0.0529232 0.125495 0.0357533 +-0.0145001 0.0870236 0.0569643 +-0.00422597 0.10111 -0.0231367 +0.026954 0.114984 -0.00791167 +0.0123614 0.0509077 -0.0278502 +-0.0705953 0.157132 -0.0018785 +-0.0270301 0.0604609 -0.0294673 +-0.0252429 0.163867 -0.00684922 +0.0164575 0.0900289 -0.0273543 +0.0182356 0.126981 0.00216332 +-0.0276261 0.15573 -0.00786612 +-0.0687195 0.165823 -0.0200644 +-0.0237576 0.0713185 -0.0373359 +-0.0350727 0.157773 -0.0116201 +-0.0115095 0.129073 0.00398865 +-0.000506085 0.0442149 0.046198 +0.0372544 0.109701 0.0220387 +-0.0154921 0.0382096 0.0157388 +-0.0500202 0.131989 -0.0014354 +-0.025472 0.0851651 0.0520429 +-0.0328435 0.125555 0.000439943 +-0.0773991 0.152954 0.0323974 +-0.0504161 0.144734 0.0123765 +-0.0576549 0.124438 -0.00742698 +0.0532901 0.0621073 -0.00218568 +-0.0298754 0.0748068 -0.0335581 +-0.0642433 0.0338438 0.0114826 +-0.0316113 0.0409091 -0.0301005 +0.00142887 0.0392678 -0.00936829 +0.0274179 0.122108 0.0155174 +-0.0144987 0.0884006 0.0568363 +-0.0184962 0.109943 0.0409607 +0.0379028 0.0997575 -0.00879746 +-0.0244855 0.0461464 0.0516096 +0.03717 0.0713299 0.0361376 +0.0442521 0.0804694 -0.00179963 +-0.0693598 0.153979 -0.049866 +-0.045049 0.0367204 -0.0222184 +0.0226853 0.115014 -0.0119595 +0.0308676 0.0713453 0.0410867 +-0.0253533 0.0381958 0.00468802 +0.0115087 0.101793 0.0474223 +0.0122157 0.0346138 -0.0197432 +-0.078807 0.10613 0.032485 +0.0412927 0.101424 0.0211601 +0.0449984 0.0413097 0.00725015 +-0.0614983 0.0861808 0.0447299 +0.0201601 0.0357218 -0.00467829 +-0.0270641 0.0376545 -0.0293745 +-0.0491197 0.137061 0.00540677 +-0.00249881 0.0829011 0.0575494 +0.021052 0.0358187 -0.0026817 +-0.0154895 0.0559453 0.0511175 +-0.0718433 0.0833097 0.0403454 +-0.087976 0.141871 0.0376917 +-0.0787586 0.163869 -0.0289482 +-0.0485008 0.0732772 0.0415918 +-0.0366615 0.0606699 -0.0121541 +0.0262206 0.0435744 -0.00668237 +0.000219502 0.0370979 0.0467851 +-0.00149685 0.0456811 0.047029 +-0.0545635 0.122251 -0.00910565 +-0.0186556 0.0480312 -0.0293255 +0.0387854 0.0701818 -0.0117862 +-0.0654945 0.0398115 -0.0063825 +-0.0437744 0.116579 -0.0153348 +-0.0344901 0.0987486 0.043091 +0.0610023 0.062364 0.012157 +0.0141007 0.120583 0.0346592 +-0.0823269 0.108767 -0.000607289 +0.0214843 0.092023 0.0479434 +-0.070667 0.0763937 -0.014042 +0.021114 0.0592021 0.0480036 +0.0252499 0.0775815 -0.0248688 +-0.0601377 0.0338299 0.0176745 +-0.0579501 0.0592474 0.0206872 +-0.0769058 0.154074 0.0295482 +0.0198639 0.11968 -0.0089705 +0.0022305 0.0754937 -0.0353597 +-0.00780413 0.0840976 -0.0379648 +-0.0611789 0.172541 -0.0596341 +-0.0447417 0.0768063 -0.0185987 +-0.017374 0.0569064 0.0504968 +0.00450466 0.087016 0.0568401 +-0.0709391 0.109631 0.0395791 +-0.0674006 0.0406253 -0.00334064 +-0.0311093 0.169745 -0.00652433 +0.0242906 0.0676576 -0.0247124 +-0.0326084 0.171239 -0.00339173 +-0.0325897 0.0666513 -0.0194517 +0.0319052 0.0437397 0.0295375 +-0.0450254 0.127281 -0.00449582 +-0.0226309 0.0478785 -0.0276417 +-0.0583127 0.0580812 0.00726379 +-0.037778 0.0827556 -0.0219531 +-0.0518874 0.106988 -0.0190452 +0.0163996 0.044784 -0.0236657 +0.0103374 0.0553349 -0.0300221 +0.0206753 0.126786 0.0115854 +-0.0850979 0.131233 0.0492505 +-0.0192324 0.177141 -0.0234526 +-0.0199616 0.0697296 0.0526775 +-0.0561055 0.158254 0.000206899 +-0.055732 0.115927 -0.0145408 +-0.0417663 0.162365 0.00442786 +-0.0305905 0.119479 -0.0103702 +0.0234999 0.0955508 0.0464417 +-0.0498856 0.149233 0.0119087 +-0.0154824 0.185702 -0.0219175 +0.00917376 0.125511 -0.00726227 +-0.0913426 0.147495 0.0231401 +-0.00381375 0.0896299 -0.0357356 +-0.0686943 0.154419 0.0308917 +-0.02552 0.111233 0.0379672 +-0.0705473 0.1414 0.0460484 +-0.00201946 0.100869 0.0458524 +-0.0876244 0.129442 0.00130199 +-0.00449535 0.0965559 0.0536663 +-0.0271292 0.0850573 0.0494379 +-0.0914908 0.1337 0.0152201 +0.00523694 0.126704 0.0302977 +-0.0470651 0.153179 -0.00606436 +-0.0672153 0.156284 0.0168104 +-0.0427934 0.0869807 -0.0215837 +0.0423379 0.0683118 0.0277209 +-0.0295859 0.0790353 -0.0345348 +-0.0477964 0.062891 0.036824 +-0.00968443 0.0570101 -0.0338896 +0.0451851 0.0861731 0.0211635 +0.00951284 0.0532319 0.0521285 +0.0302906 0.0787129 -0.0208549 +-0.0738862 0.104992 -0.0108534 +0.0453646 0.0575572 -0.00557548 +-0.0663103 0.0759418 0.0397029 +0.0143833 0.128699 0.00214848 +0.00580886 0.130668 0.0218239 +-0.0131274 0.0387957 -0.00624825 +-0.00997898 0.172997 -0.0279186 +-0.0620827 0.174072 -0.0556227 +-0.0546337 0.0334816 0.0119976 +0.0208676 0.121124 0.0316774 +0.0220436 0.125932 0.0163676 +0.0377227 0.0561747 0.0314909 +-0.0721609 0.147032 -0.0238695 +-0.0738111 0.0907253 -0.0150698 +-0.0362217 0.0335837 -0.0228111 +0.0387097 0.105846 2.20656e-05 +-0.0556277 0.0365615 0.0468082 +-0.0836005 0.0763298 0.006515 +0.0280677 0.100848 0.0407486 +-0.0831241 0.100626 0.0298981 +-0.0305493 0.0479587 -0.0242789 +0.0165747 0.0519808 0.0466207 +0.0447673 0.0847221 0.00118921 +-0.0146056 0.0435263 -0.0269315 +0.0273074 0.0346174 0.0112772 +-0.0683005 0.139737 0.0452157 +-0.0485925 0.132707 0.00186362 +0.00897502 0.113705 0.0394792 +0.010104 0.0343592 -0.0200136 +-0.0769339 0.126684 -0.00758482 +0.00350625 0.0547769 0.0535608 +-0.0850528 0.0993835 -0.000573805 +0.00144009 0.0350568 0.0184024 +-0.0301745 0.17266 -0.0167996 +-0.0732751 0.148715 -0.0303812 +-0.0837086 0.0952625 0.0306499 +-0.0742711 0.149885 -0.0318724 +-0.00654578 0.0384949 0.010053 +-0.0248989 0.0968475 -0.0246804 +-0.0633856 0.148243 -0.0195768 +-0.0647288 0.126998 0.0468559 +-0.058406 0.0598457 0.000248469 +0.0425358 0.0710418 0.0280089 +-0.0915343 0.140602 0.0181819 +-0.0407824 0.116214 -0.0149415 +-0.0445073 0.0491885 0.039305 +0.0294698 0.0801098 -0.0210213 +-0.0277559 0.0348695 0.0499059 +-0.0137302 0.107232 -0.0215702 +-0.0482685 0.037339 -0.0123839 +-0.0673815 0.0659915 0.0287149 +-0.0567046 0.11983 0.0390246 +0.0211901 0.113994 0.0360983 +0.0319596 0.11565 0.0257836 +-0.050462 0.0402796 0.0458238 +-0.0364752 0.09732 0.0430461 +0.00119043 0.0895238 -0.0341779 +-0.0699807 0.149351 0.039589 +0.0439472 0.0917185 0.0231564 +-0.0559199 0.113507 -0.0160179 +-0.0853556 0.095327 -0.00158429 +-0.0662723 0.154476 -0.00173975 +-0.0186027 0.111108 -0.0196906 +-0.0563562 0.140993 0.0307629 +-0.00358231 0.0383094 0.0162632 +-0.0568935 0.0562594 0.000567085 +-0.00649422 0.0590504 0.0549316 +-0.0245507 0.183147 -0.010424 +-0.032468 0.175717 -0.00291757 +-0.0132616 0.175663 -0.0275653 +0.00407218 0.0361395 0.0234015 +-0.00250245 0.104479 0.0441797 +0.00787676 0.127927 0.0283381 +-0.0760841 0.164579 -0.0198769 +-0.0814657 0.130234 0.0522094 +0.0322493 0.109934 -0.00848346 +-0.0747758 0.152715 -0.0228916 +-0.0360726 0.1261 0.0198793 +0.00651921 0.0869957 0.0564058 +-0.0863282 0.151358 0.00923307 +-0.00766666 0.0527037 -0.0328501 +0.0329828 0.110047 0.0302661 +-0.0819069 0.0844754 0.0320139 +0.020413 0.0521197 0.0451417 +-0.043267 0.149185 0.00566881 +0.03267 0.0767015 -0.0187757 +-0.0861456 0.140625 0.0415389 +-0.0665323 0.154667 0.00252946 +-0.0231566 0.158136 -0.0102789 +-0.0217907 0.0957944 0.0466571 +-0.0638349 0.156748 -0.0426051 +-0.0346441 0.117803 -0.0126135 +0.00980894 0.0658051 0.0545289 +-0.080258 0.0859229 0.0345477 +-0.0117542 0.0386862 -0.015202 +-0.080536 0.135397 0.0502642 +-0.0325368 0.0792892 -0.0295289 +-0.0784828 0.0717889 0.00251767 +-0.00149343 0.0883979 0.0566431 +-0.0137942 0.0386802 -0.0156021 +-0.0444896 0.101534 0.0420576 +-0.00192307 0.107424 -0.021877 +-0.0440699 0.153194 -0.00699527 +0.00318991 0.0880718 -0.0337792 +-0.0344943 0.0718865 0.0415833 +-0.030416 0.0692532 -0.0284548 +-0.0622359 0.167822 -0.0495929 +-0.0344858 0.100109 0.0424402 +0.00649387 0.0590149 0.0539921 +0.0360791 0.111295 0.00152105 +-0.0587368 0.0434475 0.0440841 +-0.0417025 0.0666657 -0.0153449 +-0.0533816 0.0513995 0.0117052 +-0.0285002 0.097396 0.0440561 +-0.0690491 0.153118 -0.0485047 +-0.0144923 0.093841 0.0546527 +-0.0633747 0.036885 -0.0080479 +-0.0706693 0.165215 -0.0479768 +0.0127157 0.0350729 0.0423657 +0.00853944 0.100396 0.0475311 +0.0211162 0.126093 0.00605375 +-0.0514924 0.113914 0.0348157 +0.0172187 0.117738 -0.0128881 +-0.01069 0.0969192 -0.0307004 +0.0121568 0.0930338 -0.0284961 +-0.0772387 0.158974 -0.0142914 +-0.0667905 0.0852019 -0.0183581 +0.0154254 0.0834009 0.0522607 +-0.0487147 0.0723044 -0.01565 +-0.0464696 0.0675313 0.0396048 +-0.0110203 0.0383532 0.0129011 +-0.0205151 0.114503 -0.0172551 +-0.0556769 0.0499718 0.00979142 +-0.0503626 0.0642656 0.0349674 +-0.00189958 0.130575 0.00323807 +-0.00749418 0.0533074 0.0526841 +-0.0781504 0.0736081 0.0268981 +-0.00216638 0.09997 -0.023881 +-0.0374964 0.119384 0.0304732 +-0.0237883 0.0932085 0.0487292 +-0.0846322 0.139314 0.044315 +0.00579995 0.0355749 0.0242599 +-0.0498385 0.0970763 -0.0221981 +0.0311277 0.0795524 0.0433085 +-0.080771 0.105947 -0.00458985 +-0.0541694 0.136721 0.0304424 +-0.0158788 0.038593 -0.0159367 +0.0375503 0.0588742 -0.00872526 +-0.0278572 0.0972984 -0.0239915 +-0.0609119 0.0678343 0.0355003 +0.0406749 0.0801882 -0.00878559 +-0.0891047 0.101026 0.0153901 +0.0370023 0.11146 0.00905905 +-0.00649525 0.0576581 0.0543368 +0.0215982 0.0645366 0.046975 +-0.0290293 0.160675 -0.0139931 +0.00903586 0.100133 -0.0220275 +-0.0584961 0.104303 0.041452 +-0.0664115 0.162305 -0.0579417 +0.0239006 0.0520481 0.0413924 +-0.0216874 0.126575 0.00458035 +-0.0485184 0.0438796 0.0435224 +-0.0231474 0.0384868 -0.00611954 +-0.00826521 0.0380456 0.0491273 +-0.0528526 0.147782 0.0214111 +-0.0907516 0.137857 0.0201957 +-0.0758557 0.103473 -0.0101675 +-0.0397582 0.079747 -0.0196231 +-0.0147733 0.078434 -0.0385776 +0.00381296 0.0379313 -0.0132938 +-0.0694673 0.0635361 0.0216095 +-0.0528954 0.105563 -0.0191967 +0.0343906 0.0529675 -0.00763383 +-0.0293172 0.172724 -0.00740528 +0.00850711 0.0688384 0.055257 +-0.016261 0.181575 -0.0262548 +0.0213104 0.0415776 -0.0147 +-0.0780733 0.100357 -0.00962255 +-0.0846334 0.108922 0.00436756 +-0.0186964 0.0569405 -0.033635 +-0.037924 0.175153 -0.00739726 +-0.049768 0.081217 -0.020889 +0.0335081 0.0942386 0.0398247 +-0.0729901 0.154042 -0.0338982 +-0.0233975 0.156883 -0.00572928 +-0.0873262 0.103661 0.0203534 +-0.0501055 0.129693 0.0310292 +0.029581 0.0907082 -0.0200166 +0.043329 0.066441 -0.000599376 +-0.00664168 0.0482162 -0.0304375 +0.021889 0.0963552 -0.0220144 +-0.0265893 0.161003 -0.00174275 +0.044803 0.0945847 0.0121616 +-0.0725608 0.109721 0.0409258 +-0.0372497 0.126436 -0.00264816 +0.005339 0.0971934 -0.026912 +-0.0241177 0.120704 -0.00972559 +-0.0462757 0.0390662 0.0448146 +-0.00565778 0.12946 0.000751082 +0.0213227 0.122349 -0.00385694 +-0.0414913 0.0790271 0.0430475 +0.0190905 0.127062 0.0195525 +-0.0805286 0.124537 0.0519983 +-0.0782836 0.0860139 0.0367982 +0.0219644 0.126042 0.013483 +-0.0325696 0.0410226 0.0505793 +0.0295979 0.039453 0.0274445 +-0.0475678 0.0446906 -0.0104074 +-0.0654918 0.0917539 0.043991 +-0.0307813 0.122738 0.0233033 +-0.0854845 0.112639 0.0445732 +0.0231366 0.0404268 -0.00664294 +-0.00398687 0.126095 0.0313534 +-0.0641503 0.0436305 0.0113748 +-0.0314872 0.0646167 0.0387865 +-0.0776274 0.0692865 0.00957677 +-0.0195579 0.0946763 0.0515134 +0.014517 0.0344542 -0.0117299 +-0.0376663 0.0621956 -0.0129723 +0.00459507 0.101613 0.0450146 +-0.0281642 0.0346776 -0.0203658 +0.0147654 0.125019 -0.0047274 +-0.0344283 0.0338921 0.0139586 +-0.0364985 0.117968 0.0313259 +-0.0456444 0.0592254 -0.0120696 +-0.0260288 0.0381935 0.00636573 +-0.088169 0.124336 0.0468831 +-0.0540681 0.135339 -0.00310003 +-0.0291607 0.171183 -0.0175503 +0.0104455 0.0488162 0.0487077 +-0.0881632 0.0861128 0.0124706 +-0.0258758 0.0578187 0.0391737 +0.00450037 0.0427385 0.0456181 +-0.0537204 0.0491564 0.0326591 +0.0388727 0.0645792 -0.00975725 +-0.0500679 0.0501277 0.0166633 +-0.0669104 0.120913 -0.00889891 +-0.036233 0.0469115 -0.0220883 +-0.0118859 0.163867 -0.0168515 +-0.0619905 0.129678 -0.00799355 +-0.0652279 0.0397522 0.0288372 +-0.0508809 0.104197 -0.0202021 +-0.00186382 0.104504 -0.0225214 +-0.0619023 0.120903 -0.00899386 +0.00323955 0.0754773 -0.0351385 +-0.0384934 0.105604 0.0386511 +-0.0905225 0.118622 0.0053153 +-0.0284893 0.0835322 0.0466293 +0.00823162 0.0387858 0.0309201 +-0.0616053 0.156855 -0.0285887 +-0.0508615 0.101367 -0.0215394 +-0.0318582 0.102916 -0.0222908 +0.00526525 0.0350275 0.0444668 +-0.0646344 0.0337755 0.00968147 +-0.0640121 0.136992 -0.00763419 +-0.0456074 0.0345826 0.0394197 +-0.0864043 0.111678 0.00530063 +-0.0207807 0.0581858 0.0468036 +-0.0608886 0.105445 -0.0177606 +0.0417928 0.0746499 -0.00676608 +0.0195225 0.0821843 0.0511684 +-0.0464961 0.0833304 0.0442498 +0.0164933 0.119532 0.0345952 +-0.0626731 0.158367 -0.0396045 +0.00725591 0.129807 0.000165614 +-0.0909094 0.114612 0.0400043 +-0.0496217 0.0532216 -0.00894483 +-0.0204558 0.0772045 0.0549311 +-0.0225647 0.184728 -0.0122995 +-0.0389284 0.111648 -0.0181691 +-0.0312712 0.125373 0.00251041 +-0.0157734 0.075693 -0.0388238 +0.0245364 0.0862451 0.0478999 +-0.0296756 0.125596 0.0148252 +-0.0446861 0.130064 0.0166863 +-0.0225936 0.0382891 0.00334965 +-0.0787949 0.0758277 -0.00557109 +-0.0665305 0.155586 -0.0523326 +-0.0631388 0.0620641 0.0242 +0.0275571 0.0875682 0.0452466 +-0.0838788 0.153353 0.0242347 +-0.0365497 0.124951 0.0226726 +0.0318595 0.0673315 0.0407335 +0.00950257 0.0896505 0.0545501 +-0.0597218 0.118329 0.0399103 +-0.0840037 0.0992695 0.0294026 +-0.0777723 0.0832737 0.0363717 +0.0427594 0.0986702 0.00117933 +-0.0422677 0.111306 -0.0177858 +-0.0762231 0.16043 -0.0125715 +-0.0634008 0.115527 0.0417242 +-0.036507 0.106984 0.0382357 +-0.0384749 0.0351927 -0.0135871 +-0.0744578 0.144386 -0.00789461 +0.0593202 0.0701868 0.012517 +-0.0226744 0.0522819 -0.0290541 +-0.0875766 0.122583 -0.000713178 +-0.0170034 0.127025 0.0015954 +-0.0705369 0.155342 -0.0479286 +-0.0709342 0.128224 -0.00904999 +0.00705252 0.0346309 0.0397936 +-0.0585604 0.133937 0.0364008 +-0.0863384 0.102179 0.00442425 +0.0107631 0.0671702 0.0541647 +-0.0695537 0.163673 -0.0146023 +-0.0452915 0.1298 0.0046882 +0.00836647 0.0494746 -0.0282442 +-0.0691053 0.0641529 -0.000471523 +-0.0065051 0.0518538 0.05236 +-0.0557789 0.0811944 -0.0212002 +-0.0801928 0.109885 0.0408487 +-0.0136098 0.0997657 0.0454373 +0.0375013 0.045461 0.0306904 +-0.0857877 0.152992 0.0221351 +-0.00139702 0.0346206 0.0416594 +-0.0501963 0.061364 0.033592 +0.0161097 0.0974052 -0.0230873 +-0.0194917 0.0568426 0.0483686 +0.0492985 0.0561391 -0.00508332 +0.0184753 0.100361 0.0464541 +-0.0504953 0.154968 0.0107183 +0.0147875 0.105075 -0.0193 +0.023524 0.11536 0.0341991 +0.0310013 0.118944 0.0140014 +-0.0172406 0.178621 -0.0252251 +-0.0367055 0.112873 -0.0174612 +-0.026888 0.0344315 -0.0290471 +-0.052616 0.0542078 0.012269 +-0.0374932 0.0478153 0.0397186 +-0.0727381 0.151148 -0.0398146 +0.0042421 0.0740405 -0.0347398 +-0.0170835 0.187214 -0.0216216 +-0.0744375 0.0658205 0.00791081 +-0.0225303 0.159751 -0.00283877 +-0.015413 0.0343578 -0.0194213 +0.0138178 0.034673 0.033937 +-0.0756035 0.0846721 0.0383975 +-0.0823671 0.0939609 0.0321712 +-0.0597053 0.0675469 -0.0111319 +-0.0911321 0.146088 0.0161475 +0.0350128 0.0797448 -0.0167143 +-0.0835371 0.151134 0.0310567 +-0.0125098 0.0759113 0.0569785 +-0.014877 0.12853 0.00563728 +-0.067594 0.162379 -0.0559888 +-0.0299722 0.0523401 -0.0183637 +-0.0175125 0.109971 0.0410978 +-0.0602175 0.0443014 -0.00489461 +0.047415 0.0539813 0.0314992 +-0.0695317 0.0366687 -0.00405392 +-0.0710533 0.04057 0.0057746 +-0.0594926 0.112518 0.0361699 +-0.0870454 0.128039 -0.000695727 +-0.0548606 0.0532734 -0.00439052 +0.0197584 0.121448 -0.00690816 +-0.0217284 0.0919768 0.0523353 +-0.0331407 0.073693 -0.0254949 +-0.0165233 0.0472885 0.0494939 +0.0430185 0.100102 0.00517011 +-0.0941673 0.124186 0.0242853 +0.0398988 0.106999 0.0131638 +-0.0388567 0.0985732 -0.0220835 +-0.013744 0.0347692 0.0478272 +0.0525444 0.0728335 0.00848027 +0.0340202 0.108707 0.0300072 +0.0135389 0.0341511 0.00148413 +-0.0255703 0.121939 -0.00698176 +-0.0627659 0.0795658 -0.0187488 +0.0159163 0.0366121 0.0434543 +-0.0677812 0.0823162 -0.0178553 +-0.00231448 0.129778 0.000344647 +-0.0224096 0.15809 -0.00961754 +-0.0369427 0.15804 0.00437449 +-0.0557441 0.0768187 -0.0193441 +-0.0661875 0.165349 -0.0586121 +-0.0764308 0.11585 0.051182 +0.00923994 0.0795457 -0.0327494 +-0.0141356 0.103403 -0.0235224 +-0.0725643 0.165173 -0.0170441 +-0.0708131 0.0922561 -0.0160967 +-0.052837 0.143168 0.022419 +-0.0289488 0.0487095 0.0453204 +-0.033511 0.104273 0.0404948 +0.0173468 0.0552065 -0.0282783 +-0.0643722 0.0392301 0.0399397 +0.0154605 0.100515 0.0471558 +-0.0389991 0.0361252 0.0429011 +-0.0912831 0.133698 0.0142161 +-0.042206 0.166657 -0.0103803 +-0.0829702 0.111001 0.0428895 +-0.0244677 0.122018 -0.00707965 +-0.00847955 0.107265 0.0437628 +-0.0410173 0.12678 -0.00403845 +-0.00247117 0.091392 -0.0349524 +-0.0733228 0.17276 -0.036126 +-0.0584972 0.102936 0.0420973 +-0.0275816 0.0549129 -0.0253866 +-0.0567567 0.0416998 -0.00856929 +0.00796329 0.0376774 0.0282412 +-0.0764966 0.130271 0.0529935 +-0.0385029 0.0346069 0.040918 +-0.0178242 0.0882801 -0.0380186 +-0.0592916 0.0381211 0.04617 +-0.0507734 0.0826521 -0.0214824 +-0.011501 0.0787467 0.0576654 +0.0135076 0.115425 0.0371825 +-0.0649944 0.132589 -0.00831046 +0.00449953 0.0474774 0.0501288 +-0.0183564 0.0639745 0.0512546 +-0.0454992 0.0425256 0.0437126 +0.00186325 0.0380873 -0.0138264 +0.0213321 0.100802 0.0450693 +-0.0855641 0.121149 -0.00272592 +-0.0898794 0.136494 0.0232114 +-0.0498262 0.0941747 -0.0218116 +0.0413792 0.0533854 -0.00680998 +-0.0912918 0.11477 0.0353243 +0.0585317 0.0565811 0.0212119 +0.000449556 0.130948 0.00412356 +-0.0343831 0.0766477 -0.0234928 +-0.0394659 0.108422 0.0377073 +-0.0477552 0.161949 -0.00697323 +-0.0278288 0.122593 -0.00568164 +-0.0563034 0.124125 0.0396482 +-0.0656415 0.129793 0.0454963 +0.0484031 0.0553841 0.03118 +-0.0455014 0.116621 0.0320048 +-0.0728613 0.102198 -0.0128504 +-0.0867252 0.0994863 0.00342747 +-0.00226785 0.0370021 0.0122687 +-0.0557143 0.0709328 -0.0156898 +-0.0610115 0.132585 -0.00747053 +0.00217526 0.0894962 -0.0338845 +-0.012585 0.0933765 -0.0350613 +-0.0553875 0.143884 0.0305002 +-0.0920989 0.117453 0.031314 +-0.0616144 0.155309 -0.0245851 +0.0502575 0.0602229 -0.00418894 +-0.0735402 0.0708078 0.0302704 +0.00614005 0.103026 -0.0213684 +-0.00271026 0.0669475 -0.0345168 +-0.049518 0.0344739 0.029929 +-0.0525731 0.128311 0.0345149 +-0.0605331 0.151186 -0.000375192 +-0.0866695 0.135213 0.0450386 +-0.0515626 0.0460585 0.0186779 +-0.00891802 0.0982381 -0.0280905 +-0.0170028 0.0977503 -0.0256286 +-0.0541413 0.128093 -0.005327 +-0.0234618 0.0385102 -0.00806272 +-0.0234875 0.125296 0.0010065 +0.0238248 0.0404881 0.03829 +-0.0564079 0.0334582 -0.0027528 +-0.0667678 0.0695012 0.0345692 +-0.00845839 0.0346349 0.045549 +-0.0748544 0.15611 0.0141114 +-0.0718277 0.141507 -0.00801564 +-0.0263582 0.120444 -0.00943021 +-0.0384861 0.0847024 0.0437961 +0.0154742 0.126309 -0.00212525 +-0.0329093 0.0461288 0.0451027 +-0.00179731 0.0390446 -0.00419837 +-0.0830843 0.0843065 -0.0045636 +-0.00849798 0.051815 0.0518583 +0.0211703 0.0458979 -0.0197309 +0.0250466 0.0534973 0.0413033 +-0.00301309 0.0994095 -0.0252863 +-0.0286636 0.0662687 -0.0294695 +-0.0275164 0.0588544 0.0372755 +0.021248 0.0707121 -0.0275992 +0.0118973 0.0699023 0.0540919 +-0.0850671 0.0831487 0.00248224 +0.0112963 0.123527 -0.00913288 +-0.0471043 0.0355495 0.00808039 +-0.0305886 0.0341169 0.0127308 +0.0232695 0.0795597 0.0495474 +-0.0781795 0.165241 -0.0349583 +-0.00548333 0.122374 0.0356916 +0.02636 0.0531741 -0.0208871 +-0.0117787 0.0784571 -0.0380559 +-0.0374622 0.0945463 0.043653 +0.0298506 0.0915959 0.0433109 +-0.063716 0.150986 -0.0306408 +-0.0915859 0.128175 0.00825933 +0.0456498 0.0806034 0.02116 +-0.0483119 0.0614742 0.035964 +0.0375235 0.0968947 -0.00979522 +-0.0923144 0.132364 0.0182222 +0.0175115 0.118187 0.0352964 +-0.027798 0.0824702 -0.0362167 +-0.0679219 0.123838 -0.00890383 +-0.0136906 0.0585033 -0.0353384 +-0.0560167 0.0334996 0.00451355 +-0.00170896 0.0655406 -0.0343993 +-0.0134843 0.053101 0.0504987 +-0.0675811 0.143978 0.0427672 +-0.0395371 0.165252 0.00310729 +-0.00177026 0.0987839 -0.0266092 +0.0449905 0.0917771 0.0161555 +-0.0142754 0.0385008 0.0265607 +-0.024936 0.0546494 -0.0284077 +-0.0737754 0.0849525 -0.0153987 +-0.00225491 0.0393816 0.0354457 +0.00953649 0.101759 0.0470503 +-0.030493 0.0731979 0.0402297 +0.0418277 0.0395362 0.0134182 +-0.0622707 0.058834 0.014793 +-0.0042883 0.0999626 -0.0238822 +-0.0511241 0.157581 -0.00475152 +-0.0110467 0.0382737 0.0183997 +-0.0111844 0.110115 -0.0206413 +-0.0906536 0.150215 0.0201223 +-0.0636975 0.0593607 0.0104272 +-0.00965605 0.0527028 -0.0331963 +0.011809 0.0846857 0.0540696 +-0.0439904 0.115156 -0.0158426 +0.00534103 0.0581999 -0.0308279 +-0.00449084 0.119679 0.0378771 +0.00251006 0.102973 0.0437486 +-0.0256326 0.0383152 0.00270994 +0.0101829 0.0893384 -0.0312282 +0.0359735 0.108741 0.0274101 +0.000505152 0.0675448 0.0563482 +-0.0431097 0.0335646 0.0052718 +-0.0748156 0.16245 -0.0339456 +-0.0890383 0.09964 0.0104144 +0.0425362 0.0972508 -0.000830625 +-0.0136711 0.162609 -0.0156561 +0.0241599 0.0418198 -0.00678118 +-0.0181519 0.16827 -0.0202389 +-0.0404977 0.0986657 0.0417206 +-0.0809707 0.15134 0.0022444 +0.0151979 0.0420601 0.0445385 +-0.00221102 0.0959857 -0.0316631 +-0.0329609 0.0709036 -0.0224656 +-0.079699 0.101798 -0.00757602 +-0.0725189 0.144585 -0.0159026 +-0.0466234 0.165492 -0.0068396 +0.0185106 0.12405 -0.00369129 +-0.014344 0.183095 -0.0226028 +-0.0788576 0.105851 -0.00657974 +-0.0240104 0.109837 -0.0203148 +0.00980942 0.110782 -0.0193656 +0.0108601 0.117776 0.0369396 +0.0193075 0.0536075 0.0470681 +-0.0925525 0.131032 0.0242364 +0.00749212 0.131495 0.0152913 +0.00495998 0.131626 0.0157979 +-0.00415159 0.0385426 0.00685716 +-0.0241881 0.038442 -0.0062907 +-0.0114972 0.0870124 0.0568248 +0.0383205 0.0589284 -0.00670105 +-0.050793 0.124044 0.0335488 +0.0216558 0.0436146 0.0415846 +-0.0488766 0.0663121 0.037594 +-0.0460367 0.115268 -0.015925 +0.0354061 0.0981387 0.0355669 +-0.0414966 0.064844 0.0412967 +-0.0492702 0.0334521 0.00412227 +-0.0788564 0.173596 -0.0449928 +-0.0720001 0.0374977 0.00101403 +-0.0745188 0.135846 0.0503978 +-0.0705133 0.0930254 0.0420143 +0.0544062 0.0520207 0.00120422 +-0.016347 0.159993 -0.0102438 +0.00949781 0.0440631 0.0448456 +-0.0123976 0.0991026 0.0482068 +-0.00535711 0.0347531 0.0461025 +0.026456 0.0929171 0.0454329 +0.0245089 0.042142 0.038636 +0.043716 0.0750115 0.0261739 +-0.0839359 0.102045 -0.00261805 +-0.0806754 0.155074 0.0150117 +-0.0689 0.172262 -0.0550342 +-0.0523543 0.073291 0.0414729 +-0.0301406 0.0636155 -0.0234264 +0.0407753 0.0452541 0.0299878 +0.00638455 0.0464233 -0.0264515 +-0.0755977 0.151334 -0.0218791 +-0.00594273 0.0383379 0.0139478 +-0.0600908 0.115373 0.0375616 +-0.0424965 0.0733822 0.0425454 +-0.00260003 0.0405608 -0.0253579 +0.00350637 0.0702767 0.0558823 +-0.0897267 0.135137 0.0262095 +-0.0591547 0.117476 -0.0120923 +-0.024542 0.0428919 0.0537128 +-0.0054972 0.0576157 0.054162 +-0.0397846 0.0841362 -0.0215764 +0.0415613 0.0751972 0.0301802 +-0.0631728 0.0596464 0.0174802 +0.0423363 0.101455 0.00317956 +-0.0533301 0.1416 0.0264013 +-0.0464855 0.0931347 0.0435353 +-0.0629725 0.150532 -0.00369044 +-0.0853889 0.108959 0.00634578 +-0.0909761 0.118636 0.00631645 +-0.0384966 0.101445 0.0410637 +0.0194941 0.107309 0.0406484 +0.0396169 0.0843072 -0.0127653 +-0.0223745 0.0566587 0.0441983 +0.0607493 0.059571 0.0121639 +-0.0844811 0.123027 0.0489478 +-0.0570341 0.144219 -0.00185162 +-0.0723674 0.177806 -0.0472523 +-0.0466801 0.130916 0.0233152 +-0.02246 0.183226 -0.0115124 +-0.0707386 0.165621 -0.0179174 +-0.0739884 0.1541 -0.0249038 +0.00161401 0.13159 0.0117114 +0.0295344 0.0524338 -0.0167463 +0.00137166 0.0465972 -0.0284573 +-0.0349979 0.152158 8.20736e-05 +-0.0459591 0.0424584 -0.0122548 +0.032247 0.0800194 -0.0194064 +-0.0215329 0.0768164 0.0540336 +0.0182351 0.12763 0.00640475 +0.0169629 0.0348939 0.0289563 +0.0193977 0.0490363 -0.0230642 +-0.0596322 0.0604401 0.0228281 +0.0145003 0.108488 0.0407955 +-0.0720741 0.0646161 0.00403373 +-0.0712116 0.15818 -0.0429219 +-0.0175993 0.15966 -0.00802789 +-0.0759222 0.159085 -0.0100036 +-0.0384682 0.15361 0.00387723 +-0.0725333 0.0379686 0.00575754 +0.0455601 0.0904134 0.011166 +0.0375907 0.0937201 -0.0111657 +0.00483671 0.039382 0.0314929 +-0.026559 0.0377408 0.0211248 +0.0385027 0.0454964 0.0307784 +-0.0564952 0.047766 0.0395183 +-0.0198831 0.107284 -0.0222237 +-0.0779551 0.163899 -0.0249456 +-0.0563521 0.0342791 0.0304121 +-0.00751948 0.0746046 0.0579524 +-0.0827498 0.154172 0.0128373 +-0.00710449 0.125174 0.0317411 +-0.0367613 0.0798086 -0.0204262 +-0.036915 0.175546 -0.00898243 +-0.0705043 0.0887655 0.0418556 +-0.0522651 0.0335597 0.0034159 +-0.0677174 0.0409231 -0.00173026 +-0.0113677 0.180126 -0.0253581 +-0.0161521 0.03911 0.0518105 +-0.0690092 0.122845 0.052951 +0.00570986 0.0341754 0.0182505 +0.0184933 0.0865452 0.0498488 +6.3531e-05 0.129314 -0.00119744 +-0.0804587 0.135827 0.0500319 +-0.0754196 0.111293 0.0461553 +0.0424555 0.0902012 0.0271644 +-0.0928081 0.120209 0.0412843 +-0.0634884 0.0789934 0.0424288 +-0.0615251 0.0457206 0.0316818 +-0.0115387 0.0458293 0.048671 +-0.066289 0.0747237 0.0389788 +-0.0173046 0.166847 -0.0129407 +0.0331853 0.116604 0.00769666 +0.0445518 0.069148 0.0246508 +-0.091691 0.12831 0.0342454 +0.0434619 0.0930961 0.0241585 +-0.0678925 0.0435809 0.00801004 +0.0234224 0.0519071 -0.0231048 +-0.0208141 0.0595795 0.0467936 +-0.087519 0.112 0.0410625 +-0.0213082 0.126358 0.00326486 +-0.0606822 0.0362429 0.0450162 +-0.0576914 0.0693962 -0.0144511 +-0.0769716 0.13837 -0.00578148 +-0.0653565 0.1551 0.00564588 +0.0264433 0.0485879 -0.0182655 +0.039746 0.101828 -0.00373788 +-0.0610724 0.144529 -0.00434459 +-0.0662237 0.145026 -0.0176812 +-0.0283728 0.156641 -0.000811787 +-0.00971651 0.0348541 0.0433186 +-0.00481466 0.0868424 -0.0368113 +-0.031088 0.0335574 -0.0273919 +-0.0544366 0.120435 -0.011246 +0.00248882 0.121002 0.0363406 +-0.00349433 0.0911707 0.0563818 +-0.0931447 0.118854 0.0382959 +0.0254683 0.121415 0.0262007 +-0.0467966 0.0336683 0.000813328 +0.0319522 0.103353 -0.0134365 +-0.0633409 0.155276 -0.011594 +-0.0720139 0.180999 -0.0528377 +-0.0164541 0.0630817 0.0527623 +0.016475 0.0352036 0.002978 +-0.00226088 0.124171 0.0334893 +0.0391263 0.0631992 -0.00875738 +-0.0818614 0.114723 -0.0022038 +-0.0930555 0.120208 0.0402916 +-0.0904236 0.116034 0.0273085 +-0.0705028 0.159578 -0.0459334 +-0.0862816 0.117641 0.0480424 +0.0531688 0.0733724 0.0176223 +-0.0578751 0.134121 -0.00585274 +0.0423147 0.091604 0.0271557 +0.0101515 0.071231 0.055077 +-0.0435318 0.087421 0.0430041 +-0.0560394 0.131064 -0.00575471 +0.00125071 0.0712122 -0.0347068 +-0.0348542 0.165303 -0.00316457 +-0.0860328 0.0912972 0.00145067 +-0.00116523 0.0371346 0.0178171 +-0.0637756 0.0795327 -0.0183843 +0.00482779 0.0366504 -0.0137865 +0.0435599 0.0987371 0.0131605 +0.00150087 0.101618 0.0443156 +0.0314312 0.0625198 -0.0186445 +-0.0672777 0.169987 -0.0338702 +-0.0903951 0.118903 0.0450094 +-0.0501563 0.11976 0.0326732 +-0.0750921 0.156856 -0.022942 +-0.0275197 0.109846 0.0382427 +-0.0535612 0.0416919 -0.00977582 +0.0556505 0.0677792 0.00213147 +-0.0685182 0.0368214 -0.0053939 +-0.0780099 0.114072 0.0486721 +-0.0248787 0.0796614 0.0530244 +-0.0638477 0.164736 -0.0283363 +0.0142201 0.0793919 -0.0305544 +0.00713749 0.130032 0.0237524 +-0.0187348 0.175696 -0.0167204 +-0.00682337 0.088234 -0.0365489 +-0.0217663 0.11209 -0.0186927 +-0.0171714 0.0432613 0.0521182 +0.00513012 0.0373402 0.0458408 +0.0461568 0.0626078 -0.00274862 +-0.0412659 0.160879 0.0033623 +-0.0853172 0.110382 0.0233555 +-0.0158006 0.108342 -0.0207487 +0.00813236 0.110171 -0.0197068 +0.0265802 0.0345508 0.0130494 +-0.0660018 0.133981 0.0432166 +0.041807 0.0885902 0.0288907 +-0.024509 0.109889 0.0396002 +0.0354948 0.10491 -0.00909103 +-0.00850916 0.0688709 0.0557558 +-0.054442 0.0373135 0.0469328 +-0.010539 0.0390893 0.0340058 +-0.0858022 0.150106 0.00719342 +-0.0451719 0.0347129 0.0411467 +-0.00510128 0.0385919 0.0229448 +-0.0521978 0.0336397 0.008764 +-0.0162925 0.180099 -0.0261659 +-0.0902934 0.147439 0.0121579 +-0.0793826 0.0705862 0.00854889 +0.0209269 0.0658956 0.0477693 +-0.0116051 0.171103 -0.0260001 +-0.0635102 0.151152 0.0361873 +-0.0865918 0.127084 0.0480364 +-0.0756208 0.166729 -0.0233779 +-0.0507818 0.0840955 -0.0217037 +-0.0623945 0.164686 -0.0405941 +0.0109143 0.034258 -0.00287102 +-0.0326136 0.0384639 -0.0154224 +-0.0883155 0.139178 0.0394996 +-0.0317158 0.0383538 -0.00403424 +-0.00682874 0.0896331 -0.0361816 +-0.060744 0.0766988 -0.0182193 +-0.00743574 0.129906 0.00405669 +-0.0792494 0.0723341 0.0207326 +-0.036173 0.152719 -0.00677506 +-0.0305128 0.10708 0.0396423 +-0.0435905 0.0505542 -0.0107756 +-0.0204554 0.0347978 0.0481157 +-0.0591045 0.0344689 0.0400978 +-0.0840365 0.147342 0.0364323 +0.00340018 0.0348289 -0.0229504 +-0.0693319 0.141141 0.045512 +-0.0561609 0.0344771 0.0355158 +0.00119588 0.0881146 -0.0344258 +0.0583564 0.0538008 0.0181861 +0.0342539 0.0387023 0.0236157 +-0.0264982 0.125984 0.010106 +-0.0611832 0.146298 -0.00395593 +-0.0910251 0.124245 0.0440568 +-0.089862 0.115281 0.0432597 +0.0247433 0.124313 0.0130924 +-0.000820873 0.128641 -0.00248283 +-0.0554557 0.0533368 -0.00338183 +-0.0464641 0.122081 0.0270508 +-0.0451868 0.126658 0.0224837 +0.00145793 0.0977369 0.0519067 +0.0405445 0.0610221 0.0298369 +-0.0744952 0.0941746 0.0398302 +-0.0351234 0.033632 -0.0282515 +-0.0839267 0.145982 0.00417548 +-0.0224934 0.0435545 0.0535652 +0.0159352 0.127804 0.0226817 +-0.0572144 0.154757 0.0232881 +-0.0498753 0.0336124 0.000239655 +-0.0191672 0.0596981 0.049368 +-0.0242921 0.0918773 0.0492675 +-0.0523718 0.133555 -0.00317026 +-0.0557218 0.0723836 -0.0166307 +-0.00457986 0.0361758 -0.0248798 +-0.0737533 0.0901294 0.040627 +-0.00549531 0.10728 0.0439307 +-0.0181568 0.165005 -0.0179156 +-0.0554997 0.108443 0.0389722 +-0.0144882 0.101623 0.0437286 +0.0215585 0.0387445 -0.00669407 +-0.0752039 0.0696978 0.0256249 +-0.0569183 0.115707 -0.0143002 +-0.0731283 0.155734 0.00889607 +0.0347498 0.081125 -0.0176886 +0.00113903 0.131571 0.0129682 +-0.0279379 0.155215 -0.0039665 +0.0438288 0.0860483 -0.00379124 +-0.0202818 0.0386671 -0.01315 +-0.0639713 0.0651159 0.0301523 +-0.0729034 0.123797 -0.00826534 +-0.00948854 0.0965445 0.0534324 +-0.0616146 0.158432 -0.0255892 +0.0348698 0.112104 0.0254475 +0.0462561 0.0792459 0.0151754 +0.0132092 0.0348336 0.0300558 +-0.0650018 0.0435996 0.0108034 +-0.0629926 0.156114 0.0183129 +0.0432806 0.100121 0.0101615 +-0.0634166 0.118511 0.0453283 +-0.0718747 0.151003 0.0373736 +-0.0693203 0.155248 -0.0509683 +-0.058528 0.0400924 -0.008802 +0.0150592 0.0590177 0.0497649 +-0.0136861 0.0570325 -0.0345667 +-0.02332 0.0391695 0.0384733 +0.0410592 0.0985428 -0.00379645 +-0.042915 0.0436274 -0.0183221 +-0.0324875 0.068969 0.0402984 +-0.0927384 0.122733 0.00927055 +-0.0697859 0.156365 0.01735 +-0.0525617 0.0403541 -0.0109145 +-0.0163792 0.186908 -0.0208435 +0.00555045 0.034504 0.00513967 +0.0259201 0.0406241 0.0333279 +0.0340795 0.103399 0.0336714 +-0.0295185 0.0579228 -0.0214101 +0.0443631 0.0475049 -0.00446946 +0.00261537 0.0341134 0.0122343 +-0.0104909 0.104437 0.0435533 +0.0240885 0.124582 0.018553 +-0.084606 0.0993653 -0.00159598 +0.0315994 0.0505647 0.0349136 +-0.0887091 0.0983318 0.0213821 +-0.0109917 0.177231 -0.0295208 +-0.00927372 0.0384768 0.00588152 +-0.0731505 0.0794744 -0.0135813 +0.0377774 0.0672774 -0.012792 +-0.0257539 0.157476 -0.0102144 +-0.0524923 0.0340498 0.0261507 +0.0359032 0.0905437 -0.0158269 +-0.0358241 0.0900699 -0.0240653 +-0.0507764 0.0715485 0.0397729 +-0.0857724 0.0872268 -0.000524277 +0.0122145 0.0850407 -0.0307351 +-0.0818191 0.154205 0.0234297 +0.0239009 0.12202 -0.0014718 +0.0509663 0.0446851 0.0122122 +0.0405026 0.0469928 0.0315524 +0.00123226 0.0769082 -0.0355253 +0.0395203 0.0569025 0.0311403 +-0.0861982 0.144641 0.0372484 +-0.0218898 0.0382146 0.0234539 +0.0278568 0.0643129 -0.0209613 +-0.06664 0.0601639 0.0127094 +-0.0682452 0.17678 -0.058273 +-0.0326534 0.0578275 -0.0120318 +0.0449519 0.0847263 0.00223902 +-0.0243874 0.0379977 0.0213348 +-0.0375049 0.0648832 0.0416292 +-0.049486 0.0531643 0.034537 +-0.00680823 0.0840973 -0.0379387 +-0.00662043 0.0383357 0.0156226 +0.0246827 0.0347978 0.0179097 +0.052528 0.0664738 0.0271694 +-0.017323 0.112508 -0.01916 +-0.0589359 0.0481542 0.00467247 +0.0560814 0.0704234 0.0216351 +0.0445162 0.087501 -0.00181141 +0.0204668 0.0400207 -0.013702 +-0.0828557 0.0979824 0.0311146 +0.0393677 0.0547517 -0.00623241 +-0.0301563 0.0382285 0.0524978 +-0.0740972 0.155492 -0.0239137 +-0.0266047 0.0397022 -0.0293069 +0.0044664 0.0344032 0.010526 +-0.0644057 0.16752 -0.0356951 +-0.085796 0.123875 -0.00272102 +-0.0251727 0.175641 -0.0195733 +-0.0147266 0.0922559 -0.0359307 +0.0166529 0.120978 0.0330533 +-0.0652865 0.1555 -0.0467797 +-0.0622893 0.15065 -0.0135783 +-0.0173344 0.128368 0.0119773 +-0.044366 0.0366412 -0.0232589 +-0.0913152 0.114759 0.0363194 +-0.0647364 0.118589 0.0486106 +0.011956 0.0976358 -0.0233787 +-0.0378922 0.04725 -0.0183117 +-0.079848 0.116269 0.0487575 +0.0431642 0.0987038 0.0171581 +-0.0334777 0.0546734 0.0376709 +-0.0677151 0.171772 -0.0397619 +-0.0124935 0.123722 0.0323282 +-0.00945147 0.0352364 0.0483453 +-0.0729035 0.125275 -0.00849683 +-0.0837744 0.107497 0.00138169 +-0.0529962 0.0461208 0.0157076 +-0.0677529 0.141137 0.0442717 +-0.0840303 0.151908 0.0287412 +-0.0636039 0.0445634 0.0326846 +0.0192911 0.109605 -0.016128 +-0.0838969 0.104764 -0.000610535 +-0.0887185 0.143427 0.0331607 +-0.0929968 0.130998 0.0182299 +-0.0543463 0.160987 0.00512087 +-0.0909281 0.132287 0.0082314 +-0.0354987 0.113848 0.0338946 +-0.0465077 0.088954 0.0443573 +0.0301352 0.0955658 0.0419698 +-0.0199202 0.0381456 0.0185107 +-0.0186134 0.161522 -0.0143726 +-0.0646921 0.0617226 0.0224003 +0.0222832 0.066418 -0.0268569 +-0.0661617 0.0353568 0.0288449 +0.0192795 0.122165 0.0310901 +-0.00560235 0.0406015 -0.0258376 +-0.0404738 0.108409 0.038128 +0.0420248 0.0710795 0.0289899 +0.0450277 0.0945898 0.0071675 +-0.0490784 0.153156 -0.00527602 +-0.00149713 0.0689596 0.0566805 +-0.0709057 0.106531 -0.0119068 +-0.0626824 0.0436041 -0.00418427 +-0.066536 0.166455 -0.0250024 +-0.0218698 0.104438 -0.0229686 +-0.0731886 0.149857 -0.036868 +-0.0122347 0.0392642 0.0504717 +-0.0935435 0.118764 0.0233045 +-0.0797382 0.10948 0.0394939 +-0.0892801 0.091541 0.0104497 +-0.0547119 0.146209 0.0284156 +-0.00241231 0.037367 0.0100902 +0.000818555 0.130756 0.00282721 +0.04586 0.0820013 0.00419826 +-0.0250963 0.0348756 0.0487637 +-0.0673565 0.112647 0.0446949 +-0.0634506 0.15272 2.24523e-05 +-0.0706828 0.180611 -0.0569213 +-0.0205931 0.163965 -0.00888333 +0.0115331 0.101889 -0.0218781 +-0.0664983 0.102849 0.0407048 +0.0185027 0.118159 0.035136 +0.0458454 0.0834099 0.00517797 +-0.00887527 0.109466 -0.0219533 +-0.0858669 0.119072 -0.00140229 +-0.0102872 0.0344076 -0.0184603 +-0.0211482 0.169745 -0.0200914 +-0.00849115 0.111421 0.0423213 +-0.0613599 0.128292 0.04114 +-0.0076798 0.0569676 -0.0334142 +-0.0710297 0.16381 -0.0459687 +-0.0454992 0.112558 0.0357052 +-0.0343115 0.126654 0.00282732 +0.0360267 0.110062 0.0258818 +0.0368044 0.0942002 -0.0116901 +-0.0421812 0.123012 0.0251172 +-0.066012 0.139954 -0.00779963 +0.00198723 0.123051 -0.0105036 +0.0172553 0.072257 -0.0294021 +-0.013113 0.184484 -0.0260544 +-0.072893 0.152634 -0.0368963 +-0.0938278 0.128299 0.0222532 +-0.0675171 0.0409229 0.0105489 +-0.0735479 0.162209 -0.012171 +-0.0517008 0.0626767 0.0322349 +-0.0433082 0.037957 -0.0253239 +-0.0516781 0.0345962 0.0381142 +-0.0046354 0.0467251 -0.0296701 +-0.0777504 0.112676 -0.00382147 +-0.0281162 0.181397 -0.0109687 +-0.047699 0.144615 0.00435323 +-0.0663959 0.148276 0.0393784 +-0.0249816 0.15956 -0.0126947 +-0.00758477 0.0968518 -0.0305822 +-0.019536 0.116371 -0.0152209 +-0.0298632 0.102958 -0.0228236 +-0.0224181 0.05387 0.0440179 +-0.0625128 0.145366 0.0377954 +-0.0843383 0.133967 0.0484219 +-0.00452146 0.0443187 0.0472734 +0.000177098 0.0839833 -0.0361114 +0.0207016 0.113271 -0.0140876 +-0.065484 0.0847424 0.0442074 +-0.0201913 0.175663 -0.0226485 +-0.0364476 0.166788 -0.00019754 +-0.0206091 0.162049 -0.0149623 +0.0350254 0.0700182 0.0383083 +-0.0455491 0.131451 0.0178282 +0.00819795 0.130005 0.00128654 +-0.0353536 0.12061 0.029103 +-0.0271732 0.169704 -0.0183584 +-0.0657382 0.0436129 0.0101245 +-0.0722291 0.166627 -0.044985 +0.0309191 0.0539829 -0.0147501 +-0.0308747 0.056662 -0.0163864 +-0.0867734 0.123909 -0.00174219 +-0.0279078 0.0347965 0.0447705 +0.0191594 0.100268 -0.0222959 +-0.0154293 0.0382918 0.0211029 +-0.0578159 0.0636603 0.0309898 +-0.024177 0.172689 -0.0201134 +-0.0669849 0.0359436 0.0326963 +-0.0879792 0.086094 0.00648058 +-0.0181742 0.169737 -0.0210312 +-0.0170499 0.122405 0.0312344 +0.00906582 0.123154 0.0343752 +-0.034503 0.0874637 0.0428605 +0.0391693 0.108394 0.0111647 +-0.0917004 0.143358 0.0201656 +0.027747 0.0902677 -0.021551 +0.0430843 0.0496743 0.0322331 +-0.0791989 0.150078 -0.000876106 +-0.0259631 0.177171 -0.00957335 +-0.0395279 0.079033 0.0429651 +0.0302372 0.118499 0.00231637 +0.0449793 0.061326 -0.0034541 +-0.0376334 0.0548474 -0.0107543 +-0.0274342 0.111364 -0.0178958 +-0.0315627 0.048073 -0.0232988 +-0.018823 0.121694 -0.0088173 +0.00895989 0.0979651 -0.0237371 +-0.0254423 0.0473682 0.0503166 +-0.046654 0.0606571 -0.0123502 +0.0606526 0.0595573 0.0131644 +-0.0873547 0.094105 0.00537923 +-0.0202891 0.184471 -0.0210772 +-0.093713 0.126863 0.0152623 +0.00938205 0.0449001 -0.0251557 +-0.0903092 0.140666 0.025165 +-0.0676501 0.0667159 0.0297862 +-0.0164899 0.0602176 0.0520938 +0.019355 0.0565693 -0.0275356 +0.0104604 0.0340987 0.00091581 +-0.0785409 0.166665 -0.0309637 +-0.018017 0.0390618 0.0526069 +0.0189962 0.123953 0.0281041 +-0.0814357 0.0734392 0.00553468 +-0.0223732 0.03801 0.0163235 +0.0110271 0.112101 -0.0187639 +0.0456518 0.0904151 0.00617296 +-0.0789509 0.170805 -0.0389931 +-0.0312407 0.0510927 0.0390643 +0.0359235 0.106756 -0.00582268 +-0.0815808 0.0950721 -0.00753639 +-0.0849546 0.0871617 -0.00253673 +-0.0265403 0.0592021 0.0383808 +0.0398305 0.0739567 0.0329917 +-0.00085919 0.0358547 0.00813469 +-0.0747624 0.0700921 -0.00148683 +0.0313786 0.113275 -0.00606229 +-0.0902327 0.124018 0.00527185 +0.0268091 0.0506065 0.038521 +-0.0727909 0.0685075 0.0271607 +-0.0578274 0.0666818 0.0354001 +-0.0738208 0.0921589 -0.0148323 +-0.0390631 0.127858 0.0143467 +-0.00922314 0.174168 -0.0285672 +-0.0035205 0.039017 -0.00265492 +0.0435098 0.098719 0.0141568 +-0.0493916 0.144765 0.00938332 +0.0189816 0.0563976 0.0484166 +-0.0731928 0.064943 0.0125198 +0.0453289 0.0833826 0.0211694 +-0.0211162 0.1638 -0.0163957 +-0.0306102 0.125527 0.00421635 +-0.0262987 0.113585 -0.0162365 +0.0252163 0.1238 0.0175509 +-0.0237403 0.0669252 -0.0352956 +-0.00549562 0.0472961 0.0485942 +0.0045023 0.122399 0.0348631 +-0.0701614 0.178224 -0.0493215 +-0.0173769 0.125333 -0.00267782 +-0.0470115 0.129603 0.00120357 +-0.0317094 0.0374952 0.0310681 +-0.0297217 0.0382812 -0.0035606 +-0.0415986 0.169934 0.00129157 +-0.064505 0.152553 -0.0362048 +-0.0667255 0.178008 -0.0524224 +-0.0236086 0.0335974 -0.0240827 +-0.0156885 0.0555599 -0.0339026 +0.0182783 0.0708328 -0.0291795 +0.0541184 0.0510309 0.0235647 +-0.0765193 0.119025 0.0524244 +-0.0118673 0.0339713 -0.0202424 +0.00548892 0.118228 0.0378342 +-0.067477 0.0336926 -0.00520632 +0.0168316 0.0926978 0.0490711 +0.0255432 0.0768418 0.0475089 +-0.0617634 0.0795901 -0.0189973 +-0.0156786 0.0526029 -0.032522 +0.000420458 0.036172 -0.0244623 +-0.0256593 0.0810401 0.0523557 +0.026836 0.0634537 -0.0220606 +-0.0621975 0.166246 -0.0505873 +0.0578529 0.0523616 0.0171842 +-0.0217254 0.126122 0.00269746 +0.0235742 0.124212 0.0226421 +-0.0578055 0.0883401 -0.0213124 +-0.0798409 0.103395 0.0321858 +-0.0123464 0.178658 -0.023274 +0.0212154 0.0476501 0.0409677 +-0.0342487 0.0752311 -0.0224883 +-0.0230529 0.0839079 0.0553134 +-0.0214993 0.112665 0.0388138 +-0.0327955 0.0873016 -0.0254019 +0.0258836 0.0605349 0.0443599 +-0.0096598 0.0907753 -0.0363722 +0.0450284 0.0875565 0.0211548 +0.0334239 0.0414863 -0.00351395 +-0.0488087 0.138617 0.0133952 +-0.0658054 0.0924099 -0.017991 +0.0104979 0.0896334 0.054299 +-0.0043048 0.123153 -0.010566 +-0.0174665 0.17272 -0.016673 +-0.0344763 0.0561322 0.0383021 +-0.0857072 0.152777 0.0118249 +-0.0575671 0.0494422 0.00671449 +-0.0430533 0.0345113 0.0330204 +-0.065164 0.147357 -0.0239331 +-0.0326268 0.0520227 -0.0107626 +-0.067905 0.106631 -0.013438 +-0.0258738 0.125824 0.0147443 +0.0544233 0.0635568 0.0276516 +-0.0872747 0.139127 0.00719289 +-0.0315055 0.109789 0.0377033 +-0.0763386 0.161799 -0.0152953 +0.0232414 0.0663429 -0.0257954 +0.0174948 0.109841 0.0394103 +-0.0507289 0.129704 0.0318965 +-0.0425042 0.0577064 0.0400486 +0.022545 0.0955327 0.0468247 +0.0403951 0.0475373 -0.00531603 +0.0183271 0.0475932 -0.02269 +-0.0572639 0.0601869 -0.00219809 +-0.0852337 0.104506 0.0248257 +-0.0933098 0.126856 0.0132534 +0.0352918 0.108619 -0.00504659 +-0.0628349 0.0939281 -0.0188357 +0.00277101 0.099815 0.0475918 +-0.0637196 0.147938 -0.020833 +-0.0636347 0.156368 -0.0124044 +-0.0882602 0.111934 0.0373837 +0.0451564 0.0931924 0.00517592 +-0.0883906 0.0874807 0.0144622 +-0.0179879 0.0654395 0.0522544 +-0.0334338 0.0382234 0.0500909 +-0.00283875 0.0389996 -0.00436591 +-0.0295052 0.11528 0.03366 +-0.00151332 0.104469 0.0441334 +0.0194927 0.0906432 0.0481529 +-0.0877693 0.113692 0.0289151 +-0.0661933 0.0335338 -0.00299624 +-0.0273899 0.0499801 0.045145 +-0.0338474 0.0972112 -0.023083 +-0.075849 0.149415 0.0390624 +0.0325609 0.114759 0.0260072 +-0.0821806 0.0776422 0.0235195 +-0.0759474 0.151351 -0.0188826 +0.013384 0.043414 -0.024368 +-0.0077421 0.0340597 -0.0195129 +-0.00965525 0.0511768 -0.0320162 +-0.0677487 0.111258 0.0407689 +-0.0214969 0.0461967 0.0522939 +-0.0466073 0.0518764 -0.00969859 +0.0357625 0.0364791 0.0131618 +-0.0124847 0.111379 0.041672 +-0.079194 0.0832222 0.0349745 +-0.0926331 0.130966 0.0142325 +0.00419789 0.123154 -0.0106599 +0.00969178 0.121836 0.0352946 +-0.0295306 0.123946 -0.00125424 +-0.0711733 0.128436 0.0516087 +-0.0585141 0.0386878 -0.00928985 +-0.0739244 0.0668664 0.00165643 +-0.0424856 0.0410553 0.0431368 +-0.0176939 0.162435 -0.0154936 +-0.00215916 0.0369163 -0.0154166 +0.0205271 0.126116 0.00440152 +0.000359464 0.0907103 -0.0342066 +0.038908 0.0631632 0.033303 +0.0223132 0.124739 0.023599 +-0.070737 0.159582 -0.0449318 +-0.0281334 0.155101 -0.00344078 +0.0323761 0.107397 0.032947 +0.0390072 0.0393837 0.00207442 +0.0420748 0.0457918 0.0297783 +-0.0187683 0.0699858 -0.0381989 +0.0176298 0.0382941 -0.0187111 +-0.0688111 0.0922897 -0.0164711 +0.0419266 0.101462 0.0171593 +0.00341059 0.0376223 -0.0244648 +0.0461634 0.0792418 0.0171768 +-0.0637535 0.0431846 0.0296789 +-0.0273632 0.0534705 -0.0254085 +-0.0394955 0.0562825 0.0399491 +0.00548498 0.0590856 0.0545593 +-0.0934182 0.124107 0.0122673 +0.0324897 0.100233 -0.014155 +-0.00952254 0.0688375 0.0554289 +0.0191204 0.042209 0.0431814 +0.0195848 0.035993 0.00660837 +-0.0748916 0.10354 -0.0108565 +-0.0685642 0.0406581 -0.00126009 +-0.0225344 0.118142 0.03379 +-0.013583 0.0386256 -0.002471 +-0.0898618 0.113382 0.0394321 +0.0601893 0.0595178 0.0171788 +-0.0630097 0.121328 0.0458592 +-0.0196415 0.0725672 0.0536854 +-0.0211896 0.172692 -0.021286 +0.024653 0.104647 -0.0168345 +-0.0795268 0.096746 0.0348816 +0.0485163 0.0672488 0.000612911 +0.0400064 0.0422019 -0.00166327 +-0.0197891 0.0785016 -0.0390423 +-0.0260568 0.0375908 -0.0291887 +-0.00717802 0.130589 0.0142265 +0.0156678 0.0346738 -0.0117297 +0.0424576 0.0845381 -0.00679736 +-0.0302701 0.0365155 -0.0302567 +-0.0274598 0.0863801 0.0483431 +-0.0831854 0.11075 0.0323354 +-0.0514986 0.109783 0.0378241 +-0.0183396 0.126605 0.021835 +-0.0497522 0.0716181 0.0399477 +0.0165016 0.116787 0.0362663 +-0.0670324 0.0672056 0.0312385 +0.0201473 0.0414664 -0.0187017 +0.0364932 0.0484054 0.0314672 +-0.0501327 0.159092 -0.00542351 +-0.0752763 0.0667216 0.0105318 +-0.0341695 0.0337715 0.0105094 +0.0137891 0.103175 -0.021246 +-0.073587 0.148629 -0.0261691 +-0.0169441 0.184483 -0.0249355 +-0.0097273 0.130072 0.0104159 +-0.00405402 0.0391419 -0.01222 +-0.0887371 0.0955614 0.00743378 +-0.0864769 0.0806081 0.0125015 +0.040053 0.107027 0.0101639 +-0.042812 0.14778 0.00347562 +0.0248383 0.0835695 -0.0246296 +0.0277899 0.116538 -0.00556904 +-0.0291577 0.0380555 0.005854 +-0.0525571 0.150877 0.0178 +-0.0639921 0.134062 -0.00777265 +-0.0838901 0.110998 0.0281595 +-0.0134922 0.107228 0.0429665 +-0.0586918 0.149676 0.0345486 +-0.0616651 0.119834 0.0424717 +0.0456475 0.0890064 0.00517807 +-0.0089791 0.0383636 0.0133044 +-0.0903646 0.135051 0.0122148 +0.0317594 0.0835691 0.0424885 +-0.0240368 0.11082 -0.0193477 +0.0271768 0.112761 0.0342135 +-0.0356473 0.116902 -0.0136714 +-0.0739197 0.151223 0.0366634 +0.0410535 0.0759945 -0.00777525 +-0.0734182 0.169757 -0.0275332 +-0.00232938 0.0359607 0.0474459 +-0.085737 0.110915 0.0387737 +-0.0775985 0.123137 0.0521223 +-0.0748309 0.100681 -0.0121692 +-0.0866976 0.109058 0.0133472 +-0.0701875 0.0395708 0.00901355 +-0.0306891 0.120328 -0.00923215 +-0.045477 0.1214 -0.012376 +-0.033489 0.172734 -0.00156283 +-0.0565822 0.0339881 0.0253464 +-0.0404955 0.0451407 0.0414639 +-0.0555537 0.0420256 -0.00889368 +-0.0598777 0.102599 -0.0186645 +0.0592051 0.0552531 0.0121703 +-0.0758111 0.0741872 -0.00760517 +-0.038197 0.0342285 0.0289964 +-0.00312706 0.0390512 0.0319597 +0.0476183 0.0426691 0.0171605 +-0.0306281 0.0831438 0.0423752 +-0.049274 0.1386 0.00640083 +-0.0210747 0.0753924 0.0536136 +-0.093596 0.126936 0.0252692 +-0.0629825 0.129686 -0.00825839 +0.00470729 0.128083 -0.0039713 +-0.0335515 0.0373466 -0.0164398 +0.0425502 0.0637218 0.0280932 +-0.0707401 0.13973 0.0469958 +-0.0644842 0.0804582 0.0430441 +-0.0618671 0.112377 0.0367302 +-0.0698247 0.169548 -0.0276555 +-0.0863191 0.0806082 0.0115067 +-0.0216814 0.0523409 -0.0297011 +0.0377238 0.110496 0.0121805 +-0.0689171 0.158096 -0.0529848 +-0.067181 0.156627 -0.0534662 +-0.0268045 0.0811284 -0.0369845 +-0.0546722 0.139567 0.0297056 +-0.0554146 0.0649279 0.0339175 +-0.0193967 0.186852 -0.0171886 +-0.0357817 0.0351096 0.0179926 +-0.0718839 0.173642 -0.0520314 +-0.0409497 0.0337305 -0.016439 +0.0396966 0.105593 0.0211678 +-0.0789279 0.0699144 0.0158521 +-0.0414163 0.0476371 -0.0122303 +-0.00671791 0.0642099 -0.0355692 +0.0547677 0.0509942 0.0227339 +-0.0686614 0.0735088 -0.0131618 +-0.0738123 0.0655371 0.0172042 +-0.0904479 0.129526 0.00625875 +0.0197334 0.044328 -0.0216983 +-0.0896348 0.140659 0.0301806 +-0.00748945 0.0870384 0.0571349 +0.0217161 0.119158 -0.00841047 +-0.0545346 0.125365 -0.00640975 +0.0368294 0.108237 -0.00182731 +-0.0672538 0.152901 0.0344187 +-0.0807043 0.0827741 -0.00656651 +-0.0305099 0.113915 0.0346878 +-0.0721764 0.154012 -0.0399025 +-0.045061 0.130334 0.0180279 +-0.00652053 0.0688834 0.0561767 +-0.0444953 0.0817848 0.0424707 +-0.0874489 0.105009 0.0173545 +-0.0175711 0.0387182 -0.00892429 +0.000506539 0.0883906 0.0565122 +-0.0265193 0.12549 0.0159805 +-0.0464789 0.0917181 0.0434263 +0.0455125 0.0918121 0.0101608 +-0.0834627 0.110719 0.0412267 +-0.057205 0.0480928 0.032667 +0.00517049 0.0350387 0.0228068 +0.0457999 0.0820138 0.0191697 +-0.0420324 0.171559 -0.00171063 +-0.0475118 0.128596 -0.00180437 +0.0204841 0.0948066 0.0474378 +-0.0719895 0.163815 -0.0429694 +-0.0644943 0.0861671 0.0446171 +0.00851416 0.06604 0.0550264 +-0.0670308 0.141141 0.0435296 +-0.0848818 0.142006 0.0416598 +-0.0384808 0.106985 0.038039 +0.0180116 0.0754634 0.0524537 +-0.0725251 0.155433 -0.0349062 +0.0182337 0.128007 0.0135344 +-0.0233093 0.162498 -0.00577898 +-0.0850563 0.112998 0.00231897 +-0.0823398 0.145942 0.00119384 +-0.0852211 0.103481 0.00138673 +-0.071875 0.136886 0.0488574 +-0.0794627 0.138625 0.0485832 +-0.0435009 0.117967 0.030956 +-0.038588 0.0341641 0.0271976 +-0.0408255 0.0914222 -0.0231618 +-0.0551021 0.154591 -0.0020359 +-0.0748456 0.159073 -0.00827714 +-0.0621666 0.152205 -0.0155784 +-0.0494972 0.0776899 0.0438666 +0.00751862 0.0799738 0.0554444 +0.00532494 0.0625045 -0.0319907 +0.00237701 0.131635 0.0162813 +-0.0546261 0.151324 0.0271982 +-0.0236176 0.123316 0.0244011 +0.00251869 0.05336 0.0534808 +0.0225511 0.0888829 0.0485585 +-0.0370273 0.174099 -0.0109221 +-0.090997 0.129691 0.0382289 +-0.0732672 0.148476 -0.0292583 +-0.053498 0.0465766 0.0420409 +-0.0330184 0.0474571 0.0438647 +-0.0246064 0.033636 -0.0243161 +-0.0234471 0.125053 0.0200484 +-0.0830784 0.138234 -0.000100609 +0.0406549 0.0820323 0.0324674 +-0.0842996 0.0965857 0.0297797 +-0.0527544 0.03448 0.0379838 +-0.0799451 0.15529 0.0167266 +-0.057093 0.0521243 0.00061739 +0.0154036 0.0477404 -0.0246897 +-0.060782 0.082481 -0.019648 +-0.0700267 0.166609 -0.0500213 +0.0451823 0.091796 0.014161 +0.0346837 0.106039 0.030986 +-0.0396713 0.0621627 -0.012718 +-0.05111 0.0375368 0.0465746 +-0.0688918 0.119449 -0.00874323 +0.000197079 0.035652 0.0464555 +-0.00149822 0.0661867 0.0567241 +0.00350858 0.074484 0.056374 +-0.0284992 0.0703316 0.0397848 +-0.0555164 0.0482866 0.0387265 +-0.0908309 0.136473 0.0182032 +-0.0634905 0.0861851 0.0447067 +-0.00918339 0.033864 -0.0215021 +-0.0748916 0.123775 -0.00787892 +-0.0270496 0.033483 -0.0265278 +0.00488911 0.035483 -0.0145807 +-0.0442085 0.165146 -0.00911238 +-0.0322103 0.0386054 -0.0136114 +0.0190336 0.11528 0.0364777 +-0.000494586 0.0897644 0.0562541 +-0.0350004 0.157209 -0.0112204 +-0.0635638 0.147341 -0.0176577 +-0.0902987 0.121315 0.00530766 +-0.0705068 0.102745 0.0389474 +-0.0662636 0.175335 -0.0598585 +-0.0239792 0.0680021 0.045464 +0.0413142 0.0637288 -0.00386959 +-0.051889 0.108419 -0.0189045 +-0.0477652 0.131125 0.00158524 +-0.0400469 0.169775 -0.0108504 +-0.0755266 0.109807 -0.00760163 +0.00107791 0.130709 0.0215491 +-0.0655994 0.0349763 0.0155159 +-0.0628742 0.161547 -0.05443 +0.0359645 0.0981106 0.0346243 +0.00934693 0.129002 0.0260013 +-0.0768843 0.109139 0.0404116 +-0.010503 0.0674297 0.0550101 +-0.028646 0.0535523 0.0364431 +-0.072824 0.0936306 -0.0150907 +0.028615 0.035804 0.0196241 +0.0282076 0.0706829 -0.0227535 +0.0596824 0.0622541 0.020173 +-0.0025152 0.0575969 0.0540026 +0.000110958 0.036978 0.020027 +-0.0273656 0.0360131 -0.0296152 +-0.0624735 0.0344952 0.0183787 +-0.0360892 0.159232 -0.0124312 +0.0418577 0.100066 0.0211691 +-0.063571 0.122754 0.0468224 +0.0523857 0.0624129 -0.0025136 +0.0383109 0.0632029 0.0342252 +-0.0144971 0.0786767 0.0566892 +-0.0928565 0.129591 0.0132418 +-0.0681034 0.152856 -0.0481556 +-0.0746787 0.169356 -0.0440586 +-0.0335137 0.107031 0.0389932 +0.0424926 0.0583469 0.0313486 +-0.0223256 0.0637459 0.0453694 +-0.0648797 0.106687 -0.0146649 +0.0250125 0.0632249 0.0448766 +-0.0624284 0.159959 -0.0405984 +0.00349445 0.12099 0.0360851 +0.022067 0.0981797 0.0461337 +-0.0734899 0.123206 0.0535424 +-0.0321688 0.171168 -0.015915 +-0.0848969 0.106313 0.0233612 +-0.067172 0.174543 -0.0467986 +0.0246727 0.0884534 -0.0236513 +-0.0504949 0.0477308 0.0397221 +-0.064202 0.155431 -0.0413859 +0.00347944 0.095162 0.0537659 +0.0105108 0.100431 0.0479236 +0.021311 0.123415 0.0275211 +0.0415141 0.104253 0.009162 +-0.0617635 0.0387159 0.0237173 +-0.0044982 0.0952431 0.0547633 +0.0398123 0.066053 -0.00878746 +-0.00271622 0.0627636 -0.0349069 +-0.00914442 0.0387021 0.000210725 +-0.0814422 0.106028 0.0294684 +-0.0136643 0.0922643 -0.0359313 +0.0420557 0.0676716 -0.00377172 +-0.0364793 0.0945677 0.0439429 +-0.05033 0.0517928 0.0340061 +-0.0470088 0.130577 0.00217989 +-0.0286777 0.158132 0.000508817 +0.0185266 0.0345532 0.000246197 +-0.0147199 0.184604 -0.0232088 +-0.0384921 0.111131 0.0361977 +-0.0384978 0.102835 0.0403416 +-0.0215751 0.0667511 0.0487462 +-0.0887264 0.0996152 0.00841821 +-0.060662 0.0644224 -0.00688354 +0.0397235 0.080129 -0.010751 +-0.0136601 0.0389486 0.0334846 +-0.0106876 0.129553 0.00573838 +0.00810435 0.0348429 0.0181346 +0.0256081 0.104449 -0.0166247 +-0.0682325 0.168499 -0.0270627 +-0.0474794 0.0917467 0.0438194 +0.00950115 0.119644 0.0365249 +0.0437324 0.0790794 0.0263023 +-0.0905234 0.132421 0.0302253 +-0.0748541 0.107208 0.0370405 +-0.0943565 0.12553 0.0182582 +-0.0131926 0.0378477 0.0507876 +-0.0570855 0.0480965 0.0356642 +-0.04493 0.0346468 0.0377647 +-0.0665925 0.064199 -0.00375071 +-0.0829976 0.133839 -0.00205551 +-0.0406365 0.0548831 -0.0112562 +-0.00950098 0.0884225 0.0571104 +0.0335068 0.0468989 0.0306812 +4.31947e-06 0.034593 -0.0165995 +-0.0725884 0.155473 0.0265843 +-0.0755167 0.0714511 -0.00453448 +-0.0669139 0.0704667 0.0354638 +-0.069981 0.180634 -0.0574865 +-0.0116389 0.034923 0.0481436 +-0.0307766 0.0720324 -0.0295197 +-0.0178239 0.107521 -0.0218927 +0.020822 0.043607 0.0421342 +-0.025466 0.0460651 0.0509844 +0.0349766 0.11396 0.0183585 +-0.0599273 0.122373 -0.00867944 +0.0365334 0.0980835 0.033685 +-0.0621481 0.159972 -0.0385982 +-0.0915531 0.115336 0.039285 +-0.0888763 0.0982745 0.00841224 +-0.00324635 0.130613 0.0199814 +-0.0668526 0.0914559 0.0435065 +0.0175786 0.0475536 0.0427473 +0.0318002 0.118052 0.00717688 +-0.0414667 0.104283 0.0404247 +0.0562407 0.0648113 0.00118357 +-0.0753758 0.170369 -0.0311391 +-0.0620405 0.138434 -0.00686017 +-0.00249822 0.0870283 0.0569791 +-0.0542914 0.129735 0.0355428 +-0.0274963 0.100194 0.0434874 +-0.00951883 0.17115 -0.0217635 +-0.0305995 0.121953 0.0248664 +-0.0770757 0.068957 0.00853894 +0.0135031 0.119752 -0.013055 +0.0413777 0.0491221 -0.00619394 +-0.0669027 0.0396709 0.012801 +-0.0249365 0.0607087 0.0409751 +-0.0124795 0.0517352 0.0508543 +-0.0304 0.0650386 -0.0254348 +-0.0267061 0.0765373 0.0464972 +0.0196875 0.0385058 -0.013693 +0.0518591 0.0461434 0.019211 +-0.0447475 0.146272 0.00240034 +-0.0336457 0.0562895 -0.0107616 +0.0237552 0.0887468 -0.0239425 +-0.000502572 0.0965565 0.053664 +-0.0664522 0.0376478 0.0363332 +-0.041205 0.169789 -0.00987939 +-0.0630084 0.142674 -0.00705706 +-0.0305333 0.178655 -0.00565353 +-0.0137626 0.0784616 -0.0384771 +-0.0616465 0.0397266 0.0174413 +0.00939844 0.0418898 -0.0239164 +0.0403895 0.0519763 -0.00684208 +0.00239172 0.0434053 -0.0248906 +-0.0663598 0.15609 0.0142173 +-0.0667166 0.136853 0.0439657 +-0.0132042 0.171245 -0.025107 +-0.0511148 0.117699 -0.0144446 +-0.0686887 0.0620968 0.00507892 +-0.066502 0.0889512 0.0442634 +-0.0531749 0.0487012 0.0129919 +-0.0464945 0.0532702 0.037612 +-0.0763048 0.0702707 0.00153293 +0.00237024 0.0481449 -0.0294793 +-0.0669085 0.108072 -0.0133167 +-0.0614834 0.166203 -0.0576271 +0.028089 0.0929174 0.0442737 +-0.0239187 0.036252 -0.0191133 +-0.0394562 0.0347283 0.0406132 +-0.0679286 0.17514 -0.0470724 +-0.0737519 0.14858 -0.0228576 +-0.0335079 0.105635 0.0395993 +-0.0780357 0.0769322 0.031104 +0.047273 0.0720618 0.00573289 +-0.0566027 0.0562228 -0.000407584 +-0.0336617 0.0592604 -0.0121578 +0.0390714 0.108406 0.0131668 +-0.067572 0.158668 -0.00806913 +-0.0668441 0.0995074 -0.0160123 +-0.0155786 0.0348181 -0.0259692 +0.0524799 0.0636428 -0.00173686 +-0.0666208 0.161046 -0.0135117 +0.012487 0.118181 0.036207 +0.00850767 0.067431 0.0550095 +-0.0568164 0.0333332 -0.00454462 +-0.00056724 0.0909565 -0.0345037 +0.0122553 0.0695892 -0.0315106 +-0.0747099 0.0713354 -0.00558545 +-0.0151964 0.178666 -0.0203777 +-0.0707468 0.161979 -0.010709 +-0.00364517 0.0496603 -0.0307711 +0.0292759 0.0787271 -0.0215887 +-0.0606931 0.0659255 -0.00858452 +-0.055281 0.0594285 0.0232183 +0.0168274 0.0658911 0.0506364 +-0.0286315 0.159193 -0.0128611 +-0.0753259 0.0689002 0.0227894 +-0.0278046 0.0364789 0.0536304 +-0.020238 0.0938075 -0.0335417 +-0.0787919 0.108745 0.0367247 +-0.0627356 0.150882 -0.0252578 +-0.0374903 0.111156 0.0359971 +0.0123741 0.0494269 -0.0274814 +-0.0550935 0.0685958 0.0378502 +0.0152655 0.0695272 -0.0306629 +0.0304209 0.0460912 -0.00653037 +-0.0896888 0.137919 0.0321971 +-0.076768 0.156222 -0.00903892 +-0.0177411 0.17422 -0.017052 +-0.0582856 0.0695544 0.0380966 +-0.0710157 0.179813 -0.0510815 +-0.0283604 0.112635 -0.0172343 +-0.0441537 0.0408799 -0.0213021 +0.0104769 0.0949778 0.0509942 +-0.00239285 0.100006 0.0487279 +0.0421962 0.0929549 -0.00479827 +0.0401191 0.0900359 0.0318057 +0.0226855 0.103953 -0.0180758 +-0.0705692 0.037778 -0.000833243 +0.0213756 0.0429924 -0.0177346 +0.0141656 0.0475343 0.0448184 +0.02539 0.0849287 0.0474039 +-0.0485578 0.0361757 -0.0124661 +0.0237226 0.0699627 0.0465409 +-0.062494 0.155703 0.00979223 +-0.0499478 0.135176 0.00116888 +-0.0731261 0.154051 -0.0329012 +-0.0565591 0.0344267 0.0337344 +-0.0757231 0.155771 0.0225635 +-0.081733 0.0783168 0.0273929 +-0.0465781 0.0504461 -0.00966731 +0.0370638 0.0376395 0.0160314 +0.0401736 0.0801429 -0.00978947 +-0.0295615 0.171229 -0.00778742 +-0.0625363 0.158377 -0.0386027 +-0.0482692 0.133969 0.0226705 +0.00454759 0.0341639 -0.0171912 +-0.0620171 0.153759 -0.016582 +-0.0878261 0.11219 0.0337097 +-0.05597 0.0519966 -0.00239063 +0.0400386 0.0871415 -0.0117889 +0.0205921 0.0807207 0.0509473 +-0.0296224 0.0352251 0.019146 +-0.0381589 0.163687 -0.0131595 +-0.0675595 0.163657 -0.0167503 +-0.0522361 0.15086 0.0163848 +0.0360023 0.103374 0.0311349 +0.0272712 0.0929162 0.0448522 +-0.0277389 0.0423333 0.0528015 +-0.0824451 0.140729 0.0449221 +-0.0329396 0.0386558 -0.0303928 +0.0296623 0.114075 -0.00693776 +-0.0221975 0.0652175 0.046591 +0.045212 0.0819736 0.0221688 +-0.0258761 0.0796032 0.0512286 +0.0272389 0.0873294 -0.0222582 +0.00242016 0.0361514 -0.024222 +-0.0615581 0.145382 0.0374116 +-0.0695688 0.160974 -0.049948 +-0.0858053 0.0953564 -0.000572964 +-0.0464927 0.165223 0.0045927 +-0.0624159 0.15064 -0.016574 +0.0473464 0.0561746 -0.0057008 +0.0237088 0.0942271 0.0467477 +-0.0494979 0.0762481 0.043343 +-0.078769 0.165248 -0.0339573 +-0.00950205 0.12806 0.0264334 +0.05377 0.0682444 0.00163269 +-0.0679209 0.163786 -0.054975 +0.0290078 0.087549 0.0438096 +-0.0840398 0.132376 -0.0018283 +-0.0306543 0.0650659 -0.0244333 +0.0322458 0.0355363 0.00770856 +0.00335212 0.131364 0.00663122 +-0.0154115 0.128891 0.0141212 +-0.0372876 0.0421099 0.0439093 +0.0308492 0.0931255 -0.0185705 +-0.029871 0.0459583 -0.0272702 +0.0300675 0.0822073 0.0435477 +0.000382137 0.128869 0.0270967 +-0.0174793 0.0730127 0.0550809 +-0.0387497 0.0782817 -0.0191475 +-0.0433943 0.0335852 -0.0186462 +0.0391881 0.0673984 -0.0107969 +-0.0280713 0.175691 -0.00734553 +0.0316149 0.0916151 0.0423373 +-0.0762132 0.0879097 -0.0135406 +-0.0316751 0.0665766 -0.0214412 +-0.00307655 0.0345443 -0.0171652 +-0.0426807 0.0636637 -0.0138633 +-0.0921228 0.126953 0.0372491 +-0.0235086 0.0347636 0.0474886 +-0.0506072 0.0546369 -0.00878713 +-0.0685971 0.162283 -0.0128033 +-0.0637348 0.156074 0.0136991 +0.0233928 0.0475951 -0.0196868 +-0.0519018 0.105587 -0.0193502 +-0.00551889 0.0746529 0.0585785 +0.000500504 0.0519731 0.0534094 +-0.0412672 0.0338015 -0.0128657 +-0.0819225 0.125087 -0.0048212 +0.00722702 0.0796252 -0.0338785 +-0.0893296 0.0956153 0.0124232 +-0.00167125 0.0554598 -0.0320096 +0.0267785 0.0402768 0.0313512 +-0.0867821 0.10632 0.010369 +-0.0451957 0.131364 0.0135329 +0.018149 0.0699846 0.0508404 +-0.0878008 0.119885 0.00028492 +-0.0612546 0.0341987 0.0206565 +0.0115009 0.111256 0.0392728 +0.0152633 0.0751002 -0.0297036 +-0.0351444 0.0865581 -0.0244792 +0.000649673 0.0963928 -0.0300705 +-0.0345272 0.121283 0.0279162 +0.0296818 0.0815643 -0.0205093 +-0.03348 0.115008 -0.0157024 +-0.0728312 0.136891 0.0492499 +-0.00265601 0.0540246 -0.0319128 +-0.0422272 0.127744 0.0161624 +-0.0494399 0.119744 0.0319359 +-0.0574019 0.116942 0.0379675 +-0.0468361 0.0970763 -0.0219471 +-0.0616292 0.146031 -0.00460349 +-0.0933662 0.126937 0.0262691 +-0.0228186 0.161021 -0.00330981 +-0.0635624 0.152855 0.034229 +-0.0625195 0.144437 -0.00658249 +-0.0839827 0.0830482 -0.0025149 +0.0144965 0.116791 0.0366152 +-0.0766305 0.155099 0.0076657 +-0.0365494 0.127902 0.0108341 +0.02042 0.126659 0.0186188 +-0.0470606 0.0628926 0.0375096 +-0.00665705 0.114661 -0.0174859 +0.0409886 0.104212 0.016155 +0.0264254 0.054947 0.041554 +-0.064618 0.0659249 -0.00682147 +0.0143052 0.127349 0.0263844 +-0.0254714 0.0379526 0.0103195 +0.0213669 0.0851498 -0.0262488 +-0.0469792 0.133264 0.00837709 +-0.0845615 0.0777561 0.014943 +0.0384886 0.0513309 0.0319844 +-0.0128833 0.165453 -0.0135102 +-0.0811951 0.147316 0.000164965 +-0.0523892 0.141597 0.0213852 +-0.045982 0.130505 0.00444274 +0.0279356 0.0520839 0.0384098 +-0.0931866 0.124098 0.0112689 +-0.0316005 0.0707575 -0.0264789 +0.00339515 0.0448431 -0.0258796 +-0.019688 0.0352649 -0.0192337 +-0.0492398 0.164062 -0.00484765 +-0.00759694 0.039172 -0.0259394 +-0.0456148 0.043386 -0.0114089 +-0.0706825 0.163806 -0.0469738 +-0.0111277 0.166928 -0.0162357 +0.0150914 0.0873948 0.0517971 +-0.0488841 0.0335499 -0.0104742 +0.0191832 0.0974256 -0.0227258 +-0.068761 0.17368 -0.0560297 +0.0347852 0.0821986 0.0398055 +-0.0656191 0.164967 -0.0232289 +0.0488884 0.0431235 0.0112233 +-0.0204394 0.0725535 0.0530664 +0.0198178 0.127196 0.0112616 +-0.0870347 0.13912 0.00619253 +-0.0619782 0.15683 -0.0335967 +0.0192552 0.0735767 -0.0281447 +-0.0582892 0.0589697 0.00149643 +-0.0794885 0.131664 0.0524764 +-0.0625817 0.159955 -0.0415973 +-0.0344319 0.0350721 -0.0182387 +0.0339652 0.0955609 0.0387182 +-0.0350568 0.0344135 0.0294961 +-0.00649976 0.0842428 0.0569087 +-0.0606247 0.0394421 0.0446315 +-0.066026 0.146409 -0.0228827 +0.0265887 0.0491527 0.0382012 +-0.0447519 0.078285 -0.0193632 +0.0442188 0.0833029 0.0251703 +-0.025021 0.178659 -0.00994683 +0.0382789 0.10977 0.00952257 +-0.0756137 0.176488 -0.0441876 +-0.0706968 0.169922 -0.0279808 +-0.0514769 0.0344526 0.0347935 +0.00449209 0.108585 0.0419458 +0.0591616 0.0552765 0.0151753 +0.0295012 0.0578054 0.0407589 +0.0323993 0.0505614 -0.00746951 +-0.0570338 0.131087 -0.00617819 +-0.0304972 0.101559 0.0427282 +-0.00116978 0.0991573 0.0506694 +-0.0238077 0.0811303 0.0547388 +-0.00701023 0.0988653 -0.0267279 +-0.0156999 0.0584946 -0.0353551 +0.00922562 0.0809438 -0.0326125 +0.0453737 0.0474164 -0.00383546 +0.0044338 0.117686 -0.0167913 +0.0239341 0.0561524 -0.0247597 +0.0591083 0.0705376 0.015147 +-0.0594646 0.151494 0.0342364 +-0.0657091 0.157202 -0.00882727 +-0.0250337 0.0381576 0.00660247 +0.0420581 0.102887 0.0101643 +0.0436509 0.0403831 0.00924323 +-0.00449056 0.130995 0.0108991 +0.0044777 0.112767 0.0412512 +0.00553763 0.100304 0.04669 +-0.0942962 0.120123 0.0192891 +-0.0620801 0.0339964 0.0171254 +-0.0160023 0.128658 0.015367 +-0.0432963 0.128843 0.0142751 +-0.0634932 0.104261 0.0408123 +-0.0746115 0.103538 0.0368408 +-0.0222463 0.0739152 0.0519932 +-0.0544743 0.034136 0.0256577 +-0.0252277 0.12616 0.0135052 +-0.0320296 0.171249 -0.00429305 +-0.0132393 0.1837 -0.0278845 +-0.0324962 0.0718107 0.0406773 +-0.0765269 0.165965 -0.0237196 +-0.0833313 0.0829966 0.0292517 +0.0259015 0.0902483 0.0463733 +0.0095961 0.0354723 -0.00987583 +0.0511798 0.0581784 0.029952 +-0.0848476 0.0845966 0.0254873 +-0.0509379 0.131197 -0.00260501 +0.00252027 0.0730778 0.0562797 +-0.0135504 0.122737 -0.00796322 +-0.00761024 0.0420402 -0.0258045 +-0.0508461 0.134795 0.0276114 +-0.0804072 0.155064 0.0209566 +0.00350727 0.103765 -0.0218529 +-0.0106066 0.0420419 -0.0261259 +-0.0713436 0.0632651 0.0179295 +-0.067959 0.169303 -0.0298283 +-0.0236585 0.049302 -0.027521 +-0.069473 0.158882 -0.00587612 +-0.0766843 0.15421 -0.00390102 +-0.0220401 0.0852804 0.0556778 +0.0275877 0.0465825 -0.0117097 +-0.00852427 0.130326 0.0108566 +0.0130382 0.0344991 0.00293188 +0.0559458 0.0605187 0.000117677 +-0.0348266 0.0900917 -0.0242073 +-0.0890869 0.135136 0.0402764 +-0.0897624 0.136545 0.033205 +0.00547548 0.112757 0.0410095 +-0.0712367 0.159654 -0.00650092 +-0.0121993 0.177175 -0.0288808 +-0.0823069 0.0748418 0.00552391 +-0.054558 0.0460859 0.0144477 +-0.070487 0.0669606 -0.00253268 +-0.0556924 0.159448 0.00648476 +-0.00649361 0.105887 0.04408 +-0.0602281 0.059992 0.0213112 +-0.0580325 0.0579587 0.00923969 +-0.0338627 0.110196 -0.0186635 +0.0546876 0.0597691 -0.00173886 +-0.0625369 0.149102 -0.00757295 +0.0542703 0.0575789 -0.00178727 +-0.0088618 0.129865 0.0208462 +-0.0801514 0.109359 0.0377151 +-0.00679227 0.0798757 -0.0378854 +-0.0424904 0.0860159 0.0426903 +0.0479819 0.0723794 0.00739708 +-0.0560722 0.13957 0.0312222 +-0.0365138 0.0804626 0.0431357 +0.00167631 0.105337 -0.0215515 +-0.0775111 0.0860271 0.0374369 +0.0259521 0.11908 -0.00433188 +-0.0558236 0.0526652 0.00846948 +-0.0846054 0.11036 0.02536 +-0.0765518 0.15421 -0.000899711 +0.0127846 0.0699169 0.0536174 +0.0208082 0.1264 0.00735797 +-0.0504584 0.0502644 0.0363006 +0.0174244 0.125027 -0.00283112 +-0.0308709 0.178515 -0.0130008 +-0.00718543 0.0385691 0.00621806 +0.0407891 0.0886694 0.0309807 +-0.0357951 0.124657 -0.0058294 +-0.0554873 0.0400326 0.0469712 +-0.057026 0.0675163 0.0366088 +-0.0497286 0.133927 0.0265636 +-0.00790814 0.0384861 0.0079669 +-0.0811308 0.0841829 -0.00653469 +-0.010479 0.0991873 -0.02508 +0.00856046 0.0354979 0.0447263 +-0.0634822 0.166302 -0.0366942 +-0.0223475 0.0360366 0.0535038 +-0.0795325 0.124539 0.0521412 +-0.00951606 0.0745243 0.0569833 +-0.0130122 0.127478 0.0251829 +-0.0936226 0.120076 0.0132919 +-0.0540996 0.154592 -0.00271527 +-0.0879876 0.132208 0.00230713 +-0.034669 0.15585 -0.0101443 +-0.0197012 0.0598498 -0.0346368 +-0.0276791 0.155231 -0.00339809 +-0.0842452 0.0818537 0.025498 +-0.054537 0.0560032 -0.00541843 +-0.0497623 0.0665865 0.0371903 +-0.0891577 0.092949 0.0214162 +-0.0577737 0.0782037 -0.0194332 +-0.064492 0.104249 0.0405622 +-0.0336047 0.0695556 -0.0194645 +-0.0558611 0.0955845 -0.021564 +-0.0184974 0.0869962 0.0565805 +0.00637923 0.0372606 0.0264872 +-0.0665048 0.104229 0.0399675 +0.0566718 0.0553009 0.0238011 +-0.0283123 0.0383433 -0.00703005 +-0.0114184 0.169868 -0.0184586 +0.0211822 0.0909362 -0.0242734 +0.0406295 0.0806796 0.0323988 +0.0123659 0.128443 -0.000397752 +-0.0384845 0.0833049 0.0437838 +-0.01051 0.0531978 0.0517663 +0.00250545 0.0842781 0.0574483 +-0.0674995 0.0972695 0.0419768 +-0.0618921 0.119466 -0.00942759 +-0.00594439 0.13066 0.0175514 +-0.0188708 0.0382701 0.00775373 +-0.0605698 0.0727907 0.0401099 +-0.0115041 0.115551 0.0394745 +0.0300401 0.11902 0.00366373 +-0.0812551 0.10738 0.02923 +-0.0704758 0.123201 0.0533571 +-0.0711231 0.141136 0.0464522 +-0.0222312 0.125137 -0.000350139 +0.0436968 0.0818627 -0.00278544 +-0.00557531 0.0383818 0.0157938 +-0.0175218 0.187118 -0.0194148 +0.000510392 0.0689287 0.0563645 +0.0339979 0.0519394 0.0331121 +0.00286804 0.129802 0.0250965 +-0.0290472 0.0777737 0.0431405 +0.0209137 0.102084 0.0444516 +-0.00628355 0.0409075 0.0485853 +0.0605521 0.0595441 0.0141714 +0.0386236 0.0898511 -0.0127692 +0.0302987 0.0539206 -0.0157566 +-0.0421651 0.149301 -0.00412295 +-0.0126067 0.040646 -0.0265976 +-0.0788091 0.168052 -0.033971 +0.0359211 0.112779 0.0172688 +-0.0394762 0.17111 0.000601324 +-0.0330305 0.0384181 -0.00620006 +-0.0859939 0.0940196 0.000445293 +-0.0359122 0.158048 0.00410154 +-0.0745011 0.151286 -0.0298782 +0.0531496 0.0491587 0.00225551 +-0.0243767 0.179986 -0.0189674 +-0.0891975 0.0996627 0.0124046 +-0.0742533 0.17954 -0.0493425 +-0.0510836 0.145457 -0.000907293 +0.0483282 0.0561556 -0.00540695 +-0.0224848 0.0474635 0.0510926 +-0.0647533 0.163375 -0.0214725 +-0.0127683 0.163589 -0.0126806 +0.0112702 0.0766287 -0.031501 +-0.0460801 0.153165 -0.0063697 +-0.0396673 0.0606846 -0.0120669 +0.0304753 0.100799 0.0389817 +0.0504441 0.0731136 0.0180651 +0.0195371 0.122997 -0.00457304 +-0.0455152 0.0505363 0.0385492 +-0.0525396 0.0458696 -0.00783738 +-0.0679101 0.109459 -0.0121777 +0.0257715 0.122252 0.0234619 +-0.0641925 0.158337 -0.0512857 +-0.0679573 0.0636968 0.0236258 +0.0336501 0.0872305 -0.0183746 +-0.081408 0.0801232 -0.00353296 +-0.068364 0.143961 0.043402 +-0.060807 0.170968 -0.0607383 +-0.0530022 0.0712206 0.0395879 +-0.0629233 0.149038 -0.01858 +-0.0911763 0.131044 0.0302322 +-0.0866097 0.0859466 0.00148078 +-0.0213048 0.0567472 0.0459531 +-0.0884724 0.111842 0.0093465 +-0.0232358 0.0382045 0.0267906 +-0.0687325 0.178002 -0.0502345 +0.0171734 0.0960138 -0.0234178 +-0.0336295 0.0533957 -0.0102549 +0.0404048 0.0661215 -0.00776758 +0.0352114 0.113974 0.0112756 +-0.0509894 0.131098 0.0315417 +-0.0825925 0.0857998 0.0312629 +0.0165569 0.0367823 -0.018664 +-0.0158447 0.163118 -0.0162484 +0.0463618 0.0504062 -0.00492067 +-0.0256024 0.0918183 0.0477571 +0.0401119 0.105635 0.0181717 +-0.075865 0.120825 -0.00747435 +-0.0515138 0.0502892 0.0216268 +-0.0597307 0.0737738 -0.017073 +0.0327302 0.0795508 0.0421017 +0.0561478 0.0493933 0.0131905 +-0.0491927 0.149222 0.0111539 +-0.0505664 0.0459962 -0.00889176 +-0.0346044 0.0381371 0.0484275 +-0.0571418 0.0341673 0.0268338 +-0.0508978 0.0335658 0.00549258 +0.0499018 0.0460625 0.00228276 +0.000648366 0.101032 0.0453587 +-0.064515 0.0945534 0.0434117 +-0.00933623 0.127529 -0.00319765 +-0.0931674 0.126844 0.0122586 +-0.0775055 0.120428 0.0519362 +-0.00412302 0.0390868 0.0317249 +-0.0444953 0.12065 0.0276432 +-0.0808257 0.114785 -0.00282613 +0.00848893 0.0976878 0.0492062 +-0.0204952 0.119495 0.0334766 +-0.0744171 0.1312 0.052182 +-0.0354802 0.0365931 -0.0303176 +-0.0158225 0.127346 0.0227279 +-0.0622273 0.163125 -0.0345932 +-0.0308039 0.0345326 0.0408762 +-0.0684942 0.0944611 0.0423345 +-0.0282259 0.115945 -0.0147131 +-0.00496131 0.0393649 0.0367022 +0.000507606 0.089764 0.0561546 +0.0184391 0.121423 0.0322194 +-0.0293563 0.0761839 -0.0345604 +-0.0798193 0.0993879 0.0336913 +-0.0260706 0.125207 0.0176138 +-0.0466789 0.0383303 -0.0162856 +-0.0551627 0.0709645 0.0393255 +-0.0708102 0.086505 -0.0166182 +-0.0534691 0.0491595 0.0373719 +-0.0176627 0.0365106 -0.0181139 +0.00950436 0.0910078 0.0538342 +-0.0895706 0.136541 0.0322035 +0.0538065 0.0721186 0.0208488 +-0.00549555 0.115561 0.0401898 +0.00964519 0.0349724 -0.00752839 +-0.0134864 0.112741 0.0406725 +-0.00206815 0.039143 -0.00620903 +0.0130247 0.112857 -0.017601 +-0.0790398 0.119048 0.050662 +-0.0808858 0.0872378 0.0337267 +-0.0123796 0.124965 -0.00637162 +-0.0213885 0.125739 0.00103732 +-0.089509 0.125659 0.045333 +-0.05553 0.137483 -0.00349047 +0.0417216 0.100008 -0.000812454 +-0.0294372 0.045874 0.0494957 +0.0458807 0.0774123 0.0204549 +-0.010796 0.120869 -0.0120713 +-0.0650859 0.171096 -0.0446086 +-0.0309091 0.0594671 -0.0184147 +0.0318276 0.102039 -0.0140664 +-0.050474 0.137043 0.0223997 +-0.0892111 0.0956026 0.0114219 +-0.0551272 0.0478339 0.0400497 +-0.0376142 0.115213 -0.0159111 +-0.0262205 0.0604134 -0.0304432 +-0.0395514 0.159448 0.00235113 +-0.0548296 0.0912974 -0.0221769 +0.0140209 0.113717 -0.0165571 +-0.0376838 0.0651596 -0.0143574 +-0.0357596 0.0367769 0.0465803 +0.0218833 0.124858 0.00205716 +-0.0515413 0.0403485 -0.0110842 +0.0196453 0.0521206 0.045827 +-0.0274751 0.109286 -0.019717 +-0.054346 0.125513 0.0372066 +-0.061806 0.172532 -0.0555873 +0.0193853 0.0367967 0.0404 +0.00315064 0.0340463 -0.0192491 +-0.0419902 0.127061 0.0177443 +-0.0753578 0.0671035 0.0137678 +-0.017747 0.0685932 -0.0381265 +0.0502404 0.0581527 0.030355 +-0.01349 0.11138 0.0414506 +-0.088473 0.0908539 0.022804 +-0.0623246 0.0380624 0.0435494 +-0.0315191 0.0831203 0.0417649 +-0.0908528 0.131057 0.0322319 +-0.0524868 0.0959601 0.0436811 +0.0383485 0.10917 0.00520513 +0.0405643 0.0599899 -0.00408877 +-0.00769877 0.0598808 -0.0345717 +0.0253549 0.0875981 0.0473346 +-0.0126907 0.166905 -0.0150111 +0.0384994 0.0541178 0.0316123 +-0.034906 0.0367338 -0.0161439 +-0.057208 0.048538 0.00854022 +-0.0255159 0.108511 0.0401259 +0.0305676 0.0350004 0.0115893 +-0.0520943 0.0559627 0.0266271 +-0.0610057 0.155949 0.0190169 +-0.067333 0.1766 -0.0497355 +0.0258363 0.0844839 -0.0235493 +-0.0689178 0.164003 -0.0158096 +-0.00849374 0.116931 0.0393004 +-0.0752784 0.113511 0.0497641 +-0.0888148 0.144497 0.0313918 +-0.0453871 0.145929 0.00156561 +-0.0599561 0.0677317 0.0357891 +-0.0125434 0.0386707 -0.00229897 +-0.000271447 0.0356914 0.00658166 +-0.0415825 0.0366566 0.0434527 +-0.0297036 0.165315 -0.00626903 +-0.0467885 0.0855251 -0.0217462 +-0.0827882 0.125806 0.051363 +-0.0176693 0.0966335 -0.0284397 +-0.0464991 0.115243 0.033257 +-0.0569748 0.146758 0.0317266 +-0.0430879 0.156177 -0.00890493 +-0.00350236 0.0774419 0.0585703 +-0.0699027 0.158151 -0.0489236 +0.0362459 0.112339 0.00591924 +0.0367118 0.0920329 -0.0133924 +-0.0539202 0.0610131 0.0274265 +-0.0093317 0.127279 0.0279745 +-0.0726772 0.112018 0.047983 +-0.0451365 0.160644 -0.00892562 +-0.0209165 0.172715 -0.0146234 +-0.0477839 0.125387 0.0290716 +-0.0734873 0.156859 -0.0289164 +0.00860516 0.061703 0.0545256 +-0.0246606 0.0422329 0.0539554 +-0.0315436 0.153515 -0.00448892 +0.0345459 0.0571781 -0.011728 +-0.0791321 0.170818 -0.0399882 +0.0254504 0.0415949 -0.00563526 +0.0230318 0.0355156 0.0114574 +-0.0554984 0.107053 0.0399469 +-0.0296361 0.0522471 0.0373693 +-0.0438179 0.0928034 -0.0224841 +-0.0199243 0.0387302 -0.0112686 +0.0212455 0.0791286 -0.0267859 +-0.0532861 0.0527919 0.0115704 +0.00450017 0.0441843 0.0459802 +-0.0329932 0.0339759 0.0213799 +0.0553011 0.0604636 -0.000842819 +0.00165238 0.0932332 -0.0327923 +-0.0552284 0.0527023 0.00927604 +-0.0783599 0.0708413 0.0204513 +-0.0767777 0.176413 -0.0510191 +-0.0394918 0.104211 0.0396007 +0.0327921 0.0889736 0.0422708 +-0.00991923 0.0986226 0.0505787 +-0.0806729 0.108958 0.0307202 +-0.0822864 0.135367 0.0491747 +-0.0649369 0.0609076 0.00327394 +0.0386477 0.0715748 -0.0117783 +-0.0240415 0.126597 0.0109996 +-0.0781422 0.141688 -0.0047364 +-0.0427782 0.0841106 -0.0212812 +-0.0641686 0.178174 -0.0558405 +0.0252976 0.0661311 -0.0233121 +0.0189895 0.0631559 0.0484766 +0.0182463 0.0722224 -0.0290012 +-0.0777504 0.161717 -0.020949 +-0.051966 0.138521 0.000416067 +-0.0605353 0.155832 0.0177371 +0.0437866 0.098742 0.00716534 +-0.0494703 0.0370271 -0.0120635 +0.0464078 0.0806576 0.0101793 +0.0218218 0.116393 -0.0114503 +-0.0533273 0.132699 -0.00427378 +-0.0681775 0.0762505 0.039044 +-0.0250035 0.0896 -0.0352857 +0.000769534 0.0946028 -0.0322154 +-0.0158082 0.0346932 0.0474464 +-0.076979 0.148604 -0.00699397 +0.0467055 0.0730498 0.0181295 +-0.0496483 0.0634464 -0.0118311 +-0.0197535 0.0700012 -0.0382558 +0.0232727 0.0989983 -0.0208236 +-0.0777 0.16251 -0.0219398 +-0.0908755 0.147455 0.0141474 +-0.0334742 0.0638502 -0.015538 +0.00219672 0.0825025 -0.0349885 +-0.0814773 0.128835 0.0524787 +-0.0784807 0.13724 0.0497912 +0.0361312 0.11046 8.71157e-05 +-0.0454849 0.0931252 0.0434035 +-0.0635463 0.153079 -0.00800928 +-0.0529285 0.0339107 0.0244154 +-0.00862356 0.0451919 -0.0286362 +0.0192377 0.117984 0.0350388 +-0.000496915 0.0883839 0.0565827 +0.0316988 0.118246 0.0142694 +-0.0398347 0.169198 -0.01127 +0.0219416 0.125622 0.00635903 +-0.092876 0.129604 0.0142376 +-0.023566 0.0579721 0.0425175 +-0.0447621 0.126552 0.0211574 +-0.0390659 0.157734 -0.0109824 +-0.0038734 0.104505 -0.022849 +-0.0810823 0.146103 0.0405774 +-0.00499552 0.038756 0.0282379 +0.00659654 0.102942 0.0449664 +-0.0528078 0.0898592 -0.0221628 +-0.0415043 0.0340515 -0.0039392 +-0.0118724 0.166916 -0.0155725 +0.00801932 0.113693 0.0398597 +-0.0873717 0.0895698 0.0245766 +0.0235801 0.11767 -0.00881398 +-0.0592051 0.0411249 -0.00803844 +-0.0631955 0.174736 -0.0540401 +-0.00904474 0.102005 -0.0240096 +-0.0893459 0.0888735 0.0114634 +-0.0847817 0.111591 0.0313073 +-0.0318636 0.155275 -0.00893878 +0.020119 0.0578214 0.0483165 +-0.0884363 0.140505 0.0381916 +0.0268748 0.0768062 0.0459093 +0.00650425 0.06886 0.0554952 +-0.0600274 0.155812 0.00342033 +0.00439509 0.0433687 -0.0246925 +-0.0644393 0.157952 -0.0526177 +-0.0626717 0.152516 0.0345768 +-0.0686641 0.0435432 0.00268116 +-0.0668913 0.155545 0.00822429 +-0.0513204 0.0545255 0.0306253 +-0.0216946 0.055283 -0.031103 +0.0201038 0.121698 0.0313961 +-0.0435092 0.0973014 0.0425845 +-0.0598342 0.124083 0.0415696 +-0.0290584 0.0385824 0.0360072 +-0.0211666 0.0959679 -0.0277597 +0.0393164 0.0948581 -0.00836399 +-0.0465497 0.0354834 -0.0182685 +-0.0577953 0.0577539 0.0112722 +0.0343862 0.0533953 0.033694 +-0.0356597 0.12459 0.0229985 +-0.0703962 0.0382223 -0.000484462 +0.0394034 0.0772645 -0.00977482 +0.0374516 0.110677 0.0163977 +0.022681 0.0549804 0.0449373 +-0.00661876 0.0388692 0.029605 +-0.0298463 0.0958488 -0.0239617 +-0.0500656 0.165567 2.77718e-05 +-0.0624265 0.163056 -0.0535855 +0.0182459 0.035082 -0.00972071 +-0.0535426 0.139527 0.0278286 +0.0535157 0.0664189 0.0268642 +-0.0618871 0.044625 0.0401036 +0.0279315 0.0813321 -0.0222629 +-0.0364738 0.0959436 0.0435424 +-0.0648009 0.0867059 -0.0190299 +-0.0910478 0.113254 0.017639 +0.0328625 0.115479 0.000361714 +-5.55454e-05 0.1192 -0.0143689 +0.00440015 0.0419024 -0.0241382 +-0.0356548 0.0459643 -0.0252685 +-0.00874142 0.0699019 -0.0364843 +-0.0786816 0.173602 -0.0460003 +-0.0750442 0.11265 0.048722 +0.0132032 0.0850348 -0.0305799 +-0.0275703 0.070462 0.0404211 +-0.0333885 0.082189 -0.0265241 +-0.0498121 0.0912811 -0.0216901 +-0.0121305 0.129539 0.00953518 +-0.0888371 0.0942243 0.00943852 +-0.0733262 0.151241 -0.0368807 +0.0159012 0.0347663 0.0342789 +-0.0464698 0.0336288 0.00272222 +-0.0219797 0.0381347 0.0126751 +-0.0434985 0.112577 0.0357301 +0.0374146 0.0807844 0.0365828 +-0.0150623 0.160937 -0.0114195 +0.00882514 0.0347544 -0.00561715 +-0.0793646 0.150083 0.036366 +0.0444807 0.0526489 0.0324592 +-0.0140843 0.0382987 0.0177555 +0.0371109 0.0630101 -0.0117592 +-0.0795655 0.0711751 0.0181423 +0.0314182 0.0968966 0.040312 +0.0553211 0.0622297 0.0271921 +-0.0344916 0.0789231 0.04184 +-0.0708134 0.0893817 -0.0163657 +-0.0786856 0.174223 -0.045863 +-0.0497628 0.0345507 0.0333201 +-0.026557 0.0646504 0.0393284 +0.0499455 0.0733656 0.0164225 +0.0233132 0.0902311 0.0479207 +-0.0441494 0.163638 -0.00943446 +-0.048497 0.0464891 0.040915 +-0.0638143 0.15519 -0.0396115 +0.0296208 0.115866 0.0291818 +-0.0505003 0.100168 0.042883 +0.00450871 0.0910904 0.0550512 +0.0223914 0.093257 -0.0227104 +-0.0346391 0.0469045 -0.0241611 +0.0600903 0.0608951 0.0181821 +0.0174829 0.0976104 0.0472234 +0.0245219 0.0382712 0.0311236 +0.0373902 0.0561474 -0.00613784 +-0.0725233 0.143597 -0.0104167 +-0.0755086 0.133058 0.0519758 +-0.0469091 0.134066 0.0158053 +-0.0365004 0.0719314 0.0420432 +0.0599383 0.0692126 0.0131498 +-0.0228512 0.126901 0.0114323 +0.0370832 0.0408236 0.0259314 +0.0430366 0.0709859 0.0269587 +0.0442558 0.0917077 -0.00080891 +0.0366443 0.0915417 0.0373244 +0.0149217 0.127634 0.0251635 +-0.0260773 0.0547586 -0.0274003 +0.0223322 0.0348324 0.0210401 +-0.0674741 0.169344 -0.0310786 +-0.0943935 0.125559 0.0222675 +0.000334373 0.0554042 -0.031412 +-0.023822 0.0694685 0.046666 +0.024828 0.0768588 0.0482443 +-0.0593221 0.0615947 0.0254084 +-0.0274704 0.0506795 -0.0243965 +-0.0172176 0.177147 -0.0249576 +0.0433823 0.0490357 -0.00560381 +0.0244317 0.116294 -0.00934411 +0.0184177 0.0350663 0.0309125 +0.0404265 0.102791 0.0231613 +-0.0243375 0.1639 -0.00728245 +-0.0675442 0.151908 -0.0456642 +-0.0311974 0.0474073 0.0447828 +-0.0726957 0.175719 -0.0430358 +-0.0165027 0.0499584 0.0473896 +0.0323852 0.0461686 -0.00610484 +0.0214495 0.0822346 0.0504578 +0.016822 0.123899 -0.00554312 +-0.0694694 0.178653 -0.050518 +-0.0741019 0.156119 0.0187476 +0.0510202 0.0736047 0.0138558 +-0.0739033 0.14718 -0.0168588 +-0.0165785 0.162548 -0.00831661 +-0.0414778 0.0347327 0.0401772 +0.0319294 0.118052 0.0100791 +-0.0502835 0.146495 -0.00183305 +-0.0758664 0.116415 -0.00636144 +-0.0824071 0.136209 -0.001703 +-0.0519598 0.0335208 -0.000101812 +-0.0819554 0.0993316 0.0315904 +0.0213579 0.055075 -0.0266156 +-0.0422106 0.112435 -0.0169649 +0.0150002 0.128745 0.00378903 +-0.0430993 0.157658 -0.00954173 +-0.0816795 0.117485 0.0486704 +-0.00999143 0.0383941 0.00762464 +0.0248936 0.12332 0.00461274 +-0.0644877 0.0972949 0.0424471 +-0.032514 0.105674 0.0400124 +-0.0517751 0.0826668 -0.0215624 +0.00214252 0.103065 -0.0221511 +-0.0609083 0.169363 -0.0596932 +0.0270498 0.0919981 -0.0213752 +0.00735643 0.038818 0.0454516 +0.0115845 0.121127 -0.0125402 +0.0591992 0.0552614 0.014176 +-0.0901723 0.112303 0.0149799 +-0.0627834 0.035148 0.0195098 +-0.074757 0.111898 0.0475989 +0.0570719 0.0578424 0.00217676 +-0.0528487 0.0500508 0.0126245 +-0.00477608 0.0784365 -0.0374195 +-0.0645432 0.0673992 0.033354 +-0.0540085 0.145723 -0.00127177 +-0.010995 0.0388834 0.0322933 +0.00247314 0.0964836 0.053027 +-0.0624566 0.177245 -0.0586155 +0.0368789 0.0941727 0.035906 +-0.0219544 0.120804 -0.00985027 +0.0570851 0.0508934 0.0101876 +0.0102738 0.0724526 -0.032232 +0.0544954 0.0655564 0.000403771 +0.0210681 0.0415437 -0.0156999 +-0.0692317 0.155651 0.00154206 +0.0527009 0.0518645 -0.000768796 +0.0334294 0.116181 0.00636312 +0.0448957 0.0945828 0.0101613 +0.00249575 0.0952068 0.0540463 +-0.0124032 0.0388598 -0.00801871 +0.045282 0.0889737 0.0021781 +-0.00350234 0.0388725 -0.0137373 +-0.0678317 0.0335757 0.00383638 +0.00921578 0.0767579 -0.0331902 +-0.0534996 0.0987387 0.0427565 +-0.0124888 0.126191 0.0283067 +0.0103285 0.130654 0.00635323 +0.0314005 0.0446447 -0.00577901 +-0.0295471 0.0804664 0.0436378 +0.00584239 0.0374362 -0.00493399 +0.0435663 0.0408867 0.018056 +-0.0206234 0.0950485 -0.0308006 +-0.0216102 0.0408331 -0.028871 +-0.0256808 0.0663835 0.041558 +0.0103698 0.0351865 0.034574 +0.0249548 0.0809223 0.0484627 +-0.0551501 0.0641879 0.0328568 +-0.0633147 0.132484 0.0400888 +-0.062948 0.163113 -0.0275941 +-0.0620302 0.141028 0.0366839 +-0.0484797 0.126826 0.0298997 +0.00950548 0.107102 0.041296 +0.0390056 0.0914413 0.0336848 +0.0300323 0.108764 0.0348296 +-0.0198832 0.0335337 -0.0251748 +0.0128315 0.0391361 0.0445812 +-0.0263531 0.11244 -0.0170322 +0.0359611 0.109622 -0.00183337 +-0.0572001 0.0380562 0.0469117 +0.00550248 0.121034 0.0357708 +-0.0667821 0.14845 -0.031825 +-0.016957 0.186039 -0.0193264 +-0.0878947 0.131105 0.044958 +0.0363312 0.107346 0.0280412 +-0.0614985 0.0833224 0.0439406 +0.0542552 0.0478973 0.00920996 +-0.0787615 0.0867217 -0.0105634 +0.0226207 0.0360088 0.0127544 +0.00886878 0.0343168 0.00225753 +-0.0266191 0.0618553 -0.0304537 +-0.00302574 0.0387303 0.00142158 +-0.019905 0.038668 0.0324503 +0.0527798 0.0683653 0.00150186 +0.021964 0.0402022 -0.00870612 +-0.0126432 0.0481635 -0.0303259 +-0.0124951 0.0925417 0.056096 +-0.0373842 0.0433946 0.0425967 +0.0243858 0.124139 0.00725423 +-0.0540808 0.0434992 0.0186914 +-0.0590026 0.0609591 0.0242669 +-0.0846496 0.129332 -0.00265191 +0.0108129 0.0887938 0.0544498 +-0.0599027 0.106882 -0.0174092 +0.0235199 0.123889 0.00267512 +-0.0364958 0.116629 0.0319219 +-0.0274016 0.0386836 -0.0145853 +0.0575354 0.0620414 0.00218896 +-0.0617076 0.156842 -0.0315932 +-0.0566848 0.0344893 0.0422998 +-0.0515556 0.0459336 -0.00836292 +0.034036 0.037677 0.020853 +0.0440634 0.064827 -0.000963389 +-0.0783551 0.090033 0.0367591 +-0.0451437 0.162134 -0.00879907 +-0.0870992 0.0913786 0.00345195 +-0.0896332 0.0983435 0.0144056 +0.00267954 0.131212 0.00494959 +-0.0521038 0.0531706 0.024633 +0.033292 0.0856433 -0.0187503 +-0.0284873 0.0606333 -0.0264114 +-0.0366237 0.123115 -0.00817194 +-0.0417568 0.0797359 -0.0197866 +-0.0466787 0.0650533 -0.0138917 +0.0360448 0.0392022 -6.35907e-05 +-0.0192403 0.0387115 -0.0129795 +0.0431391 0.098698 0.00317491 +-0.0224767 0.091498 -0.0352097 +0.0093588 0.0524416 -0.0295377 +-0.0833358 0.105954 0.0271122 +-0.0146006 0.127548 0.000963555 +0.0122907 0.0652688 -0.0305463 +-0.0515682 0.0488001 -0.00762593 +0.0214986 0.122612 0.0290301 +-0.0271235 0.11599 -0.0147668 +0.0381316 0.109734 0.0151646 +-0.00681664 0.0854791 -0.0376549 +-0.0147515 0.07145 -0.0385454 +-0.0659657 0.129697 -0.00887578 +0.0359834 0.11203 0.00292702 +-0.0631298 0.144906 -0.0101196 +0.00903132 0.0343268 -0.014573 +-0.0348704 0.101474 -0.022105 +-0.0693077 0.0614952 0.0145437 +0.0349262 0.0896582 -0.0169179 +-0.037886 0.109925 -0.0191545 +-0.0372775 0.0472266 -0.0193178 +0.0112393 0.0349033 0.0350041 +0.0430009 0.0705508 -0.00279727 +0.0400623 0.0956447 -0.00679711 +-0.0676126 0.155322 0.00651001 +0.0598737 0.0581052 0.00916393 +-0.061495 0.100138 0.0425963 +-0.0575075 0.0435504 0.0160321 +0.0228298 0.0827896 -0.0258286 +-0.0115004 0.0925527 0.0561224 +-0.0223058 0.184466 -0.0180708 +-0.0624348 0.161527 -0.0435948 +-0.0143997 0.0383922 -0.000568703 +-0.0793362 0.0881239 -0.0095476 +-0.0548971 0.10981 -0.018029 +-0.0707512 0.156365 0.0199172 +0.0244407 0.0405616 0.0372831 +-0.0545055 0.113958 0.0351234 +-0.00749363 0.0547355 0.05304 +0.044284 0.0819099 0.0251484 +0.0117499 0.0519912 0.0501875 +-0.0706809 0.109318 0.0378585 +-0.0640006 0.161566 -0.01976 +-0.0122192 0.0378665 0.050479 +-0.0715061 0.148353 0.0408514 +-0.0652549 0.0667307 0.0320259 +0.0162842 0.118981 -0.0122323 +-0.0584978 0.0959813 0.0440843 +-0.0261553 0.169713 -0.0187023 +0.0163086 0.108997 -0.0174538 +0.019812 0.035154 0.0274956 +0.0403843 0.0547484 -0.00641578 +-0.0370524 0.128064 0.00917633 +-0.0181528 0.0388364 -0.0128782 +-0.0703699 0.144073 -0.0154773 +-0.0821317 0.15265 0.0057634 +-0.0121975 0.182647 -0.0286755 +-0.0179487 0.126229 0.0234428 +-0.0713342 0.065071 0.0216423 +-0.0135059 0.0357879 0.0504712 +-0.0551243 0.0482803 0.0389113 +-0.043841 0.0970933 -0.0219235 +0.0307935 0.0619124 0.0409121 +-0.0872404 0.149912 0.0282765 +-0.0777833 0.0694772 0.0182331 +-0.0479563 0.0699321 0.0400053 +-0.0325179 0.0704032 0.0404934 +-0.04199 0.0336868 -0.0166047 +0.00497409 0.0340864 0.0145521 +-0.0449304 0.0643377 0.0396087 +-0.0778694 0.106226 -0.00738941 +-0.0126221 0.0389953 0.033657 +-0.0632121 0.172304 -0.0615699 +-0.0276205 0.0874255 -0.0346253 +-0.0625254 0.138119 0.0359126 +0.00425284 0.0711834 -0.0342035 +-0.0788838 0.153282 0.0303949 +0.00652169 0.0362747 0.0255863 +-0.0662316 0.0345008 0.0140489 +-0.02106 0.174206 -0.0148174 +0.0185004 0.109841 0.0391791 +-0.0646081 0.0450546 0.000685835 +-0.0136021 0.0363077 -0.0261392 +-9.29522e-05 0.131467 0.0096514 +-0.0451771 0.128971 0.00184527 +0.00750493 0.0561002 0.0528313 +0.0361319 0.074097 0.0381795 +0.022807 0.125614 0.0138049 +-0.0196774 0.0509888 -0.0303435 +-0.0930693 0.120128 0.0262942 +-0.0230193 0.120798 -0.0098328 +-0.0271496 0.0384219 0.0311819 +-0.0748224 0.0935599 -0.014192 +-0.0354943 0.119369 0.0303337 +0.060906 0.0609648 0.0111554 +0.0112135 0.130703 0.0137986 +-0.0266186 0.0589226 0.0382515 +0.0218458 0.0672628 0.0473581 +0.00922858 0.116392 0.0380826 +-0.0579872 0.0576809 0.00662705 +-0.0151861 0.168246 -0.0215615 +0.0431809 0.0791159 0.0272636 +-0.0755673 0.0727762 -0.00660131 +0.0242315 0.0818412 -0.0251267 +-0.0250124 0.0782139 0.0518051 +-0.0338224 0.0338142 0.00692539 +-0.00946746 0.0362215 -0.025425 +-0.0416936 0.0652006 -0.0145392 +-0.0546754 0.0335075 0.00116676 +-0.0233106 0.15969 -0.00223977 +-0.0842752 0.141807 0.00320102 +-0.0818378 0.131303 0.0516681 +-0.0234556 0.161598 -0.0145283 +-0.0499699 0.150693 0.011804 +-0.010495 0.0471724 0.0477907 +0.0380379 0.075373 0.0356471 +-0.0450739 0.0363473 0.0448052 +-0.0737333 0.15548 -0.0259091 +-0.0716137 0.178389 -0.0484 +-0.0384987 0.0691035 0.0417776 +0.00141943 0.122927 0.0347542 +-0.057332 0.137224 -0.00518105 +-0.0557698 0.136063 -0.00393718 +0.0558337 0.0494217 0.00919997 +-0.0580135 0.04944 0.00163802 +-0.0357372 0.111668 -0.0181975 +-0.0550044 0.145721 -0.00143834 +0.00110225 0.0344701 0.00796988 +-0.0157589 0.038402 0.00281447 +-0.0521458 0.121812 -0.0107191 +-0.00850406 0.11834 0.0382239 +-0.0498654 0.102788 -0.0210486 +-0.0630574 0.15313 -0.033029 +-0.0734528 0.143001 -0.00787011 +-0.0577717 0.0334512 -0.00484461 +-0.0926703 0.124234 0.0402542 +-0.0236253 0.0450591 -0.0281331 +0.0444641 0.0686626 0.00115575 +-0.0394989 0.0620307 0.0413298 +-0.0489043 0.0531988 0.0353928 +-0.0549375 0.140991 0.0293007 +0.0134789 0.100443 0.0476777 +0.0344381 0.102088 0.0341795 +-0.0629237 0.112473 -0.0138486 +0.0456048 0.0918125 0.0071715 +-0.0679688 0.135528 -0.00836676 +-0.0561131 0.145329 0.0311927 +0.0222077 0.0403059 0.0403109 +-0.0930104 0.131018 0.0202297 +-0.073597 0.161047 -0.0349306 +-0.073142 0.0762988 0.0362199 +-0.0868887 0.102318 0.0233696 +-0.074876 0.107788 -0.00905848 +-0.061968 0.159998 -0.0366167 +0.0234524 0.0505688 0.0407158 +-0.0374809 0.113893 0.0340704 +-0.052457 0.144675 0.0183665 +0.000496502 0.103028 0.0440499 +-0.0107515 0.039289 0.0373765 +0.0177346 0.123618 -0.0052308 +-0.0278908 0.0903405 -0.0316075 +0.0555538 0.0665692 0.0013688 +-0.0679616 0.181138 -0.0572245 +-0.0246921 0.156571 -0.00408158 +-0.0295045 0.112518 0.0356692 +-0.0523224 0.146252 0.0184018 +-0.0831779 0.111548 0.00129095 +0.0381693 0.109765 0.0141664 +-0.0465876 0.132486 0.00741919 +0.0351546 0.112861 0.0227039 +0.00752051 0.0855871 0.0562726 +-0.0236256 0.0464233 -0.0274769 +-0.0820555 0.138062 0.0474469 +-0.0332203 0.171246 -0.00251328 +-0.0471051 0.157621 -0.00763511 +-0.0883909 0.0874867 0.0154625 +-0.0769362 0.0914256 0.0381174 +-0.075265 0.148568 -0.0158698 +0.015355 0.119233 -0.0124997 +-0.0073165 0.13056 0.0112981 +-0.0167502 0.070002 -0.0383082 +-0.0672167 0.147775 -0.0296135 +0.00424945 0.126892 0.0299609 +0.0188897 0.120837 -0.00821554 +-0.0628446 0.0334683 -0.00588606 +0.0333858 0.103442 0.0343819 +-0.0748011 0.0878022 -0.0147955 +0.00250445 0.0519435 0.0530423 +-0.0565994 0.0548437 -0.000400453 +-0.0657591 0.0794867 -0.0178324 +-0.0893947 0.113204 0.00833335 +0.00550466 0.122397 0.0349805 +-0.0593516 0.0471429 0.038917 +-0.0691412 0.109612 0.0381472 +0.012166 0.127075 0.0284779 +0.00215147 0.0340847 -0.0194818 +-0.0357383 0.152143 0.000762654 +-0.0225608 0.0608496 0.0442445 +-0.00675345 0.0727271 -0.0364938 +-0.0504985 0.0776737 0.0437561 +0.012653 0.128571 8.59956e-05 +-0.0775017 0.148428 0.039927 +0.0194833 0.0961991 0.0471957 +-0.00134544 0.0999407 0.0490888 +-0.00745251 0.100521 0.0469096 +0.0293349 0.108769 0.0355782 +-0.0628076 0.0881622 -0.0190458 +0.0438908 0.0973298 0.0041758 +-0.0618594 0.154827 0.00385225 +0.0224603 0.0878572 0.0487762 +-0.0684419 0.0805248 0.0412962 +-0.0414824 0.0817867 0.0423837 +-0.0394972 0.0591632 0.0405173 +-0.0699138 0.0616664 0.0106715 +-0.0256486 0.050648 -0.0266189 +-0.0189668 0.125144 0.0245507 +-0.0548939 0.161294 0.00305835 +0.0593671 0.0566851 0.00917266 +-0.0619624 0.0371632 0.0192279 +-0.0458599 0.129594 0.0221735 +-0.078334 0.175787 -0.0461739 +-0.00822607 0.100046 0.0481626 +-0.0580744 0.136937 -0.00566118 +-0.0915979 0.115467 0.0229868 +0.0255167 0.123738 0.0133816 +-0.0331932 0.0348891 0.047012 +-0.076964 0.129602 -0.00711544 +-0.0598599 0.0358888 0.0454954 +0.0450831 0.0463904 0.0280485 +-0.0315243 0.0802674 0.0412906 +-0.0239631 0.11903 -0.0119726 +-0.0346068 0.0483825 -0.0183276 +-0.0825971 0.103328 -0.00360734 +-0.0887132 0.118572 0.00232339 +-0.0188128 0.082729 -0.0390748 +-0.0866936 0.0833424 0.0154842 +0.00371617 0.0348648 0.0208524 +0.0267042 0.122545 0.0181085 +-0.0738109 0.0935956 -0.0146814 +0.0287557 0.0348074 0.0132587 +-0.0344434 0.174206 -0.0015497 +-0.053794 0.086942 -0.0216962 +-0.0584166 0.126929 0.0401124 +-0.0837712 0.127162 0.0508887 +-0.0249431 0.0907384 -0.0344432 +-0.0817429 0.0748341 0.0165378 +-0.0709721 0.148372 0.0407622 +0.0453179 0.0861686 0.00320477 +-0.052904 0.159748 -0.00276649 +-0.0630387 0.15529 -0.0125891 +-0.0628558 0.170957 -0.0505963 +0.0198342 0.0408002 0.0424386 +0.0114164 0.0403794 -0.0231815 +-0.0270194 0.12568 0.0143315 +-0.0340325 0.126267 0.001455 +-0.0096483 0.171546 -0.0270746 +0.0461889 0.0792428 0.016179 +-0.0314795 0.0774889 0.0410863 +0.00441886 0.0361314 -0.0238164 +0.0140504 0.0379362 -0.0217239 +-0.0064667 0.128955 -0.000718006 +-0.00729042 0.0388645 0.0312728 +-0.0537922 0.14151 -0.001138 +-0.0843649 0.125772 0.0501053 +-0.0489003 0.033496 0.00596365 +-0.00972794 0.166651 -0.0186764 +-0.0537672 0.0812389 -0.0213883 +-0.0327797 0.0337757 0.0180041 +-0.0738907 0.107101 0.0373066 +0.0441357 0.0659575 -7.19207e-05 +-0.0929503 0.128215 0.0122521 +-0.0898716 0.133794 0.0302191 +-0.0643705 0.154697 0.0294695 +0.023375 0.0504685 -0.0225374 +-0.052801 0.0690675 0.0379843 +-0.0823518 0.0966615 0.0320686 +0.00650836 0.0813916 0.0558754 +0.0249135 0.0390596 0.0323329 +0.0422621 0.0746939 -0.00581448 +-0.0239734 0.0636045 0.0427616 +-0.0648684 0.0967433 -0.0176098 +-0.0661842 0.163921 -0.0584969 +-0.0338218 0.0886934 -0.0246941 +-0.0545067 0.102902 0.0418134 +-0.0298032 0.034287 0.0163531 +0.00993007 0.126906 -0.00476687 +-0.0376745 0.0379475 0.0444361 +-0.0658844 0.114191 0.045149 +0.0205436 0.121905 -0.00538746 +-0.0134808 0.108609 0.0426611 +-0.0484883 0.0960313 0.0444485 +-0.0326323 0.125019 -0.000941466 +-0.0254216 0.0999543 -0.0239282 +-0.0410688 0.11258 -0.017122 +-0.0434945 0.0676224 0.0409141 +0.0153651 0.0493118 -0.0259325 +0.00422707 0.0782528 -0.0345112 +0.0285181 0.0968051 -0.0184722 +-0.0597676 0.0796261 -0.0193897 +-0.0714963 0.118989 0.0533881 +-0.0566004 0.0335105 0.0169198 +-0.0880799 0.113511 0.0432934 +-0.0208348 0.0956185 -0.0294009 +-0.010501 0.0759377 0.0571751 +-0.0797391 0.110092 0.0425713 +0.0423965 0.0704871 -0.00480867 +-0.071352 0.110742 0.0439553 +-0.0617103 0.0604885 0.000571471 +-0.000492298 0.0605899 0.0560413 +-0.0819087 0.121685 0.0492514 +0.0133657 0.116504 -0.0155461 +-0.0035043 0.0589584 0.0540181 +-0.0700245 0.0833021 0.0413654 +0.0410401 0.0656705 0.029359 +-0.0623583 0.164673 -0.0485921 +0.027252 0.0549488 0.0409918 +-0.0568093 0.0883611 -0.0215879 +0.0409151 0.0390283 0.00994476 +0.0189976 0.0408013 0.0429893 +0.038497 0.0527286 0.031838 +-0.0436566 0.0592613 -0.0123074 +-0.0456035 0.0504974 -0.010193 +-0.0427107 0.0335694 -0.0203532 +-0.0107484 0.0348144 0.0431359 +0.0366972 0.106807 -0.00382741 +-0.0475 0.109814 0.0383224 +-0.0581584 0.0685383 0.037238 +-0.0888985 0.128369 0.0446279 +-0.0618211 0.164489 -0.0586698 +-0.0622151 0.166391 -0.0605094 +0.000668194 0.039196 0.03081 +-0.0494963 0.0974185 0.0440407 +-0.0327214 0.154341 -0.00788327 +0.00831584 0.0624371 -0.0312473 +-0.0441024 0.124581 0.0229348 +-0.00474585 0.0712867 -0.0359934 +-0.0211964 0.0725528 0.0524066 +0.0440002 0.0888695 -0.00280666 +0.0083541 0.0524293 -0.0297113 +0.0104364 0.0472441 0.0475563 +0.0130443 0.113867 -0.0167218 +0.035717 0.0533288 0.0320909 +-0.0439793 0.169659 0.00035763 +-0.0261771 0.0395393 0.0541115 +0.0142627 0.0751304 -0.0300927 +0.0172008 0.0849074 -0.0286671 +-0.0301348 0.156065 -0.00950629 +0.0153602 0.0672491 0.0520407 +0.038354 0.0547461 -0.00609927 +0.0326073 0.112448 0.0288842 +-0.0230436 0.0879523 0.0537722 +-0.0507107 0.0708743 -0.0151986 +0.00170937 0.0361659 0.0210822 +-0.0106905 0.18126 -0.0286694 +-0.0543257 0.121248 0.0372193 +-0.086895 0.143263 0.0379805 +-0.0300853 0.179019 -0.00589649 +-0.0624495 0.15591 0.022857 +-0.0597659 0.0448149 0.0126042 +0.00226448 0.0346925 0.0189009 +0.00270214 0.10527 -0.0214784 +-0.0843731 0.110309 0.0377873 +-0.0603328 0.153535 0.00105643 +-0.00601124 0.0348376 0.0423067 +-0.0419337 0.160883 0.00416203 +0.025639 0.0740461 0.0458389 +-0.0724467 0.0361675 0.00255211 +-0.0515329 0.0431219 -0.00982617 +-0.0668209 0.036036 0.0339126 +0.0328708 0.0740673 0.0404957 +0.0429413 0.0682748 0.0268013 +-0.0687158 0.171626 -0.0372714 +0.0231488 0.116662 0.0336476 +0.0322304 0.0505255 0.0340589 +-0.0869233 0.112018 0.0232463 +-0.078057 0.0907599 -0.0115869 +-0.0538087 0.119788 0.0361741 +0.00650273 0.121045 0.0359095 +-0.00425882 0.128035 0.0283342 +-0.0558184 0.158024 -0.000144968 +-0.0699106 0.10657 -0.0124287 +0.0101685 0.124401 -0.00806495 +-0.0774125 0.06897 0.0169693 +-0.0204069 0.09844 -0.0243451 +-0.0678094 0.180556 -0.0587896 +-0.0490427 0.0341369 0.0285626 +-0.0112286 0.0338605 -0.0218986 +0.0300773 0.0754873 0.0435133 +0.00030024 0.0612559 -0.033673 +0.000950727 0.129943 0.000110463 +-0.083524 0.154076 0.0213615 +-0.0688604 0.0819375 0.0416515 +-0.0674926 0.0889102 0.043735 +-0.000658033 0.0525337 -0.0307361 +-0.0805064 0.103384 0.0314383 +-0.0596514 0.142474 0.0348633 +-0.00849673 0.105867 0.0437425 +-0.0317522 0.0735748 -0.0285005 +0.0171692 0.0345228 -0.00186568 +-0.0229141 0.111944 -0.0185359 +-0.00375332 0.07411 -0.0361467 +-0.00849121 0.103027 0.0437022 +-0.0323725 0.16532 -0.00484492 +0.0250885 0.119458 -0.00473925 +0.00228893 0.0341509 0.0103163 +0.03989 0.0630598 0.0312004 +-0.0146968 0.175692 -0.019662 +-0.00218576 0.0355897 -0.0160761 +0.0318792 0.0686784 0.0407831 +-0.0783091 0.16249 -0.0249404 +-0.0807007 0.0752735 0.0231846 +-0.00686818 0.0385321 0.0081342 +-0.0114932 0.036278 -0.0256312 +-0.076524 0.178854 -0.050295 +-0.093475 0.1283 0.0242551 +-0.063929 0.0354009 0.0416662 +-0.064733 0.15377 0.0322824 +0.0293628 0.105677 -0.0139766 +-0.0544684 0.119419 -0.0121872 +-0.0878486 0.143233 0.0360974 +-0.0866257 0.081991 0.0115028 +0.0324736 0.0490215 0.0326282 +-0.0472578 0.121113 0.0280085 +0.0275416 0.0349624 0.00541796 +-0.0827616 0.091206 0.0312465 +-0.0627318 0.159944 -0.0435973 +0.0444941 0.0637658 0.0284543 +0.0512305 0.0723962 0.00737259 +-0.0374845 0.100078 0.0419234 +0.00446502 0.0977292 0.050995 +-0.090055 0.132436 0.0352224 +-0.0771832 0.107237 0.0346968 +0.0132863 0.0695708 -0.0313558 +-0.0833513 0.099287 0.0301656 +-0.050588 0.0599426 0.0326193 +-0.0116999 0.0599414 -0.0352829 +-0.0629554 0.156782 -0.0386059 +0.0452979 0.0875774 0.0181674 +0.0367705 0.074074 0.0373409 +-0.0378297 0.12794 0.00447467 +0.000472166 0.0388678 0.0256446 +0.00293826 0.0356401 -0.0151121 +0.0194959 0.11257 0.0373879 +0.0178674 0.103889 -0.0200126 +-0.0197782 0.075693 -0.0390468 +-0.0162539 0.171251 -0.016682 +-0.0719027 0.156807 -0.0389123 +-0.0816716 0.0734987 0.0125379 +0.00248698 0.0399628 0.0461692 +-0.0118767 0.105907 -0.0227385 +-0.0633264 0.159631 -0.0180726 +-0.0147126 0.0384481 0.00298688 +-0.0598094 0.0896854 -0.0200419 +-0.0586861 0.0603162 0.0231261 +-0.0518133 0.0531756 0.0296409 +-0.0201151 0.123178 -0.00639815 +-0.0197736 0.0998405 0.0442778 +-0.00649912 0.118331 0.038456 +-0.0868133 0.0846987 0.0154763 +-0.0052065 0.0389581 0.0316148 +-0.0886495 0.113065 0.0417436 +0.0045077 0.107168 0.0418669 +-0.0635616 0.174109 -0.0525858 +-0.0657828 0.082373 -0.0185031 +0.00281465 0.0379685 -0.0135285 +-0.0863919 0.099468 0.00241821 +0.0544797 0.0539552 0.0258897 +-0.0865727 0.08823 0.0252282 +-0.0778042 0.156927 -0.0169128 +-0.00349196 0.114194 0.0413026 +-0.0523232 0.13528 0.029621 +0.0359531 0.0673443 0.0378699 +0.0103588 0.130588 0.0191927 +0.0383356 0.10264 -0.0058258 +-0.0906686 0.139207 0.0161786 +-0.0534974 0.0876167 0.045276 +-0.0609918 0.138116 0.0346365 +-0.010493 0.114167 0.0405696 +-0.0260866 0.0349169 0.0485155 +-0.0519529 0.0531525 0.0236322 +-0.0670544 0.153567 -0.0495044 +-0.000486159 0.0689333 0.056515 +-0.034827 0.0929417 -0.0239227 +0.0157074 0.0821031 0.0526782 +-0.0185046 0.116829 0.0366774 +-0.0357116 0.0358916 0.0155029 +-0.0711005 0.148774 -0.0369587 +-0.0146296 0.185817 -0.0244743 +-0.0871678 0.11039 0.0183619 +-0.0897192 0.129664 0.0425949 +-0.0278047 0.074956 0.0433932 +-0.0408028 0.033851 -0.0276993 +-0.0260362 0.165356 -0.00798775 +-0.022832 0.0348259 0.0458328 +-0.0327846 0.0346162 0.0403814 +0.0292084 0.0350186 0.0149853 +-0.0908558 0.14471 0.0151666 +-0.0389013 0.0336802 -0.0215651 +-0.00950572 0.0590791 0.0548422 +-0.0252687 0.0931263 -0.0308668 +0.00727173 0.0667978 -0.0321541 +-0.0478216 0.109884 -0.018362 +0.00164525 0.0348132 0.00406568 +0.0377191 0.0632143 0.0350986 +-0.0468821 0.108426 -0.0186436 +0.0252001 0.0818001 -0.0245703 +0.00238035 0.127411 0.0292755 +0.0255053 0.103245 -0.0173339 +0.011492 0.0445292 0.0444785 +0.0458991 0.0414061 0.011234 +-0.0302302 0.0537755 -0.0183734 +-0.0870355 0.111737 0.0342553 +0.0298569 0.0835122 0.0432289 +0.0344154 0.0409101 0.0271225 +0.00697892 0.131225 0.0065571 +0.0443985 0.0748779 -0.000803542 +-0.0703751 0.112557 0.0480687 +0.0398576 0.101362 0.0261824 +-0.0146217 0.0450296 -0.0279689 +0.0305372 0.0592022 0.0405121 +-0.0427308 0.169809 0.000879537 +-0.00260639 0.0419888 -0.0252454 +0.000821596 0.0412233 0.0465397 +0.0447686 0.0889311 -0.000811854 +-0.00992934 0.166943 -0.0180552 +-0.0743075 0.170773 -0.046055 +-0.0564797 0.0356812 -0.0108166 +0.0302902 0.078207 0.0438447 +-0.0601407 0.0410386 0.0173224 +-0.0404944 0.0478337 -0.0126145 +-0.00989846 0.0384846 0.0238656 +-0.0338875 0.0780022 -0.0265044 +-0.0309197 0.0805646 -0.0325792 +-0.0788495 0.1177 0.0505094 +0.00204515 0.0345955 -0.0162029 +-0.0115453 0.0445033 0.0495732 +-0.048476 0.116631 0.0320328 +-0.0121876 0.113225 -0.0179296 +-0.0193167 0.0754023 0.0546877 +-0.0653246 0.0648097 0.0284194 +-0.0417336 0.0739469 -0.0182277 +0.0129121 0.0806948 0.0538726 +-0.087913 0.0900756 0.00446758 +-0.0459794 0.167363 0.00259136 +-0.00407632 0.124795 0.032822 +0.00214512 0.131665 0.0104804 +-0.0242177 0.0387671 0.0542484 +-0.0864391 0.131188 0.0477462 +0.0208043 0.12624 0.020186 +-0.0682771 0.163789 -0.0539724 +-0.0225729 0.172715 -0.0135004 +-0.0434823 0.12913 0.00531313 +-0.0465355 0.0790498 0.0431447 +0.0415243 0.0623608 0.0290336 +0.0206713 0.0868458 -0.0260413 +-0.0616015 0.0614498 -0.00273471 +-0.0698033 0.087974 -0.016854 +0.00908719 0.0358267 -0.00842564 +-0.0333922 0.068118 -0.0184774 +-0.0820819 0.150001 0.0344048 +0.0348029 0.113058 0.00110003 +-0.00477205 0.0345951 0.0445699 +-0.0740526 0.172196 -0.0480444 +-0.0192069 0.125855 0.0229991 +-0.0404977 0.0520197 0.0394004 +-0.0367886 0.156481 -0.0105439 +-0.0531367 0.0490718 0.026657 +0.015473 0.0962531 0.0481291 +-0.0492612 0.115146 -0.0157671 +0.0536465 0.0728799 0.00890065 +-0.0263571 0.0549776 0.0383278 +0.0333229 0.0997779 -0.013667 +-0.0551968 0.138069 -0.00309725 +-0.0563111 0.122698 0.0396267 +-0.02088 0.107273 -0.0222055 +0.000924532 0.100829 -0.0227814 +-0.0907853 0.117276 0.00630342 +-0.0134985 0.11551 0.0389419 +-0.0921826 0.114725 0.0193089 +-0.0218136 0.116051 -0.0148581 +-0.0915139 0.140599 0.0171878 +-0.0723659 0.100858 0.0389128 +-0.0227439 0.0669905 -0.0360641 +0.0133914 0.0448806 -0.0247967 +-0.0334245 0.0346344 0.0419763 +-0.083931 0.103265 0.0277985 +-0.0172469 0.116672 -0.0155678 +0.0141307 0.108667 -0.0183815 +-0.0676215 0.0688155 -0.00772966 +-0.049646 0.138599 0.0173958 +-0.0836562 0.0966099 0.0305537 +-0.0662913 0.165749 -0.0234747 +0.0434836 0.0734019 -0.00279222 +-0.0672802 0.0405919 -0.00423161 +-0.0468922 0.0334761 -0.010008 +-0.00688399 0.107372 -0.022762 +-0.0471129 0.13404 0.0104021 +-0.0613177 0.0470312 0.00669678 +-0.0857102 0.0912822 0.000468321 +-0.0564836 0.0589584 -0.00242578 +-0.0544716 0.0607811 0.0269495 +0.0392359 0.0685928 0.0338195 +-0.0907738 0.125596 0.0437739 +-0.0123469 0.0383491 0.0216787 +-0.00750765 0.123161 -0.01054 +0.0441233 0.0959295 0.00318315 +0.0262791 0.0675449 -0.0231801 +-0.0432671 0.0465873 -0.0113888 +0.00633058 0.0567988 -0.0308016 +-0.0135852 0.123715 -0.00700086 +-0.00140945 0.12836 0.0278943 +-0.0283882 0.0380697 -0.0179434 +0.0478387 0.0734572 0.0126134 +0.0038745 0.0367677 -0.0140867 +-0.05057 0.0335281 0.00739754 +0.036728 0.111857 0.010401 +-0.00844614 0.128164 -0.00189615 +-0.0247501 0.0578943 0.0408638 +-0.0467618 0.0657183 0.0385512 +0.038544 0.0726461 0.034619 +-0.00748755 0.111393 0.0423782 +-0.0658988 0.116581 -0.00961273 +-0.0415297 0.118854 -0.0137293 +-0.062219 0.164671 -0.0505894 +-0.00870995 0.128748 0.0252759 +-0.0315128 0.115295 0.0334421 +0.0503991 0.0466746 0.0233055 +-0.0753594 0.113961 -0.00568407 +-0.0866603 0.10494 0.00737931 +-0.0457163 0.0345386 0.0341935 +-0.0466235 0.0548092 -0.0105711 +-0.0516722 0.0693248 0.037985 +-0.0826957 0.0898386 0.0312187 +-0.0154881 0.0758696 0.0561745 +-0.0518084 0.0913012 -0.0220555 +-0.0751346 0.145812 -0.00886348 +-0.0732189 0.155097 0.0278276 +-0.0127272 0.0348945 -0.0256797 +-0.0698308 0.071946 0.0353261 +-0.0657288 0.163321 -0.0189522 +-0.0464914 0.08757 0.0446532 +0.0296359 0.112746 0.0324848 +0.0275411 0.044881 0.0360262 +-0.0187772 0.186086 -0.0166294 +-0.0884282 0.0874635 0.00747939 +0.0325508 0.115423 -0.000329209 +-0.0410423 0.0336551 0.000178151 +-0.0638018 0.0632948 0.0265284 +-0.0224569 0.0524128 0.0435307 +0.057327 0.0700157 0.00587175 +0.0345611 0.0740948 0.0394254 +-0.0409173 0.0351021 0.0417247 +-0.0742127 0.154103 -0.0229066 +-0.0824094 0.151775 0.0307901 +-0.0803828 0.11899 0.049226 +-0.010458 0.0953808 -0.0330949 +-0.0630414 0.149018 -0.0195802 +-0.0293211 0.123712 0.0208659 +-0.0231795 0.0622145 0.0434152 +-0.0287301 0.172704 -0.00834509 +0.00364827 0.128043 -0.00393793 +-0.0642706 0.166732 -0.060237 +-0.0108397 0.175678 -0.0290324 +0.0244048 0.112688 0.0354614 +-0.047561 0.0361661 -0.0123414 +-0.0534987 0.0427392 0.045857 +-0.0231257 0.165273 -0.0171671 +0.0388181 0.104067 -0.00210374 +-0.0356652 0.156121 -0.0104266 +-0.072524 0.106883 0.0374001 +-0.0331471 0.172636 -0.0149853 +0.040265 0.0391745 0.017119 +-0.0342456 0.0708723 -0.0195447 +-0.0687416 0.11428 0.0497375 +-0.0559525 0.0473442 0.0115659 +-0.0244817 0.107102 0.0411704 +-0.00571075 0.0627939 -0.0354611 +0.00805559 0.124767 0.0327601 +-0.0144892 0.0800879 0.0568709 +-0.0444848 0.0775765 0.0423436 +-0.063261 0.129725 0.0418859 +0.0349031 0.111324 -0.00180439 +0.00654043 0.0954774 -0.0291051 +-0.0290961 0.0410008 0.0527549 +-0.0234218 0.0738847 0.0503501 +-0.0567453 0.0342237 0.02862 +0.0376516 0.0425419 0.0281451 +0.0336732 0.115326 0.0207292 +-0.0174938 0.122238 0.0311921 +-0.073145 0.152886 0.0338966 +0.0392908 0.0660103 -0.00977956 +-0.0671096 0.125666 0.0504247 +-0.0815589 0.10988 0.0387619 +-0.00472043 0.0655745 -0.0349603 +-0.0584923 0.0818911 0.043717 +0.0395145 0.0415874 0.025748 +-0.0134628 0.0989564 0.047529 +-0.086226 0.143316 0.0387173 +-0.0675131 0.145595 0.0418048 +-0.0142233 0.174199 -0.0261217 +-0.0564238 0.0718073 0.0399857 +-0.0748487 0.0664559 0.00653551 +0.0254329 0.0835701 0.0474102 +-0.0735012 0.145587 0.0437725 +-0.0684894 0.104161 0.0391613 +0.046334 0.0533506 -0.00578803 +0.0111342 0.034487 -0.019828 +-0.0362745 0.033679 0.00474125 +-0.0580289 0.129633 -0.0066561 +-0.0674348 0.171149 -0.0382253 +0.0172278 0.0353072 0.0394845 +0.0290523 0.120756 0.00899975 +-0.0788357 0.148682 -0.00186858 +-0.0257486 0.0365571 0.0540093 +-0.076603 0.120411 0.0526033 +-0.0107827 0.0784509 -0.0379132 +-0.0283013 0.0648191 -0.0294785 +-0.0318386 0.0929851 -0.0242124 +-0.0504991 0.156412 0.0101915 +0.0435836 0.0722927 0.0259867 +0.0187342 0.112585 -0.0153321 +-0.0434831 0.0762058 0.0427502 +-0.00415334 0.0367895 0.0481682 +-0.0469304 0.116649 -0.0154073 +-0.0434764 0.0335212 0.0034233 +-0.0527322 0.0723715 -0.0160877 +-0.0593593 0.0651443 0.0328932 +-0.05784 0.0926528 -0.0211082 +-0.07134 0.156839 -0.0007386 +-0.000856246 0.103081 -0.0226647 +-0.000582144 0.0347482 -0.0236897 +-0.0384944 0.0464446 0.0402202 +0.0567142 0.0522491 0.00518691 +-0.0616825 0.0346164 0.0411183 +0.00851655 0.0758606 0.0561295 +0.0196258 0.127091 0.0083394 +-0.0719446 0.159605 -0.0399328 +-0.0356475 0.0379034 -0.0136529 +0.0172444 0.125917 0.0260258 +0.0094903 0.116849 0.0377607 +0.0232634 0.124781 0.0210949 +-0.0349607 0.125018 0.0217662 +0.0185443 0.12732 0.00510228 +0.0118903 0.0349087 0.0279111 +-0.00450764 0.0842735 0.0572857 +-0.0148777 0.0364156 0.0513074 +-0.0861402 0.0859086 0.000475654 +-0.0472303 0.164057 -0.00679428 +0.010042 0.0970288 -0.0247384 +0.0134328 0.0846923 0.0528905 +0.0456558 0.0449086 0.0258493 +-0.00349992 0.0746709 0.0587938 +-0.0719223 0.112846 0.049279 +-0.0117304 0.0670858 -0.0365895 +-0.0107336 0.0670714 -0.0363227 +0.0281295 0.110111 0.0355841 +0.00524969 0.0395071 0.0332712 +-0.030417 0.0360576 0.0517185 +-0.0191865 0.172705 -0.0222871 +0.032634 0.0954843 -0.0150589 +-0.0901468 0.129651 0.0415795 +0.015143 0.0346779 0.0251566 +-0.0926446 0.122835 0.02928 +-0.0735699 0.131215 0.0516643 +-0.0342826 0.126777 0.01609 +0.00752119 0.0813632 0.0555605 +-0.0325031 0.116645 0.0321616 +0.0237641 0.0349876 0.0120857 +-0.0592101 0.142401 0.0336275 +0.0449966 0.0931749 0.00418165 +0.0373285 0.0874946 0.0364747 +0.0175277 0.0348888 -0.0135142 +0.0451983 0.0889806 0.0171667 +0.0123957 0.0434077 -0.0245497 +-0.0759299 0.126701 -0.00794305 +-0.0895421 0.090213 0.0124508 +0.0392717 0.0938049 -0.00924672 +-0.087269 0.112677 0.0244432 +0.0369017 0.0770479 -0.0128074 +-0.019615 0.127443 0.00679651 +-0.058632 0.131139 0.0380532 +-0.0759599 0.0675387 0.00855626 +-0.0867924 0.139107 0.00519652 +-0.051888 0.0528335 0.0130005 +-0.0604943 0.108372 0.0386396 +-0.0620497 0.155563 0.0244621 +-0.0414999 0.0690877 0.0417125 +-0.000194321 0.121911 -0.011267 +0.0260147 0.0563895 0.0427437 +-0.00627779 0.0395112 0.048561 +0.0073902 0.0433817 -0.0245369 +0.00650458 0.105723 0.0419107 +-0.0890324 0.144705 0.01118 +0.0241216 0.0968854 0.045587 +-0.0284948 0.111359 -0.0178892 +-0.0842319 0.104575 0.0266516 +-0.0575865 0.0586919 0.0194779 +-0.0281815 0.125725 0.0109634 +-0.0638193 0.158306 -0.0465978 +-0.0355455 0.11407 -0.0167228 +-0.0683421 0.111385 0.0423299 +-0.0144529 0.178665 -0.0210547 +-0.00977952 0.0372711 0.0498001 +-0.0625714 0.164724 -0.0395894 +-0.088699 0.0915828 0.0224195 +-0.0594754 0.144099 -0.00268098 +-0.0925679 0.116061 0.0213084 +-0.0317212 0.0350332 0.0489115 +-0.0106525 0.165176 -0.016643 +0.00734712 0.12316 -0.0106668 +-0.0554936 0.104327 0.041387 +0.00250176 0.0620246 0.0566613 +-0.00947595 0.130265 0.0133884 +0.0276842 0.0768145 0.0453329 +0.00629218 0.0639808 -0.0323017 +0.00798329 0.130466 0.00265255 +0.0573764 0.0621793 0.0248727 +-0.0628961 0.158419 -0.0175871 +-0.0639761 0.129691 -0.00851425 +-0.0630898 0.161515 -0.0224551 +-0.0838815 0.111187 0.0425305 +0.0464938 0.0778639 0.0121785 +-0.0265128 0.116639 0.0325108 +-0.0545075 0.047347 0.012948 +-0.0677458 0.149084 -0.0355035 +-0.0687437 0.173038 -0.0415702 +-0.0258142 0.0389536 0.0363636 +0.0354622 0.0808406 0.0390375 +-0.028407 0.156859 -0.0100656 +-0.0728523 0.100773 -0.0133449 +-0.000973441 0.0353569 0.0464761 +0.0217031 0.104101 -0.0182402 +-0.0900893 0.135135 0.0242145 +-0.0209098 0.0382599 0.00734769 +-0.0384975 0.0676842 0.0417259 +0.0505086 0.0461176 0.0032623 +-0.0324927 0.0932098 0.0444316 +-0.029469 0.17882 -0.00554327 +-0.0770271 0.0743283 0.0300122 +0.0313581 0.116535 0.0255569 +-0.0772285 0.173502 -0.0405421 +0.0114915 0.130592 0.00962923 +-0.0739058 0.125263 -0.00826143 +-0.0709356 0.0780686 0.0386829 +-0.0450603 0.156487 0.00667449 +-0.00258285 0.0361873 -0.0247048 +-0.00135222 0.101336 0.0444015 +-0.0894746 0.139279 0.0281819 +-0.00967152 0.0968708 -0.0306358 +-0.0704928 0.117562 0.0527864 +-0.0678494 0.155094 0.00351036 +-0.0752747 0.175704 -0.0425921 +-0.032145 0.0863362 -0.0265533 +-0.0345086 0.0775176 0.0416541 +0.0409071 0.0711839 0.0309718 +0.0182107 0.084868 -0.0280483 +0.037986 0.0861315 0.0356473 +-0.0158582 0.107196 -0.0215252 +-0.0536497 0.0382495 -0.0113033 +0.0400088 0.107038 0.00721094 +-0.0111671 0.0867859 -0.0382994 +-0.0758579 0.0963896 -0.0129621 +0.00275941 0.0343655 0.0174794 +-0.0528912 0.109829 -0.018387 +0.0352142 0.037348 0.0177424 +-0.0770086 0.090082 0.0382275 +-0.0537852 0.0344427 0.037794 +-0.0317722 0.0335835 -0.0256749 +-0.0533077 0.12062 -0.0114531 +-0.0670377 0.155239 -0.0519345 +0.0248201 0.0343822 0.00913252 +-0.077345 0.0838842 -0.0115833 +0.0143045 0.0638067 -0.0299257 +-0.00129201 0.123843 -0.0093277 +0.0380905 0.0941294 0.0341306 +-0.0932985 0.125478 0.0122618 +-0.034118 0.163722 -0.0147399 +0.0298704 0.114081 0.0310466 +0.0255132 0.110081 0.0370706 +-0.0476672 0.0405803 -0.0117113 +-0.0472716 0.130968 0.0245047 +-0.0619845 0.128209 -0.0080954 +-0.0644855 0.0917771 0.0443552 +0.00846054 0.0341727 0.000449307 +0.000942621 0.0347668 0.0167534 +-0.0160225 0.0958165 -0.0315688 +-0.0534556 0.0353304 0.0456783 +0.0142349 0.129723 0.0106274 +-0.0726014 0.0365856 0.00586956 +0.033081 0.038417 0.0236373 +-0.0678588 0.128454 0.0493479 +0.0276968 0.0797349 -0.0226793 +0.0317217 0.0639399 -0.0186866 +-0.00482566 0.0896201 -0.0359284 +-0.0704978 0.124601 0.053003 +-0.00149487 0.115594 0.0408235 +-0.0360812 0.0358497 0.0136623 +-0.00514848 0.0385788 0.00662082 +-0.0791696 0.110508 0.0441428 +-0.0215028 0.0448835 0.0530162 +0.0173223 0.0699836 0.0514025 +0.0379734 0.0672941 0.0355158 +-0.0858805 0.0926571 0.00145452 +0.00396412 0.0977772 0.0510597 +-0.0656399 0.11715 0.0490043 +-0.0771179 0.165222 -0.035974 +-0.0198829 0.0383003 0.00206982 +-0.0187849 0.159551 -0.0109781 +-0.0655235 0.0347285 0.0315692 +0.0298088 0.0848631 0.0431899 +-0.0202144 0.186446 -0.0187314 +-0.0737921 0.165213 -0.0399888 +-0.0287531 0.0767493 -0.0350292 +-0.0108764 0.178532 -0.0297831 +0.00248459 0.114158 0.0410016 +0.0523216 0.0588453 -0.00357691 +-0.0424144 0.147803 0.00244515 +-0.0387777 0.0827042 -0.0213153 +-0.0338762 0.105703 -0.0205658 +-0.087924 0.1365 0.0420055 +-0.0747046 0.0837005 -0.0145969 +-0.0657521 0.033742 -0.00672308 +-0.045381 0.0381676 -0.0212668 +-0.0868004 0.0846768 0.00848321 +0.0294149 0.118962 0.0248216 +-0.034174 0.107559 -0.0198979 +0.0280502 0.0740858 0.0440821 +-0.0776167 0.0914005 0.037394 +0.0235133 0.0407023 0.0389233 +-0.0568656 0.102623 -0.018982 +-0.0678684 0.063022 0.000880975 +0.0360361 0.100737 0.0329764 +-0.0922724 0.125575 0.0332589 +-0.0929242 0.120168 0.0332909 +-0.018498 0.108568 0.0416031 +0.0174435 0.128281 0.0160914 +-0.0242219 0.178615 -0.0196227 +-0.0704096 0.163806 -0.0479588 +-0.0810819 0.0814326 -0.00557353 +-0.0595808 0.0380953 -0.00917151 +-0.00023307 0.0988811 0.0510016 +0.00703854 0.0344034 -0.0150394 +-0.092972 0.125468 0.0112596 +-0.00348845 0.115565 0.0406522 +-0.000499736 0.11143 0.0424297 +-0.00349598 0.0562185 0.05401 +0.0274875 0.0380349 0.0264602 +-0.0191507 0.168261 -0.0198644 +-0.0708777 0.131245 0.0502751 +-0.0591241 0.1154 0.0371963 +0.015252 0.122005 -0.00948865 +-0.0238533 0.0958019 -0.0255967 +-0.0225065 0.111294 0.03935 +0.0394335 0.0834241 0.0342316 +-0.0599597 0.121237 0.0413621 +-0.0151227 0.160977 -0.0122661 +-0.0856126 0.0792275 0.0145081 +-0.0304111 0.0336116 -0.02356 +-0.0300276 0.0875944 -0.030572 +-0.0387164 0.0695709 -0.0161311 +-0.0658849 0.153363 -0.0443952 +-0.0108819 0.168382 -0.0176467 +0.0450682 0.090383 0.0171641 +-0.0624967 0.149081 -0.013576 +-0.0222042 0.178612 -0.0212581 +0.0294982 0.120461 0.0105965 +-0.0414977 0.115265 0.0337662 +-0.0499421 0.135837 0.0234945 +-0.0843142 0.152356 0.00793113 +-0.0410616 0.156231 -0.0095971 +-0.0238697 0.104438 -0.0232028 +-0.0067213 0.065597 -0.0353344 +-0.0108037 0.0827117 -0.0384206 +0.0138699 0.049008 0.0461763 +0.016266 0.0750624 -0.0291952 +-0.0813824 0.099165 -0.00657823 +-0.0355882 0.126454 -0.000576513 +-0.0627783 0.0343233 0.0272634 +-0.0864194 0.133874 0.0462429 +-0.0424946 0.0972875 0.0422451 +-0.00875136 0.116762 -0.015718 +-0.00610573 0.035829 0.0485597 +-0.0634859 0.146784 0.0381458 +0.00949393 0.109876 0.0399119 +-0.0286135 0.0817842 -0.0355888 +-0.0785092 0.126003 0.0529555 +-0.0564526 0.0602802 -0.00348733 +-0.0632263 0.153648 -0.0346156 +-0.0212315 0.0839098 0.0563274 +-0.0185478 0.0382321 0.00966598 +-0.0629734 0.126755 -0.00855487 +-0.0607657 0.139716 -0.00595313 +-0.0192289 0.178619 -0.0235673 +-0.0154933 0.0730227 0.0553537 +0.0208153 0.0564412 0.0475406 +-0.0390833 0.0486663 -0.0122287 +-0.065493 0.153273 0.0335324 +0.0608914 0.0637395 0.0141606 +-0.0153829 0.18014 -0.0206255 +-0.0822314 0.0842513 -0.00555381 +-0.0678037 0.0880304 -0.0174902 +0.0361089 0.0577094 0.0344737 +-0.0464121 0.035458 -0.0187253 +-0.0666201 0.0338653 0.00919115 +-0.0674808 0.0688292 0.0332504 +-0.0659293 0.156005 0.0129201 +-0.0294246 0.0861745 0.0444819 +-0.0581309 0.155502 0.017154 +-0.0726537 0.15621 0.0148854 +-0.0168438 0.180138 -0.0192059 +-0.0656741 0.0356447 0.0159226 +0.0163545 0.0507599 -0.025927 +-0.0293383 0.123554 -0.00265044 +0.00679991 0.131589 0.0107583 +-0.0398245 0.0942915 -0.0229995 +-0.0945717 0.122812 0.0182725 +0.00440363 0.0390362 -0.0241943 +-0.0798195 0.105901 -0.00558882 +-0.0117856 0.0813065 -0.0386038 +0.00749342 0.0372096 -0.0118978 +-0.0744971 0.176396 -0.0436946 +-0.00968478 0.0584187 -0.0340646 +0.0312312 0.117425 0.00123717 +0.0184875 0.0976002 0.0470854 +-0.0716235 0.0693585 0.0301698 +0.039816 0.0393083 0.00327619 +-0.0835287 0.11032 0.027366 +-0.0245014 0.043543 0.0534366 +0.0370893 0.106835 -0.00283087 +-0.0567623 0.154944 0.0190948 +-0.0275761 0.125766 0.0126577 +-0.00827698 0.0408222 0.049207 +0.0553826 0.0699889 0.0228528 +0.012476 0.0976634 0.0485624 +0.0597169 0.0580863 0.0181825 +-0.0261346 0.168251 -0.00989215 +-0.0319337 0.0680008 -0.0224492 +-0.0367004 0.0680804 -0.0157124 +-0.0192371 0.0959207 0.0497533 +-0.0482812 0.115062 -0.0157267 +-0.0625405 0.132491 0.039434 +-0.0464975 0.163768 0.00545168 +-0.0809296 0.0885877 0.0337432 +-0.0341216 0.0395911 0.0493113 +0.0322123 0.0856789 -0.0192748 +-0.0822934 0.0775365 0.000511811 +0.00709964 0.0342068 0.00386204 +-0.086438 0.0832915 0.00949498 +-0.0244616 0.0474336 0.050725 +0.00565547 0.0365592 0.0251573 +-0.0274618 0.045988 0.0503593 +0.010522 0.119127 0.036469 +-0.0736141 0.151246 -0.0348888 +-0.024687 0.0892375 0.0511394 +0.00296667 0.0390863 0.0277676 +-0.0494919 0.154959 0.0103413 +-0.058864 0.139321 -0.00549203 +-0.0327877 0.082138 -0.0285334 +-0.0423065 0.150496 -0.00548521 +-0.0631749 0.149 -0.0205832 +-0.0218319 0.0363367 -0.0187811 +-0.0723757 0.0638786 0.0154336 +-0.0358563 0.126885 0.000788129 +0.0192111 0.080597 -0.0276192 +-0.0620809 0.0336347 -0.00771095 +-0.0313625 0.0510794 -0.0143586 +-0.063822 0.115596 0.0429106 +-0.0645614 0.138204 0.0400205 +-0.0824235 0.124446 0.0510342 +0.0555936 0.0567472 0.0257684 +-0.0293723 0.0422984 0.0515712 +0.0526995 0.0702438 0.0035897 +-0.0647148 0.06349 0.0261636 +0.00450679 0.0702611 0.0557926 +-0.0421206 0.171253 -0.0079388 +-0.00823225 0.127328 0.0283641 +0.0085198 0.0716538 0.0557746 +-0.0603515 0.116839 0.0389782 +-0.0758447 0.151365 -0.0158827 +-0.0913489 0.117296 0.00730629 +-0.0787438 0.101744 -0.00857364 +-0.0758718 0.109158 -0.00765228 +0.0141976 0.0850086 -0.0301852 +0.0110282 0.0968851 -0.0245853 +-0.0821235 0.0802564 0.0295192 +-0.0500787 0.154631 -0.00525635 +-0.0278864 0.105837 -0.0222471 +-0.0355149 0.0804148 0.0426568 +0.0156112 0.0519525 0.0469795 +-0.0758417 0.114903 -0.00554375 +-0.00130995 0.124776 -0.00834251 +-0.0285122 0.180211 -0.00692909 +0.0124807 0.0949598 0.0504131 +-0.0679136 0.113718 -0.0102762 +-0.0871543 0.105024 0.0183639 +0.0375648 0.0926236 -0.0120119 +-0.0297787 0.125132 0.0177406 +-0.0253546 0.121816 0.0267508 +0.0463872 0.0806547 0.00917972 +-0.0386145 0.0492284 -0.011639 +-0.0604969 0.0918487 0.0452694 +-0.0754744 0.151328 -0.022882 +0.0184783 0.101734 0.0458501 +-0.0250671 0.0385158 0.031526 +-0.0384759 0.091717 0.0434324 +-0.0394992 0.0916803 0.0429883 +-0.0668335 0.143964 0.0420823 +-0.0653424 0.0629827 0.0247148 +-0.0644392 0.112372 0.0382632 +0.0242087 0.039076 0.0343007 +-0.0535427 0.0402957 -0.0106063 +-0.082326 0.0748249 0.00451639 +-0.0544972 0.0959632 0.0436086 +-0.020823 0.0868434 -0.0377816 +-0.0636947 0.167813 -0.0415938 +-0.0448731 0.128505 0.000263047 +-0.0608825 0.0996865 -0.0185327 +0.0079329 0.0630739 0.055296 +0.00434495 0.0973121 -0.027058 +-0.091323 0.113292 0.0153266 +-0.0074977 0.0801462 0.0578122 +-0.0899881 0.118599 0.00429898 +-0.072593 0.155911 0.00171291 +0.00944326 0.128939 -0.000930002 +-0.0669203 0.110822 0.0381745 +-0.0378406 0.0957387 -0.0228102 +-0.00994641 0.0339021 -0.0251924 +-0.0261195 0.0706905 0.0432458 +0.0285346 0.121033 0.017364 +-0.0702811 0.17421 -0.0421289 +-0.00949024 0.104446 0.0436658 +-0.0877186 0.105023 0.0153645 +0.0487537 0.043125 0.0102298 +-0.0709615 0.148056 -0.0324394 +-0.0785455 0.146115 0.0422588 +-0.0777749 0.150053 -0.00387978 +-0.0747481 0.158885 -0.00783629 +0.022966 0.0347513 0.0194226 +-0.000497806 0.0842866 0.0575088 +0.0329127 0.116986 0.00902312 +0.0303386 0.119339 0.00661655 +0.0335365 0.0483507 0.0312493 +-0.0506321 0.0530807 0.0328365 +-0.0283907 0.123379 0.0211752 +0.043167 0.0831963 -0.0047762 +-0.00976599 0.121876 -0.011136 +-0.0836817 0.0786288 0.0214472 +-0.0584699 0.0344613 0.0385122 +-0.031399 0.116965 -0.0137545 +-0.0679334 0.145349 0.0422649 +0.0355447 0.11347 0.012835 +-0.0343438 0.0384811 -0.00836679 +-0.0303159 0.0678299 -0.0274662 +0.030827 0.0835413 0.0428747 +-0.0367713 0.0871639 -0.0235593 +-0.0249824 0.117062 -0.0139085 +-0.0633873 0.169402 -0.0465883 +-0.0567938 0.0498747 0.00808849 +-0.0719281 0.148635 -0.0350398 +-0.0764024 0.150045 -0.00692327 +-0.085242 0.115675 0.000251725 +0.0352163 0.0367258 0.0146563 +-0.0476332 0.0345872 0.0389835 +-0.0306482 0.0819602 -0.032565 +-0.0258283 0.172717 -0.011167 +-0.0745076 0.115686 0.0517763 +-0.0625234 0.0413191 -0.00677899 +-0.02745 0.110307 -0.0187882 +-0.0444951 0.104328 0.0415155 +-0.0774643 0.155549 -0.0139037 +0.0154943 0.105779 0.0433144 +-0.00688511 0.0982482 0.0516445 +-0.0476227 0.122378 -0.0113753 +-0.0830725 0.139367 0.045586 +-0.0431901 0.039319 -0.0232745 +0.00551778 0.0828244 0.0566316 +-0.0364708 0.152123 0.0014574 +-0.00749897 0.0815283 0.0577578 +-0.0165021 0.118207 0.0361456 +0.013481 0.0358562 0.0436245 +0.0102178 0.0836927 -0.0316174 +0.0514697 0.0462224 0.00523719 +0.0399822 0.0910991 -0.010396 +-0.0510223 0.0339346 0.00874224 +-0.0327803 0.0793117 -0.0285199 +0.0549936 0.0732019 0.0123756 +0.0461994 0.0750316 0.00518987 +0.0371924 0.0391306 0.0220088 +-0.0737191 0.152664 -0.0318934 +-0.0548531 0.149577 0.0276913 +-0.00305215 0.125834 0.0316944 +-0.021742 0.0389771 0.0371835 +0.0252695 0.0532659 -0.021679 +-0.0633235 0.0388939 0.025715 +-0.053898 0.105542 -0.0189379 +-0.0718855 0.122345 -0.00846405 +-0.0334848 0.0561021 0.0379001 +-0.0635384 0.061476 -0.00191873 +0.0137785 0.0346695 0.0230735 +0.0204936 0.1267 0.00866396 +-0.0258672 0.156547 -0.00846874 +-0.089402 0.0996815 0.0144017 +-0.010288 0.172711 -0.0218803 +0.00772266 0.115023 0.0394097 +-0.0363729 0.176071 -0.00683571 +-0.0525546 0.0444744 -0.00849373 +-0.0577063 0.155408 0.0158579 +-0.0512663 0.12652 -0.00563382 +-0.0277699 0.0661915 -0.0304661 +-0.0394907 0.0422995 0.0416287 +-0.0592646 0.0346371 0.0433189 +-0.0917594 0.117442 0.030311 +0.0188028 0.0349604 -0.00569856 +-0.0184644 0.0528818 0.0482087 +-0.0649365 0.1467 -0.0209465 +-0.0397769 0.152293 -0.00702124 +0.056742 0.0696177 0.0218717 +0.0435205 0.0637429 0.0281056 +0.0514429 0.0626408 -0.00275857 +-0.0668197 0.100942 -0.0159632 +-0.078886 0.0812827 -0.00855752 +0.0483563 0.0710513 0.00477309 +-0.0415729 0.151549 -0.00635576 +-0.0122139 0.169818 -0.0178463 +-0.0454996 0.163749 0.00555272 +-0.0779251 0.168693 -0.0322923 +-0.0455017 0.0973341 0.0429686 +-0.0932761 0.122751 0.0112823 +-0.00193792 0.0388572 0.00152241 +0.0379602 0.108292 0.00117706 +0.0447742 0.0777119 -0.00080388 +-0.0365645 0.0341557 0.0276322 +-0.077566 0.155252 0.0102497 +-0.00781043 0.0346187 0.0439246 +0.0218954 0.061892 0.0473866 +0.0229726 0.108506 -0.0149598 +0.0350891 0.111006 -0.00183676 +0.00866181 0.128565 0.0271896 +0.00435977 0.0481043 -0.0288152 +-0.00551112 0.0390255 -0.00865823 +-0.0205328 0.113457 -0.0181494 +-0.0851368 0.0832799 0.0224738 +0.00348766 0.115539 0.0402625 +-0.0174898 0.105786 0.0424611 +-0.087451 0.133828 0.0444349 +0.00492538 0.111581 -0.020193 +0.0318279 0.0713659 0.0407221 +-0.0121811 0.0984293 0.0498089 +-0.0747959 0.149331 0.0394056 +-0.0571923 0.0344404 0.0353306 +0.0154304 0.0417921 -0.0229429 +-0.0481114 0.159106 -0.00699154 +-0.0285 0.0960446 0.0448096 +0.0354946 0.0642547 -0.0137843 +-0.0204882 0.0388257 0.0339872 +0.0353716 0.0741014 0.0388421 +-0.0157653 0.161968 -0.0148041 +0.00551566 0.0799926 0.0558154 +0.0181043 0.128017 0.0106305 +-0.0644854 0.0986987 0.0423063 +-0.0415014 0.0492193 0.0396812 +-0.0900528 0.132428 0.0342227 +-0.0126494 0.0496668 -0.0310907 +-0.0321289 0.0337822 0.0109163 +-0.0625403 0.149101 -0.00657536 +-0.0124899 0.104431 0.0434394 +-0.0728072 0.15012 0.0385587 +-0.0275374 0.156717 -0.00957418 +-0.0627683 0.04307 0.0276693 +0.00651507 0.0344231 0.0163793 +-0.0631947 0.163133 -0.0265887 +-0.0264832 0.105687 0.0411729 +0.0072963 0.0341516 -0.018557 +-0.018657 0.109944 -0.0204332 +-0.0843505 0.0842533 0.0274024 +-0.0531944 0.139931 -0.000456373 +-0.0741436 0.100877 0.037779 +-0.0658548 0.0952898 -0.0176963 +-0.0504071 0.163936 0.00393123 +-0.00384396 0.0384339 0.019723 +-0.0889438 0.137894 0.0261932 +-0.017832 0.0346972 0.047013 +0.0156145 0.128768 0.00543431 +-0.0517309 0.0489114 0.0216412 +-0.0358204 0.046598 -0.0238768 +-0.059344 0.139552 0.0335155 +0.0510761 0.0567889 0.0297952 +-0.0787812 0.166656 -0.0319662 +0.030718 0.111397 0.0323042 +0.0535299 0.049514 0.0226619 +-0.0446433 0.0346533 0.0343218 +-0.0169852 0.186593 -0.0230311 +-0.0743965 0.149892 -0.0310959 +-0.0373231 0.0354917 0.0439186 +-0.000691629 0.100255 0.0478272 +-0.0818959 0.141783 0.000186922 +-0.0304023 0.0382885 -0.00186367 +-0.00349386 0.0925503 0.0560196 +-0.088924 0.151541 0.0211005 +-0.0824519 0.0856305 -0.00554258 +0.0469336 0.0511672 0.030779 +-0.0852791 0.132127 -0.000702015 +-0.0891862 0.112803 0.0347042 +0.0229651 0.0928857 0.047441 +-0.0442655 0.127665 -0.00291939 +-0.0917744 0.132406 0.0242297 +0.00738689 0.0359942 0.0260187 +0.0456627 0.0890114 0.0111648 +-0.0860966 0.11232 0.0268196 +-0.0556879 0.117086 -0.0137514 +0.0093902 0.0739182 0.0557875 +-0.0794167 0.137236 0.0495785 +-0.0893497 0.130881 0.0042394 +-0.0656682 0.0337431 0.00949839 +-0.0263524 0.059005 -0.029433 +0.0104643 0.0346107 -0.00703394 +-0.0631576 0.119928 0.0457283 +0.0423355 0.0972587 0.0241615 +0.0603447 0.0595379 0.00916361 +0.0495034 0.0488243 -0.00166079 +-0.0740753 0.155198 0.0041876 +-0.0656926 0.125639 0.0489587 +-0.00648958 0.0503786 0.0513549 +0.0381951 0.102007 0.0289909 +-0.0592102 0.0595951 0.00211544 +0.0285202 0.0622348 -0.0207982 +-0.0876555 0.144675 0.00917716 +0.0519851 0.0567984 0.0293579 +-0.0300707 0.124739 0.00148409 +-0.0725865 0.0874189 0.0409577 +-0.00281209 0.0882041 -0.0358187 +-0.0637344 0.0736795 -0.0161836 +0.0142616 0.0794232 0.0540604 +0.0458875 0.0787805 0.0205292 +0.0245051 0.0849065 0.0478503 +-0.0617895 0.083881 -0.0194032 +0.0333636 0.0364347 0.0163708 +0.0165102 0.111269 0.0389693 +0.033894 0.111352 0.0280456 +-0.00616098 0.0344967 -0.0177303 +-0.0662325 0.14347 -0.0127636 +-0.0199914 0.0962147 -0.0280142 +-0.0259005 0.126064 0.0117956 +-0.0929641 0.121523 0.0342815 +0.00656148 0.101677 0.0461619 +-0.0600389 0.0627348 0.027804 +0.0335486 0.0889696 0.0416029 +-0.0688127 0.0908552 -0.0166124 +-0.0856608 0.0854539 0.0244177 +-0.0759458 0.0974591 -0.0125133 +-0.0667171 0.171901 -0.0422833 +-0.0191016 0.0431933 0.0528315 +-0.0589426 0.0357407 0.0458703 +0.013481 0.127543 -0.00145794 +-0.0239185 0.0383353 -0.00428996 +-0.0627701 0.0824471 -0.0192325 +-0.0614696 0.136692 0.0357094 +-0.0810116 0.0734375 0.0175497 +-0.0759173 0.12523 -0.00781198 +-0.00824401 0.0384507 0.0170014 +-0.0641628 0.157463 -0.0125984 +-0.0178575 0.122517 -0.00769635 +-0.0596856 0.0659756 -0.00895149 +-0.0807952 0.106052 0.0302403 +0.0156574 0.0925729 -0.0260099 +-0.081817 0.0734713 0.00853447 +-0.052947 0.1293 -0.00466978 +0.0313864 0.0929268 0.0420114 +-0.0242749 0.174204 -0.0124276 +-0.0678958 0.0610238 0.00808464 +-0.0477867 0.135371 0.0169352 +-0.0514248 0.0500855 0.0140283 +0.0463863 0.075041 0.00619921 +-0.0120829 0.121468 -0.0106691 +0.0474936 0.0651497 0.0284001 +-0.0370341 0.127886 0.0121304 +-0.0240288 0.0385625 0.0316972 +0.0484803 0.0651161 -0.0012457 +-0.0516556 0.0569841 0.0295138 +-0.0639861 0.131146 -0.00837414 +-0.0504965 0.087636 0.0455301 +0.03603 0.0808066 0.0380541 +-0.0869174 0.117103 0.00125292 +-0.0617229 0.155313 -0.01958 +-0.0631289 0.15403 -0.0107687 +0.00528045 0.114267 -0.0191116 +-0.0639453 0.167747 -0.0398404 +0.0288613 0.0520696 0.0379853 +-0.0623548 0.166257 -0.0465894 +0.000543528 0.123331 0.0344653 +0.0375704 0.0618629 0.0348997 +-0.0391935 0.128299 0.00543562 +-0.0593991 0.0472653 0.0079341 +-0.0244003 0.0390404 0.0383653 +-0.0676508 0.0338326 0.0090061 +-0.0292136 0.07193 -0.032514 +-0.0374976 0.0861098 0.0439188 +0.0247244 0.0549721 0.0426251 +-0.0892169 0.151457 0.0141575 +-0.02429 0.121354 -0.00839434 +-0.0618416 0.098205 -0.0180486 +-0.0320742 0.0383234 -0.000421092 +-0.0488761 0.107007 -0.0192731 +-0.0476462 0.123357 -0.010393 +0.0220922 0.12286 0.0278182 +-0.00150357 0.0647954 0.0567431 +0.000502823 0.0870298 0.0569751 +-0.0581295 0.0643065 0.0321224 +-0.0188005 0.0568615 0.0490899 +-0.0794271 0.0732336 0.00151817 +0.019219 0.0848258 -0.027423 +-0.0344972 0.116614 0.0320154 +0.000192029 0.0811649 -0.0359709 +-0.0741702 0.0968478 0.0394202 +0.00621596 0.083814 -0.033411 +-0.0671177 0.159814 -0.0107973 +-0.0187526 0.0641914 -0.0363857 +0.0556876 0.0493473 0.0181935 +-0.0364983 0.059104 0.0398977 +-0.071802 0.181053 -0.0556554 +-0.0116602 0.168404 -0.0170453 +-0.0478952 0.0713156 0.0406183 +0.0354015 0.0476244 -0.00628637 +-0.0262003 0.0750789 0.0460261 +-0.0550327 0.0674609 0.0370807 +-0.0565425 0.0415574 -0.00871771 +-0.0546448 0.115434 0.0349037 +-0.0682182 0.15577 -0.00101225 +-0.066899 0.132617 0.0454244 +-0.0743656 0.172848 -0.0365047 +-0.0734703 0.155395 0.00293075 +-0.0125152 0.0589286 0.0534547 +0.00233104 0.0554199 -0.0313859 +-0.0805618 0.101855 -0.00659893 +-0.0537592 0.0797599 -0.020636 +-0.0237797 0.125538 0.0184413 +-0.0508814 0.161419 0.0066624 +-0.0742588 0.0655235 0.0100016 +0.0457502 0.0805926 0.00319942 +-0.0764848 0.142819 0.0460732 +-0.0442438 0.113637 -0.0162318 +-0.00550074 0.0870334 0.0571343 +-0.059876 0.0997119 -0.0187764 +-0.069062 0.149033 -0.0371338 +-0.0598711 0.154188 0.0296083 +-0.044481 0.0973337 0.0428134 +0.0255359 0.118038 0.0305151 +-0.000498881 0.112805 0.0421187 +-0.073083 0.0981963 0.0397086 +-0.0766217 0.068534 0.0175211 +-0.038773 0.11398 -0.0166127 +0.0194763 0.0837958 0.0507486 +-0.0809353 0.145916 -0.000819165 +0.0301953 0.0476864 0.0346108 +-0.0284906 0.0932063 0.0444855 +-0.071967 0.162417 -0.0419522 +-0.0647895 0.0838376 -0.0190209 +-0.00994817 0.0389455 -0.0113423 +0.00268547 0.035256 0.0455248 +-0.0587181 0.0481161 0.00163754 +-0.0537032 0.140954 0.0276054 +-0.0166811 0.0377146 -0.0171581 +-0.0896263 0.0969991 0.0154111 +-0.0475653 0.166962 -0.00492463 +-0.0684985 0.0986495 0.0414678 +0.0399619 0.0730961 -0.00981181 +-0.0433911 0.121364 -0.0123522 +-0.0619851 0.167813 -0.0525933 +-0.0768904 0.0733563 0.0291265 +-0.058879 0.104045 -0.0185386 +-0.0154965 0.0573571 0.0513792 +-0.0115598 0.09531 -0.0330219 +-0.0335104 0.125389 -0.00127044 +0.0292004 0.119729 0.0233163 +-0.0141909 0.171251 -0.024451 +0.00225805 0.0711729 -0.0343766 +0.000838494 0.130009 0.0243594 +-0.0186635 0.0360947 0.0525267 +0.0441946 0.0874765 -0.00278813 +-0.0347028 0.122731 -0.00776716 +-0.0478246 0.129609 0.027299 +-0.0784918 0.144814 0.0436628 +0.020477 0.0989516 0.0463466 +-0.0870404 0.113136 0.0295379 +0.012093 0.120504 0.0352323 +0.00825492 0.0739666 -0.0336091 +0.00112807 0.104475 -0.0219821 +-0.0142621 0.120334 -0.0114431 +-0.0507965 0.0345143 0.033135 +0.0311896 0.0857114 -0.0197343 +-0.0894234 0.0956355 0.01542 +-0.0775093 0.0961888 -0.0115304 +-0.0358262 0.0929298 -0.0238031 +-0.0774962 0.131676 0.0527303 +-0.0421326 0.160667 -0.0107094 +-0.0276983 0.125752 0.00966815 +-0.045336 0.129618 0.020889 +-0.00368188 0.0613041 -0.0346439 +-0.0748644 0.171601 -0.033829 +-0.0207882 0.0770942 -0.0390427 +-0.044533 0.160785 0.0064482 +-0.0789135 0.0799145 -0.00757704 +-0.0700794 0.154941 0.0289273 +-0.0313268 0.0609036 -0.0184352 +-0.0853384 0.107683 0.0213404 +-0.0624789 0.152144 -0.0275875 +-0.0427656 0.0797392 -0.0197597 +0.00722196 0.0865913 -0.0328221 +-0.0720619 0.109399 0.0395074 +-0.0911632 0.132299 0.00922827 +-0.00610552 0.129863 0.0232869 +0.02524 0.115374 0.03316 +0.00541955 0.0912903 -0.0327619 +0.00896308 0.0344141 -0.00340754 +-0.0356782 0.0636593 -0.0138055 +-0.0555057 0.153886 0.023914 +0.0207355 0.0349558 0.0059225 +0.0360179 0.0848402 0.038086 +-0.0488433 0.098515 -0.0220378 +-0.0633934 0.178218 -0.0607118 +-0.0846638 0.0778105 0.0155166 +0.0437393 0.0720229 -0.000789276 +-0.0288953 0.122588 -0.00566495 +-0.025973 0.0851197 0.051146 +-0.0782416 0.0913778 0.0366028 +-0.0494978 0.0960237 0.0444817 +-0.0785831 0.0731535 -0.00247436 +-0.0698391 0.165209 -0.0499791 +-0.0586839 0.0335669 0.00570948 +-0.0610591 0.155387 0.024814 +-0.0642828 0.163385 -0.0227384 +-0.0658667 0.0334936 -0.00108817 +0.037341 0.0888457 0.0365275 +0.02301 0.0347163 0.00286296 +-0.0590207 0.126708 -0.0075139 +0.0463679 0.0792556 0.0081871 +-0.00960203 0.0406207 -0.0262166 +-0.0771598 0.160359 -0.0157997 +-0.0425011 0.163766 0.00491011 +-0.00971544 0.177216 -0.0294611 +0.021747 0.102101 0.0439088 +-0.087802 0.139216 0.0403868 +-0.0694557 0.0421945 0.00370163 +0.0173244 0.0580274 -0.0281164 +-0.011686 0.178646 -0.0240587 +-0.0245154 0.158144 -0.00224812 +0.021637 0.0948486 -0.0224193 +0.00951901 0.0504027 0.0504431 +-0.0252093 0.112572 -0.0171753 +-0.0736758 0.108402 0.0380105 +-0.0551152 0.0341599 0.0272668 +-0.0462814 0.155049 0.00841735 +-0.0164865 0.0730277 0.0553332 +-0.0853981 0.109039 0.0213496 +-0.0817879 0.0734817 0.0075372 +-0.0543644 0.15733 0.00977334 +-0.0391365 0.0406682 0.0418102 +0.00445432 0.130749 0.00275136 +0.0247455 0.105845 -0.0161092 +-0.0554962 0.0904299 0.0451691 +-0.00849692 0.0731924 0.0575239 +-0.0665361 0.11864 0.0512424 +-0.0771905 0.152834 -0.00389169 +-0.0684956 0.0958684 0.0422138 +-0.086559 0.0806364 0.0135028 +-0.065258 0.156162 0.0146042 +-0.0134788 0.105828 0.0432751 +-0.00273284 0.0712345 -0.035418 +0.0276777 0.0972525 -0.0189451 +-0.0768441 0.113421 -0.00459179 +-0.0291819 0.174148 -0.0171874 +-0.0392913 0.0344977 0.0373408 +-0.00249868 0.0965524 0.0536599 +-0.026518 0.10985 0.0386071 +-0.0272212 0.114809 -0.0155223 +-0.0617195 0.0669875 0.0343055 +-0.0824261 0.101938 -0.00456304 +-0.0889571 0.0955775 0.00843273 +-0.0288529 0.100117 -0.0233232 +-0.0899265 0.130893 0.00523191 +-0.0346189 0.112824 -0.0174204 +-0.0154754 0.111334 0.0410203 +-0.053649 0.0335392 -0.00958395 +-0.000215874 0.126274 0.0312521 +0.00810763 0.0366956 0.0273459 +-0.0915032 0.133721 0.0182157 +0.0193574 0.0537071 -0.027254 +-0.0617049 0.070743 -0.0146345 +-0.0745149 0.121791 0.0533186 +-0.070524 0.0682803 0.0295828 +-0.0206697 0.0697068 0.051972 +-0.0918785 0.141976 0.0181723 +-0.0408421 0.0345979 0.00840679 +-0.0738542 0.15551 0.00718209 +0.0055205 0.0427186 0.0455303 +-0.065431 0.168513 -0.0346313 +0.0194077 0.0659 0.0490938 +-0.0485039 0.0876217 0.0453743 +-0.0622817 0.0458517 0.0346831 +0.0349983 0.0362655 0.0094693 +-0.0912374 0.140583 0.0161703 +-0.0884146 0.113764 0.0250911 +0.0142472 0.0860448 0.0523279 +-0.0131413 0.127389 -0.000900164 +0.0289187 0.0580129 -0.0187889 +0.00423189 0.0768627 -0.0347545 +0.0204663 0.0385832 -0.00969847 +-0.0217971 0.0348633 0.0460203 +-0.0864575 0.101794 0.0247295 +0.00132582 0.0568889 -0.0321653 +-0.0697484 0.0793376 -0.0160307 +-0.0845391 0.102087 -0.000621587 +-0.0733924 0.0656461 0.018954 +-0.0391909 0.0342717 0.0287528 +-0.065551 0.112475 0.040245 +-0.0628947 0.161497 -0.0505862 +-0.0455612 0.125305 -0.00846085 +0.0204165 0.110729 -0.0153427 +-0.0119941 0.16759 -0.0225943 +-0.0778434 0.153328 0.00140062 +-0.0743032 0.152688 -0.027892 +-0.0719627 0.134048 -0.00796724 +-0.0322554 0.0722092 -0.0264952 +-0.0689145 0.123836 -0.00886831 +-0.0292201 0.0564848 -0.022383 +-0.0336564 0.0343441 0.0369141 +0.0587559 0.0579922 0.0215357 +0.0331644 0.1138 0.0262385 +0.0155789 0.125536 -0.0032763 +-0.0511913 0.034459 0.0313456 +0.0336899 0.0357287 0.00969367 +0.0540437 0.0734433 0.0120297 +-0.0588961 0.106893 -0.0176578 +-0.0158316 0.18484 -0.0207268 +0.0120317 0.0342138 -0.0138856 +0.0335354 0.0380053 0.0222769 +-0.0118847 0.117889 -0.0148923 +0.00991822 0.0342953 -0.00310719 +0.00806259 0.0342288 -0.0204182 +-0.00962665 0.0384388 0.00947704 +-0.00349166 0.0534503 0.0541192 +0.0248931 0.108132 -0.0145556 +-0.0355172 0.106999 0.038376 +0.0298839 0.118971 0.0235707 +-0.0896201 0.0969823 0.0124196 +0.00795856 0.126912 0.0298215 +-0.0734288 0.149863 -0.0358672 +-0.0513643 0.132495 0.031006 +-0.056967 0.0535025 0.000612409 +-0.0226813 0.0349023 0.0509736 +0.0573538 0.0634191 0.00214341 +-0.0178849 0.0387376 -0.0108688 +-0.0690262 0.170476 -0.0316587 +-0.0162544 0.183109 -0.0200888 +-0.0569078 0.052097 -0.000371255 +-0.0845703 0.11062 0.0357089 +0.035496 0.0454077 0.0303438 +-0.00267498 0.100539 0.0471075 +-0.080721 0.0845507 0.0336553 +-0.0900133 0.150126 0.0131697 +-0.0628916 0.0631016 0.0268901 +-0.0739067 0.163816 -0.0379732 +-0.0313311 0.0487062 0.0434625 +-0.036476 0.0533606 0.0387027 +-0.0636484 0.15559 0.00937973 +0.0135801 0.0874029 0.0531363 +-0.0259964 0.0967524 -0.0245741 +-0.0665286 0.168031 -0.0580342 +-0.0794099 0.141428 0.0463829 +-0.0496093 0.0334738 -0.00871292 +0.0373859 0.082128 0.0365587 +-0.00650329 0.0547609 0.0534371 +0.0253836 0.0503366 -0.0210264 +-0.00332845 0.128773 0.0271941 +0.0363318 0.0601344 -0.0117401 +-0.0258635 0.103016 -0.0235702 +-0.0251408 0.168241 -0.0184358 +0.018845 0.0956057 -0.0232473 +-0.0712372 0.167165 -0.0209901 +-0.0759412 0.151358 -0.0178788 +-0.0784019 0.152013 0.0336008 +0.000968412 0.0391138 -0.00557511 +-0.0865136 0.106289 0.0083757 +-0.0623969 0.0335761 0.00673913 +-0.0769787 0.135423 -0.00568624 +0.021851 0.0591836 0.0473037 +-0.0524335 0.115217 0.0341034 +-0.0884925 0.144689 0.01017 +-0.0774954 0.147028 0.0416906 +0.00429953 0.0340852 0.0162355 +-0.0489061 0.0346101 0.0421693 +-0.0377668 0.0812615 -0.0209367 +-0.0321125 0.0496937 -0.0183514 +-0.00333701 0.121977 -0.0113118 +-0.063853 0.129717 0.0428324 +0.0122687 0.0724051 -0.0314733 +-0.0295052 0.113904 0.0347936 +0.0428284 0.0676747 -0.00179274 +-0.0665096 0.0944832 0.0425185 +-0.0324964 0.117987 0.0309791 +-0.0240568 0.0972281 0.0446316 +-0.0729302 0.128204 -0.00868672 +-0.0930613 0.118852 0.0392987 +-0.0179932 0.0940702 -0.0337993 +-0.0276364 0.0917699 -0.0296042 +0.0270825 0.114018 -0.00875387 +-0.0701334 0.160982 -0.047936 +0.0160414 0.0343167 -0.00190332 +-0.0407181 0.0336157 0.00208844 +0.0537368 0.0581963 0.0283843 +0.0459393 0.0792136 0.00418579 +0.00219887 0.0866713 -0.0341557 +-0.0874475 0.125307 -0.000719081 +0.0171658 0.0974165 -0.0229214 +-0.0555243 0.0344634 0.0339194 +0.00337546 0.131746 0.0137901 +-0.037361 0.155079 0.00374727 +-0.00966712 0.0394179 0.0374824 +0.0401633 0.102703 -0.00178896 +-0.0792807 0.167978 -0.037009 +0.0137845 0.0344 -0.00993851 +-0.0224906 0.034851 -0.0281799 +-0.0815485 0.124491 0.0516101 +0.0440694 0.0973609 0.0121636 +-0.0361101 0.0351289 -0.0167641 +-0.0672139 0.168667 -0.0295504 +0.00726635 0.0696573 -0.0326992 +-0.0474987 0.0987688 0.0431343 +-0.0879643 0.115809 0.00328051 +0.0212116 0.083355 -0.0266295 +-0.0413155 0.0345032 0.0369079 +-0.0830031 0.148729 0.00315098 +-0.0365029 0.0818729 0.0434567 +-0.0265303 0.0632322 0.0390504 +0.0560084 0.0549549 0.0021707 +-0.00162661 0.100486 0.0474782 +-0.00782745 0.0882395 -0.0367822 +-0.0874416 0.113109 0.00532366 +-0.0755108 0.126011 0.0529241 +0.0317406 0.107408 0.0337947 +-0.0280888 0.121741 0.0242898 +-0.0114519 0.126605 -0.00415103 +-0.00942316 0.129915 0.019193 +0.0305901 0.117314 -0.000462026 +-0.00449008 0.116939 0.0397737 +-0.0174829 0.0365879 0.0522725 +-0.0480399 0.136313 0.0145941 +0.0078895 0.0386539 0.0453509 +-0.059976 0.125502 0.0413668 +0.00922467 0.131237 0.0102208 +-0.0164537 0.0924837 0.0552632 +-0.0397063 0.0680709 -0.01554 +0.0144891 0.0990552 0.047648 +-0.0194892 0.0771957 0.0553527 +0.00314961 0.0344334 0.00286196 +0.0322227 0.0828447 -0.0192606 +-0.086166 0.115735 0.00128445 +-0.0628659 0.161473 -0.0525859 +-0.0897633 0.133813 0.0392039 +-0.0931113 0.126933 0.0272608 +0.0442448 0.0902943 -0.00180307 +0.0383075 0.041189 0.0258499 +-0.038679 0.0636652 -0.0136088 +-0.0640888 0.165507 -0.029848 +0.00695321 0.13108 0.0193768 +-0.0281007 0.162292 -0.0150733 +0.0192374 0.0749637 -0.0278698 +0.0244608 0.0941673 -0.021671 +0.0131476 0.100265 -0.0227775 +-0.0301385 0.166718 -0.0165418 +-0.0651412 0.159482 -0.0565006 +0.0342867 0.0700233 0.0389954 +-0.0695171 0.141232 -0.00845814 +-0.0904292 0.148866 0.0241237 +-0.0253439 0.0693349 0.0439513 +-0.0623474 0.166249 -0.0485903 +-0.0193027 0.0445534 0.0525624 +-0.0258791 0.105846 -0.022482 +-0.0331634 0.0381954 -0.000525199 +-0.0640739 0.0617863 -0.0011495 +0.0413993 0.0942972 -0.00577735 +-0.030183 0.155051 -0.00785968 +-0.0209835 0.159643 -0.00415092 +0.0227131 0.118044 0.0330191 +-0.0268485 0.124528 0.000469072 +-0.0241773 0.17417 -0.0202285 +-0.012912 0.0339283 -0.0204101 +0.0235417 0.109895 0.0378397 +-0.0800641 0.107437 0.0308747 +-0.0374695 0.0383458 -0.0088734 +0.0372523 0.0646113 0.0362056 +-0.0324907 0.0817336 0.0416408 +0.0138217 0.125251 -0.00497301 +-0.0427639 0.126553 -0.0057736 +-0.0467249 0.0753156 -0.0175399 +-0.0861037 0.109061 0.0193453 +0.0206619 0.0348672 0.0224824 +-0.0804996 0.127434 0.052885 +0.00919876 0.0964636 -0.0261302 +-0.0321423 0.0806683 -0.0305334 +0.0242996 0.120934 0.0286395 +-0.0429021 0.171269 -0.00696466 +0.0145253 0.126603 0.0278836 +-0.0657391 0.142564 -0.0101503 +-0.0125598 0.0943837 -0.0340846 +-0.0809608 0.0720856 0.0135459 +-0.0230054 0.0386784 -0.0118395 +-0.0234022 0.157317 -0.0083471 +-0.0700956 0.06197 0.00856658 +0.0361469 0.0875521 0.038321 +-0.00703497 0.101085 0.0445106 +-0.0217097 0.181473 -0.0209735 +-0.0310875 0.179405 -0.00921261 +0.00340822 0.117733 -0.0168392 +-0.0306641 0.062253 -0.0214244 +-0.00851812 0.0604987 0.0555487 +-0.0105044 0.0745085 0.0567054 +-0.00265316 0.0511482 -0.0311061 +-0.0764634 0.157616 -0.00941011 +-0.0224335 0.0371726 0.0541058 +-0.0432016 0.171084 -0.00202068 +-0.0523174 0.057382 0.0266177 +0.0595665 0.0566863 0.0161765 +0.00171621 0.126464 -0.00619605 +-0.0635036 0.095949 0.0432601 +-0.00748541 0.0856517 0.0572176 +-0.0142172 0.114376 -0.0171381 +-0.0106623 0.0511436 -0.032067 +-0.0292482 0.0345559 -0.0204636 +-0.0369573 0.0340894 0.0258321 +-0.0544756 0.0413314 0.0465715 +-0.0940023 0.125512 0.016258 +-0.0685195 0.0916417 0.0424016 +-0.076491 0.140037 0.0480957 +-0.021763 0.159801 -0.0034487 +0.0107652 0.110575 -0.0191667 +-0.0296434 0.0486725 0.0446006 +0.0205709 0.0463131 0.0417824 +0.0371829 0.0726727 0.036151 +0.00170794 0.1258 0.0319097 +0.00812607 0.108726 -0.0199063 +-0.088847 0.0874807 0.0104655 +-0.0614823 0.0761372 0.0417782 +-0.077632 0.077285 -0.00766199 +-0.0914347 0.132413 0.0262297 +-0.0380759 0.16073 -0.01276 +-0.0580841 0.132712 -0.00634758 +-0.00546375 0.117984 -0.0150376 +-0.0825526 0.110518 0.0415894 +-0.0567945 0.0589511 -0.00142935 +-0.00849356 0.0842936 0.0575382 +-0.0464941 0.0987388 0.0427545 +0.0199235 0.0365522 0.038924 +-0.0181358 0.159669 -0.00704365 +0.0214919 0.0906421 0.0482356 +-0.0308996 0.107699 -0.0200324 +0.0310327 0.118783 0.0168832 +-0.049761 0.069112 0.038562 +-0.0388211 0.091456 -0.0235256 +-0.0139638 0.180133 -0.0220777 +0.0153381 0.127037 -0.000904662 +-0.0219975 0.107603 -0.0219593 +-0.0448317 0.0927682 -0.0220335 +-0.0127292 0.0909963 -0.036642 +0.0174939 0.0350076 -0.00788091 +-0.016176 0.165587 -0.0188354 +0.0276821 0.0862408 0.0453967 +-0.00121407 0.102594 0.0440764 +-0.0167645 0.162218 -0.0151135 +-0.0446938 0.0665983 -0.0153032 +-0.0709583 0.135514 -0.00804855 +0.0152869 0.0794603 0.0538116 +-0.028039 0.0849631 0.0475609 +-0.0252122 0.108563 -0.020971 +-0.0501485 0.141642 0.00337658 +-0.0802229 0.143442 0.044034 +-0.0728736 0.0659781 0.0205309 +-0.083982 0.134868 -0.000717316 +-0.070349 0.172644 -0.037875 +-0.015485 0.0673895 0.0543529 +-0.0374989 0.108379 0.0375203 +0.0194281 0.0399108 -0.0177171 +-0.0508059 0.0898498 -0.0218327 +-0.0916067 0.130926 0.00923792 +-0.0657827 0.158229 -0.0103034 +0.00352818 0.0386899 -0.0121702 +-0.0147383 0.10835 -0.0207588 +-0.0496313 0.111407 -0.0178803 +-0.0413837 0.128875 0.00906534 +-0.0523163 0.134709 -0.00240246 +0.00961512 0.122501 0.0348066 +-0.0755017 0.140041 0.0481 +-0.0678883 0.145704 -0.022127 +-0.0230319 0.0374462 0.0541561 +-0.00425848 0.0961384 -0.0318255 +-0.0895594 0.135155 0.0312102 +-0.0623104 0.0594537 0.00702264 +0.00422975 0.0796448 -0.0342885 +-0.0618471 0.153751 -0.0215773 +-0.00905798 0.034739 0.0470958 +-0.0575286 0.126935 0.0396404 +-0.0298496 0.180049 -0.0116061 +-0.0317613 0.0567558 -0.0133876 +-0.0839019 0.105911 0.0262878 +-0.0715304 0.102729 0.03849 +0.0144241 0.127312 -0.00121761 +-0.0787914 0.14589 -0.00282549 +-0.00925999 0.0421824 0.0495336 +-0.0284001 0.0385729 0.034376 +-0.0690967 0.148938 0.0398784 +-0.0561651 0.153258 0.0280528 +0.0408211 0.10424 0.0171662 +0.0569661 0.0701435 0.00568959 +-0.0318479 0.09723 -0.023215 +0.00233723 0.0391647 0.0293747 +-0.0839319 0.117006 0.0485566 +-0.0310508 0.0693178 -0.0264576 +-0.0270974 0.0794315 0.0481933 +-0.00975454 0.0728065 -0.0376393 +-0.0907216 0.131054 0.0332303 +-0.00149823 0.0535022 0.0547476 +-0.0920442 0.126938 0.0322524 +-0.049095 0.140149 0.0113941 +-0.0605441 0.113772 -0.0142303 +-0.00976932 0.0756525 -0.0380331 +-0.0878532 0.127045 0.0464651 +-0.010533 0.178644 -0.025906 +0.0593699 0.0691831 0.0171767 +-0.024781 0.0769658 -0.0376048 +0.0423711 0.0575006 -0.00528711 +0.0460928 0.061454 -0.00359733 +-0.0408554 0.101386 -0.0212924 +-0.0446853 0.169846 -0.00596698 +-0.0499657 0.0572278 0.0334797 +-0.0145604 0.127706 0.0231688 +-0.0624931 0.153672 -0.0316068 +0.0559752 0.0635544 0.0263749 +-0.0741944 0.0678888 0.022137 +0.0128784 0.0534523 0.0500797 +-0.014497 0.082865 0.0570346 +0.0100519 0.0351376 0.0435561 +-0.0764979 0.135856 0.0507679 +-0.0505672 0.0545537 0.0173366 +-0.073291 0.0682485 0.025526 +0.0168973 0.0504721 0.0453108 +0.0597511 0.0567143 0.0111681 +0.00962081 0.119433 -0.0146957 +-0.0261763 0.0931476 0.0454624 +-0.0034975 0.0661744 0.0565538 +-0.0174573 0.0601724 0.0514531 +0.0587589 0.059387 0.00417226 +-0.0388249 0.122181 0.0278208 +-0.0685252 0.175096 -0.0570393 +-0.0628061 0.0896011 -0.0190246 +0.0306772 0.118704 0.0210209 +-0.0655003 0.083298 0.0438708 +0.0560223 0.0713695 0.00682475 +-0.0298518 0.100096 -0.0230635 +-0.0422245 0.148296 -0.00246029 +-0.00149333 0.112805 0.0421166 +-0.0829153 0.0925695 0.0313446 +-0.0394018 0.0468721 -0.0179145 +-0.0784825 0.135851 0.0506454 +-0.0734876 0.127439 0.0525898 +-0.0280931 0.033441 -0.0266965 +0.0607571 0.0609589 0.0141669 +-0.0692316 0.172989 -0.0403442 +-0.0397906 0.162354 0.00198884 +-0.0505067 0.0805184 0.044061 +-0.0716519 0.156794 -0.0409079 +0.0407885 0.10564 0.00816522 +-0.00717727 0.0999816 0.0485274 +-0.0646289 0.156694 -0.0465976 +-0.089623 0.0983355 0.0134109 +0.00279805 0.0339767 -0.0211497 +-0.0142152 0.17272 -0.0253585 +-0.0396036 0.174135 -0.00601981 +-0.0669938 0.0358141 0.0313063 +-0.0497731 0.0627792 0.0345527 +0.0229897 0.121378 0.0295865 +-0.0457551 0.0336493 -0.0154708 +-0.0539285 0.152376 0.0223916 +-0.0664975 0.108359 0.0380432 +0.0293811 0.04325 -0.00550019 +-0.0166832 0.0525719 -0.0322771 +0.0164877 0.105762 0.0431793 +-0.0171637 0.0956465 -0.0313986 +-0.0314959 0.111117 0.0366419 +-0.0788622 0.169438 -0.0409605 +-0.0673163 0.13687 0.0448543 +-0.00450662 0.0828853 0.0572758 +-0.086732 0.125284 -0.00171301 +-0.0339024 0.123839 0.0236394 +-0.0665906 0.0686018 0.0336345 +-0.0647932 0.143933 0.0397518 +0.0283692 0.0466516 -0.00870467 +0.0329293 0.104175 -0.0123189 +-0.0761401 0.0728821 0.0296904 +-0.0142042 0.169737 -0.0232161 +-0.068634 0.151185 -0.044245 +-0.0135754 0.0347863 -0.0255909 +0.019989 0.0436019 0.0426848 +-0.015693 0.057044 -0.0346551 +-0.00164401 0.0482043 -0.0300627 +-0.0311183 0.172722 -0.00474304 +-0.0250193 0.118984 -0.0119284 +-0.0325683 0.124672 -0.00180773 +-0.0781672 0.0694403 0.0164131 +0.0335232 0.0673414 0.0396281 +-0.0927165 0.117489 0.0383035 +0.0402856 0.10561 0.017163 +-0.0284035 0.166813 -0.0078902 +-0.00473635 0.13076 0.00793547 +-0.0216948 0.0386212 -0.00966204 +-0.0436382 0.11786 -0.014681 +0.0533192 0.0587911 -0.00291354 +-0.0153516 0.0970497 -0.0288687 +-0.0434963 0.0661943 0.0406667 +-0.0466152 0.145766 -0.000178732 +-0.0206008 0.0386838 -0.0150911 +-0.0509261 0.0335608 -0.00538789 +-0.0896998 0.137926 0.0341919 +-0.0278811 0.0378156 0.0189805 +0.0364086 0.0854455 -0.0167057 +0.0349072 0.0875927 0.04003 +-0.0243811 0.0738035 0.0484997 +-0.0470246 0.133586 0.0187098 +0.00950521 0.0772084 0.0556135 +-0.0192998 0.0985099 -0.0244 +0.0447739 0.0438422 0.0248039 +-0.0504965 0.0819144 0.0441383 +-0.0346492 0.0577427 -0.0111408 +-0.048101 0.135891 0.0168055 +0.00147386 0.103921 -0.02207 +0.0494979 0.0678406 0.0265165 +0.00621357 0.0880484 -0.0332214 +-0.0763594 0.158279 -0.023921 +0.0359549 0.0646627 0.0378653 +-0.0462327 0.128102 0.0242709 +-0.0570384 0.142741 -0.0023851 +-0.0156536 0.0496375 -0.0309655 +-0.0157015 0.164 -0.0105798 +0.0160661 0.0349193 -0.0155613 +-0.0555615 0.0615422 -0.00607893 +-0.0506452 0.142899 0.00154993 +0.0227041 0.124378 0.0023667 +-0.0690811 0.0343024 0.0100819 +0.0296092 0.114943 -0.00583865 +0.0252655 0.0864752 -0.0236184 +-0.0579352 0.153021 -0.000467328 +-0.0699851 0.168026 -0.0510102 +-0.0649515 0.126767 -0.00875296 +-0.0310902 0.124844 0.00108587 +-0.07951 0.149797 0.0367578 +-0.0514931 0.156432 0.0104716 +-0.0854224 0.0885478 -0.00153705 +-0.0622051 0.0333895 -0.00205752 +-0.00958914 0.0376967 -0.0257201 +0.0438525 0.0874765 0.0251696 +-0.00448652 0.114189 0.0411781 +-0.0741351 0.0860483 0.039718 +-0.0162681 0.118552 -0.0135478 +-0.00571384 0.0655793 -0.035147 +-0.051609 0.164108 -0.000948719 +-0.0346229 0.116833 -0.0136016 +0.0105065 0.107115 0.0414414 +-0.0484736 0.0917654 0.0440291 +9.10767e-05 0.108392 -0.0207972 +0.0522547 0.0611036 -0.00320855 +0.00856462 0.11946 -0.0147195 +0.0326237 0.0768475 0.0419257 +0.0282302 0.0872832 -0.0216049 +-0.0693757 0.155378 0.0277002 +-0.0182673 0.180142 -0.0177524 +-0.0285043 0.0545632 0.0363758 +-0.0218074 0.0756618 -0.0388536 +-0.0633749 0.1608 -0.057006 +-0.0892506 0.151522 0.0201032 +-0.0472272 0.0642822 0.0376403 +-0.0699509 0.134055 -0.00826728 +-0.0820286 0.074884 0.0125291 +-0.0576046 0.151067 0.0326375 +-0.0425494 0.0346163 0.040046 +-0.0619058 0.105434 -0.0174028 +-0.0753497 0.108878 0.0391875 +-0.0594974 0.0946317 0.0447571 +0.013384 0.078066 0.0545225 +-0.0431375 0.160652 -0.0100842 +-0.0258359 0.0945143 -0.0266147 +-0.0245117 0.0536384 0.0409132 +-0.0664072 0.169883 -0.0364165 +-0.0726615 0.0640995 0.00799778 +-0.0451579 0.0395668 -0.0202936 +-0.00773777 0.0727528 -0.0370634 +0.0135086 0.116829 0.0366875 +-0.0836964 0.106272 0.0263573 +-0.0303071 0.0339954 0.0147064 +-0.000759903 0.102685 -0.0227147 +0.0258263 0.0624492 -0.0231007 +-0.0674047 0.179923 -0.0541082 +-0.0857367 0.111526 0.0418488 +-0.0560454 0.148678 -0.00182226 +-0.0476918 0.0635243 -0.0129244 +-0.0642806 0.164881 -0.0270495 +-0.0574962 0.108397 0.0389105 +0.00241269 0.0347278 -0.0230504 +-0.00449379 0.0548276 0.0540049 +-0.0627171 0.147502 -0.0125815 +-0.0213288 0.0581411 0.0459349 +-0.0608837 0.0367165 0.0449842 +0.0211328 0.126504 0.0131782 +0.00740015 0.0418656 -0.0238182 +-0.0737971 0.148055 0.0412991 +-0.00374732 0.0726737 -0.0357771 +-0.0204954 0.103009 0.0433484 +-0.0210495 0.127369 0.0106273 +0.0306407 0.0431175 0.0298982 +0.0109957 0.0698921 0.0545336 +-0.0439898 0.0350927 -0.0256307 +-0.0670986 0.0347786 0.0136227 +0.0215717 0.0401714 -0.00970048 +0.0214864 0.0934187 0.0477129 +-0.0174765 0.0715932 0.0547125 +-0.0246025 0.0824997 0.0540808 +-0.0774249 0.155543 -0.015906 +-0.00557868 0.109705 -0.0221876 +-0.00234233 0.10113 0.044176 +0.0314145 0.0384146 -0.00113672 +-0.0708385 0.0965734 -0.0156262 +-0.0358426 0.0345846 0.0397566 +0.0166934 0.111749 -0.0164123 +-0.0461447 0.0396778 -0.0162811 +0.0460542 0.0820303 0.0141751 +0.024254 0.0776067 -0.0252579 +-0.0585858 0.14384 -0.00236725 +-0.0590542 0.155341 0.0226214 +-0.0425019 0.049221 0.0396798 +-0.0737231 0.156865 -0.0279142 +-0.0640946 0.155219 -0.00966954 +-0.0136075 0.0420889 -0.0267571 +-0.0149109 0.0391012 0.0366853 +-0.0768619 0.116386 -0.00596474 +0.0464851 0.0651547 0.0281822 +-0.0672589 0.077344 0.0400985 +-0.0768893 0.176966 -0.046083 +-0.0870251 0.136346 0.00321516 +-0.046566 0.128368 -0.00156221 +-0.0881324 0.103677 0.0173573 +-0.0358716 0.10426 -0.0206916 +-0.00158589 0.110252 -0.0207823 +-0.0645869 0.117148 0.0471018 +-0.0493593 0.121175 0.032055 +0.00351232 0.0575709 0.0538233 +-0.0114209 0.107659 -0.022044 +-0.0134464 0.0388153 -0.00818864 +-0.0485053 0.108444 0.0391022 +-0.0783276 0.0839475 -0.0105972 +-0.0422429 0.129048 0.0117038 +0.0230175 0.0903576 -0.0236845 +-0.0840147 0.0993167 -0.00358504 +-0.0538991 0.108397 -0.0185513 +-0.00168424 0.0583535 -0.0329231 +0.00135578 0.0347199 0.040341 +-0.0858041 0.131212 0.0485351 +0.0546169 0.0694261 0.0240301 +0.0349752 0.0684447 -0.0157877 +0.0095201 0.0716259 0.0554078 +-0.00749453 0.0952341 0.0547544 +-0.019553 0.163976 -0.00913576 +-0.0640343 0.0457636 0.00169557 +-0.017901 0.0381554 0.0134869 +0.0133255 0.0594987 -0.0290386 +0.00648582 0.047441 0.0497645 +-0.0239518 0.123773 0.0227902 +-0.0318252 0.0609455 -0.0174329 +-0.0928746 0.122834 0.0282828 +0.00226062 0.131309 0.0062251 +-0.0414935 0.112526 0.0356807 +0.0202561 0.0791555 -0.0271913 +-0.0331056 0.0338156 0.0161014 +0.0297787 0.0446629 0.032196 +-0.0792621 0.084024 -0.00957002 +-0.0697175 0.155623 0.0028257 +-0.0391149 0.0337868 -0.0291782 +-0.0893977 0.135151 0.0292068 +0.04371 0.0987542 0.0111628 +-0.0281559 0.0380199 0.00608926 +0.0552084 0.0493743 0.00621284 +-0.0861539 0.149931 0.0300167 +0.042296 0.0775058 -0.00576261 +0.0415736 0.0765545 0.0302447 +-0.0532046 0.133931 0.0318349 +-0.0939252 0.118758 0.016301 +-0.027019 0.123094 -0.00421217 +-0.0471842 0.0355635 -0.0162689 +0.0137449 0.12859 0.0232984 +-0.0388402 0.0957243 -0.0226737 +0.0393482 0.0966985 0.0306886 +0.0405486 0.0596459 0.0301455 +-0.083332 0.0992842 -0.00460735 +0.0403123 0.0491555 -0.00629774 +-0.0135559 0.0378433 -0.0166597 +-0.0655014 0.0958911 0.0424957 +-0.00976126 0.0358952 0.049479 +-0.0624412 0.150596 -0.00171821 +-0.064981 0.131148 -0.00860586 +-0.0763864 0.109432 0.0420745 +-0.00149437 0.0801423 0.0576885 +-0.0163316 0.166866 -0.0132843 +-0.0862104 0.140486 0.00518463 +-0.0484837 0.159357 0.00832828 +-0.063685 0.169395 -0.0455915 +-0.0676574 0.0344024 0.0120657 +-0.0324957 0.0889348 0.0439847 +-0.0285919 0.0494861 -0.0235098 +-0.0925344 0.124191 0.0302708 +-0.0898664 0.135182 0.0372006 +-0.0675175 0.146991 0.0409028 +-0.0643109 0.0721294 0.0381075 +0.0336777 0.107392 0.0312726 +0.0416487 0.0806113 0.0304012 +0.0108925 0.130607 0.00797847 +0.00350574 0.071674 0.0559901 +-0.0687556 0.0680025 -0.00564855 +-0.0668955 0.116554 -0.00922261 +-0.0147132 0.0599449 -0.0358879 +-0.023059 0.0825255 0.0553698 +-0.0305016 0.108423 0.0388291 +-0.0575086 0.0507939 0.00466306 +-0.0811465 0.155009 0.0163089 +-0.0281138 0.125637 0.0139342 +0.00450187 0.0575756 0.0536585 +-0.0124992 0.0745024 0.0565746 +0.030795 0.119096 0.00823469 +0.0112449 0.0943173 -0.0278535 +-0.00350029 0.0856691 0.0572933 +-0.0135749 0.18083 -0.0284353 +-0.0387321 0.0724952 -0.0174162 +-0.0366243 0.151025 -0.00298791 +0.0282135 0.0579727 -0.0197309 +-0.0828916 0.0775885 0.00151125 +-0.00164877 0.0496874 -0.0307148 +0.0386307 0.106935 0.00116239 +-0.0871923 0.0861012 0.021463 +-0.0760841 0.104861 0.0354581 +-0.0244788 0.0486839 0.0492934 +-0.0883766 0.141855 0.0366703 +-0.0509887 0.143164 0.0163768 +-0.0496168 0.0561697 -0.00993077 +-0.00378208 0.0390472 -0.0102032 +-0.0843646 0.087116 -0.00354087 +0.00990951 0.0819581 0.0548044 +-0.0425006 0.0888114 0.0424593 +-0.0728637 0.099356 -0.013752 +-0.0206243 0.0436469 -0.0283402 +-0.0828496 0.117685 -0.00271563 +-0.0715585 0.181081 -0.0541999 +-0.0338561 0.0475081 -0.0226504 +0.00224005 0.0768974 -0.0352993 +-0.0935755 0.117419 0.0183042 +-0.0754318 0.155396 0.00808247 +-0.0674328 0.172594 -0.0425404 +0.027377 0.122298 0.0126488 +0.0174898 0.0874014 0.0499964 +0.0109848 0.123169 0.033628 +-0.0367194 0.0710436 -0.0172369 +-0.0285781 0.0423048 0.0521933 +0.033068 0.0984004 -0.0141329 +-0.0475947 0.0601221 0.0367025 +-0.0635768 0.155628 0.0253794 +0.0262764 0.100811 0.0416679 +0.0147323 0.129513 0.0122405 +0.0321413 0.0366814 0.019545 +-0.00794631 0.127212 -0.00487976 +0.0374618 0.0376657 0.00680115 +-0.0450017 0.0355455 0.0439167 +-0.0613089 0.0634913 0.028639 +-0.0275028 0.0988006 0.0435593 +0.051337 0.0560222 -0.00385605 +-0.0701879 0.175082 -0.0550269 +-0.0424973 0.155091 0.0068798 +-0.0156018 0.0435495 -0.027203 +-0.0387577 0.0797624 -0.0199123 +0.036687 0.0909845 -0.0142871 +-0.0621605 0.170953 -0.0526019 +-0.0503178 0.0515583 0.0186309 +0.0183954 0.0645286 0.0493775 +-0.0816036 0.0774754 -0.00149976 +-0.0167638 0.0728801 -0.0389011 +-0.0612458 0.141043 0.0360828 +-0.0650382 0.153613 0.000196596 +-0.0506214 0.0416531 0.0455899 +-0.0218256 0.086832 -0.0376579 +-0.0368977 0.110447 -0.0189068 +-0.0390704 0.124042 0.0247581 +-0.0145052 0.0544906 0.0506759 +0.0346875 0.0955379 0.0380285 +-0.0427281 0.0478381 -0.0112773 +-0.0589463 0.0436711 -0.00636451 +0.044641 0.0945606 0.00417916 +0.0417801 0.041383 0.0227466 +-0.066757 0.170863 -0.0580345 +-0.0104152 0.0998773 0.0473736 +-0.0467325 0.133652 0.0114554 +-0.0376877 0.163829 -0.000238726 +-0.0725153 0.142823 0.0458217 +0.0207674 0.103342 -0.0194283 +-0.00540678 0.121074 -0.0123374 +-0.0424989 0.102887 0.0413486 +-0.0462349 0.0354247 -0.01929 +0.0180016 0.125305 0.0262968 +-0.0162469 0.184587 -0.0200786 +-0.079084 0.0994215 0.0343706 +-0.0557053 0.132552 0.0352577 +-0.0512629 0.0388692 0.0464256 +-0.0515065 0.160835 0.00704803 +-0.0826893 0.152358 0.0291683 +-0.0584964 0.0932599 0.0452695 +0.024564 0.103479 -0.0175815 +-0.0846694 0.0831371 0.000497005 +-0.0865668 0.118992 0.0483015 +-0.0192412 0.184576 -0.0155995 +-0.00659114 0.03769 -0.0254352 +-0.0245806 0.124862 0.0196194 +-0.0368731 0.105664 -0.0202847 +-0.0621883 0.177235 -0.0596222 +-0.0672213 0.1608 -0.0122924 +-0.0303274 0.0375897 0.0276802 +-0.0234293 0.0522884 0.0423691 +0.0538492 0.0711959 0.0223128 +0.00550075 0.0772523 0.0562045 +0.0438483 0.076237 -0.00278527 +0.00633738 0.0581963 -0.0307089 +-0.0646256 0.0674757 -0.0084666 +-0.0310521 0.0450006 0.0489427 +0.0109104 0.126748 -0.00460652 +-0.0409513 0.128783 0.00774742 +-0.000502218 0.0938722 0.0552243 +-0.0166066 0.035315 -0.0186674 +-0.02118 0.169768 -0.013264 +-0.048723 0.166988 -0.000980568 +0.0301667 0.116977 -0.00204442 +-0.0129037 0.181603 -0.0240442 +-0.0461681 0.033576 -0.00628041 +0.0377831 0.0813859 -0.0147095 +-0.050774 0.143198 0.0153986 +-0.0591392 0.118534 -0.0111826 +0.0601642 0.0622865 0.0071402 +0.0055201 0.0674746 0.0556049 +0.0539548 0.0603844 -0.00239402 +0.0345037 0.0468848 0.0307194 +-0.0226112 0.04084 -0.0289768 +-0.088041 0.0995721 0.00642464 +0.0313753 0.111403 0.0314731 +-0.0818093 0.0776109 0.0245029 +0.0196586 0.112307 -0.0150514 +-0.0547371 0.114833 -0.0154193 +-0.00335753 0.11894 -0.0140663 +-0.0675878 0.0614559 0.0185068 +-0.0374891 0.0973119 0.0427062 +-0.0618754 0.0967815 -0.0181397 +-0.0177948 0.161129 -0.00657359 +-0.0762411 0.0901005 0.0388673 +-0.00749994 0.0647419 0.0560829 +-0.0872439 0.132483 0.0457019 +-0.0207923 0.0756874 -0.0390657 +0.00773677 0.0341095 0.00222437 +-0.00405506 0.101077 0.0451334 +-0.0537766 0.0826585 -0.0215583 +-0.0484986 0.0425777 0.0442245 +0.0370248 0.10907 0.0248298 +0.0550045 0.0727719 0.0183019 +-0.0531047 0.0345095 0.0361399 +0.0240424 0.122784 0.0256717 +-0.0321586 0.0349269 0.0472031 +-0.0487458 0.123267 -0.0102852 +0.0164927 0.107123 0.0418084 +-0.0518639 0.0999443 -0.0218198 +-0.0259535 0.0592275 0.0392168 +-0.0169683 0.186741 -0.0196674 +0.012157 0.123544 0.032833 +-0.0236685 0.0919017 0.0500491 +0.0048864 0.127407 -0.00526463 +-0.00324909 0.0389153 -0.000648163 +0.0108689 0.0576426 0.0524778 +0.0396737 0.107002 0.0161655 +-0.0816849 0.073475 0.00953613 +-0.0743109 0.165184 -0.0390136 +-0.0728909 0.120866 -0.00826881 +0.040969 0.0926354 0.0294955 +-0.00410534 0.0385566 0.0231802 +-0.0167703 0.0742961 -0.0390024 +0.0376363 0.109584 0.0207569 +0.00538144 0.0464854 -0.0270709 +-0.0503176 0.0388958 0.046006 +-0.0793777 0.154922 0.0242883 +-0.0476898 0.0679558 -0.0146484 +-0.0108886 0.108738 -0.0217426 +-0.0532571 0.151368 0.0204421 +-0.068651 0.163792 -0.0529788 +-0.0441151 0.0643553 0.040206 +-0.0275094 0.107088 0.0401149 +-0.0275566 0.0890776 0.0469337 +-0.0274957 0.102963 0.0425886 +-0.0266136 0.0837142 0.0504396 +0.015157 0.122808 -0.00836184 +-0.0234279 0.0636514 0.0436342 +-0.00941329 0.0943623 -0.0340451 +-0.0174189 0.178658 -0.0183022 +-0.0187779 0.183117 -0.0166827 +0.0130462 0.129592 0.0201813 +-0.0751825 0.149958 -0.0238676 +0.00897367 0.131122 0.0172577 +0.0483469 0.0589383 -0.00490848 +0.0422406 0.0986762 0.0221715 +-0.0921564 0.130934 0.011242 +-0.0327106 0.0764924 -0.028531 +0.0102149 0.0725802 0.055192 +-0.0636711 0.0593571 0.0158341 +-0.0123306 0.0394822 0.0386711 +-0.0718333 0.156164 0.022455 +-0.0864971 0.150096 0.00821548 +-0.0110742 0.123419 -0.00875247 +-0.080097 0.11274 -0.00201289 +-0.00271881 0.0655507 -0.0345764 +0.00140103 0.0390882 -0.0248121 +-0.0618299 0.0939366 -0.0189413 +-0.0716693 0.147461 -0.0281971 +-0.0231858 0.17269 -0.0205136 +-0.0637876 0.155678 -0.0402328 +-0.0228589 0.0637031 0.0444908 +-0.0238626 0.169762 -0.0118641 +-0.0752191 0.155599 0.0242023 +-0.0345019 0.0461718 -0.0254652 +-0.01605 0.0946681 0.0536372 +0.0246905 0.0477085 0.0389599 +0.0101881 0.0341976 -0.00109267 +-0.0293326 0.154386 -0.00360575 +0.00276097 0.131717 0.0121378 +-0.0859012 0.0899317 0.000454719 +-0.0297834 0.121969 -0.0069874 +-0.0297126 0.0508986 -0.0203549 +-0.0888501 0.151809 0.0151852 +-0.0824868 0.0965084 -0.00559576 +-0.0279025 0.124426 0.000511349 +-0.0111071 0.0879305 -0.0374747 +-0.0895782 0.133632 0.00522749 +-0.0325779 0.0341004 0.0231549 +-0.087069 0.100891 0.00537711 +-0.0182966 0.038653 -0.00715499 +-0.0181652 0.097581 -0.0254283 +0.00716304 0.0378885 -0.010707 +-0.0117789 0.0582633 0.0533407 +-0.0679898 0.154859 0.0296647 +0.0270346 0.0384464 0.0278157 +-0.0446977 0.147484 -0.0025954 +-0.0797208 0.0757926 0.0264575 +-0.0827795 0.113314 0.0464356 +-0.0405007 0.118003 0.0314814 +0.00913581 0.103011 -0.0206427 +-0.0712761 0.153449 0.0330143 +0.0296113 0.108994 -0.0114792 +0.0120747 0.0958655 -0.0254962 +-0.0357119 0.0695868 -0.0167299 +-0.0777217 0.159728 -0.0179219 +-0.0619192 0.0343817 0.0361087 +-0.0839142 0.0843714 -0.00355138 +0.0295472 0.11806 0.0262972 +-0.0344935 0.0733008 0.0417052 +0.0305902 0.0996469 -0.0155371 +-0.0731059 0.151228 -0.0378853 +-0.0740388 0.151266 -0.032878 +-0.0419789 0.152954 -0.00736227 +-0.00349089 0.112806 0.0419152 +0.00607582 0.0348373 0.023168 +-0.000568628 0.0388214 0.0254737 +0.0445611 0.0931651 0.0181595 +-0.0469298 0.126751 0.026776 +-0.0318643 0.104333 -0.0219242 +0.0119312 0.0725978 0.0541603 +-0.0435985 0.108724 -0.0190759 +-0.0274517 0.043312 0.0519115 +-0.00149233 0.077429 0.0585147 +-0.0618993 0.0433992 0.0415482 +0.0131559 0.129936 0.00738875 +0.00749621 0.107111 0.0412811 +0.0354668 0.0573224 -0.0106723 +-0.0211412 0.0652998 0.0483526 +-0.00680045 0.129424 0.0244883 +-0.0187344 0.126979 0.0202236 +0.00853139 0.0813381 0.0552215 +-0.0254455 0.0389929 0.0381911 +-0.0507728 0.111366 -0.017973 +-0.027716 0.0387019 -0.0165247 +-0.000266462 0.0936214 -0.0332218 +-0.0855847 0.0806062 0.0194802 +0.0100369 0.130324 0.00340984 +-0.0449017 0.148739 -0.00386394 +-0.0321132 0.0482449 -0.0223421 +-0.0893696 0.140675 0.0341739 +0.0448261 0.0875458 0.0221634 +-0.0454912 0.0719252 0.0419203 +-0.0718306 0.148291 -0.0327712 +-0.0812513 0.108802 0.0293202 +0.0429574 0.0859786 -0.00579554 +-0.0338336 0.0380945 -0.0153271 +-0.060738 0.148827 -0.00180261 +-0.0568701 0.141076 -0.0033696 +-0.0358396 0.125396 0.0214464 +-0.0789386 0.168616 -0.0354931 +-0.0315115 0.108439 0.0386203 +-0.0842691 0.117693 0.0488129 +-0.032501 0.101545 0.0423652 +-0.0289779 0.174216 -0.00689295 +-0.0622726 0.163207 -0.0582148 +-0.00885889 0.172674 -0.0247544 +-0.0519291 0.13698 0.0263868 +-0.0829532 0.112769 0.000219247 +-0.0237394 0.038003 0.0142418 +0.0321413 0.0513188 -0.0087021 +-0.0473947 0.0359569 0.0452833 +-0.0488828 0.108449 -0.0190525 +0.0415402 0.0928967 -0.0067838 +-0.0800241 0.0745873 0.0239149 +0.005197 0.0866258 -0.0333998 +0.00148166 0.107215 0.0427825 +-0.0694376 0.159556 -0.0509365 +-0.0306541 0.0650706 -0.0234343 +-0.0653365 0.167223 -0.0303028 +-0.0262324 0.15581 -0.00635861 +-0.0362329 0.165306 -0.00162934 +-0.00330758 0.0379537 -0.0147265 +-0.0267799 0.0893467 -0.0340353 +-0.0591073 0.155657 0.0168017 +-0.0331866 0.15511 0.000984746 +-0.0671323 0.152011 0.0359968 +0.0112495 0.0710359 -0.0320326 +-0.0289103 0.0508426 -0.0224168 +-0.0582351 0.043574 0.0153571 +-0.0770169 0.112922 0.0479771 +-0.0146932 0.0570315 -0.0346956 +-0.0735209 0.134443 0.0506533 +-0.0445794 0.130477 0.0137726 +-0.0744939 0.127436 0.052791 +-0.0376156 0.0492564 -0.0118933 +-0.0462534 0.123907 0.0259058 +-0.0434909 0.104315 0.0413728 +-0.0779429 0.0893818 -0.0115854 +-0.067492 0.10005 0.0413205 +-0.0882017 0.0949941 0.0238463 +0.0438775 0.06952 0.000229591 +-0.0171444 0.168289 -0.0207283 +-0.0236004 0.0383091 -0.00235181 +-0.0697889 0.172796 -0.0390999 +-0.0291426 0.042089 -0.0296009 +-0.0446441 0.0338442 0.00651202 +-0.000500925 0.121055 0.0369996 +0.022042 0.12426 0.000701449 +0.00803725 0.125889 0.0313 +-0.0517799 0.0840941 -0.0216716 +-0.0145005 0.0842486 0.056982 +-0.0886066 0.113065 0.00725433 +0.0156656 0.0713152 0.0525386 +-0.0164665 0.068805 0.0544258 +0.0182285 0.0820502 -0.0281776 +-0.00610364 0.0386755 0.000846714 +-0.0599938 0.126727 -0.00781868 +-0.0155017 0.100285 0.044225 +-0.0638562 0.0423917 -0.00506847 +-0.0444796 0.0338614 0.0280014 +-0.000499767 0.100727 0.0463954 +-0.0162094 0.172709 -0.0239586 +-0.0690346 0.0338087 0.00696066 +-0.062316 0.158431 -0.019584 +0.00644358 0.129282 -0.00129108 +0.0188124 0.0393785 0.042705 +-0.0847946 0.140657 0.0430258 +-0.0835274 0.0979539 0.0303801 +-0.0241902 0.160559 -0.0136368 +-0.06502 0.161419 -0.0172527 +-0.0772789 0.154395 0.0279022 +-0.0681261 0.15638 0.0193912 +-0.0337268 0.111492 -0.0180397 +-0.0323736 0.176483 -0.0134412 +-0.0291608 0.0806486 0.0445728 +-0.0846331 0.0781756 0.0181083 +-0.0498753 0.106996 -0.0192538 +0.00350083 0.0730867 0.0562031 +-0.0231171 0.0347933 0.0492623 +-0.0616059 0.0342155 0.0188015 +-0.0516 0.0545447 0.0296397 +-0.0763817 0.169448 -0.0429673 +-0.069513 0.17974 -0.0519891 +-0.0588484 0.13671 0.0342246 +-0.0780833 0.1597 -0.0209281 +0.00109253 0.113026 -0.0199046 +-0.0227366 0.157094 -0.00651614 +0.0344933 0.0929192 0.0394802 +-0.000408544 0.126448 -0.00615558 +-0.0805024 0.128853 0.052889 +-0.00020637 0.0947598 -0.0324026 +-0.089811 0.143072 0.0296513 +0.0321792 0.0929416 0.0413986 +-0.0145721 0.168692 -0.0222333 +0.0595491 0.0594739 0.0201736 +-0.0810451 0.0800939 -0.00453207 +-0.0267843 0.0880044 -0.0350453 +-0.040033 0.126629 -0.00388698 +-0.0208083 0.0348218 0.0462671 +-0.082826 0.11472 -0.00162443 +-0.0301654 0.12556 0.01613 +-0.0485613 0.0418518 -0.011173 +-0.0784181 0.163881 -0.0269512 +0.0387541 0.0617571 -0.00875906 +0.0464006 0.0792571 0.0121793 +-0.00359562 0.043415 -0.0257386 +-0.0333921 0.126443 0.0164188 +-0.00106292 0.130975 0.00499363 +-0.0668008 0.060458 0.0159676 +-0.0254977 0.107106 0.0408331 +-0.0682758 0.06442 0.0246162 +-0.0298175 0.125729 0.00888885 +-0.088267 0.147416 0.00925394 +0.0542609 0.050631 0.00222604 +0.0422118 0.100079 0.0191646 +-0.081175 0.14869 0.00117764 +-0.0344163 0.0346761 0.0417292 +-0.0623017 0.163119 -0.0425932 +-0.0298952 0.0565521 -0.0204023 +-0.076686 0.0781369 0.0338733 +-0.0338704 0.102893 -0.0218261 +-0.0355104 0.0775398 0.0419002 +-0.0584924 0.0630612 0.0296076 +0.0454221 0.0889974 0.0141646 +-0.0417964 0.0347181 0.00810808 +0.0363875 0.0505227 -0.00658574 +-0.053281 0.144674 0.0233765 +0.0262687 0.0352193 0.019674 +-0.0168964 0.123328 -0.00656517 +-0.0606083 0.118309 0.0403758 +0.00639612 0.0418759 -0.0239341 +0.0231261 0.0431609 -0.0107258 +-0.00718079 0.0390105 -0.0127195 +-0.00364386 0.0901332 -0.0356262 +-0.00854262 0.033753 -0.0231542 +-0.0124761 0.0531764 0.0512005 +-0.0231395 0.168252 -0.0189417 +0.0233331 0.0354178 0.02435 +-0.000241537 0.0397743 0.0467748 +-0.0723661 0.147118 -0.0228625 +-0.0517688 0.0612265 0.030932 +-0.063068 0.161146 -0.0557557 +-0.0279123 0.0793217 0.046185 +-0.0627986 0.0441541 -0.00325511 +-0.0165065 0.100263 0.0439632 +-0.0217072 0.0582569 -0.0327502 +0.0254642 0.12325 0.0062381 +-0.086501 0.0833246 0.0174861 +-0.074502 0.11613 0.052068 +0.032458 0.0910982 -0.0184345 +-0.0729629 0.155811 0.0249814 +-0.0506733 0.162525 0.00564316 +-0.0697867 0.034416 -0.00452426 +0.0189467 0.0754919 0.0520404 +-0.0165401 0.0997826 0.0440769 +-0.086829 0.0847067 0.0174745 +-0.0474936 0.146975 -0.00223523 +-0.065417 0.154594 -0.0449582 +-0.0614906 0.0590888 0.0075192 +-0.0686207 0.128453 0.0500102 +-0.023162 0.0958328 0.0451924 +-0.0258056 0.0550238 0.0391969 +-0.0102599 0.0407381 0.0498453 +-0.0664749 0.0875478 0.0443297 +0.0581415 0.0538012 0.00818348 +-0.0384918 0.0903063 0.0434643 +-0.0457684 0.132352 0.0133121 +-0.0728932 0.0941961 0.0410307 +-0.0809085 0.111715 -0.000772193 +-0.0833393 0.0979244 -0.00460929 +-0.0671961 0.15591 -0.00355939 +-0.0455114 0.0338265 0.027816 +0.01975 0.0343373 0.00255688 +-0.0875501 0.120326 0.0478169 +0.0353576 0.0505704 -0.00670224 +0.00356645 0.0339958 0.0125338 +0.0590653 0.0552605 0.0161784 +-0.084435 0.0791603 0.0205035 +-0.0255122 0.0349295 -0.0287387 +-0.0724789 0.110508 0.0438845 +0.00447986 0.0385716 -0.0118677 +-0.066989 0.136993 -0.00809827 +0.0384287 0.064558 0.0344028 +-0.0516036 0.0560273 -0.00839821 +-0.00350028 0.110017 0.0429859 +-0.0111634 0.0391658 0.035606 +0.0183426 0.0906063 -0.0259275 +-0.031909 0.154239 -0.00732019 +-0.0800971 0.0773092 -0.00453369 +-0.0190564 0.0920061 -0.0357108 +0.0133608 0.0494245 -0.0271921 +-0.0787339 0.140316 -0.00472414 +-0.0275167 0.116662 0.0324113 +0.00652621 0.104352 0.0432895 +0.0358497 0.0713653 0.0377445 +-0.0918605 0.116299 0.0240619 +-0.0522199 0.061167 0.0299696 +-0.0201447 0.166816 -0.0117812 +-0.0433732 0.122414 -0.0114499 +-0.0645963 0.0430073 0.0358234 +-0.0779043 0.1583 -0.0209193 +0.0367132 0.0547551 0.0317845 +-0.0351109 0.16372 -0.0144674 +-0.0434603 0.109995 -0.0184047 +-0.0576869 0.0677197 -0.0118328 +0.00623854 0.074018 -0.0343382 +0.0443987 0.0959613 0.0131589 +-0.089865 0.120262 0.0458544 +0.0103837 0.0449023 -0.0251665 +-0.0770006 0.139838 -0.00569476 +-0.072687 0.0955359 0.0408041 +-0.0569361 0.046073 0.0125834 +-0.0604913 0.0818799 0.0434166 +-0.0460645 0.151688 -0.00554828 +-0.015331 0.0349099 0.0491212 +-0.0229594 0.0811266 0.055321 +0.0274663 0.0754645 0.0450048 +-0.00267666 0.0374926 0.0135597 +-0.011518 0.0673875 0.054571 +0.013368 0.122467 -0.00997636 +-0.0722821 0.143895 -0.0129091 +0.0454962 0.0443878 0.000424365 +-0.0127602 0.0382241 0.0199007 +-0.091546 0.146121 0.023146 +0.00392744 0.0371222 0.0242968 +-0.0385489 0.119476 -0.0123722 +0.0114833 0.0936471 0.0518498 +-0.0643328 0.146767 0.0386771 +-0.0624894 0.163088 -0.0505885 +-0.0375004 0.0464372 0.040096 +0.0460037 0.0834239 0.0131685 +0.033027 0.108336 -0.00876159 +0.013228 0.0990749 -0.0229052 +0.034148 0.0442132 0.0295363 +-0.0907186 0.113289 0.0113419 +0.0210633 0.106016 0.0411627 +-0.0454948 0.119311 0.0290591 +-0.0676975 0.0607342 0.0101856 +-0.0195364 0.0461211 0.0518679 +0.0161339 0.0672434 0.0514025 +-0.0693216 0.0620201 0.0176481 +0.0429729 0.0944315 -0.00180352 +-0.0494828 0.135763 0.0221907 +-0.060805 0.0867676 -0.0196616 +-0.0247298 0.125997 0.0151584 +0.059297 0.0608379 0.0211666 +-0.080116 0.153024 0.0299773 +0.0574282 0.0681585 0.00377242 +-0.0535498 0.0486673 -0.00635158 +-0.0304741 0.177281 -0.004356 +-0.0855011 0.0792275 0.0175034 +-0.0804698 0.130248 0.0526854 +0.000343862 0.0539275 -0.0306641 +-0.0900062 0.133811 0.0372136 +0.0104354 0.0347372 0.0259595 +-0.0574962 0.0440189 0.0444763 +-0.0573422 0.0335757 0.00237022 +0.0404449 0.0739232 0.0320846 +-0.00464724 0.0496642 -0.0307417 +-0.0311133 0.0510509 -0.015361 +0.0169782 0.128539 0.0144983 +-0.0872732 0.151714 0.0113029 +-0.0345546 0.0409268 0.0482929 +-0.0745628 0.173554 -0.0490908 +-0.0213027 0.0381376 0.0110019 +0.0223647 0.0782061 0.0499784 +0.0111959 0.0879068 -0.0311136 +0.0141654 0.115006 -0.0159235 +-0.0175094 0.116845 0.0368185 +0.0185047 0.0369619 -0.0146835 +-0.0924063 0.129578 0.0112381 +-0.00949945 0.0517772 0.0514996 +-0.0666563 0.0656524 -0.0048951 +-0.0494962 0.100168 0.0429965 +0.00776642 0.130336 0.022539 +-0.0564976 0.0904367 0.0452654 +-0.0648339 0.153263 -0.0390895 +0.0140569 0.12802 0.0248446 +-0.00977705 0.174183 -0.0237537 +-0.0154865 0.0530505 0.0500296 +-0.0627622 0.0810191 -0.0190992 +-0.0385594 0.173184 -0.00190958 +-0.00314149 0.0972112 0.0530078 +-0.0418773 0.107078 -0.0201516 +0.0363342 0.109637 -0.000829727 +0.021507 0.126326 0.01189 +-0.030496 0.0988081 0.0439786 +-0.0769628 0.150462 0.0371334 +-0.0941104 0.126894 0.0182531 +-0.0255083 0.112568 0.0366767 +-0.0746801 0.157704 -0.00556618 +-0.0418449 0.0971142 -0.0220611 +-0.0359493 0.125342 -0.00457539 +-0.0258164 0.0853463 -0.0368715 +0.0497106 0.0482066 0.0259506 +-0.0716942 0.1568 -0.0399156 +-0.0618117 0.0590403 0.0165038 +-0.0714498 0.15679 -0.0419165 +-0.0701989 0.0368637 0.0105096 +0.0597267 0.0636404 0.0201833 +-0.0915748 0.124221 0.0431828 +-0.0690929 0.156328 0.0219534 +-0.0302767 0.0622182 -0.0224251 +-0.00771091 0.0627931 -0.0356131 +0.0394872 0.0513548 0.03224 +-0.0229845 0.0724431 0.0499564 +-0.0290201 0.125445 0.00626167 +-0.0729777 0.138423 -0.00695981 +-0.00991212 0.111561 -0.0201766 +0.000200297 0.0825801 -0.036136 +0.0364442 0.0590953 0.0349595 +0.0364996 0.0928818 0.0370772 +-0.0181329 0.0432293 0.0524811 +0.00280759 0.0350639 0.0204847 +-0.0626379 0.152126 -0.0285986 +-0.0704211 0.15543 0.027334 +0.000301963 0.100099 0.0481787 +-0.049492 0.0917757 0.044207 +-0.015502 0.0897786 0.0564851 +-0.0318792 0.156356 -0.0104816 +0.0416778 0.102863 0.015161 +0.0504722 0.048918 -0.000684915 +-0.0611415 0.0359024 -0.0090437 +-0.0264937 0.098817 0.0439871 +-0.000436317 0.122463 0.0356275 +-0.0875676 0.129767 0.0460862 +-0.0312863 0.0777611 -0.0325602 +-0.0303664 0.112853 -0.0174686 +-0.00773829 0.0684701 -0.0360951 +-0.0647534 0.156678 -0.0475943 +-0.0891175 0.0983455 0.0194044 +0.00833741 0.055373 -0.0305597 +-0.0550257 0.131065 -0.00539027 +-0.0305029 0.0689001 0.0393777 +-0.0596554 0.0343168 0.0331724 +0.0436089 0.0680569 -0.000247417 +-0.0786395 0.163873 -0.0279533 +-0.0574243 0.0613459 0.0260206 +-0.0338728 0.0483909 -0.0193366 +-0.0287306 0.074519 0.0412207 +0.016916 0.0577101 0.0489225 +-0.0184307 0.0347944 0.0485523 +-0.0655112 0.0803784 0.0426229 +-0.0332327 0.160967 -0.000804209 +-0.0533105 0.0541891 0.0115512 +-0.0356689 0.117866 -0.0126779 +-0.0699903 0.034504 0.00971713 +-0.0588141 0.0341524 0.0282501 +-0.0177813 0.0770869 -0.0388032 +0.0445157 0.0467554 0.0289718 +0.00964716 0.128306 -0.00229994 +-0.0666126 0.148623 0.0392621 +-0.0325544 0.0348985 0.0454309 +-0.0623108 0.039732 0.0166963 +-0.0917483 0.122888 0.0433845 +0.0271866 0.0819517 -0.0229154 +-0.00863658 0.0467032 -0.0298179 +-0.0620847 0.166243 -0.0515916 +-0.0912832 0.125583 0.0428488 +-0.0588072 0.0481223 0.00266039 +-0.0913122 0.133748 0.0212171 +0.0482658 0.0433313 0.0185611 +0.00774922 0.0351262 -0.0136823 +0.0357585 0.0562848 0.0339755 +-0.029123 0.166739 -0.016877 +-0.0338028 0.122413 -0.00742547 +0.0216799 0.0415358 -0.0117265 +-0.0257594 0.171231 -0.0110774 +-0.0641199 0.162494 -0.0212451 +-0.0535748 0.155622 0.0115317 +0.0531674 0.0736169 0.0146631 +0.0135129 0.0347107 0.0374491 +0.0227019 0.123147 0.0266031 +0.025252 0.0719314 -0.0249494 +0.0309797 0.118122 0.0225615 +0.0415492 0.0724945 0.03012 +0.000493498 0.119652 0.0380928 +0.0229975 0.123119 -0.000380287 +0.0234322 0.100371 -0.0202365 +-0.0620057 0.153738 -0.0265835 +-0.0398723 0.105663 -0.0203219 +-0.0632416 0.0445478 0.0366988 +-0.0310386 0.154131 -0.00157547 +-0.0042992 0.0348909 0.0408189 +-0.00181562 0.0826307 -0.0368615 +0.0388816 0.0927717 0.0335536 +-0.0335058 0.0760991 0.0415371 +-0.0314963 0.0917789 0.0442247 +-0.0512549 0.0612644 0.0318233 +-0.00281159 0.131227 0.0100802 +-0.0531145 0.157563 -0.00324336 +-0.0635867 0.03486 0.0405057 +-0.0627936 0.15522 -0.0356106 +0.0166245 0.122097 0.0315907 +-0.0106759 0.119083 -0.0141801 +-0.0465015 0.0689677 0.0402969 +-0.0626599 0.0423324 0.0141491 +-0.0515376 0.053149 0.0306286 +0.00413437 0.124074 -0.00964261 +-0.0105331 0.127013 0.0275477 +-0.042312 0.0337552 -0.0130352 +0.0472026 0.0681414 0.0256953 +0.0213439 0.0741385 0.0502206 +0.0156241 0.128368 0.0211329 +0.0358549 0.0843357 -0.0172902 +-0.0533892 0.064921 0.0343521 +0.0273368 0.091573 0.0449418 +-0.0440333 0.0423079 -0.0173091 +-0.0764978 0.13864 0.0490601 +0.00750117 0.0716903 0.0560753 +0.0454321 0.0861887 0.0181684 +-0.0812985 0.084505 0.0328118 +-0.0605375 0.155317 0.003221 +-0.0065332 0.130449 0.0187888 +0.0247646 0.122114 0.0259409 +-0.0711064 0.152637 0.0345827 +-0.0155013 0.0716083 0.0551341 +0.0277791 0.0822205 0.0455159 +-0.0445183 0.0675631 0.0404632 +-0.0772746 0.147261 -0.00486297 +-0.0868795 0.0927253 0.00342064 +-0.0458425 0.0985138 -0.0217256 +-0.0906083 0.131058 0.0342318 +-0.091547 0.146101 0.0191506 +-0.00249086 0.116945 0.0398999 +0.0385734 0.0699568 0.0346425 +-0.0129648 0.116833 -0.0157687 +0.0215791 0.120444 0.0319368 +-0.0899229 0.115405 0.0270455 +-0.0697992 0.0836733 -0.0171139 +-0.0415794 0.128056 0.0149128 +-0.0734779 0.180121 -0.0504836 +-0.0466973 0.0665278 -0.0146823 +-0.0673893 0.156703 -0.00509746 +0.00108438 0.119342 -0.0145393 +-0.019494 0.0842608 0.0571688 +0.0285713 0.0551672 -0.0188053 +0.00650695 0.0731027 0.0564796 +-0.0557862 0.0854763 -0.0214113 +-0.0743851 0.163815 -0.0369793 +-0.0286768 0.123948 -0.00103929 +-0.0301123 0.163751 -0.0154896 +0.0410386 0.099944 -0.00278716 +0.00848446 0.0518256 0.0516867 +-0.051108 0.0530218 0.0319282 +-0.0905758 0.113954 0.0388293 +-0.00470317 0.038779 0.00289117 +-0.0247258 0.0638997 -0.032873 +-0.04111 0.159177 -0.0108205 +-0.0892399 0.140676 0.0351725 +-0.075004 0.141334 -0.0064915 +-0.0463338 0.132474 0.00863126 +-0.0541416 0.034749 0.0443256 +-0.0781873 0.168068 -0.0319708 +0.0328915 0.0696754 -0.0177356 +0.0346158 0.0369318 0.00517598 +-0.0694908 0.124597 0.0526574 +0.0581844 0.0711857 0.0106064 +-0.0378081 0.0841771 -0.022143 +-0.0281622 0.169703 -0.0179592 +0.0305485 0.118199 0.0238252 +-0.0289649 0.0747374 -0.0345478 +-0.0272221 0.0904382 0.0465675 +-0.0514982 0.0848246 0.0453901 +-0.051623 0.0531083 0.0226238 +-0.0398125 0.0899922 -0.0232612 +-0.0236559 0.0709438 0.0478646 +-0.053816 0.0559281 -0.00642904 +0.0603322 0.0636924 0.0181801 +-0.0884616 0.136381 0.00620417 +-0.0394936 0.046476 0.0404962 +-0.0530638 0.0723343 0.0404003 +0.0102711 0.0695708 -0.0315811 +0.0339253 0.115718 0.0108315 +-0.0295473 0.0358282 0.0521362 +0.0116453 0.090034 0.0538428 +0.0450904 0.0875663 0.0201674 +0.0326336 0.0519746 0.0346532 +0.03367 0.072742 0.0398859 +0.024638 0.124378 0.010214 +0.0415181 0.0484385 0.0321463 +-0.044143 0.159411 0.00624881 +-0.0495653 0.047469 -0.00900107 +-0.0894571 0.131034 0.0422704 +-0.075804 0.161028 -0.0299559 +-0.0164919 0.0968814 -0.0286925 +0.0229929 0.0371968 0.0317242 +0.0352506 0.101471 -0.011425 +-0.049558 0.0389942 -0.0116749 +-0.0223649 0.171249 -0.0132085 +-0.0667327 0.078026 -0.0171522 +0.0442166 0.0846846 -0.00180459 +-0.0518774 0.104165 -0.0200373 +-0.0393536 0.0336231 0.00416845 +0.00720473 0.0823989 -0.0333538 +-0.0288578 0.101545 -0.0231915 +0.0245524 0.106048 0.0391612 +-0.0851811 0.0897279 0.0280525 +-0.00334607 0.0347739 0.0411187 +-0.0430221 0.128224 0.015861 +0.0243931 0.0503998 -0.0217952 +-0.0394902 0.0506047 0.0393469 +0.0293799 0.0892796 -0.0205263 +-0.0574934 0.0875623 0.0444505 +-0.0644211 0.0347126 0.0370276 +-0.0169241 0.181626 -0.0193127 +-0.0564978 0.0732565 0.0410435 +-0.0544221 0.144671 0.0284168 +0.0203184 0.0650483 -0.0276666 +-0.0648645 0.041891 0.032665 +-0.0451284 0.159142 -0.00893675 +0.0451235 0.093189 0.0121575 +-0.0577489 0.0479998 -0.00135721 +-0.0606371 0.0448145 0.012064 +0.0495086 0.0638139 0.0293036 +0.0458685 0.0862133 0.0111669 +-0.0531099 0.136165 -0.00197183 +0.0285441 0.0509095 -0.0177614 +-0.013074 0.0383381 0.00704947 +-0.0223231 0.0391341 0.0387105 +0.0393846 0.0429207 -0.00283799 +0.0202147 0.0847891 -0.0269071 +0.00923869 0.035402 -0.0117616 +-0.060367 0.11933 -0.00999174 +-0.0772797 0.157576 -0.0127941 +-0.0732669 0.179344 -0.0490063 +-0.0683896 0.0420777 -0.000309277 +-0.0539058 0.102757 -0.0202213 +-0.0453256 0.169857 -0.00299568 +-0.0616838 0.0659304 -0.00830259 +0.00414244 0.129952 4.9397e-05 +-0.0404915 0.113924 0.0347061 +-0.0942425 0.120105 0.0182851 +-0.0324906 0.080327 0.0414535 +0.0529677 0.0595446 0.0290441 +-0.0904857 0.114242 0.0332623 +-0.0703591 0.181312 -0.0565189 +-0.0475241 0.112407 -0.0169253 +0.0109831 0.0341684 -0.0140433 +-0.089612 0.139257 0.0251846 +-0.0373738 0.0365422 0.044687 +0.0564401 0.0662549 0.00171258 +-0.0581251 0.0334091 -0.00125013 +-0.0407273 0.0696207 -0.0166002 +-0.0669961 0.165196 -0.05701 +0.0131268 0.120538 0.0349816 +0.0367009 0.0812747 -0.0157528 +-0.0077824 0.0784642 -0.0379203 +-0.0647128 0.155185 0.0278857 +0.00549498 0.0951378 0.0528545 +-0.0108057 0.0342947 -0.0255969 +-0.0911579 0.129687 0.0342384 +-0.080608 0.0720682 0.0165498 +-0.073439 0.148627 -0.0298053 +-0.0271937 0.174158 -0.0183459 +-0.0244966 0.0509689 0.0431921 +-0.00162246 0.0450436 -0.027024 +-0.0775221 0.104823 0.0340694 +0.0154861 0.0927165 0.0506449 +-0.0599536 0.123822 -0.00839074 +-0.079866 0.0706372 0.0115498 +-0.0815235 0.0899003 0.0328752 +0.0313378 0.118325 0.00558524 +0.0248331 0.123944 0.0188283 +-0.0898787 0.112224 0.0169361 +-0.0662043 0.065068 0.0280019 +0.0246717 0.0434401 -0.00867806 +-0.0469681 0.134154 0.0128397 +-0.0291377 0.0860908 -0.0335904 +0.0147704 0.0519654 0.0475176 +-0.0296475 0.169744 -0.0079151 +-0.0211888 0.175661 -0.0220113 +-0.0347689 0.0780934 -0.0215038 +-0.013019 0.129549 0.0120959 +0.0421932 0.0662609 -0.00283376 +0.0111358 0.0352671 0.0436641 +-0.0705399 0.100871 0.0399167 +-0.0604975 0.0832903 0.0437356 +-0.0659485 0.126772 -0.00885106 +-0.0702518 0.06756 0.0285092 +-0.00688661 0.108791 -0.0226031 +-0.0786437 0.112204 0.0464731 +0.00637271 0.130879 0.0205945 +-0.066894 0.110895 -0.0121462 +0.0123118 0.0623753 -0.0299343 +-0.0285044 0.109801 0.0380702 +0.00650421 0.0883449 0.0558788 +-0.0545694 0.124267 -0.00721739 +-0.0626588 0.161511 -0.0455953 +-0.0861214 0.132549 0.0473951 +-0.0627776 0.125519 0.0444184 +-0.0177321 0.160293 -0.0123373 +-0.0490182 0.0345781 0.0369526 +-0.0297799 0.106834 -0.0211406 +-0.079558 0.151858 0.0332132 +-0.0404921 0.0648693 0.0415314 +-0.0530069 0.153493 0.0132253 +-0.0339683 0.0485791 0.0404406 +-0.0421354 0.0449426 -0.0173193 +-0.0517467 0.076797 -0.0188523 +-0.060863 0.0583083 0.0137477 +0.0112347 0.0794806 -0.0318525 +0.00351036 0.0856577 0.0572413 +-0.0648576 0.101039 -0.0173044 +-0.0601123 0.0381131 0.0455939 +-0.015494 0.0515277 0.0489706 +-0.0275254 0.1668 -0.00838328 +-0.0365126 0.077567 0.0421306 +-0.0195832 0.1596 -0.0115811 +0.00251466 0.0744821 0.0563666 +0.0589788 0.062133 0.0220601 +-0.066902 0.117219 0.0507079 +-0.0396194 0.0335538 -0.0253204 +-0.0297618 0.107877 -0.0202294 +-0.00601771 0.0990415 0.0504631 +-0.084398 0.0778007 0.013518 +0.0271613 0.0368693 0.0238228 +-0.0589877 0.0335902 0.00921609 +0.029871 0.0968887 0.0415927 +0.00949394 0.0426698 0.0450285 +-0.0697739 0.0382195 0.0100596 +0.0231426 0.0768603 0.0493195 +-0.00501253 0.125042 0.0324689 +-0.00710159 0.0387114 0.00061319 +-0.0177128 0.0599179 -0.0354327 +-0.045698 0.157938 0.00750606 +0.00190257 0.130874 0.00322319 +-0.0444648 0.0945053 0.0429498 +-0.0772757 0.148645 -0.0058688 +-0.069822 0.156776 -0.00162593 +-0.0445001 0.117958 0.0308281 +-0.0409685 0.0462375 -0.0173222 +-0.0305996 0.0509893 -0.0173575 +0.00196704 0.0385066 0.0244659 +-0.00668986 0.0584241 -0.0339312 +-0.0587805 0.0811174 -0.0202922 +-0.0492044 0.143127 0.00539863 +-0.0686509 0.155409 0.00612964 +-0.0404209 0.150087 -0.00469474 +-0.00449521 0.0925603 0.0561444 +-0.000397233 0.131333 0.0167016 +-0.0552402 0.138165 0.0306253 +0.0215752 0.056436 0.0468827 +-0.0248564 0.100174 -0.0239639 +-0.0165731 0.0386082 0.0295958 +0.0232801 0.125085 0.0182493 +0.0228318 0.0357435 0.0257706 +-0.0492021 0.127407 -0.00458885 +-0.0878029 0.112934 0.0313303 +0.0465727 0.0554592 0.0320923 +-0.0288967 0.0499669 0.0438168 +-0.000173892 0.120963 -0.0122496 +-0.0704499 0.154022 0.0317661 +-0.0151711 0.0346724 0.0458457 +-0.0640566 0.138182 0.0390191 +0.0398408 0.105612 0.0201716 +0.0444976 0.0583814 0.0318302 +0.031639 0.0370094 0.0209702 +-0.0104878 0.112778 0.0413082 +-0.0672962 0.0785128 0.0408262 +-0.0760729 0.0675487 0.00755458 +-0.0571409 0.0642584 0.0323718 +0.0261418 0.0859362 -0.0230192 +-0.015502 0.0856307 0.0568812 +0.0189265 0.119915 -0.00924366 +-0.0119328 0.103575 -0.0236984 +-0.00622128 0.0384574 0.0119659 +-0.0779451 0.128117 -0.00684087 +-0.0657248 0.120041 0.0506761 +-0.0623817 0.147548 -0.00757469 +-0.0875561 0.121673 0.0477803 +0.0222529 0.0365833 0.0139797 +-0.00142937 0.126525 -0.00622577 +-0.0226373 0.0386776 -0.0154938 +-0.0648114 0.0335165 0.00450366 +0.0210136 0.0713836 0.0497227 +-0.0348346 0.0347214 0.0345782 +-0.027609 0.0850124 0.048532 +-0.0856119 0.0819492 0.0204815 +-0.0601038 0.0347331 -0.00989443 +0.00929494 0.0956507 -0.0272714 +-0.0915391 0.118654 0.00731945 +-0.00449819 0.0604864 0.0551163 +0.0204818 0.0854612 -0.0266087 +-0.0429251 0.129071 0.00699388 +-0.0789967 0.138332 -0.00474353 +0.0343592 0.0519767 -0.00689954 +-0.0921408 0.125525 0.040859 +0.0516782 0.0702939 0.00352664 +-0.022659 0.0508417 -0.0286643 +-0.00138527 0.0424799 0.0468649 +0.0452912 0.0903849 0.0031762 +0.0401652 0.0717052 -0.00977551 +-0.0905185 0.148805 0.0131551 +-0.0470106 0.149195 0.00904699 +-0.0201874 0.0711262 0.0528634 +-0.0555353 0.0388223 -0.0103544 +-0.0714965 0.154091 0.0314059 +0.0232354 0.0968772 0.0460698 +-0.020264 0.0381835 0.0111715 +-0.0267635 0.177003 -0.0181719 +-0.0755105 0.151351 -0.0138965 +-0.00749931 0.0925693 0.0562701 +-0.063994 0.152679 -0.0352218 +0.0453927 0.0833662 0.00319518 +-0.0137973 0.081348 -0.0391911 +-0.0433806 0.120699 0.0278302 +0.0462048 0.0792353 0.00618416 +-0.0498122 0.141672 0.00439987 +-0.0592291 0.156682 0.00368263 +-0.0525972 0.055954 -0.00763978 +-0.0796979 0.108952 0.0363543 +-0.0334959 0.0335656 -0.024125 +0.0047441 0.131688 0.0100125 +-0.0530342 0.15087 0.0203968 +-0.0794975 0.133078 0.0519067 +0.0231582 0.125381 0.0124998 +-0.0898343 0.122953 0.0457467 +0.0336909 0.115719 0.00499933 +-0.0364989 0.0705154 0.0419282 +-0.0641133 0.155183 -0.0406054 +-0.0303694 0.034667 0.0426012 +-0.0474034 0.126784 0.0277907 +0.0312862 0.107094 -0.0114403 +-0.0399374 0.122179 0.0274746 +-0.0715157 0.106884 0.0372861 +0.0432452 0.100105 0.0111579 +-0.0264035 0.0386467 -0.0143525 +-0.053047 0.162457 0.00378602 +-0.0573985 0.155942 0.000257732 +-0.0104925 0.119661 0.037142 +-0.0107108 0.0656519 -0.03625 +0.0153129 0.0637748 -0.0295702 +-0.047649 0.128193 0.0275289 +-0.0395091 0.0986823 0.0417741 +0.0582857 0.0709436 0.0165587 +0.0144142 0.0418406 -0.0232939 +-0.0406818 0.0636695 -0.0135779 +-0.0700194 0.0408862 0.000674154 +-0.0898984 0.139201 0.0142132 +-0.0368759 0.102855 -0.0211016 +-0.031161 0.177923 -0.0048433 +-0.0216559 0.0380957 0.0145856 +-0.00121026 0.129846 0.000241032 +-0.0176504 0.0583335 0.0507279 +0.0492902 0.0704301 0.0235452 +0.008888 0.126629 0.0301427 +-0.0897638 0.136555 0.0361946 +-0.0903944 0.113745 0.0354564 +0.0327067 0.0659933 0.0401778 +-0.0167299 0.0383654 0.0243772 +0.0403616 0.0561214 -0.00579676 +-0.0891677 0.150225 0.0241083 +-0.0128992 0.165641 -0.0199242 +-0.0596113 0.0581543 0.0105384 +0.0326521 0.108705 0.0315863 +-0.0448105 0.126695 -0.00590468 +0.0440256 0.0973461 0.0131583 +-0.0694635 0.0618968 0.00696654 +-0.0667991 0.06462 0.0265045 +0.0388894 0.060327 0.0314833 +0.0120611 0.11304 -0.0178164 +-0.0635386 0.151731 -0.00361755 +-0.00656125 0.130634 0.0158888 +0.0344174 0.0430387 -0.00433126 +-0.00549778 0.129792 0.00189197 +-0.0499313 0.134148 0.000258943 +-0.0563569 0.155043 0.0148967 +-0.00737522 0.0388161 -0.00139235 +0.0283929 0.0347449 0.011384 +-0.010683 0.0908469 -0.0364652 +-0.048501 0.109818 0.0382143 +-0.0690431 0.169001 -0.0273587 +0.0102657 0.0954683 -0.0270889 +0.0126468 0.0820043 0.0535026 +-0.0507783 0.0613366 0.0327704 +0.00559724 0.128727 -0.00267638 +-0.044734 0.0724552 -0.0176324 +-0.0283736 0.0336157 -0.0231629 +-0.0679859 0.155562 0.00782161 +-0.0939853 0.126886 0.0172543 +-0.0238126 0.0840242 -0.0378907 +-0.0152029 0.16973 -0.0225848 +0.0303318 0.0382842 0.0249985 +-0.0463034 0.0382871 -0.0172845 +-0.012857 0.0968183 -0.0306036 +0.0139515 0.0933972 -0.0268828 +-0.0598089 0.0334419 -0.0052474 +-0.0682308 0.180685 -0.0584278 +-0.0564615 0.0452367 0.0437224 +0.0122525 0.036039 -0.0217262 +-0.0324956 0.119317 0.0295507 +-0.050852 0.0985174 -0.022094 +0.0359226 0.0926166 -0.0140085 +0.0475195 0.0583521 0.0315949 +0.00440154 0.12483 0.0329119 +-0.0725064 0.152612 -0.0398907 +-0.00124079 0.0388178 0.0271443 +-0.0855936 0.143251 0.00719107 +-0.0618131 0.161554 -0.0315928 +-0.0315498 0.0848744 -0.0295692 +-0.0167783 0.0770825 -0.0387039 +-0.024832 0.0930098 -0.0316179 +-0.0356976 0.121856 -0.0088333 +0.0456324 0.0875991 0.0131626 +0.0344601 0.0660136 0.0392214 +0.008313 0.0639391 -0.0318667 +0.0352496 0.0656442 -0.0147977 +-0.0468498 0.0999476 -0.0216953 +-0.0215077 0.111305 0.0395987 +-0.0345319 0.122423 0.0264163 +0.0333657 0.0835669 0.0412915 +-0.0594982 0.143919 0.0350801 +-0.0210079 0.184692 -0.0198306 +-0.09225 0.125605 0.0402535 +-0.0764966 0.117544 0.0520468 +0.0261457 0.100404 -0.0183041 +0.0314049 0.0431209 -0.00494122 +-0.000675964 0.056864 -0.0322097 +-0.0759667 0.135448 -0.00632576 +0.0194608 0.0865014 0.0497298 +0.0480114 0.0447211 0.0227621 +0.0382636 0.109749 0.0121659 +-0.0191397 0.0920316 0.0539979 +0.0148906 0.112386 -0.0170744 +-0.0156084 0.0378086 -0.0269252 +0.0166879 0.0355485 0.0409566 +-0.0719103 0.125286 -0.00863314 +0.0390766 0.0901064 0.0338413 +0.0238446 0.123573 0.0241681 +0.0180905 0.1262 -1.26099e-05 +-0.0241861 0.0351713 0.0521271 +-0.0864494 0.107673 0.0113573 +0.00554907 0.0341243 -0.0169616 +-0.0740319 0.152138 0.0351116 +-0.00773495 0.12664 -0.00628182 +-0.0408221 0.0343419 0.0301151 +0.0589083 0.0700926 0.0167877 +-0.0321537 0.168198 -0.0161712 +-0.0504087 0.0385253 -0.0116443 +-0.0719982 0.132651 0.0504199 +-0.0314938 0.0946271 0.0446065 +0.0415387 0.0610238 0.0295203 +0.0439094 0.0623682 -0.0025277 +-0.0745832 0.173457 -0.038075 +-0.0135013 0.163627 -0.011822 +0.00544999 0.097676 0.0507202 +-0.0233157 0.0695067 0.0475588 +0.0280693 0.112767 0.0337398 +0.0217645 0.057833 0.0471676 +-0.0875176 0.123015 0.0477063 +-0.0696847 0.0339658 -0.0022881 +-0.0251326 0.166747 -0.01768 +-0.0196064 0.177176 -0.0161969 +-0.0704588 0.109521 0.0380634 +-0.068398 0.171087 -0.0357069 +0.0111209 0.0908234 -0.0303895 +-0.0634854 0.149796 0.0371525 +0.00199826 0.122137 -0.0115071 +-0.0620402 0.161574 -0.0285866 +0.0543448 0.0567886 0.0274783 +0.00150309 0.0619973 0.0566118 +-0.0476286 0.0532889 -0.00972253 +0.0589424 0.064749 0.0219118 +0.00619535 0.0866083 -0.0331365 +0.00933928 0.0947261 -0.0283032 +0.0354634 0.113562 0.00993821 +-0.0622597 0.0337543 0.0119702 +-0.0286126 0.0778208 0.0441079 +-0.0291848 0.0649007 -0.0284708 +0.00716146 0.130043 0.000903466 +0.00854238 0.122369 -0.0118647 +0.0207709 0.0422154 0.0420468 +-0.0728566 0.114991 -0.00711315 +-0.062327 0.161572 -0.0265871 +-0.029645 0.121258 -0.00823608 +-0.0358448 0.0971832 -0.0228124 +-0.0241278 0.166765 -0.0179136 +-0.0833762 0.111067 0.0302504 +-0.0714085 0.0715566 0.0335759 +-0.0285052 0.11799 0.0309781 +-0.0436341 0.171062 -0.00299049 +-0.0254563 0.120601 0.0288472 +0.029856 0.0552774 -0.0168073 +-0.0277474 0.076815 -0.0357774 +-0.0305568 0.0845973 0.042796 +-0.0927119 0.117479 0.0363033 +0.00128405 0.131584 0.0158806 +-0.0853072 0.129862 0.0494994 +-0.0379579 0.11044 -0.0188969 +-0.0647113 0.0736859 -0.0158833 +-0.055064 0.0698751 0.038539 +-0.049499 0.0747526 0.0426395 +-0.0315694 0.0461612 0.0465874 +-0.0452548 0.169651 -0.00135352 +-0.0891941 0.0888738 0.0164555 +-0.0424866 0.0396651 0.043393 +-0.0870945 0.0846532 0.00548002 +-0.0530436 0.142764 -0.000526483 +-0.0664988 0.146992 0.0401715 +-0.0606301 0.0613516 -0.00265703 +-0.0321846 0.121876 0.025771 +0.0462743 0.0806463 0.0131736 +0.0355309 0.0527205 0.03199 +-0.0515418 0.0389441 -0.0114685 +0.0203586 0.0565379 -0.0271575 +-0.065976 0.0624665 0.0232686 +-0.0399438 0.0336374 -0.0217314 +-0.0584862 0.0833066 0.0438144 +-0.0449507 0.157934 0.00683281 +-0.0161733 0.168253 -0.0210405 +-0.0807961 0.0747709 0.0205502 +-0.0450711 0.153185 -0.00674331 +0.0122509 0.0766796 0.0546284 +-0.0165839 0.159908 -0.00982549 +-0.000693426 0.0367942 0.0054988 +-0.051438 0.0643214 0.0343604 +0.0173166 0.0411975 -0.0216758 +-0.0350925 0.0344983 0.0186791 +-0.0263041 0.10845 -0.0208491 +-0.0233997 0.0384863 0.0301002 +0.0336304 0.116029 0.0121428 +-0.084184 0.106292 0.0253661 +-0.0668605 0.102389 -0.0157781 +-0.0617744 0.0585089 0.0133805 +-0.037501 0.0634549 0.0414009 +0.0430852 0.0973049 0.0211625 +-0.0895621 0.0902365 0.017449 +0.0358939 0.0591552 0.0359628 +0.00041272 0.0994106 0.0497851 +0.0297429 0.112241 -0.00897067 +-0.0614607 0.155749 0.0232098 +-0.0190678 0.0347878 0.0501361 +0.0278403 0.121636 0.00711658 +-0.0293538 0.0475081 0.0471486 +-0.0878748 0.0861246 0.0134664 +-0.065267 0.132559 0.042478 +-0.0557536 0.0782586 -0.0197587 +0.0163546 0.0537375 -0.0279072 +-0.0768389 0.102007 -0.0101454 +-0.0762457 0.0708701 0.0261488 +-0.0434929 0.0410777 0.0433607 +-0.0820951 0.100566 -0.0055776 +-0.0124865 0.114128 0.0400495 +0.0495003 0.0496818 0.0274333 +0.0157351 0.0562704 0.0489701 +-0.0269138 0.0660937 -0.0314934 +-0.0205217 0.0448565 0.0528623 +-0.0147659 0.0742889 -0.0388052 +0.0292558 0.120076 0.0204837 +-0.0416192 0.0505822 -0.0110011 +0.00560187 0.0957087 -0.0293479 +-0.00449169 0.0575673 0.0538908 +0.0302324 0.0374168 2.32521e-05 +0.0404422 0.105635 0.0151656 +-0.0407521 0.0782965 -0.0192261 +-0.0321404 0.106348 -0.0206098 +0.0240312 0.1242 0.0213823 +0.0163901 0.0476981 -0.0240512 +-0.0540847 0.0341953 0.0274512 +0.0565883 0.0716209 0.0188851 +-0.063971 0.0343652 0.0164556 +0.0222263 0.0790988 -0.0263649 +-0.0480529 0.15019 -0.0042011 +-0.0364615 0.155102 -0.00949574 +-0.0107913 0.165034 -0.0192459 +-0.0720629 0.166594 -0.0198059 +0.0596228 0.0581166 0.00817617 +0.0193916 0.12656 0.0211758 +-0.029103 0.162278 -0.0149633 +-0.0114929 0.118282 0.0379089 +-0.0766495 0.0810868 -0.0106019 +-0.00184307 0.128669 -0.00252946 +-0.0100488 0.177211 -0.0257537 +-0.0544738 0.0624824 0.0299832 +-0.0840733 0.0966087 -0.0036103 +-0.0707265 0.080778 -0.0161096 +-0.0214771 0.122102 0.0291424 +-0.0428932 0.0358165 0.00869673 +0.0135568 0.129672 0.01894 +-0.00280854 0.081222 -0.0368531 +0.00517895 0.130408 0.0230466 +-0.067269 0.167119 -0.0252721 +-0.00747948 0.0919417 -0.035549 +-0.0365036 0.0478079 0.0395886 +-0.0569665 0.0548885 0.00161507 +-0.0744851 0.0663284 0.00571192 +0.0455621 0.0889987 0.00417598 +-0.0292503 0.036802 0.0530596 +-0.0435044 0.0605182 0.0400424 +-0.0915766 0.14196 0.0161629 +-0.0696706 0.14899 -0.0379959 +-0.0770107 0.152809 -0.00688788 +-0.0705529 0.0628294 0.0184736 +-0.044794 0.0870021 -0.0219374 +-0.0107414 0.120001 -0.0131465 +-0.000720709 0.0669492 -0.0343521 +-0.0214315 0.0906458 0.0534872 +-0.0354995 0.0619703 0.0405316 +-0.0628269 0.1502 -0.00476792 +-0.0640626 0.136748 0.0389546 +-0.0474986 0.102884 0.0412273 +-0.0116527 0.129557 0.00826831 +-0.0347732 0.0337732 -0.0208295 +-0.0214023 0.161048 -0.0139992 +-0.0752954 0.15636 -0.00353298 +-0.0688076 0.150274 -0.0424283 +-0.0238582 0.0382811 0.0283891 +-0.0935937 0.118737 0.0143019 +0.0184606 0.0475775 0.0422564 +0.00850874 0.0575011 0.0529664 +-0.0532082 0.149319 0.0233918 +-0.0320154 0.082069 -0.0305372 +-0.0190294 0.0739916 0.05444 +-0.00216392 0.0992947 0.0503069 +-0.0162644 0.11453 -0.017303 +0.0278981 0.113772 -0.00862034 +0.0459848 0.0602104 -0.00435135 +-0.0564936 0.0465915 0.0420515 +0.0169002 0.103075 -0.0211457 +-0.00731691 0.128182 0.0272242 +0.0205916 0.112587 0.0371117 +-0.0176105 0.0435992 -0.0276633 +-0.0274971 0.0619365 -0.0294418 +0.000272434 0.109746 -0.0202486 +0.0416377 0.084481 -0.00877138 +-0.0784224 0.0725404 0.0242536 +-0.00880164 0.0826803 -0.0379328 +-0.0147316 0.0685868 -0.0380387 +0.0333786 0.0476367 -0.00619535 +0.00348805 0.0413645 0.0460201 +-0.0227229 0.0625945 -0.0340193 +-0.0669932 0.138471 -0.00790807 +-0.037224 0.169679 -0.0130647 +0.0535575 0.0477942 0.0072134 +-0.0575878 0.158069 0.0020235 +0.0345395 0.0727588 0.0393885 +-0.0699466 0.072981 0.0361776 +0.020686 0.0367224 0.0371237 +-0.0728722 0.0355547 0.00103582 +0.00487825 0.131703 0.0129125 +0.0580945 0.0523756 0.014183 +-0.0866528 0.145956 0.0348405 +-0.00749813 0.125151 0.0317009 +0.0403042 0.0398794 0.0201445 +0.0355341 0.0875716 0.0391778 +-0.0249398 0.157384 -0.00964166 +0.00350274 0.0489558 0.0513808 +-0.00381736 0.131135 0.0125816 +-0.00837752 0.0353543 0.048476 +0.0140849 0.129676 0.00773008 +-0.010101 0.102023 -0.0240718 +0.0446756 0.091763 0.0191604 +-0.0637279 0.173384 -0.0513558 +-0.031495 0.061765 0.0382603 +0.0366571 0.0968397 -0.0108144 +-0.0285085 0.115306 0.0336868 +-0.00497421 0.126254 0.0309961 +0.00248615 0.104372 0.0430232 +0.00642086 0.116423 -0.0174422 +-0.0636795 0.0658475 -0.00727738 +-0.0891519 0.0956005 0.0104313 +-0.0860649 0.0994533 0.00140442 +-0.0735831 0.152654 -0.0328925 +0.00651157 0.066084 0.0555109 +0.0344822 0.102017 -0.0120204 +-0.0637552 0.15245 -0.00517189 +-0.077532 0.159745 -0.0169143 +0.00251128 0.0661582 0.0562906 +0.0151093 0.0887421 0.0518346 +-0.00945842 0.0387253 -0.00172767 +-0.0471724 0.133935 0.00981498 +-0.0188178 0.158773 -0.00942574 +-0.0194961 0.0654004 0.0509321 +-0.0774489 0.163906 -0.0229523 +-0.0267283 0.156621 -0.00899742 +-0.0465008 0.111213 0.0371008 +-0.00249784 0.0939038 0.0553992 +-0.0715513 0.0342218 0.00249626 +0.0107439 0.130936 0.0122066 +0.0266603 0.0421651 0.0343135 +0.011996 0.0344545 0.00276628 +-0.0653727 0.074532 0.0393295 +-0.0417745 0.172541 -0.00446528 +-0.0368752 0.0345479 0.0395694 +0.00440907 0.131695 0.0141669 +0.0189748 0.0699869 0.0502663 +-0.0690298 0.155601 0.00744971 +-0.0265663 0.0356908 0.0529027 +-0.0621593 0.13389 0.0382274 +-0.0375341 0.0356789 0.0117182 +-0.00861273 0.0434199 -0.0261503 +0.0317849 0.0490447 0.0333888 +-0.0637123 0.0445754 0.0336875 +0.0376665 0.0374378 0.0089364 +-0.058497 0.0904388 0.0452323 +-0.0442728 0.0437529 -0.0143172 +0.0204519 0.0357096 0.00704168 +0.0282191 0.0941913 -0.0197138 +-0.0688839 0.117973 -0.00851105 +0.0338372 0.104851 -0.0110391 +0.024912 0.0505255 0.0392969 +0.0125119 0.107097 0.0421465 +-0.00117532 0.0998676 -0.0237773 +0.0246952 0.0420222 0.0382704 +-0.0398433 0.0971287 -0.022179 +0.0268619 0.108823 -0.0133055 +-0.0799271 0.140795 0.0466609 +0.0180138 0.0808533 0.0524986 +-0.0868879 0.111328 0.0363925 +0.000567537 0.0921561 -0.0336854 +-0.0892038 0.0969467 0.00941895 +0.00816432 0.0904541 -0.0318561 +-0.064746 0.155508 0.00899366 +-0.0911853 0.113324 0.0173235 +-0.00120622 0.113981 -0.0187843 +-0.00924245 0.0407867 0.049553 +-0.00349897 0.0575855 0.053786 +-0.0375091 0.0407357 0.0441865 +-0.0584982 0.108398 0.0387966 +0.0391307 0.0786589 -0.0107679 +-0.0474967 0.100136 0.0424923 +0.0275962 0.102142 0.0400686 +0.0233313 0.0578274 -0.025582 +-0.0510235 0.0723937 0.0407728 +0.0280639 0.121158 0.0057742 +-0.0318235 0.0637622 -0.0194381 +-0.038893 0.0378836 0.042947 +-0.0455156 0.14919 0.00769333 +-0.0724664 0.0678961 0.0260135 +-0.0614699 0.156861 -0.0255852 +0.0511802 0.0687267 0.0256724 +-0.0639329 0.153712 -0.0368711 +-0.055548 0.0628794 0.0303893 +0.0228246 0.0344564 0.00866393 +0.0333583 0.0505553 -0.00686804 +-0.0436286 0.0534388 -0.0110764 +0.0170321 0.128388 0.0173658 +-0.0484634 0.122511 0.0297787 +-0.0908772 0.119982 0.00630567 +-0.0251882 0.121015 0.0283088 +-0.0621056 0.167818 -0.0515918 +-0.0434918 0.0451945 0.0416496 +-0.0261859 0.172679 -0.0191085 +0.0581533 0.0685799 0.00535861 +-0.0308235 0.12443 -0.00028071 +-0.088653 0.0982606 0.00741366 +0.000114549 0.110154 -0.0201623 +0.032895 0.11463 -0.00105927 +0.0393368 0.0984458 -0.00682083 +0.0171551 0.0988258 -0.0226279 +0.0605804 0.0651016 0.017176 +-0.0528261 0.149337 0.0214103 +-0.0213292 0.159914 -0.0125433 +0.000685965 0.124734 0.0330095 +0.0425127 0.0872289 0.028142 +-0.0754377 0.172239 -0.0469918 +-0.00949675 0.039136 0.0341772 +-0.0750736 0.0773173 0.0349007 +-0.0204972 0.104391 0.0429524 +0.044682 0.0804275 0.0241291 +0.0288766 0.0477511 0.0362254 +-0.0590849 0.0584397 0.0175987 +-0.0187468 0.0685918 -0.0381091 +-0.0908268 0.137853 0.0181986 +-0.0934137 0.128236 0.0152484 +-0.0722094 0.155629 0.00630789 +-0.0701241 0.109501 0.0382316 +-0.0833629 0.0829469 -0.00357326 +-0.0219158 0.177176 -0.0142605 +-0.0038834 0.0389548 -0.00453366 +-0.0468309 0.0956366 -0.0220125 +0.0589161 0.0621713 0.00415053 +-0.0518659 0.144686 0.0163701 +-0.0589723 0.0448133 0.0132235 +0.05973 0.0664208 0.00812497 +-0.0911185 0.128332 0.0402364 +0.0082766 0.0667723 -0.0317926 +-0.0557755 0.0826404 -0.0214196 +-0.0254275 0.181837 -0.00892324 +-0.0899879 0.140645 0.0281829 +-0.0725199 0.141421 0.0466976 +0.0173961 0.0343459 0.000212982 +-0.0435004 0.0424369 0.0431009 +-0.0397849 0.155107 0.00553982 +0.0474231 0.0702463 0.00356979 +0.00935197 0.130836 0.00599246 +-0.0466333 0.0562665 -0.0109539 +-0.0134154 0.0393527 0.0385623 +0.0202221 0.0721388 -0.0279345 +-0.0855696 0.139064 0.00222203 +-0.0690425 0.0382325 0.0107396 +-0.0147406 0.129011 0.0158201 +-0.0436768 0.0636379 -0.0137577 +0.058107 0.0694858 0.00643586 +-0.0523916 0.160438 -0.00307609 +-0.0208502 0.120881 -0.00994613 +-0.0144972 0.0772805 0.0565653 +0.0146633 0.0548535 0.0491553 +-0.0872189 0.103599 0.00739967 +-0.013497 0.0701643 0.0543951 +-0.0727808 0.161025 -0.0379399 +0.0541744 0.0495318 0.0218692 +-0.0180637 0.122407 0.0308158 +-0.0437406 0.150663 0.00676805 +-0.0471693 0.128157 0.0265222 +0.000324051 0.0583269 -0.0327186 +0.0183373 0.109817 -0.016338 +-0.0826495 0.137607 -0.000712655 +0.0256839 0.122773 0.00490001 +0.0354824 0.111268 -0.000157004 +-0.0457208 0.0643263 0.038969 +0.0547017 0.0700348 0.00381661 +-0.00761606 0.128811 0.0256727 +-0.0687402 0.156349 0.0177202 +-0.085121 0.108927 0.00536277 +-0.0739548 0.136937 -0.00691386 +-0.00649589 0.0884166 0.05709 +-0.068322 0.144999 -0.0199128 +-0.0891584 0.142048 0.0331685 +-0.0282821 0.0889315 -0.0326167 +-0.0270715 0.0381475 0.00619785 +0.0226739 0.0430625 -0.011732 +-0.0895091 0.147137 0.0278175 +-0.0396286 0.0534411 -0.011004 +-0.0570587 0.0521462 0.00466373 +-0.0421407 0.162162 -0.0108328 +-0.0831356 0.0816494 -0.00150376 +-0.0274399 0.180304 -0.00715734 +-0.055838 0.0927189 -0.0219026 +-0.0624754 0.163097 -0.0475912 +-0.064973 0.0365283 0.0405192 +-0.0434783 0.0690982 0.041489 +0.0407433 0.102836 0.021176 +-0.0588838 0.0468495 0.0306747 +0.00493781 0.100395 -0.0223096 +0.00122691 0.116615 -0.0176232 +-0.035551 0.0451135 -0.0264751 +-0.025842 0.091626 -0.0326108 +0.0509675 0.0463703 0.0218015 +-0.077144 0.164539 -0.0230622 +-0.0613807 0.122656 0.0428396 +0.0364941 0.0454217 0.0304675 +-0.0655017 0.0931357 0.0435076 +-0.0869021 0.114398 0.00327085 +-0.0624965 0.109755 0.0377659 +-0.0219613 0.124807 -0.00195706 +-0.0564977 0.109762 0.0379025 +-0.0489044 0.0413839 -0.0112514 +-0.0464999 0.104301 0.0412272 +-0.0689362 0.173831 -0.0430963 +-0.0274521 0.175685 -0.00821886 +-0.00850113 0.0633575 0.0560799 +-0.0350673 0.0752529 -0.020583 +-0.0702674 0.128451 0.0511564 +-0.0318141 0.156607 0.00124178 +0.0187844 0.127527 0.00803838 +-0.0133229 0.0978873 -0.0277326 +0.00349851 0.0356817 -6.66678e-05 +-0.0714787 0.0630924 0.012741 +-0.0723877 0.16801 -0.0460141 +-0.0314985 0.12639 0.0112101 +0.0103131 0.0935662 -0.0290602 +0.0162881 0.0708862 -0.0299631 +-0.0486922 0.0693814 -0.0146213 +-0.00965082 0.0496857 -0.0310806 +-0.0472721 0.035073 0.043832 +-0.0505797 0.0528906 0.0145102 +-0.00843296 0.037899 -0.0156923 +-0.0276376 0.0383723 -0.00322479 +-0.0394609 0.174124 -0.00699657 +-0.0444987 0.125316 -0.00848377 +0.0413134 0.0732089 -0.00778125 +-0.0654437 0.17819 -0.0606312 +-0.0194942 0.0498847 0.046612 +-0.0470957 0.0376632 0.0453493 +-0.0435029 0.0832144 0.0426759 +-0.0134871 0.123689 0.0319378 +-0.0174978 0.0744121 0.0553624 +0.0333782 0.11597 0.0192002 +-0.0203318 0.0946383 0.0508766 +-0.0412055 0.0419705 -0.0232873 +-0.0815038 0.0885533 0.0328994 +-0.0703591 0.0620888 0.0120183 +-0.0334658 0.0396217 0.0500837 +-0.036771 0.0343273 0.0309808 +-0.0165061 0.126041 -0.00139683 +0.0369819 0.102039 0.0307859 +-0.0207502 0.0626823 -0.0352205 +0.0061481 0.104478 -0.0212191 +0.0323926 0.117262 0.0173907 +-0.0357746 0.08137 -0.0222094 +-0.0375579 0.0341991 0.0273875 +-0.0503289 0.0543622 0.0156654 +-0.0287388 0.076371 0.0428795 +-0.0631791 0.0597373 0.0065938 +-0.00649181 0.104468 0.0439265 +0.00653601 0.0924318 -0.0319265 +-0.0371937 0.168177 -0.0134205 +-0.0375614 0.128197 0.00751871 +-0.0898903 0.135179 0.0352087 +0.037196 0.0699864 0.036159 +0.0276189 0.0564968 -0.0197599 +0.0447325 0.0931835 0.0161662 +0.0398803 0.0927067 0.0314285 +-0.0468272 0.125328 0.0268353 +-0.0715318 0.0347543 -0.000134182 +-0.0859938 0.0978404 0.0272064 +-0.0460065 0.0410789 -0.0142843 +-0.0499829 0.0586014 0.0334591 +-0.0614235 0.172219 -0.0618413 +0.00350193 0.0474397 0.0500395 +0.0226438 0.0875613 0.0487078 +0.0374992 0.0644481 -0.0117672 +-0.00648083 0.111994 -0.0206545 +-0.0934649 0.120072 0.0123034 +0.00542168 0.12935 -0.00135496 +-0.0765071 0.126009 0.0528667 +-0.0308338 0.109919 -0.0183719 +0.018594 0.125548 0.0250901 +-0.0205082 0.0474421 0.0508554 +-0.0252811 0.168282 -0.0104061 +-0.051716 0.150726 0.0145842 +-0.0317716 0.0863018 -0.027557 +-0.0793223 0.151473 0.000118749 +-0.0823192 0.154091 0.0115231 +0.0432611 0.071972 -0.00279979 +-0.0761461 0.154973 -0.00265921 +-0.032878 0.156591 -0.0107994 +0.0360211 0.0628935 -0.0127986 +-0.0321679 0.120788 0.027294 +-0.00521106 0.038426 0.0176436 +0.0377365 0.0388851 0.0205214 +0.0183131 0.127887 0.0164149 +-0.0580398 0.0608775 0.0245548 +-0.0791963 0.108632 0.0349508 +-0.00201716 0.131125 0.0175388 +0.0407504 0.0633497 -0.00473671 +0.0447287 0.0917385 0.00119217 +-0.0534928 0.0848236 0.0453456 +0.00605741 0.0346665 0.039556 +-0.0276244 0.0436594 -0.0289391 +-0.00868086 0.056987 -0.0336771 +-0.058573 0.0613666 -0.00334192 +0.00741372 0.0360842 -0.0231635 +0.00514996 0.0337963 0.0112147 +-0.064123 0.113942 -0.0123233 +0.0527625 0.0723674 0.0204268 +-0.0354974 0.0634085 0.0409173 +0.0287147 0.0352518 0.00538775 +-0.0522813 0.0461425 0.0206748 +0.0547864 0.0548406 0.00018303 +0.00557978 0.101599 0.0456072 +0.00472897 0.0950887 -0.030676 +0.0355131 0.0781566 0.0390786 +0.0402454 0.0843611 -0.0117637 +-0.0605819 0.0468615 0.000669297 +-0.0394923 0.074754 0.042367 +-0.0331798 0.0779303 -0.0275261 +-0.0683095 0.178205 -0.0587107 +-0.00995429 0.0389301 0.0324647 +-0.0495001 0.108413 0.0388185 +-0.0659124 0.113781 -0.0114133 +-0.0404538 0.105662 0.0393313 +-0.0654729 0.17978 -0.0563035 +-0.0614888 0.0918402 0.045217 +0.0333657 0.0640658 -0.0168115 +-0.0809488 0.144539 -0.000825536 +-0.0545043 0.0918174 0.0448821 +-0.0504943 0.147794 0.0128405 +-0.0745085 0.118967 0.0529255 +-0.0596424 0.0629313 -0.00554826 +0.0600133 0.0636587 0.00714888 +0.0272456 0.0746657 -0.023693 +0.0433693 0.0575272 -0.00543691 +-0.0084928 0.0591086 0.0550857 +0.0327041 0.0686805 0.0402125 +-0.0371896 0.166685 -0.0135589 +0.0115191 0.107071 0.0419973 +0.0398757 0.096658 0.0297176 +-0.0882102 0.118977 0.047099 +-0.0794917 0.134473 0.0511764 +-0.0147562 0.0388704 -0.0103641 +-0.0729608 0.135493 -0.0074448 +-0.0829718 0.144576 0.00217748 +0.0121355 0.107265 -0.0192728 +0.00249537 0.0427747 0.0458993 +-0.0590743 0.136941 -0.00615344 +-0.0740187 0.0822617 -0.01463 +0.0274881 0.0349726 0.0165028 +0.0249311 0.118938 0.0303034 +-0.0860712 0.137702 0.0022107 +-0.00546373 0.0337972 -0.022595 +-0.0425018 0.0506116 0.0394181 +0.0044907 0.119648 0.0370088 +-0.066886 0.129814 0.0472408 +-0.033949 0.0667384 -0.0165589 +0.0265464 0.0699406 0.043619 +-0.0486667 0.134012 0.00340208 +0.0201914 0.117982 0.0346477 +-0.033458 0.0353739 -0.0310204 +-0.0251991 0.0536651 0.0400375 +-0.0689113 0.147966 -0.0319204 +-0.0650665 0.151369 -0.0356223 +-0.065894 0.118002 -0.00906639 +-0.00150449 0.0350731 0.0394353 +0.00648653 0.0951017 0.0524749 +0.0322641 0.11194 -0.00663069 +0.0356067 0.113152 0.00567562 +-0.0317604 0.120314 -0.00921321 +-0.0666072 0.0846933 0.0437683 +-0.0745085 0.13306 0.0516401 +-0.0914301 0.133749 0.0202171 +-0.0271327 0.0917299 -0.030613 +0.0356733 0.107346 0.028881 +0.021724 0.104691 0.0421173 +-0.0214953 0.0474568 0.0509792 +0.0189666 0.119003 -0.0102495 +0.0330783 0.0534528 0.0353209 +-0.0796959 0.154266 0.00805358 +-0.0370933 0.175555 -0.00565624 +-0.0324183 0.116998 -0.0137964 +-0.015069 0.117815 -0.0147928 +-0.0541455 0.0482522 0.0392578 +-0.017538 0.18639 -0.0186026 +-0.0486882 0.138613 0.0123943 +-0.0134995 0.0786948 0.0569449 +-0.0792474 0.0803083 0.033239 +-0.0523607 0.12647 -0.00557636 +-0.0261456 0.180134 -0.00803266 +-0.0654933 0.0875673 0.0446215 +0.0410795 0.0647663 -0.00478377 +0.038759 0.104954 -0.0010414 +0.0213206 0.103387 0.0432887 +0.00249002 0.112797 0.0416669 +-0.02662 0.157614 -0.0107103 +-0.0524373 0.0487028 0.0136696 +0.0367672 0.0605146 0.0354804 +-0.0769184 0.0832691 0.0369336 +-0.0650248 0.0337055 0.00787315 +-0.0515046 0.159378 0.00834015 +-0.0547588 0.079768 -0.0207581 +-0.0799475 0.0796892 0.0318714 +-0.0819371 0.129486 -0.00455242 +0.0162371 0.0359566 0.0423025 +-0.052497 0.108432 0.038849 +-0.0330169 0.0750953 -0.0275046 +-0.0367909 0.0856326 -0.0224706 +-0.0909792 0.143017 0.0266346 +-0.0790213 0.169435 -0.0369802 +-0.0224887 0.120777 0.0306794 +-0.0714154 0.063966 0.00470687 +-0.0833338 0.121705 0.0492392 +-0.00224884 0.0410819 0.0473849 +-0.0064961 0.0647536 0.0562043 +-0.0154675 0.0382885 0.0102401 +0.0316901 0.0754766 0.0423249 +-0.0682663 0.0409329 0.00988698 +-0.0397472 0.0753921 -0.0181662 +-0.0404974 0.0534278 0.0394751 +-0.027235 0.0964545 -0.0242996 +0.01346 0.094917 0.0501359 +-0.0101655 0.178729 -0.0267529 +-0.0368558 0.0971787 -0.022608 +-0.0618627 0.061311 0.023361 +-0.00785703 0.0384956 0.0242725 +-0.00828946 0.0422134 0.0491908 +-0.0626761 0.177191 -0.057627 +-0.0197826 0.0770974 -0.0390157 +-0.0283747 0.0368322 -0.0186629 +-0.0678325 0.165206 -0.0549947 +-0.0762767 0.179149 -0.050884 +-0.0126939 0.0585083 -0.0350263 +0.0259904 0.108758 0.0377477 +0.042201 0.0819186 0.0294354 +0.0164623 0.11028 -0.0168584 +-0.000216315 0.0411702 0.046762 +-0.0166283 0.0393036 -0.0275139 +-0.0660426 0.171124 -0.0420386 +0.0456785 0.0862046 0.0141695 +0.00138117 0.044939 -0.0263139 +0.0461205 0.0704224 0.0223322 +-0.0776245 0.0703136 0.0210685 +-0.0756983 0.148597 -0.0138657 +-0.00849865 0.0773628 0.0576515 +-0.0145231 0.0446315 0.0506096 +-0.0683418 0.0625091 0.0209713 +0.0172542 0.0764235 -0.0285503 +0.00803706 0.0343648 -0.0148062 +0.02126 0.0748992 -0.0268979 +-0.0630463 0.113863 0.0385547 +-0.0145507 0.0980154 0.0489953 +-0.0546077 0.131128 0.0350935 +-0.012492 0.061843 0.0546212 +-0.028497 0.0550003 -0.0233987 +0.0217846 0.11532 -0.0122874 +-0.0931885 0.121553 0.0392843 +-0.0522878 0.055669 0.0133058 +-0.0592645 0.138135 0.0336221 +-0.0895773 0.139272 0.0261794 +-0.0653179 0.156011 -0.0499494 +0.0382996 0.103126 -0.00513692 +-0.00322923 0.0355467 -0.0162422 +0.0141613 0.0988714 -0.0229756 +-0.0404979 0.0776396 0.043177 +-0.000517251 0.0386237 0.0468325 +-0.0745039 0.117561 0.0526615 +-0.0404908 0.101464 0.0408992 +0.00150976 0.0562224 0.0541662 +-0.0302058 0.0649962 -0.0264588 +-0.0427465 0.0393017 -0.0242897 +-0.0680504 0.12005 0.0525411 +0.0105239 0.101777 0.0472989 +-0.051788 0.0855011 -0.0215694 +0.0121427 0.124109 -0.00776299 +-0.0714952 0.123214 0.0534125 +-0.0377025 0.0444987 -0.0253388 +-0.0285008 0.0573948 0.0366096 +-0.0557355 0.0753549 -0.0185519 +-0.0136024 0.0377623 -0.0264268 +-0.055443 0.13396 0.033868 +-0.0329956 0.122915 -0.00595413 +-0.0659107 0.120913 -0.00886784 +-0.00952503 0.0920885 -0.0357277 +-0.0437604 0.036567 -0.0252782 +-0.020729 0.181491 -0.0220031 +0.00793492 0.130935 0.0197362 +-0.00287417 0.10736 -0.0221559 +-0.0531678 0.0503031 -0.00638771 +-0.0649059 0.116607 -0.0100071 +0.0311853 0.0491232 0.0343139 +-0.0464498 0.034849 -0.0185661 +-0.0448976 0.168579 0.00154181 +0.0324248 0.0752705 -0.0187807 +0.00488488 0.0387234 -0.0100497 +-0.0607447 0.0752603 -0.0176616 +-0.0575406 0.0387439 -0.00960491 +-0.0874426 0.110454 0.0173412 +-0.0517698 0.0516016 0.0312301 +-0.0727656 0.156832 -0.0339136 +0.0123073 0.0638424 -0.0304488 +-0.00866157 0.0541436 -0.0334268 +0.00183737 0.0373069 0.04638 +-0.0298138 0.0344903 0.0411187 +-0.0674167 0.149888 -0.0375972 +-0.0770317 0.088754 0.0382806 +-0.0857815 0.0897033 0.0272482 +-0.0125983 0.037741 -0.0261872 +0.0182378 0.0893522 -0.0266421 +-0.0766704 0.154203 -0.00290271 +-0.0684648 0.0617211 0.0180797 +0.0505111 0.0637895 0.0291551 +-0.0497918 0.143216 0.0113941 +-0.0616227 0.156855 -0.0295846 +0.0290304 0.0968725 0.0421292 +-0.0756542 0.0679921 0.00394259 +-0.0526765 0.0514226 0.0124143 +-0.0625972 0.0348156 0.0215996 +-0.0544966 0.0791235 0.0440855 +-0.0544133 0.159808 0.00694146 +2.76528e-05 0.0391548 -0.0114154 +-0.00549746 0.0503818 0.0516227 +-0.0646199 0.0359342 0.0410351 +0.0410489 0.0445052 0.0289111 +-0.0356376 0.0548341 -0.0105043 +0.0272051 0.0465425 -0.0127095 +-0.0513967 0.161204 -0.00381805 +-0.0424671 0.124776 0.022048 +-0.0300883 0.0335187 -0.027157 +-0.0362553 0.0336801 0.0101688 +0.0513156 0.0588831 -0.00408417 +0.0399488 0.0688733 -0.0097971 +-0.0617146 0.155302 -0.0255819 +-0.0112103 0.129394 0.0199977 +-0.0552256 0.153277 0.0254807 +-0.0697772 0.0409122 0.00855159 +-0.0257631 0.0755055 -0.0369491 +-0.0601959 0.0422699 -0.00706205 +-0.0475933 0.134581 0.0184866 +0.0267481 0.0659374 0.0438828 +-0.0790343 0.0886679 0.0360671 +0.0606094 0.0637127 0.00915317 +-0.0823359 0.140394 0.000222625 +-0.0792589 0.1445 -0.00280742 +0.0288607 0.118772 0.0260462 +-0.000258207 0.0388058 4.93079e-05 +0.0142249 0.0779815 -0.0305449 +0.0279207 0.111816 -0.0105079 +-0.0649061 0.108122 -0.0141961 +0.0372666 0.0547889 -0.00619261 +-0.0258342 0.159627 -0.000620301 +-0.0761165 0.0874143 0.0388159 +0.0425599 0.101502 0.0121632 +0.0533305 0.0723883 0.0073663 +-0.0814882 0.139397 0.0468344 +-0.0119496 0.127575 -0.00116297 +0.0308488 0.116432 0.0267923 +-0.0342458 0.127284 0.0102001 +0.0488271 0.0733963 0.0130056 +-0.017912 0.059765 0.0509406 +0.0133103 0.0753629 0.0544488 +-0.0896061 0.126751 0.00429509 +0.034401 0.0461473 -0.00601616 +-0.0485411 0.166778 0.000587101 +0.0342862 0.0782566 -0.0167489 +-0.00549615 0.0925657 0.0562617 +-0.0700277 0.153659 -0.0489787 +0.00562336 0.034628 0.021452 +-0.0825014 0.0978733 -0.00561152 +-0.0665019 0.0818141 0.0428543 +-0.0628077 0.166262 -0.0415912 +0.0329576 0.0753133 -0.0177979 +0.0159612 0.0887478 0.0513106 +-0.0348521 0.0972102 -0.0229902 +0.00689753 0.13043 0.00224143 +0.0163113 0.0637479 -0.0291811 +-0.0681449 0.144372 -0.0168262 +-0.0709402 0.170831 -0.0510269 +-0.0618586 0.161576 -0.034591 +-0.05709 0.0562779 0.00261705 +-0.0511762 0.163872 0.00329038 +-0.0295002 0.0688631 0.0391758 +-0.0548706 0.0634738 0.0317723 +0.00519565 0.0838361 -0.0338494 +0.0412244 0.0703917 -0.00779979 +-0.0485608 0.164 0.00493162 +0.0405319 0.0913292 0.030651 +-0.0364055 0.0394201 0.0459276 +-0.0885895 0.126718 0.00227148 +-0.00135158 0.0925397 -0.0341169 +-0.0155034 0.0472755 0.0490261 +-0.0533709 0.0334238 -0.0075905 +-0.0135602 0.174221 -0.0197865 +0.0151695 0.0534137 0.0481113 +0.00249824 0.119676 0.0375233 +-0.0574904 0.0847348 0.0442092 +-0.0706266 0.111419 0.0453421 +-0.0498404 0.122243 -0.0112035 +-0.0580787 0.133988 -0.00600022 +-0.0856455 0.0845341 0.000486997 +-0.0677324 0.0847093 0.0432514 +-0.0516192 0.112658 -0.0171697 +-0.0294883 0.101537 0.0426799 +-0.0562967 0.0548357 0.00668262 +-0.0870689 0.0968011 0.00243877 +-0.0809104 0.126584 -0.00546143 +0.0226682 0.115322 0.0347114 +-0.0702279 0.156078 0.0244771 +0.00613975 0.0976727 -0.0254362 +-0.0654107 0.0782591 0.0414837 +0.0154936 0.104462 0.0445958 +-0.0557216 0.125528 0.0387388 +-0.0708946 0.1037 -0.0131771 +0.0207514 0.10232 -0.0203322 +0.040798 0.105646 0.00916422 +-0.0789759 0.136856 -0.00458832 +0.00163159 0.126824 0.0304308 +0.0217692 0.0444645 -0.0177596 +0.00149843 0.0965502 0.0531993 +0.00416774 0.034456 0.0194982 +-0.022279 0.185099 -0.0171819 +-0.0144819 0.0759021 0.0565083 +-0.062395 0.163038 -0.0545883 +0.0386856 0.0757975 -0.0108084 +0.0230618 0.0389706 0.0372995 +-0.0661823 0.154393 0.00121795 +-0.0751879 0.179229 -0.0530087 +-0.000499764 0.0590718 0.0548831 +-0.0616117 0.16 -0.0305904 +-0.0254372 0.0796492 0.0521904 +-0.087722 0.128407 0.0462822 +-0.0361331 0.122312 0.027301 +-0.0259579 0.0383264 -0.00469023 +-0.0615278 0.0399873 -0.00779984 +-0.0911978 0.147452 0.0151543 +-0.0776353 0.15693 -0.0189052 +-0.048662 0.0345502 0.0387985 +0.00500615 0.0390969 0.0281732 +-0.0664605 0.152204 -0.0437352 +-0.0514963 0.157854 0.00954267 +-0.0893902 0.139278 0.0291842 +-0.092072 0.128303 0.0302461 +-0.0166194 0.0421642 -0.027592 +-0.0880283 0.128084 0.00127828 +-0.06275 0.178179 -0.0598124 +-0.0242491 0.0796961 0.0538111 +-0.0575802 0.14965 0.0326026 +-0.0598499 0.0364094 -0.00954648 +0.0260337 0.0639191 -0.0225668 +-0.0215138 0.185205 -0.0184453 +0.00733204 0.0567933 -0.0307054 +-0.0394107 0.125604 0.021627 +-0.0805747 0.154604 0.0238516 +0.0319556 0.0942571 0.0410831 +-0.0503335 0.0345244 0.0401985 +-0.0521615 0.159088 -0.00368491 +-0.0816591 0.0828436 -0.00556986 +0.0120628 0.0346214 0.0245844 +0.00946799 0.112678 0.0395888 +-0.00501719 0.0348021 0.0425449 +-0.080434 0.0763484 0.0258387 +0.0419394 0.0802864 -0.00678235 +-0.0270715 0.179993 -0.0160072 +-0.00929516 0.17029 -0.0258484 +0.028889 0.0549767 0.0398373 +-0.0324184 0.123701 0.0227019 +-0.00768132 0.0976452 -0.0294292 +-0.0534956 0.0478266 0.0400304 +-0.0637998 0.0852745 -0.0191701 +0.0175395 0.0364962 0.0420884 +0.0289699 0.100814 0.0402993 +-0.0384924 0.0478181 0.0398313 +-0.00649796 0.0457161 0.0472731 +0.00861625 0.13122 0.00857267 +-0.0424707 0.0634258 0.0409808 +-0.0147714 0.163994 -0.0109737 +0.0514504 0.0735674 0.0125302 +0.0157166 0.0461353 0.0435597 +-0.0886232 0.152074 0.0182297 +-0.0732612 0.155462 -0.02991 +0.0560042 0.0728404 0.0157211 +-0.0465551 0.0447198 -0.0107805 +-0.020486 0.18455 -0.0138786 +0.00948927 0.0976692 0.0490505 +0.0112322 0.0342419 -0.000927635 +0.0153695 0.0617406 0.0502582 +-0.0137598 0.0382596 0.0196658 +0.0302365 0.0828976 -0.0200496 +-0.00484087 0.0994589 -0.0252596 +-0.0335771 0.177292 -0.00581839 +-0.0706171 0.160991 -0.0459386 +-0.0381352 0.155099 0.00439417 +0.0262713 0.112733 0.0346521 +-0.0288992 0.0377652 0.0242203 +-0.0741081 0.174769 -0.0407073 +0.0312687 0.106096 -0.0123707 +-0.0467828 0.168244 0.000200438 +-0.0544952 0.0440117 0.0450302 +0.00623037 0.129867 0.000104943 +-0.043169 0.163647 -0.0101027 +-0.0034944 0.103046 0.0439357 +-0.0265042 0.106069 -0.02235 +-0.0577843 0.0811473 -0.0206854 +-0.0358177 0.0886369 -0.024178 +-0.0726405 0.148337 -0.0310398 +-0.0454975 0.111194 0.0370842 +-0.0671848 0.0335335 0.00220964 +-0.0117936 0.0667192 0.0544625 +-0.0609674 0.125285 -0.00834926 +-0.080841 0.0760714 -0.00147772 +-0.0522091 0.118697 -0.0134778 +-0.074349 0.162439 -0.0349528 +-0.0740415 0.112641 0.0489542 +-0.0294567 0.0847909 0.044594 +-0.0204364 0.038385 0.0254029 +-0.0497015 0.070866 -0.0150622 +-0.0525829 0.113848 -0.0164008 +-0.0415348 0.163761 0.00444738 +-0.0644934 0.106993 0.039043 +0.0437981 0.0734503 -0.00176783 +-0.0284962 0.0946634 0.0451029 +0.0309795 0.0506032 0.0357766 +-0.0395331 0.128532 0.0067941 +-0.0424235 0.12018 -0.013117 +-0.0197167 0.103079 -0.0233045 +-0.0430994 0.12944 0.0113807 +-0.0913339 0.117411 0.0283055 +0.026348 0.0463448 0.037827 +-0.0406738 0.0606904 -0.0121867 +-0.071511 0.0930107 0.0417462 +-0.0866623 0.0964635 0.0264805 +0.00386952 0.131337 0.0182591 +0.0282305 0.08443 -0.0217055 +0.0128412 0.0347905 0.0282102 +0.00434097 0.053874 -0.0300717 +-0.0754795 0.0704499 0.0266608 +-0.0699695 0.135529 -0.00821968 +-0.0305143 0.0348089 0.0211376 +0.00750189 0.118272 0.0376599 +-0.0504996 0.108397 0.0385655 +-0.0779682 0.135412 -0.00525448 +-0.0273965 0.0380183 0.0261038 +-0.0520915 0.129726 0.0334448 +-0.0221568 0.157426 -0.00647102 +-0.0562219 0.0560519 -0.00142054 +-0.0817829 0.110167 0.0313299 +-0.0502435 0.0335698 -0.00160666 +0.0331444 0.0584441 -0.0147212 +-0.00651273 0.0760152 0.058184 +-0.0285619 0.108073 -0.0204718 +-0.0157027 0.123907 0.0301351 +-0.0175006 0.10024 0.0438179 +-0.0297515 0.154263 -0.00514597 +-0.0475033 0.113884 0.0346438 +-0.0154952 0.087016 0.0568367 +0.0435889 0.0706095 -0.000776861 +-0.0930208 0.116049 0.0173125 +-0.0783399 0.174997 -0.0480125 +-0.0650728 0.117149 0.0481049 +0.0600369 0.0650499 0.00814341 +-0.0678832 0.147765 -0.0303891 +-0.0802136 0.0813857 -0.00655277 +-0.0356852 0.127701 0.00820492 +0.0154871 0.0990335 0.0473819 +-0.019377 0.127678 0.00978651 +-0.0208657 0.123339 0.0268408 +-0.0553906 0.073233 0.0409139 +0.0560337 0.0553031 0.0245952 +-0.0306612 0.0816984 0.0420491 +0.04335 0.0902653 0.0251673 +-0.0137008 0.0599733 -0.0359611 +-0.0535493 0.045819 -0.00734382 +0.0152704 0.07093 -0.0305648 +-0.0706849 0.0819434 0.0406373 +0.0104915 0.114065 0.0387753 +-0.052073 0.150157 -0.00315276 +0.00150908 0.0458287 0.0477014 +-0.00149907 0.122451 0.0357652 +0.0346578 0.114254 0.0196698 +-0.0263079 0.125672 0.00579971 +-0.0662371 0.173912 -0.0594768 +-0.0111949 0.178453 -0.0296295 +-0.039457 0.0403768 -0.0273046 +-0.0321606 0.153429 -0.00535973 +0.0505072 0.0678423 0.0265215 +0.0377143 0.106919 0.0261871 +-0.0717609 0.172825 -0.0369735 +-0.034656 0.0592094 -0.011649 +-0.0237103 0.0348634 0.0507821 +-0.0409865 0.0355803 0.00929737 +0.0240747 0.0915746 0.0472686 +-0.0576816 0.0336048 -0.0104516 +0.034582 0.0563647 0.0357928 +-0.0304985 0.0631621 0.0381216 +-0.0145978 0.0392398 -0.0269855 +-0.0446029 0.130656 0.0108143 +0.0240159 0.124704 0.0156714 +0.00222038 0.0796794 -0.0348837 +-0.029229 0.179986 -0.0130226 +-0.0371614 0.0338798 0.00980443 +-0.0654857 0.101487 0.0416824 +-0.0386286 0.0534191 -0.0107521 +-0.0743388 0.0659419 0.0131754 +-0.0775178 0.172972 -0.0399134 +-0.0704983 0.0999903 0.0403231 +-0.0754673 0.153642 0.0315487 +-0.0567915 0.158113 0.00751453 +-0.0733158 0.165215 -0.0409863 +-0.0878452 0.096803 0.00445868 +0.02849 0.120167 0.00308975 +-0.0866911 0.107697 0.0133542 +-0.0422556 0.127428 -0.00269381 +-0.0684868 0.135467 0.0467048 +-0.0187173 0.108826 -0.0212527 +-0.0109134 0.038586 0.0018115 +-0.0689089 0.106601 -0.012938 +0.00232768 0.0597693 -0.0328325 +-0.0759088 0.150426 0.0375079 +-0.0642836 0.175364 -0.0612207 +-0.0626162 0.142488 0.0376248 +-0.0388973 0.150052 -0.00339157 +0.0187974 0.0398349 -0.0187285 +0.0404333 0.0725805 0.0320798 +-0.0863763 0.0991625 0.0261078 +0.0544186 0.0725633 0.0195702 +-0.076294 0.155585 0.0106948 +-0.0611522 0.045903 0.0393286 +-0.0167746 0.0756989 -0.0389455 +-0.0578115 0.0619893 0.0271205 +-0.0127071 0.179586 -0.0289228 +-0.0568431 0.0926948 -0.0216401 +-0.0900812 0.150215 0.0221142 +0.0222403 0.0416489 -0.00972259 +-0.0504069 0.135839 0.0247969 +-0.0304966 0.0545819 0.0366047 +-0.0103146 0.180354 -0.0288775 +0.0320122 0.117952 0.0129635 +0.0440424 0.0496996 0.0318585 +0.0393181 0.0603877 -0.00577734 +-0.071953 0.16101 -0.0409434 +-0.0437665 0.168716 0.00196199 +-0.0498819 0.105595 -0.0195612 +0.0217639 0.0458254 -0.0188683 +-0.0921421 0.116123 0.0383102 +-0.0636791 0.157483 -0.0138656 +0.0266706 0.04428 -0.00700704 +0.0433132 0.0818321 0.0274518 +-0.0580456 0.0494852 0.00468232 +-0.0735836 0.159386 -0.00731186 +-0.0544231 0.0344532 0.039385 +-0.00150237 0.089761 0.0564112 +0.015933 0.126357 0.0269718 +-0.0425015 0.0719333 0.0422422 +-0.0589488 0.147198 -0.00200697 +-0.087209 0.0941073 0.00444199 +-0.0120214 0.178126 -0.0292101 +-0.0835465 0.101952 0.0288636 +0.041496 0.0555737 0.0320634 +-0.0025007 0.0675576 0.0566246 +-0.0756877 0.15767 -0.00739081 +-0.0105023 0.0829243 0.0578427 +-0.00627368 0.128136 0.0276028 +-0.0404708 0.109814 0.0374017 +-0.00378356 0.130498 0.0212315 +0.0580765 0.0566038 0.0222343 +-0.0853725 0.111782 0.0273822 +0.0428559 0.0972978 0.0221679 +0.00122739 0.121444 0.0362285 +-0.0274798 0.0446461 0.0507675 +-0.0304832 0.12104 0.0263992 +-0.0371379 0.127502 0.0150528 +-0.0778671 0.177131 -0.0494084 +-0.0775564 0.166657 -0.0379504 +-0.0605167 0.0386224 -0.00865968 +-0.0171147 0.161213 -0.00734926 +-0.0726687 0.161352 -0.00991102 +0.032766 0.0700345 0.0403232 +-0.0458559 0.10138 -0.0215412 +0.017353 0.0374009 0.0430484 +0.000357196 0.0347559 0.0401008 +-0.0604421 0.0427792 0.0246961 +-0.0440271 0.128143 0.0184429 +0.0423724 0.056151 -0.00596664 +0.00534844 0.0596161 -0.0309806 +0.0320447 0.061134 -0.0177676 +-0.00279591 0.0988433 -0.0266823 +0.0289846 0.0664902 -0.0199255 +0.000300027 0.0360761 0.019065 +-0.0250833 0.0379957 0.0175874 +0.0345167 0.0754586 -0.0157294 +0.0153241 0.0623295 -0.0291944 +-0.0609083 0.0612023 0.0236586 +-0.0698972 0.0655268 -0.00153079 +0.00337067 0.115645 -0.0185908 +-0.0315398 0.0589058 0.0377684 +-0.00748372 0.0488969 0.0502433 +-0.0877886 0.0861226 0.0174689 +0.0414464 0.101443 0.020163 +0.0252372 0.0926012 -0.0220221 +-0.0572172 0.0498044 0.00711465 +-0.0384957 0.0719179 0.0419735 +0.0143485 0.0552312 -0.0288146 +-0.0512659 0.0360808 0.0462964 +-0.0880011 0.0941555 0.00641769 +-0.0508873 0.109845 -0.0186279 +-0.0514991 0.112527 0.0359192 +-0.0338144 0.0342727 0.0263277 +-0.0615036 0.0804118 0.0430159 +-0.0663263 0.0606754 0.0176657 +-0.0909825 0.11607 0.0303184 +0.0184707 0.107054 0.0413783 +-0.0243398 0.183957 -0.0138554 +-0.0158705 0.161111 -0.00904539 +-0.0335094 0.0647262 0.0398847 +-0.0782927 0.098997 -0.00960155 +0.0486963 0.0730972 0.0159514 +-0.0478872 0.0335336 -0.00475407 +-0.0154917 0.0883884 0.056678 +-0.077344 0.119067 0.051823 +-0.0560293 0.0674866 0.0368481 +-0.0635813 0.138158 0.0379352 +-0.0217661 0.0670215 -0.0366181 +0.0483442 0.0575601 -0.00531363 +-0.0237817 0.0727523 -0.0377511 +0.0443603 0.0490341 -0.0052894 +-0.0604973 0.0904382 0.0452731 +-0.0627563 0.152415 -0.0301468 +-0.0714195 0.067071 -0.00151156 +-0.0861662 0.147397 0.00721409 +0.011631 0.0474937 0.0464252 +0.0254946 0.0406248 0.0343049 +0.035443 0.111045 0.0256623 +-0.000588677 0.037658 -0.0249499 +-0.0388448 0.0971399 -0.0223049 +-0.0660244 0.166553 -0.0262486 +-0.048499 0.0848032 0.0451307 +0.0371019 0.111384 0.0119604 +-0.00927598 0.177254 -0.0287785 +-0.0389846 0.1533 -0.00797514 +-0.0351198 0.0484277 -0.0173281 +-0.00353807 0.0389271 0.0301841 +0.0132013 0.0864568 -0.0307211 +-0.0390625 0.110364 -0.0188163 +0.033372 0.106071 0.0326127 +-0.0831505 0.0857608 0.0304017 +0.0552187 0.0635647 0.027041 +0.0399168 0.0999289 0.0271558 +-0.0579697 0.0339719 0.0233097 +-0.0137397 0.178677 -0.0217984 +-0.0203244 0.0385446 0.0306811 +0.00122549 0.0359125 0.00298025 +0.0117447 0.0343946 -0.0103375 +-0.0913959 0.132306 0.0102259 +-0.0429194 0.0898997 -0.0223492 +-0.0511515 0.0337361 -0.0129379 +-0.0750027 0.155319 0.00677634 +-0.0771027 0.0689891 0.00817725 +-0.0353224 0.0340121 0.0244595 +-0.0291276 0.0386567 -0.0130433 +0.0303577 0.105377 -0.0136057 +0.0235082 0.12516 0.0112114 +-0.00249775 0.0787967 0.0582683 +0.0533686 0.0732758 0.0102917 +-0.0586915 0.0472669 0.00864036 +0.0328626 0.0738919 -0.0178203 +-0.017795 0.038392 0.00241319 +-0.044502 0.0478297 0.0399289 +-0.0747378 0.0687745 0.000531905 +0.0172248 0.12732 0.0217261 +0.0428517 0.0885116 0.026874 +-0.078089 0.159705 -0.0229182 +-0.00858725 0.0362397 -0.025275 +-0.0867205 0.102198 0.00542391 +-0.0926774 0.131034 0.0232376 +0.0167938 0.128074 0.00445644 +0.0541315 0.0553714 0.0271399 +-0.000925431 0.131188 0.0179397 +0.0288719 0.121048 0.0132077 +-0.00849451 0.0965679 0.0534544 +0.0226575 0.102902 -0.0189538 +-0.0787984 0.113337 -0.0032043 +-0.0099585 0.1135 -0.0182227 +-0.0282274 0.162443 -0.0041123 +-0.082525 0.0896742 -0.00660526 +-0.0477053 0.0708612 -0.0154107 +-0.0435026 0.0465062 0.0407289 +0.00126756 0.0669175 -0.0339113 +-0.0341799 0.0335887 -0.0224091 +-0.0623664 0.0443972 0.0296888 +-0.0374964 0.0676867 0.0416821 +0.00859545 0.0382141 0.0296981 +0.0458872 0.0834155 0.0151706 +-0.0908205 0.132399 0.0292201 +-0.0191683 0.0336751 -0.0214022 +-0.0140554 0.126614 -0.00210251 +-0.0260065 0.0335246 -0.026366 +0.0324259 0.0399358 -0.00240332 +-0.0296544 0.0346993 -0.0301222 +-0.0669615 0.129698 -0.00899609 +-0.0471845 0.0383965 -0.0142868 +-0.0572808 0.0345537 0.0438127 +-0.0627957 0.153425 0.0330074 +-0.0515105 0.13416 -0.00180112 +-0.0434907 0.171345 -0.00503558 +-0.0677742 0.0808646 -0.0174732 +0.00350312 0.0441648 0.0458711 +0.0291321 0.0686302 0.0420784 +0.0132792 0.0343795 0.0214237 +-0.0866978 0.12169 0.0483599 +-0.00350013 0.0801522 0.057807 +0.0371657 0.0997172 -0.00981258 +-0.0447383 0.0738987 -0.0178782 +-0.0605228 0.155495 0.0235493 +-0.0362392 0.151744 -0.00510561 +0.0454797 0.0637982 0.0288243 +-0.0672083 0.0609402 0.0172424 +0.0241031 0.0782197 0.0489777 +0.0442629 0.0672699 0.000591455 +-0.0289948 0.0522303 -0.0223864 +-0.0645013 0.0774777 0.0413253 +0.0444938 0.0959562 0.00517859 +-0.00459579 0.039143 -0.025596 +0.0184671 0.0913654 0.0479185 +0.0146407 0.129582 0.00935921 +-0.0505573 0.0439128 0.0441317 +-0.0141262 0.119616 -0.0126879 +-0.0849191 0.117035 0.0482987 +0.0280536 0.119554 5.13011e-05 +-0.0247655 0.0712486 -0.0365856 +0.0034971 0.091096 0.055256 +-0.0641848 0.0432086 0.0316934 +-0.0881185 0.151555 0.0230923 +-0.0680885 0.16093 -0.05501 +0.0474345 0.0682488 0.00159582 +0.0111403 0.105858 -0.0199086 +-0.0369545 0.0349347 0.0427177 +-0.0604782 0.144516 -0.00363507 +-0.0394712 0.08608 0.0435352 +-0.0548214 0.143869 0.0295389 +-0.028506 0.107069 0.0398546 +0.0281659 0.121502 0.0158045 +-0.0797197 0.143117 -0.0027917 +-0.0616803 0.166235 -0.0555923 +-0.0204271 0.0893191 -0.0369723 +0.0361287 0.085855 -0.0169039 +-0.00251199 0.107268 0.0437857 +-0.0114962 0.0842854 0.0575311 +-0.0738001 0.0651206 0.00865838 +-0.0114808 0.0353662 -0.0177045 +0.0391473 0.0421646 0.0269754 +-0.0565891 0.129759 0.0374849 +-0.0720408 0.171996 -0.0342175 +-0.0139288 0.0883705 -0.0380287 +-0.0562656 0.0335637 0.0133743 +-0.0196985 0.0957936 -0.0295783 +-0.00486881 0.104509 -0.0228932 +-0.0550525 0.129598 -0.0055846 +-0.0584858 0.0776493 0.0431837 +-0.0898534 0.121302 0.00430136 +-0.0191218 0.165312 -0.0179178 +-0.0249563 0.0383168 0.00102848 +-0.0199274 0.0958752 0.0490354 +-0.0574825 0.113918 0.0359516 +-0.00850157 0.101663 0.0440465 +-0.0873724 0.124348 0.0475064 +0.00764213 0.03621 -0.0128239 +-0.0264494 0.0648769 0.0395324 +0.0541546 0.0547912 -0.000791322 +-0.0434926 0.0789866 0.0425224 +0.0241906 0.121901 0.0271611 +-0.0866809 0.0819772 0.0124969 +-0.0717212 0.0344863 0.00580157 +0.0302841 0.11623 -0.00325108 +-0.0737112 0.155478 -0.0269075 +-0.0424683 0.108486 0.0389261 +0.0176716 0.0658898 0.0500991 +0.0494857 0.064014 -0.00214923 +-0.0514961 0.0945888 0.044111 +0.0340749 0.0901032 -0.0173771 +-0.0719584 0.0942006 0.0415089 +-0.0544894 0.0594391 0.0238452 +-0.0877192 0.101 0.0223776 +-0.0758319 0.173116 -0.0385323 +-0.0114857 0.119632 0.0369891 +-0.0313874 0.0581183 -0.0163942 +-0.0157652 0.0728861 -0.0388826 +0.0167046 0.0945555 -0.0241181 +-0.000498244 0.0647983 0.0567029 +0.0256473 0.0420743 0.0363142 +-0.0630437 0.12273 0.0457647 +-0.0540131 0.144678 0.0264098 +0.0135054 0.10711 0.0421551 +-0.00428335 0.124198 -0.00969837 +0.0415325 0.0816649 -0.00777347 +-0.0392229 0.0337594 -0.0179786 +0.0593141 0.0691549 0.00914325 +-0.0219522 0.0382139 0.00717586 +0.0288925 0.112764 0.0331675 +-0.0524014 0.152599 0.0134601 +-0.0628726 0.147915 -0.0152353 +-0.030456 0.158107 0.0014598 +0.0308953 0.0400111 0.0272142 +-0.0757616 0.109947 0.0435791 +0.0253341 0.0591059 -0.0237971 +-0.0261555 0.155801 -0.00568703 +-0.0679463 0.128236 -0.00906158 +-0.0156387 0.0377596 -0.0169892 +-0.0757064 0.112028 0.0472849 +-0.0155135 0.0631057 0.0533345 +-0.0512066 0.125627 -0.00670494 +-0.0896222 0.111892 0.015334 +-0.0493777 0.160927 -0.00574679 +-0.0630274 0.166296 -0.040584 +0.058244 0.0580344 0.0225642 +0.0413547 0.102812 0.0011821 +-0.0162922 0.125122 0.0270033 +0.02338 0.0632213 0.0460213 +0.0609114 0.0623534 0.0131596 +-0.0691061 0.164802 -0.0173282 +-0.0870447 0.0977755 0.0254107 +-0.00849378 0.112803 0.0415796 +0.0145027 0.115416 0.0371643 +-0.0184257 0.066889 0.0526426 +-0.0448982 0.123992 0.0241166 +-0.050497 0.0903958 0.0446608 +-0.0315626 0.0348573 0.0456798 +-0.0684915 0.0902546 0.0428415 +-0.0180785 0.0337977 -0.021304 +0.0043349 0.0389929 -0.00853324 +-0.0830349 0.153941 0.0230111 +-0.0800798 0.103192 -0.0065999 +0.0437731 0.0973301 0.016155 +0.00944321 0.131132 0.0160037 +-0.0514165 0.0627417 0.0327301 +-0.0528926 0.154865 0.0118243 +0.0187407 0.0740964 0.0517477 +-0.0721682 0.0657282 0.00147121 +0.00959045 0.131031 0.00893055 +-0.0694847 0.181423 -0.0563964 +-0.0569551 0.11454 -0.0150747 +-0.0821005 0.0885236 0.0320901 +-0.0174725 0.0383553 0.00432532 +-0.00258809 0.0348892 -0.0237423 +0.0413648 0.0939401 0.0283252 +-0.00375638 0.13079 0.0183493 +-0.0686466 0.0719376 -0.0111307 +-0.0688202 0.180176 -0.0531787 +-0.0397209 0.0710215 -0.0169451 +0.0184831 0.105752 0.0426872 +0.00809551 0.112572 -0.0192987 +0.0206432 0.121117 -0.00652883 +-0.0718516 0.0979698 -0.0147575 +-0.0662716 0.170413 -0.0392349 +0.0237477 0.0605032 -0.0251433 +-0.0340875 0.177472 -0.00744261 +-0.0167857 0.0784752 -0.0385587 +-0.0565291 0.0373798 -0.0104777 +0.00297843 0.0341587 0.014086 +-0.0667756 0.124253 0.0509201 +-0.026364 0.0359692 -0.029405 +-0.0550408 0.0334649 -0.000671931 +-0.0697701 0.0874139 0.0423816 +0.0246944 0.0835826 0.0481083 +0.0199488 0.115322 0.0360728 +0.0383916 0.042968 -0.00337479 +-0.0365829 0.0335193 -0.0246869 +-0.0355007 0.112502 0.0349387 +-0.0689238 0.125301 -0.00884615 +0.0395927 0.0385536 0.0157178 +-0.0889313 0.0875027 0.0114635 +0.0448665 0.0945715 0.00517989 +-0.0477042 0.0664777 -0.0141832 +-0.0434727 0.125255 -0.0084227 +-0.0166904 0.169787 -0.0155577 +-0.0134983 0.0501789 0.0495792 +-0.0624968 0.0833205 0.0441176 +-0.0342132 0.0345231 0.0384015 +0.043295 0.084533 0.027498 +-0.0819819 0.112797 -0.000848269 +0.0121624 0.129948 0.0198557 +-0.0674677 0.10143 0.0408399 +-0.0626754 0.059895 0.0191264 +-0.0367892 0.0459324 0.0404864 +-0.027194 0.0764697 0.0455544 +-0.0824053 0.0748814 0.00852871 +-0.0656294 0.0642362 -0.0044412 +0.032725 0.116988 0.0160848 +-0.0764226 0.102162 0.0358668 +0.00148048 0.0952613 0.0542408 +0.0228866 0.122341 0.0280976 +-0.0584486 0.139576 0.0330542 +-0.0402835 0.123242 -0.0103332 +-0.012241 0.0406566 0.0504983 +-0.0489426 0.0614374 0.0351759 +-0.0844851 0.0778045 0.00951927 +-0.0369817 0.156591 0.00432745 +-0.0882804 0.103688 0.0163664 +-0.0258065 0.0825691 -0.0373737 +-0.0355052 0.102861 0.0407303 +-0.0524183 0.131115 0.0329855 +-0.0227031 0.175691 -0.0136597 +0.050697 0.0684106 0.00144017 +0.000504835 0.0911354 0.0558722 +0.00231832 0.0583343 -0.0324165 +-0.0148886 0.169807 -0.0164639 +-0.0722033 0.152534 -0.0417656 +-0.0134817 0.073078 0.0557755 +-0.0255231 0.109882 0.0391184 +-0.0655581 0.135384 0.0421104 +-0.024745 0.0698061 -0.0360534 +0.0559546 0.0524347 0.0227151 +-0.0283257 0.118773 -0.011655 +-0.0335185 0.0974234 0.0440535 +-0.0817699 0.0748179 0.0155353 +-0.027189 0.162441 -0.00437298 +-0.0267454 0.0711222 -0.0350441 +-0.03015 0.171175 -0.0170282 +-0.026605 0.06607 0.0397555 +-0.074698 0.179765 -0.0510072 +0.0143367 0.0504741 0.0468665 +-0.0594975 0.111137 0.0367915 +-0.0346758 0.127158 0.0144691 +-0.0465015 0.0847604 0.0446321 +0.00381747 0.0354686 0.0455691 +0.0172732 0.0792708 -0.0288683 +0.0323738 0.104756 0.0346971 +-0.0794458 0.0813481 -0.00752304 +-0.0312226 0.0367355 -0.0304453 +-0.0110616 0.168437 -0.0238044 +-0.0579369 0.119806 -0.0105246 +-0.0337394 0.0355643 0.0323212 +0.0312129 0.0525777 -0.012761 +-0.0346988 0.120729 -0.0096591 +-0.0388776 0.0364147 0.043017 +-0.0271127 0.16377 -0.0158754 +-0.0114338 0.0347606 0.0448027 +-0.0897559 0.114544 0.00631807 +0.0408171 0.04213 0.0255289 +-0.0648854 0.102482 -0.0170908 +-0.0137359 0.061178 0.0537969 +-0.00359581 0.130946 0.00835725 +0.0439346 0.0959403 0.0181595 +-0.0194977 0.104404 0.0429832 +-0.0691323 0.0776098 0.0394254 +-0.00248627 0.097432 -0.0292057 +0.00445885 0.0387258 0.0265895 +0.0492859 0.0567642 0.0307116 +-0.077476 0.164468 -0.0240677 +-0.0666867 0.175728 -0.049503 +-0.0251661 0.0664206 0.0424455 +-0.027701 0.0549269 0.0368456 +-0.018943 0.164042 -0.0169159 +-0.0435133 0.0846552 0.0431729 +-0.0888345 0.136443 0.0400961 +0.00149473 0.112812 0.0419217 +-0.0298299 0.09304 -0.0247313 +-0.0836967 0.0790161 0.00252063 +-0.000924151 0.039273 -0.0117161 +-0.0567677 0.0811908 -0.0210238 +-0.0934681 0.120116 0.0253121 +-0.0429479 0.170625 -0.000616016 +-0.075975 0.156283 -0.00563956 +-0.00861288 0.0384077 0.0151551 +-0.00160584 0.0434015 -0.0251635 +-0.00451637 0.113738 -0.0185133 +-0.0780673 0.0690482 0.0132523 +-0.0237986 0.0784163 -0.0381462 +0.0404558 0.0643575 0.0302495 +0.00150103 0.0576486 0.0543674 +-0.0314973 0.0746234 0.0406619 +-0.0430409 0.0337266 -0.000289053 +-0.0303409 0.0462461 0.0481864 +0.0215433 0.04083 0.0414017 +-0.0328294 0.0901297 -0.0245803 +-0.0654933 0.0370192 -0.00733845 +-0.0128512 0.129269 0.0078276 +-0.0102634 0.129467 0.00444971 +-0.0525768 0.0530264 -0.00686565 +0.0152424 0.0737083 -0.0300265 +-0.0523202 0.0474101 0.0149978 +-0.03228 0.059616 -0.0144015 +0.0262796 0.0733084 -0.0244949 +-0.091934 0.128302 0.0312437 +-0.0556539 0.153362 0.0267778 +0.00449629 0.118272 0.0381357 +-0.00902947 0.129018 0.00125187 +-0.00169837 0.0391357 -0.00987107 +0.0277845 0.0849076 0.045525 +-0.0241779 0.1712 -0.0197595 +0.0450874 0.0847681 0.0221666 +-0.0251342 0.0878826 0.0516343 +0.00641806 0.0347537 -0.00236123 +-0.0411191 0.111396 -0.0179091 +0.027653 0.0506012 0.0379885 +0.0219297 0.123716 0.0263137 +-0.0688294 0.148429 -0.0341374 +-0.0315292 0.124197 -0.00202254 +0.00150698 0.0801002 0.0571866 +-0.0615835 0.0366556 0.0444374 +-0.0481389 0.160609 -0.00688834 +-0.0254054 0.0766649 0.0494071 +-0.0774728 0.155537 -0.0149084 +-0.0401214 0.159176 -0.0112287 +0.0596647 0.0691741 0.016158 +-0.011487 0.110004 0.0424075 +-0.0381186 0.128235 0.00584498 +0.048576 0.0464424 0.0249843 +-0.0923754 0.118793 0.0312942 +-0.0639323 0.123848 -0.00887264 +-0.0798905 0.126603 -0.00582167 +-0.0413231 0.0462396 -0.0163116 +-0.0908165 0.145736 0.0263481 +0.0446156 0.0959646 0.00916087 +-0.0821218 0.075868 0.0188618 +0.05068 0.0673838 0.000483718 +-0.0501479 0.0515412 0.017644 +-0.00617289 0.130741 0.0117189 +-0.051836 0.0956238 -0.0221428 +-0.074878 0.122304 -0.00772392 +-0.00159817 0.0419657 -0.0250292 +-0.0474982 0.162268 0.00647513 +-0.0331161 0.0498057 0.0395103 +0.00234342 0.0510926 -0.0302041 +-0.0851404 0.125756 0.0494653 +-0.0699016 0.160977 -0.0489386 +-0.0798846 0.0706301 0.0125498 +-0.0697873 0.0819627 0.0411407 +-0.0547576 0.161266 0.00105716 +-0.0895055 0.0902528 0.0184453 +-0.0261075 0.162258 -0.0150297 +0.046501 0.0611194 0.0308227 +0.0238707 0.0929061 0.0469915 +-0.0533713 0.0334322 -0.00211203 +0.0417012 0.085878 -0.00880084 +0.0288139 0.110493 -0.0110929 +-0.083716 0.087071 0.0295098 +-0.0798758 0.155212 0.019678 +0.0049172 0.0339971 0.00916661 +0.0160048 0.0590435 0.0493667 +0.0573849 0.0699459 0.0206376 +0.0345802 0.103262 -0.0113359 +-0.0797481 0.0789376 0.0314228 +-0.0346581 0.0340056 0.0228095 +-0.0631272 0.0656833 0.0316274 +-0.0145321 0.0459268 0.0498594 +-0.0364091 0.0339112 -0.0194195 +0.0181222 0.116444 -0.0134944 +0.0341932 0.113962 0.0237708 +-0.0761778 0.148614 -0.0108668 +-0.0044937 0.0473352 0.0489501 +-0.0328741 0.0807299 -0.0285171 +-0.0724981 0.121807 0.0536688 +-0.0657234 0.153927 0.0319321 +-0.0548973 0.112625 -0.01673 +0.0464212 0.0764513 0.00819032 +0.0272261 0.0451183 -0.00768323 +-0.0629092 0.156144 0.021238 +-0.0631603 0.151216 -0.00238889 +-0.0347632 0.076687 -0.0214942 +-0.0906385 0.147509 0.0131579 +-0.0122779 0.122169 -0.00937841 +-0.0588974 0.156171 0.00210438 +-0.0123378 0.123047 -0.00831897 +-0.0496312 0.0590927 -0.0108209 +-0.0409256 0.153594 0.00561766 +-0.0405007 0.0860467 0.0431081 +0.0445131 0.0735224 0.0237705 +-0.0213844 0.123724 -0.0049697 +-0.0633941 0.159891 -0.0485891 +0.0364077 0.044553 -0.00488844 +-0.0739928 0.155924 0.011504 +-0.0111043 0.0366055 0.0502176 +0.03375 0.0929319 0.0401542 +-0.00645978 0.0918654 -0.0354548 +-0.0827096 0.131285 0.0511192 +-0.0835459 0.133987 0.0490485 +-0.0294951 0.0617035 0.0376524 +-0.0493817 0.138599 0.0163919 +-0.055623 0.120216 -0.0109924 +-0.00449347 0.121049 0.0367461 +-0.048904 0.144756 0.0084067 +0.00645901 0.0392685 0.0301228 +-0.0913214 0.114759 0.0373166 +-0.0265805 0.0377426 0.0157053 +-0.00572231 0.0669806 -0.0352658 +-0.0525421 0.050441 0.0296546 +0.0313831 0.11825 0.0184294 +-0.0288441 0.0958675 -0.0242091 +-0.0149484 0.177196 -0.0200335 +0.0230906 0.0973761 -0.0211755 +-0.0134888 0.11412 0.0398002 +-0.0652337 0.169622 -0.0599681 +-0.069106 0.161031 -0.0101008 +-0.0147444 0.0700214 -0.0382575 +0.000412578 0.0376462 -0.0248548 +-0.0694764 0.165214 -0.0509787 +-0.0817245 0.100671 0.0313188 +-0.0464909 0.0704463 0.0410366 +-0.0604958 0.0890419 0.0453253 +-0.0356646 0.155102 0.0026804 +0.0313895 0.0549645 0.0381834 +-0.0390844 0.149487 -0.000628748 +-0.0799141 0.109193 0.0343277 +-0.033406 0.159477 0.0024166 +0.0461298 0.0806288 0.00519237 +-0.00455042 0.0384226 0.0105194 +0.054633 0.0708998 0.00492223 +0.0466692 0.0754291 0.0122452 +-0.0510158 0.118895 -0.0136999 +0.0442088 0.0931449 0.0211603 +-0.026052 0.036748 0.0540507 +-0.0121151 0.0568039 0.0522997 +-0.0605217 0.0372227 -0.00906293 +-0.0505374 0.138563 0.00240881 +-0.0499851 0.135487 0.00142097 +0.0375229 0.0590309 0.0330268 +0.00350924 0.0842701 0.0573364 +0.0132839 0.0652538 -0.0302637 +-0.0742776 0.161639 -0.0118948 +-0.0507685 0.164108 -0.00292996 +-0.0198709 0.104468 -0.0228058 +0.0376047 0.0616532 -0.0107499 +-0.0773811 0.108845 0.0387481 +0.0226208 0.102094 0.0434114 +-0.0882171 0.135133 0.0423395 +-0.0506614 0.0515945 0.0196285 +-0.0603044 0.155837 0.0105687 +-0.0124866 0.11001 0.0423152 +0.02167 0.125998 0.00768374 +0.0323984 0.0396183 0.0260504 +-0.0709343 0.126767 -0.00893718 +-0.0135132 0.116917 0.0382221 +-0.0116656 0.051126 -0.0319435 +-0.0309822 0.125744 0.00553845 +0.0459345 0.0862193 0.0101703 +0.00749696 0.119642 0.0368719 +-0.00350244 0.107276 0.0438161 +-0.0521339 0.128852 -0.00413976 +-0.0786185 0.152695 0.0319953 +0.0163345 0.0781449 0.0535802 +0.0377538 0.0771288 -0.0117747 +-0.0215296 0.0387791 0.0338148 +-0.0350693 0.0384092 -0.00660408 +-0.0919891 0.124178 0.0422069 +-0.0444587 0.11222 -0.0167423 +-0.0171725 0.0985232 -0.0244048 +-0.057494 0.112512 0.0360215 +0.0396241 0.0900718 0.0328369 +-0.0621913 0.163125 -0.0405922 +-0.0255449 0.0384207 -0.00839698 +0.0162606 0.0736784 -0.0295549 +-0.0663455 0.040996 0.0121932 +-0.0292314 0.114996 -0.0157151 +0.0252254 0.095572 0.0454222 +0.00388853 0.130454 0.00153712 +-0.0454814 0.0335414 -0.0134702 +-0.08387 0.148679 0.0348187 +-0.0174749 0.184587 -0.0183292 +0.0188962 0.0370007 -0.0126843 +-0.0625159 0.163122 -0.0305925 +-0.0433987 0.03363 -0.0131325 +0.0291629 0.037982 0.025034 +0.0129127 0.129715 0.00445998 +0.0182606 0.0778122 -0.0281935 +-0.0476906 0.0356242 -0.0142735 +-0.0190478 0.0404047 0.0529202 +-0.00364871 0.0982082 -0.0280452 +-0.0195235 0.184467 -0.0220738 +0.00382729 0.106411 -0.0207174 +0.00350781 0.064793 0.0565955 +-0.0205171 0.0383642 -0.00178242 +0.0122268 0.0836141 -0.0306261 +-0.0444606 0.147723 0.0056898 +-0.0869664 0.148754 0.00824898 +-0.0689807 0.155012 0.0293114 +0.0302795 0.0795477 0.0438394 +-0.0660235 0.174935 -0.0492702 +-0.0804891 0.133061 0.0515278 +-0.0447252 0.109884 -0.0183457 +-0.0902839 0.137831 0.0151959 +-0.0702292 0.153353 0.0333614 +-0.0915979 0.146114 0.0211525 +-0.0905232 0.122929 0.0450175 +0.00448177 0.0951431 0.0532987 +-0.0234909 0.120747 0.0300444 +0.0274801 0.0445395 -0.0065618 +-0.091814 0.116108 0.0403567 +-0.0537253 0.151161 0.0246275 +-0.0205455 0.126353 0.00242085 +-0.00205946 0.129266 -0.00113907 +0.00252933 0.0758769 0.0564116 +0.00824452 0.129671 0.000311795 +-0.000397685 0.0923281 -0.0338988 +-0.0559448 0.126938 0.0384169 +-0.0428369 0.0942645 -0.0226678 +-0.0598806 0.105454 -0.017999 +-0.0837054 0.10067 -0.00361944 +-0.0545817 0.152467 0.0257328 +0.0103827 0.0365006 0.0297934 +-0.0898089 0.133793 0.0332137 +-0.0618767 0.15376 -0.0175826 +-0.0665983 0.155819 0.0112334 +-0.0454977 0.108441 0.0393231 +0.000688563 0.105475 -0.0216898 +0.0156183 0.0348875 0.0323047 +0.0598096 0.0622539 0.00613597 +0.0222628 0.0359732 0.0163557 +-0.0492522 0.165358 0.00274428 +-0.018422 0.0583296 0.0500808 +-0.0233794 0.126748 0.0127038 +-0.0635915 0.172518 -0.0506017 +0.000120368 0.0351316 0.0162576 +-0.0286059 0.0564269 -0.0233938 +0.0373643 0.110979 0.0106211 +-0.0143444 0.162546 -0.0104323 +0.0174821 0.10039 0.0467276 +0.00834248 0.0609508 -0.0305126 +-0.0650557 0.129761 0.0446036 +0.0584157 0.0647883 0.022872 +0.0450662 0.0889731 0.0191643 +-0.0554099 0.0334223 -0.00251784 +-0.00144558 0.106667 0.0437112 +-0.0626402 0.0627915 -0.00434322 +-0.0406608 0.0335117 -0.0254825 +-0.0621215 0.15372 -0.0285871 +-0.0304827 0.0538056 -0.016375 +0.0276877 0.0607373 -0.0218456 +-0.0332153 0.107417 -0.0197253 +-0.0709666 0.138448 -0.00754922 +-0.0554983 0.0973521 0.0432389 +0.0051585 0.127708 0.0288034 +-0.0497318 0.0354763 -0.0126201 +-0.0713898 0.160567 -0.00801414 +-0.0135985 0.108507 -0.0209218 +-0.0701499 0.0695315 0.0320822 +-0.0618453 0.155287 -0.0285878 +-0.0774937 0.145636 0.0432119 +-0.0499442 0.140127 0.0163925 +-0.0622517 0.147555 -0.00557481 +0.0112895 0.0624411 -0.0303571 +-0.054281 0.0573695 -0.00641449 +-0.0468263 0.128888 -6.3255e-05 +0.0167125 0.0343686 0.00192575 +0.025374 0.0938744 -0.0213667 +0.0374202 0.110869 0.0135214 +-0.0202897 0.0381028 0.016664 +0.0122214 0.13032 0.0170232 +-0.0424979 0.0817557 0.0420871 +0.0247834 0.123596 0.021665 +0.0458295 0.0890233 0.00817039 +-0.0246722 0.05361 -0.0281576 +-0.0368219 0.0900544 -0.0239252 +-0.0331266 0.0338175 0.0106794 +-0.0863242 0.111849 0.0243217 +-0.0881544 0.121251 0.000301062 +-0.0639205 0.112438 -0.0133308 +0.00114374 0.101639 -0.0226194 +0.0117494 0.0671858 0.0538619 +-0.0177987 0.0336176 -0.0248428 +0.0384483 0.10837 0.0201721 +-0.0895436 0.0902218 0.014448 +-0.0441053 0.129054 0.00361434 +-0.0447524 0.033564 -0.0207541 +-0.040486 0.0346908 0.0404235 +0.0158804 0.124131 -0.00578699 +-0.0301445 0.169695 -0.0171502 +-0.0906194 0.139243 0.0211829 +-0.0653253 0.142516 0.0407395 +-0.0320761 0.0447291 -0.0281131 +-0.0764158 0.0699842 0.0233785 +-0.0254497 0.052221 0.0403383 +0.0262523 0.076131 -0.0243472 +-0.0174971 0.101623 0.0437353 +0.00533357 0.055349 -0.0305496 +-0.0493266 0.134948 0.0237381 +0.0053984 0.122421 -0.0118951 +0.038604 0.108395 0.0191762 +-0.0638345 0.0431637 0.0378429 +-0.0748055 0.0863518 -0.0148055 +0.0157558 0.127182 0.025475 +0.0337414 0.0384723 -6.48206e-05 +-0.0564853 0.0791423 0.0441771 +0.0234983 0.102092 0.0429315 +-0.00524932 0.101176 -0.023207 +-0.0804177 0.153092 0.00488677 +-0.0764988 0.13725 0.0499203 +-0.0550791 0.134447 -0.00412579 +0.0139517 0.124505 -0.00617757 +-0.0839821 0.127994 -0.00381712 +-0.0571198 0.115445 0.0365816 +-0.0622396 0.155257 -0.0325976 +-0.0454972 0.0761548 0.042184 +0.0313815 0.0461664 -0.00629419 +-0.0438412 0.0942345 -0.0223045 +-0.0236613 0.0852675 0.0544729 +-0.0616609 0.147135 -0.00399772 +-0.0600825 0.0413306 0.0227014 +-0.0105535 0.180959 -0.0288535 +-0.0676833 0.155656 0.026832 +0.0282931 0.118599 0.0272385 +-0.0871972 0.102223 0.00642609 +0.0103624 0.0494805 -0.028102 +0.0154246 0.0685991 0.0521564 +-0.0416312 0.117641 -0.0144485 +-0.0276264 0.046347 -0.026964 +-0.0916136 0.132311 0.0112256 +0.0178346 0.0505132 0.0449253 +-0.0444935 0.155066 0.00750552 +-0.037487 0.115255 0.0329307 +-0.0185008 0.119534 0.0344711 +-0.052516 0.0452355 0.0436109 +-0.00977222 0.11683 -0.0157853 +-0.0558279 0.0635792 0.0314789 +-0.0607324 0.0592584 0.00571875 +-0.0621725 0.160005 -0.022587 +-0.0603904 0.152423 0.000272984 +-0.0697355 0.134074 0.048407 +-0.0688943 0.103764 -0.0141878 +-0.0871513 0.117629 0.0474896 +0.0463722 0.0764454 0.00719365 +0.0582269 0.0686747 0.0208601 +0.0410646 0.07659 0.0312229 +-0.0298717 0.104385 -0.0225787 +-0.0346365 0.0766699 -0.022492 +-0.0639324 0.147049 -0.0189093 +0.0414492 0.10286 0.0161642 +0.041276 0.104245 0.0131611 +-0.0550666 0.151635 -0.00215779 +-0.0723648 0.0763024 0.0368597 +-0.0166996 0.0540293 -0.0329391 +-0.0108856 0.107334 -0.0222671 +-0.0609787 0.126745 -0.00811044 +-0.0495024 0.109811 0.0380885 +-0.0814376 0.0978185 -0.00662583 +-0.0771326 0.163938 -0.0219397 +-0.0690818 0.18144 -0.0564572 +0.031034 0.0964814 -0.0161287 +0.0445032 0.0555996 0.0323503 +-0.0335401 0.0732865 0.0413362 +0.0315592 0.035603 0.0149292 +-0.0625155 0.0344693 0.0376364 +0.0223706 0.0505198 -0.0231651 +-0.051638 0.0663266 -0.0117848 +0.0132667 0.0519749 0.0488584 +-0.0568732 0.108333 -0.017952 +0.0448639 0.0833492 0.023175 +-0.0316705 0.0806285 -0.0315587 +-0.0714676 0.155482 0.0269686 +0.0118001 0.034659 0.0389456 +-0.0860496 0.128472 0.048867 +-0.0155071 0.175699 -0.0190868 +-0.058019 0.131103 -0.00658932 +0.0113955 0.0434069 -0.0246972 +0.0568205 0.0566796 0.0240006 +-0.0267763 0.0365192 0.0538225 +-0.0564971 0.0987696 0.0431638 +0.0353453 0.0835128 0.0388598 +-0.0602464 0.144668 -0.00329576 +-0.00749863 0.0884246 0.0571361 +-0.0816964 0.0734472 0.00653139 +0.0399806 0.105624 0.0191716 +-0.0676913 0.172275 -0.0570278 +-0.0358314 0.0356542 0.0457978 +0.0503129 0.0516868 -0.00299828 +-0.0414959 0.0705202 0.0419075 +0.0246022 0.0942401 0.0462765 +-0.0735775 0.170801 -0.0470392 +0.0373196 0.105416 -0.00382358 +0.0463401 0.0518943 -0.00540594 +0.0400167 0.0646852 -0.00776271 +-0.0597593 0.07671 -0.0185219 +-0.0237194 0.0639841 -0.033754 +-0.0473867 0.0345201 0.0356021 +0.00159304 0.131118 0.00454966 +-0.073925 0.126728 -0.0084362 +-0.0243269 0.0616478 -0.0324508 +0.0457562 0.0904226 0.00816981 +-0.0688748 0.159133 -0.00709894 +-0.0394914 0.0944889 0.0427101 +-0.0687998 0.0822684 -0.0173873 +-0.0455924 0.119193 -0.014062 +-0.0369476 0.033676 0.00641963 +-0.09079 0.1297 0.0392322 +-0.0389556 0.0350986 0.042208 +-0.0414578 0.107073 0.0393054 +-0.00265934 0.098112 -0.0279111 +-0.0331649 0.0652734 -0.0174782 +-0.0343312 0.0836736 -0.0246034 +0.0134882 0.101805 0.0472084 +-0.0594997 0.0846925 0.0439263 +-0.0423306 0.040657 -0.0232664 +0.0092124 0.114671 -0.0175632 +0.0538026 0.0595499 0.0284925 +-0.0256867 0.0380701 0.0246091 +-0.0693658 0.16286 -0.0130912 +0.0333604 0.037057 0.0194583 +0.00949693 0.121023 0.0358683 +0.0321446 0.0360609 0.0164637 +0.0341544 0.0548861 0.0351403 +-0.000334987 0.0965293 -0.0302242 +0.0585628 0.0673807 0.0213416 +-0.053406 0.12345 -0.00838645 +-0.0749578 0.132548 -0.00734349 +0.0282219 0.0816125 -0.0219304 +-0.0351889 0.171161 -0.0140358 +0.00949153 0.0936876 0.0522363 +-0.0157849 0.172748 -0.017746 +-0.0175848 0.169785 -0.0150947 +-0.0835905 0.112379 0.0452164 +-0.0404862 0.0846544 0.0431896 +0.0231358 0.0404562 0.0392455 +-0.00366205 0.0540631 -0.0322696 +0.00959837 0.0403395 0.0451906 +-0.0692421 0.0422187 0.00798097 +-0.0285258 0.0717501 0.0402231 +-0.00789542 0.108803 -0.0224197 +0.0159009 0.113257 -0.0160529 +-0.00149436 0.0620061 0.056412 +-0.0420891 0.0363826 -0.0272583 +-0.00449341 0.104477 0.0440393 +-0.0683512 0.0607717 0.0117847 +-0.0927055 0.120137 0.0415853 +-0.0484911 0.115278 0.0334198 +0.02514 0.0350088 0.0196342 +-0.065935 0.125307 -0.00885715 +-0.0621483 0.0699034 0.036962 +-0.0178695 0.104461 -0.0227631 +0.0351768 0.0563002 0.0348659 +0.0105044 0.115477 0.0381888 +-0.0938558 0.126876 0.0162567 +-0.0632514 0.033799 0.0117273 +-0.0736013 0.0654333 0.0137843 +-0.0577792 0.0341881 0.0284371 +-0.0763952 0.0838159 -0.0125906 +-0.0296632 0.180174 -0.00867233 +0.00819029 0.0851531 -0.0324575 +-0.071633 0.174549 -0.0412084 +-0.0538265 0.0927341 -0.0220469 +-0.0471905 0.156504 0.00887867 +-0.0661815 0.0615106 0.0205126 +0.0144985 0.107111 0.0421568 +-0.0721929 0.152802 0.0342528 +0.0142765 0.0666697 -0.0302658 +0.0349485 0.0942163 0.0384062 +-0.0664891 0.0369705 -0.00688594 +-0.077495 0.158339 -0.0149115 +-0.0739383 0.160975 -0.0103701 +-0.00971429 0.0386927 -0.0148008 +-0.0618555 0.155289 -0.0295874 +-0.0621574 0.152203 -0.016578 +-0.032494 0.096035 0.0446186 +0.044345 0.0519693 -0.00630996 +0.0319954 0.0520213 0.0354999 +-0.0300925 0.0509394 -0.0183595 +-0.018449 0.0388382 0.0343981 +-0.0670639 0.154762 0.000889218 +0.0361767 0.0888967 0.0383392 +0.0262873 0.0942382 0.0451936 +0.0186534 0.103359 0.0446898 +-0.0523328 0.0334686 -0.00741897 +0.0507066 0.0540083 0.0292331 +0.0529037 0.0462692 0.0142047 +-0.0888522 0.0996312 0.00941041 +0.0275656 0.0563642 0.0414619 +-0.0371627 0.0336289 -0.0286501 +-0.0198294 0.0882519 -0.0375379 +-0.0907603 0.140585 0.0151783 +-0.00458896 0.0376652 -0.0252351 +-0.093041 0.12831 0.0262642 +-0.0743429 0.0955133 0.0396401 +-0.089704 0.111925 0.0143387 +0.0453684 0.0889907 0.0151607 +0.0456444 0.086201 0.0151659 +-0.0635175 0.0399079 -0.00714576 +-0.0294925 0.0903536 0.0441109 +-0.0888771 0.100994 0.011394 +-0.0121064 0.0869584 -0.0384624 +0.0373352 0.108319 0.0251875 +-0.0882187 0.112165 0.0210064 +0.0349174 0.110993 0.0268865 +-0.0849268 0.122064 -0.00322109 +0.0124968 0.112648 0.0387734 +-0.0662562 0.163203 -0.0177078 +-0.0640701 0.113939 0.0406208 +-0.0654246 0.0794919 0.0421931 +-0.0519669 0.0569186 0.0284516 +-0.0519207 0.0493094 0.0353906 +0.00333114 0.0341656 0.00499397 +-0.056914 0.133942 0.035273 +-0.0780215 0.158305 -0.0199209 +0.0276406 0.111416 0.0348725 +-0.0172565 0.181572 -0.0253576 +0.0372544 0.0379189 0.00466817 +-0.0211197 0.1653 -0.017528 +-0.0557637 0.121264 0.0386516 +0.0274329 0.121878 0.0183804 +-0.0623369 0.16467 -0.04959 +0.00450432 0.0883672 0.0562441 +-0.0649333 0.145142 -0.016034 +-0.0918355 0.118761 0.0292947 +0.0503561 0.073461 0.0121181 +-0.0732571 0.0860546 0.040246 +-0.0543933 0.14384 0.0284354 +0.0235922 0.124679 0.00697037 +0.049638 0.0724241 0.0192263 +-0.0691135 0.0647604 0.0241382 +-0.0277318 0.0385796 0.0327127 +0.0249679 0.0605263 0.0447882 +0.0220764 0.0741142 0.049509 +-0.012493 0.16839 -0.0164935 +0.0220311 0.0550166 0.0457656 +-0.0197467 0.0364265 -0.0184459 +0.000577278 0.0388845 -0.0129362 +-0.0178004 0.121647 -0.00876548 +-0.0516521 0.0334655 -0.0091126 +0.0221612 0.0754835 0.0496518 +-0.0384539 0.162349 0.000413916 +-0.0711225 0.0388168 0.00193457 +0.0334725 0.0950337 -0.0145821 +-0.00505247 0.102417 0.0438081 +0.0159216 0.0348476 0.0287894 +0.0277666 0.0347822 0.00749516 +-0.0675802 0.144972 -0.0192338 +-0.0477088 0.132967 0.0228963 +-0.0134912 0.0386664 0.0301779 +-0.0590273 0.134027 -0.00648451 +0.0244484 0.124114 0.020115 +0.0218798 0.0374214 -0.00364164 +-0.0658775 0.102439 -0.0164403 +-0.0743971 0.166132 -0.0206985 +-0.0634619 0.0339766 0.015084 +-0.0497324 0.138579 0.00441928 +-0.00151689 0.0428507 0.0468014 +0.00660528 0.0935786 -0.0311099 +-0.0862444 0.0819176 0.00849345 +-0.0634827 0.0876134 0.0450541 +0.0182388 0.0763952 -0.028136 +-0.0765343 0.0681368 0.0143622 +-0.092883 0.116038 0.0143172 +0.000494981 0.0442085 0.0460563 +-0.0518518 0.0970732 -0.0222063 +-0.0248173 0.0693751 0.0448313 +-0.089421 0.135156 0.0282104 +-0.0566159 0.0573558 0.0107416 +0.0312695 0.0800594 -0.0199503 +-0.03437 0.0738393 -0.0214808 +0.0226051 0.113885 -0.0127298 +-0.0658838 0.16421 -0.0204509 +-0.0417953 0.0435116 -0.0223513 +-0.0710782 0.156778 -0.0439119 +0.00348525 0.108604 0.0422849 +-0.0239399 0.118058 -0.0129545 +-0.0498545 0.0999668 -0.0218887 +0.0176793 0.0852191 -0.0283526 +-0.0426623 0.0592741 -0.0122692 +-0.0642751 0.044386 -0.00129652 +-0.0456062 0.127883 0.0223049 +-0.0818286 0.147374 0.0384552 +0.0125066 0.10443 0.0450477 +-0.0763281 0.174543 -0.0415648 +-0.0144887 0.0387707 -0.00835843 +-0.00853122 0.0430617 0.0490142 +-0.0783677 0.176339 -0.0480853 +-0.0408918 0.109911 -0.0187996 +-0.0634329 0.159891 -0.0505847 +-0.0278615 0.0987172 -0.0237448 +0.0172353 0.0806842 -0.0288156 +-0.0768582 0.104852 -0.0089026 +0.0310274 0.118497 0.0197321 +0.0262422 0.122687 0.00652555 +-0.000524008 0.041433 0.0467891 +0.0292827 0.060879 -0.0197951 +0.00853553 0.0366751 -0.00931803 +-0.092315 0.125571 0.0312621 +-0.000472926 0.0972534 -0.0289903 +-0.0604964 0.0861621 0.0446513 +0.0117525 0.0432202 0.0447834 +-0.0738828 0.103582 -0.0116089 +-0.00249719 0.0488761 0.0505372 +-0.0307845 0.0580469 -0.0184096 +-0.00234994 0.125819 -0.00745455 +-0.0301636 0.153871 -0.00371356 +-0.0815418 0.0912589 0.0328461 +-0.0901131 0.132441 0.0382173 +0.037389 0.0476423 -0.00613109 +-0.0646684 0.155196 -0.0425404 +-0.0928057 0.124227 0.0372672 +-0.0297999 0.12434 0.000117203 +-0.032492 0.0746402 0.0409516 +-0.0555716 0.122697 0.0389476 +-0.0717789 0.154685 0.0298089 +-0.0930714 0.12018 0.0352857 +0.0144798 0.109585 -0.0180587 +0.00343169 0.0361267 -0.0240106 +-0.0288758 0.046967 -0.0262149 +-0.0616418 0.158426 -0.0235923 +0.0103202 0.0609665 -0.0299301 +-0.0910325 0.14477 0.0261671 +-0.083926 0.0775674 0.0187821 +-0.0575363 0.138153 0.0326058 +-0.0295 0.0703058 0.0395502 +-0.0217308 0.0626511 -0.0346671 +-0.0640717 0.164086 -0.0255357 +-0.063271 0.158522 -0.0165888 +0.0210264 0.0895934 -0.0248804 +-0.0731992 0.145774 -0.0148545 +-0.0334943 0.0803079 0.0415842 +-0.0862122 0.111364 0.0347412 +0.0338239 0.11087 -0.00547119 +-0.0135288 0.0458914 0.0493586 +-0.0643715 0.139866 -0.00735458 +-0.0568939 0.158351 0.00118769 +-0.0405106 0.151258 -0.00613685 +-0.00551608 0.110856 -0.0214408 +-0.0787639 0.0696569 0.0125705 +0.00378339 0.0381062 0.0251953 +-0.0650446 0.154908 -0.0437098 +-0.089228 0.114813 0.0276717 +-0.00277394 0.0797805 -0.0365537 +-0.0661523 0.136835 0.0429956 +-0.0434818 0.0902492 0.04268 +-0.0184702 0.0959697 0.0503933 +-0.0801387 0.142096 0.0454029 +-0.00485582 0.0989472 0.0508482 +-0.0336234 0.153659 0.000337049 +0.00250661 0.0924946 0.055168 +-0.0729484 0.132565 -0.00781242 +0.0194715 0.127423 0.0125674 +0.00484292 0.129473 0.025811 +-0.0576054 0.0658547 0.0344063 +-0.0502601 0.0543084 0.0166402 +-0.027407 0.0396009 0.0539527 +-0.0105297 0.0560622 0.0527517 +-0.0456126 0.0519231 -0.010201 +0.000501847 0.0590908 0.0549783 +-0.0569845 0.0535242 0.00365398 +-0.0671097 0.0432428 -0.000257978 +0.0214666 0.0975514 0.0465681 +-0.08997 0.132328 0.0399309 +-0.0761969 0.167972 -0.0410261 +0.0170202 0.121328 -0.0087569 +-0.0138948 0.17568 -0.0202542 +-0.0281655 0.17267 -0.018055 +-0.0638531 0.04136 -0.00615806 +-0.0348821 0.0342989 0.0153052 +-0.000342105 0.0380462 0.00257941 +-0.00749789 0.0898138 0.0570783 +0.028524 0.0808687 0.0448153 +-0.0331206 0.0356024 -0.0184705 +0.0043586 0.119499 -0.0147306 +0.0467625 0.0462832 0.0266316 +0.0368364 0.111573 0.0161776 +0.00851174 0.0799624 0.0552814 +-0.00244825 0.112634 -0.0193375 +-0.0235385 0.11268 0.0379979 +-0.0115345 0.0922826 -0.0359317 +-0.09304 0.122895 0.0392709 +-0.0271645 0.17563 -0.018169 +-0.0772929 0.117422 0.0514809 +0.0179164 0.102978 -0.02104 +-0.0709646 0.0754682 0.0373385 +0.0216627 0.126095 0.0176515 +-0.0640284 0.119984 0.047923 +-0.0444795 0.0874935 0.0436599 +-0.0893861 0.0943037 0.0204146 +-0.0720651 0.173384 -0.0385311 +-0.0894927 0.14204 0.0311659 +-0.0454987 0.120637 0.0275066 +-0.0250745 0.0954862 -0.0252675 +-0.0895496 0.13918 0.0132126 +0.0192289 0.0820148 -0.027672 +-0.0154803 0.0645289 0.0535158 +0.0164872 0.108442 0.0405002 +-0.00663864 0.115688 -0.0165748 +-0.0494985 0.104247 0.040228 +-0.0673252 0.149334 0.0390086 +0.0300883 0.0872505 -0.0203879 +-0.0278877 0.0633808 -0.0294488 +0.0182732 0.069417 -0.0291542 +0.0171905 0.116688 -0.0137466 +0.0502632 0.0713497 0.022405 +0.0350985 0.114043 0.00837763 +-0.0505103 0.0452467 0.0429196 +0.0302544 0.113856 0.0308506 +-0.0605348 0.0333568 -0.0034971 +-0.00390558 0.0383472 0.0143493 +0.0270583 0.122199 0.00683201 +-0.0241505 0.0378782 0.0124647 +-0.0606031 0.0352186 0.0442288 +-0.0906667 0.113308 0.0195238 +-0.00876475 0.075634 -0.0378123 +-0.0531345 0.0641573 0.0333061 +-0.0262078 0.123609 -0.00273748 +-0.0629032 0.154793 0.00389792 +0.00322165 0.0782734 -0.0348651 +-0.0232226 0.0950277 -0.0288098 +-0.0497962 0.0869626 -0.02172 +0.0239811 0.109404 -0.0139261 +-0.00287196 0.105931 -0.0223953 +0.00350624 0.0619975 0.0564502 +0.0152965 0.129062 0.00674245 +-0.0198254 0.120831 -0.00989132 +-0.0672111 0.0749069 0.0386416 +-0.0199192 0.0375867 0.0533971 +-0.0507132 0.054338 0.0146004 +0.0338375 0.109906 -0.00644408 +-0.052068 0.0531865 0.02764 +-0.0665349 0.0638845 0.0254353 +-0.0340904 0.160759 -0.0135462 +-0.0456409 0.0577841 -0.0117617 +0.0425336 0.0678584 0.0273676 +-0.0549188 0.148123 0.0275408 +0.0178543 0.0352284 0.0378786 +-0.0254848 0.100235 0.0442056 +-0.014497 0.0856418 0.0570702 +0.0151023 0.0860518 0.0518047 +-0.0616341 0.0628646 -0.00472902 +0.02366 0.0848996 0.0483924 +-0.0496187 0.054694 -0.00943972 +-0.0328776 0.105721 -0.0208169 +-0.0144506 0.103914 0.0432646 +-0.0248813 0.105869 -0.0225199 +0.024788 0.0591582 0.0445118 +-0.0159391 0.0999021 -0.023843 +-0.0539979 0.153168 0.0186815 +-0.0738816 0.120852 -0.00799698 +0.0296461 0.118491 0.000643936 +-0.0540045 0.13652 -0.00234857 +-0.0593798 0.0335176 0.00740926 +0.0366379 0.08347 0.0371909 +-0.0520867 0.151648 -0.00355308 +-0.0188227 0.0387965 0.0325596 +0.00898388 0.131012 0.0072855 +-0.0682589 0.154325 -0.0506473 +-0.0521805 0.0531921 0.0266366 +-0.0617514 0.175333 -0.0614739 +-0.0169338 0.185679 -0.0240586 +0.015477 0.103104 0.045929 +-0.0729148 0.0713134 0.0317175 +-0.0172476 0.114664 -0.0174436 +-0.0126734 0.0384579 0.00339052 +-0.0832791 0.0884633 0.0304387 +-0.0858155 0.103519 0.00339021 +-0.0146369 0.0466344 -0.0294365 +-0.0773163 0.098935 -0.0105842 +-0.0145015 0.0631456 0.0536787 +-0.0689178 0.0717538 0.0356819 +-0.0255986 0.0394109 -0.0291464 +-0.0623671 0.0719748 0.0386642 +-0.0301518 0.0360809 0.0236741 +-0.030565 0.0383245 0.0341404 +-0.0574984 0.0918591 0.045399 +-0.0861528 0.0951452 0.0274373 +-0.0644941 0.0412041 -0.00599039 +-0.0363521 0.126723 0.0183002 +0.00755707 0.10303 0.0452955 +-0.0396625 0.0399023 -0.0274567 +-0.0838382 0.11616 -0.00137187 +0.0166591 0.0349342 0.0324763 +-0.0647933 0.15319 -0.00116291 +0.00911841 0.110151 -0.0195223 +-0.0697747 0.155761 0.0260978 +0.045415 0.0763654 0.00219579 +-0.0127734 0.171309 -0.0186592 +0.00748545 0.0964088 0.0510363 +0.0125027 0.109886 0.0398286 +-0.0779306 0.0866645 -0.0115691 +-0.0830177 0.0951656 -0.00554205 +-0.0184064 0.186879 -0.0179354 +-0.0866419 0.0923952 0.0266005 +0.026251 0.103389 0.0398709 +0.0333357 0.116389 0.013468 +-0.0452756 0.131436 0.0105618 +-0.035474 0.0519266 0.0383228 +-0.0536233 0.0657097 0.0353836 +0.0013977 0.0433563 -0.0248502 +0.0269244 0.118903 0.0281816 +0.0395 0.055533 0.0316092 +-0.0723024 0.111428 0.0467445 +-0.0364387 0.0357946 -0.0155844 +-0.0276413 0.159598 0.000270855 +-0.00596208 0.0394 0.0364646 +-0.00479094 0.0798443 -0.0373862 +-0.00779065 0.130523 0.0125627 +-0.0464848 0.12067 0.0277891 +-0.0645002 0.0889975 0.0448988 +-0.0896121 0.0902414 0.0154476 +0.0130231 0.0965172 -0.0241956 +-0.0452605 0.0391077 0.0445023 +0.0587398 0.0709245 0.0152557 +-0.0596114 0.0726835 0.0404064 +0.0240499 0.0348797 0.0195293 +-0.0682817 0.156606 -0.0532672 +0.0178388 0.104825 -0.0190099 +-0.0288938 0.180785 -0.00982491 +0.0323759 0.0738626 -0.0187418 +0.0314474 0.112439 -0.00717966 +-0.074091 0.144362 -0.00888576 +0.0510178 0.0461394 0.00424124 +0.00750963 0.0646928 0.0554932 +-0.0643093 0.0665984 0.0323388 +0.0133515 0.0566849 -0.029233 +-0.0243216 0.10004 -0.0240037 +-0.00749239 0.096543 0.0535421 +-0.00533786 0.0388247 -0.000985585 +-0.0884258 0.0996766 0.0213895 +-0.0320326 0.0609937 -0.0164107 +0.0535495 0.0533436 -0.000784809 +0.0393899 0.0533602 -0.00667374 +-0.0717205 0.168577 -0.0240459 +-0.0704919 0.126012 0.052539 +-0.0388888 0.109926 -0.019043 +-0.0507025 0.140081 0.0193694 +-0.0263231 0.034658 0.0434735 +0.0398861 0.0766416 0.0330246 +-0.0941682 0.126929 0.0222624 +-0.0117712 0.0770642 -0.0382004 +-0.0417668 0.040639 -0.0243092 +-0.0517327 0.164109 0.00103678 +-0.0721705 0.158208 -0.0379206 +-0.0356893 0.0651361 -0.0144415 +-0.065143 0.156205 -0.00860924 +0.00354988 0.0342019 -0.0174252 +0.00312416 0.107287 -0.0203844 +-0.0340011 0.127005 0.00589371 +-0.0418419 0.09571 -0.0225712 +-0.0333161 0.126997 0.0105451 +-0.0717391 0.165925 -0.0182956 +0.0559734 0.0494153 0.0101945 +0.0174969 0.108466 0.0401752 +-0.0507291 0.133637 -0.00121966 +0.0083246 0.0581885 -0.03043 +-0.0711713 0.176467 -0.0550529 +0.0165931 0.100464 -0.0223776 +-0.0544905 0.0862124 0.0452239 +-0.0574075 0.0649991 0.0334306 +0.0195092 0.092819 -0.0242669 +-0.0856512 0.0899172 -0.000541045 +0.0081342 0.104445 -0.020865 +-0.0752567 0.160324 -0.0108988 +-0.0376087 0.118212 -0.0130418 +-0.055019 0.14719 -0.00165707 +-0.04909 0.0628007 0.0352845 +-0.018783 0.0770899 -0.0389016 +-0.0336421 0.175583 -0.0129563 +-0.082659 0.0871422 0.0312687 +-0.0621779 0.061949 0.0245023 +-0.0782836 0.162467 -0.0289415 +0.0339055 0.0599168 -0.014725 +-0.0414124 0.128336 0.00169512 +-0.0398827 0.035133 -0.0101165 +-0.00781609 0.0854881 -0.0377912 +0.0082433 0.13138 0.00986533 +-0.0358714 0.105673 -0.0204021 +0.00749975 0.0589567 0.0535286 +-0.072631 0.0670284 0.0231935 +0.0525192 0.0691267 0.0251103 +-0.0688901 0.0621533 0.0194032 +-0.0824666 0.11008 0.0383967 +-0.0438038 0.0884337 -0.0219011 +-0.00534725 0.0379464 -0.0151277 +-0.0425045 0.0478596 0.0401075 +0.0214753 0.11175 -0.0144217 +-0.000497779 0.0489051 0.0509033 +0.0236032 0.116718 -0.00979024 +-0.0648062 0.0852609 -0.0190538 +-0.0395435 0.101505 0.0409276 +0.0209425 0.124573 -0.000263497 +-0.0286807 0.0383267 -0.00339493 +-0.0585081 0.0422988 0.0170665 +-0.0316383 0.0367739 0.0511824 +-0.085482 0.104867 0.00337403 +-0.00926648 0.100073 0.0477845 +-0.00448593 0.118295 0.0389891 +-0.0377467 0.0768482 -0.0188928 +-0.0640837 0.156142 0.0179222 +-0.0515285 0.144709 0.0153879 +-0.0267903 0.0866521 -0.0358137 +-0.0626407 0.163129 -0.0295903 +-0.00752629 0.0443832 0.0481509 +-0.0750304 0.169881 -0.0295693 +-0.0907748 0.12133 0.00629364 +0.0164129 0.0417834 -0.0225068 +-0.0317772 0.169741 -0.00573949 +-0.0546238 0.0527377 0.0100793 +0.0453589 0.0561811 -0.00597324 +-0.0651505 0.0366918 0.0402161 +-0.032507 0.108409 0.0384637 +0.0185107 0.108486 0.0398481 +0.0450172 0.0749324 0.00120229 +0.00251449 0.0702821 0.0560425 +-0.0434424 0.160833 0.00573037 +0.056541 0.064854 0.0254614 +-0.0648306 0.156078 0.013307 +-0.00545884 0.111961 -0.020621 +-0.0222505 0.0336283 -0.0219672 +-0.0319114 0.16826 -0.00591385 +0.0045246 0.0828376 0.0569094 +-0.0849678 0.0844642 -0.00152644 +0.0277057 0.120723 0.00280565 +-0.0133613 0.182397 -0.0284169 +-0.0569294 0.13993 -0.00415472 +-0.0104844 0.118266 0.038122 +-0.0725121 0.144203 0.0447958 +-0.0661037 0.0713259 0.0366501 +-0.050851 0.138527 0.021367 +-0.0580927 0.0577897 0.0147789 +-0.0157117 0.033701 -0.0245127 +-0.00261732 0.0341102 -0.0185505 +-0.0614975 0.10975 0.0377559 +0.00661243 0.131425 0.00784474 +-0.0602206 0.142504 0.0358229 +0.0126673 0.104052 -0.020179 +-0.0624955 0.0904382 0.0452713 +0.0164839 0.0699861 0.0519409 +-0.0334933 0.0946149 0.0444857 +-0.0904058 0.114907 0.0416618 +-0.0182558 0.178619 -0.0243596 +-0.0436529 0.0346111 0.0345638 +-0.00297107 0.0340356 -0.0204416 +-0.0246065 0.0394112 -0.0290873 +-0.0257404 0.0712076 -0.0359148 +-0.0285156 0.0433359 0.0513164 +0.0262381 0.119658 0.0279158 +-0.0734823 0.0649094 0.0160661 +0.0249492 0.109234 -0.0137375 +-0.0651326 0.157423 -0.0100634 +-0.0578906 0.0600472 -0.00173427 +-0.0868853 0.0847213 0.0144753 +-0.0610173 0.135506 -0.00686914 +0.0547011 0.0728313 0.00929699 +0.00513733 0.104474 -0.0214038 +-0.0199542 0.180019 -0.0229778 +0.022195 0.0344915 0.00477409 +-0.0509846 0.123023 -0.00999375 +0.0173702 0.0506958 -0.0254566 +0.0327797 0.0727287 0.040356 +-0.0376189 0.0505906 -0.0108802 +-0.057408 0.0521648 0.00264452 +-0.0845698 0.111358 0.0279354 +0.045113 0.0861573 0.00219478 +-0.0694333 0.0348816 0.0112742 +-0.0621334 0.15599 0.0157191 +0.0379075 0.0398433 0.0233434 +-0.0695824 0.180796 -0.0534457 +0.00287682 0.0368053 -0.01432 +0.0592296 0.0635939 0.00512091 +-0.0326951 0.0680731 -0.0204474 +-0.017619 0.161286 -0.0140538 +-0.00121244 0.0358159 0.011737 +-0.0485025 0.167013 -0.00296472 +0.0139694 0.0974449 -0.0231882 +0.0336763 0.102539 -0.0125747 +-0.0769165 0.147253 -0.00586064 +-0.0894763 0.140666 0.0321759 +-0.079441 0.139988 0.0475582 +-0.019773 0.0742847 -0.0390372 +-0.066871 0.0626922 0.0228964 +-0.0473301 0.134807 0.0120125 +0.0244991 0.106997 0.0390493 +0.0296386 0.114736 0.0306143 +0.0275719 0.0433403 0.0342886 +-0.0524918 0.107066 0.0397432 +-0.0544973 0.0427375 0.0458563 +-0.0837407 0.129905 0.0507752 +0.0390362 0.108381 0.0141662 +0.0136873 0.0685864 0.0531495 +-0.0780988 0.162499 -0.0239377 +-0.0804325 0.078146 0.029561 +-0.0720693 0.0709772 0.0321852 +-0.036497 0.0903135 0.0436162 +-0.0157593 0.121529 -0.00864145 +-0.0640118 0.135519 -0.00771971 +-0.0096474 0.0481504 -0.030386 +-0.0889991 0.11248 0.0367803 +-0.0718704 0.117956 -0.00810673 +-0.00253303 0.110473 -0.0210263 +-0.0151271 0.118705 -0.0137294 +-0.0533766 0.126536 -0.00565695 +-0.050165 0.0501393 0.0176523 +-0.0617795 0.126914 0.0422805 +-0.0077906 0.079881 -0.0380243 +-0.0181903 0.172708 -0.0227977 +0.0362974 0.0657667 -0.0137187 +-0.0193672 0.122992 0.0288371 +0.0118921 0.127946 0.0270512 +-0.0528594 0.0344415 0.0327571 +-0.0440834 0.0344755 0.0328349 +0.00820576 0.0343954 0.0203732 +-0.0384853 0.0819001 0.0436414 +0.0279153 0.112797 -0.00956049 +-0.0233818 0.177171 -0.0128784 +0.00211138 0.110155 -0.0201605 +-0.0214231 0.0385184 -0.00765668 +-0.0590379 0.13549 -0.00623086 +-0.0654804 0.152163 -0.03833 +-0.0328363 0.0957996 -0.0235469 +-0.0574937 0.0333307 -0.00285911 +-0.0723124 0.154022 -0.038905 +-0.00125765 0.0383424 0.0470318 +0.022422 0.125761 0.0150782 +-0.0285891 0.0935252 -0.0252241 +-0.0395009 0.16971 0.00189803 +-0.0211973 0.0363196 0.0534993 +-0.0671438 0.037039 0.0145094 +-0.0455015 0.115241 0.0333765 +-0.0416597 0.057808 -0.0117566 +-0.0597745 0.0434652 0.0436848 +-0.0594246 0.0334838 0.00203125 +-0.0609255 0.122379 -0.00879585 +-0.0633414 0.0357702 0.0187502 +-0.0629834 0.0594485 0.00869517 +-0.0240199 0.0537379 0.0416895 +-0.0382462 0.044597 -0.024375 +-0.00732189 0.100225 -0.0241674 +-0.0425982 0.0463965 -0.0133084 +-0.0889045 0.133745 0.0416542 +0.00049898 0.0385943 0.0466363 +-0.0295864 0.0462965 0.0488628 +0.00439164 0.0448792 -0.025855 +-0.0608362 0.0341593 0.0278122 +-0.0547243 0.0723714 -0.0165135 +-0.0274694 0.155208 -0.00473974 +0.0246484 0.0713321 0.0461382 +0.0124372 0.0548875 0.0512192 +-0.00549842 0.0828666 0.0570203 +-0.0616148 0.0337181 0.0103501 +-0.0346312 0.0752701 -0.0214845 +-0.0629229 0.058915 0.0109817 +-0.0424386 0.147805 0.00141712 +-0.0363751 0.12414 0.0242241 +0.0176113 0.111464 -0.0161155 +-0.0314976 0.0603384 0.0380002 +-0.0138112 0.128252 0.0219818 +-0.0603076 0.0409502 -0.0078507 +-0.0735166 0.141431 0.0469479 +0.0326456 0.111384 0.0297678 +-0.0635438 0.0341847 -0.00786744 +0.02297 0.122414 -0.00191144 +0.0401375 0.0953636 -0.00688813 +-0.0141538 0.0965092 0.052175 +-0.00422659 0.0383846 0.0124357 +-0.0311024 0.0343581 0.019624 +-0.0780471 0.153854 0.029137 +-0.0581213 0.151582 -0.000807379 +-0.0267449 0.0725846 -0.0356647 +-0.0191918 0.174184 -0.0227992 +-0.00378536 0.0798194 -0.0370348 +-0.0249464 0.0349691 -0.0199992 +-0.0564664 0.0423189 0.0186897 +0.0266976 0.119444 -0.00271582 +-0.023525 0.0349287 -0.0283944 +-0.0800951 0.15261 0.00324045 +0.0268493 0.119915 0.0267269 +0.0354747 0.0390827 0.0235255 +-0.0127812 0.17424 -0.0204206 +-0.0338617 0.168258 -0.00349456 +-0.0144845 0.0744882 0.056153 +0.0261935 0.0402752 0.032238 +0.0102706 0.0681153 -0.0309054 +-0.00974239 0.0387292 0.0290909 +-0.0644512 0.125591 0.047275 +0.010367 0.0479585 -0.0270631 +-0.0246099 0.0984431 -0.024327 +-0.0476227 0.0370311 -0.0128189 +-0.0780422 0.0846436 0.0366002 +-0.0566171 0.135321 0.0339425 +-0.0556004 0.0505584 -0.00338763 +-0.0907186 0.136468 0.0172046 +-0.0245124 0.180278 -0.0098524 +0.00742535 0.0346722 0.0416328 +-0.0699342 0.0651273 0.0236486 +-0.0124071 0.172769 -0.0198823 +-0.041856 0.149196 0.00419837 +-0.0809107 0.103235 -0.00559799 +-0.0631328 0.0335051 0.0030611 +-0.00851461 0.0647289 0.0558918 +0.0154483 0.127759 0.0239281 +0.0255922 0.123349 0.0191129 +0.0138934 0.0631004 0.0516475 +0.00118569 0.0983354 -0.0261952 +-0.0325387 0.118791 -0.011658 +-0.000757843 0.0354065 0.0103826 +-0.0248998 0.158417 -0.0112592 +-0.035233 0.0374002 -0.014964 +-0.0541243 0.156074 -0.00260128 +-0.0584646 0.0588965 0.0024905 +-0.0615294 0.0333928 -0.00373148 +-0.0602915 0.0343294 0.0347628 +0.0265767 0.0994658 0.0420977 +0.0347214 0.0712416 -0.0157876 +-0.040399 0.128703 0.00942739 +0.00251855 0.096887 -0.0286022 +-0.076485 0.148385 0.0403892 +-0.0606115 0.155938 0.0148123 +0.010878 0.0806434 0.0544608 +0.0384784 0.105492 -0.00082855 +0.0438672 0.0916755 -0.00180444 +-0.0513529 0.0733082 0.0416893 +0.0451032 0.0777437 0.000209071 +-0.0817242 0.148679 0.0369003 +0.0461375 0.0834298 0.00718398 +-0.0514739 0.135214 -0.000924577 +-0.00531173 0.100039 -0.0239686 +-0.0176147 0.042187 -0.0278695 +0.00727636 0.114035 -0.0188609 +0.0268989 0.0632714 0.044083 +0.0102735 0.0924657 -0.0299319 +0.010651 0.121836 0.0349107 +0.00895558 0.0361581 -0.0106394 +-0.0905601 0.144393 0.0275534 +0.043756 0.0467626 0.0296361 +-0.0417806 0.126404 -0.00562318 +-0.0358424 0.095771 -0.0231986 +-0.0809037 0.153834 0.0267225 +-0.0777263 0.156926 -0.0159116 +0.00417967 0.034897 0.044357 +-0.0351879 0.125718 0.0201989 +-0.0284012 0.038721 -0.0148192 +-0.0351226 0.169652 -0.0145814 +-0.0203438 0.180146 -0.0154935 +0.0345359 0.11019 -0.00473263 +-0.0932568 0.121548 0.0382795 +-0.0334767 0.152548 -0.00159465 +-0.0271731 0.174192 -0.00959576 +0.0159989 0.11444 -0.0153318 +-0.054238 0.13299 -0.00459005 +0.0366798 0.105376 -0.00582172 +0.0386277 0.0672715 0.0346845 +-0.0227209 0.162682 -0.0153632 +-0.0760409 0.0677685 0.0130189 +0.00250507 0.0772798 0.0565792 +-0.0345053 0.101515 0.0417518 +-0.0546003 0.0541349 0.0100271 +-0.000643212 0.127926 -0.00376413 +0.00284904 0.131659 0.0150261 +-0.0184884 0.186846 -0.021092 +0.0335193 0.114014 -0.000843968 +0.00632048 0.123167 -0.0106939 +-0.0564752 0.0624455 0.0290854 +-0.0138322 0.105995 -0.0224296 +0.00423384 0.0754618 -0.0348642 +-0.0281096 0.0778495 0.0450018 +-0.0776289 0.158329 -0.0159141 +0.0148253 0.0447411 0.0439981 +-0.0859023 0.122521 -0.0027014 +-0.0578481 0.0940916 -0.0211113 +0.00150378 0.0842858 0.0575429 +0.0326379 0.0849202 0.042017 +-0.0549752 0.0499938 0.0105067 +-0.0568824 0.10976 -0.0175883 +-0.00970298 0.0627929 -0.0357349 +-0.0178968 0.163686 -0.0167578 +-0.074969 0.105672 0.0364824 +0.00650677 0.0702743 0.0558788 +0.00487604 0.0992462 -0.0230983 +0.042474 0.101514 0.0131646 +-0.0643723 0.0593574 0.0120942 +0.0593748 0.0580631 0.00716733 +-0.00149842 0.111423 0.0424113 +-0.00749339 0.119159 -0.0142858 +-0.0771313 0.0754374 0.0308061 +-0.0477996 0.0869772 -0.0218762 +0.014411 0.0833733 0.0525453 +-0.0202678 0.159643 -0.00488449 +-0.0159305 0.0950186 -0.0327431 +-0.0279294 0.0931359 -0.0265478 +-0.0855021 0.102147 0.00137916 +-0.0938092 0.125562 0.0252741 +-0.058744 0.140559 -0.00481674 +-0.031677 0.126244 0.00820251 +-0.0264922 0.0447022 0.0511549 +-0.0205862 0.0382221 0.00925741 +-0.053491 0.104292 0.0408761 +-0.0370674 0.156264 -0.0103696 +-0.0634966 0.109514 0.0378318 +-0.0867621 0.084687 0.0184803 +-0.0830364 0.104646 0.028271 +0.0442212 0.0804374 0.0252067 +-0.0448473 0.0339909 -0.0230279 +-0.0037539 0.0755488 -0.0365646 +-0.0661663 0.158028 -0.0551775 +-0.0238007 0.0741774 -0.0380398 +-0.018731 0.0627665 -0.0359648 +0.0446574 0.0720977 0.0012022 +-0.0927955 0.121487 0.0416389 +-0.0620012 0.1241 0.0437622 +0.0300963 0.0995295 0.0401727 +-0.0719316 0.149607 -0.0394232 +0.0355637 0.0889227 0.0392444 +0.0493081 0.0547033 -0.00484617 +-0.0668328 0.0604514 0.0106116 +0.00304719 0.123088 -0.0105402 +-0.0255191 0.118043 0.0319974 +-0.0394865 0.115305 0.0335817 +-0.0326614 0.0592947 -0.0125392 +0.0575508 0.0523393 0.00818574 +-0.0893959 0.0942918 0.0174254 +-0.0269084 0.160002 -0.0134029 +-0.0506856 0.0345547 0.0383582 +-0.0800885 0.0739226 0.0209531 +-0.0277305 0.073972 -0.0353872 +-0.0320496 0.0849187 -0.0285721 +-0.0217999 0.0866355 0.0553929 +-0.0322022 0.0465812 -0.0258568 +-0.0442317 0.12547 0.021384 +0.0214935 0.0781932 0.0504764 +-0.0444883 0.150664 0.00744383 +-0.0303843 0.0566029 -0.0193937 +-0.0723854 0.155427 -0.0359059 +-0.0245149 0.0811097 0.0540325 +0.0189031 0.068639 0.0501604 +-0.0650109 0.041163 0.0307556 +-0.0194954 0.107168 0.0420699 +-0.0325124 0.113906 0.0343195 +-0.0544418 0.118427 -0.0131672 +-0.0536811 0.113759 -0.0162997 +-0.0559476 0.153959 0.0252069 +-0.0675391 0.124252 0.0515729 +0.0440796 0.0450784 0.0271934 +-0.0594971 0.101543 0.0424741 +-0.0184988 0.100234 0.0438197 +0.0434554 0.0790039 -0.00377815 +0.0140981 0.0343905 -0.0079847 +-0.0615105 0.0406302 -0.00752326 +0.0320683 0.0578123 0.0392046 +0.0144666 0.0962642 0.0485999 +-0.0315047 0.0631978 0.0384961 +-0.0306251 0.038441 -0.00943325 +-0.0847861 0.0804507 0.00450965 +-0.0549519 0.160962 0.00433648 +-0.0470839 0.131413 0.00333034 +-0.00104546 0.0391448 0.0323048 +-0.0526926 0.151783 0.016281 +-0.0223808 0.0958588 0.045836 +-0.0841478 0.15365 0.0123539 +0.0536189 0.0735747 0.0133449 +-0.00350831 0.0975151 -0.0292875 +-0.0571277 0.155869 0.0117051 +0.00341369 0.131576 0.0166618 +-0.0237378 0.0654511 -0.0345337 +-0.0858145 0.0991904 0.0269676 +-0.0759199 0.0783227 -0.00959072 +0.032684 0.0640121 -0.0177767 +-0.056282 0.132113 -0.00567386 +0.00328959 0.131137 0.0194851 +0.00882643 0.110931 -0.0195298 +-0.00876485 0.1716 -0.0262973 +-0.0151483 0.0405525 0.0515137 +-0.0498071 0.0343093 0.00865348 +-0.0569766 0.0339283 0.0235563 +-0.0226683 0.0381298 0.00891697 +-0.0855438 0.106245 0.00446783 +0.0454924 0.0651146 0.027904 +0.0150017 0.0576648 0.0496654 +0.00644791 0.119491 -0.0147367 +-0.0156486 0.0481142 -0.0300898 +-0.0650134 0.13537 0.0410634 +0.0113952 0.116794 -0.0158535 +0.0173388 0.0781757 0.0532571 +0.0536226 0.0587546 -0.00269037 +-0.0709897 0.0340252 0.000991695 +0.038384 0.106978 0.0241932 +-0.0385431 0.038993 -0.0286239 +-0.0451337 0.127804 0.0210049 +-0.0690676 0.152436 0.0353067 +-0.0883368 0.137775 0.00920322 +-0.0714828 0.0362083 0.00943052 +-0.0717062 0.159603 -0.040933 +-0.0255949 0.125933 0.00752005 +-0.047874 0.0346487 0.0423594 +0.0367516 0.111162 0.00316661 +-0.00949217 0.110042 0.0428369 +-0.0572015 0.0336196 0.0184714 +0.0150246 0.0392642 0.0442415 +-0.00832489 0.0993422 -0.0252442 +-0.0304761 0.0342807 0.0180201 +-0.026997 0.0382812 -0.00486026 +-0.0916784 0.144722 0.0181573 +-0.0703317 0.172249 -0.0530308 +-0.0159101 0.1643 -0.0176565 +-0.0850976 0.106195 0.00337687 +-0.035284 0.173981 -0.0126295 +-0.032733 0.155408 -0.00943888 +0.00217615 0.12934 0.0262849 +0.00123579 0.075497 -0.0355058 +-0.0332024 0.0455956 -0.0269373 +-0.0155006 0.103015 0.0432792 +0.0396392 0.106988 0.00416547 +-0.021523 0.118151 0.0342827 +-0.0184974 0.103009 0.0434402 +-0.047784 0.038449 -0.0122332 +-0.0104903 0.0604984 0.0550813 +0.0293518 0.0659692 0.0423806 +0.0185572 0.0930309 -0.0244868 +0.0173756 0.109987 -0.0165543 +-0.0865489 0.109072 0.0153468 +0.0363255 0.10537 -0.00683316 +-0.0394998 0.076195 0.0426907 +-0.0603651 0.0470889 0.0366883 +-0.0144951 0.119623 0.0361429 +0.0406661 0.105634 0.0121644 +0.0383891 0.0460848 -0.00524865 +0.0295409 0.0942529 0.0428642 +0.0373159 0.0880544 -0.0152271 +-0.0784316 0.0799342 0.0337318 +-0.0548348 0.124111 0.0382711 +0.0178682 0.0672532 0.0504022 +-0.0788979 0.123682 -0.00614143 +-0.0298552 0.0986755 -0.0232224 +-0.0771653 0.156191 -0.0114635 +-0.0923833 0.130942 0.0122392 +-0.0651094 0.121429 0.0498115 +-0.042493 0.0690949 0.0416622 +0.0416337 0.0792551 0.0303335 +0.0189066 0.0808659 0.0520326 +-0.029145 0.125694 0.0135548 +-0.0619967 0.14761 -0.00462246 +0.0255017 0.0449453 0.0383425 +-0.0925798 0.11747 0.0343056 +-0.00233027 0.0339229 -0.0220991 +0.00799401 0.0819204 0.0555296 +-0.0699548 0.147947 -0.0321477 +0.0415131 0.0394077 0.00724875 +-0.0712173 0.0846981 0.0410753 +-0.0880447 0.0874003 0.00446864 +0.00798497 0.0890814 -0.0324293 +-0.0117258 0.0656807 -0.0365783 +-0.0114796 0.112753 0.0411508 +-0.0817304 0.107364 -0.00260486 +-0.0293156 0.0820403 0.0446588 +-0.0495645 0.0375773 -0.0119604 +-0.043838 0.0956679 -0.0221641 +-0.00869681 0.129559 0.00358698 +-0.0933816 0.129671 0.0222434 +-0.0700603 0.163804 -0.0489659 +-0.00755399 0.0384559 0.0207545 +0.0159604 0.125249 0.0284184 +-0.0514974 0.0791051 0.0438079 +-0.0840796 0.0818676 0.0264914 +0.037525 0.0785071 -0.0127982 +0.0299804 0.119686 0.0179058 +-0.0638039 0.0881523 -0.0190251 +-0.0272788 0.0350567 0.0515587 +-0.00562089 0.115673 -0.0165634 +-0.0104428 0.0347186 0.0450504 +-0.0427898 0.116428 -0.015168 +0.0165768 0.126998 0.000104849 +-0.0238911 0.0738255 0.0493988 +-0.0485539 0.0376116 -0.0123218 +-0.0396922 0.0460798 -0.021311 +-0.0485652 0.0335345 -0.00306359 +0.0414749 0.104231 0.00716597 +-0.0445241 0.0409237 -0.0192998 +-0.0220397 0.0354083 0.0523916 +-0.0380711 0.0340829 0.00944176 +0.0139247 0.0348347 0.0392218 +-0.0297288 0.0335868 -0.0252735 +-0.00107263 0.0385746 0.00195199 +0.0117524 0.0352863 0.00381322 +0.0170772 0.0847646 0.051153 +-0.0656775 0.067321 -0.00750664 +-0.00543271 0.0918052 -0.0353894 +0.0133691 0.0343357 -0.00620151 +0.0451372 0.0875619 0.0011816 +0.0503362 0.0703636 0.0239238 +-0.0474927 0.0804818 0.0437565 +-0.00542063 0.0391587 0.0349931 +0.00193935 0.03568 -0.0153447 +-0.0774115 0.160346 -0.0169397 +0.049877 0.0727457 0.00893584 +-0.0640788 0.0598458 0.0171155 +-0.00650105 0.0472142 0.0482843 +-0.0241121 0.163789 -0.0160029 +-0.0173263 0.0611887 0.051725 +0.0171559 0.100271 -0.022436 +-0.0604932 0.155795 0.0206537 +-0.0609595 0.142497 0.0365005 +-0.0668489 0.0966702 -0.0167929 +-0.0149394 0.183104 -0.021718 +-0.0321779 0.0750041 -0.0285287 +-0.0226305 0.0710127 0.0496427 +0.0463117 0.0820487 0.00917902 +-0.0795939 0.112319 0.0461682 +-0.0658419 0.0995396 -0.0165139 +-0.0810165 0.134048 0.0507919 +-0.0486855 0.131027 0.0278379 +-0.0788429 0.112725 -0.00283498 +-0.0784933 0.0832425 0.0356821 +-0.0258381 0.0781035 0.0498012 +0.0426426 0.0858997 0.0283401 +-0.0677549 0.154168 0.0312275 +-0.0306743 0.0383989 -0.00386137 +-0.0857757 0.0926386 -0.000557841 +-0.0210104 0.0417331 0.053591 +0.0161529 0.100264 -0.0224296 +0.0387814 0.0821002 0.0350599 +0.0484193 0.0639761 -0.00211304 +-0.0858985 0.111778 0.0253403 +-0.0389634 0.128304 0.0114309 +-0.0634823 0.0352819 -0.00824664 +0.0395163 0.0646366 -0.0087647 +-0.0591064 0.0435686 0.0148077 +0.00621882 0.12419 0.0335647 +-0.0171539 0.0347559 0.0453522 +-0.0314811 0.0546225 0.0370229 +-0.0182701 0.114743 -0.017523 +-0.0605388 0.141029 0.0353291 +-0.063605 0.126943 0.0449774 +-0.03749 0.0533987 0.0390423 +-0.0573191 0.0507885 0.00568774 +-0.0424884 0.109818 0.0380938 +-0.082569 0.0790202 0.0265184 +-0.0653913 0.0757553 0.0400472 +-0.0105137 0.0589924 0.0541839 +0.0198393 0.0700116 0.0497622 +-0.0814721 0.135361 0.0497671 +0.00809889 0.111578 -0.0196036 +-0.0276072 0.038217 0.0294729 +-0.0647783 0.173212 -0.0488362 +-0.0760415 0.0675654 0.00655947 +-0.0322855 0.0610195 -0.0154117 +-0.00948933 0.0674612 0.0553354 +-0.0922478 0.11733 0.00930597 +0.0325339 0.116751 0.00316678 +-0.0788837 0.117794 -0.00533035 +0.0177807 0.10571 -0.0179484 +-0.0648315 0.0895741 -0.0187043 +-0.0303114 0.0384164 -0.0075003 +-0.0728418 0.0685704 -0.00149472 +0.0396278 0.103602 -0.00160767 +-0.0575003 0.109781 0.0378101 +-0.0359224 0.034124 0.026018 +-0.0230844 0.126658 0.00843513 +-0.0904612 0.131068 0.0382266 +-0.0782718 0.165861 -0.029036 +0.0284552 0.0607955 -0.0208488 +-0.0495337 0.163976 0.00447865 +-0.0665318 0.134006 0.0442059 +-0.0622043 0.0590015 0.0092504 +0.0124693 0.0962821 0.0494059 +0.0199668 0.115907 -0.0129188 +-0.0101559 0.0386047 0.027311 +-0.0224495 0.0580629 0.0442448 +-0.0768471 0.09916 -0.0110394 +-0.0438495 0.0999429 -0.0214407 +-0.0642587 0.173261 -0.0500973 +-0.0291541 0.123106 -0.00418201 +-0.0785185 0.16527 -0.0289621 +-0.0773807 0.0774654 0.0325309 +0.0184997 0.0892768 0.0486726 +-0.0147168 0.0628748 -0.03682 +0.0133075 0.062355 -0.0296823 +0.0174899 0.111215 0.038757 +-0.0829923 0.130939 -0.00341376 +-0.0749763 0.152739 -0.0169005 +-0.00979029 0.0798633 -0.0379189 +-0.0243904 0.183518 -0.0110527 +0.0382626 0.0899111 -0.0131489 +0.0353274 0.107617 -0.00596632 +-0.0649093 0.06918 0.0352438 +0.0545625 0.0595427 0.0278248 +-0.0664402 0.128427 0.0478848 +0.0302544 0.035019 0.00964843 +-0.0212084 0.186026 -0.0155815 +-0.00559653 0.0391515 -0.0257085 +-0.00382316 0.0854518 -0.0372434 +0.0556932 0.0688929 0.00299188 +0.0435925 0.0958855 0.00119521 +-0.061875 0.156868 -0.0195857 +-0.0283944 0.174224 -0.00779385 +0.000326986 0.131385 0.00837406 +0.0583787 0.0621209 0.00318289 +0.0262357 0.0740751 0.0449841 +-0.0747322 0.0729443 0.0316828 +-0.0650821 0.148822 -0.0290175 +-0.0436469 0.0601588 0.0398932 +0.0443703 0.0410834 0.0161644 +-0.0674507 0.155183 -0.000720573 +-0.0165017 0.177176 -0.0187481 +0.0352588 0.0755049 -0.0148105 +0.00551455 0.110936 0.0415028 +0.0248664 0.0898261 -0.023121 +0.00550646 0.078617 0.0558754 +-0.0698407 0.127049 0.051763 +-0.0375072 0.123454 -0.00854988 +-0.052616 0.0657163 0.0355847 +-0.0748963 0.0690517 0.0244939 +0.023431 0.11936 -0.00662051 +-0.0185076 0.120924 0.0327413 +0.0394332 0.101324 0.027167 +-0.00864992 0.124983 -0.00848236 +-0.0872247 0.152479 0.0216964 +-0.0215688 0.0623472 0.0460467 +-0.0475797 0.035695 0.0449374 +-0.0510737 0.151654 -0.00393732 +-0.0415 0.0930514 0.0423592 +-0.0544965 0.100156 0.0427594 +0.049267 0.0717276 0.00605578 +0.0292141 0.0815364 -0.0209002 +-0.0052585 0.095242 -0.0329133 +0.0151527 0.129419 0.0109697 +-0.0294996 0.100187 0.0432585 +0.0363367 0.0432226 0.0290731 +0.0327757 0.035977 0.0148418 +0.00349523 0.0427434 0.0456833 +0.046121 0.0848311 0.00917504 +-0.067462 0.157723 -0.00658264 +-0.0876012 0.0995367 0.00546504 +-0.0356487 0.0352259 -0.0310792 +-0.0585981 0.0658974 0.0341563 +-0.0639239 0.116652 -0.0103062 +-0.0525394 0.0472909 -0.00733632 +-0.0398304 0.034299 0.0303636 +0.0252131 0.0803965 -0.024704 +-0.0721022 0.165224 -0.0439746 +-0.058758 0.148538 -0.00150368 +-0.0625812 0.150647 -0.00957658 +-0.0878641 0.137757 0.00720039 +0.0109534 0.0475021 0.0472035 +-0.0699012 0.105141 -0.0130553 +0.0318353 0.0540522 -0.0127622 +-0.0866591 0.107689 0.0123597 +0.0552547 0.0595292 0.0270628 +0.0320484 0.11465 0.0272407 +0.0433462 0.0818009 -0.00379375 +-0.0294668 0.176906 -0.0160057 +-0.0169961 0.094658 0.0531741 +-0.0202578 0.0596247 0.0476545 +-0.0798939 0.123658 -0.00558813 +0.0482025 0.0703533 0.0231278 +-0.0206189 0.186125 -0.0151754 +0.0100127 0.0349584 -0.0111996 +-0.0661914 0.152591 -0.0424622 +-0.0478408 0.098515 -0.0219326 +0.026913 0.0619271 0.0440949 +-0.0328507 0.126562 0.0151396 +-0.0689146 0.108019 -0.0123122 +-0.00583756 0.0390351 0.0332216 +-0.0125377 0.0365668 -0.017148 +-0.0373858 0.0446552 0.0411638 +-0.0759006 0.161818 -0.014334 +0.0304033 0.107421 -0.0117891 +-0.0654084 0.175187 -0.050486 +-0.0633716 0.143922 0.0382956 +0.0194957 0.0920261 0.0477827 +-0.0288404 0.0972702 -0.0238091 +-0.00475508 0.0741241 -0.036385 +-0.0104985 0.0362063 -0.0254961 +-0.0625516 0.147537 -0.0115723 +-0.0816708 0.0869142 -0.00660013 +-0.00823999 0.130343 0.0167173 +-0.0809733 0.130966 -0.00434035 +-0.0437659 0.0811743 -0.0201658 +0.00743904 0.129465 0.0253135 +-0.00451238 0.0760575 0.0586977 +0.0302883 0.103408 0.0369471 +-0.0379006 0.151906 -0.00621808 +-0.00550346 0.076042 0.0585145 +-0.0217032 0.0597401 -0.0334972 +-0.0868755 0.112781 0.0262639 +-0.0336701 0.155604 -0.00983793 +-0.0126927 0.0599517 -0.0357172 +-0.0638978 0.150075 -0.0288161 +-0.0144059 0.112046 -0.0186792 +-0.00421023 0.0383902 0.0178766 +-0.0453052 0.113634 -0.0162273 +0.0147972 0.102084 -0.0220848 +-0.0484999 0.105649 0.0400819 +0.0216294 0.0875507 0.0490393 +-0.0124184 0.175705 -0.0216387 +-0.0328373 0.163842 -0.00376818 +-0.0666614 0.0672261 -0.0064803 +-0.0395052 0.119385 0.0302298 +-0.0489243 0.0675117 0.0383488 +-0.0552807 0.0343936 0.0305403 +0.00553119 0.0603997 0.0554086 +-0.0914264 0.14884 0.0201323 +0.0231929 0.110938 -0.0135659 +-0.065154 0.164972 -0.0244937 +-0.050496 0.074792 0.0427038 +-0.0657515 0.154274 -0.0462128 +-0.0343486 0.0367995 -0.0305331 +-0.0826303 0.103323 0.0293175 +-0.0597443 0.0338929 0.0194732 +-0.0425056 0.0591222 0.0401769 +-0.0743438 0.156862 -0.0249223 +-0.00222977 0.0396912 0.0474006 +-0.00562206 0.0388337 0.0298422 +-0.0338556 0.0723894 -0.0214737 +-0.0635465 0.0333817 0.00128463 +-0.0330138 0.0356955 0.0305887 +-0.0730865 0.16659 -0.0202232 +-0.0570856 0.153101 -0.000954757 +0.0275543 0.0960379 -0.019637 +-0.0229677 0.169763 -0.0123298 +0.0217819 0.106251 -0.0165369 +-0.0575003 0.0630187 0.0298519 +-0.00864981 0.171144 -0.0247734 +-0.053919 0.0587242 -0.00741756 +-0.0595 0.105675 0.0404663 +0.0351077 0.0740897 -0.0147891 +-0.0620479 0.155306 -0.016587 +0.0278721 0.0522836 -0.0197543 +0.0325208 0.0469245 0.0310812 +-0.06629 0.139698 0.0427919 +-0.078132 0.172939 -0.0407193 +-0.0294988 0.0559628 0.0364214 +-0.0374897 0.0562507 0.0395531 +-0.0662219 0.155662 0.00991681 +-0.0408786 0.0346362 0.0386374 +-0.0208999 0.185581 -0.0139755 +-0.0330517 0.0624982 -0.0144201 +-0.0767419 0.164619 -0.0220172 +-0.0697905 0.0865423 -0.0170841 +-0.0784816 0.0755217 0.0287043 +0.0172033 0.118701 -0.0119316 +-0.0185134 0.0473863 0.05026 +0.00729554 0.0653986 -0.0323322 +-0.0415011 0.0506114 0.0394281 +-0.0541424 0.033642 0.0190888 +-0.0921005 0.132392 0.0222257 +-0.0136741 0.0384938 0.00315386 +-0.0383322 0.163825 0.00056966 +-0.0762889 0.0738479 0.0305832 +-0.0875285 0.133568 0.00229932 +-0.0736181 0.0688668 0.0266732 +0.02687 0.0981666 0.0425225 +-0.051308 0.153569 0.0116824 +4.86222e-05 0.11836 -0.0154829 +-0.0517937 0.0583908 0.0296448 +0.0605105 0.0595417 0.010156 +-0.0573945 0.0371513 -0.0102727 +0.00965733 0.0345667 0.0223294 +0.0463647 0.0703187 0.00350637 +-0.0625718 0.1468 0.0377209 +-0.089178 0.137924 0.0381661 +-0.0134956 0.0759117 0.0568004 +-0.00574286 0.0755721 -0.037104 +0.0261865 0.123233 0.0107875 +-0.0580499 0.11553 -0.0140963 +-0.00762589 0.0451743 -0.028662 +0.0535357 0.0635428 0.028124 +-0.0718987 0.123811 -0.00847645 +-0.0635357 0.119961 0.0469254 +0.00211859 0.130671 0.0219319 +0.00252859 0.0358017 0.021576 +0.0527591 0.0693467 0.00250314 +-0.0451218 0.0335948 -0.0116042 +-0.0769111 0.100434 -0.0105662 +0.0223237 0.0564658 -0.026195 +0.0394644 0.107011 0.0181712 +-0.0776021 0.0994637 0.0357144 +-0.0632381 0.170981 -0.0495819 +-0.00862433 0.122038 -0.0113292 +-0.0548269 0.0450002 0.0157095 +-0.0506815 0.134691 -0.000340536 +-0.0495888 0.146296 0.0105853 +-0.00908464 0.173025 -0.027717 +-0.00410488 0.0346022 0.0429088 +-0.0260906 0.0386266 -0.0124061 +0.0283176 0.118208 -0.00273298 +-0.0318098 0.121167 -0.00811427 +-0.0737276 0.154081 -0.027902 +0.0162665 0.119939 -0.0112703 +-0.0270805 0.0349584 0.0482667 +-0.0284917 0.101554 0.0428228 +-0.0249764 0.159657 -0.0011434 +-0.0585904 0.142433 0.0328417 +-0.0486888 0.138617 0.0104009 +-0.0234979 0.0724108 0.049066 +-0.019247 0.158526 -0.00845424 +-0.0716194 0.0382939 0.000706648 +-0.0412769 0.0356814 0.042879 +0.0483353 0.0532726 -0.00489034 +0.0606695 0.0664968 0.0121468 +-0.069489 0.104131 0.0386578 +0.00750734 0.0990008 0.0480837 +-0.0624532 0.126929 0.0430601 +-0.0629568 0.15367 -0.0336031 +-0.0374985 0.0747273 0.041938 +0.0426086 0.0930422 0.0261716 +-0.0849422 0.153595 0.0209155 +-0.0543959 0.12661 -0.00573734 +-0.0742502 0.161028 -0.0329547 +-0.0627767 0.112367 0.0371562 +-0.0532977 0.158553 0.00873827 +-0.0769168 0.123731 -0.00719316 +0.0393533 0.0847596 0.0341247 +-0.0692244 0.15634 0.0190049 +0.0343018 0.0936044 -0.01506 +-0.0165008 0.0800909 0.0572191 +-0.014166 0.184338 -0.0242563 +-0.0631574 0.159924 -0.0465929 +-0.0374857 0.0519831 0.0389557 +0.03646 0.112262 0.0117392 +-0.0411413 0.0364371 -0.0278037 +0.0185712 0.126949 0.0207922 +-0.0603223 0.0385556 0.0217181 +-0.0769591 0.131054 -0.00672048 +-0.0295123 0.0565107 -0.0214026 +0.0430875 0.0930739 0.0251589 +-0.00582403 0.0390405 -0.0106025 +-0.0553855 0.0337802 0.0222515 +0.014479 0.100435 0.047468 +-0.0548752 0.0984577 -0.0213117 +-0.0501571 0.0529434 0.0176286 +0.0183573 0.0461568 -0.0227219 +-0.0554809 0.0440191 0.0450323 +-0.0877934 0.0860475 0.0044818 +0.00321463 0.130705 0.0223233 +-0.0505315 0.0389504 -0.011562 +-0.0819835 0.132406 -0.00340088 +-0.0758067 0.0877331 -0.0139103 +-0.091338 0.14476 0.0251578 +-0.0649682 0.034557 0.0300942 +-0.0283013 0.113756 -0.016413 +0.0259713 0.0619044 0.0444933 +-0.0535159 0.0640852 0.0330775 +-0.0046427 0.0482096 -0.0303136 +-0.0584956 0.0861498 0.0443498 +-0.0655423 0.145055 -0.0169033 +-0.0423586 0.123855 0.0235885 +-0.0864234 0.0806346 0.0145003 +-0.033107 0.125984 0.00180258 +0.000400525 0.0433705 -0.0249688 +-0.0337351 0.126905 0.0148106 +0.0594437 0.0677773 0.0191638 +-0.0433018 0.0342732 -0.0267127 +-0.0668634 0.040937 0.011312 +-0.0651408 0.146773 0.0392721 +0.0142259 0.080787 -0.0303234 +-0.0564981 0.0973554 0.0431547 +0.0234826 0.113521 -0.012343 +-0.022737 0.0385766 -0.00982941 +-0.0695434 0.0352232 -0.00418951 +0.060768 0.0651161 0.0111484 +-0.00338536 0.100168 0.0483773 +-0.0154942 0.0772732 0.0564359 +-0.0581438 0.114319 -0.0148345 +-0.0758612 0.165153 -0.0370257 +-0.0666041 0.164889 -0.0207192 +-0.0401309 0.160681 -0.0117333 +-0.00727995 0.0389199 -0.00704692 +-0.0726288 0.07489 0.035733 +0.0572537 0.0657957 0.00220085 +-0.0564793 0.151056 0.0307055 +-0.0459743 0.153608 0.00885524 +-0.046245 0.034596 0.0410145 +-0.0611658 0.168359 -0.0606871 +-0.0242347 0.0401682 0.0541848 +0.0432765 0.10012 0.00816425 +0.0330202 0.102118 0.0356213 +-0.00368236 0.0583856 -0.0334327 +-0.016783 0.0973001 -0.0271368 +0.018711 0.100467 -0.0223545 +-0.0500289 0.122604 0.03284 +-0.063243 0.0333437 -0.00222576 +-0.0187202 0.0613304 -0.0355606 +-0.0268504 0.0548324 -0.0264063 +0.0215374 0.086463 -0.0256391 +-0.0138967 0.099791 -0.0237429 +-0.00550708 0.0774167 0.0583085 +0.055466 0.0507517 0.00421414 +0.00822806 0.0344179 0.00390084 +0.028423 0.0535254 0.0391477 +-0.00689074 0.103109 -0.0232386 +-0.0320031 0.0370471 -0.0177181 +-0.0255422 0.0377889 0.0158759 +-0.0476682 0.165409 0.0039929 +-0.0673807 0.115762 0.049991 +0.00348136 0.111402 0.0420175 +-0.081586 0.0734778 0.0135382 +0.0427229 0.10007 0.00318201 +-0.0456223 0.0548403 -0.0108081 +-0.0226179 0.0464363 -0.0275647 +-0.0201905 0.172698 -0.0217858 +0.0374948 0.0941477 0.0350502 +0.0227469 0.0686119 0.0468992 +-0.012216 0.174205 -0.0276647 +-0.0906322 0.112714 0.0163744 +-0.0599044 0.111127 -0.0158584 +0.00535116 0.0480874 -0.0284111 +-0.0295604 0.158116 0.000994125 +0.0104513 0.122961 -0.0105071 +-0.0619452 0.123832 -0.00870252 +0.00605345 0.0341614 0.00369541 +-0.0696099 0.138316 0.0468524 +0.00349102 0.11963 0.0373483 +-0.0495577 0.0338416 0.0269497 +-0.0500211 0.0529295 0.0155558 +-0.0534917 0.0491191 0.0286591 +0.0546976 0.0478581 0.0131951 +-0.0803392 0.0841108 -0.00756769 +-0.0693719 0.180628 -0.057909 +-0.0247145 0.161052 -0.00252569 +0.0299408 0.0713176 0.0415086 +-0.0779905 0.173544 -0.0470087 +-0.0168218 0.086916 -0.0386596 +-0.0658968 0.109505 -0.0131657 +0.0326969 0.10609 0.0333845 +0.0191388 0.0356129 -0.00667825 +-0.0168818 0.100112 -0.0240537 +-0.0620293 0.135502 -0.00717407 +0.0377405 0.110012 0.0179226 +0.0360001 0.0381146 0.00239588 +-0.0151683 0.160834 -0.010917 +-0.0894324 0.117571 0.0455052 +0.0402874 0.063301 -0.00576463 +0.000231956 0.0755133 -0.0357459 +-0.0663652 0.0422587 0.0107808 +-0.0908359 0.114163 0.0368153 +0.0456753 0.0833922 0.00418733 +-0.0426429 0.0563425 -0.0115708 +-0.0472127 0.168412 -0.001987 +0.0163989 0.0433061 -0.0232691 +-0.0181224 0.165314 -0.018178 +0.014203 0.08785 -0.0301032 +0.00716038 0.0832586 0.0561062 +0.0547452 0.0661481 0.0263648 +0.0207672 0.0700064 0.0493524 +-0.0820552 0.1102 0.0401793 +0.0336664 0.0753805 -0.0167583 +-0.0827158 0.108829 0.000295564 +0.0250546 0.0420912 0.0376641 +-0.0866523 0.0868042 0.0239447 +-0.082018 0.151309 0.00327526 +0.0209029 0.107601 -0.0159886 +-0.0134952 0.0659366 0.0537869 +-0.0902062 0.143054 0.0286714 +0.0484774 0.0431365 0.00824398 +0.00679595 0.0352467 -0.0139815 +0.0154 0.0448131 -0.0240573 +-0.0715189 0.0972122 0.0409969 +0.0152962 0.0652155 -0.0297912 +0.0106046 0.128135 -0.0020835 +0.0273536 0.106086 0.0379553 +-0.0176729 0.0540415 -0.0325983 +-0.00110521 0.131378 0.0121444 +-0.0724827 0.124619 0.0532114 +-0.0738593 0.174047 -0.0391959 +-0.0646169 0.109762 0.0377795 +0.00521659 0.0824462 -0.0340286 +-0.0280135 0.0591603 -0.0264206 +-0.0676617 0.0433934 0.000689977 +0.0407264 0.0999947 0.0251764 +-0.0322885 0.177691 -0.00536129 +-0.0547546 0.035972 0.0465789 +-0.0425002 0.115266 0.0336474 +-0.0687451 0.0708436 0.0347552 +-0.0375019 0.0804666 0.0432825 +-0.0182946 0.181579 -0.0243778 +-0.0789826 0.115456 0.0491224 +-0.0415063 0.0534301 0.0394734 +-0.0708913 0.0403263 0.00282802 +-0.0548298 0.0927311 -0.0220321 +-0.0745142 0.138634 0.0488155 +-0.0807745 0.102028 0.0317433 +-0.0249646 0.181509 -0.0170525 +-0.0727415 0.154031 -0.0358995 +-0.0698172 0.0908437 -0.0164973 +-0.0366476 0.0577363 -0.0111372 +-0.0192308 0.0947234 -0.0324688 +-0.0118669 0.165326 -0.0197278 +-0.0804375 0.137229 0.0490949 +0.0134351 0.129972 0.01319 +0.0457654 0.0791979 0.00319646 +-0.0469166 0.129554 0.0250362 +-0.0581769 0.137607 -0.00562722 +0.04256 0.0817421 -0.00578018 +-0.0478101 0.0884245 -0.0219224 +-0.0424147 0.0344885 0.0314161 +-0.0645764 0.139638 0.0400104 +0.00451352 0.10035 0.0463879 +0.0423459 0.0915624 -0.00580854 +-0.0833163 0.106091 -0.000625527 +-0.0510681 0.0429687 0.0449412 +-0.0258019 0.0564099 0.0391373 +-0.0908661 0.142018 0.0261694 +-0.0222707 0.180155 -0.0129798 +-0.0375032 0.0987213 0.042382 +-0.0135516 0.0445689 0.0502862 +-0.0749157 0.0818909 0.0378096 +-0.042351 0.0336287 -0.0184783 +-0.0104895 0.0660607 0.0552117 +-0.0713722 0.163817 -0.0449613 +-0.0170629 0.040485 0.0522671 +-0.0629502 0.151043 -0.0063137 +-0.0420636 0.159404 0.00394669 +-0.0438717 0.105649 -0.0205239 +0.00352724 0.10161 0.0446753 +-0.00861199 0.118019 -0.01506 +-0.0658335 0.0881117 -0.0184537 +0.00251222 0.126485 0.0307749 +-0.0485567 0.0390246 -0.0119389 +-0.0600846 0.0399274 0.0217122 +0.0128427 0.034706 0.0391137 +-0.0306178 0.0409006 -0.0300462 +-0.0635449 0.0356868 -0.00823988 +-0.0063607 0.125295 -0.00886018 +-0.025376 0.059259 0.0400414 +0.0015066 0.0490028 0.0513272 +-0.0107915 0.0798668 -0.0380291 +0.0455381 0.0540654 0.0323771 +-0.0645999 0.0347243 0.0265296 +-0.074389 0.0874223 0.0399149 +0.0147945 0.0909396 -0.0283095 +-0.0256418 0.0382997 -0.00275652 +-0.0249427 0.17123 -0.0116584 +-0.0860007 0.147303 0.0341634 +-0.00989368 0.129282 0.00314288 +-0.056803 0.119986 -0.0107265 +0.0131837 0.129339 0.0031365 +0.0204173 0.0925165 -0.0239466 +-0.0881399 0.122604 0.000302573 +-0.0687931 0.166618 -0.053004 +-0.0116307 0.0337076 -0.023716 +-0.0395047 0.0776369 0.0429957 +-0.0435015 0.086056 0.04322 +0.0313221 0.0899509 -0.0192278 +-0.0512591 0.0544504 0.0206222 +0.0450165 0.0718833 0.00186291 +-0.0240342 0.0381218 0.00683415 +-0.0643335 0.153058 -0.000307605 +-0.0553413 0.0491317 -0.00437815 +0.0461434 0.0834347 0.0111711 +0.0469552 0.0427274 0.0188429 +0.0403147 0.061632 0.0300225 +-0.0345217 0.127119 0.00425139 +-0.0560415 0.0335011 -0.000906542 +0.0458803 0.0848141 0.013166 +0.0355169 0.0713149 -0.0148173 +-0.00649249 0.0978569 0.0522238 +-0.0720202 0.152598 -0.0428872 +0.00936768 0.0509673 -0.0289075 +-0.017803 0.0813337 -0.0391893 +-0.0164921 0.101629 0.0439544 +-0.0749763 0.136928 -0.00646616 +-0.018438 0.165372 -0.011068 +-0.0749694 0.0749712 0.0333987 +-0.0344916 0.0547205 0.0381399 +-0.0252176 0.0351344 0.0519405 +-0.0785113 0.10447 -0.00758869 +-0.0837382 0.0804711 0.0245022 +0.0352492 0.043109 0.0289456 +-0.0657408 0.0353871 0.0379044 +-0.0633722 0.04322 0.0387983 +0.0187703 0.0504962 0.0444745 +0.0134519 0.128957 0.00181284 +0.00181742 0.106617 -0.0209271 +-0.069971 0.156225 0.0143836 +-0.0793623 0.0739499 0.024599 +0.0192573 0.0903239 -0.0256184 +-0.0785673 0.0716608 0.0214639 +0.0207235 0.123161 0.0287274 +-0.0694864 0.116115 0.0518347 +-0.022007 0.0754165 0.0531212 +0.00541958 0.0361021 -0.0235849 +0.0126937 0.0345417 0.0229719 +-0.0272554 0.0377383 0.0173779 +0.0183414 0.126234 0.023568 +-0.0782171 0.159705 -0.021925 +0.0319954 0.11684 0.00152318 +-0.0364949 0.0747255 0.0419725 +-0.00631217 0.0422986 0.0485312 +-0.0696892 0.0733745 -0.0120577 +-0.0574743 0.0452883 0.0435332 +0.0270163 0.115378 0.0322111 +0.0100342 0.126121 -0.00591235 +-0.0765631 0.160404 -0.0136187 +0.0104935 0.0976882 0.0488434 +-0.088546 0.102334 0.0113879 +-0.0488628 0.0600536 0.0351294 +-0.0102645 0.038442 0.0220215 +-0.0471272 0.159118 -0.00765489 +0.0282711 0.0480264 -0.0137299 +0.0106928 0.0341923 -0.0160349 +-0.0413207 0.122297 -0.0113384 +-0.0112299 0.173502 -0.0278641 +-0.0702692 0.146349 -0.0238997 +-0.0311686 0.0820079 -0.0315681 +-0.058698 0.0349789 0.0448461 +0.0225489 0.0444802 -0.0157666 +0.00650352 0.0547197 0.0529464 +0.0375985 0.10834 0.0241868 +0.026474 0.110098 0.0367031 +0.0104332 0.0344417 -0.0125223 +-0.00834994 0.0943471 -0.0340215 +-0.0726673 0.155437 -0.0339106 +-0.0830075 0.0762889 0.0105229 +-0.0846192 0.0805533 0.0214764 +-0.0805239 0.148418 0.0381727 +-0.087237 0.106355 0.0143591 +-0.0447805 0.0423866 -0.0153071 +-0.0837301 0.147364 0.00414541 +-0.0832136 0.0770175 0.0194025 +-0.0259181 0.0649186 0.0404266 +0.0449079 0.0931824 0.0151569 +0.0348585 0.0808647 0.0399076 +-0.000497657 0.066177 0.0565989 +-0.081976 0.138997 -0.000769762 +-0.0164973 0.088378 0.056467 +-0.0655061 0.041163 -0.00538315 +0.0250139 0.0449606 -0.012685 +-0.0684343 0.0667749 -0.00454154 +0.0313723 0.0597573 -0.0175925 +-0.073748 0.0805288 0.0380979 +-0.0431166 0.0378307 0.0441123 +-0.0704863 0.169511 -0.0510127 +-0.0418064 0.0884466 -0.0220226 +-0.0725566 0.0737794 0.034925 +-0.0432285 0.12305 0.0247373 +0.0537086 0.0670896 0.000808459 +-0.0318715 0.0510682 0.0382665 +0.00533718 0.124533 0.0332195 +-0.0234982 0.0988724 0.0447778 +-0.0873895 0.143261 0.0370491 +0.0450408 0.0625178 -0.00265494 +-0.0618764 0.138649 -0.0067701 +-0.0637266 0.174609 -0.0527846 +-0.0739864 0.158247 -0.0289285 +-0.0616651 0.174109 -0.0575903 +-0.0346424 0.0780819 -0.0225024 +-0.0310543 0.0337173 -0.0219116 +-0.0769455 0.154831 -0.00883158 +-0.0339952 0.0752026 -0.0244888 +0.0354333 0.111001 -0.000827134 +-0.0790203 0.0935614 -0.0105962 +-0.0879913 0.136375 0.00520661 +-0.0582272 0.048399 0.00675942 +-0.00714757 0.130278 0.00704353 +0.0114556 0.0340617 0.001148 +0.0458421 0.0876102 0.0101629 +0.00312017 0.129984 5.00643e-07 +-0.0376568 0.0591992 -0.0116433 +0.00923557 0.129984 0.00166977 +-0.0579608 0.139021 -0.00516612 +-0.0909934 0.148856 0.0221303 +-0.0611919 0.0341824 0.0259657 +-0.0917869 0.115969 0.00931507 +0.00445187 0.116712 -0.0177471 +0.00711096 0.111601 -0.019782 +-0.00341693 0.115827 -0.0167447 +0.0411288 0.0792971 0.0313687 +-0.0358185 0.0337288 -0.0209957 +-0.0304972 0.0703216 0.0396594 +-0.076218 0.0887607 0.0388797 +-0.0701244 0.0632147 0.00385793 +0.0432229 0.0888059 -0.00480108 +-0.0321931 0.123411 -0.0044713 +0.0221624 0.0959197 -0.0219723 +0.0234605 0.0367801 -0.00165856 +-0.0234711 0.183379 -0.010712 +-0.0461137 0.0368295 -0.0192985 +0.023814 0.119372 0.031074 +-0.0617151 0.0722545 -0.0157777 +-0.0697425 0.164473 -0.0161193 +-0.0700395 0.077854 0.0390736 +-0.0793237 0.108591 -0.00458021 +-0.0622625 0.155951 0.0127725 +-0.0579896 0.126711 -0.00710506 +-0.0819874 0.0788394 -0.00151395 +-0.051802 0.111349 -0.0178923 +-0.0548009 0.0547174 0.00969263 +0.0456361 0.0819814 0.00319705 +-0.0362696 0.0447516 0.0428152 +-0.0678285 0.156225 0.0151421 +-0.0441012 0.15765 -0.00916962 +-0.0698712 0.102299 -0.0142744 +-0.0434973 0.0719505 0.0423325 +-0.0385101 0.124563 -0.00772445 +-0.0720478 0.154003 -0.0409023 +-0.0415192 0.155101 0.00654483 +0.030443 0.0496674 -0.00974777 +0.0100263 0.0352289 0.0272451 +-0.0657931 0.0349145 0.0296068 +-0.00453349 0.0975685 -0.029357 +-0.0575464 0.0576229 0.00774375 +-0.0675655 0.156308 0.0210392 +-0.0625478 0.177823 -0.0603383 +-0.0164994 0.107189 0.0421238 +-0.0628199 0.164682 -0.0345962 +-0.0725695 0.162422 -0.0399552 +-0.0295698 0.0377598 0.0258888 +-0.0285577 0.048864 -0.0238529 +-0.051128 0.0487627 0.0151791 +0.0297172 0.11319 -0.0079908 +-0.0129858 0.0389757 -0.0119758 +-0.0519687 0.0514416 0.0131188 +0.00659366 0.0345497 0.005308 +0.0431201 0.0959054 0.0231686 +0.0426395 0.101487 0.00716583 +-0.0326038 0.039499 -0.0302708 +-0.022273 0.0879769 0.0544159 +-0.0501719 0.132485 0.029178 +-0.0104724 0.123683 0.0330383 +0.0158783 0.103153 -0.0212298 +-0.0380583 0.0406922 0.0433465 +-0.05672 0.0341106 -0.0113244 +0.00284082 0.0994342 -0.0233056 +-0.00189869 0.037664 0.017192 +0.00849573 0.122392 0.0350922 +-0.0911887 0.13375 0.0222165 +0.0145889 0.124413 0.0307966 +0.0365837 0.0686678 0.0370221 +0.00534141 0.0341316 0.016402 +-0.0652159 0.16242 -0.0585196 +-0.0708983 0.120893 -0.00865195 +-0.0790974 0.103427 0.0328545 +-0.0233223 0.0386973 -0.0137829 +-0.0870669 0.0909973 0.0256595 +-0.0237781 0.0389651 0.0367703 +-0.0314981 0.107032 0.0395669 +-0.0488684 0.125064 -0.00815774 +0.0188255 0.104686 -0.0188612 +-0.0214383 0.162534 -0.00657802 +-0.0923673 0.124202 0.041188 +-0.0116952 0.0383509 0.0145738 +-0.0933085 0.117399 0.0213072 +0.00147085 0.0388322 0.0258794 +0.041327 0.0986069 0.0251647 +-0.063339 0.160302 -0.0538579 +0.0235731 0.114695 -0.0116124 +-0.0828981 0.101969 0.02963 +-0.0616452 0.139553 0.0354433 +-0.0343725 0.0357923 0.047703 +-0.0451209 0.0377458 0.0446873 +-0.0920088 0.118668 0.00830639 +-0.0495672 0.135498 0.00241956 +-0.0603606 0.0633645 0.0289482 +-0.067238 0.175347 -0.0588701 +0.053058 0.0705565 0.0234346 +0.0380671 0.0821074 0.0357563 +-0.0797544 0.0720045 0.0191472 +-0.0844521 0.153452 0.0225801 +-0.0749035 0.113464 -0.00617122 +-0.0384926 0.0605846 0.0409778 +-0.075255 0.0832856 0.0380964 +-0.0198342 0.0855003 -0.0383524 +-0.0649244 0.113824 -0.0119395 +0.0421 0.0690665 -0.00478535 +-0.0615968 0.0595411 0.0052883 +0.0357976 0.0378059 0.0192762 +-0.0314223 0.0343059 -0.0206653 +-0.0805979 0.0786983 -0.00455339 +-0.0516467 0.0481272 0.0388737 +-0.0325014 0.0618008 0.0386259 +0.0188656 0.11384 -0.0146811 +0.0360105 0.106014 0.0293761 +-0.0489136 0.125469 0.0310273 +-0.0702125 0.173659 -0.0540385 +0.0100557 0.112263 -0.0189498 +-0.0643724 0.0341771 0.0147182 +-0.023212 0.165344 -0.00918469 +0.059734 0.0692161 0.0111359 +0.0164747 0.104398 0.044527 +-0.0870127 0.10633 0.011369 +0.030786 0.0765476 -0.0208061 +-0.0657333 0.121445 0.0506733 +-0.00450341 0.0703715 0.0573471 +-0.0525943 0.0544911 -0.00726112 +-0.0226202 0.181624 -0.0117104 +0.00179227 0.0340095 -0.0213712 +-0.0768516 0.103431 -0.00952853 +-0.0773369 0.105608 0.0341784 +-0.0364954 0.0987325 0.0427313 +-0.0532526 0.161216 -0.00188451 +-0.0658747 0.0981197 -0.0167177 +-0.00202406 0.126832 0.0305449 +0.0396296 0.0392572 0.0187428 +0.0114981 0.0658063 0.0534716 +-0.0660116 0.154522 0.0303582 +0.0322049 0.0871235 -0.0192744 +-0.0161934 0.116736 -0.0156361 +-0.00805531 0.101876 -0.0238922 +-0.0425065 0.0548487 0.0395533 +-0.0623557 0.152158 -0.0235797 +-0.0550956 0.0333795 -0.00606735 +0.0194036 0.123725 -0.00335403 +0.0149002 0.0348014 0.0340409 +-0.0174953 0.112701 0.0395679 +-0.0824727 0.0992304 -0.00559052 +-0.0428553 0.101381 -0.0214106 +-0.0291214 0.0621103 -0.0254198 +-0.0530392 0.146248 0.021397 +-0.0658806 0.040185 0.0344505 +0.0298766 0.0889056 0.0433386 +0.0206783 0.0361727 0.0176735 +-0.029331 0.0791866 0.0433726 +-0.0474654 0.135069 0.0155888 +-0.0798447 0.116298 -0.00419638 +0.0278259 0.115624 -0.00659973 +-0.0400692 0.157713 -0.010751 +-0.087695 0.0860952 0.016472 +0.0119148 0.0630446 0.0522963 +-0.0586388 0.0367329 -0.00984378 +-0.0545581 0.0628278 0.0306388 +-0.0904983 0.133768 0.0272133 +0.0424823 0.0958192 -0.00180898 +-0.085893 0.115781 0.0473131 +-0.0827739 0.0762807 0.0135216 +-0.0783317 0.109572 0.0415234 +-0.0535658 0.132546 0.0330634 +-0.0901834 0.114057 0.0406088 +0.0134074 0.0463149 -0.0249889 +0.0112253 0.0952809 -0.0268838 +0.0150227 0.080777 0.0534508 +-0.0278391 0.168266 -0.00883037 +-0.0698489 0.175309 -0.0448893 +-0.0895811 0.137877 0.0241855 +-0.0790004 0.100402 -0.00859092 +-0.062851 0.116991 0.0425454 +0.0239206 0.0352552 0.0228022 +-0.000501715 0.0634055 0.0567322 +0.046037 0.0806318 0.0171753 +-0.0766672 0.154399 0.00327135 +-0.0117177 0.129576 0.0183624 +-0.0885031 0.148521 0.0281728 +-0.0728479 0.14776 0.0416103 +-0.015205 0.175685 -0.0260892 +-0.082938 0.100617 -0.00458659 +0.0398543 0.102779 0.025179 +-0.0336965 0.120802 0.028215 +-0.0625742 0.17727 -0.0581696 +-0.00806953 0.0988363 -0.0267114 +-0.0560752 0.0602595 -0.0044615 +0.0597447 0.0594744 0.0191904 +-0.0106444 0.0481591 -0.0303544 +0.00351281 0.081445 0.056735 +-0.0672464 0.173921 -0.0582812 +0.00251634 0.0459065 0.0480561 +0.000471055 0.038278 0.000679374 +-0.0002129 0.122901 -0.0103152 +-0.0382613 0.0393263 0.043596 +0.00848754 0.0426921 0.0451471 +-0.0482154 0.137103 0.0123981 +-0.015727 0.0657542 -0.0377517 +-0.0282054 0.0676114 -0.0305119 +-0.0306807 0.0363386 -0.0186663 +-0.0476849 0.119711 0.0291692 +-0.0663764 0.12565 0.049733 +-0.0488788 0.134867 0.0224297 +-0.0877229 0.0888584 0.0234132 +-0.0756171 0.172473 -0.0369846 +-0.033348 0.0384446 -0.00813352 +-0.0442894 0.126542 0.0198398 +0.0235131 0.101506 -0.0194672 +0.0538716 0.0661448 0.0268494 +-0.073604 0.148628 -0.0255988 +-0.0671901 0.0335697 -0.00322908 +-0.0886344 0.0949473 0.0228281 +-0.0761608 0.175035 -0.0499961 +0.0306065 0.111866 -0.00856301 +-0.0317456 0.124703 -0.000629789 +-0.0904268 0.150188 0.0141369 +-0.0639022 0.10675 -0.0154602 +-0.0541798 0.157923 -0.00210942 +-0.00323215 0.0940338 -0.0336602 +-0.0164901 0.115444 0.0380258 +0.053298 0.0648217 0.0277585 +-0.0843615 0.0993477 -0.00259153 +-0.00674006 0.0712942 -0.0362643 +-0.0653258 0.140047 -0.00770568 +-0.00635478 0.123294 -0.010702 +-0.055158 0.0361639 -0.0112393 +0.00412979 0.113096 -0.0199676 +-0.064574 0.0418551 0.0316967 +0.0525746 0.0462075 0.0162071 +-0.0234833 0.0448815 0.0530288 +-0.071322 0.138326 0.0479203 +0.0425401 0.0986672 0.000167984 +0.0273648 0.102724 -0.0167839 +0.0332874 0.111381 0.0289227 +-0.0537039 0.0594504 0.0244709 +-0.0227345 0.0390118 0.0369431 +-0.00354236 0.0429091 0.0474905 +-0.0724136 0.156792 -0.00114359 +-0.00249623 0.0689511 0.056733 +-0.0482461 0.131793 0.0256765 +-0.0515081 0.0490357 0.0376444 +-0.0944953 0.125552 0.0212653 +0.00638447 0.0346255 0.0414585 +0.0141724 0.0940368 0.0505038 +-0.0688973 0.120914 -0.00896239 +-0.0520364 0.14934 0.0173988 +0.00422853 0.0810435 -0.0341743 +-0.0515685 0.0473635 -0.00788512 +-0.0237608 0.156715 -0.0053038 +-0.0356104 0.127425 0.0141251 +0.035299 0.113666 0.0170439 +0.0334236 0.0903004 0.0414245 +-0.0251823 0.172681 -0.0196186 +-0.08807 0.113074 0.0239452 +0.0189601 0.036126 0.0191857 +0.00788239 0.0363273 0.00580236 +-0.0173959 0.0348327 0.0487444 +-0.0878896 0.111968 0.039224 +-0.064655 0.115706 0.0452756 +0.0311169 0.0445787 0.030603 +0.0441778 0.076309 0.025099 +-0.0896358 0.0915718 0.0124456 +-0.065807 0.090969 -0.0181206 +-0.0709064 0.123821 -0.00862928 +0.00649864 0.0924086 0.053834 +-0.0704989 0.134077 0.0490714 +-0.0596081 0.0614162 -0.00289701 +0.0242732 0.0346695 0.0161217 +-0.0464984 0.101529 0.041912 +-0.0498635 0.101385 -0.021584 +0.00433106 0.0496013 -0.0292546 +0.0107427 0.041795 0.045086 +-0.0739382 0.132552 -0.00766265 +-0.0162071 0.174195 -0.0247085 +-0.0886736 0.132413 0.0428724 +0.0320792 0.05838 -0.0156698 +-0.0192343 0.038226 0.00590432 +-0.0445033 0.11527 0.0334071 +-0.0847891 0.15265 0.0254465 +-0.0933214 0.129622 0.0172404 +-0.0346417 0.056288 -0.0107606 +-0.072488 0.172225 -0.0500329 +0.0233375 0.0606402 -0.0253621 +0.0366723 0.106016 0.0285439 +-0.0276074 0.0356491 0.0527176 +-0.053407 0.152198 0.0189083 +-0.0742721 0.166608 -0.0409997 +-0.0457331 0.0753099 -0.0177194 +-0.00672552 0.0670096 -0.035497 +-0.00219357 0.131295 0.0117423 +-0.0261647 0.0620468 0.0393395 +-0.0553241 0.0335005 0.00825618 +-0.0228582 0.119091 -0.0120569 +0.0213076 0.110412 -0.0149847 +-0.0314817 0.0889488 0.0439042 +0.0313336 0.0477022 -0.006755 +-0.0386183 0.174771 -0.00621679 +0.040988 0.0392554 0.0153655 +0.0608733 0.0623548 0.014161 +-0.00841473 0.0366574 -0.0164161 +-0.0191613 0.038383 0.000326194 +-0.00880856 0.0882704 -0.0368626 +-0.0596465 0.149865 -0.00094307 +0.00994371 0.0978413 -0.0235989 +0.0455086 0.055594 0.0323303 +-0.0860233 0.102167 0.0034068 +-0.0281256 0.165243 -0.0164075 +0.00425042 0.072607 -0.0344972 +0.0235113 0.118015 0.0324132 +-0.000261091 0.0350803 0.00896105 +-0.0532978 0.147774 0.0234078 +-0.0554295 0.0433 -0.00807812 +-0.0771312 0.155572 -0.0108986 +-0.0841536 0.0790628 0.0035277 +-0.0900384 0.135039 0.0102136 +-0.0727986 0.0849862 -0.0158247 +0.0336101 0.0962478 -0.0138935 +-0.0284441 0.0732827 -0.0345293 +0.00969167 0.0357093 0.0447693 +-0.0267255 0.0380235 0.0244373 +-0.0572883 0.132547 0.0364836 +-0.0528311 0.0941603 -0.0218064 +0.0400501 0.0644468 0.0314841 +-0.036531 0.116238 -0.0149852 +-0.00649604 0.0912014 0.0567618 +0.0144842 0.101799 0.0469727 +0.00323629 0.131729 0.0108817 +-0.0308992 0.0734931 -0.0305082 +0.0172066 0.068625 0.0512164 +-0.0657497 0.0765846 -0.017077 +-0.0737602 0.111876 0.0478461 +-0.0694356 0.066827 -0.00357005 +-0.0585001 0.119809 0.0399342 +0.0441644 0.0931187 0.000177172 +-0.0843417 0.0952366 0.029868 +-0.054753 0.0782755 -0.0197234 +-0.00738705 0.0379427 -0.0155249 +-0.0910658 0.143334 0.0151805 +-0.00249685 0.08015 0.0577289 +0.0340507 0.0835544 0.0405264 +-0.0523382 0.161184 -0.00281855 +-0.0812419 0.109765 0.0353982 +-0.0582589 0.129739 0.0385905 +0.0543559 0.049285 0.0042337 +0.015086 0.0406501 0.0443863 +-0.0280294 0.0835807 0.0475884 +-0.0393811 0.128131 0.00244283 +0.0208178 0.0415166 -0.0167046 +-0.0881465 0.111869 0.0203319 +0.0179003 0.0347727 0.0238228 +-0.0656433 0.0657616 -0.0058195 +-0.0840769 0.0911454 0.0297191 +0.00624923 0.0796338 -0.0339546 +0.0328487 0.0876389 0.0423414 +0.0276661 0.034679 0.0131567 +-0.00286572 0.104506 -0.0226523 +-0.0862889 0.10771 0.0183439 +0.0408829 0.0937805 -0.00720194 +0.000164408 0.0895345 -0.0346177 +-0.0843436 0.144613 0.00514953 +-0.0675701 0.180805 -0.0555973 +0.0220024 0.0727679 0.0493999 +-0.0156461 0.186781 -0.0233704 +-0.0187078 0.0364661 -0.0182818 +-0.0254003 0.0649585 0.0413183 +0.0122459 0.0780339 -0.0313519 +-0.0555013 0.0547806 0.00866941 +-0.0521449 0.157571 -0.00396744 +-0.073564 0.156227 0.0174776 +-0.00865052 0.104822 -0.0230347 +-0.0529425 0.0516633 -0.00638853 +-0.0652396 0.0384193 0.0154218 +0.0233172 0.0809188 0.0496338 +-0.0494012 0.054529 0.0344155 +0.0222475 0.0847573 -0.0259093 +0.0413844 0.0438265 0.0277643 +-0.0818597 0.146076 0.0399402 +0.0111047 0.0345035 -0.00868495 +-0.006336 0.10011 -0.0240468 +0.0245413 0.0819542 -0.0249712 +-0.00496439 0.130958 0.0121612 +-0.00978935 0.0841125 -0.0382567 +0.00551162 0.104351 0.0429177 +-0.0384918 0.0874952 0.0437107 +0.00946556 0.123094 -0.0106511 +-0.0897739 0.137922 0.033196 +-0.0653284 0.0349129 0.0366619 +0.00350126 0.104382 0.0428343 +-0.0368171 0.04253 -0.0279956 +-0.0634962 0.0775171 0.0416907 +-0.0558399 0.0666 0.0358943 +-0.033501 0.113967 -0.0166209 +-0.0105678 0.0384807 0.0255376 +-0.0875349 0.110472 0.0163392 +-0.0221423 0.0430524 0.0536615 +-0.0485662 0.0337988 0.0271958 +-0.0681764 0.0335792 0.00196619 +-0.00165753 0.05399 -0.0314052 +0.0457818 0.0746903 0.0202853 +-0.0845781 0.148672 0.0341151 +0.0452897 0.0861791 0.0201631 +0.00831626 0.0356874 -0.00657792 +-0.0196215 0.042233 -0.0284571 +-0.0649431 0.145366 0.0395451 +-0.0704953 0.104114 0.0382884 +-0.0414996 0.117985 0.0314618 +-0.0712521 0.17555 -0.0439596 +0.0452514 0.0931962 0.00916141 +0.00133085 0.058325 -0.0325937 +-0.0620033 0.158406 -0.0355965 +0.030344 0.1101 0.0335023 +0.0463602 0.0692197 0.00260588 +0.0444762 0.0945372 0.00319063 +-0.0491293 0.0430398 0.0442413 +-0.0789669 0.172206 -0.0419919 +0.0106503 0.130383 0.00504386 +-0.0484141 0.113756 -0.016334 +0.00450584 0.0547654 0.053433 +0.0441531 0.0720542 0.000197496 +-0.0134923 0.120989 0.0351213 +-0.0907438 0.135107 0.0202099 +-0.0590287 0.0481317 0.00366474 +0.0364319 0.108205 -0.00282023 +0.0178615 0.122874 -0.00643626 +-0.0356427 0.112876 -0.017464 +-0.0668607 0.154942 0.00387089 +-0.0486527 0.162759 0.00599863 +-0.00949915 0.105857 0.0435217 +-0.0615042 0.121243 0.0426924 +-0.0784762 0.0731416 -0.000473316 +-0.0740322 0.156054 0.0216877 +-0.0847959 0.101901 0.0272869 +-0.0596957 0.14074 -0.00502874 +-0.050497 0.0987878 0.0435099 +-0.071801 0.0745407 0.0361884 +-0.0549619 0.14242 0.0292765 +-0.0427321 0.0739589 -0.0183224 +-0.0508117 0.0354248 -0.0125858 +-0.0642011 0.0410429 0.0143098 +-0.0132685 0.101107 0.0437078 +-0.0475187 0.0790945 0.0436556 +0.0209941 0.0373175 -0.00464913 +-0.0204991 0.100239 0.044421 +-0.0684679 0.110537 0.0393979 +0.0243777 0.124503 0.0143821 +-0.0830368 0.0762381 0.00350806 +-0.073622 0.0747015 -0.00970199 +-0.0461368 0.13275 0.0116924 +0.0104091 0.0389479 -0.0231008 +0.0155004 0.116786 0.0363781 +0.0387891 0.096727 0.0316453 +0.0196906 0.074125 0.0513576 +-0.0225582 0.0383546 -0.00218286 +0.0487458 0.0724992 0.00846572 +-0.0668418 0.138273 0.0438208 +-0.0309771 0.0339917 0.0163773 +0.0411176 0.0661976 -0.00575682 +-0.0229076 0.0852723 0.0551257 +0.000828067 0.123861 -0.00936286 +-0.0250326 0.0621165 0.0410328 +-0.0651714 0.128382 0.0462127 +-0.0434333 0.15941 0.00551467 +-0.0264854 0.0348879 0.0467436 +-0.0628107 0.150584 -0.0245802 +-0.0123081 0.181626 -0.0249909 +-0.00919366 0.172678 -0.0237455 +0.0126063 0.0576596 0.0514859 +-0.0332159 0.0709306 -0.0214641 +0.0240158 0.0658883 0.0452055 +-0.0660765 0.124251 0.0501642 +-0.0588552 0.0351368 -0.0102919 +0.0124134 0.0346609 0.020994 +0.0122384 0.0644368 0.0527864 +0.0452304 0.0763569 0.00121116 +0.0242611 0.0448626 -0.0136813 +-0.0304238 0.12007 0.0279522 +0.0145126 0.0347575 0.026768 +-0.0217663 0.065545 -0.0358558 +0.00816067 0.125635 -0.0073679 +0.0183075 0.0679765 -0.028974 +-0.0180555 0.0909221 -0.0366017 +0.00824317 0.0602927 0.0539848 +-0.0687967 0.0894213 -0.0168337 +-0.0450098 0.146255 0.00342574 +-0.0335022 0.0661629 0.0402747 +-0.0781465 0.155117 0.0246877 +0.00450914 0.0758818 0.0564153 +-0.0135396 0.0366033 -0.0173816 +0.045728 0.077798 0.00320493 +-0.0913745 0.142001 0.0211607 +-0.0284862 0.102933 0.0423265 +-0.0302445 0.16108 -0.00171322 +0.0327554 0.116907 0.00609585 +0.0201031 0.0379621 0.0410367 +-0.090178 0.113449 0.0375353 +0.0422255 0.0887323 -0.00780894 +-0.0632995 0.045657 0.000708444 +-0.0344955 0.0889014 0.0434521 +-0.0735138 0.0874308 0.0404487 +-0.081144 0.11 0.0405445 +-0.046701 0.144949 0.00345496 +0.0239825 0.114006 0.0348506 +0.00951792 0.0799496 0.0550675 +-0.0589753 0.0343808 0.0315144 +-0.0715764 0.0724969 0.0344898 +-0.0763465 0.151411 -0.00788806 +0.0476241 0.0444058 0.00228058 +-0.0865319 0.0910336 0.0265354 +-0.0761893 0.0686573 0.0192806 +-0.0738377 0.169377 -0.0450494 +-0.013497 0.089796 0.0568243 +-0.003677 0.129286 0.0256231 +0.00334505 0.0372684 -0.00154693 +0.0285394 0.0735396 -0.0227021 +-0.067513 0.132633 0.0463034 +0.0459145 0.0862168 0.00717824 +-0.0631406 0.152896 -0.00931447 +-0.0777879 0.113218 0.0476364 +-0.023707 0.0340979 -0.0208155 +-0.0144671 0.110884 -0.0194361 +0.0102739 0.0667155 -0.0310192 +-0.00350236 0.0842813 0.0574606 +-0.0664798 0.0832826 0.043443 +-0.0635622 0.0403137 0.0257086 +-0.0426942 0.0666296 -0.0154091 +-0.017221 0.187225 -0.0211553 +-0.0336762 0.062222 -0.0135529 +-0.0673972 0.0641749 0.025006 +-0.0740248 0.149858 -0.0328754 +-0.0467235 0.128128 0.0253508 +-0.0262045 0.163884 -0.00647025 +-0.0271883 0.118982 0.0306038 +0.033772 0.0543003 -0.00971113 +-0.0758953 0.12228 -0.00740649 +0.00448236 0.11415 0.0407558 +-0.0698932 0.103728 -0.0136756 +-0.0567617 0.0782351 -0.019665 +0.0543638 0.0534389 0.000229046 +-0.081811 0.11456 0.047449 +-0.0565132 0.053486 0.0056729 +-0.057003 0.128342 0.0386502 +-0.0664962 0.0370022 0.0293944 +-0.0624918 0.101519 0.0421076 +-0.0687869 0.155336 0.00316719 +-0.0685122 0.141137 0.0449382 +-0.0527211 0.0709092 -0.0154358 +-0.00549985 0.0703921 0.057296 +-0.0709113 0.107952 -0.0112859 +0.00912605 0.108716 -0.0196568 +0.0361188 0.0794771 0.0382118 +-0.0588731 0.101172 -0.0189069 +-0.068257 0.129831 0.0487832 +0.0374605 0.0754022 0.0365814 +-0.032324 0.161031 -0.00122654 +0.0285746 0.0351013 0.0166057 +0.0394117 0.0870933 -0.0127933 +0.0113423 0.0644371 0.0532354 +-0.0583019 0.0447396 0.0435847 +-0.00749863 0.0773617 0.0576592 +-0.050194 0.116459 -0.0151638 +-0.0481437 0.0545922 0.0360102 +-0.0104704 0.100279 -0.0242341 +-0.0347529 0.111555 -0.0180951 +-0.0155011 0.120965 0.0341268 +-0.0784442 0.154274 0.027518 +0.0120599 0.0739551 0.0543847 +-0.0633352 0.0436031 0.0119653 +0.0217763 0.115313 0.0351727 +-0.0415089 0.165252 0.00421093 +0.0335736 0.0700381 0.039723 +0.00251112 0.0647983 0.0566425 +-0.0654261 0.0391693 0.0381077 +-0.0695564 0.114278 0.0502908 +-0.00162211 0.0369274 0.0160989 +-0.058966 0.123797 -0.00809452 +-0.0942641 0.126921 0.0212556 +-0.0335104 0.175675 -0.00315318 +-0.0368415 0.0943464 -0.0233446 +0.0133357 0.128238 -0.000223601 +0.00322397 0.0768846 -0.0351052 +0.00583724 0.038604 -0.0097514 +0.0244991 0.0390622 0.0333159 +0.039204 0.0699354 0.0337973 +-0.00749309 0.122405 0.0352331 +-0.0204932 0.0624346 0.0477982 +-0.0366651 0.0353042 0.023032 +0.0167127 0.0887461 0.050636 +-0.0697357 0.167099 -0.0218834 +0.0364696 0.0632797 0.0368445 +-0.0745038 0.141441 0.0470955 +-0.0621205 0.0458041 0.0366793 +-0.0544906 0.0820201 0.0451936 +-0.0645123 0.172574 -0.0485643 +-0.0421309 0.128083 -3.62159e-05 +0.0281636 0.121218 0.0186511 +-0.0121987 0.171236 -0.0257581 +-0.0281113 0.0605968 -0.0274147 +-0.0631879 0.0449558 -0.00115255 +-0.056884 0.0955743 -0.0213395 +-0.0516987 0.131736 -0.00321408 +0.00826283 0.110977 0.0402103 +-0.0738401 0.154086 -0.0269016 +0.00525204 0.071179 -0.0340737 +-0.0710521 0.173649 -0.0530415 +-0.0508226 0.162642 -0.00385759 +-0.0802179 0.141741 -0.00280512 +-0.0104908 0.12238 0.0346088 +-0.082839 0.145958 0.00218243 +-0.0764995 0.134472 0.0515165 +0.0572674 0.0552579 0.0228777 +-0.0459192 0.038241 -0.0182827 +0.0212995 0.0664627 -0.0275106 +-0.00266999 0.131274 0.0130017 +-0.0615996 0.159996 -0.0335919 +-0.0172476 0.12413 0.0281151 +0.0257469 0.104744 0.0391433 +0.033213 0.112692 0.0276861 +0.0156033 0.0352036 -0.0174539 +-0.030256 0.0608147 -0.0214135 +-0.0554996 0.0746996 0.0418498 +0.0250243 0.0618819 0.0448807 +0.0333333 0.0528011 -0.00875184 +0.0462789 0.0820452 0.011174 +0.0413782 0.0519867 -0.00685663 +-0.0228771 0.11806 -0.0129657 +-0.0608849 0.0381036 0.0449409 +-0.0255027 0.103002 0.0430099 +-0.0102615 0.128766 0.00159795 +-0.0140304 0.0389318 -0.0121434 +0.0242826 0.0691154 -0.0252241 +-0.0262141 0.0383199 -0.0177378 +0.000134491 0.116503 -0.0174981 +-0.0556551 0.0575 -0.00342108 +-0.0641179 0.115013 -0.0114251 +-0.0523454 0.059725 0.0287459 +-0.039493 0.0888698 0.0432118 +-0.0635876 0.0600882 0.0187607 +-0.0527647 0.138519 0.0263974 +-0.0421778 0.150669 0.00550662 +-0.0898169 0.147438 0.0111767 +-0.0440117 0.149183 0.00634807 +-0.0124981 0.0842783 0.057419 +-0.041501 0.0888244 0.0425932 +0.0390954 0.0814754 -0.0127535 +-0.00978632 0.0812687 -0.0379822 +-0.0143122 0.127128 -0.000614565 +0.043146 0.0650339 -0.00117659 +0.0508787 0.0465582 0.0223162 +-0.0187679 0.0341854 -0.027695 +0.0104088 0.0403968 -0.0232872 +-0.0615714 0.111062 0.0370307 +-0.0574772 0.0344195 0.038759 +-0.029988 0.0381577 0.0326274 +-0.0293835 0.0775974 -0.0345936 +-0.0174998 0.115454 0.0379182 +-0.0492034 0.0336154 -0.00143623 +-0.0160718 0.124871 -0.00420428 +0.0153397 0.120197 -0.0115352 +-0.0588103 0.157344 0.00530008 +-0.0448304 0.0956436 -0.0219722 +0.0199962 0.120682 0.0326204 +0.050389 0.0482108 0.0251806 +0.0208954 0.116644 -0.0117151 +-0.079388 0.147286 -0.00182539 +-0.0747645 0.0849032 -0.0147477 +-0.0505016 0.107064 0.0390734 +-0.0174992 0.03427 -0.0197565 +-0.01005 0.166619 -0.017705 +-0.0581312 0.0342101 0.0265873 +-0.0613803 0.17096 -0.0575947 +-0.0304965 0.0917653 0.0441169 +-0.0458806 0.10564 -0.0201801 +0.0202101 0.0833915 -0.0271395 +0.0323169 0.0376319 0.0223694 +-0.0223063 0.0380908 0.0216787 +0.035616 0.10962 -0.00284805 +0.0484836 0.0582148 0.031165 +-0.0809138 0.125107 -0.00520991 +-0.00566591 0.0540919 -0.0326394 +-0.00149662 0.114206 0.0415504 +-0.0263202 0.0930635 -0.029586 +-0.0680426 0.110046 0.0381289 +0.0249883 0.12025 -0.003603 +-0.0736149 0.155479 0.0262237 +-0.0299566 0.122268 0.0236125 +0.0238471 0.107154 -0.0155051 +-0.0566015 0.0451895 0.0246815 +-0.028491 0.0987621 0.0434122 +-0.0338535 0.0870951 -0.024854 +-0.0478322 0.0956344 -0.0220665 +-0.0226614 0.177177 -0.0135831 +-0.0810787 0.154935 0.0192662 +0.0439336 0.0428821 0.0236685 +-0.0114115 0.128814 0.0228458 +-0.0417827 0.0840916 -0.0212196 +0.0249862 0.118037 0.0310154 +-0.0641215 0.0336259 -0.00810847 +-0.0795112 0.081834 0.0339273 +-0.041505 0.119362 0.0299569 +-0.0033398 0.119986 -0.0131833 +0.0411805 0.0745986 -0.0077775 +-0.0446675 0.0636475 -0.0137193 +0.00937092 0.0937948 -0.0292997 +0.0415042 0.104246 0.00816492 +-0.0792333 0.169423 -0.0379787 +-0.0414888 0.0437926 0.0421195 +-0.00148881 0.0760516 0.0586512 +-0.0126769 0.0541386 -0.0335166 +-0.00577674 0.0385885 0.0246132 +-0.0394947 0.0676998 0.0417669 +0.0147262 0.129115 0.00511474 +-0.0045144 0.0774415 0.0584948 +0.0334512 0.0365216 0.00521608 +-0.0662857 0.0625946 -0.00141881 +-0.0659868 0.0418098 -0.00430732 +-0.0485691 0.0460686 -0.00963735 +0.0269239 0.0493817 -0.018692 +-0.0652895 0.175332 -0.0607504 +0.0558431 0.0722822 0.0186151 +0.0389971 0.039341 0.0203664 +-0.0252734 0.05785 0.0399799 +-0.0537245 0.0723552 -0.016258 +-0.0214963 0.104399 0.0429755 +-0.0649507 0.13395 0.041174 +-0.0641915 0.179229 -0.0572988 +-0.00649249 0.110023 0.0430195 +-0.0925801 0.120153 0.0312943 +0.0364682 0.111067 0.00216795 +-0.0487462 0.118344 0.031163 +0.0272987 0.047751 0.0374572 +-0.0235246 0.079724 0.0545007 +0.044563 0.0819287 0.0241608 +0.018083 0.0887399 0.0491141 +0.0180337 0.115273 -0.0142355 +-0.0838753 0.135332 0.0479212 +-0.0707318 0.154624 0.0301689 +-0.0897339 0.0916034 0.0174376 +-0.0487526 0.0782553 -0.019094 +-0.021696 0.0567795 -0.0319795 +-0.0524624 0.139899 0.000243693 +-0.016317 0.0384896 0.0261516 +-0.0172081 0.172701 -0.0233314 +-0.0664965 0.109745 0.0377695 +-0.0117557 0.0345134 -0.025836 +-0.000654571 0.0391799 -0.00969942 +0.00820345 0.083757 -0.0326005 +-0.0458982 0.107069 -0.0194756 +-0.0567459 0.15948 0.00480369 +0.00650779 0.0575337 0.0533257 +0.037787 0.0377202 0.0142753 +0.00846774 0.13132 0.015646 +-0.0475009 0.0425468 0.0439593 +-0.0766415 0.100814 0.0361238 +-0.028614 0.0408765 -0.0296027 +0.00929873 0.115842 -0.01682 +-0.0828745 0.119161 -0.00328383 +-0.0769895 0.0790529 0.034321 +-0.0878006 0.151251 0.0245374 +0.0208653 0.122279 0.030221 +-0.00768551 0.130297 0.0183702 +-0.0545511 0.0430136 -0.00860983 +0.030217 0.0843227 -0.0201565 +-0.0467665 0.152145 0.00944802 +-0.0631219 0.156103 0.0153645 +-0.0681832 0.155264 -0.0517309 +0.0142805 0.0345676 -0.0138073 +-0.0664934 0.0624679 -0.000297249 +-0.0641994 0.16384 -0.059407 +0.0464327 0.0769932 0.014129 +-0.041507 0.0591281 0.0403212 +0.0223695 0.0993436 -0.0211483 +-0.088603 0.087513 0.0164636 +0.00038562 0.0392239 -0.00953586 +0.0270604 0.0795391 0.0462139 +-0.0684865 0.0611195 0.0150424 +0.0105195 0.053345 0.0519069 +-0.0620106 0.15528 -0.0315878 +-0.00991465 0.0385501 0.00204441 +-0.0151984 0.171233 -0.0237028 +-0.026193 0.171192 -0.0190186 +0.0404914 0.0541681 0.032094 +-0.0115119 0.181449 -0.0261319 +-0.027122 0.166756 -0.0173778 +0.0338583 0.105892 -0.0101458 +-0.0671444 0.0628365 -0.000338348 +-0.0788571 0.120751 -0.0060883 +-0.0525645 0.0417313 -0.0101531 +0.0278652 0.0996344 -0.0174729 +-0.0681363 0.122845 0.0524474 +-0.0228108 0.0770465 -0.0385748 +-0.0135961 0.12464 -0.00600832 +-0.00365126 0.0525899 -0.0316543 +-0.068996 0.139931 -0.00789046 +-0.0310262 0.153728 -0.00354608 +-0.0497211 0.131062 0.0298847 +-0.00109314 0.103948 0.0441727 +-0.0204702 0.16083 -0.0136222 +-0.0865394 0.109089 0.0183378 +0.0400949 0.095337 0.0300286 +-0.0693797 0.128452 0.0506772 +-0.0438868 0.107083 -0.0199439 +-0.0470477 0.150201 -0.00445632 +-0.0370064 0.121579 0.0285082 +0.0198288 0.120602 -0.00797301 +-0.0549804 0.0334872 0.0101333 +0.00782186 0.127915 -0.00384433 +-0.0495314 0.12548 0.031876 +-0.0926082 0.117405 0.0243082 +-0.0215209 0.0382567 0.0252967 +0.00181128 0.125691 -0.00735123 +-0.0771897 0.117737 0.0516815 +-0.0554751 0.0519418 -0.00338574 +-0.0771699 0.154422 0.00455736 +-0.00649896 0.092559 0.0563419 +-0.0704303 0.164039 -0.0149268 +-0.036643 0.118048 -0.0128637 +-0.0535056 0.136701 0.0296589 +-0.0594928 0.0761776 0.0424443 +-0.00649656 0.0856337 0.0569558 +-0.0586618 0.0637687 0.0307411 +-0.0650964 0.155112 0.00596226 +-0.0626129 0.0371673 0.0184653 +0.0330114 0.107386 0.0320976 +0.0333812 0.0490928 -0.00645546 +-0.069711 0.1744 -0.043385 +-0.00744712 0.0961017 -0.0318028 +0.0413373 0.0392631 0.0117259 +-0.0487556 0.137056 0.00741027 +-0.0845701 0.112449 0.0449336 +0.0531449 0.0608429 -0.00288049 +-0.0358592 0.10284 -0.0213952 +-0.0778493 0.11932 -0.00645768 +0.0172333 0.0750251 -0.0287502 +-0.0195083 0.11546 0.0373373 +-0.0542618 0.0348321 -0.0120282 +-0.0344386 0.125663 -0.00162003 +-0.0690003 0.160066 -0.00858817 +0.0285895 0.0979793 -0.017709 +0.015268 0.0341755 -6.02454e-05 +-0.012432 0.12921 0.00653602 +-0.0222335 0.171216 -0.0204735 +-0.0656059 0.0615317 0.0026003 +-0.0324965 0.174231 -0.00238999 +-0.0398336 0.0384391 -0.0280596 +-0.0513902 0.122634 0.0344378 +-0.0735123 0.142806 0.0460464 +-0.0703661 0.16678 -0.0206717 +0.0128439 0.0343776 -0.0158182 +-0.074941 0.152735 -0.0189 +-0.0785348 0.0771858 -0.00655705 +0.0347176 0.114447 0.00679736 +-0.0192836 0.0385916 0.0308544 +-0.00226925 0.130756 0.00454173 +-0.0622845 0.161545 -0.0405978 +-0.0687671 0.0900946 0.0427048 +-0.028252 0.050761 -0.0234049 +-0.0818245 0.107456 0.0283887 +0.0216927 0.103078 -0.0191449 +-0.0539655 0.0364915 -0.0115887 +-0.0577688 0.142406 -0.00278963 +0.0347443 0.08354 0.0397721 +0.041088 0.0912985 0.0296287 +0.0209984 0.0578395 0.0478214 +-0.0607897 0.155834 0.0118473 +-0.0427999 0.167662 -0.00952768 +-0.0135045 0.0870342 0.0571061 +0.0551275 0.0637038 0.000299703 +-0.0500088 0.124901 -0.00796654 +0.040891 0.0917758 -0.00909975 +-0.057302 0.152908 0.030569 +-0.0490908 0.140152 0.0103957 +-0.062514 0.0399436 -0.00751704 +-0.0901142 0.14065 0.0241685 +-0.0614977 0.0847334 0.0442553 +0.00401707 0.125848 -0.00755459 +-0.0295217 0.0402041 -0.0298306 +-0.0770884 0.0866038 -0.0125752 +0.00250242 0.0441898 0.0459568 +-0.0884166 0.13498 0.0042424 +-0.0144984 0.11138 0.0412273 +-0.0543527 0.155034 0.0127444 +-0.0485461 0.135607 0.0194861 +-0.0763654 0.155962 0.0179624 +0.0194741 0.0351845 0.0201392 +0.0604235 0.0678625 0.0131519 +-0.0147437 0.0383723 0.00849375 +0.0123077 0.035562 0.0436453 +-0.0878555 0.0861109 0.00948006 +0.0461918 0.0820393 0.0121748 +-0.0376617 0.0344352 0.0359896 +-0.0640313 0.13251 0.040793 +0.00650251 0.122426 0.0350167 +0.046473 0.0747304 0.00699979 +-0.090578 0.13228 0.00723516 +-0.0665138 0.0986787 0.0417758 +-0.0753611 0.0724331 0.0302407 +-0.0737585 0.160179 -0.00884095 +-0.0875779 0.102333 0.0213648 +-0.0213902 0.0905176 -0.0361974 +-0.0663379 0.132604 0.0444522 +0.0420458 0.0817019 -0.00677657 +-0.0739471 0.131099 -0.00783391 +-0.00249367 0.0925505 0.0559214 +-0.0748382 0.149925 -0.0278668 +-0.0734967 0.126028 0.0530224 +-0.0386362 0.117281 -0.0140679 +0.00347668 0.0964809 0.0526894 +0.0453833 0.074968 0.00220665 +0.012072 0.11405 -0.0168987 +-0.0774663 0.168085 -0.0299733 +-0.0534988 0.0761753 0.0426023 +-0.0233682 0.126286 0.00541909 +-0.00704598 0.0392708 0.0363567 +-0.0791658 0.0990564 -0.00863296 +-0.0464518 0.0945568 0.0436355 +-0.0404194 0.128239 0.00205017 +0.0393898 0.107905 0.00701069 +-0.0398611 0.0338561 -0.0163385 +-0.0665222 0.156255 0.0214077 +-0.0672076 0.171872 -0.0410051 +-0.0708261 0.144835 -0.0182015 +-0.0650483 0.0701635 0.0361166 +-0.00764186 0.11082 -0.0214014 +-0.0836837 0.151385 0.0303528 +-0.0496912 0.162854 0.00564102 +-0.0114821 0.125053 0.0306553 +-0.0713615 0.158186 -0.0419305 +-0.0348112 0.0336186 -0.0263013 +-0.0652015 0.0334423 0.00269659 +-0.00682217 0.0390777 -0.0108403 +-0.0745121 0.155307 0.0054919 +0.00849016 0.0441134 0.0451901 +-0.041821 0.0914074 -0.0230213 +0.0243874 0.048835 -0.0205112 +-0.0578612 0.158406 0.00308521 +-0.0781467 0.116431 0.0503206 +0.0429791 0.071952 -0.00379352 +-0.00196689 0.131088 0.00752604 +-0.0728984 0.156837 -0.0329194 +0.00543206 0.119469 -0.0147017 +-0.00442631 0.0386612 0.00487339 +-0.089531 0.0983552 0.0174009 +0.00679264 0.0379024 -0.00704418 +-0.0255688 0.0356598 0.0531386 +-0.0343151 0.0794495 -0.0245241 +-0.0124944 0.0870249 0.0570339 +-0.0710693 0.155098 0.0285743 +-0.0663511 0.0350877 0.0310837 +0.00349789 0.122445 0.0347995 +-0.0414975 0.045132 0.0414403 +0.0348194 0.0365264 0.00732462 +-0.0740113 0.141343 -0.00688783 +-0.0303332 0.0706347 -0.0294852 +0.0503042 0.0691243 0.0253774 +-0.0701319 0.158154 -0.0479233 +-0.0358242 0.0915039 -0.0239402 +-0.0645394 0.0596403 0.015406 +0.0213135 0.0650138 -0.0271409 +0.0262112 0.0873747 -0.0229809 +-0.052671 0.112615 -0.017101 +-0.0592898 0.045994 0.0417021 +-0.0717164 0.163822 -0.0439567 +0.0178664 0.127935 0.017674 +-0.0655034 0.108381 0.0382088 +0.0278762 0.0942373 0.043974 +-0.0457869 0.0855328 -0.0217062 +-0.0643109 0.169365 -0.0428818 +0.0100266 0.0346111 0.0241784 +-0.00361434 0.0341476 -0.0187856 +-0.0389438 0.047744 -0.0146455 +-0.0676963 0.0648397 0.0261272 +-0.0374998 0.0691046 0.0417769 +-0.0568378 0.0613597 0.0260949 +-0.0369296 0.036554 0.0451414 +-0.0284901 0.0688983 0.0393825 +-0.0534824 0.0340932 0.0259063 +-0.0631168 0.15992 -0.0455978 +-0.0444353 0.0335419 -0.0188134 +-0.0168224 0.0960286 0.0515795 +-0.076233 0.145832 -0.00587217 +-0.0231748 0.0709692 0.0487695 +-0.0104382 0.0354056 -0.0175403 +-0.0897878 0.136555 0.0351995 +-0.0717761 0.0344583 0.000444464 +0.0353682 0.103387 0.0319873 +-0.00977607 0.0770524 -0.0379416 +0.00551406 0.0375423 0.0260562 +-0.00350144 0.0675505 0.0564719 +-0.0564947 0.102955 0.042036 +-0.061361 0.0336079 0.00692461 +0.00850062 0.121038 0.0360118 +0.0202826 0.0693621 -0.0284085 +-0.00908512 0.169637 -0.0217386 +0.0255848 0.123614 0.0162626 +0.0234098 0.0871372 -0.0242525 +0.0269727 0.112042 -0.0107557 +0.0262833 0.0935743 -0.0210485 +-0.059 0.0412164 0.021703 +0.0345357 0.0373492 0.0194302 +0.0530102 0.0462982 0.0132036 +-0.00365111 0.0511553 -0.0312289 +-0.0591025 0.0338635 0.0178635 +-0.0144888 0.0673806 0.0542261 +-0.0416194 0.0336308 -0.0257822 +-0.0186097 0.0407857 -0.0282477 +-0.0298888 0.0474725 0.0462905 +-0.00306646 0.0386027 0.0233477 +0.0330707 0.110451 -0.00703014 +0.0146846 0.037467 0.0442233 +-0.0390505 0.154795 -0.00905663 +-0.0306702 0.0891071 -0.0265975 +-0.090498 0.131069 0.0362301 +-0.0189866 0.10628 -0.022556 +-0.0125142 0.181139 -0.0289621 +-0.0236648 0.0522261 -0.0284113 +-0.0564969 0.100177 0.0431307 +-0.0314961 0.10429 0.0412052 +-0.0509168 0.0335668 6.7085e-05 +-0.0773495 0.081875 0.035997 +-0.0834254 0.141805 0.00220396 +0.00104126 0.108173 -0.0205653 +0.0181741 0.0988563 -0.0226017 +-0.0797776 0.115912 0.0485816 +-0.0816869 0.0734846 0.011537 +0.00150486 0.0856703 0.0573817 +-0.00849476 0.0745791 0.0575173 +-0.00549893 0.0939194 0.0556385 +0.0221626 0.0490425 0.0405889 +0.0363661 0.0873006 -0.0164353 +0.0491174 0.0712134 0.0219878 +-0.079214 0.155524 0.0184351 +-0.0654627 0.0598015 0.0150426 +0.0330982 0.0626311 -0.0167961 +-0.0839336 0.126519 -0.00402298 +-0.00950667 0.125161 0.0310898 +0.0292092 0.0563773 0.0403225 +-0.0273861 0.0720614 0.0416635 +-0.0647467 0.0379255 0.0402853 +-0.0521847 0.140082 0.0224024 +-0.0276164 0.0422898 -0.0293674 +0.0360108 0.100867 -0.0107814 +-0.0946899 0.124172 0.0202666 +0.0446233 0.0903218 -0.000806954 +-0.00230838 0.0348204 0.04129 +0.00391726 0.126651 -0.0064175 +-0.0633881 0.0336212 0.00649796 +0.00838362 0.046349 -0.0258656 +-0.0577252 0.156918 0.00853143 +-0.0693669 0.17099 -0.0332104 +0.0249955 0.0347512 0.0143719 +0.00961895 0.12141 -0.0128393 +0.021665 0.0416371 -0.0126942 +-0.0521438 0.0568294 0.0272279 +-0.0628733 0.0996403 -0.0179913 +0.0218834 0.0415901 -0.0107198 +-0.0546838 0.0435714 0.0206922 +-0.0176301 0.183064 -0.0184359 +-0.00750517 0.0471136 0.0478292 +-0.0520933 0.154615 -0.00405641 +-0.0865732 0.0860822 0.023453 +-0.0665787 0.163768 -0.0579853 +0.00636801 0.0479975 -0.0276935 +0.0368613 0.0587703 -0.00975684 +-0.0879266 0.10368 0.0183585 +-0.016623 0.0450359 -0.0278307 +-0.0895401 0.135156 0.0272131 +0.000356348 0.0496808 -0.0306188 +-0.0836962 0.138005 0.0462469 +0.0441945 0.077668 0.0251701 +-0.0685147 0.0930476 0.0422841 +-0.0232574 0.100051 -0.0240138 +-0.03748 0.0548048 0.0392179 +-0.0293599 0.15815 -0.0119938 +-0.021522 0.0336815 -0.0237529 +0.00128503 0.0655494 -0.0343406 +-0.0861178 0.0953813 0.000442214 +0.0350885 0.099465 0.0350983 +-0.0779853 0.13835 -0.00526914 +-0.0857179 0.124363 0.0486993 +-0.0309707 0.163858 -0.00458082 +-0.0722468 0.174258 -0.0400013 +-0.0149026 0.105901 -0.0222117 +-0.0673665 0.165482 -0.0209987 +-0.0876017 0.152029 0.0126504 +-0.0220763 0.0666765 0.0478151 +-0.0624814 0.094591 0.0443423 +-0.0196147 0.0379102 -0.0280301 +-0.0346582 0.0422066 0.0469558 +-0.0199036 0.0739897 0.0538964 +-0.00877818 0.0387104 -0.00343461 +0.000535895 0.0548656 0.0545076 +-0.0454881 0.10014 0.0423159 +-0.0404927 0.0958661 0.0421915 +-5.87354e-05 0.100974 -0.0229378 +-0.0283024 0.0362399 -0.0299084 +0.026308 0.0822369 0.0469135 +-0.06337 0.156813 -0.0136043 +-0.0624231 0.0357528 0.0196573 +-0.0709978 0.0698591 0.0316215 +-0.00550273 0.0661441 0.0562254 +0.00539692 0.0418924 -0.0240197 +-0.0711187 0.0642492 0.0206358 +-0.0614458 0.0606683 0.0222701 +0.0189142 0.0353585 0.00519133 +0.0315596 0.0497964 -0.00774264 +-0.0548596 0.0462919 -0.006395 +0.0010398 0.0392387 0.0326514 +0.0448141 0.0889533 0.0211601 +-0.0898897 0.136442 0.013225 +0.0409408 0.0873455 0.0311847 +-0.0866496 0.106304 0.00937201 +0.0315171 0.118424 0.0085036 +-0.091229 0.14471 0.0161551 +-0.00263717 0.12924 0.026005 +0.0142425 0.0645148 0.0521595 +-0.0509259 0.0571242 0.0316152 +-0.0585706 0.155353 0.0213449 +0.0242207 0.111888 -0.0125803 +-0.0305755 0.0788685 0.0415824 +-0.0664528 0.145477 0.0410093 +-0.00432524 0.0423738 0.047881 +-0.0434528 0.12491 0.0216806 +-0.0610445 0.045667 0.0306816 +-0.0148175 0.0855384 -0.0388203 +0.0594886 0.0594575 0.00616841 +-0.0740871 0.156873 -0.0259173 +-0.0414785 0.105663 0.0400022 +-0.0376995 0.0680509 -0.0154542 +-0.0698935 0.122364 -0.00881274 +-0.00848477 0.0718045 0.0573713 +-0.0394932 0.127549 -0.000886358 +-0.0856022 0.136615 0.0453504 +-0.0889467 0.143422 0.0321606 +-0.0738723 0.109242 -0.00905672 +-0.0222267 0.0906414 0.0528718 +0.00551724 0.0661119 0.0558057 +-0.0588983 0.0582416 0.00880815 +0.0225876 0.0388978 0.0383164 +0.0022443 0.0974458 0.0519249 +-0.056455 0.12554 0.0394323 +-0.00949777 0.091187 0.0566315 +0.00149085 0.103013 0.043912 +-0.00374904 0.0712712 -0.0357267 +-0.0394946 0.119701 -0.0126173 +-0.0631669 0.152168 -0.0312981 +-0.0139477 0.0625843 0.0539847 +-0.0604937 0.100137 0.0425915 +-0.0749718 0.138395 -0.00644263 +0.00624486 0.0401371 0.0456279 +0.0193551 0.0475975 0.0417872 +-0.0303971 0.0890708 -0.0275789 +0.0196022 0.0462781 0.0421275 +0.0317544 0.0632771 0.0405733 +-0.0662966 0.156977 -0.00759157 +0.0183734 0.0506657 -0.0252113 +0.0404388 0.0427247 -0.00185446 +0.0115151 0.105777 0.0436811 +-0.0301364 0.0349235 0.0476426 +0.0254917 0.0369057 0.0252691 +-0.0850483 0.109026 0.0223524 +0.0157867 0.112048 -0.0167369 +0.0360751 0.0370336 0.00715793 +-0.0781026 0.0818813 0.0353359 +-0.00650962 0.0773868 0.0579538 +-0.0494324 0.0586474 0.0343285 +0.0112135 0.116429 0.0374582 +-0.0555782 0.159581 0.0063787 +-0.0454954 0.160804 0.00677344 +-0.0709975 0.139911 -0.00751202 +-0.0547852 0.0339346 -0.0120065 +-0.079504 0.128859 0.053141 +-0.0155349 0.0459646 0.0502157 +-0.0704857 0.116111 0.0520944 +-0.0454716 0.0404727 0.0442216 +-0.0890267 0.148493 0.027289 +0.0192952 0.126057 0.00111502 +0.00542039 0.0392223 0.0299552 +-0.0509634 0.152153 0.0121451 +0.0432798 0.100122 0.00916351 +-0.0722295 0.16736 -0.0213426 +-0.0311459 0.0354418 0.0504241 +-0.0834736 0.114211 -0.000781836 +-0.0258217 0.181482 -0.0160394 +-0.0517798 0.115481 0.0337859 +-0.0763629 0.108471 -0.00759882 +-0.0757916 0.155001 0.00503825 +-0.0893649 0.111932 0.017326 +-0.0619999 0.132592 -0.00773229 +-0.033844 0.171255 -0.00164046 +-0.0352015 0.153653 0.00157065 +-0.0722895 0.147809 -0.0265569 +-0.0217088 0.114301 -0.017023 +0.026785 0.0955535 0.0441601 +-0.0481378 0.0672057 0.0386531 +-0.026667 0.0823364 0.0504973 +0.00619086 0.131536 0.009113 +-0.0526119 0.0580506 0.0248562 +0.00250286 0.0576093 0.0540213 +-0.0810169 0.0953587 0.0335948 +0.029848 0.0875415 0.0432926 +0.0464379 0.0778615 0.0131806 +-0.0134997 0.0856507 0.057198 +0.0263535 0.0795425 0.0469281 +-0.0265857 0.0603669 0.0385952 +-0.0334943 0.11802 0.0311453 +-0.00337868 0.117905 -0.0149619 +-0.0660268 0.177263 -0.0521591 +-0.0238887 0.156697 -0.00604726 +-0.00760592 0.125948 -0.00752899 +-0.0221488 0.0383333 0.0268965 +-0.0293863 0.155004 -0.00725783 +0.0105543 0.126889 0.0293082 +0.0501729 0.0446765 0.00723117 +0.0310879 0.115727 -0.00269046 +-0.0191314 0.122285 0.0303949 +-0.0777065 0.155692 0.0145746 +-0.0797904 0.152563 0.0316147 +-0.0710154 0.0391332 0.00421404 +-0.0889531 0.100999 0.0124002 +-0.0147295 0.0942902 -0.0339999 +-0.0812191 0.0785924 0.0290188 +-0.0766463 0.0803349 -0.0100768 +-0.0435275 0.152141 0.00710463 +-0.0608313 0.092512 -0.0191943 +0.0227948 0.124775 0.0223512 +-0.0831943 0.132626 0.0501472 +-0.0317593 0.0449779 0.048226 +0.00552401 0.0633596 0.0561453 +-0.0492065 0.128269 0.0305743 +-0.0634388 0.152153 -0.00650488 +-0.0568117 0.135044 -0.00489316 +0.0252231 0.117755 -0.00691168 +-0.0716366 0.0874136 0.0414306 +-0.0725279 0.091561 0.0413901 +-0.0764449 0.084677 0.0378167 +-0.00880306 0.0841017 -0.0380883 +-0.0688616 0.033602 -0.00179476 +0.0161578 0.0988387 -0.0226848 +-0.0829912 0.0966357 0.0312921 +0.00854504 0.101743 0.0468013 +-0.0161113 0.0419173 0.0519008 +-0.0115772 0.0991016 -0.0249869 +0.026625 0.0839457 -0.0229857 +0.0451532 0.0931968 0.0111604 +-0.0264982 0.113889 0.035131 +-0.00351628 0.0442826 0.04692 +-0.0202282 0.0639107 0.048901 +0.0154069 0.0403121 -0.0220991 +-0.0725345 0.140015 0.0475615 +-0.0340447 0.1653 -0.00374721 +0.00850451 0.0883096 0.055394 +-0.0516913 0.0680528 0.0372779 +-0.070167 0.162396 -0.0479528 +-0.0174382 0.127681 0.00469302 +0.0354105 0.0965418 -0.0122281 +-0.0427202 0.152139 0.00651185 +-0.00023381 0.123831 -0.00932637 +-0.073929 0.152666 -0.0308896 +0.0244967 0.0375596 0.0281073 +-0.038496 0.0450464 0.0406484 +0.0424477 0.0803262 -0.00578172 +-0.017618 0.163994 -0.00984759 +0.042638 0.101488 0.0111603 +-0.0114747 0.111375 0.0418865 +-0.0878262 0.152428 0.0199936 +-0.0605498 0.0341606 0.0243603 +-0.0474966 0.088987 0.0447599 +0.0139221 0.0913152 -0.0287052 +-0.0182228 0.038194 0.0115761 +-0.0697006 0.0619862 0.0158161 +0.0317346 0.0619381 0.0405155 +0.0470668 0.0701831 0.0226957 +-0.0222639 0.0783263 0.0546841 +-0.0624118 0.148891 -0.00459657 +-0.0245152 0.111258 0.0385919 +-0.0623581 0.164692 -0.0425931 +0.0189449 0.0348191 0.0239933 +-0.0489525 0.123989 0.0308621 +-0.0294789 0.0732089 0.0403736 +-0.0912678 0.12968 0.0332366 +0.0188735 0.102787 -0.0208351 +-0.0542898 0.0343509 0.030786 +0.0541934 0.0628656 -0.00090927 +-0.024607 0.037979 -0.0290368 +-0.0461075 0.164061 -0.00779976 +-0.00480748 0.0854817 -0.0373491 +-0.0398973 0.160894 0.00183362 +0.0122013 0.0878954 -0.0308742 +-0.0609826 0.13955 0.0346529 +0.01801 0.126774 0.0220214 +-0.0720383 0.149669 -0.0395937 +0.0268545 0.0350543 0.018119 +-0.00249757 0.0952299 0.0546317 +-0.0177632 0.0728777 -0.0388934 +-0.00835092 0.0354934 -0.0172056 +-0.0123646 0.109877 -0.0203825 +-0.0385 0.120755 0.0293207 +-0.0614467 0.0335533 -0.00933279 +-0.0144984 0.108621 0.0424908 +-0.071459 0.151188 -0.0433221 +-0.0227544 0.0753712 0.0524561 +-0.0581897 0.157381 0.00697939 +-0.0588054 0.0825509 -0.0205914 +-0.0254269 0.0781373 0.050782 +-0.0176233 0.0450417 -0.02779 +-0.0345002 0.10287 0.040969 +0.0398172 0.0390737 0.00420564 +-0.0642915 0.169488 -0.0607786 +-0.0391909 0.150688 0.00279786 +-0.0817139 0.108721 -0.00159489 +-0.0691226 0.174646 -0.044619 +0.0542982 0.0579702 -0.00188368 +-0.0903603 0.143336 0.0142018 +-0.0554977 0.109766 0.0379077 +-0.0646073 0.15754 -0.0113176 +-0.0857257 0.0994313 0.000394941 +-0.0634657 0.0730594 0.0392535 +-0.0114926 0.0604332 0.0544994 +0.00136064 0.0481752 -0.0296995 +-0.0476605 0.124307 -0.00939578 +0.00152589 0.0731231 0.0568629 +0.0454513 0.0412382 0.0102351 +-0.0555526 0.124119 0.0389742 +0.0111749 0.035437 0.032711 +-0.0631468 0.156791 -0.0395997 +-0.0364943 0.115224 0.0327734 +-0.0687764 0.180487 -0.0583042 +-0.0558353 0.0912839 -0.0220329 +-0.0487756 0.0826651 -0.0212781 +0.0222353 0.0804964 -0.0261413 +-0.0698715 0.11424 0.0504282 +-0.0534972 0.0732542 0.0410474 +-0.0354707 0.0874527 0.0429689 +-0.0522647 0.117566 -0.0142997 +-0.0687471 0.158212 -0.0056007 +0.0254863 0.0578069 0.043747 +-0.0625026 0.0973365 0.0428841 +-0.00849427 0.0925522 0.0562249 +-0.076914 0.17371 -0.0479126 +0.0285085 0.121244 0.0144975 +-0.0649629 0.0620542 -0.00149187 +-0.0487919 0.135536 0.0203921 +-0.0406031 0.160882 0.00257136 +-0.0717214 0.0807275 -0.0154713 +-0.0759462 0.128163 -0.00785989 +0.0065117 0.129736 0.0249737 +-0.00106791 0.0391062 -0.00597311 +-0.0539473 0.03352 0.0103166 +0.0264479 0.103016 -0.017087 +0.0368588 0.0672041 -0.0137655 +-0.0209608 0.0380992 0.0183358 +-0.0922682 0.12272 0.00827864 +-0.0758891 0.119352 -0.00728174 +-0.0619808 0.0469192 0.00268857 +0.0286963 0.0991802 -0.016993 +0.0173223 0.125777 -0.00156033 +-0.071812 0.0879125 -0.0161091 +-0.0634945 0.102894 0.0414572 +-0.0534816 0.0491363 0.0336594 +-0.0677428 0.164471 -0.018256 +0.0418243 0.102828 0.00318021 +-0.0345003 0.0347932 0.0310568 +-0.0508009 0.0912872 -0.0218676 +0.0344847 0.0868408 -0.0179179 +0.0193386 0.0579734 -0.027391 +-0.0621388 0.0334692 0.00329381 +-0.017215 0.175671 -0.0245809 +-0.0538714 0.0449084 0.0167075 +0.0201621 0.124133 -0.00175315 +0.00612185 0.108732 -0.0201634 +0.0101112 0.110138 -0.0193681 +0.0407992 0.0698146 0.0307925 +-0.0186672 0.0495328 -0.0300927 +-0.0804551 0.134426 0.050865 +-0.0719585 0.0377493 0.00378419 +0.00950065 0.0688226 0.0549942 +0.0451024 0.091769 0.003186 +0.0116064 0.121838 0.0345253 +-0.07744 0.155698 0.0205089 +0.0154982 0.118174 0.0357451 +0.0455409 0.0918154 0.00916522 +-0.0825371 0.14737 0.037761 +0.00019241 0.0853625 -0.035651 +-0.0413557 0.0405762 -0.0252979 +-0.00795135 0.129264 0.0240771 +-0.00779714 0.0812765 -0.0379169 +0.0279176 0.0508447 -0.0187774 +-0.0851867 0.0791254 0.00650076 +-0.071556 0.161392 -0.00951947 +0.0302201 0.119789 0.0108648 +-0.0664004 0.120055 0.0514481 +-0.0652563 0.0459546 0.00568144 +-0.0484523 0.0349311 0.00836568 +0.050668 0.0451751 0.0191374 +0.0235092 0.118527 -0.00774096 +-0.0799897 0.135372 -0.00407226 +0.0454193 0.0875784 0.00318139 +0.0218862 0.107458 -0.0158341 +0.0519418 0.0525693 0.0274887 +-0.0174883 0.044685 0.0517611 +-0.0503006 0.134918 0.0263293 +-0.0797918 0.11331 -0.00252121 +0.0170867 0.039703 -0.0206999 +-0.00603107 0.130744 0.0146461 +-0.0614566 0.0372076 0.0201515 +-0.0634342 0.039353 0.0417984 +-0.0520389 0.0545474 0.0246248 +-0.0700192 0.172057 -0.036324 +0.0425828 0.0778099 0.0282065 +-0.0943409 0.12415 0.0172628 +-0.03739 0.165304 0.000185179 +0.0380556 0.0834519 0.0357476 +-0.0140374 0.0384483 0.0012996 +-0.0834291 0.14469 0.0401339 +-0.055347 0.0335038 0.00284205 +-0.0577441 0.0590406 0.000553128 +-0.0586534 0.154964 0.024223 +-0.0627416 0.148221 0.0374769 +-0.0597552 0.0781833 -0.0189903 +-0.0882134 0.141936 0.0111996 +0.0441966 0.0973694 0.0101636 +0.00324014 0.0740573 -0.0349749 +-0.0320743 0.0763998 -0.0305477 +0.0424682 0.0642865 0.0278791 +0.00647808 0.111357 0.041027 +0.0241747 0.0351145 0.0138772 +-0.0842625 0.100702 -0.00260902 +-0.0538049 0.0486373 0.0382673 +0.0033632 0.097467 -0.0272178 +-0.0526204 0.141613 0.022402 +0.0331357 0.0570437 -0.0137102 +0.00753436 0.104363 0.0436686 +-0.029494 0.0631194 0.0377814 +0.0357221 0.0994501 0.0342567 +0.0398205 0.0604422 -0.00479028 +-0.0134826 0.109991 0.0421694 +-0.0618817 0.161578 -0.0325898 +-0.00560304 0.0434101 -0.0260312 +-0.0274608 0.0473022 0.0495228 +-0.065855 0.0967089 -0.0173163 +-0.00276158 0.0698244 -0.0351738 +-0.00250067 0.110029 0.0428965 +0.0142116 0.123033 -0.00860213 +-0.0633963 0.145356 0.0382744 +-0.033621 0.0519746 -0.0102559 +0.0385319 0.0997972 -0.00779458 +0.0312326 0.118751 0.0098088 +-0.011143 0.128894 0.00267925 +-0.0574832 0.0833327 0.0441985 +-0.0668542 0.114225 0.0472279 +0.0369848 0.0561762 0.0322 +-0.0688663 0.102328 -0.014772 +-0.0246521 0.0478035 -0.0267776 +-0.0806498 0.110292 0.0422048 +-0.0475911 0.163428 -0.00670042 +-0.00358669 0.0376696 -0.025221 +-0.0499193 0.118992 -0.0138138 +-0.0766944 0.171427 -0.0358927 +0.0174979 0.126711 0.000451693 +-0.0107378 0.177152 -0.0244143 +0.0397983 0.0672171 0.0328832 +0.00289976 0.039936 0.0460731 +0.030847 0.0875798 0.0429743 +-0.0394926 0.102848 0.0402648 +0.00332264 0.0568618 -0.0316357 +-0.0367537 0.0783235 -0.0195335 +-0.038823 0.0928858 -0.0233898 +-0.0644838 0.0931562 0.0439721 +-0.0298466 0.0385336 -0.0167929 +-0.0548009 0.0449973 0.0226803 +0.0118375 0.0344099 -0.0160341 +-0.0683506 0.181259 -0.055895 +-0.0107728 0.0387832 -0.00390135 +-0.0300375 0.0890464 -0.0285748 +-0.0710857 0.168903 -0.0252489 +-0.0757782 0.149978 -0.0188682 +0.030839 0.0995119 0.0394948 +-0.0329249 0.0369927 0.0503412 +-0.0732448 0.144163 -0.0109449 +-0.0897565 0.140652 0.029182 +-0.0735905 0.154201 0.0306806 +0.00579855 0.0347845 0.042995 +-0.0519166 0.0545256 0.0236155 +-0.01212 0.102458 0.0438351 +-0.0211595 0.178661 -0.0149212 +-0.014608 0.0421127 -0.0270124 +-0.0885789 0.0922253 0.0228661 +-0.0145885 0.128899 0.00863716 +0.010498 0.0909888 0.0536897 +-0.0066489 0.0388823 -0.00316153 +-0.0258212 0.0839605 -0.0371412 +-0.0797525 0.15498 0.0124103 +-0.0414563 0.108465 0.0385585 +-0.0525315 0.149847 0.0192949 +-0.0156627 0.184575 -0.0209705 +0.0428837 0.0887839 -0.00581701 +0.0242564 0.0734016 -0.0257301 +0.0192994 0.062217 -0.0274738 +-0.0310269 0.122601 -0.0056394 +-0.0569847 0.153801 0.0277423 +-0.0526515 0.0504392 0.0286525 +0.00150192 0.0634213 0.0567922 +-0.0838556 0.139345 0.0449552 +-0.0476133 0.0562658 -0.0107838 +-0.0527007 0.0693372 -0.0141095 +-0.0311494 0.157393 -0.0113544 +0.00313658 0.0348497 0.0441849 +-0.0311581 0.17265 -0.0162683 +0.0453494 0.0847845 0.0201731 +0.0285114 0.0619268 0.0428923 +0.000499004 0.0634057 0.0567297 +0.00751117 0.0575089 0.0530994 +-0.000499443 0.114191 0.0415203 +-0.0794921 0.146102 0.0417961 +-0.0252738 0.0381933 0.0263814 +-0.0376796 0.16681 0.00156763 +0.0387661 0.0870401 -0.0137857 +0.0296088 0.12015 0.0163431 +-0.0938694 0.121489 0.0252875 +-0.0396002 0.125498 -0.0067103 +0.0370837 0.103994 -0.00683208 +-0.0465559 0.0461276 -0.0102455 +0.0404351 0.0389029 0.0137659 +-0.0424925 0.100104 0.042001 +-0.0285717 0.12063 0.0270994 +-0.0800863 0.148726 0.0380799 +0.00214563 0.119376 -0.0145717 +-0.0288792 0.104408 -0.0227314 +-0.0312735 0.034639 0.0229335 +-0.0669165 0.12238 -0.00897156 +-0.0890273 0.0956446 0.021399 +-0.0897683 0.091592 0.0154417 +-0.0739499 0.156872 -0.0269145 +0.00919729 0.039194 0.0451612 +-0.0374937 0.109757 0.0368609 +0.0523694 0.0545712 -0.00274385 +-0.0339801 0.0348087 0.0434578 +-0.00541562 0.128879 0.0264449 +-0.0636022 0.151642 0.0357576 +-0.0693902 0.0672718 0.0289371 +-0.0220481 0.121595 -0.00868192 +-0.0390536 0.127857 0.00108873 +-0.090122 0.144414 0.0285066 +-0.0629168 0.114269 -0.0126902 +-0.0930993 0.129616 0.0162363 +-0.0325132 0.0575193 0.0378292 +-0.0193156 0.162502 -0.00702982 +0.00550789 0.0910775 0.054811 +-0.0234801 0.168298 -0.011313 +0.0473422 0.0575607 -0.00551801 +0.0214637 0.0989203 0.04607 +-0.0827604 0.106087 -0.00164696 +-7.52397e-05 0.037877 0.020989 +-0.0345343 0.126083 0.0189612 +-0.0512338 0.164096 -0.00192926 +-0.0477776 0.0826677 -0.0211258 +-0.0368214 0.16531 -0.000729186 +-0.0673944 0.162815 -0.015253 +-0.0186701 0.0971551 0.0477534 +-0.0366241 0.0360289 0.0452882 +-0.0195815 0.0341867 -0.0200865 +0.0298019 0.0862025 0.0431971 +-0.0932655 0.120203 0.038289 +-0.000505415 0.110024 0.0426421 +-0.0191383 0.16678 -0.0189611 +0.0173062 0.0421724 0.0440438 +0.0105403 0.105742 0.0436489 +-0.0345641 0.11594 -0.0146748 +-0.0944618 0.125537 0.019259 +-0.0679091 0.108046 -0.0128123 +0.0268137 0.118694 -0.00391821 +-0.0577288 0.0738232 -0.0175832 +-0.0494959 0.0988033 0.0435442 +0.0425948 0.0873487 -0.0068057 +-0.0366079 0.114094 -0.0167422 +-0.0064886 0.118022 -0.0150746 +-0.0694599 0.155751 0.00874428 +-0.0727804 0.0887809 0.0411113 +-0.0921325 0.117269 0.0252198 +-0.0769942 0.154149 -0.012901 +0.00413641 0.0979047 -0.0256761 +-0.0504737 0.113932 0.0347324 +-0.00655213 0.0389811 -0.00882376 +-0.021105 0.0431099 0.0534593 +-0.0732611 0.161033 -0.0359392 +-0.0668535 0.0938084 -0.0173106 +0.0523234 0.0724358 0.00729932 +-0.02575 0.0536249 0.0391706 +-0.0529014 0.114056 -0.0162353 +-0.0887923 0.1378 0.0112057 +-0.0604332 0.0585193 0.0100455 +-0.0105014 0.0546468 0.0522278 +0.0475389 0.0482604 0.0280949 +0.00247406 0.123881 0.0337357 +0.0282809 0.0389301 0.0276504 +-0.0903128 0.141958 0.0142327 +-0.0457178 0.0724199 -0.0170809 +-0.0393802 0.149525 0.00137589 +-0.0384762 0.128323 0.0101316 +-0.0387951 0.0343342 0.0305488 +-0.0627886 0.154765 0.0285735 +-0.044804 0.0884409 -0.0220028 +0.00621048 0.0851628 -0.0331463 +-0.0124997 0.0938947 0.0551641 +-0.0760018 0.163203 -0.0170986 +-0.0568081 0.154369 0.0248865 +0.0141304 0.056278 0.0501629 +-0.000201542 0.0357861 0.0174114 +-0.0687337 0.0764635 -0.0155195 +-0.0465141 0.0518831 0.0377757 +0.0306859 0.0377485 0.0237503 +-0.0887758 0.149859 0.0255696 +-0.0468066 0.088437 -0.0220186 +-0.0104567 0.111397 0.0420636 +0.00949238 0.0487693 0.0494463 +-0.0344171 0.0343826 0.0278837 +-0.0747225 0.161031 -0.0319529 +-0.00127097 0.123959 0.0338052 +0.0484686 0.0511467 0.0294828 +0.0216142 0.042218 0.0415059 +0.0159587 0.0874032 0.0512942 +-0.0579584 0.0336225 0.00939861 +0.0262865 0.0689766 -0.0234385 +-0.0457839 0.11676 -0.0154906 +-0.0431023 0.149502 -0.00451393 +0.0575358 0.0592738 0.00218909 +-0.0907151 0.116093 0.0293225 +-0.0626986 0.0658458 -0.00782349 +-0.0680529 0.0874243 0.0435129 +-0.0323521 0.0336874 -0.0296376 +-0.0208013 0.108893 -0.0213287 +0.00800637 0.0345135 0.0400968 +0.0600686 0.0650603 0.0191749 +-0.0881094 0.0861284 0.0104766 +-0.0292466 0.166794 -0.00735295 +-0.0455037 0.159315 0.00726546 +-0.0361152 0.127822 0.0095198 +-0.00430156 0.130062 0.00233767 +-0.032509 0.0506603 0.0384213 +-0.0316129 0.119551 -0.0104429 +0.0414143 0.104258 0.0111621 +-0.075527 0.0733333 0.0311756 +-0.0549715 0.161246 0.00205939 +-0.0503915 0.140104 0.0183826 +0.0152276 0.0835585 -0.0295949 +-0.0464862 0.0718998 0.0415251 +-0.00551998 0.0732424 0.0584734 +-0.0900165 0.133639 0.00622839 +-0.069719 0.0887582 0.0422978 +0.00474777 0.0367585 0.0247919 +-0.027126 0.165248 -0.0165316 +-0.0283135 0.0350192 0.0513697 +-0.0318897 0.0721821 -0.0275085 +0.0437433 0.0945326 0.0221692 +-0.0126802 0.0961728 -0.031918 +-0.0567215 0.04662 0.0276747 +-0.00532834 0.0367049 -0.0158504 +-0.0529595 0.0335568 -0.000338033 +-0.0240311 0.112816 -0.0174462 +0.01097 0.0520216 0.0508135 +-0.0328411 0.0915526 -0.0242438 +-0.0552728 0.0335199 0.0136226 +-0.0820994 0.104661 -0.00359906 +0.035799 0.0558975 -0.00871505 +-0.0868952 0.0991223 0.0252196 +-0.0296012 0.120713 0.0267425 +-0.0695324 0.125657 0.0522171 +-0.0424937 0.0790081 0.0428161 +-0.0632658 0.0419596 0.040132 +-0.0699149 0.161541 -0.0103834 +-0.0345105 0.0676457 0.041143 +-0.00514301 0.0997589 0.0492461 +-0.0697588 0.147131 -0.0275571 +0.0580762 0.0648724 0.00314588 +0.0241035 0.1245 0.0085821 +0.0377445 0.110141 0.00501649 +0.0413546 0.0999884 -0.00181466 +0.0180964 0.0604579 0.0488964 +-0.0341434 0.0780256 -0.025502 +0.0365014 0.0756142 -0.0127863 +0.0485013 0.0651587 0.0285278 +-0.0331365 0.162399 -0.0024379 +-0.0578171 0.08688 -0.0211007 +-0.0591308 0.125513 0.0408421 +-0.0248084 0.0826031 -0.0377611 +-0.00847175 0.0920515 -0.0356471 +-0.0281451 0.166722 -0.0170726 +0.0321478 0.0740867 0.0412125 +-0.0318598 0.0496767 -0.0173511 +-0.0683644 0.0381281 -0.00463362 +-0.0293612 0.0383343 -0.00169706 +-0.0546971 0.0334232 0.00665025 +-0.0604511 0.0584329 0.0155226 +0.0356702 0.108162 -0.00482135 +-0.087994 0.0981671 0.00544953 +0.042672 0.0737568 0.0282004 +-0.0414969 0.095865 0.0421344 +0.0227593 0.0727654 0.0487302 +0.0247922 0.121532 -0.00113746 +0.0282353 0.0775351 -0.0225519 +-0.0487687 0.0559317 0.0351683 +-0.0192566 0.180095 -0.0235875 +-0.0250606 0.0603159 -0.031412 +-0.0310964 0.160762 -0.0139612 +0.0143682 0.0767494 0.0542274 +-0.0714649 0.159596 -0.0419316 +0.0454023 0.0875829 0.0161653 +-0.0354973 0.0470472 -0.0223112 +-0.0465703 0.0490167 -0.00974944 +0.025334 0.0435501 0.0381106 +-0.0785372 0.168054 -0.0329755 +-0.0148858 0.0985034 0.047376 +-0.0302927 0.117007 -0.0138211 +-0.0802651 0.0963563 -0.00854135 +-0.030624 0.0348272 -0.0303515 +-0.000406928 0.0996624 0.04942 +-0.0576871 0.0335309 0.00594357 +-0.0923088 0.114683 0.0143254 +0.00732004 0.0351406 -0.00439972 +-0.00948171 0.174183 -0.0285537 +-0.0320503 0.12646 0.00953655 +0.0270529 0.0822264 0.0462092 +-0.0900419 0.139254 0.023178 +-0.0498185 0.0927102 -0.0215416 +-0.00751389 0.102333 0.0437439 +-0.0775302 0.161724 -0.0197184 +-0.044496 0.0451943 0.0419603 +-0.0362032 0.160944 0.000172036 +-0.0314741 0.053189 0.0369367 +-0.072385 0.158213 -0.0369175 +-0.0860963 0.145967 0.0357039 +-0.0554937 0.100184 0.0430705 +-0.0523102 0.116406 -0.0150785 +-0.0518166 0.09273 -0.0219218 +-0.024907 0.0916549 -0.0335476 +-0.0634479 0.141036 0.0381413 +0.0152366 0.121915 0.0327966 +-0.0631227 0.0445391 0.0377156 +-0.0865336 0.141884 0.00820248 +0.00748358 0.11412 0.0398951 +-0.071965 0.136965 -0.0074383 +-0.0608999 0.058839 0.0168686 +-0.0886398 0.102364 0.0173768 +-0.0688031 0.0659098 0.026726 +0.02824 0.0686155 0.0425458 +-0.0196877 0.127428 0.0169554 +0.0332508 0.0906175 -0.0178979 +0.019654 0.122236 -0.00577023 +-0.0457281 0.151677 -0.00565337 +-0.0685681 0.156629 -0.0529972 +0.0455148 0.0801982 0.0216904 +0.0232513 0.0734458 -0.026356 +-0.0856264 0.110331 0.00634317 +0.032415 0.0383305 -0.000488607 +-0.0697489 0.17084 -0.0530327 +0.0127518 0.0887452 0.0537008 +-0.0650469 0.168333 -0.0359323 +-0.0312058 0.066507 -0.0244549 +-0.0481456 0.14427 0.00342034 +-0.0250932 0.0385898 -0.0121739 +-0.0268796 0.181867 -0.0133655 +-0.0624905 0.0804598 0.0431805 +-0.0664501 0.0353918 0.0342807 +-0.0287674 0.078167 -0.0351681 +0.0384815 0.0729589 -0.0117402 +-0.0325668 0.0347124 0.0262002 +0.0258782 0.0645831 0.0443789 +-0.0486546 0.0620591 -0.0122264 +-0.086684 0.149909 0.029141 +0.0138472 0.123867 0.0319554 +-0.0513866 0.0584422 0.0306256 +-0.00251219 0.0378133 0.00785027 +-0.00926128 0.126278 0.029483 +0.0147315 0.0347337 -0.0176578 +0.0417187 0.066227 -0.00378154 +-0.0149615 0.0883672 -0.0380383 +-0.0678931 0.0900993 0.043242 +0.0149683 0.113515 -0.0163113 +-0.0719356 0.110274 0.042413 +-0.0333618 0.0751438 -0.0264858 +0.0116984 0.034577 0.0227351 +-0.0670519 0.166375 -0.0237602 +-0.0454276 0.0345386 0.0307405 +-0.00249621 0.0883993 0.0567366 +-0.0235661 0.115415 0.0353667 +-0.0944357 0.121484 0.0222838 +0.0334736 0.0940135 -0.0155006 +-0.0436018 0.0519969 -0.0109067 +-0.0781065 0.0948585 -0.0115273 +0.0456581 0.0729488 0.0206934 +-0.0274951 0.157765 -0.0111917 +-0.00306441 0.100922 0.0454807 +-0.0618021 0.116863 0.0404147 +-0.0344937 0.041903 -0.0294247 +-0.0427476 0.159417 0.00474491 +0.0374917 0.0484328 0.0317174 +-0.00814387 0.0339061 -0.0213361 +-0.0737927 0.132633 0.0513524 +-0.0397231 0.116184 -0.0149076 +-0.00950395 0.0773592 0.0576807 +-0.0505908 0.03436 0.0298011 +0.0187381 0.119283 0.0342968 +0.00523462 0.075444 -0.0346019 +-0.0321194 0.165225 -0.0156285 +-0.0276791 0.1239 0.019992 +0.0190254 0.061825 0.0484929 +-0.0821717 0.11152 0.00033013 +0.0241621 0.0505303 0.0399762 +0.0378012 0.0604211 0.0334272 +-0.0182252 0.159192 -0.00975232 +0.0423754 0.100105 0.0181719 +-0.0546942 0.0661242 -0.0103565 +-0.0685912 0.131247 0.0482807 +0.000498438 0.0938703 0.0551155 +-0.0281544 0.168213 -0.0175818 +-0.0417796 0.0485307 -0.0113147 +0.0287445 0.109341 -0.0118595 +-0.00260812 0.130913 0.0187596 +-0.0454889 0.0660999 0.0395126 +-0.0655106 0.0972881 0.0421527 +-0.0194848 0.0869694 0.0563134 +-0.0264967 0.121204 -0.00819998 +0.00829502 0.0653838 -0.032076 +-0.0287456 0.0753309 -0.0348961 +-0.0727338 0.0821447 -0.0156124 +-0.0470607 0.146242 0.00718592 +-0.0209665 0.0386858 -0.0114366 +-0.0600079 0.128191 -0.00754937 +-0.0653109 0.180421 -0.0593142 +-0.0559148 0.0548054 0.00768529 +-0.0524976 0.0917711 0.0441581 +0.0212182 0.0847586 -0.026404 +-0.0579878 0.0414274 -0.0083271 +-0.0726954 0.0791971 -0.0139413 +-0.0307256 0.0915724 -0.0247467 +-0.0556334 0.11822 -0.0129265 +-0.0457806 0.0841121 -0.0213757 +0.00438413 0.0465246 -0.0275852 +-0.010477 0.110005 0.0426237 +-0.0896333 0.0929554 0.018431 +0.0397783 0.106996 0.0151622 +-0.0127593 0.0728576 -0.0383837 +0.0319543 0.0766492 -0.0197037 +0.00131984 0.0612266 -0.0334746 +-0.0834451 0.136657 0.0474496 +-0.0558128 0.0869147 -0.0214989 +0.00250708 0.0474439 0.0499052 +0.0125018 0.115423 0.0374065 +-0.00563766 0.13083 0.0104776 +-0.0658527 0.144237 -0.0148815 +-0.089646 0.0929438 0.0164332 +0.0436072 0.041137 0.00426675 +0.0444767 0.0889055 -0.00179899 +-0.057137 0.0562876 0.0015684 +0.00522768 0.0810328 -0.0339223 +-0.0137183 0.0628763 -0.0368336 +0.00133514 0.0554198 -0.0315391 +-0.0188851 0.0334951 -0.0249427 +0.052927 0.0495927 0.0235839 +0.0522184 0.0461787 0.0182078 +0.0165976 0.0348504 0.0271124 +-0.0589342 0.12267 0.0410891 +-0.0669714 0.163891 -0.0179699 +-0.0703202 0.132668 0.0493213 +-0.0776493 0.0787462 -0.00818258 +-0.0881736 0.132451 0.0437642 +-0.0632228 0.141176 -0.0069873 +-0.0713401 0.171022 -0.0310853 +-0.047409 0.166836 0.00227952 +-0.0141433 0.181604 -0.0223083 +-0.0619045 0.104018 -0.0180451 +-0.0483068 0.13712 0.0113971 +0.0136813 0.0952834 0.0497668 +0.035272 0.0660164 0.0386352 +0.0461881 0.0785676 0.017326 +-0.0532105 0.0335853 0.013987 +-0.0171786 0.0971676 0.04907 +-0.0725346 0.145512 -0.0179133 +-0.0333802 0.0498304 -0.01435 +0.0509184 0.0496314 0.0259504 +-0.0572784 0.0576838 0.00160501 +-0.0619689 0.153737 -0.0245819 +-0.0544985 0.104295 0.0412117 +-0.0500704 0.137041 0.0213927 +-0.0191411 0.0697535 0.053261 +0.0582061 0.0634965 0.00313887 +-0.0204853 0.0800483 0.0563065 +-0.0472097 0.0335059 -0.0119372 +-0.0749299 0.155492 -0.0209193 +-0.0698715 0.116492 -0.00825865 +0.0375436 0.055493 0.03143 +-0.0538462 0.137744 -0.0016929 +-0.0607335 0.034496 0.0414254 +0.0295159 0.107768 -0.0121736 +-0.0689178 0.168027 -0.0530164 +-0.0779935 0.171503 -0.0379488 +-0.0881443 0.0887489 0.00447233 +-0.00442605 0.128738 0.0268092 +0.00451348 0.0633892 0.056472 +-0.0818952 0.134036 0.0502533 +-0.0372574 0.124492 0.0238955 +0.0138426 0.11139 -0.0180298 +-0.0818741 0.119187 -0.00382424 +-0.0756587 0.0744591 -0.00795246 +-0.026115 0.158145 -0.00104516 +0.037495 0.0513025 0.031739 +0.0589255 0.0580383 0.0211692 +0.0434376 0.0874432 0.0261531 +-0.0260776 0.125932 0.00880255 +-0.0740662 0.155757 0.0246008 +-0.0178239 0.0387614 0.0327968 +0.0417114 0.091515 -0.00780409 +-0.0241449 0.0905492 0.0505682 +-0.074497 0.124608 0.0532356 +-0.0458334 0.0927472 -0.0217986 +-0.0804383 0.111326 0.0449881 +-0.00529252 0.125273 -0.00885488 +-0.0889223 0.0888194 0.00846703 +-0.00624295 0.130196 0.00449841 +-0.0669483 0.0447271 0.0026821 +-0.0548497 0.0941617 -0.0218342 +-0.0534962 0.0931826 0.0441514 +-0.0347147 0.0696617 -0.0176192 +-0.0440132 0.0366004 -0.0242792 +-0.0474979 0.0464882 0.040801 +-0.0653409 0.0600919 0.00943789 +-0.0231718 0.171204 -0.0201308 +-0.00587295 0.130011 0.00319127 +-0.0664676 0.0383698 -0.00648508 +-0.0886456 0.0935942 0.0229142 +-0.0447618 0.116708 -0.0154556 +0.0194756 0.100345 0.0462123 +-0.0154951 0.0911415 0.0560918 +-0.0371641 0.0342638 0.0291868 +0.0162971 0.0651874 -0.0294171 +-0.0291548 0.169699 -0.0175574 +-0.0704877 0.0623972 0.0153213 +-0.0774944 0.092744 0.0372295 +-0.00984328 0.0975178 -0.0293224 +-0.0784995 0.162482 -0.0259435 +-0.0145068 0.0730096 0.0554058 +0.0203473 0.0727595 0.0505294 +-0.0616196 0.156864 -0.0215888 +-0.0832232 0.0789707 0.00151853 +0.0163786 0.0403059 -0.0216745 +0.000325641 0.0568761 -0.0321896 +-0.0192766 0.0554309 0.0481999 +-0.00592104 0.0389465 -0.0049376 +-0.0499986 0.143197 0.012378 +-0.0355049 0.076131 0.0419036 +0.053394 0.0525543 0.0260735 +0.00630024 0.125509 0.0321214 +-0.0349082 0.033686 0.00682403 +-0.0714928 0.117552 0.0529474 +-0.0589919 0.15382 0.0299308 +0.0585035 0.0621132 0.0229868 +0.00569406 0.0341002 0.00181761 +-0.0155184 0.118264 0.0365807 +-0.0424989 0.16674 0.00381643 +-0.0863225 0.128011 -0.00168174 +-0.0553953 0.118382 0.0373919 +0.0469197 0.0444607 0.00136465 +-0.056091 0.0334157 -0.00629765 +-0.0361548 0.166687 -0.0142688 +-0.0127937 0.0386426 -0.0153707 +-0.0118501 0.11995 -0.013068 +-0.00670797 0.0627873 -0.0354975 +-0.079327 0.169353 -0.0390258 +-0.0437872 0.0855322 -0.0215732 +-0.0280896 0.0549613 -0.0243859 +-0.0584052 0.033525 -0.00869675 +-0.0482395 0.144672 0.00644062 +-0.0554929 0.0932384 0.0449182 +-0.0347045 0.0851136 -0.0245778 +-0.0494996 0.0791204 0.0440794 +0.0372047 0.0385834 0.00228863 +0.0193241 0.0607694 -0.0271316 +0.00852018 0.0702413 0.0555324 +-0.0778099 0.148638 -0.00388521 +-0.06539 0.178765 -0.0548301 +-0.04996 0.133052 -0.000571002 +-0.0847199 0.0939171 -0.00356265 +-0.0326229 0.0385148 -0.00990233 +0.032773 0.036599 0.0179277 +0.0427869 0.0611675 -0.0033403 +-0.0366336 0.0548529 -0.010755 +-0.0870489 0.0900041 0.00248653 +0.0416085 0.0656213 0.0284032 +0.00293844 0.100629 -0.0225769 +-0.0728162 0.0907583 -0.0154663 +-0.0718707 0.116473 -0.00776413 +-0.0937263 0.121427 0.0132848 +0.00471758 0.0346554 0.0428856 +-0.0704897 0.0719829 -0.0097429 +-0.050201 0.0344166 0.0315946 +-0.0796522 0.0704439 0.0152371 +-0.0425023 0.0986936 0.0421906 +0.0383887 0.0445417 -0.00444706 +0.0311086 0.103751 -0.0138751 +-0.0667119 0.155932 -0.00484005 +-0.0912006 0.121567 0.0443209 +-0.019019 0.0418114 0.0529435 +-0.0892823 0.141954 0.0132429 +-0.0221125 0.0389367 0.0353489 +-0.0563218 0.0335364 0.00802021 +-0.0896372 0.0929496 0.0174335 +0.0130767 0.125591 0.0302496 +0.0537776 0.0692651 0.00258827 +0.0106605 0.0363802 0.031763 +-0.0297187 0.0523119 -0.0193651 +-0.0140732 0.0383739 0.00681638 +0.0269054 0.0726895 0.0441444 +0.0246103 0.075474 0.0479027 +-0.00359864 0.0405713 -0.0254999 +0.0269298 0.0804165 -0.0233375 +-0.0488158 0.0912881 -0.0217052 +-0.00415439 0.0390536 -0.00654274 +0.000507304 0.0828912 0.0574668 +-0.0158173 0.038248 0.0138275 +-0.0624172 0.0599054 0.00479638 +0.0162074 0.0821136 -0.0291532 +-0.0419982 0.0337727 -0.000124238 +0.0250957 0.0348061 0.00319961 +-0.0309108 0.0608665 -0.0194213 +-0.0387236 0.174145 -0.00898261 +0.0464355 0.0778581 0.0101835 +-0.0639936 0.132595 -0.00811291 +-0.0340062 0.0381682 0.049242 +-0.0477004 0.131837 0.0244001 +-0.00268932 0.130846 0.00581897 +0.0302059 0.0857499 -0.020278 +0.0384903 0.0499056 0.0320993 +0.010384 0.0463357 -0.0254801 +-0.00660048 0.0405957 -0.0258634 +-0.0114989 0.0366056 -0.0169842 +0.0105059 0.0348976 0.020389 +-0.0487973 0.070279 0.0395574 +-0.0394971 0.057712 0.040203 +-0.0253679 0.125634 0.0163937 +0.0361389 0.0902387 0.0383091 +-0.0654905 0.0889779 0.0446185 +-0.0197462 0.0656505 -0.036857 +0.0320676 0.117774 0.0158308 +0.00351414 0.0661565 0.0562774 +-0.0226137 0.0422636 -0.0288734 +-0.019191 0.123923 -0.00519119 +-0.0532423 0.046246 0.0226735 +-0.021638 0.0464604 -0.0276852 +0.0272834 0.0689403 -0.022937 +0.0211914 0.124678 0.000362022 +0.04653 0.0760573 0.0105389 +-0.0338201 0.127158 0.00888963 +-0.077651 0.154407 0.00585132 +-0.0417202 0.0710768 -0.017536 +-0.0887218 0.0874968 0.0134639 +0.0165095 0.0354073 -0.0166384 +-0.0454406 0.0336534 -0.00804117 +-0.0504088 0.153575 0.0112235 +-0.0286428 0.107004 -0.0213195 +-0.0218765 0.0933131 0.0510401 +0.0329715 0.116865 0.0119087 +-0.0914625 0.148845 0.019136 +-0.0596259 0.155781 0.0151651 +0.0375784 0.099381 0.0316743 +-0.0157845 0.0784788 -0.0385671 +-0.0795217 0.123111 0.0512585 +-0.0418108 0.0343847 0.029868 +0.0389991 0.108356 0.0151637 +-0.0709225 0.109376 -0.0106672 +0.0579353 0.0634887 0.0239229 +-0.058577 0.0727277 0.0406017 +-0.062479 0.152546 0.000181648 +-0.0544934 0.0834141 0.0452404 +0.0357112 0.102065 0.0324889 +-0.0715263 0.0944187 0.0416527 +-0.0651404 0.112408 0.0390225 +-0.0545541 0.160714 0.00540511 +-0.0144079 0.183333 -0.0275579 +-0.0621531 0.152198 -0.0185797 +-0.0657166 0.14722 -0.0249021 +-0.0460756 0.154674 -0.00723534 +0.01519 0.127729 0.000331934 +-0.0489579 0.137072 0.00640402 +-0.0485683 0.0335187 -0.00854361 +-0.0885037 0.114225 0.0283481 +-0.0540375 0.141288 -0.0013423 +-0.0472373 0.134368 0.0171539 +-0.0272298 0.037736 0.022792 +-0.0518585 0.0985114 -0.0220738 +-0.0110867 0.180248 -0.025982 +-0.0236236 0.0593674 0.0425181 +-0.0408247 0.092859 -0.0231395 +0.0561988 0.0567015 0.0248562 +-0.0086058 0.172644 -0.0268228 +0.0163504 0.0552051 -0.0284322 +-0.0344945 0.0336038 -0.0243554 +-0.0556539 0.0345276 0.0424927 +-0.0348371 0.155104 0.00211833 +0.0276605 0.0605608 0.0434107 +-0.0623508 0.146001 -0.00658982 +-0.0248115 0.081196 -0.037776 +0.0240847 0.110594 -0.013209 +-0.0895075 0.148492 0.0263454 +-0.0926235 0.124077 0.00926903 +0.0292051 0.0843756 -0.0209031 +-0.0353048 0.127501 0.00687019 +-0.0859011 0.134922 0.00126737 +-0.0742444 0.0756609 0.0347079 +-0.0752605 0.157705 -0.0064221 +-0.0337955 0.0808164 -0.0255276 +-0.0288635 0.154571 -0.00355817 +0.0360371 0.0547702 0.0325687 +-0.0101249 0.0392126 0.0357767 +0.0288986 0.120838 0.016073 +-0.0106831 0.0570151 -0.0340192 +-0.0628045 0.144114 -0.00718004 +-0.0895701 0.151478 0.0161361 +-0.0176156 0.0385615 0.0294218 +-0.0211148 0.0389017 0.0355855 +0.0329392 0.0541774 -0.0107445 +-0.00428899 0.0367463 -0.0156853 +-0.0458368 0.0956376 -0.0219211 +0.0381262 0.080772 0.035847 +0.0268148 0.0976356 -0.019356 +-0.0625367 0.161521 -0.0446005 +-0.0517979 0.0869425 -0.0216307 +0.0344672 0.111064 -0.00366583 +-0.0911264 0.115738 0.024682 +-0.0753098 0.0805155 0.0368289 +-0.0133248 0.129244 0.00909724 +-0.0272428 0.0370384 -0.018628 +-0.0384762 0.0423266 0.0418914 +0.0203738 0.0521374 -0.0257342 +0.0585485 0.0552063 0.00817117 +0.0134367 0.121611 -0.0110511 +-0.089438 0.113514 0.0412091 +0.0444691 0.0790854 -0.00178456 +-0.000786355 0.0797462 -0.0360298 +-0.0269011 0.155694 -0.0071882 +-0.08839 0.0995952 0.00742201 +-0.0662162 0.0396687 0.0135434 +-0.0355277 0.0846755 0.0433772 +-0.0858238 0.104979 0.0223569 +-0.0778773 0.120773 -0.00663343 +-0.0263675 0.107348 -0.0216948 +-0.0927086 0.12286 0.0332776 +-0.0661966 0.15171 0.0363078 +-0.0202018 0.177138 -0.0227808 +-0.0855834 0.141979 0.0409477 +-0.0504886 0.0946205 0.0445363 +-0.0604928 0.101522 0.0423039 +0.0379519 0.0659398 0.0354557 +-0.0840048 0.140674 0.0436515 +-0.0558989 0.109796 -0.0177742 +0.00991096 0.0343624 0.00242681 +-0.0506409 0.0514954 0.0146147 +-0.0324809 0.117911 -0.0127388 +-0.0621631 0.164652 -0.0535815 +0.0025214 0.130289 0.0235241 +-0.0506513 0.150706 0.0125676 +-0.0175006 0.0829087 0.0576844 +-0.00809599 0.0347439 0.04196 +-0.0340295 0.0384544 -0.00643688 +-0.0694928 0.101384 0.0400561 +0.0446992 0.0776181 0.0241159 +-0.0935142 0.126862 0.0142561 +0.0248702 0.121138 0.0274186 +0.00114443 0.118463 -0.015597 +-0.053795 0.115431 0.0343764 +-0.0905823 0.131055 0.0352302 +-0.00177837 0.0811944 -0.0365591 +0.0316669 0.110076 0.0318865 +0.0355137 0.0902592 0.0391607 +-0.0911524 0.122908 0.0442317 +-0.0909787 0.118866 0.0441649 +-0.0647368 0.0350417 0.0261211 +-0.0694997 0.166373 -0.0203616 +-0.0256221 0.0450194 -0.0280788 +-0.0652445 0.171051 -0.0600934 +-0.0773393 0.152802 -0.0018868 +-0.00223434 0.118045 -0.0151238 +-0.0662482 0.063188 0.0243484 +0.0400602 0.0922366 -0.00959201 +-0.00562712 0.0451708 -0.0285409 +0.000501495 0.0457296 0.0472541 +-0.0123701 0.125297 0.0298351 +-0.0778681 0.101964 -0.00928868 +-0.0609537 0.123826 -0.00859412 +0.0224677 0.112582 -0.013341 +0.00921575 0.0781468 -0.0329463 +-0.0349236 0.126603 0.0011375 +-0.00878487 0.0784493 -0.0377777 +0.00650569 0.075888 0.056486 +0.0412418 0.0802411 -0.00774788 +-0.093262 0.128309 0.02526 +-0.0314363 0.171254 -0.00518552 +-0.0520579 0.0336325 0.0248414 +-0.0815026 0.127419 0.0524098 +-0.0894637 0.136534 0.031204 +-0.084288 0.111698 0.0438155 +0.0333653 0.0918289 -0.0171871 +-0.0324333 0.126109 0.00355422 +-0.00141447 0.0391026 0.0304627 +0.00110904 0.0340429 -0.0196452 +-0.0650297 0.138462 -0.00769967 +-0.015954 0.105864 -0.0221228 +-0.0523859 0.0626167 0.0314055 +0.026783 0.122575 0.00815739 +-0.0385209 0.128019 0.0130694 +-0.029395 0.125597 0.00758806 +-0.0328882 0.0666632 -0.0184721 +-0.0494036 0.13704 0.0193807 +-0.0782331 0.109897 -0.00456592 +0.0157741 0.036715 -0.0196413 +-0.0294956 0.0660091 0.0384906 +-0.0679029 0.105215 -0.0140793 +-0.0620463 0.158428 -0.0205873 +-0.0703503 0.159267 -0.00619145 +-0.0378682 0.104226 -0.0203027 +-0.0918252 0.118761 0.028299 +-0.0411447 0.163664 -0.0114686 +-0.0574975 0.0426993 0.0453715 +-0.0747471 0.147201 -0.0128585 +-0.0134963 0.0744967 0.0564394 +-0.054142 0.0722337 0.0402304 +-0.0642908 0.169609 -0.0607929 +-0.0154978 0.0977476 0.0489325 +-0.0800099 0.07203 0.0185532 +-0.0921132 0.115989 0.0103178 +0.00725505 0.0754138 -0.0341479 +0.0536301 0.0568087 0.0282148 +-0.0479854 0.0346149 0.0371396 +-0.00149257 0.0746611 0.0586297 +0.0203189 0.05934 -0.026848 +-0.0115998 0.0391898 -0.02633 +-0.0295596 0.0663471 -0.0284716 +0.00348965 0.105764 0.0424132 +-0.0703543 0.0703917 0.033048 +-0.0606347 0.0629111 -0.00512698 +-0.01408 0.166026 -0.0199736 +-0.061044 0.0400333 0.0227114 +-0.0810735 0.143155 -0.000828212 +-0.0617474 0.0766736 -0.0179709 +0.0217467 0.124535 0.0248197 +0.00507814 0.101571 -0.0215886 +0.0346034 0.0592134 0.0376264 +-0.0712039 0.0342165 0.00436442 +-0.0288195 0.0384506 0.0326078 +-0.053518 0.1534 0.0145047 +-0.0556759 0.0661408 -0.010195 +-0.0677895 0.175109 -0.0580246 +-0.0699291 0.0421822 0.0072491 +-0.0067422 0.0741543 -0.0369448 +0.0199779 0.0885978 -0.0258535 +-0.0488263 0.0941792 -0.0218889 +0.0343607 0.0505331 -0.00657713 +-0.0725404 0.162229 -0.0113532 +-0.00793663 0.0384098 0.0134736 +-0.0556415 0.043673 0.0216881 +-0.0145298 0.100345 0.0444168 +-0.0815281 0.1484 0.0374104 +-0.0387388 0.0753845 -0.0180569 +-0.0116442 0.0481633 -0.0303354 +0.0363562 0.0559126 -0.00774494 +-0.0652193 0.1682 -0.0598394 +-0.0776736 0.10169 -0.00957801 +-0.0196644 0.0494984 -0.0297043 +-0.0282432 0.0763981 0.0437868 +-0.0328471 0.033696 0.0126517 +0.00347146 0.128699 -0.00262952 +0.0461484 0.0806375 0.015174 +0.0337656 0.111689 0.027893 +-0.0271752 0.172675 -0.0185845 +-0.0693701 0.141497 -0.00893397 +0.0317719 0.115994 -0.000976469 +0.0347163 0.0544411 -0.00865089 +-0.0651886 0.172101 -0.0460875 +-0.0678768 0.1616 -0.0125361 +-0.0634522 0.0423282 0.0135276 +0.0601313 0.0581272 0.0101639 +-0.0107388 0.117999 -0.0150205 +0.0339646 0.0916099 0.0404552 +-0.0498374 0.138571 0.0183794 +-0.0934962 0.117401 0.0173034 +0.0383972 0.0491164 -0.00642484 +-0.0280195 0.0378733 -0.0295429 +-0.0146147 0.12166 -0.00880985 +0.0372641 0.0686531 0.0362559 +0.0239959 0.0549509 0.0433236 +0.00994394 0.0362916 0.0335003 +-0.0208017 0.0799082 -0.0390716 +0.0233991 0.0534151 -0.0239637 +0.00722024 0.0851796 -0.0327872 +-0.0639758 0.128226 -0.00858393 +0.0238189 0.124864 0.00990899 +0.00150975 0.0474485 0.049901 +-0.0361905 0.168183 -0.0140562 +-0.0174884 0.0801344 0.0573382 +-0.0918829 0.116106 0.0333156 +0.00614351 0.12581 -0.00755937 +0.0340287 0.115127 0.0194375 +-0.0908622 0.135106 0.0192089 +-0.000650637 0.0496936 -0.0307015 +-0.0856199 0.144636 0.00717286 +0.0438423 0.0804362 -0.00278861 +-0.00949487 0.0503088 0.0507661 +0.0271211 0.103444 0.039376 +-0.0386188 0.04066 -0.0277325 +-0.0654456 0.154232 -0.00436037 +-0.0264896 0.100224 0.0439794 +-0.0715324 0.144165 0.0446205 +-0.0694829 0.118967 0.0529378 +0.0378869 0.110163 0.00793964 +0.0353212 0.108669 0.0283742 +0.0601522 0.0581329 0.0151721 +-0.0542607 0.057796 0.0208407 +0.00222051 0.130562 0.00190808 +-0.0641033 0.156361 -0.011127 +0.0432299 0.0944972 0.0241641 +-0.0229686 0.033489 -0.025736 +-0.0221215 0.127119 0.0131583 +-0.0671797 0.0604061 0.0141816 +-0.0288776 0.0903901 -0.0295833 +0.0603694 0.0609168 0.00815448 +-0.0494359 0.138587 0.00541192 +-0.0023893 0.0424447 0.047211 +-0.0543474 0.135324 0.0319505 +0.0228597 0.125444 0.016672 +-0.0334812 0.0737514 -0.024477 +0.0348071 0.0781711 0.0398247 +0.0054972 0.0547598 0.0532635 +0.00645879 0.122419 -0.0119062 +-0.0438011 0.128754 0.0022734 +-0.0849152 0.0791131 0.00550947 +-0.0506838 0.0678366 -0.0132392 +0.0126337 0.110109 -0.0186257 +-0.0497701 0.140145 0.0153991 +-0.0724387 0.0819305 0.0395669 +0.0576036 0.0717386 0.0163116 +0.00802743 0.0346823 0.0237027 +0.00218868 0.098191 -0.0260404 +-0.0368205 0.162344 -0.00074381 +-0.070799 0.0908224 -0.0163205 +-0.0539828 0.0700164 0.038652 +0.0135945 0.128354 0.000408423 +-0.0264981 0.0959784 0.0437675 +0.0190214 0.118116 -0.0113006 +-0.0618485 0.153752 -0.0205795 +-0.0552085 0.151192 0.0284379 +-0.0266144 0.0408668 -0.0293519 +0.00698354 0.131641 0.013682 +-0.0316463 0.0595496 -0.0164023 +-0.0758985 0.159659 -0.0269354 +-0.0491601 0.160603 -0.00598464 +-0.00858383 0.0384847 0.0096485 +-0.0717673 0.146065 -0.0213605 +-0.0899696 0.15095 0.0147905 +-0.00955085 0.0385956 0.00389466 +-0.0607249 0.0737695 -0.0169262 +-0.0751542 0.0995011 0.0375123 +-0.0707959 0.0850638 -0.0167146 +-0.0312047 0.123257 -0.00431908 +-0.053995 0.0675039 0.0372692 +-0.0419532 0.0345214 0.0385087 +-0.0289695 0.0380956 -0.0297496 +-0.0121936 0.163667 -0.0136225 +0.021294 0.0721108 -0.027322 +0.0597965 0.0678036 0.00914167 +-0.0657015 0.0736405 -0.0152375 +0.00697022 0.12731 -0.00520393 +0.033357 0.100796 0.0361067 +0.0587791 0.0686289 0.0199155 +0.00149398 0.0394449 0.0343588 +-0.0875531 0.12123 -0.000692815 +-0.0744527 0.154114 -0.0209063 +-0.0172261 0.0356447 0.0515267 +-0.0200013 0.0389743 0.053287 +-0.0569508 0.0343746 0.0319473 +-0.0184875 0.0829081 0.0576141 +-0.019368 0.183116 -0.0157888 +-0.0626506 0.153382 -0.0318715 +-0.00943219 0.095325 -0.0330289 +0.0431395 0.100108 0.0121576 +-0.0608162 0.0881975 -0.019441 +0.0357777 0.070014 0.0376374 +0.0505254 0.0735568 0.0151501 +0.0307633 0.0476275 0.0336614 +0.0294554 0.0416168 0.02991 +-0.0611913 0.173613 -0.0615062 +-0.0146115 0.109635 -0.0201085 +0.0379445 0.0686366 0.0354907 +-0.076675 0.154077 0.000107436 +-0.0315189 0.0351239 -0.0306591 +-0.0768434 0.109781 0.0434593 +-0.0522791 0.0490314 0.0356585 +-0.0380005 0.12652 0.0191796 +-0.0861323 0.103534 0.00440203 +-0.0659084 0.106679 -0.0142087 +0.000468869 0.0388702 -0.00172096 +-0.0623487 0.141045 -0.00649873 +-0.0484952 0.0862244 0.0454118 +-0.0685451 0.170527 -0.0328985 +-0.037499 0.101465 0.0412127 +0.0274201 0.0431121 -0.00573463 +-0.0197554 0.158352 -0.00754965 +-0.0567366 0.0753362 -0.0185878 +0.0533817 0.063336 -0.00140725 +0.0135006 0.105771 0.0435499 +-0.0631905 0.166285 -0.0395881 +-0.0932173 0.122834 0.0272862 +-0.0284888 0.0396421 0.053637 +-0.0134794 0.0559661 0.0512091 +-0.04424 0.130203 0.0124253 +0.0196407 0.0940896 -0.0236062 +-0.0625219 0.151129 0.0359075 +-0.0585008 0.0732388 0.0410714 +0.0608111 0.0651191 0.0151635 +-0.0275116 0.0560234 0.0370088 +-0.0127931 0.0799092 -0.038653 +-0.0544725 0.0478754 0.0402183 +-0.0905041 0.147099 0.0259896 +0.0291224 0.0877617 -0.0209279 +0.0381679 0.0993665 0.0307411 +0.00549435 0.0474709 0.0500045 +-0.0842531 0.102059 -0.0016008 +0.0164869 0.128389 0.00575868 +-0.043156 0.162156 -0.0100947 +0.0445553 0.0846952 0.000180444 +0.0409145 0.07739 -0.0077683 +0.0297353 0.111221 -0.00987421 +-0.0220481 0.0379707 0.0182323 +-0.0636401 0.0337302 0.00992182 +-0.0277909 0.0796672 -0.0363416 +-0.0247513 0.0944605 0.0453863 +-0.0291577 0.0733109 -0.0335988 +-0.0264744 0.0486202 0.0485825 +-0.0654948 0.104238 0.0403184 +-0.054309 0.153692 0.0171048 +0.000886988 0.0365316 0.0205866 +0.025787 0.114054 0.0339562 +-0.0624998 0.091833 0.0450322 +-0.0825753 0.107428 -0.000626511 +-0.0879726 0.100935 0.0073995 +-0.0849555 0.110375 0.0243559 +-0.00450509 0.0815118 0.0573962 +0.0411647 0.0886413 -0.00977915 +0.00923376 0.0823418 -0.0323881 +0.0250818 0.0983923 -0.0201688 +-0.0460388 0.0353834 -0.0203139 +-0.0563344 0.154371 0.0236088 +-0.0786725 0.15564 0.0171569 +-0.0174933 0.120917 0.0332266 +-0.0405771 0.0447491 -0.0223069 +-0.0706839 0.0363372 -0.00115986 +-0.0827485 0.134001 0.0496722 +-0.0566419 0.0336495 -0.0102846 +-0.0932956 0.12823 0.014251 +-0.0183957 0.116542 -0.0154107 +0.03698 0.0590759 0.0339965 +-0.0709427 0.132583 -0.00826816 +-0.0697213 0.0778913 -0.0154943 +-0.0222445 0.159024 -0.0114139 +-0.0571999 0.0684533 0.0375014 +-0.04663 0.0533425 -0.0102323 +0.00628325 0.0668147 -0.0324472 +-0.0477443 0.0767654 -0.0182192 +0.000336625 0.0525175 -0.0304496 +-0.0562455 0.0345922 0.0440034 +-0.00249349 0.0474079 0.0491587 +-0.00849662 0.115566 0.0401952 +-0.0346349 0.176996 -0.009991 +-0.0315471 0.0665587 -0.0224416 +-0.0114919 0.121016 0.0357517 +-0.00348929 0.0884115 0.0568027 +-0.0275554 0.0689002 0.0398598 +0.0463861 0.080656 0.0111753 +-0.0335046 0.109774 0.0374515 +-0.0104184 0.179993 -0.0295246 +0.0299649 0.0370453 0.0224182 +-0.0229027 0.109901 -0.0203838 +0.0326144 0.117295 0.0103313 +0.0369028 0.0954111 -0.0108822 +-0.0564742 0.041367 0.0464242 +-0.0770729 0.168746 -0.0303374 +-0.0310065 0.124592 0.0202545 +-0.06762 0.17339 -0.0440641 +-0.0124743 0.0632507 0.0548154 +-0.06879 0.067714 0.0304363 +-0.0188136 0.124392 0.0261122 +-0.0775236 0.155819 0.0175602 +-0.0744868 0.14835 0.0408614 +-0.0798509 0.120721 -0.00541034 +-0.0474977 0.0747299 0.0422594 +-0.0819076 0.08016 -0.00254028 +-0.0104535 0.0366522 -0.0168147 +0.0107598 0.0346122 0.0387698 +-0.0618853 0.158437 -0.0215849 +-0.0248668 0.103031 -0.023615 +0.0521945 0.0697716 0.0245573 +0.0156704 0.0936059 -0.0251021 +0.0371318 0.111041 0.00479819 +-0.0835634 0.0897492 -0.00557879 +0.00648846 0.118239 0.0378444 +-0.0454996 0.0464888 0.0408011 +0.00251072 0.0388788 0.0260522 +-0.0757603 0.10082 0.036651 +-0.072674 0.131225 0.051196 +-0.0107806 0.0770662 -0.0381287 +-0.0336363 0.153436 -0.00674709 +-0.0843022 0.0938821 0.0298739 +-0.00957953 0.177197 -0.0268263 +-0.06621 0.148552 -0.030869 +-0.0367939 0.127143 0.000444502 +0.0450752 0.0819431 0.00117926 +0.00252922 0.0387278 -0.0124032 +0.0124259 0.130345 0.00996559 +-0.039483 0.112566 0.0355031 +-0.0896451 0.11724 0.00430849 +-0.0307561 0.0876495 -0.0285591 +-0.0336555 0.0363317 0.0490618 +0.00481949 0.0349074 0.0372909 +0.0324749 0.095557 0.0400886 +-0.0601974 0.126918 0.041055 +0.0561271 0.0494063 0.0121912 +-0.0663732 0.0796127 0.0418746 +-0.0634873 0.105626 0.040045 +-0.0348887 0.174114 -0.0129217 +-0.0331172 0.123673 -0.00477506 +-0.0158191 0.0855498 -0.0389623 +-0.0630684 0.138136 0.036884 +0.00839558 0.0418967 -0.0238735 +-0.000234213 0.0957245 -0.0313684 +-0.00270805 0.0387067 0.00335713 +-0.0066107 0.0434378 -0.0261152 +0.0267348 0.0889072 0.0458132 +-0.057498 0.0762057 0.0428357 +-0.0559977 0.128155 -0.00607843 +-0.0652856 0.176792 -0.0608019 +-0.0847322 0.10481 0.00139005 +0.0045205 0.0842507 0.0571459 +-0.0540417 0.148675 -0.00217424 +0.00157845 0.0388465 -0.0127005 +-0.0649294 0.123847 -0.00887936 +0.0268943 0.0906576 -0.0219805 +-0.0692389 0.149629 -0.0402111 +0.0424058 0.101483 0.00416631 +-0.069135 0.0354547 0.0122501 +-0.0311414 0.168206 -0.0166543 +0.0247254 0.0405634 0.0363023 +-0.035656 0.0591967 -0.0115208 +-0.0492298 0.13342 0.00108021 +0.0186953 0.0943115 -0.0238444 +-0.0632815 0.159908 -0.0475928 +-0.0744952 0.144184 0.0450216 +-0.0273351 0.0750142 0.0443436 +0.0129485 0.0726239 0.0538836 +-0.0256504 0.178665 -0.00908499 +-0.0152817 0.126335 -0.00175389 +0.0171854 0.035921 0.00432788 +0.00536983 0.0385261 0.026955 +-0.069701 0.0749104 -0.0135814 +-0.0936513 0.125496 0.0142597 +-0.0218218 0.0854612 -0.0381675 +-0.0670338 0.0819342 0.0426575 +-0.0637771 0.0824308 -0.0191299 +-0.0579197 0.0410941 0.0197057 +0.004329 0.114453 -0.0192954 +-0.0743852 0.111313 0.0463698 +0.0153242 0.0566704 -0.0288596 +0.0201589 0.0349933 -0.00358051 +-0.0674387 0.0336478 0.00564073 +0.0380425 0.109755 0.0161689 +0.0214264 0.0348625 -0.00133145 +0.0129483 0.0405423 0.0447572 +-0.00171529 0.0627358 -0.0345403 +-0.0206569 0.0494682 -0.0293042 +0.0369479 0.0784891 -0.0137448 +-0.0877279 0.139146 0.00920485 +-0.0228745 0.0383806 -0.00412065 +0.0407791 0.105635 0.00716484 +-0.0164884 0.161116 -0.0081783 +0.0261701 0.115347 0.0327443 +-0.0171143 0.0393698 0.0395766 +0.0364251 0.0840505 -0.0167267 +-0.0413094 0.0336719 -0.0183114 +-0.00449481 0.0619627 0.0557718 +0.0354002 0.054813 0.0334165 +0.0257124 0.0795754 0.0477924 +-0.0900689 0.132434 0.0392074 +0.0111597 0.124256 -0.00791398 +0.023574 0.105697 0.0395934 +0.0172046 0.061784 0.0493931 +-0.0738846 0.110669 -0.00843945 +0.00601824 0.128477 0.0276707 +-0.0581623 0.155642 0.0142378 +-0.046474 0.0903329 0.04369 +-0.0204963 0.0988407 0.0444811 +0.0448392 0.0847511 0.0231667 +-0.0246346 0.0464142 -0.0272665 +-0.0164056 0.0347921 0.0489909 +-0.048358 0.146267 0.00883601 +-0.0626778 0.0407451 0.0424121 +-0.06586 0.154377 -0.00304604 +0.0375072 0.103901 -0.00584413 +-0.00221994 0.0380783 -0.0146251 +0.00247871 0.110023 0.0425049 +0.0588331 0.0552392 0.0181818 +-0.0156079 0.0352742 -0.0184368 +-0.0112854 0.0344473 -0.0186905 +-0.0170355 0.0338392 -0.0211402 +-0.0137571 0.128142 0.00234571 +0.0353694 0.082169 0.0388786 +-0.065182 0.160968 -0.0576695 +-0.0324895 0.0874934 0.0434306 +-0.0637445 0.0781022 -0.0180675 +-0.0882379 0.0914593 0.00646904 +0.0256941 0.120543 -0.00190068 +-0.0750751 0.149943 -0.025867 +-0.0477253 0.135673 0.0140062 +-0.0678845 0.116524 -0.00880656 +-0.0627671 0.15529 -0.013592 +-0.0588282 0.0408079 0.0456406 +-0.056691 0.0506774 -0.00137882 +-0.0828622 0.0910525 -0.0066104 +-0.0499126 0.0515141 0.0166499 +-0.0490107 0.146266 0.00962371 +0.0122318 0.130219 0.0070475 +-0.0116803 0.0570084 -0.0342026 +-0.0651676 0.167884 -0.0330971 +-0.0730453 0.0699885 -0.00346826 +0.0174821 0.0990004 0.0469682 +-0.0908453 0.133761 0.025216 +-0.0657306 0.150277 -0.0347821 +-0.0671422 0.159475 -0.0561779 +-0.00377564 0.078412 -0.0370359 +-0.0617811 0.042326 0.0146867 +-0.0252077 0.0348536 0.0435448 +-0.028493 0.0602587 0.0370952 +-0.08903 0.119932 0.00232561 +-0.0345174 0.105629 0.0392495 +-0.0234134 0.181486 -0.0190275 +-0.0664685 0.0611724 0.00451786 +0.0367619 0.0414833 0.0270934 +-0.0275613 0.121213 -0.00819283 +0.0347392 0.0848817 0.0397697 +-0.0655835 0.0626949 -0.00273961 +-0.0187525 0.0671388 -0.037784 +-0.0904123 0.13106 0.0392156 +0.0183728 0.0521803 -0.0265242 +-0.0394837 0.113931 0.0345962 +-0.050497 0.0848226 0.0453947 +-0.026736 0.125755 0.00710307 +-0.0284884 0.0890334 0.0453918 +-0.0441667 0.0657175 0.0402548 +0.0109368 0.035027 0.0276086 +-0.0219243 0.0335307 -0.0255712 +-0.0865855 0.100865 0.00437928 +-0.0114057 0.038823 -0.00778731 +-0.0606205 0.136712 0.0351771 +-0.0938957 0.124187 0.0252761 +-0.0877217 0.151511 0.024071 +0.0027861 0.0392982 -0.00725238 +-0.0435747 0.127942 -0.00117905 +0.00626863 0.114136 -0.0189815 +-0.0182416 0.0386382 0.0310248 +-0.065785 0.145733 -0.0198954 +-0.0867571 0.0833567 0.0144816 +0.0263294 0.0517767 -0.02097 +0.0205436 0.0357642 -0.00368285 +-0.0174561 0.0544373 0.0497557 +0.0051136 0.11017 -0.0202785 +0.0320036 0.0972394 -0.014969 +0.018368 0.0537078 -0.0275601 +0.00449367 0.115547 0.0400425 +0.030957 0.0564285 0.0393343 +-0.0480871 0.166778 0.00155196 +-0.0374511 0.122567 -0.00961353 +-0.067466 0.154933 0.00219081 +-0.0645473 0.0334176 0.0010517 +-0.0507826 0.0530079 0.0196214 +-0.0269873 0.0549465 0.0375414 +-0.0318114 0.0361324 -0.0187 +0.0211923 0.12581 0.0217553 +-0.0485738 0.111377 -0.0178292 +-0.0790938 0.10996 -0.003593 +0.0410408 0.0408917 0.00130956 +-0.0171973 0.174198 -0.0240623 +-0.0136738 0.0526181 -0.0325173 +-0.0194987 0.0828823 0.05729 +-0.00149547 0.119691 0.0381347 +0.0125362 0.127772 -0.00169738 +0.00352032 0.0772514 0.0561756 +-0.0037108 0.0392109 0.0335024 +-0.0682887 0.164315 -0.0170259 +-0.0861823 0.107654 0.00936346 +0.0116633 0.0616767 0.0519085 +-0.0828359 0.104706 -0.00261356 +-0.0473623 0.129578 0.0262098 +0.0143608 0.0508459 -0.0270896 +-0.0265586 0.171236 -0.0104749 +0.0203688 0.0459169 -0.020834 +-0.0404996 0.0591463 0.0404229 +-0.0164937 0.0758406 0.0558352 +-0.00649647 0.0898144 0.056995 +-0.070489 0.118975 0.0531649 +-0.0665486 0.169315 -0.0336077 +-0.0869443 0.101766 0.0237835 +0.0413201 0.104267 0.012164 +-0.0705201 0.0646959 0.0221381 +-0.0345088 0.104256 0.0402356 +0.0590657 0.0691634 0.0182335 +0.0274527 0.103904 -0.0160338 +-0.0321732 0.0461161 0.0457813 +-0.0446011 0.0519723 -0.0106716 +-0.0932418 0.125562 0.0272746 +-0.0458642 0.128671 0.00011454 +-0.0885465 0.0902329 0.022415 +-0.0693724 0.136902 0.0471868 +0.0383558 0.102292 -0.0062663 +-0.0638617 0.125566 0.0463833 +-0.017504 0.0870094 0.0567302 +-0.0370734 0.0393951 0.0451959 +0.00329134 0.119473 -0.0147093 +-0.0543235 0.0334648 0.00849253 +0.0274945 0.0381011 -0.00197122 +-0.0703836 0.151592 -0.0450749 +0.0441667 0.0973563 0.00616912 +0.0240844 0.0547426 -0.0237664 +-0.015779 0.0770791 -0.0385675 +-0.0731035 0.0667848 0.0215468 +0.0455074 0.0569933 0.0321208 +-0.0438752 0.128361 0.000408951 +-0.0622566 0.0709345 0.0378148 +-0.0713089 0.156055 0.0109968 +0.0323876 0.047596 -0.00623106 +-0.0610541 0.068813 0.0363796 +-0.0175437 0.119111 -0.0121224 +-0.0136792 0.0541002 -0.0332811 +-0.0477406 0.135604 0.0113959 +-0.0709176 0.112214 -0.00951227 +0.0301974 0.0887542 -0.0200097 +-0.0734581 0.168 -0.0440151 +-0.0685258 0.165031 -0.0185494 +-0.0264962 0.0690788 0.0415599 +-0.0249134 0.0383716 -0.00452352 +-0.086697 0.114875 0.0460769 +-0.0752073 0.156095 0.0183637 +-0.0189411 0.0376177 0.0530488 +-0.0634886 0.064446 0.0291098 +-0.0261594 0.066324 0.0406106 +-0.0142604 0.0974009 0.0506069 +-0.0316679 0.0763713 -0.0315414 +-0.040787 0.0855384 -0.021437 +0.0590343 0.06983 0.00945078 +-0.07763 0.165322 -0.0259443 +-0.0631195 0.176032 -0.0554618 +-0.0918958 0.129686 0.0292517 +-0.029505 0.0545565 0.0362962 +-0.0356809 0.123888 -0.0070042 +0.0421291 0.070468 -0.00580336 +0.0297749 0.0920783 -0.0194766 +-0.0415439 0.148326 -0.00168489 +-0.090059 0.136447 0.0142016 +-0.0555057 0.0946 0.044463 +-0.0945025 0.125547 0.0202583 +-0.0304869 0.0532061 0.0367531 +0.00830607 0.0917456 -0.031199 +0.0182274 0.125477 -0.00123802 +0.0138055 0.0712841 0.0533593 +0.0294478 0.0506302 0.0370841 +-0.0802909 0.104732 0.0311813 +0.0308738 0.115323 0.0282321 +-0.0889738 0.137888 0.0281941 +-0.0750897 0.149941 -0.0248696 +0.0395014 0.0469731 0.0315971 +-0.0599935 0.0586398 0.0172334 +-0.0790056 0.166641 -0.0359617 +-0.00233373 0.114874 -0.0177321 +-0.0241436 0.180147 -0.0104229 +-0.0746876 0.0700138 0.0272066 +-0.00503592 0.13043 0.00494647 +-0.069435 0.179317 -0.0579979 +-0.0896062 0.137812 0.0131974 +-0.0625358 0.155244 -0.0346054 +-0.071543 0.155755 0.00800576 +-0.0746181 0.165272 -0.019163 +-0.0386347 0.0548667 -0.0110053 +0.00350742 0.103001 0.0436938 +-0.0629079 0.15056 -0.0255866 +0.0200283 0.0371524 -0.00668325 +-0.0375331 0.127856 0.0134298 +-0.075576 0.155851 0.0124034 +-0.0145239 0.118305 0.0371093 +-0.0528711 0.15259 0.0147483 +-0.0639569 0.158297 -0.0475943 +-0.0437953 0.0869983 -0.0218056 +0.0183 0.0651194 -0.0285252 +0.0410434 0.0689808 -0.00777311 +-0.0391241 0.157933 0.00465789 +-0.0617079 0.155317 -0.0205813 +0.049194 0.055373 0.030576 +-0.0577821 0.0826022 -0.0210434 +0.00750154 0.123796 0.0339733 +-0.0844011 0.0777797 0.0105147 +-0.0508742 0.137048 0.0234112 +-0.0487311 0.13178 0.0269763 +-0.0224768 0.123487 0.0248086 +0.0572102 0.0550739 0.00417234 +0.0523558 0.0647992 0.0281407 +-0.0804668 0.131637 0.0521945 +0.0276827 0.0480336 -0.0156964 +-0.0121824 0.178673 -0.0292354 +-0.0228778 0.10587 -0.0225138 +-0.0644637 0.0743344 0.0396953 +-0.0655821 0.153706 -0.0431373 +-0.0176845 0.0525387 -0.0318817 +0.0256228 0.0363687 8.49366e-07 +-0.0208533 0.0866413 0.055877 +-0.0490886 0.157599 -0.00632625 +0.00958152 0.0417197 0.0451866 +-0.0135001 0.0800899 0.0570677 +-0.0885594 0.112819 0.0222051 +0.0440561 0.0945388 0.0201582 +0.00630898 0.0624816 -0.0315869 +-0.0560997 0.155362 -0.00113519 +-0.0238123 0.0867774 -0.0372362 +-0.0711896 0.155374 -0.0449035 +0.018728 0.0549999 0.0480114 +-0.0696134 0.172257 -0.054028 +-0.00359831 0.101107 0.0440537 +-0.033095 0.0723179 -0.02347 +0.0338305 0.107861 -0.00824999 +-0.0354812 0.0383051 -0.00290933 +-0.0238593 0.0838986 0.0547079 +0.0239371 0.103424 0.0418106 +-0.076687 0.14724 -0.00686649 +-0.0113442 0.129847 0.0112634 +-0.0595215 0.131137 0.0385262 +-0.00250336 0.0633801 0.0564795 +-0.0765967 0.152807 -0.00988734 +0.00617007 0.126444 0.0306412 +0.0264293 0.0400385 -0.00421056 +-0.0261224 0.165258 -0.0166522 +-0.00669164 0.129496 0.00145082 +-0.0531001 0.154605 -0.00338641 +0.0347186 0.113797 0.00249877 +-0.0746345 0.0660496 0.0075612 +-0.0897609 0.0915993 0.0164407 +-0.0848984 0.0965537 0.0289739 +-0.0217829 0.111029 -0.0195757 +-0.0890662 0.123985 0.0032876 +0.0609254 0.0637423 0.0131584 +-0.0495476 0.147557 -0.00269468 +-0.00609162 0.0391352 -0.0126175 +-0.047607 0.144918 0.0010701 +-0.0484709 0.165547 -0.00491912 +0.0489576 0.0466396 0.0248167 +-0.0391315 0.160685 -0.012118 +-0.0530423 0.14778 0.0224018 +-0.0471085 0.0683456 0.0397676 +-0.0785029 0.128864 0.0532728 +0.0368255 0.109713 0.0241821 +0.0163171 0.0686116 0.0516854 +-0.0729482 0.0914984 0.0411605 +-0.0805357 0.113778 0.0465863 +0.0302378 0.0727042 0.0419554 +-0.0625354 0.122703 0.0447625 +-0.0615083 0.170965 -0.0565878 +-0.0124852 0.0659775 0.0542376 +0.0219313 0.0605513 0.0474343 +-0.048186 0.135579 0.00839494 +-0.014696 0.0585192 -0.0354314 +-0.0818834 0.109932 0.0368633 +-0.0564976 0.101562 0.0427397 +-0.0692156 0.0343564 -0.00463486 +-0.0924819 0.125444 0.00927262 +-0.0116015 0.0406252 -0.0263738 +0.000388646 0.0448955 -0.0263577 +-0.0474886 0.05462 0.0367747 +-0.0150651 0.12575 -0.00315467 +-0.0225002 0.104414 0.0430095 +-0.016108 0.038364 0.00641286 +-0.0474972 0.105664 0.0404447 +0.053572 0.0650953 0.0274823 +-0.068963 0.0874301 0.0429809 +-0.0206158 0.0422474 -0.0286271 +-0.0745126 0.131657 0.0521168 +0.0246516 0.122175 0.000230276 +-0.00982514 0.16696 -0.0220459 +-0.00885716 0.0385311 0.024037 +-0.0568241 0.063612 0.0312362 +-0.0787856 0.109366 0.039802 +0.0392221 0.075321 0.0338531 +-0.0725057 0.102685 0.0380563 +0.0318729 0.0380045 0.0237472 +-0.0704322 0.13832 0.0474328 +-0.0325018 0.177105 -0.00443384 +-0.0226059 0.0381278 0.0251854 +-0.00949201 0.129843 0.00617837 +-0.00878563 0.110674 -0.0212403 +0.0347324 0.0882263 -0.0174421 +-0.046782 0.0841151 -0.0215173 +-0.0692662 0.0692944 0.0324707 +0.00925419 0.0696192 -0.0318888 +-0.0303184 0.0423041 0.0510935 +-0.0780856 0.0784826 -0.00760345 +0.0256389 0.0929167 0.0460121 +0.00457646 0.108164 0.0418882 +-0.0519222 0.0461016 0.019678 +0.00234204 0.0367065 0.0225428 +0.0457266 0.0847913 0.00519644 +0.0292205 0.0857953 -0.020938 +-0.0196964 0.0384682 0.0290787 +0.0127826 0.0926962 0.0520031 +0.0390362 0.0980073 0.030266 +0.0186124 0.127837 0.0122439 +-0.0535608 0.0430661 -0.00900679 +-0.0509276 0.0346131 0.0417321 +0.0233086 0.0634336 -0.024957 +0.00850697 0.0546686 0.0524774 +-0.0275662 0.123979 -0.00112939 +-0.0688326 0.13265 0.047942 +0.0112159 0.0922395 -0.029689 +0.00233442 0.0539469 -0.0306143 +-0.0446508 0.040942 -0.0182992 +-0.00948977 0.114167 0.0408028 +0.0254079 0.10205 -0.0180571 +-0.0850056 0.146006 0.00617966 +-0.00850241 0.0870443 0.0572609 +0.0097783 0.1251 0.0319006 +-0.0222638 0.126605 0.016039 +-0.0722117 0.0348867 0.00176609 +-0.0327045 0.111423 -0.0179721 +-0.057835 0.0897878 -0.0213715 +-0.076573 0.153595 0.0311713 +0.0595629 0.058084 0.0191786 +-0.0323163 0.155148 0.000487548 +0.0120506 0.0505153 0.0488388 +-0.0524497 0.140085 0.0234103 +-0.0325359 0.172727 -0.00270207 +-0.0711683 0.149278 -0.039104 +-0.0641214 0.155412 0.0266328 +0.0288394 0.112544 -0.00929606 +-0.0217358 0.0384567 0.028668 +-0.0719124 0.168014 -0.0470137 +-0.0448486 0.0351369 -0.0234128 +0.0159855 0.12897 0.0112743 +0.0311432 0.0373381 0.0223917 +-0.000793766 0.0867716 -0.0355698 +-0.0900654 0.132428 0.033223 +-0.0935895 0.122834 0.0262964 +-0.0520638 0.0723523 0.0405753 +-0.0111299 0.129809 0.0171219 +-0.0491641 0.0344528 0.0317811 +-0.0849325 0.0938555 0.0290926 +-0.0809703 0.132422 -0.00393108 +-0.0887798 0.140493 0.0370948 +-0.0577868 0.0840301 -0.0211707 +-0.0814849 0.0872077 0.0329213 +0.0191348 0.102061 0.0453843 +0.0573171 0.0523102 0.00718519 +0.039991 0.0847392 0.0332858 +-0.0668403 0.0335301 0.004077 +-0.0117893 0.0392416 0.0372019 +0.0216437 0.120011 -0.00733339 +-0.0125093 0.0883992 0.0567932 +-0.0378236 0.125803 -0.00505851 +-0.0750347 0.154671 0.0286993 +-0.0887093 0.112351 0.0387402 +-0.0638899 0.102518 -0.0176142 +-0.0600535 0.138395 -0.00620678 +-0.0103882 0.129888 0.00873113 +-0.0610188 0.119808 0.0416066 +0.0158574 0.104091 -0.0202309 +-0.0839121 0.122095 -0.00374203 +-0.0841686 0.143365 0.0409129 +-0.00166671 0.12799 -0.00382866 +-0.0434723 0.0647942 0.0406198 +0.0406639 0.0815903 -0.00978474 +-0.0652464 0.154114 0.00157024 +-0.0257535 0.0740897 -0.0368116 +-0.0739579 0.13841 -0.00677972 +-0.0288788 0.0592582 -0.0244095 +0.0093177 0.0926652 -0.0301396 +-0.0452267 0.150119 -0.00491516 +-0.0319894 0.0384633 -0.00603174 +-0.0794952 0.0854073 -0.00956797 +-0.0675492 0.129835 0.0480321 +-0.0523266 0.033478 -0.00194369 +-0.00450192 0.0718383 0.058171 +-0.0535372 0.0578641 0.0215172 +-0.0140108 0.0596764 0.0527295 +-0.000532268 0.111266 -0.0199168 +0.0523683 0.0540101 0.0281247 +0.0211966 0.123092 -0.002693 +-0.00468835 0.0598784 -0.0344633 +-0.0718785 0.102239 -0.0132694 +-0.0678239 0.15109 -0.0436673 +0.0350895 0.0686836 0.0383949 +0.0422361 0.101506 0.0151693 +0.0317521 0.0794454 -0.0197442 +-0.0577724 0.0796775 -0.0200459 +-0.0461631 0.0335506 -0.0117706 +-0.0827169 0.105982 0.0279083 +-0.0922534 0.122854 0.0424865 +0.0128317 0.0712714 0.0536973 +-0.0126798 0.126321 -0.00380105 +-0.00116162 0.0980337 0.0521962 +-0.0814909 0.0788596 0.028943 +-0.0501013 0.15611 -0.00554414 +0.00939521 0.0609325 -0.0302492 +-0.030101 0.160758 -0.0141091 +-0.031497 0.117989 0.0308563 +0.0231755 0.0916964 -0.0230758 +0.0434109 0.0987186 0.0151565 +-0.0514982 0.108428 0.0386132 +-0.0644896 0.0833289 0.0440861 +-0.0238622 0.101613 -0.0238665 +0.04258 0.0422624 0.0239479 +0.0354547 0.103863 -0.00997386 +0.0217345 0.0994968 0.0456553 +-0.0743457 0.168929 -0.0264214 +0.01504 0.0343531 -0.00213727 +0.00148487 0.0399885 0.0464307 +0.0273636 0.0699427 0.0430425 +-0.0548013 0.086928 -0.0216118 +-0.0729344 0.0901459 0.0411907 +0.0305961 0.110839 -0.00946183 +-0.0721093 0.0846859 0.0405598 +-0.067036 0.180898 -0.0568882 +0.0496382 0.068363 0.00147832 +-0.0149904 0.165173 -0.0188028 +-0.0928971 0.117368 0.0123132 +-0.000378579 0.101174 0.0451223 +-0.00167056 0.0392225 0.0339103 +0.0308479 0.0567691 -0.0158074 +0.00821609 0.0823703 -0.0328688 +0.0179771 0.0393777 0.0432522 +-0.0917891 0.141969 0.0171701 +0.0284614 0.0398271 -0.00325429 +-0.0273719 0.0335777 -0.022929 +-0.0799767 0.138308 -0.00390962 +0.0224205 0.0519815 -0.0241272 +-0.0206006 0.0393656 -0.0285093 +-0.075081 0.147222 -0.0118498 +-0.0748806 0.0992858 -0.0126164 +0.0126717 0.127043 -0.00291981 +-0.0321779 0.0474216 0.0442941 +0.0248435 0.0822524 0.0483141 +-0.087169 0.0964235 0.0255876 +-0.00114332 0.0356309 -0.0159104 +-0.0674627 0.138295 0.0446438 +-0.0656974 0.169193 -0.0361564 +-0.065794 0.155512 0.00862557 +0.0346025 0.0754478 0.0394941 +-0.0145323 0.043279 0.0510718 +-0.0739879 0.139879 -0.00672352 +-0.0921938 0.132347 0.0162256 +-0.077508 0.174998 -0.0490226 +-0.0161182 0.180144 -0.0199393 +0.0442692 0.0973579 0.00816486 +-0.0885535 0.112746 0.0331115 +-0.0527601 0.0447727 0.0186838 +-0.0301237 0.12585 0.013192 +-0.0359512 0.151053 -0.00163407 +-0.0579079 0.121934 -0.00872095 +-0.0709562 0.158172 -0.0439179 +-0.00996463 0.114432 -0.0172214 +-0.0308542 0.0986541 -0.0229751 +-0.0199407 0.0381449 0.0130842 +-0.0439068 0.129921 0.011069 +0.0290675 0.120111 0.00471365 +-0.0203588 0.175699 -0.0155519 +0.0542673 0.0491964 0.0212031 +-0.0348545 0.0986254 -0.0227182 +0.0413986 0.0830578 -0.00877387 +-0.0554939 0.0477978 0.0398952 +-0.0760774 0.166574 -0.0390172 +0.0438486 0.0846749 0.0261721 +0.0021495 0.0388151 -0.00319944 +0.04114 0.104231 0.00317036 +0.0165359 0.0912212 -0.0265781 +-0.0518469 0.0545626 0.0286406 +-0.0568589 0.0562507 0.00563881 +-0.0383911 0.127983 0.00280515 +-0.0857603 0.130763 -0.000714461 +-0.0173678 0.0389666 0.0345056 +-0.0266954 0.125077 0.00273937 +0.0143393 0.0349605 0.0410018 +0.0132369 0.0709965 -0.0314873 +-0.0317622 0.0338243 0.0127586 +-0.0767072 0.0724697 0.0281768 +-0.0694593 0.040787 -0.000292884 +0.013984 0.129601 0.0176686 +-0.00527436 0.124342 -0.0098488 +-0.0749724 0.149924 -0.0268701 +-0.0188238 0.0855077 -0.0385626 +-0.0577531 0.141417 -0.00374252 +-0.0506075 0.0335251 -0.00346549 +-0.0105008 0.103039 0.0436514 +-0.062498 0.0847471 0.0443617 +-0.0166725 0.0495705 -0.0306349 +-0.0368813 0.108512 -0.0198737 +0.0510305 0.0733741 0.0168194 +-0.0275083 0.112548 0.0360564 +-0.0636421 0.0627085 -0.00368166 +0.0411669 0.104244 0.0141607 +-0.00149973 0.0965741 0.0536819 +-0.0288186 0.0862428 0.0454609 +-0.0526183 0.0343668 0.0293685 +-0.0601235 0.15512 0.0251504 +-0.0378644 0.111663 -0.0181901 +0.0344602 0.0726275 -0.0157808 +-0.0144826 0.0530653 0.0501401 +-0.0700881 0.131265 0.0496481 +-0.0878883 0.0914318 0.00546674 +-0.0415923 0.0491549 -0.0111971 +0.0234288 0.0618809 0.0460892 +-0.0630663 0.151874 -0.00782908 +-0.0866506 0.128453 0.0480393 +-0.0781275 0.152854 0.000107941 +-0.0106285 0.174518 -0.0286758 +-0.0596993 0.0345337 0.0416145 +-0.0579832 0.0466328 -0.00336399 +-0.0265008 0.124041 -0.00116405 +-0.0254725 0.0400777 0.0541415 +-0.0178664 0.12824 0.013233 +-0.0206926 0.0385034 0.0288434 +-0.0534934 0.0747559 0.0420439 +-0.0652623 0.158339 -0.0115587 +-0.0767656 0.152802 -0.00889022 +0.0245199 0.0520168 0.0405174 +0.0264125 0.0450979 -0.0096842 +-0.012488 0.107228 0.0430572 +-0.078668 0.170753 -0.0430283 +-0.0625286 0.164689 -0.038593 +-0.0241791 0.159685 -0.00173809 +0.00849261 0.092349 0.0531984 +-0.0759472 0.132533 -0.00707033 +-0.0806057 0.0720192 0.00754007 +0.00646347 0.117501 -0.0166002 +-0.0178266 0.0947205 0.0526193 +0.000481761 0.10723 0.0430499 +-0.013526 0.162053 -0.0127433 +-0.0186103 0.042208 -0.0281438 +-0.0252891 0.0336623 -0.0225985 +0.00751041 0.0688465 0.0554032 +0.0252903 0.0675893 -0.0238235 +-0.065902 0.112354 -0.012152 +-0.0476622 0.0620749 -0.0123691 +-0.0940806 0.122789 0.0152778 +-0.0229201 0.115998 -0.0147881 +-0.0344826 0.0519106 0.0380623 +-0.0890068 0.11621 0.0451247 +0.0107555 0.0404168 0.045078 +-0.0894686 0.136415 0.011209 +-0.0757697 0.145819 -0.00688494 +-0.071833 0.152571 -0.043913 +0.0235861 0.0352777 0.0154316 +-0.0926495 0.129588 0.0122381 +-0.0647445 0.0780775 -0.0178137 +-0.00582898 0.0896214 -0.0360418 +0.0559073 0.0721087 0.0082759 +-0.0261702 0.0823861 0.0514348 +-0.0558857 0.0970202 -0.0212239 +-0.0630553 0.148575 -0.0182369 +0.00714931 0.123902 0.0338795 +0.0304322 0.0902625 -0.0195701 +-0.0137593 0.0388335 -0.0101314 +0.0427673 0.0818692 0.0284169 +-0.0651233 0.155698 0.0103085 +-0.0897032 0.113874 0.0229056 +-0.0447211 0.129823 0.00637961 +-0.0575 0.0588269 0.0212602 +0.0104936 0.11823 0.0368787 +0.0202805 0.12337 -0.00295598 +-0.0340138 0.155107 0.00155033 +0.0602047 0.0622908 0.0181797 +-0.0859874 0.153017 0.0132012 +0.0433237 0.0846089 -0.00479162 +-0.0678527 0.0937535 -0.0166708 +0.0608755 0.0651235 0.0141559 +-0.0737739 0.0878479 -0.0153893 +0.0296171 0.11988 0.0191943 +-0.00324005 0.038276 0.0477168 +-0.0806315 0.139432 0.0474021 +0.0455013 0.0583861 0.0319381 +-0.0740734 0.172255 -0.0349568 +0.0224678 0.0975265 0.046211 +-0.0525514 0.0389481 -0.0113995 +0.0281531 0.119463 0.0257844 +-0.0765864 0.155527 -0.0189073 +-0.0289503 0.0931616 -0.025199 +-0.0573663 0.0338673 0.0217593 +0.0396386 0.064502 0.0326274 +0.00539495 0.0433546 -0.0245866 +0.0256558 0.0782254 0.0477034 +0.0162437 0.0764684 -0.0291666 +0.0272037 0.100805 0.0412523 +-0.0316694 0.0357391 0.0272619 +-0.0623836 0.163119 -0.0315939 +0.0275463 0.095549 0.0435012 +0.0393856 0.0475887 -0.00567863 +-0.0394934 0.163848 0.00245451 +0.0242993 0.0928305 -0.0222726 +-0.0271788 0.0358787 -0.0194139 +-0.0734977 0.124615 0.0532793 +-0.0883817 0.123968 0.00128346 +-0.0257849 0.174205 -0.0110873 +-0.0281104 0.163768 -0.0157424 +-0.0662143 0.0386042 0.0318887 +-0.0109132 0.103533 -0.0236899 +-0.0616548 0.140062 -0.00630976 +-0.060057 0.135486 -0.00665791 +0.0434691 0.0624283 0.0290897 +-0.0236196 0.0436733 -0.0286374 +0.043495 0.0610671 0.0301862 +-0.0910584 0.133686 0.0122173 +0.0291029 0.0938741 -0.0193597 +-0.0261534 0.0383869 0.0314189 +0.00850666 0.0896726 0.0548038 +-0.0247527 0.0340557 -0.0209813 +-0.0186132 0.0436215 -0.0279143 +-0.0124858 0.0911558 0.0565265 +0.0053433 0.0524636 -0.0297405 +0.0403239 0.0999619 0.0261672 +-0.0522155 0.149331 0.0183918 +-0.0534968 0.0973516 0.0432358 +-0.0284959 0.10431 0.0415782 +-0.0908913 0.139194 0.0171389 +0.0264487 0.0948748 -0.0204583 +-0.0834511 0.149763 0.0335021 +-0.00425208 0.0941246 -0.0337645 +-0.0337113 0.0652961 -0.0165207 +-0.0405229 0.128682 0.00643622 +0.025364 0.0547555 -0.0216571 +0.0209176 0.124997 0.0245115 +0.0147936 0.104084 -0.0202238 +-0.0510936 0.156101 -0.00485677 +-0.00104637 0.116277 -0.0172455 +-0.0564804 0.0613799 -0.00459099 +-0.0261657 0.11885 -0.0117616 +-0.0612216 0.155927 0.0131437 +-0.0264503 0.181668 -0.00853376 +0.0163083 0.0594423 -0.028212 +-0.0188061 0.081321 -0.0390856 +-0.0660982 0.156586 -0.0534726 +-0.0596936 0.155857 0.0122367 +-0.0656404 0.0608118 0.00501538 +0.00550383 0.0716948 0.0562222 +-0.0473457 0.134062 0.00939848 +0.0233312 0.0436331 0.0404882 +0.0342215 0.0827959 -0.0185003 +0.00407718 0.131556 0.00833758 +-0.0524976 0.0931679 0.0439324 +-0.0206125 0.0553712 0.0467047 +-0.0499367 0.0345722 0.0419808 +-0.0720303 0.169416 -0.0480254 +0.0463102 0.0820482 0.0101764 +0.0239273 0.0383233 0.0327312 +-0.0556472 0.0657358 0.0349277 +0.0082124 0.0879974 -0.0324239 +-0.0483251 0.123967 0.0299918 +-0.00979541 0.0826872 -0.0380854 +-0.0104818 0.0688481 0.0551963 +-0.0738713 0.116445 -0.00712552 +-0.0783268 0.0804305 0.0341941 +-0.0318616 0.0386777 -0.0303614 +-0.0685663 0.0335043 0.000153325 +0.0419445 0.0972272 0.0251571 +-0.0324967 0.0831278 0.0417023 +-0.0385753 0.165326 0.00202421 +-0.0574991 0.105703 0.0407441 +-0.0735089 0.120392 0.0535609 +-0.0194999 0.105809 0.042534 +-0.0918084 0.11461 0.0202058 +0.0373089 0.0604869 0.0345236 +-0.0397982 0.0885212 -0.0227204 +-0.0838603 0.0771078 0.0156983 +-0.0683511 0.16683 -0.0228013 +0.00825384 0.0357096 0.0264477 +-0.0487592 0.0797294 -0.0200154 +-0.067984 0.13847 -0.00792156 +-0.0205709 0.127392 0.00935219 +0.0158596 0.0940217 0.0494261 +-0.00476401 0.100643 0.0463697 +-0.0144795 0.0617481 0.0535104 +-0.0635003 0.0931972 0.0443921 +-0.06148 0.0371866 -0.00855801 +-0.0235696 0.0368882 0.0541538 +-0.00084278 0.129714 0.0251926 +-0.0857238 0.0792489 0.0165033 +-0.00382707 0.0868147 -0.0366286 +-0.0623716 0.0433162 0.04063 +-0.0481783 0.127343 -0.00452632 +0.0258208 0.0577421 -0.0227411 +-0.0464997 0.109825 0.0383354 +-0.0632202 0.150553 -0.0275915 +0.0594014 0.060828 0.00515272 +-0.0379322 0.0359407 -0.029738 +-0.0628566 0.163115 -0.0590591 +0.032875 0.0504741 0.0332188 +-0.0798256 0.114817 -0.00349908 +0.00979876 0.0631089 0.0545118 +-0.00479883 0.0826783 -0.0376925 +-0.0586564 0.152453 0.0326111 +-0.0847868 0.0979024 0.0288114 +-0.0248237 0.0853842 -0.0372699 +-0.00156343 0.13088 0.0191419 +-0.0624949 0.0729745 0.0395167 +-0.0208752 0.105853 -0.0224653 +0.0381305 0.0743398 -0.0117665 +0.00679871 0.128004 -0.00391746 +-0.0769289 0.125211 -0.00745968 +-0.0251918 0.111615 -0.0181703 +-0.0538836 0.0984784 -0.021806 +-0.0535445 0.0444164 -0.0080927 +0.0449223 0.0903552 0.00117592 +0.00748556 0.116867 0.0384917 +0.0479919 0.0426572 0.0134999 +0.0269115 0.116892 -0.00595645 +0.0287509 0.0911639 -0.0204971 +-0.00583539 0.0910195 -0.0356702 +0.0122548 0.126063 0.0299441 +-0.0732964 0.0791377 0.0376894 +-0.0578898 0.108324 -0.0176181 +-0.0316803 0.111369 -0.0179291 +-0.00248889 0.101618 0.0440339 +0.0583601 0.0593964 0.0227402 +-0.0568793 0.105485 -0.0183902 +0.0313941 0.108732 0.0332945 +-0.0104953 0.0801622 0.0580036 +-0.0799858 0.150056 0.000166757 +-0.0448968 0.146123 0.00263093 +-0.0595037 0.0344238 0.0383245 +-0.0836036 0.133464 -0.00169527 +-0.0115063 0.0575113 0.0530742 +-0.0112578 0.037897 0.0501369 +-0.0404967 0.071918 0.0419528 +-0.024201 0.0373653 0.0542269 +-0.063129 0.0366622 0.0429743 +0.0461067 0.069238 0.0238359 +-0.0217169 0.0945664 0.0494448 +0.0519577 0.0621966 0.0293389 +0.0286828 0.072686 0.0432253 +0.0389262 0.103315 -0.00332456 +-0.0908979 0.126784 0.00627265 +-0.0604951 0.097348 0.0432235 +0.00320361 0.0838721 -0.0343861 +-0.0615214 0.155998 0.0173864 +0.0174482 0.090927 -0.0262636 +-0.0428815 0.108469 -0.0193857 +0.0528827 0.0476533 0.00520477 +-0.0692155 0.155426 0.0044718 +-0.0116319 0.126956 0.0271535 +0.0555832 0.0661715 0.0258304 +-0.0669079 0.139705 0.0437201 +0.0208911 0.120687 0.0321527 +-0.0692559 0.157013 -0.00287665 +-0.0642658 0.131126 0.0422113 +-0.00350345 0.108655 0.04343 +0.00595359 0.131311 0.0061803 +-0.0652676 0.179645 -0.0602668 +0.0113097 0.0609536 -0.0296395 +0.0202287 0.0385462 -0.010699 +-0.0528896 0.0556157 0.0124842 +-0.0830831 0.152763 0.0275295 +-0.0929926 0.121477 0.0272936 +-0.0679169 0.115123 -0.00939662 +-0.0715189 0.150138 -0.0417489 +0.0502478 0.0496891 0.0267596 +-0.088826 0.122625 0.00229599 +0.045739 0.0876044 0.00618298 +0.0276204 0.0364605 0.0224657 +0.0550864 0.0576626 -0.000774412 +-0.0601415 0.0397484 0.0187938 +-0.0467117 0.131872 0.0218067 +-0.00211002 0.131247 0.0146415 +0.0400335 0.107013 0.011165 +-0.0875275 0.141918 0.0101858 +-0.0321386 0.0511687 -0.0124242 +-0.05996 0.047085 0.0381143 +-0.0771576 0.158311 -0.0229061 +-0.0910473 0.139231 0.0181913 +0.0586943 0.0552354 0.0191792 +0.0541025 0.0616928 -0.00172111 +0.0193458 0.0347743 -0.00166328 +-0.0785503 0.175004 -0.046006 +0.0361753 0.0767902 0.0382584 +-0.00218115 0.0950603 -0.0327048 +-0.00446475 0.03907 -0.00848801 +-0.0509412 0.0543847 0.0317288 +-0.031974 0.126184 0.0154629 +-0.0517139 0.047497 0.0206563 +0.0390432 0.106963 0.0211652 +-0.0661031 0.169296 -0.0348743 +-0.0461189 0.0353483 0.0438447 +-0.0618314 0.155872 0.0114752 +-0.0414861 0.169687 0.00162271 +-0.0640913 0.154089 -0.00821335 +-0.0474977 0.0776489 0.0433419 +-0.000495324 0.0870356 0.0569136 +0.0572432 0.0508915 0.0131865 +0.0162675 0.0348087 0.0361219 +-0.0561497 0.0697401 0.0384165 +-0.0632023 0.166731 -0.0605917 +-0.0297129 0.0382953 0.00190139 +-0.00511763 0.0345398 -0.0175639 +-0.0614326 0.0342559 0.0293559 +-0.0526737 0.0678526 -0.0129346 +0.0213104 0.092205 -0.0236008 +0.0197097 0.119321 0.0339587 +-0.0214979 0.120818 0.0311972 +0.0121652 0.0940439 -0.0275601 +0.0264769 0.122884 0.00946172 +-0.0236707 0.0536853 -0.0289139 +-0.0413464 0.0470648 -0.0139804 +0.0254796 0.122858 0.0219249 +-0.0924012 0.125564 0.030262 +-0.0879683 0.133795 0.0435491 +-0.0521211 0.0500618 0.0133132 +-0.0655655 0.115703 0.0473772 +-0.0739163 0.0808829 -0.0136046 +-0.0678507 0.166619 -0.0550103 +-0.0116556 0.127143 -0.00273206 +-0.0318682 0.101497 -0.022474 +-0.0710899 0.143489 -0.012899 +-0.0174739 0.0587291 0.0509898 +-0.0238083 0.125586 0.00234805 +-0.0296624 0.0691842 -0.029462 +0.00123889 0.0998292 0.0485145 +-0.0648099 0.0910089 -0.0186372 +-0.0624633 0.170945 -0.051605 +-0.0911968 0.145718 0.0253129 +-0.0208075 0.0827095 -0.0389174 +-0.0156288 0.184043 -0.0262877 +0.0422094 0.0873179 -0.00779978 +0.00273738 0.0943137 -0.0318997 +-0.082233 0.0925905 0.0320729 +-0.0782161 0.110396 0.044452 +-0.0842181 0.153993 0.0196689 +-0.00949468 0.0532459 0.0520833 +-0.0867806 0.115997 0.0469199 +-0.0547757 0.0826557 -0.0215494 +-0.0382309 0.0365042 0.0436563 +0.021227 0.0727783 0.05004 +-0.00441949 0.0338393 -0.022426 +-0.0712771 0.0648585 0.00216525 +-0.0364976 0.111093 0.0360234 +-0.0669244 0.123843 -0.00898539 +-0.0178669 0.0554748 0.0496143 +0.020489 0.0906324 0.0482147 +-0.00549595 0.0605287 0.0555985 +-0.0289733 0.0536405 -0.0223788 +0.0191474 0.0435971 0.0432171 +0.00434602 0.0346139 0.0410512 +-0.0400219 0.111533 -0.0180322 +0.012127 0.0534588 0.0507501 +0.0284176 0.0415874 -0.00471776 +-0.0270737 0.125279 0.00405866 +-0.0221888 0.0348068 0.0442295 +-0.0447592 0.0797381 -0.0197229 +-0.0304968 0.172715 -0.00561384 +-0.0762362 0.0865455 -0.0135615 +0.0197685 0.0371215 -0.00768223 +0.0379293 0.0417908 0.0270611 +-0.0809612 0.0747382 0.0015261 +0.00168043 0.0346784 0.042239 +0.0257721 0.0915784 0.0461947 +-0.0898405 0.133789 0.0312158 +-0.0355388 0.0441134 -0.0275262 +0.00710192 0.0379595 0.027814 +-0.0620019 0.0401372 0.0237075 +0.0429025 0.100097 0.0151567 +-0.00267325 0.0569172 -0.0326724 +-0.0285904 0.110146 -0.0186081 +-0.0762074 0.0906406 -0.013533 +0.0535161 0.0677623 0.0259787 +-0.00262958 0.0466399 -0.0290845 +-0.0839307 0.125043 -0.00388859 +-0.0340047 0.0386047 -0.0302796 +0.0184751 0.082463 0.0515958 +-0.0574796 0.115365 0.0367006 +-0.0420623 0.154724 -0.00848194 +-0.0860758 0.0924352 0.0274562 +-0.0930739 0.122895 0.0382751 +0.051883 0.0734548 0.0112114 +-0.0811474 0.0769537 0.0251701 +-0.0618709 0.0338217 0.0137712 +0.0195119 0.0370935 -0.00868114 +0.00449835 0.0590783 0.0547231 +-0.0645467 0.148975 -0.0280488 +0.0404587 0.0426892 0.0267677 +-0.0712073 0.146616 -0.0240304 +-0.0512571 0.0488673 0.0206327 +-0.00789661 0.098211 -0.0280331 +-0.0821992 0.0980013 0.0318751 +0.0249936 0.037232 0.0266864 +-0.00349731 0.0456721 0.0469862 +0.0464132 0.0472054 -0.00271728 +-0.0659208 0.0390922 0.037189 +-0.0655814 0.167928 -0.031824 +-0.0726143 0.1704 -0.0286759 +-0.032982 0.0423452 0.0495212 +-0.0442602 0.153622 0.00782588 +0.0320708 0.117667 0.00585111 +0.0181014 0.0354956 -0.0136744 +-0.0756189 0.168382 -0.0269354 +-0.0302725 0.114038 -0.0167089 +-0.06455 0.166996 -0.0328772 +-0.0136948 0.125921 0.0278767 +-0.0594946 0.0973472 0.0432255 +-0.0660053 0.138467 -0.00776776 +-0.0538886 0.161243 -0.000916627 +-0.0521229 0.0491646 0.0356345 +-0.0669695 0.167967 -0.0280306 +-0.0692702 0.0635509 0.00193084 +-0.057893 0.109749 -0.0172343 +0.0162169 0.116863 -0.0139359 +-0.0837452 0.0818387 0.0274964 +-0.0188705 0.104448 -0.0228566 +0.017085 0.0604224 0.0492086 +-0.0636469 0.11387 0.0394431 +0.0060852 0.126695 -0.00651247 +-0.0563559 0.0448266 0.0148606 +-0.0534962 0.0959644 0.0436141 +0.0587007 0.0538335 0.0141792 +0.00148321 0.105804 0.0429258 +-0.0696571 0.0662079 0.0262916 +0.0292497 0.0745452 -0.0220465 +-0.0363535 0.0380033 0.0459253 +-0.0388642 0.104209 -0.02036 +0.0363189 0.106784 -0.00482843 +-0.0506381 0.0473796 0.0176699 +0.0415736 0.0738523 0.0301911 +0.00841968 0.0357631 -0.0122614 +-0.0449132 0.130768 0.0151196 +-0.0348253 0.0822923 -0.0236386 +-0.0756565 0.0672218 0.011813 +-0.0840475 0.0856522 0.0284432 +0.0358352 0.11315 0.0115155 +0.0378536 0.10688 -0.000832307 +0.0327708 0.0862789 0.0422215 +-0.0510409 0.034583 0.0365198 +0.0285939 0.108783 0.0362583 +-0.0291219 0.163733 -0.0155493 +-0.0075062 0.071811 0.0576623 +-0.0285902 0.125327 0.00496117 +0.022493 0.120697 0.0309281 +-0.081164 0.0734408 0.004547 +-0.011709 0.0628424 -0.0363307 +-0.0258651 0.101595 -0.0237434 +0.0205831 0.11206 -0.0147671 +0.0444356 0.0931566 0.0191609 +-0.04739 0.113671 -0.0162364 +-0.0489307 0.0334882 -0.00491951 +-0.0129236 0.118879 -0.0139348 +-0.0161652 0.0382063 0.017415 +-0.00495697 0.0978375 0.052341 +-0.0277397 0.0605536 -0.0284245 +-0.00547292 0.0385489 0.021098 +-0.00115741 0.0949656 -0.0326157 +-0.0444374 0.124419 -0.00954541 +-0.0821611 0.0761834 0.00152312 +-0.0144467 0.0348076 0.0441223 +-0.0715687 0.153984 -0.0439053 +-0.00636015 0.130593 0.00877385 +-0.0127796 0.0382227 0.0144711 +0.0370519 0.110502 0.0205344 +-0.0322265 0.0637977 -0.0184499 +-0.0106706 0.054151 -0.0336931 +-0.0455975 0.169625 -0.00241942 +0.0182033 0.0435661 0.0436183 +-0.0718144 0.147892 -0.0304457 +-0.0577521 0.050802 0.00265023 +-0.0586963 0.0588331 0.00348495 +-0.0866227 0.109058 0.0173532 +-0.0383512 0.122877 -0.00994551 +-0.070675 0.0778663 -0.0147995 +-0.0181879 0.174194 -0.0234207 +-0.0587357 0.153161 0.0315118 +-0.0350971 0.16074 -0.013448 +0.00536912 0.049521 -0.0287338 +-0.0474407 0.134003 0.00841493 +-0.0624554 0.1522 -0.0115838 +-0.0760236 0.150016 -0.00789124 +-0.0261434 0.0379494 0.0119939 +-0.068707 0.0613453 0.00749837 +0.0495547 0.0702574 0.0035522 +0.0608929 0.0651253 0.0121512 +0.0417276 0.0683416 0.0285931 +-0.0322652 0.177059 -0.0129859 +-0.027328 0.0951114 -0.0248637 +-0.0207784 0.0714012 -0.0384405 +-0.0483231 0.128062 -0.00327126 +-0.0424968 0.0449805 -0.0163196 +-0.0550216 0.142767 -0.00162505 +-0.0444981 0.112567 0.0357183 +0.039909 0.107011 0.00616363 +0.0103602 0.0524141 -0.0291489 +-0.0621527 0.0372105 -0.00831557 +0.0052003 0.124064 -0.00964829 +0.0584567 0.0701808 0.018095 +0.0154065 0.0880419 -0.0292971 +-0.0675878 0.0672405 -0.0057657 +0.0141143 0.129082 0.00347211 +-0.0769907 0.154191 -0.00889586 +-0.0351753 0.160922 -0.000113952 +-0.0865124 0.0819745 0.0105022 +-0.0802058 0.0759672 -0.0035211 +0.0412042 0.046738 0.0312341 +0.0531089 0.0539671 0.0274209 +-0.0202736 0.0966137 -0.0264451 +-0.021864 0.108885 -0.0213157 +0.0172909 0.0900542 0.0497289 +0.0151151 0.0645034 0.0516546 +-0.00371721 0.100591 0.046739 +-0.0281684 0.117044 -0.0138686 +0.044615 0.0762444 0.0239446 +0.00250222 0.0504849 0.0522926 +-0.0407291 0.0724971 -0.0177035 +-0.076873 0.114866 -0.00505023 +-0.0509699 0.0334609 -0.0108109 +-0.0307494 0.125973 0.00854668 +-0.0842046 0.10344 -0.000635192 +-0.0637785 0.0335481 0.00468656 +0.0573103 0.0709688 0.0191461 +-0.0548852 0.0344475 0.0323271 +-0.0566985 0.0694351 -0.0145553 +0.0116873 0.128578 0.0254498 +-0.0635208 0.0384034 0.0165311 +-0.0193913 0.161115 -0.00536021 +-0.0517184 0.0708739 -0.0153462 +-0.0355107 0.0789772 0.0422885 +-0.0308674 0.0359912 0.0254031 +-0.0496962 0.137023 0.0203775 +-0.000496498 0.0549075 0.0548747 +0.0203519 0.0506032 0.0432764 +-0.00603714 0.0387093 0.0280658 +-0.0424971 0.165251 0.00449932 +-0.088747 0.148763 0.0102254 +0.0140119 0.072675 0.0536492 +-0.0355033 0.109745 0.0370663 +-0.0495176 0.0451863 0.0426306 +0.0161864 0.128058 0.00281004 +-0.0689044 0.110844 -0.0111483 +-0.0648164 0.0412793 0.0318749 +-0.0594946 0.0959853 0.0440949 +-0.0201946 0.0918367 -0.0355405 +-0.00451061 0.0534011 0.0538125 +-0.0256167 0.0422692 -0.0291044 +-0.0366019 0.0472824 -0.0203909 +-0.0714721 0.152551 -0.0449162 +-0.0686495 0.0395764 0.0103048 +-0.0916814 0.147477 0.020141 +0.0344933 0.0646793 0.0392567 +0.0354037 0.0848596 0.0389463 +0.0335837 0.114911 0.0235455 +-0.00948608 0.0488348 0.0496357 +0.0162564 0.0875946 -0.0288434 +-0.0495004 0.0876335 0.045502 +-0.00788756 0.107371 -0.0226705 +0.0279061 0.0479696 -0.0147397 +-0.0593675 0.145365 0.0352791 +-0.0297371 0.179987 -0.0120259 +-0.00152895 0.1273 -0.00507098 +-0.053021 0.0473885 0.0142865 +-0.031661 0.0351392 -0.0196159 +-0.0428508 0.127424 0.0174253 +0.00853656 0.103079 0.0455737 +-0.0428329 0.0928281 -0.0227901 +-0.0533229 0.121583 -0.0104498 +-0.0281276 0.163902 -0.00573037 +0.00550696 0.0647473 0.0560963 +-0.0786632 0.155487 0.0200952 +0.0373574 0.0841251 -0.0157743 +0.00845531 0.04577 0.0469205 +-0.0816426 0.140732 0.045535 +-0.0198636 0.184564 -0.0147357 +-0.0441 0.149758 -0.00480897 +-0.0394895 0.0478295 0.0398724 +-0.0902912 0.136455 0.0152001 +-0.0912584 0.116106 0.0417079 +-0.078373 0.161039 -0.0249642 +-0.0823003 0.143183 0.00115625 +-0.0366712 0.0621691 -0.0130418 +0.0483193 0.0518215 -0.00445791 +-0.0647832 0.179003 -0.0560548 +-0.066692 0.1555 0.0271809 +0.0251524 0.123931 0.0146708 +-0.0729716 0.175028 -0.0520538 +0.0249807 0.0645674 0.0448324 +0.0189844 0.127654 0.0109555 +-0.023546 0.114036 0.0366055 +-0.0166929 0.178668 -0.0190282 +-0.0838411 0.0884243 0.0295799 +0.0340178 0.106064 0.0317678 +0.0172301 0.0834905 -0.0285819 +-0.0836745 0.0939124 0.0306595 +0.00650612 0.0856084 0.0565927 +-0.00650337 0.0633626 0.0562557 +0.00724714 0.123914 -0.00950504 +-0.04049 0.0677003 0.0417506 +-0.083014 0.0816043 0.0289568 +-0.0791181 0.10724 -0.00560787 +-0.0643983 0.155173 -0.0416037 +-0.0194853 0.0382676 0.0257029 +0.017193 0.0407686 0.0438767 +-0.0578741 0.0997697 -0.0193936 +-0.00470039 0.0340249 -0.0188849 +0.009491 0.0923319 0.053062 +-0.0679779 0.0615132 0.00568001 +-0.00851004 0.0960786 -0.0317903 +0.0222567 0.0734747 -0.02675 +0.0396829 0.102719 -0.00275708 +0.0333394 0.0519958 0.0339463 +-0.0317958 0.166782 -0.0057687 +-0.0851069 0.104842 0.00238218 +0.040355 0.0712163 0.0319238 +-0.0796414 0.0719293 0.00453596 +-0.00871509 0.0670095 -0.035665 +-0.04676 0.0797358 -0.0197068 +0.00759602 0.120603 -0.0139518 +-0.00757253 0.0384534 0.015324 +0.027396 0.0902329 0.0450202 +-0.0837001 0.104608 0.0275279 +-0.0648437 0.159826 -0.0567739 +-0.0182921 0.113707 -0.0184295 +-0.0318101 0.0499111 0.0410759 +0.0042017 0.130577 0.0226921 +-0.0882785 0.102304 0.00940329 +-0.0669196 0.157864 -0.00782765 +-0.0574974 0.104327 0.0414929 +-0.028183 0.0499752 0.0445203 +0.0437475 0.087439 -0.00380588 +0.047365 0.0735855 0.0109418 +-0.0355275 0.04785 0.0396404 +-0.00564979 0.0511569 -0.0315211 +-0.0622081 0.163133 -0.0355907 +-0.0126796 0.0555759 -0.033924 +-0.0434133 0.12436 -0.00948612 +0.0325363 0.0605817 0.0399114 +0.00828387 0.0859903 0.0560092 +-0.0377619 0.0480619 -0.0149351 +-0.0152064 0.0377587 0.0513804 +0.0337034 0.0740969 0.0399489 +0.0386678 0.106943 0.0231645 +-0.0568902 0.10122 -0.0192994 +-0.0629975 0.158364 -0.0415982 +0.0174963 0.116768 0.0361173 +-0.018574 0.174216 -0.0164984 +-0.0916005 0.147489 0.0211447 +0.0351839 0.113522 0.00409669 +-0.0642224 0.175708 -0.0529566 +-0.0646189 0.0691309 -0.0109873 +-0.0744709 0.159641 -0.0299365 +-0.0810037 0.0777776 0.0280061 +-0.0468539 0.0397424 -0.0132276 +-0.0387576 0.152152 0.00343994 +-0.0355301 0.0350253 0.0446914 +-0.0252945 0.179999 -0.0179968 +-0.0594833 0.0440844 0.0256893 +-0.0262483 0.175689 -0.00998917 +-0.0357 0.0344414 0.0311095 +-0.0348452 0.0957896 -0.0233484 +-0.0694619 0.0701676 0.0334316 +-0.0704025 0.156596 -0.000355665 +0.0197946 0.0872171 -0.0264236 +-0.00225576 0.119004 -0.0141489 +0.0447595 0.0819096 0.000199099 +-0.0414725 0.16704 -0.0108149 +0.0383695 0.0533606 -0.00654853 +0.0436976 0.0763605 0.0261605 +-0.059412 0.0342492 0.0297869 +-0.0105538 0.0962042 -0.0319333 +0.0354985 0.0483762 0.03122 +-0.0232213 0.183101 -0.0108227 +-0.0454832 0.0704956 0.0415155 +-0.0818632 0.143391 0.0428465 +-0.00588211 0.0384235 0.0193174 +-0.0715611 0.065876 0.0226562 +-0.0557658 0.0561367 -0.00241411 +-0.007704 0.0613485 -0.0352024 +-0.050582 0.13546 0.000440434 +-0.0239591 0.0958294 0.044594 +-0.0344217 0.156595 0.00275895 +-0.0721769 0.146332 -0.0246714 +-0.00172768 0.0683482 -0.0343533 +0.0465137 0.0736858 0.00606841 +-0.0379081 0.0345108 0.0393807 +-0.0536272 0.0632225 -0.00927695 +0.0216001 0.0346735 0.00635285 +-0.00546011 0.130518 0.00622904 +0.025022 0.0994981 0.0433749 +-0.059626 0.14292 -0.00334389 +-0.0662647 0.160967 -0.0574681 +-0.086688 0.0937529 0.026595 +-0.0292509 0.122699 0.0223824 +-0.020881 0.0609703 0.0467992 +-0.0727056 0.0704556 0.030746 +-0.0670342 0.154632 -0.0510962 +-0.0818617 0.117704 -0.00327392 +-0.00930377 0.0384012 0.0113924 +-0.0294534 0.0382504 0.0532249 +-0.0428028 0.034428 0.0296237 +0.034591 0.113857 0.0224952 +0.0260945 0.0981604 0.0431638 +0.0157288 0.0740195 0.0526622 +0.00528348 0.0654438 -0.0329345 +0.0342272 0.113045 -0.000582475 +0.0177023 0.127344 0.0204737 +-0.00349601 0.0619414 0.0556852 +-0.0633856 0.13531 0.0381918 +-0.0187732 0.0742782 -0.038946 +-0.0714922 0.124606 0.0531293 +-0.0387588 0.0432047 -0.0253505 +-0.0377685 0.112865 -0.0174473 +-0.0811078 0.0831466 0.0326628 +0.0121734 0.0347014 0.0407838 +-0.0423463 0.0344667 0.0367209 +-0.0247884 0.0905387 0.0498003 +-0.0589097 0.111154 -0.0162513 +-0.0119878 0.0389387 -0.0117395 +-0.0746688 0.0730125 -0.00771761 +-0.0636783 0.0344406 0.016873 +-0.0718387 0.063614 0.0140147 +-0.0537353 0.0753205 -0.0183524 +0.0399868 0.0793585 0.0332409 +0.0342696 0.0686799 0.038964 +0.0283038 0.121367 0.00870899 +0.020694 0.101208 -0.0211426 +-0.0607079 0.149875 -0.000940868 +-0.0663226 0.0771733 0.0404118 +-0.0856352 0.151298 0.0280417 +0.00450086 0.0533884 0.0535142 +0.0193556 0.0370965 -0.0106758 +-0.073245 0.152646 -0.0348949 +-0.0311279 0.168264 -0.00654632 +-0.0314769 0.122323 0.024544 +-0.00965298 0.0383614 0.0149817 +0.0322912 0.117174 0.00450048 +-0.0303956 0.0833549 -0.0325649 +-0.0305081 0.109824 0.0377476 +0.060267 0.0581373 0.011162 +-0.0782363 0.119072 0.0512696 +-0.0819743 0.130956 -0.00393996 +0.0125568 0.129953 0.0057397 +-0.0750314 0.165158 -0.038026 +-0.0842614 0.0857549 -0.00354776 +-0.0194949 0.122198 0.0303074 +-0.0885869 0.0914877 0.00746285 +0.0183032 0.0622432 -0.0278633 +-0.0188389 0.0383463 0.00224079 +0.0169223 0.0354899 -0.0154522 +-0.0510859 0.154625 -0.00472421 +-0.04134 0.171235 -0.00891614 +-0.00271064 0.0641639 -0.0348647 +-0.0404957 0.119327 0.0301663 +0.0161104 0.038261 0.0437952 +-0.0788559 0.0706244 0.0187647 +-0.0565382 0.0387829 -0.00997998 +0.00406092 0.0347375 0.0390843 +-0.052431 0.0503969 0.0246465 +-0.0548238 0.136818 -0.00273484 +-0.0168361 0.163394 -0.0165332 +0.0085002 0.0589241 0.0531764 +-0.00349833 0.104479 0.0440938 +0.041165 0.0675922 -0.00677134 +-0.0766837 0.0941158 0.0377884 +-0.0715005 0.108276 0.0374406 +-0.0514917 0.154976 0.0111 +-0.0766573 0.0758638 -0.0078194 +-0.0708734 0.116483 -0.00801313 +-0.0584915 0.0333664 -0.00308936 +-0.0132404 0.0420117 0.0507817 +0.0504568 0.0627892 -0.00292241 +0.0181009 0.0617863 0.0489038 +-0.0686053 0.155434 -0.0518073 +-0.0866142 0.111799 0.023338 +-0.0087012 0.0613261 -0.0351009 +-0.0667075 0.179209 -0.0538653 +0.0133269 0.036855 0.044466 +-0.0308424 0.0930072 -0.0244625 +-0.0526579 0.118327 0.034303 +-0.0802651 0.0940224 0.034298 +-0.0895241 0.094286 0.0154262 +-0.0580951 0.0448084 0.0137644 +0.0187472 0.0369987 -0.01368 +-0.0174935 0.0786826 0.056671 +-0.026682 0.0779832 0.0478067 +0.0449566 0.0931917 0.0141646 +-0.0598355 0.0968573 -0.0194316 +-0.015743 0.0388551 0.0331436 +0.045657 0.07639 0.00319799 +0.00221136 0.0782941 -0.0352071 +-0.0725589 0.0360747 0.00146649 +-0.0641358 0.117113 0.0460384 +-0.0709488 0.0833216 0.0408543 +0.0230126 0.0366914 0.0285839 +0.0164832 0.101772 0.0464774 +-0.0114886 0.10724 0.0431864 +-0.0748949 0.0968349 0.0387401 +-0.0428468 0.0368545 0.044028 +-0.0121243 0.183164 -0.0282842 +-0.0110799 0.0973863 0.0517395 +-0.0283441 0.0346627 0.0430398 +-0.0591236 0.0454581 0.0276809 +0.0359903 0.0834983 0.0380665 +-0.0894731 0.112826 0.0381953 +-0.0633619 0.165109 -0.0324564 +-0.0893245 0.139298 0.0361742 +-0.0113718 0.177173 -0.0236196 +0.0314957 0.0386039 0.0249642 +-0.0153586 0.171251 -0.0171482 +-0.0501632 0.165541 -0.000963216 +-0.0125979 0.0362885 -0.0258846 +-0.0109041 0.121705 -0.010941 +-0.01134 0.181374 -0.0292688 +-0.0636417 0.067527 -0.00924444 +-0.0645561 0.151545 -0.0345673 +0.0234128 0.0685823 0.0460905 +-0.0204536 0.184888 -0.0139868 +-0.0362035 0.16829 0.000195359 +-0.0423655 0.0354607 0.0428683 +0.029434 0.0414849 -0.00426139 +-0.0548859 0.0335879 0.0154264 +0.0301337 0.0958138 -0.0174156 +-0.0231819 0.174173 -0.0207431 +0.0495183 0.0596792 0.0306871 +-0.0615314 0.169388 -0.0555899 +-0.0645149 0.156191 0.0192193 +-0.0808163 0.150056 0.00117383 +-0.0203106 0.127423 0.0152774 +-0.048501 0.0946267 0.0446158 +-0.0621404 0.0458224 0.0356845 +0.014817 0.0713159 0.0530708 +-0.0482359 0.0600875 0.0359237 +0.0583839 0.0607371 0.00317993 +0.0532979 0.0476993 0.0202039 +-0.00334167 0.13115 0.0113211 +-0.0451105 0.146112 0.00345863 +-0.0728436 0.0965116 -0.0147387 +-0.00290701 0.128667 -0.00250924 +-0.0175351 0.0472943 0.0498404 +-0.0710465 0.156278 0.000878407 +0.0130461 0.106823 -0.0191157 +-0.0241467 0.169732 -0.0193183 +0.0184844 0.092024 0.0477707 +-0.0849646 0.0925759 -0.00355765 +-0.0135115 0.0617879 0.0541775 +0.0358003 0.0371828 0.0161878 +-0.0563756 0.0338236 0.0220041 +-0.0344987 0.119335 0.0301753 +-0.0207895 0.0363821 -0.0186131 +0.0366896 0.0394563 0.0234361 +0.0454465 0.0903989 0.00417224 +-0.0686026 0.0339552 0.0087048 +-0.0248008 0.0797877 -0.0377608 +-0.0253831 0.0645504 -0.0324979 +-0.0924079 0.114699 0.0153245 +0.0404169 0.104204 0.0201615 +-0.0864551 0.137921 0.0433346 +0.0453383 0.0861836 0.0191712 +-0.0550359 0.12552 0.0379729 +0.0499773 0.0719552 0.0208312 +-0.0878453 0.10502 0.0133698 +0.0226563 0.0416586 -0.00875234 +0.00847112 0.0503629 0.0509458 +0.0193029 0.12103 0.032512 +-0.0288694 0.102979 -0.023086 +-0.0655006 0.155906 0.0116223 +-0.0865291 0.125714 0.0480303 +-0.0762092 0.103511 0.0356214 +0.027039 0.0433782 0.0352623 +-0.00878391 0.0340179 -0.0196776 +0.01688 0.104029 -0.0201606 +-0.0779922 0.155321 0.011561 +0.012978 0.0975651 -0.0232996 +-0.0570356 0.142438 0.0315884 +0.00678439 0.0392286 0.0320303 +-0.0187316 0.184448 -0.0230478 +-0.05583 0.0898375 -0.0220234 +-0.0624118 0.168239 -0.0611966 +-0.019552 0.0381879 0.0203532 +-0.0619388 0.0647772 0.0309092 +-0.0929984 0.129612 0.0152364 +0.0241882 0.0633761 -0.0240832 +-0.0154901 0.11097 -0.019533 +0.0335254 0.101204 -0.0131717 +0.0440036 0.0411539 0.00525252 +0.0443474 0.05051 -0.00579969 +-0.00564997 0.0526431 -0.0322774 +0.024909 0.124002 0.00889289 +-0.0551719 0.0344352 0.0357625 +-0.00149801 0.0828985 0.0574954 +-0.0649207 0.122383 -0.00889091 +-0.0371067 0.163706 -0.0138205 +-0.013511 0.0673225 0.0538556 +-0.0664425 0.121454 0.0513831 +-0.0749127 0.151363 0.0363064 +-0.0786131 0.166659 -0.0369473 +0.0259941 0.0889184 0.046498 +-0.0508607 0.133588 0.0291236 +-0.0624206 0.150641 -0.0155752 +-0.0345377 0.0353482 -0.0311793 +-0.0926334 0.130971 0.0152338 +0.00420379 0.0852404 -0.0337772 +0.0493319 0.0575419 -0.00502247 +0.0210858 0.0848756 0.0499424 +-0.0209282 0.0711316 0.0521839 +-0.0556334 0.121157 -0.00996616 +-0.0578782 0.0955404 -0.0210377 +-0.0636177 0.149382 -0.0259273 +-0.023437 0.0753613 0.0517266 +-0.0424368 0.033567 0.00359466 +-0.0366861 0.0651313 -0.0144389 +0.00275029 0.0392893 0.0311503 +-0.0858603 0.137915 0.0441653 +0.00249981 0.0938632 0.054785 +-0.0405815 0.125646 -0.00686289 +0.00652265 0.0633208 0.0557678 +-0.0736187 0.0665006 0.01992 +0.0178849 0.106917 -0.0172488 +-0.0404999 0.16823 0.00286674 +-0.0578818 0.101192 -0.0190391 +0.0415111 0.0596706 0.0303495 +0.0445386 0.0917351 0.000179816 +0.0404099 0.0926692 0.0304567 +-0.0715386 0.177351 -0.0469381 +-0.00955325 0.129382 0.0220461 +-0.0304508 0.11875 -0.0116176 +-0.0553453 0.138992 -0.00307013 +0.0373215 0.0444316 0.0300039 +-0.0439866 0.0342955 -0.0250034 +0.0438502 0.081834 0.0262681 +0.0105117 0.057471 0.0526043 +-0.0609073 0.0423237 0.0152297 +-0.0566933 0.0478983 -0.00338525 +-0.0882052 0.0955366 0.00643448 +-0.0697305 0.146842 -0.0262196 +-0.0654573 0.131176 0.0439868 +-0.0332792 0.168261 -0.00439757 +0.0262829 0.0520004 0.03955 +-0.0246803 0.0386712 -0.0158919 +-0.0243119 0.0382419 0.00485642 +-0.0650689 0.0416148 -0.00522845 +-0.0224969 0.105778 0.0423492 +-0.0675666 0.163787 -0.0559757 +-0.0625249 0.0642497 0.029495 +-0.066705 0.170483 -0.0379595 +-0.0387912 0.0855771 -0.0218281 +-0.0362227 0.121033 0.0288309 +-0.0351413 0.166693 -0.0148789 +0.0484731 0.0728694 0.00986875 +-0.0715958 0.035386 0.00909438 +-0.0654475 0.0414866 0.0340095 +-0.0897915 0.135018 0.00821888 +-0.0256856 0.161028 -0.00218154 +-0.0294591 0.0367076 -0.0187628 +-0.0318602 0.0341892 0.0214236 +-0.0741619 0.0781636 -0.0115723 +-0.0759684 0.138187 -0.00615578 +-0.0746432 0.067744 0.0203901 +-0.0481968 0.058714 0.0359259 +-0.0809888 0.100705 0.031995 +0.0223647 0.0795488 0.0499944 +-0.0164996 0.0587643 0.0515064 +-0.0843239 0.0775269 0.0169616 +-0.0474174 0.157905 0.00867917 +0.0256365 0.0450396 -0.0116814 +-0.0560862 0.153109 -0.0014946 +-0.0364777 0.0491722 0.0391199 +-0.0353775 0.172711 -0.013245 +0.0345426 0.0361041 0.0132537 +-0.0476575 0.0606291 -0.0121142 +0.0517359 0.0693876 0.00244776 +-0.0895642 0.139283 0.0271809 +-0.0554895 0.087587 0.0448409 +-0.00460242 0.0419996 -0.0255341 +-0.0747436 0.0846695 0.0389578 +-0.0522959 0.0518057 0.0276471 +0.0344259 0.0713949 0.0392126 +-0.0858246 0.111645 0.00429163 +7.90085e-05 0.131159 0.00541676 +-0.0876151 0.1105 0.015342 +-0.0308705 0.0385373 -0.0301935 +-0.0174841 0.088353 0.056296 +-0.0717036 0.179379 -0.0498901 +-0.0872579 0.113355 0.0275168 +-0.0132522 0.180136 -0.0286131 +0.0147067 0.111012 -0.0176211 +0.0100468 0.0698695 0.0549195 +-0.00549411 0.130838 0.0134037 +-0.0444864 0.070528 0.0418968 +-0.0694946 0.0902043 0.0422251 +-0.0125029 0.0673483 0.0540527 +-0.0889341 0.0928773 0.0104474 +-0.049902 0.0335302 0.00572664 +0.0224871 0.0436168 0.0410219 +-0.0391731 0.163682 -0.0125377 +-0.0389872 0.0336658 0.00601497 +0.0423783 0.0676875 -0.00279832 +-0.0314483 0.177007 -0.0139273 +0.0365023 0.0700019 0.0369139 +-0.0817843 0.113273 -0.0014411 +-0.0155011 0.0786732 0.0567092 +-0.0616004 0.115786 -0.012288 +0.0336937 0.0994802 0.0365924 +-0.0819199 0.0775142 -0.000486403 +-0.0620032 0.154899 0.00420466 +-0.0689571 0.134062 -0.00839151 +0.0341993 0.115326 0.00949444 +-0.0853268 0.127125 0.0496018 +-0.0075399 0.0430305 0.0487452 +-0.000964681 0.0992981 -0.0251507 +-0.0896495 0.146064 0.0111487 +0.0457169 0.0792126 0.021174 +-0.0677903 0.180834 -0.0585489 +-0.0525855 0.0528134 0.0122839 +0.045458 0.0847917 0.019171 +-0.0620511 0.164652 -0.0545872 +-0.0012817 0.0411143 0.047028 +-0.0620444 0.166711 -0.0606187 +0.0416044 0.0774454 -0.0068035 +-0.0180891 0.0568831 0.0497969 +0.0289502 0.0888845 0.043761 +-0.0361509 0.0471597 -0.0213258 +0.0209931 0.0505428 0.042434 +-0.081698 0.0939818 0.0329068 +-0.0701548 0.148741 -0.0366493 +-0.0726057 0.158224 -0.0359121 +0.0452801 0.0777562 0.00119407 +0.0034868 0.107186 0.0422902 +-0.0603898 0.116109 -0.0126519 +-0.0799294 0.154987 0.0226092 +-0.0412543 0.0342017 0.0283816 +-0.073067 0.0692219 0.0282366 +-0.0232836 0.0382816 -0.000419572 +-0.0843726 0.0952582 -0.00357113 +-0.0871856 0.0923586 0.0257303 +0.0415318 0.09261 0.0284783 +-0.0528539 0.1113 -0.0177773 +-0.0653767 0.0770838 0.0407622 +0.0608603 0.0609709 0.0131614 +0.0163938 0.128844 0.0100049 +-0.028759 0.0386585 -0.0166912 +-0.0688752 0.11651 -0.00852528 +-0.00266028 0.0525834 -0.0313625 +0.0395925 0.0979794 0.0293107 +-0.063517 0.0417383 0.0266777 +-0.0206145 0.038142 0.0147556 +-0.0746919 0.0745094 -0.0088781 +-0.0730235 0.16103 -0.0369405 +-0.0511023 0.141628 0.018382 +0.026686 0.0963684 -0.0200186 +0.00049039 0.0952019 0.0544773 +-0.0374215 0.0466159 -0.0218044 +-0.0396639 0.0592228 -0.0116772 +0.0589085 0.0593684 0.0217913 +-0.069935 0.128232 -0.00913858 +-0.0154583 0.128246 0.0199229 +-0.082956 0.0762572 0.0165263 +-0.0698527 0.139727 0.0465118 +-0.0793995 0.0962934 -0.0095136 +0.029447 0.119051 0.00204245 +-0.0406195 0.0505975 -0.0111291 +-0.0337259 0.125903 0.000119567 +-0.00361865 0.109419 -0.0218821 +-0.0324923 0.0845615 0.0419149 +-0.0304819 0.0903593 0.0440392 +-0.0289421 0.0848695 0.0456392 +-0.067993 0.172429 -0.0412978 +-0.0699656 0.167828 -0.0233999 +-0.0633908 0.0664235 0.0326881 +-0.0328103 0.178226 -0.00982944 +-0.0144938 0.0897854 0.0566872 +-0.00301248 0.0391855 -0.0120497 +-0.0467348 0.10982 -0.0182008 +-0.0347751 0.123588 -0.00668109 +-0.081672 0.0966878 0.0327979 +0.0208066 0.08618 0.0495337 +-0.0294922 0.102919 0.0420695 +-0.0514977 0.0917694 0.0441515 +-0.0561584 0.13394 0.0346041 +0.0587961 0.055231 0.00916964 +0.0239769 0.0672243 0.0451455 +-0.0590987 0.135299 0.0356206 +-0.0833215 0.153324 0.00972396 +-0.0775565 0.148654 -0.00488618 +0.0134356 0.129163 0.0217505 +0.00242681 0.0392303 -0.00913048 +-0.00111738 0.0369593 -0.0152505 +-0.0884159 0.102321 0.0103913 +0.0452046 0.0684536 0.0248447 +-0.0107692 0.1278 -0.0014358 +-0.067702 0.169446 -0.0560134 +-0.0645991 0.162478 -0.0199783 +-0.0384905 0.0591295 0.0404813 +-0.0133897 0.0383025 0.0215062 +-0.0335039 0.113859 0.0341437 +0.00725148 0.0739904 -0.0339985 +-0.0197912 0.0347004 -0.0276305 +-0.0364291 0.0383909 -0.00870817 +-0.0382525 0.154358 -0.00883541 +-0.0576615 0.0645392 -0.00788705 +0.0271486 0.0677873 -0.0226945 +-0.0484929 0.0776741 0.0437591 +-0.0538207 0.0913026 -0.0221948 +-0.0414756 0.102877 0.0407886 +-0.0194769 0.0384097 -0.0016118 +0.0409764 0.0725373 0.0310711 +-0.046711 0.0723683 -0.0164352 +-0.0169229 0.0385492 -0.0161043 +0.0274461 0.0888981 0.0450769 +0.0384486 0.0446185 0.0300797 +-0.0498739 0.120141 -0.01301 +-0.0147995 0.0382136 0.0194957 +-0.034222 0.0422724 0.0479221 +-0.00554376 0.0388664 -0.0141367 +-0.00771915 0.0642161 -0.0356843 +0.0380609 0.108343 0.0221716 +-0.0496329 0.05762 -0.010324 +-0.0640324 0.0336604 0.00811729 +0.0288939 0.0349903 0.0075309 +-0.0369254 0.170672 -0.0129456 +0.0567415 0.0605855 0.00115011 +-0.026353 0.0382316 0.0044532 +-0.088166 0.0963498 0.023753 +-0.0332851 0.0368458 -0.0306141 +-0.0138558 0.0387296 -0.0044727 +0.0597512 0.0650182 0.00715554 +-0.0267551 0.0740245 -0.0360482 +0.0214915 0.0369736 0.0352586 +-0.0515738 0.0559395 0.0296214 +0.00622241 0.123988 -0.00957575 +0.0558148 0.0493476 0.0171957 +-0.0766567 0.112144 0.0469767 +0.0408877 0.0928069 -0.00817715 +-0.0862272 0.0886081 0.000477626 +-0.0341682 0.0723955 -0.0204945 +0.0468003 0.0745424 0.0107517 +-0.00983206 0.0896484 -0.0366649 +-0.00782261 0.0985178 0.051315 +-0.070543 0.17193 -0.0350862 +0.0371254 0.0869172 -0.0157926 +-0.059432 0.152725 0.0327387 +-0.0644942 0.149793 0.0375095 +-0.02966 0.0875784 -0.0315907 +0.0234483 0.0350084 0.0101439 +-0.0672661 0.155709 0.00954294 +0.0249549 0.0915796 0.0467751 +-0.0750729 0.0675817 0.0186826 +-0.065557 0.158804 -0.0559152 +-0.0869809 0.112371 0.0426661 +-0.0388924 0.0336117 -0.0270987 +-0.0925871 0.117342 0.0103086 +-0.0285134 0.0559644 0.0364164 +-0.0592485 0.148248 0.0355123 +-0.0386245 0.0472623 -0.0172994 +0.0417415 0.0676611 -0.00475281 +0.017067 0.127696 0.00312982 +-0.00768714 0.116771 -0.0157299 +-0.0210692 0.0667823 0.0496379 +0.0306718 0.0605569 0.0407187 +-0.086202 0.0805924 0.0105044 +0.0248868 0.0727438 0.0465386 +-0.0226479 0.182963 -0.0190305 +-0.064868 0.0953298 -0.0181139 +-0.0212331 0.0553385 0.0459146 +-0.0900228 0.148451 0.0254546 +-0.0659345 0.109414 0.0377967 +-0.0156357 0.0466082 -0.0291798 +-0.0783295 0.108958 0.0384425 +-0.0353519 0.169773 -0.000327923 +-0.0576724 0.155657 0.012957 +0.0299243 0.0902598 0.0434097 +-0.0938789 0.125503 0.0152603 +0.00849738 0.0910108 0.0540495 +-0.0924729 0.117499 0.0403021 +-0.0538856 0.101336 -0.0209374 +0.0230068 0.125355 0.00960117 +-0.0753773 0.0887668 0.039456 +-0.0164714 0.0348128 0.0436847 +-0.0124833 0.108618 0.0427908 +0.00650022 0.0937602 0.0531051 +-0.0254901 0.101602 0.0435889 +-0.0681644 0.132655 0.0471068 +0.0116725 0.130674 0.0125466 +-0.0658455 0.0693268 0.0349111 +0.0131057 0.0346676 0.0247536 +0.0111453 0.0752893 0.0548169 +-0.0414315 0.120058 -0.0129928 +-0.0667828 0.0837809 -0.018353 +-0.0558768 0.105489 -0.0184971 +-0.0646849 0.0705888 -0.0125799 +0.00250861 0.0634123 0.0567384 +-0.0102337 0.0987343 -0.0266102 +-0.0475686 0.0376232 -0.0123457 +0.0326729 0.0388984 0.0249367 +-0.0754158 0.14997 -0.0218646 +0.0149498 0.0475024 0.0442108 +-0.0897923 0.144692 0.013139 +-0.065193 0.0597221 0.0116014 +-0.0777759 0.113375 -0.00398806 +-0.0457101 0.131722 0.0089192 +-0.0575663 0.0481384 0.0346641 +-0.0838122 0.128533 0.0508937 +-0.0104939 0.0933018 -0.0349679 +0.0252085 0.0464911 -0.0166174 +-0.0789879 0.13894 -0.00474105 +-0.0475728 0.0656919 0.0379498 +0.0110822 0.113195 -0.0179885 +-0.0649225 0.170267 -0.0430968 +-0.00871405 0.112847 -0.0195489 +0.0452857 0.0889846 0.0161633 +-0.0171038 0.128182 0.00771491 +-0.0114919 0.0911558 0.0564108 +-0.0672347 0.158081 -0.05503 +-0.0375789 0.0335576 -0.0249215 +-0.028354 0.0521667 -0.0233844 +-0.0687469 0.179151 -0.0517127 +-0.0635972 0.164728 -0.0295802 +-0.00849416 0.0661021 0.0557034 +0.0018938 0.131459 0.00752669 +-0.0104875 0.10724 0.0431922 +0.0420847 0.0764929 0.0291356 +-0.0164676 0.125926 0.0254562 +-0.0666931 0.162075 -0.0149837 +0.000392133 0.0405199 -0.0247969 +-0.062597 0.0740287 0.040345 +-0.038486 0.115285 0.0333239 +-0.0134767 0.0545379 0.0508338 +-0.0379773 0.128134 0.0117903 +0.0282176 0.0746072 -0.022898 +-0.00949856 0.0898059 0.0569552 +-0.0633588 0.166271 -0.0375898 +-0.088608 0.0874693 0.0094764 +-0.00658802 0.126776 -0.00645935 +0.00550371 0.0533623 0.0533002 +0.0568364 0.0723477 0.016027 +-0.0746813 0.077485 -0.0103851 +0.0599778 0.0622697 0.0191849 +-0.0834343 0.143353 0.0415913 +0.0461466 0.0773319 0.0190905 +-0.0643928 0.0366139 0.0414145 +0.017105 0.0913787 0.0494605 +0.0113838 0.0463423 -0.025328 +0.00150906 0.0925101 0.0553138 +-0.0905552 0.131061 0.0372264 +0.0271939 0.0479684 -0.0167032 +0.0118641 0.130407 0.00833975 +-0.0534963 0.0413918 0.0463882 +-0.00348783 0.0548509 0.0542207 +-0.0241218 0.165279 -0.0170232 +0.0526044 0.0736805 0.0129696 +0.00493694 0.0358587 0.023833 +-0.0308996 0.0862326 -0.0295626 +-0.0749566 0.152744 -0.0158977 +0.022407 0.0700249 0.0481925 +-0.0644326 0.152123 0.0354487 +-0.083145 0.0762813 0.00952219 +-0.0066641 0.130277 0.00578337 +-0.0503124 0.0487527 0.0166746 +-0.0857975 0.0926505 0.000473688 +0.0319954 0.0554568 -0.0137989 +-0.0325248 0.0371997 0.032926 +-0.0378236 0.0914714 -0.0236656 +0.0107752 0.0603237 0.0523688 +-0.0709378 0.0995366 0.0403447 +0.00229927 0.0641027 -0.0339638 +0.0301658 0.0510827 -0.0137422 +-0.0152122 0.0387061 -0.0065833 +0.0328168 0.0373031 0.0209449 +-0.0564976 0.0959787 0.0438593 +-0.0530296 0.137293 -0.00118635 +-0.0114929 0.0745162 0.0566704 +0.0339687 0.0768049 0.0403387 +0.0229251 0.0476731 0.039919 +0.0153286 0.0594649 -0.0285327 +-0.0650165 0.0356472 0.0166692 +-0.0872319 0.104968 0.0093836 +0.0317565 0.0752189 -0.019756 +0.0174897 0.107108 0.0415537 +0.00650555 0.0716952 0.056225 +0.0214733 0.0808843 0.0504673 +-0.0157973 0.0382489 0.019257 +-0.073889 0.119392 -0.00790358 +-0.0588895 0.0969269 -0.0201624 +-0.0614701 0.166956 -0.0604533 +-0.0411287 0.160673 -0.0112161 +-0.0558134 0.0883826 -0.0218608 +-0.0206962 0.0385843 -0.00942784 +0.0401892 0.0759203 -0.00879733 +0.0191194 0.0349494 -0.00374623 +-0.0414976 0.113906 0.0346806 +-0.00581815 0.0854694 -0.0375201 +-0.0859756 0.0805547 0.00750576 +-0.0833395 0.103378 -0.00262342 +-0.0446335 0.126046 -0.00723965 +0.0260088 0.0910229 -0.0223512 +0.034944 0.10998 0.0278542 +-0.00248857 0.0703789 0.0573235 +-0.0102702 0.0385128 0.00564525 +-0.0283572 0.0578046 -0.0244014 +-0.0210295 0.0958616 0.0473023 +-0.0141375 0.0347096 0.0460356 +-0.0244241 0.178665 -0.0108375 +0.00749812 0.109597 0.0408218 +-0.0356643 0.0606925 -0.0124069 +-0.0638002 0.166551 -0.0354938 +-0.0862312 0.0940245 0.00140199 +-0.0365789 0.0337187 0.00826156 +0.0240933 0.0685753 0.045325 +-0.0891661 0.132396 0.0419315 +-0.0177346 0.065722 -0.0374816 +-0.0224613 0.12203 0.0284859 +-0.0509119 0.055753 0.0316394 +-0.0340805 0.0680941 -0.0175876 +-0.0166639 0.0364717 -0.017882 +0.0347021 0.0768104 0.0396564 +0.0213412 0.0565052 -0.0267347 +-0.0707159 0.179287 -0.0569572 +-0.0748092 0.0790936 0.0363823 +-0.0577944 0.0460393 0.0120187 +-0.0302932 0.123607 -0.00301843 +0.00749105 0.050377 0.0513506 +-0.0641553 0.162388 -0.0586672 +-0.0197076 0.059653 0.0484949 +0.0376477 0.110588 0.00928033 +-0.0151896 0.0391404 0.0514631 +0.020848 0.0400652 -0.0117024 +-0.0208303 0.119929 -0.0109428 +0.0157129 0.124796 -0.00448994 +-0.00658665 0.0388228 -0.0143041 +0.0254417 0.121647 0.000551492 +0.0535789 0.0658041 0.000119664 +0.0473148 0.0518659 -0.00495567 +0.0299175 0.0524736 -0.0157475 +-0.0183959 0.112492 -0.0191613 +-0.0893828 0.0916068 0.0204288 +-0.0614858 0.175719 -0.0606762 +-0.0901396 0.13244 0.0372222 +-0.0238257 0.0881589 -0.0366228 +-0.0218791 0.0383442 -0.00388387 +0.00124143 0.0390154 -0.00356473 +-0.0669805 0.1589 -0.00929727 +0.0483233 0.0547304 -0.00526262 +-0.0444857 0.0661533 0.0401374 +-0.0514919 0.076238 0.0430598 +-0.0301912 0.0664057 -0.0274649 +-0.0408343 0.0942887 -0.0229156 +-0.00749956 0.121159 -0.0124082 +-0.061476 0.158429 -0.028587 +-0.0675029 0.109729 0.0377486 +-0.0697083 0.1638 -0.0499695 +-0.062151 0.152195 -0.0205783 +0.0342924 0.0619556 0.0389482 \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/cube_ran.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/cube_ran.pts new file mode 100644 index 000000000000..ae0320923a7d --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/cube_ran.pts @@ -0,0 +1,582 @@ +581 +-9496.000158 -6621.999660 73324.000108 +1941.000008 -502.999956 53448.000262 +-13993.000076 -9472.000458 73547.999893 +-3165.000198 2805.999696 53841.000158 +3941.000109 -826.999564 53350.999780 +-13992.999698 -6391.999696 73548.000325 +-4629.000334 -2729.999756 72919.999638 +-14544.000229 7643.999701 62169.999969 +-3539.000009 -7617.000066 72743.000159 +-3569.999951 1963.000330 53954.000331 +4099.000115 540.000082 55720.000195 +3946.000208 3611.000347 54343.000242 +3942.000336 -1955.000290 53845.000430 +24.000106 -8480.000056 72560.000446 +-2817.999819 -7080.000021 72739.999999 +274.999768 2681.999578 53612.999729 +-5673.000363 -8522.000312 72919.999924 +-3569.999681 5328.999917 53954.000391 +7057.000447 22.999921 72019.999778 +-7114.999994 -4259.000412 73100.000243 +3129.999877 -1020.000207 53119.999650 +-14575.999938 2064.000292 60412.000409 +-8087.999603 -2692.999873 73164.999998 +-9496.000263 -8099.000270 73323.999696 +-14575.999757 4785.999619 60412.000416 +1767.000453 -2710.000440 72380.000399 +4723.999558 2984.999684 72199.999829 +4173.000154 -1942.000364 57518.000224 +-14185.000047 -8155.999786 69664.999947 +8462.999751 -2789.999723 72019.999998 +-14475.999680 -6322.000368 63961.000010 +-14185.000218 -6669.000381 69665.000452 +-14411.999521 8769.999611 63528.000202 +-3929.999793 121.999623 53660.000393 +-3538.999885 -6227.999801 72743.000078 +5664.000221 8483.999673 72199.999788 +4160.000223 3746.999664 57257.999712 +16.999585 1061.999516 53479.999584 +3441.000482 4789.999724 53120.000035 +3941.000301 861.000216 53350.999558 +3941.000166 186.000103 53350.999891 +-5672.999756 5721.000193 72920.000053 +-14411.999799 1051.999879 63528.000013 +3441.000192 5308.999633 53119.999836 +-13970.999556 -6778.999631 71592.999827 +-5673.000352 1448.000308 72919.999896 +1941.000287 3661.000398 53448.000221 +4159.999588 2681.999997 57257.999788 +2098.999573 1058.000232 53299.999983 +-3569.999774 280.000127 53953.999842 +-3538.999679 -9006.000017 72743.000111 +-3570.000143 -1402.000081 53954.000006 +-7115.000060 5734.999820 73099.999872 +-1026.999875 -1026.999558 53479.999537 +7056.999811 -4195.999750 72020.000402 +-3570.000168 3085.000137 53954.000020 +-13970.999844 -9803.999811 71592.999532 +17.000252 6285.000424 53479.999576 +-14322.999690 -2587.000320 65092.999918 +-5387.999792 -1969.999910 72920.000067 +-1426.999888 2743.999772 53744.000433 +-3538.999950 -2059.999970 72742.999563 +-14412.000000 6664.999905 63527.999948 +-3570.000271 3646.000059 53954.000087 +-3929.999828 -1973.999852 53659.999952 +-4237.999601 -7080.000344 72740.000252 +-14373.000194 -7866.999965 65785.999683 +3946.000001 2584.000490 54343.000220 +3941.000101 2886.999557 53350.999752 +4160.000230 551.000414 57257.999512 +4264.000084 1686.000457 60564.000497 +-9495.999646 -3667.999852 73323.999965 +4288.000261 1950.999734 60834.000001 +1432.000381 -1938.999865 53464.000475 +-5126.999748 3887.999847 72980.999916 +4287.999632 278.999662 60833.999729 +-2072.000101 17.000308 53479.999547 +-14411.999918 5261.999514 63527.999544 +-14185.000455 -5180.999602 69665.000041 +4263.999685 -536.999855 60563.999513 +4724.000258 1575.000409 72200.000149 +4159.999987 4812.999838 57258.000035 +-3930.000140 4837.999779 53659.999939 +-8543.000324 -8542.999590 73099.999989 +-3570.000177 840.999915 53954.000138 +3941.000105 1874.000098 53351.000382 +3946.000349 4637.999658 54342.999822 +8462.999539 8462.999818 72019.999892 +5664.000082 4253.999844 72200.000354 +-5387.999671 2302.000049 72920.000121 +-5388.000189 166.000459 72919.999521 +5664.000053 -4206.999676 72200.000476 +2473.999900 -2709.999879 72380.000265 +16.999506 -1027.000446 53479.999576 +4263.999639 -1647.999637 60564.000406 +3441.000140 1676.999539 53120.000327 +-9496.000107 -5145.000342 73323.999932 +-13992.999533 -4852.000259 73548.000110 +4287.999970 6968.000328 60833.999686 +275.000199 3746.999653 53612.999629 +-14412.000182 -350.999721 63528.000472 +-13992.999868 -4338.000196 73547.999622 +-8543.000347 -4259.000087 73100.000032 +16.999876 5240.000063 53479.999960 +-14372.999770 -9301.999508 65786.000118 +-5127.000314 8129.000114 72980.999503 +-1394.000093 -4227.999771 72560.000486 +4098.999711 3673.000482 55719.999928 +3946.000083 -1523.000092 54342.999694 +4724.000061 -1246.000449 72200.000281 +-13720.999502 -5353.000086 73556.000360 +4723.999887 7215.000403 72200.000242 +-14184.999932 -2754.999701 67936.999780 +1437.000194 -5630.999670 72380.000099 +-5444.999665 -9188.000372 72930.000378 +-4238.000442 -8500.999822 72740.000263 +-8542.999594 4307.000192 73099.999910 +-5388.000269 6574.999714 72920.000493 +-1394.000324 -2811.000366 72559.999570 +16.999584 16.999963 53479.999782 +-14327.000037 -2687.000254 67063.000303 +-1027.000347 6284.999698 53480.000414 +2850.999763 -5631.000213 72380.000333 +-14543.999669 -8982.999787 62170.000241 +-1426.999789 563.000156 53743.999616 +-5127.000214 -2474.000449 72980.999585 +-8542.999689 5734.999797 73100.000259 +-13993.000354 -8958.999738 73548.000223 +1057.999632 3139.999725 53299.999575 +7056.999573 1429.999852 72020.000196 +-13412.999816 -2989.999795 73597.999993 +-14411.999793 5963.000061 63527.999980 +-14544.000399 3487.000172 62169.999836 +4723.999840 869.999743 72200.000174 +1940.999817 5742.999710 53447.999666 +-14411.999874 7365.999941 63528.000371 +3441.000223 5827.000153 53120.000059 +1941.000349 1579.000153 53447.999990 +4723.999767 5099.999678 72199.999767 +-5444.999773 -6354.000185 72929.999902 +-11526.999785 -8253.000306 73393.000090 +4287.999859 5853.000374 60833.999882 +-3538.999732 -3449.999625 72742.999793 +-13993.000364 -7932.000020 73548.000260 +-14373.000228 -3563.000378 65785.999768 +4253.999995 -7026.999870 72200.000060 +-3164.999721 -539.000085 53841.000259 +3940.999621 -1165.000187 53351.000040 +4251.999655 -1611.999954 58826.000287 +3130.000441 1055.000205 53119.999800 +-7114.999827 -7115.000264 73100.000269 +-5388.000004 5151.000233 72919.999833 +-14543.999690 -4825.999812 62169.999558 +-3929.999555 6411.000130 53659.999733 +1940.999639 4702.000362 53447.999846 +-14411.999716 2454.999607 63527.999612 +3440.999501 -915.999922 53119.999778 +4288.000012 -1950.999731 60833.999534 +275.000261 1616.000437 53612.999949 +-1427.000136 -527.000171 53743.999568 +4251.999503 -525.000281 58825.999809 +-260.999615 -1966.999943 53479.999718 +7057.000208 -5603.000018 72020.000259 +-5127.000479 6715.000320 72980.999619 +-1427.000327 3834.000257 53744.000353 +3440.999911 6346.000423 53120.000030 +2850.999822 -7045.000455 72380.000243 +5664.000435 -1386.999766 72200.000059 +-14412.000002 3156.999581 63527.999801 +-8543.000189 -7115.000435 73099.999877 +3445.999629 2566.999931 53380.000265 +3440.999872 -1434.999562 53119.999546 +-3165.000457 5035.000031 53841.000213 +-3929.999582 2218.000457 53659.999557 +3445.999965 -1512.999532 53379.999504 +-1958.000338 -1957.000101 53738.999698 +275.000452 -1581.000215 53613.000308 +-14088.000048 -2934.999842 70989.999715 +-14373.000177 -4997.999695 65786.000128 +8462.999777 5649.999794 72019.999678 +1058.000275 6263.000038 53300.000358 +-7102.000019 -2619.000327 73101.999718 +-8542.999951 -5687.000307 73099.999616 +-3930.000250 2741.999930 53660.000203 +1300.999742 -1960.999792 53299.999640 +4723.999966 4394.999535 72200.000035 +4098.999994 1583.999527 55720.000241 +-13992.999829 -8445.999614 73548.000422 +4098.999861 -1548.999788 55719.999858 +-3930.000368 -1449.999960 53660.000492 +4287.999872 3066.000210 60833.999876 +4287.999522 2508.000016 60833.999841 +-5445.000250 -3519.000073 72930.000344 +-14232.999547 -8002.000380 67645.000212 +-5126.999777 -1767.000240 72980.999857 +3129.999543 5204.999843 53119.999708 +3946.000005 530.999826 54343.000175 +-13721.000221 -3816.000216 73556.000357 +8463.000349 22.999637 72020.000002 +4724.000003 3690.000471 72200.000108 +1058.000380 4180.999601 53300.000207 +274.999810 5879.000134 53613.000459 +354.000245 -2715.999978 72560.000238 +1437.000165 -4217.000476 72380.000479 +3940.999844 4913.000151 53350.999582 +-2895.000382 -1945.000376 53846.999541 +2099.000389 2099.000230 53300.000474 +8463.000426 1430.000487 72020.000078 +4252.000374 561.000004 58826.000032 +3940.999558 523.000164 53351.000416 +1437.000253 -2804.000496 72380.000323 +-14543.999762 -3440.999829 62169.999916 +-14543.999982 -6211.999551 62170.000041 +3441.000291 2714.999685 53119.999987 +5663.999985 -2797.000025 72200.000024 +-14411.999984 -1051.999942 63528.000370 +3440.999562 4271.000407 53120.000029 +-3539.000186 2107.000409 72743.000388 +1057.999822 -1024.000255 53300.000171 +3945.999666 5664.999689 54342.999562 +-5126.999539 5301.000010 72981.000462 +-14575.999627 -3379.999597 60411.999811 +3180.999744 -2710.000374 72380.000052 +-1026.999719 4195.999827 53480.000234 +-3165.000176 575.999615 53840.999507 +3941.000445 -151.999807 53351.000391 +-14576.000174 -657.999845 60411.999636 +-2349.999962 -1966.999590 53479.999902 +-14411.999854 3858.999681 63528.000283 +-10090.000319 -2795.000040 73260.999652 +3941.000477 5924.999710 53350.999731 +4085.000468 -1954.000357 55213.000428 +4253.999936 -8436.999819 72199.999776 +-1394.000360 -8479.999946 72559.999636 +-3569.999726 -841.000285 53953.999993 +-9083.999507 -2718.999761 73217.000072 +3441.000399 640.000398 53120.000050 +4287.999748 -1394.000023 60833.999874 +5664.000340 7073.999686 72199.999963 +-5387.999666 4438.999817 72919.999562 +7056.999636 -7010.000061 72019.999662 +1057.999689 5222.000173 53299.999663 +-5673.000248 4296.000142 72920.000031 +-1027.000260 5239.999713 53480.000273 +-7114.999766 -8543.000300 73100.000022 +274.999590 551.000141 53612.999775 +-3929.999711 -926.000493 53660.000132 +4288.000365 -836.000403 60833.999756 +3446.000332 3586.999913 53379.999531 +3887.999686 -2709.999801 72379.999876 +-3539.000418 -670.999562 72742.999614 +4251.999963 1648.000235 58826.000350 +7056.999875 -1382.999580 72019.999867 +-11526.999831 -9757.999777 73393.000349 +3130.000328 4167.000247 53120.000320 +8463.000402 2837.000196 72020.000275 +3446.000436 -493.000175 53380.000405 +-1427.000357 6013.999828 53744.000254 +-13993.000352 -5365.000211 73547.999983 +3130.000064 6241.999698 53120.000243 +-1393.999680 -7061.999503 72559.999762 +-3929.999947 3266.000354 53660.000396 +-5388.000052 8711.000308 72919.999522 +-5387.999641 5862.999935 72920.000126 +-5673.000220 24.000330 72919.999842 +4160.000111 -514.999580 57257.999620 +3445.999928 527.000347 53379.999914 +-8542.999580 7162.000367 73099.999863 +2947.999993 -1968.000009 53405.999963 +-3929.999592 -1974.000291 53659.999860 +-1305.999625 -1967.000077 53480.000398 +3129.999665 3130.000305 53119.999882 +-4237.999635 -4237.999904 72739.999541 +7057.000491 4243.000297 72019.999582 +-14576.000246 -6102.000206 60411.999747 +4264.000083 2796.999726 60563.999829 +4724.000254 5805.000459 72199.999985 +-5672.999808 -7097.000478 72920.000322 +-7114.999930 1452.000036 73099.999694 +-3929.999839 4313.999708 53660.000336 +-13971.000086 -5267.000118 71592.999574 +-3164.999892 1691.000266 53840.999559 +3941.000485 1198.999988 53351.000119 +-2071.999680 1062.000046 53480.000119 +-3930.000107 5362.999664 53659.999659 +-13972.000434 -2989.999797 73073.000355 +-5387.999734 1589.999640 72920.000470 +-14575.999747 6147.000157 60412.000152 +-3539.000484 4885.000479 72743.000415 +-8543.000350 23.999745 73100.000201 +4159.999933 5878.999799 57258.000196 +-5444.999733 -7771.000335 72929.999842 +-14372.999532 -6432.999688 65786.000443 +3941.000032 5250.000483 53350.999566 +-2817.999801 -4237.999840 72739.999681 +2099.000054 4180.999939 53300.000374 +3440.999903 121.000021 53120.000493 +-14575.999797 -4741.000478 60411.999775 +3940.999685 1535.999624 53351.000429 +-14576.000473 702.999598 60412.000428 +-14475.999775 -4911.999679 63960.999993 +-14131.000326 -2857.999672 69963.000289 +2099.000221 -1024.000206 53299.999555 +-3539.000177 -4839.000490 72742.999973 +-5672.999696 -4248.999669 72919.999901 +1057.999780 16.999883 53300.000257 +5663.999977 5663.999867 72199.999515 +5663.999992 -8436.999738 72200.000314 +-14412.000335 8068.000149 63527.999665 +-5388.000218 -545.999702 72919.999648 +4264.000448 3907.999781 60564.000285 +3129.999620 2092.000354 53120.000415 +1062.999967 -2715.999634 72560.000024 +3940.999708 -1840.000490 53351.000006 +23.999785 -4227.999646 72560.000090 +-3165.000129 -1654.000323 53840.999660 +-5127.000159 2474.000343 72981.000044 +3941.000234 2210.999659 53351.000276 +1436.999565 -7045.000204 72380.000395 +-1426.999662 1654.000050 53744.000497 +4159.999762 -1580.999657 57257.999765 +2099.000277 6263.000009 53300.000166 +-14233.000173 -9461.999637 67644.999640 +4724.000132 6510.000452 72199.999686 +-5388.000295 3014.999741 72919.999528 +4107.000341 -1973.999932 55973.999842 +-1027.000486 1061.999561 53480.000336 +4263.999763 5018.999546 60563.999509 +-3126.999968 6305.999575 53660.000329 +-1062.999814 -2715.999805 72559.999701 +3441.000092 -398.000054 53119.999576 +23.999882 -5645.000302 72559.999942 +-5126.999834 4594.000338 72980.999829 +4252.000254 4907.999952 58825.999554 +-3569.999712 4767.999673 53953.999940 +-14476.000032 -9143.000078 63960.999819 +4071.000131 -1967.999892 54460.000432 +3440.999875 3752.000283 53120.000467 +-14576.000485 3424.999842 60411.999944 +-5160.999508 -2520.999928 72949.000110 +4287.999692 3622.999957 60834.000077 +-5127.000118 1767.000066 72980.999700 +5663.999655 24.000344 72200.000194 +-14576.000480 7508.000120 60411.999689 +-2881.999956 -1974.000116 53659.999591 +3129.999776 16.999790 53119.999905 +-13993.000072 -5879.000105 73548.000170 +4723.999855 -2656.000037 72200.000312 +3940.999633 4574.999653 53351.000095 +17.000159 3150.999751 53479.999993 +-13721.000066 -6890.000008 73555.999864 +-5673.000136 8569.000239 72919.999812 +4287.999834 1393.999656 60834.000047 +-5127.000002 3181.000499 72980.999577 +1437.000111 -8457.999664 72379.999810 +-1027.000182 3151.000481 53480.000213 +8462.999880 -5602.999786 72020.000397 +5663.999998 -7027.000337 72200.000179 +-2071.999836 5240.000427 53480.000403 +3445.999729 4607.000036 53380.000383 +-1394.000136 -5645.000011 72559.999949 +-3127.000033 2113.999786 53660.000272 +3941.000324 2548.999788 53350.999985 +3940.999570 -1502.000342 53351.000013 +-3126.999914 -1030.999894 53659.999552 +-4238.000253 -2817.999880 72739.999988 +3440.999843 -1953.999504 53120.000421 +259.999737 -1960.999636 53300.000138 +-245.000117 -1948.999943 53618.999915 +-11526.999811 -5243.000037 73392.999756 +4724.000234 165.000038 72199.999547 +-3126.999977 3161.999991 53659.999978 +-3569.999564 4207.000094 53953.999501 +275.000170 -514.999842 53613.000034 +-11526.999613 -6747.999928 73392.999616 +-7390.999730 -5035.000249 73077.999705 +275.000340 4813.000352 53612.999844 +-2071.999948 3150.999602 53480.000403 +4251.999765 2735.000064 58826.000103 +-7115.000351 -5686.999885 73100.000358 +4098.999827 2628.999611 55719.999560 +8463.000124 -7010.000397 72020.000009 +-14232.999615 -6543.000442 67645.000485 +-3930.000232 5887.000299 53659.999634 +-14544.000461 2101.000409 62170.000359 +3372.000265 -1954.000261 53119.999806 +-14412.000115 1754.000439 63527.999500 +-14438.999828 -2520.999738 64242.999578 +-14329.999599 -2661.000068 66073.000238 +1941.000120 -1544.000357 53448.000031 +-4238.000332 -5659.000491 72740.000442 +4098.999594 -505.000192 55720.000025 +-2818.000128 -5658.999652 72739.999655 +4288.000306 -278.999978 60833.999586 +-1026.999893 17.000290 53480.000077 +-7114.999937 2878.999603 73099.999625 +4251.999706 3821.999721 58825.999856 +-14544.000411 -7596.999761 62170.000298 +-3539.000189 6273.999627 72742.999519 +-8542.999929 8590.000255 73100.000232 +-14544.000350 715.999575 62170.000076 +-9495.999848 -9576.000383 73323.999907 +-14576.000232 -7462.000020 60411.999731 +-14184.999642 -9643.999972 69665.000056 +-13970.999811 -8291.000315 71593.000038 +-5126.999814 1060.000113 72981.000052 +-7115.000366 7162.000434 73099.999958 +-3165.000448 6150.000036 53840.999507 +8462.999808 4242.999904 72020.000254 +7057.000202 -2790.000123 72020.000020 +-2071.999832 -1026.999844 53479.999642 +-7114.999518 -1404.000177 73100.000300 +3941.000476 3223.999580 53351.000151 +-3569.999782 1402.000069 53953.999777 +-3570.000289 7012.000244 53953.999930 +-5388.000194 877.999982 72919.999818 +-5126.999702 6008.000102 72980.999919 +4263.999700 6130.999796 60564.000158 +-8543.000290 1452.000226 73100.000426 +2850.999705 -4217.000056 72379.999818 +7056.999509 7057.000433 72019.999792 +-13992.999692 -3312.000439 73548.000061 +2850.999879 -8457.999587 72380.000259 +-3538.999600 718.000352 72742.999931 +-3930.000315 646.000457 53659.999635 +4264.000193 573.999697 60564.000002 +2099.000093 5221.999649 53300.000412 +-2071.999917 6284.999527 53479.999583 +4723.999862 7920.000427 72199.999887 +4330.999705 -1963.000266 59887.000081 +2851.000238 -2803.999644 72380.000218 +3440.999720 2195.999826 53119.999530 +-14543.999739 -2055.000043 62170.000137 +-14544.000178 -669.999739 62170.000308 +-14411.999915 351.000242 63527.999545 +3940.999876 5587.999982 53351.000452 +-11526.999792 -3737.999544 73392.999629 +3940.999584 4236.999929 53351.000136 +-7115.000083 -2831.999613 73099.999909 +-14232.999742 -5082.999812 67645.000324 +-3570.000011 -1963.000243 53954.000457 +-14575.999963 -8822.999905 60411.999771 +-3196.999729 -2722.999629 72739.999728 +4270.999791 -1943.999513 59089.999553 +-3930.000132 -402.000411 53659.999785 +4287.999518 -1951.000148 60834.000344 +1057.999742 2098.999992 53299.999970 +24.000007 -2810.999989 72560.000497 +-3570.000037 -280.000196 53954.000365 +7056.999709 -8415.999536 72020.000349 +7057.000090 5650.000225 72020.000014 +4099.000497 4718.000121 55719.999993 +-7115.000395 24.000272 73099.999724 +-14476.000166 -3502.000326 63961.000485 +-3569.999717 6450.999920 53954.000143 +-1163.000334 -1973.999751 53745.000092 +4723.999824 -541.000100 72200.000243 +3940.999990 3899.999923 53350.999622 +-3127.000218 5257.999652 53659.999673 +8463.000217 -1382.999504 72019.999695 +-14232.999844 -3624.000203 67645.000238 +-7390.999511 -3588.999711 73077.999992 +-5127.000472 352.999759 72981.000130 +2099.000363 16.999945 53300.000261 +-7390.999682 -6480.000469 73077.999642 +-5387.999952 7999.000376 72920.000277 +-3569.999553 2524.000332 53954.000210 +3445.999802 5627.000372 53380.000121 +-8543.000137 2878.999786 73100.000062 +-11225.000154 -2878.000184 73429.000219 +-5444.999752 -4937.000206 72929.999910 +-3539.000116 3495.999641 72743.000028 +4724.000434 -1950.999984 72200.000236 +-5387.999758 7287.000091 72920.000451 +3694.000162 -1947.999707 53364.999539 +-14412.000272 -1753.999800 63528.000480 +4724.000342 8625.000362 72199.999560 +2341.999734 -1961.000092 53299.999848 +-2071.999756 4196.000324 53480.000336 +-8543.000296 -2832.000371 73099.999810 +-5127.000024 8834.999681 72980.999971 +-13992.999602 -3825.000472 73548.000110 +3446.000174 1546.999928 53380.000489 +-3127.000366 4209.999619 53659.999561 +-5387.999685 -1258.000068 72920.000033 +-13720.999529 -8426.000197 73555.999797 +4135.999975 -1958.000343 56742.000312 +1058.000030 1057.999685 53299.999642 +2194.000288 -1954.000142 53438.999837 +1821.999693 -1961.000245 53300.000177 +-2486.000272 -2723.000311 72740.000113 +4251.999519 5994.999969 58825.999706 +-782.999723 -1966.999702 53480.000385 +-14184.999503 -3694.000155 69664.999741 +-7391.000162 -7925.000424 73077.999760 +3941.000365 3562.000286 53350.999697 +-5673.000072 -2824.999976 72920.000076 +-3929.999836 3789.999783 53660.000108 +4288.000033 5295.999782 60834.000285 +8463.000290 -4195.999621 72020.000158 +-1026.999905 2106.000122 53480.000172 +-14544.000315 6258.000031 62169.999860 +2098.999845 3140.000130 53300.000384 +17.000326 2105.999614 53480.000329 +-2817.999707 -2817.999500 72740.000297 +-5127.000216 7421.999889 72980.999545 +-14035.000213 -2961.999816 72026.999857 +3941.000206 -490.000295 53351.000305 +-3127.000000 1065.999857 53660.000041 +-14412.000070 4560.000349 63527.999884 +-1427.000275 -1616.999797 53744.000069 +-6126.000265 -2593.999720 73030.000099 +4099.000391 5762.000184 55719.999589 +3440.999902 1159.000232 53119.999985 +23.999963 -7062.000133 72559.999953 +-3164.999618 3921.000274 53840.999514 +3940.999690 6263.000241 53351.000160 +5663.999668 1434.000202 72199.999998 +3946.000045 -496.000294 54342.999676 +-3538.999923 7662.999718 72742.999936 +3946.000069 1557.999781 54343.000397 +-13992.999519 -7419.000292 73548.000211 +-14576.000246 -2018.999804 60411.999775 +4724.000039 2279.999748 72200.000311 +4253.999732 -5616.999621 72199.999908 +1940.999753 2619.999683 53447.999667 +3441.000116 3234.000032 53120.000379 +-7114.999901 4307.000119 73100.000483 +4288.000399 4738.000285 60834.000007 +4253.999724 -2797.000058 72199.999720 +5664.000222 2843.999541 72200.000437 +7056.999584 8463.000456 72020.000228 +-3930.000418 1694.000154 53659.999991 +-353.999670 -2715.999787 72559.999549 +-14162.999975 -2781.999699 68944.999901 +4287.999827 4180.999517 60834.000197 +-2071.999586 2105.999678 53480.000453 +-7390.999953 -9370.000271 73077.999510 +8462.999606 7057.000057 72020.000254 +7056.999555 2837.000361 72019.999548 +-7114.999806 8589.999936 73100.000030 +-5126.999903 -1060.000339 72980.999664 +8463.000265 -8415.999563 72019.999761 +-14475.999815 -7732.000263 63960.999905 +-14411.999736 -2454.999933 63528.000161 +4253.999680 -4207.000000 72200.000403 +-5341.000241 -2729.999555 72920.000190 +2853.000367 -1953.999662 53119.999629 +-3406.000346 -1973.999690 53659.999516 +-1775.999547 -2723.000080 72740.000246 +4217.999913 -1960.999660 58299.999623 +-12252.999887 -2905.000019 73451.999641 +-8542.999786 -1404.000473 73099.999728 +-3126.999630 16.999618 53660.000475 +4159.999910 1615.999982 57258.000198 +-2818.000192 -8501.000061 72739.999578 +-5673.000319 -5673.000048 72919.999599 +-5126.999657 -352.999916 72981.000008 +-14543.999526 4873.000287 62170.000355 +5664.000113 -5617.000339 72200.000484 +-13992.999970 -6905.000388 73548.000167 +-3906.999574 -2723.000211 72740.000342 +-5672.999570 -1399.999715 72920.000026 +-3569.999982 5890.000467 53954.000331 +4288.000173 6409.999525 60833.999858 +-5387.999815 -2682.000374 72920.000431 +-13971.000415 -3755.000354 71592.999978 +-3930.000128 1170.000156 53659.999938 +-1828.000158 -1966.999726 53479.999657 +17.000335 4196.000427 53479.999613 +-1427.000066 4924.000037 53743.999863 +-13721.000451 -9963.000322 73555.999557 +-5388.000021 3727.000164 72919.999832 +1941.000051 538.000495 53448.000163 +4287.999864 836.000460 60833.999839 +780.999670 -1960.999553 53299.999658 +-5673.000397 7144.999809 72919.999807 +-5673.000146 2871.999537 72920.000249 +533.000383 -1965.000046 53607.999748 +-13992.999662 -9985.999679 73548.000146 +4582.999714 -2702.999761 72199.999726 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/fin b/Alpha_shapes_3/demo/Alpha_shapes_3/data/fin new file mode 100644 index 000000000000..7b20bc03c7fc --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/fin @@ -0,0 +1,8 @@ +7 +5.51274721097227705 8.87625776353026552 1.95944807904169238 +9.0973375091665627 3.5350701520269201 4.7238755547204434 +0.911806739546155987 6.95856700036594145 2.36699662526417143 +5.36336900378107373 1.05840486239320186 1.22179856797203001 +0.289239615689291796 9.24621240074391082 2.17110435171762095 +1.39772879354093327 3.51084799856703622 9.44541630320511771 +7.31227573940480369 2.67306741439382023 0.511378392640958745 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/fout b/Alpha_shapes_3/demo/Alpha_shapes_3/data/fout new file mode 100644 index 000000000000..016012bd00cc --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/fout @@ -0,0 +1,17 @@ +5.51275 8.87626 1.95945 +0.911807 6.95857 2.367 +5.36337 1.0584 1.2218 +7.31228 2.67307 0.511378 +9.09734 3.53507 4.72388 +1.39773 3.51085 9.44542 +0.28924 9.24621 2.1711 +4 5 0 +5 6 0 +1 0 6 +3 2 4 +4 0 3 +2 3 1 +0 1 3 +2 5 4 +5 2 1 +6 5 1 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/head_ran.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/head_ran.pts new file mode 100644 index 000000000000..c9cacabc3ff2 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/head_ran.pts @@ -0,0 +1,857 @@ +856 +304.000000 483.000000 110.000433 +173.000000 315.000000 150.000135 +389.000000 259.000000 110.000009 +197.000000 341.000000 130.000097 +390.000000 329.000000 69.999907 +87.000000 189.000000 119.999588 +427.000000 391.000000 19.999914 +219.000000 283.000000 159.999587 +228.000000 410.000000 149.999687 +176.000000 356.000000 150.000143 +36.000000 243.000000 40.000174 +409.000000 409.000000 9.999581 +345.000000 395.000000 130.000241 +378.000000 336.000000 79.999859 +405.000000 442.000000 29.999878 +437.000000 388.000000 20.000099 +385.000000 345.000000 90.000418 +223.000000 509.000000 10.000330 +253.000000 62.000000 10.000304 +339.000000 498.000000 40.000232 +418.000000 406.000000 20.000279 +203.000000 86.000000 99.999776 +96.000000 159.000000 120.000081 +390.000000 320.000000 69.999762 +344.000000 362.000000 139.999772 +157.000000 57.000000 -0.000304 +130.000000 480.000000 40.000064 +190.000000 294.000000 160.000245 +407.000000 398.000000 30.000234 +396.000000 436.000000 40.000360 +387.000000 332.000000 49.999562 +192.000000 317.000000 149.999693 +90.000000 134.000000 99.999822 +92.000000 252.000000 130.000028 +164.000000 251.000000 159.999649 +161.000000 448.000000 120.000467 +380.000000 453.000000 50.000039 +76.000000 423.000000 39.999921 +410.000000 176.000000 40.000464 +346.000000 238.000000 140.000280 +278.000000 464.000000 130.000458 +318.000000 464.000000 110.000374 +421.000000 273.000000 39.999857 +320.000000 85.000000 9.999990 +230.000000 60.000000 40.000167 +403.000000 443.000000 9.999941 +377.000000 278.000000 129.999965 +211.000000 75.000000 79.999614 +396.000000 451.000000 19.999695 +379.000000 323.000000 100.000100 +138.000000 162.000000 149.999904 +373.000000 359.000000 119.999709 +298.000000 154.000000 140.000005 +377.000000 481.000000 19.999977 +405.000000 280.000000 99.999667 +412.000000 329.000000 20.000329 +392.000000 320.000000 80.000343 +155.000000 323.000000 159.999924 +171.000000 323.000000 149.999700 +70.000000 369.000000 60.000396 +270.000000 512.000000 100.000031 +62.000000 359.000000 10.000338 +401.000000 300.000000 49.999758 +366.000000 156.000000 99.999742 +125.000000 289.000000 150.000344 +306.000000 417.000000 140.000297 +189.000000 303.000000 160.000009 +215.000000 339.000000 140.000396 +346.000000 349.000000 139.999537 +73.000000 365.000000 69.999577 +127.000000 77.000000 70.000150 +108.000000 80.000000 9.999701 +416.000000 396.000000 29.999763 +355.000000 471.000000 70.000335 +383.000000 332.000000 79.999789 +279.000000 495.000000 109.999962 +182.000000 392.000000 139.999695 +418.000000 194.000000 20.000169 +399.000000 396.000000 49.999602 +323.000000 406.000000 139.999632 +401.000000 296.000000 70.000372 +116.000000 94.000000 90.000421 +408.000000 302.000000 39.999870 +398.000000 444.000000 39.999970 +391.000000 316.000000 59.999679 +34.000000 233.000000 29.999582 +406.000000 412.000000 20.000116 +75.000000 278.000000 109.999973 +36.000000 251.000000 19.999539 +387.000000 142.000000 -0.000290 +415.000000 231.000000 60.000112 +114.000000 84.000000 59.999969 +176.000000 309.000000 159.999733 +104.000000 469.000000 79.999782 +134.000000 80.000000 80.000475 +365.000000 453.000000 60.000166 +76.000000 325.000000 100.000301 +372.000000 346.000000 120.000425 +384.000000 160.000000 79.999710 +352.000000 318.000000 129.999934 +385.000000 317.000000 40.000493 +381.000000 319.000000 110.000497 +103.000000 84.000000 19.999857 +400.000000 406.000000 40.000279 +354.000000 491.000000 60.000459 +419.000000 282.000000 10.000487 +203.000000 507.000000 60.000487 +235.000000 510.000000 89.999674 +444.000000 387.000000 29.999811 +391.000000 313.000000 99.999893 +398.000000 450.000000 9.999883 +131.000000 300.000000 150.000225 +83.000000 110.000000 40.000016 +187.000000 503.000000 -0.000434 +155.000000 323.000000 150.000140 +212.000000 54.000000 19.999945 +97.000000 291.000000 129.999725 +148.000000 308.000000 149.999883 +343.000000 211.000000 139.999546 +198.000000 328.000000 120.000389 +431.000000 405.000000 19.999725 +400.000000 300.000000 89.999605 +400.000000 184.000000 80.000122 +362.000000 340.000000 129.999568 +347.000000 272.000000 140.000053 +104.000000 251.000000 140.000464 +71.000000 131.000000 59.999648 +110.000000 94.000000 79.999923 +374.000000 479.000000 40.000239 +372.000000 328.000000 99.999759 +374.000000 456.000000 49.999600 +217.000000 466.000000 129.999695 +207.000000 340.000000 119.999813 +394.000000 298.000000 109.999600 +398.000000 158.000000 20.000463 +376.000000 422.000000 69.999535 +419.000000 204.000000 39.999848 +397.000000 425.000000 39.999772 +425.000000 394.000000 -0.000166 +395.000000 469.000000 0.000180 +203.000000 347.000000 130.000090 +175.000000 356.000000 159.999756 +337.000000 482.000000 79.999700 +403.000000 290.000000 100.000395 +384.000000 441.000000 59.999825 +103.000000 268.000000 139.999921 +88.000000 158.000000 110.000417 +420.000000 264.000000 49.999543 +394.000000 309.000000 59.999763 +403.000000 385.000000 49.999907 +398.000000 274.000000 109.999683 +398.000000 396.000000 30.000477 +188.000000 376.000000 149.999695 +251.000000 467.000000 129.999727 +410.000000 173.000000 -0.000375 +419.000000 388.000000 30.000459 +53.000000 178.000000 70.000064 +386.000000 456.000000 29.999720 +230.000000 432.000000 139.999657 +209.000000 102.000000 119.999952 +399.000000 261.000000 100.000481 +34.000000 263.000000 9.999982 +387.000000 185.000000 100.000227 +166.000000 200.000000 160.000091 +397.000000 459.000000 10.000459 +112.000000 355.000000 119.999623 +151.000000 416.000000 119.999934 +387.000000 396.000000 70.000126 +414.000000 205.000000 59.999887 +84.000000 431.000000 49.999623 +54.000000 333.000000 40.000151 +226.000000 489.000000 120.000098 +210.000000 331.000000 139.999959 +62.000000 355.000000 59.999599 +128.000000 201.000000 149.999744 +399.000000 310.000000 40.000499 +285.000000 137.000000 129.999978 +271.000000 90.000000 79.999948 +392.000000 406.000000 39.999814 +126.000000 71.000000 19.999775 +395.000000 316.000000 69.999631 +196.000000 340.000000 140.000123 +172.000000 101.000000 119.999703 +386.000000 386.000000 20.000299 +412.000000 373.000000 20.000375 +368.000000 337.000000 119.999973 +192.000000 56.000000 29.999926 +326.000000 425.000000 129.999868 +328.000000 124.000000 100.000456 +419.000000 252.000000 60.000317 +101.000000 187.000000 130.000292 +282.000000 510.000000 40.000476 +48.000000 169.000000 19.999612 +368.000000 263.000000 130.000181 +106.000000 86.000000 40.000336 +137.000000 485.000000 60.000020 +337.000000 498.000000 10.000284 +179.000000 390.000000 149.999695 +57.000000 165.000000 60.000363 +370.000000 319.000000 119.999686 +159.000000 305.000000 159.999920 +380.000000 410.000000 69.999540 +66.000000 161.000000 80.000411 +211.000000 325.000000 120.000116 +207.000000 322.000000 110.000247 +136.000000 139.000000 139.999844 +425.000000 364.000000 0.000175 +46.000000 181.000000 50.000130 +407.000000 374.000000 39.999586 +410.000000 170.000000 9.999842 +416.000000 288.000000 40.000290 +301.000000 198.000000 149.999552 +368.000000 431.000000 79.999967 +95.000000 115.000000 89.999527 +190.000000 504.000000 40.000392 +431.000000 381.000000 39.999951 +389.000000 385.000000 60.000331 +111.000000 236.000000 139.999941 +305.000000 86.000000 49.999887 +174.000000 344.000000 150.000400 +406.000000 290.000000 79.999632 +411.000000 176.000000 30.000029 +403.000000 401.000000 0.000395 +186.000000 371.000000 149.999597 +396.000000 378.000000 19.999972 +407.000000 393.000000 50.000248 +314.000000 84.000000 30.000111 +82.000000 442.000000 40.000237 +190.000000 63.000000 59.999546 +418.000000 280.000000 50.000063 +107.000000 109.000000 99.999534 +429.000000 377.000000 20.000148 +241.000000 399.000000 149.999519 +231.000000 480.000000 119.999633 +293.000000 494.000000 110.000320 +386.000000 395.000000 50.000398 +189.000000 304.000000 150.000129 +359.000000 426.000000 100.000239 +404.000000 445.000000 20.000042 +390.000000 362.000000 60.000269 +255.000000 393.000000 149.999647 +266.000000 511.000000 60.000270 +445.000000 377.000000 19.999922 +238.000000 512.000000 80.000183 +263.000000 74.000000 60.000051 +345.000000 327.000000 130.000341 +297.000000 510.000000 69.999558 +204.000000 336.000000 110.000464 +93.000000 273.000000 130.000439 +156.000000 143.000000 149.999849 +214.000000 414.000000 150.000013 +208.000000 475.000000 130.000315 +174.000000 350.000000 149.999545 +406.000000 179.000000 59.999608 +397.000000 418.000000 39.999645 +197.000000 340.000000 109.999887 +305.000000 95.000000 70.000078 +223.000000 451.000000 130.000063 +67.000000 291.000000 99.999993 +374.000000 461.000000 59.999831 +395.000000 317.000000 89.999780 +140.000000 482.000000 100.000201 +364.000000 361.000000 129.999692 +396.000000 462.000000 0.000002 +403.000000 421.000000 10.000436 +373.000000 174.000000 109.999736 +393.000000 458.000000 19.999949 +379.000000 456.000000 39.999971 +396.000000 240.000000 100.000184 +71.000000 118.000000 20.000391 +364.000000 427.000000 90.000438 +390.000000 440.000000 49.999887 +44.000000 183.000000 0.000039 +75.000000 348.000000 90.000315 +405.000000 315.000000 0.000238 +320.000000 96.000000 60.000082 +85.000000 447.000000 50.000024 +391.000000 313.000000 40.000474 +303.000000 506.000000 29.999976 +346.000000 147.000000 110.000432 +203.000000 323.000000 120.000169 +185.000000 502.000000 90.000110 +135.000000 94.000000 100.000385 +385.000000 326.000000 99.999934 +388.000000 474.000000 39.999867 +43.000000 221.000000 70.000067 +415.000000 267.000000 79.999572 +401.000000 300.000000 80.000252 +54.000000 190.000000 79.999547 +388.000000 414.000000 49.999501 +400.000000 435.000000 29.999929 +179.000000 325.000000 149.999681 +390.000000 475.000000 20.000480 +210.000000 329.000000 110.000432 +124.000000 264.000000 149.999656 +380.000000 357.000000 110.000447 +35.000000 221.000000 0.000130 +422.000000 256.000000 -0.000478 +297.000000 502.000000 100.000074 +387.000000 404.000000 40.000484 +121.000000 142.000000 129.999588 +363.000000 488.000000 49.999644 +81.000000 441.000000 -0.000224 +310.000000 125.000000 110.000381 +202.000000 330.000000 129.999580 +154.000000 79.000000 90.000488 +349.000000 281.000000 139.999939 +266.000000 452.000000 139.999876 +419.000000 273.000000 60.000253 +60.000000 291.000000 90.000373 +53.000000 160.000000 30.000462 +401.000000 327.000000 29.999868 +388.000000 333.000000 90.000054 +409.000000 393.000000 39.999876 +329.000000 501.000000 19.999774 +66.000000 203.000000 99.999570 +84.000000 101.000000 0.000252 +378.000000 372.000000 110.000496 +177.000000 378.000000 160.000055 +378.000000 208.000000 120.000080 +39.000000 260.000000 49.999598 +113.000000 439.000000 90.000322 +386.000000 404.000000 50.000352 +88.000000 335.000000 110.000457 +408.000000 239.000000 80.000309 +385.000000 339.000000 79.999563 +65.000000 359.000000 -0.000186 +388.000000 339.000000 70.000118 +194.000000 479.000000 130.000054 +205.000000 359.000000 150.000249 +308.000000 366.000000 149.999771 +411.000000 305.000000 9.999644 +336.000000 473.000000 90.000141 +107.000000 380.000000 100.000196 +413.000000 210.000000 69.999762 +417.000000 191.000000 9.999593 +422.000000 243.000000 30.000485 +290.000000 76.000000 39.999602 +387.000000 321.000000 99.999700 +107.000000 439.000000 79.999777 +240.000000 254.000000 160.000437 +422.000000 265.000000 9.999794 +49.000000 243.000000 79.999624 +396.000000 392.000000 29.999964 +69.000000 389.000000 9.999977 +393.000000 327.000000 79.999595 +383.000000 337.000000 90.000313 +124.000000 155.000000 139.999884 +390.000000 328.000000 89.999610 +388.000000 310.000000 109.999974 +401.000000 437.000000 20.000420 +181.000000 305.000000 149.999817 +122.000000 121.000000 119.999998 +81.000000 441.000000 20.000065 +107.000000 303.000000 129.999801 +51.000000 295.000000 60.000192 +97.000000 458.000000 70.000150 +112.000000 293.000000 140.000309 +392.000000 147.000000 29.999844 +395.000000 458.000000 -0.000345 +396.000000 471.000000 20.000089 +205.000000 445.000000 139.999722 +392.000000 425.000000 49.999927 +407.000000 291.000000 60.000455 +364.000000 329.000000 109.999573 +334.000000 449.000000 110.000287 +377.000000 296.000000 129.999513 +202.000000 396.000000 149.999929 +68.000000 386.000000 19.999990 +376.000000 332.000000 89.999690 +442.000000 399.000000 20.000326 +388.000000 295.000000 120.000295 +387.000000 341.000000 50.000408 +112.000000 81.000000 49.999621 +410.000000 386.000000 50.000226 +59.000000 311.000000 80.000359 +330.000000 499.000000 80.000308 +199.000000 332.000000 110.000351 +202.000000 332.000000 140.000116 +38.000000 196.000000 30.000366 +206.000000 407.000000 150.000108 +385.000000 458.000000 39.999801 +178.000000 370.000000 150.000203 +74.000000 419.000000 10.000074 +417.000000 405.000000 29.999702 +47.000000 272.000000 69.999870 +164.000000 373.000000 160.000203 +408.000000 409.000000 29.999548 +376.000000 335.000000 99.999615 +399.000000 396.000000 19.999683 +334.000000 491.000000 79.999633 +379.000000 478.000000 -0.000167 +303.000000 471.000000 120.000457 +291.000000 478.000000 120.000436 +400.000000 433.000000 0.000031 +90.000000 450.000000 59.999865 +319.000000 291.000000 150.000192 +33.000000 256.000000 20.000497 +445.000000 393.000000 10.000151 +341.000000 497.000000 69.999978 +390.000000 240.000000 110.000036 +276.000000 69.000000 19.999504 +173.000000 57.000000 40.000059 +209.000000 359.000000 139.999774 +387.000000 392.000000 20.000481 +318.000000 503.000000 89.999523 +378.000000 478.000000 39.999991 +84.000000 285.000000 119.999551 +337.000000 335.000000 140.000134 +117.000000 372.000000 109.999629 +359.000000 458.000000 79.999820 +146.000000 67.000000 60.000076 +377.000000 406.000000 90.000477 +381.000000 316.000000 109.999684 +48.000000 183.000000 60.000220 +302.000000 452.000000 130.000413 +138.000000 100.000000 109.999758 +268.000000 511.000000 20.000319 +210.000000 324.000000 109.999505 +331.000000 180.000000 139.999527 +354.000000 422.000000 109.999787 +287.000000 509.000000 80.000157 +217.000000 437.000000 139.999915 +348.000000 294.000000 139.999826 +145.000000 109.000000 119.999748 +86.000000 413.000000 69.999800 +407.000000 365.000000 39.999844 +393.000000 458.000000 29.999694 +180.000000 409.000000 139.999597 +79.000000 429.000000 0.000369 +385.000000 468.000000 50.000300 +167.000000 68.000000 70.000425 +424.000000 392.000000 40.000496 +334.000000 328.000000 139.999843 +88.000000 115.000000 79.999614 +185.000000 284.000000 160.000326 +178.000000 122.000000 140.000324 +96.000000 434.000000 69.999906 +138.000000 390.000000 119.999927 +379.000000 449.000000 60.000479 +383.000000 360.000000 100.000229 +394.000000 447.000000 40.000372 +429.000000 374.000000 0.000267 +250.000000 447.000000 140.000291 +374.000000 395.000000 99.999977 +421.000000 400.000000 29.999804 +173.000000 498.000000 100.000223 +112.000000 80.000000 29.999608 +397.000000 307.000000 69.999990 +94.000000 95.000000 30.000227 +365.000000 214.000000 130.000457 +69.000000 124.000000 -0.000140 +214.000000 342.000000 129.999922 +378.000000 324.000000 50.000407 +170.000000 92.000000 110.000496 +396.000000 206.000000 99.999936 +385.000000 359.000000 89.999911 +262.000000 483.000000 120.000212 +73.000000 418.000000 0.000094 +263.000000 117.000000 120.000412 +392.000000 469.000000 40.000013 +203.000000 340.000000 120.000411 +206.000000 141.000000 149.999614 +65.000000 250.000000 100.000372 +408.000000 263.000000 89.999711 +356.000000 326.000000 120.000249 +390.000000 318.000000 90.000241 +357.000000 369.000000 129.999641 +200.000000 332.000000 149.999692 +356.000000 314.000000 130.000478 +206.000000 335.000000 150.000105 +388.000000 349.000000 79.999724 +422.000000 361.000000 29.999572 +336.000000 384.000000 139.999898 +371.000000 477.000000 49.999938 +383.000000 332.000000 70.000333 +358.000000 117.000000 49.999606 +228.000000 511.000000 109.999685 +391.000000 449.000000 50.000425 +210.000000 331.000000 130.000294 +414.000000 332.000000 10.000205 +79.000000 429.000000 20.000389 +425.000000 348.000000 19.999522 +188.000000 500.000000 120.000132 +414.000000 395.000000 19.999694 +333.000000 502.000000 0.000474 +163.000000 74.000000 80.000256 +414.000000 352.000000 0.000273 +396.000000 471.000000 29.999511 +161.000000 113.000000 130.000121 +38.000000 271.000000 0.000064 +406.000000 390.000000 29.999509 +255.000000 136.000000 140.000180 +143.000000 362.000000 130.000256 +205.000000 348.000000 149.999703 +370.000000 484.000000 39.999679 +361.000000 394.000000 119.999961 +236.000000 511.000000 69.999764 +161.000000 344.000000 150.000324 +271.000000 99.000000 100.000087 +347.000000 129.000000 90.000352 +383.000000 473.000000 20.000348 +418.000000 261.000000 69.999636 +342.000000 477.000000 80.000249 +240.000000 212.000000 159.999945 +93.000000 387.000000 89.999525 +214.000000 335.000000 130.000266 +434.000000 365.000000 19.999711 +377.000000 248.000000 120.000476 +84.000000 227.000000 120.000431 +391.000000 462.000000 39.999559 +390.000000 473.000000 -0.000072 +442.000000 378.000000 29.999932 +357.000000 126.000000 69.999812 +64.000000 143.000000 49.999661 +339.000000 310.000000 139.999787 +376.000000 446.000000 69.999556 +421.000000 272.000000 29.999579 +383.000000 398.000000 79.999947 +377.000000 339.000000 90.000050 +357.000000 461.000000 70.000494 +381.000000 346.000000 99.999989 +198.000000 335.000000 129.999550 +383.000000 383.000000 89.999876 +392.000000 395.000000 50.000489 +385.000000 318.000000 50.000068 +196.000000 506.000000 109.999506 +183.000000 138.000000 150.000295 +434.000000 396.000000 0.000059 +38.000000 219.000000 50.000182 +390.000000 284.000000 120.000395 +365.000000 347.000000 129.999830 +74.000000 118.000000 30.000426 +207.000000 122.000000 140.000380 +113.000000 116.000000 109.999784 +416.000000 292.000000 30.000362 +414.000000 279.000000 80.000030 +441.000000 386.000000 0.000095 +144.000000 337.000000 139.999525 +386.000000 148.000000 60.000351 +93.000000 409.000000 79.999575 +170.000000 409.000000 129.999719 +104.000000 348.000000 119.999514 +377.000000 416.000000 80.000066 +392.000000 410.000000 40.000224 +322.000000 258.000000 150.000354 +387.000000 142.000000 39.999842 +378.000000 327.000000 109.999670 +403.000000 268.000000 99.999822 +219.000000 183.000000 160.000476 +196.000000 361.000000 150.000187 +436.000000 397.000000 30.000102 +187.000000 334.000000 150.000416 +361.000000 476.000000 60.000302 +265.000000 462.000000 129.999811 +357.000000 334.000000 129.999518 +397.000000 317.000000 80.000196 +201.000000 110.000000 129.999544 +170.000000 292.000000 159.999874 +376.000000 342.000000 110.000096 +288.000000 382.000000 150.000470 +385.000000 328.000000 40.000208 +380.000000 263.000000 120.000184 +279.000000 96.000000 90.000454 +298.000000 508.000000 10.000017 +391.000000 274.000000 119.999504 +80.000000 121.000000 70.000114 +414.000000 240.000000 70.000303 +72.000000 385.000000 50.000489 +312.000000 443.000000 129.999958 +381.000000 307.000000 119.999893 +147.000000 60.000000 29.999771 +233.000000 512.000000 49.999755 +129.000000 479.000000 69.999985 +383.000000 474.000000 -0.000300 +119.000000 474.000000 50.000440 +162.000000 87.000000 99.999822 +388.000000 320.000000 60.000475 +208.000000 92.000000 110.000454 +402.000000 441.000000 -0.000434 +247.000000 61.000000 30.000254 +60.000000 177.000000 89.999508 +375.000000 338.000000 100.000112 +388.000000 475.000000 30.000200 +169.000000 361.000000 150.000305 +73.000000 138.000000 69.999613 +151.000000 130.000000 140.000243 +292.000000 428.000000 139.999652 +43.000000 288.000000 40.000209 +411.000000 196.000000 69.999886 +191.000000 440.000000 139.999870 +188.000000 393.000000 150.000062 +379.000000 331.000000 100.000426 +421.000000 211.000000 10.000373 +151.000000 489.000000 110.000018 +214.000000 501.000000 120.000350 +186.000000 475.000000 130.000205 +119.000000 171.000000 139.999644 +166.000000 495.000000 49.999638 +94.000000 139.000000 110.000263 +361.000000 113.000000 30.000475 +287.000000 462.000000 129.999600 +119.000000 472.000000 0.000324 +336.000000 499.000000 59.999701 +397.000000 309.000000 79.999503 +396.000000 468.000000 9.999539 +418.000000 219.000000 50.000021 +188.000000 53.000000 9.999892 +317.000000 484.000000 99.999771 +87.000000 99.000000 9.999789 +440.000000 400.000000 10.000026 +77.000000 414.000000 50.000086 +59.000000 334.000000 69.999692 +389.000000 473.000000 10.000131 +93.000000 364.000000 99.999586 +191.000000 380.000000 140.000324 +397.000000 463.000000 20.000440 +314.000000 83.000000 -0.000144 +404.000000 252.000000 89.999526 +192.000000 55.000000 0.000057 +37.000000 211.000000 39.999811 +408.000000 337.000000 0.000463 +386.000000 321.000000 50.000145 +57.000000 307.000000 69.999726 +399.000000 434.000000 9.999597 +440.000000 394.000000 0.000167 +194.000000 347.000000 139.999819 +187.000000 359.000000 160.000408 +82.000000 430.000000 30.000265 +292.000000 510.000000 90.000293 +179.000000 291.000000 160.000422 +346.000000 484.000000 69.999785 +433.000000 395.000000 19.999927 +238.000000 463.000000 129.999988 +431.000000 404.000000 10.000165 +125.000000 346.000000 130.000258 +364.000000 483.000000 50.000249 +152.000000 60.000000 10.000471 +412.000000 390.000000 50.000296 +167.000000 492.000000 119.999873 +162.000000 360.000000 140.000440 +76.000000 394.000000 60.000355 +404.000000 389.000000 0.000108 +131.000000 68.000000 10.000393 +79.000000 430.000000 9.999539 +414.000000 282.000000 59.999976 +171.000000 344.000000 160.000494 +140.000000 307.000000 150.000051 +371.000000 276.000000 130.000475 +410.000000 320.000000 9.999772 +399.000000 300.000000 60.000152 +410.000000 275.000000 90.000213 +178.000000 501.000000 69.999844 +396.000000 463.000000 29.999717 +270.000000 511.000000 0.000287 +105.000000 365.000000 110.000111 +36.000000 263.000000 29.999728 +42.000000 269.000000 60.000204 +152.000000 382.000000 129.999554 +139.000000 124.000000 129.999830 +178.000000 499.000000 9.999512 +380.000000 329.000000 60.000364 +195.000000 398.000000 149.999704 +105.000000 138.000000 120.000289 +130.000000 480.000000 19.999848 +241.000000 504.000000 110.000227 +249.000000 61.000000 0.000215 +149.000000 63.000000 50.000394 +435.000000 381.000000 19.999612 +370.000000 120.000000 19.999582 +395.000000 363.000000 50.000173 +390.000000 455.000000 0.000083 +345.000000 465.000000 89.999529 +321.000000 451.000000 120.000069 +232.000000 72.000000 69.999566 +78.000000 441.000000 10.000433 +411.000000 254.000000 79.999644 +349.000000 104.000000 9.999972 +40.000000 224.000000 59.999868 +401.000000 417.000000 30.000379 +55.000000 328.000000 60.000186 +136.000000 66.000000 39.999869 +387.000000 459.000000 19.999694 +238.000000 120.000000 129.999648 +380.000000 232.000000 119.999852 +387.000000 336.000000 59.999680 +386.000000 316.000000 100.000192 +202.000000 323.000000 110.000169 +421.000000 243.000000 39.999865 +378.000000 477.000000 19.999946 +403.000000 407.000000 0.000441 +117.000000 473.000000 10.000461 +388.000000 454.000000 40.000397 +36.000000 209.000000 9.999788 +344.000000 158.000000 120.000283 +167.000000 319.000000 160.000206 +80.000000 432.000000 39.999684 +124.000000 318.000000 139.999804 +379.000000 285.000000 130.000148 +420.000000 205.000000 29.999982 +364.000000 457.000000 60.000173 +314.000000 319.000000 150.000372 +271.000000 387.000000 149.999929 +405.000000 324.000000 -0.000038 +393.000000 305.000000 49.999780 +380.000000 472.000000 50.000100 +392.000000 455.000000 10.000360 +430.000000 366.000000 30.000433 +88.000000 433.000000 60.000203 +400.000000 426.000000 20.000350 +198.000000 506.000000 19.999553 +369.000000 321.000000 109.999993 +389.000000 376.000000 70.000300 +447.000000 391.000000 19.999590 +78.000000 255.000000 120.000420 +201.000000 310.000000 150.000380 +385.000000 330.000000 99.999671 +313.000000 506.000000 50.000090 +398.000000 286.000000 110.000315 +366.000000 325.000000 119.999806 +431.000000 389.000000 39.999680 +71.000000 122.000000 9.999706 +416.000000 393.000000 -0.000388 +339.000000 98.000000 40.000373 +354.000000 120.000000 59.999789 +163.000000 480.000000 119.999792 +209.000000 78.000000 90.000471 +340.000000 454.000000 100.000347 +344.000000 120.000000 79.999566 +34.000000 221.000000 20.000076 +130.000000 440.000000 100.000378 +367.000000 328.000000 100.000402 +372.000000 485.000000 29.999664 +35.000000 247.000000 -0.000266 +230.000000 454.000000 130.000398 +155.000000 314.000000 150.000438 +386.000000 168.000000 89.999942 +423.000000 398.000000 20.000409 +252.000000 68.000000 49.999609 +405.000000 314.000000 30.000086 +78.000000 140.000000 90.000406 +373.000000 453.000000 60.000142 +159.000000 328.000000 150.000142 +74.000000 417.000000 30.000409 +330.000000 91.000000 20.000081 +388.000000 332.000000 80.000109 +385.000000 328.000000 60.000013 +174.000000 447.000000 130.000073 +316.000000 226.000000 149.999931 +393.000000 453.000000 30.000415 +361.000000 321.000000 119.999624 +376.000000 465.000000 60.000467 +366.000000 448.000000 79.999941 +58.000000 346.000000 50.000010 +391.000000 384.000000 50.000228 +162.000000 396.000000 129.999672 +425.000000 378.000000 40.000076 +421.000000 278.000000 -0.000240 +179.000000 381.000000 150.000273 +355.000000 483.000000 60.000125 +82.000000 442.000000 29.999998 +83.000000 108.000000 50.000310 +407.000000 175.000000 49.999596 +74.000000 418.000000 19.999690 +132.000000 415.000000 109.999606 +327.000000 489.000000 90.000109 +408.000000 211.000000 79.999683 +416.000000 201.000000 50.000427 +69.000000 380.000000 40.000280 +235.000000 151.000000 150.000472 +369.000000 307.000000 130.000229 +396.000000 164.000000 70.000265 +308.000000 338.000000 149.999970 +175.000000 330.000000 159.999778 +150.000000 349.000000 139.999937 +421.000000 219.000000 -0.000068 +444.000000 384.000000 9.999661 +407.000000 335.000000 29.999975 +123.000000 480.000000 90.000020 +388.000000 207.000000 110.000124 +190.000000 372.000000 140.000446 +127.000000 482.000000 30.000090 +276.000000 476.000000 120.000370 +413.000000 289.000000 49.999591 +240.000000 510.000000 30.000054 +410.000000 316.000000 20.000107 +354.000000 109.000000 -0.000420 +56.000000 226.000000 90.000305 +55.000000 346.000000 20.000297 +373.000000 329.000000 109.999831 +421.000000 269.000000 20.000125 +417.000000 194.000000 -0.000244 +377.000000 477.000000 10.000096 +311.000000 136.000000 120.000023 +355.000000 326.000000 130.000433 +84.000000 110.000000 60.000454 +202.000000 506.000000 80.000296 +398.000000 392.000000 0.000118 +261.000000 501.000000 110.000266 +386.000000 140.000000 10.000112 +75.000000 210.000000 110.000483 +418.000000 392.000000 39.999772 +47.000000 172.000000 39.999530 +201.000000 61.000000 50.000348 +174.000000 426.000000 129.999769 +406.000000 287.000000 89.999588 +406.000000 294.000000 50.000482 +178.000000 464.000000 129.999690 +379.000000 481.000000 0.000359 +66.000000 135.000000 40.000472 +439.000000 380.000000 -0.000057 +410.000000 300.000000 0.000483 +400.000000 198.000000 90.000463 +396.000000 305.000000 99.999628 +112.000000 327.000000 129.999537 +400.000000 351.000000 39.999731 +285.000000 445.000000 140.000481 +194.000000 345.000000 120.000109 +395.000000 373.000000 49.999714 +417.000000 277.000000 69.999982 +220.000000 511.000000 100.000036 +368.000000 181.000000 119.999800 +330.000000 162.000000 130.000194 +355.000000 188.000000 130.000376 +158.000000 58.000000 20.000298 +402.000000 419.000000 0.000043 +389.000000 147.000000 50.000103 +77.000000 161.000000 99.999915 +99.000000 98.000000 69.999881 +383.000000 472.000000 10.000356 +123.000000 366.000000 120.000131 +109.000000 78.000000 -0.000493 +441.000000 394.000000 29.999848 +118.000000 405.000000 100.000021 +148.000000 454.000000 109.999506 +416.000000 405.000000 10.000422 +214.000000 331.000000 120.000073 +377.000000 481.000000 9.999558 +381.000000 413.000000 59.999620 +400.000000 448.000000 30.000243 +185.000000 358.000000 149.999663 +194.000000 362.000000 139.999629 +184.000000 183.000000 160.000453 +391.000000 348.000000 50.000085 +378.000000 477.000000 30.000336 +314.000000 349.000000 150.000272 +159.000000 302.000000 150.000093 +70.000000 396.000000 29.999689 +186.000000 428.000000 140.000092 +384.000000 460.000000 50.000420 +240.000000 438.000000 139.999721 +384.000000 426.000000 59.999785 +396.000000 389.000000 50.000117 +210.000000 348.000000 139.999537 +46.000000 171.000000 9.999837 +173.000000 498.000000 30.000387 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/skull.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/skull.pts new file mode 100644 index 000000000000..563ef228171a --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/skull.pts @@ -0,0 +1,27088 @@ + 106.2500 116.5000 -8.0 + 104.5000 117.2500 -8.0 + 102.2500 119.5000 -8.0 + 97.2500 129.5000 -8.0 + 93.5000 139.2500 -8.0 + 93.2500 147.5000 -8.0 + 94.2500 149.5000 -8.0 + 95.2500 155.5000 -8.0 + 99.2500 161.5000 -8.0 + 102.2500 163.5000 -8.0 + 106.5000 163.7500 -8.0 + 110.5000 160.7500 -8.0 + 113.7500 151.5000 -8.0 + 117.5000 143.7500 -8.0 + 118.5000 138.7500 -8.0 + 118.7500 131.5000 -8.0 + 115.7500 120.5000 -8.0 + 112.7500 116.5000 -8.0 + 105.2500 106.5000 -10.0 + 100.5000 108.2500 -10.0 + 96.2500 112.5000 -10.0 + 92.5000 119.2500 -10.0 + 91.2500 125.5000 -10.0 + 87.5000 135.2500 -10.0 + 87.2500 153.5000 -10.0 + 89.2500 159.5000 -10.0 + 89.2500 163.5000 -10.0 + 94.2500 173.5000 -10.0 + 95.5000 173.7500 -10.0 + 97.5000 175.7500 -10.0 + 102.5000 176.7500 -10.0 + 111.5000 173.7500 -10.0 + 114.7500 170.5000 -10.0 + 119.7500 160.5000 -10.0 + 121.7500 151.5000 -10.0 + 123.7500 147.5000 -10.0 + 125.7500 140.5000 -10.0 + 126.7500 133.5000 -10.0 + 125.7500 131.5000 -10.0 + 125.7500 127.5000 -10.0 + 122.7500 116.5000 -10.0 + 118.7500 110.5000 -10.0 + 111.7500 106.5000 -10.0 + 103.2500 100.5000 -12.0 + 97.5000 103.2500 -12.0 + 92.5000 108.2500 -12.0 + 87.2500 117.5000 -12.0 + 85.2500 126.5000 -12.0 + 83.2500 130.5000 -12.0 + 81.5000 139.2500 -12.0 + 81.2500 148.5000 -12.0 + 82.2500 150.5000 -12.0 + 82.2500 155.5000 -12.0 + 83.2500 157.5000 -12.0 + 84.2500 165.5000 -12.0 + 87.2500 175.5000 -12.0 + 93.5000 181.7500 -12.0 + 100.2500 183.5000 -12.0 + 104.5000 183.7500 -12.0 + 115.5000 179.7500 -12.0 + 121.7500 172.5000 -12.0 + 124.7500 166.5000 -12.0 + 127.7500 151.5000 -12.0 + 131.5000 140.7500 -12.0 + 131.7500 127.5000 -12.0 + 130.7500 125.5000 -12.0 + 129.7500 119.5000 -12.0 + 124.7500 109.5000 -12.0 + 119.5000 104.2500 -12.0 + 112.7500 100.5000 -12.0 + 102.2500 95.5000 -14.0 + 96.5000 98.2500 -14.0 + 88.2500 106.5000 -14.0 + 83.2500 114.5000 -14.0 + 77.5000 137.2500 -14.0 + 77.2500 152.5000 -14.0 + 78.2500 154.5000 -14.0 + 78.2500 160.5000 -14.0 + 79.2500 162.5000 -14.0 + 79.2500 167.5000 -14.0 + 83.2500 178.5000 -14.0 + 87.2500 183.5000 -14.0 + 91.5000 186.7500 -14.0 + 103.5000 188.7500 -14.0 + 105.5000 187.7500 -14.0 + 110.5000 187.7500 -14.0 + 118.5000 183.7500 -14.0 + 125.7500 176.5000 -14.0 + 130.5000 168.7500 -14.0 + 132.7500 152.5000 -14.0 + 135.5000 143.7500 -14.0 + 136.7500 129.5000 -14.0 + 135.7500 127.5000 -14.0 + 134.7500 119.5000 -14.0 + 128.7500 107.5000 -14.0 + 121.5000 100.2500 -14.0 + 112.7500 95.5000 -14.0 + 107.7500 123.5000 -14.0 + 108.5000 122.7500 -14.0 + 109.2500 123.5000 -14.0 + 109.2500 133.5000 -14.0 + 110.2500 135.5000 -14.0 + 109.5000 137.2500 -14.0 + 109.2500 142.5000 -14.0 + 110.2500 144.5000 -14.0 + 110.2500 147.5000 -14.0 + 112.2500 151.5000 -14.0 + 112.2500 153.5000 -14.0 + 111.2500 156.5000 -14.0 + 108.5000 160.2500 -14.0 + 106.5000 161.2500 -14.0 + 104.5000 156.2500 -14.0 + 101.5000 157.2500 -14.0 + 100.5000 159.2500 -14.0 + 98.5000 158.2500 -14.0 + 92.7500 153.5000 -14.0 + 92.7500 149.5000 -14.0 + 94.5000 147.7500 -14.0 + 96.5000 146.7500 -14.0 + 94.7500 143.5000 -14.0 + 94.7500 138.5000 -14.0 + 96.7500 136.5000 -14.0 + 99.5000 132.7500 -14.0 + 101.2500 133.5000 -14.0 + 101.2500 136.5000 -14.0 + 103.2500 138.5000 -14.0 + 105.7500 137.5000 -14.0 + 101.2500 91.5000 -16.0 + 95.5000 94.2500 -16.0 + 87.5000 101.2500 -16.0 + 84.2500 105.5000 -16.0 + 78.2500 117.5000 -16.0 + 73.5000 137.2500 -16.0 + 73.2500 153.5000 -16.0 + 74.2500 155.5000 -16.0 + 74.2500 163.5000 -16.0 + 75.2500 165.5000 -16.0 + 75.2500 169.5000 -16.0 + 76.2500 171.5000 -16.0 + 76.2500 173.5000 -16.0 + 81.2500 183.5000 -16.0 + 86.2500 188.5000 -16.0 + 91.2500 191.5000 -16.0 + 100.5000 191.7500 -16.0 + 102.2500 192.5000 -16.0 + 111.7500 192.5000 -16.0 + 118.5000 189.7500 -16.0 + 127.7500 181.5000 -16.0 + 135.7500 168.5000 -16.0 + 140.7500 133.5000 -16.0 + 139.7500 131.5000 -16.0 + 139.7500 124.5000 -16.0 + 138.7500 122.5000 -16.0 + 137.7500 116.5000 -16.0 + 133.7500 107.5000 -16.0 + 126.7500 99.5000 -16.0 + 122.5000 96.2500 -16.0 + 112.7500 91.5000 -16.0 + 105.7500 108.5000 -16.0 + 107.5000 107.7500 -16.0 + 109.2500 110.5000 -16.0 + 115.5000 114.7500 -16.0 + 117.2500 117.5000 -16.0 + 117.2500 120.5000 -16.0 + 115.5000 129.2500 -16.0 + 115.2500 135.5000 -16.0 + 114.2500 137.5000 -16.0 + 115.2500 139.5000 -16.0 + 115.2500 150.5000 -16.0 + 116.2500 152.5000 -16.0 + 115.5000 153.2500 -16.0 + 115.2500 160.5000 -16.0 + 111.5000 171.2500 -16.0 + 102.5000 170.2500 -16.0 + 98.5000 172.2500 -16.0 + 92.7500 169.5000 -16.0 + 92.7500 166.5000 -16.0 + 90.7500 162.5000 -16.0 + 90.7500 159.5000 -16.0 + 89.7500 157.5000 -16.0 + 89.7500 149.5000 -16.0 + 90.5000 147.7500 -16.0 + 90.7500 140.5000 -16.0 + 94.5000 134.7500 -16.0 + 96.5000 126.7500 -16.0 + 96.7500 121.5000 -16.0 + 98.7500 115.5000 -16.0 + 102.5000 112.7500 -16.0 + 93.7500 176.5000 -16.0 + 95.5000 175.7500 -16.0 + 97.2500 177.5000 -16.0 + 96.5000 181.2500 -16.0 + 104.2500 87.5000 -18.0 + 103.5000 88.2500 -18.0 + 99.5000 88.2500 -18.0 + 91.5000 93.2500 -18.0 + 87.5000 96.2500 -18.0 + 81.2500 103.5000 -18.0 + 75.5000 114.2500 -18.0 + 75.2500 116.5000 -18.0 + 74.2500 118.5000 -18.0 + 73.2500 123.5000 -18.0 + 72.5000 125.2500 -18.0 + 71.2500 133.5000 -18.0 + 70.5000 135.2500 -18.0 + 70.2500 160.5000 -18.0 + 71.2500 162.5000 -18.0 + 71.2500 169.5000 -18.0 + 72.2500 171.5000 -18.0 + 72.5000 173.7500 -18.0 + 76.2500 182.5000 -18.0 + 82.2500 189.5000 -18.0 + 86.5000 192.7500 -18.0 + 88.5000 193.7500 -18.0 + 90.2500 194.5000 -18.0 + 95.5000 194.7500 -18.0 + 102.5000 195.7500 -18.0 + 104.2500 196.5000 -18.0 + 111.7500 196.5000 -18.0 + 120.5000 192.7500 -18.0 + 128.5000 186.7500 -18.0 + 134.7500 179.5000 -18.0 + 138.7500 169.5000 -18.0 + 139.5000 167.7500 -18.0 + 139.7500 164.5000 -18.0 + 140.5000 162.7500 -18.0 + 140.7500 157.5000 -18.0 + 141.7500 148.5000 -18.0 + 142.5000 146.7500 -18.0 + 142.7500 140.5000 -18.0 + 143.5000 138.7500 -18.0 + 143.7500 129.5000 -18.0 + 142.7500 127.5000 -18.0 + 142.7500 122.5000 -18.0 + 141.7500 120.5000 -18.0 + 141.7500 117.5000 -18.0 + 139.7500 113.5000 -18.0 + 139.7500 111.5000 -18.0 + 134.7500 103.5000 -18.0 + 131.7500 99.5000 -18.0 + 124.5000 93.2500 -18.0 + 118.5000 90.2500 -18.0 + 114.7500 88.5000 -18.0 + 112.5000 88.2500 -18.0 + 110.7500 87.5000 -18.0 + 104.7500 102.5000 -18.0 + 105.5000 101.7500 -18.0 + 107.2500 102.5000 -18.0 + 108.2500 104.5000 -18.0 + 119.2500 116.5000 -18.0 + 119.2500 122.5000 -18.0 + 120.2500 124.5000 -18.0 + 120.2500 131.5000 -18.0 + 121.2500 134.5000 -18.0 + 120.5000 136.2500 -18.0 + 120.2500 141.5000 -18.0 + 119.5000 143.2500 -18.0 + 119.2500 160.5000 -18.0 + 117.2500 169.5000 -18.0 + 112.5000 176.2500 -18.0 + 109.5000 176.2500 -18.0 + 107.7500 175.5000 -18.0 + 102.5000 175.2500 -18.0 + 100.5000 178.2500 -18.0 + 100.2500 180.5000 -18.0 + 98.5000 184.2500 -18.0 + 94.5000 184.2500 -18.0 + 92.5000 186.2500 -18.0 + 89.5000 186.2500 -18.0 + 86.7500 181.5000 -18.0 + 83.7500 175.5000 -18.0 + 84.7500 173.5000 -18.0 + 87.5000 170.7500 -18.0 + 87.7500 168.5000 -18.0 + 86.7500 166.5000 -18.0 + 86.7500 160.5000 -18.0 + 85.7500 158.5000 -18.0 + 85.7500 156.5000 -18.0 + 86.7500 149.5000 -18.0 + 87.7500 140.5000 -18.0 + 92.7500 130.5000 -18.0 + 93.7500 121.5000 -18.0 + 94.7500 118.5000 -18.0 + 96.5000 114.7500 -18.0 + 98.7500 108.5000 -18.0 + 100.5000 104.7500 -18.0 + 102.2500 84.5000 -20.0 + 101.5000 85.2500 -20.0 + 99.2500 85.5000 -20.0 + 92.5000 88.2500 -20.0 + 87.5000 92.2500 -20.0 + 85.5000 93.2500 -20.0 + 83.2500 95.5000 -20.0 + 80.5000 99.2500 -20.0 + 77.2500 103.5000 -20.0 + 72.2500 113.5000 -20.0 + 70.2500 122.5000 -20.0 + 69.2500 124.5000 -20.0 + 68.2500 133.5000 -20.0 + 67.5000 135.2500 -20.0 + 67.2500 166.5000 -20.0 + 68.2500 168.5000 -20.0 + 68.5000 173.7500 -20.0 + 72.2500 182.5000 -20.0 + 76.2500 187.5000 -20.0 + 77.2500 189.5000 -20.0 + 78.5000 189.7500 -20.0 + 82.2500 193.5000 -20.0 + 86.5000 196.7500 -20.0 + 88.5000 197.7500 -20.0 + 90.2500 198.5000 -20.0 + 99.5000 198.7500 -20.0 + 101.2500 199.5000 -20.0 + 113.5000 199.7500 -20.0 + 118.5000 197.7500 -20.0 + 122.5000 194.7500 -20.0 + 128.7500 191.5000 -20.0 + 137.7500 181.5000 -20.0 + 141.7500 171.5000 -20.0 + 142.5000 169.7500 -20.0 + 142.7500 165.5000 -20.0 + 143.5000 163.7500 -20.0 + 143.7500 158.5000 -20.0 + 144.5000 156.7500 -20.0 + 144.7500 150.5000 -20.0 + 145.5000 148.7500 -20.0 + 145.7500 140.5000 -20.0 + 146.5000 138.7500 -20.0 + 146.7500 130.5000 -20.0 + 145.7500 128.5000 -20.0 + 145.7500 123.5000 -20.0 + 144.7500 121.5000 -20.0 + 144.7500 117.5000 -20.0 + 141.7500 108.5000 -20.0 + 136.7500 100.5000 -20.0 + 135.7500 98.5000 -20.0 + 130.7500 93.5000 -20.0 + 124.5000 89.2500 -20.0 + 118.5000 86.2500 -20.0 + 113.5000 85.2500 -20.0 + 111.7500 84.5000 -20.0 + 103.7500 97.5000 -20.0 + 105.5000 96.7500 -20.0 + 107.2500 98.5000 -20.0 + 109.2500 102.5000 -20.0 + 118.2500 113.5000 -20.0 + 122.2500 120.5000 -20.0 + 122.2500 124.5000 -20.0 + 124.2500 128.5000 -20.0 + 124.2500 131.5000 -20.0 + 126.2500 133.5000 -20.0 + 125.5000 135.2500 -20.0 + 124.2500 154.5000 -20.0 + 119.2500 177.5000 -20.0 + 121.2500 179.5000 -20.0 + 121.2500 184.5000 -20.0 + 117.5000 187.2500 -20.0 + 115.5000 187.2500 -20.0 + 109.5000 184.2500 -20.0 + 105.7500 180.5000 -20.0 + 102.2500 180.5000 -20.0 + 100.2500 184.5000 -20.0 + 96.5000 188.2500 -20.0 + 94.5000 188.2500 -20.0 + 92.5000 189.2500 -20.0 + 89.5000 188.2500 -20.0 + 83.7500 181.5000 -20.0 + 83.7500 179.5000 -20.0 + 82.7500 177.5000 -20.0 + 82.7500 173.5000 -20.0 + 83.5000 171.7500 -20.0 + 82.7500 170.5000 -20.0 + 82.7500 151.5000 -20.0 + 83.5000 149.7500 -20.0 + 83.7500 138.5000 -20.0 + 89.5000 130.7500 -20.0 + 89.7500 125.5000 -20.0 + 93.5000 116.7500 -20.0 + 93.7500 114.5000 -20.0 + 98.7500 104.5000 -20.0 + 99.7500 99.5000 -20.0 + 101.5000 97.7500 -20.0 + 103.2500 81.5000 -22.0 + 102.5000 82.2500 -22.0 + 98.2500 82.5000 -22.0 + 87.5000 87.2500 -22.0 + 81.2500 92.5000 -22.0 + 78.5000 96.2500 -22.0 + 75.2500 100.5000 -22.0 + 69.2500 112.5000 -22.0 + 67.2500 121.5000 -22.0 + 66.2500 126.5000 -22.0 + 65.2500 133.5000 -22.0 + 64.5000 135.2500 -22.0 + 64.2500 142.5000 -22.0 + 63.2500 151.5000 -22.0 + 64.2500 153.5000 -22.0 + 64.2500 169.5000 -22.0 + 65.2500 171.5000 -22.0 + 65.2500 174.5000 -22.0 + 66.5000 177.7500 -22.0 + 69.2500 184.5000 -22.0 + 77.2500 193.5000 -22.0 + 83.2500 198.5000 -22.0 + 88.2500 201.5000 -22.0 + 99.5000 201.7500 -22.0 + 101.2500 202.5000 -22.0 + 114.5000 202.7500 -22.0 + 128.5000 195.7500 -22.0 + 135.5000 189.7500 -22.0 + 138.7500 185.5000 -22.0 + 142.7500 177.5000 -22.0 + 144.5000 173.7500 -22.0 + 144.7500 171.5000 -22.0 + 145.5000 169.7500 -22.0 + 145.7500 165.5000 -22.0 + 146.5000 163.7500 -22.0 + 146.7500 158.5000 -22.0 + 147.5000 156.7500 -22.0 + 147.7500 148.5000 -22.0 + 148.5000 146.7500 -22.0 + 148.7500 125.5000 -22.0 + 147.7500 123.5000 -22.0 + 147.7500 118.5000 -22.0 + 146.7500 116.5000 -22.0 + 146.7500 114.5000 -22.0 + 145.7500 112.5000 -22.0 + 145.7500 110.5000 -22.0 + 139.7500 98.5000 -22.0 + 134.7500 93.5000 -22.0 + 133.7500 91.5000 -22.0 + 132.5000 91.2500 -22.0 + 129.5000 88.2500 -22.0 + 119.5000 83.2500 -22.0 + 114.5000 82.2500 -22.0 + 112.7500 81.5000 -22.0 + 101.7500 93.5000 -22.0 + 102.5000 92.7500 -22.0 + 105.5000 92.7500 -22.0 + 108.2500 95.5000 -22.0 + 108.2500 97.5000 -22.0 + 111.2500 103.5000 -22.0 + 115.5000 106.7500 -22.0 + 120.2500 113.5000 -22.0 + 126.2500 125.5000 -22.0 + 126.2500 127.5000 -22.0 + 127.2500 130.5000 -22.0 + 128.5000 130.7500 -22.0 + 130.2500 132.5000 -22.0 + 129.5000 133.2500 -22.0 + 129.2500 140.5000 -22.0 + 127.2500 158.5000 -22.0 + 126.2500 163.5000 -22.0 + 125.5000 165.2500 -22.0 + 125.2500 170.5000 -22.0 + 124.2500 173.5000 -22.0 + 123.5000 175.2500 -22.0 + 123.2500 187.5000 -22.0 + 121.5000 188.2500 -22.0 + 115.5000 191.2500 -22.0 + 108.5000 188.2500 -22.0 + 104.5000 184.2500 -22.0 + 101.5000 185.2500 -22.0 + 96.5000 190.2500 -22.0 + 93.5000 190.2500 -22.0 + 91.5000 191.2500 -22.0 + 88.5000 190.2500 -22.0 + 83.7500 184.5000 -22.0 + 81.7500 180.5000 -22.0 + 81.7500 177.5000 -22.0 + 79.7500 173.5000 -22.0 + 79.7500 166.5000 -22.0 + 78.7500 164.5000 -22.0 + 78.7500 157.5000 -22.0 + 79.5000 155.7500 -22.0 + 79.7500 139.5000 -22.0 + 81.7500 135.5000 -22.0 + 84.5000 131.7500 -22.0 + 84.7500 129.5000 -22.0 + 86.5000 125.7500 -22.0 + 86.7500 123.5000 -22.0 + 88.7500 121.5000 -22.0 + 89.7500 119.5000 -22.0 + 93.7500 109.5000 -22.0 + 98.5000 101.7500 -22.0 + 98.7500 99.5000 -22.0 + 99.2500 79.5000 -24.0 + 95.5000 81.2500 -24.0 + 93.5000 81.2500 -24.0 + 81.5000 87.2500 -24.0 + 72.2500 99.5000 -24.0 + 65.2500 115.5000 -24.0 + 61.5000 137.2500 -24.0 + 61.2500 168.5000 -24.0 + 62.2500 170.5000 -24.0 + 62.2500 175.5000 -24.0 + 66.2500 183.5000 -24.0 + 66.2500 185.5000 -24.0 + 69.2500 189.5000 -24.0 + 79.2500 199.5000 -24.0 + 86.2500 203.5000 -24.0 + 90.2500 204.5000 -24.0 + 103.5000 204.7500 -24.0 + 105.2500 205.5000 -24.0 + 113.5000 205.7500 -24.0 + 115.5000 204.7500 -24.0 + 117.5000 204.7500 -24.0 + 132.5000 196.7500 -24.0 + 140.5000 188.7500 -24.0 + 144.5000 181.7500 -24.0 + 148.5000 168.7500 -24.0 + 148.7500 161.5000 -24.0 + 150.5000 151.7500 -24.0 + 151.7500 132.5000 -24.0 + 150.7500 130.5000 -24.0 + 150.7500 122.5000 -24.0 + 149.7500 120.5000 -24.0 + 149.7500 116.5000 -24.0 + 148.7500 114.5000 -24.0 + 148.5000 111.2500 -24.0 + 142.7500 98.5000 -24.0 + 135.7500 89.5000 -24.0 + 127.7500 83.5000 -24.0 + 116.7500 79.5000 -24.0 + 101.7500 90.5000 -24.0 + 102.5000 89.7500 -24.0 + 106.5000 89.7500 -24.0 + 109.2500 94.5000 -24.0 + 109.2500 97.5000 -24.0 + 111.5000 102.7500 -24.0 + 117.5000 105.7500 -24.0 + 121.2500 109.5000 -24.0 + 127.2500 121.5000 -24.0 + 127.2500 123.5000 -24.0 + 133.2500 130.5000 -24.0 + 133.2500 135.5000 -24.0 + 132.2500 138.5000 -24.0 + 133.2500 140.5000 -24.0 + 132.5000 142.2500 -24.0 + 132.2500 149.5000 -24.0 + 130.2500 159.5000 -24.0 + 129.5000 161.2500 -24.0 + 129.2500 167.5000 -24.0 + 128.2500 176.5000 -24.0 + 125.5000 180.2500 -24.0 + 125.2500 182.5000 -24.0 + 123.5000 186.2500 -24.0 + 123.2500 188.5000 -24.0 + 120.5000 192.2500 -24.0 + 118.5000 193.2500 -24.0 + 112.5000 195.2500 -24.0 + 110.7500 194.5000 -24.0 + 109.7500 192.5000 -24.0 + 105.5000 190.2500 -24.0 + 103.5000 189.2500 -24.0 + 101.5000 190.2500 -24.0 + 99.5000 190.2500 -24.0 + 95.5000 192.2500 -24.0 + 92.5000 192.2500 -24.0 + 90.5000 194.2500 -24.0 + 88.5000 194.2500 -24.0 + 85.5000 193.2500 -24.0 + 84.7500 191.5000 -24.0 + 78.7500 179.5000 -24.0 + 78.7500 177.5000 -24.0 + 77.7500 175.5000 -24.0 + 77.7500 173.5000 -24.0 + 76.7500 171.5000 -24.0 + 76.7500 163.5000 -24.0 + 75.7500 161.5000 -24.0 + 75.7500 152.5000 -24.0 + 76.5000 150.7500 -24.0 + 76.7500 137.5000 -24.0 + 79.7500 131.5000 -24.0 + 82.7500 124.5000 -24.0 + 85.5000 121.7500 -24.0 + 89.5000 114.7500 -24.0 + 89.7500 111.5000 -24.0 + 97.5000 102.7500 -24.0 + 97.7500 98.5000 -24.0 + 104.2500 76.5000 -26.0 + 103.5000 77.2500 -26.0 + 98.5000 77.2500 -26.0 + 96.5000 78.2500 -26.0 + 93.5000 78.2500 -26.0 + 85.5000 82.2500 -26.0 + 83.5000 82.2500 -26.0 + 81.5000 84.2500 -26.0 + 79.5000 85.2500 -26.0 + 77.2500 87.5000 -26.0 + 74.5000 91.2500 -26.0 + 70.2500 97.5000 -26.0 + 66.2500 105.5000 -26.0 + 64.5000 109.2500 -26.0 + 63.2500 115.5000 -26.0 + 62.5000 117.2500 -26.0 + 62.2500 122.5000 -26.0 + 61.5000 124.2500 -26.0 + 60.2500 132.5000 -26.0 + 59.5000 134.2500 -26.0 + 59.2500 143.5000 -26.0 + 58.5000 145.2500 -26.0 + 58.2500 150.5000 -26.0 + 59.2500 152.5000 -26.0 + 59.2500 160.5000 -26.0 + 58.5000 162.2500 -26.0 + 58.2500 168.5000 -26.0 + 59.2500 170.5000 -26.0 + 59.2500 174.5000 -26.0 + 61.2500 178.5000 -26.0 + 61.2500 180.5000 -26.0 + 66.2500 190.5000 -26.0 + 72.2500 196.5000 -26.0 + 79.5000 202.7500 -26.0 + 85.5000 205.7500 -26.0 + 87.2500 206.5000 -26.0 + 103.5000 206.7500 -26.0 + 105.2500 207.5000 -26.0 + 117.5000 207.7500 -26.0 + 133.5000 199.7500 -26.0 + 139.5000 193.7500 -26.0 + 142.7500 189.5000 -26.0 + 147.7500 181.5000 -26.0 + 148.7500 176.5000 -26.0 + 149.7500 173.5000 -26.0 + 150.5000 171.7500 -26.0 + 150.7500 167.5000 -26.0 + 151.5000 165.7500 -26.0 + 151.7500 155.5000 -26.0 + 152.5000 153.7500 -26.0 + 152.7500 146.5000 -26.0 + 153.5000 144.7500 -26.0 + 153.7500 131.5000 -26.0 + 152.7500 129.5000 -26.0 + 152.7500 121.5000 -26.0 + 151.7500 119.5000 -26.0 + 151.7500 114.5000 -26.0 + 149.7500 110.5000 -26.0 + 149.5000 108.2500 -26.0 + 146.7500 101.5000 -26.0 + 141.7500 93.5000 -26.0 + 140.7500 91.5000 -26.0 + 133.7500 84.5000 -26.0 + 127.7500 80.5000 -26.0 + 121.5000 78.2500 -26.0 + 119.7500 77.5000 -26.0 + 114.5000 77.2500 -26.0 + 112.7500 76.5000 -26.0 + 102.5000 86.7500 -26.0 + 104.5000 86.7500 -26.0 + 106.5000 87.7500 -26.0 + 110.2500 90.5000 -26.0 + 110.2500 94.5000 -26.0 + 112.2500 98.5000 -26.0 + 112.2500 100.5000 -26.0 + 114.5000 102.7500 -26.0 + 118.5000 104.7500 -26.0 + 123.5000 105.7500 -26.0 + 127.2500 112.5000 -26.0 + 127.2500 114.5000 -26.0 + 130.2500 121.5000 -26.0 + 134.2500 125.5000 -26.0 + 138.2500 133.5000 -26.0 + 137.5000 134.2500 -26.0 + 137.2500 139.5000 -26.0 + 136.5000 141.2500 -26.0 + 136.2500 148.5000 -26.0 + 135.2500 150.5000 -26.0 + 134.2500 159.5000 -26.0 + 133.5000 161.2500 -26.0 + 133.2500 169.5000 -26.0 + 132.2500 174.5000 -26.0 + 130.5000 178.2500 -26.0 + 128.2500 184.5000 -26.0 + 124.5000 188.2500 -26.0 + 124.2500 190.5000 -26.0 + 122.5000 192.2500 -26.0 + 115.5000 196.2500 -26.0 + 112.5000 196.2500 -26.0 + 107.5000 195.2500 -26.0 + 103.5000 192.2500 -26.0 + 101.5000 193.2500 -26.0 + 97.5000 193.2500 -26.0 + 89.5000 197.2500 -26.0 + 87.5000 197.2500 -26.0 + 83.7500 194.5000 -26.0 + 80.7500 188.5000 -26.0 + 76.7500 181.5000 -26.0 + 76.7500 179.5000 -26.0 + 74.7500 175.5000 -26.0 + 74.7500 170.5000 -26.0 + 73.7500 168.5000 -26.0 + 73.7500 162.5000 -26.0 + 72.7500 160.5000 -26.0 + 72.7500 143.5000 -26.0 + 73.7500 138.5000 -26.0 + 72.7500 136.5000 -26.0 + 73.7500 134.5000 -26.0 + 78.7500 125.5000 -26.0 + 79.7500 123.5000 -26.0 + 90.7500 108.5000 -26.0 + 91.7500 106.5000 -26.0 + 93.7500 105.5000 -26.0 + 96.5000 101.7500 -26.0 + 95.7500 99.5000 -26.0 + 96.5000 97.7500 -26.0 + 96.7500 94.5000 -26.0 + 98.5000 93.7500 -26.0 + 99.5000 91.7500 -26.0 + 99.7500 89.5000 -26.0 + 103.2500 74.5000 -28.0 + 102.5000 75.2500 -28.0 + 97.5000 75.2500 -28.0 + 95.5000 76.2500 -28.0 + 92.5000 76.2500 -28.0 + 90.5000 77.2500 -28.0 + 88.5000 77.2500 -28.0 + 80.5000 81.2500 -28.0 + 73.2500 88.5000 -28.0 + 68.2500 96.5000 -28.0 + 62.2500 108.5000 -28.0 + 61.2500 113.5000 -28.0 + 60.5000 115.2500 -28.0 + 60.2500 121.5000 -28.0 + 59.5000 123.2500 -28.0 + 58.2500 131.5000 -28.0 + 57.5000 133.2500 -28.0 + 57.2500 140.5000 -28.0 + 56.5000 142.2500 -28.0 + 56.2500 171.5000 -28.0 + 57.2500 173.5000 -28.0 + 57.2500 176.5000 -28.0 + 58.2500 178.5000 -28.0 + 58.2500 180.5000 -28.0 + 64.2500 192.5000 -28.0 + 72.2500 200.5000 -28.0 + 78.5000 204.7500 -28.0 + 85.2500 208.5000 -28.0 + 103.5000 208.7500 -28.0 + 105.2500 209.5000 -28.0 + 119.5000 209.7500 -28.0 + 131.5000 203.7500 -28.0 + 135.5000 200.7500 -28.0 + 137.7500 199.5000 -28.0 + 140.5000 195.7500 -28.0 + 145.5000 189.7500 -28.0 + 149.5000 182.7500 -28.0 + 151.7500 176.5000 -28.0 + 152.5000 174.7500 -28.0 + 152.7500 170.5000 -28.0 + 153.5000 168.7500 -28.0 + 153.7500 161.5000 -28.0 + 154.5000 159.7500 -28.0 + 154.7500 148.5000 -28.0 + 155.5000 146.7500 -28.0 + 155.7500 130.5000 -28.0 + 154.7500 128.5000 -28.0 + 154.7500 122.5000 -28.0 + 153.7500 120.5000 -28.0 + 153.7500 116.5000 -28.0 + 152.7500 114.5000 -28.0 + 152.7500 111.5000 -28.0 + 150.7500 105.5000 -28.0 + 146.5000 96.2500 -28.0 + 141.7500 89.5000 -28.0 + 137.5000 84.2500 -28.0 + 129.7500 78.5000 -28.0 + 123.5000 76.2500 -28.0 + 121.7500 75.5000 -28.0 + 117.5000 75.2500 -28.0 + 115.7500 74.5000 -28.0 + 100.7500 85.5000 -28.0 + 101.5000 84.7500 -28.0 + 105.5000 84.7500 -28.0 + 107.2500 86.5000 -28.0 + 109.5000 86.7500 -28.0 + 112.5000 85.7500 -28.0 + 114.2500 87.5000 -28.0 + 113.5000 88.2500 -28.0 + 112.2500 92.5000 -28.0 + 113.2500 95.5000 -28.0 + 116.2500 98.5000 -28.0 + 120.5000 98.7500 -28.0 + 124.5000 100.7500 -28.0 + 129.2500 107.5000 -28.0 + 131.2500 111.5000 -28.0 + 131.2500 114.5000 -28.0 + 132.2500 116.5000 -28.0 + 132.2500 118.5000 -28.0 + 134.2500 120.5000 -28.0 + 135.5000 122.7500 -28.0 + 137.5000 123.7500 -28.0 + 142.2500 132.5000 -28.0 + 141.5000 134.2500 -28.0 + 141.2500 138.5000 -28.0 + 140.5000 140.2500 -28.0 + 140.2500 145.5000 -28.0 + 139.5000 147.2500 -28.0 + 139.2500 155.5000 -28.0 + 138.5000 157.2500 -28.0 + 138.2500 162.5000 -28.0 + 137.2500 164.5000 -28.0 + 136.2500 173.5000 -28.0 + 135.2500 178.5000 -28.0 + 134.2500 181.5000 -28.0 + 131.5000 184.2500 -28.0 + 129.5000 185.2500 -28.0 + 123.5000 193.2500 -28.0 + 119.5000 196.2500 -28.0 + 117.5000 196.2500 -28.0 + 113.5000 198.2500 -28.0 + 109.5000 198.2500 -28.0 + 103.5000 195.2500 -28.0 + 101.5000 196.2500 -28.0 + 95.5000 196.2500 -28.0 + 91.5000 199.2500 -28.0 + 89.5000 200.2500 -28.0 + 83.7500 197.5000 -28.0 + 80.7500 193.5000 -28.0 + 77.7500 188.5000 -28.0 + 72.7500 178.5000 -28.0 + 72.7500 176.5000 -28.0 + 71.7500 174.5000 -28.0 + 71.7500 162.5000 -28.0 + 68.7500 158.5000 -28.0 + 68.7500 153.5000 -28.0 + 69.5000 151.7500 -28.0 + 69.7500 134.5000 -28.0 + 70.5000 132.7500 -28.0 + 73.7500 127.5000 -28.0 + 74.7500 125.5000 -28.0 + 89.5000 107.7500 -28.0 + 93.5000 104.7500 -28.0 + 93.7500 101.5000 -28.0 + 92.7500 99.5000 -28.0 + 92.7500 96.5000 -28.0 + 93.7500 94.5000 -28.0 + 92.7500 91.5000 -28.0 + 93.5000 89.7500 -28.0 + 96.5000 90.7500 -28.0 + 103.2500 72.5000 -30.0 + 102.5000 73.2500 -30.0 + 96.5000 73.2500 -30.0 + 94.5000 74.2500 -30.0 + 91.5000 74.2500 -30.0 + 89.5000 75.2500 -30.0 + 87.5000 75.2500 -30.0 + 77.5000 80.2500 -30.0 + 75.2500 82.5000 -30.0 + 72.5000 86.2500 -30.0 + 69.2500 90.5000 -30.0 + 67.2500 94.5000 -30.0 + 64.2500 98.5000 -30.0 + 60.2500 108.5000 -30.0 + 58.5000 112.2500 -30.0 + 58.2500 116.5000 -30.0 + 57.2500 125.5000 -30.0 + 56.2500 128.5000 -30.0 + 55.2500 137.5000 -30.0 + 54.5000 139.2500 -30.0 + 54.2500 157.5000 -30.0 + 53.5000 159.2500 -30.0 + 53.2500 164.5000 -30.0 + 54.2500 166.5000 -30.0 + 54.2500 174.5000 -30.0 + 55.2500 176.5000 -30.0 + 55.2500 178.5000 -30.0 + 56.2500 180.5000 -30.0 + 56.2500 182.5000 -30.0 + 62.2500 194.5000 -30.0 + 69.2500 201.5000 -30.0 + 75.5000 205.7500 -30.0 + 82.2500 209.5000 -30.0 + 84.5000 209.7500 -30.0 + 86.2500 210.5000 -30.0 + 92.5000 210.7500 -30.0 + 94.5000 209.7500 -30.0 + 97.5000 209.7500 -30.0 + 99.2500 210.5000 -30.0 + 105.5000 210.7500 -30.0 + 107.2500 211.5000 -30.0 + 118.5000 211.7500 -30.0 + 120.5000 210.7500 -30.0 + 122.5000 210.7500 -30.0 + 131.5000 206.7500 -30.0 + 136.5000 202.7500 -30.0 + 138.5000 201.7500 -30.0 + 147.7500 190.5000 -30.0 + 153.7500 179.5000 -30.0 + 154.7500 174.5000 -30.0 + 155.5000 172.7500 -30.0 + 155.7500 168.5000 -30.0 + 156.5000 166.7500 -30.0 + 156.7500 154.5000 -30.0 + 157.7500 145.5000 -30.0 + 158.5000 143.7500 -30.0 + 158.7500 137.5000 -30.0 + 157.7500 135.5000 -30.0 + 157.7500 129.5000 -30.0 + 156.7500 127.5000 -30.0 + 156.7500 123.5000 -30.0 + 155.7500 121.5000 -30.0 + 155.7500 117.5000 -30.0 + 154.7500 115.5000 -30.0 + 154.7500 112.5000 -30.0 + 153.7500 110.5000 -30.0 + 153.7500 107.5000 -30.0 + 145.7500 91.5000 -30.0 + 140.7500 85.5000 -30.0 + 139.7500 83.5000 -30.0 + 133.7500 78.5000 -30.0 + 128.5000 75.2500 -30.0 + 123.5000 74.2500 -30.0 + 121.7500 73.5000 -30.0 + 117.5000 73.2500 -30.0 + 115.7500 72.5000 -30.0 +} -30.0 +{ -30.0 + 102.7500 82.5000 -30.0 + 104.5000 81.7500 -30.0 + 107.2500 85.5000 -30.0 + 109.5000 85.7500 -30.0 + 113.5000 83.7500 -30.0 + 117.2500 85.5000 -30.0 + 115.5000 92.2500 -30.0 + 116.5000 93.7500 -30.0 + 118.5000 94.7500 -30.0 + 123.5000 95.7500 -30.0 + 126.2500 98.5000 -30.0 + 135.2500 112.5000 -30.0 + 135.2500 114.5000 -30.0 + 137.2500 120.5000 -30.0 + 143.2500 127.5000 -30.0 + 145.2500 131.5000 -30.0 + 145.2500 135.5000 -30.0 + 144.2500 137.5000 -30.0 + 142.2500 151.5000 -30.0 + 143.2500 153.5000 -30.0 + 141.5000 158.2500 -30.0 + 141.2500 165.5000 -30.0 + 140.2500 167.5000 -30.0 + 141.2500 169.5000 -30.0 + 140.5000 170.2500 -30.0 + 140.2500 175.5000 -30.0 + 138.2500 180.5000 -30.0 + 135.5000 184.2500 -30.0 + 133.5000 185.2500 -30.0 + 126.2500 192.5000 -30.0 + 125.2500 194.5000 -30.0 + 116.5000 199.2500 -30.0 + 109.5000 200.2500 -30.0 + 102.5000 198.2500 -30.0 + 98.5000 200.2500 -30.0 + 96.5000 199.2500 -30.0 + 92.5000 201.2500 -30.0 + 86.5000 201.2500 -30.0 + 82.7500 198.5000 -30.0 + 76.7500 191.5000 -30.0 + 68.7500 176.5000 -30.0 + 68.7500 164.5000 -30.0 + 65.7500 158.5000 -30.0 + 65.7500 154.5000 -30.0 + 66.5000 152.7500 -30.0 + 66.7500 135.5000 -30.0 + 65.7500 133.5000 -30.0 + 68.7500 129.5000 -30.0 + 71.7500 123.5000 -30.0 + 76.5000 119.7500 -30.0 + 79.7500 115.5000 -30.0 + 83.5000 108.7500 -30.0 + 86.7500 99.5000 -30.0 + 90.5000 95.7500 -30.0 + 90.7500 93.5000 -30.0 + 89.7500 91.5000 -30.0 + 97.5000 84.7500 -30.0 + 98.2500 85.5000 -30.0 + 100.5000 84.7500 -30.0 + 104.2500 70.5000 -32.0 + 103.5000 71.2500 -32.0 + 96.5000 71.2500 -32.0 + 94.5000 72.2500 -32.0 + 90.5000 72.2500 -32.0 + 88.5000 73.2500 -32.0 + 86.5000 73.2500 -32.0 + 76.5000 78.2500 -32.0 + 70.2500 85.5000 -32.0 + 65.2500 93.5000 -32.0 + 59.5000 104.2500 -32.0 + 57.2500 110.5000 -32.0 + 56.5000 112.2500 -32.0 + 56.2500 116.5000 -32.0 + 55.2500 125.5000 -32.0 + 54.2500 127.5000 -32.0 + 53.2500 136.5000 -32.0 + 52.5000 138.2500 -32.0 + 52.2500 153.5000 -32.0 + 51.5000 155.2500 -32.0 + 51.2500 171.5000 -32.0 + 52.2500 173.5000 -32.0 + 52.2500 177.5000 -32.0 + 54.2500 181.5000 -32.0 + 54.2500 183.5000 -32.0 + 60.2500 195.5000 -32.0 + 68.5000 203.7500 -32.0 + 76.5000 208.7500 -32.0 + 78.5000 209.7500 -32.0 + 82.2500 211.5000 -32.0 + 101.5000 211.7500 -32.0 + 108.5000 212.7500 -32.0 + 110.2500 213.5000 -32.0 + 118.5000 213.7500 -32.0 + 120.5000 212.7500 -32.0 + 122.5000 212.7500 -32.0 + 124.5000 211.7500 -32.0 + 126.5000 211.7500 -32.0 + 134.5000 206.7500 -32.0 + 136.5000 205.7500 -32.0 + 144.7500 197.5000 -32.0 + 147.5000 193.7500 -32.0 + 150.7500 189.5000 -32.0 + 154.5000 182.7500 -32.0 + 156.7500 176.5000 -32.0 + 157.5000 174.7500 -32.0 + 157.7500 170.5000 -32.0 + 158.5000 168.7500 -32.0 + 158.7500 157.5000 -32.0 + 159.7500 148.5000 -32.0 + 160.5000 146.7500 -32.0 + 160.7500 137.5000 -32.0 + 159.7500 135.5000 -32.0 + 159.7500 129.5000 -32.0 + 158.7500 127.5000 -32.0 + 158.7500 123.5000 -32.0 + 157.7500 121.5000 -32.0 + 157.7500 119.5000 -32.0 + 156.7500 117.5000 -32.0 + 156.7500 112.5000 -32.0 + 155.7500 110.5000 -32.0 + 155.7500 107.5000 -32.0 + 147.7500 91.5000 -32.0 + 144.7500 87.5000 -32.0 + 143.7500 85.5000 -32.0 + 136.5000 78.2500 -32.0 + 128.5000 73.2500 -32.0 + 123.5000 72.2500 -32.0 + 121.7500 71.5000 -32.0 + 115.5000 71.2500 -32.0 + 113.7500 70.5000 -32.0 + 102.7500 80.5000 -32.0 + 103.5000 79.7500 -32.0 + 105.2500 80.5000 -32.0 + 107.2500 84.5000 -32.0 + 111.5000 84.7500 -32.0 + 115.5000 82.7500 -32.0 + 117.5000 82.7500 -32.0 + 121.2500 86.5000 -32.0 + 123.5000 86.7500 -32.0 + 124.2500 88.5000 -32.0 + 129.2500 94.5000 -32.0 + 128.5000 96.2500 -32.0 + 129.2500 97.5000 -32.0 + 130.2500 99.5000 -32.0 + 133.2500 103.5000 -32.0 + 136.2500 109.5000 -32.0 + 139.2500 113.5000 -32.0 + 139.2500 115.5000 -32.0 + 143.2500 123.5000 -32.0 + 144.5000 125.7500 -32.0 + 146.5000 126.7500 -32.0 + 148.2500 129.5000 -32.0 + 148.2500 134.5000 -32.0 + 147.5000 136.2500 -32.0 + 147.2500 141.5000 -32.0 + 146.2500 144.5000 -32.0 + 145.5000 146.2500 -32.0 + 145.2500 154.5000 -32.0 + 144.5000 156.2500 -32.0 + 144.2500 170.5000 -32.0 + 143.2500 175.5000 -32.0 + 140.2500 182.5000 -32.0 + 137.5000 185.2500 -32.0 + 135.5000 186.2500 -32.0 + 125.5000 196.2500 -32.0 + 120.5000 199.2500 -32.0 + 118.5000 199.2500 -32.0 + 112.5000 202.2500 -32.0 + 109.5000 202.2500 -32.0 + 103.5000 200.2500 -32.0 + 99.5000 202.2500 -32.0 + 94.5000 202.2500 -32.0 + 92.5000 203.2500 -32.0 + 88.5000 203.2500 -32.0 + 85.5000 202.2500 -32.0 + 76.5000 193.2500 -32.0 + 74.5000 192.2500 -32.0 + 70.7500 185.5000 -32.0 + 65.7500 175.5000 -32.0 + 65.7500 169.5000 -32.0 + 64.7500 167.5000 -32.0 + 64.7500 161.5000 -32.0 + 63.7500 159.5000 -32.0 + 63.7500 135.5000 -32.0 + 62.7500 132.5000 -32.0 + 64.5000 131.7500 -32.0 + 67.5000 125.7500 -32.0 + 67.7500 123.5000 -32.0 + 76.7500 114.5000 -32.0 + 79.7500 108.5000 -32.0 + 80.7500 103.5000 -32.0 + 85.5000 97.7500 -32.0 + 87.5000 96.7500 -32.0 + 88.7500 94.5000 -32.0 + 87.7500 92.5000 -32.0 + 89.7500 88.5000 -32.0 + 95.5000 83.7500 -32.0 + 97.2500 84.5000 -32.0 + 99.5000 84.7500 -32.0 + 97.2500 69.5000 -34.0 + 96.5000 70.2500 -34.0 + 91.5000 70.2500 -34.0 + 89.5000 71.2500 -34.0 + 86.2500 71.5000 -34.0 + 77.5000 75.2500 -34.0 + 70.5000 82.2500 -34.0 + 66.2500 88.5000 -34.0 + 65.2500 90.5000 -34.0 + 60.2500 98.5000 -34.0 + 56.2500 106.5000 -34.0 + 55.2500 111.5000 -34.0 + 54.5000 113.2500 -34.0 + 54.2500 117.5000 -34.0 + 53.2500 124.5000 -34.0 + 52.2500 129.5000 -34.0 + 51.5000 131.2500 -34.0 + 51.2500 135.5000 -34.0 + 50.5000 137.2500 -34.0 + 50.2500 151.5000 -34.0 + 49.5000 153.2500 -34.0 + 49.2500 173.5000 -34.0 + 50.2500 175.5000 -34.0 + 50.2500 177.5000 -34.0 + 51.2500 179.5000 -34.0 + 51.2500 182.5000 -34.0 + 58.2500 196.5000 -34.0 + 64.2500 202.5000 -34.0 + 70.2500 207.5000 -34.0 + 77.5000 211.7500 -34.0 + 82.5000 212.7500 -34.0 + 84.2500 213.5000 -34.0 + 97.5000 213.7500 -34.0 + 99.5000 212.7500 -34.0 + 100.2500 213.5000 -34.0 + 106.5000 213.7500 -34.0 + 108.2500 214.5000 -34.0 + 121.5000 214.7500 -34.0 + 123.5000 213.7500 -34.0 + 125.5000 213.7500 -34.0 + 135.5000 208.7500 -34.0 + 144.7500 200.5000 -34.0 + 147.5000 196.7500 -34.0 + 152.5000 190.7500 -34.0 + 156.5000 183.7500 -34.0 + 158.7500 177.5000 -34.0 + 159.5000 175.7500 -34.0 + 159.7500 172.5000 -34.0 + 160.5000 170.7500 -34.0 + 160.7500 164.5000 -34.0 + 161.5000 162.7500 -34.0 + 161.7500 150.5000 -34.0 + 162.5000 148.7500 -34.0 + 162.7500 140.5000 -34.0 + 161.7500 138.5000 -34.0 + 161.7500 130.5000 -34.0 + 160.7500 128.5000 -34.0 + 160.7500 123.5000 -34.0 + 159.7500 121.5000 -34.0 + 159.7500 119.5000 -34.0 + 158.7500 117.5000 -34.0 + 158.7500 114.5000 -34.0 + 157.7500 112.5000 -34.0 + 157.7500 109.5000 -34.0 + 156.7500 107.5000 -34.0 + 156.7500 105.5000 -34.0 + 153.7500 99.5000 -34.0 + 148.7500 90.5000 -34.0 + 146.7500 86.5000 -34.0 + 143.7500 83.5000 -34.0 + 142.7500 81.5000 -34.0 + 135.5000 75.2500 -34.0 + 127.5000 71.2500 -34.0 + 125.7500 70.5000 -34.0 + 122.5000 70.2500 -34.0 + 120.7500 69.5000 -34.0 + 102.7500 78.5000 -34.0 + 104.5000 77.7500 -34.0 + 106.2500 79.5000 -34.0 + 106.2500 81.5000 -34.0 + 108.2500 83.5000 -34.0 + 112.5000 83.7500 -34.0 + 116.5000 81.7500 -34.0 + 121.5000 83.7500 -34.0 + 125.2500 86.5000 -34.0 + 129.5000 91.7500 -34.0 + 131.5000 92.7500 -34.0 + 133.2500 96.5000 -34.0 + 139.2500 104.5000 -34.0 + 138.2500 107.5000 -34.0 + 141.2500 113.5000 -34.0 + 151.2500 127.5000 -34.0 + 150.2500 128.5000 -34.0 + 151.2500 130.5000 -34.0 + 150.5000 131.2500 -34.0 + 150.2500 133.5000 -34.0 + 151.2500 136.5000 -34.0 + 150.2500 139.5000 -34.0 + 147.5000 151.2500 -34.0 + 147.2500 160.5000 -34.0 + 146.2500 162.5000 -34.0 + 147.2500 164.5000 -34.0 + 145.2500 176.5000 -34.0 + 142.2500 183.5000 -34.0 + 127.5000 197.2500 -34.0 + 122.5000 200.2500 -34.0 + 120.5000 200.2500 -34.0 + 112.5000 204.2500 -34.0 + 102.5000 203.2500 -34.0 + 98.5000 205.2500 -34.0 + 93.5000 204.2500 -34.0 + 91.5000 205.2500 -34.0 + 89.5000 205.2500 -34.0 + 83.5000 201.2500 -34.0 + 74.7500 194.5000 -34.0 + 73.7500 192.5000 -34.0 + 69.7500 189.5000 -34.0 + 69.7500 187.5000 -34.0 + 66.7500 183.5000 -34.0 + 62.7500 175.5000 -34.0 + 62.7500 170.5000 -34.0 + 61.7500 168.5000 -34.0 + 62.7500 167.5000 -34.0 + 61.7500 165.5000 -34.0 + 61.7500 143.5000 -34.0 + 60.7500 141.5000 -34.0 + 60.7500 135.5000 -34.0 + 59.7500 133.5000 -34.0 + 62.5000 129.7500 -34.0 + 63.7500 123.5000 -34.0 + 67.5000 119.7500 -34.0 + 69.5000 118.7500 -34.0 + 69.7500 117.5000 -34.0 + 71.5000 115.7500 -34.0 + 74.7500 105.5000 -34.0 + 80.5000 98.7500 -34.0 + 82.5000 98.7500 -34.0 + 84.7500 95.5000 -34.0 + 83.7500 93.5000 -34.0 + 83.7500 90.5000 -34.0 + 92.5000 83.7500 -34.0 + 94.5000 83.7500 -34.0 + 96.5000 84.7500 -34.0 + 99.5000 83.7500 -34.0 + 143.7500 191.5000 -34.0 + 145.5000 190.7500 -34.0 + 147.2500 191.5000 -34.0 + 145.5000 192.2500 -34.0 + 104.2500 67.5000 -36.0 + 103.5000 68.2500 -36.0 + 93.5000 68.2500 -36.0 + 91.5000 69.2500 -36.0 + 88.5000 69.2500 -36.0 + 86.5000 70.2500 -36.0 + 84.5000 70.2500 -36.0 + 79.5000 72.2500 -36.0 + 75.5000 75.2500 -36.0 + 73.5000 76.2500 -36.0 + 68.2500 82.5000 -36.0 + 59.2500 96.5000 -36.0 + 55.2500 104.5000 -36.0 + 53.2500 113.5000 -36.0 + 52.2500 120.5000 -36.0 + 51.2500 125.5000 -36.0 + 50.5000 127.2500 -36.0 + 49.2500 135.5000 -36.0 + 48.5000 137.2500 -36.0 + 48.2500 143.5000 -36.0 + 47.5000 145.2500 -36.0 + 47.2500 159.5000 -36.0 + 46.2500 166.5000 -36.0 + 47.2500 168.5000 -36.0 + 47.2500 174.5000 -36.0 + 48.2500 176.5000 -36.0 + 48.2500 178.5000 -36.0 + 50.5000 184.7500 -36.0 + 55.2500 195.5000 -36.0 + 60.2500 201.5000 -36.0 + 67.5000 207.7500 -36.0 + 75.5000 212.7500 -36.0 + 80.5000 213.7500 -36.0 + 82.2500 214.5000 -36.0 + 101.5000 214.7500 -36.0 + 110.5000 215.7500 -36.0 + 112.2500 216.5000 -36.0 + 119.5000 216.7500 -36.0 + 121.5000 215.7500 -36.0 + 124.5000 215.7500 -36.0 + 138.5000 208.7500 -36.0 + 148.7500 198.5000 -36.0 + 151.5000 194.7500 -36.0 + 154.7500 190.5000 -36.0 + 160.7500 179.5000 -36.0 + 161.7500 172.5000 -36.0 + 162.5000 170.7500 -36.0 + 162.7500 163.5000 -36.0 + 163.5000 161.7500 -36.0 + 163.7500 135.5000 -36.0 + 162.7500 133.5000 -36.0 + 162.7500 127.5000 -36.0 + 161.7500 125.5000 -36.0 + 161.7500 121.5000 -36.0 + 160.7500 119.5000 -36.0 + 160.7500 117.5000 -36.0 + 159.7500 115.5000 -36.0 + 159.7500 111.5000 -36.0 + 158.7500 109.5000 -36.0 + 158.7500 106.5000 -36.0 + 149.7500 88.5000 -36.0 + 143.7500 81.5000 -36.0 + 142.7500 79.5000 -36.0 + 136.5000 74.2500 -36.0 + 127.7500 69.5000 -36.0 + 125.5000 69.2500 -36.0 + 123.7500 68.5000 -36.0 + 118.5000 68.2500 -36.0 + 116.7500 67.5000 -36.0 + 101.7500 77.5000 -36.0 + 102.5000 76.7500 -36.0 + 104.5000 76.7500 -36.0 + 106.5000 79.7500 -36.0 + 110.2500 82.5000 -36.0 + 113.5000 82.7500 -36.0 + 117.5000 80.7500 -36.0 + 119.5000 80.7500 -36.0 + 124.5000 81.7500 -36.0 + 126.2500 83.5000 -36.0 + 132.2500 87.5000 -36.0 + 134.2500 91.5000 -36.0 + 136.2500 97.5000 -36.0 + 141.2500 103.5000 -36.0 + 144.2500 108.5000 -36.0 + 144.2500 110.5000 -36.0 + 149.2500 120.5000 -36.0 + 153.2500 127.5000 -36.0 + 153.2500 135.5000 -36.0 + 152.5000 137.2500 -36.0 + 151.2500 145.5000 -36.0 + 150.5000 147.2500 -36.0 + 150.2500 154.5000 -36.0 + 149.5000 156.2500 -36.0 + 149.2500 166.5000 -36.0 + 148.5000 168.2500 -36.0 + 148.2500 173.5000 -36.0 + 147.2500 176.5000 -36.0 + 145.5000 180.2500 -36.0 + 145.2500 182.5000 -36.0 + 142.5000 186.2500 -36.0 + 140.5000 187.2500 -36.0 + 129.5000 198.2500 -36.0 + 122.5000 202.2500 -36.0 + 120.5000 202.2500 -36.0 + 114.5000 205.2500 -36.0 + 112.5000 205.2500 -36.0 + 110.5000 206.2500 -36.0 + 108.5000 206.2500 -36.0 + 106.7500 205.5000 -36.0 + 102.5000 205.2500 -36.0 + 100.5000 206.2500 -36.0 + 96.5000 206.2500 -36.0 + 87.5000 205.2500 -36.0 + 79.5000 200.2500 -36.0 + 77.5000 199.2500 -36.0 + 72.7500 194.5000 -36.0 + 71.7500 192.5000 -36.0 + 69.5000 190.2500 -36.0 + 67.5000 189.2500 -36.0 + 63.7500 182.5000 -36.0 + 60.7500 176.5000 -36.0 + 60.7500 174.5000 -36.0 + 59.7500 172.5000 -36.0 + 59.7500 161.5000 -36.0 + 58.7500 158.5000 -36.0 + 59.5000 156.7500 -36.0 + 59.7500 147.5000 -36.0 + 58.7500 145.5000 -36.0 + 58.7500 141.5000 -36.0 + 57.7500 139.5000 -36.0 + 58.5000 138.7500 -36.0 + 57.7500 137.5000 -36.0 + 57.7500 133.5000 -36.0 + 60.5000 127.7500 -36.0 + 60.7500 123.5000 -36.0 + 63.7500 120.5000 -36.0 + 71.7500 104.5000 -36.0 + 76.7500 98.5000 -36.0 + 75.7500 95.5000 -36.0 + 80.5000 88.7500 -36.0 + 82.5000 87.7500 -36.0 + 86.5000 84.7500 -36.0 + 89.5000 84.7500 -36.0 + 92.5000 81.7500 -36.0 + 94.2500 82.5000 -36.0 + 97.5000 82.7500 -36.0 + 101.5000 79.7500 -36.0 + 145.7500 191.5000 -36.0 + 146.5000 190.7500 -36.0 + 147.2500 191.5000 -36.0 + 146.5000 192.2500 -36.0 + 97.2500 66.5000 -38.0 + 96.5000 67.2500 -38.0 + 90.5000 67.2500 -38.0 + 88.5000 68.2500 -38.0 + 85.2500 68.5000 -38.0 + 76.5000 72.2500 -38.0 + 71.5000 76.2500 -38.0 + 66.5000 82.2500 -38.0 + 62.2500 88.5000 -38.0 + 57.2500 96.5000 -38.0 + 54.2500 102.5000 -38.0 + 53.2500 107.5000 -38.0 + 52.2500 109.5000 -38.0 + 51.2500 116.5000 -38.0 + 50.2500 121.5000 -38.0 + 49.2500 123.5000 -38.0 + 48.2500 132.5000 -38.0 + 47.5000 134.2500 -38.0 + 46.2500 142.5000 -38.0 + 45.5000 144.2500 -38.0 + 45.2500 158.5000 -38.0 + 44.2500 167.5000 -38.0 + 45.2500 169.5000 -38.0 + 45.2500 174.5000 -38.0 + 46.2500 176.5000 -38.0 + 46.2500 179.5000 -38.0 + 48.5000 185.7500 -38.0 + 52.2500 194.5000 -38.0 + 57.2500 200.5000 -38.0 + 58.2500 202.5000 -38.0 + 64.2500 207.5000 -38.0 + 70.5000 211.7500 -38.0 + 74.5000 213.7500 -38.0 + 76.2500 214.5000 -38.0 + 79.5000 214.7500 -38.0 + 81.2500 215.5000 -38.0 + 100.5000 215.7500 -38.0 + 107.5000 216.7500 -38.0 + 109.2500 217.5000 -38.0 + 121.5000 217.7500 -38.0 + 123.5000 216.7500 -38.0 + 125.5000 216.7500 -38.0 + 136.5000 211.7500 -38.0 + 147.7500 202.5000 -38.0 + 150.5000 198.7500 -38.0 + 155.5000 192.7500 -38.0 + 159.5000 186.7500 -38.0 + 162.7500 177.5000 -38.0 + 163.5000 175.7500 -38.0 + 163.7500 172.5000 -38.0 + 164.5000 170.7500 -38.0 + 164.7500 162.5000 -38.0 + 165.5000 160.7500 -38.0 + 165.7500 142.5000 -38.0 + 164.7500 140.5000 -38.0 + 164.7500 133.5000 -38.0 + 163.7500 131.5000 -38.0 + 163.7500 125.5000 -38.0 + 162.7500 123.5000 -38.0 + 162.7500 120.5000 -38.0 + 161.7500 118.5000 -38.0 + 161.7500 114.5000 -38.0 + 160.7500 112.5000 -38.0 + 160.7500 109.5000 -38.0 + 158.7500 105.5000 -38.0 + 158.7500 103.5000 -38.0 + 150.7500 87.5000 -38.0 + 147.7500 84.5000 -38.0 + 146.7500 82.5000 -38.0 + 138.7500 74.5000 -38.0 + 132.7500 70.5000 -38.0 + 126.5000 68.2500 -38.0 + 124.7500 67.5000 -38.0 + 121.5000 67.2500 -38.0 + 119.7500 66.5000 -38.0 + 101.7500 75.5000 -38.0 + 103.5000 74.7500 -38.0 + 105.2500 75.5000 -38.0 + 105.5000 77.7500 -38.0 + 109.2500 80.5000 -38.0 + 116.5000 80.7500 -38.0 + 120.5000 78.7500 -38.0 + 122.2500 79.5000 -38.0 + 123.5000 78.7500 -38.0 + 127.2500 79.5000 -38.0 + 128.2500 81.5000 -38.0 + 129.5000 81.7500 -38.0 + 137.2500 91.5000 -38.0 + 137.2500 95.5000 -38.0 + 139.2500 100.5000 -38.0 + 146.2500 107.5000 -38.0 + 146.2500 109.5000 -38.0 + 155.2500 127.5000 -38.0 + 155.2500 135.5000 -38.0 + 153.5000 142.2500 -38.0 + 153.2500 154.5000 -38.0 + 152.5000 156.2500 -38.0 + 151.2500 171.5000 -38.0 + 146.2500 185.5000 -38.0 + 144.5000 186.2500 -38.0 + 129.5000 200.2500 -38.0 + 122.5000 204.2500 -38.0 + 119.5000 204.2500 -38.0 + 113.5000 207.2500 -38.0 + 102.5000 207.2500 -38.0 + 100.5000 208.2500 -38.0 + 90.5000 207.2500 -38.0 + 84.5000 205.2500 -38.0 + 76.5000 200.2500 -38.0 + 64.7500 187.5000 -38.0 + 58.7500 177.5000 -38.0 + 58.7500 175.5000 -38.0 + 57.7500 173.5000 -38.0 + 57.7500 167.5000 -38.0 + 56.7500 165.5000 -38.0 + 56.7500 155.5000 -38.0 + 57.5000 153.7500 -38.0 + 57.7500 147.5000 -38.0 + 56.7500 145.5000 -38.0 + 56.7500 140.5000 -38.0 + 55.7500 138.5000 -38.0 + 55.7500 134.5000 -38.0 + 54.7500 131.5000 -38.0 + 57.5000 128.7500 -38.0 + 58.7500 123.5000 -38.0 + 61.7500 119.5000 -38.0 + 69.5000 102.7500 -38.0 + 71.7500 94.5000 -38.0 + 79.5000 86.7500 -38.0 + 81.5000 86.7500 -38.0 + 84.5000 83.7500 -38.0 + 86.5000 83.7500 -38.0 + 89.5000 80.7500 -38.0 + 94.5000 80.7500 -38.0 + 96.5000 79.7500 -38.0 + 99.5000 79.7500 -38.0 + 101.5000 77.7500 -38.0 + 50.7500 182.5000 -38.0 + 51.5000 181.7500 -38.0 + 52.2500 182.5000 -38.0 + 51.5000 183.2500 -38.0 + 95.2500 65.5000 -40.0 + 94.5000 66.2500 -40.0 + 90.5000 66.2500 -40.0 + 88.5000 67.2500 -40.0 + 84.5000 67.2500 -40.0 + 74.5000 72.2500 -40.0 + 70.5000 75.2500 -40.0 + 65.5000 81.2500 -40.0 + 61.5000 87.2500 -40.0 + 58.2500 91.5000 -40.0 + 53.2500 101.5000 -40.0 + 52.2500 106.5000 -40.0 + 51.2500 108.5000 -40.0 + 49.2500 118.5000 -40.0 + 47.2500 127.5000 -40.0 + 46.2500 134.5000 -40.0 + 45.5000 136.2500 -40.0 + 44.2500 144.5000 -40.0 + 43.5000 146.2500 -40.0 + 43.2500 174.5000 -40.0 + 44.2500 176.5000 -40.0 + 44.2500 178.5000 -40.0 + 45.2500 180.5000 -40.0 + 45.2500 182.5000 -40.0 + 46.5000 185.7500 -40.0 + 50.2500 194.5000 -40.0 + 59.5000 205.7500 -40.0 + 63.2500 208.5000 -40.0 + 67.5000 211.7500 -40.0 + 74.2500 215.5000 -40.0 + 77.5000 215.7500 -40.0 + 79.2500 216.5000 -40.0 + 99.5000 216.7500 -40.0 + 106.5000 217.7500 -40.0 + 108.2500 218.5000 -40.0 + 122.5000 218.7500 -40.0 + 124.5000 217.7500 -40.0 + 126.5000 217.7500 -40.0 + 137.5000 212.7500 -40.0 + 148.5000 203.7500 -40.0 + 157.7500 192.5000 -40.0 + 163.5000 181.7500 -40.0 + 163.7500 179.5000 -40.0 + 164.7500 176.5000 -40.0 + 165.5000 174.7500 -40.0 + 165.7500 170.5000 -40.0 + 166.5000 168.7500 -40.0 + 166.7500 161.5000 -40.0 + 167.5000 159.7500 -40.0 + 167.7500 149.5000 -40.0 + 166.7500 147.5000 -40.0 + 166.7500 138.5000 -40.0 + 165.7500 136.5000 -40.0 + 165.7500 132.5000 -40.0 + 164.7500 130.5000 -40.0 + 164.7500 124.5000 -40.0 + 163.7500 122.5000 -40.0 + 163.7500 117.5000 -40.0 + 161.7500 113.5000 -40.0 + 161.7500 110.5000 -40.0 + 160.7500 108.5000 -40.0 + 160.7500 106.5000 -40.0 + 159.7500 104.5000 -40.0 + 159.7500 102.5000 -40.0 + 152.7500 88.5000 -40.0 + 147.7500 82.5000 -40.0 + 144.7500 78.5000 -40.0 + 137.5000 72.2500 -40.0 + 127.5000 67.2500 -40.0 + 125.7500 66.5000 -40.0 + 122.5000 66.2500 -40.0 + 120.7500 65.5000 -40.0 + 101.7500 73.5000 -40.0 + 102.5000 72.7500 -40.0 + 104.5000 73.7500 -40.0 + 106.2500 74.5000 -40.0 + 106.2500 77.5000 -40.0 + 110.2500 79.5000 -40.0 + 117.5000 79.7500 -40.0 + 121.5000 77.7500 -40.0 + 129.5000 77.7500 -40.0 + 133.2500 82.5000 -40.0 + 136.2500 88.5000 -40.0 + 140.2500 92.5000 -40.0 + 140.2500 95.5000 -40.0 + 142.2500 97.5000 -40.0 + 141.5000 99.2500 -40.0 + 142.2500 101.5000 -40.0 + 146.2500 105.5000 -40.0 + 150.2500 113.5000 -40.0 + 150.2500 115.5000 -40.0 + 153.2500 119.5000 -40.0 + 156.2500 124.5000 -40.0 + 156.2500 127.5000 -40.0 + 157.2500 130.5000 -40.0 + 156.2500 139.5000 -40.0 + 155.5000 141.2500 -40.0 + 155.2500 158.5000 -40.0 + 154.2500 163.5000 -40.0 + 153.2500 172.5000 -40.0 + 151.2500 178.5000 -40.0 + 149.2500 183.5000 -40.0 + 148.5000 185.2500 -40.0 + 146.5000 186.2500 -40.0 + 139.5000 193.2500 -40.0 + 129.5000 202.2500 -40.0 + 119.5000 207.2500 -40.0 + 116.5000 207.2500 -40.0 + 112.5000 209.2500 -40.0 + 108.5000 209.2500 -40.0 + 103.5000 208.2500 -40.0 + 101.5000 209.2500 -40.0 + 98.5000 209.2500 -40.0 + 96.7500 208.5000 -40.0 + 90.5000 208.2500 -40.0 + 85.5000 207.2500 -40.0 + 83.5000 206.2500 -40.0 + 75.5000 201.2500 -40.0 + 63.7500 188.5000 -40.0 + 60.7500 184.5000 -40.0 + 57.7500 179.5000 -40.0 + 57.7500 177.5000 -40.0 + 55.7500 173.5000 -40.0 + 55.7500 169.5000 -40.0 + 54.7500 167.5000 -40.0 + 54.7500 140.5000 -40.0 + 53.7500 138.5000 -40.0 + 53.7500 133.5000 -40.0 + 52.7500 131.5000 -40.0 + 53.7500 129.5000 -40.0 + 62.5000 112.7500 -40.0 + 62.7500 110.5000 -40.0 + 67.7500 100.5000 -40.0 + 68.5000 98.7500 -40.0 + 68.7500 94.5000 -40.0 + 72.5000 88.7500 -40.0 + 74.7500 87.5000 -40.0 + 81.5000 82.7500 -40.0 + 83.5000 82.7500 -40.0 + 83.7500 81.5000 -40.0 + 85.5000 79.7500 -40.0 + 91.5000 79.7500 -40.0 + 93.5000 78.7500 -40.0 + 95.5000 78.7500 -40.0 + 99.5000 76.7500 -40.0 + 99.7500 74.5000 -40.0 + 143.7500 95.5000 -40.0 + 144.5000 94.7500 -40.0 + 145.2500 95.5000 -40.0 + 144.5000 97.2500 -40.0 + 66.7500 204.5000 -40.0 + 67.5000 203.7500 -40.0 + 68.2500 204.5000 -40.0 + 67.5000 205.2500 -40.0 + 95.2500 64.5000 -42.0 + 94.5000 65.2500 -42.0 + 89.5000 65.2500 -42.0 + 87.5000 66.2500 -42.0 + 84.2500 66.5000 -42.0 + 75.5000 70.2500 -42.0 + 70.5000 74.2500 -42.0 + 68.5000 75.2500 -42.0 + 68.2500 76.5000 -42.0 + 64.5000 80.2500 -42.0 + 58.2500 88.5000 -42.0 + 53.5000 97.2500 -42.0 + 53.2500 99.5000 -42.0 + 51.2500 103.5000 -42.0 + 50.2500 108.5000 -42.0 + 49.2500 110.5000 -42.0 + 48.2500 117.5000 -42.0 + 47.5000 119.2500 -42.0 + 46.2500 127.5000 -42.0 + 45.5000 129.2500 -42.0 + 44.2500 137.5000 -42.0 + 43.2500 139.5000 -42.0 + 42.2500 146.5000 -42.0 + 41.5000 148.2500 -42.0 + 41.2500 154.5000 -42.0 + 40.2500 156.5000 -42.0 + 41.2500 158.5000 -42.0 + 41.2500 173.5000 -42.0 + 42.2500 175.5000 -42.0 + 42.2500 179.5000 -42.0 + 44.2500 183.5000 -42.0 + 44.2500 185.5000 -42.0 + 50.2500 197.5000 -42.0 + 58.2500 206.5000 -42.0 + 64.2500 211.5000 -42.0 + 70.5000 215.7500 -42.0 + 75.5000 216.7500 -42.0 + 77.2500 217.5000 -42.0 + 98.5000 217.7500 -42.0 + 105.5000 218.7500 -42.0 + 107.2500 219.5000 -42.0 + 124.5000 219.7500 -42.0 + 132.5000 215.7500 -42.0 + 134.5000 215.7500 -42.0 + 140.5000 211.7500 -42.0 + 142.5000 210.7500 -42.0 + 148.5000 204.7500 -42.0 + 150.5000 203.7500 -42.0 + 154.5000 198.7500 -42.0 + 159.5000 192.7500 -42.0 + 163.5000 185.7500 -42.0 + 163.7500 183.5000 -42.0 + 165.7500 179.5000 -42.0 + 166.7500 174.5000 -42.0 + 167.5000 172.7500 -42.0 + 167.7500 167.5000 -42.0 + 168.5000 165.7500 -42.0 + 168.7500 147.5000 -42.0 + 167.7500 145.5000 -42.0 + 167.7500 138.5000 -42.0 + 166.7500 136.5000 -42.0 + 166.7500 132.5000 -42.0 + 165.7500 130.5000 -42.0 + 165.7500 123.5000 -42.0 + 164.7500 121.5000 -42.0 + 164.7500 118.5000 -42.0 + 163.7500 116.5000 -42.0 + 163.7500 114.5000 -42.0 + 162.7500 112.5000 -42.0 + 162.7500 108.5000 -42.0 + 160.7500 104.5000 -42.0 + 160.7500 102.5000 -42.0 + 158.7500 98.5000 -42.0 + 156.5000 92.2500 -42.0 + 151.7500 85.5000 -42.0 + 150.7500 83.5000 -42.0 + 139.7500 72.5000 -42.0 + 132.7500 68.5000 -42.0 + 126.5000 66.2500 -42.0 + 124.7500 65.5000 -42.0 + 121.5000 65.2500 -42.0 + 119.7500 64.5000 -42.0 + 99.7500 72.5000 -42.0 + 100.5000 71.7500 -42.0 + 104.5000 71.7500 -42.0 + 108.2500 74.5000 -42.0 + 108.2500 76.5000 -42.0 + 109.5000 76.7500 -42.0 + 111.2500 77.5000 -42.0 + 116.5000 77.7500 -42.0 + 118.5000 76.7500 -42.0 + 121.5000 76.7500 -42.0 + 123.5000 75.7500 -42.0 + 130.5000 75.7500 -42.0 + 132.2500 76.5000 -42.0 + 132.2500 78.5000 -42.0 + 135.2500 82.5000 -42.0 + 137.2500 86.5000 -42.0 + 144.2500 95.5000 -42.0 + 145.2500 97.5000 -42.0 + 147.2500 98.5000 -42.0 + 147.2500 101.5000 -42.0 + 149.2500 105.5000 -42.0 + 149.2500 107.5000 -42.0 + 154.2500 117.5000 -42.0 + 157.2500 122.5000 -42.0 + 157.2500 126.5000 -42.0 + 158.2500 128.5000 -42.0 + 158.2500 132.5000 -42.0 + 157.5000 134.2500 -42.0 + 157.2500 142.5000 -42.0 + 156.2500 144.5000 -42.0 + 157.2500 146.5000 -42.0 + 157.2500 160.5000 -42.0 + 156.5000 162.2500 -42.0 + 156.2500 169.5000 -42.0 + 155.2500 174.5000 -42.0 + 154.2500 177.5000 -42.0 + 151.2500 184.5000 -42.0 + 136.5000 198.2500 -42.0 + 129.5000 204.2500 -42.0 + 124.5000 207.2500 -42.0 + 122.5000 207.2500 -42.0 + 118.5000 209.2500 -42.0 + 116.5000 209.2500 -42.0 + 114.5000 210.2500 -42.0 + 112.5000 210.2500 -42.0 + 109.5000 211.2500 -42.0 + 103.5000 209.2500 -42.0 + 98.5000 211.2500 -42.0 + 96.7500 209.5000 -42.0 + 90.5000 209.2500 -42.0 + 83.5000 208.2500 -42.0 + 79.5000 205.2500 -42.0 + 75.5000 203.2500 -42.0 + 59.7500 186.5000 -42.0 + 54.7500 176.5000 -42.0 + 54.7500 174.5000 -42.0 + 53.7500 172.5000 -42.0 + 53.7500 168.5000 -42.0 + 52.7500 166.5000 -42.0 + 52.7500 134.5000 -42.0 + 51.7500 132.5000 -42.0 + 51.7500 130.5000 -42.0 + 52.7500 127.5000 -42.0 + 54.7500 122.5000 -42.0 + 57.5000 118.7500 -42.0 + 58.7500 114.5000 -42.0 + 60.5000 110.7500 -42.0 + 60.7500 108.5000 -42.0 + 63.7500 104.5000 -42.0 + 66.7500 98.5000 -42.0 + 67.7500 89.5000 -42.0 + 71.5000 86.7500 -42.0 + 75.5000 84.7500 -42.0 + 82.5000 78.7500 -42.0 + 84.5000 77.7500 -42.0 + 86.2500 78.5000 -42.0 + 90.5000 78.7500 -42.0 + 91.5000 76.7500 -42.0 + 94.5000 76.7500 -42.0 + 97.5000 75.7500 -42.0 + 97.7500 73.5000 -42.0 + 46.7500 142.5000 -42.0 + 47.5000 141.7500 -42.0 + 48.2500 142.5000 -42.0 + 47.5000 144.2500 -42.0 + 96.2500 63.5000 -44.0 + 95.5000 64.2500 -44.0 + 90.5000 64.2500 -44.0 + 88.5000 65.2500 -44.0 + 86.5000 65.2500 -44.0 + 84.5000 66.2500 -44.0 + 82.5000 66.2500 -44.0 + 70.5000 72.2500 -44.0 + 65.5000 77.2500 -44.0 + 60.5000 83.2500 -44.0 + 57.2500 87.5000 -44.0 + 51.2500 99.5000 -44.0 + 50.2500 104.5000 -44.0 + 49.2500 106.5000 -44.0 + 47.2500 115.5000 -44.0 + 46.5000 117.2500 -44.0 + 46.2500 121.5000 -44.0 + 45.5000 123.2500 -44.0 + 44.2500 131.5000 -44.0 + 43.2500 133.5000 -44.0 + 40.2500 148.5000 -44.0 + 39.5000 150.2500 -44.0 + 39.2500 170.5000 -44.0 + 40.2500 172.5000 -44.0 + 40.2500 177.5000 -44.0 + 41.2500 179.5000 -44.0 + 41.2500 181.5000 -44.0 + 43.2500 185.5000 -44.0 + 43.2500 187.5000 -44.0 + 47.2500 195.5000 -44.0 + 50.2500 199.5000 -44.0 + 51.2500 201.5000 -44.0 + 59.5000 209.7500 -44.0 + 63.2500 212.5000 -44.0 + 69.5000 216.7500 -44.0 + 74.5000 217.7500 -44.0 + 76.2500 218.5000 -44.0 + 97.5000 218.7500 -44.0 + 104.5000 219.7500 -44.0 + 106.2500 220.5000 -44.0 + 122.5000 220.7500 -44.0 + 124.5000 219.7500 -44.0 + 127.7500 219.5000 -44.0 + 138.5000 214.7500 -44.0 + 143.5000 210.7500 -44.0 + 145.5000 209.7500 -44.0 + 155.5000 199.7500 -44.0 + 160.5000 193.7500 -44.0 + 165.7500 184.5000 -44.0 + 166.7500 179.5000 -44.0 + 168.7500 173.5000 -44.0 + 169.7500 164.5000 -44.0 + 170.5000 162.7500 -44.0 + 170.7500 156.5000 -44.0 + 169.7500 154.5000 -44.0 + 169.7500 145.5000 -44.0 + 168.7500 143.5000 -44.0 + 168.7500 138.5000 -44.0 + 167.7500 136.5000 -44.0 + 167.7500 131.5000 -44.0 + 166.7500 129.5000 -44.0 + 166.7500 124.5000 -44.0 + 165.7500 122.5000 -44.0 + 165.7500 118.5000 -44.0 + 164.7500 116.5000 -44.0 + 164.7500 114.5000 -44.0 + 163.7500 112.5000 -44.0 + 163.7500 108.5000 -44.0 + 161.7500 104.5000 -44.0 + 161.7500 102.5000 -44.0 + 158.7500 96.5000 -44.0 + 158.7500 94.5000 -44.0 + 153.7500 86.5000 -44.0 + 152.7500 84.5000 -44.0 + 147.7500 79.5000 -44.0 + 146.7500 77.5000 -44.0 + 138.5000 71.2500 -44.0 + 131.7500 67.5000 -44.0 + 125.5000 65.2500 -44.0 + 123.7500 64.5000 -44.0 + 119.5000 64.2500 -44.0 + 117.7500 63.5000 -44.0 + 97.5000 70.7500 -44.0 + 99.5000 70.7500 -44.0 + 101.5000 71.7500 -44.0 + 104.5000 70.7500 -44.0 + 106.2500 72.5000 -44.0 + 109.5000 72.7500 -44.0 + 114.5000 74.7500 -44.0 + 120.5000 71.7500 -44.0 + 123.2500 74.5000 -44.0 + 132.5000 74.7500 -44.0 + 134.2500 76.5000 -44.0 + 134.2500 79.5000 -44.0 + 138.2500 83.5000 -44.0 + 140.2500 87.5000 -44.0 + 144.2500 91.5000 -44.0 + 150.2500 101.5000 -44.0 + 150.2500 104.5000 -44.0 + 155.2500 114.5000 -44.0 + 155.2500 116.5000 -44.0 + 158.2500 120.5000 -44.0 + 158.2500 123.5000 -44.0 + 159.2500 125.5000 -44.0 + 159.2500 136.5000 -44.0 + 158.5000 138.2500 -44.0 + 158.2500 145.5000 -44.0 + 159.2500 147.5000 -44.0 + 159.2500 163.5000 -44.0 + 158.5000 165.2500 -44.0 + 158.2500 173.5000 -44.0 + 157.2500 176.5000 -44.0 + 154.2500 183.5000 -44.0 + 147.5000 190.2500 -44.0 + 137.5000 199.2500 -44.0 + 130.5000 205.2500 -44.0 + 125.5000 208.2500 -44.0 + 123.5000 208.2500 -44.0 + 117.5000 211.2500 -44.0 + 115.5000 211.2500 -44.0 + 113.5000 212.2500 -44.0 + 108.5000 212.2500 -44.0 + 106.7500 211.5000 -44.0 + 100.5000 211.2500 -44.0 + 98.5000 212.2500 -44.0 + 96.7500 210.5000 -44.0 + 88.5000 210.2500 -44.0 + 83.5000 209.2500 -44.0 + 75.5000 204.2500 -44.0 + 73.5000 203.2500 -44.0 + 58.7500 187.5000 -44.0 + 55.7500 183.5000 -44.0 + 55.7500 181.5000 -44.0 + 52.7500 175.5000 -44.0 + 52.7500 173.5000 -44.0 + 51.7500 171.5000 -44.0 + 51.7500 168.5000 -44.0 + 50.7500 166.5000 -44.0 + 50.7500 146.5000 -44.0 + 51.5000 144.7500 -44.0 + 51.7500 139.5000 -44.0 + 50.7500 137.5000 -44.0 + 50.7500 131.5000 -44.0 + 49.7500 128.5000 -44.0 + 56.7500 114.5000 -44.0 + 57.5000 112.7500 -44.0 + 57.7500 108.5000 -44.0 + 62.7500 100.5000 -44.0 + 64.7500 90.5000 -44.0 + 67.5000 87.7500 -44.0 + 72.5000 84.7500 -44.0 + 74.7500 83.5000 -44.0 + 77.5000 79.7500 -44.0 + 81.5000 76.7500 -44.0 + 86.5000 76.7500 -44.0 + 90.5000 72.7500 -44.0 + 92.2500 73.5000 -44.0 + 94.5000 73.7500 -44.0 + 98.2500 62.5000 -46.0 + 97.5000 63.2500 -46.0 + 92.5000 63.2500 -46.0 + 90.5000 64.2500 -46.0 + 87.5000 64.2500 -46.0 + 85.5000 65.2500 -46.0 + 82.2500 65.5000 -46.0 + 73.5000 69.2500 -46.0 + 67.5000 74.2500 -46.0 + 65.5000 75.2500 -46.0 + 59.5000 82.2500 -46.0 + 56.2500 86.5000 -46.0 + 50.2500 98.5000 -46.0 + 48.2500 107.5000 -46.0 + 47.2500 109.5000 -46.0 + 44.2500 124.5000 -46.0 + 40.2500 142.5000 -46.0 + 39.5000 144.2500 -46.0 + 38.2500 152.5000 -46.0 + 37.5000 154.2500 -46.0 + 37.2500 167.5000 -46.0 + 38.2500 169.5000 -46.0 + 38.2500 175.5000 -46.0 + 39.2500 177.5000 -46.0 + 39.2500 180.5000 -46.0 + 41.2500 184.5000 -46.0 + 41.5000 186.7500 -46.0 + 45.2500 195.5000 -46.0 + 49.2500 200.5000 -46.0 + 50.2500 202.5000 -46.0 + 57.2500 209.5000 -46.0 + 63.2500 214.5000 -46.0 + 68.5000 217.7500 -46.0 + 73.5000 218.7500 -46.0 + 75.2500 219.5000 -46.0 + 83.5000 219.7500 -46.0 + 85.5000 220.7500 -46.0 + 87.5000 219.7500 -46.0 + 96.5000 219.7500 -46.0 + 105.5000 220.7500 -46.0 + 107.2500 221.5000 -46.0 + 122.5000 221.7500 -46.0 + 124.5000 220.7500 -46.0 + 127.5000 220.7500 -46.0 + 143.5000 212.7500 -46.0 + 158.5000 198.7500 -46.0 + 162.7500 192.5000 -46.0 + 167.7500 182.5000 -46.0 + 169.7500 173.5000 -46.0 + 170.5000 171.7500 -46.0 + 170.7500 167.5000 -46.0 + 171.5000 165.7500 -46.0 + 171.7500 156.5000 -46.0 + 170.7500 154.5000 -46.0 + 170.7500 146.5000 -46.0 + 169.7500 144.5000 -46.0 + 169.7500 139.5000 -46.0 + 168.7500 137.5000 -46.0 + 168.7500 131.5000 -46.0 + 167.7500 129.5000 -46.0 + 167.7500 125.5000 -46.0 + 166.7500 123.5000 -46.0 + 166.7500 120.5000 -46.0 + 165.7500 118.5000 -46.0 + 165.7500 114.5000 -46.0 + 164.7500 112.5000 -46.0 + 164.7500 109.5000 -46.0 + 162.7500 105.5000 -46.0 + 162.7500 103.5000 -46.0 + 160.7500 99.5000 -46.0 + 160.7500 97.5000 -46.0 + 154.7500 85.5000 -46.0 + 146.7500 76.5000 -46.0 + 142.5000 73.2500 -46.0 + 138.7500 70.5000 -46.0 + 131.7500 66.5000 -46.0 + 129.5000 66.2500 -46.0 + 125.5000 64.2500 -46.0 + 118.5000 63.2500 -46.0 + 116.7500 62.5000 -46.0 + 82.5000 69.7500 -46.0 + 96.5000 69.7500 -46.0 + 102.5000 72.7500 -46.0 + 102.7500 70.5000 -46.0 + 104.5000 69.7500 -46.0 + 106.5000 71.7500 -46.0 + 108.5000 70.7500 -46.0 + 110.5000 70.7500 -46.0 + 117.5000 71.7500 -46.0 + 120.5000 70.7500 -46.0 + 125.5000 72.7500 -46.0 + 127.2500 73.5000 -46.0 + 132.5000 73.7500 -46.0 + 134.2500 74.5000 -46.0 + 137.2500 80.5000 -46.0 + 141.5000 83.7500 -46.0 + 143.5000 84.7500 -46.0 + 147.2500 90.5000 -46.0 + 147.2500 92.5000 -46.0 + 148.2500 95.5000 -46.0 + 151.2500 99.5000 -46.0 + 151.2500 102.5000 -46.0 + 152.2500 104.5000 -46.0 + 152.2500 106.5000 -46.0 + 155.2500 110.5000 -46.0 + 155.2500 112.5000 -46.0 + 159.2500 120.5000 -46.0 + 159.2500 122.5000 -46.0 + 160.2500 124.5000 -46.0 + 160.2500 126.5000 -46.0 + 161.2500 128.5000 -46.0 + 160.5000 130.2500 -46.0 + 160.2500 135.5000 -46.0 + 159.5000 137.2500 -46.0 + 159.2500 143.5000 -46.0 + 160.2500 145.5000 -46.0 + 160.2500 148.5000 -46.0 + 161.2500 150.5000 -46.0 + 161.2500 162.5000 -46.0 + 160.5000 164.2500 -46.0 + 160.2500 174.5000 -46.0 + 158.2500 178.5000 -46.0 + 157.2500 183.5000 -46.0 + 155.5000 184.2500 -46.0 + 149.5000 190.2500 -46.0 + 136.2500 202.5000 -46.0 + 129.5000 207.2500 -46.0 + 124.5000 210.2500 -46.0 + 122.5000 210.2500 -46.0 + 118.5000 212.2500 -46.0 + 115.5000 212.2500 -46.0 + 113.5000 213.2500 -46.0 + 109.5000 213.2500 -46.0 + 104.5000 212.2500 -46.0 + 102.5000 211.2500 -46.0 + 100.5000 212.2500 -46.0 + 98.5000 212.2500 -46.0 + 96.7500 211.5000 -46.0 + 88.5000 211.2500 -46.0 + 83.5000 210.2500 -46.0 + 75.5000 206.2500 -46.0 + 71.5000 203.2500 -46.0 + 69.5000 202.2500 -46.0 + 68.7500 200.5000 -46.0 + 54.7500 185.5000 -46.0 + 54.7500 183.5000 -46.0 + 51.7500 177.5000 -46.0 + 51.7500 175.5000 -46.0 + 49.7500 171.5000 -46.0 + 49.7500 168.5000 -46.0 + 48.7500 166.5000 -46.0 + 48.7500 147.5000 -46.0 + 49.5000 145.7500 -46.0 + 49.7500 130.5000 -46.0 + 48.7500 127.5000 -46.0 + 49.5000 125.7500 -46.0 + 49.7500 122.5000 -46.0 + 51.7500 118.5000 -46.0 + 56.5000 109.7500 -46.0 + 56.7500 107.5000 -46.0 + 60.5000 99.7500 -46.0 + 60.7500 95.5000 -46.0 + 63.7500 89.5000 -46.0 + 69.5000 84.7500 -46.0 + 71.5000 83.7500 -46.0 + 73.7500 81.5000 -46.0 + 72.7500 79.5000 -46.0 + 77.5000 76.7500 -46.0 + 81.5000 74.7500 -46.0 + 81.7500 73.5000 -46.0 + 80.7500 71.5000 -46.0 + 100.2500 61.5000 -48.0 + 99.5000 62.2500 -48.0 + 93.5000 62.2500 -48.0 + 91.5000 63.2500 -48.0 + 88.5000 63.2500 -48.0 + 86.5000 64.2500 -48.0 + 83.2500 64.5000 -48.0 + 72.5000 69.2500 -48.0 + 68.5000 72.2500 -48.0 + 66.5000 73.2500 -48.0 + 59.5000 80.2500 -48.0 + 56.2500 84.5000 -48.0 + 50.2500 96.5000 -48.0 + 49.2500 101.5000 -48.0 + 47.2500 105.5000 -48.0 + 46.2500 110.5000 -48.0 + 45.5000 112.2500 -48.0 + 44.2500 120.5000 -48.0 + 43.2500 125.5000 -48.0 + 42.2500 128.5000 -48.0 + 40.2500 137.5000 -48.0 + 39.2500 142.5000 -48.0 + 38.2500 144.5000 -48.0 + 37.2500 151.5000 -48.0 + 36.5000 153.2500 -48.0 + 36.2500 159.5000 -48.0 + 35.2500 162.5000 -48.0 + 36.2500 164.5000 -48.0 + 36.2500 171.5000 -48.0 + 37.2500 173.5000 -48.0 + 37.2500 176.5000 -48.0 + 38.2500 178.5000 -48.0 + 38.2500 180.5000 -48.0 + 39.2500 182.5000 -48.0 + 39.2500 184.5000 -48.0 + 43.2500 192.5000 -48.0 + 43.2500 194.5000 -48.0 + 46.2500 198.5000 -48.0 + 47.2500 200.5000 -48.0 + 55.2500 209.5000 -48.0 + 61.2500 214.5000 -48.0 + 66.2500 217.5000 -48.0 + 72.5000 219.7500 -48.0 + 81.5000 220.7500 -48.0 + 86.5000 221.7500 -48.0 + 88.5000 220.7500 -48.0 + 90.5000 220.7500 -48.0 + 95.5000 221.7500 -48.0 + 98.5000 220.7500 -48.0 + 100.2500 221.5000 -48.0 + 105.5000 221.7500 -48.0 + 107.2500 222.5000 -48.0 + 116.5000 222.7500 -48.0 + 118.5000 221.7500 -48.0 + 125.5000 221.7500 -48.0 + 127.5000 220.7500 -48.0 + 129.7500 220.5000 -48.0 + 142.5000 214.7500 -48.0 + 154.5000 203.7500 -48.0 + 156.5000 202.7500 -48.0 + 156.7500 201.5000 -48.0 + 162.7500 194.5000 -48.0 + 166.5000 187.7500 -48.0 + 169.7500 178.5000 -48.0 + 171.7500 169.5000 -48.0 + 172.5000 167.7500 -48.0 + 172.7500 157.5000 -48.0 + 171.7500 155.5000 -48.0 + 171.7500 147.5000 -48.0 + 170.7500 145.5000 -48.0 + 170.7500 139.5000 -48.0 + 169.7500 137.5000 -48.0 + 169.7500 133.5000 -48.0 + 168.7500 131.5000 -48.0 + 168.7500 127.5000 -48.0 + 167.7500 125.5000 -48.0 + 167.7500 121.5000 -48.0 + 166.7500 119.5000 -48.0 + 166.7500 117.5000 -48.0 + 165.7500 115.5000 -48.0 + 165.7500 110.5000 -48.0 + 163.7500 106.5000 -48.0 + 163.7500 104.5000 -48.0 + 160.7500 98.5000 -48.0 + 160.7500 96.5000 -48.0 + 158.7500 92.5000 -48.0 + 158.7500 90.5000 -48.0 + 154.7500 84.5000 -48.0 + 153.7500 82.5000 -48.0 + 145.7500 74.5000 -48.0 + 139.5000 70.2500 -48.0 + 127.5000 64.2500 -48.0 + 122.5000 63.2500 -48.0 + 120.7500 62.5000 -48.0 + 115.5000 62.2500 -48.0 + 113.7500 61.5000 -48.0 + 81.7500 69.5000 -48.0 + 82.5000 68.7500 -48.0 + 87.5000 69.7500 -48.0 + 89.5000 68.7500 -48.0 + 92.5000 68.7500 -48.0 + 94.5000 69.7500 -48.0 + 99.5000 70.7500 -48.0 + 102.5000 71.7500 -48.0 + 102.7500 70.5000 -48.0 + 104.5000 68.7500 -48.0 + 106.5000 70.7500 -48.0 + 108.5000 69.7500 -48.0 + 110.5000 69.7500 -48.0 + 112.5000 68.7500 -48.0 + 115.5000 68.7500 -48.0 + 117.2500 69.5000 -48.0 + 123.5000 69.7500 -48.0 + 128.5000 71.7500 -48.0 + 132.2500 73.5000 -48.0 + 135.5000 73.7500 -48.0 + 138.2500 78.5000 -48.0 + 139.2500 80.5000 -48.0 + 140.5000 80.7500 -48.0 + 142.5000 82.7500 -48.0 + 144.5000 83.7500 -48.0 + 147.2500 87.5000 -48.0 + 149.2500 91.5000 -48.0 + 149.2500 93.5000 -48.0 + 152.2500 99.5000 -48.0 + 152.2500 103.5000 -48.0 + 158.2500 115.5000 -48.0 + 158.2500 117.5000 -48.0 + 160.2500 119.5000 -48.0 + 160.2500 121.5000 -48.0 + 161.2500 123.5000 -48.0 + 161.2500 125.5000 -48.0 + 162.2500 127.5000 -48.0 + 161.5000 128.2500 -48.0 + 161.2500 134.5000 -48.0 + 160.5000 136.2500 -48.0 + 160.2500 142.5000 -48.0 + 161.2500 144.5000 -48.0 + 161.2500 146.5000 -48.0 + 162.2500 148.5000 -48.0 + 162.2500 169.5000 -48.0 + 161.2500 176.5000 -48.0 + 159.5000 180.2500 -48.0 + 159.2500 182.5000 -48.0 + 146.5000 195.2500 -48.0 + 135.5000 204.2500 -48.0 + 131.5000 207.2500 -48.0 + 119.5000 213.2500 -48.0 + 116.5000 213.2500 -48.0 + 114.5000 214.2500 -48.0 + 109.5000 214.2500 -48.0 + 104.5000 213.2500 -48.0 + 102.5000 212.2500 -48.0 + 100.5000 213.2500 -48.0 + 98.5000 213.2500 -48.0 + 94.7500 211.5000 -48.0 + 93.5000 212.2500 -48.0 + 90.5000 212.2500 -48.0 + 88.7500 211.5000 -48.0 + 82.5000 211.2500 -48.0 + 72.5000 206.2500 -48.0 + 53.7500 186.5000 -48.0 + 51.7500 182.5000 -48.0 + 51.7500 180.5000 -48.0 + 49.7500 176.5000 -48.0 + 49.7500 174.5000 -48.0 + 47.7500 170.5000 -48.0 + 47.7500 164.5000 -48.0 + 46.7500 162.5000 -48.0 + 46.7500 148.5000 -48.0 + 47.7500 143.5000 -48.0 + 48.5000 141.7500 -48.0 + 48.7500 129.5000 -48.0 + 47.7500 127.5000 -48.0 + 49.7500 118.5000 -48.0 + 58.7500 100.5000 -48.0 + 59.5000 98.7500 -48.0 + 59.7500 94.5000 -48.0 + 61.7500 90.5000 -48.0 + 63.5000 89.7500 -48.0 + 63.7500 88.5000 -48.0 + 69.7500 81.5000 -48.0 + 72.5000 77.7500 -48.0 + 74.5000 77.7500 -48.0 + 76.5000 75.7500 -48.0 + 79.5000 70.7500 -48.0 + 101.2500 60.5000 -50.0 + 100.5000 61.2500 -50.0 + 94.5000 61.2500 -50.0 + 92.5000 62.2500 -50.0 + 89.5000 62.2500 -50.0 + 87.5000 63.2500 -50.0 + 85.5000 63.2500 -50.0 + 83.5000 64.2500 -50.0 + 81.5000 64.2500 -50.0 + 69.5000 70.2500 -50.0 + 63.5000 75.2500 -50.0 + 59.5000 78.2500 -50.0 + 55.2500 84.5000 -50.0 + 51.2500 92.5000 -50.0 + 49.5000 96.2500 -50.0 + 49.2500 99.5000 -50.0 + 46.2500 105.5000 -50.0 + 43.2500 120.5000 -50.0 + 41.2500 129.5000 -50.0 + 40.2500 132.5000 -50.0 + 39.5000 134.2500 -50.0 + 39.2500 137.5000 -50.0 + 38.2500 140.5000 -50.0 + 36.2500 149.5000 -50.0 + 35.2500 156.5000 -50.0 + 34.5000 158.2500 -50.0 + 34.2500 167.5000 -50.0 + 35.2500 169.5000 -50.0 + 35.2500 174.5000 -50.0 + 36.2500 176.5000 -50.0 + 36.2500 179.5000 -50.0 + 38.2500 183.5000 -50.0 + 38.5000 185.7500 -50.0 + 41.2500 192.5000 -50.0 + 46.2500 200.5000 -50.0 + 47.2500 202.5000 -50.0 + 59.2500 214.5000 -50.0 + 68.5000 219.7500 -50.0 + 75.5000 220.7500 -50.0 + 77.2500 221.5000 -50.0 + 84.5000 221.7500 -50.0 + 86.5000 222.7500 -50.0 + 88.5000 221.7500 -50.0 + 90.5000 221.7500 -50.0 + 92.2500 222.5000 -50.0 + 105.5000 222.7500 -50.0 + 110.5000 223.7500 -50.0 + 112.5000 222.7500 -50.0 + 125.5000 222.7500 -50.0 + 129.5000 220.7500 -50.0 + 131.7500 220.5000 -50.0 + 140.5000 216.7500 -50.0 + 144.5000 213.7500 -50.0 + 146.5000 212.7500 -50.0 + 157.7500 202.5000 -50.0 + 160.5000 198.7500 -50.0 + 163.7500 194.5000 -50.0 + 169.7500 182.5000 -50.0 + 170.7500 177.5000 -50.0 + 171.7500 175.5000 -50.0 + 172.7500 168.5000 -50.0 + 173.5000 166.7500 -50.0 + 173.7500 161.5000 -50.0 + 172.7500 159.5000 -50.0 + 172.7500 150.5000 -50.0 + 171.7500 148.5000 -50.0 + 171.7500 141.5000 -50.0 + 170.7500 139.5000 -50.0 + 170.7500 135.5000 -50.0 + 169.7500 133.5000 -50.0 + 169.7500 130.5000 -50 + 168.7500 128.5000 -50.0 + 168.7500 122.5000 -50.0 + 167.7500 120.5000 -50.0 + 167.7500 118.5000 -50.0 + 166.7500 116.5000 -50.0 + 166.7500 114.5000 -50.0 + 165.7500 112.5000 -50.0 + 165.7500 108.5000 -50.0 + 162.7500 102.5000 -50.0 + 162.7500 100.5000 -50.0 + 159.7500 94.5000 -50.0 + 159.5000 92.2500 -50.0 + 156.7500 85.5000 -50.0 + 152.7500 80.5000 -50.0 + 151.7500 78.5000 -50.0 + 145.5000 73.2500 -50.0 + 134.7500 66.5000 -50.0 + 132.5000 66.2500 -50.0 + 126.5000 63.2500 -50.0 + 121.5000 62.2500 -50.0 + 119.7500 61.5000 -50.0 + 114.5000 61.2500 -50.0 + 112.7500 60.5000 -50.0 + 112.7500 68.5000 -50.0 + 113.5000 67.7500 -50.0 + 114.2500 68.5000 -50.0 + 115.5000 67.7500 -50.0 + 117.5000 67.7500 -50.0 + 124.5000 68.7500 -50.0 + 129.5000 69.7500 -50.0 + 133.2500 72.5000 -50.0 + 135.5000 72.7500 -50.0 + 140.2500 78.5000 -50.0 + 141.5000 80.7500 -50.0 + 143.5000 81.7500 -50.0 + 149.2500 88.5000 -50.0 + 149.2500 90.5000 -50.0 + 152.2500 96.5000 -50.0 + 152.2500 100.5000 -50.0 + 153.2500 102.5000 -50.0 + 153.2500 104.5000 -50.0 + 156.2500 108.5000 -50.0 + 161.2500 118.5000 -50.0 + 161.2500 121.5000 -50.0 + 162.2500 123.5000 -50.0 + 162.2500 126.5000 -50.0 + 161.5000 128.2500 -50.0 + 161.2500 135.5000 -50.0 + 162.2500 137.5000 -50.0 + 162.2500 144.5000 -50.0 + 163.2500 146.5000 -50.0 + 163.2500 156.5000 -50.0 + 164.2500 158.5000 -50.0 + 164.2500 166.5000 -50.0 + 163.2500 173.5000 -50.0 + 162.2500 178.5000 -50.0 + 159.2500 184.5000 -50.0 + 144.5000 198.2500 -50.0 + 133.5000 207.2500 -50.0 + 124.5000 212.2500 -50.0 + 122.5000 212.2500 -50.0 + 118.5000 214.2500 -50.0 + 116.5000 214.2500 -50.0 + 114.5000 215.2500 -50.0 + 110.5000 215.2500 -50.0 + 108.7500 214.5000 -50.0 + 99.5000 214.2500 -50.0 + 95.7500 212.5000 -50.0 + 92.5000 212.2500 -50.0 + 90.5000 213.2500 -50.0 + 88.7500 212.5000 -50.0 + 84.5000 212.2500 -50.0 + 79.5000 211.2500 -50.0 + 71.5000 207.2500 -50.0 + 61.5000 197.2500 -50.0 + 56.7500 190.5000 -50.0 + 50.7500 185.5000 -50.0 + 50.7500 182.5000 -50.0 + 48.7500 178.5000 -50.0 + 48.7500 176.5000 -50.0 + 45.7500 170.5000 -50.0 + 45.7500 164.5000 -50.0 + 44.7500 162.5000 -50.0 + 45.5000 161.7500 -50.0 + 44.7500 160.5000 -50.0 + 44.7500 147.5000 -50.0 + 46.7500 141.5000 -50.0 + 47.5000 139.7500 -50.0 + 47.7500 127.5000 -50.0 + 46.7500 125.5000 -50.0 + 47.7500 124.5000 -50.0 + 49.7500 115.5000 -50.0 + 57.7500 99.5000 -50.0 + 58.5000 97.7500 -50.0 + 58.7500 93.5000 -50.0 + 60.7500 91.5000 -50.0 + 63.5000 87.7500 -50.0 + 63.7500 84.5000 -50.0 + 67.5000 81.7500 -50.0 + 69.5000 80.7500 -50.0 + 69.7500 79.5000 -50.0 + 71.5000 77.7500 -50.0 + 73.5000 76.7500 -50.0 + 79.5000 69.7500 -50.0 + 82.5000 69.7500 -50.0 + 84.5000 68.7500 -50.0 + 98.5000 68.7500 -50.0 + 100.2500 70.5000 -50.0 + 102.5000 70.7500 -50.0 + 102.7500 69.5000 -50.0 + 104.5000 68.7500 -50.0 + 106.5000 69.7500 -50.0 + 108.5000 68.7500 -50.0 + 39.7500 179.5000 -50.0 + 40.5000 178.7500 -50.0 + 41.2500 179.5000 -50.0 + 40.5000 180.2500 -50.0 + 100.2500 59.5000 -52.0 + 99.5000 60.2500 -52.0 + 94.5000 60.2500 -52.0 + 92.5000 61.2500 -52.0 + 90.5000 61.2500 -52.0 + 88.5000 62.2500 -52.0 + 86.5000 62.2500 -52.0 + 84.5000 63.2500 -52.0 + 82.2500 63.5000 -52.0 + 73.5000 67.2500 -52.0 + 65.5000 72.2500 -52.0 + 63.5000 73.2500 -52.0 + 58.5000 78.2500 -52.0 + 55.2500 82.5000 -52.0 + 52.2500 88.5000 -52.0 + 51.5000 90.2500 -52.0 + 48.2500 99.5000 -52.0 + 47.5000 101.2500 -52.0 + 45.2500 107.5000 -52.0 + 43.2500 116.5000 -52.0 + 41.2500 126.5000 -52.0 + 40.2500 128.5000 -52.0 + 39.2500 133.5000 -52.0 + 38.2500 136.5000 -52.0 + 36.2500 145.5000 -52.0 + 35.2500 150.5000 -52.0 + 34.5000 152.2500 -52.0 + 34.2500 156.5000 -52.0 + 33.5000 158.2500 -52.0 + 33.2500 169.5000 -52.0 + 34.2500 171.5000 -52.0 + 34.2500 175.5000 -52.0 + 35.2500 177.5000 -52.0 + 35.2500 180.5000 -52.0 + 37.2500 184.5000 -52.0 + 37.2500 186.5000 -52.0 + 41.2500 194.5000 -52.0 + 44.2500 199.5000 -52.0 + 45.2500 201.5000 -52.0 + 59.5000 215.7500 -52.0 + 68.2500 220.5000 -52.0 + 70.5000 220.7500 -52.0 + 72.2500 221.5000 -52.0 + 76.5000 221.7500 -52.0 + 78.2500 222.5000 -52.0 + 88.5000 222.7500 -52.0 + 90.2500 223.5000 -52.0 + 120.5000 223.7500 -52.0 + 122.5000 222.7500 -52.0 + 127.5000 222.7500 -52.0 + 133.7500 220.5000 -52.0 + 142.5000 216.7500 -52.0 + 147.5000 212.7500 -52.0 + 149.5000 211.7500 -52.0 + 160.5000 200.7500 -52.0 + 164.7500 194.5000 -52.0 + 170.7500 182.5000 -52.0 + 172.7500 173.5000 -52.0 + 173.5000 171.7500 -52.0 + 173.7500 153.5000 -52.0 + 172.7500 151.5000 -52.0 + 172.7500 144.5000 -52.0 + 171.7500 142.5000 -52.0 + 171.7500 137.5000 -52.0 + 170.7500 135.5000 -52.0 + 170.7500 132.5000 -52.0 + 169.7500 130.5000 -52.0 + 169.7500 126.5000 -52.0 + 168.7500 124.5000 -52.0 + 168.7500 120.5000 -52.0 + 167.7500 118.5000 -52.0 + 167.7500 116.5000 -52.0 + 166.7500 114.5000 -52.0 + 166.7500 112.5000 -52.0 + 165.7500 110.5000 -52.0 + 165.7500 108.5000 -52.0 + 164.7500 106.5000 -52.0 + 164.7500 104.5000 -52.0 + 161.7500 98.5000 -52.0 + 161.5000 96.2500 -52.0 + 158.5000 89.2500 -52.0 + 155.7500 82.5000 -52.0 + 150.5000 76.2500 -52.0 + 146.7500 73.5000 -52.0 + 140.5000 69.2500 -52.0 + 131.7500 64.5000 -52.0 + 125.5000 62.2500 -52.0 + 123.7500 61.5000 -52.0 + 115.5000 60.2500 -52.0 + 113.7500 59.5000 -52.0 + 108.5000 60.7500 -52.0 + 111.5000 60.7500 -52.0 + 113.2500 62.5000 -52.0 + 111.5000 64.2500 -52.0 + 108.5000 64.2500 -52.0 + 106.7500 62.5000 -52.0 + 119.7500 66.5000 -52.0 + 120.5000 65.7500 -52.0 + 123.5000 66.7500 -52.0 + 129.2500 69.5000 -52.0 + 131.5000 69.7500 -52.0 + 135.2500 72.5000 -52.0 + 137.5000 72.7500 -52.0 + 143.2500 78.5000 -52.0 + 143.2500 80.5000 -52.0 + 148.2500 85.5000 -52.0 + 148.2500 87.5000 -52.0 + 151.2500 91.5000 -52.0 + 151.2500 93.5000 -52.0 + 152.2500 95.5000 -52.0 + 152.2500 98.5000 -52.0 + 154.2500 102.5000 -52.0 + 154.2500 104.5000 -52.0 + 159.2500 110.5000 -52.0 + 159.2500 112.5000 -52.0 + 162.2500 118.5000 -52.0 + 162.2500 120.5000 -52.0 + 163.2500 123.5000 -52.0 + 162.2500 125.5000 -52.0 + 161.2500 132.5000 -52.0 + 162.2500 134.5000 -52.0 + 162.2500 138.5000 -52.0 + 163.2500 140.5000 -52.0 + 163.2500 142.5000 -52.0 + 164.2500 144.5000 -52.0 + 164.2500 147.5000 -52.0 + 165.2500 149.5000 -52.0 + 164.5000 150.2500 -52.0 + 164.2500 153.5000 -52.0 + 165.2500 155.5000 -52.0 + 165.2500 169.5000 -52.0 + 163.2500 178.5000 -52.0 + 159.2500 186.5000 -52.0 + 145.2500 199.5000 -52.0 + 138.5000 204.2500 -52.0 + 130.5000 210.2500 -52.0 + 124.5000 213.2500 -52.0 + 122.5000 213.2500 -52.0 + 118.5000 215.2500 -52.0 + 108.5000 215.2500 -52.0 + 101.5000 214.2500 -52.0 + 98.5000 215.2500 -52.0 + 96.7500 213.5000 -52.0 + 84.5000 213.2500 -52.0 + 79.5000 212.2500 -52.0 + 70.5000 208.2500 -52.0 + 65.7500 203.5000 -52.0 + 56.7500 193.5000 -52.0 + 55.7500 191.5000 -52.0 + 53.7500 190.5000 -52.0 + 52.7500 188.5000 -52.0 + 51.5000 188.2500 -52.0 + 48.7500 185.5000 -52.0 + 48.7500 182.5000 -52.0 + 47.7500 180.5000 -52.0 + 47.7500 178.5000 -52.0 + 45.7500 174.5000 -52.0 + 45.7500 172.5000 -52.0 + 43.7500 168.5000 -52.0 + 43.7500 155.5000 -52.0 + 42.7500 153.5000 -52.0 + 42.7500 148.5000 -52.0 + 44.7500 142.5000 -52.0 + 46.5000 138.7500 -52.0 + 46.7500 124.5000 -52.0 + 47.7500 119.5000 -52.0 + 49.7500 113.5000 -52.0 + 53.7500 104.5000 -52.0 + 56.5000 100.7500 -52.0 + 57.7500 94.5000 -52.0 + 58.7500 92.5000 -52.0 + 61.5000 88.7500 -52.0 + 61.7500 86.5000 -52.0 + 62.7500 83.5000 -52.0 + 67.7500 80.5000 -52.0 + 69.7500 76.5000 -52.0 + 71.5000 75.7500 -52.0 + 78.5000 69.7500 -52.0 + 80.5000 69.7500 -52.0 + 84.5000 67.7500 -52.0 + 89.5000 67.7500 -52.0 + 92.5000 68.7500 -52.0 + 94.5000 67.7500 -52.0 + 99.5000 67.7500 -52.0 + 100.2500 69.5000 -52.0 + 102.5000 69.7500 -52.0 + 104.5000 67.7500 -52.0 + 105.5000 68.7500 -52.0 + 109.5000 66.7500 -52.0 + 110.2500 67.5000 -52.0 + 116.5000 67.7500 -52.0 + 37.7500 179.5000 -52.0 + 38.5000 178.7500 -52.0 + 40.2500 179.5000 -52.0 + 39.5000 181.2500 -52.0 + 163.7500 187.5000 -52.0 + 164.5000 186.7500 -52.0 + 165.2500 187.5000 -52.0 + 164.5000 188.2500 -52.0 + 98.2500 58.5000 -54.0 + 97.5000 59.2500 -54.0 + 94.5000 59.2500 -54.0 + 92.5000 60.2500 -54.0 + 88.5000 60.2500 -54.0 + 84.5000 62.2500 -54.0 + 82.2500 62.5000 -54.0 + 69.5000 68.2500 -54.0 + 61.5000 74.2500 -54.0 + 59.5000 75.2500 -54.0 + 59.2500 76.5000 -54.0 + 56.2500 79.5000 -54.0 + 52.5000 86.2500 -54.0 + 50.2500 92.5000 -54.0 + 48.5000 96.2500 -54.0 + 48.2500 98.5000 -54.0 + 45.2500 104.5000 -54.0 + 44.2500 109.5000 -54.0 + 40.2500 127.5000 -54.0 + 39.2500 129.5000 -54.0 + 37.2500 138.5000 -54.0 + 36.2500 141.5000 -54.0 + 35.5000 143.2500 -54.0 + 35.2500 147.5000 -54.0 + 34.2500 150.5000 -54.0 + 33.5000 152.2500 -54.0 + 33.2500 156.5000 -54.0 + 32.5000 158.2500 -54.0 + 32.2500 170.5000 -54.0 + 33.2500 172.5000 -54.0 + 33.2500 175.5000 -54.0 + 34.2500 177.5000 -54.0 + 34.2500 179.5000 -54.0 + 37.5000 188.7500 -54.0 + 40.2500 195.5000 -54.0 + 46.2500 203.5000 -54.0 + 47.2500 205.5000 -54.0 + 49.5000 207.7500 -54.0 + 51.5000 208.7500 -54.0 + 52.5000 210.7500 -54.0 + 54.5000 211.7500 -54.0 + 59.5000 216.7500 -54.0 + 68.2500 221.5000 -54.0 + 76.5000 222.7500 -54.0 + 85.5000 223.7500 -54.0 + 92.5000 224.7500 -54.0 + 94.5000 223.7500 -54.0 + 98.5000 223.7500 -54.0 + 100.2500 224.5000 -54.0 + 114.5000 224.7500 -54.0 + 116.5000 223.7500 -54.0 + 125.5000 223.7500 -54.0 + 127.5000 222.7500 -54.0 + 129.5000 222.7500 -54.0 + 131.5000 221.7500 -54.0 + 133.7500 221.5000 -54.0 + 142.5000 217.7500 -54.0 + 147.5000 213.7500 -54.0 + 149.5000 212.7500 -54.0 + 157.5000 204.7500 -54.0 + 163.7500 197.5000 -54.0 + 170.5000 184.7500 -54.0 + 170.7500 182.5000 -54.0 + 172.7500 178.5000 -54.0 + 173.7500 173.5000 -54.0 + 174.5000 171.7500 -54.0 + 174.7500 156.5000 -54.0 + 173.7500 154.5000 -54.0 + 173.7500 147.5000 -54.0 + 172.7500 145.5000 -54.0 + 172.7500 140.5000 -54.0 + 171.7500 138.5000 -54.0 + 171.7500 134.5000 -54.0 + 170.7500 132.5000 -54.0 + 170.7500 129.5000 -54.0 + 169.7500 127.5000 -54.0 + 169.7500 123.5000 -54.0 + 168.7500 121.5000 -54.0 + 168.7500 118.5000 -54.0 + 167.7500 116.5000 -54.0 + 167.7500 113.5000 -54.0 + 165.7500 109.5000 -54.0 + 165.7500 107.5000 -54.0 + 164.7500 105.5000 -54.0 + 164.7500 103.5000 -54.0 + 161.7500 97.5000 -54.0 + 161.5000 95.2500 -54.0 + 157.5000 86.2500 -54.0 + 154.7500 79.5000 -54.0 + 151.7500 76.5000 -54.0 + 145.7500 71.5000 -54.0 + 140.5000 68.2500 -54.0 + 129.7500 62.5000 -54.0 + 127.5000 62.2500 -54.0 + 123.5000 60.2500 -54.0 + 116.5000 59.2500 -54.0 + 114.7500 58.5000 -54.0 + 106.7500 60.5000 -54.0 + 107.5000 59.7500 -54.0 + 111.5000 59.7500 -54.0 + 113.2500 60.5000 -54.0 + 114.2500 62.5000 -54.0 + 112.5000 63.2500 -54.0 + 110.5000 64.2500 -54.0 + 106.5000 64.2500 -54.0 + 105.7500 62.5000 -54.0 + 98.7500 61.5000 -54.0 + 99.5000 60.7500 -54.0 + 101.5000 60.7500 -54.0 + 103.2500 61.5000 -54.0 + 102.5000 63.2500 -54.0 + 99.5000 63.2500 -54.0 + 119.7500 65.5000 -54.0 + 120.5000 64.7500 -54.0 + 122.5000 64.7500 -54.0 + 125.5000 65.7500 -54.0 + 129.2500 68.5000 -54.0 + 134.2500 71.5000 -54.0 + 137.5000 71.7500 -54.0 + 141.2500 74.5000 -54.0 + 144.2500 78.5000 -54.0 + 144.2500 80.5000 -54.0 + 149.2500 85.5000 -54.0 + 149.2500 87.5000 -54.0 + 153.2500 95.5000 -54.0 + 153.2500 98.5000 -54.0 + 155.2500 103.5000 -54.0 + 160.2500 109.5000 -54.0 + 160.2500 111.5000 -54.0 + 163.2500 117.5000 -54.0 + 163.2500 123.5000 -54.0 + 162.5000 125.2500 -54.0 + 162.2500 135.5000 -54.0 + 163.2500 137.5000 -54.0 + 163.2500 139.5000 -54.0 + 164.2500 141.5000 -54.0 + 164.2500 143.5000 -54.0 + 165.2500 145.5000 -54.0 + 165.2500 156.5000 -54.0 + 166.2500 158.5000 -54.0 + 166.2500 171.5000 -54.0 + 165.2500 174.5000 -54.0 + 164.5000 176.2500 -54.0 + 164.2500 179.5000 -54.0 + 163.2500 182.5000 -54.0 + 159.2500 187.5000 -54.0 + 158.2500 189.5000 -54.0 + 148.5000 198.2500 -54.0 + 144.5000 201.2500 -54.0 + 130.5000 211.2500 -54.0 + 125.5000 214.2500 -54.0 + 122.5000 214.2500 -54.0 + 120.5000 215.2500 -54.0 + 118.5000 215.2500 -54.0 + 114.5000 217.2500 -54.0 + 111.5000 217.2500 -54.0 + 108.5000 216.2500 -54.0 + 106.7500 215.5000 -54.0 + 99.5000 215.2500 -54.0 + 97.7500 214.5000 -54.0 + 92.5000 214.2500 -54.0 + 90.5000 215.2500 -54.0 + 83.5000 214.2500 -54.0 + 74.5000 212.2500 -54.0 + 67.5000 206.2500 -54.0 + 65.5000 205.2500 -54.0 + 50.7500 189.5000 -54.0 + 49.7500 187.5000 -54.0 + 48.5000 187.2500 -54.0 + 47.7500 185.5000 -54.0 + 46.7500 183.5000 -54.0 + 46.7500 181.5000 -54.0 + 45.7500 179.5000 -54.0 + 45.7500 177.5000 -54.0 + 42.7500 171.5000 -54.0 + 42.7500 163.5000 -54.0 + 41.7500 161.5000 -54.0 + 41.7500 146.5000 -54.0 + 45.5000 138.7500 -54.0 + 45.7500 136.5000 -54.0 + 46.7500 131.5000 -54.0 + 45.7500 129.5000 -54.0 + 45.7500 123.5000 -54.0 + 46.7500 121.5000 -54.0 + 47.7500 116.5000 -54.0 + 49.5000 112.7500 -54.0 + 49.7500 110.5000 -54.0 + 52.7500 104.5000 -54.0 + 56.5000 97.7500 -54.0 + 56.7500 95.5000 -54.0 + 59.5000 89.7500 -54.0 + 59.7500 85.5000 -54.0 + 63.5000 81.7500 -54.0 + 65.5000 80.7500 -54.0 + 69.5000 75.7500 -54.0 + 73.5000 73.7500 -54.0 + 76.5000 70.7500 -54.0 + 83.5000 66.7500 -54.0 + 92.5000 66.7500 -54.0 + 94.5000 65.7500 -54.0 + 99.5000 66.7500 -54.0 + 101.5000 68.7500 -54.0 + 103.5000 67.7500 -54.0 + 105.5000 67.7500 -54.0 + 109.5000 65.7500 -54.0 + 110.2500 66.5000 -54.0 + 116.5000 66.7500 -54.0 + 37.7500 180.5000 -54.0 + 38.5000 179.7500 -54.0 + 39.2500 180.5000 -54.0 + 38.5000 181.2500 -54.0 + 97.2500 57.5000 -56.0 + 96.5000 58.2500 -56.0 + 92.5000 58.2500 -56.0 + 90.5000 59.2500 -56.0 + 88.5000 59.2500 -56.0 + 84.5000 61.2500 -56.0 + 82.5000 61.2500 -56.0 + 68.5000 68.2500 -56.0 + 66.2500 69.5000 -56.0 + 59.5000 74.2500 -56.0 + 56.2500 78.5000 -56.0 + 52.2500 86.5000 -56.0 + 49.5000 92.2500 -56.0 + 49.2500 94.5000 -56.0 + 45.2500 102.5000 -56.0 + 43.2500 112.5000 -56.0 + 42.2500 115.5000 -56.0 + 40.2500 124.5000 -56.0 + 39.2500 126.5000 -56.0 + 38.2500 133.5000 -56.0 + 36.2500 137.5000 -56.0 + 34.2500 147.5000 -56.0 + 33.2500 149.5000 -56.0 + 32.2500 158.5000 -56.0 + 31.5000 160.2500 -56.0 + 31.2500 171.5000 -56.0 + 32.2500 173.5000 -56.0 + 32.2500 175.5000 -56.0 + 33.2500 177.5000 -56.0 + 33.2500 179.5000 -56.0 + 36.5000 188.7500 -56.0 + 39.2500 195.5000 -56.0 + 45.2500 203.5000 -56.0 + 46.2500 205.5000 -56.0 + 59.2500 217.5000 -56.0 + 66.2500 221.5000 -56.0 + 72.5000 222.7500 -56.0 + 74.2500 223.5000 -56.0 + 82.5000 223.7500 -56.0 + 84.2500 224.5000 -56.0 + 101.5000 224.7500 -56.0 + 103.2500 225.5000 -56.0 + 111.5000 225.7500 -56.0 + 113.5000 224.7500 -56.0 + 122.5000 224.7500 -56.0 + 124.5000 223.7500 -56.0 + 128.5000 223.7500 -56.0 + 130.5000 222.7500 -56.0 + 132.7500 222.5000 -56.0 + 139.5000 219.7500 -56.0 + 147.5000 214.7500 -56.0 + 149.5000 213.7500 -56.0 + 158.5000 204.7500 -56.0 + 163.5000 198.7500 -56.0 + 166.7500 193.5000 -56.0 + 168.7500 189.5000 -56.0 + 170.5000 185.7500 -56.0 + 173.7500 176.5000 -56.0 + 174.5000 174.7500 -56.0 + 174.7500 152.5000 -56.0 + 173.7500 150.5000 -56.0 + 173.7500 144.5000 -56.0 + 172.7500 142.5000 -56.0 + 172.7500 138.5000 -56.0 + 171.7500 136.5000 -56.0 + 171.7500 132.5000 -56.0 + 170.7500 130.5000 -56.0 + 170.7500 127.5000 -56.0 + 169.7500 125.5000 -56.0 + 169.7500 122.5000 -56.0 + 168.7500 120.5000 -56.0 + 168.7500 117.5000 -56.0 + 167.7500 115.5000 -56.0 + 167.7500 112.5000 -56.0 + 165.7500 108.5000 -56.0 + 165.7500 106.5000 -56.0 + 164.7500 104.5000 -56.0 + 164.7500 102.5000 -56.0 + 160.7500 94.5000 -56.0 + 160.7500 92.5000 -56.0 + 154.7500 80.5000 -56.0 + 154.7500 78.5000 -56.0 + 148.7500 72.5000 -56.0 + 140.5000 67.2500 -56.0 + 124.5000 59.2500 -56.0 + 117.5000 58.2500 -56.0 + 115.7500 57.5000 -56.0 + 99.7500 59.5000 -56.0 + 101.5000 58.7500 -56.0 + 103.2500 59.5000 -56.0 + 104.2500 61.5000 -56.0 + 103.5000 63.2500 -56.0 + 97.5000 63.2500 -56.0 + 95.7500 61.5000 -56.0 + 97.5000 59.7500 -56.0 + 105.7500 59.5000 -56.0 + 106.5000 58.7500 -56.0 + 111.5000 58.7500 -56.0 + 113.2500 59.5000 -56.0 + 114.2500 61.5000 -56.0 + 111.5000 63.2500 -56.0 + 109.5000 63.2500 -56.0 + 107.5000 64.2500 -56.0 + 105.5000 63.2500 -56.0 + 104.7500 61.5000 -56.0 + 114.7500 60.5000 -56.0 + 115.5000 59.7500 -56.0 + 117.5000 59.7500 -56.0 + 119.2500 61.5000 -56.0 + 116.5000 63.2500 -56.0 + 115.7500 62.5000 -56.0 + 119.7500 64.5000 -56.0 + 120.5000 63.7500 -56.0 + 122.5000 63.7500 -56.0 + 127.5000 65.7500 -56.0 + 130.2500 68.5000 -56.0 + 135.2500 71.5000 -56.0 + 139.5000 71.7500 -56.0 + 144.2500 76.5000 -56.0 + 144.2500 78.5000 -56.0 + 146.5000 81.7500 -56.0 + 148.5000 82.7500 -56.0 + 150.2500 85.5000 -56.0 + 150.2500 89.5000 -56.0 + 153.2500 95.5000 -56.0 + 153.2500 97.5000 -56.0 + 155.2500 101.5000 -56.0 + 161.2500 109.5000 -56.0 + 161.2500 111.5000 -56.0 + 163.2500 115.5000 -56.0 + 163.2500 118.5000 -56.0 + 164.2500 120.5000 -56.0 + 162.5000 124.2500 -56.0 + 162.2500 133.5000 -56.0 + 163.2500 135.5000 -56.0 + 163.2500 139.5000 -56.0 + 165.2500 143.5000 -56.0 + 165.2500 147.5000 -56.0 + 166.2500 149.5000 -56.0 + 166.2500 159.5000 -56.0 + 167.2500 161.5000 -56.0 + 167.2500 169.5000 -56.0 + 166.5000 171.2500 -56.0 + 165.2500 179.5000 -56.0 + 163.5000 183.2500 -56.0 + 159.5000 189.2500 -56.0 + 146.2500 201.5000 -56.0 + 139.5000 206.2500 -56.0 + 137.2500 207.5000 -56.0 + 130.5000 212.2500 -56.0 + 124.5000 215.2500 -56.0 + 121.5000 215.2500 -56.0 + 119.5000 216.2500 -56.0 + 117.5000 216.2500 -56.0 + 113.5000 218.2500 -56.0 + 110.5000 218.2500 -56.0 + 107.5000 217.2500 -56.0 + 105.7500 216.5000 -56.0 + 100.5000 216.2500 -56.0 + 98.7500 215.5000 -56.0 + 92.5000 215.2500 -56.0 + 90.5000 216.2500 -56.0 + 88.5000 216.2500 -56.0 + 86.5000 215.2500 -56.0 + 77.5000 214.2500 -56.0 + 74.5000 213.2500 -56.0 + 70.5000 210.2500 -56.0 + 68.5000 209.2500 -56.0 + 45.7500 185.5000 -56.0 + 45.7500 182.5000 -56.0 + 43.7500 178.5000 -56.0 + 43.7500 176.5000 -56.0 + 40.7500 170.5000 -56.0 + 41.7500 168.5000 -56.0 + 40.7500 166.5000 -56.0 + 40.7500 147.5000 -56.0 + 41.7500 144.5000 -56.0 + 44.5000 138.7500 -56.0 + 44.7500 136.5000 -56.0 + 45.5000 134.7500 -56.0 + 45.7500 126.5000 -56.0 + 44.7500 124.5000 -56.0 + 45.7500 119.5000 -56.0 + 47.7500 115.5000 -56.0 + 48.7500 110.5000 -56.0 + 51.5000 104.7500 -56.0 + 55.5000 97.7500 -56.0 + 55.7500 95.5000 -56.0 + 57.5000 91.7500 -56.0 + 57.7500 88.5000 -56.0 + 58.7500 85.5000 -56.0 + 63.5000 80.7500 -56.0 + 65.5000 79.7500 -56.0 + 66.7500 77.5000 -56.0 + 67.7500 75.5000 -56.0 + 72.5000 73.7500 -56.0 + 72.7500 72.5000 -56.0 + 74.5000 71.7500 -56.0 + 80.5000 67.7500 -56.0 + 84.5000 65.7500 -56.0 + 87.5000 65.7500 -56.0 + 90.5000 64.7500 -56.0 + 99.5000 65.7500 -56.0 + 101.2500 66.5000 -56.0 + 106.5000 66.7500 -56.0 + 108.5000 65.7500 -56.0 + 115.5000 65.7500 -56.0 + 117.5000 64.7500 -56.0 + 69.7500 70.5000 -56.0 + 70.5000 69.7500 -56.0 + 71.2500 70.5000 -56.0 + 70.5000 71.2500 -56.0 + 104.2500 55.5000 -58.0 + 103.5000 56.2500 -58.0 + 96.5000 56.2500 -58.0 + 94.5000 57.2500 -58.0 + 90.5000 57.2500 -58.0 + 86.5000 59.2500 -58.0 + 84.5000 59.2500 -58.0 + 64.5000 69.2500 -58.0 + 58.2500 74.5000 -58.0 + 49.5000 91.2500 -58.0 + 49.2500 93.5000 -58.0 + 44.2500 103.5000 -58.0 + 43.2500 110.5000 -58.0 + 42.5000 112.2500 -58.0 + 41.2500 120.5000 -58.0 + 39.2500 124.5000 -58.0 + 38.2500 131.5000 -58.0 + 36.2500 135.5000 -58.0 + 34.2500 144.5000 -58.0 + 33.2500 146.5000 -58.0 + 32.2500 153.5000 -58.0 + 31.5000 155.2500 -58.0 + 31.2500 160.5000 -58.0 + 30.5000 162.2500 -58.0 + 30.2500 170.5000 -58.0 + 31.2500 172.5000 -58.0 + 31.2500 176.5000 -58.0 + 33.2500 180.5000 -58.0 + 33.2500 183.5000 -58.0 + 42.2500 201.5000 -58.0 + 47.2500 207.5000 -58.0 + 56.2500 215.5000 -58.0 + 60.5000 218.7500 -58.0 + 67.2500 222.5000 -58.0 + 69.5000 222.7500 -58.0 + 71.2500 223.5000 -58.0 + 78.5000 223.7500 -58.0 + 80.2500 224.5000 -58.0 + 85.5000 224.7500 -58.0 + 87.2500 225.5000 -58.0 + 93.5000 225.7500 -58.0 + 95.5000 224.7500 -58.0 + 97.2500 225.5000 -58.0 + 118.5000 225.7500 -58.0 + 120.5000 224.7500 -58.0 + 127.5000 224.7500 -58.0 + 129.5000 223.7500 -58.0 + 131.7500 223.5000 -58.0 + 144.5000 217.7500 -58.0 + 148.5000 214.7500 -58.0 + 150.5000 213.7500 -58.0 + 158.5000 205.7500 -58.0 + 163.5000 199.7500 -58.0 + 167.7500 192.5000 -58.0 + 172.7500 182.5000 -58.0 + 173.7500 177.5000 -58.0 + 174.5000 175.7500 -58.0 + 174.7500 170.5000 -58.0 + 175.5000 168.7500 -58.0 + 175.7500 159.5000 -58.0 + 174.7500 157.5000 -58.0 + 174.7500 149.5000 -58.0 + 173.7500 147.5000 -58.0 + 173.7500 140.5000 -58.0 + 172.7500 138.5000 -58.0 + 172.7500 136.5000 -58.0 + 171.7500 134.5000 -58.0 + 171.7500 130.5000 -58.0 + 170.7500 128.5000 -58.0 + 170.7500 126.5000 -58.0 + 169.7500 124.5000 -58.0 + 169.7500 121.5000 -58.0 + 168.7500 119.5000 -58.0 + 168.7500 116.5000 -58.0 + 167.7500 114.5000 -58.0 + 167.7500 112.5000 -58.0 + 166.7500 110.5000 -58.0 + 166.7500 108.5000 -58.0 + 164.7500 104.5000 -58.0 + 164.7500 102.5000 -58.0 + 162.7500 98.5000 -58.0 + 162.7500 96.5000 -58.0 + 158.7500 88.5000 -58.0 + 158.7500 86.5000 -58.0 + 155.7500 82.5000 -58.0 + 153.7500 76.5000 -58.0 + 148.7500 71.5000 -58.0 + 140.5000 66.2500 -58.0 + 131.5000 61.2500 -58.0 + 125.5000 58.2500 -58.0 + 120.5000 57.2500 -58.0 + 118.7500 56.5000 -58.0 + 111.5000 56.2500 -58.0 + 109.7500 55.5000 -58.0 + 99.7500 58.5000 -58.0 + 100.5000 57.7500 -58.0 + 102.5000 57.7500 -58.0 + 104.5000 58.7500 -58.0 + 106.5000 57.7500 -58.0 + 112.5000 57.7500 -58.0 + 121.5000 59.7500 -58.0 + 123.2500 61.5000 -58.0 + 121.5000 63.2500 -58.0 + 117.5000 63.2500 -58.0 + 113.5000 61.2500 -58.0 + 109.5000 63.2500 -58.0 + 107.5000 63.2500 -58.0 + 105.5000 62.2500 -58.0 + 103.5000 63.2500 -58.0 + 94.5000 63.2500 -58.0 + 90.7500 61.5000 -58.0 + 94.5000 58.7500 -58.0 + 118.7500 64.5000 -58.0 + 119.5000 63.7500 -58.0 + 123.5000 63.7500 -58.0 + 128.5000 65.7500 -58.0 + 132.5000 69.7500 -58.0 + 134.5000 70.7500 -58.0 + 136.2500 71.5000 -58.0 + 140.5000 71.7500 -58.0 + 142.2500 73.5000 -58.0 + 146.5000 80.7500 -58.0 + 148.5000 81.7500 -58.0 + 151.2500 86.5000 -58.0 + 151.2500 90.5000 -58.0 + 152.2500 92.5000 -58.0 + 154.5000 98.7500 -58.0 + 162.2500 108.5000 -58.0 + 162.2500 110.5000 -58.0 + 163.2500 112.5000 -58.0 + 163.2500 116.5000 -58.0 + 164.2500 118.5000 -58.0 + 163.2500 123.5000 -58.0 + 162.5000 125.2500 -58.0 + 163.2500 126.5000 -58.0 + 163.2500 137.5000 -58.0 + 165.2500 141.5000 -58.0 + 165.2500 143.5000 -58.0 + 166.2500 145.5000 -58.0 + 166.2500 150.5000 -58.0 + 167.2500 152.5000 -58.0 + 167.2500 172.5000 -58.0 + 166.5000 174.2500 -58.0 + 166.2500 179.5000 -58.0 + 164.5000 183.2500 -58.0 + 160.2500 189.5000 -58.0 + 159.2500 191.5000 -58.0 + 157.5000 192.2500 -58.0 + 151.5000 198.2500 -58.0 + 144.5000 204.2500 -58.0 + 140.5000 206.2500 -58.0 + 135.5000 210.2500 -58.0 + 123.5000 216.2500 -58.0 + 121.5000 216.2500 -58.0 + 119.5000 217.2500 -58.0 + 117.5000 217.2500 -58.0 + 115.5000 218.2500 -58.0 + 108.5000 218.2500 -58.0 + 106.7500 217.5000 -58.0 + 101.5000 217.2500 -58.0 + 95.5000 215.2500 -58.0 + 91.5000 217.2500 -58.0 + 87.5000 217.2500 -58.0 + 82.5000 216.2500 -58.0 + 80.7500 215.5000 -58.0 + 76.5000 215.2500 -58.0 + 70.5000 212.2500 -58.0 + 55.7500 198.5000 -58.0 + 54.7500 196.5000 -58.0 + 43.7500 184.5000 -58.0 + 43.7500 182.5000 -58.0 + 42.7500 180.5000 -58.0 + 42.7500 177.5000 -58.0 + 39.7500 171.5000 -58.0 + 39.7500 149.5000 -58.0 + 40.7500 142.5000 -58.0 + 43.7500 136.5000 -58.0 + 44.7500 131.5000 -58.0 + 45.5000 129.7500 -58.0 + 45.7500 125.5000 -58.0 + 44.7500 123.5000 -58.0 + 45.7500 116.5000 -58.0 + 46.7500 113.5000 -58.0 + 51.5000 102.7500 -58.0 + 55.5000 95.7500 -58.0 + 55.7500 93.5000 -58.0 + 56.7500 88.5000 -58.0 + 57.7500 85.5000 -58.0 + 62.5000 80.7500 -58.0 + 64.7500 79.5000 -58.0 + 66.7500 75.5000 -58.0 + 72.5000 71.7500 -58.0 + 86.5000 64.7500 -58.0 + 99.5000 64.7500 -58.0 + 105.5000 66.7500 -58.0 + 109.5000 64.7500 -58.0 + 68.5000 69.7500 -58.0 + 70.2500 70.5000 -58.0 + 68.5000 72.2500 -58.0 + 66.7500 71.5000 -58.0 + 34.7500 175.5000 -58.0 + 35.5000 174.7500 -58.0 + 36.2500 176.5000 -58.0 + 35.5000 178.2500 -58.0 + 34.7500 177.5000 -58.0 + 169.7500 177.5000 -58.0 + 170.5000 176.7500 -58.0 + 171.2500 177.5000 -58.0 + 170.5000 178.2500 -58.0 + 100.2500 54.5000 -60.0 + 99.5000 55.2500 -60.0 + 93.5000 55.2500 -60.0 + 91.5000 56.2500 -60.0 + 88.5000 56.2500 -60.0 + 62.5000 69.2500 -60.0 + 59.5000 72.2500 -60.0 + 56.2500 77.5000 -60.0 + 49.2500 91.5000 -60.0 + 46.2500 98.5000 -60.0 + 44.5000 102.2500 -60.0 + 41.2500 118.5000 -60.0 + 40.2500 120.5000 -60.0 + 39.2500 125.5000 -60.0 + 37.2500 131.5000 -60.0 + 36.5000 133.2500 -60.0 + 36.2500 136.5000 -60.0 + 34.2500 140.5000 -60.0 + 32.2500 150.5000 -60.0 + 31.5000 152.2500 -60.0 + 31.2500 156.5000 -60.0 + 30.5000 158.2500 -60.0 + 30.2500 174.5000 -60.0 + 31.2500 176.5000 -60.0 + 31.2500 179.5000 -60.0 + 33.2500 183.5000 -60.0 + 33.2500 185.5000 -60.0 + 41.2500 201.5000 -60.0 + 47.2500 208.5000 -60.0 + 54.5000 214.7500 -60.0 + 58.2500 217.5000 -60.0 + 62.5000 220.7500 -60.0 + 66.5000 222.7500 -60.0 + 71.5000 223.7500 -60.0 + 73.2500 224.5000 -60.0 + 82.5000 224.7500 -60.0 + 84.2500 225.5000 -60.0 + 101.5000 225.7500 -60.0 + 103.2500 226.5000 -60.0 + 109.5000 226.7500 -60.0 + 111.5000 225.7500 -60.0 + 123.5000 225.7500 -60.0 + 125.5000 224.7500 -60.0 + 130.5000 224.7500 -60.0 + 148.5000 215.7500 -60.0 + 156.5000 208.7500 -60.0 + 162.7500 201.5000 -60.0 + 167.7500 193.5000 -60.0 + 170.7500 187.5000 -60.0 + 171.5000 185.7500 -60.0 + 173.7500 179.5000 -60.0 + 174.5000 177.7500 -60.0 + 174.7500 173.5000 -60.0 + 175.5000 171.7500 -60.0 + 175.7500 154.5000 -60.0 + 174.7500 152.5000 -60.0 + 174.7500 145.5000 -60.0 + 173.7500 143.5000 -60.0 + 173.7500 139.5000 -60.0 + 172.7500 137.5000 -60.0 + 172.7500 134.5000 -60.0 + 171.7500 132.5000 -60.0 + 171.7500 129.5000 -60.0 + 170.7500 127.5000 -60.0 + 170.7500 125.5000 -60.0 + 169.7500 123.5000 -60.0 + 169.7500 120.5000 -60.0 + 168.7500 118.5000 -60.0 + 168.7500 116.5000 -60.0 + 167.7500 114.5000 -60.0 + 167.7500 112.5000 -60.0 + 160.7500 91.5000 -60.0 + 152.7500 74.5000 -60.0 + 148.7500 70.5000 -60.0 + 135.5000 62.2500 -60.0 + 124.5000 56.2500 -60.0 + 117.5000 55.2500 -60.0 + 115.7500 54.5000 -60.0 + 97.7500 57.5000 -60.0 + 98.5000 56.7500 -60.0 + 103.5000 56.7500 -60.0 + 105.2500 58.5000 -60.0 + 107.5000 56.7500 -60.0 + 115.5000 56.7500 -60.0 + 117.5000 57.7500 -60.0 + 122.5000 58.7500 -60.0 + 126.2500 61.5000 -60.0 + 124.5000 63.2500 -60.0 + 120.5000 63.2500 -60.0 + 117.5000 62.2500 -60.0 + 115.7500 61.5000 -60.0 + 112.5000 61.2500 -60.0 + 107.5000 63.2500 -60.0 + 105.5000 62.2500 -60.0 + 103.5000 63.2500 -60.0 + 99.5000 63.2500 -60.0 + 96.5000 62.2500 -60.0 + 94.5000 63.2500 -60.0 + 88.5000 63.2500 -60.0 + 84.5000 65.2500 -60.0 + 82.5000 65.2500 -60.0 + 81.7500 63.5000 -60.0 + 85.5000 60.7500 -60.0 + 87.5000 60.7500 -60.0 + 93.5000 57.7500 -60.0 + 96.7500 64.5000 -60.0 + 97.5000 63.7500 -60.0 + 99.2500 64.5000 -60.0 + 101.5000 64.7500 -60.0 + 103.2500 65.5000 -60.0 + 107.5000 65.7500 -60.0 + 111.5000 63.7500 -60.0 + 113.2500 64.5000 -60.0 + 121.5000 64.7500 -60.0 + 123.5000 63.7500 -60.0 + 126.5000 64.7500 -60.0 + 132.2500 67.5000 -60.0 + 133.2500 69.5000 -60.0 + 134.5000 69.7500 -60.0 + 136.2500 71.5000 -60.0 + 138.5000 71.7500 -60.0 + 142.2500 73.5000 -60.0 + 144.2500 77.5000 -60.0 + 148.2500 81.5000 -60.0 + 151.2500 85.5000 -60.0 + 151.2500 87.5000 -60.0 + 152.2500 89.5000 -60.0 + 152.2500 91.5000 -60.0 + 154.2500 97.5000 -60.0 + 158.2500 101.5000 -60.0 + 163.2500 109.5000 -60.0 + 163.2500 114.5000 -60.0 + 164.2500 116.5000 -60.0 + 164.2500 118.5000 -60.0 + 163.5000 120.2500 -60.0 + 163.2500 134.5000 -60.0 + 164.2500 136.5000 -60.0 + 164.2500 138.5000 -60.0 + 165.2500 140.5000 -60.0 + 165.2500 142.5000 -60.0 + 166.2500 144.5000 -60.0 + 166.2500 146.5000 -60.0 + 167.2500 148.5000 -60.0 + 167.2500 162.5000 -60.0 + 168.2500 164.5000 -60.0 + 167.5000 166.2500 -60.0 + 167.2500 173.5000 -60.0 + 166.2500 180.5000 -60.0 + 163.2500 186.5000 -60.0 + 152.5000 199.2500 -60.0 + 150.5000 200.2500 -60.0 + 148.2500 202.5000 -60.0 + 141.5000 207.2500 -60.0 + 133.5000 212.2500 -60.0 + 123.5000 217.2500 -60.0 + 120.5000 217.2500 -60.0 + 118.5000 218.2500 -60.0 + 114.5000 218.2500 -60.0 + 112.5000 219.2500 -60.0 + 103.5000 218.2500 -60.0 + 98.5000 217.2500 -60.0 + 96.7500 216.5000 -60.0 + 95.5000 217.2500 -60.0 + 79.5000 217.2500 -60.0 + 69.5000 212.2500 -60.0 + 55.7500 199.5000 -60.0 + 46.7500 189.5000 -60.0 + 44.7500 185.5000 -60.0 + 41.7500 182.5000 -60.0 + 41.7500 180.5000 -60.0 + 40.7500 178.5000 -60.0 + 40.7500 176.5000 -60.0 + 38.7500 172.5000 -60.0 + 38.7500 154.5000 -60.0 + 39.5000 152.7500 -60.0 + 38.7500 151.5000 -60.0 + 39.5000 149.7500 -60.0 + 39.7500 143.5000 -60.0 + 41.7500 139.5000 -60.0 + 42.7500 134.5000 -60.0 + 44.7500 130.5000 -60.0 + 45.7500 125.5000 -60.0 + 43.7500 121.5000 -60.0 + 44.7500 120.5000 -60.0 + 45.7500 113.5000 -60.0 + 48.7500 107.5000 -60.0 + 49.7500 102.5000 -60.0 + 50.5000 100.7500 -60.0 + 53.7500 96.5000 -60.0 + 54.7500 94.5000 -60.0 + 55.5000 92.7500 -60.0 + 55.7500 89.5000 -60.0 + 57.7500 84.5000 -60.0 + 61.5000 80.7500 -60.0 + 63.7500 79.5000 -60.0 + 64.7500 77.5000 -60.0 + 70.5000 71.7500 -60.0 + 78.5000 67.7500 -60.0 + 82.5000 67.7500 -60.0 + 88.5000 64.7500 -60.0 + 65.7500 71.5000 -60.0 + 66.5000 70.7500 -60.0 + 68.2500 71.5000 -60.0 + 67.5000 72.2500 -60.0 + 154.7500 95.5000 -60.0 + 155.5000 94.7500 -60.0 + 156.2500 95.5000 -60.0 + 155.5000 96.2500 -60.0 + 170.7500 173.5000 -60.0 + 171.5000 172.7500 -60.0 + 172.2500 173.5000 -60.0 + 171.5000 175.2500 -60.0 + 95.2500 53.5000 -62.0 + 94.5000 54.2500 -62.0 + 92.5000 54.2500 -62.0 + 90.5000 55.2500 -62.0 + 87.5000 55.2500 -62.0 + 65.5000 66.2500 -62.0 + 60.5000 70.2500 -62.0 + 55.2500 78.5000 -62.0 + 49.5000 89.2500 -62.0 + 49.2500 91.5000 -62.0 + 44.2500 101.5000 -62.0 + 43.2500 108.5000 -62.0 + 41.2500 117.5000 -62.0 + 40.2500 120.5000 -62.0 + 39.5000 122.2500 -62.0 + 39.2500 125.5000 -62.0 + 37.2500 129.5000 -62.0 + 36.2500 134.5000 -62.0 + 34.2500 138.5000 -62.0 + 32.2500 147.5000 -62.0 + 31.2500 152.5000 -62.0 + 30.5000 154.2500 -62.0 + 30.2500 158.5000 -62.0 + 29.5000 160.2500 -62.0 + 29.2500 172.5000 -62.0 + 30.2500 174.5000 -62.0 + 30.2500 177.5000 -62.0 + 33.2500 186.5000 -62.0 + 39.5000 199.7500 -62.0 + 44.2500 206.5000 -62.0 + 56.2500 217.5000 -62.0 + 62.2500 221.5000 -62.0 + 68.5000 223.7500 -62.0 + 70.2500 224.5000 -62.0 + 79.5000 224.7500 -62.0 + 81.2500 225.5000 -62.0 + 86.5000 225.7500 -62.0 + 88.2500 226.5000 -62.0 + 114.5000 226.7500 -62.0 + 116.5000 225.7500 -62.0 + 128.5000 225.7500 -62.0 + 130.5000 224.7500 -62.0 + 132.7500 224.5000 -62.0 + 143.5000 219.7500 -62.0 + 152.5000 212.7500 -62.0 + 154.5000 211.7500 -62.0 + 156.5000 208.7500 -62.0 + 158.5000 207.7500 -62.0 + 158.7500 206.5000 -62.0 + 163.5000 201.7500 -62.0 + 168.7500 192.5000 -62.0 + 173.7500 182.5000 -62.0 + 174.7500 175.5000 -62.0 + 175.5000 173.7500 -62.0 + 175.7500 151.5000 -62.0 + 174.7500 149.5000 -62.0 + 174.7500 142.5000 -62.0 + 173.7500 140.5000 -62.0 + 173.7500 137.5000 -62.0 + 172.7500 135.5000 -62.0 + 172.7500 132.5000 -62.0 + 171.7500 130.5000 -62.0 + 171.7500 128.5000 -62.0 + 170.7500 126.5000 -62.0 + 170.7500 124.5000 -62.0 + 169.7500 122.5000 -62.0 + 169.7500 120.5000 -62.0 + 168.7500 118.5000 -62.0 + 168.7500 116.5000 -62.0 + 167.7500 114.5000 -62.0 + 167.7500 112.5000 -62.0 + 166.7500 110.5000 -62.0 + 166.7500 108.5000 -62.0 + 164.7500 104.5000 -62.0 + 164.7500 102.5000 -62.0 + 162.7500 98.5000 -62.0 + 162.7500 95.5000 -62.0 + 152.7500 75.5000 -62.0 + 152.7500 73.5000 -62.0 + 148.7500 69.5000 -62.0 + 136.7500 61.5000 -62.0 + 129.7500 57.5000 -62.0 + 120.5000 54.2500 -62.0 + 118.7500 53.5000 -62.0 + 108.7500 55.5000 -62.0 + 110.5000 54.7500 -62.0 + 117.5000 55.7500 -62.0 + 121.2500 57.5000 -62.0 + 123.5000 57.7500 -62.0 + 127.2500 60.5000 -62.0 + 128.2500 62.5000 -62.0 + 125.5000 64.2500 -62.0 + 114.7500 60.5000 -62.0 + 112.5000 60.2500 -62.0 + 106.5000 63.2500 -62.0 + 104.5000 62.2500 -62.0 + 102.5000 63.2500 -62.0 + 95.5000 62.2500 -62.0 + 93.5000 63.2500 -62.0 + 91.5000 63.2500 -62.0 + 85.5000 66.2500 -62.0 + 81.5000 66.2500 -62.0 + 79.7500 65.5000 -62.0 + 78.7500 63.5000 -62.0 + 80.5000 61.7500 -62.0 + 84.5000 59.7500 -62.0 + 86.5000 59.7500 -62.0 + 92.5000 56.7500 -62.0 + 102.5000 55.7500 -62.0 + 104.5000 56.7500 -62.0 + 92.7500 64.5000 -62.0 + 93.5000 63.7500 -62.0 + 97.5000 63.7500 -62.0 + 102.5000 64.7500 -62.0 + 105.5000 65.7500 -62.0 + 107.5000 64.7500 -62.0 + 109.5000 64.7500 -62.0 + 111.5000 63.7500 -62.0 + 113.2500 64.5000 -62.0 + 116.5000 64.7500 -62.0 + 121.5000 65.7500 -62.0 + 123.5000 64.7500 -62.0 + 126.5000 64.7500 -62.0 + 131.5000 66.7500 -62.0 + 136.2500 71.5000 -62.0 + 142.5000 73.7500 -62.0 + 149.2500 81.5000 -62.0 + 153.2500 89.5000 -62.0 + 153.2500 91.5000 -62.0 + 154.2500 93.5000 -62.0 + 154.2500 95.5000 -62.0 + 158.2500 99.5000 -62.0 + 163.2500 108.5000 -62.0 + 163.2500 114.5000 -62.0 + 164.2500 116.5000 -62.0 + 163.5000 118.2500 -62.0 + 163.2500 132.5000 -62.0 + 164.2500 134.5000 -62.0 + 164.2500 138.5000 -62.0 + 166.2500 142.5000 -62.0 + 166.2500 146.5000 -62.0 + 167.2500 148.5000 -62.0 + 167.2500 151.5000 -62.0 + 168.2500 153.5000 -62.0 + 167.2500 162.5000 -62.0 + 168.2500 165.5000 -62.0 + 167.5000 167.2500 -62.0 + 167.2500 178.5000 -62.0 + 163.2500 186.5000 -62.0 + 156.2500 195.5000 -62.0 + 153.5000 199.2500 -62.0 + 151.5000 200.2500 -62.0 + 151.2500 201.5000 -62.0 + 148.5000 203.2500 -62.0 + 144.5000 206.2500 -62.0 + 136.5000 211.2500 -62.0 + 126.5000 217.2500 -62.0 + 123.5000 217.2500 -62.0 + 121.5000 218.2500 -62.0 + 118.5000 218.2500 -62.0 + 116.5000 219.2500 -62.0 + 113.5000 219.2500 -62.0 + 111.5000 220.2500 -62.0 + 109.7500 219.5000 -62.0 + 98.5000 218.2500 -62.0 + 96.5000 217.2500 -62.0 + 93.5000 218.2500 -62.0 + 91.7500 217.5000 -62.0 + 90.5000 218.2500 -62.0 + 86.5000 218.2500 -62.0 + 77.5000 217.2500 -62.0 + 72.5000 215.2500 -62.0 + 66.7500 210.5000 -62.0 + 62.5000 207.2500 -62.0 + 60.5000 206.2500 -62.0 + 54.5000 200.2500 -62.0 + 46.7500 190.5000 -62.0 + 43.7500 186.5000 -62.0 + 40.7500 181.5000 -62.0 + 38.7500 177.5000 -62.0 + 38.7500 175.5000 -62.0 + 37.7500 173.5000 -62.0 + 37.7500 166.5000 -62.0 + 36.7500 164.5000 -62.0 + 37.5000 163.7500 -62.0 + 37.7500 155.5000 -62.0 + 38.5000 153.7500 -62.0 + 38.7500 147.5000 -62.0 + 39.5000 145.7500 -62.0 + 39.7500 140.5000 -62.0 + 41.7500 134.5000 -62.0 + 44.5000 128.7500 -62.0 + 44.7500 126.5000 -62.0 + 45.7500 124.5000 -62.0 + 43.7500 120.5000 -62.0 + 44.5000 118.7500 -62.0 + 44.7500 114.5000 -62.0 + 47.5000 108.7500 -62.0 + 47.7500 104.5000 -62.0 + 49.7500 98.5000 -62.0 + 55.5000 91.7500 -62.0 + 55.7500 89.5000 -62.0 + 57.7500 83.5000 -62.0 + 62.5000 78.7500 -62.0 + 64.5000 77.7500 -62.0 + 64.7500 76.5000 -62.0 + 74.5000 67.7500 -62.0 + 81.5000 67.7500 -62.0 + 84.5000 68.7500 -62.0 + 87.7500 66.5000 -62.0 + 133.7500 65.5000 -62.0 + 135.5000 64.7500 -62.0 + 137.2500 66.5000 -62.0 + 135.5000 67.2500 -62.0 + 155.7500 95.5000 -62.0 + 156.5000 94.7500 -62.0 + 157.2500 95.5000 -62.0 + 156.5000 96.2500 -62.0 + 35.7500 185.5000 -62.0 + 36.5000 184.7500 -62.0 + 37.2500 185.5000 -62.0 + 36.5000 186.2500 -62.0 + 110.2500 51.5000 -64.0 + 109.5000 52.2500 -64.0 + 96.5000 52.2500 -64.0 + 94.5000 53.2500 -64.0 + 91.5000 53.2500 -64.0 + 87.5000 55.2500 -64.0 + 85.5000 55.2500 -64.0 + 65.5000 65.2500 -64.0 + 61.5000 68.2500 -64.0 + 57.2500 75.5000 -64.0 + 50.5000 86.2500 -64.0 + 50.2500 88.5000 -64.0 + 45.2500 98.5000 -64.0 + 41.2500 116.5000 -64.0 + 40.2500 118.5000 -64.0 + 39.2500 123.5000 -64.0 + 33.2500 141.5000 -64.0 + 31.2500 150.5000 -64.0 + 30.5000 152.2500 -64.0 + 30.2500 156.5000 -64.0 + 29.5000 158.2500 -64.0 + 29.2500 174.5000 -64.0 + 30.2500 176.5000 -64.0 + 30.2500 179.5000 -64.0 + 33.5000 188.7500 -64.0 + 37.2500 197.5000 -64.0 + 43.2500 205.5000 -64.0 + 44.2500 207.5000 -64.0 + 54.2500 216.5000 -64.0 + 58.5000 219.7500 -64.0 + 66.5000 223.7500 -64.0 + 68.2500 224.5000 -64.0 + 72.5000 224.7500 -64.0 + 74.2500 225.5000 -64.0 + 84.5000 225.7500 -64.0 + 86.2500 226.5000 -64.0 + 126.5000 226.7500 -64.0 + 128.5000 225.7500 -64.0 + 130.5000 225.7500 -64.0 + 132.5000 224.7500 -64.0 + 134.7500 224.5000 -64.0 + 141.5000 221.7500 -64.0 + 149.5000 215.7500 -64.0 + 151.5000 214.7500 -64.0 + 161.5000 204.7500 -64.0 + 165.7500 198.5000 -64.0 + 170.7500 189.5000 -64.0 + 171.7500 187.5000 -64.0 + 173.7500 182.5000 -64.0 + 174.5000 180.7500 -64.0 + 174.7500 177.5000 -64.0 + 175.5000 175.7500 -64.0 + 175.7500 166.5000 -64.0 + 176.5000 164.7500 -64.0 + 176.7500 158.5000 -64.0 + 175.7500 156.5000 -64.0 + 175.7500 147.5000 -64.0 + 174.7500 145.5000 -64.0 + 174.7500 140.5000 -64.0 + 173.7500 138.5000 -64.0 + 173.7500 135.5000 -64.0 + 172.7500 133.5000 -64.0 + 172.7500 130.5000 -64.0 + 171.7500 128.5000 -64.0 + 171.7500 125.5000 -64.0 + 169.7500 121.5000 -64.0 + 169.7500 118.5000 -64.0 + 167.7500 114.5000 -64.0 + 167.7500 112.5000 -64.0 + 160.5000 91.2500 -64.0 + 157.7500 84.5000 -64.0 + 152.7500 76.5000 -64.0 + 152.7500 74.5000 -64.0 + 151.7500 71.5000 -64.0 + 144.5000 65.2500 -64.0 + 136.5000 60.2500 -64.0 + 128.5000 56.2500 -64.0 + 126.7500 55.5000 -64.0 + 120.5000 53.2500 -64.0 + 118.7500 52.5000 -64.0 + 113.5000 52.2500 -64.0 +} -64.0 +{ -64.0 + 106.7500 54.5000 -64.0 + 107.5000 53.7500 -64.0 + 114.5000 53.7500 -64.0 + 118.2500 55.5000 -64.0 + 120.5000 55.7500 -64.0 + 128.5000 59.7500 -64.0 + 131.2500 63.5000 -64.0 + 133.5000 63.7500 -64.0 + 136.2500 66.5000 -64.0 + 137.5000 65.7500 -64.0 + 139.5000 66.7500 -64.0 + 142.2500 69.5000 -64.0 + 141.5000 70.2500 -64.0 + 138.5000 70.2500 -64.0 + 136.7500 69.5000 -64.0 + 135.7500 67.5000 -64.0 + 134.5000 68.2500 -64.0 + 132.5000 68.2500 -64.0 + 128.7500 65.5000 -64.0 + 125.5000 65.2500 -64.0 + 120.5000 64.2500 -64.0 + 116.7500 62.5000 -64.0 + 103.5000 62.2500 -64.0 + 100.5000 63.2500 -64.0 + 98.7500 62.5000 -64.0 + 94.5000 62.2500 -64.0 + 91.5000 63.2500 -64.0 + 87.5000 66.2500 -64.0 + 79.5000 66.2500 -64.0 + 77.7500 65.5000 -64.0 + 76.7500 63.5000 -64.0 + 78.5000 61.7500 -64.0 + 86.5000 57.7500 -64.0 + 89.5000 57.7500 -64.0 + 93.5000 55.7500 -64.0 + 96.5000 55.7500 -64.0 + 98.5000 54.7500 -64.0 + 101.5000 54.7500 -64.0 + 103.5000 55.7500 -64.0 +} -64.0 +{ -64.0 + 92.7500 64.5000 -64.0 + 93.5000 63.7500 -64.0 + 97.5000 63.7500 -64.0 + 102.5000 64.7500 -64.0 + 104.5000 65.7500 -64.0 + 106.5000 64.7500 -64.0 + 115.5000 64.7500 -64.0 + 122.5000 67.7500 -64.0 + 124.5000 66.7500 -64.0 + 126.5000 66.7500 -64.0 + 129.5000 67.7500 -64.0 + 136.2500 73.5000 -64.0 + 141.5000 73.7500 -64.0 + 144.5000 74.7500 -64.0 + 149.2500 81.5000 -64.0 + 150.2500 83.5000 -64.0 + 155.2500 91.5000 -64.0 + 155.2500 95.5000 -64.0 + 158.2500 98.5000 -64.0 + 161.2500 103.5000 -64.0 + 163.2500 107.5000 -64.0 + 163.2500 112.5000 -64.0 + 164.2500 115.5000 -64.0 + 163.5000 117.2500 -64.0 + 163.2500 130.5000 -64.0 + 164.2500 132.5000 -64.0 + 164.2500 135.5000 -64.0 + 165.2500 137.5000 -64.0 + 165.2500 139.5000 -64.0 + 166.2500 141.5000 -64.0 + 166.2500 144.5000 -64.0 + 167.2500 146.5000 -64.0 + 167.2500 150.5000 -64.0 + 168.2500 152.5000 -64.0 + 168.2500 156.5000 -64.0 + 167.2500 161.5000 -64.0 + 168.2500 163.5000 -64.0 + 168.2500 176.5000 -64.0 + 162.2500 188.5000 -64.0 + 159.2500 192.5000 -64.0 + 158.2500 194.5000 -64.0 + 148.5000 204.2500 -64.0 + 146.2500 205.5000 -64.0 + 139.5000 210.2500 -64.0 + 129.5000 216.2500 -64.0 + 125.5000 218.2500 -64.0 + 121.5000 218.2500 -64.0 + 119.5000 219.2500 -64.0 + 117.5000 219.2500 -64.0 + 115.5000 220.2500 -64.0 + 109.5000 220.2500 -64.0 + 107.7500 219.5000 -64.0 + 97.5000 219.2500 -64.0 + 95.7500 218.5000 -64.0 + 79.5000 218.2500 -64.0 + 74.5000 217.2500 -64.0 + 67.7500 212.5000 -64.0 + 58.5000 205.2500 -64.0 + 56.5000 204.2500 -64.0 + 46.7500 192.5000 -64.0 + 43.7500 188.5000 -64.0 + 36.7500 174.5000 -64.0 + 36.7500 158.5000 -64.0 + 37.7500 153.5000 -64.0 + 38.7500 144.5000 -64.0 + 39.7500 137.5000 -64.0 + 40.7500 134.5000 -64.0 + 41.5000 132.7500 -64.0 + 44.7500 127.5000 -64.0 + 45.7500 122.5000 -64.0 + 44.7500 120.5000 -64.0 + 44.7500 113.5000 -64.0 + 46.7500 107.5000 -64.0 + 47.5000 105.7500 -64.0 + 47.7500 101.5000 -64.0 + 48.7500 98.5000 -64.0 + 55.5000 90.7500 -64.0 + 55.7500 87.5000 -64.0 + 57.7500 82.5000 -64.0 + 64.5000 75.7500 -64.0 + 66.5000 74.7500 -64.0 + 74.5000 67.7500 -64.0 + 77.5000 67.7500 -64.0 + 86.5000 68.7500 -64.0 + 90.5000 65.7500 -64.0 + 68.7500 68.5000 -64.0 + 69.5000 67.7500 -64.0 + 70.2500 68.5000 -64.0 + 69.5000 69.2500 -64.0 + 108.2500 50.5000 -66.0 + 107.5000 51.2500 -66.0 + 98.5000 51.2500 -66.0 + 96.5000 52.2500 -66.0 + 94.5000 52.2500 -66.0 + 92.5000 53.2500 -66.0 + 89.5000 53.2500 -66.0 + 85.5000 55.2500 -66.0 + 83.5000 55.2500 -66.0 + 63.5000 65.2500 -66.0 + 60.5000 68.2500 -66.0 + 58.2500 74.5000 -66.0 + 54.2500 79.5000 -66.0 + 50.5000 86.2500 -66.0 + 50.2500 88.5000 -66.0 + 45.2500 98.5000 -66.0 + 44.2500 103.5000 -66.0 + 42.2500 112.5000 -66.0 + 41.2500 114.5000 -66.0 + 40.2500 119.5000 -66.0 + 38.2500 125.5000 -66.0 + 36.5000 129.2500 -66.0 + 35.2500 135.5000 -66.0 + 33.2500 139.5000 -66.0 + 31.2500 148.5000 -66.0 + 30.2500 151.5000 -66.0 + 29.2500 160.5000 -66.0 + 28.2500 167.5000 -66.0 + 29.2500 169.5000 -66.0 + 29.2500 176.5000 -66.0 + 30.2500 178.5000 -66.0 + 30.2500 181.5000 -66.0 + 32.2500 185.5000 -66.0 + 32.2500 187.5000 -66.0 + 39.2500 201.5000 -66.0 + 44.2500 207.5000 -66.0 + 45.2500 209.5000 -66.0 + 50.2500 213.5000 -66.0 + 57.5000 219.7500 -66.0 + 66.2500 224.5000 -66.0 + 68.5000 224.7500 -66.0 + 70.2500 225.5000 -66.0 + 79.5000 225.7500 -66.0 + 88.5000 226.7500 -66.0 + 90.2500 227.5000 -66.0 + 110.5000 227.7500 -66.0 + 112.5000 226.7500 -66.0 + 128.5000 226.7500 -66.0 + 130.5000 225.7500 -66.0 + 132.5000 225.7500 -66.0 + 138.5000 223.7500 -66.0 + 146.5000 218.7500 -66.0 + 148.5000 217.7500 -66.0 + 157.5000 209.7500 -66.0 + 162.5000 203.7500 -66.0 + 166.7500 197.5000 -66.0 + 173.7500 183.5000 -66.0 + 174.5000 181.7500 -66.0 + 174.7500 178.5000 -66.0 + 175.5000 176.7500 -66.0 + 175.7500 171.5000 -66.0 + 176.5000 169.7500 -66.0 + 176.7500 153.5000 -66.0 + 175.7500 151.5000 -66.0 + 175.7500 143.5000 -66.0 + 174.7500 141.5000 -66.0 + 174.7500 136.5000 -66.0 + 173.7500 134.5000 -66.0 + 173.7500 131.5000 -66.0 + 172.7500 129.5000 -66.0 + 172.7500 126.5000 -66.0 + 170.7500 122.5000 -66.0 + 170.7500 120.5000 -66.0 + 168.7500 116.5000 -66.0 + 168.7500 113.5000 -66.0 + 166.7500 109.5000 -66.0 + 166.7500 107.5000 -66.0 + 162.7500 99.5000 -66.0 + 162.7500 97.5000 -66.0 + 161.7500 95.5000 -66.0 + 161.7500 93.5000 -66.0 + 155.7500 81.5000 -66.0 + 152.7500 76.5000 -66.0 + 152.7500 73.5000 -66.0 + 151.7500 71.5000 -66.0 + 151.7500 69.5000 -66.0 + 147.7500 66.5000 -66.0 + 141.5000 62.2500 -66.0 + 127.5000 55.2500 -66.0 + 125.7500 54.5000 -66.0 + 119.5000 52.2500 -66.0 + 117.7500 51.5000 -66.0 + 113.5000 51.2500 -66.0 + 111.7500 50.5000 -66.0 +} -66.0 +{ -66.0 + 105.7500 53.5000 -66.0 + 106.5000 52.7500 -66.0 + 113.5000 52.7500 -66.0 + 116.5000 53.7500 -66.0 + 126.5000 57.7500 -66.0 + 130.2500 59.5000 -66.0 + 131.2500 61.5000 -66.0 + 136.5000 65.7500 -66.0 + 138.5000 66.7500 -66.0 + 144.2500 69.5000 -66.0 + 143.5000 71.2500 -66.0 + 141.5000 71.2500 -66.0 + 139.7500 70.5000 -66.0 + 138.5000 71.2500 -66.0 + 136.7500 69.5000 -66.0 + 135.5000 70.2500 -66.0 + 133.5000 70.2500 -66.0 + 129.5000 68.2500 -66.0 + 127.7500 67.5000 -66.0 + 121.5000 67.2500 -66.0 + 117.7500 63.5000 -66.0 + 111.5000 63.2500 -66.0 + 109.7500 62.5000 -66.0 + 103.5000 62.2500 -66.0 + 101.5000 63.2500 -66.0 + 98.5000 63.2500 -66.0 + 96.5000 62.2500 -66.0 + 94.5000 63.2500 -66.0 + 92.5000 63.2500 -66.0 + 86.5000 67.2500 -66.0 + 84.7500 66.5000 -66.0 + 79.5000 66.2500 -66.0 + 76.5000 65.2500 -66.0 + 75.7500 63.5000 -66.0 + 77.5000 61.7500 -66.0 + 87.5000 56.7500 -66.0 + 89.5000 56.7500 -66.0 + 91.5000 55.7500 -66.0 + 93.5000 55.7500 -66.0 + 95.5000 54.7500 -66.0 + 98.5000 54.7500 -66.0 + 100.5000 53.7500 -66.0 + 103.2500 55.5000 -66.0 +} -66.0 +{ -66.0 + 93.7500 64.5000 -66.0 + 94.5000 63.7500 -66.0 + 97.5000 63.7500 -66.0 + 99.2500 64.5000 -66.0 + 111.5000 64.7500 -66.0 + 118.5000 65.7500 -66.0 + 120.5000 68.7500 -66.0 + 122.5000 69.7500 -66.0 + 125.5000 68.7500 -66.0 + 132.5000 71.7500 -66.0 + 136.2500 74.5000 -66.0 + 138.5000 74.7500 -66.0 + 140.5000 73.7500 -66.0 + 143.5000 73.7500 -66.0 + 150.2500 81.5000 -66.0 + 152.2500 85.5000 -66.0 + 156.2500 90.5000 -66.0 + 156.2500 94.5000 -66.0 + 157.2500 96.5000 -66.0 + 162.2500 104.5000 -66.0 + 162.2500 106.5000 -66.0 + 164.2500 110.5000 -66.0 + 163.5000 111.2500 -66.0 + 164.2500 112.5000 -66.0 + 162.2500 121.5000 -66.0 + 163.2500 123.5000 -66.0 + 163.2500 130.5000 -66.0 + 164.2500 132.5000 -66.0 + 164.2500 135.5000 -66.0 + 165.2500 137.5000 -66.0 + 165.2500 139.5000 -66.0 + 166.2500 141.5000 -66.0 + 166.2500 144.5000 -66.0 + 167.2500 146.5000 -66.0 + 167.2500 152.5000 -66.0 + 168.2500 154.5000 -66.0 + 168.2500 158.5000 -66.0 + 167.2500 161.5000 -66.0 + 168.2500 163.5000 -66.0 + 168.2500 165.5000 -66.0 + 169.2500 167.5000 -66.0 + 168.5000 168.2500 -66.0 + 168.2500 171.5000 -66.0 + 169.2500 174.5000 -66.0 + 160.2500 192.5000 -66.0 + 148.5000 205.2500 -66.0 + 143.5000 208.2500 -66.0 + 141.2500 209.5000 -66.0 + 134.5000 214.2500 -66.0 + 127.5000 218.2500 -66.0 + 124.5000 218.2500 -66.0 + 122.5000 219.2500 -66.0 + 119.5000 219.2500 -66.0 + 117.5000 220.2500 -66.0 + 115.5000 220.2500 -66.0 + 113.5000 221.2500 -66.0 + 111.5000 221.2500 -66.0 + 109.7500 220.5000 -66.0 + 104.5000 220.2500 -66.0 + 102.7500 219.5000 -66.0 + 101.5000 220.2500 -66.0 + 99.5000 220.2500 -66.0 + 97.7500 219.5000 -66.0 + 83.5000 219.2500 -66.0 + 76.5000 218.2500 -66.0 + 70.5000 215.2500 -66.0 + 64.7500 210.5000 -66.0 + 57.7500 206.5000 -66.0 + 56.7500 204.5000 -66.0 + 55.5000 204.2500 -66.0 + 49.7500 197.5000 -66.0 + 43.7500 189.5000 -66.0 + 39.7500 182.5000 -66.0 + 39.7500 180.5000 -66.0 + 35.7500 172.5000 -66.0 + 35.7500 162.5000 -66.0 + 36.5000 160.7500 -66.0 + 36.7500 153.5000 -66.0 + 37.7500 151.5000 -66.0 + 38.7500 142.5000 -66.0 + 39.7500 135.5000 -66.0 + 44.7500 127.5000 -66.0 + 45.7500 122.5000 -66.0 + 44.7500 119.5000 -66.0 + 45.5000 117.7500 -66.0 + 45.7500 113.5000 -66.0 + 44.7500 111.5000 -66.0 + 46.7500 107.5000 -66.0 + 47.5000 105.7500 -66.0 + 47.7500 101.5000 -66.0 + 49.7500 95.5000 -66.0 + 55.5000 89.7500 -66.0 + 55.7500 86.5000 -66.0 + 58.7500 79.5000 -66.0 + 64.5000 75.7500 -66.0 + 66.5000 74.7500 -66.0 + 72.5000 69.7500 -66.0 + 76.5000 66.7500 -66.0 + 78.2500 67.5000 -66.0 + 80.5000 67.7500 -66.0 + 82.2500 68.5000 -66.0 + 87.5000 68.7500 -66.0 + 89.5000 66.7500 -66.0 +} -66.0 +{ -66.0 + 64.7500 70.5000 -66.0 + 65.5000 69.7500 -66.0 + 67.2500 70.5000 -66.0 + 66.5000 71.2500 -66.0 +} -66.0 +v 253 z -68.000000 -64.0 +{ -68.0 + 99.2500 50.5000 -68.0 + 98.5000 51.2500 -68.0 + 95.5000 51.2500 -68.0 + 91.5000 53.2500 -68.0 + 88.5000 53.2500 -68.0 + 82.5000 56.2500 -68.0 + 79.2500 56.5000 -68.0 + 68.5000 61.2500 -68.0 + 60.5000 67.2500 -68.0 + 58.2500 74.5000 -68.0 + 54.2500 79.5000 -68.0 + 46.5000 95.2500 -68.0 + 46.2500 97.5000 -68.0 + 45.2500 99.5000 -68.0 + 44.2500 104.5000 -68.0 + 43.2500 107.5000 -68.0 + 42.5000 109.2500 -68.0 + 42.2500 112.5000 -68.0 + 40.2500 116.5000 -68.0 + 39.2500 121.5000 -68.0 + 37.5000 125.2500 -68.0 + 37.2500 127.5000 -68.0 + 35.2500 131.5000 -68.0 + 34.2500 136.5000 -68.0 + 33.2500 138.5000 -68.0 + 32.2500 143.5000 -68.0 + 31.2500 145.5000 -68.0 + 30.2500 152.5000 -68.0 + 29.5000 154.2500 -68.0 + 29.2500 159.5000 -68.0 + 28.5000 161.2500 -68.0 + 28.2500 170.5000 -68.0 + 29.2500 172.5000 -68.0 + 29.2500 177.5000 -68.0 + 30.2500 179.5000 -68.0 + 30.2500 182.5000 -68.0 + 32.2500 186.5000 -68.0 + 32.2500 188.5000 -68.0 + 38.2500 200.5000 -68.0 + 41.2500 204.5000 -68.0 + 42.2500 206.5000 -68.0 + 49.2500 213.5000 -68.0 + 56.5000 219.7500 -68.0 + 64.5000 223.7500 -68.0 + 68.2500 225.5000 -68.0 + 78.5000 225.7500 -68.0 + 85.5000 226.7500 -68.0 + 87.2500 227.5000 -68.0 + 117.5000 227.7500 -68.0 + 120.5000 226.7500 -68.0 + 122.5000 227.7500 -68.0 + 124.5000 226.7500 -68.0 + 130.5000 226.7500 -68.0 + 132.5000 225.7500 -68.0 + 134.5000 225.7500 -68.0 + 144.5000 220.7500 -68.0 + 148.5000 217.7500 -68.0 + 150.5000 216.7500 -68.0 + 160.7500 206.5000 -68.0 + 163.5000 202.7500 -68.0 + 167.7500 196.5000 -68.0 + 171.5000 189.7500 -68.0 + 173.7500 183.5000 -68.0 + 174.5000 181.7500 -68.0 + 175.7500 173.5000 -68.0 + 176.5000 171.7500 -68.0 + 176.7500 149.5000 -68.0 + 175.7500 147.5000 -68.0 + 175.7500 138.5000 -68.0 + 174.7500 136.5000 -68.0 + 174.7500 132.5000 -68.0 + 173.7500 130.5000 -68.0 + 173.7500 128.5000 -68.0 + 171.7500 124.5000 -68.0 + 171.7500 122.5000 -68.0 + 169.7500 118.5000 -68.0 + 169.7500 116.5000 -68.0 + 167.7500 112.5000 -68.0 + 167.7500 110.5000 -68.0 + 166.7500 108.5000 -68.0 + 166.7500 106.5000 -68.0 + 161.7500 96.5000 -68.0 + 161.7500 94.5000 -68.0 + 151.7500 74.5000 -68.0 + 152.5000 73.7500 -68.0 + 152.7500 70.5000 -68.0 + 151.7500 68.5000 -68.0 + 147.5000 65.2500 -68.0 + 143.7500 62.5000 -68.0 + 137.5000 58.2500 -68.0 + 132.5000 57.2500 -68.0 + 126.7500 54.5000 -68.0 + 117.5000 51.2500 -68.0 + 115.7500 50.5000 -68.0 +} -68.0 +{ -68.0 + 105.7500 52.5000 -68.0 + 106.5000 51.7500 -68.0 + 113.5000 51.7500 -68.0 + 117.2500 53.5000 -68.0 + 119.5000 53.7500 -68.0 + 123.2500 56.5000 -68.0 + 126.5000 56.7500 -68.0 + 130.2500 59.5000 -68.0 + 131.2500 61.5000 -68.0 + 136.2500 65.5000 -68.0 + 136.2500 69.5000 -68.0 + 134.5000 71.2500 -68.0 + 132.5000 71.2500 -68.0 + 129.5000 70.2500 -68.0 + 125.7500 68.5000 -68.0 + 121.5000 68.2500 -68.0 + 119.7500 66.5000 -68.0 + 118.7500 64.5000 -68.0 + 113.5000 64.2500 -68.0 + 103.5000 62.2500 -68.0 + 101.5000 63.2500 -68.0 + 96.5000 63.2500 -68.0 + 88.5000 67.2500 -68.0 + 84.5000 67.2500 -68.0 + 82.7500 65.5000 -68.0 + 79.5000 65.2500 -68.0 + 77.7500 64.5000 -68.0 + 76.7500 62.5000 -68.0 + 79.5000 59.7500 -68.0 + 81.5000 59.7500 -68.0 + 87.5000 56.7500 -68.0 + 89.5000 56.7500 -68.0 + 93.5000 54.7500 -68.0 + 95.5000 54.7500 -68.0 + 97.5000 53.7500 -68.0 + 101.5000 53.7500 -68.0 + 103.2500 54.5000 -68.0 +} -68.0 +{ -68.0 + 71.7500 64.5000 -68.0 + 72.5000 63.7500 -68.0 + 74.2500 64.5000 -68.0 + 73.5000 65.2500 -68.0 + 69.5000 68.2500 -68.0 + 68.7500 66.5000 -68.0 +} -68.0 +{ -68.0 + 93.7500 65.5000 -68.0 + 94.5000 64.7500 -68.0 + 107.5000 64.7500 -68.0 + 116.5000 65.7500 -68.0 + 118.2500 66.5000 -68.0 + 119.5000 68.7500 -68.0 + 121.5000 69.7500 -68.0 + 123.2500 70.5000 -68.0 + 126.5000 70.7500 -68.0 + 128.5000 71.7500 -68.0 + 133.5000 72.7500 -68.0 + 135.2500 74.5000 -68.0 + 144.5000 74.7500 -68.0 + 148.2500 78.5000 -68.0 + 154.2500 85.5000 -68.0 + 154.2500 87.5000 -68.0 + 156.2500 89.5000 -68.0 + 156.2500 92.5000 -68.0 + 163.2500 106.5000 -68.0 + 162.5000 108.2500 -68.0 + 162.2500 111.5000 -68.0 + 163.2500 113.5000 -68.0 + 162.5000 115.2500 -68.0 + 162.2500 121.5000 -68.0 + 163.2500 123.5000 -68.0 + 163.2500 129.5000 -68.0 + 164.2500 131.5000 -68.0 + 164.2500 134.5000 -68.0 + 165.2500 136.5000 -68.0 + 165.2500 138.5000 -68.0 + 166.2500 140.5000 -68.0 + 166.2500 143.5000 -68.0 + 167.2500 145.5000 -68.0 + 167.2500 159.5000 -68.0 + 168.2500 161.5000 -68.0 + 168.2500 164.5000 -68.0 + 169.2500 166.5000 -68.0 + 169.2500 170.5000 -68.0 + 170.2500 172.5000 -68.0 + 169.5000 173.2500 -68.0 + 169.2500 175.5000 -68.0 + 162.2500 189.5000 -68.0 + 159.2500 193.5000 -68.0 + 158.2500 195.5000 -68.0 + 150.5000 204.2500 -68.0 + 146.5000 207.2500 -68.0 + 141.5000 210.2500 -68.0 + 133.5000 215.2500 -68.0 + 125.5000 219.2500 -68.0 + 123.5000 219.2500 -68.0 + 121.5000 220.2500 -68.0 + 117.5000 220.2500 -68.0 + 115.5000 221.2500 -68.0 + 109.5000 221.2500 -68.0 + 107.7500 220.5000 -68.0 + 97.5000 220.2500 -68.0 + 95.7500 219.5000 -68.0 + 88.5000 219.2500 -68.0 + 86.5000 220.2500 -68.0 + 85.7500 219.5000 -68.0 + 84.5000 220.2500 -68.0 + 82.7500 219.5000 -68.0 + 79.5000 219.2500 -68.0 + 74.5000 218.2500 -68.0 + 68.7500 214.5000 -68.0 + 62.5000 210.2500 -68.0 + 60.5000 209.2500 -68.0 + 51.7500 201.5000 -68.0 + 50.5000 199.2500 -68.0 + 42.7500 189.5000 -68.0 + 39.7500 183.5000 -68.0 + 39.7500 181.5000 -68.0 + 36.7500 175.5000 -68.0 + 36.7500 173.5000 -68.0 + 34.7500 169.5000 -68.0 + 34.7500 165.5000 -68.0 + 35.5000 163.7500 -68.0 + 35.7500 157.5000 -68.0 + 36.5000 155.7500 -68.0 + 37.7500 147.5000 -68.0 + 38.5000 145.7500 -68.0 + 39.7500 137.5000 -68.0 + 44.7500 126.5000 -68.0 + 45.5000 124.7500 -68.0 + 45.7500 121.5000 -68.0 + 44.7500 119.5000 -68.0 + 45.5000 117.7500 -68.0 + 45.7500 110.5000 -68.0 + 46.7500 108.5000 -68.0 + 48.7500 99.5000 -68.0 + 49.7500 94.5000 -68.0 + 51.5000 93.7500 -68.0 + 54.5000 90.7500 -68.0 + 54.7500 88.5000 -68.0 + 55.7500 83.5000 -68.0 + 58.5000 79.7500 -68.0 + 62.5000 76.7500 -68.0 + 64.5000 75.7500 -68.0 + 68.5000 72.7500 -68.0 + 71.5000 72.7500 -68.0 + 71.7500 71.5000 -68.0 + 73.5000 69.7500 -68.0 + 77.5000 67.7500 -68.0 + 86.5000 68.7500 -68.0 +} -68.0 +{ -68.0 + 66.7500 68.5000 -68.0 + 67.5000 67.7500 -68.0 + 68.2500 69.5000 -68.0 + 65.5000 71.2500 -68.0 + 63.7500 70.5000 -68.0 +} -68.0 +{ -68.0 + 142.7500 69.5000 -68.0 + 144.5000 68.7500 -68.0 + 146.2500 70.5000 -68.0 + 145.5000 71.2500 -68.0 + 139.5000 71.2500 -68.0 + 137.7500 70.5000 -68.0 + 138.5000 69.7500 -68.0 +} -68.0 +v 195 z -70.000000 -68.0 +{ -68.0 + 101.2500 49.5000 -70.0 + 97.5000 51.2500 -70.0 + 94.5000 51.2500 -70.0 + 90.5000 53.2500 -70.0 + 88.5000 53.2500 -70.0 + 82.5000 56.2500 -70.0 + 81.5000 55.2500 -70.0 + 79.5000 56.2500 -70.0 + 77.5000 56.2500 -70.0 + 66.5000 61.2500 -70.0 + 60.2500 66.5000 -70.0 + 59.2500 73.5000 -70.0 + 53.2500 81.5000 -70.0 + 50.2500 88.5000 -70.0 + 47.5000 92.2500 -70.0 + 42.5000 108.2500 -70.0 + 41.2500 114.5000 -70.0 + 37.5000 123.2500 -70.0 + 37.2500 126.5000 -70.0 + 32.2500 139.5000 -70.0 + 31.2500 146.5000 -70.0 + 30.2500 148.5000 -70.0 + 29.2500 157.5000 -70.0 + 28.5000 159.2500 -70.0 + 28.2500 171.5000 -70.0 + 29.2500 173.5000 -70.0 + 29.2500 178.5000 -70.0 + 32.2500 188.5000 -70.0 + 38.2500 201.5000 -70.0 + 43.2500 208.5000 -70.0 + 49.5000 214.7500 -70.0 + 57.5000 220.7500 -70.0 + 67.2500 225.5000 -70.0 + 76.5000 225.7500 -70.0 + 85.2500 227.5000 -70.0 + 109.5000 228.7500 -70.0 + 111.5000 227.7500 -70.0 + 126.5000 227.7500 -70.0 + 128.5000 226.7500 -70.0 + 135.5000 225.7500 -70.0 + 143.5000 221.7500 -70.0 + 155.5000 212.7500 -70.0 + 164.5000 201.7500 -70.0 + 172.5000 188.7500 -70.0 + 172.7500 186.5000 -70.0 + 174.7500 182.5000 -70.0 + 175.7500 173.5000 -70.0 + 176.5000 171.7500 -70.0 + 176.7500 143.5000 -70.0 + 175.7500 141.5000 -70.0 + 175.7500 135.5000 -70.0 + 174.7500 133.5000 -70.0 + 174.7500 130.5000 -70.0 + 172.7500 126.5000 -70.0 + 172.7500 123.5000 -70.0 + 169.7500 117.5000 -70.0 + 169.7500 115.5000 -70.0 + 167.7500 111.5000 -70.0 + 167.7500 109.5000 -70.0 + 164.7500 103.5000 -70.0 + 164.7500 101.5000 -70.0 + 161.7500 97.5000 -70.0 + 161.7500 95.5000 -70.0 + 151.7500 75.5000 -70.0 + 152.5000 73.7500 -70.0 + 152.7500 68.5000 -70.0 + 145.7500 61.5000 -70.0 + 138.7500 57.5000 -70.0 + 134.5000 56.2500 -70.0 + 132.5000 57.2500 -70.0 + 126.5000 53.2500 -70.0 + 112.7500 49.5000 -70.0 +} -70.0 +{ -70.0 + 106.5000 51.7500 -70.0 + 115.5000 51.7500 -70.0 + 125.5000 56.7500 -70.0 + 129.2500 58.5000 -70.0 + 129.2500 61.5000 -70.0 + 132.5000 64.7500 -70.0 + 135.5000 63.7500 -70.0 + 141.5000 66.7500 -70.0 + 143.2500 70.5000 -70.0 + 141.5000 71.2500 -70.0 + 139.5000 72.2500 -70.0 + 138.7500 71.5000 -70.0 + 134.5000 70.2500 -70.0 + 132.5000 71.2500 -70.0 + 128.5000 71.2500 -70.0 + 121.5000 68.2500 -70.0 + 117.7500 64.5000 -70.0 + 111.5000 64.2500 -70.0 + 105.5000 62.2500 -70.0 + 103.5000 63.2500 -70.0 + 100.5000 63.2500 -70.0 + 98.5000 64.2500 -70.0 + 95.5000 64.2500 -70.0 + 89.5000 68.2500 -70.0 + 86.5000 68.2500 -70.0 + 84.7500 67.5000 -70.0 + 82.7500 63.5000 -70.0 + 80.7500 62.5000 -70.0 + 84.5000 58.7500 -70.0 + 86.5000 58.7500 -70.0 + 90.5000 55.7500 -70.0 + 92.5000 55.7500 -70.0 + 98.5000 52.7500 -70.0 + 101.5000 52.7500 -70.0 + 104.5000 53.7500 -70.0 +} -70.0 +{ -70.0 + 71.7500 64.5000 -70.0 + 72.5000 63.7500 -70.0 + 75.5000 63.7500 -70.0 + 77.2500 65.5000 -70.0 + 76.5000 66.2500 -70.0 + 72.5000 66.2500 -70.0 +} -70.0 +{ -70.0 + 103.7500 64.5000 -70.0 + 105.5000 63.7500 -70.0 + 109.2500 65.5000 -70.0 + 115.5000 65.7500 -70.0 + 118.5000 66.7500 -70.0 + 119.2500 68.5000 -70.0 + 127.2500 72.5000 -70.0 + 130.5000 72.7500 -70.0 + 136.5000 75.7500 -70.0 + 138.5000 74.7500 -70.0 + 141.5000 74.7500 -70.0 + 151.5000 80.7500 -70.0 + 154.2500 84.5000 -70.0 + 154.2500 87.5000 -70.0 + 156.2500 91.5000 -70.0 + 156.2500 93.5000 -70.0 + 162.2500 105.5000 -70.0 + 162.2500 120.5000 -70.0 + 164.2500 126.5000 -70.0 + 164.2500 132.5000 -70.0 + 166.2500 138.5000 -70.0 + 166.2500 142.5000 -70.0 + 167.2500 144.5000 -70.0 + 167.2500 151.5000 -70.0 + 168.2500 153.5000 -70.0 + 168.2500 163.5000 -70.0 + 170.2500 169.5000 -70.0 + 169.5000 171.2500 -70.0 + 169.2500 175.5000 -70.0 + 162.5000 189.2500 -70.0 + 157.2500 197.5000 -70.0 + 147.5000 207.2500 -70.0 + 127.5000 219.2500 -70.0 + 124.5000 219.2500 -70.0 + 122.5000 220.2500 -70.0 + 112.5000 222.2500 -70.0 + 102.5000 220.2500 -70.0 + 99.5000 221.2500 -70.0 + 97.7500 220.5000 -70.0 + 80.5000 220.2500 -70.0 + 72.5000 217.2500 -70.0 + 64.5000 212.2500 -70.0 + 51.7500 202.5000 -70.0 + 43.7500 191.5000 -70.0 + 37.7500 179.5000 -70.0 + 37.7500 177.5000 -70.0 + 35.7500 173.5000 -70.0 + 34.7500 164.5000 -70.0 + 39.7500 138.5000 -70.0 + 45.5000 125.7500 -70.0 + 45.7500 120.5000 -70.0 + 44.7500 118.5000 -70.0 + 46.7500 113.5000 -70.0 + 45.7500 110.5000 -70.0 + 47.7500 106.5000 -70.0 + 49.7500 96.5000 -70.0 + 54.5000 88.7500 -70.0 + 56.7500 80.5000 -70.0 + 66.5000 73.7500 -70.0 + 70.5000 73.7500 -70.0 + 76.5000 69.7500 -70.0 + 78.5000 69.7500 -70.0 + 80.5000 68.7500 -70.0 + 89.5000 69.7500 -70.0 + 98.5000 64.7500 -70.0 +} -70.0 +{ -70.0 + 68.5000 65.7500 -70.0 + 69.2500 66.5000 -70.0 + 68.5000 68.2500 -70.0 + 66.7500 67.5000 -70.0 +} -70.0 +{ -70.0 + 63.7500 69.5000 -70.0 + 64.5000 68.7500 -70.0 + 65.2500 69.5000 -70.0 + 64.5000 71.2500 -70.0 +} -70.0 +{ -70.0 + 66.7500 70.5000 -70.0 + 67.5000 69.7500 -70.0 + 69.2500 70.5000 -70.0 + 68.5000 72.2500 -70.0 +} -70.0 +{ -70.0 + 144.7500 70.5000 -70.0 + 145.5000 69.7500 -70.0 + 149.2500 71.5000 -70.0 + 147.5000 73.2500 -70.0 + 145.7500 72.5000 -70.0 +} -70.0 +v 256 z -72.000000 -64.0 +{ -72.0 + 101.2500 49.5000 -72.0 + 100.5000 50.2500 -72.0 + 98.5000 50.2500 -72.0 + 94.5000 52.2500 -72.0 + 92.5000 52.2500 -72.0 + 90.5000 53.2500 -72.0 + 87.5000 53.2500 -72.0 + 83.5000 55.2500 -72.0 + 78.5000 55.2500 -72.0 + 76.5000 56.2500 -72.0 + 74.5000 56.2500 -72.0 + 67.5000 59.2500 -72.0 + 62.5000 63.2500 -72.0 + 60.5000 64.2500 -72.0 + 59.2500 67.5000 -72.0 + 60.2500 69.5000 -72.0 + 59.2500 74.5000 -72.0 + 57.5000 76.2500 -72.0 + 54.2500 80.5000 -72.0 + 47.5000 93.2500 -72.0 + 47.2500 95.5000 -72.0 + 44.2500 104.5000 -72.0 + 42.5000 108.2500 -72.0 + 42.2500 110.5000 -72.0 + 41.2500 113.5000 -72.0 + 40.5000 115.2500 -72.0 + 37.2500 124.5000 -72.0 + 36.5000 126.2500 -72.0 + 33.2500 135.5000 -72.0 + 32.5000 137.2500 -72.0 + 31.2500 145.5000 -72.0 + 30.2500 147.5000 -72.0 + 29.2500 156.5000 -72.0 + 28.5000 158.2500 -72.0 + 28.2500 172.5000 -72.0 + 29.2500 174.5000 -72.0 + 29.2500 179.5000 -72.0 + 30.2500 181.5000 -72.0 + 30.2500 183.5000 -72.0 + 31.2500 185.5000 -72.0 + 31.5000 187.7500 -72.0 + 37.2500 200.5000 -72.0 + 40.2500 204.5000 -72.0 + 41.2500 206.5000 -72.0 + 52.2500 217.5000 -72.0 + 56.5000 220.7500 -72.0 + 62.5000 223.7500 -72.0 + 66.2500 225.5000 -72.0 + 68.5000 225.7500 -72.0 + 73.5000 226.7500 -72.0 + 75.5000 225.7500 -72.0 + 77.2500 226.5000 -72.0 + 80.5000 226.7500 -72.0 + 87.5000 227.7500 -72.0 + 89.2500 228.5000 -72.0 + 112.5000 228.7500 -72.0 + 114.5000 227.7500 -72.0 + 127.5000 227.7500 -72.0 + 129.5000 226.7500 -72.0 + 133.5000 226.7500 -72.0 + 145.5000 220.7500 -72.0 + 149.5000 217.7500 -72.0 + 151.5000 216.7500 -72.0 + 158.5000 209.7500 -72.0 + 163.5000 203.7500 -72.0 + 167.7500 197.5000 -72.0 + 171.5000 190.7500 -72.0 + 173.7500 184.5000 -72.0 + 174.5000 182.7500 -72.0 + 175.7500 174.5000 -72.0 + 176.5000 172.7500 -72.0 + 176.7500 139.5000 -72.0 + 175.7500 137.5000 -72.0 + 175.7500 134.5000 -72.0 + 174.7500 132.5000 -72.0 + 174.7500 130.5000 -72.0 + 173.7500 128.5000 -72.0 + 173.7500 126.5000 -72.0 + 171.7500 122.5000 -72.0 + 171.7500 120.5000 -72.0 + 169.7500 116.5000 -72.0 + 169.7500 114.5000 -72.0 + 166.7500 108.5000 -72.0 + 166.7500 106.5000 -72.0 + 154.7500 82.5000 -72.0 + 151.7500 77.5000 -72.0 + 151.7500 75.5000 -72.0 + 154.7500 68.5000 -72.0 + 150.7500 64.5000 -72.0 + 149.7500 62.5000 -72.0 + 147.5000 61.2500 -72.0 + 141.5000 58.2500 -72.0 + 139.7500 57.5000 -72.0 + 136.5000 57.2500 -72.0 + 136.2500 58.5000 -72.0 + 137.5000 59.7500 -72.0 + 139.5000 60.7500 -72.0 + 144.2500 66.5000 -72.0 + 146.2500 70.5000 -72.0 + 143.5000 73.2500 -72.0 + 141.5000 73.2500 -72.0 + 139.5000 74.2500 -72.0 + 136.5000 74.2500 -72.0 + 132.5000 72.2500 -72.0 + 125.5000 71.2500 -72.0 + 117.7500 65.5000 -72.0 + 110.5000 65.2500 -72.0 + 105.7500 61.5000 -72.0 + 101.5000 64.2500 -72.0 + 96.5000 64.2500 -72.0 + 88.5000 70.2500 -72.0 + 84.5000 67.2500 -72.0 + 78.5000 70.2500 -72.0 + 73.5000 70.2500 -72.0 + 69.7500 68.5000 -72.0 + 69.7500 66.5000 -72.0 + 70.7500 63.5000 -72.0 + 73.5000 61.7500 -72.0 + 77.5000 59.7500 -72.0 + 81.5000 56.7500 -72.0 + 83.5000 55.7500 -72.0 + 85.2500 57.5000 -72.0 + 85.2500 60.5000 -72.0 + 89.7500 58.5000 -72.0 + 90.7500 56.5000 -72.0 + 92.5000 55.7500 -72.0 + 98.5000 52.7500 -72.0 + 103.5000 52.7500 -72.0 + 107.5000 50.7500 -72.0 + 112.5000 50.7500 -72.0 + 118.2500 53.5000 -72.0 + 120.5000 53.7500 -72.0 + 124.5000 57.7500 -72.0 + 126.5000 58.7500 -72.0 + 128.5000 56.7500 -72.0 + 130.5000 56.7500 -72.0 + 130.7500 55.5000 -72.0 + 126.7500 53.5000 -72.0 + 124.5000 53.2500 -72.0 + 115.5000 50.2500 -72.0 + 113.7500 49.5000 -72.0 +} -72.0 +{ -72.0 + 102.7500 65.5000 -72.0 + 103.5000 64.7500 -72.0 + 107.5000 64.7500 -72.0 + 111.5000 67.7500 -72.0 + 113.5000 66.7500 -72.0 + 117.5000 66.7500 -72.0 + 119.2500 68.5000 -72.0 + 123.5000 71.7500 -72.0 + 125.5000 72.7500 -72.0 + 126.2500 74.5000 -72.0 + 131.5000 74.7500 -72.0 + 135.5000 76.7500 -72.0 + 137.5000 75.7500 -72.0 + 142.5000 75.7500 -72.0 + 144.5000 77.7500 -72.0 + 151.2500 81.5000 -72.0 + 154.2500 86.5000 -72.0 + 153.2500 88.5000 -72.0 + 156.2500 94.5000 -72.0 + 160.2500 101.5000 -72.0 + 160.2500 107.5000 -72.0 + 161.2500 109.5000 -72.0 + 161.2500 111.5000 -72.0 + 162.2500 113.5000 -72.0 + 162.2500 118.5000 -72.0 + 163.2500 120.5000 -72.0 + 163.2500 122.5000 -72.0 + 164.2500 124.5000 -72.0 + 164.2500 126.5000 -72.0 + 165.2500 128.5000 -72.0 + 165.2500 133.5000 -72.0 + 166.2500 135.5000 -72.0 + 166.2500 139.5000 -72.0 + 167.2500 141.5000 -72.0 + 167.2500 145.5000 -72.0 + 168.2500 147.5000 -72.0 + 168.2500 162.5000 -72.0 + 171.2500 168.5000 -72.0 + 169.5000 171.2500 -72.0 + 169.2500 174.5000 -72.0 + 168.2500 179.5000 -72.0 + 165.2500 183.5000 -72.0 + 163.2500 187.5000 -72.0 + 158.2500 195.5000 -72.0 + 156.2500 199.5000 -72.0 + 146.5000 208.2500 -72.0 + 144.5000 209.2500 -72.0 + 136.5000 214.2500 -72.0 + 127.5000 219.2500 -72.0 + 125.5000 219.2500 -72.0 + 121.5000 221.2500 -72.0 + 119.5000 221.2500 -72.0 + 117.5000 222.2500 -72.0 + 110.5000 222.2500 -72.0 + 108.7500 221.5000 -72.0 + 99.5000 221.2500 -72.0 + 92.5000 220.2500 -72.0 + 90.5000 221.2500 -72.0 + 84.5000 221.2500 -72.0 + 79.5000 220.2500 -72.0 + 76.5000 219.2500 -72.0 + 66.7500 214.5000 -72.0 + 60.5000 210.2500 -72.0 + 58.5000 209.2500 -72.0 + 49.7500 200.5000 -72.0 + 40.7500 188.5000 -72.0 + 40.7500 186.5000 -72.0 + 37.7500 180.5000 -72.0 + 37.7500 178.5000 -72.0 + 35.7500 174.5000 -72.0 + 35.7500 169.5000 -72.0 + 34.7500 167.5000 -72.0 + 34.7500 163.5000 -72.0 + 33.7500 161.5000 -72.0 + 35.7500 158.5000 -72.0 + 36.7500 151.5000 -72.0 + 37.7500 146.5000 -72.0 + 41.7500 134.5000 -72.0 + 45.5000 125.7500 -72.0 + 45.7500 116.5000 -72.0 + 46.5000 114.7500 -72.0 + 46.7500 108.5000 -72.0 + 48.5000 104.7500 -72.0 + 48.7500 101.5000 -72.0 + 49.7500 98.5000 -72.0 + 52.5000 92.7500 -72.0 + 55.7500 83.5000 -72.0 + 57.5000 79.7500 -72.0 + 62.5000 76.7500 -72.0 + 66.5000 73.7500 -72.0 + 68.5000 73.7500 -72.0 + 71.5000 74.7500 -72.0 + 75.5000 72.7500 -72.0 + 77.2500 73.5000 -72.0 + 80.5000 73.7500 -72.0 + 80.7500 72.5000 -72.0 + 82.5000 70.7500 -72.0 + 87.5000 71.7500 -72.0 + 93.5000 68.7500 -72.0 + 98.5000 65.7500 -72.0 +} -72.0 +{ -72.0 + 64.7500 67.5000 -72.0 + 65.5000 66.7500 -72.0 + 68.2500 70.5000 -72.0 + 67.5000 71.2500 -72.0 + 63.7500 69.5000 -72.0 +} -72.0 +{ -72.0 + 147.7500 71.5000 -72.0 + 148.5000 70.7500 -72.0 + 150.2500 71.5000 -72.0 + 150.2500 73.5000 -72.0 + 149.5000 75.2500 -72.0 + 147.7500 73.5000 -72.0 +} -72.0 +{ -72.0 + 61.7500 72.5000 -72.0 + 62.5000 71.7500 -72.0 + 63.2500 72.5000 -72.0 + 62.5000 73.2500 -72.0 +} -72.0 +v 199 z -74.000000 -64.0 +{ -74.0 + 105.2500 48.5000 -74.0 + 104.5000 49.2500 -74.0 + 100.5000 49.2500 -74.0 + 92.5000 53.2500 -74.0 + 90.5000 53.2500 -74.0 + 88.5000 54.2500 -74.0 + 91.2500 58.5000 -74.0 + 94.5000 55.7500 -74.0 + 98.5000 52.7500 -74.0 + 100.5000 52.7500 -74.0 + 102.5000 51.7500 -74.0 + 105.5000 52.7500 -74.0 + 106.5000 50.7500 -74.0 + 112.5000 50.7500 -74.0 + 120.2500 54.5000 -74.0 + 121.5000 56.7500 -74.0 + 123.5000 57.7500 -74.0 + 124.7500 54.5000 -74.0 + 113.7500 49.5000 -74.0 + 111.5000 49.2500 -74.0 + 109.7500 48.5000 -74.0 +} -74.0 +{ -74.0 + 68.2500 57.5000 -74.0 + 66.5000 58.2500 -74.0 + 59.5000 64.2500 -74.0 + 59.2500 68.5000 -74.0 + 60.2500 71.5000 -74.0 + 58.2500 76.5000 -74.0 + 55.2500 79.5000 -74.0 + 47.5000 94.2500 -74.0 + 47.2500 96.5000 -74.0 + 32.2500 137.5000 -74.0 + 28.5000 157.2500 -74.0 + 28.2500 172.5000 -74.0 + 29.2500 174.5000 -74.0 + 29.2500 179.5000 -74.0 + 30.2500 181.5000 -74.0 + 31.2500 188.5000 -74.0 + 39.2500 204.5000 -74.0 + 43.2500 208.5000 -74.0 + 44.5000 210.7500 -74.0 + 54.5000 219.7500 -74.0 + 61.2500 223.5000 -74.0 + 69.2500 226.5000 -74.0 + 81.5000 226.7500 -74.0 + 86.2500 228.5000 -74.0 + 107.5000 229.7500 -74.0 + 109.5000 228.7500 -74.0 + 113.5000 228.7500 -74.0 + 115.5000 227.7500 -74.0 + 128.5000 227.7500 -74.0 + 130.5000 226.7500 -74.0 + 132.5000 226.7500 -74.0 + 143.5000 222.7500 -74.0 + 150.5000 217.7500 -74.0 + 160.7500 207.5000 -74.0 + 170.5000 193.7500 -74.0 + 173.7500 184.5000 -74.0 + 176.5000 172.7500 -74.0 + 177.7500 157.5000 -74.0 + 176.7500 155.5000 -74.0 + 177.7500 143.5000 -74.0 + 176.7500 141.5000 -74.0 + 176.7500 137.5000 -74.0 + 175.7500 135.5000 -74.0 + 174.7500 128.5000 -74.0 + 172.7500 124.5000 -74.0 + 172.7500 122.5000 -74.0 + 169.7500 116.5000 -74.0 + 169.7500 114.5000 -74.0 + 165.7500 106.5000 -74.0 + 163.7500 100.5000 -74.0 + 158.7500 92.5000 -74.0 + 154.7500 82.5000 -74.0 + 151.7500 79.5000 -74.0 + 151.7500 75.5000 -74.0 + 155.5000 69.7500 -74.0 + 155.7500 67.5000 -74.0 + 152.7500 63.5000 -74.0 + 148.7500 60.5000 -74.0 + 143.5000 59.2500 -74.0 + 143.2500 61.5000 -74.0 + 145.2500 63.5000 -74.0 + 148.2500 69.5000 -74.0 + 147.5000 70.2500 -74.0 + 147.2500 72.5000 -74.0 + 145.5000 74.2500 -74.0 + 141.5000 76.2500 -74.0 + 139.5000 76.2500 -74.0 + 139.2500 77.5000 -74.0 + 142.5000 77.7500 -74.0 + 148.5000 80.7500 -74.0 + 153.2500 88.5000 -74.0 + 153.2500 90.5000 -74.0 + 159.2500 101.5000 -74.0 + 159.2500 106.5000 -74.0 + 161.2500 110.5000 -74.0 + 163.2500 120.5000 -74.0 + 165.2500 124.5000 -74.0 + 165.2500 126.5000 -74.0 + 166.2500 128.5000 -74.0 + 166.2500 134.5000 -74.0 + 167.2500 136.5000 -74.0 + 167.2500 140.5000 -74.0 + 169.2500 147.5000 -74.0 + 169.2500 162.5000 -74.0 + 171.2500 166.5000 -74.0 + 169.5000 168.2500 -74.0 + 169.2500 175.5000 -74.0 + 167.5000 179.2500 -74.0 + 167.2500 181.5000 -74.0 + 155.2500 200.5000 -74.0 + 146.5000 208.2500 -74.0 + 125.5000 220.2500 -74.0 + 123.5000 220.2500 -74.0 + 119.5000 222.2500 -74.0 + 109.5000 222.2500 -74.0 + 107.7500 221.5000 -74.0 + 101.5000 221.2500 -74.0 + 99.5000 222.2500 -74.0 + 97.7500 221.5000 -74.0 + 81.5000 221.2500 -74.0 + 72.5000 218.2500 -74.0 + 60.5000 211.2500 -74.0 + 50.5000 202.2500 -74.0 + 42.7500 191.5000 -74.0 + 37.7500 181.5000 -74.0 + 37.7500 179.5000 -74.0 + 35.7500 175.5000 -74.0 + 35.7500 170.5000 -74.0 + 34.7500 168.5000 -74.0 + 34.7500 159.5000 -74.0 + 36.7500 149.5000 -74.0 + 45.5000 125.7500 -74.0 + 46.7500 113.5000 -74.0 + 48.5000 111.7500 -74.0 + 48.7500 109.5000 -74.0 + 46.7500 107.5000 -74.0 + 49.7500 102.5000 -74.0 + 50.7500 97.5000 -74.0 + 53.7500 91.5000 -74.0 + 52.7500 89.5000 -74.0 + 54.7500 84.5000 -74.0 + 57.5000 80.7500 -74.0 + 65.5000 74.7500 -74.0 + 67.5000 74.7500 -74.0 + 73.5000 76.7500 -74.0 + 75.5000 74.7500 -74.0 + 79.2500 76.5000 -74.0 + 81.5000 76.7500 -74.0 + 83.5000 74.7500 -74.0 + 85.5000 74.7500 -74.0 + 87.5000 72.7500 -74.0 + 96.7500 67.5000 -74.0 + 94.5000 67.2500 -74.0 + 90.5000 69.2500 -74.0 + 88.5000 69.2500 -74.0 + 82.5000 73.2500 -74.0 + 72.5000 73.2500 -74.0 + 69.5000 72.2500 -74.0 + 66.7500 69.5000 -74.0 + 67.7500 64.5000 -74.0 + 74.7500 57.5000 -74.0 +} -74.0 +{ -74.0 + 105.2500 61.5000 -74.0 + 105.2500 62.5000 -74.0 + 100.5000 66.2500 -74.0 + 97.5000 66.2500 -74.0 + 98.2500 67.5000 -74.0 + 101.5000 67.7500 -74.0 + 103.5000 65.7500 -74.0 + 108.5000 65.7500 -74.0 + 110.5000 68.7500 -74.0 + 112.5000 67.7500 -74.0 + 117.5000 67.7500 -74.0 + 123.2500 73.5000 -74.0 + 125.2500 77.5000 -74.0 + 125.2500 79.5000 -74.0 + 126.5000 79.7500 -74.0 + 128.5000 77.7500 -74.0 + 135.5000 77.7500 -74.0 + 136.7500 76.5000 -74.0 + 131.5000 76.2500 -74.0 + 125.5000 73.2500 -74.0 + 122.7500 68.5000 -74.0 + 120.5000 68.2500 -74.0 + 115.5000 66.2500 -74.0 + 113.5000 67.2500 -74.0 + 111.5000 67.2500 -74.0 +} -74.0 +{ -74.0 + 62.7500 69.5000 -74.0 + 63.5000 68.7500 -74.0 + 65.2500 69.5000 -74.0 + 65.2500 71.5000 -74.0 + 63.5000 73.2500 -74.0 + 61.7500 72.5000 -74.0 + 62.5000 71.7500 -74.0 +} -74.0 +{ -74.0 + 150.5000 71.7500 -74.0 + 151.2500 72.5000 -74.0 + 150.2500 75.5000 -74.0 + 148.5000 76.2500 -74.0 + 147.7500 74.5000 -74.0 +} -74.0 +v 191 z -76.000000 -74.0 +{ -74.0 + 103.2500 48.5000 -74.0 + 101.5000 49.2500 -74.0 + 93.5000 54.2500 -74.0 + 93.2500 61.5000 -74.0 + 96.5000 54.7500 -74.0 + 102.5000 51.7500 -74.0 + 104.5000 51.7500 -74.0 + 106.2500 53.5000 -74.0 + 107.5000 51.7500 -74.0 + 113.5000 51.7500 -74.0 + 116.5000 52.7500 -74.0 + 120.2500 56.5000 -74.0 + 120.2500 59.5000 -74.0 + 121.7500 56.5000 -74.0 + 120.7500 53.5000 -74.0 + 111.7500 48.5000 -74.0 +} -74.0 +{ -74.0 + 65.2500 58.5000 -74.0 + 63.5000 59.2500 -74.0 + 57.5000 65.2500 -74.0 + 60.2500 70.5000 -74.0 + 60.2500 72.5000 -74.0 + 57.5000 78.2500 -74.0 + 54.2500 82.5000 -74.0 + 48.2500 94.5000 -74.0 + 38.2500 121.5000 -74.0 + 32.2500 135.5000 -74.0 + 31.2500 140.5000 -74.0 + 28.5000 156.2500 -74.0 + 28.2500 172.5000 -74.0 + 29.2500 174.5000 -74.0 + 29.2500 179.5000 -74.0 + 30.2500 181.5000 -74.0 + 30.2500 184.5000 -74.0 + 35.2500 197.5000 -74.0 + 41.2500 207.5000 -74.0 + 56.2500 221.5000 -74.0 + 68.2500 226.5000 -74.0 + 78.5000 226.7500 -74.0 + 89.2500 229.5000 -74.0 + 110.5000 229.7500 -74.0 + 112.5000 228.7500 -74.0 + 125.5000 228.7500 -74.0 + 127.5000 227.7500 -74.0 + 130.5000 227.7500 -74.0 + 143.5000 222.7500 -74.0 + 153.5000 215.7500 -74.0 + 160.7500 207.5000 -74.0 + 170.5000 193.7500 -74.0 + 173.7500 184.5000 -74.0 + 176.5000 172.7500 -74.0 + 176.7500 165.5000 -74.0 + 177.5000 163.7500 -74.0 + 177.7500 141.5000 -74.0 + 176.7500 139.5000 -74.0 + 176.7500 134.5000 -74.0 + 174.7500 130.5000 -74.0 + 174.7500 127.5000 -74.0 + 163.7500 101.5000 -74.0 + 155.7500 89.5000 -74.0 + 155.7500 87.5000 -74.0 + 151.7500 79.5000 -74.0 + 151.7500 76.5000 -74.0 + 152.7500 73.5000 -74.0 + 156.5000 70.7500 -74.0 + 156.7500 67.5000 -74.0 + 154.5000 64.2500 -74.0 + 150.7500 61.5000 -74.0 + 147.5000 61.2500 -74.0 + 147.2500 62.5000 -74.0 + 149.2500 66.5000 -74.0 + 149.2500 70.5000 -74.0 + 147.2500 75.5000 -74.0 + 148.5000 75.7500 -74.0 + 150.2500 77.5000 -74.0 + 149.5000 79.2500 -74.0 + 147.5000 78.2500 -74.0 + 146.7500 76.5000 -74.0 + 145.5000 76.2500 -74.0 + 141.5000 78.2500 -74.0 + 138.5000 78.2500 -74.0 + 136.5000 79.2500 -74.0 + 134.7500 78.5000 -74.0 + 125.5000 78.2500 -74.0 + 120.7500 68.5000 -74.0 + 110.5000 68.2500 -74.0 + 106.7500 63.5000 -74.0 + 104.5000 64.2500 -74.0 + 101.5000 68.2500 -74.0 + 99.5000 68.2500 -74.0 + 100.5000 69.7500 -74.0 + 103.5000 68.7500 -74.0 + 103.7500 66.5000 -74.0 + 105.5000 64.7500 -74.0 + 107.2500 65.5000 -74.0 + 110.5000 69.7500 -74.0 + 112.5000 68.7500 -74.0 + 115.5000 68.7500 -74.0 + 117.2500 69.5000 -74.0 + 123.2500 76.5000 -74.0 + 123.2500 78.5000 -74.0 + 125.2500 80.5000 -74.0 + 136.5000 80.7500 -74.0 + 139.5000 81.7500 -74.0 + 143.5000 79.7500 -74.0 + 145.5000 80.7500 -74.0 + 147.2500 84.5000 -74.0 + 151.2500 88.5000 -74.0 + 151.2500 91.5000 -74.0 + 153.2500 93.5000 -74.0 + 156.2500 98.5000 -74.0 + 156.2500 102.5000 -74.0 + 161.2500 110.5000 -74.0 + 161.2500 112.5000 -74.0 + 164.2500 118.5000 -74.0 + 164.2500 121.5000 -74.0 + 166.2500 125.5000 -74.0 + 166.2500 129.5000 -74.0 + 168.2500 136.5000 -74.0 + 168.2500 141.5000 -74.0 + 170.2500 147.5000 -74.0 + 170.2500 161.5000 -74.0 + 171.2500 163.5000 -74.0 + 171.2500 165.5000 -74.0 + 169.5000 167.2500 -74.0 + 169.2500 175.5000 -74.0 + 167.5000 179.2500 -74.0 + 167.2500 181.5000 -74.0 + 158.2500 195.5000 -74.0 + 151.5000 204.2500 -74.0 + 149.2500 205.5000 -74.0 + 148.2500 207.5000 -74.0 + 140.5000 212.2500 -74.0 + 125.5000 220.2500 -74.0 + 123.5000 220.2500 -74.0 + 119.5000 222.2500 -74.0 + 108.5000 222.2500 -74.0 + 103.5000 221.2500 -74.0 + 101.5000 222.2500 -74.0 + 98.5000 222.2500 -74.0 + 96.7500 221.5000 -74.0 + 80.5000 221.2500 -74.0 + 71.7500 217.5000 -74.0 + 69.5000 217.2500 -74.0 + 64.5000 213.2500 -74.0 + 58.5000 210.2500 -74.0 + 49.7500 201.5000 -74.0 + 43.7500 193.5000 -74.0 + 37.7500 181.5000 -74.0 + 37.7500 179.5000 -74.0 + 35.7500 175.5000 -74.0 + 35.7500 173.5000 -74.0 + 34.7500 171.5000 -74.0 + 34.7500 159.5000 -74.0 + 33.7500 157.5000 -74.0 + 35.5000 154.7500 -74.0 + 36.7500 148.5000 -74.0 + 45.5000 125.7500 -74.0 + 46.7500 117.5000 -74.0 + 49.5000 111.7500 -74.0 + 49.7500 107.5000 -74.0 + 48.7500 105.5000 -74.0 + 48.7500 103.5000 -74.0 + 51.7500 100.5000 -74.0 + 52.7500 95.5000 -74.0 + 54.7500 84.5000 -74.0 + 64.5000 75.7500 -74.0 + 67.5000 75.7500 -74.0 + 69.2500 77.5000 -74.0 + 80.5000 78.7500 -74.0 + 86.5000 75.7500 -74.0 + 93.7500 69.5000 -74.0 + 90.5000 69.2500 -74.0 + 89.5000 71.2500 -74.0 + 81.5000 76.2500 -74.0 + 76.5000 76.2500 -74.0 + 67.5000 74.2500 -74.0 + 65.7500 72.5000 -74.0 + 65.7500 64.5000 -74.0 + 69.7500 58.5000 -74.0 +} -74.0 +{ -74.0 + 62.7500 72.5000 -74.0 + 63.5000 71.7500 -74.0 + 64.2500 72.5000 -74.0 + 63.5000 73.2500 -74.0 +} -74.0 +{ -74.0 + 149.7500 73.5000 -74.0 + 150.5000 72.7500 -74.0 + 151.2500 73.5000 -74.0 + 150.5000 74.2500 -74.0 +} -74.0 +{ -74.0 + 61.7500 217.5000 -74.0 + 62.5000 216.7500 -74.0 + 63.2500 217.5000 -74.0 + 62.5000 218.2500 -74.0 +} -74.0 +v 184 z -78.000000 -64.0 +{ -78.0 + 105.2500 47.5000 -78.0 + 104.5000 48.2500 -78.0 + 102.5000 48.2500 -78.0 + 97.5000 52.2500 -78.0 + 95.5000 53.2500 -78.0 + 94.5000 55.2500 -78.0 + 94.2500 60.5000 -78.0 + 95.5000 60.7500 -78.0 + 95.7500 58.5000 -78.0 + 96.7500 55.5000 -78.0 + 101.5000 52.7500 -78.0 + 105.5000 52.7500 -78.0 + 107.5000 54.7500 -78.0 + 111.5000 52.7500 -78.0 + 113.2500 53.5000 -78.0 + 115.5000 53.7500 -78.0 + 118.2500 56.5000 -78.0 + 118.2500 58.5000 -78.0 + 119.5000 61.7500 -78.0 + 119.7500 54.5000 -78.0 + 114.5000 50.2500 -78.0 + 110.5000 48.2500 -78.0 + 108.7500 47.5000 -78.0 +} -78.0 +{ -78.0 + 64.2500 58.5000 -78.0 + 60.5000 60.2500 -78.0 + 58.2500 62.5000 -78.0 + 56.2500 66.5000 -78.0 + 60.2500 70.5000 -78.0 + 60.2500 73.5000 -78.0 + 49.5000 92.2500 -78.0 + 31.5000 137.2500 -78.0 + 31.2500 139.5000 -78.0 + 28.5000 155.2500 -78.0 + 28.2500 172.5000 -78.0 + 29.2500 174.5000 -78.0 + 29.2500 179.5000 -78.0 + 30.2500 181.5000 -78.0 + 30.2500 184.5000 -78.0 + 35.2500 197.5000 -78.0 + 41.2500 207.5000 -78.0 + 53.5000 219.7500 -78.0 + 60.2500 223.5000 -78.0 + 66.5000 225.7500 -78.0 + 74.2500 227.5000 -78.0 + 75.5000 226.7500 -78.0 + 93.2500 230.5000 -78.0 + 106.5000 230.7500 -78.0 + 108.5000 229.7500 -78.0 + 112.5000 229.7500 -78.0 + 114.5000 228.7500 -78.0 + 126.5000 228.7500 -78.0 + 128.5000 227.7500 -78.0 + 132.5000 227.7500 -78.0 + 140.5000 223.7500 -78.0 + 142.5000 223.7500 -78.0 + 154.5000 214.7500 -78.0 + 166.5000 199.7500 -78.0 + 172.7500 188.5000 -78.0 + 174.7500 181.5000 -78.0 + 175.7500 174.5000 -78.0 + 177.5000 164.7500 -78.0 + 177.7500 139.5000 -78.0 + 176.7500 137.5000 -78.0 + 175.7500 130.5000 -78.0 + 173.7500 126.5000 -78.0 + 173.5000 124.2500 -78.0 + 160.7500 96.5000 -78.0 + 155.7500 90.5000 -78.0 + 151.7500 82.5000 -78.0 + 151.7500 75.5000 -78.0 + 157.5000 70.7500 -78.0 + 157.7500 68.5000 -78.0 + 156.5000 65.2500 -78.0 + 152.7500 62.5000 -78.0 + 149.2500 62.5000 -78.0 + 151.2500 68.5000 -78.0 + 148.2500 74.5000 -78.0 + 149.2500 77.5000 -78.0 + 146.5000 80.2500 -78.0 + 142.7500 79.5000 -78.0 + 141.5000 80.2500 -78.0 + 127.5000 81.2500 -78.0 + 124.5000 80.2500 -78.0 + 122.5000 77.2500 -78.0 + 122.2500 79.5000 -78.0 + 123.5000 80.7500 -78.0 + 129.2500 83.5000 -78.0 + 138.5000 83.7500 -78.0 + 144.2500 86.5000 -78.0 + 144.2500 88.5000 -78.0 + 146.5000 88.7500 -78.0 + 149.5000 92.7500 -78.0 + 153.2500 95.5000 -78.0 + 151.2500 96.5000 -78.0 + 152.2500 99.5000 -78.0 + 157.2500 104.5000 -78.0 + 163.2500 113.5000 -78.0 + 163.2500 115.5000 -78.0 + 165.2500 119.5000 -78.0 + 165.2500 122.5000 -78.0 + 167.2500 126.5000 -78.0 + 168.2500 135.5000 -78.0 + 170.2500 137.5000 -78.0 + 169.5000 138.2500 -78.0 + 169.2500 142.5000 -78.0 + 170.2500 144.5000 -78.0 + 170.2500 152.5000 -78.0 + 171.2500 155.5000 -78.0 + 170.2500 158.5000 -78.0 + 172.2500 162.5000 -78.0 + 169.5000 167.2500 -78.0 + 169.2500 171.5000 -78.0 + 170.2500 173.5000 -78.0 + 169.2500 177.5000 -78.0 + 167.5000 179.2500 -78.0 + 167.2500 181.5000 -78.0 + 157.2500 197.5000 -78.0 + 148.5000 207.2500 -78.0 + 130.5000 218.2500 -78.0 + 120.5000 222.2500 -78.0 + 118.5000 222.2500 -78.0 + 116.5000 223.2500 -78.0 + 97.5000 222.2500 -78.0 + 95.7500 221.5000 -78.0 + 90.5000 221.2500 -78.0 + 88.5000 222.2500 -78.0 + 76.5000 220.2500 -78.0 + 68.7500 216.5000 -78.0 + 58.5000 210.2500 -78.0 + 50.7500 203.5000 -78.0 + 44.7500 195.5000 -78.0 + 38.7500 184.5000 -78.0 + 38.7500 182.5000 -78.0 + 35.7500 176.5000 -78.0 + 35.7500 172.5000 -78.0 + 34.7500 170.5000 -78.0 + 34.7500 152.5000 -78.0 + 36.7500 146.5000 -78.0 + 43.5000 130.7500 -78.0 + 46.7500 118.5000 -78.0 + 50.5000 110.7500 -78.0 + 51.7500 101.5000 -78.0 + 54.5000 95.7500 -78.0 + 54.7500 87.5000 -78.0 + 56.7500 82.5000 -78.0 + 59.5000 79.7500 -78.0 + 65.5000 76.7500 -78.0 + 69.2500 79.5000 -78.0 + 74.5000 79.7500 -78.0 + 76.2500 80.5000 -78.0 + 77.2500 82.5000 -78.0 + 80.7500 82.5000 -78.0 + 81.7500 80.5000 -78.0 + 84.7500 78.5000 -78.0 + 72.5000 78.2500 -78.0 + 66.5000 75.2500 -78.0 + 63.7500 69.5000 -78.0 + 63.7500 66.5000 -78.0 + 66.5000 59.7500 -78.0 + 65.7500 58.5000 -78.0 +} -78.0 +{ -78.0 + 104.2500 64.5000 -78.0 + 102.5000 70.2500 -78.0 + 99.5000 70.2500 -78.0 + 100.5000 71.7500 -78.0 + 102.5000 70.7500 -78.0 + 105.7500 71.5000 -78.0 + 104.7500 69.5000 -78.0 +} -78.0 +{ -78.0 + 108.2500 65.5000 -78.0 + 108.5000 69.7500 -78.0 + 110.5000 70.7500 -78.0 + 112.5000 69.7500 -78.0 + 109.7500 68.5000 -78.0 +} -78.0 +{ -78.0 + 92.2500 70.5000 -78.0 + 91.2500 72.5000 -78.0 + 88.2500 75.5000 -78.0 + 87.2500 77.5000 -78.0 + 88.5000 77.7500 -78.0 + 93.7500 70.5000 -78.0 +} -78.0 +{ -78.0 + 119.2500 71.5000 -78.0 + 118.5000 72.2500 -78.0 + 119.2500 74.5000 -78.0 + 121.7500 76.5000 -78.0 + 120.7500 74.5000 -78.0 + 120.7500 72.5000 -78.0 +} -78.0 +v 194 z -80.000000 -64.0 +{ -80.0 + 106.2500 46.5000 -80.0 + 102.5000 48.2500 -80.0 + 95.5000 55.2500 -80.0 + 95.2500 60.5000 -80.0 + 96.5000 59.7500 -80.0 + 96.7500 57.5000 -80.0 + 98.5000 55.7500 -80.0 + 105.5000 54.7500 -80.0 + 108.5000 55.7500 -80.0 + 110.5000 54.7500 -80.0 + 115.5000 54.7500 -80.0 + 118.5000 58.7500 -80.0 + 118.7500 56.5000 -80.0 + 114.7500 50.5000 -80.0 + 107.7500 46.5000 -80.0 +} -80.0 +{ -80.0 + 61.2500 59.5000 -80.0 + 56.5000 63.2500 -80.0 + 56.5000 67.7500 -80.0 + 60.2500 70.5000 -80.0 + 60.2500 75.5000 -80.0 + 58.2500 79.5000 -80.0 + 54.5000 85.2500 -80.0 + 54.2500 87.5000 -80.0 + 48.5000 95.2500 -80.0 + 48.2500 97.5000 -80.0 + 45.2500 103.5000 -80.0 + 44.2500 108.5000 -80.0 + 38.2500 120.5000 -80.0 + 31.2500 138.5000 -80.0 + 29.5000 145.2500 -80.0 + 29.2500 152.5000 -80.0 + 28.5000 154.2500 -80.0 + 28.2500 171.5000 -80.0 + 29.2500 173.5000 -80.0 + 29.2500 178.5000 -80.0 + 30.2500 180.5000 -80.0 + 31.5000 188.7500 -80.0 + 37.2500 201.5000 -80.0 + 41.2500 207.5000 -80.0 + 51.2500 217.5000 -80.0 + 57.2500 222.5000 -80.0 + 59.5000 222.7500 -80.0 + 65.5000 225.7500 -80.0 + 72.2500 227.5000 -80.0 + 79.5000 227.7500 -80.0 + 95.2500 231.5000 -80.0 + 104.5000 231.7500 -80.0 + 106.5000 230.7500 -80.0 + 115.5000 229.7500 -80.0 + 117.5000 228.7500 -80.0 + 118.2500 229.5000 -80.0 + 119.5000 228.7500 -80.0 + 126.5000 228.7500 -80.0 + 128.5000 227.7500 -80.0 + 135.5000 226.7500 -80.0 + 147.5000 220.7500 -80.0 + 155.5000 213.7500 -80.0 + 166.7500 199.5000 -80.0 + 172.7500 188.5000 -80.0 + 175.7500 177.5000 -80.0 + 176.7500 168.5000 -80.0 + 177.5000 166.7500 -80.0 + 177.7500 154.5000 -80.0 + 178.7500 147.5000 -80.0 + 177.7500 145.5000 -80.0 + 177.7500 138.5000 -80.0 + 172.7500 121.5000 -80.0 + 160.7500 96.5000 -80.0 + 152.7500 87.5000 -80.0 + 152.7500 85.5000 -80.0 + 149.7500 81.5000 -80.0 + 152.7500 74.5000 -80.0 + 158.5000 71.7500 -80.0 + 158.7500 69.5000 -80.0 + 157.7500 66.5000 -80.0 + 154.7500 63.5000 -80.0 + 151.2500 63.5000 -80.0 + 152.2500 65.5000 -80.0 + 152.2500 68.5000 -80.0 + 151.2500 71.5000 -80.0 + 146.5000 77.2500 -80.0 + 147.2500 78.5000 -80.0 + 145.2500 79.5000 -80.0 + 144.2500 81.5000 -80.0 + 145.2500 83.5000 -80.0 + 145.2500 89.5000 -80.0 + 144.5000 91.2500 -80.0 + 140.7500 85.5000 -80.0 + 140.7500 81.5000 -80.0 + 139.5000 81.2500 -80.0 + 135.5000 83.2500 -80.0 + 133.5000 83.2500 -80.0 + 131.5000 84.2500 -80.0 + 130.7500 83.5000 -80.0 + 128.5000 83.2500 -80.0 + 128.2500 84.5000 -80.0 + 133.2500 87.5000 -80.0 + 137.5000 87.7500 -80.0 + 157.2500 103.5000 -80.0 + 163.2500 112.5000 -80.0 + 163.2500 114.5000 -80.0 + 166.2500 120.5000 -80.0 + 166.2500 122.5000 -80.0 + 168.2500 126.5000 -80.0 + 169.2500 133.5000 -80.0 + 171.2500 137.5000 -80.0 + 170.5000 139.2500 -80.0 + 170.2500 144.5000 -80.0 + 171.2500 146.5000 -80.0 + 171.2500 157.5000 -80.0 + 172.2500 160.5000 -80.0 + 170.5000 164.2500 -80.0 + 169.5000 169.2500 -80.0 + 170.2500 170.5000 -80.0 + 170.2500 173.5000 -80.0 + 167.2500 181.5000 -80.0 + 157.2500 197.5000 -80.0 + 148.2500 207.5000 -80.0 + 141.5000 212.2500 -80.0 + 132.5000 217.2500 -80.0 + 118.5000 223.2500 -80.0 + 104.5000 222.2500 -80.0 + 102.5000 223.2500 -80.0 + 78.5000 221.2500 -80.0 + 72.5000 219.2500 -80.0 + 65.7500 214.5000 -80.0 + 56.5000 209.2500 -80.0 + 48.7500 201.5000 -80.0 + 45.7500 197.5000 -80.0 + 37.7500 182.5000 -80.0 + 37.7500 180.5000 -80.0 + 35.7500 176.5000 -80.0 + 35.7500 172.5000 -80.0 + 34.7500 170.5000 -80.0 + 34.7500 159.5000 -80.0 + 35.5000 157.7500 -80.0 + 35.7500 152.5000 -80.0 + 34.7500 150.5000 -80.0 + 34.7500 147.5000 -80.0 + 37.5000 141.7500 -80.0 + 37.7500 139.5000 -80.0 + 44.7500 125.5000 -80.0 + 46.7500 116.5000 -80.0 + 50.7500 110.5000 -80.0 + 51.7500 105.5000 -80.0 + 53.5000 103.7500 -80.0 + 53.7500 100.5000 -80.0 + 57.5000 94.7500 -80.0 + 57.7500 90.5000 -80.0 + 56.7500 88.5000 -80.0 + 56.7500 86.5000 -80.0 + 59.7500 80.5000 -80.0 + 62.5000 78.7500 -80.0 + 67.5000 78.7500 -80.0 + 69.2500 80.5000 -80.0 + 71.5000 80.7500 -80.0 + 75.2500 83.5000 -80.0 + 79.5000 83.7500 -80.0 + 81.2500 84.5000 -80.0 + 87.7500 80.5000 -80.0 + 88.7500 78.5000 -80.0 + 84.5000 81.2500 -80.0 + 75.5000 80.2500 -80.0 + 69.5000 78.2500 -80.0 + 65.7500 75.5000 -80.0 + 62.7500 69.5000 -80.0 + 63.7500 59.5000 -80.0 +} -80.0 +{ -80.0 + 118.2500 61.5000 -80.0 + 118.2500 63.5000 -80.0 + 118.7500 62.5000 -80.0 +} -80.0 +{ -80.0 + 104.2500 63.5000 -80.0 + 104.2500 65.5000 -80.0 + 105.7500 63.5000 -80.0 +} -80.0 +{ -80.0 + 107.2500 63.5000 -80.0 + 108.2500 64.5000 -80.0 + 108.7500 63.5000 -80.0 +} -80.0 +{ -80.0 + 108.2500 66.5000 -80.0 + 108.2500 71.5000 -80.0 + 111.5000 71.7500 -80.0 +} -80.0 +{ -80.0 + 104.2500 68.5000 -80.0 + 104.2500 70.5000 -80.0 + 102.5000 72.7500 -80.0 + 104.5000 71.7500 -80.0 + 105.2500 72.5000 -80.0 + 106.5000 71.7500 -80.0 +} -80.0 +{ -80.0 + 117.2500 73.5000 -80.0 + 120.2500 79.5000 -80.0 + 121.5000 79.7500 -80.0 + 119.7500 76.5000 -80.0 + 119.7500 73.5000 -80.0 +} -80.0 +{ -80.0 + 153.7500 92.5000 -80.0 + 154.5000 91.7500 -80.0 + 155.2500 92.5000 -80.0 + 154.5000 93.2500 -80.0 +} -80.0 +v 203 z -82.000000 -64.0 +{ -82.0 + 106.2500 45.5000 -82.0 + 104.5000 46.2500 -82.0 + 96.5000 55.2500 -82.0 + 96.7500 58.5000 -82.0 + 98.5000 56.7500 -82.0 + 100.5000 56.7500 -82.0 + 102.5000 55.7500 -82.0 + 106.5000 55.7500 -82.0 + 108.5000 56.7500 -82.0 + 110.5000 55.7500 -82.0 + 114.5000 55.7500 -82.0 + 116.2500 56.5000 -82.0 + 117.2500 58.5000 -82.0 + 118.5000 58.7500 -82.0 + 118.7500 57.5000 -82.0 + 117.7500 54.5000 -82.0 + 108.7500 45.5000 -82.0 +} -82.0 +{ -82.0 + 60.2500 60.5000 -82.0 + 58.5000 61.2500 -82.0 + 55.5000 64.2500 -82.0 + 55.2500 67.5000 -82.0 + 58.5000 69.7500 -82.0 + 61.2500 73.5000 -82.0 + 61.2500 78.5000 -82.0 + 55.2500 86.5000 -82.0 + 56.2500 88.5000 -82.0 + 55.5000 90.2500 -82.0 + 54.7500 88.5000 -82.0 + 53.5000 88.2500 -82.0 + 52.2500 90.5000 -82.0 + 31.2500 136.5000 -82.0 + 29.5000 143.2500 -82.0 + 29.2500 152.5000 -82.0 + 28.5000 154.2500 -82.0 + 28.2500 171.5000 -82.0 + 29.2500 173.5000 -82.0 + 30.2500 183.5000 -82.0 + 31.2500 185.5000 -82.0 + 31.5000 188.7500 -82.0 + 37.2500 201.5000 -82.0 + 41.2500 207.5000 -82.0 + 52.2500 218.5000 -82.0 + 56.5000 221.7500 -82.0 + 71.2500 227.5000 -82.0 + 80.5000 227.7500 -82.0 + 84.5000 229.7500 -82.0 + 91.2500 231.5000 -82.0 + 103.5000 232.7500 -82.0 + 113.5000 229.7500 -82.0 + 121.5000 229.7500 -82.0 + 123.5000 228.7500 -82.0 + 126.5000 228.7500 -82.0 + 134.7500 226.5000 -82.0 + 147.5000 220.7500 -82.0 + 154.5000 214.7500 -82.0 + 163.5000 203.7500 -82.0 + 171.5000 190.7500 -82.0 + 171.7500 188.5000 -82.0 + 173.7500 184.5000 -82.0 + 175.7500 175.5000 -82.0 + 177.5000 166.7500 -82.0 + 178.7500 143.5000 -82.0 + 177.7500 141.5000 -82.0 + 177.7500 137.5000 -82.0 + 176.7500 135.5000 -82.0 + 175.7500 129.5000 -82.0 + 173.7500 125.5000 -82.0 + 173.7500 123.5000 -82.0 + 162.7500 101.5000 -82.0 + 157.5000 93.2500 -82.0 + 153.7500 90.5000 -82.0 + 152.7500 88.5000 -82.0 + 150.5000 88.2500 -82.0 + 147.7500 83.5000 -82.0 + 148.7500 80.5000 -82.0 + 150.5000 79.7500 -82.0 + 153.7500 74.5000 -82.0 + 158.5000 72.7500 -82.0 + 159.5000 70.7500 -82.0 + 158.7500 67.5000 -82.0 + 153.5000 64.2500 -82.0 + 153.2500 67.5000 -82.0 + 150.5000 74.2500 -82.0 + 148.5000 75.2500 -82.0 + 143.5000 80.2500 -82.0 + 134.5000 85.2500 -82.0 + 126.5000 85.2500 -82.0 + 127.2500 87.5000 -82.0 + 128.5000 87.7500 -82.0 + 131.2500 91.5000 -82.0 + 143.5000 92.7500 -82.0 + 143.7500 90.5000 -82.0 + 141.7500 88.5000 -82.0 + 139.5000 90.2500 -82.0 + 135.5000 90.2500 -82.0 + 133.7500 89.5000 -82.0 + 136.5000 86.7500 -82.0 + 140.5000 86.7500 -82.0 + 140.7500 84.5000 -82.0 + 142.5000 82.7500 -82.0 + 143.2500 83.5000 -82.0 + 143.2500 85.5000 -82.0 + 146.2500 87.5000 -82.0 + 145.5000 91.2500 -82.0 + 148.5000 92.7500 -82.0 + 151.2500 95.5000 -82.0 + 153.2500 99.5000 -82.0 + 161.2500 108.5000 -82.0 + 165.2500 116.5000 -82.0 + 165.2500 118.5000 -82.0 + 167.2500 120.5000 -82.0 + 167.2500 123.5000 -82.0 + 170.2500 129.5000 -82.0 + 170.2500 132.5000 -82.0 + 171.2500 134.5000 -82.0 + 171.2500 140.5000 -82.0 + 170.2500 142.5000 -82.0 + 171.2500 144.5000 -82.0 + 171.2500 151.5000 -82.0 + 172.2500 153.5000 -82.0 + 172.2500 158.5000 -82.0 + 170.5000 163.2500 -82.0 + 170.2500 173.5000 -82.0 + 167.2500 181.5000 -82.0 + 154.2500 201.5000 -82.0 + 147.5000 208.2500 -82.0 + 143.5000 211.2500 -82.0 + 122.5000 222.2500 -82.0 + 120.5000 222.2500 -82.0 + 114.5000 224.2500 -82.0 + 113.7500 223.5000 -82.0 + 109.5000 223.2500 -82.0 + 106.5000 222.2500 -82.0 + 104.5000 223.2500 -82.0 + 82.5000 222.2500 -82.0 + 74.5000 220.2500 -82.0 + 56.5000 209.2500 -82.0 + 46.7500 199.5000 -82.0 + 37.7500 182.5000 -82.0 + 37.7500 180.5000 -82.0 + 35.7500 176.5000 -82.0 + 35.7500 172.5000 -82.0 + 34.7500 170.5000 -82.0 + 34.7500 158.5000 -82.0 + 35.5000 156.7500 -82.0 + 35.7500 145.5000 -82.0 + 34.7500 142.5000 -82.0 + 37.5000 136.7500 -82.0 + 40.7500 132.5000 -82.0 + 42.7500 128.5000 -82.0 + 47.7500 113.5000 -82.0 + 50.5000 110.7500 -82.0 + 51.7500 106.5000 -82.0 + 56.5000 97.7500 -82.0 + 60.5000 94.7500 -82.0 + 60.7500 92.5000 -82.0 + 65.7500 87.5000 -82.0 + 61.5000 87.2500 -82.0 + 59.7500 83.5000 -82.0 + 63.5000 80.7500 -82.0 + 66.5000 80.7500 -82.0 + 75.2500 85.5000 -82.0 + 81.5000 85.7500 -82.0 + 84.7500 84.5000 -82.0 + 85.7500 82.5000 -82.0 + 84.5000 83.2500 -82.0 + 80.5000 83.2500 -82.0 + 67.5000 78.2500 -82.0 + 63.7500 73.5000 -82.0 + 63.7500 71.5000 -82.0 + 61.7500 67.5000 -82.0 + 61.7500 63.5000 -82.0 + 62.5000 61.7500 -82.0 + 61.7500 60.5000 -82.0 +} -82.0 +{ -82.0 + 104.2500 68.5000 -82.0 + 104.2500 69.5000 -82.0 + 103.2500 72.5000 -82.0 + 104.5000 71.7500 -82.0 + 105.5000 72.7500 -82.0 + 107.5000 71.7500 -82.0 + 108.2500 72.5000 -82.0 + 110.5000 72.7500 -82.0 + 108.7500 70.5000 -82.0 + 108.5000 68.2500 -82.0 + 108.2500 70.5000 -82.0 + 106.5000 71.2500 -82.0 +} -82.0 +{ -82.0 + 93.2500 73.5000 -82.0 + 92.2500 76.5000 -82.0 + 94.5000 74.7500 -82.0 +} -82.0 +{ -82.0 + 117.2500 74.5000 -82.0 + 117.2500 76.5000 -82.0 + 118.5000 77.7500 -82.0 + 118.7500 74.5000 -82.0 +} -82.0 +{ -82.0 + 106.7500 49.5000 -82.0 + 107.5000 48.7500 -82.0 + 108.2500 49.5000 -82.0 + 108.2500 53.5000 -82.0 + 106.5000 54.2500 -82.0 + 105.7500 52.5000 -82.0 +} -82.0 +{ -82.0 + 150.7500 91.5000 -82.0 + 152.5000 90.7500 -82.0 + 153.2500 92.5000 -82.0 + 151.5000 93.2500 -82.0 +} -82.0 +v 193 z -84.000000 -82.0 +{ -64.0 + 106.2500 43.5000 -84.0 + 105.2500 44.5000 -84.0 + 96.5000 56.2500 -84.0 + 96.5000 60.7500 -84.0 + 96.7500 58.5000 -84.0 + 99.5000 56.7500 -84.0 + 103.5000 56.7500 -84.0 + 105.5000 54.7500 -84.0 + 105.7500 47.5000 -84.0 + 107.5000 46.7500 -84.0 + 109.2500 48.5000 -84.0 + 109.2500 52.5000 -84.0 + 108.2500 55.5000 -84.0 + 112.2500 57.5000 -84.0 + 115.5000 57.7500 -84.0 + 117.5000 58.7500 -84.0 + 117.7500 56.5000 -84.0 + 116.7500 53.5000 -84.0 + 112.7500 49.5000 -84.0 + 108.7500 43.5000 -84.0 +} -84.0 +{ -84.0 + 57.2500 62.5000 -84.0 + 55.5000 64.2500 -84.0 + 55.2500 68.5000 -84.0 + 59.2500 70.5000 -84.0 + 63.2500 78.5000 -84.0 + 62.2500 81.5000 -84.0 + 59.5000 84.2500 -84.0 + 59.2500 86.5000 -84.0 + 60.2500 88.5000 -84.0 + 56.5000 90.2500 -84.0 + 55.7500 89.5000 -84.0 + 55.7500 87.5000 -84.0 + 54.5000 88.2500 -84.0 + 51.2500 93.5000 -84.0 + 31.2500 135.5000 -84.0 + 28.5000 149.2500 -84.0 + 28.2500 170.5000 -84.0 + 29.2500 172.5000 -84.0 + 29.2500 177.5000 -84.0 + 30.2500 179.5000 -84.0 + 31.2500 186.5000 -84.0 + 35.2500 197.5000 -84.0 + 41.2500 207.5000 -84.0 + 53.2500 219.5000 -84.0 + 60.2500 223.5000 -84.0 + 71.2500 227.5000 -84.0 + 82.5000 228.7500 -84.0 + 86.5000 230.7500 -84.0 + 93.2500 232.5000 -84.0 + 107.5000 232.7500 -84.0 + 111.5000 230.7500 -84.0 + 116.5000 230.7500 -84.0 + 122.5000 228.7500 -84.0 + 126.5000 228.7500 -84.0 + 128.5000 227.7500 -84.0 + 130.5000 227.7500 -84.0 + 147.5000 220.7500 -84.0 + 156.5000 212.7500 -84.0 + 163.7500 203.5000 -84.0 + 172.7500 187.5000 -84.0 + 176.5000 173.7500 -84.0 + 177.7500 160.5000 -84.0 + 178.5000 158.7500 -84.0 + 178.7500 141.5000 -84.0 + 176.7500 134.5000 -84.0 + 175.7500 128.5000 -84.0 + 173.7500 124.5000 -84.0 + 173.7500 122.5000 -84.0 + 168.7500 112.5000 -84.0 + 157.7500 93.5000 -84.0 + 152.5000 90.2500 -84.0 + 151.5000 92.2500 -84.0 + 149.7500 91.5000 -84.0 + 150.7500 89.5000 -84.0 + 147.7500 88.5000 -84.0 + 149.5000 87.7500 -84.0 + 149.7500 85.5000 -84.0 + 145.7500 84.5000 -84.0 + 147.5000 79.7500 -84.0 + 149.7500 80.5000 -84.0 + 151.7500 76.5000 -84.0 + 154.5000 73.7500 -84.0 + 159.5000 73.7500 -84.0 + 159.7500 71.5000 -84.0 + 158.7500 68.5000 -84.0 + 155.7500 65.5000 -84.0 + 154.5000 66.2500 -84.0 + 152.2500 72.5000 -84.0 + 146.5000 78.2500 -84.0 + 138.5000 84.2500 -84.0 + 139.5000 86.7500 -84.0 + 141.5000 85.7500 -84.0 + 143.2500 86.5000 -84.0 + 142.5000 88.2500 -84.0 + 140.5000 88.2500 -84.0 + 134.5000 90.2500 -84.0 + 133.7500 88.5000 -84.0 + 135.5000 86.2500 -84.0 + 131.5000 88.2500 -84.0 + 124.2500 87.5000 -84.0 + 128.2500 92.5000 -84.0 + 135.5000 92.7500 -84.0 + 137.5000 90.7500 -84.0 + 144.5000 90.7500 -84.0 + 147.5000 91.7500 -84.0 + 151.2500 94.5000 -84.0 + 155.2500 101.5000 -84.0 + 163.2500 109.5000 -84.0 + 165.2500 113.5000 -84.0 + 165.2500 115.5000 -84.0 + 168.2500 119.5000 -84.0 + 168.2500 121.5000 -84.0 + 170.2500 125.5000 -84.0 + 170.2500 127.5000 -84.0 + 171.2500 129.5000 -84.0 + 171.2500 135.5000 -84.0 + 172.2500 137.5000 -84.0 + 171.5000 139.2500 -84.0 + 171.2500 148.5000 -84.0 + 173.2500 152.5000 -84.0 + 173.2500 155.5000 -84.0 + 170.5000 164.2500 -84.0 + 170.2500 173.5000 -84.0 + 168.5000 177.2500 -84.0 + 168.2500 179.5000 -84.0 + 161.2500 191.5000 -84.0 + 154.2500 201.5000 -84.0 + 147.5000 208.2500 -84.0 + 132.5000 218.2500 -84.0 + 130.5000 218.2500 -84.0 + 122.5000 222.2500 -84.0 + 120.5000 222.2500 -84.0 + 116.5000 224.2500 -84.0 + 104.5000 223.2500 -84.0 + 102.5000 224.2500 -84.0 + 99.5000 224.2500 -84.0 + 94.7500 222.5000 -84.0 + 79.5000 222.2500 -84.0 + 70.7500 218.5000 -84.0 + 60.5000 211.2500 -84.0 + 56.5000 209.2500 -84.0 + 46.7500 199.5000 -84.0 + 39.7500 187.5000 -84.0 + 39.7500 185.5000 -84.0 + 35.7500 177.5000 -84.0 + 35.7500 174.5000 -84.0 + 34.7500 172.5000 -84.0 + 34.7500 156.5000 -84.0 + 35.5000 154.7500 -84.0 + 35.7500 145.5000 -84.0 + 34.7500 143.5000 -84.0 + 35.5000 141.7500 -84.0 + 35.7500 137.5000 -84.0 + 40.5000 131.7500 -84.0 + 49.5000 108.7500 -84.0 + 49.7500 106.5000 -84.0 + 52.5000 102.7500 -84.0 + 52.7500 100.5000 -84.0 + 55.7500 97.5000 -84.0 + 62.5000 92.7500 -84.0 + 69.5000 91.7500 -84.0 + 73.5000 89.7500 -84.0 + 83.7500 87.5000 -84.0 + 85.5000 84.2500 -84.0 + 83.5000 85.2500 -84.0 + 78.5000 85.2500 -84.0 + 72.7500 81.5000 -84.0 + 70.5000 81.2500 -84.0 + 64.7500 74.5000 -84.0 + 60.7500 66.5000 -84.0 + 60.7500 62.5000 -84.0 +} -84.0 +{ -84.0 + 109.2500 70.5000 -84.0 + 109.5000 73.7500 -84.0 + 111.5000 74.7500 -84.0 + 112.5000 74.2500 -84.0 + 110.5000 73.2500 -84.0 +} -84.0 +{ -84.0 + 94.2500 75.5000 -84.0 + 93.2500 76.5000 -84.0 + 94.7500 76.5000 -84.0 +} -84.0 +{ -84.0 + 115.2500 75.5000 -84.0 + 116.2500 76.5000 -84.0 + 116.7500 75.5000 -84.0 +} -84.0 +{ -84.0 + 63.7500 87.5000 -84.0 + 64.5000 86.7500 -84.0 + 67.5000 86.7500 -84.0 + 69.2500 88.5000 -84.0 + 67.5000 89.2500 -84.0 + 63.5000 91.2500 -84.0 + 62.7500 90.5000 -84.0 +} -84.0 +{ -84.0 + 144.7500 89.5000 -84.0 + 145.5000 88.7500 -84.0 + 146.2500 89.5000 -84.0 + 145.5000 90.2500 -84.0 +} -84.0 +v 247 z -86.000000 -64.0 +{ -86.0 + 107.2500 40.5000 -86.0 + 105.2500 42.5000 -86.0 + 103.2500 46.5000 -86.0 + 97.5000 54.2500 -86.0 + 97.2500 57.5000 -86.0 + 98.5000 57.7500 -86.0 + 101.7500 56.5000 -86.0 + 105.5000 48.7500 -86.0 + 105.7500 46.5000 -86.0 + 107.5000 44.7500 -86.0 + 109.2500 46.5000 -86.0 + 109.2500 49.5000 -86.0 + 111.2500 53.5000 -86.0 + 111.2500 56.5000 -86.0 + 113.2500 58.5000 -86.0 + 114.5000 57.7500 -86.0 + 117.5000 57.7500 -86.0 + 117.7500 56.5000 -86.0 + 114.7500 50.5000 -86.0 + 111.7500 47.5000 -86.0 + 111.7500 44.5000 -86.0 + 108.7500 40.5000 -86.0 +} -86.0 +{ -86.0 + 96.2500 58.5000 -86.0 + 96.2500 60.5000 -86.0 + 96.7500 59.5000 -86.0 +} -86.0 +{ -86.0 + 57.2500 63.5000 -86.0 + 55.5000 65.2500 -86.0 + 55.2500 69.5000 -86.0 + 59.2500 70.5000 -86.0 + 62.2500 76.5000 -86.0 + 65.2500 77.5000 -86.0 + 65.2500 81.5000 -86.0 + 68.5000 84.7500 -86.0 + 70.5000 83.7500 -86.0 + 75.5000 84.7500 -86.0 + 76.2500 86.5000 -86.0 + 78.2500 87.5000 -86.0 + 78.7500 86.5000 -86.0 + 76.5000 84.2500 -86.0 + 70.5000 81.2500 -86.0 + 63.7500 73.5000 -86.0 + 60.7500 67.5000 -86.0 + 60.7500 65.5000 -86.0 + 59.7500 63.5000 -86.0 +} -86.0 +{ -86.0 + 154.2500 67.5000 -86.0 + 153.5000 68.2500 -86.0 + 153.2500 70.5000 -86.0 + 152.2500 73.5000 -86.0 + 144.2500 80.5000 -86.0 + 143.2500 82.5000 -86.0 + 145.5000 82.7500 -86.0 + 147.5000 80.7500 -86.0 + 148.2500 81.5000 -86.0 + 154.5000 74.7500 -86.0 + 159.5000 74.7500 -86.0 + 160.7500 73.5000 -86.0 + 159.7500 71.5000 -86.0 + 159.7500 69.5000 -86.0 + 157.7500 67.5000 -86.0 +} -86.0 +{ -86.0 + 114.2500 76.5000 -86.0 + 113.5000 77.2500 -86.0 + 115.2500 78.5000 -86.0 + 115.7500 77.5000 -86.0 +} -86.0 +{ -86.0 + 63.2500 82.5000 -86.0 + 63.2500 83.5000 -86.0 + 62.5000 85.2500 -86.0 + 62.2500 87.5000 -86.0 + 59.5000 91.2500 -86.0 + 57.5000 91.2500 -86.0 + 55.7500 89.5000 -86.0 + 56.7500 87.5000 -86.0 + 54.5000 89.2500 -86.0 + 51.2500 94.5000 -86.0 + 36.5000 123.2500 -86.0 + 36.2500 125.5000 -86.0 + 30.2500 137.5000 -86.0 + 29.2500 146.5000 -86.0 + 28.5000 148.2500 -86.0 + 28.2500 168.5000 -86.0 + 29.2500 170.5000 -86.0 + 29.2500 175.5000 -86.0 + 30.2500 177.5000 -86.0 + 30.2500 181.5000 -86.0 + 31.2500 183.5000 -86.0 + 31.2500 185.5000 -86.0 + 32.2500 187.5000 -86.0 + 32.5000 190.7500 -86.0 + 37.2500 201.5000 -86.0 + 41.2500 206.5000 -86.0 + 42.2500 208.5000 -86.0 + 51.2500 217.5000 -86.0 + 55.5000 220.7500 -86.0 + 65.5000 225.7500 -86.0 + 74.5000 227.7500 -86.0 + 76.2500 228.5000 -86.0 + 80.5000 228.7500 -86.0 + 82.2500 229.5000 -86.0 + 88.5000 231.7500 -86.0 + 90.2500 232.5000 -86.0 + 94.5000 232.7500 -86.0 + 96.2500 233.5000 -86.0 + 104.5000 233.7500 -86.0 + 106.5000 232.7500 -86.0 + 108.5000 232.7500 -86.0 + 112.5000 230.7500 -86.0 + 116.5000 230.7500 -86.0 + 118.5000 229.7500 -86.0 + 120.5000 229.7500 -86.0 + 122.5000 228.7500 -86.0 + 126.5000 228.7500 -86.0 + 128.5000 227.7500 -86.0 + 130.5000 227.7500 -86.0 + 134.5000 225.7500 -86.0 + 136.5000 225.7500 -86.0 + 148.5000 219.7500 -86.0 + 155.5000 213.7500 -86.0 + 162.5000 204.7500 -86.0 + 166.7500 198.5000 -86.0 + 171.7500 189.5000 -86.0 + 172.7500 184.5000 -86.0 + 174.7500 180.5000 -86.0 + 175.7500 175.5000 -86.0 + 176.5000 173.7500 -86.0 + 176.7500 169.5000 -86.0 + 177.5000 167.7500 -86.0 + 177.7500 161.5000 -86.0 + 178.5000 159.7500 -86.0 + 178.7500 140.5000 -86.0 + 177.7500 138.5000 -86.0 + 177.7500 135.5000 -86.0 + 176.7500 133.5000 -86.0 + 176.7500 131.5000 -86.0 + 173.5000 122.2500 -86.0 + 170.7500 115.5000 -86.0 + 165.7500 107.5000 -86.0 + 161.7500 100.5000 -86.0 + 160.7500 98.5000 -86.0 + 154.5000 91.2500 -86.0 + 150.5000 89.2500 -86.0 + 148.5000 91.2500 -86.0 + 146.7500 87.5000 -86.0 + 145.5000 87.2500 -86.0 + 143.5000 85.2500 -86.0 + 143.2500 87.5000 -86.0 + 142.5000 89.2500 -86.0 + 140.5000 89.2500 -86.0 + 137.5000 88.2500 -86.0 + 135.5000 89.2500 -86.0 + 133.5000 89.2500 -86.0 + 131.5000 90.2500 -86.0 + 125.5000 90.2500 -86.0 + 122.7500 87.5000 -86.0 + 122.2500 88.5000 -86.0 + 127.5000 94.7500 -86.0 + 130.5000 93.7500 -86.0 + 133.5000 90.7500 -86.0 + 142.5000 90.7500 -86.0 + 145.5000 91.7500 -86.0 + 147.2500 92.5000 -86.0 + 150.5000 92.7500 -86.0 + 153.2500 97.5000 -86.0 + 154.2500 99.5000 -86.0 + 161.2500 106.5000 -86.0 + 164.2500 110.5000 -86.0 + 169.2500 119.5000 -86.0 + 169.2500 121.5000 -86.0 + 171.2500 125.5000 -86.0 + 171.2500 129.5000 -86.0 + 172.2500 131.5000 -86.0 + 172.2500 138.5000 -86.0 + 171.2500 143.5000 -86.0 + 172.2500 145.5000 -86.0 + 172.2500 147.5000 -86.0 + 174.2500 151.5000 -86.0 + 172.5000 154.2500 -86.0 + 171.2500 165.5000 -86.0 + 170.5000 167.2500 -86.0 + 170.2500 172.5000 -86.0 + 169.2500 177.5000 -86.0 + 165.2500 183.5000 -86.0 + 163.2500 187.5000 -86.0 + 158.2500 195.5000 -86.0 + 157.2500 197.5000 -86.0 + 150.5000 205.2500 -86.0 + 143.5000 211.2500 -86.0 + 135.5000 216.2500 -86.0 + 123.5000 222.2500 -86.0 + 120.5000 222.2500 -86.0 + 116.5000 224.2500 -86.0 + 112.5000 224.2500 -86.0 + 107.5000 223.2500 -86.0 + 105.5000 224.2500 -86.0 + 99.5000 224.2500 -86.0 + 92.5000 223.2500 -86.0 + 90.7500 222.5000 -86.0 + 78.5000 222.2500 -86.0 + 68.5000 217.2500 -86.0 + 64.7500 214.5000 -86.0 + 58.5000 210.2500 -86.0 + 56.5000 209.2500 -86.0 + 46.7500 199.5000 -86.0 + 43.7500 194.5000 -86.0 + 39.7500 187.5000 -86.0 + 39.7500 185.5000 -86.0 + 35.7500 177.5000 -86.0 + 35.7500 175.5000 -86.0 + 34.7500 173.5000 -86.0 + 34.7500 154.5000 -86.0 + 35.5000 152.7500 -86.0 + 35.7500 146.5000 -86.0 + 34.7500 144.5000 -86.0 + 34.7500 141.5000 -86.0 + 36.5000 137.7500 -86.0 + 36.7500 133.5000 -86.0 + 38.5000 132.7500 -86.0 + 38.7500 131.5000 -86.0 + 40.5000 129.7500 -86.0 + 41.7500 125.5000 -86.0 + 43.7500 120.5000 -86.0 + 44.5000 118.7500 -86.0 + 47.7500 109.5000 -86.0 + 50.7500 105.5000 -86.0 + 52.7500 101.5000 -86.0 + 53.5000 99.7500 -86.0 + 58.5000 93.7500 -86.0 + 62.5000 90.7500 -86.0 + 64.5000 90.7500 -86.0 + 66.5000 89.7500 -86.0 + 69.5000 89.7500 -86.0 + 71.2500 90.5000 -86.0 + 78.5000 90.7500 -86.0 + 80.5000 89.7500 -86.0 + 82.5000 89.7500 -86.0 + 86.5000 87.7500 -86.0 + 86.5000 86.2500 -86.0 + 82.5000 88.2500 -86.0 + 80.5000 88.2500 -86.0 + 77.5000 89.2500 -86.0 + 72.5000 87.2500 -86.0 + 70.5000 88.2500 -86.0 + 69.5000 87.2500 -86.0 + 67.5000 86.2500 -86.0 + 67.2500 87.5000 -86.0 + 64.5000 89.2500 -86.0 + 63.7500 87.5000 -86.0 + 64.5000 85.7500 -86.0 + 64.7500 82.5000 -86.0 +} -86.0 +v 190 z -88.000000 -64.0 +{ -88.0 + 108.2500 35.5000 -88.0 + 106.2500 36.5000 -88.0 + 104.5000 40.2500 -88.0 + 104.2500 44.5000 -88.0 + 97.5000 55.2500 -88.0 + 97.2500 57.5000 -88.0 + 98.5000 56.7500 -88.0 + 101.5000 56.7500 -88.0 + 102.5000 54.7500 -88.0 + 103.7500 46.5000 -88.0 + 106.5000 42.7500 -88.0 + 109.5000 42.7500 -88.0 + 111.2500 45.5000 -88.0 + 111.2500 53.5000 -88.0 + 114.2500 57.5000 -88.0 + 117.7500 57.5000 -88.0 + 115.7500 53.5000 -88.0 + 115.7500 51.5000 -88.0 + 111.7500 45.5000 -88.0 + 112.7500 43.5000 -88.0 + 111.7500 41.5000 -88.0 + 111.7500 39.5000 -88.0 + 109.7500 35.5000 -88.0 +} -88.0 +{ -88.0 + 56.2500 64.5000 -88.0 + 54.5000 67.2500 -88.0 + 54.2500 69.5000 -88.0 + 55.2500 71.5000 -88.0 + 56.5000 70.7500 -88.0 + 59.5000 70.7500 -88.0 + 62.2500 76.5000 -88.0 + 64.7500 76.5000 -88.0 + 61.7500 70.5000 -88.0 + 61.7500 68.5000 -88.0 + 59.7500 64.5000 -88.0 +} -88.0 +{ -88.0 + 155.2500 67.5000 -88.0 + 152.5000 70.2500 -88.0 + 151.2500 74.5000 -88.0 + 147.5000 78.2500 -88.0 + 145.2500 79.5000 -88.0 + 144.2500 81.5000 -88.0 + 147.5000 81.7500 -88.0 + 155.5000 74.7500 -88.0 + 158.5000 75.7500 -88.0 + 159.2500 77.5000 -88.0 + 160.5000 77.7500 -88.0 + 160.7500 71.5000 -88.0 + 157.7500 67.5000 -88.0 +} -88.0 +{ -88.0 + 65.2500 77.5000 -88.0 + 67.2500 81.5000 -88.0 + 67.2500 83.5000 -88.0 + 69.5000 83.7500 -88.0 + 71.5000 82.7500 -88.0 + 66.7500 77.5000 -88.0 +} -88.0 +{ -88.0 + 95.2500 79.5000 -88.0 + 93.5000 81.2500 -88.0 + 93.2500 83.5000 -88.0 + 96.5000 80.7500 -88.0 + 99.5000 80.7500 -88.0 + 99.7500 79.5000 -88.0 +} -88.0 +{ -88.0 + 115.2500 79.5000 -88.0 + 114.2500 81.5000 -88.0 + 117.2500 85.5000 -88.0 + 119.7500 87.5000 -88.0 + 117.7500 83.5000 -88.0 + 117.7500 81.5000 -88.0 +} -88.0 +{ -88.0 + 90.2500 85.5000 -88.0 + 90.2500 86.5000 -88.0 + 91.7500 85.5000 -88.0 +} -88.0 +{ -88.0 + 62.2500 86.5000 -88.0 + 61.2500 88.5000 -88.0 + 58.5000 91.2500 -88.0 + 57.7500 90.5000 -88.0 + 57.7500 87.5000 -88.0 + 55.5000 88.2500 -88.0 + 45.2500 105.5000 -88.0 + 31.2500 134.5000 -88.0 + 28.5000 148.2500 -88.0 + 28.2500 166.5000 -88.0 + 29.2500 168.5000 -88.0 + 29.2500 174.5000 -88.0 + 30.2500 176.5000 -88.0 + 30.2500 180.5000 -88.0 + 31.2500 182.5000 -88.0 + 33.2500 192.5000 -88.0 + 39.2500 204.5000 -88.0 + 47.2500 213.5000 -88.0 + 54.5000 219.7500 -88.0 + 62.5000 224.7500 -88.0 + 76.2500 228.5000 -88.0 + 80.5000 228.7500 -88.0 + 86.5000 231.7500 -88.0 + 93.2500 233.5000 -88.0 + 106.5000 233.7500 -88.0 + 110.5000 231.7500 -88.0 + 112.5000 231.7500 -88.0 + 123.5000 228.7500 -88.0 + 129.5000 227.7500 -88.0 + 146.5000 220.7500 -88.0 + 154.5000 214.7500 -88.0 + 165.7500 199.5000 -88.0 + 173.5000 183.7500 -88.0 + 176.7500 170.5000 -88.0 + 178.5000 161.7500 -88.0 + 178.7500 140.5000 -88.0 + 177.7500 138.5000 -88.0 + 176.7500 130.5000 -88.0 + 168.7500 111.5000 -88.0 + 155.7500 92.5000 -88.0 + 150.7500 89.5000 -88.0 + 147.5000 90.2500 -88.0 + 145.7500 88.5000 -88.0 + 144.5000 89.2500 -88.0 + 141.5000 88.2500 -88.0 + 137.5000 90.2500 -88.0 + 132.5000 89.2500 -88.0 + 130.2500 91.5000 -88.0 + 135.5000 91.7500 -88.0 + 137.5000 90.7500 -88.0 + 143.5000 90.7500 -88.0 + 148.2500 92.5000 -88.0 + 149.5000 91.7500 -88.0 + 151.2500 93.5000 -88.0 + 153.2500 97.5000 -88.0 + 163.2500 107.5000 -88.0 + 166.2500 111.5000 -88.0 + 171.2500 121.5000 -88.0 + 172.2500 130.5000 -88.0 + 173.2500 132.5000 -88.0 + 173.2500 145.5000 -88.0 + 174.2500 147.5000 -88.0 + 174.2500 149.5000 -88.0 + 172.5000 154.2500 -88.0 + 170.2500 174.5000 -88.0 + 165.2500 184.5000 -88.0 + 155.2500 200.5000 -88.0 + 148.5000 207.2500 -88.0 + 130.5000 219.2500 -88.0 + 128.5000 219.2500 -88.0 + 126.5000 221.2500 -88.0 + 120.5000 222.2500 -88.0 + 116.5000 224.2500 -88.0 + 107.5000 224.2500 -88.0 + 105.5000 225.2500 -88.0 + 104.7500 224.5000 -88.0 + 95.5000 224.2500 -88.0 + 86.7500 222.5000 -88.0 + 78.5000 222.2500 -88.0 + 66.5000 216.2500 -88.0 + 56.5000 209.2500 -88.0 + 47.7500 200.5000 -88.0 + 40.7500 189.5000 -88.0 + 40.7500 187.5000 -88.0 + 35.7500 177.5000 -88.0 + 35.7500 175.5000 -88.0 + 34.7500 173.5000 -88.0 + 34.7500 153.5000 -88.0 + 35.5000 151.7500 -88.0 + 35.7500 146.5000 -88.0 + 34.7500 144.5000 -88.0 + 34.7500 140.5000 -88.0 + 36.5000 136.7500 -88.0 + 36.7500 134.5000 -88.0 + 35.7500 132.5000 -88.0 + 40.7500 126.5000 -88.0 + 41.7500 121.5000 -88.0 + 44.7500 115.5000 -88.0 + 45.7500 110.5000 -88.0 + 50.7500 105.5000 -88.0 + 56.7500 93.5000 -88.0 + 65.5000 88.7500 -88.0 + 71.5000 88.7500 -88.0 + 77.2500 91.5000 -88.0 + 80.5000 91.7500 -88.0 + 82.5000 90.7500 -88.0 + 85.5000 90.7500 -88.0 + 87.5000 88.7500 -88.0 + 86.5000 88.2500 -88.0 + 80.5000 90.2500 -88.0 + 76.7500 86.5000 -88.0 + 74.5000 87.2500 -88.0 + 72.7500 86.5000 -88.0 + 71.5000 87.2500 -88.0 + 67.5000 87.2500 -88.0 + 64.5000 88.2500 -88.0 + 63.7500 86.5000 -88.0 +} -88.0 +{ -88.0 + 120.2500 88.5000 -88.0 + 125.2500 96.5000 -88.0 + 127.5000 95.7500 -88.0 + 127.7500 93.5000 -88.0 + 126.5000 93.2500 -88.0 +} -88.0 +///v 207 z -90.000000 -90.0 +{ -90.0 + 106.2500 33.5000 -90.0 + 105.5000 34.2500 -90.0 + 107.2500 35.5000 -90.0 + 109.5000 35.7500 -90.0 + 111.5000 34.7500 -90.0 + 110.7500 33.5000 -90.0 +} -90.0 +{ -90.0 + 104.2500 37.5000 -90.0 + 103.5000 38.2500 -90.0 + 103.2500 44.5000 -90.0 + 99.5000 49.2500 -90.0 + 99.2500 51.5000 -90.0 + 97.2500 56.5000 -90.0 + 98.5000 56.7500 -90.0 + 100.5000 55.7500 -90.0 + 102.5000 55.7500 -90.0 + 102.7500 49.5000 -90.0 + 103.7500 44.5000 -90.0 + 104.5000 42.7500 -90.0 + 104.7500 38.5000 -90.0 +} -90.0 +{ -90.0 + 112.2500 37.5000 -90.0 + 112.2500 46.5000 -90.0 + 111.2500 51.5000 -90.0 + 114.2500 54.5000 -90.0 + 114.2500 57.5000 -90.0 + 116.5000 57.7500 -90.0 + 115.7500 50.5000 -90.0 + 112.7500 44.5000 -90.0 + 113.5000 42.7500 -90.0 + 113.7500 37.5000 -90.0 +} -90.0 +{ -90.0 + 57.2500 64.5000 -90.0 + 53.5000 68.2500 -90.0 + 53.2500 71.5000 -90.0 + 54.5000 72.7500 -90.0 + 58.5000 70.7500 -90.0 + 60.2500 71.5000 -90.0 + 63.2500 76.5000 -90.0 + 63.2500 78.5000 -90.0 + 64.5000 77.7500 -90.0 + 64.7500 75.5000 -90.0 + 61.7500 69.5000 -90.0 + 61.7500 66.5000 -90.0 + 59.7500 64.5000 -90.0 +} -90.0 +{ -90.0 + 155.2500 67.5000 -90.0 + 152.5000 69.2500 -90.0 + 151.2500 73.5000 -90.0 + 145.5000 80.2500 -90.0 + 147.2500 81.5000 -90.0 + 148.5000 79.7500 -90.0 + 156.5000 74.7500 -90.0 + 159.2500 78.5000 -90.0 + 161.5000 78.7500 -90.0 + 161.7500 74.5000 -90.0 + 158.7500 68.5000 -90.0 +} -90.0 +{ -90.0 + 105.2500 81.5000 -90.0 + 104.5000 82.2500 -90.0 + 101.5000 82.2500 -90.0 + 101.2500 84.5000 -90.0 + 104.2500 86.5000 -90.0 + 108.5000 84.7500 -90.0 + 108.7500 83.5000 -90.0 +} -90.0 +{ -90.0 + 93.2500 84.5000 -90.0 + 93.2500 85.5000 -90.0 + 90.5000 88.7500 -90.0 + 94.5000 86.7500 -90.0 + 94.7500 85.5000 -90.0 +} -90.0 +{ -90.0 + 117.2500 85.5000 -90.0 + 116.5000 87.2500 -90.0 + 114.5000 87.2500 -90.0 + 114.5000 88.7500 -90.0 + 116.5000 89.7500 -90.0 + 120.2500 93.5000 -90.0 + 123.5000 98.7500 -90.0 + 125.5000 97.7500 -90.0 + 125.7500 95.5000 -90.0 + 121.5000 93.2500 -90.0 +} -90.0 +{ -90.0 + 66.2500 86.5000 -90.0 + 64.5000 88.2500 -90.0 + 61.5000 87.2500 -90.0 + 61.2500 88.5000 -90.0 + 59.5000 89.2500 -90.0 + 58.7500 87.5000 -90.0 + 57.5000 87.2500 -90.0 + 55.2500 89.5000 -90.0 + 48.5000 100.2500 -90.0 + 32.2500 130.5000 -90.0 + 28.5000 147.2500 -90.0 + 28.2500 164.5000 -90.0 + 29.2500 166.5000 -90.0 + 29.2500 173.5000 -90.0 + 30.2500 175.5000 -90.0 + 30.2500 179.5000 -90.0 + 31.2500 181.5000 -90.0 + 32.2500 187.5000 -90.0 + 38.2500 202.5000 -90.0 + 46.2500 212.5000 -90.0 + 56.5000 220.7500 -90.0 + 63.2500 224.5000 -90.0 + 74.5000 227.7500 -90.0 + 92.2500 233.5000 -90.0 + 106.5000 233.7500 -90.0 + 108.5000 232.7500 -90.0 + 110.5000 232.7500 -90.0 + 114.5000 230.7500 -90.0 + 116.5000 230.7500 -90.0 + 118.5000 229.7500 -90.0 + 122.5000 229.7500 -90.0 + 126.5000 227.7500 -90.0 + 129.5000 227.7500 -90.0 + 133.5000 225.7500 -90.0 + 135.5000 225.7500 -90.0 + 150.5000 217.7500 -90.0 + 161.7500 205.5000 -90.0 + 166.7500 197.5000 -90.0 + 172.7500 185.5000 -90.0 + 173.7500 180.5000 -90.0 + 175.5000 176.7500 -90.0 + 178.5000 162.7500 -90.0 + 178.7500 141.5000 -90.0 + 177.7500 139.5000 -90.0 + 177.7500 133.5000 -90.0 + 175.7500 129.5000 -90.0 + 175.7500 126.5000 -90.0 + 171.7500 118.5000 -90.0 + 171.7500 116.5000 -90.0 + 167.5000 109.2500 -90.0 + 155.5000 93.2500 -90.0 + 151.7500 90.5000 -90.0 + 146.5000 90.2500 -90.0 + 142.5000 88.2500 -90.0 + 138.5000 90.2500 -90.0 + 135.5000 90.2500 -90.0 + 133.7500 89.5000 -90.0 + 130.5000 91.2500 -90.0 + 130.5000 92.7500 -90.0 + 137.5000 90.7500 -90.0 + 144.5000 90.7500 -90.0 + 153.2500 94.5000 -90.0 + 153.2500 96.5000 -90.0 + 156.2500 99.5000 -90.0 + 159.5000 104.7500 -90.0 + 161.5000 105.7500 -90.0 + 166.2500 111.5000 -90.0 + 169.2500 116.5000 -90.0 + 169.2500 118.5000 -90.0 + 173.2500 126.5000 -90.0 + 173.2500 130.5000 -90.0 + 174.2500 132.5000 -90.0 + 174.2500 141.5000 -90.0 + 175.2500 144.5000 -90.0 + 172.5000 156.2500 -90.0 + 170.2500 174.5000 -90.0 + 166.5000 180.2500 -90.0 + 166.2500 182.5000 -90.0 + 157.2500 197.5000 -90.0 + 151.5000 204.2500 -90.0 + 140.5000 213.2500 -90.0 + 125.5000 221.2500 -90.0 + 123.5000 221.2500 -90.0 + 119.5000 223.2500 -90.0 + 117.5000 223.2500 -90.0 + 115.5000 224.2500 -90.0 + 109.5000 224.2500 -90.0 + 107.5000 225.2500 -90.0 + 98.5000 223.2500 -90.0 + 92.5000 225.2500 -90.0 + 84.7500 222.5000 -90.0 + 78.5000 222.2500 -90.0 + 66.5000 216.2500 -90.0 + 56.5000 209.2500 -90.0 + 47.7500 200.5000 -90.0 + 44.7500 196.5000 -90.0 + 37.7500 182.5000 -90.0 + 37.7500 180.5000 -90.0 + 35.7500 176.5000 -90.0 + 35.7500 173.5000 -90.0 + 34.7500 171.5000 -90.0 + 34.7500 159.5000 -90.0 + 33.7500 156.5000 -90.0 + 34.7500 154.5000 -90.0 + 35.7500 147.5000 -90.0 + 34.7500 145.5000 -90.0 + 35.7500 129.5000 -90.0 + 37.7500 127.5000 -90.0 + 41.5000 120.7500 -90.0 + 41.7500 118.5000 -90.0 + 46.7500 106.5000 -90.0 + 52.7500 100.5000 -90.0 + 54.5000 96.7500 -90.0 + 56.5000 95.7500 -90.0 + 56.7500 94.5000 -90.0 + 61.5000 89.7500 -90.0 + 70.5000 88.7500 -90.0 + 68.7500 86.5000 -90.0 +} -90.0 +{ -90.0 + 76.2500 86.5000 -90.0 + 75.5000 88.2500 -90.0 + 72.5000 88.2500 -90.0 + 80.2500 92.5000 -90.0 + 84.5000 92.7500 -90.0 + 87.5000 91.7500 -90.0 + 88.5000 90.2500 -90.0 + 86.5000 91.2500 -90.0 + 80.5000 91.2500 -90.0 + 77.7500 87.5000 -90.0 +} -90.0 +{ -90.0 + 103.2500 154.5000 -90.0 + 103.2500 155.5000 -90.0 + 104.5000 155.7500 -90.0 + 104.7500 154.5000 -90.0 +} -90.0 +v 178 z -92.000000 -64.0 +{ -92.0 + 114.2500 35.5000 -92.0 + 113.5000 36.2500 -92.0 + 113.2500 45.5000 -92.0 + 112.2500 50.5000 -92.0 + 114.2500 52.5000 -92.0 + 114.2500 56.5000 -92.0 + 115.5000 56.7500 -92.0 + 115.7500 48.5000 -92.0 + 114.7500 46.5000 -92.0 + 114.7500 36.5000 -92.0 +} -92.0 +{ -92.0 + 103.2500 36.5000 -92.0 + 102.2500 44.5000 -92.0 + 99.5000 48.2500 -92.0 + 99.5000 55.7500 -92.0 + 101.5000 54.7500 -92.0 + 103.7500 37.5000 -92.0 +} -92.0 +{ -92.0 + 57.2500 64.5000 -92.0 + 54.2500 67.5000 -92.0 + 53.2500 69.5000 -92.0 + 52.2500 74.5000 -92.0 + 53.5000 74.7500 -92.0 + 57.5000 71.7500 -92.0 + 60.5000 71.7500 -92.0 + 64.2500 78.5000 -92.0 + 65.5000 78.7500 -92.0 + 65.7500 76.5000 -92.0 + 62.7500 70.5000 -92.0 + 61.7500 65.5000 -92.0 + 59.7500 64.5000 -92.0 +} -92.0 +{ -92.0 + 153.2500 67.5000 -92.0 + 151.5000 70.2500 -92.0 + 151.2500 73.5000 -92.0 + 146.5000 78.2500 -92.0 + 146.2500 80.5000 -92.0 + 147.5000 80.7500 -92.0 + 153.5000 75.7500 -92.0 + 157.5000 75.7500 -92.0 + 161.2500 79.5000 -92.0 + 162.5000 77.7500 -92.0 + 161.7500 74.5000 -92.0 + 158.7500 68.5000 -92.0 + 156.7500 67.5000 -92.0 +} -92.0 +{ -92.0 + 94.2500 85.5000 -92.0 + 93.2500 87.5000 -92.0 + 94.7500 86.5000 -92.0 +} -92.0 +{ -92.0 + 60.2500 86.5000 -92.0 + 56.5000 88.2500 -92.0 + 56.2500 89.5000 -92.0 + 43.2500 108.5000 -92.0 + 31.5000 132.2500 -92.0 + 28.5000 147.2500 -92.0 + 28.2500 162.5000 -92.0 + 29.2500 164.5000 -92.0 + 29.2500 172.5000 -92.0 + 30.2500 174.5000 -92.0 + 30.2500 177.5000 -92.0 + 32.2500 184.5000 -92.0 + 33.2500 190.5000 -92.0 + 41.2500 206.5000 -92.0 + 51.2500 216.5000 -92.0 + 66.5000 225.7500 -92.0 + 80.5000 229.7500 -92.0 + 91.2500 233.5000 -92.0 + 107.5000 233.7500 -92.0 + 109.5000 232.7500 -92.0 + 111.5000 232.7500 -92.0 + 115.5000 230.7500 -92.0 + 122.5000 229.7500 -92.0 + 126.5000 227.7500 -92.0 + 129.5000 227.7500 -92.0 + 139.5000 223.7500 -92.0 + 147.5000 218.7500 -92.0 + 155.5000 212.7500 -92.0 + 164.7500 200.5000 -92.0 + 170.7500 188.5000 -92.0 + 175.7500 174.5000 -92.0 + 178.5000 163.7500 -92.0 + 178.7500 142.5000 -92.0 + 177.7500 140.5000 -92.0 + 177.7500 135.5000 -92.0 + 176.7500 133.5000 -92.0 + 175.7500 126.5000 -92.0 + 172.7500 120.5000 -92.0 + 170.7500 114.5000 -92.0 + 165.7500 106.5000 -92.0 + 155.5000 93.2500 -92.0 + 151.7500 90.5000 -92.0 + 140.5000 89.2500 -92.0 + 142.2500 90.5000 -92.0 + 145.5000 90.7500 -92.0 + 150.5000 92.7500 -92.0 + 154.2500 95.5000 -92.0 + 156.2500 101.5000 -92.0 + 155.2500 103.5000 -92.0 + 158.2500 105.5000 -92.0 + 161.5000 105.7500 -92.0 + 166.2500 110.5000 -92.0 + 169.2500 116.5000 -92.0 + 169.2500 118.5000 -92.0 + 171.2500 122.5000 -92.0 + 171.2500 124.5000 -92.0 + 174.2500 130.5000 -92.0 + 174.2500 150.5000 -92.0 + 172.2500 157.5000 -92.0 + 170.2500 173.5000 -92.0 + 163.2500 187.5000 -92.0 + 152.2500 203.5000 -92.0 + 150.5000 204.2500 -92.0 + 140.5000 213.2500 -92.0 + 128.5000 220.2500 -92.0 + 126.5000 220.2500 -92.0 + 122.5000 222.2500 -92.0 + 109.5000 225.2500 -92.0 + 105.5000 223.2500 -92.0 + 103.5000 224.2500 -92.0 + 102.7500 223.5000 -92.0 + 97.5000 223.2500 -92.0 + 93.5000 225.2500 -92.0 + 89.5000 225.2500 -92.0 + 84.5000 223.2500 -92.0 + 79.5000 222.2500 -92.0 + 62.5000 214.2500 -92.0 + 52.7500 205.5000 -92.0 + 43.7500 195.5000 -92.0 + 43.7500 193.5000 -92.0 + 37.7500 181.5000 -92.0 + 37.7500 179.5000 -92.0 + 35.7500 175.5000 -92.0 + 35.7500 171.5000 -92.0 + 34.7500 169.5000 -92.0 + 34.7500 163.5000 -92.0 + 33.7500 161.5000 -92.0 + 34.7500 142.5000 -92.0 + 33.7500 140.5000 -92.0 + 33.7500 138.5000 -92.0 + 36.7500 125.5000 -92.0 + 39.5000 121.7500 -92.0 + 39.7500 119.5000 -92.0 + 45.7500 107.5000 -92.0 + 54.5000 95.7500 -92.0 + 56.5000 94.7500 -92.0 + 56.7500 93.5000 -92.0 + 63.5000 88.7500 -92.0 + 76.5000 88.7500 -92.0 + 77.5000 87.2500 -92.0 + 75.5000 86.2500 -92.0 + 73.5000 88.2500 -92.0 + 71.5000 88.2500 -92.0 + 69.7500 86.5000 -92.0 + 67.5000 86.2500 -92.0 + 62.5000 88.2500 -92.0 + 60.7500 87.5000 -92.0 + 61.7500 86.5000 -92.0 +} -92.0 +{ -92.0 + 102.2500 87.5000 -92.0 + 101.2500 89.5000 -92.0 + 102.7500 88.5000 -92.0 +} -92.0 +{ -92.0 + 78.2500 89.5000 -92.0 + 77.5000 90.2500 -92.0 + 78.2500 91.5000 -92.0 + 80.5000 91.7500 -92.0 +} -92.0 +{ -92.0 + 136.2500 90.5000 -92.0 + 132.5000 92.2500 -92.0 + 131.5000 91.2500 -92.0 + 128.5000 92.2500 -92.0 + 128.5000 93.7500 -92.0 + 130.5000 92.7500 -92.0 + 133.5000 92.7500 -92.0 + 137.5000 90.7500 -92.0 + 139.7500 90.5000 -92.0 +} -92.0 +{ -92.0 + 83.2500 93.5000 -92.0 + 83.5000 94.7500 -92.0 + 87.5000 96.7500 -92.0 + 89.5000 93.2500 -92.0 + 86.5000 94.2500 -92.0 +} -92.0 +{ -92.0 + 123.2500 98.5000 -92.0 + 121.5000 99.2500 -92.0 + 121.2500 100.5000 -92.0 + 123.5000 100.7500 -92.0 +} -92.0 +v 171 z -94.000000 -92.0 +{ -64.0 + 114.2500 35.5000 -94.0 + 114.2500 48.5000 -94.0 + 113.5000 50.2500 -94.0 + 115.2500 51.5000 -94.0 + 114.2500 54.5000 -94.0 + 115.5000 55.7500 -94.0 + 116.7500 49.5000 -94.0 + 115.7500 47.5000 -94.0 + 115.7500 38.5000 -94.0 +} -94.0 +{ -94.0 + 102.2500 38.5000 -94.0 + 102.2500 40.5000 -94.0 + 98.2500 48.5000 -94.0 + 99.2500 50.5000 -94.0 + 99.2500 54.5000 -94.0 + 101.5000 54.7500 -94.0 + 101.7500 52.5000 -94.0 + 100.7500 50.5000 -94.0 + 102.5000 43.7500 -94.0 + 102.7500 39.5000 -94.0 +} -94.0 +{ -94.0 + 57.2500 64.5000 -94.0 + 55.2500 66.5000 -94.0 + 51.5000 73.2500 -94.0 + 51.5000 75.7500 -94.0 + 57.5000 71.7500 -94.0 + 60.5000 71.7500 -94.0 + 65.2500 78.5000 -94.0 + 66.5000 78.7500 -94.0 + 66.7500 76.5000 -94.0 + 63.7500 70.5000 -94.0 + 63.7500 68.5000 -94.0 + 60.7500 64.5000 -94.0 +} -94.0 +{ -94.0 + 152.2500 67.5000 -94.0 + 150.2500 74.5000 -94.0 + 146.5000 78.2500 -94.0 + 146.2500 80.5000 -94.0 + 154.5000 75.7500 -94.0 + 157.5000 75.7500 -94.0 + 160.5000 78.7500 -94.0 + 162.5000 79.7500 -94.0 + 162.7500 77.5000 -94.0 + 160.7500 71.5000 -94.0 + 157.7500 67.5000 -94.0 +} -94.0 +{ -94.0 + 75.2500 85.5000 -94.0 + 74.5000 87.2500 -94.0 + 67.5000 86.2500 -94.0 + 63.5000 88.2500 -94.0 + 61.7500 87.5000 -94.0 + 58.2500 87.5000 -94.0 + 47.5000 101.2500 -94.0 + 32.2500 129.5000 -94.0 + 28.5000 147.2500 -94.0 + 28.2500 161.5000 -94.0 + 29.2500 163.5000 -94.0 + 29.2500 171.5000 -94.0 + 30.2500 173.5000 -94.0 + 31.2500 182.5000 -94.0 + 33.2500 186.5000 -94.0 + 34.2500 192.5000 -94.0 + 40.2500 204.5000 -94.0 + 47.2500 212.5000 -94.0 + 53.2500 217.5000 -94.0 + 68.2500 226.5000 -94.0 + 71.5000 226.7500 -94.0 + 84.5000 231.7500 -94.0 + 91.2500 233.5000 -94.0 + 107.5000 233.7500 -94.0 + 109.5000 232.7500 -94.0 + 115.5000 231.7500 -94.0 + 119.5000 229.7500 -94.0 + 126.5000 228.7500 -94.0 + 130.5000 226.7500 -94.0 + 132.5000 226.7500 -94.0 + 144.5000 220.7500 -94.0 + 151.5000 215.7500 -94.0 + 157.7500 209.5000 -94.0 + 163.7500 201.5000 -94.0 + 173.5000 181.7500 -94.0 + 178.5000 163.7500 -94.0 + 178.7500 143.5000 -94.0 + 177.7500 141.5000 -94.0 + 177.7500 136.5000 -94.0 + 176.7500 134.5000 -94.0 + 176.7500 130.5000 -94.0 + 174.7500 126.5000 -94.0 + 174.7500 124.5000 -94.0 + 170.7500 114.5000 -94.0 + 165.7500 106.5000 -94.0 + 152.7500 91.5000 -94.0 + 146.7500 89.5000 -94.0 + 140.5000 89.2500 -94.0 + 137.2500 90.5000 -94.0 + 146.5000 90.7500 -94.0 + 153.2500 95.5000 -94.0 + 154.2500 97.5000 -94.0 + 153.2500 102.5000 -94.0 + 155.2500 104.5000 -94.0 + 160.5000 104.7500 -94.0 + 168.2500 113.5000 -94.0 + 168.2500 115.5000 -94.0 + 171.2500 121.5000 -94.0 + 171.2500 123.5000 -94.0 + 173.2500 127.5000 -94.0 + 173.2500 130.5000 -94.0 + 174.2500 132.5000 -94.0 + 174.2500 151.5000 -94.0 + 170.2500 171.5000 -94.0 + 166.2500 182.5000 -94.0 + 161.5000 189.2500 -94.0 + 156.2500 198.5000 -94.0 + 142.2500 211.5000 -94.0 + 130.5000 219.2500 -94.0 + 128.5000 219.2500 -94.0 + 118.5000 223.2500 -94.0 + 116.5000 223.2500 -94.0 + 114.5000 224.2500 -94.0 + 110.5000 224.2500 -94.0 + 98.5000 222.2500 -94.0 + 94.5000 225.2500 -94.0 + 88.5000 225.2500 -94.0 + 76.7500 220.5000 -94.0 + 74.5000 220.2500 -94.0 + 62.5000 214.2500 -94.0 + 59.5000 211.2500 -94.0 + 57.5000 210.2500 -94.0 + 56.7500 208.5000 -94.0 + 54.7500 207.5000 -94.0 + 53.5000 205.2500 -94.0 + 51.5000 204.2500 -94.0 + 50.7500 202.5000 -94.0 + 45.7500 197.5000 -94.0 + 38.7500 184.5000 -94.0 + 38.7500 182.5000 -94.0 + 36.7500 178.5000 -94.0 + 36.7500 175.5000 -94.0 + 34.7500 168.5000 -94.0 + 34.7500 163.5000 -94.0 + 33.7500 161.5000 -94.0 + 33.7500 152.5000 -94.0 + 34.5000 150.7500 -94.0 + 34.7500 142.5000 -94.0 + 33.7500 140.5000 -94.0 + 33.7500 135.5000 -94.0 + 34.7500 130.5000 -94.0 + 37.7500 122.5000 -94.0 + 44.5000 111.7500 -94.0 + 46.7500 105.5000 -94.0 + 49.5000 102.7500 -94.0 + 53.7500 95.5000 -94.0 + 55.5000 94.7500 -94.0 + 58.5000 91.7500 -94.0 + 66.5000 87.7500 -94.0 + 76.5000 87.7500 -94.0 + 80.2500 92.5000 -94.0 + 82.7500 92.5000 -94.0 + 79.7500 88.5000 -94.0 +} -94.0 +{ -94.0 + 129.2500 91.5000 -94.0 + 127.2500 94.5000 -94.0 + 130.7500 94.5000 -94.0 +} -94.0 +{ -94.0 + 100.2500 94.5000 -94.0 + 99.2500 95.5000 -94.0 + 100.7500 95.5000 -94.0 +} -94.0 +{ -94.0 + 86.2500 97.5000 -94.0 + 88.7500 99.5000 -94.0 + 87.7500 97.5000 -94.0 +} -94.0 +{ -94.0 + 100.2500 97.5000 -94.0 + 100.5000 97.7500 -94.0 + 102.5000 98.7500 -94.0 + 101.7500 97.5000 -94.0 +} -94.0 +{ -94.0 + 102.2500 157.5000 -94.0 + 101.2500 159.5000 -94.0 + 102.5000 159.7500 -94.0 +} -94.0 +v 173 z -96.000000 -64.0 +{ -96.0 + 115.2500 37.5000 -96.0 + 115.2500 45.5000 -96.0 + 114.5000 47.2500 -96.0 + 114.2500 54.5000 -96.0 + 115.5000 54.7500 -96.0 + 117.7500 48.5000 -96.0 + 116.7500 46.5000 -96.0 + 116.7500 40.5000 -96.0 +} -96.0 +{ -96.0 + 101.2500 40.5000 -96.0 + 100.2500 44.5000 -96.0 + 97.5000 48.2500 -96.0 + 99.2500 51.5000 -96.0 + 99.2500 53.5000 -96.0 + 100.5000 54.7500 -96.0 + 101.7500 41.5000 -96.0 +} -96.0 +{ -96.0 + 59.2500 63.5000 -96.0 + 57.5000 64.2500 -96.0 + 55.2500 66.5000 -96.0 + 51.5000 73.2500 -96.0 + 51.5000 75.7500 -96.0 + 57.5000 71.7500 -96.0 + 60.5000 71.7500 -96.0 + 63.2500 75.5000 -96.0 + 64.5000 75.7500 -96.0 + 67.2500 78.5000 -96.0 + 67.7500 77.5000 -96.0 + 62.7500 67.5000 -96.0 + 62.7500 65.5000 -96.0 + 60.7500 63.5000 -96.0 +} -96.0 +{ -96.0 + 153.2500 66.5000 -96.0 + 151.5000 68.2500 -96.0 + 150.2500 73.5000 -96.0 + 147.2500 76.5000 -96.0 + 145.2500 80.5000 -96.0 + 149.5000 77.7500 -96.0 + 151.5000 77.7500 -96.0 + 155.5000 74.7500 -96.0 + 158.5000 75.7500 -96.0 + 161.2500 79.5000 -96.0 + 162.5000 78.7500 -96.0 + 162.7500 76.5000 -96.0 + 160.7500 70.5000 -96.0 + 156.7500 66.5000 -96.0 +} -96.0 +{ -96.0 + 76.2500 85.5000 -96.0 + 75.5000 86.2500 -96.0 + 73.2500 87.5000 -96.0 + 77.5000 88.7500 -96.0 + 82.5000 93.7500 -96.0 + 84.5000 92.7500 -96.0 + 83.7500 91.5000 -96.0 + 82.5000 92.2500 -96.0 + 81.7500 91.5000 -96.0 + 80.7500 89.5000 -96.0 +} -96.0 +{ -96.0 + 67.2500 86.5000 -96.0 + 66.5000 87.2500 -96.0 + 59.5000 87.2500 -96.0 + 48.5000 100.2500 -96.0 + 44.2500 106.5000 -96.0 + 41.2500 112.5000 -96.0 + 36.5000 120.2500 -96.0 + 36.2500 123.5000 -96.0 + 37.7500 122.5000 -96.0 + 40.7500 116.5000 -96.0 + 45.5000 109.7500 -96.0 + 46.7500 105.5000 -96.0 + 52.5000 98.7500 -96.0 + 55.5000 93.7500 -96.0 + 57.5000 93.7500 -96.0 + 59.5000 91.7500 -96.0 + 67.5000 87.7500 -96.0 + 69.5000 87.7500 -96.0 + 70.7500 86.5000 -96.0 +} -96.0 +{ -96.0 + 137.2500 89.5000 -96.0 + 135.5000 91.2500 -96.0 + 136.5000 91.7500 -96.0 + 138.5000 90.7500 -96.0 + 143.5000 90.7500 -96.0 + 148.5000 92.7500 -96.0 + 152.2500 95.5000 -96.0 + 152.5000 102.7500 -96.0 + 156.2500 104.5000 -96.0 + 160.5000 104.7500 -96.0 + 164.2500 107.5000 -96.0 + 169.2500 116.5000 -96.0 + 169.2500 118.5000 -96.0 + 172.2500 124.5000 -96.0 + 172.2500 129.5000 -96.0 + 174.2500 133.5000 -96.0 + 174.2500 149.5000 -96.0 + 173.5000 151.2500 -96.0 + 173.2500 157.5000 -96.0 + 171.2500 164.5000 -96.0 + 170.2500 171.5000 -96.0 + 163.5000 186.2500 -96.0 + 152.5000 202.2500 -96.0 + 138.5000 214.2500 -96.0 + 129.5000 219.2500 -96.0 + 127.5000 219.2500 -96.0 + 121.5000 222.2500 -96.0 + 118.5000 222.2500 -96.0 + 114.5000 224.2500 -96.0 + 109.5000 224.2500 -96.0 + 104.7500 222.5000 -96.0 + 98.5000 222.2500 -96.0 + 94.5000 225.2500 -96.0 + 87.5000 225.2500 -96.0 + 74.7500 219.5000 -96.0 + 65.5000 216.2500 -96.0 + 58.5000 211.2500 -96.0 + 44.7500 195.5000 -96.0 + 38.7500 183.5000 -96.0 + 38.7500 181.5000 -96.0 + 36.7500 177.5000 -96.0 + 36.7500 174.5000 -96.0 + 34.7500 168.5000 -96.0 + 34.7500 164.5000 -96.0 + 33.7500 162.5000 -96.0 + 33.7500 150.5000 -96.0 + 34.5000 148.7500 -96.0 + 34.7500 142.5000 -96.0 + 33.7500 140.5000 -96.0 + 33.7500 134.5000 -96.0 + 35.7500 125.5000 -96.0 + 34.5000 125.2500 -96.0 + 32.2500 130.5000 -96.0 + 28.5000 149.2500 -96.0 + 28.2500 159.5000 -96.0 + 29.2500 161.5000 -96.0 + 29.2500 169.5000 -96.0 + 30.2500 171.5000 -96.0 + 30.2500 175.5000 -96.0 + 31.2500 177.5000 -96.0 + 33.2500 187.5000 -96.0 + 38.2500 200.5000 -96.0 + 45.5000 210.7500 -96.0 + 61.5000 222.7500 -96.0 + 71.5000 227.7500 -96.0 + 78.5000 228.7500 -96.0 + 84.5000 231.7500 -96.0 + 91.2500 233.5000 -96.0 + 107.5000 233.7500 -96.0 + 109.5000 232.7500 -96.0 + 119.5000 230.7500 -96.0 + 123.5000 228.7500 -96.0 + 129.5000 227.7500 -96.0 + 141.5000 221.7500 -96.0 + 154.5000 212.7500 -96.0 + 163.7500 200.5000 -96.0 + 173.7500 180.5000 -96.0 + 178.5000 163.7500 -96.0 + 178.7500 144.5000 -96.0 + 177.7500 142.5000 -96.0 + 176.7500 133.5000 -96.0 + 175.7500 131.5000 -96.0 + 175.7500 129.5000 -96.0 + 167.7500 109.5000 -96.0 + 152.7500 91.5000 -96.0 + 149.5000 91.2500 -96.0 + 145.7500 89.5000 -96.0 + 144.5000 90.2500 -96.0 + 143.7500 89.5000 -96.0 +} -96.0 +{ -96.0 + 127.2500 92.5000 -96.0 + 126.5000 93.2500 -96.0 + 126.2500 95.5000 -96.0 + 128.7500 95.5000 -96.0 + 129.7500 93.5000 -96.0 +} -96.0 +{ -96.0 + 94.2500 108.5000 -96.0 + 93.2500 109.5000 -96.0 + 94.7500 109.5000 -96.0 +} -96.0 +{ -96.0 + 154.7500 71.5000 -96.0 + 155.5000 70.7500 -96.0 + 157.2500 71.5000 -96.0 + 156.5000 72.2500 -96.0 +} -96.0 +v 169 z -98.000000 -64.0 +{ -98.0 + 101.2500 38.5000 -98.0 + 100.2500 39.5000 -98.0 + 99.2500 44.5000 -98.0 + 96.5000 48.2500 -98.0 + 99.2500 51.5000 -98.0 + 99.5000 53.7500 -98.0 + 99.7500 48.5000 -98.0 + 101.7500 39.5000 -98.0 +} -98.0 +{ -98.0 + 116.2500 38.5000 -98.0 + 116.2500 44.5000 -98.0 + 115.2500 46.5000 -98.0 + 116.2500 48.5000 -98.0 + 115.5000 49.2500 -98.0 + 115.2500 53.5000 -98.0 + 116.5000 53.7500 -98.0 + 118.7500 48.5000 -98.0 + 117.7500 46.5000 -98.0 + 117.7500 43.5000 -98.0 +} -98.0 +{ -98.0 + 58.2500 63.5000 -98.0 + 55.5000 66.2500 -98.0 + 52.5000 71.2500 -98.0 + 52.2500 75.5000 -98.0 + 57.5000 71.7500 -98.0 + 60.5000 71.7500 -98.0 + 66.2500 77.5000 -98.0 + 68.5000 77.7500 -98.0 + 68.7500 76.5000 -98.0 + 63.7500 70.5000 -98.0 + 63.7500 67.5000 -98.0 + 61.7500 63.5000 -98.0 +} -98.0 +{ -98.0 + 153.2500 66.5000 -98.0 + 149.2500 74.5000 -98.0 + 143.5000 80.2500 -98.0 + 144.2500 81.5000 -98.0 + 147.5000 77.7500 -98.0 + 151.5000 77.7500 -98.0 + 154.5000 74.7500 -98.0 + 157.5000 74.7500 -98.0 + 160.2500 78.5000 -98.0 + 162.5000 78.7500 -98.0 + 162.7500 76.5000 -98.0 + 160.7500 70.5000 -98.0 + 157.7500 66.5000 -98.0 +} -98.0 +{ -98.0 + 60.2500 87.5000 -98.0 + 50.2500 98.5000 -98.0 + 44.2500 106.5000 -98.0 + 37.2500 119.5000 -98.0 + 32.2500 131.5000 -98.0 + 28.5000 150.2500 -98.0 + 28.2500 159.5000 -98.0 + 29.2500 161.5000 -98.0 + 29.2500 167.5000 -98.0 + 30.2500 169.5000 -98.0 + 30.2500 173.5000 -98.0 + 31.2500 175.5000 -98.0 + 32.2500 183.5000 -98.0 + 34.2500 187.5000 -98.0 + 34.2500 190.5000 -98.0 + 40.2500 202.5000 -98.0 + 46.2500 210.5000 -98.0 + 58.2500 220.5000 -98.0 + 71.5000 227.7500 -98.0 + 80.5000 229.7500 -98.0 + 84.5000 231.7500 -98.0 + 91.2500 233.5000 -98.0 + 107.5000 233.7500 -98.0 + 109.5000 232.7500 -98.0 + 116.5000 231.7500 -98.0 + 126.5000 227.7500 -98.0 + 129.5000 227.7500 -98.0 + 147.5000 217.7500 -98.0 + 156.7500 209.5000 -98.0 + 162.7500 201.5000 -98.0 + 171.7500 184.5000 -98.0 + 175.7500 170.5000 -98.0 + 178.5000 163.7500 -98.0 + 178.7500 147.5000 -98.0 + 177.7500 145.5000 -98.0 + 177.7500 140.5000 -98.0 + 175.7500 133.5000 -98.0 + 174.5000 126.2500 -98.0 + 165.7500 106.5000 -98.0 + 155.7500 96.5000 -98.0 + 153.7500 92.5000 -98.0 + 141.5000 90.2500 -98.0 + 142.2500 91.5000 -98.0 + 145.5000 91.7500 -98.0 + 147.2500 93.5000 -98.0 + 149.5000 93.7500 -98.0 + 152.2500 96.5000 -98.0 + 151.2500 98.5000 -98.0 + 153.2500 102.5000 -98.0 + 163.2500 106.5000 -98.0 + 172.2500 124.5000 -98.0 + 172.2500 130.5000 -98.0 + 174.2500 136.5000 -98.0 + 174.2500 147.5000 -98.0 + 173.5000 149.2500 -98.0 + 173.2500 158.5000 -98.0 + 172.2500 160.5000 -98.0 + 170.2500 170.5000 -98.0 + 166.2500 181.5000 -98.0 + 157.2500 196.5000 -98.0 + 147.5000 207.2500 -98.0 + 140.5000 213.2500 -98.0 + 132.5000 218.2500 -98.0 + 130.5000 218.2500 -98.0 + 124.5000 221.2500 -98.0 + 122.5000 221.2500 -98.0 + 118.5000 223.2500 -98.0 + 115.5000 223.2500 -98.0 + 112.5000 224.2500 -98.0 + 107.7500 222.5000 -98.0 + 100.5000 222.2500 -98.0 + 94.5000 225.2500 -98.0 + 86.5000 225.2500 -98.0 + 70.7500 217.5000 -98.0 + 65.5000 216.2500 -98.0 + 56.5000 208.2500 -98.0 + 54.5000 207.2500 -98.0 + 53.7500 205.5000 -98.0 + 44.7500 194.5000 -98.0 + 40.7500 186.5000 -98.0 + 36.7500 176.5000 -98.0 + 36.7500 174.5000 -98.0 + 35.7500 172.5000 -98.0 + 35.7500 168.5000 -98.0 + 34.7500 166.5000 -98.0 + 34.7500 156.5000 -98.0 + 33.7500 154.5000 -98.0 + 34.7500 142.5000 -98.0 + 33.7500 140.5000 -98.0 + 34.7500 128.5000 -98.0 + 36.7500 124.5000 -98.0 + 48.7500 102.5000 -98.0 + 53.7500 97.5000 -98.0 + 54.7500 95.5000 -98.0 + 59.5000 91.7500 -98.0 + 61.5000 91.7500 -98.0 + 65.5000 89.7500 -98.0 + 73.5000 88.7500 -98.0 + 79.5000 90.7500 -98.0 + 83.2500 94.5000 -98.0 + 84.5000 93.7500 -98.0 + 84.7500 91.5000 -98.0 + 81.5000 90.2500 -98.0 + 80.7500 88.5000 -98.0 + 69.5000 87.2500 -98.0 + 67.5000 88.2500 -98.0 + 66.7500 87.5000 -98.0 +} -98.0 +{ -98.0 + 135.2500 89.5000 -98.0 + 133.5000 91.2500 -98.0 + 134.5000 91.7500 -98.0 + 137.5000 90.7500 -98.0 + 137.7500 89.5000 -98.0 +} -98.0 +{ -98.0 + 128.2500 93.5000 -98.0 + 126.2500 96.5000 -98.0 + 127.5000 96.7500 -98.0 + 129.5000 94.7500 -98.0 +} -98.0 +{ -98.0 + 57.7500 68.5000 -98.0 + 58.5000 67.7500 -98.0 + 59.2500 68.5000 -98.0 + 58.5000 69.2500 -98.0 +} -98.0 +{ -98.0 + 154.7500 70.5000 -98.0 + 155.5000 69.7500 -98.0 + 157.2500 70.5000 -98.0 + 156.5000 72.2500 -98.0 + 154.5000 72.2500 -98.0 + 152.7500 71.5000 -98.0 +} -98.0 +v 192 z -100.000000 -98.0 +{ -98.0 + 116.2500 37.5000 -100.0 + 117.2500 39.5000 -100.0 + 117.2500 47.5000 -100.0 + 116.2500 52.5000 -100.0 + 116.7500 53.5000 -100.0 + 117.7500 51.5000 -100.0 + 121.5000 49.7500 -100.0 + 118.7500 45.5000 -100.0 + 117.7500 38.5000 -100.0 +} -100.0 +{ -100.0 + 100.2500 38.5000 -100.0 + 98.5000 42.2500 -100.0 + 98.2500 44.5000 -100.0 + 95.2500 48.5000 -100.0 + 96.5000 48.7500 -100.0 + 98.2500 50.5000 -100.0 + 98.2500 52.5000 -100.0 + 99.5000 52.7500 -100.0 + 99.7500 51.5000 -100.0 + 98.7500 48.5000 -100.0 + 100.7500 39.5000 -100.0 +} -100.0 +{ -100.0 + 59.2500 62.5000 -100.0 + 56.5000 64.2500 -100.0 + 52.5000 71.2500 -100.0 + 52.2500 74.5000 -100.0 + 53.5000 74.7500 -100.0 + 57.5000 71.7500 -100.0 + 60.5000 71.7500 -100.0 + 62.2500 72.5000 -100.0 + 63.2500 74.5000 -100.0 + 68.7500 77.5000 -100.0 + 63.7500 69.5000 -100.0 + 63.7500 66.5000 -100.0 + 60.7500 62.5000 -100.0 +} -100.0 +{ -100.0 + 154.2500 65.5000 -100.0 + 151.5000 69.2500 -100.0 + 151.2500 71.5000 -100.0 + 146.5000 76.2500 -100.0 + 146.5000 77.7500 -100.0 + 148.5000 76.7500 -100.0 + 151.5000 76.7500 -100.0 + 154.5000 73.7500 -100.0 + 156.5000 73.7500 -100.0 + 160.5000 77.7500 -100.0 + 162.5000 78.7500 -100.0 + 162.7500 75.5000 -100.0 + 160.7500 69.5000 -100.0 + 157.7500 65.5000 -100.0 +} -100.0 +{ -100.0 + 143.2500 79.5000 -100.0 + 142.2500 80.5000 -100.0 + 144.5000 80.7500 -100.0 + 144.7500 79.5000 -100.0 +} -100.0 +{ -100.0 + 61.2500 87.5000 -100.0 + 59.5000 88.2500 -100.0 + 59.2500 89.5000 -100.0 + 51.2500 97.5000 -100.0 + 45.2500 105.5000 -100.0 + 35.2500 124.5000 -100.0 + 31.5000 134.2500 -100.0 + 29.2500 149.5000 -100.0 + 28.5000 151.2500 -100.0 + 28.2500 159.5000 -100.0 + 29.2500 161.5000 -100.0 + 29.2500 165.5000 -100.0 + 30.2500 167.5000 -100.0 + 30.2500 172.5000 -100.0 + 31.2500 174.5000 -100.0 + 31.2500 177.5000 -100.0 + 37.2500 196.5000 -100.0 + 43.2500 206.5000 -100.0 + 50.5000 213.7500 -100.0 + 52.5000 214.7500 -100.0 + 53.2500 216.5000 -100.0 + 54.5000 216.7500 -100.0 + 57.5000 219.7500 -100.0 + 65.5000 224.7500 -100.0 + 84.5000 231.7500 -100.0 + 91.2500 233.5000 -100.0 + 106.5000 233.7500 -100.0 + 108.5000 232.7500 -100.0 + 112.5000 232.7500 -100.0 + 114.5000 231.7500 -100.0 + 116.5000 231.7500 -100.0 + 126.5000 227.7500 -100.0 + 129.7500 227.5000 -100.0 + 136.5000 224.7500 -100.0 + 149.5000 215.7500 -100.0 + 158.5000 206.7500 -100.0 + 162.7500 200.5000 -100.0 + 171.7500 183.5000 -100.0 + 175.7500 169.5000 -100.0 + 178.5000 162.7500 -100.0 + 178.7500 148.5000 -100.0 + 177.7500 146.5000 -100.0 + 177.7500 142.5000 -100.0 + 175.7500 135.5000 -100.0 + 173.7500 124.5000 -100.0 + 163.7500 104.5000 -100.0 + 152.7500 92.5000 -100.0 + 148.5000 92.2500 -100.0 + 146.7500 91.5000 -100.0 + 145.5000 92.2500 -100.0 + 141.5000 91.2500 -100.0 + 145.2500 93.5000 -100.0 + 147.5000 93.7500 -100.0 + 151.2500 96.5000 -100.0 + 151.2500 99.5000 -100.0 + 154.2500 102.5000 -100.0 + 160.5000 104.7500 -100.0 + 163.2500 107.5000 -100.0 + 165.2500 111.5000 -100.0 + 165.2500 113.5000 -100.0 + 166.5000 113.7500 -100.0 + 169.2500 117.5000 -100.0 + 169.2500 119.5000 -100.0 + 172.2500 125.5000 -100.0 + 172.2500 133.5000 -100.0 + 174.2500 137.5000 -100.0 + 174.2500 140.5000 -100.0 + 175.2500 142.5000 -100.0 + 174.5000 143.2500 -100.0 + 173.2500 148.5000 -100.0 + 172.2500 153.5000 -100.0 + 173.2500 155.5000 -100.0 + 169.2500 173.5000 -100.0 + 157.5000 196.2500 -100.0 + 149.5000 205.2500 -100.0 + 139.5000 214.2500 -100.0 + 130.5000 219.2500 -100.0 + 128.5000 219.2500 -100.0 + 122.5000 222.2500 -100.0 + 120.5000 222.2500 -100.0 + 118.5000 223.2500 -100.0 + 111.5000 223.2500 -100.0 + 100.5000 221.2500 -100.0 + 98.5000 223.2500 -100.0 + 94.5000 225.2500 -100.0 + 87.5000 225.2500 -100.0 + 82.5000 224.2500 -100.0 + 74.5000 219.2500 -100.0 + 64.5000 215.2500 -100.0 + 57.7500 209.5000 -100.0 + 45.7500 195.5000 -100.0 + 38.7500 182.5000 -100.0 + 38.7500 179.5000 -100.0 + 36.7500 175.5000 -100.0 + 36.7500 173.5000 -100.0 + 35.7500 171.5000 -100.0 + 35.7500 167.5000 -100.0 + 34.7500 165.5000 -100.0 + 34.7500 143.5000 -100.0 + 33.7500 141.5000 -100.0 + 33.7500 132.5000 -100.0 + 38.7500 122.5000 -100.0 + 42.7500 112.5000 -100.0 + 46.5000 109.7500 -100.0 + 47.7500 105.5000 -100.0 + 55.7500 94.5000 -100.0 + 58.5000 92.7500 -100.0 + 61.5000 92.7500 -100.0 + 63.5000 90.7500 -100.0 + 67.5000 90.7500 -100.0 + 69.5000 89.7500 -100.0 + 71.5000 89.7500 -100.0 + 72.7500 88.5000 -100.0 + 69.5000 88.2500 -100.0 + 67.5000 89.2500 -100.0 + 64.7500 87.5000 -100.0 +} -100.0 +{ -100.0 + 75.2500 89.5000 -100.0 + 74.5000 90.2500 -100.0 + 81.2500 94.5000 -100.0 + 84.5000 94.7500 -100.0 + 82.7500 91.5000 -100.0 + 81.7500 89.5000 -100.0 +} -100.0 +{ -100.0 + 133.2500 91.5000 -100.0 + 132.5000 92.2500 -100.0 + 133.5000 92.7500 -100.0 + 134.7500 91.5000 -100.0 +} -100.0 +{ -100.0 + 127.2500 94.5000 -100.0 + 125.2500 97.5000 -100.0 + 126.5000 97.7500 -100.0 + 128.5000 95.7500 -100.0 +} -100.0 +{ -100.0 + 110.2500 103.5000 -100.0 + 109.2500 104.5000 -100.0 + 110.7500 104.5000 -100.0 +} -100.0 +{ -100.0 + 58.7500 66.5000 -100.0 + 59.5000 65.7500 -100.0 + 60.2500 66.5000 -100.0 + 59.5000 68.2500 -100.0 +} -100.0 +{ -100.0 + 154.7500 69.5000 -100.0 + 155.5000 68.7500 -100.0 + 156.2500 69.5000 -100.0 + 155.5000 70.2500 -100.0 +} -100.0 +v 186 z -102.000000 -64.0 +{ -102.0 + 100.2500 37.5000 -102.0 + 96.5000 45.2500 -102.0 + 94.5000 46.2500 -102.0 + 92.2500 49.5000 -102.0 + 96.5000 49.7500 -102.0 + 98.5000 52.7500 -102.0 + 98.7500 49.5000 -102.0 + 97.7500 47.5000 -102.0 + 98.7500 42.5000 -102.0 + 100.7500 38.5000 -102.0 +} -102.0 +{ -102.0 + 117.2500 38.5000 -102.0 + 117.2500 39.5000 -102.0 + 118.2500 41.5000 -102.0 + 118.2500 49.5000 -102.0 + 117.5000 51.2500 -102.0 + 117.5000 53.7500 -102.0 + 119.5000 50.7500 -102.0 + 124.5000 51.7500 -102.0 + 124.7500 50.5000 -102.0 + 119.7500 45.5000 -102.0 + 119.7500 43.5000 -102.0 +} -102.0 +{ -102.0 + 58.2500 62.5000 -102.0 + 56.2500 64.5000 -102.0 + 52.5000 71.2500 -102.0 + 52.2500 73.5000 -102.0 + 54.5000 73.7500 -102.0 + 57.5000 70.7500 -102.0 + 60.5000 70.7500 -102.0 + 63.5000 73.7500 -102.0 + 68.7500 76.5000 -102.0 + 67.7500 73.5000 -102.0 + 63.7500 69.5000 -102.0 + 63.7500 66.5000 -102.0 + 61.7500 62.5000 -102.0 +} -102.0 +{ -102.0 + 120.2500 64.5000 -102.0 + 119.5000 65.2500 -102.0 + 121.2500 67.5000 -102.0 + 121.5000 70.7500 -102.0 + 121.7500 67.5000 -102.0 +} -102.0 +{ -102.0 + 154.2500 64.5000 -102.0 + 152.5000 66.2500 -102.0 + 150.2500 72.5000 -102.0 + 148.5000 73.2500 -102.0 + 145.2500 77.5000 -102.0 + 150.5000 75.7500 -102.0 + 153.5000 71.7500 -102.0 + 156.5000 71.7500 -102.0 + 160.2500 77.5000 -102.0 + 162.5000 77.7500 -102.0 + 162.7500 74.5000 -102.0 + 160.7500 70.5000 -102.0 + 160.7500 68.5000 -102.0 + 157.7500 64.5000 -102.0 +} -102.0 +{ -102.0 + 142.2500 79.5000 -102.0 + 140.2500 81.5000 -102.0 + 142.5000 81.7500 -102.0 + 143.7500 79.5000 -102.0 +} -102.0 +{ -102.0 + 122.2500 82.5000 -102.0 + 121.2500 84.5000 -102.0 + 125.5000 84.7500 -102.0 + 123.7500 82.5000 -102.0 +} -102.0 +{ -102.0 + 77.2500 87.5000 -102.0 + 76.2500 89.5000 -102.0 + 74.2500 90.5000 -102.0 + 78.5000 91.7500 -102.0 + 84.5000 95.7500 -102.0 + 84.7500 94.5000 -102.0 + 81.7500 88.5000 -102.0 +} -102.0 +{ -102.0 + 60.2500 88.5000 -102.0 + 52.5000 96.2500 -102.0 + 46.5000 104.2500 -102.0 + 33.2500 129.5000 -102.0 + 29.5000 146.2500 -102.0 + 28.2500 157.5000 -102.0 + 30.2500 163.5000 -102.0 + 30.2500 170.5000 -102.0 + 32.2500 177.5000 -102.0 + 33.2500 183.5000 -102.0 + 39.5000 199.7500 -102.0 + 46.5000 209.7500 -102.0 + 48.5000 210.7500 -102.0 + 60.2500 221.5000 -102.0 + 73.2500 228.5000 -102.0 + 86.2500 232.5000 -102.0 + 112.5000 232.7500 -102.0 + 114.5000 231.7500 -102.0 + 117.5000 231.7500 -102.0 + 127.5000 227.7500 -102.0 + 129.5000 227.7500 -102.0 + 135.5000 224.7500 -102.0 + 146.5000 217.7500 -102.0 + 152.5000 211.7500 -102.0 + 154.5000 210.7500 -102.0 + 162.7500 199.5000 -102.0 + 171.5000 182.7500 -102.0 + 174.7500 171.5000 -102.0 + 178.5000 161.7500 -102.0 + 178.7500 150.5000 -102.0 + 176.7500 143.5000 -102.0 + 174.7500 129.5000 -102.0 + 172.7500 125.5000 -102.0 + 172.7500 123.5000 -102.0 + 161.7500 102.5000 -102.0 + 155.7500 97.5000 -102.0 + 153.7500 93.5000 -102.0 + 150.5000 92.2500 -102.0 + 147.5000 93.2500 -102.0 + 145.7500 91.5000 -102.0 + 144.5000 92.2500 -102.0 + 139.2500 91.5000 -102.0 + 142.2500 93.5000 -102.0 + 147.5000 94.7500 -102.0 + 151.2500 98.5000 -102.0 + 151.2500 100.5000 -102.0 + 157.2500 104.5000 -102.0 + 159.5000 104.7500 -102.0 + 163.2500 108.5000 -102.0 + 163.2500 110.5000 -102.0 + 170.2500 121.5000 -102.0 + 170.2500 123.5000 -102.0 + 172.2500 127.5000 -102.0 + 171.2500 128.5000 -102.0 + 172.2500 130.5000 -102.0 + 172.2500 134.5000 -102.0 + 174.2500 138.5000 -102.0 + 174.2500 145.5000 -102.0 + 172.5000 149.2500 -102.0 + 172.2500 160.5000 -102.0 + 171.2500 162.5000 -102.0 + 170.2500 169.5000 -102.0 + 162.2500 188.5000 -102.0 + 155.2500 198.5000 -102.0 + 147.5000 207.2500 -102.0 + 140.5000 213.2500 -102.0 + 125.5000 221.2500 -102.0 + 122.5000 221.2500 -102.0 + 118.5000 223.2500 -102.0 + 111.5000 223.2500 -102.0 + 107.5000 221.2500 -102.0 + 104.5000 222.2500 -102.0 + 101.5000 221.2500 -102.0 + 93.5000 225.2500 -102.0 + 90.5000 225.2500 -102.0 + 80.5000 223.2500 -102.0 + 72.7500 218.5000 -102.0 + 66.5000 216.2500 -102.0 + 59.5000 211.2500 -102.0 + 51.7500 203.5000 -102.0 + 45.7500 194.5000 -102.0 + 37.7500 178.5000 -102.0 + 36.7500 171.5000 -102.0 + 33.7500 160.5000 -102.0 + 34.5000 159.7500 -102.0 + 34.7500 144.5000 -102.0 + 33.7500 142.5000 -102.0 + 33.7500 136.5000 -102.0 + 34.7500 133.5000 -102.0 + 42.7500 113.5000 -102.0 + 46.7500 109.5000 -102.0 + 49.7500 102.5000 -102.0 + 52.5000 99.7500 -102.0 + 56.5000 93.7500 -102.0 + 59.5000 93.7500 -102.0 + 65.5000 90.7500 -102.0 + 67.5000 90.7500 -102.0 + 72.5000 88.7500 -102.0 + 71.5000 88.2500 -102.0 + 69.5000 89.2500 -102.0 +} -102.0 +{ -102.0 + 129.2500 91.5000 -102.0 + 127.5000 92.2500 -102.0 + 124.2500 97.5000 -102.0 + 125.5000 97.7500 -102.0 + 129.5000 94.7500 -102.0 + 128.7500 93.5000 -102.0 + 129.7500 92.5000 -102.0 +} -102.0 +{ -102.0 + 134.2500 91.5000 -102.0 + 130.2500 93.5000 -102.0 + 134.5000 94.7500 -102.0 + 135.7500 91.5000 -102.0 +} -102.0 +{ -102.0 + 111.2500 104.5000 -102.0 + 110.2500 105.5000 -102.0 + 111.7500 105.5000 -102.0 +} -102.0 +{ -102.0 + 58.7500 66.5000 -102.0 + 59.5000 65.7500 -102.0 + 61.2500 66.5000 -102.0 + 60.5000 67.2500 -102.0 +} -102.0 +v 208 z -104.000000 -64.0 +{ -104.0 + 99.2500 38.5000 -104.0 + 97.5000 41.2500 -104.0 + 97.2500 43.5000 -104.0 + 90.5000 49.2500 -104.0 + 90.5000 50.7500 -104.0 + 92.5000 51.7500 -104.0 + 93.5000 49.7500 -104.0 + 95.5000 48.7500 -104.0 + 97.2500 50.5000 -104.0 + 97.5000 52.7500 -104.0 + 97.7500 45.5000 -104.0 + 99.7500 39.5000 -104.0 +} -104.0 +{ -104.0 + 118.2500 39.5000 -104.0 + 118.2500 44.5000 -104.0 + 119.2500 46.5000 -104.0 + 118.2500 53.5000 -104.0 + 121.5000 50.7500 -104.0 + 123.2500 53.5000 -104.0 + 124.5000 53.7500 -104.0 + 127.7500 52.5000 -104.0 + 128.7500 50.5000 -104.0 + 125.5000 49.2500 -104.0 + 121.7500 46.5000 -104.0 +} -104.0 +{ -104.0 + 121.2500 59.5000 -104.0 + 120.2500 61.5000 -104.0 + 121.2500 63.5000 -104.0 + 120.5000 65.2500 -104.0 + 123.2500 66.5000 -104.0 + 123.2500 68.5000 -104.0 + 124.5000 68.7500 -104.0 + 123.7500 67.5000 -104.0 + 123.7500 64.5000 -104.0 +} -104.0 +{ -104.0 + 58.2500 61.5000 -104.0 + 54.5000 66.2500 -104.0 + 52.5000 72.7500 -104.0 + 54.5000 73.7500 -104.0 + 58.5000 69.7500 -104.0 + 60.5000 68.7500 -104.0 + 63.5000 72.7500 -104.0 + 69.5000 75.7500 -104.0 + 69.7500 74.5000 -104.0 + 63.7500 67.5000 -104.0 + 63.7500 65.5000 -104.0 + 61.7500 61.5000 -104.0 +} -104.0 +{ -104.0 + 93.2500 61.5000 -104.0 + 92.5000 62.2500 -104.0 + 92.2500 64.5000 -104.0 + 93.5000 64.7500 -104.0 + 93.7500 62.5000 -104.0 +} -104.0 +{ -104.0 + 153.2500 62.5000 -104.0 + 152.2500 63.5000 -104.0 + 151.2500 68.5000 -104.0 + 145.5000 76.2500 -104.0 + 146.5000 76.7500 -104.0 + 153.5000 69.7500 -104.0 + 155.5000 69.7500 -104.0 + 159.2500 73.5000 -104.0 + 159.2500 75.5000 -104.0 + 162.5000 77.7500 -104.0 + 162.7500 74.5000 -104.0 + 159.7500 65.5000 -104.0 + 156.7500 62.5000 -104.0 +} -104.0 +{ -104.0 + 71.2500 77.5000 -104.0 + 71.5000 78.7500 -104.0 + 73.5000 79.7500 -104.0 +} -104.0 +{ -104.0 + 61.2500 88.5000 -104.0 + 59.5000 89.2500 -104.0 + 59.2500 90.5000 -104.0 + 56.5000 93.2500 -104.0 + 54.5000 94.2500 -104.0 + 54.2500 95.5000 -104.0 + 47.5000 103.2500 -104.0 + 34.2500 128.5000 -104.0 + 30.2500 145.5000 -104.0 + 28.2500 155.5000 -104.0 + 30.2500 162.5000 -104.0 + 30.2500 168.5000 -104.0 + 32.2500 175.5000 -104.0 + 33.2500 181.5000 -104.0 + 39.5000 198.7500 -104.0 + 45.2500 207.5000 -104.0 + 53.2500 214.5000 -104.0 + 54.2500 216.5000 -104.0 + 65.5000 224.7500 -104.0 + 79.5000 230.7500 -104.0 + 86.2500 232.5000 -104.0 + 111.5000 232.7500 -104.0 + 113.5000 231.7500 -104.0 + 120.5000 230.7500 -104.0 + 135.7500 224.5000 -104.0 + 144.5000 218.7500 -104.0 + 151.5000 211.7500 -104.0 + 153.5000 210.7500 -104.0 + 162.7500 198.5000 -104.0 + 169.5000 185.7500 -104.0 + 178.5000 160.7500 -104.0 + 178.7500 151.5000 -104.0 + 176.7500 144.5000 -104.0 + 175.7500 137.5000 -104.0 + 171.7500 123.5000 -104.0 + 163.7500 106.5000 -104.0 + 159.7500 100.5000 -104.0 + 154.7500 96.5000 -104.0 + 153.7500 94.5000 -104.0 + 150.5000 93.2500 -104.0 + 148.5000 94.2500 -104.0 + 146.5000 94.2500 -104.0 + 144.7500 92.5000 -104.0 + 144.7500 90.5000 -104.0 + 143.2500 93.5000 -104.0 + 150.2500 98.5000 -104.0 + 150.2500 100.5000 -104.0 + 154.5000 104.7500 -104.0 + 159.5000 105.7500 -104.0 + 161.2500 107.5000 -104.0 + 163.2500 113.5000 -104.0 + 164.5000 113.7500 -104.0 + 165.2500 115.5000 -104.0 + 168.2500 118.5000 -104.0 + 168.2500 120.5000 -104.0 + 171.2500 126.5000 -104.0 + 171.2500 132.5000 -104.0 + 172.2500 134.5000 -104.0 + 172.2500 136.5000 -104.0 + 174.2500 140.5000 -104.0 + 174.2500 145.5000 -104.0 + 172.5000 149.2500 -104.0 + 172.2500 159.5000 -104.0 + 168.2500 174.5000 -104.0 + 163.5000 184.2500 -104.0 + 163.2500 186.5000 -104.0 + 154.5000 198.2500 -104.0 + 145.2500 209.5000 -104.0 + 133.5000 217.2500 -104.0 + 131.5000 217.2500 -104.0 + 127.5000 220.2500 -104.0 + 125.5000 220.2500 -104.0 + 121.5000 222.2500 -104.0 + 114.5000 223.2500 -104.0 + 106.5000 221.2500 -104.0 + 104.5000 222.2500 -104.0 + 103.7500 221.5000 -104.0 + 100.5000 221.2500 -104.0 + 96.5000 224.2500 -104.0 + 91.5000 225.2500 -104.0 + 81.5000 223.2500 -104.0 + 73.5000 219.2500 -104.0 + 61.5000 212.2500 -104.0 + 51.7500 202.5000 -104.0 + 48.7500 198.5000 -104.0 + 38.7500 180.5000 -104.0 + 38.7500 178.5000 -104.0 + 36.7500 174.5000 -104.0 + 35.7500 166.5000 -104.0 + 33.7500 159.5000 -104.0 + 34.5000 158.7500 -104.0 + 34.7500 146.5000 -104.0 + 33.7500 143.5000 -104.0 + 34.5000 141.7500 -104.0 + 34.7500 134.5000 -104.0 + 37.5000 128.7500 -104.0 + 37.7500 126.5000 -104.0 + 41.7500 116.5000 -104.0 + 45.5000 112.7500 -104.0 + 48.5000 107.7500 -104.0 + 48.7500 105.5000 -104.0 + 57.5000 93.7500 -104.0 + 60.5000 93.7500 -104.0 + 62.5000 91.7500 -104.0 + 64.5000 91.7500 -104.0 + 70.7500 89.5000 -104.0 + 67.5000 89.2500 -104.0 + 64.5000 90.2500 -104.0 + 62.7500 88.5000 -104.0 +} -104.0 +{ -104.0 + 76.2500 88.5000 -104.0 + 74.5000 90.2500 -104.0 + 75.2500 91.5000 -104.0 + 78.5000 90.7500 -104.0 + 82.2500 96.5000 -104.0 + 85.5000 96.7500 -104.0 + 85.7500 95.5000 -104.0 + 82.5000 88.2500 -104.0 + 80.5000 89.2500 -104.0 +} -104.0 +{ -104.0 + 127.2500 92.5000 -104.0 + 121.5000 96.2500 -104.0 + 120.5000 99.7500 -104.0 + 123.5000 98.7500 -104.0 + 126.5000 95.7500 -104.0 + 128.5000 95.7500 -104.0 + 130.5000 93.7500 -104.0 + 135.5000 94.7500 -104.0 + 137.5000 93.7500 -104.0 + 140.7500 93.5000 -104.0 + 136.7500 92.5000 -104.0 +} -104.0 +{ -104.0 + 58.7500 65.5000 -104.0 + 59.5000 64.7500 -104.0 + 61.2500 65.5000 -104.0 + 60.5000 66.2500 -104.0 +} -104.0 +{ -104.0 + 80.7500 91.5000 -104.0 + 81.5000 90.7500 -104.0 + 83.2500 92.5000 -104.0 + 82.5000 93.2500 -104.0 +} -104.0 +{ -104.0 + 152.7500 97.5000 -104.0 + 153.5000 96.7500 -104.0 + 154.2500 97.5000 -104.0 + 157.2500 101.5000 -104.0 + 156.5000 102.2500 -104.0 + 154.5000 101.2500 -104.0 +} -104.0 +//v 230 z -106.000000 -64.0 +{ -64.0 + 99.2500 37.5000 -64.0 + 95.5000 44.2500 -64.0 + 87.5000 50.2500 -64.0 + 91.2500 55.5000 -64.0 + 91.2500 63.5000 -64.0 + 93.5000 63.7500 -64.0 + 91.7500 61.5000 -64.0 + 91.7500 59.5000 -64.0 + 94.7500 55.5000 -64.0 + 93.5000 55.2500 -64.0 + 91.7500 53.5000 -64.0 + 92.5000 49.7500 -64.0 + 94.5000 48.7500 -64.0 + 97.5000 52.7500 -64.0 + 97.7500 49.5000 -64.0 + 96.7500 47.5000 -64.0 + 97.7500 43.5000 -64.0 + 100.7500 37.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 38.5000 -64.0 + 118.2500 39.5000 -64.0 + 119.2500 41.5000 -64.0 + 119.2500 47.5000 -64.0 + 120.2500 49.5000 -64.0 + 119.5000 50.2500 -64.0 + 119.2500 52.5000 -64.0 + 121.5000 51.7500 -64.0 + 123.2500 52.5000 -64.0 + 124.5000 50.7500 -64.0 + 126.5000 50.7500 -64.0 + 128.5000 52.7500 -64.0 + 130.5000 53.7500 -64.0 + 134.5000 51.7500 -64.0 + 132.7500 50.5000 -64.0 + 130.5000 50.2500 -64.0 + 124.5000 48.2500 -64.0 + 121.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 59.2500 59.5000 -64.0 + 57.2500 61.5000 -64.0 + 52.2500 71.5000 -64.0 + 53.2500 73.5000 -64.0 + 59.5000 67.7500 -64.0 + 62.5000 67.7500 -64.0 + 64.2500 70.5000 -64.0 + 64.2500 72.5000 -64.0 + 69.5000 74.7500 -64.0 + 69.7500 73.5000 -64.0 + 65.7500 69.5000 -64.0 + 63.7500 65.5000 -64.0 + 62.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 59.5000 -64.0 + 151.5000 60.2500 -64.0 + 151.2500 63.5000 -64.0 + 150.2500 66.5000 -64.0 + 149.5000 68.2500 -64.0 + 146.5000 73.2500 -64.0 + 147.2500 74.5000 -64.0 + 149.7500 72.5000 -64.0 + 150.7500 70.5000 -64.0 + 153.5000 68.7500 -64.0 + 155.5000 68.7500 -64.0 + 157.2500 70.5000 -64.0 + 159.2500 74.5000 -64.0 + 162.2500 78.5000 -64.0 + 163.5000 77.7500 -64.0 + 163.7500 75.5000 -64.0 + 160.7500 69.5000 -64.0 + 160.7500 67.5000 -64.0 + 159.7500 64.5000 -64.0 + 154.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 65.5000 -64.0 + 126.2500 67.5000 -64.0 + 127.7500 67.5000 -64.0 + 126.7500 65.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 82.5000 -64.0 + 92.2500 83.5000 -64.0 + 93.5000 83.7500 -64.0 +} -64.0 +{ -64.0 + 118.2500 83.5000 -64.0 + 116.2500 86.5000 -64.0 + 120.5000 84.7500 -64.0 +} -64.0 +{ -64.0 + 60.2500 89.5000 -64.0 + 58.5000 92.2500 -64.0 + 56.5000 93.2500 -64.0 + 51.2500 98.5000 -64.0 + 38.5000 120.2500 -64.0 + 38.2500 122.5000 -64.0 + 34.2500 130.5000 -64.0 + 29.5000 148.2500 -64.0 + 29.2500 158.5000 -64.0 + 30.2500 160.5000 -64.0 + 30.2500 165.5000 -64.0 + 32.2500 172.5000 -64.0 + 33.2500 181.5000 -64.0 + 39.2500 196.5000 -64.0 + 45.2500 206.5000 -64.0 + 58.2500 219.5000 -64.0 + 68.2500 226.5000 -64.0 + 79.5000 230.7500 -64.0 + 88.2500 232.5000 -64.0 + 108.5000 232.7500 -64.0 + 110.5000 231.7500 -64.0 + 117.5000 231.7500 -64.0 + 121.5000 229.7500 -64.0 + 124.5000 229.7500 -64.0 + 136.5000 223.7500 -64.0 + 147.5000 215.7500 -64.0 + 158.5000 203.7500 -64.0 + 162.7500 197.5000 -64.0 + 169.5000 184.7500 -64.0 + 178.5000 159.7500 -64.0 + 178.7500 152.5000 -64.0 + 176.7500 146.5000 -64.0 + 176.7500 142.5000 -64.0 + 174.7500 138.5000 -64.0 + 171.7500 124.5000 -64.0 + 160.7500 102.5000 -64.0 + 152.7500 94.5000 -64.0 + 150.5000 94.2500 -64.0 + 148.5000 95.2500 -64.0 + 138.5000 94.2500 -64.0 + 134.5000 92.2500 -64.0 + 131.5000 93.2500 -64.0 + 128.5000 92.2500 -64.0 + 125.5000 95.2500 -64.0 + 122.5000 95.2500 -64.0 + 121.5000 93.2500 -64.0 + 121.2500 98.5000 -64.0 + 117.5000 104.7500 -64.0 + 119.5000 103.7500 -64.0 + 123.5000 97.7500 -64.0 + 129.5000 94.7500 -64.0 + 140.5000 94.7500 -64.0 + 144.2500 96.5000 -64.0 + 145.2500 98.5000 -64.0 + 148.5000 98.7500 -64.0 + 155.2500 108.5000 -64.0 + 159.2500 109.5000 -64.0 + 161.5000 113.7500 -64.0 + 163.5000 114.7500 -64.0 + 166.2500 118.5000 -64.0 + 170.2500 126.5000 -64.0 + 171.2500 136.5000 -64.0 + 173.2500 140.5000 -64.0 + 173.2500 145.5000 -64.0 + 171.2500 150.5000 -64.0 + 172.2500 152.5000 -64.0 + 171.2500 164.5000 -64.0 + 168.2500 173.5000 -64.0 + 164.5000 181.2500 -64.0 + 164.2500 183.5000 -64.0 + 161.2500 186.5000 -64.0 + 158.2500 192.5000 -64.0 + 147.5000 207.2500 -64.0 + 139.5000 213.2500 -64.0 + 121.5000 222.2500 -64.0 + 118.5000 222.2500 -64.0 + 116.5000 223.2500 -64.0 + 101.5000 220.2500 -64.0 + 95.5000 224.2500 -64.0 + 88.5000 224.2500 -64.0 + 81.5000 223.2500 -64.0 + 69.5000 217.2500 -64.0 + 56.7500 207.5000 -64.0 + 50.7500 200.5000 -64.0 + 38.7500 181.5000 -64.0 + 38.7500 179.5000 -64.0 + 37.7500 177.5000 -64.0 + 36.7500 170.5000 -64.0 + 33.7500 159.5000 -64.0 + 34.5000 157.7500 -64.0 + 34.7500 141.5000 -64.0 + 35.7500 139.5000 -64.0 + 34.7500 136.5000 -64.0 + 38.5000 127.7500 -64.0 + 40.7500 119.5000 -64.0 + 48.5000 112.7500 -64.0 + 48.7500 106.5000 -64.0 + 57.5000 94.7500 -64.0 + 60.5000 94.7500 -64.0 + 64.5000 91.7500 -64.0 + 69.5000 91.7500 -64.0 + 69.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 76.2500 89.5000 -64.0 + 75.5000 90.2500 -64.0 + 73.5000 90.2500 -64.0 + 71.5000 91.2500 -64.0 + 73.2500 92.5000 -64.0 + 75.5000 92.7500 -64.0 + 77.5000 91.7500 -64.0 + 79.5000 91.7500 -64.0 + 81.2500 93.5000 -64.0 + 80.2500 95.5000 -64.0 + 85.2500 98.5000 -64.0 + 87.5000 98.7500 -64.0 + 87.7500 96.5000 -64.0 + 86.5000 95.2500 -64.0 + 84.5000 96.2500 -64.0 + 81.7500 94.5000 -64.0 + 82.5000 93.7500 -64.0 + 84.7500 93.5000 -64.0 + 82.5000 90.2500 -64.0 + 80.5000 91.2500 -64.0 +} -64.0 +{ -64.0 + 143.2500 89.5000 -64.0 + 143.2500 90.5000 -64.0 + 144.5000 90.7500 -64.0 +} -64.0 +{ -64.0 + 118.2500 118.5000 -64.0 + 117.5000 121.7500 -64.0 + 121.2500 124.5000 -64.0 + 121.7500 123.5000 -64.0 + 119.7500 121.5000 -64.0 + 119.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 144.2500 132.5000 -64.0 + 143.2500 134.5000 -64.0 + 144.2500 136.5000 -64.0 + 147.5000 136.7500 -64.0 + 147.7500 132.5000 -64.0 +} -64.0 +{ -64.0 + 59.7500 63.5000 -64.0 + 60.5000 62.7500 -64.0 + 61.2500 63.5000 -64.0 + 60.5000 65.2500 -64.0 +} -64.0 +{ -64.0 + 153.7500 65.5000 -64.0 + 155.5000 64.7500 -64.0 + 157.2500 65.5000 -64.0 + 156.5000 67.2500 -64.0 + 154.5000 67.2500 -64.0 +} -64.0 +{ -64.0 + 151.7500 97.5000 -64.0 + 152.5000 96.7500 -64.0 + 155.2500 99.5000 -64.0 + 156.2500 101.5000 -64.0 + 155.5000 103.2500 -64.0 + 152.7500 99.5000 -64.0 +} -64.0 +v 251 z -108.000000 -64.0 +{ -64.0 + 98.2500 38.5000 -64.0 + 95.2500 44.5000 -64.0 + 92.2500 46.5000 -64.0 + 81.5000 50.2500 -64.0 + 84.5000 52.7500 -64.0 + 88.5000 50.7500 -64.0 + 91.7500 53.5000 -64.0 + 90.7500 51.5000 -64.0 + 92.5000 48.7500 -64.0 + 95.5000 49.7500 -64.0 + 97.5000 53.7500 -64.0 + 97.7500 50.5000 -64.0 + 96.7500 48.5000 -64.0 + 96.7500 45.5000 -64.0 + 98.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 39.5000 -64.0 + 119.2500 42.5000 -64.0 + 120.2500 44.5000 -64.0 + 119.5000 52.7500 -64.0 + 122.5000 51.7500 -64.0 + 123.5000 49.7500 -64.0 + 125.5000 49.7500 -64.0 + 132.2500 52.5000 -64.0 + 132.7500 57.5000 -64.0 + 133.7500 55.5000 -64.0 + 136.5000 53.7500 -64.0 + 141.5000 53.7500 -64.0 + 144.5000 54.7500 -64.0 + 149.2500 59.5000 -64.0 + 149.2500 63.5000 -64.0 + 145.5000 71.2500 -64.0 + 145.2500 73.5000 -64.0 + 147.5000 73.7500 -64.0 + 147.7500 72.5000 -64.0 + 153.5000 67.7500 -64.0 + 157.2500 69.5000 -64.0 + 160.2500 74.5000 -64.0 + 160.2500 76.5000 -64.0 + 163.2500 80.5000 -64.0 + 164.7500 79.5000 -64.0 + 163.7500 77.5000 -64.0 + 163.7500 74.5000 -64.0 + 157.7500 60.5000 -64.0 + 152.7500 56.5000 -64.0 + 140.7500 51.5000 -64.0 + 128.5000 49.2500 -64.0 + 122.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 62.2500 56.5000 -64.0 + 60.5000 57.2500 -64.0 + 58.2500 59.5000 -64.0 + 52.5000 70.2500 -64.0 + 52.2500 73.5000 -64.0 + 53.5000 73.7500 -64.0 + 59.5000 66.7500 -64.0 + 62.5000 66.7500 -64.0 + 68.2500 73.5000 -64.0 + 69.7500 73.5000 -64.0 + 64.7500 65.5000 -64.0 + 64.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 64.5000 -64.0 + 131.5000 65.2500 -64.0 + 132.5000 65.7500 -64.0 + 133.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 79.5000 -64.0 + 106.5000 84.7500 -64.0 + 106.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 82.5000 -64.0 + 93.2500 83.5000 -64.0 + 94.5000 83.7500 -64.0 + 94.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 84.5000 -64.0 + 119.2500 85.5000 -64.0 + 120.5000 85.7500 -64.0 +} -64.0 +{ -64.0 + 140.2500 86.5000 -64.0 + 142.7500 88.5000 -64.0 + 141.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 123.2500 88.5000 -64.0 + 122.2500 89.5000 -64.0 + 124.5000 89.7500 -64.0 + 124.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 81.2500 89.5000 -64.0 + 81.2500 92.5000 -64.0 + 79.5000 93.2500 -64.0 + 77.5000 91.2500 -64.0 + 75.5000 92.2500 -64.0 + 72.5000 92.2500 -64.0 + 70.5000 90.2500 -64.0 + 68.5000 91.2500 -64.0 + 60.5000 90.2500 -64.0 + 50.5000 100.2500 -64.0 + 35.5000 129.2500 -64.0 + 29.5000 149.2500 -64.0 + 29.2500 156.5000 -64.0 + 31.2500 163.5000 -64.0 + 31.2500 168.5000 -64.0 + 32.2500 170.5000 -64.0 + 33.2500 179.5000 -64.0 + 40.2500 197.5000 -64.0 + 49.2500 209.5000 -64.0 + 58.2500 219.5000 -64.0 + 68.2500 226.5000 -64.0 + 78.2500 230.5000 -64.0 + 83.2500 231.5000 -64.0 + 114.5000 231.7500 -64.0 + 116.5000 230.7500 -64.0 + 119.5000 230.7500 -64.0 + 129.5000 227.7500 -64.0 + 139.5000 221.7500 -64.0 + 147.7500 214.5000 -64.0 + 156.7500 204.5000 -64.0 + 163.7500 194.5000 -64.0 + 169.7500 182.5000 -64.0 + 177.5000 161.7500 -64.0 + 178.7500 153.5000 -64.0 + 177.7500 151.5000 -64.0 + 174.7500 137.5000 -64.0 + 172.7500 133.5000 -64.0 + 172.7500 130.5000 -64.0 + 170.7500 126.5000 -64.0 + 170.7500 124.5000 -64.0 + 159.7500 102.5000 -64.0 + 152.7500 95.5000 -64.0 + 149.5000 95.2500 -64.0 + 145.5000 97.2500 -64.0 + 140.5000 94.2500 -64.0 + 138.5000 95.2500 -64.0 + 135.5000 94.2500 -64.0 + 132.2500 95.5000 -64.0 + 140.5000 95.7500 -64.0 + 145.5000 100.7500 -64.0 + 148.5000 99.7500 -64.0 + 152.2500 106.5000 -64.0 + 152.5000 108.7500 -64.0 + 158.5000 111.7500 -64.0 + 167.2500 122.5000 -64.0 + 167.2500 124.5000 -64.0 + 169.2500 128.5000 -64.0 + 169.2500 133.5000 -64.0 + 170.2500 135.5000 -64.0 + 170.2500 137.5000 -64.0 + 172.2500 139.5000 -64.0 + 171.2500 153.5000 -64.0 + 172.2500 155.5000 -64.0 + 172.2500 160.5000 -64.0 + 167.5000 174.2500 -64.0 + 167.2500 176.5000 -64.0 + 165.5000 178.2500 -64.0 + 165.2500 180.5000 -64.0 + 160.5000 185.2500 -64.0 + 158.2500 191.5000 -64.0 + 150.2500 203.5000 -64.0 + 145.2500 208.5000 -64.0 + 138.5000 213.2500 -64.0 + 123.5000 221.2500 -64.0 + 121.5000 221.2500 -64.0 + 119.5000 222.2500 -64.0 + 101.5000 220.2500 -64.0 + 93.5000 224.2500 -64.0 + 88.5000 224.2500 -64.0 + 83.5000 223.2500 -64.0 + 73.5000 219.2500 -64.0 + 63.5000 213.2500 -64.0 + 50.7500 200.5000 -64.0 + 44.7500 189.5000 -64.0 + 39.7500 181.5000 -64.0 + 39.7500 179.5000 -64.0 + 36.7500 173.5000 -64.0 + 35.7500 163.5000 -64.0 + 34.7500 161.5000 -64.0 + 34.7500 145.5000 -64.0 + 35.5000 143.7500 -64.0 + 35.7500 134.5000 -64.0 + 39.5000 126.7500 -64.0 + 40.7500 121.5000 -64.0 + 45.5000 114.7500 -64.0 + 49.5000 112.7500 -64.0 + 49.7500 105.5000 -64.0 + 58.5000 95.7500 -64.0 + 60.5000 95.7500 -64.0 + 64.5000 92.7500 -64.0 + 76.5000 93.7500 -64.0 + 79.5000 96.7500 -64.0 + 81.5000 97.7500 -64.0 + 86.5000 98.7500 -64.0 + 86.7500 97.5000 -64.0 + 84.5000 97.2500 -64.0 + 82.7500 93.5000 -64.0 + 83.5000 92.7500 -64.0 + 82.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 90.5000 -64.0 + 89.2500 91.5000 -64.0 + 90.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 128.2500 92.5000 -64.0 + 126.2500 95.5000 -64.0 + 128.5000 95.7500 -64.0 + 129.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 94.5000 -64.0 + 122.2500 97.5000 -64.0 + 123.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 102.5000 -64.0 + 118.5000 106.2500 -64.0 + 119.5000 106.7500 -64.0 + 120.7500 103.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 120.5000 -64.0 + 119.2500 124.5000 -64.0 + 120.5000 124.7500 -64.0 + 126.2500 130.5000 -64.0 + 131.2500 133.5000 -64.0 + 135.5000 133.7500 -64.0 + 138.5000 134.7500 -64.0 + 139.2500 136.5000 -64.0 + 142.2500 138.5000 -64.0 + 147.5000 139.7500 -64.0 + 149.5000 138.7500 -64.0 + 150.7500 132.5000 -64.0 + 145.5000 129.2500 -64.0 + 142.5000 130.2500 -64.0 + 135.7500 126.5000 -64.0 + 133.5000 126.2500 -64.0 + 130.5000 127.2500 -64.0 + 125.7500 125.5000 -64.0 + 126.7500 122.5000 -64.0 + 124.5000 122.2500 -64.0 + 123.5000 124.2500 -64.0 + 121.5000 124.2500 -64.0 + 118.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 61.5000 -64.0 + 153.5000 60.7500 -64.0 + 154.2500 61.5000 -64.0 + 157.2500 65.5000 -64.0 + 156.5000 66.2500 -64.0 + 154.5000 66.2500 -64.0 + 152.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 98.5000 -64.0 + 153.5000 97.7500 -64.0 + 155.2500 99.5000 -64.0 + 155.2500 101.5000 -64.0 + 154.5000 103.2500 -64.0 + 151.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 155.5000 104.7500 -64.0 + 156.2500 106.5000 -64.0 + 155.5000 108.2500 -64.0 + 153.7500 106.5000 -64.0 +} -64.0 +{ -64.0 + 157.7500 107.5000 -64.0 + 158.5000 106.7500 -64.0 + 159.2500 107.5000 -64.0 + 158.5000 108.2500 -64.0 +} -64.0 +{ -64.0 + 173.7500 149.5000 -64.0 + 174.5000 148.7500 -64.0 + 175.2500 149.5000 -64.0 + 174.5000 150.2500 -64.0 +} -64.0 +v 304 z -110.000000 -64.0 +{ -64.0 + 97.2500 40.5000 -64.0 + 96.2500 42.5000 -64.0 + 93.5000 45.2500 -64.0 + 88.5000 48.2500 -64.0 + 86.5000 48.2500 -64.0 + 84.5000 49.2500 -64.0 + 75.5000 49.2500 -64.0 + 73.5000 50.2500 -64.0 + 71.5000 50.2500 -64.0 + 63.5000 54.2500 -64.0 + 59.2500 57.5000 -64.0 + 56.2500 63.5000 -64.0 + 52.2500 69.5000 -64.0 + 51.2500 74.5000 -64.0 + 52.5000 74.7500 -64.0 + 60.5000 65.7500 -64.0 + 62.5000 65.7500 -64.0 + 68.5000 71.7500 -64.0 + 68.7500 68.5000 -64.0 + 66.7500 64.5000 -64.0 + 66.7500 61.5000 -64.0 + 68.5000 56.7500 -64.0 + 72.5000 53.7500 -64.0 + 84.5000 54.7500 -64.0 + 83.7500 51.5000 -64.0 + 85.5000 49.7500 -64.0 + 90.5000 49.7500 -64.0 + 92.5000 48.7500 -64.0 + 94.5000 48.7500 -64.0 + 97.5000 52.7500 -64.0 + 97.7500 50.5000 -64.0 + 96.7500 48.5000 -64.0 + 96.7500 44.5000 -64.0 + 97.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 41.5000 -64.0 + 120.2500 48.5000 -64.0 + 119.2500 53.5000 -64.0 + 121.5000 52.7500 -64.0 + 121.7500 51.5000 -64.0 + 123.5000 49.7500 -64.0 + 127.5000 49.7500 -64.0 + 131.2500 51.5000 -64.0 + 133.2500 55.5000 -64.0 + 133.2500 63.5000 -64.0 + 135.5000 63.7500 -64.0 + 135.7500 58.5000 -64.0 + 136.5000 56.7500 -64.0 + 143.5000 56.7500 -64.0 + 146.2500 60.5000 -64.0 + 145.2500 63.5000 -64.0 + 148.2500 65.5000 -64.0 + 148.2500 70.5000 -64.0 + 151.5000 67.7500 -64.0 + 153.5000 67.7500 -64.0 + 157.2500 69.5000 -64.0 + 161.2500 76.5000 -64.0 + 161.2500 78.5000 -64.0 + 166.5000 84.7500 -64.0 + 166.7500 81.5000 -64.0 + 164.7500 77.5000 -64.0 + 164.7500 75.5000 -64.0 + 160.7500 67.5000 -64.0 + 158.7500 61.5000 -64.0 + 153.5000 56.2500 -64.0 + 145.5000 52.2500 -64.0 + 128.5000 49.2500 -64.0 + 122.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 63.5000 -64.0 + 140.5000 64.2500 -64.0 + 140.2500 66.5000 -64.0 + 141.7500 66.5000 -64.0 + 142.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 147.2500 71.5000 -64.0 + 143.2500 74.5000 -64.0 + 145.5000 74.7500 -64.0 + 147.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 86.5000 -64.0 + 118.2500 90.5000 -64.0 + 119.5000 89.7500 -64.0 + 122.5000 89.7500 -64.0 +} -64.0 +{ -64.0 + 87.2500 87.5000 -64.0 + 89.2500 88.5000 -64.0 + 89.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 60.2500 91.5000 -64.0 + 56.2500 94.5000 -64.0 + 55.2500 96.5000 -64.0 + 52.5000 98.2500 -64.0 + 35.5000 130.2500 -64.0 + 35.2500 133.5000 -64.0 + 32.2500 139.5000 -64.0 + 29.5000 150.2500 -64.0 + 29.2500 154.5000 -64.0 + 31.2500 160.5000 -64.0 + 31.2500 165.5000 -64.0 + 32.2500 167.5000 -64.0 + 32.2500 170.5000 -64.0 + 36.2500 187.5000 -64.0 + 45.2500 203.5000 -64.0 + 60.2500 220.5000 -64.0 + 64.5000 223.7500 -64.0 + 73.5000 228.7500 -64.0 + 87.2500 231.5000 -64.0 + 104.5000 231.7500 -64.0 + 106.5000 230.7500 -64.0 + 118.5000 230.7500 -64.0 + 131.7500 226.5000 -64.0 + 140.5000 220.7500 -64.0 + 150.7500 210.5000 -64.0 + 159.7500 199.5000 -64.0 + 168.7500 183.5000 -64.0 + 177.5000 159.7500 -64.0 + 177.7500 149.5000 -64.0 + 176.7500 147.5000 -64.0 + 175.7500 141.5000 -64.0 + 172.7500 135.5000 -64.0 + 172.7500 133.5000 -64.0 + 170.7500 129.5000 -64.0 + 169.7500 124.5000 -64.0 + 165.5000 117.2500 -64.0 + 159.7500 103.5000 -64.0 + 153.7500 97.5000 -64.0 + 150.5000 97.2500 -64.0 + 148.5000 98.2500 -64.0 + 134.7500 95.5000 -64.0 + 133.5000 96.2500 -64.0 + 134.2500 97.5000 -64.0 + 140.5000 97.7500 -64.0 + 141.5000 99.7500 -64.0 + 145.2500 102.5000 -64.0 + 147.5000 102.7500 -64.0 + 150.2500 106.5000 -64.0 + 150.5000 108.7500 -64.0 + 156.5000 111.7500 -64.0 + 162.2500 117.5000 -64.0 + 169.2500 130.5000 -64.0 + 169.2500 132.5000 -64.0 + 171.2500 138.5000 -64.0 + 170.5000 140.2500 -64.0 + 171.2500 142.5000 -64.0 + 170.5000 144.2500 -64.0 + 170.2500 152.5000 -64.0 + 171.2500 154.5000 -64.0 + 171.2500 162.5000 -64.0 + 170.2500 169.5000 -64.0 + 165.5000 176.2500 -64.0 + 164.2500 180.5000 -64.0 + 161.2500 183.5000 -64.0 + 157.2500 191.5000 -64.0 + 148.2500 205.5000 -64.0 + 132.5000 216.2500 -64.0 + 120.5000 222.2500 -64.0 + 115.5000 222.2500 -64.0 + 101.5000 219.2500 -64.0 + 95.5000 223.2500 -64.0 + 91.5000 223.2500 -64.0 + 89.5000 224.2500 -64.0 + 84.5000 223.2500 -64.0 + 66.5000 215.2500 -64.0 + 51.7500 201.5000 -64.0 + 47.7500 194.5000 -64.0 + 47.7500 192.5000 -64.0 + 44.7500 188.5000 -64.0 + 38.7500 176.5000 -64.0 + 38.7500 174.5000 -64.0 + 36.7500 170.5000 -64.0 + 36.7500 168.5000 -64.0 + 35.7500 166.5000 -64.0 + 35.7500 159.5000 -64.0 + 34.7500 157.5000 -64.0 + 34.7500 151.5000 -64.0 + 35.5000 149.7500 -64.0 + 36.7500 132.5000 -64.0 + 40.5000 128.7500 -64.0 + 40.7500 124.5000 -64.0 + 43.7500 117.5000 -64.0 + 48.5000 112.7500 -64.0 + 50.5000 112.7500 -64.0 + 50.7500 110.5000 -64.0 + 49.7500 108.5000 -64.0 + 50.7500 105.5000 -64.0 + 58.5000 96.7500 -64.0 + 62.2500 97.5000 -64.0 + 74.5000 97.7500 -64.0 + 76.2500 100.5000 -64.0 + 77.5000 99.7500 -64.0 + 82.5000 99.7500 -64.0 + 83.7500 98.5000 -64.0 + 82.7500 96.5000 -64.0 + 82.7500 94.5000 -64.0 + 84.5000 92.7500 -64.0 + 87.7500 92.5000 -64.0 + 83.5000 91.2500 -64.0 + 79.5000 96.2500 -64.0 + 72.5000 94.2500 -64.0 + 70.5000 95.2500 -64.0 + 64.5000 92.2500 -64.0 +} -64.0 +{ -64.0 + 120.2500 94.5000 -64.0 + 121.2500 95.5000 -64.0 + 122.5000 94.7500 -64.0 + 124.2500 95.5000 -64.0 + 124.2500 97.5000 -64.0 + 130.7500 96.5000 -64.0 + 126.5000 96.2500 -64.0 + 125.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 99.5000 -64.0 + 120.5000 100.2500 -64.0 + 119.2500 104.5000 -64.0 + 117.5000 105.2500 -64.0 + 119.2500 107.5000 -64.0 + 119.2500 109.5000 -64.0 + 119.7500 108.5000 -64.0 + 121.5000 104.7500 -64.0 + 121.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 100.5000 -64.0 + 88.2500 102.5000 -64.0 + 88.7500 101.5000 -64.0 +} -64.0 +{ -64.0 + 88.2500 120.5000 -64.0 + 88.2500 121.5000 -64.0 + 89.5000 121.7500 -64.0 + 90.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 122.5000 -64.0 + 119.2500 124.5000 -64.0 + 122.5000 127.7500 -64.0 + 128.5000 130.7500 -64.0 + 131.2500 136.5000 -64.0 + 133.2500 137.5000 -64.0 + 136.5000 136.7500 -64.0 + 148.5000 142.7500 -64.0 + 153.7500 140.5000 -64.0 + 154.7500 138.5000 -64.0 + 153.7500 136.5000 -64.0 + 153.7500 130.5000 -64.0 + 152.7500 128.5000 -64.0 + 151.5000 129.2500 -64.0 + 151.2500 133.5000 -64.0 + 152.2500 135.5000 -64.0 + 151.5000 137.2500 -64.0 + 149.5000 137.2500 -64.0 + 147.5000 139.2500 -64.0 + 146.7500 138.5000 -64.0 + 146.7500 133.5000 -64.0 + 145.7500 131.5000 -64.0 + 145.7500 127.5000 -64.0 + 142.5000 129.2500 -64.0 + 139.5000 125.2500 -64.0 + 137.5000 124.2500 -64.0 + 132.5000 123.2500 -64.0 + 130.5000 124.2500 -64.0 + 125.5000 124.2500 -64.0 + 126.2500 126.5000 -64.0 + 124.5000 127.2500 -64.0 + 120.7500 124.5000 -64.0 + 119.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 134.7500 53.5000 -64.0 + 135.5000 52.7500 -64.0 + 137.2500 53.5000 -64.0 + 136.5000 54.2500 -64.0 +} -64.0 +{ -64.0 + 148.7500 58.5000 -64.0 + 150.5000 57.7500 -64.0 + 154.2500 60.5000 -64.0 + 157.2500 65.5000 -64.0 + 156.5000 66.2500 -64.0 + 153.5000 66.2500 -64.0 + 151.7500 62.5000 -64.0 + 150.5000 62.2500 -64.0 +} -64.0 +{ -64.0 + 62.7500 63.5000 -64.0 + 64.5000 62.7500 -64.0 + 65.2500 64.5000 -64.0 + 63.5000 65.2500 -64.0 +} -64.0 +{ -64.0 + 151.7500 99.5000 -64.0 + 152.5000 98.7500 -64.0 + 154.2500 101.5000 -64.0 + 155.2500 103.5000 -64.0 + 153.5000 105.2500 -64.0 + 150.7500 101.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 105.5000 -64.0 + 156.5000 104.7500 -64.0 + 158.2500 105.5000 -64.0 + 157.2500 107.5000 -64.0 + 155.5000 108.2500 -64.0 + 153.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 133.7500 126.5000 -64.0 + 135.5000 125.7500 -64.0 + 136.2500 127.5000 -64.0 + 134.5000 128.2500 -64.0 +} -64.0 +{ -64.0 + 132.7500 130.5000 -64.0 + 134.5000 129.7500 -64.0 + 136.2500 131.5000 -64.0 + 135.5000 132.2500 -64.0 + 133.5000 132.2500 -64.0 +} -64.0 +{ -64.0 + 139.7500 131.5000 -64.0 + 140.5000 130.7500 -64.0 + 142.2500 131.5000 -64.0 + 140.5000 133.2500 -64.0 +} -64.0 +{ -64.0 + 171.7500 148.5000 -64.0 + 172.5000 147.7500 -64.0 + 174.2500 148.5000 -64.0 + 175.2500 150.5000 -64.0 + 173.5000 151.2500 -64.0 + 171.7500 150.5000 -64.0 +} -64.0 +{ -64.0 + 99.7500 225.5000 -64.0 + 100.5000 224.7500 -64.0 + 101.2500 225.5000 -64.0 + 100.5000 226.2500 -64.0 +} -64.0 +v 387 z -112.000000 -64.0 +{ -64.0 + 97.2500 40.5000 -64.0 + 95.2500 44.5000 -64.0 + 89.5000 48.2500 -64.0 + 85.5000 48.2500 -64.0 + 83.5000 49.2500 -64.0 + 81.5000 49.2500 -64.0 + 79.5000 48.2500 -64.0 + 77.5000 49.2500 -64.0 + 72.5000 49.2500 -64.0 + 68.5000 51.2500 -64.0 + 66.5000 51.2500 -64.0 + 59.5000 57.2500 -64.0 + 49.5000 75.2500 -64.0 + 49.2500 77.5000 -64.0 + 51.5000 76.7500 -64.0 + 51.7500 75.5000 -64.0 + 59.5000 65.7500 -64.0 + 62.5000 65.7500 -64.0 + 65.5000 66.7500 -64.0 + 68.2500 70.5000 -64.0 + 71.5000 70.7500 -64.0 + 70.7500 69.5000 -64.0 + 72.5000 67.7500 -64.0 + 72.5000 65.2500 -64.0 + 70.5000 68.2500 -64.0 + 68.7500 67.5000 -64.0 + 67.7500 65.5000 -64.0 + 69.5000 64.7500 -64.0 + 69.7500 61.5000 -64.0 + 73.7500 57.5000 -64.0 + 75.7500 53.5000 -64.0 + 78.5000 50.7500 -64.0 + 80.5000 50.7500 -64.0 + 82.5000 51.7500 -64.0 + 86.5000 49.7500 -64.0 + 90.5000 49.7500 -64.0 + 92.5000 48.7500 -64.0 + 94.5000 48.7500 -64.0 + 97.5000 52.7500 -64.0 + 97.7500 50.5000 -64.0 + 95.7500 45.5000 -64.0 + 97.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 43.5000 -64.0 + 121.2500 48.5000 -64.0 + 118.5000 52.2500 -64.0 + 118.2500 56.5000 -64.0 + 119.5000 54.7500 -64.0 + 121.5000 53.7500 -64.0 + 121.7500 50.5000 -64.0 + 125.5000 48.7500 -64.0 + 122.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 51.5000 -64.0 + 133.2500 55.5000 -64.0 + 134.5000 55.7500 -64.0 + 135.5000 53.7500 -64.0 + 138.2500 55.5000 -64.0 + 138.7500 54.5000 -64.0 + 140.5000 53.7500 -64.0 + 141.2500 55.5000 -64.0 + 139.2500 56.5000 -64.0 + 140.2500 58.5000 -64.0 + 142.5000 57.7500 -64.0 + 146.5000 59.7500 -64.0 + 149.2500 63.5000 -64.0 + 149.2500 68.5000 -64.0 + 153.5000 66.7500 -64.0 + 157.2500 69.5000 -64.0 + 169.5000 91.7500 -64.0 + 169.7500 86.5000 -64.0 + 167.7500 82.5000 -64.0 + 167.7500 80.5000 -64.0 + 160.7500 66.5000 -64.0 + 155.7500 58.5000 -64.0 + 151.5000 55.2500 -64.0 + 145.7500 52.5000 -64.0 + 141.5000 52.2500 -64.0 + 139.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 58.5000 -64.0 + 107.2500 60.5000 -64.0 + 107.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 59.5000 -64.0 + 118.2500 64.5000 -64.0 + 119.5000 64.7500 -64.0 + 119.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 62.5000 -64.0 + 135.5000 63.7500 -64.0 + 138.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 82.5000 -64.0 + 105.2500 84.5000 -64.0 + 105.7500 85.5000 -64.0 + 106.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 84.5000 -64.0 + 92.2500 85.5000 -64.0 + 93.7500 84.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 86.5000 -64.0 + 89.2500 87.5000 -64.0 + 91.5000 87.7500 -64.0 +} -64.0 +{ -64.0 + 118.2500 86.5000 -64.0 + 118.2500 87.5000 -64.0 + 119.2500 89.5000 -64.0 + 120.7500 89.5000 -64.0 + 119.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 87.5000 -64.0 + 93.2500 88.5000 -64.0 + 94.5000 88.7500 -64.0 + 94.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 90.5000 -64.0 + 83.2500 91.5000 -64.0 + 85.5000 91.7500 -64.0 + 84.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 60.2500 92.5000 -64.0 + 59.5000 93.2500 -64.0 + 57.5000 94.2500 -64.0 + 52.5000 99.2500 -64.0 + 49.2500 104.5000 -64.0 + 42.2500 118.5000 -64.0 + 37.5000 127.2500 -64.0 + 35.2500 133.5000 -64.0 + 34.5000 135.2500 -64.0 + 31.2500 144.5000 -64.0 + 30.5000 146.2500 -64.0 + 30.2500 156.5000 -64.0 + 31.2500 158.5000 -64.0 + 31.2500 162.5000 -64.0 + 32.2500 164.5000 -64.0 + 32.2500 167.5000 -64.0 + 33.2500 169.5000 -64.0 + 33.2500 172.5000 -64.0 + 34.2500 174.5000 -64.0 + 34.2500 176.5000 -64.0 + 35.2500 178.5000 -64.0 + 35.2500 181.5000 -64.0 + 36.2500 183.5000 -64.0 + 36.2500 185.5000 -64.0 + 42.2500 197.5000 -64.0 + 48.2500 205.5000 -64.0 + 57.2500 216.5000 -64.0 + 58.2500 218.5000 -64.0 + 59.5000 218.7500 -64.0 + 61.2500 220.5000 -64.0 + 65.5000 223.7500 -64.0 + 74.5000 228.7500 -64.0 + 81.5000 229.7500 -64.0 + 83.2500 230.5000 -64.0 + 107.5000 230.7500 -64.0 + 109.5000 229.7500 -64.0 + 120.5000 229.7500 -64.0 + 122.5000 228.7500 -64.0 + 124.5000 228.7500 -64.0 + 135.5000 223.7500 -64.0 + 141.5000 218.7500 -64.0 + 143.5000 217.7500 -64.0 + 147.5000 212.7500 -64.0 + 153.7500 205.5000 -64.0 + 162.7500 193.5000 -64.0 + 163.7500 191.5000 -64.0 + 166.5000 187.7500 -64.0 + 169.7500 179.5000 -64.0 + 170.5000 177.7500 -64.0 + 174.7500 165.5000 -64.0 + 176.5000 161.7500 -64.0 + 176.7500 159.5000 -64.0 + 177.5000 157.7500 -64.0 + 177.7500 149.5000 -64.0 + 176.7500 147.5000 -64.0 + 176.7500 145.5000 -64.0 + 173.7500 139.5000 -64.0 + 169.7500 127.5000 -64.0 + 157.7500 101.5000 -64.0 + 154.7500 98.5000 -64.0 + 151.5000 98.2500 -64.0 + 147.5000 100.2500 -64.0 + 142.5000 100.2500 -64.0 + 137.5000 99.2500 -64.0 + 133.7500 97.5000 -64.0 + 131.5000 99.2500 -64.0 + 130.7500 98.5000 -64.0 + 123.5000 98.2500 -64.0 + 121.5000 100.2500 -64.0 + 121.2500 102.5000 -64.0 + 119.5000 104.2500 -64.0 + 117.5000 104.2500 -64.0 + 115.5000 105.2500 -64.0 + 116.5000 105.7500 -64.0 + 118.2500 106.5000 -64.0 + 119.2500 108.5000 -64.0 + 120.5000 108.7500 -64.0 + 122.5000 106.7500 -64.0 + 122.7500 102.5000 -64.0 + 127.5000 99.7500 -64.0 + 130.5000 99.7500 -64.0 + 133.5000 102.7500 -64.0 + 137.5000 104.7500 -64.0 + 141.2500 106.5000 -64.0 + 144.5000 106.7500 -64.0 + 146.5000 104.7500 -64.0 + 147.2500 105.5000 -64.0 + 148.2500 107.5000 -64.0 + 155.5000 113.7500 -64.0 + 157.5000 114.7500 -64.0 + 164.2500 122.5000 -64.0 + 167.2500 127.5000 -64.0 + 167.2500 129.5000 -64.0 + 168.2500 131.5000 -64.0 + 168.2500 133.5000 -64.0 + 169.2500 135.5000 -64.0 + 169.2500 141.5000 -64.0 + 168.2500 150.5000 -64.0 + 170.2500 154.5000 -64.0 + 170.2500 160.5000 -64.0 + 169.2500 167.5000 -64.0 + 162.2500 181.5000 -64.0 + 161.5000 183.2500 -64.0 + 154.2500 194.5000 -64.0 + 151.2500 200.5000 -64.0 + 144.5000 207.2500 -64.0 + 142.2500 208.5000 -64.0 + 135.5000 213.2500 -64.0 + 131.5000 216.2500 -64.0 + 119.5000 222.2500 -64.0 + 115.5000 222.2500 -64.0 + 113.5000 221.2500 -64.0 + 106.5000 220.2500 -64.0 + 101.5000 218.2500 -64.0 + 97.5000 222.2500 -64.0 + 95.5000 222.2500 -64.0 + 93.5000 223.2500 -64.0 + 88.5000 223.2500 -64.0 + 81.5000 222.2500 -64.0 + 75.5000 219.2500 -64.0 + 66.5000 214.2500 -64.0 + 64.5000 213.2500 -64.0 + 51.7500 200.5000 -64.0 + 48.7500 195.5000 -64.0 + 48.7500 193.5000 -64.0 + 43.7500 185.5000 -64.0 + 39.7500 177.5000 -64.0 + 39.7500 175.5000 -64.0 + 37.7500 171.5000 -64.0 + 37.7500 169.5000 -64.0 + 36.7500 167.5000 -64.0 + 36.7500 161.5000 -64.0 + 37.7500 159.5000 -64.0 + 35.7500 155.5000 -64.0 + 35.7500 145.5000 -64.0 + 36.5000 143.7500 -64.0 + 36.7500 136.5000 -64.0 + 40.7500 128.5000 -64.0 + 41.7500 123.5000 -64.0 + 43.7500 118.5000 -64.0 + 48.5000 113.7500 -64.0 + 50.5000 112.7500 -64.0 + 52.7500 110.5000 -64.0 + 51.7500 108.5000 -64.0 + 51.7500 106.5000 -64.0 + 50.7500 104.5000 -64.0 + 52.5000 102.7500 -64.0 + 54.5000 102.7500 -64.0 + 60.5000 97.7500 -64.0 + 64.2500 99.5000 -64.0 + 72.5000 99.7500 -64.0 + 76.5000 101.7500 -64.0 + 78.2500 102.5000 -64.0 + 82.5000 102.7500 -64.0 + 85.5000 101.7500 -64.0 + 88.2500 105.5000 -64.0 + 88.7500 104.5000 -64.0 + 86.7500 100.5000 -64.0 + 82.5000 99.2500 -64.0 + 80.5000 100.2500 -64.0 + 78.5000 100.2500 -64.0 + 73.7500 96.5000 -64.0 + 67.5000 96.2500 -64.0 + 66.7500 94.5000 -64.0 + 63.5000 93.2500 -64.0 + 61.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 119.5000 -64.0 + 88.5000 121.2500 -64.0 + 86.5000 121.2500 -64.0 + 82.5000 123.2500 -64.0 + 80.5000 122.2500 -64.0 + 79.2500 126.5000 -64.0 + 81.5000 126.7500 -64.0 + 88.7500 123.5000 -64.0 + 90.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 122.5000 -64.0 + 127.5000 125.2500 -64.0 + 126.5000 128.2500 -64.0 + 121.5000 126.2500 -64.0 + 121.2500 127.5000 -64.0 + 124.2500 130.5000 -64.0 + 129.5000 130.7500 -64.0 + 131.5000 129.7500 -64.0 + 136.5000 129.7500 -64.0 + 138.2500 130.5000 -64.0 + 137.5000 132.2500 -64.0 + 133.5000 134.2500 -64.0 + 131.5000 134.2500 -64.0 + 131.2500 137.5000 -64.0 + 134.2500 139.5000 -64.0 + 141.5000 139.7500 -64.0 + 149.2500 144.5000 -64.0 + 153.5000 144.7500 -64.0 + 153.7500 143.5000 -64.0 + 155.5000 142.7500 -64.0 + 156.7500 139.5000 -64.0 + 155.7500 137.5000 -64.0 + 153.5000 137.2500 -64.0 + 153.2500 138.5000 -64.0 + 151.5000 139.2500 -64.0 + 153.2500 142.5000 -64.0 + 152.5000 144.2500 -64.0 + 149.7500 140.5000 -64.0 + 146.7500 138.5000 -64.0 + 146.7500 132.5000 -64.0 + 142.7500 128.5000 -64.0 + 140.7500 124.5000 -64.0 + 140.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 123.5000 -64.0 + 150.2500 124.5000 -64.0 + 151.5000 124.7500 -64.0 + 153.2500 126.5000 -64.0 + 153.5000 130.7500 -64.0 + 155.5000 129.7500 -64.0 + 153.7500 128.5000 -64.0 + 154.5000 126.7500 -64.0 + 154.7500 124.5000 -64.0 + 152.7500 123.5000 -64.0 +} -64.0 +{ -64.0 + 67.7500 54.5000 -64.0 + 68.5000 53.7500 -64.0 + 70.5000 53.7500 -64.0 + 72.2500 54.5000 -64.0 + 68.5000 58.2500 -64.0 + 68.2500 60.5000 -64.0 + 66.5000 61.2500 -64.0 + 66.2500 62.5000 -64.0 + 65.5000 64.2500 -64.0 + 62.5000 64.2500 -64.0 + 60.7500 62.5000 -64.0 + 63.5000 60.7500 -64.0 + 63.7500 57.5000 -64.0 + 65.5000 55.7500 -64.0 +} -64.0 +{ -64.0 + 144.7500 56.5000 -64.0 + 145.5000 55.7500 -64.0 + 150.5000 57.7500 -64.0 + 154.2500 60.5000 -64.0 + 157.2500 65.5000 -64.0 + 156.5000 67.2500 -64.0 + 154.5000 66.2500 -64.0 + 153.7500 64.5000 -64.0 + 150.7500 62.5000 -64.0 + 149.7500 60.5000 -64.0 + 145.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 132.7500 99.5000 -64.0 + 133.5000 98.7500 -64.0 + 135.2500 99.5000 -64.0 + 134.5000 100.2500 -64.0 +} -64.0 +{ -64.0 + 150.7500 101.5000 -64.0 + 152.5000 100.7500 -64.0 + 153.2500 102.5000 -64.0 + 151.5000 103.2500 -64.0 +} -64.0 +{ -64.0 + 156.7500 109.5000 -64.0 + 157.5000 108.7500 -64.0 + 158.2500 109.5000 -64.0 + 157.5000 110.2500 -64.0 +} -64.0 +{ -64.0 + 132.7500 124.5000 -64.0 + 134.5000 123.7500 -64.0 + 136.2500 124.5000 -64.0 + 134.5000 126.2500 -64.0 + 135.2500 127.5000 -64.0 + 134.5000 128.2500 -64.0 + 132.5000 128.2500 -64.0 + 131.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 170.7500 144.5000 -64.0 + 171.5000 143.7500 -64.0 + 173.2500 144.5000 -64.0 + 173.2500 146.5000 -64.0 + 174.2500 148.5000 -64.0 + 174.2500 150.5000 -64.0 + 172.5000 151.2500 -64.0 + 170.7500 150.5000 -64.0 + 170.7500 148.5000 -64.0 + 169.7500 146.5000 -64.0 +} -64.0 +{ -64.0 + 172.7500 153.5000 -64.0 + 173.5000 152.7500 -64.0 + 174.2500 153.5000 -64.0 + 173.5000 154.2500 -64.0 +} -64.0 +v 392 z -114.000000 -64.0 +{ -64.0 + 95.2500 43.5000 -64.0 + 94.5000 45.2500 -64.0 + 88.5000 48.2500 -64.0 + 91.2500 50.5000 -64.0 + 92.5000 49.7500 -64.0 + 96.2500 50.5000 -64.0 + 97.2500 52.5000 -64.0 + 98.7500 52.5000 -64.0 + 95.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 44.5000 -64.0 + 121.2500 47.5000 -64.0 + 118.5000 53.2500 -64.0 + 118.2500 55.5000 -64.0 + 121.5000 53.7500 -64.0 + 120.7500 51.5000 -64.0 + 122.5000 49.7500 -64.0 + 125.5000 49.7500 -64.0 +} -64.0 +{ -64.0 + 78.2500 49.5000 -64.0 + 77.5000 50.2500 -64.0 + 71.5000 50.2500 -64.0 + 65.5000 52.2500 -64.0 + 61.5000 55.2500 -64.0 + 55.2500 63.5000 -64.0 + 46.5000 79.2500 -64.0 + 46.5000 82.7500 -64.0 + 53.5000 73.7500 -64.0 + 57.5000 67.7500 -64.0 + 61.5000 64.7500 -64.0 + 63.5000 64.7500 -64.0 + 67.2500 67.5000 -64.0 + 68.2500 69.5000 -64.0 + 70.2500 70.5000 -64.0 + 70.7500 69.5000 -64.0 + 67.7500 66.5000 -64.0 + 67.7500 60.5000 -64.0 + 64.5000 60.2500 -64.0 + 64.2500 62.5000 -64.0 + 62.5000 63.2500 -64.0 + 60.5000 64.2500 -64.0 + 58.7500 63.5000 -64.0 + 64.5000 56.7500 -64.0 + 68.5000 53.7500 -64.0 + 70.5000 53.7500 -64.0 + 71.2500 55.5000 -64.0 + 72.5000 55.7500 -64.0 + 72.7500 54.5000 -64.0 + 75.5000 51.7500 -64.0 + 77.5000 51.7500 -64.0 + 79.5000 50.7500 -64.0 + 83.5000 50.7500 -64.0 + 84.7500 49.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 52.5000 -64.0 + 136.2500 54.5000 -64.0 + 142.5000 55.7500 -64.0 + 148.5000 59.7500 -64.0 + 147.7500 58.5000 -64.0 + 148.5000 57.7500 -64.0 + 151.5000 58.7500 -64.0 + 157.2500 65.5000 -64.0 + 155.5000 66.2500 -64.0 + 151.7500 63.5000 -64.0 + 150.7500 61.5000 -64.0 + 149.2500 60.5000 -64.0 + 150.2500 62.5000 -64.0 + 149.5000 67.7500 -64.0 + 151.5000 66.7500 -64.0 + 154.5000 66.7500 -64.0 + 158.2500 70.5000 -64.0 + 164.2500 82.5000 -64.0 + 167.2500 85.5000 -64.0 + 167.2500 88.5000 -64.0 + 169.2500 92.5000 -64.0 + 169.2500 98.5000 -64.0 + 170.5000 98.7500 -64.0 + 170.7500 89.5000 -64.0 + 169.7500 87.5000 -64.0 + 169.7500 85.5000 -64.0 + 167.7500 81.5000 -64.0 + 167.7500 79.5000 -64.0 + 165.5000 76.2500 -64.0 + 160.7500 65.5000 -64.0 + 155.7500 58.5000 -64.0 + 150.5000 55.2500 -64.0 +} -64.0 +{ -64.0 + 107.2500 57.5000 -64.0 + 107.2500 65.5000 -64.0 + 108.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 70.2500 58.5000 -64.0 + 70.2500 59.5000 -64.0 + 71.5000 59.7500 -64.0 +} -64.0 +{ -64.0 + 93.2500 84.5000 -64.0 + 91.2500 87.5000 -64.0 + 94.5000 87.7500 -64.0 + 94.7500 84.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 85.5000 -64.0 + 72.2500 86.5000 -64.0 + 73.5000 86.7500 -64.0 + 73.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 87.5000 -64.0 + 118.5000 88.2500 -64.0 + 118.5000 90.7500 -64.0 + 120.5000 89.7500 -64.0 +} -64.0 +{ -64.0 + 81.2500 89.5000 -64.0 + 82.2500 90.5000 -64.0 + 85.5000 90.7500 -64.0 + 83.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 59.2500 94.5000 -64.0 + 57.5000 95.2500 -64.0 + 52.5000 100.2500 -64.0 + 48.5000 107.2500 -64.0 + 48.2500 109.5000 -64.0 + 39.2500 124.5000 -64.0 + 33.2500 139.5000 -64.0 + 30.5000 147.2500 -64.0 + 30.2500 155.5000 -64.0 + 32.2500 161.5000 -64.0 + 33.2500 169.5000 -64.0 + 35.2500 176.5000 -64.0 + 36.2500 183.5000 -64.0 + 39.2500 189.5000 -64.0 + 39.2500 191.5000 -64.0 + 59.2500 218.5000 -64.0 + 60.5000 218.7500 -64.0 + 66.5000 223.7500 -64.0 + 74.5000 227.7500 -64.0 + 81.2500 229.5000 -64.0 + 115.5000 229.7500 -64.0 + 117.5000 228.7500 -64.0 + 121.5000 228.7500 -64.0 + 123.5000 227.7500 -64.0 + 125.5000 227.7500 -64.0 + 133.5000 223.7500 -64.0 + 141.5000 218.7500 -64.0 + 155.7500 201.5000 -64.0 + 157.7500 197.5000 -64.0 + 159.5000 196.7500 -64.0 + 163.7500 190.5000 -64.0 + 169.7500 179.5000 -64.0 + 173.7500 165.5000 -64.0 + 176.7500 159.5000 -64.0 + 177.7500 150.5000 -64.0 + 176.7500 148.5000 -64.0 + 176.7500 146.5000 -64.0 + 170.7500 132.5000 -64.0 + 166.7500 120.5000 -64.0 + 158.7500 103.5000 -64.0 + 155.5000 100.2500 -64.0 + 153.5000 99.2500 -64.0 + 147.5000 102.2500 -64.0 + 135.2500 101.5000 -64.0 + 136.2500 103.5000 -64.0 + 135.5000 104.2500 -64.0 + 130.7500 101.5000 -64.0 + 127.5000 101.2500 -64.0 + 124.5000 102.2500 -64.0 + 120.5000 106.2500 -64.0 + 119.7500 105.5000 -64.0 + 114.5000 105.2500 -64.0 + 114.2500 106.5000 -64.0 + 115.5000 105.7500 -64.0 + 118.5000 106.7500 -64.0 + 121.5000 109.7500 -64.0 + 123.5000 110.7500 -64.0 + 124.7500 106.5000 -64.0 + 127.5000 104.7500 -64.0 + 137.5000 105.7500 -64.0 + 141.2500 108.5000 -64.0 + 143.5000 108.7500 -64.0 + 149.2500 111.5000 -64.0 + 149.2500 113.5000 -64.0 + 144.5000 118.2500 -64.0 + 144.2500 120.5000 -64.0 + 149.2500 125.5000 -64.0 + 151.5000 125.7500 -64.0 + 154.5000 124.7500 -64.0 + 154.7500 123.5000 -64.0 + 156.5000 122.7500 -64.0 + 158.2500 123.5000 -64.0 + 157.5000 124.2500 -64.0 + 157.2500 126.5000 -64.0 + 153.5000 129.2500 -64.0 + 153.2500 131.5000 -64.0 + 156.2500 133.5000 -64.0 + 156.2500 135.5000 -64.0 + 159.5000 132.7500 -64.0 + 157.7500 128.5000 -64.0 + 159.5000 126.7500 -64.0 + 158.7500 125.5000 -64.0 + 159.5000 121.7500 -64.0 + 161.2500 123.5000 -64.0 + 161.2500 125.5000 -64.0 + 163.5000 125.7500 -64.0 + 167.2500 132.5000 -64.0 + 167.2500 135.5000 -64.0 + 170.2500 137.5000 -64.0 + 167.5000 140.2500 -64.0 + 167.2500 145.5000 -64.0 + 165.5000 147.2500 -64.0 + 165.2500 149.5000 -64.0 + 169.2500 155.5000 -64.0 + 169.2500 162.5000 -64.0 + 167.2500 170.5000 -64.0 + 162.2500 178.5000 -64.0 + 161.2500 183.5000 -64.0 + 158.5000 186.2500 -64.0 + 148.2500 202.5000 -64.0 + 135.5000 213.2500 -64.0 + 129.2500 216.5000 -64.0 + 122.5000 221.2500 -64.0 + 119.5000 221.2500 -64.0 + 117.5000 222.2500 -64.0 + 112.5000 221.2500 -64.0 + 108.7500 219.5000 -64.0 + 105.5000 219.2500 -64.0 + 101.5000 217.2500 -64.0 + 101.2500 218.5000 -64.0 + 96.5000 222.2500 -64.0 + 83.5000 222.2500 -64.0 + 78.5000 220.2500 -64.0 + 65.5000 213.2500 -64.0 + 51.5000 199.2500 -64.0 + 47.7500 188.5000 -64.0 + 43.7500 184.5000 -64.0 + 39.7500 176.5000 -64.0 + 39.7500 174.5000 -64.0 + 37.7500 170.5000 -64.0 + 37.7500 157.5000 -64.0 + 36.7500 155.5000 -64.0 + 36.7500 143.5000 -64.0 + 37.7500 141.5000 -64.0 + 36.7500 139.5000 -64.0 + 38.7500 135.5000 -64.0 + 42.7500 121.5000 -64.0 + 47.5000 115.7500 -64.0 + 55.5000 109.7500 -64.0 + 53.7500 106.5000 -64.0 + 52.5000 107.2500 -64.0 + 50.7500 106.5000 -64.0 + 53.5000 102.7500 -64.0 + 54.2500 103.5000 -64.0 + 54.2500 105.5000 -64.0 + 58.7500 102.5000 -64.0 + 59.7500 100.5000 -64.0 + 61.5000 99.7500 -64.0 + 63.2500 100.5000 -64.0 + 71.5000 100.7500 -64.0 + 73.2500 102.5000 -64.0 + 75.5000 102.7500 -64.0 + 74.7500 100.5000 -64.0 + 67.7500 98.5000 -64.0 + 68.5000 96.7500 -64.0 + 67.7500 95.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 94.5000 -64.0 + 96.5000 95.2500 -64.0 + 97.2500 96.5000 -64.0 + 98.7500 96.5000 -64.0 + 99.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 95.5000 -64.0 + 111.5000 97.7500 -64.0 + 113.5000 96.7500 -64.0 + 111.7500 95.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 101.5000 -64.0 + 79.5000 103.2500 -64.0 + 76.2500 103.5000 -64.0 + 78.5000 106.7500 -64.0 + 82.5000 104.7500 -64.0 + 84.5000 104.7500 -64.0 + 88.2500 107.5000 -64.0 + 88.7500 106.5000 -64.0 + 83.7500 101.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 117.5000 -64.0 + 132.2500 118.5000 -64.0 + 133.5000 119.7500 -64.0 + 133.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 120.5000 -64.0 + 88.5000 122.2500 -64.0 + 83.5000 125.2500 -64.0 + 77.5000 125.2500 -64.0 + 75.7500 124.5000 -64.0 + 76.5000 123.7500 -64.0 + 75.5000 123.2500 -64.0 + 75.2500 124.5000 -64.0 + 68.2500 128.5000 -64.0 + 69.2500 130.5000 -64.0 + 77.2500 132.5000 -64.0 + 79.5000 131.7500 -64.0 + 79.7500 130.5000 -64.0 + 82.5000 127.7500 -64.0 + 88.5000 124.7500 -64.0 + 91.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 120.5000 -64.0 + 142.2500 121.5000 -64.0 + 142.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 122.5000 -64.0 + 119.2500 125.5000 -64.0 + 120.7500 125.5000 -64.0 + 119.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 122.5000 -64.0 + 132.5000 123.2500 -64.0 + 130.5000 123.2500 -64.0 + 124.5000 128.2500 -64.0 + 122.5000 127.2500 -64.0 + 122.2500 128.5000 -64.0 + 123.5000 129.7500 -64.0 + 125.5000 130.7500 -64.0 + 127.2500 131.5000 -64.0 + 130.5000 131.7500 -64.0 + 132.2500 132.5000 -64.0 + 132.2500 137.5000 -64.0 + 133.5000 138.7500 -64.0 + 139.5000 141.7500 -64.0 + 141.2500 142.5000 -64.0 + 142.5000 141.7500 -64.0 + 144.5000 141.7500 -64.0 + 152.2500 147.5000 -64.0 + 160.5000 147.7500 -64.0 + 160.7500 145.5000 -64.0 + 157.7500 142.5000 -64.0 + 155.5000 142.2500 -64.0 + 155.2500 143.5000 -64.0 + 154.5000 145.2500 -64.0 + 153.7500 144.5000 -64.0 + 152.7500 142.5000 -64.0 + 147.7500 139.5000 -64.0 + 147.7500 135.5000 -64.0 + 148.5000 133.7500 -64.0 + 147.5000 132.2500 -64.0 + 145.5000 131.2500 -64.0 + 143.7500 130.5000 -64.0 + 141.7500 126.5000 -64.0 + 140.5000 124.2500 -64.0 + 138.5000 123.2500 -64.0 + 136.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 147.2500 127.5000 -64.0 + 148.2500 129.5000 -64.0 + 148.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 61.2500 130.5000 -64.0 + 60.2500 133.5000 -64.0 + 61.2500 135.5000 -64.0 + 64.5000 135.7500 -64.0 + 66.5000 132.7500 -64.0 + 65.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 150.7500 103.5000 -64.0 + 151.5000 102.7500 -64.0 + 153.5000 102.7500 -64.0 + 155.2500 103.5000 -64.0 + 155.2500 106.5000 -64.0 + 153.5000 108.2500 -64.0 + 151.5000 109.2500 -64.0 + 149.7500 107.5000 -64.0 + 150.5000 105.7500 -64.0 +} -64.0 +{ -64.0 + 154.7500 108.5000 -64.0 + 155.5000 107.7500 -64.0 + 157.2500 108.5000 -64.0 + 158.2500 110.5000 -64.0 + 157.5000 112.2500 -64.0 + 155.5000 112.2500 -64.0 + 153.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 131.7500 125.5000 -64.0 + 133.5000 124.7500 -64.0 + 134.2500 126.5000 -64.0 + 133.5000 128.2500 -64.0 + 131.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 136.7500 126.5000 -64.0 + 137.5000 125.7500 -64.0 + 139.2500 126.5000 -64.0 + 138.5000 128.2500 -64.0 + 138.2500 130.5000 -64.0 + 136.5000 131.2500 -64.0 + 134.7500 130.5000 -64.0 + 136.5000 128.7500 -64.0 +} -64.0 +{ -64.0 + 139.7500 130.5000 -64.0 + 141.5000 129.7500 -64.0 + 143.2500 131.5000 -64.0 + 140.5000 135.2500 -64.0 + 139.7500 134.5000 -64.0 +} -64.0 +{ -64.0 + 168.7500 140.5000 -64.0 + 169.5000 139.7500 -64.0 + 170.2500 140.5000 -64.0 + 169.5000 142.2500 -64.0 +} -64.0 +{ -64.0 + 146.7500 141.5000 -64.0 + 147.5000 140.7500 -64.0 + 150.2500 142.5000 -64.0 + 148.5000 143.2500 -64.0 +} -64.0 +{ -64.0 + 168.7500 144.5000 -64.0 + 170.5000 143.7500 -64.0 + 172.2500 144.5000 -64.0 + 174.2500 148.5000 -64.0 + 173.5000 150.2500 -64.0 + 174.2500 151.5000 -64.0 + 174.2500 154.5000 -64.0 + 172.5000 155.2500 -64.0 + 169.7500 152.5000 -64.0 +} -64.0 +v 440 z -116.000000 -64.0 +{ -64.0 + 96.2500 42.5000 -64.0 + 94.5000 45.2500 -64.0 + 90.5000 48.2500 -64.0 + 92.2500 49.5000 -64.0 + 97.5000 49.7500 -64.0 + 96.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 43.5000 -64.0 + 120.2500 49.5000 -64.0 + 121.2500 51.5000 -64.0 + 122.5000 49.7500 -64.0 + 125.5000 49.7500 -64.0 + 121.7500 45.5000 -64.0 + 121.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 51.5000 -64.0 + 71.5000 52.2500 -64.0 + 66.5000 52.2500 -64.0 + 62.5000 55.2500 -64.0 + 60.5000 56.2500 -64.0 + 55.2500 62.5000 -64.0 + 44.2500 82.5000 -64.0 + 43.2500 87.5000 -64.0 + 43.7500 88.5000 -64.0 + 47.7500 80.5000 -64.0 + 52.7500 74.5000 -64.0 + 53.7500 72.5000 -64.0 + 58.5000 66.7500 -64.0 + 62.5000 63.7500 -64.0 + 65.5000 64.7500 -64.0 + 68.2500 67.5000 -64.0 + 69.2500 69.5000 -64.0 + 70.5000 69.7500 -64.0 + 68.7500 66.5000 -64.0 + 68.7500 61.5000 -64.0 + 67.5000 58.2500 -64.0 + 61.5000 63.2500 -64.0 + 59.7500 62.5000 -64.0 + 59.7500 60.5000 -64.0 + 64.5000 56.7500 -64.0 + 68.5000 54.7500 -64.0 + 70.2500 55.5000 -64.0 + 72.5000 53.7500 -64.0 + 74.5000 52.7500 -64.0 + 77.7500 53.5000 -64.0 + 78.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 54.5000 -64.0 + 139.5000 54.7500 -64.0 + 141.5000 56.7500 -64.0 + 143.5000 55.7500 -64.0 + 145.5000 56.7500 -64.0 + 148.2500 59.5000 -64.0 + 149.5000 57.7500 -64.0 + 152.5000 59.7500 -64.0 + 157.2500 64.5000 -64.0 + 156.5000 66.2500 -64.0 + 151.5000 62.2500 -64.0 + 150.2500 66.5000 -64.0 + 156.5000 67.7500 -64.0 + 159.2500 70.5000 -64.0 + 167.2500 88.5000 -64.0 + 167.2500 90.5000 -64.0 + 168.2500 92.5000 -64.0 + 168.2500 99.5000 -64.0 + 166.5000 103.2500 -64.0 + 166.2500 108.5000 -64.0 + 164.5000 110.2500 -64.0 + 159.7500 105.5000 -64.0 + 158.7500 103.5000 -64.0 + 154.5000 100.2500 -64.0 + 145.5000 105.2500 -64.0 + 143.5000 105.2500 -64.0 + 141.5000 106.2500 -64.0 + 138.5000 105.2500 -64.0 + 133.5000 100.2500 -64.0 + 127.5000 104.2500 -64.0 + 124.5000 104.2500 -64.0 + 124.2500 107.5000 -64.0 + 122.5000 108.2500 -64.0 + 119.5000 105.2500 -64.0 + 117.5000 104.2500 -64.0 + 116.2500 107.5000 -64.0 + 121.5000 108.7500 -64.0 + 125.5000 112.7500 -64.0 + 127.5000 113.7500 -64.0 + 128.5000 111.7500 -64.0 + 126.7500 108.5000 -64.0 + 126.7500 106.5000 -64.0 + 128.5000 105.7500 -64.0 + 130.2500 106.5000 -64.0 + 133.2500 110.5000 -64.0 + 132.5000 111.2500 -64.0 + 132.2500 113.5000 -64.0 + 133.5000 113.7500 -64.0 + 136.5000 108.7500 -64.0 + 138.2500 109.5000 -64.0 + 137.2500 111.5000 -64.0 + 138.2500 113.5000 -64.0 + 138.2500 115.5000 -64.0 + 141.2500 116.5000 -64.0 + 140.5000 117.2500 -64.0 + 137.5000 117.2500 -64.0 + 135.7500 115.5000 -64.0 + 135.2500 116.5000 -64.0 + 142.2500 122.5000 -64.0 + 152.5000 125.7500 -64.0 + 156.5000 121.7500 -64.0 + 158.2500 124.5000 -64.0 + 157.5000 125.2500 -64.0 + 155.5000 124.2500 -64.0 + 154.2500 130.5000 -64.0 + 152.5000 131.2500 -64.0 + 150.7500 129.5000 -64.0 + 149.5000 132.2500 -64.0 + 143.5000 132.2500 -64.0 + 141.7500 129.5000 -64.0 + 141.7500 127.5000 -64.0 + 136.7500 122.5000 -64.0 + 134.5000 124.2500 -64.0 + 130.5000 124.2500 -64.0 + 129.5000 126.2500 -64.0 + 127.5000 127.2500 -64.0 + 125.7500 125.5000 -64.0 + 124.2500 125.5000 -64.0 + 125.2500 127.5000 -64.0 + 124.5000 128.2500 -64.0 + 120.7500 125.5000 -64.0 + 120.7500 123.5000 -64.0 + 119.5000 123.2500 -64.0 + 119.2500 125.5000 -64.0 + 122.2500 128.5000 -64.0 + 128.5000 132.7500 -64.0 + 134.2500 139.5000 -64.0 + 138.5000 140.7500 -64.0 + 142.2500 144.5000 -64.0 + 145.5000 144.7500 -64.0 + 153.2500 148.5000 -64.0 + 159.5000 148.7500 -64.0 + 162.5000 149.7500 -64.0 + 168.2500 156.5000 -64.0 + 168.2500 162.5000 -64.0 + 167.2500 167.5000 -64.0 + 164.2500 173.5000 -64.0 + 161.5000 177.2500 -64.0 + 160.2500 183.5000 -64.0 + 156.5000 187.2500 -64.0 + 150.2500 198.5000 -64.0 + 143.5000 206.2500 -64.0 + 131.5000 215.2500 -64.0 + 120.5000 221.2500 -64.0 + 112.5000 221.2500 -64.0 + 108.7500 218.5000 -64.0 + 104.5000 218.2500 -64.0 + 102.7500 216.5000 -64.0 + 99.5000 219.2500 -64.0 + 93.5000 222.2500 -64.0 + 82.5000 221.2500 -64.0 + 74.7500 217.5000 -64.0 + 64.5000 211.2500 -64.0 + 58.7500 205.5000 -64.0 + 57.5000 203.2500 -64.0 + 53.7500 200.5000 -64.0 + 50.7500 196.5000 -64.0 + 50.7500 193.5000 -64.0 + 48.7500 187.5000 -64.0 + 43.7500 183.5000 -64.0 + 37.7500 169.5000 -64.0 + 38.7500 157.5000 -64.0 + 37.7500 155.5000 -64.0 + 37.7500 146.5000 -64.0 + 38.7500 143.5000 -64.0 + 37.5000 143.2500 -64.0 + 36.7500 141.5000 -64.0 + 39.5000 139.7500 -64.0 + 40.7500 129.5000 -64.0 + 43.7500 122.5000 -64.0 + 47.5000 118.7500 -64.0 + 49.5000 117.7500 -64.0 + 49.7500 116.5000 -64.0 + 56.5000 110.7500 -64.0 + 56.7500 107.5000 -64.0 + 61.5000 101.7500 -64.0 + 63.5000 102.7500 -64.0 + 68.2500 107.5000 -64.0 + 70.5000 107.7500 -64.0 + 72.5000 105.7500 -64.0 + 77.5000 108.7500 -64.0 + 81.5000 105.7500 -64.0 + 83.5000 105.7500 -64.0 + 84.2500 107.5000 -64.0 + 86.5000 109.7500 -64.0 + 91.7500 107.5000 -64.0 + 89.5000 107.2500 -64.0 + 81.7500 102.5000 -64.0 + 79.2500 104.5000 -64.0 + 78.2500 106.5000 -64.0 + 76.5000 107.2500 -64.0 + 75.7500 105.5000 -64.0 + 74.5000 105.2500 -64.0 + 71.7500 101.5000 -64.0 + 72.5000 100.2500 -64.0 + 69.5000 101.2500 -64.0 + 68.7500 99.5000 -64.0 + 67.5000 99.2500 -64.0 + 67.2500 100.5000 -64.0 + 65.5000 101.2500 -64.0 + 64.7500 99.5000 -64.0 + 66.5000 98.7500 -64.0 + 66.7500 97.5000 -64.0 + 58.5000 96.2500 -64.0 + 55.2500 97.5000 -64.0 + 41.2500 120.5000 -64.0 + 32.2500 142.5000 -64.0 + 30.2500 152.5000 -64.0 + 31.2500 154.5000 -64.0 + 31.2500 158.5000 -64.0 + 33.2500 162.5000 -64.0 + 33.2500 166.5000 -64.0 + 35.2500 173.5000 -64.0 + 36.2500 180.5000 -64.0 + 41.2500 193.5000 -64.0 + 44.2500 196.5000 -64.0 + 50.5000 205.7500 -64.0 + 58.2500 215.5000 -64.0 + 65.5000 221.7500 -64.0 + 74.5000 226.7500 -64.0 + 81.2500 228.5000 -64.0 + 116.5000 228.7500 -64.0 + 118.5000 227.7500 -64.0 + 122.5000 227.7500 -64.0 + 132.5000 223.7500 -64.0 + 142.5000 216.7500 -64.0 + 154.7500 201.5000 -64.0 + 156.7500 197.5000 -64.0 + 160.7500 193.5000 -64.0 + 168.7500 180.5000 -64.0 + 172.7500 166.5000 -64.0 + 175.5000 160.7500 -64.0 + 176.5000 156.7500 -64.0 + 176.7500 146.5000 -64.0 + 169.7500 132.5000 -64.0 + 169.7500 130.5000 -64.0 + 167.7500 126.5000 -64.0 + 167.7500 124.5000 -64.0 + 166.7500 122.5000 -64.0 + 166.7500 118.5000 -64.0 + 170.5000 104.7500 -64.0 + 170.7500 90.5000 -64.0 + 169.7500 88.5000 -64.0 + 169.7500 86.5000 -64.0 + 167.7500 82.5000 -64.0 + 167.7500 80.5000 -64.0 + 164.7500 74.5000 -64.0 + 162.7500 68.5000 -64.0 + 157.7500 60.5000 -64.0 + 151.7500 56.5000 -64.0 + 148.5000 56.2500 -64.0 + 143.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 58.5000 -64.0 + 107.5000 64.7500 -64.0 + 107.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 145.2500 71.5000 -64.0 + 144.2500 73.5000 -64.0 + 145.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 85.5000 -64.0 + 91.2500 87.5000 -64.0 + 93.5000 87.7500 -64.0 +} -64.0 +{ -64.0 + 119.2500 88.5000 -64.0 + 118.5000 90.2500 -64.0 + 116.5000 91.2500 -64.0 + 115.2500 97.5000 -64.0 + 116.5000 96.7500 -64.0 + 117.7500 92.5000 -64.0 + 119.7500 91.5000 -64.0 + 120.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 89.5000 -64.0 + 83.2500 90.5000 -64.0 + 85.5000 90.7500 -64.0 + 85.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 91.5000 -64.0 + 104.2500 93.5000 -64.0 + 101.5000 96.2500 -64.0 + 98.5000 96.2500 -64.0 + 99.2500 97.5000 -64.0 + 101.5000 96.7500 -64.0 + 102.2500 98.5000 -64.0 + 103.5000 97.7500 -64.0 + 103.7500 95.5000 -64.0 + 105.5000 94.7500 -64.0 + 111.2500 101.5000 -64.0 + 112.7500 101.5000 -64.0 + 111.7500 99.5000 -64.0 + 111.7500 97.5000 -64.0 + 109.7500 96.5000 -64.0 + 108.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 97.5000 -64.0 + 96.5000 98.7500 -64.0 + 100.5000 100.7500 -64.0 + 101.7500 99.5000 -64.0 + 98.5000 99.2500 -64.0 +} -64.0 +{ -64.0 + 90.2500 120.5000 -64.0 + 90.2500 121.5000 -64.0 + 84.5000 126.2500 -64.0 + 82.5000 126.2500 -64.0 + 78.7500 124.5000 -64.0 + 79.5000 123.7500 -64.0 + 81.5000 123.7500 -64.0 + 81.5000 122.2500 -64.0 + 79.5000 123.2500 -64.0 + 75.7500 121.5000 -64.0 + 73.5000 121.2500 -64.0 + 68.5000 123.2500 -64.0 + 65.5000 127.2500 -64.0 + 62.5000 127.2500 -64.0 + 60.5000 129.2500 -64.0 + 60.2500 131.5000 -64.0 + 63.2500 137.5000 -64.0 + 61.5000 138.2500 -64.0 + 62.5000 138.7500 -64.0 + 64.5000 137.7500 -64.0 + 66.5000 137.7500 -64.0 + 70.5000 135.7500 -64.0 + 72.5000 135.7500 -64.0 + 75.5000 136.7500 -64.0 + 77.7500 134.5000 -64.0 + 78.7500 132.5000 -64.0 + 79.5000 130.7500 -64.0 + 78.7500 129.5000 -64.0 + 80.5000 127.7500 -64.0 + 85.5000 127.7500 -64.0 + 87.5000 125.7500 -64.0 + 89.5000 124.7500 -64.0 + 91.5000 121.7500 -64.0 +} -64.0 +{ -64.0 + 60.2500 122.5000 -64.0 + 60.2500 123.5000 -64.0 + 61.5000 123.7500 -64.0 +} -64.0 +{ -64.0 + 55.2500 126.5000 -64.0 + 53.5000 129.2500 -64.0 + 54.2500 130.5000 -64.0 + 55.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 58.2500 136.5000 -64.0 + 59.2500 137.5000 -64.0 + 59.7500 136.5000 -64.0 +} -64.0 +{ -64.0 + 65.7500 61.5000 -64.0 + 66.5000 60.7500 -64.0 + 67.2500 61.5000 -64.0 + 66.5000 62.2500 -64.0 +} -64.0 +{ -64.0 + 59.5000 97.7500 -64.0 + 60.2500 98.5000 -64.0 + 58.5000 100.2500 -64.0 + 57.7500 99.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 103.5000 -64.0 + 154.5000 102.7500 -64.0 + 156.2500 104.5000 -64.0 + 155.5000 108.2500 -64.0 + 158.2500 109.5000 -64.0 + 151.5000 113.2500 -64.0 + 149.7500 112.5000 -64.0 + 147.7500 108.5000 -64.0 + 150.5000 104.7500 -64.0 +} -64.0 +{ -64.0 + 52.7500 104.5000 -64.0 + 53.5000 103.7500 -64.0 + 55.2500 104.5000 -64.0 + 54.5000 105.2500 -64.0 + 55.2500 106.5000 -64.0 + 55.2500 108.5000 -64.0 + 53.5000 110.2500 -64.0 + 51.7500 109.5000 -64.0 + 52.5000 107.7500 -64.0 +} -64.0 +{ -64.0 + 140.7500 107.5000 -64.0 + 141.5000 106.7500 -64.0 + 143.2500 107.5000 -64.0 + 141.5000 109.2500 -64.0 +} -64.0 +{ -64.0 + 152.7500 113.5000 -64.0 + 153.5000 112.7500 -64.0 + 158.5000 112.7500 -64.0 + 160.2500 113.5000 -64.0 + 161.2500 115.5000 -64.0 + 160.5000 117.2500 -64.0 + 154.5000 120.2500 -64.0 + 152.5000 120.2500 -64.0 + 148.5000 123.2500 -64.0 + 146.7500 122.5000 -64.0 + 147.7500 117.5000 -64.0 + 148.5000 115.7500 -64.0 +} -64.0 +{ -64.0 + 132.7500 127.5000 -64.0 + 133.5000 126.7500 -64.0 + 135.2500 128.5000 -64.0 + 134.5000 129.2500 -64.0 +} -64.0 +{ -64.0 + 163.7500 130.5000 -64.0 + 165.5000 129.7500 -64.0 + 167.2500 131.5000 -64.0 + 167.2500 133.5000 -64.0 + 170.2500 137.5000 -64.0 + 167.5000 140.2500 -64.0 + 165.5000 140.2500 -64.0 + 165.2500 141.5000 -64.0 + 167.2500 142.5000 -64.0 + 168.5000 144.7500 -64.0 + 168.7500 142.5000 -64.0 + 170.5000 140.7500 -64.0 + 173.2500 143.5000 -64.0 + 172.2500 145.5000 -64.0 + 173.2500 147.5000 -64.0 + 171.5000 152.2500 -64.0 + 169.5000 152.2500 -64.0 + 165.7500 149.5000 -64.0 + 167.5000 147.7500 -64.0 + 167.7500 145.5000 -64.0 + 165.5000 146.2500 -64.0 + 163.7500 145.5000 -64.0 + 161.5000 146.2500 -64.0 + 161.2500 147.5000 -64.0 + 159.5000 148.2500 -64.0 + 157.7500 146.5000 -64.0 + 158.5000 145.7500 -64.0 + 160.5000 145.7500 -64.0 + 159.7500 144.5000 -64.0 + 154.5000 144.2500 -64.0 + 147.7500 138.5000 -64.0 + 147.7500 136.5000 -64.0 + 150.7500 132.5000 -64.0 + 152.5000 131.7500 -64.0 + 156.2500 134.5000 -64.0 + 155.5000 136.2500 -64.0 + 158.2500 139.5000 -64.0 + 160.2500 143.5000 -64.0 + 161.7500 142.5000 -64.0 + 160.7500 140.5000 -64.0 + 161.7500 137.5000 -64.0 + 158.7500 134.5000 -64.0 + 159.5000 132.7500 -64.0 + 161.5000 132.7500 -64.0 +} -64.0 +{ -64.0 + 136.7500 131.5000 -64.0 + 137.5000 130.7500 -64.0 + 138.2500 131.5000 -64.0 + 137.5000 132.2500 -64.0 +} -64.0 +{ -64.0 + 169.7500 154.5000 -64.0 + 171.5000 153.7500 -64.0 + 173.2500 155.5000 -64.0 + 171.5000 157.2500 -64.0 + 169.7500 156.5000 -64.0 +} -64.0 +v 505 z -118.000000 -64.0 +{ -64.0 + 96.2500 43.5000 -64.0 + 91.5000 48.2500 -64.0 + 92.2500 49.5000 -64.0 + 94.5000 49.7500 -64.0 + 96.7500 47.5000 -64.0 + 95.7500 45.5000 -64.0 + 96.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 46.5000 -64.0 + 122.2500 50.5000 -64.0 + 123.7500 50.5000 -64.0 + 124.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 52.5000 -64.0 + 68.5000 54.2500 -64.0 + 66.5000 53.2500 -64.0 + 58.5000 57.2500 -64.0 + 54.2500 63.5000 -64.0 + 43.5000 84.2500 -64.0 + 42.5000 88.2500 -64.0 + 42.2500 96.5000 -64.0 + 42.7500 97.5000 -64.0 + 46.7500 83.5000 -64.0 + 57.5000 66.7500 -64.0 + 61.5000 63.7500 -64.0 + 64.5000 63.7500 -64.0 + 68.7500 66.5000 -64.0 + 67.7500 63.5000 -64.0 + 64.7500 60.5000 -64.0 + 59.5000 63.2500 -64.0 + 58.7500 62.5000 -64.0 + 59.5000 61.7500 -64.0 + 59.7500 59.5000 -64.0 + 65.5000 55.7500 -64.0 + 69.2500 56.5000 -64.0 + 73.5000 52.7500 -64.0 + 77.7500 52.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 55.5000 -64.0 + 140.5000 56.2500 -64.0 + 137.5000 56.2500 -64.0 + 138.2500 58.5000 -64.0 + 139.5000 58.7500 -64.0 + 141.5000 56.7500 -64.0 + 145.5000 56.7500 -64.0 + 150.2500 60.5000 -64.0 + 151.5000 58.7500 -64.0 + 156.2500 62.5000 -64.0 + 154.5000 63.2500 -64.0 + 152.7500 62.5000 -64.0 + 151.2500 64.5000 -64.0 + 150.2500 66.5000 -64.0 + 155.5000 66.7500 -64.0 + 159.2500 70.5000 -64.0 + 163.2500 78.5000 -64.0 + 163.2500 80.5000 -64.0 + 165.2500 84.5000 -64.0 + 165.2500 86.5000 -64.0 + 168.2500 92.5000 -64.0 + 169.5000 90.7500 -64.0 + 169.7500 88.5000 -64.0 + 168.7500 86.5000 -64.0 + 168.7500 84.5000 -64.0 + 167.7500 82.5000 -64.0 + 167.7500 80.5000 -64.0 + 163.7500 72.5000 -64.0 + 163.7500 70.5000 -64.0 + 161.7500 65.5000 -64.0 + 156.5000 59.2500 -64.0 + 152.5000 57.2500 -64.0 + 150.7500 56.5000 -64.0 + 146.5000 56.2500 -64.0 + 144.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 57.5000 -64.0 + 67.2500 58.5000 -64.0 + 68.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 145.2500 70.5000 -64.0 + 144.2500 72.5000 -64.0 + 145.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 89.5000 -64.0 + 127.2500 90.5000 -64.0 + 129.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 90.5000 -64.0 + 95.2500 91.5000 -64.0 + 95.5000 93.7500 -64.0 + 95.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 91.5000 -64.0 + 102.5000 95.2500 -64.0 + 102.2500 97.5000 -64.0 + 100.5000 99.2500 -64.0 + 98.2500 99.5000 -64.0 + 99.2500 102.5000 -64.0 + 104.5000 98.7500 -64.0 + 107.2500 100.5000 -64.0 + 108.2500 102.5000 -64.0 + 109.5000 102.7500 -64.0 + 109.7500 98.5000 -64.0 + 107.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 92.5000 -64.0 + 117.5000 93.2500 -64.0 + 117.5000 95.7500 -64.0 + 119.5000 94.7500 -64.0 +} -64.0 +{ -64.0 + 168.2500 94.5000 -64.0 + 168.2500 95.5000 -64.0 + 167.2500 98.5000 -64.0 + 164.2500 102.5000 -64.0 + 163.2500 104.5000 -64.0 + 161.5000 105.2500 -64.0 + 157.7500 101.5000 -64.0 + 154.5000 101.2500 -64.0 + 152.5000 103.2500 -64.0 + 147.5000 106.2500 -64.0 + 145.5000 106.2500 -64.0 + 143.5000 107.2500 -64.0 + 141.5000 107.2500 -64.0 + 134.5000 106.2500 -64.0 + 132.2500 109.5000 -64.0 + 131.2500 111.5000 -64.0 + 133.2500 112.5000 -64.0 + 133.2500 115.5000 -64.0 + 137.2500 119.5000 -64.0 + 142.2500 122.5000 -64.0 + 144.5000 122.7500 -64.0 + 146.5000 123.7500 -64.0 + 151.5000 124.7500 -64.0 + 156.5000 126.7500 -64.0 + 158.2500 130.5000 -64.0 + 156.5000 132.2500 -64.0 + 153.5000 132.2500 -64.0 + 149.7500 130.5000 -64.0 + 147.5000 131.2500 -64.0 + 147.2500 132.5000 -64.0 + 145.5000 133.2500 -64.0 + 143.5000 134.2500 -64.0 + 141.7500 132.5000 -64.0 + 141.7500 128.5000 -64.0 + 138.7500 125.5000 -64.0 + 138.7500 123.5000 -64.0 + 137.5000 124.2500 -64.0 + 135.5000 125.2500 -64.0 + 130.5000 124.2500 -64.0 + 132.2500 126.5000 -64.0 + 131.5000 127.2500 -64.0 + 129.5000 127.2500 -64.0 + 129.2500 128.5000 -64.0 + 128.5000 130.2500 -64.0 + 124.7500 128.5000 -64.0 + 123.7500 126.5000 -64.0 + 120.5000 125.2500 -64.0 + 120.2500 126.5000 -64.0 + 131.2500 136.5000 -64.0 + 136.2500 139.5000 -64.0 + 138.5000 139.7500 -64.0 + 141.2500 142.5000 -64.0 + 151.2500 148.5000 -64.0 + 157.5000 149.7500 -64.0 + 163.2500 152.5000 -64.0 + 164.2500 154.5000 -64.0 + 165.7500 155.5000 -64.0 + 164.7500 153.5000 -64.0 + 165.5000 151.7500 -64.0 + 167.5000 150.7500 -64.0 + 165.7500 149.5000 -64.0 + 164.7500 147.5000 -64.0 + 163.5000 147.2500 -64.0 + 164.2500 148.5000 -64.0 + 163.5000 149.2500 -64.0 + 160.5000 149.2500 -64.0 + 158.7500 147.5000 -64.0 + 157.5000 145.2500 -64.0 + 151.5000 142.2500 -64.0 + 148.7500 138.5000 -64.0 + 148.7500 136.5000 -64.0 + 150.5000 135.7500 -64.0 + 150.7500 134.5000 -64.0 + 152.5000 132.7500 -64.0 + 156.2500 135.5000 -64.0 + 156.2500 137.5000 -64.0 + 158.2500 138.5000 -64.0 + 160.2500 142.5000 -64.0 + 163.5000 142.7500 -64.0 + 160.7500 140.5000 -64.0 + 160.7500 138.5000 -64.0 + 157.7500 134.5000 -64.0 + 159.5000 132.7500 -64.0 + 161.5000 132.7500 -64.0 + 164.2500 135.5000 -64.0 + 166.5000 133.7500 -64.0 + 170.2500 137.5000 -64.0 + 169.2500 138.5000 -64.0 + 168.2500 140.5000 -64.0 + 167.5000 142.2500 -64.0 + 165.5000 142.2500 -64.0 + 167.2500 144.5000 -64.0 + 166.5000 145.7500 -64.0 + 168.5000 144.7500 -64.0 + 169.5000 145.7500 -64.0 + 171.5000 146.7500 -64.0 + 173.2500 150.5000 -64.0 + 172.5000 152.2500 -64.0 + 172.2500 155.5000 -64.0 + 171.5000 157.2500 -64.0 + 166.5000 157.2500 -64.0 + 166.2500 162.5000 -64.0 + 165.2500 169.5000 -64.0 + 163.2500 173.5000 -64.0 + 160.5000 177.2500 -64.0 + 160.2500 179.5000 -64.0 + 159.2500 182.5000 -64.0 + 154.2500 188.5000 -64.0 + 150.2500 196.5000 -64.0 + 143.2500 205.5000 -64.0 + 133.5000 213.2500 -64.0 + 131.2500 214.5000 -64.0 + 124.5000 219.2500 -64.0 + 121.5000 219.2500 -64.0 + 117.5000 221.2500 -64.0 + 114.5000 221.2500 -64.0 + 108.7500 218.5000 -64.0 + 106.5000 218.2500 -64.0 + 102.7500 215.5000 -64.0 + 98.5000 219.2500 -64.0 + 94.5000 221.2500 -64.0 + 84.5000 221.2500 -64.0 + 81.5000 220.2500 -64.0 + 77.7500 218.5000 -64.0 + 65.5000 210.2500 -64.0 + 63.5000 209.2500 -64.0 + 54.7500 199.5000 -64.0 + 51.7500 195.5000 -64.0 + 51.7500 193.5000 -64.0 + 50.7500 191.5000 -64.0 + 50.7500 188.5000 -64.0 + 44.7500 182.5000 -64.0 + 41.7500 178.5000 -64.0 + 41.7500 176.5000 -64.0 + 39.7500 172.5000 -64.0 + 39.7500 170.5000 -64.0 + 38.7500 168.5000 -64.0 + 38.7500 165.5000 -64.0 + 39.5000 163.7500 -64.0 + 39.7500 158.5000 -64.0 + 38.7500 156.5000 -64.0 + 38.7500 148.5000 -64.0 + 40.5000 144.2500 -64.0 + 38.5000 143.2500 -64.0 + 36.7500 142.5000 -64.0 + 36.7500 140.5000 -64.0 + 38.5000 139.7500 -64.0 + 42.5000 141.7500 -64.0 + 42.7500 139.5000 -64.0 + 40.7500 135.5000 -64.0 + 40.7500 133.5000 -64.0 + 42.7500 127.5000 -64.0 + 44.5000 123.7500 -64.0 + 43.7500 121.5000 -64.0 + 45.5000 119.7500 -64.0 + 46.2500 120.5000 -64.0 + 47.2500 122.5000 -64.0 + 51.2500 126.5000 -64.0 + 52.5000 125.7500 -64.0 + 53.2500 126.5000 -64.0 + 55.7500 122.5000 -64.0 + 60.5000 120.7500 -64.0 + 61.5000 118.7500 -64.0 + 63.5000 117.7500 -64.0 + 65.7500 112.5000 -64.0 + 64.5000 112.2500 -64.0 + 61.5000 115.2500 -64.0 + 58.5000 115.2500 -64.0 + 60.2500 117.5000 -64.0 + 60.2500 119.5000 -64.0 + 58.5000 120.2500 -64.0 + 56.5000 121.2500 -64.0 + 52.7500 118.5000 -64.0 + 52.7500 116.5000 -64.0 + 55.5000 113.7500 -64.0 + 58.5000 113.7500 -64.0 + 58.7500 112.5000 -64.0 + 61.5000 108.7500 -64.0 + 65.5000 110.7500 -64.0 + 66.5000 108.7500 -64.0 + 68.5000 109.7500 -64.0 + 70.2500 110.5000 -64.0 + 71.5000 109.7500 -64.0 + 76.7500 109.5000 -64.0 + 77.7500 107.5000 -64.0 + 81.5000 103.7500 -64.0 + 81.7500 101.5000 -64.0 + 78.5000 104.2500 -64.0 + 76.7500 102.5000 -64.0 + 76.7500 100.5000 -64.0 + 75.5000 101.2500 -64.0 + 69.5000 103.2500 -64.0 + 61.7500 98.5000 -64.0 + 59.5000 98.2500 -64.0 + 57.5000 97.2500 -64.0 + 55.5000 98.2500 -64.0 + 52.2500 102.5000 -64.0 + 51.2500 104.5000 -64.0 + 46.5000 110.2500 -64.0 + 43.5000 115.2500 -64.0 + 41.2500 121.5000 -64.0 + 40.5000 123.2500 -64.0 + 38.2500 129.5000 -64.0 + 32.2500 142.5000 -64.0 + 31.5000 144.2500 -64.0 + 31.2500 156.5000 -64.0 + 33.2500 160.5000 -64.0 + 33.2500 163.5000 -64.0 + 34.2500 165.5000 -64.0 + 34.2500 169.5000 -64.0 + 35.2500 171.5000 -64.0 + 35.2500 173.5000 -64.0 + 36.2500 175.5000 -64.0 + 36.2500 177.5000 -64.0 + 40.2500 189.5000 -64.0 + 47.2500 198.5000 -64.0 + 52.2500 206.5000 -64.0 + 55.2500 210.5000 -64.0 + 59.5000 215.7500 -64.0 + 63.2500 218.5000 -64.0 + 69.5000 222.7500 -64.0 + 77.5000 226.7500 -64.0 + 91.5000 228.7500 -64.0 + 93.5000 227.7500 -64.0 + 117.5000 227.7500 -64.0 + 119.5000 226.7500 -64.0 + 123.5000 226.7500 -64.0 + 135.5000 220.7500 -64.0 + 142.5000 214.7500 -64.0 + 144.5000 213.7500 -64.0 + 153.7500 201.5000 -64.0 + 155.7500 197.5000 -64.0 + 159.5000 193.7500 -64.0 + 162.7500 189.5000 -64.0 + 170.7500 173.5000 -64.0 + 171.7500 168.5000 -64.0 + 172.7500 165.5000 -64.0 + 174.5000 161.7500 -64.0 + 174.7500 159.5000 -64.0 + 175.5000 157.7500 -64.0 + 175.7500 144.5000 -64.0 + 166.7500 126.5000 -64.0 + 166.7500 116.5000 -64.0 + 168.7500 110.5000 -64.0 + 169.5000 108.7500 -64.0 + 169.7500 97.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 100.5000 -64.0 + 128.2500 102.5000 -64.0 + 124.5000 104.2500 -64.0 + 125.2500 105.5000 -64.0 + 124.5000 107.2500 -64.0 + 122.5000 107.2500 -64.0 + 120.7500 105.5000 -64.0 + 118.2500 105.5000 -64.0 + 117.2500 107.5000 -64.0 + 123.5000 108.7500 -64.0 + 125.5000 107.7500 -64.0 + 126.2500 108.5000 -64.0 + 128.5000 108.7500 -64.0 + 127.7500 107.5000 -64.0 + 127.7500 104.5000 -64.0 + 129.5000 102.7500 -64.0 + 131.7500 102.5000 -64.0 + 130.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 104.5000 -64.0 + 83.2500 107.5000 -64.0 + 79.2500 111.5000 -64.0 + 78.2500 113.5000 -64.0 + 79.5000 113.7500 -64.0 + 89.5000 107.7500 -64.0 + 91.5000 107.7500 -64.0 + 91.7500 105.5000 -64.0 + 86.5000 107.2500 -64.0 + 84.7500 106.5000 -64.0 + 84.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 108.5000 -64.0 + 114.2500 109.5000 -64.0 + 115.5000 109.7500 -64.0 + 115.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 111.5000 -64.0 + 122.5000 111.7500 -64.0 + 124.5000 112.7500 -64.0 + 123.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 117.5000 -64.0 + 67.2500 119.5000 -64.0 + 67.2500 123.5000 -64.0 + 63.2500 126.5000 -64.0 + 60.5000 130.2500 -64.0 + 60.2500 132.5000 -64.0 + 62.2500 134.5000 -64.0 + 62.2500 136.5000 -64.0 + 63.5000 136.7500 -64.0 + 64.2500 138.5000 -64.0 + 61.5000 140.2500 -64.0 + 59.7500 138.5000 -64.0 + 56.5000 138.2500 -64.0 + 56.2500 139.5000 -64.0 + 58.2500 140.5000 -64.0 + 65.5000 140.7500 -64.0 + 71.5000 136.7500 -64.0 + 72.2500 137.5000 -64.0 + 75.5000 137.7500 -64.0 + 77.5000 135.7500 -64.0 + 77.7500 133.5000 -64.0 + 76.7500 131.5000 -64.0 + 71.5000 131.2500 -64.0 + 68.7500 128.5000 -64.0 + 69.5000 127.7500 -64.0 + 77.5000 127.7500 -64.0 + 79.2500 128.5000 -64.0 + 84.5000 128.7500 -64.0 + 87.5000 127.7500 -64.0 + 90.5000 124.7500 -64.0 + 90.7500 121.5000 -64.0 + 89.5000 121.2500 -64.0 + 86.5000 125.2500 -64.0 + 82.5000 127.2500 -64.0 + 80.7500 125.5000 -64.0 + 81.7500 123.5000 -64.0 + 79.5000 123.2500 -64.0 + 77.5000 121.2500 -64.0 + 73.5000 119.2500 -64.0 + 71.5000 120.2500 -64.0 + 68.5000 120.2500 -64.0 + 67.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 118.5000 -64.0 + 120.5000 119.2500 -64.0 + 120.5000 120.7500 -64.0 + 123.5000 119.7500 -64.0 + 122.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 58.5000 99.7500 -64.0 + 60.2500 100.5000 -64.0 + 59.5000 102.2500 -64.0 + 59.2500 104.5000 -64.0 + 56.5000 108.2500 -64.0 + 53.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 64.7500 103.5000 -64.0 + 65.5000 102.7500 -64.0 + 67.2500 103.5000 -64.0 + 66.5000 104.2500 -64.0 +} -64.0 +{ -64.0 + 154.7500 103.5000 -64.0 + 155.5000 102.7500 -64.0 + 157.2500 106.5000 -64.0 + 154.2500 110.5000 -64.0 + 147.5000 113.2500 -64.0 + 145.7500 112.5000 -64.0 + 145.7500 110.5000 -64.0 + 152.5000 104.7500 -64.0 +} -64.0 +{ -64.0 + 69.7500 105.5000 -64.0 + 70.5000 104.7500 -64.0 + 71.2500 105.5000 -64.0 + 70.5000 106.2500 -64.0 +} -64.0 +{ -64.0 + 52.7500 106.5000 -64.0 + 53.5000 105.7500 -64.0 + 55.2500 108.5000 -64.0 + 54.5000 110.2500 -64.0 + 52.5000 110.2500 -64.0 + 51.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 73.7500 107.5000 -64.0 + 74.5000 106.7500 -64.0 + 76.2500 107.5000 -64.0 + 75.5000 108.2500 -64.0 +} -64.0 +{ -64.0 + 134.7500 109.5000 -64.0 + 135.5000 108.7500 -64.0 + 138.2500 110.5000 -64.0 + 137.5000 112.2500 -64.0 + 135.5000 111.2500 -64.0 +} -64.0 +{ -64.0 + 139.7500 110.5000 -64.0 + 140.5000 109.7500 -64.0 + 142.2500 110.5000 -64.0 + 140.5000 112.2500 -64.0 +} -64.0 +{ -64.0 + 153.7500 112.5000 -64.0 + 154.5000 111.7500 -64.0 + 162.5000 111.7500 -64.0 + 165.2500 114.5000 -64.0 + 165.2500 116.5000 -64.0 + 163.5000 118.2500 -64.0 + 159.5000 120.2500 -64.0 + 157.2500 120.5000 -64.0 + 150.5000 123.2500 -64.0 + 145.5000 122.2500 -64.0 + 143.7500 120.5000 -64.0 + 144.7500 117.5000 -64.0 + 147.5000 113.7500 -64.0 + 150.5000 113.7500 -64.0 +} -64.0 +{ -64.0 + 134.7500 113.5000 -64.0 + 135.5000 112.7500 -64.0 + 136.2500 113.5000 -64.0 + 135.5000 114.2500 -64.0 +} -64.0 +{ -64.0 + 50.5000 120.7500 -64.0 + 52.2500 121.5000 -64.0 + 52.2500 123.5000 -64.0 + 50.5000 124.2500 -64.0 + 48.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 72.7500 123.5000 -64.0 + 73.5000 122.7500 -64.0 + 75.2500 124.5000 -64.0 + 74.5000 126.2500 -64.0 +} -64.0 +{ -64.0 + 168.7500 143.5000 -64.0 + 169.5000 142.7500 -64.0 + 170.2500 143.5000 -64.0 + 169.5000 144.2500 -64.0 +} -64.0 +{ -64.0 + 152.7500 145.5000 -64.0 + 153.5000 144.7500 -64.0 + 154.2500 145.5000 -64.0 + 153.5000 146.2500 -64.0 +} -64.0 +v 552 z -120.000000 -64.0 +{ -64.0 + 95.2500 45.5000 -64.0 + 94.2500 47.5000 -64.0 + 92.5000 48.2500 -64.0 + 92.2500 49.5000 -64.0 + 93.5000 49.7500 -64.0 + 95.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 47.5000 -64.0 + 125.2500 49.5000 -64.0 + 125.2500 51.5000 -64.0 + 127.5000 51.7500 -64.0 + 125.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 70.2500 53.5000 -64.0 + 69.5000 54.2500 -64.0 + 63.5000 54.2500 -64.0 + 59.5000 57.2500 -64.0 + 56.2500 61.5000 -64.0 + 45.2500 83.5000 -64.0 + 44.5000 85.2500 -64.0 + 43.2500 93.5000 -64.0 + 42.5000 95.2500 -64.0 + 42.2500 108.5000 -64.0 + 43.2500 110.5000 -64.0 + 43.2500 114.5000 -64.0 + 42.2500 121.5000 -64.0 + 40.2500 127.5000 -64.0 + 37.5000 133.2500 -64.0 + 33.5000 140.2500 -64.0 + 33.2500 148.5000 -64.0 + 32.2500 150.5000 -64.0 + 33.2500 152.5000 -64.0 + 33.2500 157.5000 -64.0 + 34.2500 159.5000 -64.0 + 34.2500 161.5000 -64.0 + 35.2500 163.5000 -64.0 + 35.2500 167.5000 -64.0 + 36.2500 169.5000 -64.0 + 36.2500 171.5000 -64.0 + 37.2500 173.5000 -64.0 + 37.2500 176.5000 -64.0 + 39.2500 180.5000 -64.0 + 39.2500 182.5000 -64.0 + 42.2500 189.5000 -64.0 + 46.2500 193.5000 -64.0 + 49.2500 198.5000 -64.0 + 54.2500 206.5000 -64.0 + 55.2500 208.5000 -64.0 + 63.5000 216.7500 -64.0 + 67.2500 219.5000 -64.0 + 73.2500 223.5000 -64.0 + 79.5000 225.7500 -64.0 + 81.2500 226.5000 -64.0 + 85.5000 226.7500 -64.0 + 87.2500 227.5000 -64.0 + 94.5000 227.7500 -64.0 + 96.5000 226.7500 -64.0 + 119.5000 226.7500 -64.0 + 121.5000 225.7500 -64.0 + 124.5000 225.7500 -64.0 + 134.5000 220.7500 -64.0 + 138.5000 217.7500 -64.0 + 140.5000 216.7500 -64.0 + 147.5000 209.7500 -64.0 + 153.7500 201.5000 -64.0 + 155.7500 197.5000 -64.0 + 160.5000 192.7500 -64.0 + 164.5000 186.7500 -64.0 + 168.5000 179.7500 -64.0 + 168.7500 177.5000 -64.0 + 171.7500 171.5000 -64.0 + 172.7500 166.5000 -64.0 + 174.7500 160.5000 -64.0 + 175.5000 158.7500 -64.0 + 175.7500 143.5000 -64.0 + 171.7500 135.5000 -64.0 + 166.5000 129.2500 -64.0 + 164.5000 128.2500 -64.0 + 163.5000 130.2500 -64.0 + 158.5000 133.2500 -64.0 + 155.5000 133.2500 -64.0 + 151.7500 131.5000 -64.0 + 148.5000 131.2500 -64.0 + 146.5000 133.2500 -64.0 + 143.5000 133.2500 -64.0 + 141.7500 132.5000 -64.0 + 139.7500 128.5000 -64.0 + 139.5000 125.2500 -64.0 + 136.5000 126.2500 -64.0 + 133.5000 125.2500 -64.0 + 131.7500 121.5000 -64.0 + 133.5000 119.7500 -64.0 + 136.5000 119.7500 -64.0 + 138.2500 121.5000 -64.0 + 139.2500 123.5000 -64.0 + 140.5000 122.7500 -64.0 + 142.5000 123.7500 -64.0 + 144.5000 122.7500 -64.0 + 148.2500 124.5000 -64.0 + 155.5000 124.7500 -64.0 + 161.5000 127.7500 -64.0 + 164.5000 126.7500 -64.0 + 164.7500 123.5000 -64.0 + 163.7500 121.5000 -64.0 + 158.5000 121.2500 -64.0 + 154.5000 123.2500 -64.0 + 149.5000 123.2500 -64.0 + 146.5000 122.2500 -64.0 + 142.7500 120.5000 -64.0 + 143.5000 118.7500 -64.0 + 146.7500 113.5000 -64.0 + 147.7500 111.5000 -64.0 + 148.5000 109.7500 -64.0 + 149.2500 110.5000 -64.0 + 150.2500 112.5000 -64.0 + 151.5000 112.7500 -64.0 + 153.5000 111.7500 -64.0 + 155.5000 111.7500 -64.0 + 157.5000 110.7500 -64.0 + 161.5000 110.7500 -64.0 + 166.7500 111.5000 -64.0 + 169.5000 107.7500 -64.0 + 169.7500 105.5000 -64.0 + 167.7500 101.5000 -64.0 + 164.5000 101.2500 -64.0 + 162.5000 102.2500 -64.0 + 157.5000 101.2500 -64.0 + 148.5000 109.2500 -64.0 + 145.5000 108.2500 -64.0 + 143.5000 109.2500 -64.0 + 134.5000 107.2500 -64.0 + 134.2500 110.5000 -64.0 + 137.2500 112.5000 -64.0 + 135.5000 114.2500 -64.0 + 133.5000 114.2500 -64.0 + 132.5000 116.2500 -64.0 + 129.5000 116.2500 -64.0 + 127.5000 117.2500 -64.0 + 126.7500 116.5000 -64.0 + 125.2500 116.5000 -64.0 + 123.2500 120.5000 -64.0 + 127.5000 120.7500 -64.0 + 131.2500 124.5000 -64.0 + 134.2500 128.5000 -64.0 + 133.5000 129.2500 -64.0 + 132.5000 128.2500 -64.0 + 130.5000 127.2500 -64.0 + 131.2500 128.5000 -64.0 + 130.5000 129.2500 -64.0 + 128.5000 130.2500 -64.0 + 126.7500 129.5000 -64.0 + 123.7500 125.5000 -64.0 + 124.5000 124.7500 -64.0 + 122.5000 123.2500 -64.0 + 122.2500 126.5000 -64.0 + 125.2500 130.5000 -64.0 + 130.2500 133.5000 -64.0 + 131.2500 135.5000 -64.0 + 136.2500 138.5000 -64.0 + 140.5000 138.7500 -64.0 + 142.2500 139.5000 -64.0 + 143.5000 141.7500 -64.0 + 145.5000 142.7500 -64.0 + 151.5000 148.7500 -64.0 + 161.5000 152.7500 -64.0 + 161.7500 149.5000 -64.0 + 159.7500 148.5000 -64.0 + 158.5000 149.2500 -64.0 + 155.5000 148.2500 -64.0 + 154.7500 146.5000 -64.0 + 151.5000 145.2500 -64.0 + 149.7500 141.5000 -64.0 + 151.7500 140.5000 -64.0 + 150.7500 137.5000 -64.0 + 153.5000 133.7500 -64.0 + 155.5000 133.7500 -64.0 + 159.2500 137.5000 -64.0 + 160.2500 139.5000 -64.0 + 161.5000 137.2500 -64.0 + 159.5000 136.2500 -64.0 + 158.7500 134.5000 -64.0 + 160.5000 133.7500 -64.0 + 165.5000 134.7500 -64.0 + 166.2500 136.5000 -64.0 + 168.5000 136.7500 -64.0 + 170.2500 138.5000 -64.0 + 170.2500 141.5000 -64.0 + 172.2500 143.5000 -64.0 + 172.2500 145.5000 -64.0 + 174.2500 147.5000 -64.0 + 173.5000 148.2500 -64.0 + 173.2500 150.5000 -64.0 + 171.5000 151.2500 -64.0 + 169.7500 149.5000 -64.0 + 169.5000 147.2500 -64.0 + 169.2500 151.5000 -64.0 + 170.5000 151.7500 -64.0 + 172.2500 152.5000 -64.0 + 172.2500 156.5000 -64.0 + 168.5000 159.2500 -64.0 + 166.7500 158.5000 -64.0 + 165.5000 156.2500 -64.0 + 165.2500 163.5000 -64.0 + 164.5000 165.2500 -64.0 + 164.2500 170.5000 -64.0 + 162.2500 174.5000 -64.0 + 159.5000 178.2500 -64.0 + 159.2500 181.5000 -64.0 + 156.5000 185.2500 -64.0 + 153.2500 189.5000 -64.0 + 149.2500 197.5000 -64.0 + 145.2500 202.5000 -64.0 + 142.5000 206.2500 -64.0 + 134.5000 212.2500 -64.0 + 132.2500 213.5000 -64.0 + 125.5000 218.2500 -64.0 + 123.5000 218.2500 -64.0 + 119.5000 220.2500 -64.0 + 112.5000 220.2500 -64.0 + 108.5000 216.2500 -64.0 + 101.5000 215.2500 -64.0 + 99.5000 217.2500 -64.0 + 95.5000 220.2500 -64.0 + 86.5000 220.2500 -64.0 + 81.5000 219.2500 -64.0 + 77.5000 216.2500 -64.0 + 75.5000 215.2500 -64.0 + 68.7500 210.5000 -64.0 + 62.7500 206.5000 -64.0 + 56.7500 199.5000 -64.0 + 53.7500 195.5000 -64.0 + 53.7500 193.5000 -64.0 + 52.7500 191.5000 -64.0 + 52.7500 187.5000 -64.0 + 45.7500 181.5000 -64.0 + 42.7500 176.5000 -64.0 + 42.7500 174.5000 -64.0 + 41.7500 172.5000 -64.0 + 41.7500 170.5000 -64.0 + 40.7500 168.5000 -64.0 + 40.7500 166.5000 -64.0 + 42.7500 160.5000 -64.0 + 40.7500 156.5000 -64.0 + 40.7500 149.5000 -64.0 + 42.5000 147.7500 -64.0 + 46.5000 145.7500 -64.0 + 48.7500 145.5000 -64.0 + 49.7500 143.5000 -64.0 + 47.5000 143.2500 -64.0 + 46.7500 141.5000 -64.0 + 45.5000 141.2500 -64.0 + 44.5000 143.2500 -64.0 + 40.5000 145.2500 -64.0 + 39.7500 144.5000 -64.0 + 37.7500 140.5000 -64.0 + 38.5000 138.7500 -64.0 + 40.5000 138.7500 -64.0 + 44.2500 140.5000 -64.0 + 45.5000 139.7500 -64.0 + 43.7500 136.5000 -64.0 + 41.5000 136.2500 -64.0 + 40.7500 134.5000 -64.0 + 42.7500 132.5000 -64.0 + 43.7500 130.5000 -64.0 + 44.5000 128.7500 -64.0 + 43.7500 127.5000 -64.0 + 42.7500 125.5000 -64.0 + 46.5000 120.7500 -64.0 + 48.2500 121.5000 -64.0 + 49.2500 123.5000 -64.0 + 51.5000 122.7500 -64.0 + 50.7500 120.5000 -64.0 + 52.5000 119.7500 -64.0 + 51.7500 117.5000 -64.0 + 53.5000 116.7500 -64.0 + 55.2500 117.5000 -64.0 + 54.2500 120.5000 -64.0 + 55.2500 122.5000 -64.0 + 58.5000 122.7500 -64.0 + 61.5000 121.7500 -64.0 + 62.5000 119.7500 -64.0 + 64.5000 118.7500 -64.0 + 66.5000 119.7500 -64.0 + 68.5000 118.7500 -64.0 + 75.5000 112.7500 -64.0 + 81.5000 109.7500 -64.0 + 83.2500 110.5000 -64.0 + 81.5000 112.7500 -64.0 + 84.5000 111.7500 -64.0 + 88.5000 107.7500 -64.0 + 90.7500 106.5000 -64.0 + 91.7500 104.5000 -64.0 + 89.5000 106.2500 -64.0 + 87.5000 106.2500 -64.0 + 85.7500 105.5000 -64.0 + 86.7500 103.5000 -64.0 + 85.5000 103.2500 -64.0 + 85.2500 104.5000 -64.0 + 80.5000 109.2500 -64.0 + 78.7500 108.5000 -64.0 + 76.7500 104.5000 -64.0 + 69.5000 104.2500 -64.0 + 65.5000 102.2500 -64.0 + 58.7500 98.5000 -64.0 + 56.5000 98.2500 -64.0 + 49.5000 105.2500 -64.0 + 47.5000 106.2500 -64.0 + 45.7500 104.5000 -64.0 + 45.7500 93.5000 -64.0 + 46.7500 88.5000 -64.0 + 48.7500 83.5000 -64.0 + 53.7500 72.5000 -64.0 + 58.5000 66.7500 -64.0 + 62.5000 63.7500 -64.0 + 66.5000 63.7500 -64.0 + 68.5000 64.7500 -64.0 + 68.7500 62.5000 -64.0 + 66.5000 62.2500 -64.0 + 64.7500 60.5000 -64.0 + 65.5000 59.2500 -64.0 + 62.5000 60.2500 -64.0 + 60.7500 59.5000 -64.0 + 61.5000 58.7500 -64.0 + 65.5000 55.7500 -64.0 + 67.5000 55.7500 -64.0 + 69.2500 56.5000 -64.0 + 68.5000 57.2500 -64.0 + 69.5000 57.7500 -64.0 + 72.5000 53.7500 -64.0 + 74.7500 53.5000 -64.0 +} -64.0 +{ -64.0 + 142.2500 56.5000 -64.0 + 141.5000 57.2500 -64.0 + 135.2500 57.5000 -64.0 + 141.5000 57.7500 -64.0 + 143.5000 56.7500 -64.0 + 145.5000 56.7500 -64.0 + 148.5000 57.7500 -64.0 + 152.2500 61.5000 -64.0 + 153.2500 63.5000 -64.0 + 151.5000 65.2500 -64.0 + 149.5000 66.2500 -64.0 + 150.5000 66.7500 -64.0 + 152.5000 65.7500 -64.0 + 154.5000 65.7500 -64.0 + 161.2500 72.5000 -64.0 + 164.2500 78.5000 -64.0 + 164.2500 80.5000 -64.0 + 166.2500 84.5000 -64.0 + 166.2500 87.5000 -64.0 + 168.5000 87.7500 -64.0 + 168.7500 81.5000 -64.0 + 164.7500 73.5000 -64.0 + 164.5000 71.2500 -64.0 + 161.7500 64.5000 -64.0 + 156.5000 59.2500 -64.0 + 152.5000 57.2500 -64.0 + 150.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 86.5000 -64.0 + 93.2500 87.5000 -64.0 + 93.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 87.5000 -64.0 + 126.2500 90.5000 -64.0 + 128.5000 90.7500 -64.0 + 131.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 91.5000 -64.0 + 95.2500 93.5000 -64.0 + 96.5000 92.7500 -64.0 + 95.7500 91.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 91.5000 -64.0 + 105.2500 93.5000 -64.0 + 106.5000 93.7500 -64.0 + 108.2500 95.5000 -64.0 + 108.7500 94.5000 -64.0 + 107.7500 91.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 94.5000 -64.0 + 102.2500 97.5000 -64.0 + 103.2500 99.5000 -64.0 + 100.2500 101.5000 -64.0 + 101.2500 104.5000 -64.0 + 106.5000 101.7500 -64.0 + 106.7500 98.5000 -64.0 + 103.7500 97.5000 -64.0 + 104.7500 95.5000 -64.0 +} -64.0 +{ -64.0 + 80.2500 99.5000 -64.0 + 78.5000 102.2500 -64.0 + 78.2500 104.5000 -64.0 + 80.5000 103.7500 -64.0 + 83.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 99.5000 -64.0 + 127.2500 101.5000 -64.0 + 129.5000 101.7500 -64.0 +} -64.0 +{ -64.0 + 109.2500 101.5000 -64.0 + 108.5000 102.2500 -64.0 + 108.2500 105.5000 -64.0 + 109.5000 105.7500 -64.0 + 110.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 104.5000 -64.0 + 120.2500 105.5000 -64.0 + 118.5000 107.7500 -64.0 + 120.5000 106.7500 -64.0 + 120.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 107.5000 -64.0 + 95.5000 108.2500 -64.0 + 96.2500 109.5000 -64.0 + 96.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 107.5000 -64.0 + 113.2500 108.5000 -64.0 + 114.7500 109.5000 -64.0 + 115.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 156.2500 113.5000 -64.0 + 155.5000 114.2500 -64.0 + 150.2500 118.5000 -64.0 + 151.2500 120.5000 -64.0 + 153.5000 120.7500 -64.0 + 153.7500 118.5000 -64.0 + 156.5000 115.7500 -64.0 + 158.2500 116.5000 -64.0 + 157.5000 118.2500 -64.0 + 155.2500 119.5000 -64.0 + 158.5000 119.7500 -64.0 + 161.5000 118.7500 -64.0 + 163.7500 115.5000 -64.0 + 162.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 116.5000 -64.0 + 117.2500 118.5000 -64.0 + 117.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 70.2500 120.5000 -64.0 + 67.2500 123.5000 -64.0 + 65.2500 127.5000 -64.0 + 67.5000 127.7500 -64.0 + 68.2500 129.5000 -64.0 + 67.5000 131.2500 -64.0 + 65.7500 130.5000 -64.0 + 64.7500 128.5000 -64.0 + 63.5000 128.2500 -64.0 + 60.5000 129.2500 -64.0 + 60.2500 131.5000 -64.0 + 61.2500 134.5000 -64.0 + 59.2500 138.5000 -64.0 + 60.5000 138.7500 -64.0 + 62.5000 137.7500 -64.0 + 66.2500 139.5000 -64.0 + 64.5000 141.2500 -64.0 + 58.5000 141.2500 -64.0 + 59.2500 142.5000 -64.0 + 63.5000 142.7500 -64.0 + 66.5000 141.7500 -64.0 + 70.5000 137.7500 -64.0 + 75.5000 137.7500 -64.0 + 77.5000 136.7500 -64.0 + 77.7500 134.5000 -64.0 + 76.7500 131.5000 -64.0 + 71.5000 130.2500 -64.0 + 70.7500 128.5000 -64.0 + 71.5000 126.7500 -64.0 + 73.5000 126.7500 -64.0 + 77.2500 129.5000 -64.0 + 84.5000 129.7500 -64.0 + 87.5000 128.7500 -64.0 + 90.5000 125.7500 -64.0 + 90.7500 123.5000 -64.0 + 89.5000 123.2500 -64.0 + 87.5000 125.2500 -64.0 + 83.5000 127.2500 -64.0 + 81.7500 125.5000 -64.0 + 82.7500 124.5000 -64.0 + 77.7500 121.5000 -64.0 + 73.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 48.2500 124.5000 -64.0 + 46.2500 127.5000 -64.0 + 47.5000 127.7500 -64.0 + 49.2500 129.5000 -64.0 + 49.2500 131.5000 -64.0 + 48.2500 133.5000 -64.0 + 50.5000 133.7500 -64.0 + 52.5000 127.7500 -64.0 + 54.5000 128.7500 -64.0 + 54.5000 126.2500 -64.0 + 52.5000 125.2500 -64.0 + 51.5000 127.2500 -64.0 + 49.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 59.2500 125.5000 -64.0 + 59.2500 126.5000 -64.0 + 60.5000 126.7500 -64.0 + 60.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 56.2500 139.5000 -64.0 + 55.2500 141.5000 -64.0 + 56.7500 140.5000 -64.0 +} -64.0 +{ -64.0 + 164.2500 141.5000 -64.0 + 164.2500 143.5000 -64.0 + 165.5000 144.7500 -64.0 + 165.7500 141.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 142.5000 -64.0 + 156.2500 145.5000 -64.0 + 156.7500 144.5000 -64.0 + 153.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 163.2500 152.5000 -64.0 + 162.5000 153.2500 -64.0 + 163.5000 153.7500 -64.0 + 164.7500 152.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 60.5000 -64.0 + 153.5000 59.7500 -64.0 + 157.2500 62.5000 -64.0 + 155.5000 63.2500 -64.0 +} -64.0 +{ -64.0 + 57.7500 63.5000 -64.0 + 58.5000 62.7500 -64.0 + 59.2500 63.5000 -64.0 + 58.5000 64.2500 -64.0 +} -64.0 +{ -64.0 + 56.7500 101.5000 -64.0 + 58.5000 100.7500 -64.0 + 60.2500 101.5000 -64.0 + 62.2500 107.5000 -64.0 + 59.5000 111.2500 -64.0 + 55.7500 109.5000 -64.0 + 53.5000 109.2500 -64.0 + 52.7500 107.5000 -64.0 + 53.5000 105.7500 -64.0 + 55.5000 105.7500 -64.0 +} -64.0 +{ -64.0 + 72.7500 106.5000 -64.0 + 73.5000 105.7500 -64.0 + 76.2500 107.5000 -64.0 + 76.2500 110.5000 -64.0 + 74.5000 111.2500 -64.0 + 72.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 165.5000 106.7500 -64.0 + 166.2500 107.5000 -64.0 + 164.5000 109.2500 -64.0 + 163.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 51.7500 111.5000 -64.0 + 53.5000 110.7500 -64.0 + 56.5000 111.7500 -64.0 + 57.2500 113.5000 -64.0 + 56.5000 115.2500 -64.0 + 52.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 137.7500 112.5000 -64.0 + 138.5000 111.7500 -64.0 + 140.5000 111.7500 -64.0 + 142.2500 112.5000 -64.0 + 142.2500 114.5000 -64.0 + 140.5000 115.2500 -64.0 + 138.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 68.7500 124.5000 -64.0 + 70.5000 123.7500 -64.0 + 71.2500 125.5000 -64.0 + 69.5000 126.2500 -64.0 +} -64.0 +{ -64.0 + 74.7500 124.5000 -64.0 + 75.5000 123.7500 -64.0 + 76.2500 124.5000 -64.0 + 75.5000 126.2500 -64.0 +} -64.0 +{ -64.0 + 37.7500 146.5000 -64.0 + 38.5000 145.7500 -64.0 + 40.2500 146.5000 -64.0 + 38.5000 149.2500 -64.0 + 37.7500 148.5000 -64.0 +} -64.0 +v 442 z -122.000000 -64.0 +{ -64.0 + 95.2500 45.5000 -64.0 + 92.2500 49.5000 -64.0 + 93.5000 49.7500 -64.0 + 95.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 50.5000 -64.0 + 126.2500 52.5000 -64.0 + 127.5000 52.7500 -64.0 + 127.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 54.5000 -64.0 + 59.5000 57.2500 -64.0 + 53.5000 66.2500 -64.0 + 53.2500 68.5000 -64.0 + 48.5000 76.2500 -64.0 + 48.2500 78.5000 -64.0 + 46.2500 82.5000 -64.0 + 47.2500 84.5000 -64.0 + 48.7500 83.5000 -64.0 + 53.7500 72.5000 -64.0 + 59.5000 65.7500 -64.0 + 65.5000 62.7500 -64.0 + 69.2500 64.5000 -64.0 + 69.7500 63.5000 -64.0 + 64.7500 60.5000 -64.0 + 66.5000 58.2500 -64.0 + 64.5000 59.2500 -64.0 + 62.7500 58.5000 -64.0 + 66.5000 55.7500 -64.0 + 68.2500 56.5000 -64.0 + 67.2500 57.5000 -64.0 + 69.5000 57.7500 -64.0 + 69.7500 56.5000 -64.0 + 73.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 145.2500 56.5000 -64.0 + 144.5000 57.2500 -64.0 + 141.2500 57.5000 -64.0 + 148.5000 57.7500 -64.0 + 152.2500 61.5000 -64.0 + 152.2500 63.5000 -64.0 + 149.5000 65.2500 -64.0 + 147.5000 65.2500 -64.0 + 146.2500 68.5000 -64.0 + 152.5000 65.7500 -64.0 + 155.5000 66.7500 -64.0 + 158.2500 69.5000 -64.0 + 161.2500 73.5000 -64.0 + 165.2500 81.5000 -64.0 + 166.5000 81.7500 -64.0 + 166.7500 78.5000 -64.0 + 164.7500 74.5000 -64.0 + 164.7500 72.5000 -64.0 + 162.7500 68.5000 -64.0 + 162.7500 66.5000 -64.0 + 158.7500 61.5000 -64.0 + 152.7500 57.5000 -64.0 + 150.5000 57.2500 -64.0 +} -64.0 +{ -64.0 + 154.2500 80.5000 -64.0 + 154.2500 82.5000 -64.0 + 155.5000 83.7500 -64.0 + 155.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 88.5000 -64.0 + 90.5000 89.7500 -64.0 + 94.5000 91.7500 -64.0 + 93.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 88.5000 -64.0 + 127.2500 89.5000 -64.0 + 130.5000 89.7500 -64.0 + 130.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 90.5000 -64.0 + 106.2500 92.5000 -64.0 + 107.5000 92.7500 -64.0 + 107.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 91.5000 -64.0 + 121.2500 92.5000 -64.0 + 122.5000 92.7500 -64.0 + 122.7500 91.5000 -64.0 +} -64.0 +{ -64.0 + 45.2500 92.5000 -64.0 + 42.5000 98.2500 -64.0 + 42.2500 104.5000 -64.0 + 44.2500 111.5000 -64.0 + 43.2500 122.5000 -64.0 + 34.5000 139.2500 -64.0 + 34.2500 143.5000 -64.0 + 33.5000 145.2500 -64.0 + 33.2500 155.5000 -64.0 + 38.2500 176.5000 -64.0 + 43.2500 189.5000 -64.0 + 49.2500 196.5000 -64.0 + 52.2500 202.5000 -64.0 + 59.2500 211.5000 -64.0 + 67.5000 218.7500 -64.0 + 73.2500 222.5000 -64.0 + 86.2500 226.5000 -64.0 + 94.5000 226.7500 -64.0 + 96.5000 225.7500 -64.0 + 119.5000 225.7500 -64.0 + 121.5000 224.7500 -64.0 + 124.5000 224.7500 -64.0 + 132.5000 220.7500 -64.0 + 142.5000 213.7500 -64.0 + 152.7500 201.5000 -64.0 + 155.7500 195.5000 -64.0 + 163.7500 186.5000 -64.0 + 171.7500 170.5000 -64.0 + 174.5000 160.7500 -64.0 + 175.7500 147.5000 -64.0 + 171.7500 136.5000 -64.0 + 167.7500 132.5000 -64.0 + 164.5000 132.2500 -64.0 + 162.5000 133.2500 -64.0 + 160.5000 133.2500 -64.0 + 163.2500 134.5000 -64.0 + 161.5000 136.2500 -64.0 + 162.2500 138.5000 -64.0 + 165.7500 139.5000 -64.0 + 164.7500 137.5000 -64.0 + 165.5000 135.7500 -64.0 + 170.5000 137.7500 -64.0 + 172.2500 141.5000 -64.0 + 171.5000 142.2500 -64.0 + 173.2500 145.5000 -64.0 + 172.5000 147.2500 -64.0 + 173.2500 148.5000 -64.0 + 172.5000 149.2500 -64.0 + 170.5000 148.2500 -64.0 + 168.5000 149.2500 -64.0 + 170.2500 150.5000 -64.0 + 170.2500 156.5000 -64.0 + 169.5000 158.2500 -64.0 + 167.5000 159.2500 -64.0 + 165.5000 164.2500 -64.0 + 164.7500 163.5000 -64.0 + 164.7500 161.5000 -64.0 + 162.7500 155.5000 -64.0 + 161.5000 156.2500 -64.0 + 160.7500 155.5000 -64.0 + 160.2500 156.5000 -64.0 + 163.2500 159.5000 -64.0 + 161.2500 173.5000 -64.0 + 158.2500 177.5000 -64.0 + 157.2500 182.5000 -64.0 + 151.2500 190.5000 -64.0 + 146.2500 200.5000 -64.0 + 139.5000 207.2500 -64.0 + 126.5000 216.2500 -64.0 + 124.5000 216.2500 -64.0 + 118.5000 219.2500 -64.0 + 112.5000 219.2500 -64.0 + 108.7500 215.5000 -64.0 + 104.5000 215.2500 -64.0 + 103.7500 213.5000 -64.0 + 101.5000 213.2500 -64.0 + 99.5000 216.2500 -64.0 + 95.5000 219.2500 -64.0 + 92.5000 219.2500 -64.0 + 89.5000 218.2500 -64.0 + 87.5000 219.2500 -64.0 + 85.5000 219.2500 -64.0 + 73.5000 213.2500 -64.0 + 67.5000 208.2500 -64.0 + 63.5000 206.2500 -64.0 + 57.7500 199.5000 -64.0 + 54.7500 193.5000 -64.0 + 53.7500 186.5000 -64.0 + 47.7500 181.5000 -64.0 + 44.7500 177.5000 -64.0 + 42.7500 168.5000 -64.0 + 43.7500 158.5000 -64.0 + 41.7500 154.5000 -64.0 + 41.7500 152.5000 -64.0 + 44.5000 148.7500 -64.0 + 48.5000 146.7500 -64.0 + 51.5000 146.7500 -64.0 + 55.5000 144.7500 -64.0 + 59.5000 144.7500 -64.0 + 65.7500 142.5000 -64.0 + 68.5000 138.7500 -64.0 + 72.5000 138.7500 -64.0 + 75.7500 137.5000 -64.0 + 77.7500 133.5000 -64.0 + 89.5000 127.7500 -64.0 + 89.7500 125.5000 -64.0 + 88.5000 125.2500 -64.0 + 84.5000 127.2500 -64.0 + 82.7500 126.5000 -64.0 + 84.5000 124.7500 -64.0 + 84.5000 123.2500 -64.0 + 82.5000 124.2500 -64.0 + 80.5000 124.2500 -64.0 + 77.5000 121.2500 -64.0 + 75.5000 122.2500 -64.0 + 70.5000 121.2500 -64.0 + 66.5000 126.2500 -64.0 + 68.2500 128.5000 -64.0 + 67.5000 132.2500 -64.0 + 66.7500 131.5000 -64.0 + 66.7500 129.5000 -64.0 + 64.5000 129.2500 -64.0 + 62.5000 130.2500 -64.0 + 61.7500 129.5000 -64.0 + 58.5000 129.2500 -64.0 + 58.2500 130.5000 -64.0 + 62.2500 138.5000 -64.0 + 64.5000 138.7500 -64.0 + 65.2500 140.5000 -64.0 + 59.5000 143.2500 -64.0 + 58.7500 142.5000 -64.0 + 56.5000 142.2500 -64.0 + 54.7500 140.5000 -64.0 + 53.5000 143.2500 -64.0 + 52.5000 142.2500 -64.0 + 47.5000 146.2500 -64.0 + 45.7500 145.5000 -64.0 + 44.5000 147.2500 -64.0 + 42.5000 146.2500 -64.0 + 40.5000 147.2500 -64.0 + 37.7500 140.5000 -64.0 + 39.5000 138.7500 -64.0 + 42.7500 138.5000 -64.0 + 43.7500 136.5000 -64.0 + 42.7500 134.5000 -64.0 + 44.7500 133.5000 -64.0 + 46.5000 129.7500 -64.0 + 51.5000 130.7500 -64.0 + 54.5000 129.7500 -64.0 + 55.5000 127.7500 -64.0 + 56.7500 128.5000 -64.0 + 57.7500 126.5000 -64.0 + 56.5000 126.2500 -64.0 + 54.7500 124.5000 -64.0 + 61.5000 120.7500 -64.0 + 64.5000 120.7500 -64.0 + 76.5000 112.7500 -64.0 + 76.7500 111.5000 -64.0 + 68.5000 110.2500 -64.0 + 67.7500 108.5000 -64.0 + 71.5000 106.7500 -64.0 + 75.2500 107.5000 -64.0 + 75.2500 109.5000 -64.0 + 76.5000 109.7500 -64.0 + 78.5000 108.7500 -64.0 + 75.5000 104.2500 -64.0 + 71.5000 106.2500 -64.0 + 68.5000 106.2500 -64.0 + 64.7500 103.5000 -64.0 + 60.5000 102.2500 -64.0 + 57.5000 99.2500 -64.0 + 55.5000 98.2500 -64.0 + 51.5000 101.2500 -64.0 + 49.5000 101.2500 -64.0 + 46.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 94.5000 -64.0 + 104.2500 101.5000 -64.0 + 102.5000 103.2500 -64.0 + 103.2500 104.5000 -64.0 + 103.2500 107.5000 -64.0 + 101.2500 108.5000 -64.0 + 106.5000 108.7500 -64.0 + 107.2500 110.5000 -64.0 + 110.5000 110.7500 -64.0 + 114.2500 113.5000 -64.0 + 114.7500 112.5000 -64.0 + 111.7500 108.5000 -64.0 + 109.5000 108.2500 -64.0 + 107.7500 106.5000 -64.0 + 108.5000 104.7500 -64.0 + 107.5000 104.2500 -64.0 + 107.2500 105.5000 -64.0 + 105.5000 106.2500 -64.0 + 103.7500 104.5000 -64.0 + 105.5000 100.7500 -64.0 + 106.2500 101.5000 -64.0 + 107.5000 100.7500 -64.0 + 106.7500 97.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 97.5000 -64.0 + 81.5000 99.2500 -64.0 + 82.5000 99.7500 -64.0 + 84.5000 98.7500 -64.0 +} -64.0 +{ -64.0 + 128.2500 98.5000 -64.0 + 127.2500 99.5000 -64.0 + 128.7500 99.5000 -64.0 +} -64.0 +{ -64.0 + 161.2500 102.5000 -64.0 + 159.5000 105.2500 -64.0 + 159.5000 106.7500 -64.0 + 165.5000 109.7500 -64.0 + 167.5000 108.7500 -64.0 + 167.7500 104.5000 -64.0 + 163.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 105.5000 -64.0 + 91.2500 106.5000 -64.0 + 92.5000 106.7500 -64.0 +} -64.0 +{ -64.0 + 98.2500 108.5000 -64.0 + 96.2500 112.5000 -64.0 + 97.5000 112.7500 -64.0 + 99.5000 109.7500 -64.0 +} -64.0 +{ -64.0 + 136.2500 109.5000 -64.0 + 136.2500 110.5000 -64.0 + 137.2500 112.5000 -64.0 + 136.2500 113.5000 -64.0 + 133.5000 117.2500 -64.0 + 129.5000 117.2500 -64.0 + 128.5000 119.2500 -64.0 + 126.5000 120.2500 -64.0 + 125.5000 122.2500 -64.0 + 126.2500 123.5000 -64.0 + 127.2500 125.5000 -64.0 + 126.2500 128.5000 -64.0 + 128.5000 131.7500 -64.0 + 130.5000 130.7500 -64.0 + 132.2500 131.5000 -64.0 + 132.2500 133.5000 -64.0 + 133.2500 136.5000 -64.0 + 134.5000 136.7500 -64.0 + 136.2500 138.5000 -64.0 + 138.5000 138.7500 -64.0 + 143.5000 139.7500 -64.0 + 147.2500 143.5000 -64.0 + 159.2500 154.5000 -64.0 + 159.7500 153.5000 -64.0 + 160.5000 151.7500 -64.0 + 162.7500 150.5000 -64.0 + 158.7500 147.5000 -64.0 + 157.7500 145.5000 -64.0 + 151.5000 145.2500 -64.0 + 149.7500 142.5000 -64.0 + 150.5000 140.7500 -64.0 + 151.7500 141.5000 -64.0 + 150.7500 139.5000 -64.0 + 151.7500 136.5000 -64.0 + 152.5000 134.7500 -64.0 + 154.5000 133.7500 -64.0 + 151.7500 131.5000 -64.0 + 148.5000 131.2500 -64.0 + 145.5000 132.2500 -64.0 + 145.2500 133.5000 -64.0 + 143.5000 135.2500 -64.0 + 144.2500 136.5000 -64.0 + 142.5000 138.2500 -64.0 + 140.5000 138.2500 -64.0 + 138.7500 137.5000 -64.0 + 139.7500 135.5000 -64.0 + 138.7500 133.5000 -64.0 + 138.7500 131.5000 -64.0 + 140.5000 130.7500 -64.0 + 138.7500 129.5000 -64.0 + 137.7500 127.5000 -64.0 + 135.5000 127.2500 -64.0 + 133.7500 125.5000 -64.0 + 132.7500 123.5000 -64.0 + 133.5000 121.7500 -64.0 + 135.5000 120.7500 -64.0 + 138.5000 121.7500 -64.0 + 142.5000 125.7500 -64.0 + 145.5000 124.7500 -64.0 + 152.5000 125.7500 -64.0 + 154.5000 124.7500 -64.0 + 159.5000 124.7500 -64.0 + 161.2500 125.5000 -64.0 + 162.7500 124.5000 -64.0 + 159.5000 122.2500 -64.0 + 153.5000 124.2500 -64.0 + 151.7500 123.5000 -64.0 + 150.5000 124.2500 -64.0 + 148.5000 123.2500 -64.0 + 142.7500 120.5000 -64.0 + 141.7500 118.5000 -64.0 + 144.5000 114.7500 -64.0 + 144.7500 111.5000 -64.0 + 141.5000 111.2500 -64.0 + 137.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 110.5000 -64.0 + 85.2500 111.5000 -64.0 + 87.5000 111.7500 -64.0 + 87.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 160.2500 111.5000 -64.0 + 159.5000 112.2500 -64.0 + 157.5000 112.2500 -64.0 + 153.2500 115.5000 -64.0 + 155.5000 115.7500 -64.0 + 157.5000 113.7500 -64.0 + 159.5000 113.7500 -64.0 + 162.5000 112.7500 -64.0 + 164.7500 114.5000 -64.0 + 163.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 115.5000 -64.0 + 117.5000 118.7500 -64.0 + 117.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 116.5000 -64.0 + 150.5000 117.2500 -64.0 + 151.5000 117.7500 -64.0 + 152.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 117.5000 -64.0 + 89.2500 118.5000 -64.0 + 89.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 162.2500 117.5000 -64.0 + 159.2500 119.5000 -64.0 + 161.5000 119.7500 -64.0 + 163.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 123.5000 -64.0 + 116.2500 124.5000 -64.0 + 119.2500 127.5000 -64.0 + 119.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 156.2500 134.5000 -64.0 + 158.2500 135.5000 -64.0 + 159.7500 134.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 142.5000 -64.0 + 153.2500 143.5000 -64.0 + 153.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 59.5000 61.7500 -64.0 + 60.2500 62.5000 -64.0 + 57.5000 65.2500 -64.0 + 56.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 157.7500 65.5000 -64.0 + 158.5000 64.7500 -64.0 + 160.2500 66.5000 -64.0 + 159.5000 68.2500 -64.0 + 158.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 55.7500 101.5000 -64.0 + 57.5000 100.7500 -64.0 + 63.2500 107.5000 -64.0 + 61.5000 110.2500 -64.0 + 59.7500 109.5000 -64.0 + 55.5000 109.2500 -64.0 + 52.7500 106.5000 -64.0 + 54.5000 105.7500 -64.0 +} -64.0 +{ -64.0 + 49.7500 108.5000 -64.0 + 50.5000 107.7500 -64.0 + 52.5000 108.7500 -64.0 + 61.5000 112.7500 -64.0 + 64.2500 118.5000 -64.0 + 61.5000 120.2500 -64.0 + 58.5000 120.2500 -64.0 + 55.7500 117.5000 -64.0 + 53.5000 117.2500 -64.0 + 46.7500 111.5000 -64.0 + 47.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 51.7500 119.5000 -64.0 + 52.5000 118.7500 -64.0 + 53.2500 119.5000 -64.0 + 54.2500 121.5000 -64.0 + 53.5000 123.2500 -64.0 + 51.5000 123.2500 -64.0 + 50.7500 121.5000 -64.0 +} -64.0 +v 430 z -124.000000 -64.0 +{ -64.0 + 96.2500 44.5000 -64.0 + 95.2500 45.5000 -64.0 + 96.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 44.5000 -64.0 + 109.2500 49.5000 -64.0 + 108.2500 52.5000 -64.0 + 109.2500 54.5000 -64.0 + 110.7500 52.5000 -64.0 + 109.7500 50.5000 -64.0 + 109.7500 47.5000 -64.0 + 110.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 46.5000 -64.0 + 91.5000 49.2500 -64.0 + 92.2500 50.5000 -64.0 + 93.7500 49.5000 -64.0 + 94.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 50.5000 -64.0 + 127.2500 53.5000 -64.0 + 127.7500 52.5000 -64.0 + 126.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 54.5000 -64.0 + 60.5000 57.2500 -64.0 + 56.2500 62.5000 -64.0 + 48.5000 77.2500 -64.0 + 48.2500 81.5000 -64.0 + 49.5000 80.7500 -64.0 + 54.7500 71.5000 -64.0 + 64.5000 62.7500 -64.0 + 66.5000 62.7500 -64.0 + 70.7500 64.5000 -64.0 + 69.7500 61.5000 -64.0 + 66.5000 61.2500 -64.0 + 65.7500 59.5000 -64.0 + 68.5000 56.7500 -64.0 + 72.5000 54.7500 -64.0 +} -64.0 +{ -64.0 + 142.2500 57.5000 -64.0 + 146.5000 57.7500 -64.0 + 152.5000 60.7500 -64.0 + 153.2500 62.5000 -64.0 + 152.5000 64.2500 -64.0 + 151.7500 63.5000 -64.0 + 148.5000 63.2500 -64.0 + 146.5000 65.2500 -64.0 + 146.2500 67.5000 -64.0 + 147.5000 67.7500 -64.0 + 149.5000 65.7500 -64.0 + 154.5000 65.7500 -64.0 + 163.5000 75.7500 -64.0 + 163.5000 71.2500 -64.0 + 160.7500 64.5000 -64.0 + 156.7500 60.5000 -64.0 + 151.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 79.5000 -64.0 + 153.5000 80.2500 -64.0 + 153.2500 83.5000 -64.0 + 155.5000 85.7500 -64.0 + 155.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 87.5000 -64.0 + 90.5000 88.2500 -64.0 + 92.2500 89.5000 -64.0 + 92.2500 91.5000 -64.0 + 93.5000 91.7500 -64.0 + 93.7500 90.5000 -64.0 + 92.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 88.5000 -64.0 + 106.5000 89.2500 -64.0 + 106.2500 94.5000 -64.0 + 107.5000 93.7500 -64.0 + 107.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 88.5000 -64.0 + 127.2500 89.5000 -64.0 + 129.5000 89.7500 -64.0 + 129.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 90.5000 -64.0 + 121.5000 92.2500 -64.0 + 122.5000 92.7500 -64.0 + 123.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 46.2500 96.5000 -64.0 + 43.5000 99.2500 -64.0 + 43.2500 105.5000 -64.0 + 45.5000 107.7500 -64.0 + 47.5000 106.7500 -64.0 + 51.5000 106.7500 -64.0 + 61.2500 111.5000 -64.0 + 63.5000 111.7500 -64.0 + 66.2500 116.5000 -64.0 + 65.5000 118.2500 -64.0 + 63.2500 119.5000 -64.0 + 66.5000 119.7500 -64.0 + 71.5000 117.7500 -64.0 + 76.5000 112.7500 -64.0 + 74.7500 109.5000 -64.0 + 76.5000 107.7500 -64.0 + 75.7500 105.5000 -64.0 + 74.5000 105.2500 -64.0 + 68.5000 108.2500 -64.0 + 64.7500 105.5000 -64.0 + 59.5000 105.2500 -64.0 + 57.5000 107.2500 -64.0 + 54.5000 105.2500 -64.0 + 53.7500 103.5000 -64.0 + 54.5000 101.7500 -64.0 + 56.5000 101.7500 -64.0 + 57.2500 103.5000 -64.0 + 58.5000 103.7500 -64.0 + 57.7500 100.5000 -64.0 + 55.7500 98.5000 -64.0 + 53.5000 98.2500 -64.0 + 49.7500 96.5000 -64.0 +} -64.0 +{ -64.0 + 48.2500 109.5000 -64.0 + 47.2500 110.5000 -64.0 + 48.2500 113.5000 -64.0 + 51.7500 114.5000 -64.0 + 50.7500 112.5000 -64.0 + 50.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 109.5000 -64.0 + 98.5000 110.2500 -64.0 + 95.2500 115.5000 -64.0 + 98.5000 112.7500 -64.0 + 103.5000 112.7500 -64.0 + 105.5000 111.7500 -64.0 + 108.5000 111.7500 -64.0 + 111.5000 112.7500 -64.0 + 115.2500 115.5000 -64.0 + 118.2500 119.5000 -64.0 + 119.7500 119.5000 -64.0 + 114.5000 113.2500 -64.0 + 112.5000 112.2500 -64.0 + 110.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 161.2500 111.5000 -64.0 + 152.5000 116.2500 -64.0 + 151.5000 117.7500 -64.0 + 153.5000 116.7500 -64.0 + 155.5000 116.7500 -64.0 + 157.5000 114.7500 -64.0 + 163.5000 112.7500 -64.0 + 165.5000 114.7500 -64.0 + 165.7500 112.5000 -64.0 + 163.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 112.5000 -64.0 + 83.5000 117.2500 -64.0 + 81.7500 116.5000 -64.0 + 82.7500 114.5000 -64.0 + 77.5000 114.2500 -64.0 + 75.2500 117.5000 -64.0 + 78.2500 118.5000 -64.0 + 78.2500 120.5000 -64.0 + 73.5000 123.2500 -64.0 + 70.5000 122.2500 -64.0 + 66.5000 126.2500 -64.0 + 66.2500 129.5000 -64.0 + 64.5000 131.2500 -64.0 + 63.7500 130.5000 -64.0 + 61.5000 130.2500 -64.0 + 57.5000 127.2500 -64.0 + 55.5000 129.2500 -64.0 + 53.5000 129.2500 -64.0 + 49.7500 127.5000 -64.0 + 47.5000 127.2500 -64.0 + 45.7500 125.5000 -64.0 + 42.2500 128.5000 -64.0 + 36.5000 136.2500 -64.0 + 34.5000 142.2500 -64.0 + 34.2500 156.5000 -64.0 + 35.2500 158.5000 -64.0 + 36.2500 168.5000 -64.0 + 40.2500 178.5000 -64.0 + 40.2500 180.5000 -64.0 + 45.2500 190.5000 -64.0 + 48.2500 192.5000 -64.0 + 55.2500 204.5000 -64.0 + 65.5000 215.7500 -64.0 + 73.2500 221.5000 -64.0 + 86.2500 225.5000 -64.0 + 101.5000 225.7500 -64.0 + 103.5000 224.7500 -64.0 + 115.5000 225.7500 -64.0 + 117.5000 224.7500 -64.0 + 120.5000 224.7500 -64.0 + 131.5000 220.7500 -64.0 + 138.5000 215.7500 -64.0 + 150.5000 202.7500 -64.0 + 156.7500 192.5000 -64.0 + 161.7500 187.5000 -64.0 + 165.7500 181.5000 -64.0 + 172.7500 165.5000 -64.0 + 174.5000 156.7500 -64.0 + 174.7500 147.5000 -64.0 + 173.7500 145.5000 -64.0 + 172.7500 139.5000 -64.0 + 167.7500 133.5000 -64.0 + 163.5000 133.2500 -64.0 + 162.2500 139.5000 -64.0 + 165.5000 139.7500 -64.0 + 169.5000 137.7500 -64.0 + 171.2500 140.5000 -64.0 + 167.5000 143.2500 -64.0 + 168.2500 144.5000 -64.0 + 167.2500 148.5000 -64.0 + 169.5000 148.7500 -64.0 + 170.2500 150.5000 -64.0 + 169.2500 152.5000 -64.0 + 171.2500 156.5000 -64.0 + 167.5000 158.2500 -64.0 + 167.2500 164.5000 -64.0 + 166.5000 166.2500 -64.0 + 164.7500 165.5000 -64.0 + 164.7500 163.5000 -64.0 + 163.7500 161.5000 -64.0 + 163.7500 150.5000 -64.0 + 161.5000 150.2500 -64.0 + 156.7500 145.5000 -64.0 + 155.7500 143.5000 -64.0 + 151.7500 142.5000 -64.0 + 150.7500 140.5000 -64.0 + 147.7500 139.5000 -64.0 + 150.5000 137.7500 -64.0 + 153.5000 133.7500 -64.0 + 159.5000 135.7500 -64.0 + 159.7500 134.5000 -64.0 + 153.5000 133.2500 -64.0 + 152.7500 131.5000 -64.0 + 146.7500 128.5000 -64.0 + 148.5000 126.7500 -64.0 + 151.5000 126.7500 -64.0 + 156.7500 124.5000 -64.0 + 150.5000 124.2500 -64.0 + 141.7500 120.5000 -64.0 + 139.5000 120.2500 -64.0 + 137.7500 118.5000 -64.0 + 138.5000 117.7500 -64.0 + 141.5000 117.7500 -64.0 + 143.7500 115.5000 -64.0 + 138.7500 112.5000 -64.0 + 137.2500 112.5000 -64.0 + 136.2500 114.5000 -64.0 + 132.5000 118.2500 -64.0 + 132.2500 120.5000 -64.0 + 138.5000 121.7500 -64.0 + 140.2500 124.5000 -64.0 + 137.5000 127.2500 -64.0 + 134.5000 127.2500 -64.0 + 131.7500 123.5000 -64.0 + 131.7500 121.5000 -64.0 + 129.5000 121.2500 -64.0 + 128.2500 124.5000 -64.0 + 129.2500 127.5000 -64.0 + 133.2500 129.5000 -64.0 + 132.5000 130.2500 -64.0 + 132.2500 134.5000 -64.0 + 134.2500 136.5000 -64.0 + 139.2500 139.5000 -64.0 + 146.2500 141.5000 -64.0 + 147.5000 143.7500 -64.0 + 149.5000 144.7500 -64.0 + 150.2500 146.5000 -64.0 + 153.5000 147.7500 -64.0 + 157.2500 150.5000 -64.0 + 162.2500 160.5000 -64.0 + 162.2500 169.5000 -64.0 + 147.5000 194.2500 -64.0 + 147.2500 197.5000 -64.0 + 141.2500 204.5000 -64.0 + 130.5000 212.2500 -64.0 + 118.5000 218.2500 -64.0 + 116.5000 218.2500 -64.0 + 114.5000 219.2500 -64.0 + 111.7500 217.5000 -64.0 + 108.5000 213.2500 -64.0 + 105.5000 214.2500 -64.0 + 101.5000 211.2500 -64.0 + 99.5000 214.2500 -64.0 + 95.5000 217.2500 -64.0 + 83.5000 217.2500 -64.0 + 73.5000 212.2500 -64.0 + 68.5000 207.2500 -64.0 + 64.5000 205.2500 -64.0 + 60.7500 201.5000 -64.0 + 56.7500 194.5000 -64.0 + 54.7500 185.5000 -64.0 + 50.5000 181.2500 -64.0 + 48.5000 180.2500 -64.0 + 45.7500 175.5000 -64.0 + 45.7500 171.5000 -64.0 + 44.7500 169.5000 -64.0 + 44.7500 157.5000 -64.0 + 43.7500 154.5000 -64.0 + 44.7500 151.5000 -64.0 + 48.5000 148.7500 -64.0 + 52.5000 148.7500 -64.0 + 76.5000 136.7500 -64.0 + 80.5000 132.7500 -64.0 + 88.5000 128.7500 -64.0 + 88.5000 126.2500 -64.0 + 86.5000 125.2500 -64.0 + 84.5000 127.2500 -64.0 + 80.5000 127.2500 -64.0 + 76.7500 124.5000 -64.0 + 80.5000 120.7500 -64.0 + 84.5000 118.7500 -64.0 + 87.7500 119.5000 -64.0 + 85.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 54.2500 115.5000 -64.0 + 54.5000 115.7500 -64.0 + 57.7500 117.5000 -64.0 + 56.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 47.2500 116.5000 -64.0 + 46.5000 117.2500 -64.0 + 46.2500 121.5000 -64.0 + 48.2500 125.5000 -64.0 + 49.5000 125.7500 -64.0 + 51.5000 124.7500 -64.0 + 56.5000 121.7500 -64.0 + 59.5000 121.7500 -64.0 + 62.7500 120.5000 -64.0 + 58.5000 120.2500 -64.0 + 52.5000 117.2500 -64.0 + 50.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 118.5000 -64.0 + 109.2500 119.5000 -64.0 + 111.5000 120.7500 -64.0 + 112.5000 120.2500 -64.0 +} -64.0 +{ -64.0 + 161.2500 118.5000 -64.0 + 159.5000 120.2500 -64.0 + 157.2500 120.5000 -64.0 + 160.5000 120.7500 -64.0 + 162.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 121.5000 -64.0 + 96.5000 122.2500 -64.0 + 97.5000 122.7500 -64.0 + 98.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 121.5000 -64.0 + 115.2500 123.5000 -64.0 + 118.2500 129.5000 -64.0 + 121.2500 131.5000 -64.0 + 126.5000 131.7500 -64.0 + 126.7500 128.5000 -64.0 + 125.7500 125.5000 -64.0 + 124.5000 125.2500 -64.0 + 126.2500 128.5000 -64.0 + 123.5000 131.2500 -64.0 + 119.7500 128.5000 -64.0 + 117.7500 124.5000 -64.0 + 114.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 160.2500 122.5000 -64.0 + 159.2500 123.5000 -64.0 + 161.5000 123.7500 -64.0 + 161.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 47.2500 137.5000 -64.0 + 47.2500 138.5000 -64.0 + 48.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 62.5000 58.7500 -64.0 + 63.2500 59.5000 -64.0 + 57.5000 66.2500 -64.0 + 56.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 157.7500 66.5000 -64.0 + 158.5000 65.7500 -64.0 + 159.2500 66.5000 -64.0 + 158.5000 67.2500 -64.0 +} -64.0 +{ -64.0 + 45.7500 101.5000 -64.0 + 47.5000 100.7500 -64.0 + 48.2500 102.5000 -64.0 + 50.2500 103.5000 -64.0 + 47.5000 105.2500 -64.0 + 45.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 71.7500 108.5000 -64.0 + 72.5000 107.7500 -64.0 + 74.2500 109.5000 -64.0 + 72.5000 112.2500 -64.0 + 68.5000 112.2500 -64.0 + 67.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 140.7500 126.5000 -64.0 + 142.5000 125.7500 -64.0 + 146.2500 133.5000 -64.0 + 145.5000 135.2500 -64.0 + 146.2500 137.5000 -64.0 + 145.5000 139.2500 -64.0 + 141.7500 134.5000 -64.0 + 142.7500 132.5000 -64.0 +} -64.0 +{ -64.0 + 71.5000 126.7500 -64.0 + 73.2500 127.5000 -64.0 + 70.5000 129.2500 -64.0 + 69.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 53.7500 130.5000 -64.0 + 54.5000 129.7500 -64.0 + 56.5000 129.7500 -64.0 + 60.2500 133.5000 -64.0 + 60.2500 135.5000 -64.0 + 61.5000 136.7500 -64.0 + 63.5000 137.7500 -64.0 + 65.2500 138.5000 -64.0 + 64.2500 140.5000 -64.0 + 61.5000 142.2500 -64.0 + 59.5000 142.2500 -64.0 + 56.5000 145.2500 -64.0 + 54.7500 144.5000 -64.0 + 54.7500 141.5000 -64.0 + 53.2500 141.5000 -64.0 + 54.2500 143.5000 -64.0 + 52.5000 146.2500 -64.0 + 51.7500 145.5000 -64.0 + 49.5000 145.2500 -64.0 + 48.5000 147.2500 -64.0 + 44.5000 147.2500 -64.0 + 42.5000 149.2500 -64.0 + 42.2500 151.5000 -64.0 + 40.5000 152.2500 -64.0 + 38.7500 149.5000 -64.0 + 38.7500 145.5000 -64.0 + 40.7500 144.5000 -64.0 + 41.7500 142.5000 -64.0 + 38.5000 142.2500 -64.0 + 37.7500 140.5000 -64.0 + 39.5000 139.7500 -64.0 + 40.5000 137.7500 -64.0 + 42.5000 137.7500 -64.0 + 42.7500 136.5000 -64.0 + 41.7500 134.5000 -64.0 + 43.5000 132.7500 -64.0 + 45.5000 133.7500 -64.0 + 45.7500 131.5000 -64.0 + 47.5000 130.7500 -64.0 + 49.2500 131.5000 -64.0 + 48.2500 133.5000 -64.0 + 50.5000 133.7500 -64.0 + 50.7500 132.5000 -64.0 +} -64.0 +{ -64.0 + 160.7500 154.5000 -64.0 + 161.5000 153.7500 -64.0 + 163.2500 154.5000 -64.0 + 162.5000 155.2500 -64.0 +} -64.0 +v 424 z -126.000000 -64.0 +{ -64.0 + 110.2500 34.5000 -64.0 + 110.2500 37.5000 -64.0 + 109.5000 39.2500 -64.0 + 109.2500 43.5000 -64.0 + 110.5000 43.7500 -64.0 + 111.5000 41.7500 -64.0 + 111.7500 34.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 43.5000 -64.0 + 92.2500 48.5000 -64.0 + 91.2500 50.5000 -64.0 + 92.7500 51.5000 -64.0 + 98.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 43.5000 -64.0 + 120.2500 44.5000 -64.0 + 123.2500 47.5000 -64.0 + 126.2500 52.5000 -64.0 + 127.5000 54.7500 -64.0 + 131.2500 57.5000 -64.0 + 132.7500 57.5000 -64.0 + 127.7500 53.5000 -64.0 + 127.7500 51.5000 -64.0 + 121.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 50.5000 -64.0 + 109.2500 55.5000 -64.0 + 110.5000 53.7500 -64.0 + 110.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 55.5000 -64.0 + 65.5000 56.2500 -64.0 + 63.5000 56.2500 -64.0 + 59.5000 59.2500 -64.0 + 56.2500 63.5000 -64.0 + 55.2500 65.5000 -64.0 + 52.5000 71.2500 -64.0 + 52.2500 73.5000 -64.0 + 63.5000 62.7500 -64.0 + 67.5000 62.7500 -64.0 + 71.7500 64.5000 -64.0 + 70.7500 61.5000 -64.0 + 68.5000 60.2500 -64.0 + 66.5000 61.2500 -64.0 + 65.7500 60.5000 -64.0 + 64.7500 58.5000 -64.0 + 68.5000 55.7500 -64.0 + 75.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 143.2500 57.5000 -64.0 + 141.2500 58.5000 -64.0 + 145.2500 59.5000 -64.0 + 151.5000 59.7500 -64.0 + 153.2500 61.5000 -64.0 + 152.5000 63.2500 -64.0 + 147.2500 63.5000 -64.0 + 145.2500 67.5000 -64.0 + 147.5000 65.7500 -64.0 + 149.5000 65.7500 -64.0 + 151.5000 64.7500 -64.0 + 152.2500 65.5000 -64.0 + 153.5000 64.7500 -64.0 + 155.5000 65.7500 -64.0 + 159.5000 70.7500 -64.0 + 161.5000 71.7500 -64.0 + 161.7500 69.5000 -64.0 + 159.7500 64.5000 -64.0 + 152.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 59.2500 76.5000 -64.0 + 58.2500 79.5000 -64.0 + 59.7500 80.5000 -64.0 + 61.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 79.5000 -64.0 + 152.2500 82.5000 -64.0 + 153.5000 85.7500 -64.0 + 155.5000 86.7500 -64.0 + 155.7500 81.5000 -64.0 + 154.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 88.2500 86.5000 -64.0 + 87.5000 87.2500 -64.0 + 88.5000 87.7500 -64.0 + 89.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 87.5000 -64.0 + 107.2500 89.5000 -64.0 + 107.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 87.5000 -64.0 + 127.2500 88.5000 -64.0 + 129.5000 89.7500 -64.0 + 129.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 123.2500 88.5000 -64.0 + 123.2500 90.5000 -64.0 + 124.5000 89.7500 -64.0 +} -64.0 +{ -64.0 + 93.2500 89.5000 -64.0 + 92.2500 91.5000 -64.0 + 93.5000 92.7500 -64.0 +} -64.0 +{ -64.0 + 124.2500 93.5000 -64.0 + 126.2500 95.5000 -64.0 + 127.5000 94.7500 -64.0 + 126.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 50.2500 97.5000 -64.0 + 47.5000 99.2500 -64.0 + 45.5000 99.2500 -64.0 + 44.2500 102.5000 -64.0 + 45.2500 105.5000 -64.0 + 47.5000 105.7500 -64.0 + 50.5000 104.7500 -64.0 + 52.2500 105.5000 -64.0 + 54.5000 104.7500 -64.0 + 54.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 73.2500 106.5000 -64.0 + 67.5000 110.2500 -64.0 + 66.7500 109.5000 -64.0 + 64.2500 109.5000 -64.0 + 67.2500 113.5000 -64.0 + 67.2500 117.5000 -64.0 + 65.5000 119.2500 -64.0 + 59.5000 121.2500 -64.0 + 55.7500 119.5000 -64.0 + 57.5000 118.7500 -64.0 + 54.7500 117.5000 -64.0 + 53.5000 118.2500 -64.0 + 49.5000 118.2500 -64.0 + 48.5000 120.2500 -64.0 + 48.5000 123.7500 -64.0 + 50.5000 122.7500 -64.0 + 56.5000 122.7500 -64.0 + 62.5000 120.7500 -64.0 + 66.5000 120.7500 -64.0 + 68.5000 119.7500 -64.0 + 70.5000 119.7500 -64.0 + 72.5000 117.7500 -64.0 + 75.5000 117.7500 -64.0 + 77.2500 119.5000 -64.0 + 77.2500 121.5000 -64.0 + 74.5000 124.2500 -64.0 + 70.7500 122.5000 -64.0 + 68.2500 127.5000 -64.0 + 70.2500 128.5000 -64.0 + 69.5000 130.2500 -64.0 + 68.5000 129.2500 -64.0 + 66.5000 130.2500 -64.0 + 62.5000 130.2500 -64.0 + 60.7500 128.5000 -64.0 + 58.5000 128.2500 -64.0 + 55.5000 129.2500 -64.0 + 61.2500 134.5000 -64.0 + 62.2500 136.5000 -64.0 + 63.5000 136.7500 -64.0 + 64.2500 138.5000 -64.0 + 60.5000 142.2500 -64.0 + 58.5000 142.2500 -64.0 + 57.5000 144.2500 -64.0 + 53.5000 146.2500 -64.0 + 51.7500 144.5000 -64.0 + 49.5000 145.2500 -64.0 + 49.2500 149.5000 -64.0 + 47.5000 150.2500 -64.0 + 45.2500 158.5000 -64.0 + 43.5000 159.2500 -64.0 + 41.7500 156.5000 -64.0 + 41.7500 152.5000 -64.0 + 38.7500 149.5000 -64.0 + 37.7500 147.5000 -64.0 + 38.7500 144.5000 -64.0 + 40.7500 143.5000 -64.0 + 39.7500 141.5000 -64.0 + 43.5000 135.7500 -64.0 + 48.5000 136.7500 -64.0 + 46.7500 134.5000 -64.0 + 41.7500 133.5000 -64.0 + 42.5000 132.7500 -64.0 + 46.5000 132.7500 -64.0 + 48.5000 130.7500 -64.0 + 49.2500 131.5000 -64.0 + 53.5000 131.7500 -64.0 + 54.7500 130.5000 -64.0 + 42.5000 129.2500 -64.0 + 39.2500 133.5000 -64.0 + 35.5000 141.2500 -64.0 + 35.2500 148.5000 -64.0 + 34.2500 153.5000 -64.0 + 35.2500 155.5000 -64.0 + 35.2500 159.5000 -64.0 + 36.2500 161.5000 -64.0 + 37.2500 170.5000 -64.0 + 39.2500 174.5000 -64.0 + 39.2500 176.5000 -64.0 + 44.2500 186.5000 -64.0 + 48.2500 190.5000 -64.0 + 59.2500 207.5000 -64.0 + 67.2500 215.5000 -64.0 + 71.5000 218.7500 -64.0 + 79.5000 222.7500 -64.0 + 86.2500 224.5000 -64.0 + 101.5000 224.7500 -64.0 + 103.5000 223.7500 -64.0 + 114.5000 224.7500 -64.0 + 116.5000 223.7500 -64.0 + 120.5000 223.7500 -64.0 + 126.5000 221.7500 -64.0 + 136.5000 215.7500 -64.0 + 147.5000 204.7500 -64.0 + 151.7500 198.5000 -64.0 + 158.5000 190.7500 -64.0 + 165.7500 179.5000 -64.0 + 170.7500 169.5000 -64.0 + 173.5000 157.7500 -64.0 + 173.7500 147.5000 -64.0 + 172.7500 145.5000 -64.0 + 171.7500 139.5000 -64.0 + 166.7500 133.5000 -64.0 + 163.5000 133.2500 -64.0 + 160.5000 134.2500 -64.0 + 155.7500 132.5000 -64.0 + 154.5000 133.2500 -64.0 + 152.7500 128.5000 -64.0 + 154.5000 126.7500 -64.0 + 161.5000 122.7500 -64.0 + 160.5000 122.2500 -64.0 + 156.5000 124.2500 -64.0 + 149.5000 124.2500 -64.0 + 136.5000 119.2500 -64.0 + 140.2500 124.5000 -64.0 + 137.5000 127.2500 -64.0 + 134.5000 127.2500 -64.0 + 133.2500 134.5000 -64.0 + 134.5000 134.7500 -64.0 + 134.7500 132.5000 -64.0 + 137.5000 129.7500 -64.0 + 141.2500 130.5000 -64.0 + 141.2500 135.5000 -64.0 + 137.2500 138.5000 -64.0 + 146.5000 141.7500 -64.0 + 147.2500 143.5000 -64.0 + 150.2500 145.5000 -64.0 + 152.5000 145.7500 -64.0 + 156.2500 148.5000 -64.0 + 162.2500 156.5000 -64.0 + 162.2500 158.5000 -64.0 + 163.2500 160.5000 -64.0 + 163.2500 164.5000 -64.0 + 154.2500 181.5000 -64.0 + 149.5000 187.2500 -64.0 + 146.5000 192.2500 -64.0 + 146.2500 194.5000 -64.0 + 143.5000 200.2500 -64.0 + 131.5000 209.2500 -64.0 + 117.5000 217.2500 -64.0 + 114.5000 217.2500 -64.0 + 109.5000 211.2500 -64.0 + 107.5000 212.2500 -64.0 + 105.5000 212.2500 -64.0 + 102.7500 208.5000 -64.0 + 101.5000 208.2500 -64.0 + 95.5000 215.2500 -64.0 + 83.5000 215.2500 -64.0 + 74.5000 211.2500 -64.0 + 68.5000 205.2500 -64.0 + 64.5000 203.2500 -64.0 + 59.7500 195.5000 -64.0 + 59.7500 193.5000 -64.0 + 53.7500 181.5000 -64.0 + 47.7500 174.5000 -64.0 + 47.7500 169.5000 -64.0 + 46.7500 167.5000 -64.0 + 46.7500 153.5000 -64.0 + 50.5000 150.7500 -64.0 + 52.5000 150.7500 -64.0 + 55.7500 148.5000 -64.0 + 58.5000 144.7500 -64.0 + 65.5000 140.7500 -64.0 + 75.5000 136.7500 -64.0 + 79.5000 132.7500 -64.0 + 77.7500 130.5000 -64.0 + 78.5000 128.7500 -64.0 + 79.2500 129.5000 -64.0 + 85.5000 129.7500 -64.0 + 85.7500 126.5000 -64.0 + 83.7500 125.5000 -64.0 + 82.7500 123.5000 -64.0 + 84.5000 121.7500 -64.0 + 84.7500 118.5000 -64.0 + 81.5000 120.2500 -64.0 + 80.7500 119.5000 -64.0 + 81.7500 116.5000 -64.0 + 79.7500 114.5000 -64.0 + 76.5000 114.2500 -64.0 + 74.7500 111.5000 -64.0 + 74.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 47.2500 108.5000 -64.0 + 47.5000 108.7500 -64.0 + 49.5000 109.7500 -64.0 + 53.2500 111.5000 -64.0 + 53.7500 110.5000 -64.0 + 51.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 102.2500 110.5000 -64.0 + 96.5000 113.2500 -64.0 + 93.5000 117.7500 -64.0 + 99.5000 113.7500 -64.0 + 102.5000 113.7500 -64.0 + 105.5000 112.7500 -64.0 + 110.5000 113.7500 -64.0 + 111.2500 115.5000 -64.0 + 113.5000 115.7500 -64.0 + 119.2500 119.5000 -64.0 + 119.7500 118.5000 -64.0 + 118.5000 118.2500 -64.0 + 116.5000 115.2500 -64.0 + 112.5000 113.2500 -64.0 + 109.5000 110.2500 -64.0 + 106.5000 111.2500 -64.0 +} -64.0 +{ -64.0 + 161.2500 111.5000 -64.0 + 149.5000 117.2500 -64.0 + 150.2500 119.5000 -64.0 + 160.5000 113.7500 -64.0 + 163.5000 113.7500 -64.0 + 164.7500 115.5000 -64.0 + 165.7500 113.5000 -64.0 + 164.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 113.5000 -64.0 + 135.2500 116.5000 -64.0 + 136.5000 117.7500 -64.0 + 138.5000 116.7500 -64.0 + 140.5000 116.7500 -64.0 + 140.7500 115.5000 -64.0 + 137.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 57.2500 114.5000 -64.0 + 58.2500 116.5000 -64.0 + 59.7500 116.5000 -64.0 + 58.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 162.2500 117.5000 -64.0 + 160.5000 118.2500 -64.0 + 159.5000 119.7500 -64.0 + 162.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 118.5000 -64.0 + 105.2500 119.5000 -64.0 + 110.5000 119.7500 -64.0 + 108.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 119.5000 -64.0 + 100.5000 120.2500 -64.0 + 98.5000 120.2500 -64.0 + 95.2500 123.5000 -64.0 + 93.2500 127.5000 -64.0 + 99.5000 121.7500 -64.0 + 103.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 121.5000 -64.0 + 117.5000 128.7500 -64.0 + 117.7500 124.5000 -64.0 + 114.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 122.5000 -64.0 + 122.2500 123.5000 -64.0 + 126.2500 129.5000 -64.0 + 125.5000 131.2500 -64.0 + 119.5000 131.2500 -64.0 + 120.2500 132.5000 -64.0 + 124.5000 133.7500 -64.0 + 128.5000 131.7500 -64.0 + 128.7500 127.5000 -64.0 + 126.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 43.2500 147.5000 -64.0 + 42.5000 151.2500 -64.0 + 43.7500 152.5000 -64.0 + 44.7500 150.5000 -64.0 +} -64.0 +{ -64.0 + 59.7500 61.5000 -64.0 + 60.5000 60.7500 -64.0 + 62.2500 61.5000 -64.0 + 58.5000 65.2500 -64.0 + 57.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 71.5000 109.7500 -64.0 + 73.2500 110.5000 -64.0 + 71.5000 112.2500 -64.0 + 69.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 76.7500 124.5000 -64.0 + 78.5000 123.7500 -64.0 + 79.2500 125.5000 -64.0 + 77.5000 127.2500 -64.0 + 75.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 80.7500 126.5000 -64.0 + 81.5000 125.7500 -64.0 + 82.2500 126.5000 -64.0 + 81.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 141.7500 126.5000 -64.0 + 142.5000 125.7500 -64.0 + 143.2500 126.5000 -64.0 + 142.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 142.7500 131.5000 -64.0 + 143.5000 130.7500 -64.0 + 145.5000 130.7500 -64.0 + 147.2500 132.5000 -64.0 + 148.2500 134.5000 -64.0 + 146.5000 135.2500 -64.0 + 146.2500 137.5000 -64.0 + 147.2500 139.5000 -64.0 + 146.5000 140.2500 -64.0 + 142.7500 136.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 135.5000 -64.0 + 153.5000 134.7500 -64.0 + 157.5000 134.7500 -64.0 + 159.2500 135.5000 -64.0 + 160.5000 134.7500 -64.0 + 162.2500 135.5000 -64.0 + 165.2500 139.5000 -64.0 + 167.5000 139.7500 -64.0 + 169.2500 141.5000 -64.0 + 168.5000 143.2500 -64.0 + 169.2500 144.5000 -64.0 + 168.5000 146.2500 -64.0 + 170.2500 148.5000 -64.0 + 171.2500 150.5000 -64.0 + 169.5000 152.2500 -64.0 + 171.2500 154.5000 -64.0 + 171.2500 157.5000 -64.0 + 165.5000 160.2500 -64.0 + 162.7500 157.5000 -64.0 + 163.5000 156.7500 -64.0 + 163.7500 154.5000 -64.0 + 164.5000 152.7500 -64.0 + 164.5000 150.2500 -64.0 + 162.5000 153.2500 -64.0 + 161.5000 152.2500 -64.0 + 156.7500 145.5000 -64.0 + 156.7500 143.5000 -64.0 + 153.5000 143.2500 -64.0 + 149.7500 140.5000 -64.0 + 149.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 140.7500 138.5000 -64.0 + 141.5000 137.7500 -64.0 + 143.2500 138.5000 -64.0 + 142.5000 139.2500 -64.0 +} -64.0 +v 396 z -128.000000 -64.0 +{ -64.0 + 111.2500 35.5000 -64.0 + 110.5000 36.2500 -64.0 + 108.5000 37.2500 -64.0 + 108.2500 38.5000 -64.0 + 110.2500 40.5000 -64.0 + 113.5000 40.7500 -64.0 + 113.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 41.5000 -64.0 + 99.5000 42.2500 -64.0 + 97.5000 43.2500 -64.0 + 92.5000 48.2500 -64.0 + 91.2500 54.5000 -64.0 + 92.5000 54.7500 -64.0 + 92.7500 51.5000 -64.0 + 95.5000 47.7500 -64.0 + 97.5000 46.7500 -64.0 + 99.5000 43.7500 -64.0 + 101.5000 42.7500 -64.0 + 101.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 41.5000 -64.0 + 109.2500 43.5000 -64.0 + 110.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 42.5000 -64.0 + 118.2500 43.5000 -64.0 + 122.2500 46.5000 -64.0 + 121.5000 47.7500 -64.0 + 123.5000 48.7500 -64.0 + 127.2500 54.5000 -64.0 + 127.5000 56.7500 -64.0 + 127.7500 51.5000 -64.0 + 123.5000 45.2500 -64.0 + 119.7500 42.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 51.5000 -64.0 + 109.5000 52.2500 -64.0 + 109.2500 57.5000 -64.0 + 110.5000 55.7500 -64.0 + 110.7500 52.5000 -64.0 +} -64.0 +{ -64.0 + 67.2500 55.5000 -64.0 + 62.5000 57.2500 -64.0 + 59.5000 60.2500 -64.0 + 56.5000 65.2500 -64.0 + 56.2500 68.5000 -64.0 + 64.5000 61.7500 -64.0 + 68.5000 61.7500 -64.0 + 73.7500 65.5000 -64.0 + 71.7500 60.5000 -64.0 + 66.5000 60.2500 -64.0 + 65.7500 58.5000 -64.0 + 67.5000 56.7500 -64.0 + 75.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 58.5000 -64.0 + 140.2500 59.5000 -64.0 + 142.5000 59.7500 -64.0 + 144.2500 61.5000 -64.0 + 144.2500 66.5000 -64.0 + 145.5000 66.7500 -64.0 + 149.5000 63.7500 -64.0 + 154.5000 63.7500 -64.0 + 154.7500 62.5000 -64.0 + 151.7500 59.5000 -64.0 + 146.5000 59.2500 -64.0 + 144.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 60.2500 75.5000 -64.0 + 59.5000 76.2500 -64.0 + 59.5000 81.7500 -64.0 + 61.5000 80.7500 -64.0 + 61.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 79.5000 -64.0 + 152.5000 80.2500 -64.0 + 152.2500 85.5000 -64.0 + 153.5000 86.7500 -64.0 + 155.5000 87.7500 -64.0 + 155.7500 84.5000 -64.0 + 154.7500 82.5000 -64.0 + 154.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 80.5000 -64.0 + 92.2500 81.5000 -64.0 + 93.2500 83.5000 -64.0 + 91.5000 85.2500 -64.0 + 93.2500 88.5000 -64.0 + 93.5000 90.7500 -64.0 + 93.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 82.5000 -64.0 + 123.2500 84.5000 -64.0 + 125.5000 83.7500 -64.0 +} -64.0 +{ -64.0 + 88.2500 83.5000 -64.0 + 87.5000 84.2500 -64.0 + 87.5000 86.7500 -64.0 + 89.5000 85.7500 -64.0 +} -64.0 +{ -64.0 + 126.2500 84.5000 -64.0 + 126.2500 87.5000 -64.0 + 129.5000 87.7500 -64.0 + 131.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 123.2500 87.5000 -64.0 + 123.2500 88.5000 -64.0 + 122.2500 91.5000 -64.0 + 123.5000 91.7500 -64.0 + 125.2500 92.5000 -64.0 + 126.7500 92.5000 -64.0 + 127.7500 90.5000 -64.0 + 126.5000 90.2500 -64.0 + 124.7500 89.5000 -64.0 + 124.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 48.2500 100.5000 -64.0 + 46.2500 102.5000 -64.0 + 48.7500 102.5000 -64.0 + 49.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 46.2500 107.5000 -64.0 + 44.5000 109.7500 -64.0 + 46.5000 108.7500 -64.0 + 54.5000 112.7500 -64.0 + 52.5000 110.2500 -64.0 + 48.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 71.2500 109.5000 -64.0 + 67.5000 112.2500 -64.0 + 69.2500 116.5000 -64.0 + 67.5000 118.2500 -64.0 + 61.5000 121.2500 -64.0 + 58.5000 121.2500 -64.0 + 55.5000 120.2500 -64.0 + 50.5000 119.2500 -64.0 + 48.5000 120.2500 -64.0 + 49.2500 121.5000 -64.0 + 53.2500 122.5000 -64.0 + 60.5000 122.7500 -64.0 + 62.5000 121.7500 -64.0 + 64.5000 121.7500 -64.0 + 66.5000 122.7500 -64.0 + 68.5000 121.7500 -64.0 + 70.5000 121.7500 -64.0 + 70.7500 119.5000 -64.0 + 72.5000 117.7500 -64.0 + 76.5000 117.7500 -64.0 + 78.5000 116.7500 -64.0 + 78.5000 115.2500 -64.0 + 74.7500 113.5000 -64.0 + 74.7500 111.5000 -64.0 + 73.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 160.2500 110.5000 -64.0 + 159.5000 111.2500 -64.0 + 155.5000 114.2500 -64.0 + 150.5000 117.2500 -64.0 + 152.5000 119.7500 -64.0 + 152.7500 117.5000 -64.0 + 155.5000 115.7500 -64.0 + 157.5000 115.7500 -64.0 + 159.5000 113.7500 -64.0 + 161.2500 114.5000 -64.0 + 160.2500 117.5000 -64.0 + 157.5000 119.2500 -64.0 + 158.5000 119.7500 -64.0 + 161.5000 118.7500 -64.0 + 164.5000 114.7500 -64.0 + 164.7500 112.5000 -64.0 + 161.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 102.2500 112.5000 -64.0 + 101.5000 113.2500 -64.0 + 99.5000 113.2500 -64.0 + 96.5000 114.2500 -64.0 + 94.2500 116.5000 -64.0 + 97.5000 116.7500 -64.0 + 99.5000 115.7500 -64.0 + 101.5000 115.7500 -64.0 + 105.5000 113.7500 -64.0 + 108.5000 114.7500 -64.0 + 109.2500 116.5000 -64.0 + 112.5000 116.7500 -64.0 + 114.2500 118.5000 -64.0 + 118.5000 119.7500 -64.0 + 117.5000 117.2500 -64.0 + 113.7500 114.5000 -64.0 + 111.5000 114.2500 -64.0 + 109.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 55.2500 113.5000 -64.0 + 58.2500 115.5000 -64.0 + 59.7500 115.5000 -64.0 + 56.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 114.5000 -64.0 + 137.2500 116.5000 -64.0 + 138.7500 116.5000 -64.0 + 139.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 119.5000 -64.0 + 99.5000 120.2500 -64.0 + 94.5000 126.2500 -64.0 + 94.2500 128.5000 -64.0 + 95.7500 125.5000 -64.0 + 98.5000 122.7500 -64.0 + 103.5000 119.7500 -64.0 + 107.5000 119.7500 -64.0 + 112.5000 121.7500 -64.0 + 115.2500 124.5000 -64.0 + 118.5000 130.7500 -64.0 + 118.7500 128.5000 -64.0 + 117.7500 126.5000 -64.0 + 117.7500 124.5000 -64.0 + 115.5000 122.2500 -64.0 + 109.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 79.2500 121.5000 -64.0 + 73.5000 124.2500 -64.0 + 71.5000 128.2500 -64.0 + 68.5000 128.2500 -64.0 + 66.5000 131.2500 -64.0 + 61.7500 128.5000 -64.0 + 58.5000 128.2500 -64.0 + 53.2500 130.5000 -64.0 + 55.5000 130.7500 -64.0 + 59.5000 132.7500 -64.0 + 61.2500 136.5000 -64.0 + 63.5000 136.7500 -64.0 + 67.5000 133.7500 -64.0 + 68.2500 135.5000 -64.0 + 66.5000 137.2500 -64.0 + 64.5000 137.2500 -64.0 + 64.2500 138.5000 -64.0 + 65.5000 137.7500 -64.0 + 70.5000 137.7500 -64.0 + 75.5000 135.7500 -64.0 + 78.7500 131.5000 -64.0 + 77.7500 129.5000 -64.0 + 77.7500 127.5000 -64.0 + 81.5000 125.7500 -64.0 + 83.2500 126.5000 -64.0 + 86.2500 131.5000 -64.0 + 92.7500 131.5000 -64.0 + 88.5000 130.2500 -64.0 + 84.7500 126.5000 -64.0 + 86.7500 122.5000 -64.0 + 82.5000 124.2500 -64.0 + 81.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 121.5000 -64.0 + 120.2500 122.5000 -64.0 + 126.2500 128.5000 -64.0 + 127.2500 130.5000 -64.0 + 125.5000 132.2500 -64.0 + 119.5000 132.2500 -64.0 + 120.5000 133.7500 -64.0 + 125.5000 134.7500 -64.0 + 129.5000 132.7500 -64.0 + 129.7500 128.5000 -64.0 + 128.7500 126.5000 -64.0 + 126.5000 126.2500 -64.0 + 124.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 121.5000 -64.0 + 141.2500 123.5000 -64.0 + 142.2500 130.5000 -64.0 + 144.5000 130.7500 -64.0 + 148.2500 132.5000 -64.0 + 147.2500 135.5000 -64.0 + 149.2500 136.5000 -64.0 + 148.5000 137.2500 -64.0 + 145.5000 137.2500 -64.0 + 142.5000 136.2500 -64.0 + 141.5000 134.2500 -64.0 + 138.2500 139.5000 -64.0 + 142.5000 136.7500 -64.0 + 146.2500 139.5000 -64.0 + 145.5000 140.2500 -64.0 + 142.5000 139.2500 -64.0 + 142.2500 140.5000 -64.0 + 144.5000 140.7500 -64.0 + 149.2500 144.5000 -64.0 + 152.5000 144.7500 -64.0 + 155.2500 147.5000 -64.0 + 162.2500 157.5000 -64.0 + 162.2500 163.5000 -64.0 + 160.5000 164.2500 -64.0 + 157.2500 163.5000 -64.0 + 156.2500 170.5000 -64.0 + 157.2500 172.5000 -64.0 + 154.2500 179.5000 -64.0 + 147.2500 188.5000 -64.0 + 144.2500 195.5000 -64.0 + 141.5000 199.2500 -64.0 + 124.5000 211.2500 -64.0 + 122.5000 211.2500 -64.0 + 118.5000 214.2500 -64.0 + 115.5000 214.2500 -64.0 + 109.7500 209.5000 -64.0 + 108.5000 210.2500 -64.0 + 105.5000 210.2500 -64.0 + 103.7500 208.5000 -64.0 + 103.7500 205.5000 -64.0 + 100.2500 205.5000 -64.0 + 98.2500 209.5000 -64.0 + 94.5000 213.2500 -64.0 + 87.5000 213.2500 -64.0 + 85.5000 214.2500 -64.0 + 79.5000 212.2500 -64.0 + 72.5000 207.2500 -64.0 + 71.5000 205.2500 -64.0 + 63.7500 199.5000 -64.0 + 61.7500 195.5000 -64.0 + 61.7500 192.5000 -64.0 + 60.7500 189.5000 -64.0 + 56.7500 184.5000 -64.0 + 48.7500 169.5000 -64.0 + 48.7500 166.5000 -64.0 + 47.7500 164.5000 -64.0 + 47.7500 155.5000 -64.0 + 51.5000 150.7500 -64.0 + 56.7500 146.5000 -64.0 + 59.5000 142.7500 -64.0 + 63.5000 139.7500 -64.0 + 62.5000 139.2500 -64.0 + 51.5000 146.2500 -64.0 + 49.5000 146.2500 -64.0 + 45.2500 157.5000 -64.0 + 43.5000 158.2500 -64.0 + 41.7500 157.5000 -64.0 + 40.7500 149.5000 -64.0 + 38.7500 148.5000 -64.0 + 38.7500 144.5000 -64.0 + 37.7500 141.5000 -64.0 + 42.5000 135.7500 -64.0 + 45.5000 137.7500 -64.0 + 46.5000 135.7500 -64.0 + 45.7500 133.5000 -64.0 + 46.5000 131.7500 -64.0 + 50.2500 132.5000 -64.0 + 52.7500 131.5000 -64.0 + 44.7500 129.5000 -64.0 + 42.5000 130.2500 -64.0 + 39.2500 134.5000 -64.0 + 37.2500 138.5000 -64.0 + 35.5000 146.2500 -64.0 + 35.2500 155.5000 -64.0 + 37.2500 161.5000 -64.0 + 37.2500 168.5000 -64.0 + 39.2500 172.5000 -64.0 + 39.2500 174.5000 -64.0 + 42.2500 180.5000 -64.0 + 59.2500 205.5000 -64.0 + 66.5000 212.7500 -64.0 + 74.5000 218.7500 -64.0 + 80.5000 221.7500 -64.0 + 90.5000 223.7500 -64.0 + 92.5000 222.7500 -64.0 + 97.5000 223.7500 -64.0 + 99.5000 222.7500 -64.0 + 100.2500 223.5000 -64.0 + 102.5000 223.7500 -64.0 + 104.5000 222.7500 -64.0 + 118.5000 222.7500 -64.0 + 127.5000 219.7500 -64.0 + 135.5000 214.7500 -64.0 + 140.5000 209.7500 -64.0 + 142.5000 208.7500 -64.0 + 161.5000 185.7500 -64.0 + 161.7500 183.5000 -64.0 + 166.7500 175.5000 -64.0 + 170.5000 167.7500 -64.0 + 172.5000 158.7500 -64.0 + 172.7500 146.5000 -64.0 + 171.7500 144.5000 -64.0 + 171.7500 142.5000 -64.0 + 168.7500 136.5000 -64.0 + 164.5000 133.2500 -64.0 + 162.5000 134.2500 -64.0 + 158.5000 133.2500 -64.0 + 155.7500 130.5000 -64.0 + 155.7500 127.5000 -64.0 + 160.5000 122.7500 -64.0 + 159.5000 122.2500 -64.0 + 157.5000 124.2500 -64.0 + 154.5000 124.2500 -64.0 + 151.5000 125.2500 -64.0 + 143.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 153.7500 134.5000 -64.0 + 154.5000 133.7500 -64.0 + 156.2500 134.5000 -64.0 + 161.5000 134.7500 -64.0 + 162.2500 136.5000 -64.0 + 164.2500 137.5000 -64.0 + 165.2500 139.5000 -64.0 + 167.5000 139.7500 -64.0 + 169.2500 140.5000 -64.0 + 169.2500 143.5000 -64.0 + 170.2500 145.5000 -64.0 + 168.5000 148.2500 -64.0 + 170.2500 153.5000 -64.0 + 169.5000 155.2500 -64.0 + 169.2500 158.5000 -64.0 + 167.5000 160.2500 -64.0 + 165.7500 159.5000 -64.0 + 163.7500 155.5000 -64.0 + 164.5000 153.7500 -64.0 + 163.5000 153.2500 -64.0 + 159.7500 151.5000 -64.0 + 156.7500 146.5000 -64.0 + 156.7500 144.5000 -64.0 + 155.5000 144.2500 -64.0 + 152.5000 141.2500 -64.0 + 150.5000 140.2500 -64.0 + 148.7500 139.5000 -64.0 + 149.5000 138.7500 -64.0 + 151.5000 137.7500 -64.0 +} -64.0 +v 408 z -130.000000 -64.0 +{ -64.0 + 104.2500 39.5000 -64.0 + 94.2500 45.5000 -64.0 + 92.2500 49.5000 -64.0 + 93.5000 49.7500 -64.0 + 93.7500 48.5000 -64.0 + 95.7500 47.5000 -64.0 + 96.7500 45.5000 -64.0 + 101.5000 42.7500 -64.0 + 102.2500 43.5000 -64.0 + 97.5000 48.2500 -64.0 + 97.5000 49.7500 -64.0 + 102.5000 45.7500 -64.0 + 102.7500 43.5000 -64.0 + 106.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 40.5000 -64.0 + 107.2500 41.5000 -64.0 + 108.5000 41.7500 -64.0 +} -64.0 +{ -64.0 + 115.2500 40.5000 -64.0 + 115.5000 41.7500 -64.0 + 119.5000 43.7500 -64.0 + 127.2500 52.5000 -64.0 + 127.7500 51.5000 -64.0 + 124.7500 45.5000 -64.0 + 116.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 42.5000 -64.0 + 109.2500 44.5000 -64.0 + 110.5000 44.7500 -64.0 + 112.5000 43.7500 -64.0 + 110.7500 42.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 44.5000 -64.0 + 117.2500 47.5000 -64.0 + 122.2500 50.5000 -64.0 + 122.7500 49.5000 -64.0 + 115.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 49.5000 -64.0 + 108.5000 52.2500 -64.0 + 108.5000 69.7500 -64.0 + 111.5000 57.7500 -64.0 + 111.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 67.2500 56.5000 -64.0 + 63.5000 59.2500 -64.0 + 65.2500 60.5000 -64.0 + 71.5000 61.7500 -64.0 + 74.5000 64.7500 -64.0 + 74.7500 58.5000 -64.0 + 78.7500 56.5000 -64.0 + 75.5000 56.2500 -64.0 + 72.5000 57.2500 -64.0 + 70.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 138.2500 59.5000 -64.0 + 139.5000 59.7500 -64.0 + 142.2500 63.5000 -64.0 + 142.2500 65.5000 -64.0 + 143.7500 65.5000 -64.0 + 145.7500 61.5000 -64.0 + 143.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 61.2500 75.5000 -64.0 + 60.2500 77.5000 -64.0 + 59.2500 82.5000 -64.0 + 61.5000 82.7500 -64.0 + 62.5000 80.7500 -64.0 + 62.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 79.5000 -64.0 + 151.2500 83.5000 -64.0 + 152.2500 85.5000 -64.0 + 152.2500 87.5000 -64.0 + 155.5000 89.7500 -64.0 + 155.7500 86.5000 -64.0 + 154.7500 84.5000 -64.0 + 154.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 80.5000 -64.0 + 125.2500 82.5000 -64.0 + 126.2500 84.5000 -64.0 + 126.2500 86.5000 -64.0 + 131.5000 85.7500 -64.0 + 132.5000 84.2500 -64.0 + 127.5000 83.2500 -64.0 +} -64.0 +{ -64.0 + 86.2500 82.5000 -64.0 + 86.2500 84.5000 -64.0 + 87.5000 85.7500 -64.0 + 89.5000 84.7500 -64.0 + 91.2500 85.5000 -64.0 + 92.2500 87.5000 -64.0 + 93.5000 87.7500 -64.0 + 93.7500 85.5000 -64.0 + 92.7500 83.5000 -64.0 + 90.5000 84.2500 -64.0 + 89.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 123.2500 86.5000 -64.0 + 123.2500 89.5000 -64.0 + 124.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 45.2500 107.5000 -64.0 + 44.5000 108.2500 -64.0 + 44.2500 110.5000 -64.0 + 45.5000 110.7500 -64.0 + 45.7500 109.5000 -64.0 + 47.5000 108.7500 -64.0 + 49.2500 110.5000 -64.0 + 51.5000 110.7500 -64.0 + 57.5000 115.7500 -64.0 + 59.5000 116.7500 -64.0 + 59.5000 115.2500 -64.0 + 55.5000 113.2500 -64.0 + 49.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 159.2500 109.5000 -64.0 + 152.5000 115.2500 -64.0 + 152.2500 118.5000 -64.0 + 154.2500 119.5000 -64.0 + 157.5000 119.7500 -64.0 + 161.5000 117.7500 -64.0 + 162.7500 113.5000 -64.0 + 160.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 110.5000 -64.0 + 68.5000 112.2500 -64.0 + 69.2500 114.5000 -64.0 + 71.2500 115.5000 -64.0 + 62.5000 121.2500 -64.0 + 54.5000 121.2500 -64.0 + 52.7500 119.5000 -64.0 + 49.5000 119.2500 -64.0 + 49.2500 120.5000 -64.0 + 60.2500 125.5000 -64.0 + 57.2500 127.5000 -64.0 + 56.2500 129.5000 -64.0 + 58.5000 132.7500 -64.0 + 60.5000 133.7500 -64.0 + 61.2500 135.5000 -64.0 + 63.5000 135.7500 -64.0 + 63.7500 134.5000 -64.0 + 62.7500 132.5000 -64.0 + 65.5000 130.7500 -64.0 + 63.7500 129.5000 -64.0 + 63.7500 127.5000 -64.0 + 65.5000 125.7500 -64.0 + 68.2500 130.5000 -64.0 + 67.5000 131.2500 -64.0 + 68.2500 132.5000 -64.0 + 67.5000 134.2500 -64.0 + 69.5000 137.7500 -64.0 + 77.7500 134.5000 -64.0 + 78.7500 132.5000 -64.0 + 77.7500 130.5000 -64.0 + 77.7500 125.5000 -64.0 + 76.7500 123.5000 -64.0 + 73.5000 123.2500 -64.0 + 71.7500 121.5000 -64.0 + 71.7500 119.5000 -64.0 + 75.7500 116.5000 -64.0 + 76.7500 114.5000 -64.0 + 74.7500 112.5000 -64.0 + 75.5000 111.7500 -64.0 + 74.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 113.5000 -64.0 + 98.5000 116.2500 -64.0 + 95.5000 116.2500 -64.0 + 93.2500 118.5000 -64.0 + 97.5000 118.7500 -64.0 + 99.5000 117.7500 -64.0 + 102.5000 117.7500 -64.0 + 105.5000 114.7500 -64.0 + 114.2500 119.5000 -64.0 + 116.5000 119.7500 -64.0 + 115.7500 118.5000 -64.0 + 107.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 120.5000 -64.0 + 87.5000 122.2500 -64.0 + 83.5000 124.2500 -64.0 + 83.2500 130.5000 -64.0 + 86.2500 132.5000 -64.0 + 92.7500 132.5000 -64.0 + 93.7500 130.5000 -64.0 + 92.5000 131.2500 -64.0 + 87.5000 131.2500 -64.0 + 84.7500 128.5000 -64.0 + 84.7500 126.5000 -64.0 + 89.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 120.5000 -64.0 + 98.5000 121.2500 -64.0 + 94.5000 126.2500 -64.0 + 94.2500 129.5000 -64.0 + 95.5000 127.7500 -64.0 + 95.7500 125.5000 -64.0 + 97.5000 123.7500 -64.0 + 103.5000 120.7500 -64.0 +} -64.0 +{ -64.0 + 108.2500 120.5000 -64.0 + 115.5000 123.7500 -64.0 + 117.2500 126.5000 -64.0 + 119.5000 132.7500 -64.0 + 123.2500 135.5000 -64.0 + 129.5000 135.7500 -64.0 + 130.7500 128.5000 -64.0 + 129.5000 127.2500 -64.0 + 126.5000 128.2500 -64.0 + 126.2500 129.5000 -64.0 + 129.2500 130.5000 -64.0 + 126.5000 133.2500 -64.0 + 121.5000 132.2500 -64.0 + 118.7500 129.5000 -64.0 + 118.7500 127.5000 -64.0 + 116.7500 122.5000 -64.0 + 112.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 120.5000 -64.0 + 117.5000 121.7500 -64.0 + 123.2500 125.5000 -64.0 + 123.2500 127.5000 -64.0 + 124.7500 127.5000 -64.0 + 123.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 121.5000 -64.0 + 141.2500 122.5000 -64.0 + 144.2500 128.5000 -64.0 + 143.2500 131.5000 -64.0 + 144.5000 130.7500 -64.0 + 146.2500 132.5000 -64.0 + 148.2500 136.5000 -64.0 + 147.2500 138.5000 -64.0 + 148.5000 138.7500 -64.0 + 150.2500 139.5000 -64.0 + 148.5000 141.2500 -64.0 + 145.5000 141.2500 -64.0 + 148.2500 143.5000 -64.0 + 151.5000 143.7500 -64.0 + 155.2500 147.5000 -64.0 + 157.2500 151.5000 -64.0 + 158.7500 150.5000 -64.0 + 156.7500 144.5000 -64.0 + 155.5000 144.2500 -64.0 + 150.7500 138.5000 -64.0 + 151.7500 136.5000 -64.0 + 154.5000 133.7500 -64.0 + 157.5000 133.7500 -64.0 + 160.5000 134.7500 -64.0 + 162.2500 135.5000 -64.0 + 163.2500 137.5000 -64.0 + 164.5000 137.7500 -64.0 + 165.2500 139.5000 -64.0 + 168.2500 141.5000 -64.0 + 168.2500 143.5000 -64.0 + 169.2500 146.5000 -64.0 + 168.5000 148.2500 -64.0 + 170.2500 150.5000 -64.0 + 170.2500 152.5000 -64.0 + 168.5000 154.2500 -64.0 + 169.2500 155.5000 -64.0 + 169.2500 159.5000 -64.0 + 166.5000 162.2500 -64.0 + 164.7500 161.5000 -64.0 + 164.5000 158.2500 -64.0 + 162.5000 157.2500 -64.0 + 160.7500 156.5000 -64.0 + 159.7500 154.5000 -64.0 + 157.5000 154.2500 -64.0 + 157.2500 155.5000 -64.0 + 156.5000 157.2500 -64.0 + 156.2500 171.5000 -64.0 + 154.2500 177.5000 -64.0 + 150.2500 182.5000 -64.0 + 147.5000 186.2500 -64.0 + 144.2500 190.5000 -64.0 + 143.2500 192.5000 -64.0 + 138.2500 197.5000 -64.0 + 134.5000 204.2500 -64.0 + 128.5000 207.2500 -64.0 + 125.5000 207.2500 -64.0 + 119.5000 210.2500 -64.0 + 116.5000 210.2500 -64.0 + 114.7500 209.5000 -64.0 + 113.7500 207.5000 -64.0 + 112.5000 207.2500 -64.0 + 110.5000 208.2500 -64.0 + 106.5000 208.2500 -64.0 + 104.7500 205.5000 -64.0 + 104.7500 202.5000 -64.0 + 102.7500 200.5000 -64.0 + 102.7500 198.5000 -64.0 + 101.5000 198.2500 -64.0 + 99.2500 203.5000 -64.0 + 93.5000 210.2500 -64.0 + 89.5000 210.2500 -64.0 + 85.5000 212.2500 -64.0 + 83.5000 212.2500 -64.0 + 80.5000 211.2500 -64.0 + 70.5000 202.2500 -64.0 + 66.5000 200.2500 -64.0 + 63.7500 196.5000 -64.0 + 63.7500 193.5000 -64.0 + 61.7500 187.5000 -64.0 + 57.7500 183.5000 -64.0 + 51.7500 172.5000 -64.0 + 48.7500 167.5000 -64.0 + 48.7500 165.5000 -64.0 + 47.7500 163.5000 -64.0 + 47.7500 161.5000 -64.0 + 46.7500 159.5000 -64.0 + 46.7500 157.5000 -64.0 + 50.7500 148.5000 -64.0 + 53.5000 146.7500 -64.0 + 57.5000 144.7500 -64.0 + 61.7500 140.5000 -64.0 + 59.5000 140.2500 -64.0 + 55.5000 143.2500 -64.0 + 53.5000 143.2500 -64.0 + 50.2500 145.5000 -64.0 + 49.2500 147.5000 -64.0 + 48.5000 149.2500 -64.0 + 46.2500 149.5000 -64.0 + 47.2500 151.5000 -64.0 + 45.2500 155.5000 -64.0 + 44.5000 157.2500 -64.0 + 42.7500 156.5000 -64.0 + 42.7500 154.5000 -64.0 + 44.5000 153.7500 -64.0 + 44.5000 152.2500 -64.0 + 42.5000 153.2500 -64.0 + 40.5000 152.2500 -64.0 + 38.7500 147.5000 -64.0 + 39.7500 144.5000 -64.0 + 37.7500 142.5000 -64.0 + 39.7500 139.5000 -64.0 + 40.7500 137.5000 -64.0 + 47.5000 134.7500 -64.0 + 46.7500 132.5000 -64.0 + 48.5000 131.7500 -64.0 + 50.5000 132.7500 -64.0 + 53.5000 131.7500 -64.0 + 53.5000 130.2500 -64.0 + 51.5000 131.2500 -64.0 + 49.5000 131.2500 -64.0 + 46.5000 130.2500 -64.0 + 44.7500 129.5000 -64.0 + 43.5000 130.2500 -64.0 + 40.2500 134.5000 -64.0 + 38.2500 138.5000 -64.0 + 37.5000 140.2500 -64.0 + 37.2500 143.5000 -64.0 + 36.5000 145.2500 -64.0 + 36.2500 155.5000 -64.0 + 37.2500 157.5000 -64.0 + 37.2500 165.5000 -64.0 + 40.2500 171.5000 -64.0 + 40.2500 173.5000 -64.0 + 47.2500 187.5000 -64.0 + 53.2500 194.5000 -64.0 + 54.2500 196.5000 -64.0 + 61.2500 204.5000 -64.0 + 62.2500 206.5000 -64.0 + 70.2500 213.5000 -64.0 + 74.5000 216.7500 -64.0 + 82.5000 220.7500 -64.0 + 84.2500 221.5000 -64.0 + 116.5000 221.7500 -64.0 + 118.5000 220.7500 -64.0 + 121.5000 220.7500 -64.0 + 129.5000 216.7500 -64.0 + 133.5000 213.7500 -64.0 + 135.5000 212.7500 -64.0 + 140.5000 207.7500 -64.0 + 142.7500 206.5000 -64.0 + 143.7500 204.5000 -64.0 + 149.7500 198.5000 -64.0 + 158.7500 188.5000 -64.0 + 169.7500 166.5000 -64.0 + 170.5000 164.7500 -64.0 + 170.7500 161.5000 -64.0 + 171.5000 159.7500 -64.0 + 171.7500 145.5000 -64.0 + 169.7500 141.5000 -64.0 + 169.7500 139.5000 -64.0 + 164.7500 133.5000 -64.0 + 160.5000 133.2500 -64.0 + 158.7500 131.5000 -64.0 + 157.7500 129.5000 -64.0 + 158.7500 124.5000 -64.0 + 157.5000 123.2500 -64.0 + 153.5000 125.2500 -64.0 + 151.5000 125.2500 -64.0 + 148.5000 124.2500 -64.0 + 145.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 134.5000 -64.0 + 138.5000 136.2500 -64.0 + 138.2500 138.5000 -64.0 + 139.2500 140.5000 -64.0 + 143.7500 140.5000 -64.0 + 140.5000 140.2500 -64.0 + 139.7500 138.5000 -64.0 + 140.7500 135.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 138.5000 -64.0 + 62.2500 139.5000 -64.0 + 63.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 155.7500 115.5000 -64.0 + 157.5000 114.7500 -64.0 + 159.2500 115.5000 -64.0 + 158.5000 117.2500 -64.0 + 156.5000 118.2500 -64.0 + 154.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 66.7500 121.5000 -64.0 + 68.5000 120.7500 -64.0 + 70.2500 121.5000 -64.0 + 69.5000 123.2500 -64.0 + 67.5000 124.2500 -64.0 + 65.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 68.7500 130.5000 -64.0 + 69.5000 129.7500 -64.0 + 71.5000 129.7500 -64.0 + 73.2500 130.5000 -64.0 + 74.2500 132.5000 -64.0 + 72.5000 134.2500 -64.0 + 70.5000 134.2500 -64.0 + 68.7500 132.5000 -64.0 +} -64.0 +v 390 z -132.000000 -64.0 +{ -64.0 + 105.2500 38.5000 -64.0 + 101.5000 41.2500 -64.0 + 95.2500 43.5000 -64.0 + 92.2500 49.5000 -64.0 + 97.5000 44.7500 -64.0 + 106.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 39.5000 -64.0 + 115.2500 40.5000 -64.0 + 118.5000 42.7500 -64.0 + 120.5000 43.7500 -64.0 + 125.2500 49.5000 -64.0 + 126.2500 51.5000 -64.0 + 128.2500 52.5000 -64.0 + 128.7500 51.5000 -64.0 + 125.7500 47.5000 -64.0 + 125.7500 45.5000 -64.0 + 124.5000 44.2500 -64.0 + 118.5000 41.2500 -64.0 +} -64.0 +{ -64.0 + 105.2500 43.5000 -64.0 + 103.5000 45.2500 -64.0 + 103.2500 47.5000 -64.0 + 101.5000 49.2500 -64.0 + 100.7500 48.5000 -64.0 + 95.5000 50.2500 -64.0 + 95.2500 53.5000 -64.0 + 96.5000 54.7500 -64.0 + 102.5000 50.7500 -64.0 + 104.2500 51.5000 -64.0 + 103.2500 54.5000 -64.0 + 106.2500 58.5000 -64.0 + 106.2500 64.5000 -64.0 + 108.2500 68.5000 -64.0 + 108.2500 73.5000 -64.0 + 109.5000 72.7500 -64.0 + 109.7500 70.5000 -64.0 + 117.5000 56.7500 -64.0 + 120.5000 56.7500 -64.0 + 124.2500 62.5000 -64.0 + 125.5000 62.7500 -64.0 + 125.7500 58.5000 -64.0 + 120.5000 51.2500 -64.0 + 116.7500 49.5000 -64.0 + 116.7500 47.5000 -64.0 + 112.7500 43.5000 -64.0 + 110.5000 43.2500 -64.0 + 108.5000 44.2500 -64.0 + 107.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 79.2500 56.5000 -64.0 + 78.5000 57.2500 -64.0 + 75.5000 57.2500 -64.0 + 73.5000 59.2500 -64.0 + 75.5000 61.7500 -64.0 + 77.5000 62.7500 -64.0 + 77.7500 59.5000 -64.0 + 80.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 58.5000 -64.0 + 138.2500 60.5000 -64.0 + 140.2500 64.5000 -64.0 + 141.5000 63.7500 -64.0 + 141.7500 61.5000 -64.0 + 136.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 60.2500 76.5000 -64.0 + 60.2500 77.5000 -64.0 + 59.2500 84.5000 -64.0 + 60.5000 84.7500 -64.0 + 62.7500 81.5000 -64.0 + 63.7500 79.5000 -64.0 + 62.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 77.5000 -64.0 + 90.2500 78.5000 -64.0 + 87.5000 81.2500 -64.0 + 84.5000 81.2500 -64.0 + 86.2500 83.5000 -64.0 + 87.5000 82.7500 -64.0 + 88.2500 84.5000 -64.0 + 90.5000 84.7500 -64.0 + 92.5000 86.7500 -64.0 + 92.5000 84.2500 -64.0 + 90.5000 83.2500 -64.0 + 89.7500 81.5000 -64.0 + 91.5000 79.7500 -64.0 +} -64.0 +{ -64.0 + 126.2500 80.5000 -64.0 + 126.2500 83.5000 -64.0 + 127.2500 86.5000 -64.0 + 129.5000 84.7500 -64.0 + 132.5000 84.7500 -64.0 + 133.7500 83.5000 -64.0 + 129.7500 82.5000 -64.0 + 128.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 80.5000 -64.0 + 151.5000 81.2500 -64.0 + 151.2500 86.5000 -64.0 + 152.2500 89.5000 -64.0 + 155.5000 92.7500 -64.0 + 155.7500 88.5000 -64.0 + 154.7500 86.5000 -64.0 + 154.7500 83.5000 -64.0 + 153.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 85.5000 -64.0 + 123.5000 86.2500 -64.0 + 123.2500 88.5000 -64.0 + 125.5000 86.7500 -64.0 +} -64.0 +{ -64.0 + 48.2500 106.5000 -64.0 + 46.5000 107.2500 -64.0 + 46.2500 111.5000 -64.0 + 48.5000 114.7500 -64.0 + 50.5000 115.7500 -64.0 + 48.7500 112.5000 -64.0 + 49.5000 110.7500 -64.0 + 51.5000 110.7500 -64.0 + 54.5000 113.7500 -64.0 + 56.5000 114.7500 -64.0 + 57.2500 116.5000 -64.0 + 58.7500 116.5000 -64.0 + 57.7500 113.5000 -64.0 + 53.5000 111.2500 -64.0 + 50.7500 106.5000 -64.0 +} -64.0 +{ -64.0 + 157.2500 107.5000 -64.0 + 156.2500 110.5000 -64.0 + 153.5000 113.2500 -64.0 + 153.2500 116.5000 -64.0 + 154.2500 118.5000 -64.0 + 158.7500 118.5000 -64.0 + 161.5000 114.7500 -64.0 + 160.7500 113.5000 -64.0 + 160.7500 109.5000 -64.0 + 158.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 74.2500 110.5000 -64.0 + 72.2500 111.5000 -64.0 + 71.2500 113.5000 -64.0 + 73.2500 114.5000 -64.0 + 71.5000 116.2500 -64.0 + 60.5000 122.2500 -64.0 + 57.5000 122.2500 -64.0 + 51.5000 119.2500 -64.0 + 51.2500 121.5000 -64.0 + 54.2500 124.5000 -64.0 + 55.2500 126.5000 -64.0 + 52.5000 129.2500 -64.0 + 48.5000 131.2500 -64.0 + 44.7500 129.5000 -64.0 + 42.2500 132.5000 -64.0 + 38.5000 139.2500 -64.0 + 37.5000 144.2500 -64.0 + 37.2500 156.5000 -64.0 + 38.2500 158.5000 -64.0 + 38.2500 163.5000 -64.0 + 41.2500 169.5000 -64.0 + 41.2500 172.5000 -64.0 + 49.2500 188.5000 -64.0 + 56.2500 195.5000 -64.0 + 57.2500 197.5000 -64.0 + 64.2500 205.5000 -64.0 + 77.5000 216.7500 -64.0 + 83.2500 219.5000 -64.0 + 92.5000 219.7500 -64.0 + 94.2500 220.5000 -64.0 + 108.5000 220.7500 -64.0 + 110.5000 219.7500 -64.0 + 118.5000 219.7500 -64.0 + 127.5000 216.7500 -64.0 + 135.5000 210.7500 -64.0 + 156.5000 189.7500 -64.0 + 160.7500 183.5000 -64.0 + 168.7500 167.5000 -64.0 + 171.7500 151.5000 -64.0 + 170.7500 149.5000 -64.0 + 170.5000 144.2500 -64.0 + 167.7500 137.5000 -64.0 + 159.7500 130.5000 -64.0 + 159.7500 127.5000 -64.0 + 157.5000 123.2500 -64.0 + 153.5000 125.2500 -64.0 + 150.5000 125.2500 -64.0 + 147.5000 122.2500 -64.0 + 143.5000 120.2500 -64.0 + 143.5000 125.7500 -64.0 + 147.2500 128.5000 -64.0 + 147.2500 130.5000 -64.0 + 148.5000 130.7500 -64.0 + 149.2500 132.5000 -64.0 + 147.5000 133.2500 -64.0 + 145.7500 129.5000 -64.0 + 142.5000 131.2500 -64.0 + 145.2500 132.5000 -64.0 + 149.2500 138.5000 -64.0 + 150.5000 138.7500 -64.0 + 150.7500 137.5000 -64.0 + 155.5000 132.7500 -64.0 + 156.2500 133.5000 -64.0 + 160.5000 133.7500 -64.0 + 166.2500 140.5000 -64.0 + 168.2500 146.5000 -64.0 + 167.5000 148.2500 -64.0 + 169.2500 150.5000 -64.0 + 168.5000 152.2500 -64.0 + 166.5000 152.2500 -64.0 + 169.2500 156.5000 -64.0 + 169.2500 158.5000 -64.0 + 167.5000 162.2500 -64.0 + 165.5000 163.2500 -64.0 + 163.7500 161.5000 -64.0 + 163.7500 159.5000 -64.0 + 159.7500 158.5000 -64.0 + 159.7500 155.5000 -64.0 + 157.5000 155.2500 -64.0 + 155.5000 152.2500 -64.0 + 155.2500 157.5000 -64.0 + 156.2500 159.5000 -64.0 + 156.2500 169.5000 -64.0 + 153.2500 177.5000 -64.0 + 147.5000 183.2500 -64.0 + 143.2500 189.5000 -64.0 + 135.5000 198.2500 -64.0 + 135.2500 201.5000 -64.0 + 131.5000 204.2500 -64.0 + 126.5000 203.2500 -64.0 + 123.5000 206.2500 -64.0 + 120.5000 206.2500 -64.0 + 116.7500 204.5000 -64.0 + 114.5000 204.2500 -64.0 + 110.5000 206.2500 -64.0 + 107.7500 204.5000 -64.0 + 107.7500 200.5000 -64.0 + 106.5000 197.2500 -64.0 + 104.5000 196.2500 -64.0 + 103.7500 194.5000 -64.0 + 101.2500 194.5000 -64.0 + 96.5000 202.2500 -64.0 + 94.5000 203.2500 -64.0 + 94.2500 204.5000 -64.0 + 91.5000 206.2500 -64.0 + 89.5000 206.2500 -64.0 + 85.5000 210.2500 -64.0 + 81.5000 210.2500 -64.0 + 73.7500 203.5000 -64.0 + 72.7500 201.5000 -64.0 + 67.7500 198.5000 -64.0 + 64.7500 194.5000 -64.0 + 64.7500 190.5000 -64.0 + 61.7500 184.5000 -64.0 + 57.7500 180.5000 -64.0 + 52.7500 170.5000 -64.0 + 49.7500 166.5000 -64.0 + 49.7500 164.5000 -64.0 + 47.7500 158.5000 -64.0 + 47.7500 154.5000 -64.0 + 49.7500 149.5000 -64.0 + 54.5000 144.7500 -64.0 + 64.7500 139.5000 -64.0 + 62.5000 139.2500 -64.0 + 58.5000 141.2500 -64.0 + 56.5000 141.2500 -64.0 + 51.5000 143.2500 -64.0 + 47.5000 148.2500 -64.0 + 45.5000 149.2500 -64.0 + 44.5000 152.2500 -64.0 + 42.5000 153.2500 -64.0 + 40.7500 151.5000 -64.0 + 40.7500 148.5000 -64.0 + 38.7500 147.5000 -64.0 + 40.5000 145.7500 -64.0 + 41.5000 146.7500 -64.0 + 42.7500 136.5000 -64.0 + 44.5000 135.7500 -64.0 + 48.5000 131.7500 -64.0 + 49.5000 132.7500 -64.0 + 52.5000 131.7500 -64.0 + 61.5000 132.7500 -64.0 + 61.7500 130.5000 -64.0 + 65.5000 127.7500 -64.0 + 67.2500 128.5000 -64.0 + 66.5000 129.2500 -64.0 + 68.2500 131.5000 -64.0 + 68.2500 133.5000 -64.0 + 70.2500 137.5000 -64.0 + 71.7500 137.5000 -64.0 + 72.7500 135.5000 -64.0 + 68.7500 132.5000 -64.0 + 67.7500 127.5000 -64.0 + 70.5000 124.7500 -64.0 + 75.7500 126.5000 -64.0 + 74.7500 124.5000 -64.0 + 74.7500 122.5000 -64.0 + 72.7500 120.5000 -64.0 + 72.7500 118.5000 -64.0 + 75.5000 115.7500 -64.0 + 75.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 114.5000 -64.0 + 99.5000 118.2500 -64.0 + 97.2500 118.5000 -64.0 + 90.5000 121.2500 -64.0 + 86.5000 125.2500 -64.0 + 84.5000 124.2500 -64.0 + 82.5000 125.2500 -64.0 + 82.5000 130.7500 -64.0 + 86.2500 133.5000 -64.0 + 91.5000 133.7500 -64.0 + 97.5000 124.7500 -64.0 + 101.5000 121.7500 -64.0 + 103.7500 121.5000 -64.0 + 99.5000 121.2500 -64.0 + 96.2500 123.5000 -64.0 + 91.5000 131.2500 -64.0 + 85.5000 131.2500 -64.0 + 83.7500 127.5000 -64.0 + 87.5000 125.7500 -64.0 + 90.5000 122.7500 -64.0 + 100.5000 118.7500 -64.0 + 106.5000 117.7500 -64.0 + 111.2500 119.5000 -64.0 + 110.2500 121.5000 -64.0 + 113.5000 122.7500 -64.0 + 116.2500 125.5000 -64.0 + 120.2500 133.5000 -64.0 + 125.2500 136.5000 -64.0 + 129.5000 136.7500 -64.0 + 129.7500 134.5000 -64.0 + 131.7500 130.5000 -64.0 + 130.7500 128.5000 -64.0 + 128.2500 130.5000 -64.0 + 125.5000 134.2500 -64.0 + 122.7500 128.5000 -64.0 + 123.7500 125.5000 -64.0 + 122.7500 123.5000 -64.0 + 119.5000 123.2500 -64.0 + 107.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 133.5000 -64.0 + 137.5000 134.2500 -64.0 + 138.2500 140.5000 -64.0 + 142.5000 141.7500 -64.0 + 139.7500 137.5000 -64.0 + 139.7500 135.5000 -64.0 + 140.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 139.5000 -64.0 + 151.5000 141.2500 -64.0 + 147.5000 141.2500 -64.0 + 153.2500 145.5000 -64.0 + 156.2500 151.5000 -64.0 + 157.7500 150.5000 -64.0 + 156.7500 148.5000 -64.0 + 157.5000 147.7500 -64.0 + 157.7500 145.5000 -64.0 + 154.7500 144.5000 -64.0 + 155.5000 143.7500 -64.0 + 153.7500 141.5000 -64.0 + 154.5000 140.7500 -64.0 +} -64.0 +{ -64.0 + 111.5000 43.7500 -64.0 + 112.2500 44.5000 -64.0 + 111.5000 46.2500 -64.0 + 109.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 110.7500 49.5000 -64.0 + 112.5000 48.7500 -64.0 + 114.2500 51.5000 -64.0 + 114.2500 54.5000 -64.0 + 111.5000 58.2500 -64.0 + 110.7500 57.5000 -64.0 + 110.7500 54.5000 -64.0 + 109.5000 54.2500 -64.0 + 107.7500 52.5000 -64.0 + 110.5000 50.7500 -64.0 +} -64.0 +{ -64.0 + 107.7500 55.5000 -64.0 + 108.5000 54.7500 -64.0 + 110.2500 56.5000 -64.0 + 108.5000 58.2500 -64.0 + 107.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 156.7500 114.5000 -64.0 + 157.5000 113.7500 -64.0 + 158.2500 115.5000 -64.0 + 156.5000 117.2500 -64.0 + 154.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 66.7500 122.5000 -64.0 + 67.5000 121.7500 -64.0 + 68.2500 122.5000 -64.0 + 67.5000 123.2500 -64.0 +} -64.0 +{ -64.0 + 63.7500 123.5000 -64.0 + 64.5000 122.7500 -64.0 + 65.2500 123.5000 -64.0 + 64.5000 125.2500 -64.0 +} -64.0 +{ -64.0 + 117.7500 124.5000 -64.0 + 118.5000 123.7500 -64.0 + 120.5000 123.7500 -64.0 + 122.2500 124.5000 -64.0 + 122.2500 127.5000 -64.0 + 120.5000 129.2500 -64.0 + 119.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 54.7500 130.5000 -64.0 + 55.5000 129.7500 -64.0 + 56.2500 130.5000 -64.0 + 55.5000 131.2500 -64.0 +} -64.0 +v 423 z -134.000000 -64.0 +{ -64.0 + 107.2500 36.5000 -64.0 + 105.5000 37.2500 -64.0 + 103.2500 39.5000 -64.0 + 106.5000 39.7500 -64.0 + 106.7500 38.5000 -64.0 + 108.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 36.5000 -64.0 + 114.2500 38.5000 -64.0 + 114.2500 40.5000 -64.0 + 121.5000 43.7500 -64.0 + 122.2500 45.5000 -64.0 + 126.5000 49.7500 -64.0 + 128.5000 50.7500 -64.0 + 128.7500 49.5000 -64.0 + 124.7500 43.5000 -64.0 + 119.7500 40.5000 -64.0 + 117.5000 40.2500 -64.0 + 113.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 40.5000 -64.0 + 99.5000 41.2500 -64.0 + 95.5000 41.2500 -64.0 + 92.2500 48.5000 -64.0 + 93.5000 48.7500 -64.0 + 94.5000 46.7500 -64.0 + 102.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 43.5000 -64.0 + 107.5000 44.2500 -64.0 + 108.5000 44.7500 -64.0 + 110.5000 43.7500 -64.0 + 112.5000 44.7500 -64.0 + 112.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 48.5000 -64.0 + 110.2500 49.5000 -64.0 + 108.5000 51.2500 -64.0 + 107.7500 50.5000 -64.0 + 105.5000 50.2500 -64.0 + 100.5000 49.2500 -64.0 + 97.5000 50.2500 -64.0 + 97.2500 53.5000 -64.0 + 98.7500 53.5000 -64.0 + 99.7500 51.5000 -64.0 + 101.5000 50.7500 -64.0 + 103.2500 51.5000 -64.0 + 96.5000 57.2500 -64.0 + 96.2500 63.5000 -64.0 + 99.5000 61.7500 -64.0 + 99.7500 56.5000 -64.0 + 101.5000 55.7500 -64.0 + 103.2500 56.5000 -64.0 + 103.2500 58.5000 -64.0 + 105.2500 60.5000 -64.0 + 104.2500 61.5000 -64.0 + 103.2500 63.5000 -64.0 + 101.5000 64.2500 -64.0 + 101.2500 65.5000 -64.0 + 103.2500 67.5000 -64.0 + 109.5000 79.7500 -64.0 + 109.7500 73.5000 -64.0 + 110.7500 70.5000 -64.0 + 113.5000 68.7500 -64.0 + 114.2500 69.5000 -64.0 + 115.7500 69.5000 -64.0 + 118.5000 65.7500 -64.0 + 118.5000 63.2500 -64.0 + 116.5000 62.2500 -64.0 + 115.7500 60.5000 -64.0 + 116.5000 58.7500 -64.0 + 116.7500 54.5000 -64.0 + 118.5000 52.7500 -64.0 + 122.2500 54.5000 -64.0 + 122.2500 56.5000 -64.0 + 125.2500 59.5000 -64.0 + 125.2500 61.5000 -64.0 + 126.5000 60.7500 -64.0 + 126.7500 58.5000 -64.0 + 125.5000 57.2500 -64.0 + 123.7500 52.5000 -64.0 + 119.5000 49.2500 -64.0 + 114.5000 51.2500 -64.0 +} -64.0 +{ -64.0 + 79.2500 57.5000 -64.0 + 78.5000 58.2500 -64.0 + 78.2500 61.5000 -64.0 + 79.5000 61.7500 -64.0 + 81.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 57.5000 -64.0 + 134.2500 58.5000 -64.0 + 138.2500 62.5000 -64.0 + 138.5000 68.7500 -64.0 + 138.7500 60.5000 -64.0 + 135.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 62.5000 -64.0 + 121.5000 63.2500 -64.0 + 121.2500 66.5000 -64.0 + 124.2500 69.5000 -64.0 + 125.5000 68.7500 -64.0 + 125.7500 65.5000 -64.0 + 124.5000 65.2500 -64.0 + 123.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 70.5000 -64.0 + 125.2500 79.5000 -64.0 + 127.2500 81.5000 -64.0 + 127.2500 83.5000 -64.0 + 128.7500 80.5000 -64.0 + 125.7500 74.5000 -64.0 +} -64.0 +{ -64.0 + 61.2500 76.5000 -64.0 + 58.5000 86.2500 -64.0 + 59.2500 87.5000 -64.0 + 60.5000 86.7500 -64.0 + 63.5000 81.7500 -64.0 + 63.7500 78.5000 -64.0 + 62.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 76.5000 -64.0 + 87.5000 80.2500 -64.0 + 84.2500 80.5000 -64.0 + 85.2500 82.5000 -64.0 + 91.5000 78.7500 -64.0 + 91.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 81.5000 -64.0 + 88.5000 83.2500 -64.0 + 92.5000 86.7500 -64.0 + 92.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 81.5000 -64.0 + 131.5000 82.2500 -64.0 + 131.2500 85.5000 -64.0 + 132.5000 85.7500 -64.0 + 134.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 81.5000 -64.0 + 151.2500 82.5000 -64.0 + 150.2500 84.5000 -64.0 + 151.2500 86.5000 -64.0 + 151.2500 89.5000 -64.0 + 154.2500 93.5000 -64.0 + 154.2500 95.5000 -64.0 + 155.5000 94.7500 -64.0 + 155.7500 92.5000 -64.0 + 154.7500 90.5000 -64.0 + 154.7500 87.5000 -64.0 + 153.7500 85.5000 -64.0 + 153.7500 83.5000 -64.0 + 152.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 84.5000 -64.0 + 124.2500 85.5000 -64.0 + 123.2500 88.5000 -64.0 + 124.5000 88.7500 -64.0 + 124.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 52.2500 104.5000 -64.0 + 50.5000 105.2500 -64.0 + 47.2500 110.5000 -64.0 + 48.2500 113.5000 -64.0 + 50.5000 115.7500 -64.0 + 55.5000 116.7500 -64.0 + 57.5000 115.7500 -64.0 + 57.7500 113.5000 -64.0 + 52.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 155.2500 104.5000 -64.0 + 155.2500 108.5000 -64.0 + 153.2500 114.5000 -64.0 + 154.2500 117.5000 -64.0 + 158.7500 117.5000 -64.0 + 160.7500 113.5000 -64.0 + 159.7500 111.5000 -64.0 + 159.7500 108.5000 -64.0 + 156.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 111.5000 -64.0 + 72.2500 112.5000 -64.0 + 73.5000 112.7500 -64.0 + 73.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 73.2500 115.5000 -64.0 + 68.5000 118.2500 -64.0 + 66.5000 118.2500 -64.0 + 60.5000 122.2500 -64.0 + 56.5000 122.2500 -64.0 + 52.5000 120.2500 -64.0 + 52.2500 123.5000 -64.0 + 53.2500 125.5000 -64.0 + 52.2500 127.5000 -64.0 + 48.5000 130.2500 -64.0 + 45.5000 130.2500 -64.0 + 41.5000 134.2500 -64.0 + 39.2500 140.5000 -64.0 + 37.2500 150.5000 -64.0 + 38.2500 152.5000 -64.0 + 38.2500 158.5000 -64.0 + 39.2500 160.5000 -64.0 + 39.2500 163.5000 -64.0 + 43.2500 171.5000 -64.0 + 43.2500 173.5000 -64.0 + 50.2500 187.5000 -64.0 + 69.2500 207.5000 -64.0 + 70.2500 209.5000 -64.0 + 71.5000 209.7500 -64.0 + 77.5000 214.7500 -64.0 + 83.2500 217.5000 -64.0 + 107.5000 218.7500 -64.0 + 109.5000 217.7500 -64.0 + 120.7500 217.5000 -64.0 + 127.5000 214.7500 -64.0 + 134.5000 209.7500 -64.0 + 148.5000 195.7500 -64.0 + 150.5000 194.7500 -64.0 + 158.7500 184.5000 -64.0 + 164.7500 173.5000 -64.0 + 168.7500 163.5000 -64.0 + 170.5000 156.7500 -64.0 + 170.7500 149.5000 -64.0 + 169.7500 147.5000 -64.0 + 169.7500 144.5000 -64.0 + 167.7500 137.5000 -64.0 + 162.7500 132.5000 -64.0 + 159.5000 127.2500 -64.0 + 157.5000 126.2500 -64.0 + 156.7500 124.5000 -64.0 + 155.5000 124.2500 -64.0 + 152.5000 125.2500 -64.0 + 149.5000 124.2500 -64.0 + 145.5000 120.2500 -64.0 + 143.5000 119.2500 -64.0 + 143.2500 120.5000 -64.0 + 145.2500 126.5000 -64.0 + 147.5000 126.7500 -64.0 + 150.2500 131.5000 -64.0 + 148.5000 134.2500 -64.0 + 145.7500 130.5000 -64.0 + 143.5000 130.2500 -64.0 + 139.5000 132.2500 -64.0 + 135.5000 132.2500 -64.0 + 131.7500 128.5000 -64.0 + 129.5000 131.2500 -64.0 + 127.5000 131.2500 -64.0 + 125.5000 133.2500 -64.0 + 122.7500 130.5000 -64.0 + 123.5000 124.2500 -64.0 + 108.7500 117.5000 -64.0 + 104.5000 117.2500 -64.0 + 90.2500 122.5000 -64.0 + 89.2500 124.5000 -64.0 + 90.2500 126.5000 -64.0 + 89.5000 128.2500 -64.0 + 87.5000 129.2500 -64.0 + 88.2500 131.5000 -64.0 + 86.5000 132.2500 -64.0 + 84.7500 131.5000 -64.0 + 83.7500 129.5000 -64.0 + 84.5000 127.7500 -64.0 + 82.7500 125.5000 -64.0 + 81.5000 126.2500 -64.0 + 81.2500 130.5000 -64.0 + 82.2500 133.5000 -64.0 + 84.2500 134.5000 -64.0 + 85.5000 133.7500 -64.0 + 91.5000 133.7500 -64.0 + 95.7500 126.5000 -64.0 + 101.5000 121.7500 -64.0 + 103.5000 121.7500 -64.0 + 108.5000 119.7500 -64.0 + 109.2500 121.5000 -64.0 + 114.5000 123.7500 -64.0 + 117.2500 126.5000 -64.0 + 119.2500 130.5000 -64.0 + 123.2500 135.5000 -64.0 + 128.2500 138.5000 -64.0 + 130.5000 138.7500 -64.0 + 130.7500 136.5000 -64.0 + 127.7500 135.5000 -64.0 + 129.5000 133.7500 -64.0 + 131.5000 133.7500 -64.0 + 133.2500 135.5000 -64.0 + 136.5000 135.7500 -64.0 + 141.2500 140.5000 -64.0 + 147.5000 140.7500 -64.0 + 145.7500 139.5000 -64.0 + 147.5000 137.7500 -64.0 + 152.7500 138.5000 -64.0 + 151.7500 136.5000 -64.0 + 151.7500 134.5000 -64.0 + 153.5000 132.7500 -64.0 + 158.5000 132.7500 -64.0 + 161.5000 133.7500 -64.0 + 165.2500 136.5000 -64.0 + 165.2500 139.5000 -64.0 + 168.2500 143.5000 -64.0 + 166.5000 146.2500 -64.0 + 168.2500 148.5000 -64.0 + 167.5000 152.2500 -64.0 + 164.2500 152.5000 -64.0 + 165.2500 155.5000 -64.0 + 166.5000 154.7500 -64.0 + 168.2500 155.5000 -64.0 + 168.2500 158.5000 -64.0 + 167.2500 161.5000 -64.0 + 165.5000 162.2500 -64.0 + 163.7500 161.5000 -64.0 + 163.7500 159.5000 -64.0 + 162.5000 160.2500 -64.0 + 160.7500 159.5000 -64.0 + 159.7500 157.5000 -64.0 + 157.5000 159.2500 -64.0 + 155.5000 158.2500 -64.0 + 155.2500 171.5000 -64.0 + 151.2500 179.5000 -64.0 + 139.2500 190.5000 -64.0 + 138.2500 192.5000 -64.0 + 131.5000 197.2500 -64.0 + 122.5000 198.2500 -64.0 + 114.5000 202.2500 -64.0 + 112.5000 202.2500 -64.0 + 110.7500 200.5000 -64.0 + 110.7500 196.5000 -64.0 + 107.7500 193.5000 -64.0 + 106.7500 191.5000 -64.0 + 104.5000 190.2500 -64.0 + 100.5000 192.2500 -64.0 + 100.2500 193.5000 -64.0 + 94.5000 197.2500 -64.0 + 92.2500 200.5000 -64.0 + 87.5000 202.2500 -64.0 + 87.2500 203.5000 -64.0 + 84.5000 206.2500 -64.0 + 80.5000 206.2500 -64.0 + 76.7500 203.5000 -64.0 + 72.5000 198.2500 -64.0 + 70.5000 197.2500 -64.0 + 67.7500 193.5000 -64.0 + 67.7500 191.5000 -64.0 + 61.7500 181.5000 -64.0 + 56.7500 176.5000 -64.0 + 51.7500 167.5000 -64.0 + 51.7500 159.5000 -64.0 + 48.7500 153.5000 -64.0 + 50.7500 147.5000 -64.0 + 55.5000 142.7500 -64.0 + 58.5000 142.7500 -64.0 + 66.5000 138.7500 -64.0 + 63.5000 137.2500 -64.0 + 61.5000 138.2500 -64.0 + 58.5000 138.2500 -64.0 + 54.5000 140.2500 -64.0 + 48.2500 147.5000 -64.0 + 47.2500 152.5000 -64.0 + 45.5000 154.2500 -64.0 + 44.7500 152.5000 -64.0 + 42.5000 153.2500 -64.0 + 40.7500 151.5000 -64.0 + 41.7500 146.5000 -64.0 + 40.7500 144.5000 -64.0 + 40.7500 141.5000 -64.0 + 42.7500 139.5000 -64.0 + 44.7500 135.5000 -64.0 + 46.5000 134.7500 -64.0 + 49.5000 131.7500 -64.0 + 55.5000 131.7500 -64.0 + 57.2500 133.5000 -64.0 + 59.5000 131.7500 -64.0 + 61.5000 131.7500 -64.0 + 61.7500 129.5000 -64.0 + 64.5000 126.7500 -64.0 + 66.2500 127.5000 -64.0 + 67.5000 126.7500 -64.0 + 66.7500 124.5000 -64.0 + 67.7500 121.5000 -64.0 + 71.5000 118.7500 -64.0 + 74.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 71.2500 120.5000 -64.0 + 72.2500 122.5000 -64.0 + 74.5000 122.7500 -64.0 + 72.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 130.5000 -64.0 + 69.2500 131.5000 -64.0 + 70.5000 138.7500 -64.0 + 72.5000 135.7500 -64.0 + 72.7500 133.5000 -64.0 + 69.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 141.5000 -64.0 + 151.2500 144.5000 -64.0 + 153.2500 148.5000 -64.0 + 154.7500 149.5000 -64.0 + 157.5000 145.7500 -64.0 + 157.5000 144.2500 -64.0 + 155.5000 143.2500 -64.0 + 156.2500 144.5000 -64.0 + 154.5000 145.2500 -64.0 + 150.7500 141.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 152.5000 -64.0 + 153.2500 153.5000 -64.0 + 154.7500 156.5000 -64.0 + 155.7500 154.5000 -64.0 +} -64.0 +{ -64.0 + 151.7500 86.5000 -64.0 + 152.5000 85.7500 -64.0 + 154.2500 87.5000 -64.0 + 153.5000 89.2500 -64.0 +} -64.0 +{ -64.0 + 49.7500 111.5000 -64.0 + 51.5000 110.7500 -64.0 + 54.5000 111.7500 -64.0 + 55.2500 113.5000 -64.0 + 54.5000 115.2500 -64.0 + 52.5000 115.2500 -64.0 +} -64.0 +{ -64.0 + 156.7500 112.5000 -64.0 + 157.5000 111.7500 -64.0 + 158.2500 113.5000 -64.0 + 156.5000 115.2500 -64.0 + 155.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 96.7500 121.5000 -64.0 + 98.5000 120.7500 -64.0 + 100.2500 121.5000 -64.0 + 99.5000 122.2500 -64.0 + 97.5000 122.2500 -64.0 + 92.5000 128.2500 -64.0 + 90.7500 127.5000 -64.0 + 90.7500 123.5000 -64.0 + 92.5000 122.7500 -64.0 +} -64.0 +{ -64.0 + 117.7500 124.5000 -64.0 + 118.5000 123.7500 -64.0 + 121.5000 123.7500 -64.0 + 122.2500 125.5000 -64.0 + 121.5000 127.2500 -64.0 + 119.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 141.7500 132.5000 -64.0 + 143.5000 131.7500 -64.0 + 145.2500 134.5000 -64.0 + 144.5000 138.2500 -64.0 + 142.5000 138.2500 -64.0 + 138.7500 135.5000 -64.0 + 139.5000 133.7500 -64.0 +} -64.0 +v 451 z -136.000000 -64.0 +{ -64.0 + 107.2500 34.5000 -64.0 + 100.5000 39.2500 -64.0 + 95.5000 39.2500 -64.0 + 92.2500 46.5000 -64.0 + 92.7500 47.5000 -64.0 + 95.5000 43.7500 -64.0 + 98.7500 43.5000 -64.0 + 99.7500 41.5000 -64.0 + 103.5000 38.7500 -64.0 + 105.5000 38.7500 -64.0 + 109.5000 35.7500 -64.0 + 108.7500 34.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 34.5000 -64.0 + 112.2500 35.5000 -64.0 + 113.2500 37.5000 -64.0 + 120.5000 41.7500 -64.0 + 122.2500 45.5000 -64.0 + 128.2500 48.5000 -64.0 + 128.7500 47.5000 -64.0 + 125.7500 43.5000 -64.0 + 126.7500 42.5000 -64.0 + 125.7500 39.5000 -64.0 + 117.5000 38.2500 -64.0 + 114.7500 34.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 42.5000 -64.0 + 108.5000 46.2500 -64.0 + 106.5000 46.2500 -64.0 + 104.5000 45.2500 -64.0 + 100.2500 46.5000 -64.0 + 99.2500 48.5000 -64.0 + 100.5000 47.7500 -64.0 + 101.2500 48.5000 -64.0 + 104.5000 48.7500 -64.0 + 110.2500 54.5000 -64.0 + 112.5000 54.7500 -64.0 + 117.5000 48.7500 -64.0 + 122.2500 50.5000 -64.0 + 125.2500 56.5000 -64.0 + 125.2500 60.5000 -64.0 + 127.5000 68.7500 -64.0 + 127.7500 66.5000 -64.0 + 126.7500 64.5000 -64.0 + 126.7500 62.5000 -64.0 + 128.7500 60.5000 -64.0 + 124.7500 52.5000 -64.0 + 124.7500 50.5000 -64.0 + 121.7500 47.5000 -64.0 + 117.5000 47.2500 -64.0 + 115.5000 46.2500 -64.0 + 113.5000 47.2500 -64.0 + 111.7500 45.5000 -64.0 + 112.7500 42.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 50.5000 -64.0 + 95.2500 54.5000 -64.0 + 95.7500 55.5000 -64.0 + 97.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 56.5000 -64.0 + 80.5000 60.2500 -64.0 + 81.2500 61.5000 -64.0 + 81.2500 64.5000 -64.0 + 82.5000 64.7500 -64.0 + 82.7500 63.5000 -64.0 + 81.7500 61.5000 -64.0 + 83.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 56.5000 -64.0 + 136.2500 62.5000 -64.0 + 135.2500 65.5000 -64.0 + 137.2500 69.5000 -64.0 + 137.2500 74.5000 -64.0 + 135.2500 76.5000 -64.0 + 137.5000 76.7500 -64.0 + 138.5000 73.7500 -64.0 + 138.7500 69.5000 -64.0 + 137.7500 67.5000 -64.0 + 137.7500 61.5000 -64.0 + 136.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 69.5000 -64.0 + 91.5000 70.2500 -64.0 + 92.2500 71.5000 -64.0 + 91.2500 73.5000 -64.0 + 86.5000 79.2500 -64.0 + 84.5000 79.2500 -64.0 + 84.2500 82.5000 -64.0 + 85.5000 82.7500 -64.0 + 85.7500 81.5000 -64.0 + 88.5000 78.7500 -64.0 + 89.2500 79.5000 -64.0 + 89.2500 81.5000 -64.0 + 92.7500 74.5000 -64.0 + 93.5000 72.7500 -64.0 + 93.7500 69.5000 -64.0 +} -64.0 +{ -64.0 + 103.2500 71.5000 -64.0 + 102.2500 73.5000 -64.0 + 104.5000 74.7500 -64.0 + 104.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 76.5000 -64.0 + 127.2500 79.5000 -64.0 + 129.2500 80.5000 -64.0 + 125.5000 82.2500 -64.0 + 123.7500 78.5000 -64.0 + 122.2500 78.5000 -64.0 + 124.5000 83.7500 -64.0 + 129.5000 84.7500 -64.0 + 133.5000 86.7500 -64.0 + 132.7500 84.5000 -64.0 + 133.7500 81.5000 -64.0 + 132.5000 81.2500 -64.0 + 131.7500 79.5000 -64.0 + 128.5000 78.2500 -64.0 +} -64.0 +{ -64.0 + 62.2500 77.5000 -64.0 + 60.5000 80.2500 -64.0 + 58.2500 89.5000 -64.0 + 59.5000 89.7500 -64.0 + 60.7500 88.5000 -64.0 + 64.5000 80.7500 -64.0 + 63.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 77.5000 -64.0 + 108.2500 80.5000 -64.0 + 109.5000 80.7500 -64.0 + 111.5000 78.7500 -64.0 + 109.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 82.5000 -64.0 + 90.2500 85.5000 -64.0 + 91.5000 85.7500 -64.0 + 91.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 82.5000 -64.0 + 150.5000 84.2500 -64.0 + 150.2500 88.5000 -64.0 + 151.2500 90.5000 -64.0 + 151.2500 93.5000 -64.0 + 153.2500 97.5000 -64.0 + 153.2500 99.5000 -64.0 + 154.2500 101.5000 -64.0 + 154.2500 114.5000 -64.0 + 155.2500 116.5000 -64.0 + 157.5000 116.7500 -64.0 + 159.5000 114.7500 -64.0 + 159.7500 111.5000 -64.0 + 158.7500 109.5000 -64.0 + 158.7500 107.5000 -64.0 + 155.7500 101.5000 -64.0 + 155.7500 95.5000 -64.0 + 154.7500 93.5000 -64.0 + 154.7500 91.5000 -64.0 + 151.7500 90.5000 -64.0 + 152.5000 86.7500 -64.0 + 153.5000 87.7500 -64.0 + 153.7500 84.5000 -64.0 + 152.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 54.2500 102.5000 -64.0 + 52.5000 103.2500 -64.0 + 49.5000 108.2500 -64.0 + 49.2500 113.5000 -64.0 + 52.2500 115.5000 -64.0 + 54.5000 115.7500 -64.0 + 56.5000 114.7500 -64.0 + 56.7500 110.5000 -64.0 + 53.7500 107.5000 -64.0 + 55.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 67.2500 117.5000 -64.0 + 66.5000 118.2500 -64.0 + 64.5000 118.2500 -64.0 + 62.5000 120.2500 -64.0 + 58.5000 123.2500 -64.0 + 54.7500 121.5000 -64.0 + 53.2500 121.5000 -64.0 + 50.2500 127.5000 -64.0 + 43.5000 133.2500 -64.0 + 40.2500 138.5000 -64.0 + 39.2500 143.5000 -64.0 + 38.5000 145.2500 -64.0 + 38.2500 153.5000 -64.0 + 39.2500 155.5000 -64.0 + 39.2500 158.5000 -64.0 + 40.2500 160.5000 -64.0 + 40.2500 163.5000 -64.0 + 47.2500 177.5000 -64.0 + 47.2500 179.5000 -64.0 + 51.2500 185.5000 -64.0 + 52.2500 187.5000 -64.0 + 58.2500 193.5000 -64.0 + 64.2500 200.5000 -64.0 + 65.2500 202.5000 -64.0 + 75.2500 211.5000 -64.0 + 82.2500 215.5000 -64.0 + 86.5000 215.7500 -64.0 + 88.2500 216.5000 -64.0 + 89.5000 215.7500 -64.0 + 95.5000 215.7500 -64.0 + 97.2500 216.5000 -64.0 + 103.5000 216.7500 -64.0 + 105.5000 215.7500 -64.0 + 120.5000 215.7500 -64.0 + 130.5000 210.7500 -64.0 + 138.5000 203.7500 -64.0 + 151.7500 191.5000 -64.0 + 154.5000 187.7500 -64.0 + 157.7500 183.5000 -64.0 + 167.7500 163.5000 -64.0 + 168.5000 161.7500 -64.0 + 168.7500 158.5000 -64.0 + 169.5000 156.7500 -64.0 + 169.7500 144.5000 -64.0 + 168.7500 142.5000 -64.0 + 168.7500 140.5000 -64.0 + 166.7500 136.5000 -64.0 + 165.5000 134.2500 -64.0 + 161.7500 131.5000 -64.0 + 160.7500 129.5000 -64.0 + 155.7500 126.5000 -64.0 + 152.5000 126.2500 -64.0 + 148.7500 122.5000 -64.0 + 144.5000 119.2500 -64.0 + 144.2500 124.5000 -64.0 + 145.5000 125.7500 -64.0 + 147.5000 124.7500 -64.0 + 149.5000 124.7500 -64.0 + 152.2500 127.5000 -64.0 + 150.5000 131.2500 -64.0 + 150.2500 133.5000 -64.0 + 148.5000 135.2500 -64.0 + 147.7500 133.5000 -64.0 + 146.5000 133.2500 -64.0 + 146.2500 136.5000 -64.0 + 144.5000 138.2500 -64.0 + 134.5000 133.2500 -64.0 + 132.7500 132.5000 -64.0 + 133.5000 131.7500 -64.0 + 135.5000 130.7500 -64.0 + 135.7500 129.5000 -64.0 + 134.5000 129.2500 -64.0 + 130.5000 131.2500 -64.0 + 132.2500 132.5000 -64.0 + 131.5000 133.2500 -64.0 + 128.5000 133.2500 -64.0 + 126.7500 132.5000 -64.0 + 128.5000 130.2500 -64.0 + 124.7500 127.5000 -64.0 + 125.5000 125.7500 -64.0 + 124.5000 124.2500 -64.0 + 118.5000 121.2500 -64.0 + 113.5000 120.2500 -64.0 + 111.7500 119.5000 -64.0 + 100.5000 119.2500 -64.0 + 96.5000 121.2500 -64.0 + 93.5000 121.2500 -64.0 + 91.5000 122.2500 -64.0 + 89.5000 122.2500 -64.0 + 89.2500 126.5000 -64.0 + 91.2500 128.5000 -64.0 + 90.5000 130.2500 -64.0 + 88.5000 130.2500 -64.0 + 86.7500 128.5000 -64.0 + 84.5000 128.2500 -64.0 + 82.7500 126.5000 -64.0 + 80.5000 126.2500 -64.0 + 79.5000 128.2500 -64.0 + 79.2500 130.5000 -64.0 + 82.2500 134.5000 -64.0 + 87.5000 134.7500 -64.0 + 90.5000 133.7500 -64.0 + 93.7500 129.5000 -64.0 + 94.7500 127.5000 -64.0 + 98.5000 124.7500 -64.0 + 103.5000 121.7500 -64.0 + 109.5000 121.7500 -64.0 + 112.5000 122.7500 -64.0 + 120.5000 129.7500 -64.0 + 122.5000 128.7500 -64.0 + 124.5000 128.7500 -64.0 + 126.2500 131.5000 -64.0 + 125.5000 132.2500 -64.0 + 123.5000 133.2500 -64.0 + 123.2500 136.5000 -64.0 + 127.5000 139.7500 -64.0 + 132.5000 140.7500 -64.0 + 132.7500 139.5000 -64.0 + 135.5000 136.7500 -64.0 + 137.5000 136.7500 -64.0 + 147.5000 140.7500 -64.0 + 148.5000 138.7500 -64.0 + 150.5000 137.7500 -64.0 + 152.2500 138.5000 -64.0 + 153.2500 140.5000 -64.0 + 155.5000 140.7500 -64.0 + 155.7500 139.5000 -64.0 + 154.5000 139.2500 -64.0 + 151.7500 136.5000 -64.0 + 151.7500 134.5000 -64.0 + 154.5000 131.7500 -64.0 + 157.5000 131.7500 -64.0 + 163.5000 134.7500 -64.0 + 166.2500 138.5000 -64.0 + 166.2500 140.5000 -64.0 + 167.2500 142.5000 -64.0 + 166.2500 145.5000 -64.0 + 168.2500 147.5000 -64.0 + 168.2500 150.5000 -64.0 + 167.5000 152.2500 -64.0 + 164.5000 152.2500 -64.0 + 162.5000 153.2500 -64.0 + 160.5000 152.2500 -64.0 + 162.2500 155.5000 -64.0 + 157.5000 160.2500 -64.0 + 155.5000 159.2500 -64.0 + 153.7500 156.5000 -64.0 + 153.7500 154.5000 -64.0 + 152.2500 154.5000 -64.0 + 154.2500 158.5000 -64.0 + 154.2500 172.5000 -64.0 + 150.2500 178.5000 -64.0 + 149.2500 180.5000 -64.0 + 142.5000 186.2500 -64.0 + 140.5000 187.2500 -64.0 + 132.5000 192.2500 -64.0 + 128.5000 195.2500 -64.0 + 126.5000 195.2500 -64.0 + 124.5000 196.2500 -64.0 + 119.5000 196.2500 -64.0 + 114.5000 195.2500 -64.0 + 111.5000 194.2500 -64.0 + 107.7500 190.5000 -64.0 + 106.7500 188.5000 -64.0 + 104.5000 186.2500 -64.0 + 100.5000 191.2500 -64.0 + 96.5000 194.2500 -64.0 + 93.5000 194.2500 -64.0 + 89.5000 197.2500 -64.0 + 86.5000 197.2500 -64.0 + 80.5000 199.2500 -64.0 + 75.5000 197.2500 -64.0 + 69.7500 189.5000 -64.0 + 67.7500 185.5000 -64.0 + 56.7500 174.5000 -64.0 + 52.7500 167.5000 -64.0 + 52.7500 159.5000 -64.0 + 53.7500 156.5000 -64.0 + 50.7500 153.5000 -64.0 + 50.7500 148.5000 -64.0 + 51.7500 145.5000 -64.0 + 57.5000 139.7500 -64.0 + 61.5000 137.7500 -64.0 + 63.5000 137.7500 -64.0 + 64.7500 136.5000 -64.0 + 59.5000 136.2500 -64.0 + 56.5000 137.2500 -64.0 + 55.5000 139.2500 -64.0 + 53.5000 140.2500 -64.0 + 53.2500 141.5000 -64.0 + 49.5000 145.2500 -64.0 + 49.2500 147.5000 -64.0 + 47.5000 148.2500 -64.0 + 48.2500 149.5000 -64.0 + 48.2500 152.5000 -64.0 + 47.5000 154.2500 -64.0 + 45.5000 155.2500 -64.0 + 43.7500 151.5000 -64.0 + 41.7500 150.5000 -64.0 + 41.7500 139.5000 -64.0 + 43.7500 138.5000 -64.0 + 45.7500 134.5000 -64.0 + 46.5000 132.7500 -64.0 + 50.5000 130.7500 -64.0 + 53.5000 130.7500 -64.0 + 56.5000 133.7500 -64.0 + 58.5000 132.7500 -64.0 + 60.5000 132.7500 -64.0 + 62.5000 131.7500 -64.0 + 62.7500 129.5000 -64.0 + 64.5000 127.7500 -64.0 + 66.7500 127.5000 -64.0 + 65.7500 125.5000 -64.0 + 69.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 69.2500 129.5000 -64.0 + 69.2500 130.5000 -64.0 + 71.2500 132.5000 -64.0 + 70.2500 134.5000 -64.0 + 68.5000 135.2500 -64.0 + 68.2500 136.5000 -64.0 + 70.5000 136.7500 -64.0 + 74.5000 132.7500 -64.0 + 74.5000 131.2500 -64.0 + 72.5000 130.2500 -64.0 + 70.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 130.5000 -64.0 + 141.2500 131.5000 -64.0 + 145.5000 132.7500 -64.0 + 143.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 141.5000 -64.0 + 148.2500 142.5000 -64.0 + 151.2500 146.5000 -64.0 + 150.5000 148.2500 -64.0 + 150.2500 150.5000 -64.0 + 153.5000 147.7500 -64.0 + 152.7500 145.5000 -64.0 + 151.5000 145.2500 -64.0 + 150.7500 143.5000 -64.0 +} -64.0 +{ -64.0 + 131.5000 81.7500 -64.0 + 132.2500 82.5000 -64.0 + 131.5000 84.2500 -64.0 + 129.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 155.7500 109.5000 -64.0 + 156.5000 108.7500 -64.0 + 157.2500 109.5000 -64.0 + 157.2500 112.5000 -64.0 + 156.5000 114.2500 -64.0 + 155.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 51.7500 110.5000 -64.0 + 52.5000 109.7500 -64.0 + 55.2500 112.5000 -64.0 + 53.5000 114.2500 -64.0 + 51.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 94.7500 122.5000 -64.0 + 95.5000 121.7500 -64.0 + 97.5000 121.7500 -64.0 + 99.2500 122.5000 -64.0 + 98.5000 123.2500 -64.0 + 96.5000 123.2500 -64.0 + 94.5000 126.2500 -64.0 + 92.5000 127.2500 -64.0 + 90.7500 126.5000 -64.0 + 90.7500 124.5000 -64.0 + 91.5000 122.7500 -64.0 +} -64.0 +{ -64.0 + 113.7500 122.5000 -64.0 + 114.5000 121.7500 -64.0 + 119.5000 122.7500 -64.0 + 122.5000 123.7500 -64.0 + 123.2500 125.5000 -64.0 + 122.5000 127.2500 -64.0 + 120.5000 127.2500 -64.0 + 118.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 82.7500 129.5000 -64.0 + 84.5000 128.7500 -64.0 + 86.2500 129.5000 -64.0 + 87.2500 131.5000 -64.0 + 85.5000 133.2500 -64.0 +} -64.0 +{ -64.0 + 126.7500 135.5000 -64.0 + 128.5000 134.7500 -64.0 + 130.2500 135.5000 -64.0 + 129.5000 137.2500 -64.0 + 127.5000 137.2500 -64.0 +} -64.0 +{ -64.0 + 165.5000 158.7500 -64.0 + 166.2500 159.5000 -64.0 + 165.5000 161.2500 -64.0 + 163.7500 160.5000 -64.0 +} -64.0 +{ -64.0 + 105.7500 200.5000 -64.0 + 106.5000 199.7500 -64.0 + 107.2500 201.5000 -64.0 + 105.5000 205.2500 -64.0 + 103.7500 202.5000 -64.0 + 105.5000 201.7500 -64.0 +} -64.0 +v 464 z -138.000000 -64.0 +{ -64.0 + 107.2500 32.5000 -64.0 + 104.5000 35.2500 -64.0 + 101.5000 35.2500 -64.0 + 99.5000 37.2500 -64.0 + 95.5000 37.2500 -64.0 + 92.5000 42.2500 -64.0 + 91.2500 46.5000 -64.0 + 94.5000 46.7500 -64.0 + 95.7500 45.5000 -64.0 + 94.7500 42.5000 -64.0 + 96.5000 41.7500 -64.0 + 99.5000 42.7500 -64.0 + 101.5000 38.7500 -64.0 + 103.5000 38.7500 -64.0 + 105.5000 36.7500 -64.0 + 107.5000 37.7500 -64.0 + 109.7500 34.5000 -64.0 + 108.7500 32.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 32.5000 -64.0 + 112.5000 33.2500 -64.0 + 112.2500 35.5000 -64.0 + 114.2500 37.5000 -64.0 + 116.5000 37.7500 -64.0 + 117.5000 39.7500 -64.0 + 121.2500 41.5000 -64.0 + 122.2500 43.5000 -64.0 + 119.5000 45.2500 -64.0 + 116.7500 43.5000 -64.0 + 114.5000 44.2500 -64.0 + 112.7500 40.5000 -64.0 + 109.5000 40.2500 -64.0 + 108.5000 43.2500 -64.0 + 106.5000 43.2500 -64.0 + 104.5000 44.2500 -64.0 + 103.5000 43.2500 -64.0 + 100.5000 44.2500 -64.0 + 96.5000 49.2500 -64.0 + 94.2500 55.5000 -64.0 + 94.7500 56.5000 -64.0 + 98.7500 47.5000 -64.0 + 101.5000 45.7500 -64.0 + 106.5000 46.7500 -64.0 + 109.5000 49.7500 -64.0 + 111.5000 50.7500 -64.0 + 117.5000 45.7500 -64.0 + 123.2500 49.5000 -64.0 + 126.2500 54.5000 -64.0 + 126.2500 58.5000 -64.0 + 125.2500 60.5000 -64.0 + 126.2500 62.5000 -64.0 + 126.2500 65.5000 -64.0 + 128.2500 69.5000 -64.0 + 129.5000 69.7500 -64.0 + 134.5000 67.7500 -64.0 + 136.2500 69.5000 -64.0 + 136.2500 71.5000 -64.0 + 134.5000 73.2500 -64.0 + 129.5000 73.2500 -64.0 + 129.2500 76.5000 -64.0 + 133.5000 77.7500 -64.0 + 136.5000 76.7500 -64.0 + 138.5000 73.7500 -64.0 + 138.7500 66.5000 -64.0 + 137.7500 64.5000 -64.0 + 137.7500 61.5000 -64.0 + 135.5000 58.2500 -64.0 + 134.5000 63.2500 -64.0 + 128.5000 66.2500 -64.0 + 126.7500 65.5000 -64.0 + 127.5000 61.7500 -64.0 + 129.7500 61.5000 -64.0 + 130.7500 59.5000 -64.0 + 127.7500 57.5000 -64.0 + 127.7500 55.5000 -64.0 + 125.7500 51.5000 -64.0 + 125.7500 49.5000 -64.0 + 122.7500 45.5000 -64.0 + 123.5000 44.7500 -64.0 + 128.5000 46.7500 -64.0 + 128.7500 43.5000 -64.0 + 126.7500 37.5000 -64.0 + 124.5000 37.2500 -64.0 + 120.5000 35.2500 -64.0 + 118.5000 36.2500 -64.0 + 116.7500 33.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 49.5000 -64.0 + 89.5000 50.2500 -64.0 + 90.2500 51.5000 -64.0 + 92.5000 51.7500 -64.0 +} -64.0 +{ -64.0 + 130.2500 49.5000 -64.0 + 129.5000 50.2500 -64.0 + 129.2500 52.5000 -64.0 + 130.5000 52.7500 -64.0 + 134.5000 54.7500 -64.0 + 134.7500 52.5000 -64.0 + 132.7500 51.5000 -64.0 + 132.7500 49.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 57.5000 -64.0 + 82.5000 60.2500 -64.0 + 82.2500 65.5000 -64.0 + 83.5000 64.7500 -64.0 + 86.2500 66.5000 -64.0 + 88.5000 66.7500 -64.0 + 84.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 60.5000 -64.0 + 94.2500 62.5000 -64.0 + 94.7500 61.5000 -64.0 +} -64.0 +{ -64.0 + 81.2500 67.5000 -64.0 + 81.2500 69.5000 -64.0 + 82.5000 72.7500 -64.0 + 82.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 72.5000 -64.0 + 84.2500 73.5000 -64.0 + 88.5000 73.7500 -64.0 + 86.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 76.5000 -64.0 + 93.5000 77.2500 -64.0 + 93.2500 79.5000 -64.0 + 91.5000 81.2500 -64.0 + 88.5000 81.2500 -64.0 + 89.5000 82.7500 -64.0 + 91.5000 81.7500 -64.0 + 93.5000 81.7500 -64.0 + 96.5000 77.7500 -64.0 + 95.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 62.2500 78.5000 -64.0 + 60.5000 82.2500 -64.0 + 60.2500 84.5000 -64.0 + 62.5000 82.7500 -64.0 + 63.2500 83.5000 -64.0 + 62.2500 86.5000 -64.0 + 59.5000 88.2500 -64.0 + 58.2500 96.5000 -64.0 + 50.5000 108.2500 -64.0 + 50.2500 112.5000 -64.0 + 52.2500 114.5000 -64.0 + 54.5000 114.7500 -64.0 + 56.5000 113.7500 -64.0 + 56.7500 108.5000 -64.0 + 55.7500 105.5000 -64.0 + 59.5000 96.7500 -64.0 + 60.7500 90.5000 -64.0 + 63.5000 87.7500 -64.0 + 64.7500 81.5000 -64.0 + 63.7500 78.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 79.5000 -64.0 + 84.5000 80.2500 -64.0 + 84.2500 82.5000 -64.0 + 87.5000 80.7500 -64.0 +} -64.0 +{ -64.0 + 128.2500 80.5000 -64.0 + 128.2500 81.5000 -64.0 + 127.5000 83.2500 -64.0 + 125.5000 82.2500 -64.0 + 126.2500 83.5000 -64.0 + 129.5000 83.7500 -64.0 + 132.2500 86.5000 -64.0 + 131.5000 87.2500 -64.0 + 134.2500 89.5000 -64.0 + 134.7500 88.5000 -64.0 + 131.7500 84.5000 -64.0 + 131.7500 82.5000 -64.0 + 129.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 83.5000 -64.0 + 150.5000 84.2500 -64.0 + 150.2500 94.5000 -64.0 + 152.2500 98.5000 -64.0 + 152.2500 100.5000 -64.0 + 154.2500 104.5000 -64.0 + 154.2500 115.5000 -64.0 + 156.2500 116.5000 -64.0 + 159.5000 113.7500 -64.0 + 159.7500 111.5000 -64.0 + 158.7500 109.5000 -64.0 + 158.7500 107.5000 -64.0 + 155.7500 101.5000 -64.0 + 155.7500 99.5000 -64.0 + 154.7500 97.5000 -64.0 + 155.7500 94.5000 -64.0 + 153.7500 90.5000 -64.0 + 153.7500 86.5000 -64.0 + 152.7500 83.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 117.5000 -64.0 + 62.2500 121.5000 -64.0 + 58.5000 124.2500 -64.0 + 54.5000 122.2500 -64.0 + 53.5000 125.2500 -64.0 + 51.5000 124.2500 -64.0 + 47.2500 130.5000 -64.0 + 44.2500 132.5000 -64.0 + 39.5000 142.2500 -64.0 + 39.2500 152.5000 -64.0 + 40.2500 154.5000 -64.0 + 42.2500 164.5000 -64.0 + 50.2500 181.5000 -64.0 + 62.2500 196.5000 -64.0 + 72.2500 206.5000 -64.0 + 76.5000 209.7500 -64.0 + 83.2500 213.5000 -64.0 + 96.5000 213.7500 -64.0 + 99.5000 214.7500 -64.0 + 101.5000 213.7500 -64.0 + 104.5000 214.7500 -64.0 + 106.5000 213.7500 -64.0 + 116.5000 213.7500 -64.0 + 127.5000 209.7500 -64.0 + 133.5000 203.7500 -64.0 + 142.5000 196.7500 -64.0 + 153.5000 186.7500 -64.0 + 156.7500 182.5000 -64.0 + 160.5000 175.7500 -64.0 + 160.7500 173.5000 -64.0 + 166.7500 163.5000 -64.0 + 169.5000 152.7500 -64.0 + 169.7500 143.5000 -64.0 + 165.7500 133.5000 -64.0 + 162.7500 131.5000 -64.0 + 160.5000 131.2500 -64.0 + 160.2500 132.5000 -64.0 + 162.5000 132.7500 -64.0 + 166.2500 139.5000 -64.0 + 164.2500 143.5000 -64.0 + 166.5000 143.7500 -64.0 + 168.2500 146.5000 -64.0 + 167.5000 148.2500 -64.0 + 168.2500 149.5000 -64.0 + 167.5000 151.2500 -64.0 + 164.5000 151.2500 -64.0 + 162.5000 153.2500 -64.0 + 160.5000 153.2500 -64.0 + 160.2500 157.5000 -64.0 + 158.5000 159.2500 -64.0 + 156.5000 159.2500 -64.0 + 154.7500 157.5000 -64.0 + 154.7500 155.5000 -64.0 + 151.2500 154.5000 -64.0 + 153.2500 160.5000 -64.0 + 153.2500 165.5000 -64.0 + 152.5000 167.2500 -64.0 + 153.2500 168.5000 -64.0 + 152.2500 171.5000 -64.0 + 146.5000 181.2500 -64.0 + 134.5000 189.2500 -64.0 + 132.5000 189.2500 -64.0 + 124.5000 193.2500 -64.0 + 114.5000 193.2500 -64.0 + 111.5000 192.2500 -64.0 + 107.7500 188.5000 -64.0 + 105.5000 184.2500 -64.0 + 103.5000 183.2500 -64.0 + 102.2500 186.5000 -64.0 + 99.5000 190.2500 -64.0 + 95.5000 193.2500 -64.0 + 81.5000 193.2500 -64.0 + 77.7500 191.5000 -64.0 + 75.5000 191.2500 -64.0 + 72.7500 186.5000 -64.0 + 60.7500 177.5000 -64.0 + 57.7500 173.5000 -64.0 + 53.7500 165.5000 -64.0 + 54.7500 152.5000 -64.0 + 53.5000 151.2500 -64.0 + 51.5000 154.2500 -64.0 + 50.7500 153.5000 -64.0 + 50.7500 148.5000 -64.0 + 52.5000 147.7500 -64.0 + 54.7500 142.5000 -64.0 + 57.5000 139.7500 -64.0 + 61.7500 137.5000 -64.0 + 59.5000 137.2500 -64.0 + 53.5000 140.2500 -64.0 + 53.2500 141.5000 -64.0 + 51.2500 143.5000 -64.0 + 49.5000 150.2500 -64.0 + 44.5000 149.2500 -64.0 + 42.5000 151.2500 -64.0 + 40.7500 149.5000 -64.0 + 41.7500 148.5000 -64.0 + 40.7500 145.5000 -64.0 + 42.5000 143.7500 -64.0 + 44.7500 136.5000 -64.0 + 46.5000 135.7500 -64.0 + 46.7500 133.5000 -64.0 + 48.5000 131.7500 -64.0 + 52.5000 129.7500 -64.0 + 54.5000 130.7500 -64.0 + 56.5000 133.7500 -64.0 + 63.5000 131.7500 -64.0 + 63.7500 130.5000 -64.0 + 65.5000 129.7500 -64.0 + 65.7500 127.5000 -64.0 + 64.5000 127.2500 -64.0 + 63.7500 125.5000 -64.0 + 65.5000 124.7500 -64.0 + 68.5000 118.7500 -64.0 + 67.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 119.5000 -64.0 + 99.5000 120.2500 -64.0 + 96.2500 120.5000 -64.0 + 99.5000 120.7500 -64.0 + 100.2500 122.5000 -64.0 + 98.5000 123.2500 -64.0 + 92.5000 127.2500 -64.0 + 89.7500 125.5000 -64.0 + 89.7500 123.5000 -64.0 + 92.5000 121.7500 -64.0 + 95.7500 121.5000 -64.0 + 92.5000 121.2500 -64.0 + 88.5000 123.2500 -64.0 + 88.2500 126.5000 -64.0 + 91.2500 128.5000 -64.0 + 94.5000 128.7500 -64.0 + 96.5000 126.7500 -64.0 + 100.5000 123.7500 -64.0 + 106.5000 121.7500 -64.0 + 111.5000 122.7500 -64.0 + 115.5000 125.7500 -64.0 + 117.5000 126.7500 -64.0 + 118.2500 128.5000 -64.0 + 123.5000 130.7500 -64.0 + 124.2500 132.5000 -64.0 + 123.5000 134.2500 -64.0 + 123.2500 137.5000 -64.0 + 127.5000 140.7500 -64.0 + 129.5000 141.7500 -64.0 + 131.2500 142.5000 -64.0 + 135.5000 142.7500 -64.0 + 135.7500 139.5000 -64.0 + 138.5000 137.7500 -64.0 + 139.2500 138.5000 -64.0 + 141.5000 138.7500 -64.0 + 145.2500 140.5000 -64.0 + 148.2500 144.5000 -64.0 + 147.5000 146.2500 -64.0 + 147.2500 148.5000 -64.0 + 148.2500 150.5000 -64.0 + 149.5000 152.7500 -64.0 + 149.7500 150.5000 -64.0 + 150.5000 148.7500 -64.0 + 152.5000 147.7500 -64.0 + 150.7500 146.5000 -64.0 + 147.7500 140.5000 -64.0 + 148.7500 138.5000 -64.0 + 147.5000 137.2500 -64.0 + 145.5000 136.2500 -64.0 + 144.5000 138.2500 -64.0 + 141.5000 137.2500 -64.0 + 139.7500 136.5000 -64.0 + 135.5000 136.2500 -64.0 + 132.5000 139.2500 -64.0 + 131.7500 138.5000 -64.0 + 129.7500 134.5000 -64.0 + 127.5000 134.2500 -64.0 + 125.7500 133.5000 -64.0 + 125.7500 130.5000 -64.0 + 124.5000 129.2500 -64.0 + 120.5000 127.2500 -64.0 + 113.7500 122.5000 -64.0 + 114.5000 121.7500 -64.0 + 118.5000 121.7500 -64.0 + 123.5000 123.7500 -64.0 + 130.2500 131.5000 -64.0 + 134.5000 131.7500 -64.0 + 136.2500 132.5000 -64.0 + 137.5000 131.7500 -64.0 + 142.5000 131.7500 -64.0 + 139.7500 129.5000 -64.0 + 137.5000 129.2500 -64.0 + 134.5000 128.2500 -64.0 + 133.5000 130.2500 -64.0 + 130.5000 130.2500 -64.0 + 128.7500 128.5000 -64.0 + 128.7500 126.5000 -64.0 + 124.5000 123.2500 -64.0 + 122.5000 122.2500 -64.0 + 120.7500 121.5000 -64.0 + 117.5000 121.2500 -64.0 + 115.7500 120.5000 -64.0 + 105.5000 120.2500 -64.0 +} -64.0 +{ -64.0 + 144.2500 120.5000 -64.0 + 143.2500 122.5000 -64.0 + 145.2500 124.5000 -64.0 + 147.5000 122.7500 -64.0 + 149.7500 122.5000 -64.0 + 146.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 78.2500 127.5000 -64.0 + 77.5000 128.2500 -64.0 + 71.5000 128.2500 -64.0 + 71.2500 129.5000 -64.0 + 72.5000 129.7500 -64.0 + 74.2500 131.5000 -64.0 + 73.5000 132.2500 -64.0 + 69.5000 134.2500 -64.0 + 69.5000 135.7500 -64.0 + 71.5000 134.7500 -64.0 + 73.5000 134.7500 -64.0 + 75.5000 133.7500 -64.0 + 76.2500 134.5000 -64.0 + 78.5000 134.7500 -64.0 + 81.5000 133.7500 -64.0 + 83.5000 136.7500 -64.0 + 89.7500 134.5000 -64.0 + 90.7500 132.5000 -64.0 + 89.7500 130.5000 -64.0 + 87.5000 130.2500 -64.0 + 87.2500 131.5000 -64.0 + 86.5000 133.2500 -64.0 + 82.5000 131.2500 -64.0 + 80.7500 130.5000 -64.0 + 81.5000 129.7500 -64.0 + 86.5000 129.7500 -64.0 + 86.7500 128.5000 -64.0 + 83.5000 128.2500 -64.0 + 81.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 127.5000 -64.0 + 154.2500 128.5000 -64.0 + 151.5000 131.2500 -64.0 + 149.2500 137.5000 -64.0 + 152.5000 137.7500 -64.0 + 151.7500 136.5000 -64.0 + 151.7500 133.5000 -64.0 + 155.5000 130.7500 -64.0 + 157.5000 131.7500 -64.0 + 159.5000 130.7500 -64.0 + 156.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 139.5000 -64.0 + 154.2500 140.5000 -64.0 + 155.5000 140.7500 -64.0 +} -64.0 +{ -64.0 + 150.7500 88.5000 -64.0 + 151.5000 87.7500 -64.0 + 153.2500 88.5000 -64.0 + 153.2500 91.5000 -64.0 + 152.5000 93.2500 -64.0 + 150.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 106.5000 -64.0 + 155.5000 105.7500 -64.0 + 157.2500 107.5000 -64.0 + 157.2500 111.5000 -64.0 + 156.5000 113.2500 -64.0 + 155.7500 111.5000 -64.0 + 154.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 52.7500 110.5000 -64.0 + 54.5000 109.7500 -64.0 + 55.2500 111.5000 -64.0 + 53.5000 112.2500 -64.0 +} -64.0 +{ -64.0 + 60.7500 128.5000 -64.0 + 61.5000 127.7500 -64.0 + 63.2500 128.5000 -64.0 + 62.5000 129.2500 -64.0 +} -64.0 +{ -64.0 + 126.7500 136.5000 -64.0 + 128.5000 135.7500 -64.0 + 129.2500 137.5000 -64.0 + 128.5000 139.2500 -64.0 + 126.7500 138.5000 -64.0 +} -64.0 +{ -64.0 + 45.7500 151.5000 -64.0 + 46.5000 150.7500 -64.0 + 48.2500 151.5000 -64.0 + 49.2500 153.5000 -64.0 + 47.5000 155.2500 -64.0 + 45.5000 155.2500 -64.0 + 44.7500 153.5000 -64.0 +} -64.0 +{ -64.0 + 104.5000 195.7500 -64.0 + 105.2500 196.5000 -64.0 + 103.5000 198.2500 -64.0 + 102.7500 197.5000 -64.0 +} -64.0 +v 452 z -140.000000 -64.0 +{ -64.0 + 106.2500 31.5000 -64.0 + 103.5000 33.2500 -64.0 + 100.5000 33.2500 -64.0 + 100.2500 35.5000 -64.0 + 103.5000 37.7500 -64.0 + 105.5000 36.7500 -64.0 + 108.7500 36.5000 -64.0 + 109.7500 34.5000 -64.0 + 111.5000 33.7500 -64.0 + 114.5000 37.7500 -64.0 + 116.5000 36.7500 -64.0 + 118.2500 39.5000 -64.0 + 121.2500 40.5000 -64.0 + 120.5000 41.2500 -64.0 + 114.5000 41.2500 -64.0 + 113.7500 39.5000 -64.0 + 109.5000 38.2500 -64.0 + 106.5000 41.2500 -64.0 + 104.5000 41.2500 -64.0 + 102.5000 42.2500 -64.0 + 100.7500 41.5000 -64.0 + 100.7500 38.5000 -64.0 + 97.5000 35.2500 -64.0 + 95.5000 36.2500 -64.0 + 91.5000 42.2500 -64.0 + 91.2500 45.5000 -64.0 + 96.2500 46.5000 -64.0 + 96.2500 48.5000 -64.0 + 94.5000 50.2500 -64.0 + 90.7500 46.5000 -64.0 + 89.5000 47.2500 -64.0 + 89.2500 49.5000 -64.0 + 90.2500 51.5000 -64.0 + 94.2500 52.5000 -64.0 + 94.2500 54.5000 -64.0 + 99.5000 45.7500 -64.0 + 103.5000 42.7500 -64.0 + 108.5000 43.7500 -64.0 + 111.2500 46.5000 -64.0 + 116.5000 43.7500 -64.0 + 121.5000 44.7500 -64.0 + 127.2500 53.5000 -64.0 + 127.2500 55.5000 -64.0 + 125.5000 60.2500 -64.0 + 126.2500 61.5000 -64.0 + 126.2500 64.5000 -64.0 + 129.2500 70.5000 -64.0 + 129.5000 76.7500 -64.0 + 134.5000 77.7500 -64.0 + 138.5000 74.7500 -64.0 + 138.7500 65.5000 -64.0 + 137.7500 63.5000 -64.0 + 137.7500 60.5000 -64.0 + 136.5000 59.2500 -64.0 + 134.5000 62.2500 -64.0 + 129.5000 65.2500 -64.0 + 127.7500 64.5000 -64.0 + 127.7500 62.5000 -64.0 + 130.5000 60.7500 -64.0 + 130.7500 58.5000 -64.0 + 129.5000 58.2500 -64.0 + 127.7500 56.5000 -64.0 + 127.7500 53.5000 -64.0 + 128.5000 51.7500 -64.0 + 133.5000 54.7500 -64.0 + 134.5000 56.7500 -64.0 + 136.5000 57.7500 -64.0 + 136.7500 55.5000 -64.0 + 135.7500 53.5000 -64.0 + 135.7500 51.5000 -64.0 + 133.7500 50.5000 -64.0 + 132.5000 48.2500 -64.0 + 130.5000 47.2500 -64.0 + 127.5000 50.2500 -64.0 + 124.7500 46.5000 -64.0 + 125.5000 44.7500 -64.0 + 129.5000 45.7500 -64.0 + 129.7500 43.5000 -64.0 + 127.7500 36.5000 -64.0 + 124.5000 36.2500 -64.0 + 120.5000 33.2500 -64.0 + 118.5000 34.2500 -64.0 + 116.7500 31.5000 -64.0 + 113.5000 31.2500 -64.0 + 111.5000 32.2500 -64.0 + 109.7500 31.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 60.5000 -64.0 + 82.2500 64.5000 -64.0 + 87.5000 66.7500 -64.0 + 89.5000 65.7500 -64.0 + 89.7500 63.5000 -64.0 + 87.7500 62.5000 -64.0 + 86.7500 60.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 65.5000 -64.0 + 91.2500 67.5000 -64.0 + 92.7500 66.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 68.5000 -64.0 + 82.2500 71.5000 -64.0 + 86.5000 74.7500 -64.0 + 90.5000 72.7500 -64.0 + 89.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 62.2500 79.5000 -64.0 + 61.2500 84.5000 -64.0 + 63.5000 82.7500 -64.0 + 64.2500 83.5000 -64.0 + 63.2500 87.5000 -64.0 + 61.5000 89.2500 -64.0 + 60.7500 88.5000 -64.0 + 59.5000 89.2500 -64.0 + 58.2500 95.5000 -64.0 + 50.2500 109.5000 -64.0 + 52.5000 112.7500 -64.0 + 54.5000 113.7500 -64.0 + 56.5000 112.7500 -64.0 + 57.7500 102.5000 -64.0 + 64.5000 88.7500 -64.0 + 64.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 79.5000 -64.0 + 88.5000 81.2500 -64.0 + 85.5000 80.2500 -64.0 + 83.5000 83.7500 -64.0 + 85.5000 82.7500 -64.0 + 92.5000 81.7500 -64.0 +} -64.0 +{ -64.0 + 151.2500 84.5000 -64.0 + 149.5000 87.2500 -64.0 + 149.2500 95.5000 -64.0 + 153.2500 103.5000 -64.0 + 153.2500 106.5000 -64.0 + 154.2500 108.5000 -64.0 + 154.2500 113.5000 -64.0 + 155.2500 115.5000 -64.0 + 156.7500 115.5000 -64.0 + 159.5000 111.7500 -64.0 + 158.7500 110.5000 -64.0 + 157.7500 104.5000 -64.0 + 155.7500 100.5000 -64.0 + 155.7500 95.5000 -64.0 + 153.7500 91.5000 -64.0 + 153.7500 87.5000 -64.0 + 152.7500 84.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 117.5000 -64.0 + 64.2500 118.5000 -64.0 + 59.5000 124.2500 -64.0 + 55.5000 124.2500 -64.0 + 54.5000 126.2500 -64.0 + 50.5000 126.2500 -64.0 + 50.2500 127.5000 -64.0 + 44.5000 132.2500 -64.0 + 40.5000 139.2500 -64.0 + 40.2500 141.5000 -64.0 + 39.5000 143.2500 -64.0 + 39.2500 147.5000 -64.0 + 40.2500 149.5000 -64.0 + 40.2500 152.5000 -64.0 + 42.2500 156.5000 -64.0 + 42.2500 158.5000 -64.0 + 43.2500 160.5000 -64.0 + 43.2500 162.5000 -64.0 + 52.2500 180.5000 -64.0 + 53.5000 182.7500 -64.0 + 55.5000 183.7500 -64.0 + 65.2500 195.5000 -64.0 + 77.2500 206.5000 -64.0 + 81.5000 209.7500 -64.0 + 83.5000 210.7500 -64.0 + 85.2500 211.5000 -64.0 + 96.5000 211.7500 -64.0 + 98.2500 212.5000 -64.0 + 105.5000 212.7500 -64.0 + 107.5000 211.7500 -64.0 + 113.5000 211.7500 -64.0 + 115.5000 210.7500 -64.0 + 118.5000 210.7500 -64.0 + 125.5000 203.7500 -64.0 + 127.5000 203.7500 -64.0 + 130.5000 200.7500 -64.0 + 142.5000 191.7500 -64.0 + 149.5000 187.7500 -64.0 + 155.7500 180.5000 -64.0 + 158.5000 176.7500 -64.0 + 158.7500 174.5000 -64.0 + 161.7500 168.5000 -64.0 + 166.5000 159.7500 -64.0 + 166.7500 157.5000 -64.0 + 168.7500 152.5000 -64.0 + 169.5000 150.7500 -64.0 + 169.7500 144.5000 -64.0 + 167.7500 140.5000 -64.0 + 167.7500 138.5000 -64.0 + 164.7500 132.5000 -64.0 + 157.5000 128.2500 -64.0 + 154.2500 129.5000 -64.0 + 160.5000 130.7500 -64.0 + 161.2500 132.5000 -64.0 + 160.2500 135.5000 -64.0 + 158.5000 136.2500 -64.0 + 158.2500 137.5000 -64.0 + 163.5000 135.7500 -64.0 + 165.2500 140.5000 -64.0 + 164.2500 145.5000 -64.0 + 167.2500 147.5000 -64.0 + 167.2500 149.5000 -64.0 + 165.5000 151.2500 -64.0 + 166.2500 152.5000 -64.0 + 166.2500 154.5000 -64.0 + 162.5000 158.2500 -64.0 + 160.5000 156.2500 -64.0 + 158.5000 157.2500 -64.0 + 156.5000 157.2500 -64.0 + 155.7500 155.5000 -64.0 + 152.5000 155.2500 -64.0 + 149.7500 151.5000 -64.0 + 150.7500 148.5000 -64.0 + 152.5000 147.7500 -64.0 + 149.7500 145.5000 -64.0 + 149.7500 142.5000 -64.0 + 148.7500 139.5000 -64.0 + 147.5000 139.2500 -64.0 + 146.7500 137.5000 -64.0 + 146.2500 138.5000 -64.0 + 145.5000 140.2500 -64.0 + 143.5000 140.2500 -64.0 + 143.2500 143.5000 -64.0 + 151.2500 159.5000 -64.0 + 151.2500 168.5000 -64.0 + 147.2500 176.5000 -64.0 + 139.5000 184.2500 -64.0 + 129.5000 189.2500 -64.0 + 127.5000 189.2500 -64.0 + 123.5000 191.2500 -64.0 + 119.5000 191.2500 -64.0 + 117.5000 192.2500 -64.0 + 112.5000 191.2500 -64.0 + 109.7500 188.5000 -64.0 + 106.7500 184.5000 -64.0 + 104.7500 178.5000 -64.0 + 103.5000 179.2500 -64.0 + 101.2500 186.5000 -64.0 + 96.5000 191.2500 -64.0 + 88.5000 191.2500 -64.0 + 79.5000 188.2500 -64.0 + 72.5000 185.2500 -64.0 + 69.5000 182.2500 -64.0 + 67.5000 181.2500 -64.0 + 59.7500 174.5000 -64.0 + 55.7500 167.5000 -64.0 + 55.7500 150.5000 -64.0 + 54.7500 147.5000 -64.0 + 56.7500 142.5000 -64.0 + 61.5000 137.2500 -64.0 + 58.5000 138.2500 -64.0 + 54.5000 144.2500 -64.0 + 52.7500 143.5000 -64.0 + 50.5000 145.2500 -64.0 + 48.5000 145.2500 -64.0 + 48.2500 146.5000 -64.0 + 52.5000 146.7500 -64.0 + 54.2500 150.5000 -64.0 + 52.5000 152.2500 -64.0 + 52.2500 154.5000 -64.0 + 51.5000 156.2500 -64.0 + 50.7500 154.5000 -64.0 + 48.5000 152.2500 -64.0 + 46.5000 151.2500 -64.0 + 43.7500 147.5000 -64.0 + 44.5000 145.7500 -64.0 + 44.7500 142.5000 -64.0 + 43.7500 140.5000 -64.0 + 45.5000 138.7500 -64.0 + 47.5000 138.7500 -64.0 + 46.7500 137.5000 -64.0 + 46.7500 132.5000 -64.0 + 49.5000 129.7500 -64.0 + 54.5000 129.7500 -64.0 + 56.2500 133.5000 -64.0 + 57.5000 133.7500 -64.0 + 59.5000 131.7500 -64.0 + 60.2500 132.5000 -64.0 + 63.5000 132.7500 -64.0 + 64.5000 130.7500 -64.0 + 66.7500 129.5000 -64.0 + 67.7500 127.5000 -64.0 + 69.5000 126.7500 -64.0 + 75.5000 128.7500 -64.0 + 77.2500 129.5000 -64.0 + 81.5000 129.7500 -64.0 + 86.5000 127.7500 -64.0 + 87.7500 124.5000 -64.0 + 91.7500 121.5000 -64.0 + 89.5000 121.2500 -64.0 + 81.5000 128.2500 -64.0 + 77.5000 126.2500 -64.0 + 75.5000 127.2500 -64.0 + 73.5000 127.2500 -64.0 + 67.5000 125.2500 -64.0 + 66.7500 123.5000 -64.0 + 65.7500 121.5000 -64.0 + 67.5000 119.7500 -64.0 + 67.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 99.2500 119.5000 -64.0 + 98.5000 120.2500 -64.0 + 96.2500 120.5000 -64.0 + 100.5000 120.7500 -64.0 + 101.2500 122.5000 -64.0 + 94.5000 126.2500 -64.0 + 91.5000 126.2500 -64.0 + 87.5000 128.2500 -64.0 + 87.2500 131.5000 -64.0 + 86.5000 133.2500 -64.0 + 81.5000 133.2500 -64.0 + 79.5000 134.2500 -64.0 + 77.5000 134.2500 -64.0 + 74.5000 133.2500 -64.0 + 70.5000 135.2500 -64.0 + 67.2500 135.5000 -64.0 + 76.5000 135.7500 -64.0 + 78.2500 137.5000 -64.0 + 86.5000 137.7500 -64.0 + 89.7500 134.5000 -64.0 + 90.7500 132.5000 -64.0 + 88.7500 130.5000 -64.0 + 89.5000 128.7500 -64.0 + 94.5000 128.7500 -64.0 + 95.7500 127.5000 -64.0 + 102.5000 122.7500 -64.0 + 109.5000 122.7500 -64.0 + 115.5000 125.7500 -64.0 + 120.2500 130.5000 -64.0 + 123.2500 134.5000 -64.0 + 123.2500 139.5000 -64.0 + 124.5000 140.7500 -64.0 + 128.2500 143.5000 -64.0 + 137.5000 143.7500 -64.0 + 139.5000 142.7500 -64.0 + 138.7500 141.5000 -64.0 + 136.5000 141.2500 -64.0 + 134.5000 142.2500 -64.0 + 132.5000 142.2500 -64.0 + 130.7500 140.5000 -64.0 + 130.7500 138.5000 -64.0 + 129.7500 135.5000 -64.0 + 126.5000 135.2500 -64.0 + 124.7500 133.5000 -64.0 + 124.7500 131.5000 -64.0 + 117.5000 125.2500 -64.0 + 113.7500 122.5000 -64.0 + 114.5000 121.7500 -64.0 + 120.5000 121.7500 -64.0 + 123.5000 122.7500 -64.0 + 132.2500 132.5000 -64.0 + 133.5000 131.7500 -64.0 + 136.5000 131.7500 -64.0 + 135.7500 130.5000 -64.0 + 137.5000 129.7500 -64.0 + 136.5000 128.2500 -64.0 + 132.5000 130.2500 -64.0 + 131.7500 128.5000 -64.0 + 126.5000 123.2500 -64.0 + 122.5000 121.2500 -64.0 + 113.5000 120.2500 -64.0 + 111.5000 121.2500 -64.0 + 109.7500 120.5000 -64.0 + 102.5000 120.2500 -64.0 +} -64.0 +{ -64.0 + 144.2500 119.5000 -64.0 + 143.5000 121.2500 -64.0 + 145.2500 123.5000 -64.0 + 146.5000 121.7500 -64.0 + 149.7500 121.5000 -64.0 + 147.5000 121.2500 -64.0 + 145.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 133.5000 -64.0 + 150.2500 138.5000 -64.0 + 151.5000 138.7500 -64.0 + 151.7500 134.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 139.5000 -64.0 + 153.2500 140.5000 -64.0 + 154.5000 141.7500 -64.0 + 154.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 158.2500 142.5000 -64.0 + 158.2500 143.5000 -64.0 + 159.5000 143.7500 -64.0 + 159.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 158.2500 153.5000 -64.0 + 159.2500 154.5000 -64.0 + 159.7500 153.5000 -64.0 +} -64.0 +{ -64.0 + 110.7500 40.5000 -64.0 + 111.5000 39.7500 -64.0 + 112.2500 40.5000 -64.0 + 111.5000 41.2500 -64.0 +} -64.0 +{ -64.0 + 94.7500 41.5000 -64.0 + 95.5000 40.7500 -64.0 + 97.5000 40.7500 -64.0 + 99.2500 42.5000 -64.0 + 98.5000 44.2500 -64.0 + 95.5000 43.2500 -64.0 +} -64.0 +{ -64.0 + 123.7500 42.5000 -64.0 + 124.5000 41.7500 -64.0 + 125.2500 42.5000 -64.0 + 124.5000 44.2500 -64.0 +} -64.0 +{ -64.0 + 132.7500 68.5000 -64.0 + 133.5000 67.7500 -64.0 + 135.5000 67.7500 -64.0 + 137.2500 69.5000 -64.0 + 136.5000 70.2500 -64.0 + 132.5000 72.2500 -64.0 + 130.5000 72.2500 -64.0 + 129.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 150.7500 88.5000 -64.0 + 151.5000 87.7500 -64.0 + 152.2500 89.5000 -64.0 + 153.2500 91.5000 -64.0 + 153.2500 94.5000 -64.0 + 152.5000 96.2500 -64.0 + 151.7500 94.5000 -64.0 + 150.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 98.5000 -64.0 + 153.5000 97.7500 -64.0 + 154.2500 99.5000 -64.0 + 153.5000 101.2500 -64.0 + 152.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 105.5000 -64.0 + 155.5000 104.7500 -64.0 + 156.2500 105.5000 -64.0 + 155.5000 106.2500 -64.0 +} -64.0 +{ -64.0 + 53.7500 106.5000 -64.0 + 54.5000 105.7500 -64.0 + 55.2500 106.5000 -64.0 + 55.2500 109.5000 -64.0 + 54.5000 111.2500 -64.0 + 53.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 108.5000 -64.0 + 155.5000 107.7500 -64.0 + 156.2500 108.5000 -64.0 + 157.2500 110.5000 -64.0 + 156.5000 112.2500 -64.0 + 154.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 63.5000 124.7500 -64.0 + 65.5000 124.7500 -64.0 + 66.2500 126.5000 -64.0 + 63.5000 128.2500 -64.0 + 61.5000 129.2500 -64.0 + 59.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 125.7500 137.5000 -64.0 + 127.5000 136.7500 -64.0 + 129.2500 137.5000 -64.0 + 129.2500 140.5000 -64.0 + 127.5000 141.2500 -64.0 + 125.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 45.7500 153.5000 -64.0 + 46.5000 152.7500 -64.0 + 48.2500 153.5000 -64.0 + 47.5000 154.2500 -64.0 +} -64.0 +v 420 z -142.000000 -64.0 +{ -64.0 + 105.2500 30.5000 -64.0 + 104.5000 31.2500 -64.0 + 101.5000 31.2500 -64.0 + 99.5000 33.2500 -64.0 + 101.5000 35.7500 -64.0 + 103.5000 36.7500 -64.0 + 105.5000 35.7500 -64.0 + 108.5000 36.7500 -64.0 + 111.5000 32.7500 -64.0 + 114.5000 36.7500 -64.0 + 116.5000 35.7500 -64.0 + 118.2500 37.5000 -64.0 + 117.5000 39.2500 -64.0 + 115.5000 39.2500 -64.0 + 113.7500 37.5000 -64.0 + 110.5000 37.2500 -64.0 + 106.5000 39.2500 -64.0 + 104.5000 39.2500 -64.0 + 102.5000 40.2500 -64.0 + 101.7500 38.5000 -64.0 + 97.5000 34.2500 -64.0 + 94.5000 35.2500 -64.0 + 92.2500 39.5000 -64.0 + 90.2500 43.5000 -64.0 + 96.2500 46.5000 -64.0 + 94.5000 48.2500 -64.0 + 91.7500 45.5000 -64.0 + 89.5000 45.2500 -64.0 + 88.2500 48.5000 -64.0 + 90.5000 50.7500 -64.0 + 94.5000 52.7500 -64.0 + 96.7500 47.5000 -64.0 + 102.5000 40.7500 -64.0 + 104.5000 40.7500 -64.0 + 109.5000 41.7500 -64.0 + 109.7500 39.5000 -64.0 + 111.5000 37.7500 -64.0 + 113.2500 39.5000 -64.0 + 112.5000 41.2500 -64.0 + 113.5000 42.7500 -64.0 + 115.5000 41.7500 -64.0 + 121.5000 41.7500 -64.0 + 123.2500 43.5000 -64.0 + 126.2500 49.5000 -64.0 + 126.2500 51.5000 -64.0 + 127.2500 53.5000 -64.0 + 129.5000 52.7500 -64.0 + 133.2500 55.5000 -64.0 + 133.2500 57.5000 -64.0 + 136.5000 57.7500 -64.0 + 136.7500 55.5000 -64.0 + 135.7500 53.5000 -64.0 + 135.7500 51.5000 -64.0 + 131.5000 46.2500 -64.0 + 127.5000 48.2500 -64.0 + 125.7500 45.5000 -64.0 + 126.5000 44.7500 -64.0 + 129.5000 44.7500 -64.0 + 132.5000 43.7500 -64.0 + 132.5000 42.2500 -64.0 + 130.5000 41.2500 -64.0 + 128.7500 40.5000 -64.0 + 128.7500 35.5000 -64.0 + 127.7500 33.5000 -64.0 + 126.5000 34.2500 -64.0 + 124.5000 35.2500 -64.0 + 122.7500 32.5000 -64.0 + 120.5000 32.2500 -64.0 + 118.5000 33.2500 -64.0 + 116.7500 30.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 56.5000 -64.0 + 126.5000 57.2500 -64.0 + 126.2500 60.5000 -64.0 + 127.2500 63.5000 -64.0 + 127.7500 62.5000 -64.0 + 130.7500 60.5000 -64.0 + 131.7500 58.5000 -64.0 + 128.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 58.5000 -64.0 + 82.5000 62.2500 -64.0 + 83.2500 64.5000 -64.0 + 88.2500 66.5000 -64.0 + 91.7500 65.5000 -64.0 + 92.7500 63.5000 -64.0 + 89.5000 62.2500 -64.0 + 86.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 59.5000 -64.0 + 130.5000 64.2500 -64.0 + 128.5000 64.2500 -64.0 + 128.2500 69.5000 -64.0 + 129.2500 71.5000 -64.0 + 129.2500 75.5000 -64.0 + 131.2500 76.5000 -64.0 + 137.7500 76.5000 -64.0 + 139.7500 72.5000 -64.0 + 138.7500 70.5000 -64.0 + 134.5000 70.2500 -64.0 + 130.5000 72.2500 -64.0 + 129.7500 71.5000 -64.0 + 130.5000 69.7500 -64.0 + 132.5000 69.7500 -64.0 + 134.5000 67.7500 -64.0 + 137.7500 67.5000 -64.0 + 138.7500 65.5000 -64.0 + 137.7500 63.5000 -64.0 + 137.7500 60.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 68.5000 -64.0 + 82.2500 69.5000 -64.0 + 84.2500 73.5000 -64.0 + 88.5000 73.7500 -64.0 + 90.5000 72.7500 -64.0 + 90.5000 70.2500 -64.0 + 86.7500 68.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 79.5000 -64.0 + 61.5000 83.2500 -64.0 + 61.2500 86.5000 -64.0 + 59.2500 90.5000 -64.0 + 58.2500 95.5000 -64.0 + 55.5000 101.2500 -64.0 + 51.5000 107.2500 -64.0 + 51.2500 110.5000 -64.0 + 53.2500 112.5000 -64.0 + 55.7500 112.5000 -64.0 + 57.7500 108.5000 -64.0 + 58.7500 101.5000 -64.0 + 62.7500 95.5000 -64.0 + 65.5000 89.7500 -64.0 + 65.7500 83.5000 -64.0 + 64.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 82.5000 -64.0 + 85.2500 83.5000 -64.0 + 87.5000 83.7500 -64.0 + 88.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 84.5000 -64.0 + 81.5000 85.7500 -64.0 + 84.7500 84.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 84.5000 -64.0 + 148.5000 90.2500 -64.0 + 148.2500 96.5000 -64.0 + 151.2500 100.5000 -64.0 + 151.7500 99.5000 -64.0 + 150.7500 97.5000 -64.0 + 149.7500 90.5000 -64.0 + 151.5000 88.7500 -64.0 + 152.2500 89.5000 -64.0 + 152.2500 92.5000 -64.0 + 153.2500 94.5000 -64.0 + 152.2500 96.5000 -64.0 + 155.2500 102.5000 -64.0 + 154.5000 104.2500 -64.0 + 152.7500 101.5000 -64.0 + 152.2500 102.5000 -64.0 + 154.2500 108.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.2500 114.5000 -64.0 + 157.5000 114.7500 -64.0 + 158.5000 112.7500 -64.0 + 158.7500 107.5000 -64.0 + 157.7500 105.5000 -64.0 + 157.7500 103.5000 -64.0 + 155.7500 99.5000 -64.0 + 155.7500 96.5000 -64.0 + 153.7500 92.5000 -64.0 + 153.7500 88.5000 -64.0 + 152.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 116.5000 -64.0 + 63.2500 120.5000 -64.0 + 59.5000 124.2500 -64.0 + 56.5000 124.2500 -64.0 + 56.2500 125.5000 -64.0 + 50.2500 128.5000 -64.0 + 54.5000 128.7500 -64.0 + 56.2500 131.5000 -64.0 + 56.2500 133.5000 -64.0 + 59.5000 134.7500 -64.0 + 61.5000 133.7500 -64.0 + 64.5000 133.7500 -64.0 + 66.2500 135.5000 -64.0 + 65.5000 136.2500 -64.0 + 65.5000 137.7500 -64.0 + 69.5000 135.7500 -64.0 + 72.5000 135.7500 -64.0 + 75.2500 138.5000 -64.0 + 74.2500 141.5000 -64.0 + 79.5000 141.7500 -64.0 + 82.5000 138.7500 -64.0 + 87.5000 138.7500 -64.0 + 89.5000 136.7500 -64.0 + 89.7500 131.5000 -64.0 + 94.5000 128.7500 -64.0 + 103.7500 121.5000 -64.0 + 98.2500 119.5000 -64.0 + 99.2500 121.5000 -64.0 + 99.2500 123.5000 -64.0 + 97.2500 125.5000 -64.0 + 89.2500 128.5000 -64.0 + 85.5000 134.2500 -64.0 + 83.7500 133.5000 -64.0 + 81.5000 134.2500 -64.0 + 79.5000 137.2500 -64.0 + 75.7500 135.5000 -64.0 + 69.5000 135.2500 -64.0 + 65.5000 133.2500 -64.0 + 64.7500 131.5000 -64.0 + 58.7500 129.5000 -64.0 + 58.7500 127.5000 -64.0 + 61.5000 123.7500 -64.0 + 66.5000 123.7500 -64.0 + 66.7500 121.5000 -64.0 + 65.7500 119.5000 -64.0 + 66.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 144.2500 118.5000 -64.0 + 143.2500 119.5000 -64.0 + 144.2500 121.5000 -64.0 + 145.5000 120.7500 -64.0 + 145.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 120.5000 -64.0 + 113.5000 122.2500 -64.0 + 111.2500 122.5000 -64.0 + 119.2500 129.5000 -64.0 + 122.2500 133.5000 -64.0 + 123.2500 140.5000 -64.0 + 125.2500 144.5000 -64.0 + 127.5000 144.7500 -64.0 + 124.7500 140.5000 -64.0 + 125.5000 136.7500 -64.0 + 130.7500 140.5000 -64.0 + 129.7500 138.5000 -64.0 + 129.7500 136.5000 -64.0 + 125.5000 136.2500 -64.0 + 123.7500 131.5000 -64.0 + 117.7500 125.5000 -64.0 + 116.7500 123.5000 -64.0 + 117.5000 121.7500 -64.0 + 119.5000 120.7500 -64.0 + 124.5000 121.7500 -64.0 + 128.2500 125.5000 -64.0 + 132.5000 132.7500 -64.0 + 134.5000 131.7500 -64.0 + 135.2500 132.5000 -64.0 + 136.7500 132.5000 -64.0 + 130.7500 127.5000 -64.0 + 128.5000 123.2500 -64.0 + 124.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 88.2500 121.5000 -64.0 + 84.5000 125.2500 -64.0 + 78.5000 129.2500 -64.0 + 76.5000 129.2500 -64.0 + 78.5000 130.7500 -64.0 + 80.5000 129.7500 -64.0 + 82.5000 129.7500 -64.0 + 84.7500 126.5000 -64.0 + 89.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 126.5000 -64.0 + 69.2500 127.5000 -64.0 + 66.2500 129.5000 -64.0 + 70.5000 129.7500 -64.0 + 74.5000 127.7500 -64.0 + 76.5000 127.7500 -64.0 + 76.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 47.2500 129.5000 -64.0 + 45.2500 131.5000 -64.0 + 40.5000 141.2500 -64.0 + 40.2500 149.5000 -64.0 + 43.2500 155.5000 -64.0 + 44.2500 161.5000 -64.0 + 48.5000 168.7500 -64.0 + 52.2500 177.5000 -64.0 + 61.5000 187.7500 -64.0 + 65.5000 189.7500 -64.0 + 68.2500 192.5000 -64.0 + 69.2500 194.5000 -64.0 + 72.5000 196.7500 -64.0 + 80.5000 202.7500 -64.0 + 84.5000 204.7500 -64.0 + 88.2500 208.5000 -64.0 + 96.5000 209.7500 -64.0 + 100.2500 211.5000 -64.0 + 103.5000 211.7500 -64.0 + 105.5000 210.7500 -64.0 + 108.5000 210.7500 -64.0 + 113.5000 208.7500 -64.0 + 114.7500 204.5000 -64.0 + 120.5000 200.7500 -64.0 + 122.7500 200.5000 -64.0 + 131.5000 196.7500 -64.0 + 138.7500 190.5000 -64.0 + 147.5000 186.7500 -64.0 + 151.7500 182.5000 -64.0 + 158.5000 172.7500 -64.0 + 160.5000 164.7500 -64.0 + 162.5000 163.7500 -64.0 + 165.5000 158.7500 -64.0 + 168.5000 150.7500 -64.0 + 168.7500 142.5000 -64.0 + 166.7500 138.5000 -64.0 + 166.7500 135.5000 -64.0 + 161.7500 129.5000 -64.0 + 159.5000 129.2500 -64.0 + 161.2500 132.5000 -64.0 + 155.5000 138.2500 -64.0 + 152.5000 138.2500 -64.0 + 149.5000 141.2500 -64.0 + 145.2500 141.5000 -64.0 + 146.2500 143.5000 -64.0 + 144.5000 145.2500 -64.0 + 141.7500 143.5000 -64.0 + 133.5000 143.2500 -64.0 + 131.7500 141.5000 -64.0 + 130.5000 143.2500 -64.0 + 130.2500 145.5000 -64.0 + 138.5000 145.7500 -64.0 + 144.2500 148.5000 -64.0 + 147.2500 154.5000 -64.0 + 147.2500 156.5000 -64.0 + 149.2500 160.5000 -64.0 + 149.2500 168.5000 -64.0 + 145.2500 176.5000 -64.0 + 135.5000 184.2500 -64.0 + 125.5000 189.2500 -64.0 + 123.5000 189.2500 -64.0 + 121.5000 190.2500 -64.0 + 116.5000 190.2500 -64.0 + 111.5000 188.2500 -64.0 + 108.7500 184.5000 -64.0 + 105.7500 178.5000 -64.0 + 105.5000 174.2500 -64.0 + 103.5000 173.2500 -64.0 + 101.2500 184.5000 -64.0 + 97.5000 188.2500 -64.0 + 93.5000 190.2500 -64.0 + 84.5000 188.2500 -64.0 + 77.7500 185.5000 -64.0 + 75.5000 185.2500 -64.0 + 61.7500 174.5000 -64.0 + 56.7500 164.5000 -64.0 + 58.7500 145.5000 -64.0 + 56.5000 141.2500 -64.0 + 56.2500 145.5000 -64.0 + 54.5000 146.2500 -64.0 + 52.7500 144.5000 -64.0 + 53.7500 141.5000 -64.0 + 51.5000 143.2500 -64.0 + 48.5000 143.2500 -64.0 + 47.2500 147.5000 -64.0 + 45.5000 149.2500 -64.0 + 43.7500 148.5000 -64.0 + 42.7500 146.5000 -64.0 + 45.5000 144.7500 -64.0 + 45.7500 141.5000 -64.0 + 44.7500 139.5000 -64.0 + 48.7500 133.5000 -64.0 + 47.7500 131.5000 -64.0 + 48.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 126.7500 35.5000 -64.0 + 127.5000 34.7500 -64.0 + 128.2500 35.5000 -64.0 + 127.5000 36.2500 -64.0 +} -64.0 +{ -64.0 + 94.7500 40.5000 -64.0 + 95.5000 39.7500 -64.0 + 98.2500 41.5000 -64.0 + 96.5000 42.2500 -64.0 +} -64.0 +{ -64.0 + 61.7500 84.5000 -64.0 + 62.5000 83.7500 -64.0 + 64.2500 84.5000 -64.0 + 64.2500 87.5000 -64.0 + 62.5000 91.2500 -64.0 + 60.7500 90.5000 -64.0 + 61.5000 88.7500 -64.0 +} -64.0 +{ -64.0 + 59.7500 94.5000 -64.0 + 60.5000 93.7500 -64.0 + 61.2500 94.5000 -64.0 + 60.5000 96.2500 -64.0 +} -64.0 +{ -64.0 + 55.7500 103.5000 -64.0 + 56.5000 102.7500 -64.0 + 57.2500 103.5000 -64.0 + 56.5000 105.2500 -64.0 + 56.2500 108.5000 -64.0 + 54.5000 110.2500 -64.0 + 53.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 154.7500 107.5000 -64.0 + 155.5000 106.7500 -64.0 + 156.2500 107.5000 -64.0 + 156.2500 109.5000 -64.0 + 155.5000 111.2500 -64.0 + 154.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 159.5000 135.7500 -64.0 + 161.5000 135.7500 -64.0 + 163.2500 136.5000 -64.0 + 163.2500 138.5000 -64.0 + 162.5000 140.2500 -64.0 + 163.5000 140.7500 -64.0 + 165.2500 143.5000 -64.0 + 165.2500 147.5000 -64.0 + 164.5000 149.2500 -64.0 + 165.2500 150.5000 -64.0 + 165.2500 154.5000 -64.0 + 161.5000 156.2500 -64.0 + 159.7500 155.5000 -64.0 + 159.7500 153.5000 -64.0 + 154.7500 148.5000 -64.0 + 154.7500 146.5000 -64.0 + 157.5000 143.7500 -64.0 + 161.5000 143.7500 -64.0 + 161.7500 142.5000 -64.0 + 158.5000 142.2500 -64.0 + 156.7500 141.5000 -64.0 + 156.7500 138.5000 -64.0 +} -64.0 +{ -64.0 + 50.7500 147.5000 -64.0 + 52.5000 146.7500 -64.0 + 55.5000 147.7500 -64.0 + 57.2500 150.5000 -64.0 + 56.5000 152.2500 -64.0 + 52.5000 154.2500 -64.0 + 50.5000 154.2500 -64.0 + 47.7500 150.5000 -64.0 +} -64.0 +{ -64.0 + 49.7500 157.5000 -64.0 + 50.5000 156.7500 -64.0 + 51.2500 157.5000 -64.0 + 50.5000 158.2500 -64.0 +} -64.0 +v 388 z -144.000000 -64.0 +{ -64.0 + 106.2500 29.5000 -64.0 + 104.5000 31.2500 -64.0 + 101.2500 30.5000 -64.0 + 98.5000 34.2500 -64.0 + 96.5000 33.2500 -64.0 + 94.5000 35.2500 -64.0 + 94.2500 38.5000 -64.0 + 91.5000 40.2500 -64.0 + 91.2500 43.5000 -64.0 + 89.5000 45.2500 -64.0 + 89.2500 48.5000 -64.0 + 93.2500 52.5000 -64.0 + 95.5000 50.7500 -64.0 + 95.7500 48.5000 -64.0 + 99.5000 41.7500 -64.0 + 103.5000 38.7500 -64.0 + 107.5000 38.7500 -64.0 + 111.5000 36.7500 -64.0 + 113.2500 37.5000 -64.0 + 114.2500 39.5000 -64.0 + 116.5000 39.7500 -64.0 + 118.5000 38.7500 -64.0 + 121.5000 39.7500 -64.0 + 126.2500 47.5000 -64.0 + 126.2500 50.5000 -64.0 + 128.2500 55.5000 -64.0 + 126.5000 57.2500 -64.0 + 126.2500 60.5000 -64.0 + 128.2500 62.5000 -64.0 + 128.2500 68.5000 -64.0 + 129.5000 69.7500 -64.0 + 133.5000 67.7500 -64.0 + 136.5000 67.7500 -64.0 + 138.5000 66.7500 -64.0 + 138.7500 62.5000 -64.0 + 137.7500 60.5000 -64.0 + 135.5000 60.2500 -64.0 + 132.5000 61.2500 -64.0 + 129.5000 64.2500 -64.0 + 128.7500 62.5000 -64.0 + 136.5000 56.7500 -64.0 + 136.7500 54.5000 -64.0 + 134.7500 52.5000 -64.0 + 134.7500 49.5000 -64.0 + 132.7500 48.5000 -64.0 + 132.7500 46.5000 -64.0 + 130.7500 44.5000 -64.0 + 131.5000 43.7500 -64.0 + 131.7500 40.5000 -64.0 + 127.7500 39.5000 -64.0 + 128.5000 37.2500 -64.0 + 126.5000 38.2500 -64.0 + 122.7500 37.5000 -64.0 + 124.5000 34.7500 -64.0 + 121.7500 30.5000 -64.0 + 118.5000 31.2500 -64.0 + 116.7500 29.5000 -64.0 + 113.5000 29.2500 -64.0 + 111.5000 30.2500 -64.0 + 110.7500 29.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 31.5000 -64.0 + 130.2500 32.5000 -64.0 + 130.7500 31.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 57.5000 -64.0 + 83.5000 58.2500 -64.0 + 82.2500 62.5000 -64.0 + 87.2500 65.5000 -64.0 + 90.5000 65.7500 -64.0 + 91.2500 67.5000 -64.0 + 91.7500 66.5000 -64.0 + 92.5000 64.7500 -64.0 + 92.5000 60.2500 -64.0 + 90.5000 61.2500 -64.0 + 86.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 67.5000 -64.0 + 82.2500 71.5000 -64.0 + 84.2500 73.5000 -64.0 + 89.5000 73.7500 -64.0 + 91.5000 72.7500 -64.0 + 91.7500 70.5000 -64.0 + 86.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 70.5000 -64.0 + 129.5000 72.2500 -64.0 + 129.2500 74.5000 -64.0 + 130.2500 76.5000 -64.0 + 137.5000 76.7500 -64.0 + 140.5000 73.7500 -64.0 + 140.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 80.5000 -64.0 + 62.2500 84.5000 -64.0 + 59.2500 90.5000 -64.0 + 58.2500 95.5000 -64.0 + 52.5000 106.2500 -64.0 + 52.2500 109.5000 -64.0 + 55.5000 111.7500 -64.0 + 57.5000 110.7500 -64.0 + 57.7500 106.5000 -64.0 + 59.7500 101.5000 -64.0 + 66.5000 91.7500 -64.0 + 66.7500 86.5000 -64.0 + 64.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 85.5000 -64.0 + 150.2500 87.5000 -64.0 + 147.5000 90.2500 -64.0 + 147.2500 95.5000 -64.0 + 148.2500 98.5000 -64.0 + 153.2500 103.5000 -64.0 + 153.2500 105.5000 -64.0 + 156.2500 107.5000 -64.0 + 155.5000 111.2500 -64.0 + 153.5000 108.2500 -64.0 + 153.2500 113.5000 -64.0 + 155.2500 114.5000 -64.0 + 157.5000 113.7500 -64.0 + 158.5000 111.7500 -64.0 + 158.7500 108.5000 -64.0 + 157.7500 106.5000 -64.0 + 157.7500 103.5000 -64.0 + 153.7500 93.5000 -64.0 + 153.7500 89.5000 -64.0 + 152.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 143.2500 117.5000 -64.0 + 143.5000 119.7500 -64.0 + 145.5000 118.7500 -64.0 + 144.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 118.5000 -64.0 + 64.5000 122.7500 -64.0 + 67.7500 121.5000 -64.0 + 66.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 118.5000 -64.0 + 116.5000 122.2500 -64.0 + 116.2500 124.5000 -64.0 + 117.2500 127.5000 -64.0 + 122.2500 133.5000 -64.0 + 122.2500 143.5000 -64.0 + 125.2500 147.5000 -64.0 + 128.5000 147.7500 -64.0 + 130.5000 146.7500 -64.0 + 138.5000 146.7500 -64.0 + 142.2500 149.5000 -64.0 + 145.2500 153.5000 -64.0 + 145.2500 155.5000 -64.0 + 147.2500 159.5000 -64.0 + 147.2500 168.5000 -64.0 + 146.2500 171.5000 -64.0 + 140.5000 177.2500 -64.0 + 129.5000 185.2500 -64.0 + 127.5000 185.2500 -64.0 + 123.5000 187.2500 -64.0 + 121.5000 187.2500 -64.0 + 119.5000 188.2500 -64.0 + 112.5000 186.2500 -64.0 + 107.7500 179.5000 -64.0 + 107.7500 177.5000 -64.0 + 106.7500 175.5000 -64.0 + 106.5000 168.2500 -64.0 + 104.5000 167.2500 -64.0 + 102.5000 170.2500 -64.0 + 102.2500 176.5000 -64.0 + 100.2500 182.5000 -64.0 + 95.5000 187.2500 -64.0 + 91.5000 187.2500 -64.0 + 79.5000 184.2500 -64.0 + 68.5000 178.2500 -64.0 + 61.7500 171.5000 -64.0 + 58.7500 165.5000 -64.0 + 58.7500 153.5000 -64.0 + 59.7500 150.5000 -64.0 + 62.5000 146.7500 -64.0 + 62.7500 140.5000 -64.0 + 68.5000 137.7500 -64.0 + 70.2500 138.5000 -64.0 + 71.2500 140.5000 -64.0 + 70.2500 142.5000 -64.0 + 81.5000 143.7500 -64.0 + 83.5000 142.7500 -64.0 + 85.5000 142.7500 -64.0 + 89.5000 138.7500 -64.0 + 90.7500 133.5000 -64.0 + 99.5000 124.7500 -64.0 + 99.7500 121.5000 -64.0 + 97.2500 119.5000 -64.0 + 98.2500 121.5000 -64.0 + 98.2500 124.5000 -64.0 + 87.5000 132.2500 -64.0 + 87.2500 134.5000 -64.0 + 85.5000 135.2500 -64.0 + 82.5000 134.2500 -64.0 + 82.2500 135.5000 -64.0 + 83.2500 138.5000 -64.0 + 78.5000 140.2500 -64.0 + 72.7500 136.5000 -64.0 + 67.5000 136.2500 -64.0 + 65.7500 133.5000 -64.0 + 66.5000 132.7500 -64.0 + 66.7500 130.5000 -64.0 + 63.5000 133.2500 -64.0 + 59.5000 132.2500 -64.0 + 57.7500 130.5000 -64.0 + 57.7500 124.5000 -64.0 + 56.5000 124.2500 -64.0 + 55.2500 125.5000 -64.0 + 50.5000 127.2500 -64.0 + 50.5000 128.7500 -64.0 + 53.5000 127.7500 -64.0 + 55.2500 129.5000 -64.0 + 55.2500 132.5000 -64.0 + 54.5000 134.2500 -64.0 + 55.5000 135.7500 -64.0 + 57.5000 134.7500 -64.0 + 59.5000 134.7500 -64.0 + 62.2500 138.5000 -64.0 + 60.5000 140.2500 -64.0 + 60.2500 143.5000 -64.0 + 58.5000 145.2500 -64.0 + 56.7500 144.5000 -64.0 + 56.2500 145.5000 -64.0 + 54.5000 146.2500 -64.0 + 53.7500 144.5000 -64.0 + 55.5000 143.7500 -64.0 + 55.7500 142.5000 -64.0 + 53.5000 142.2500 -64.0 + 51.5000 143.2500 -64.0 + 47.5000 142.2500 -64.0 + 45.7500 140.5000 -64.0 + 46.5000 136.7500 -64.0 + 48.5000 135.7500 -64.0 + 47.7500 133.5000 -64.0 + 48.5000 131.7500 -64.0 + 47.7500 129.5000 -64.0 + 46.5000 129.2500 -64.0 + 43.5000 134.2500 -64.0 + 41.5000 141.2500 -64.0 + 41.2500 148.5000 -64.0 + 45.2500 156.5000 -64.0 + 45.2500 158.5000 -64.0 + 47.2500 160.5000 -64.0 + 49.5000 158.7500 -64.0 + 50.2500 159.5000 -64.0 + 50.2500 161.5000 -64.0 + 48.2500 163.5000 -64.0 + 52.2500 173.5000 -64.0 + 63.5000 185.7500 -64.0 + 67.5000 187.7500 -64.0 + 81.2500 197.5000 -64.0 + 86.5000 197.7500 -64.0 + 89.5000 198.7500 -64.0 + 97.2500 203.5000 -64.0 + 97.2500 206.5000 -64.0 + 100.2500 209.5000 -64.0 + 106.5000 209.7500 -64.0 + 108.7500 206.5000 -64.0 + 107.7500 204.5000 -64.0 + 107.7500 202.5000 -64.0 + 111.5000 198.7500 -64.0 + 113.5000 198.7500 -64.0 + 117.5000 196.7500 -64.0 + 124.5000 195.7500 -64.0 + 129.5000 193.7500 -64.0 + 134.5000 189.7500 -64.0 + 146.5000 183.7500 -64.0 + 151.7500 178.5000 -64.0 + 156.5000 169.7500 -64.0 + 156.7500 163.5000 -64.0 + 159.5000 160.7500 -64.0 + 162.7500 160.5000 -64.0 + 167.5000 150.7500 -64.0 + 167.7500 140.5000 -64.0 + 165.7500 136.5000 -64.0 + 165.7500 134.5000 -64.0 + 161.7500 130.5000 -64.0 + 158.5000 134.2500 -64.0 + 156.5000 134.2500 -64.0 + 155.5000 137.2500 -64.0 + 153.5000 137.2500 -64.0 + 153.2500 139.5000 -64.0 + 154.2500 141.5000 -64.0 + 151.5000 144.2500 -64.0 + 142.7500 142.5000 -64.0 + 139.5000 144.2500 -64.0 + 134.5000 144.2500 -64.0 + 130.5000 146.2500 -64.0 + 128.5000 146.2500 -64.0 + 126.7500 144.5000 -64.0 + 127.5000 140.7500 -64.0 + 129.5000 140.7500 -64.0 + 129.7500 136.5000 -64.0 + 128.5000 137.2500 -64.0 + 124.7500 136.5000 -64.0 + 123.7500 131.5000 -64.0 + 119.5000 128.2500 -64.0 + 117.7500 125.5000 -64.0 + 118.7500 121.5000 -64.0 + 120.5000 119.7500 -64.0 + 129.5000 124.7500 -64.0 + 129.7500 123.5000 -64.0 + 122.5000 119.2500 -64.0 +} -64.0 +{ -64.0 + 85.2500 123.5000 -64.0 + 82.5000 126.2500 -64.0 + 76.5000 129.2500 -64.0 + 76.2500 130.5000 -64.0 + 81.5000 129.7500 -64.0 + 86.7500 123.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 125.5000 -64.0 + 130.2500 127.5000 -64.0 + 130.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 129.5000 -64.0 + 132.2500 131.5000 -64.0 + 132.2500 137.5000 -64.0 + 133.5000 137.7500 -64.0 + 134.5000 134.7500 -64.0 + 132.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 141.5000 -64.0 + 133.2500 142.5000 -64.0 + 133.7500 141.5000 -64.0 +} -64.0 +{ -64.0 + 110.7500 33.5000 -64.0 + 111.5000 32.7500 -64.0 + 113.2500 34.5000 -64.0 + 111.5000 35.2500 -64.0 +} -64.0 +{ -64.0 + 128.5000 43.7500 -64.0 + 130.2500 44.5000 -64.0 + 128.5000 46.2500 -64.0 + 126.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 92.7500 45.5000 -64.0 + 93.5000 44.7500 -64.0 + 95.2500 45.5000 -64.0 + 94.5000 47.2500 -64.0 +} -64.0 +{ -64.0 + 62.7500 85.5000 -64.0 + 64.5000 84.7500 -64.0 + 66.2500 86.5000 -64.0 + 63.2500 93.5000 -64.0 + 58.5000 101.2500 -64.0 + 57.7500 99.5000 -64.0 + 61.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 149.7500 90.5000 -64.0 + 150.5000 89.7500 -64.0 + 152.2500 91.5000 -64.0 + 152.2500 96.5000 -64.0 + 155.2500 102.5000 -64.0 + 154.5000 104.2500 -64.0 + 153.7500 103.5000 -64.0 + 153.7500 101.5000 -64.0 + 150.5000 98.2500 -64.0 + 148.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 56.7500 102.5000 -64.0 + 57.5000 101.7500 -64.0 + 58.2500 102.5000 -64.0 + 57.5000 103.2500 -64.0 + 56.2500 107.5000 -64.0 + 55.5000 109.2500 -64.0 + 54.7500 108.5000 -64.0 + 54.7500 106.5000 -64.0 +} -64.0 +{ -64.0 + 158.7500 135.5000 -64.0 + 159.5000 134.7500 -64.0 + 162.5000 134.7500 -64.0 + 164.2500 136.5000 -64.0 + 164.2500 138.5000 -64.0 + 160.5000 143.2500 -64.0 + 157.7500 139.5000 -64.0 + 157.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 163.5000 142.7500 -64.0 + 165.5000 142.7500 -64.0 + 167.2500 144.5000 -64.0 + 165.2500 148.5000 -64.0 + 166.2500 150.5000 -64.0 + 164.5000 154.2500 -64.0 + 160.5000 154.2500 -64.0 + 158.7500 152.5000 -64.0 + 159.7500 150.5000 -64.0 + 156.7500 148.5000 -64.0 + 157.5000 147.7500 -64.0 + 156.7500 146.5000 -64.0 + 157.5000 144.7500 -64.0 + 161.5000 144.7500 -64.0 +} -64.0 +{ -64.0 + 142.7500 145.5000 -64.0 + 143.5000 144.7500 -64.0 + 147.2500 146.5000 -64.0 + 146.2500 148.5000 -64.0 + 144.5000 149.2500 -64.0 + 142.7500 147.5000 -64.0 +} -64.0 +{ -64.0 + 53.5000 147.7500 -64.0 + 55.5000 147.7500 -64.0 + 57.2500 148.5000 -64.0 + 57.2500 151.5000 -64.0 + 55.5000 153.2500 -64.0 + 53.5000 153.2500 -64.0 + 51.7500 152.5000 -64.0 + 50.7500 150.5000 -64.0 +} -64.0 +v 402 z -146.000000 -64.0 +{ -64.0 + 108.2500 27.5000 -64.0 + 104.5000 30.2500 -64.0 + 101.2500 29.5000 -64.0 + 98.5000 33.2500 -64.0 + 96.5000 32.2500 -64.0 + 94.2500 35.5000 -64.0 + 95.2500 37.5000 -64.0 + 92.5000 39.2500 -64.0 + 92.2500 41.5000 -64.0 + 93.2500 43.5000 -64.0 + 90.5000 45.2500 -64.0 + 90.2500 48.5000 -64.0 + 92.2500 50.5000 -64.0 + 94.7500 50.5000 -64.0 + 95.7500 48.5000 -64.0 + 94.7500 46.5000 -64.0 + 98.5000 43.7500 -64.0 + 98.7500 41.5000 -64.0 + 101.7500 37.5000 -64.0 + 104.5000 35.7500 -64.0 + 109.5000 35.7500 -64.0 + 111.5000 33.7500 -64.0 + 115.5000 36.7500 -64.0 + 117.5000 35.7500 -64.0 + 119.5000 35.7500 -64.0 + 123.2500 39.5000 -64.0 + 125.2500 43.5000 -64.0 + 129.2500 44.5000 -64.0 + 125.5000 48.2500 -64.0 + 125.5000 50.7500 -64.0 + 127.5000 51.7500 -64.0 + 128.2500 53.5000 -64.0 + 126.2500 57.5000 -64.0 + 127.2500 60.5000 -64.0 + 129.5000 60.7500 -64.0 + 136.5000 56.7500 -64.0 + 136.7500 54.5000 -64.0 + 134.7500 52.5000 -64.0 + 134.7500 50.5000 -64.0 + 131.7500 48.5000 -64.0 + 132.7500 46.5000 -64.0 + 130.7500 44.5000 -64.0 + 131.7500 41.5000 -64.0 + 130.7500 39.5000 -64.0 + 126.7500 38.5000 -64.0 + 128.7500 35.5000 -64.0 + 124.7500 34.5000 -64.0 + 126.5000 32.7500 -64.0 + 128.7500 32.5000 -64.0 + 124.5000 32.2500 -64.0 + 123.5000 30.2500 -64.0 + 121.5000 29.2500 -64.0 + 118.5000 30.2500 -64.0 + 116.7500 27.5000 -64.0 + 113.5000 27.2500 -64.0 + 111.5000 29.2500 -64.0 +} -64.0 +{ -64.0 + 85.2500 56.5000 -64.0 + 82.2500 61.5000 -64.0 + 83.2500 63.5000 -64.0 + 86.5000 63.7500 -64.0 + 91.2500 67.5000 -64.0 + 89.5000 68.2500 -64.0 + 82.5000 66.2500 -64.0 + 80.5000 69.2500 -64.0 + 81.5000 70.7500 -64.0 + 81.7500 68.5000 -64.0 + 83.5000 67.7500 -64.0 + 85.2500 68.5000 -64.0 + 84.5000 69.2500 -64.0 + 85.2500 72.5000 -64.0 + 83.5000 73.2500 -64.0 + 81.7500 72.5000 -64.0 + 81.2500 73.5000 -64.0 + 91.5000 73.7500 -64.0 + 92.5000 69.7500 -64.0 + 92.7500 63.5000 -64.0 + 91.7500 60.5000 -64.0 + 86.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 59.5000 -64.0 + 129.5000 64.2500 -64.0 + 129.2500 66.5000 -64.0 + 130.2500 68.5000 -64.0 + 132.5000 68.7500 -64.0 + 133.2500 70.5000 -64.0 + 134.5000 69.7500 -64.0 + 133.7500 68.5000 -64.0 + 136.7500 63.5000 -64.0 + 134.7500 61.5000 -64.0 + 136.5000 60.7500 -64.0 + 138.2500 62.5000 -64.0 + 138.2500 66.5000 -64.0 + 139.5000 65.7500 -64.0 + 139.7500 63.5000 -64.0 + 138.7500 60.5000 -64.0 +} -64.0 +{ -64.0 + 138.2500 69.5000 -64.0 + 137.2500 72.5000 -64.0 + 140.5000 70.7500 -64.0 + 139.7500 69.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 71.5000 -64.0 + 130.5000 72.2500 -64.0 + 130.2500 74.5000 -64.0 + 131.5000 75.7500 -64.0 + 136.5000 76.7500 -64.0 + 135.5000 76.2500 -64.0 + 131.7500 73.5000 -64.0 + 132.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 142.2500 73.5000 -64.0 + 142.2500 74.5000 -64.0 + 141.5000 76.2500 -64.0 + 142.5000 76.7500 -64.0 + 142.7500 74.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 81.5000 -64.0 + 58.5000 92.2500 -64.0 + 57.2500 98.5000 -64.0 + 53.5000 104.2500 -64.0 + 53.2500 108.5000 -64.0 + 54.2500 110.5000 -64.0 + 57.5000 110.7500 -64.0 + 58.5000 108.7500 -64.0 + 58.7500 102.5000 -64.0 + 67.7500 92.5000 -64.0 + 68.7500 87.5000 -64.0 + 65.7500 84.5000 -64.0 + 65.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 85.5000 -64.0 + 150.2500 87.5000 -64.0 + 146.5000 91.2500 -64.0 + 146.2500 95.5000 -64.0 + 147.2500 97.5000 -64.0 + 147.2500 99.5000 -64.0 + 152.5000 101.7500 -64.0 + 152.7500 99.5000 -64.0 + 150.5000 99.2500 -64.0 + 147.7500 95.5000 -64.0 + 147.7500 92.5000 -64.0 + 150.5000 89.7500 -64.0 + 152.2500 93.5000 -64.0 + 152.2500 95.5000 -64.0 + 155.2500 101.5000 -64.0 + 155.2500 105.5000 -64.0 + 156.2500 108.5000 -64.0 + 155.5000 110.2500 -64.0 + 153.7500 109.5000 -64.0 + 153.7500 106.5000 -64.0 + 152.5000 107.2500 -64.0 + 152.2500 109.5000 -64.0 + 153.5000 112.7500 -64.0 + 155.5000 113.7500 -64.0 + 157.5000 112.7500 -64.0 + 157.7500 104.5000 -64.0 + 153.7500 94.5000 -64.0 + 153.7500 90.5000 -64.0 + 152.7500 88.5000 -64.0 + 152.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 115.5000 -64.0 + 117.2500 116.5000 -64.0 + 117.2500 120.5000 -64.0 + 116.2500 123.5000 -64.0 + 122.2500 134.5000 -64.0 + 121.2500 149.5000 -64.0 + 124.5000 150.7500 -64.0 + 126.5000 149.7500 -64.0 + 130.5000 149.7500 -64.0 + 132.5000 148.7500 -64.0 + 137.5000 148.7500 -64.0 + 141.2500 151.5000 -64.0 + 144.2500 155.5000 -64.0 + 144.2500 157.5000 -64.0 + 145.2500 159.5000 -64.0 + 145.2500 164.5000 -64.0 + 143.2500 170.5000 -64.0 + 132.5000 180.2500 -64.0 + 126.5000 183.2500 -64.0 + 124.5000 183.2500 -64.0 + 122.5000 184.2500 -64.0 + 117.5000 184.2500 -64.0 + 114.5000 183.2500 -64.0 + 111.7500 180.5000 -64.0 + 108.7500 175.5000 -64.0 + 108.7500 168.5000 -64.0 + 112.7500 159.5000 -64.0 + 110.5000 159.2500 -64.0 + 106.5000 162.2500 -64.0 + 100.2500 162.5000 -64.0 + 101.2500 164.5000 -64.0 + 101.2500 173.5000 -64.0 + 98.5000 180.2500 -64.0 + 94.5000 183.2500 -64.0 + 89.5000 183.2500 -64.0 + 87.5000 182.2500 -64.0 + 78.5000 181.2500 -64.0 + 64.7500 172.5000 -64.0 + 60.7500 165.5000 -64.0 + 60.7500 161.5000 -64.0 + 59.7500 159.5000 -64.0 + 60.5000 158.7500 -64.0 + 60.7500 153.5000 -64.0 + 63.7500 147.5000 -64.0 + 67.5000 144.7500 -64.0 + 74.5000 144.7500 -64.0 + 79.2500 146.5000 -64.0 + 84.5000 146.7500 -64.0 + 87.7500 144.5000 -64.0 + 90.5000 138.7500 -64.0 + 90.7500 134.5000 -64.0 + 98.5000 124.7500 -64.0 + 98.7500 122.5000 -64.0 + 97.5000 121.2500 -64.0 + 97.2500 125.5000 -64.0 + 94.5000 128.2500 -64.0 + 90.5000 130.2500 -64.0 + 88.2500 134.5000 -64.0 + 84.2500 137.5000 -64.0 + 87.2500 141.5000 -64.0 + 86.2500 143.5000 -64.0 + 83.5000 145.2500 -64.0 + 81.7500 144.5000 -64.0 + 82.5000 142.7500 -64.0 + 81.5000 141.2500 -64.0 + 77.5000 143.2500 -64.0 + 75.5000 143.2500 -64.0 + 69.7500 138.5000 -64.0 + 65.5000 138.2500 -64.0 + 64.7500 136.5000 -64.0 + 65.5000 134.7500 -64.0 + 67.7500 133.5000 -64.0 + 64.5000 133.2500 -64.0 + 62.5000 134.2500 -64.0 + 59.5000 134.2500 -64.0 + 57.7500 133.5000 -64.0 + 54.7500 127.5000 -64.0 + 49.5000 127.2500 -64.0 + 46.2500 130.5000 -64.0 + 43.5000 136.2500 -64.0 + 43.2500 148.5000 -64.0 + 47.5000 157.7500 -64.0 + 49.5000 158.7500 -64.0 + 52.2500 162.5000 -64.0 + 52.2500 167.5000 -64.0 + 59.5000 178.7500 -64.0 + 67.5000 184.7500 -64.0 + 80.2500 191.5000 -64.0 + 83.5000 191.7500 -64.0 + 85.2500 193.5000 -64.0 + 88.5000 193.7500 -64.0 + 90.5000 192.7500 -64.0 + 91.2500 193.5000 -64.0 + 106.5000 193.7500 -64.0 + 108.5000 194.7500 -64.0 + 110.5000 193.7500 -64.0 + 114.5000 193.7500 -64.0 + 121.5000 191.7500 -64.0 + 127.5000 190.7500 -64.0 + 140.5000 183.7500 -64.0 + 146.5000 179.7500 -64.0 + 152.5000 168.7500 -64.0 + 153.7500 163.5000 -64.0 + 152.7500 160.5000 -64.0 + 155.5000 156.7500 -64.0 + 155.7500 154.5000 -64.0 + 154.7500 151.5000 -64.0 + 153.5000 151.2500 -64.0 + 151.7500 149.5000 -64.0 + 151.7500 147.5000 -64.0 + 149.7500 145.5000 -64.0 + 145.5000 144.2500 -64.0 + 143.5000 145.2500 -64.0 + 140.5000 144.2500 -64.0 + 138.5000 145.2500 -64.0 + 136.5000 145.2500 -64.0 + 134.5000 143.2500 -64.0 + 134.2500 145.5000 -64.0 + 131.5000 147.2500 -64.0 + 129.5000 147.2500 -64.0 + 127.7500 145.5000 -64.0 + 128.7500 143.5000 -64.0 + 127.2500 142.5000 -64.0 + 125.5000 146.2500 -64.0 + 123.7500 144.5000 -64.0 + 123.7500 140.5000 -64.0 + 125.5000 138.7500 -64.0 + 127.2500 140.5000 -64.0 + 128.5000 139.7500 -64.0 + 129.2500 140.5000 -64.0 + 130.5000 138.7500 -64.0 + 132.5000 138.7500 -64.0 + 132.7500 129.5000 -64.0 + 130.5000 126.2500 -64.0 + 128.5000 125.2500 -64.0 + 130.2500 127.5000 -64.0 + 130.2500 131.5000 -64.0 + 129.5000 133.2500 -64.0 + 125.5000 135.2500 -64.0 + 123.7500 131.5000 -64.0 + 121.7500 130.5000 -64.0 + 118.7500 125.5000 -64.0 + 118.7500 122.5000 -64.0 + 119.5000 120.7500 -64.0 + 125.5000 123.7500 -64.0 + 122.7500 120.5000 -64.0 + 118.7500 119.5000 -64.0 + 119.5000 117.7500 -64.0 + 128.2500 122.5000 -64.0 + 128.7500 121.5000 -64.0 + 121.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 143.2500 115.5000 -64.0 + 142.5000 116.2500 -64.0 + 142.5000 117.7500 -64.0 + 144.5000 118.7500 -64.0 + 144.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 117.5000 -64.0 + 65.2500 119.5000 -64.0 + 67.5000 119.7500 -64.0 + 67.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 117.5000 -64.0 + 89.2500 118.5000 -64.0 + 91.5000 118.7500 -64.0 + 92.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 126.5000 -64.0 + 79.5000 129.2500 -64.0 + 77.5000 130.2500 -64.0 + 77.5000 131.7500 -64.0 + 80.5000 130.7500 -64.0 + 83.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 161.2500 131.5000 -64.0 + 161.2500 132.5000 -64.0 + 159.5000 134.2500 -64.0 + 155.5000 134.2500 -64.0 + 153.5000 133.2500 -64.0 + 153.5000 136.7500 -64.0 + 157.5000 145.7500 -64.0 + 159.5000 146.7500 -64.0 + 162.5000 145.7500 -64.0 + 164.2500 147.5000 -64.0 + 163.5000 149.2500 -64.0 + 162.2500 155.5000 -64.0 + 164.7500 153.5000 -64.0 + 165.7500 151.5000 -64.0 + 166.5000 149.7500 -64.0 + 166.7500 141.5000 -64.0 + 165.7500 139.5000 -64.0 + 165.7500 137.5000 -64.0 + 162.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 119.7500 32.5000 -64.0 + 120.5000 31.7500 -64.0 + 122.2500 32.5000 -64.0 + 121.5000 33.2500 -64.0 +} -64.0 +{ -64.0 + 133.7500 55.5000 -64.0 + 134.5000 54.7500 -64.0 + 135.2500 55.5000 -64.0 + 134.5000 56.2500 -64.0 +} -64.0 +{ -64.0 + 85.7500 69.5000 -64.0 + 86.5000 68.7500 -64.0 + 87.2500 69.5000 -64.0 + 86.5000 70.2500 -64.0 +} -64.0 +{ -64.0 + 63.7500 85.5000 -64.0 + 64.5000 84.7500 -64.0 + 66.2500 86.5000 -64.0 + 66.2500 88.5000 -64.0 + 65.2500 91.5000 -64.0 + 63.5000 95.2500 -64.0 + 58.5000 101.2500 -64.0 + 57.7500 100.5000 -64.0 + 58.7500 97.5000 -64.0 + 61.5000 91.7500 -64.0 + 61.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 55.7500 104.5000 -64.0 + 56.5000 103.7500 -64.0 + 58.2500 104.5000 -64.0 + 57.2500 106.5000 -64.0 + 56.5000 108.2500 -64.0 + 54.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 51.7500 129.5000 -64.0 + 53.5000 128.7500 -64.0 + 55.2500 131.5000 -64.0 + 55.2500 133.5000 -64.0 + 53.5000 134.7500 -64.0 + 55.5000 135.7500 -64.0 + 57.2500 138.5000 -64.0 + 57.2500 140.5000 -64.0 + 58.5000 140.7500 -64.0 + 59.2500 142.5000 -64.0 + 58.5000 144.2500 -64.0 + 54.5000 142.2500 -64.0 + 52.5000 143.2500 -64.0 + 48.5000 143.2500 -64.0 + 46.7500 142.5000 -64.0 + 46.7500 140.5000 -64.0 + 45.7500 138.5000 -64.0 + 46.7500 136.5000 -64.0 + 48.5000 135.7500 -64.0 +} -64.0 +{ -64.0 + 160.5000 134.7500 -64.0 + 163.2500 136.5000 -64.0 + 162.2500 141.5000 -64.0 + 161.5000 143.2500 -64.0 + 159.7500 142.5000 -64.0 + 159.7500 139.5000 -64.0 + 157.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 86.7500 137.5000 -64.0 + 87.5000 136.7500 -64.0 + 88.2500 137.5000 -64.0 + 87.5000 139.2500 -64.0 +} -64.0 +v 547 z -148.000000 -64.0 +{ -64.0 + 107.2500 26.5000 -64.0 + 105.5000 27.2500 -64.0 + 104.5000 30.2500 -64.0 + 102.7500 28.5000 -64.0 + 100.5000 28.2500 -64.0 + 98.5000 31.2500 -64.0 + 97.7500 30.5000 -64.0 + 95.5000 31.2500 -64.0 + 94.2500 34.5000 -64.0 + 95.2500 36.5000 -64.0 + 94.5000 37.2500 -64.0 + 91.2500 37.5000 -64.0 + 93.5000 37.7500 -64.0 + 96.2500 40.5000 -64.0 + 93.5000 42.2500 -64.0 + 93.2500 43.5000 -64.0 + 91.5000 45.2500 -64.0 + 91.2500 47.5000 -64.0 + 92.2500 49.5000 -64.0 + 95.5000 49.7500 -64.0 + 95.7500 47.5000 -64.0 + 94.7500 44.5000 -64.0 + 98.5000 42.7500 -64.0 + 98.7500 38.5000 -64.0 + 100.7500 37.5000 -64.0 + 101.7500 35.5000 -64.0 + 105.5000 32.7500 -64.0 + 106.2500 33.5000 -64.0 + 109.7500 33.5000 -64.0 + 110.7500 31.5000 -64.0 + 112.5000 30.7500 -64.0 + 113.5000 32.7500 -64.0 + 115.5000 33.7500 -64.0 + 117.5000 32.7500 -64.0 + 121.5000 33.7500 -64.0 + 123.2500 37.5000 -64.0 + 123.2500 41.5000 -64.0 + 129.2500 43.5000 -64.0 + 125.5000 47.2500 -64.0 + 125.2500 50.5000 -64.0 + 128.5000 50.7500 -64.0 + 131.7500 47.5000 -64.0 + 132.7500 45.5000 -64.0 + 129.7500 43.5000 -64.0 + 131.5000 42.7500 -64.0 + 131.7500 39.5000 -64.0 + 126.5000 38.2500 -64.0 + 125.7500 36.5000 -64.0 + 129.5000 34.7500 -64.0 + 129.7500 32.5000 -64.0 + 128.7500 30.5000 -64.0 + 126.5000 30.2500 -64.0 + 122.5000 32.2500 -64.0 + 121.7500 30.5000 -64.0 + 123.5000 29.7500 -64.0 + 123.5000 28.2500 -64.0 + 121.5000 27.2500 -64.0 + 119.5000 28.2500 -64.0 + 117.7500 26.5000 -64.0 + 114.5000 26.2500 -64.0 + 112.5000 27.2500 -64.0 + 110.7500 26.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 43.5000 -64.0 + 134.2500 47.5000 -64.0 + 129.5000 52.2500 -64.0 + 127.5000 53.2500 -64.0 + 127.2500 54.5000 -64.0 + 129.2500 55.5000 -64.0 + 129.2500 59.5000 -64.0 + 132.5000 56.7500 -64.0 + 133.2500 57.5000 -64.0 + 133.2500 59.5000 -64.0 + 133.7500 58.5000 -64.0 + 135.5000 57.7500 -64.0 + 138.7500 60.5000 -64.0 + 136.7500 54.5000 -64.0 + 137.7500 52.5000 -64.0 + 136.7500 50.5000 -64.0 + 136.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 55.5000 -64.0 + 81.5000 59.2500 -64.0 + 82.2500 60.5000 -64.0 + 82.2500 64.5000 -64.0 + 83.5000 63.7500 -64.0 + 85.2500 64.5000 -64.0 + 86.5000 63.7500 -64.0 + 89.2500 65.5000 -64.0 + 87.5000 66.2500 -64.0 + 90.2500 70.5000 -64.0 + 91.5000 67.7500 -64.0 + 95.5000 67.7500 -64.0 + 93.7500 66.5000 -64.0 + 95.5000 65.7500 -64.0 + 94.7500 64.5000 -64.0 + 97.5000 62.7500 -64.0 + 95.7500 61.5000 -64.0 + 94.5000 62.2500 -64.0 + 92.7500 61.5000 -64.0 + 91.7500 59.5000 -64.0 + 86.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 58.5000 -64.0 + 125.2500 59.5000 -64.0 + 127.5000 59.7500 -64.0 +} -64.0 +{ -64.0 + 102.2500 59.5000 -64.0 + 103.2500 60.5000 -64.0 + 108.5000 60.7500 -64.0 + 111.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 59.5000 -64.0 + 139.2500 61.5000 -64.0 + 140.2500 63.5000 -64.0 + 140.2500 65.5000 -64.0 + 141.5000 65.7500 -64.0 + 141.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 60.5000 -64.0 + 133.5000 61.2500 -64.0 + 135.5000 65.7500 -64.0 + 135.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 63.5000 -64.0 + 111.5000 65.2500 -64.0 + 103.5000 66.2500 -64.0 + 105.2500 67.5000 -64.0 + 118.5000 67.7500 -64.0 + 127.5000 68.7500 -64.0 + 130.5000 69.7500 -64.0 + 131.2500 71.5000 -64.0 + 131.7500 70.5000 -64.0 + 130.7500 68.5000 -64.0 + 133.5000 66.7500 -64.0 + 131.7500 65.5000 -64.0 + 131.7500 63.5000 -64.0 + 129.5000 63.2500 -64.0 + 129.2500 64.5000 -64.0 + 130.2500 66.5000 -64.0 + 128.5000 67.2500 -64.0 + 119.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 83.2500 71.5000 -64.0 + 83.2500 72.5000 -64.0 + 84.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 71.5000 -64.0 + 86.2500 72.5000 -64.0 + 89.2500 74.5000 -64.0 + 97.5000 74.2500 -64.0 + 88.7500 72.5000 -64.0 + 89.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 72.5000 -64.0 + 76.5000 73.2500 -64.0 + 73.5000 73.2500 -64.0 + 71.5000 74.2500 -64.0 + 69.5000 74.2500 -64.0 + 67.5000 75.2500 -64.0 + 64.2500 75.5000 -64.0 + 71.5000 75.7500 -64.0 + 72.2500 77.5000 -64.0 + 71.2500 80.5000 -64.0 + 72.5000 79.7500 -64.0 + 82.5000 74.7500 -64.0 + 81.5000 74.2500 -64.0 + 79.5000 75.2500 -64.0 + 77.7500 73.5000 -64.0 + 78.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 72.5000 -64.0 + 129.5000 73.2500 -64.0 + 133.2500 76.5000 -64.0 + 132.5000 77.2500 -64.0 + 130.5000 77.2500 -64.0 + 128.7500 76.5000 -64.0 + 122.5000 76.2500 -64.0 + 122.2500 80.5000 -64.0 + 123.5000 79.7500 -64.0 + 129.5000 77.7500 -64.0 + 131.5000 78.7500 -64.0 + 133.5000 77.7500 -64.0 + 136.5000 77.7500 -64.0 +} -64.0 +{ -64.0 + 144.2500 72.5000 -64.0 + 143.5000 73.2500 -64.0 + 145.2500 74.5000 -64.0 + 142.5000 77.2500 -64.0 + 145.2500 79.5000 -64.0 + 146.5000 78.7500 -64.0 + 147.2500 79.5000 -64.0 + 150.5000 79.7500 -64.0 + 152.2500 80.5000 -64.0 + 159.5000 80.7500 -64.0 + 148.5000 75.2500 -64.0 + 146.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 81.5000 -64.0 + 53.2500 106.5000 -64.0 + 55.2500 110.5000 -64.0 + 57.5000 110.7500 -64.0 + 58.7500 109.5000 -64.0 + 59.7500 104.5000 -64.0 + 58.5000 103.2500 -64.0 + 58.2500 105.5000 -64.0 + 56.5000 107.2500 -64.0 + 55.7500 106.5000 -64.0 + 55.7500 104.5000 -64.0 + 58.5000 100.7500 -64.0 + 57.7500 99.5000 -64.0 + 64.5000 85.7500 -64.0 + 65.2500 87.5000 -64.0 + 67.2500 88.5000 -64.0 + 67.2500 91.5000 -64.0 + 64.5000 95.2500 -64.0 + 62.2500 96.5000 -64.0 + 61.2500 98.5000 -64.0 + 64.5000 96.7500 -64.0 + 66.5000 96.7500 -64.0 + 68.7500 92.5000 -64.0 + 69.7500 87.5000 -64.0 + 67.7500 85.5000 -64.0 + 65.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 81.5000 -64.0 + 139.2500 82.5000 -64.0 + 138.5000 84.2500 -64.0 + 138.2500 86.5000 -64.0 + 139.2500 88.5000 -64.0 + 139.2500 91.5000 -64.0 + 140.5000 92.7500 -64.0 + 140.7500 88.5000 -64.0 + 139.7500 86.5000 -64.0 + 139.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 85.5000 -64.0 + 150.2500 87.5000 -64.0 + 152.2500 91.5000 -64.0 + 153.2500 97.5000 -64.0 + 155.2500 101.5000 -64.0 + 155.2500 108.5000 -64.0 + 154.5000 110.2500 -64.0 + 153.7500 109.5000 -64.0 + 153.7500 105.5000 -64.0 + 152.5000 105.2500 -64.0 + 152.2500 107.5000 -64.0 + 153.2500 109.5000 -64.0 + 153.2500 112.5000 -64.0 + 155.5000 112.7500 -64.0 + 157.5000 111.7500 -64.0 + 157.7500 107.5000 -64.0 + 156.7500 105.5000 -64.0 + 155.7500 99.5000 -64.0 + 152.7500 93.5000 -64.0 + 152.7500 87.5000 -64.0 + 151.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 147.2500 97.5000 -64.0 + 148.2500 99.5000 -64.0 + 151.5000 99.7500 -64.0 + 151.7500 98.5000 -64.0 +} -64.0 +{ -64.0 + 105.2500 109.5000 -64.0 + 104.5000 110.2500 -64.0 + 99.5000 113.2500 -64.0 + 97.5000 113.2500 -64.0 + 95.5000 114.2500 -64.0 + 93.5000 114.2500 -64.0 + 88.5000 116.2500 -64.0 + 86.2500 119.5000 -64.0 + 84.2500 123.5000 -64.0 + 85.5000 123.7500 -64.0 + 87.5000 121.7500 -64.0 + 94.5000 117.7500 -64.0 + 96.5000 117.7500 -64.0 + 100.5000 115.7500 -64.0 + 104.5000 115.7500 -64.0 + 106.2500 116.5000 -64.0 + 105.5000 118.2500 -64.0 + 105.2500 121.5000 -64.0 + 107.2500 123.5000 -64.0 + 108.5000 122.7500 -64.0 + 110.5000 122.7500 -64.0 + 110.7500 118.5000 -64.0 + 109.7500 116.5000 -64.0 + 110.5000 115.7500 -64.0 + 113.5000 116.7500 -64.0 + 117.2500 118.5000 -64.0 + 117.2500 124.5000 -64.0 + 119.2500 128.5000 -64.0 + 123.2500 135.5000 -64.0 + 123.2500 140.5000 -64.0 + 121.5000 142.2500 -64.0 + 118.2500 151.5000 -64.0 + 115.5000 154.2500 -64.0 + 107.5000 159.2500 -64.0 + 101.5000 159.2500 -64.0 + 97.7500 156.5000 -64.0 + 95.5000 156.2500 -64.0 + 91.5000 154.2500 -64.0 + 91.2500 156.5000 -64.0 + 95.2500 161.5000 -64.0 + 99.2500 168.5000 -64.0 + 99.2500 172.5000 -64.0 + 96.5000 176.2500 -64.0 + 92.5000 178.2500 -64.0 + 90.5000 178.2500 -64.0 + 87.5000 177.2500 -64.0 + 85.5000 178.2500 -64.0 + 84.7500 177.5000 -64.0 + 83.5000 178.2500 -64.0 + 79.5000 178.2500 -64.0 + 73.5000 175.2500 -64.0 + 67.5000 170.2500 -64.0 + 62.7500 163.5000 -64.0 + 62.7500 161.5000 -64.0 + 61.7500 159.5000 -64.0 + 61.7500 157.5000 -64.0 + 63.7500 151.5000 -64.0 + 68.5000 146.7500 -64.0 + 70.5000 146.7500 -64.0 + 72.5000 145.7500 -64.0 + 84.2500 151.5000 -64.0 + 89.5000 151.7500 -64.0 + 89.7500 148.5000 -64.0 + 90.5000 146.7500 -64.0 + 90.7500 136.5000 -64.0 + 92.7500 131.5000 -64.0 + 97.5000 126.7500 -64.0 + 97.7500 122.5000 -64.0 + 96.5000 124.2500 -64.0 + 96.2500 126.5000 -64.0 + 89.5000 132.2500 -64.0 + 89.2500 135.5000 -64.0 + 88.5000 137.2500 -64.0 + 86.7500 135.5000 -64.0 + 84.5000 135.2500 -64.0 + 82.7500 132.5000 -64.0 + 82.7500 128.5000 -64.0 + 81.2500 131.5000 -64.0 + 80.5000 133.2500 -64.0 + 81.5000 134.7500 -64.0 + 83.5000 135.7500 -64.0 + 84.2500 137.5000 -64.0 + 88.2500 139.5000 -64.0 + 88.2500 141.5000 -64.0 + 86.5000 143.2500 -64.0 + 84.5000 143.2500 -64.0 + 84.2500 144.5000 -64.0 + 83.5000 146.2500 -64.0 + 81.5000 146.2500 -64.0 + 78.5000 143.2500 -64.0 + 76.5000 144.2500 -64.0 + 74.7500 143.5000 -64.0 + 72.5000 143.2500 -64.0 + 70.7500 142.5000 -64.0 + 69.7500 140.5000 -64.0 + 67.5000 138.2500 -64.0 + 67.2500 140.5000 -64.0 + 69.2500 142.5000 -64.0 + 68.5000 143.2500 -64.0 + 67.7500 142.5000 -64.0 + 65.5000 144.2500 -64.0 + 63.7500 142.5000 -64.0 + 63.7500 138.5000 -64.0 + 65.7500 137.5000 -64.0 + 66.7500 135.5000 -64.0 + 62.5000 135.2500 -64.0 + 60.5000 136.2500 -64.0 + 58.5000 136.2500 -64.0 + 56.5000 137.2500 -64.0 + 55.7500 136.5000 -64.0 + 55.7500 134.5000 -64.0 + 56.5000 132.7500 -64.0 + 55.7500 131.5000 -64.0 + 55.7500 129.5000 -64.0 + 53.7500 127.5000 -64.0 + 51.5000 127.2500 -64.0 + 48.5000 128.2500 -64.0 + 45.5000 132.2500 -64.0 + 45.2500 137.5000 -64.0 + 44.5000 139.2500 -64.0 + 44.2500 146.5000 -64.0 + 45.2500 148.5000 -64.0 + 45.5000 150.7500 -64.0 + 49.2500 153.5000 -64.0 + 51.2500 157.5000 -64.0 + 52.5000 157.7500 -64.0 + 55.2500 161.5000 -64.0 + 55.2500 164.5000 -64.0 + 57.5000 167.7500 -64.0 + 61.2500 176.5000 -64.0 + 62.5000 176.7500 -64.0 + 68.5000 181.7500 -64.0 + 76.5000 185.7500 -64.0 + 78.2500 186.5000 -64.0 + 81.5000 186.7500 -64.0 + 83.2500 187.5000 -64.0 + 91.5000 187.7500 -64.0 + 93.2500 188.5000 -64.0 + 102.5000 188.7500 -64.0 + 104.5000 189.7500 -64.0 + 106.5000 188.7500 -64.0 + 108.2500 189.5000 -64.0 + 112.5000 189.7500 -64.0 + 114.5000 188.7500 -64.0 + 118.5000 188.7500 -64.0 + 120.5000 187.7500 -64.0 + 124.5000 187.7500 -64.0 + 126.5000 186.7500 -64.0 + 128.5000 186.7500 -64.0 + 130.5000 185.7500 -64.0 + 132.7500 185.5000 -64.0 + 142.7500 178.5000 -64.0 + 145.5000 174.7500 -64.0 + 147.7500 168.5000 -64.0 + 150.5000 162.7500 -64.0 + 150.7500 149.5000 -64.0 + 148.7500 147.5000 -64.0 + 146.5000 147.2500 -64.0 + 146.2500 149.5000 -64.0 + 144.5000 151.2500 -64.0 + 134.5000 146.2500 -64.0 + 132.5000 148.2500 -64.0 + 130.5000 148.2500 -64.0 + 128.7500 147.5000 -64.0 + 126.7500 143.5000 -64.0 + 127.5000 141.7500 -64.0 + 126.7500 140.5000 -64.0 + 126.7500 136.5000 -64.0 + 128.5000 134.7500 -64.0 + 131.5000 134.7500 -64.0 + 131.7500 131.5000 -64.0 + 130.7500 129.5000 -64.0 + 131.7500 122.5000 -64.0 + 130.7500 119.5000 -64.0 + 128.7500 118.5000 -64.0 + 121.7500 114.5000 -64.0 + 115.5000 113.2500 -64.0 + 109.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 142.2500 114.5000 -64.0 + 141.5000 115.2500 -64.0 + 142.2500 116.5000 -64.0 + 144.5000 116.7500 -64.0 +} -64.0 +{ -64.0 + 67.2500 115.5000 -64.0 + 66.5000 116.2500 -64.0 + 66.5000 117.7500 -64.0 + 68.5000 118.7500 -64.0 + 68.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 160.2500 131.5000 -64.0 + 160.2500 132.5000 -64.0 + 159.5000 134.2500 -64.0 + 156.5000 134.2500 -64.0 + 153.5000 133.2500 -64.0 + 159.2500 145.5000 -64.0 + 163.2500 150.5000 -64.0 + 164.5000 149.7500 -64.0 + 164.7500 137.5000 -64.0 + 161.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 139.5000 -64.0 + 82.5000 142.7500 -64.0 + 83.5000 142.2500 -64.0 + 79.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 113.7500 27.5000 -64.0 + 115.5000 26.7500 -64.0 + 117.2500 27.5000 -64.0 + 116.5000 29.2500 -64.0 +} -64.0 +{ -64.0 + 125.7500 33.5000 -64.0 + 126.5000 32.7500 -64.0 + 127.2500 33.5000 -64.0 + 126.5000 35.2500 -64.0 +} -64.0 +{ -64.0 + 132.7500 52.5000 -64.0 + 133.5000 51.7500 -64.0 + 135.2500 53.5000 -64.0 + 133.5000 54.2500 -64.0 +} -64.0 +{ -64.0 + 83.7500 57.5000 -64.0 + 85.5000 56.7500 -64.0 + 87.2500 57.5000 -64.0 + 85.5000 59.2500 -64.0 + 86.2500 62.5000 -64.0 + 84.5000 63.2500 -64.0 + 82.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 92.7500 116.5000 -64.0 + 93.5000 115.7500 -64.0 + 94.2500 116.5000 -64.0 + 93.5000 117.2500 -64.0 +} -64.0 +{ -64.0 + 119.7500 116.5000 -64.0 + 120.5000 115.7500 -64.0 + 121.2500 116.5000 -64.0 + 120.5000 117.2500 -64.0 +} -64.0 +{ -64.0 + 121.7500 117.5000 -64.0 + 122.5000 116.7500 -64.0 + 123.2500 117.5000 -64.0 + 122.5000 118.2500 -64.0 +} -64.0 +{ -64.0 + 107.7500 119.5000 -64.0 + 108.5000 118.7500 -64.0 + 109.2500 119.5000 -64.0 + 108.5000 120.2500 -64.0 +} -64.0 +{ -64.0 + 118.7500 119.5000 -64.0 + 119.5000 118.7500 -64.0 + 120.2500 119.5000 -64.0 + 124.5000 120.7500 -64.0 + 129.2500 125.5000 -64.0 + 128.5000 127.2500 -64.0 + 125.5000 125.2500 -64.0 + 123.5000 124.2500 -64.0 +} -64.0 +{ -64.0 + 126.7500 120.5000 -64.0 + 127.5000 119.7500 -64.0 + 128.2500 120.5000 -64.0 + 127.5000 121.2500 -64.0 +} -64.0 +{ -64.0 + 117.7500 121.5000 -64.0 + 118.5000 120.7500 -64.0 + 119.2500 121.5000 -64.0 + 120.2500 123.5000 -64.0 + 121.5000 123.7500 -64.0 + 123.5000 125.7500 -64.0 + 127.2500 128.5000 -64.0 + 127.2500 131.5000 -64.0 + 125.5000 133.2500 -64.0 + 123.5000 133.2500 -64.0 + 120.7500 129.5000 -64.0 + 120.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 49.7500 132.5000 -64.0 + 51.5000 131.7500 -64.0 + 53.2500 133.5000 -64.0 + 53.2500 135.5000 -64.0 + 55.2500 137.5000 -64.0 + 55.2500 139.5000 -64.0 + 51.5000 143.2500 -64.0 + 48.5000 143.2500 -64.0 + 45.7500 139.5000 -64.0 + 47.5000 135.7500 -64.0 + 49.7500 135.5000 -64.0 + 48.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 129.7500 152.5000 -64.0 + 130.5000 151.7500 -64.0 + 137.5000 151.7500 -64.0 + 142.2500 156.5000 -64.0 + 142.2500 159.5000 -64.0 + 143.2500 161.5000 -64.0 + 143.2500 166.5000 -64.0 + 141.2500 168.5000 -64.0 + 140.2500 170.5000 -64.0 + 135.2500 174.5000 -64.0 + 128.5000 179.2500 -64.0 + 126.5000 179.2500 -64.0 + 124.5000 180.2500 -64.0 + 120.5000 180.2500 -64.0 + 114.7500 177.5000 -64.0 + 111.7500 172.5000 -64.0 + 111.7500 167.5000 -64.0 + 114.5000 163.7500 -64.0 + 116.5000 162.7500 -64.0 + 122.5000 155.7500 -64.0 + 127.5000 152.7500 -64.0 +} -64.0 +{ -64.0 + 101.7500 165.5000 -64.0 + 102.5000 164.7500 -64.0 + 103.5000 165.7500 -64.0 + 105.5000 164.7500 -64.0 + 106.2500 165.5000 -64.0 + 106.2500 167.5000 -64.0 + 105.5000 169.2500 -64.0 + 103.5000 169.2500 -64.0 +} -64.0 +v 616 z -150.000000 -64.0 +{ -64.0 + 106.2500 26.5000 -64.0 + 111.2500 27.5000 -64.0 + 109.2500 28.5000 -64.0 + 107.5000 32.2500 -64.0 + 105.7500 30.5000 -64.0 + 105.7500 27.5000 -64.0 + 101.5000 27.2500 -64.0 + 102.5000 27.7500 -64.0 + 104.2500 31.5000 -64.0 + 102.5000 32.2500 -64.0 + 100.7500 30.5000 -64.0 + 100.7500 28.5000 -64.0 + 95.5000 31.2500 -64.0 + 94.7500 29.5000 -64.0 + 93.2500 29.5000 -64.0 + 91.2500 33.5000 -64.0 + 90.5000 36.7500 -64.0 + 92.5000 35.7500 -64.0 + 94.2500 37.5000 -64.0 + 95.5000 36.7500 -64.0 + 96.2500 37.5000 -64.0 + 98.5000 37.7500 -64.0 + 99.5000 39.7500 -64.0 + 99.7500 37.5000 -64.0 + 97.7500 35.5000 -64.0 + 99.5000 32.7500 -64.0 + 101.2500 33.5000 -64.0 + 101.2500 35.5000 -64.0 + 105.5000 31.7500 -64.0 + 106.2500 32.5000 -64.0 + 109.5000 32.7500 -64.0 + 112.5000 29.7500 -64.0 + 113.2500 31.5000 -64.0 + 115.5000 32.7500 -64.0 + 117.5000 31.7500 -64.0 + 120.5000 31.7500 -64.0 + 122.7500 27.5000 -64.0 + 120.7500 26.5000 -64.0 + 119.5000 27.2500 -64.0 + 117.5000 26.2500 -64.0 + 118.2500 29.5000 -64.0 + 116.5000 30.2500 -64.0 + 115.7500 28.5000 -64.0 + 112.7500 27.5000 -64.0 + 113.7500 26.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 29.5000 -64.0 + 123.5000 32.2500 -64.0 + 121.5000 32.2500 -64.0 + 122.2500 35.5000 -64.0 + 123.5000 33.7500 -64.0 + 126.5000 33.7500 -64.0 + 128.2500 34.5000 -64.0 + 129.5000 33.7500 -64.0 + 129.7500 29.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 36.5000 -64.0 + 127.2500 38.5000 -64.0 + 128.5000 37.7500 -64.0 + 130.2500 38.5000 -64.0 + 130.2500 41.5000 -64.0 + 129.5000 43.2500 -64.0 + 130.2500 46.5000 -64.0 + 133.2500 47.5000 -64.0 + 132.2500 52.5000 -64.0 + 133.5000 49.7500 -64.0 + 135.2500 50.5000 -64.0 + 135.5000 55.7500 -64.0 + 137.7500 47.5000 -64.0 + 136.7500 45.5000 -64.0 + 136.7500 43.5000 -64.0 + 132.5000 43.2500 -64.0 + 130.7500 42.5000 -64.0 + 130.7500 39.5000 -64.0 + 133.5000 36.7500 -64.0 + 132.5000 36.2500 -64.0 + 130.5000 37.2500 -64.0 +} -64.0 +{ -64.0 + 123.2500 38.5000 -64.0 + 123.2500 40.5000 -64.0 + 123.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 39.5000 -64.0 + 134.5000 40.2500 -64.0 + 136.2500 41.5000 -64.0 + 136.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 98.2500 40.5000 -64.0 + 97.2500 41.5000 -64.0 + 98.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 43.5000 -64.0 + 87.2500 46.5000 -64.0 + 85.5000 50.2500 -64.0 + 81.5000 50.2500 -64.0 + 79.5000 51.2500 -64.0 + 80.2500 52.5000 -64.0 + 80.2500 55.5000 -64.0 + 79.5000 57.2500 -64.0 + 78.7500 56.5000 -64.0 + 78.2500 57.5000 -64.0 + 80.5000 60.7500 -64.0 + 80.7500 58.5000 -64.0 + 85.5000 53.7500 -64.0 + 86.5000 54.7500 -64.0 + 88.7500 46.5000 -64.0 + 90.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 43.5000 -64.0 + 94.2500 44.5000 -64.0 + 93.2500 49.5000 -64.0 + 94.5000 49.7500 -64.0 + 96.5000 48.7500 -64.0 + 96.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 43.5000 -64.0 + 126.2500 44.5000 -64.0 + 124.5000 46.2500 -64.0 + 124.2500 48.5000 -64.0 + 125.2500 50.5000 -64.0 + 127.5000 50.7500 -64.0 + 126.7500 49.5000 -64.0 + 127.5000 48.7500 -64.0 + 128.2500 49.5000 -64.0 + 128.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 49.5000 -64.0 + 116.2500 50.5000 -64.0 + 117.5000 50.7500 -64.0 + 120.2500 53.5000 -64.0 + 118.5000 54.2500 -64.0 + 117.5000 54.7500 -64.0 + 119.5000 55.7500 -64.0 + 121.2500 56.5000 -64.0 + 120.2500 58.5000 -64.0 + 124.5000 58.7500 -64.0 + 124.7500 56.5000 -64.0 + 125.5000 54.7500 -64.0 + 119.7500 49.5000 -64.0 +} -64.0 +{ -64.0 + 145.2500 53.5000 -64.0 + 144.5000 54.2500 -64.0 + 142.2500 54.5000 -64.0 + 144.5000 54.7500 -64.0 + 146.5000 53.7500 -64.0 + 148.7500 53.5000 -64.0 +} -64.0 +{ -64.0 + 111.2500 56.5000 -64.0 + 110.5000 57.2500 -64.0 + 107.5000 57.2500 -64.0 + 105.5000 58.2500 -64.0 + 101.5000 58.2500 -64.0 + 100.5000 60.2500 -64.0 + 99.7500 59.5000 -64.0 + 98.5000 60.2500 -64.0 + 96.5000 60.2500 -64.0 + 94.5000 61.2500 -64.0 + 92.5000 61.2500 -64.0 + 90.7500 57.5000 -64.0 + 89.5000 58.2500 -64.0 + 89.2500 60.5000 -64.0 + 88.5000 62.2500 -64.0 + 90.2500 65.5000 -64.0 + 92.5000 65.7500 -64.0 + 97.5000 66.7500 -64.0 + 99.5000 65.7500 -64.0 + 101.5000 65.7500 -64.0 + 103.2500 66.5000 -64.0 + 127.7500 66.5000 -64.0 + 123.5000 66.2500 -64.0 + 121.7500 65.5000 -64.0 + 122.7500 63.5000 -64.0 + 118.5000 63.2500 -64.0 + 116.5000 64.2500 -64.0 + 114.5000 64.2500 -64.0 + 112.5000 65.2500 -64.0 + 101.5000 65.2500 -64.0 + 99.7500 64.5000 -64.0 + 100.5000 62.7500 -64.0 + 102.5000 62.7500 -64.0 + 104.5000 61.7500 -64.0 + 107.5000 61.7500 -64.0 + 109.5000 60.7500 -64.0 + 112.5000 60.7500 -64.0 + 114.5000 59.7500 -64.0 + 117.5000 59.7500 -64.0 + 114.5000 58.2500 -64.0 + 113.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 57.5000 -64.0 + 149.5000 58.2500 -64.0 + 143.5000 58.2500 -64.0 + 141.5000 59.2500 -64.0 + 136.5000 59.2500 -64.0 + 137.5000 59.7500 -64.0 + 139.2500 60.5000 -64.0 + 140.5000 59.7500 -64.0 + 141.2500 60.5000 -64.0 + 143.5000 60.7500 -64.0 + 144.2500 62.5000 -64.0 + 142.5000 63.2500 -64.0 + 144.2500 65.5000 -64.0 + 143.5000 66.2500 -64.0 + 141.2500 67.5000 -64.0 + 143.2500 71.5000 -64.0 + 143.2500 73.5000 -64.0 + 141.5000 74.2500 -64.0 + 146.2500 77.5000 -64.0 + 147.2500 79.5000 -64.0 + 152.2500 82.5000 -64.0 + 152.7500 81.5000 -64.0 + 153.5000 79.7500 -64.0 + 155.2500 80.5000 -64.0 + 161.5000 82.7500 -64.0 + 160.7500 81.5000 -64.0 + 156.5000 78.2500 -64.0 + 154.5000 77.2500 -64.0 + 152.7500 76.5000 -64.0 + 147.5000 76.2500 -64.0 + 145.7500 74.5000 -64.0 + 147.5000 73.7500 -64.0 + 147.7500 72.5000 -64.0 + 143.7500 70.5000 -64.0 + 142.7500 68.5000 -64.0 + 144.5000 66.7500 -64.0 + 146.5000 66.7500 -64.0 + 148.5000 65.7500 -64.0 + 155.5000 65.7500 -64.0 + 155.7500 64.5000 -64.0 + 153.7500 63.5000 -64.0 + 152.5000 64.2500 -64.0 + 150.5000 64.2500 -64.0 + 148.7500 63.5000 -64.0 + 149.5000 62.7500 -64.0 + 151.5000 62.7500 -64.0 + 153.5000 61.7500 -64.0 + 152.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 58.5000 -64.0 + 85.2500 60.5000 -64.0 + 85.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 61.5000 -64.0 + 65.2500 62.5000 -64.0 + 75.5000 63.7500 -64.0 + 72.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 63.5000 -64.0 + 129.2500 66.5000 -64.0 + 130.5000 65.7500 -64.0 + 132.5000 66.7500 -64.0 +} -64.0 +{ -64.0 + 72.2500 65.5000 -64.0 + 70.5000 66.2500 -64.0 + 77.2500 69.5000 -64.0 + 77.5000 71.7500 -64.0 + 77.7500 68.5000 -64.0 + 75.7500 67.5000 -64.0 + 75.7500 65.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 69.5000 -64.0 + 128.2500 71.5000 -64.0 + 125.5000 74.2500 -64.0 + 92.5000 73.2500 -64.0 + 93.2500 74.5000 -64.0 + 91.5000 75.2500 -64.0 + 89.7500 73.5000 -64.0 + 91.5000 72.7500 -64.0 + 91.7500 70.5000 -64.0 + 88.5000 72.2500 -64.0 + 89.2500 74.5000 -64.0 + 87.5000 75.2500 -64.0 + 88.2500 76.5000 -64.0 + 93.5000 77.7500 -64.0 + 97.2500 81.5000 -64.0 + 100.5000 79.7500 -64.0 + 98.7500 76.5000 -64.0 + 100.5000 75.7500 -64.0 + 103.5000 76.7500 -64.0 + 105.5000 75.7500 -64.0 + 110.5000 76.7500 -64.0 + 113.5000 75.7500 -64.0 + 115.2500 76.5000 -64.0 + 114.5000 78.2500 -64.0 + 117.5000 79.7500 -64.0 + 118.2500 81.5000 -64.0 + 116.5000 83.2500 -64.0 + 116.2500 85.5000 -64.0 + 118.5000 83.7500 -64.0 + 120.5000 83.7500 -64.0 + 124.5000 81.7500 -64.0 + 125.5000 83.7500 -64.0 + 129.5000 80.7500 -64.0 + 131.5000 80.7500 -64.0 + 134.5000 77.2500 -64.0 + 132.5000 78.2500 -64.0 + 127.5000 77.2500 -64.0 + 126.7500 75.5000 -64.0 + 128.5000 73.7500 -64.0 + 130.5000 73.7500 -64.0 +} -64.0 +{ -64.0 + 75.2500 73.5000 -64.0 + 74.5000 74.2500 -64.0 + 69.5000 74.2500 -64.0 + 67.5000 75.2500 -64.0 + 61.5000 75.2500 -64.0 + 59.5000 76.2500 -64.0 + 57.5000 76.2500 -64.0 + 55.5000 77.2500 -64.0 + 53.2500 77.5000 -64.0 + 60.5000 77.7500 -64.0 + 62.5000 76.7500 -64.0 + 67.5000 76.7500 -64.0 + 69.2500 77.5000 -64.0 + 67.5000 78.2500 -64.0 + 61.5000 81.2500 -64.0 + 63.2500 82.5000 -64.0 + 61.5000 86.2500 -64.0 + 61.2500 88.5000 -64.0 + 58.2500 94.5000 -64.0 + 57.2500 99.5000 -64.0 + 54.5000 103.2500 -64.0 + 54.2500 107.5000 -64.0 + 55.2500 109.5000 -64.0 + 58.5000 109.7500 -64.0 + 59.7500 106.5000 -64.0 + 60.5000 104.7500 -64.0 + 59.7500 102.5000 -64.0 + 57.5000 106.2500 -64.0 + 56.7500 105.5000 -64.0 + 56.7500 101.5000 -64.0 + 60.7500 93.5000 -64.0 + 65.5000 85.7500 -64.0 + 67.5000 87.7500 -64.0 + 69.5000 88.7500 -64.0 + 69.7500 86.5000 -64.0 + 68.5000 86.2500 -64.0 + 66.7500 83.5000 -64.0 + 66.7500 81.5000 -64.0 + 70.5000 78.7500 -64.0 + 72.2500 79.5000 -64.0 + 77.5000 74.7500 -64.0 + 79.5000 74.7500 -64.0 + 78.5000 74.2500 -64.0 + 76.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 103.2500 82.5000 -64.0 + 103.5000 82.7500 -64.0 + 105.5000 83.7500 -64.0 + 104.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 84.5000 -64.0 + 130.5000 85.2500 -64.0 + 130.2500 87.5000 -64.0 + 131.5000 87.7500 -64.0 + 131.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 84.5000 -64.0 + 149.5000 88.2500 -64.0 + 152.2500 92.5000 -64.0 + 152.5000 94.7500 -64.0 + 152.7500 90.5000 -64.0 + 153.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 91.5000 -64.0 + 67.5000 92.2500 -64.0 + 62.2500 96.5000 -64.0 + 66.5000 96.7500 -64.0 + 68.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 95.5000 -64.0 + 153.2500 97.5000 -64.0 + 153.7500 96.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 98.5000 -64.0 + 154.2500 99.5000 -64.0 + 155.2500 101.5000 -64.0 + 155.2500 108.5000 -64.0 + 154.5000 110.2500 -64.0 + 153.5000 109.2500 -64.0 + 153.5000 111.7500 -64.0 + 155.5000 112.7500 -64.0 + 157.5000 110.7500 -64.0 + 157.7500 108.5000 -64.0 + 156.7500 106.5000 -64.0 + 156.7500 103.5000 -64.0 +} -64.0 +{ -64.0 + 152.2500 106.5000 -64.0 + 152.2500 108.5000 -64.0 + 152.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 108.5000 -64.0 + 94.5000 114.2500 -64.0 + 91.5000 114.2500 -64.0 + 87.2500 116.5000 -64.0 + 89.5000 116.7500 -64.0 + 96.5000 114.7500 -64.0 + 97.2500 116.5000 -64.0 + 95.5000 118.2500 -64.0 + 91.5000 118.2500 -64.0 + 85.5000 121.2500 -64.0 + 84.7500 119.5000 -64.0 + 86.7500 117.5000 -64.0 + 84.5000 117.2500 -64.0 + 81.5000 120.2500 -64.0 + 83.2500 122.5000 -64.0 + 83.2500 126.5000 -64.0 + 88.5000 121.7500 -64.0 + 90.2500 122.5000 -64.0 + 89.5000 124.2500 -64.0 + 92.2500 130.5000 -64.0 + 88.5000 133.2500 -64.0 + 86.7500 132.5000 -64.0 + 86.7500 130.5000 -64.0 + 83.5000 128.2500 -64.0 + 81.5000 131.2500 -64.0 + 81.2500 134.5000 -64.0 + 87.2500 138.5000 -64.0 + 87.2500 140.5000 -64.0 + 85.5000 141.2500 -64.0 + 84.5000 143.2500 -64.0 + 85.2500 145.5000 -64.0 + 84.5000 147.2500 -64.0 + 81.5000 147.2500 -64.0 + 79.5000 144.2500 -64.0 + 77.5000 143.2500 -64.0 + 73.5000 146.2500 -64.0 + 71.5000 145.2500 -64.0 + 70.7500 143.5000 -64.0 + 66.7500 140.5000 -64.0 + 64.5000 140.2500 -64.0 + 60.5000 138.2500 -64.0 + 59.2500 139.5000 -64.0 + 56.5000 145.2500 -64.0 + 55.5000 144.2500 -64.0 + 52.5000 149.2500 -64.0 + 52.2500 151.5000 -64.0 + 53.5000 152.7500 -64.0 + 55.5000 151.7500 -64.0 + 57.2500 152.5000 -64.0 + 58.2500 161.5000 -64.0 + 63.2500 174.5000 -64.0 + 75.2500 182.5000 -64.0 + 91.5000 182.7500 -64.0 + 91.7500 181.5000 -64.0 + 93.5000 179.7500 -64.0 + 94.2500 180.5000 -64.0 + 96.5000 180.7500 -64.0 + 98.5000 178.7500 -64.0 + 100.2500 180.5000 -64.0 + 100.2500 184.5000 -64.0 + 104.2500 185.5000 -64.0 + 105.5000 184.7500 -64.0 + 107.7500 178.5000 -64.0 + 105.7500 174.5000 -64.0 + 105.7500 171.5000 -64.0 + 107.5000 169.7500 -64.0 + 110.2500 175.5000 -64.0 + 110.2500 177.5000 -64.0 + 111.5000 177.7500 -64.0 + 112.2500 179.5000 -64.0 + 116.5000 180.7500 -64.0 + 119.2500 183.5000 -64.0 + 127.5000 183.7500 -64.0 + 137.5000 178.7500 -64.0 + 143.5000 172.7500 -64.0 + 146.7500 162.5000 -64.0 + 145.7500 159.5000 -64.0 + 141.5000 157.2500 -64.0 + 140.7500 155.5000 -64.0 + 134.7500 150.5000 -64.0 + 128.5000 150.2500 -64.0 + 125.7500 147.5000 -64.0 + 125.7500 142.5000 -64.0 + 124.5000 142.2500 -64.0 + 121.2500 145.5000 -64.0 + 118.5000 151.2500 -64.0 + 109.5000 157.2500 -64.0 + 101.5000 157.2500 -64.0 + 94.7500 151.5000 -64.0 + 91.7500 146.5000 -64.0 + 91.7500 142.5000 -64.0 + 90.7500 140.5000 -64.0 + 90.7500 135.5000 -64.0 + 91.7500 132.5000 -64.0 + 97.5000 125.7500 -64.0 + 97.7500 123.5000 -64.0 + 96.5000 122.2500 -64.0 + 94.5000 125.2500 -64.0 + 92.7500 124.5000 -64.0 + 93.5000 123.7500 -64.0 + 91.7500 121.5000 -64.0 + 94.5000 119.7500 -64.0 + 96.5000 119.7500 -64.0 + 98.5000 117.7500 -64.0 + 102.5000 115.7500 -64.0 + 104.2500 116.5000 -64.0 + 105.2500 122.5000 -64.0 + 108.5000 124.7500 -64.0 + 111.5000 121.7500 -64.0 + 111.7500 117.5000 -64.0 + 113.5000 116.7500 -64.0 + 115.2500 117.5000 -64.0 + 118.2500 121.5000 -64.0 + 118.2500 124.5000 -64.0 + 121.2500 130.5000 -64.0 + 121.2500 133.5000 -64.0 + 122.2500 136.5000 -64.0 + 123.7500 136.5000 -64.0 + 124.7500 134.5000 -64.0 + 121.7500 130.5000 -64.0 + 122.5000 128.7500 -64.0 + 127.2500 135.5000 -64.0 + 127.2500 138.5000 -64.0 + 129.5000 138.7500 -64.0 + 131.5000 135.7500 -64.0 + 131.7500 126.5000 -64.0 + 133.5000 124.7500 -64.0 + 133.7500 122.5000 -64.0 + 132.7500 120.5000 -64.0 + 130.5000 122.2500 -64.0 + 131.2500 123.5000 -64.0 + 130.5000 124.2500 -64.0 + 128.7500 122.5000 -64.0 + 126.5000 122.2500 -64.0 + 124.7500 120.5000 -64.0 + 120.5000 119.2500 -64.0 + 117.7500 116.5000 -64.0 + 118.5000 114.7500 -64.0 + 128.2500 119.5000 -64.0 + 129.7500 118.5000 -64.0 + 122.7500 114.5000 -64.0 + 117.5000 113.2500 -64.0 + 110.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 142.2500 113.5000 -64.0 + 142.2500 114.5000 -64.0 + 143.5000 114.7500 -64.0 +} -64.0 +{ -64.0 + 68.2500 114.5000 -64.0 + 67.2500 116.5000 -64.0 + 69.5000 116.7500 -64.0 + 69.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 50.2500 128.5000 -64.0 + 48.5000 129.2500 -64.0 + 46.5000 133.2500 -64.0 + 46.2500 140.5000 -64.0 + 45.2500 142.5000 -64.0 + 46.2500 144.5000 -64.0 + 46.2500 147.5000 -64.0 + 47.5000 148.7500 -64.0 + 50.5000 144.7500 -64.0 + 50.7500 142.5000 -64.0 + 49.5000 142.2500 -64.0 + 46.7500 138.5000 -64.0 + 49.5000 135.7500 -64.0 + 54.5000 137.7500 -64.0 + 55.5000 134.7500 -64.0 + 53.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 158.2500 131.5000 -64.0 + 157.5000 132.2500 -64.0 + 154.2500 132.5000 -64.0 + 158.2500 140.5000 -64.0 + 161.2500 144.5000 -64.0 + 162.7500 144.5000 -64.0 + 161.7500 142.5000 -64.0 + 161.7500 138.5000 -64.0 + 162.5000 136.7500 -64.0 + 161.7500 135.5000 -64.0 + 161.7500 133.5000 -64.0 + 159.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 125.7500 30.5000 -64.0 + 126.5000 29.7500 -64.0 + 128.2500 30.5000 -64.0 + 129.2500 32.5000 -64.0 + 127.5000 33.2500 -64.0 +} -64.0 +{ -64.0 + 93.7500 35.5000 -64.0 + 94.5000 34.7500 -64.0 + 95.2500 35.5000 -64.0 + 94.5000 36.2500 -64.0 +} -64.0 +{ -64.0 + 97.7500 64.5000 -64.0 + 98.5000 63.7500 -64.0 + 99.2500 64.5000 -64.0 + 98.5000 65.2500 -64.0 +} -64.0 +{ -64.0 + 150.7500 78.5000 -64.0 + 151.5000 77.7500 -64.0 + 152.2500 78.5000 -64.0 + 151.5000 79.2500 -64.0 +} -64.0 +{ -64.0 + 118.7500 82.5000 -64.0 + 119.5000 81.7500 -64.0 + 120.2500 82.5000 -64.0 + 119.5000 83.2500 -64.0 +} -64.0 +{ -64.0 + 106.7500 118.5000 -64.0 + 108.5000 117.7500 -64.0 + 109.2500 119.5000 -64.0 + 108.5000 121.2500 -64.0 + 106.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 122.5000 122.7500 -64.0 + 125.5000 123.7500 -64.0 + 128.2500 127.5000 -64.0 + 127.5000 129.2500 -64.0 + 123.5000 124.2500 -64.0 + 121.5000 125.2500 -64.0 + 120.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 72.7500 149.5000 -64.0 + 73.5000 148.7500 -64.0 + 75.5000 149.7500 -64.0 + 78.5000 152.7500 -64.0 + 80.5000 153.7500 -64.0 + 84.5000 158.7500 -64.0 + 89.2500 165.5000 -64.0 + 89.2500 168.5000 -64.0 + 85.5000 172.2500 -64.0 + 82.5000 172.2500 -64.0 + 80.5000 173.2500 -64.0 + 79.7500 172.5000 -64.0 + 77.5000 172.2500 -64.0 + 72.5000 170.2500 -64.0 + 69.5000 167.2500 -64.0 + 67.5000 166.2500 -64.0 + 64.7500 162.5000 -64.0 + 64.7500 160.5000 -64.0 + 63.7500 158.5000 -64.0 + 63.7500 156.5000 -64.0 + 69.5000 149.7500 -64.0 +} -64.0 +{ -64.0 + 121.7500 152.5000 -64.0 + 122.5000 151.7500 -64.0 + 123.2500 152.5000 -64.0 + 122.5000 153.2500 -64.0 +} -64.0 +{ -64.0 + 128.7500 156.5000 -64.0 + 129.5000 155.7500 -64.0 + 135.5000 155.7500 -64.0 + 140.2500 159.5000 -64.0 + 140.2500 162.5000 -64.0 + 138.2500 166.5000 -64.0 + 135.5000 170.2500 -64.0 + 131.5000 173.2500 -64.0 + 127.5000 175.2500 -64.0 + 122.5000 175.2500 -64.0 + 118.7500 172.5000 -64.0 + 118.7500 169.5000 -64.0 + 119.5000 167.7500 -64.0 + 123.7500 161.5000 -64.0 + 124.7500 159.5000 -64.0 +} -64.0 +v 544 z -152.000000 -64.0 +{ -64.0 + 105.2500 26.5000 -64.0 + 104.5000 27.2500 -64.0 + 101.5000 27.2500 -64.0 + 100.2500 28.5000 -64.0 + 101.2500 30.5000 -64.0 + 101.2500 32.5000 -64.0 + 102.5000 32.7500 -64.0 + 104.5000 30.7500 -64.0 + 108.5000 30.7500 -64.0 + 112.5000 28.7500 -64.0 + 114.2500 29.5000 -64.0 + 117.5000 29.7500 -64.0 + 119.5000 27.7500 -64.0 + 122.5000 27.7500 -64.0 + 121.7500 26.5000 -64.0 + 118.5000 26.2500 -64.0 + 117.5000 28.2500 -64.0 + 114.5000 28.2500 -64.0 + 112.7500 27.5000 -64.0 + 113.7500 26.5000 -64.0 + 110.5000 26.2500 -64.0 + 112.2500 27.5000 -64.0 + 111.5000 28.2500 -64.0 + 107.5000 30.2500 -64.0 + 105.7500 28.5000 -64.0 + 106.7500 26.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 29.5000 -64.0 + 92.2500 32.5000 -64.0 + 90.5000 33.2500 -64.0 + 90.2500 36.5000 -64.0 + 92.5000 33.7500 -64.0 + 93.2500 34.5000 -64.0 + 94.5000 33.7500 -64.0 + 95.2500 34.5000 -64.0 + 94.5000 35.2500 -64.0 + 96.5000 36.7500 -64.0 + 96.7500 34.5000 -64.0 + 98.5000 32.7500 -64.0 + 98.5000 30.2500 -64.0 + 94.5000 32.2500 -64.0 +} -64.0 +{ -64.0 + 126.2500 29.5000 -64.0 + 126.2500 30.5000 -64.0 + 127.2500 32.5000 -64.0 + 128.7500 32.5000 -64.0 + 130.5000 29.2500 -64.0 + 128.5000 30.2500 -64.0 +} -64.0 +{ -64.0 + 131.2500 32.5000 -64.0 + 129.2500 33.5000 -64.0 + 132.5000 33.7500 -64.0 + 133.7500 32.5000 -64.0 +} -64.0 +{ -64.0 + 99.2500 33.5000 -64.0 + 99.2500 36.5000 -64.0 + 97.5000 37.7500 -64.0 + 102.5000 38.7500 -64.0 + 99.7500 36.5000 -64.0 + 100.7500 33.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 35.5000 -64.0 + 129.5000 36.7500 -64.0 + 132.5000 35.7500 -64.0 + 133.2500 37.5000 -64.0 + 135.7500 35.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 37.5000 -64.0 + 122.2500 39.5000 -64.0 + 122.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 38.5000 -64.0 + 91.2500 40.5000 -64.0 + 91.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 39.5000 -64.0 + 133.2500 40.5000 -64.0 + 135.5000 40.7500 -64.0 + 136.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 42.5000 -64.0 + 87.5000 47.2500 -64.0 + 88.2500 49.5000 -64.0 + 90.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 43.5000 -64.0 + 95.2500 44.5000 -64.0 + 96.5000 44.7500 -64.0 + 97.2500 46.5000 -64.0 + 96.5000 48.2500 -64.0 + 94.2500 49.5000 -64.0 + 96.5000 49.7500 -64.0 + 98.2500 50.5000 -64.0 + 92.5000 55.2500 -64.0 + 90.5000 56.2500 -64.0 + 90.5000 57.7500 -64.0 + 92.5000 56.7500 -64.0 + 95.5000 56.7500 -64.0 + 107.5000 50.7500 -64.0 + 109.5000 50.7500 -64.0 + 109.7500 49.5000 -64.0 + 108.5000 49.2500 -64.0 + 106.7500 47.5000 -64.0 + 102.5000 47.2500 -64.0 + 98.5000 45.2500 -64.0 +} -64.0 +{ -64.0 + 133.2500 43.5000 -64.0 + 134.2500 45.5000 -64.0 + 135.5000 44.7500 -64.0 + 134.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 45.5000 -64.0 + 137.5000 47.2500 -64.0 + 134.5000 47.2500 -64.0 + 136.2500 48.5000 -64.0 + 135.2500 50.5000 -64.0 + 137.2500 54.5000 -64.0 + 136.2500 55.5000 -64.0 + 142.5000 55.7500 -64.0 + 143.7500 54.5000 -64.0 + 139.5000 54.2500 -64.0 + 137.7500 53.5000 -64.0 + 136.7500 51.5000 -64.0 + 144.5000 47.7500 -64.0 + 144.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 46.5000 -64.0 + 114.2500 47.5000 -64.0 + 115.7500 46.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 46.5000 -64.0 + 121.5000 47.2500 -64.0 + 119.2500 47.5000 -64.0 + 122.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 48.5000 -64.0 + 121.2500 51.5000 -64.0 + 121.2500 53.5000 -64.0 + 119.5000 54.2500 -64.0 + 116.5000 53.2500 -64.0 + 114.5000 54.2500 -64.0 + 113.7500 53.5000 -64.0 + 114.7500 52.5000 -64.0 + 111.5000 52.2500 -64.0 + 112.2500 54.5000 -64.0 + 105.2500 58.5000 -64.0 + 107.5000 58.7500 -64.0 + 114.5000 56.7500 -64.0 + 115.5000 57.7500 -64.0 + 118.5000 56.7500 -64.0 + 122.5000 53.7500 -64.0 + 124.5000 54.7500 -64.0 + 123.7500 53.5000 -64.0 + 125.7500 50.5000 -64.0 + 122.5000 50.2500 -64.0 + 118.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 50.5000 -64.0 + 70.5000 51.2500 -64.0 + 74.5000 56.7500 -64.0 + 76.5000 57.7500 -64.0 + 75.7500 56.5000 -64.0 + 76.5000 54.7500 -64.0 + 80.2500 56.5000 -64.0 + 85.5000 56.7500 -64.0 + 87.5000 54.7500 -64.0 + 86.5000 53.2500 -64.0 + 82.5000 56.2500 -64.0 + 80.7500 55.5000 -64.0 + 79.7500 53.5000 -64.0 + 74.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 57.5000 -64.0 + 120.2500 58.5000 -64.0 + 125.5000 58.7500 -64.0 + 124.7500 57.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 58.5000 -64.0 + 76.5000 59.2500 -64.0 + 73.5000 59.2500 -64.0 + 75.2500 60.5000 -64.0 + 78.5000 60.7500 -64.0 + 78.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 58.5000 -64.0 + 146.5000 60.2500 -64.0 + 143.5000 60.2500 -64.0 + 145.2500 61.5000 -64.0 + 144.5000 62.2500 -64.0 + 140.2500 62.5000 -64.0 + 141.2500 64.5000 -64.0 + 140.2500 65.5000 -64.0 + 141.2500 67.5000 -64.0 + 143.5000 67.7500 -64.0 + 145.2500 69.5000 -64.0 + 144.5000 70.2500 -64.0 + 138.2500 70.5000 -64.0 + 142.5000 70.7500 -64.0 + 144.2500 71.5000 -64.0 + 143.5000 72.2500 -64.0 + 140.5000 72.7500 -64.0 + 146.2500 75.5000 -64.0 + 149.5000 75.7500 -64.0 + 155.2500 78.5000 -64.0 + 154.5000 80.2500 -64.0 + 147.5000 77.2500 -64.0 + 147.2500 78.5000 -64.0 + 151.5000 81.7500 -64.0 + 155.5000 83.7500 -64.0 + 157.5000 81.7500 -64.0 + 159.2500 82.5000 -64.0 + 163.5000 82.7500 -64.0 + 160.5000 81.2500 -64.0 + 156.7500 77.5000 -64.0 + 157.7500 76.5000 -64.0 + 152.7500 73.5000 -64.0 + 150.5000 73.2500 -64.0 + 148.7500 71.5000 -64.0 + 150.5000 69.7500 -64.0 + 152.7500 69.5000 -64.0 + 144.7500 66.5000 -64.0 + 145.5000 65.7500 -64.0 + 144.7500 64.5000 -64.0 + 145.5000 63.7500 -64.0 + 149.5000 63.7500 -64.0 + 150.5000 61.7500 -64.0 + 153.5000 61.7500 -64.0 + 153.7500 60.5000 -64.0 + 150.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 59.5000 -64.0 + 93.2500 60.5000 -64.0 + 91.2500 62.5000 -64.0 + 93.5000 62.7500 -64.0 + 95.2500 63.5000 -64.0 + 97.5000 62.7500 -64.0 + 101.2500 64.5000 -64.0 + 108.5000 64.7500 -64.0 + 112.5000 66.7500 -64.0 + 114.5000 65.7500 -64.0 + 116.5000 65.7500 -64.0 + 118.5000 64.7500 -64.0 + 125.5000 64.7500 -64.0 + 126.7500 62.5000 -64.0 + 118.5000 62.2500 -64.0 + 120.2500 63.5000 -64.0 + 119.5000 64.2500 -64.0 + 116.5000 63.2500 -64.0 + 114.7500 62.5000 -64.0 + 95.5000 62.2500 -64.0 + 93.7500 61.5000 -64.0 + 95.5000 60.7500 -64.0 +} -64.0 +{ -64.0 + 76.2500 63.5000 -64.0 + 70.2500 67.5000 -64.0 + 76.5000 67.7500 -64.0 + 78.5000 68.7500 -64.0 + 78.7500 65.5000 -64.0 + 77.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 63.5000 -64.0 + 128.5000 64.2500 -64.0 + 129.5000 65.7500 -64.0 + 131.5000 66.7500 -64.0 + 130.7500 65.5000 -64.0 + 130.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 67.5000 -64.0 + 128.5000 68.2500 -64.0 + 122.5000 68.2500 -64.0 + 123.2500 69.5000 -64.0 + 125.5000 68.7500 -64.0 + 130.5000 69.7500 -64.0 +} -64.0 +{ -64.0 + 76.2500 69.5000 -64.0 + 74.5000 71.7500 -64.0 + 76.5000 72.7500 -64.0 + 79.5000 71.7500 -64.0 + 78.5000 71.2500 -64.0 + 77.7500 69.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 70.5000 -64.0 + 96.2500 74.5000 -64.0 + 94.5000 75.2500 -64.0 + 91.5000 74.2500 -64.0 + 90.5000 72.2500 -64.0 + 87.5000 76.2500 -64.0 + 86.7500 75.5000 -64.0 + 86.2500 76.5000 -64.0 + 90.5000 81.7500 -64.0 + 91.5000 76.7500 -64.0 + 97.2500 82.5000 -64.0 + 98.2500 84.5000 -64.0 + 101.2500 85.5000 -64.0 + 102.5000 84.7500 -64.0 + 105.5000 84.7500 -64.0 + 106.2500 86.5000 -64.0 + 107.5000 86.7500 -64.0 + 110.5000 85.7500 -64.0 + 110.7500 84.5000 -64.0 + 105.7500 83.5000 -64.0 + 105.7500 80.5000 -64.0 + 101.7500 74.5000 -64.0 + 98.5000 73.2500 -64.0 + 94.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 71.5000 -64.0 + 131.5000 72.2500 -64.0 + 127.5000 72.2500 -64.0 + 129.2500 73.5000 -64.0 + 131.5000 73.7500 -64.0 + 134.5000 74.7500 -64.0 +} -64.0 +{ -64.0 + 121.2500 72.5000 -64.0 + 117.5000 75.2500 -64.0 + 118.5000 75.7500 -64.0 + 119.2500 77.5000 -64.0 + 120.5000 76.7500 -64.0 + 121.2500 77.5000 -64.0 + 123.5000 75.7500 -64.0 + 122.5000 75.2500 -64.0 +} -64.0 +{ -64.0 + 104.2500 73.5000 -64.0 + 107.2500 75.5000 -64.0 + 108.7500 75.5000 -64.0 + 109.7500 73.5000 -64.0 + 108.5000 73.2500 -64.0 + 106.5000 74.2500 -64.0 + 105.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 76.5000 -64.0 + 124.2500 78.5000 -64.0 + 125.7500 76.5000 -64.0 +} -64.0 +{ -64.0 + 69.2500 77.5000 -64.0 + 66.5000 79.2500 -64.0 + 64.5000 79.2500 -64.0 + 60.5000 82.2500 -64.0 + 61.5000 82.7500 -64.0 + 63.5000 81.7500 -64.0 + 64.2500 82.5000 -64.0 + 62.2500 86.5000 -64.0 + 54.2500 106.5000 -64.0 + 55.2500 108.5000 -64.0 + 58.7500 108.5000 -64.0 + 61.5000 102.7500 -64.0 + 61.7500 100.5000 -64.0 + 60.5000 100.2500 -64.0 + 60.2500 101.5000 -64.0 + 58.5000 103.2500 -64.0 + 56.7500 102.5000 -64.0 + 61.5000 92.7500 -64.0 + 61.7500 90.5000 -64.0 + 64.7500 86.5000 -64.0 + 66.5000 85.7500 -64.0 + 68.2500 86.5000 -64.0 + 68.2500 88.5000 -64.0 + 70.2500 89.5000 -64.0 + 64.5000 94.2500 -64.0 + 62.5000 94.2500 -64.0 + 62.2500 95.5000 -64.0 + 66.5000 96.7500 -64.0 + 66.7500 95.5000 -64.0 + 69.7500 92.5000 -64.0 + 70.7500 90.5000 -64.0 + 71.5000 87.2500 -64.0 + 69.5000 86.2500 -64.0 + 65.7500 80.5000 -64.0 + 71.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 151.2500 85.5000 -64.0 + 148.5000 88.2500 -64.0 + 151.2500 90.5000 -64.0 + 152.2500 95.5000 -64.0 + 150.5000 96.2500 -64.0 + 154.2500 99.5000 -64.0 + 154.2500 104.5000 -64.0 + 153.5000 106.2500 -64.0 + 151.5000 103.2500 -64.0 + 151.2500 105.5000 -64.0 + 154.2500 111.5000 -64.0 + 156.5000 111.7500 -64.0 + 156.7500 104.5000 -64.0 + 155.7500 102.5000 -64.0 + 155.7500 100.5000 -64.0 + 153.7500 96.5000 -64.0 + 153.7500 94.5000 -64.0 + 152.7500 92.5000 -64.0 + 152.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 146.2500 89.5000 -64.0 + 143.5000 91.2500 -64.0 + 144.2500 92.5000 -64.0 + 147.7500 89.5000 -64.0 +} -64.0 +{ -64.0 + 146.2500 96.5000 -64.0 + 146.5000 96.7500 -64.0 + 148.5000 97.7500 -64.0 + 148.7500 96.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 107.5000 -64.0 + 105.5000 108.2500 -64.0 + 94.5000 114.2500 -64.0 + 92.2500 114.5000 -64.0 + 97.5000 114.7500 -64.0 + 99.2500 115.5000 -64.0 + 96.5000 118.2500 -64.0 + 88.5000 122.2500 -64.0 + 86.5000 122.2500 -64.0 + 83.5000 123.2500 -64.0 + 81.7500 120.5000 -64.0 + 82.7500 118.5000 -64.0 + 80.5000 118.2500 -64.0 + 78.5000 120.7500 -64.0 + 82.2500 123.5000 -64.0 + 82.2500 126.5000 -64.0 + 80.2500 132.5000 -64.0 + 81.2500 135.5000 -64.0 + 84.2500 137.5000 -64.0 + 90.5000 134.7500 -64.0 + 90.7500 132.5000 -64.0 + 89.5000 131.2500 -64.0 + 87.5000 130.2500 -64.0 + 85.7500 129.5000 -64.0 + 87.7500 125.5000 -64.0 + 94.5000 121.7500 -64.0 + 96.5000 121.7500 -64.0 + 102.5000 114.7500 -64.0 + 103.2500 116.5000 -64.0 + 102.2500 118.5000 -64.0 + 103.2500 121.5000 -64.0 + 106.2500 124.5000 -64.0 + 110.7500 124.5000 -64.0 + 113.7500 118.5000 -64.0 + 114.5000 116.7500 -64.0 + 117.2500 119.5000 -64.0 + 117.5000 122.7500 -64.0 + 119.5000 123.7500 -64.0 + 123.2500 126.5000 -64.0 + 123.2500 128.5000 -64.0 + 124.2500 130.5000 -64.0 + 122.5000 131.2500 -64.0 + 121.5000 133.2500 -64.0 + 121.2500 135.5000 -64.0 + 126.5000 138.7500 -64.0 + 128.5000 137.7500 -64.0 + 130.7500 137.5000 -64.0 + 132.7500 133.5000 -64.0 + 131.7500 131.5000 -64.0 + 131.7500 127.5000 -64.0 + 133.5000 123.7500 -64.0 + 136.5000 123.7500 -64.0 + 136.7500 122.5000 -64.0 + 133.7500 120.5000 -64.0 + 131.2500 125.5000 -64.0 + 129.5000 126.2500 -64.0 + 125.7500 123.5000 -64.0 + 124.7500 121.5000 -64.0 + 123.5000 121.2500 -64.0 + 115.7500 115.5000 -64.0 + 116.5000 113.7500 -64.0 + 118.5000 114.7500 -64.0 + 123.5000 115.7500 -64.0 + 127.2500 118.5000 -64.0 + 129.5000 118.7500 -64.0 + 127.5000 117.2500 -64.0 + 113.5000 110.2500 -64.0 + 109.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 69.2500 113.5000 -64.0 + 68.5000 114.7500 -64.0 + 70.5000 115.7500 -64.0 + 70.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 115.5000 -64.0 + 85.5000 116.2500 -64.0 + 85.2500 117.5000 -64.0 + 90.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 51.2500 129.5000 -64.0 + 49.2500 130.5000 -64.0 + 47.5000 134.2500 -64.0 + 47.2500 142.5000 -64.0 + 48.2500 144.5000 -64.0 + 50.5000 142.7500 -64.0 + 53.5000 137.7500 -64.0 + 53.7500 131.5000 -64.0 + 52.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 141.5000 -64.0 + 87.5000 142.2500 -64.0 + 86.5000 145.2500 -64.0 + 86.2500 149.5000 -64.0 + 84.5000 151.2500 -64.0 + 81.7500 148.5000 -64.0 + 77.5000 148.2500 -64.0 + 76.5000 150.2500 -64.0 + 74.5000 150.2500 -64.0 + 72.5000 151.2500 -64.0 + 71.7500 150.5000 -64.0 + 68.5000 150.2500 -64.0 + 66.7500 146.5000 -64.0 + 62.5000 143.2500 -64.0 + 60.5000 144.2500 -64.0 + 60.2500 151.5000 -64.0 + 61.2500 153.5000 -64.0 + 61.2500 156.5000 -64.0 + 63.2500 160.5000 -64.0 + 64.2500 168.5000 -64.0 + 66.2500 172.5000 -64.0 + 71.2500 175.5000 -64.0 + 73.5000 174.7500 -64.0 + 80.5000 176.7500 -64.0 + 83.5000 175.7500 -64.0 + 85.5000 172.7500 -64.0 + 89.5000 170.7500 -64.0 + 89.7500 168.5000 -64.0 + 91.5000 167.7500 -64.0 + 93.2500 168.5000 -64.0 + 96.5000 167.7500 -64.0 + 101.5000 168.7500 -64.0 + 104.2500 171.5000 -64.0 + 107.5000 166.7500 -64.0 + 109.5000 165.7500 -64.0 + 112.5000 166.7500 -64.0 + 115.5000 169.7500 -64.0 + 117.5000 170.7500 -64.0 + 118.2500 172.5000 -64.0 + 121.5000 172.7500 -64.0 + 123.5000 171.7500 -64.0 + 126.2500 175.5000 -64.0 + 131.5000 175.7500 -64.0 + 137.5000 172.7500 -64.0 + 140.7500 168.5000 -64.0 + 139.7500 166.5000 -64.0 + 139.7500 163.5000 -64.0 + 136.7500 159.5000 -64.0 + 130.5000 154.2500 -64.0 + 127.5000 155.2500 -64.0 + 125.7500 154.5000 -64.0 + 126.7500 151.5000 -64.0 + 124.7500 150.5000 -64.0 + 121.5000 150.2500 -64.0 + 119.5000 152.2500 -64.0 + 108.5000 159.2500 -64.0 + 105.7500 157.5000 -64.0 + 100.5000 156.2500 -64.0 + 97.5000 153.2500 -64.0 + 95.5000 152.2500 -64.0 + 90.7500 144.5000 -64.0 + 90.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 122.7500 51.5000 -64.0 + 123.5000 50.7500 -64.0 + 124.2500 51.5000 -64.0 + 123.5000 52.2500 -64.0 +} -64.0 +{ -64.0 + 121.7500 63.5000 -64.0 + 122.5000 62.7500 -64.0 + 124.2500 63.5000 -64.0 + 123.5000 64.2500 -64.0 +} -64.0 +{ -64.0 + 107.7500 118.5000 -64.0 + 108.5000 117.7500 -64.0 + 110.5000 117.7500 -64.0 + 111.2500 119.5000 -64.0 + 109.5000 121.2500 -64.0 + 107.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 88.7500 153.5000 -64.0 + 90.5000 152.7500 -64.0 + 93.2500 156.5000 -64.0 + 92.5000 158.2500 -64.0 + 90.5000 158.2500 -64.0 + 88.7500 156.5000 -64.0 +} -64.0 +{ -64.0 + 120.7500 156.5000 -64.0 + 121.5000 155.7500 -64.0 + 122.2500 156.5000 -64.0 + 121.5000 157.2500 -64.0 +} -64.0 +{ -64.0 + 71.7500 160.5000 -64.0 + 73.5000 159.7500 -64.0 + 75.2500 161.5000 -64.0 + 74.5000 163.2500 -64.0 + 73.7500 162.5000 -64.0 + 72.5000 163.2500 -64.0 + 71.7500 162.5000 -64.0 +} -64.0 +v 350 z -154.000000 -64.0 +{ -64.0 + 105.2500 26.5000 -64.0 + 103.5000 27.2500 -64.0 + 105.2500 28.5000 -64.0 + 107.5000 28.7500 -64.0 + 105.7500 27.5000 -64.0 + 106.5000 26.7500 -64.0 + 108.2500 27.5000 -64.0 + 114.5000 27.7500 -64.0 + 116.5000 26.7500 -64.0 +} -64.0 +{ -64.0 + 122.2500 27.5000 -64.0 + 123.2500 28.5000 -64.0 + 123.7500 27.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 28.5000 -64.0 + 100.2500 29.5000 -64.0 + 102.5000 29.7500 -64.0 +} -64.0 +{ -64.0 + 97.2500 30.5000 -64.0 + 98.2500 31.5000 -64.0 + 98.5000 33.7500 -64.0 + 98.7500 30.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 30.5000 -64.0 + 126.2500 33.5000 -64.0 + 128.5000 33.7500 -64.0 + 128.7500 32.5000 -64.0 + 127.7500 30.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 34.5000 -64.0 + 96.2500 35.5000 -64.0 + 97.5000 35.7500 -64.0 + 97.7500 34.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 36.5000 -64.0 + 91.2500 38.5000 -64.0 + 92.5000 37.7500 -64.0 + 94.2500 38.5000 -64.0 + 94.2500 40.5000 -64.0 + 92.2500 41.5000 -64.0 + 94.5000 41.7500 -64.0 + 94.7500 38.5000 -64.0 + 93.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 36.5000 -64.0 + 129.5000 37.2500 -64.0 + 130.2500 38.5000 -64.0 + 130.2500 41.5000 -64.0 + 131.2500 43.5000 -64.0 + 130.2500 44.5000 -64.0 + 131.2500 46.5000 -64.0 + 130.5000 48.2500 -64.0 + 126.7500 46.5000 -64.0 + 125.5000 47.2500 -64.0 + 127.2500 49.5000 -64.0 + 129.5000 48.7500 -64.0 + 132.5000 49.7500 -64.0 + 135.2500 53.5000 -64.0 + 135.2500 55.5000 -64.0 + 134.2500 58.5000 -64.0 + 135.7500 57.5000 -64.0 + 136.7500 55.5000 -64.0 + 135.7500 52.5000 -64.0 + 131.7500 47.5000 -64.0 + 133.7500 43.5000 -64.0 + 134.5000 41.7500 -64.0 + 134.5000 40.2500 -64.0 + 132.5000 41.2500 -64.0 + 130.7500 40.5000 -64.0 + 130.7500 38.5000 -64.0 + 132.5000 37.7500 -64.0 + 132.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 39.5000 -64.0 + 96.2500 40.5000 -64.0 + 97.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 45.5000 -64.0 + 94.5000 46.2500 -64.0 + 94.5000 47.7500 -64.0 + 96.5000 48.7500 -64.0 + 96.7500 47.5000 -64.0 + 98.5000 45.7500 -64.0 + 100.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 52.5000 -64.0 + 126.2500 53.5000 -64.0 + 126.7500 54.5000 -64.0 + 127.7500 52.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 53.5000 -64.0 + 114.2500 54.5000 -64.0 + 118.5000 54.7500 -64.0 + 121.7500 53.5000 -64.0 + 119.5000 53.2500 -64.0 + 117.5000 54.2500 -64.0 +} -64.0 +{ -64.0 + 85.2500 54.5000 -64.0 + 82.5000 56.2500 -64.0 + 80.7500 55.5000 -64.0 + 76.5000 55.2500 -64.0 + 76.2500 56.5000 -64.0 + 81.2500 60.5000 -64.0 + 83.5000 56.7500 -64.0 + 86.5000 56.7500 -64.0 + 86.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 56.5000 -64.0 + 89.2500 57.5000 -64.0 + 90.5000 56.7500 -64.0 + 91.2500 57.5000 -64.0 + 91.7500 56.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 59.5000 -64.0 + 126.5000 61.2500 -64.0 + 124.5000 61.2500 -64.0 + 124.2500 62.5000 -64.0 + 130.7500 61.5000 -64.0 + 128.5000 61.2500 -64.0 +} -64.0 +{ -64.0 + 91.2500 62.5000 -64.0 + 90.2500 63.5000 -64.0 + 95.5000 63.7500 -64.0 +} -64.0 +{ -64.0 + 83.2500 64.5000 -64.0 + 81.5000 65.7500 -64.0 + 83.5000 66.7500 -64.0 + 84.5000 64.7500 -64.0 + 87.5000 65.7500 -64.0 + 86.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 88.2500 66.5000 -64.0 + 89.2500 68.5000 -64.0 + 88.5000 70.2500 -64.0 + 86.7500 69.5000 -64.0 + 85.5000 71.2500 -64.0 + 83.5000 71.2500 -64.0 + 84.2500 72.5000 -64.0 + 87.5000 72.7500 -64.0 + 90.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 82.5000 -64.0 + 59.5000 92.2500 -64.0 + 55.5000 102.2500 -64.0 + 55.5000 107.7500 -64.0 + 57.5000 108.7500 -64.0 + 62.5000 100.7500 -64.0 + 61.7500 99.5000 -64.0 + 58.5000 105.2500 -64.0 + 57.7500 104.5000 -64.0 + 57.7500 101.5000 -64.0 + 61.5000 93.7500 -64.0 + 61.7500 91.5000 -64.0 + 65.7500 85.5000 -64.0 + 67.5000 84.7500 -64.0 + 70.2500 87.5000 -64.0 + 70.2500 89.5000 -64.0 + 66.5000 93.2500 -64.0 + 63.5000 93.2500 -64.0 + 63.2500 94.5000 -64.0 + 64.5000 94.7500 -64.0 + 65.2500 96.5000 -64.0 + 70.5000 92.7500 -64.0 + 73.5000 87.7500 -64.0 + 71.7500 85.5000 -64.0 + 69.5000 85.2500 -64.0 + 67.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 85.5000 -64.0 + 147.2500 87.5000 -64.0 + 142.5000 89.2500 -64.0 + 142.2500 91.5000 -64.0 + 143.2500 94.5000 -64.0 + 149.2500 100.5000 -64.0 + 152.2500 106.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.5000 111.7500 -64.0 + 156.5000 110.7500 -64.0 + 156.7500 103.5000 -64.0 + 155.7500 101.5000 -64.0 + 155.7500 99.5000 -64.0 + 153.7500 95.5000 -64.0 + 153.7500 92.5000 -64.0 + 151.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 107.5000 -64.0 + 106.5000 108.2500 -64.0 + 100.5000 111.2500 -64.0 + 98.5000 111.2500 -64.0 + 92.5000 114.2500 -64.0 + 90.5000 114.2500 -64.0 + 86.5000 116.2500 -64.0 + 84.5000 116.2500 -64.0 + 84.2500 117.5000 -64.0 + 85.5000 116.7500 -64.0 + 87.5000 116.7500 -64.0 + 91.5000 114.7500 -64.0 + 96.5000 114.7500 -64.0 + 98.2500 115.5000 -64.0 + 97.2500 118.5000 -64.0 + 94.5000 121.2500 -64.0 + 92.5000 121.2500 -64.0 + 90.5000 122.2500 -64.0 + 90.5000 123.7500 -64.0 + 92.5000 122.7500 -64.0 + 96.5000 122.7500 -64.0 + 98.5000 121.7500 -64.0 + 98.7500 118.5000 -64.0 + 99.7500 115.5000 -64.0 + 102.5000 113.7500 -64.0 + 103.2500 114.5000 -64.0 + 103.2500 116.5000 -64.0 + 102.2500 119.5000 -64.0 + 103.2500 121.5000 -64.0 + 104.5000 123.7500 -64.0 + 108.5000 125.7500 -64.0 + 112.5000 122.7500 -64.0 + 112.7500 120.5000 -64.0 + 113.5000 118.7500 -64.0 + 112.7500 117.5000 -64.0 + 112.7500 115.5000 -64.0 + 114.5000 114.7500 -64.0 + 116.2500 116.5000 -64.0 + 116.2500 120.5000 -64.0 + 117.2500 123.5000 -64.0 + 119.2500 124.5000 -64.0 + 120.5000 123.7500 -64.0 + 122.5000 122.7500 -64.0 + 123.2500 124.5000 -64.0 + 121.5000 126.2500 -64.0 + 121.2500 133.5000 -64.0 + 123.2500 137.5000 -64.0 + 129.5000 137.7500 -64.0 + 132.5000 134.7500 -64.0 + 132.7500 131.5000 -64.0 + 130.7500 127.5000 -64.0 + 132.7500 123.5000 -64.0 + 131.5000 123.2500 -64.0 + 131.2500 124.5000 -64.0 + 129.5000 126.2500 -64.0 + 128.5000 125.2500 -64.0 + 128.2500 127.5000 -64.0 + 129.2500 129.5000 -64.0 + 129.2500 133.5000 -64.0 + 127.5000 134.2500 -64.0 + 125.7500 133.5000 -64.0 + 125.7500 131.5000 -64.0 + 127.5000 129.2500 -64.0 + 125.5000 128.2500 -64.0 + 124.7500 126.5000 -64.0 + 125.7500 123.5000 -64.0 + 123.7500 121.5000 -64.0 + 121.5000 121.2500 -64.0 + 117.7500 118.5000 -64.0 + 117.7500 115.5000 -64.0 + 119.5000 114.7500 -64.0 + 124.5000 115.7500 -64.0 + 121.7500 113.5000 -64.0 + 119.5000 113.2500 -64.0 + 116.5000 112.2500 -64.0 + 111.5000 110.2500 -64.0 + 108.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 70.2500 112.5000 -64.0 + 70.2500 114.5000 -64.0 + 71.5000 114.7500 -64.0 + 71.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 125.2500 116.5000 -64.0 + 125.5000 116.7500 -64.0 + 127.5000 117.7500 -64.0 + 130.2500 120.5000 -64.0 + 133.5000 120.7500 -64.0 + 134.5000 120.2500 -64.0 + 132.5000 119.2500 -64.0 + 126.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 119.5000 -64.0 + 75.2500 122.5000 -64.0 + 76.5000 121.7500 -64.0 + 81.5000 121.7500 -64.0 + 80.5000 121.2500 -64.0 + 79.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 122.5000 -64.0 + 136.2500 123.5000 -64.0 + 138.2500 124.5000 -64.0 + 139.7500 124.5000 -64.0 + 138.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 123.5000 -64.0 + 80.5000 130.2500 -64.0 + 80.2500 132.5000 -64.0 + 82.2500 136.5000 -64.0 + 87.5000 136.7500 -64.0 + 90.5000 131.7500 -64.0 + 88.7500 129.5000 -64.0 + 88.7500 125.5000 -64.0 + 86.5000 125.2500 -64.0 +} -64.0 +{ -64.0 + 139.2500 131.5000 -64.0 + 138.5000 132.2500 -64.0 + 139.5000 132.7500 -64.0 + 140.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 50.2500 134.5000 -64.0 + 49.5000 136.2500 -64.0 + 49.2500 140.5000 -64.0 + 50.5000 140.7500 -64.0 + 52.5000 138.7500 -64.0 + 52.7500 136.5000 -64.0 + 51.7500 134.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 148.5000 -64.0 + 89.5000 150.2500 -64.0 + 87.5000 150.2500 -64.0 + 87.2500 152.5000 -64.0 + 84.5000 154.2500 -64.0 + 86.2500 158.5000 -64.0 + 87.5000 157.7500 -64.0 + 88.2500 158.5000 -64.0 + 88.2500 160.5000 -64.0 + 93.2500 161.5000 -64.0 + 95.5000 160.7500 -64.0 + 98.7500 156.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 153.5000 -64.0 + 115.2500 156.5000 -64.0 + 114.2500 158.5000 -64.0 + 117.5000 159.7500 -64.0 + 119.5000 158.7500 -64.0 + 121.5000 158.7500 -64.0 + 123.7500 155.5000 -64.0 + 122.7500 153.5000 -64.0 +} -64.0 +{ -64.0 + 65.2500 157.5000 -64.0 + 65.2500 158.5000 -64.0 + 66.2500 160.5000 -64.0 + 66.2500 163.5000 -64.0 + 67.7500 161.5000 -64.0 + 66.7500 158.5000 -64.0 +} -64.0 +{ -64.0 + 71.2500 160.5000 -64.0 + 71.2500 166.5000 -64.0 + 74.5000 166.7500 -64.0 + 76.7500 163.5000 -64.0 + 73.7500 160.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 161.5000 -64.0 + 103.2500 162.5000 -64.0 + 104.2500 165.5000 -64.0 + 105.5000 164.7500 -64.0 + 105.7500 161.5000 -64.0 +} -64.0 +{ -64.0 + 148.5000 87.7500 -64.0 + 149.2500 88.5000 -64.0 + 151.2500 92.5000 -64.0 + 151.2500 94.5000 -64.0 + 154.2500 100.5000 -64.0 + 154.2500 104.5000 -64.0 + 153.5000 106.2500 -64.0 + 150.7500 101.5000 -64.0 + 150.7500 99.5000 -64.0 + 148.7500 98.5000 -64.0 + 148.7500 96.5000 -64.0 + 145.7500 93.5000 -64.0 + 144.7500 91.5000 -64.0 +} -64.0 +{ -64.0 + 108.7500 116.5000 -64.0 + 109.5000 115.7500 -64.0 + 111.2500 117.5000 -64.0 + 110.5000 119.2500 -64.0 + 109.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 104.7500 117.5000 -64.0 + 105.5000 116.7500 -64.0 + 107.2500 117.5000 -64.0 + 106.5000 119.2500 -64.0 + 108.2500 121.5000 -64.0 + 107.5000 122.2500 -64.0 + 104.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 82.7500 131.5000 -64.0 + 84.5000 130.7500 -64.0 + 85.2500 132.5000 -64.0 + 83.5000 133.2500 -64.0 +} -64.0 +v 204 z -156.000000 -64.0 +{ -64.0 + 89.2500 58.5000 -64.0 + 88.5000 59.2500 -64.0 + 88.5000 60.7500 -64.0 + 90.5000 61.7500 -64.0 + 90.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 65.5000 -64.0 + 134.2500 67.5000 -64.0 + 135.5000 67.7500 -64.0 +} -64.0 +{ -64.0 + 80.2500 72.5000 -64.0 + 77.5000 74.2500 -64.0 + 77.2500 76.5000 -64.0 + 80.5000 76.7500 -64.0 + 82.5000 75.7500 -64.0 + 82.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 136.2500 73.5000 -64.0 + 135.5000 74.2500 -64.0 + 136.5000 74.7500 -64.0 + 139.7500 75.5000 -64.0 + 138.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 75.5000 -64.0 + 131.5000 76.2500 -64.0 + 131.2500 78.5000 -64.0 + 133.7500 80.5000 -64.0 + 132.7500 77.5000 -64.0 + 134.7500 75.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 76.5000 -64.0 + 140.2500 77.5000 -64.0 + 139.2500 80.5000 -64.0 + 140.5000 79.7500 -64.0 + 140.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 66.2500 81.5000 -64.0 + 58.5000 94.2500 -64.0 + 55.2500 106.5000 -64.0 + 57.2500 108.5000 -64.0 + 58.5000 107.7500 -64.0 + 63.5000 98.7500 -64.0 + 62.5000 97.2500 -64.0 + 62.2500 99.5000 -64.0 + 59.5000 103.2500 -64.0 + 58.7500 102.5000 -64.0 + 58.7500 99.5000 -64.0 + 60.5000 95.7500 -64.0 + 60.7500 93.5000 -64.0 + 66.5000 84.7500 -64.0 + 68.5000 84.7500 -64.0 + 72.2500 87.5000 -64.0 + 66.5000 93.2500 -64.0 + 64.2500 92.5000 -64.0 + 65.2500 95.5000 -64.0 + 66.5000 95.7500 -64.0 + 73.7500 89.5000 -64.0 + 74.7500 87.5000 -64.0 + 73.7500 85.5000 -64.0 + 71.5000 85.2500 -64.0 + 67.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 85.5000 -64.0 + 145.5000 87.2500 -64.0 + 143.5000 87.2500 -64.0 + 141.5000 88.2500 -64.0 + 141.2500 91.5000 -64.0 + 145.2500 95.5000 -64.0 + 152.2500 106.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.5000 111.7500 -64.0 + 156.5000 110.7500 -64.0 + 156.7500 103.5000 -64.0 + 154.7500 99.5000 -64.0 + 154.7500 97.5000 -64.0 + 153.7500 95.5000 -64.0 + 153.7500 91.5000 -64.0 + 150.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 72.2500 110.5000 -64.0 + 71.2500 112.5000 -64.0 + 72.5000 112.7500 -64.0 +} -64.0 +{ -64.0 + 105.2500 110.5000 -64.0 + 103.5000 114.2500 -64.0 + 103.2500 122.5000 -64.0 + 105.2500 124.5000 -64.0 + 110.5000 124.7500 -64.0 + 113.5000 119.7500 -64.0 + 112.7500 116.5000 -64.0 + 109.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 112.5000 -64.0 + 94.5000 113.2500 -64.0 + 91.5000 113.2500 -64.0 + 83.5000 117.2500 -64.0 + 81.5000 117.2500 -64.0 + 77.5000 119.2500 -64.0 + 75.5000 119.2500 -64.0 + 76.2500 120.5000 -64.0 + 76.5000 122.7500 -64.0 + 79.5000 118.7500 -64.0 + 83.5000 118.7500 -64.0 + 91.5000 114.7500 -64.0 + 96.5000 114.7500 -64.0 + 98.2500 115.5000 -64.0 + 95.2500 120.5000 -64.0 + 90.2500 122.5000 -64.0 + 89.2500 127.5000 -64.0 + 87.5000 128.2500 -64.0 + 88.2500 130.5000 -64.0 + 87.5000 132.2500 -64.0 + 85.5000 133.2500 -64.0 + 83.7500 132.5000 -64.0 + 83.7500 130.5000 -64.0 + 84.7500 127.5000 -64.0 + 86.5000 126.7500 -64.0 + 86.7500 125.5000 -64.0 + 84.5000 122.2500 -64.0 + 84.2500 124.5000 -64.0 + 83.2500 127.5000 -64.0 + 80.5000 130.2500 -64.0 + 80.2500 133.5000 -64.0 + 83.2500 136.5000 -64.0 + 88.5000 136.7500 -64.0 + 93.5000 128.7500 -64.0 + 93.7500 126.5000 -64.0 + 94.5000 124.7500 -64.0 + 98.5000 121.7500 -64.0 + 98.7500 116.5000 -64.0 + 101.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 113.5000 -64.0 + 117.2500 117.5000 -64.0 + 116.5000 118.2500 -64.0 + 116.2500 120.5000 -64.0 + 121.2500 130.5000 -64.0 + 121.2500 137.5000 -64.0 + 122.2500 139.5000 -64.0 + 125.5000 139.7500 -64.0 + 130.5000 137.7500 -64.0 + 134.5000 134.7500 -64.0 + 136.5000 134.7500 -64.0 + 140.5000 130.2500 -64.0 + 138.5000 131.2500 -64.0 + 133.5000 131.2500 -64.0 + 130.7500 127.5000 -64.0 + 131.7500 126.5000 -64.0 + 132.7500 121.5000 -64.0 + 127.7500 116.5000 -64.0 + 122.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 82.2500 120.5000 -64.0 + 83.2500 121.5000 -64.0 + 83.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 121.5000 -64.0 + 137.2500 123.5000 -64.0 + 138.5000 122.7500 -64.0 + 141.5000 122.7500 -64.0 + 139.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 74.2500 128.5000 -64.0 + 75.2500 130.5000 -64.0 + 77.5000 130.7500 -64.0 + 75.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 146.5000 -64.0 + 107.5000 149.2500 -64.0 + 103.5000 149.2500 -64.0 + 99.7500 147.5000 -64.0 + 97.5000 147.2500 -64.0 + 97.2500 148.5000 -64.0 + 98.5000 149.7500 -64.0 + 106.5000 153.7500 -64.0 + 112.5000 150.7500 -64.0 + 114.7500 150.5000 -64.0 + 115.7500 148.5000 -64.0 + 114.7500 146.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 154.5000 -64.0 + 92.2500 156.5000 -64.0 + 93.5000 156.7500 -64.0 + 93.7500 155.5000 -64.0 +} -64.0 +{ -64.0 + 146.7500 88.5000 -64.0 + 148.5000 87.7500 -64.0 + 150.2500 89.5000 -64.0 + 150.2500 91.5000 -64.0 + 153.2500 97.5000 -64.0 + 154.2500 102.5000 -64.0 + 153.5000 104.2500 -64.0 + 143.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 108.7500 115.5000 -64.0 + 109.5000 114.7500 -64.0 + 110.2500 115.5000 -64.0 + 111.2500 117.5000 -64.0 + 110.5000 119.2500 -64.0 + 108.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 118.7500 115.5000 -64.0 + 119.5000 114.7500 -64.0 + 121.5000 114.7500 -64.0 + 127.5000 117.7500 -64.0 + 130.2500 121.5000 -64.0 + 130.2500 125.5000 -64.0 + 129.5000 127.2500 -64.0 + 130.2500 128.5000 -64.0 + 128.5000 132.2500 -64.0 + 126.5000 133.2500 -64.0 + 123.7500 130.5000 -64.0 + 121.7500 126.5000 -64.0 + 121.7500 123.5000 -64.0 + 120.5000 123.2500 -64.0 + 119.7500 121.5000 -64.0 + 117.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 104.7500 116.5000 -64.0 + 105.5000 115.7500 -64.0 + 107.2500 116.5000 -64.0 + 107.2500 119.5000 -64.0 + 106.5000 121.2500 -64.0 + 104.7500 119.5000 -64.0 +} -64.0 +v 273 z -158.000000 -64.0 +{ -64.0 + 128.2500 61.5000 -64.0 + 128.2500 62.5000 -64.0 + 127.2500 64.5000 -64.0 + 128.2500 66.5000 -64.0 + 128.2500 68.5000 -64.0 + 127.5000 70.2500 -64.0 + 122.5000 70.2500 -64.0 + 120.5000 71.2500 -64.0 + 113.5000 71.2500 -64.0 + 110.2500 72.5000 -64.0 + 121.5000 72.7500 -64.0 + 123.5000 71.7500 -64.0 + 129.5000 71.7500 -64.0 + 128.7500 70.5000 -64.0 + 128.7500 66.5000 -64.0 + 129.5000 64.7500 -64.0 + 131.5000 63.7500 -64.0 +} -64.0 +{ -64.0 + 136.2500 62.5000 -64.0 + 135.5000 63.2500 -64.0 + 136.5000 63.7500 -64.0 + 137.2500 65.5000 -64.0 + 138.7500 62.5000 -64.0 +} -64.0 +{ -64.0 + 81.2500 63.5000 -64.0 + 80.5000 65.2500 -64.0 + 75.5000 64.2500 -64.0 + 74.5000 67.2500 -64.0 + 76.2500 71.5000 -64.0 + 78.5000 68.7500 -64.0 + 81.5000 68.7500 -64.0 + 83.2500 70.5000 -64.0 + 83.5000 73.7500 -64.0 + 83.7500 69.5000 -64.0 + 81.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 68.5000 -64.0 + 149.5000 69.2500 -64.0 + 147.5000 69.2500 -64.0 + 141.5000 72.2500 -64.0 + 139.7500 71.5000 -64.0 + 137.5000 72.2500 -64.0 + 138.2500 73.5000 -64.0 + 139.5000 72.7500 -64.0 + 142.5000 72.7500 -64.0 + 144.2500 73.5000 -64.0 + 142.2500 74.5000 -64.0 + 143.2500 76.5000 -64.0 + 143.2500 78.5000 -64.0 + 145.7500 78.5000 -64.0 + 146.7500 76.5000 -64.0 + 144.7500 75.5000 -64.0 + 146.5000 73.7500 -64.0 + 148.5000 73.7500 -64.0 + 149.5000 71.7500 -64.0 + 153.5000 69.7500 -64.0 + 155.5000 69.7500 -64.0 + 154.7500 68.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 72.5000 -64.0 + 131.2500 73.5000 -64.0 + 127.5000 75.2500 -64.0 + 127.2500 76.5000 -64.0 + 129.2500 77.5000 -64.0 + 127.5000 79.2500 -64.0 + 121.5000 79.2500 -64.0 + 119.7500 78.5000 -64.0 + 101.5000 78.2500 -64.0 + 99.7500 77.5000 -64.0 + 88.5000 77.2500 -64.0 + 84.7500 75.5000 -64.0 + 81.5000 78.2500 -64.0 + 78.2500 78.5000 -64.0 + 79.2500 81.5000 -64.0 + 82.5000 81.7500 -64.0 + 85.5000 78.7500 -64.0 + 89.5000 78.7500 -64.0 + 91.5000 79.7500 -64.0 + 93.5000 78.7500 -64.0 + 109.5000 78.7500 -64.0 + 111.2500 79.5000 -64.0 + 128.5000 80.7500 -64.0 + 130.5000 78.7500 -64.0 + 131.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 79.5000 -64.0 + 131.2500 80.5000 -64.0 + 132.5000 80.7500 -64.0 +} -64.0 +{ -64.0 + 67.2500 80.5000 -64.0 + 65.5000 81.2500 -64.0 + 65.2500 82.5000 -64.0 + 58.2500 95.5000 -64.0 + 57.2500 100.5000 -64.0 + 55.2500 104.5000 -64.0 + 56.2500 107.5000 -64.0 + 58.7500 107.5000 -64.0 + 64.7500 96.5000 -64.0 + 63.5000 96.2500 -64.0 + 63.2500 97.5000 -64.0 + 59.5000 102.2500 -64.0 + 58.7500 101.5000 -64.0 + 59.7500 97.5000 -64.0 + 64.7500 87.5000 -64.0 + 68.5000 83.7500 -64.0 + 73.2500 85.5000 -64.0 + 73.2500 87.5000 -64.0 + 65.2500 93.5000 -64.0 + 66.2500 95.5000 -64.0 + 74.5000 89.7500 -64.0 + 76.5000 86.7500 -64.0 + 75.5000 85.2500 -64.0 +} -64.0 +{ -64.0 + 148.2500 80.5000 -64.0 + 151.2500 82.5000 -64.0 + 157.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 149.2500 83.5000 -64.0 + 147.2500 86.5000 -64.0 + 148.5000 86.7500 -64.0 + 151.2500 91.5000 -64.0 + 151.2500 93.5000 -64.0 + 153.2500 97.5000 -64.0 + 153.2500 99.5000 -64.0 + 154.2500 101.5000 -64.0 + 153.5000 103.2500 -64.0 + 151.7500 102.5000 -64.0 + 150.7500 100.5000 -64.0 + 149.5000 101.2500 -64.0 + 152.2500 106.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.5000 111.7500 -64.0 + 156.5000 110.7500 -64.0 + 156.7500 105.5000 -64.0 + 154.7500 101.5000 -64.0 + 154.7500 99.5000 -64.0 + 153.7500 97.5000 -64.0 + 153.7500 92.5000 -64.0 + 151.7500 88.5000 -64.0 + 151.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 88.5000 -64.0 + 139.2500 91.5000 -64.0 + 142.5000 92.7500 -64.0 + 148.7500 98.5000 -64.0 + 147.7500 95.5000 -64.0 + 140.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 73.2500 109.5000 -64.0 + 72.2500 111.5000 -64.0 + 73.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 112.5000 -64.0 + 88.5000 114.2500 -64.0 + 84.5000 118.2500 -64.0 + 84.2500 120.5000 -64.0 + 85.2500 122.5000 -64.0 + 85.2500 125.5000 -64.0 + 82.5000 128.2500 -64.0 + 80.5000 129.2500 -64.0 + 73.7500 126.5000 -64.0 + 72.2500 126.5000 -64.0 + 76.2500 129.5000 -64.0 + 80.2500 136.5000 -64.0 + 85.2500 138.5000 -64.0 + 89.5000 138.7500 -64.0 + 91.5000 136.7500 -64.0 + 91.7500 132.5000 -64.0 + 94.5000 128.7500 -64.0 + 94.7500 126.5000 -64.0 + 98.5000 120.7500 -64.0 + 99.7500 114.5000 -64.0 + 97.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 112.5000 -64.0 + 104.5000 113.2500 -64.0 + 103.2500 116.5000 -64.0 + 102.2500 121.5000 -64.0 + 107.2500 124.5000 -64.0 + 108.5000 123.7500 -64.0 + 111.5000 123.7500 -64.0 + 113.5000 121.7500 -64.0 + 113.7500 119.5000 -64.0 + 111.7500 114.5000 -64.0 + 108.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 113.5000 -64.0 + 117.5000 114.2500 -64.0 + 117.2500 118.5000 -64.0 + 116.5000 120.2500 -64.0 + 118.2500 123.5000 -64.0 + 118.2500 125.5000 -64.0 + 122.2500 133.5000 -64.0 + 121.2500 136.5000 -64.0 + 118.2500 140.5000 -64.0 + 117.2500 142.5000 -64.0 + 112.5000 145.2500 -64.0 + 108.5000 147.2500 -64.0 + 105.5000 147.2500 -64.0 + 96.5000 144.2500 -64.0 + 93.5000 145.2500 -64.0 + 93.2500 146.5000 -64.0 + 94.2500 148.5000 -64.0 + 100.2500 152.5000 -64.0 + 102.5000 152.7500 -64.0 + 104.2500 154.5000 -64.0 + 106.5000 154.7500 -64.0 + 112.5000 151.7500 -64.0 + 118.7500 149.5000 -64.0 + 119.7500 147.5000 -64.0 + 118.7500 144.5000 -64.0 + 119.5000 142.7500 -64.0 + 121.5000 141.7500 -64.0 + 123.5000 142.7500 -64.0 + 125.5000 141.7500 -64.0 + 127.5000 141.7500 -64.0 + 131.5000 139.7500 -64.0 + 132.7500 135.5000 -64.0 + 139.5000 130.7500 -64.0 + 141.5000 129.7500 -64.0 + 138.5000 128.2500 -64.0 + 134.5000 131.2500 -64.0 + 131.7500 129.5000 -64.0 + 131.7500 127.5000 -64.0 + 130.5000 126.2500 -64.0 + 130.2500 129.5000 -64.0 + 128.5000 131.2500 -64.0 + 124.5000 131.2500 -64.0 + 121.7500 128.5000 -64.0 + 118.7500 122.5000 -64.0 + 118.7500 119.5000 -64.0 + 120.5000 115.7500 -64.0 + 125.5000 115.7500 -64.0 + 128.2500 118.5000 -64.0 + 130.5000 122.7500 -64.0 + 130.7500 120.5000 -64.0 + 129.7500 118.5000 -64.0 + 123.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 74.2500 118.5000 -64.0 + 75.5000 118.7500 -64.0 + 77.2500 120.5000 -64.0 + 79.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 91.7500 115.5000 -64.0 + 92.5000 114.7500 -64.0 + 95.5000 114.7500 -64.0 + 97.2500 116.5000 -64.0 + 93.5000 124.2500 -64.0 + 93.2500 126.5000 -64.0 + 90.5000 129.2500 -64.0 + 87.5000 129.2500 -64.0 + 85.7500 127.5000 -64.0 + 85.7500 119.5000 -64.0 + 88.5000 115.7500 -64.0 +} -64.0 +{ -64.0 + 104.7500 115.5000 -64.0 + 105.5000 114.7500 -64.0 + 107.2500 115.5000 -64.0 + 107.2500 117.5000 -64.0 + 108.7500 117.5000 -64.0 + 107.7500 115.5000 -64.0 + 108.5000 114.7500 -64.0 + 111.2500 116.5000 -64.0 + 111.2500 120.5000 -64.0 + 109.5000 122.2500 -64.0 + 108.7500 121.5000 -64.0 + 106.5000 122.2500 -64.0 + 103.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 125.7500 136.5000 -64.0 + 127.5000 135.7500 -64.0 + 129.2500 136.5000 -64.0 + 127.5000 137.2500 -64.0 +} -64.0 +{ -64.0 + 113.7500 147.5000 -64.0 + 114.5000 146.7500 -64.0 + 115.2500 148.5000 -64.0 + 113.5000 150.2500 -64.0 + 111.5000 150.2500 -64.0 + 109.7500 149.5000 -64.0 +} -64.0 +{ -64.0 + 97.7500 148.5000 -64.0 + 99.5000 147.7500 -64.0 + 103.2500 150.5000 -64.0 + 102.5000 151.2500 -64.0 + 101.7500 150.5000 -64.0 + 99.5000 150.2500 -64.0 +} -64.0 +{ -64.0 + 104.7500 151.5000 -64.0 + 105.5000 150.7500 -64.0 + 106.2500 151.5000 -64.0 + 105.5000 152.2500 -64.0 +} -64.0 +v 370 z -160.000000 -64.0 +{ -64.0 + 105.2500 33.5000 -64.0 + 103.2500 34.5000 -64.0 + 106.5000 34.7500 -64.0 + 108.5000 33.7500 -64.0 + 110.5000 34.7500 -64.0 + 112.5000 33.7500 -64.0 + 117.5000 34.7500 -64.0 + 119.2500 36.5000 -64.0 + 120.5000 35.7500 -64.0 + 122.7500 39.5000 -64.0 + 123.7500 37.5000 -64.0 + 122.7500 35.5000 -64.0 + 120.5000 35.2500 -64.0 + 118.7500 33.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 38.5000 -64.0 + 87.5000 42.2500 -64.0 + 87.2500 45.5000 -64.0 + 89.2500 47.5000 -64.0 + 92.5000 43.7500 -64.0 + 93.7500 44.5000 -64.0 + 94.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 43.5000 -64.0 + 96.5000 44.2500 -64.0 + 94.5000 45.2500 -64.0 + 97.2500 47.5000 -64.0 + 96.2500 50.5000 -64.0 + 98.5000 48.7500 -64.0 + 100.5000 48.7500 -64.0 + 100.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 80.2500 47.5000 -64.0 + 78.5000 48.2500 -64.0 + 81.2500 50.5000 -64.0 + 81.2500 54.5000 -64.0 + 79.5000 58.2500 -64.0 + 78.5000 57.2500 -64.0 + 78.2500 62.5000 -64.0 + 75.5000 65.2500 -64.0 + 77.5000 68.7500 -64.0 + 79.5000 65.7500 -64.0 + 79.7500 63.5000 -64.0 + 82.5000 59.7500 -64.0 + 83.2500 60.5000 -64.0 + 83.5000 65.7500 -64.0 + 83.7500 62.5000 -64.0 + 85.7500 58.5000 -64.0 + 86.7500 53.5000 -64.0 + 88.5000 51.7500 -64.0 + 88.7500 49.5000 -64.0 + 83.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 143.2500 51.5000 -64.0 + 140.2500 54.5000 -64.0 + 139.2500 56.5000 -64.0 + 135.5000 59.2500 -64.0 + 135.2500 61.5000 -64.0 + 136.5000 61.7500 -64.0 + 138.5000 60.7500 -64.0 + 140.2500 61.5000 -64.0 + 140.2500 64.5000 -64.0 + 141.7500 62.5000 -64.0 + 140.7500 60.5000 -64.0 + 141.5000 59.2500 -64.0 + 139.5000 60.2500 -64.0 + 138.7500 58.5000 -64.0 + 141.5000 56.7500 -64.0 + 142.2500 58.5000 -64.0 + 148.7500 57.5000 -64.0 + 149.7500 55.5000 -64.0 + 147.7500 54.5000 -64.0 + 145.5000 55.2500 -64.0 + 143.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 52.5000 -64.0 + 93.5000 52.7500 -64.0 + 103.2500 59.5000 -64.0 + 103.2500 61.5000 -64.0 + 97.5000 64.2500 -64.0 + 95.5000 64.2500 -64.0 + 92.2500 66.5000 -64.0 + 91.2500 68.5000 -64.0 + 98.5000 68.7500 -64.0 + 105.5000 66.7500 -64.0 + 114.5000 65.7500 -64.0 + 122.5000 62.7500 -64.0 + 120.7500 61.5000 -64.0 + 111.5000 61.2500 -64.0 + 94.7500 52.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 61.5000 -64.0 + 127.2500 62.5000 -64.0 + 127.7500 61.5000 -64.0 +} -64.0 +{ -64.0 + 55.2500 62.5000 -64.0 + 56.2500 64.5000 -64.0 + 60.2500 65.5000 -64.0 + 66.5000 65.7500 -64.0 + 65.7500 64.5000 -64.0 + 59.5000 63.2500 -64.0 +} -64.0 +{ -64.0 + 152.2500 67.5000 -64.0 + 151.5000 68.2500 -64.0 + 148.2500 68.5000 -64.0 + 150.5000 68.7500 -64.0 + 152.2500 69.5000 -64.0 + 149.5000 72.2500 -64.0 + 145.5000 75.2500 -64.0 + 143.5000 76.2500 -64.0 + 144.5000 77.7500 -64.0 + 146.5000 76.7500 -64.0 + 148.5000 76.7500 -64.0 + 150.5000 77.7500 -64.0 + 152.5000 76.7500 -64.0 + 155.5000 76.7500 -64.0 + 154.7500 74.5000 -64.0 + 159.5000 70.7500 -64.0 + 159.7500 68.5000 -64.0 + 157.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 68.5000 -64.0 + 111.5000 71.2500 -64.0 + 112.2500 72.5000 -64.0 + 125.7500 72.5000 -64.0 + 120.7500 71.5000 -64.0 + 123.5000 69.7500 -64.0 + 127.5000 69.7500 -64.0 + 127.7500 68.5000 -64.0 + 126.5000 69.2500 -64.0 + 125.7500 68.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 72.5000 -64.0 + 68.5000 73.7500 -64.0 + 72.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 72.5000 -64.0 + 86.2500 73.5000 -64.0 + 87.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 72.5000 -64.0 + 128.2500 73.5000 -64.0 + 126.5000 75.2500 -64.0 + 128.2500 77.5000 -64.0 + 124.5000 79.2500 -64.0 + 122.7500 78.5000 -64.0 + 104.5000 78.2500 -64.0 + 102.7500 77.5000 -64.0 + 85.5000 76.2500 -64.0 + 84.7500 74.5000 -64.0 + 82.5000 75.2500 -64.0 + 84.2500 76.5000 -64.0 + 88.2500 77.5000 -64.0 + 82.5000 80.2500 -64.0 + 81.7500 79.5000 -64.0 + 79.5000 79.2500 -64.0 + 81.2500 80.5000 -64.0 + 81.2500 83.5000 -64.0 + 84.5000 81.7500 -64.0 + 88.5000 82.7500 -64.0 + 88.7500 80.5000 -64.0 + 90.5000 79.7500 -64.0 + 95.5000 80.7500 -64.0 + 97.5000 82.7500 -64.0 + 99.5000 81.7500 -64.0 + 103.2500 82.5000 -64.0 + 101.5000 83.2500 -64.0 + 104.2500 84.5000 -64.0 + 105.5000 83.7500 -64.0 + 104.7500 82.5000 -64.0 + 105.5000 81.7500 -64.0 + 107.2500 82.5000 -64.0 + 117.5000 83.7500 -64.0 + 121.5000 81.7500 -64.0 + 124.2500 83.5000 -64.0 + 123.2500 87.5000 -64.0 + 125.2500 88.5000 -64.0 + 124.2500 91.5000 -64.0 + 125.5000 91.7500 -64.0 + 126.2500 93.5000 -64.0 + 124.2500 95.5000 -64.0 + 125.7500 95.5000 -64.0 + 128.7500 88.5000 -64.0 + 132.5000 84.7500 -64.0 + 136.7500 82.5000 -64.0 + 133.5000 82.2500 -64.0 + 131.5000 83.2500 -64.0 + 129.7500 82.5000 -64.0 + 130.7500 77.5000 -64.0 + 129.5000 77.2500 -64.0 + 127.7500 75.5000 -64.0 + 129.7500 72.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 78.5000 -64.0 + 63.5000 79.2500 -64.0 + 58.5000 79.2500 -64.0 + 54.5000 82.2500 -64.0 + 52.5000 82.2500 -64.0 + 50.5000 83.2500 -64.0 + 50.2500 85.5000 -64.0 + 51.5000 84.7500 -64.0 + 53.5000 84.7500 -64.0 + 55.5000 83.7500 -64.0 + 58.5000 83.7500 -64.0 + 62.5000 81.7500 -64.0 + 64.5000 81.7500 -64.0 + 65.2500 83.5000 -64.0 + 64.2500 86.5000 -64.0 + 57.2500 98.5000 -64.0 + 56.2500 105.5000 -64.0 + 57.2500 107.5000 -64.0 + 58.7500 107.5000 -64.0 + 59.7500 105.5000 -64.0 + 62.7500 98.5000 -64.0 + 59.5000 101.2500 -64.0 + 58.7500 100.5000 -64.0 + 59.5000 99.7500 -64.0 + 59.7500 97.5000 -64.0 + 66.7500 83.5000 -64.0 + 68.5000 82.7500 -64.0 + 68.7500 81.5000 -64.0 + 69.5000 79.7500 -64.0 + 71.7500 78.5000 -64.0 +} -64.0 +{ -64.0 + 75.2500 79.5000 -64.0 + 75.2500 80.5000 -64.0 + 72.5000 83.2500 -64.0 + 72.2500 87.5000 -64.0 + 69.5000 91.2500 -64.0 + 67.2500 92.5000 -64.0 + 66.2500 94.5000 -64.0 + 67.5000 94.7500 -64.0 + 69.5000 92.7500 -64.0 + 70.2500 93.5000 -64.0 + 71.7500 93.5000 -64.0 + 72.7500 91.5000 -64.0 + 76.7500 87.5000 -64.0 + 77.7500 85.5000 -64.0 + 75.7500 83.5000 -64.0 + 75.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 148.2500 82.5000 -64.0 + 148.2500 84.5000 -64.0 + 150.2500 86.5000 -64.0 + 150.2500 88.5000 -64.0 + 152.5000 93.7500 -64.0 + 152.7500 91.5000 -64.0 + 150.7500 87.5000 -64.0 + 150.7500 84.5000 -64.0 + 152.5000 83.7500 -64.0 + 159.5000 85.7500 -64.0 + 162.5000 84.7500 -64.0 + 160.7500 83.5000 -64.0 + 156.7500 82.5000 -64.0 +} -64.0 +{ -64.0 + 139.2500 88.5000 -64.0 + 139.2500 89.5000 -64.0 + 140.2500 91.5000 -64.0 + 142.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 121.2500 101.5000 -64.0 + 121.2500 102.5000 -64.0 + 121.7500 103.5000 -64.0 + 122.7500 101.5000 -64.0 +} -64.0 +{ -64.0 + 154.2500 101.5000 -64.0 + 154.2500 104.5000 -64.0 + 153.5000 106.2500 -64.0 + 152.7500 105.5000 -64.0 + 152.2500 106.5000 -64.0 + 153.2500 108.5000 -64.0 + 153.2500 110.5000 -64.0 + 154.5000 111.7500 -64.0 + 156.7500 108.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 112.5000 -64.0 + 90.5000 113.2500 -64.0 + 88.5000 113.2500 -64.0 + 85.5000 118.2500 -64.0 + 85.2500 124.5000 -64.0 + 83.2500 129.5000 -64.0 + 81.5000 130.2500 -64.0 + 77.7500 127.5000 -64.0 + 74.7500 123.5000 -64.0 + 73.5000 124.2500 -64.0 + 72.7500 123.5000 -64.0 + 68.5000 122.2500 -64.0 + 68.2500 123.5000 -64.0 + 71.5000 123.7500 -64.0 + 79.2500 131.5000 -64.0 + 81.2500 135.5000 -64.0 + 83.2500 141.5000 -64.0 + 85.2500 142.5000 -64.0 + 88.5000 142.7500 -64.0 + 90.2500 143.5000 -64.0 + 89.5000 144.2500 -64.0 + 89.2500 146.5000 -64.0 + 90.5000 146.7500 -64.0 + 92.2500 148.5000 -64.0 + 94.5000 148.7500 -64.0 + 102.2500 154.5000 -64.0 + 103.7500 153.5000 -64.0 + 94.7500 147.5000 -64.0 + 95.5000 145.7500 -64.0 + 97.5000 145.7500 -64.0 + 100.5000 146.7500 -64.0 + 102.2500 147.5000 -64.0 + 110.5000 147.7500 -64.0 + 116.5000 144.7500 -64.0 + 118.2500 146.5000 -64.0 + 117.5000 148.2500 -64.0 + 107.5000 153.2500 -64.0 + 107.2500 154.5000 -64.0 + 108.5000 154.7500 -64.0 + 115.7500 150.5000 -64.0 + 120.5000 148.7500 -64.0 + 124.5000 145.7500 -64.0 + 126.5000 144.7500 -64.0 + 128.5000 141.7500 -64.0 + 130.7500 135.5000 -64.0 + 133.5000 132.7500 -64.0 + 131.7500 129.5000 -64.0 + 131.5000 123.2500 -64.0 + 131.2500 125.5000 -64.0 + 130.2500 128.5000 -64.0 + 127.5000 131.2500 -64.0 + 125.5000 131.2500 -64.0 + 121.7500 127.5000 -64.0 + 122.5000 126.7500 -64.0 + 121.7500 125.5000 -64.0 + 122.7500 123.5000 -64.0 + 123.5000 121.7500 -64.0 + 126.7500 117.5000 -64.0 + 125.7500 114.5000 -64.0 + 119.5000 114.2500 -64.0 + 118.5000 116.2500 -64.0 + 116.5000 116.2500 -64.0 + 116.2500 118.5000 -64.0 + 118.2500 122.5000 -64.0 + 118.2500 127.5000 -64.0 + 123.2500 132.5000 -64.0 + 123.2500 134.5000 -64.0 + 122.2500 137.5000 -64.0 + 115.5000 142.2500 -64.0 + 109.5000 145.2500 -64.0 + 103.5000 145.2500 -64.0 + 96.5000 142.2500 -64.0 + 91.7500 135.5000 -64.0 + 91.7500 131.5000 -64.0 + 97.7500 125.5000 -64.0 + 98.7500 116.5000 -64.0 + 97.5000 115.2500 -64.0 + 93.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 113.5000 -64.0 + 102.5000 116.2500 -64.0 + 102.2500 119.5000 -64.0 + 104.2500 123.5000 -64.0 + 109.5000 123.7500 -64.0 + 113.5000 121.7500 -64.0 + 113.7500 116.5000 -64.0 + 110.5000 114.2500 -64.0 +} -64.0 +{ -64.0 + 88.7500 116.5000 -64.0 + 90.5000 115.7500 -64.0 + 92.2500 116.5000 -64.0 + 90.2500 119.5000 -64.0 + 92.5000 119.7500 -64.0 + 91.7500 118.5000 -64.0 + 93.5000 116.7500 -64.0 + 94.2500 118.5000 -64.0 + 96.2500 125.5000 -64.0 + 94.5000 126.2500 -64.0 + 91.5000 129.2500 -64.0 + 87.5000 129.2500 -64.0 + 85.7500 125.5000 -64.0 + 86.5000 123.7500 -64.0 + 85.7500 122.5000 -64.0 + 86.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 103.7500 116.5000 -64.0 + 104.5000 115.7500 -64.0 + 109.5000 116.7500 -64.0 + 111.2500 118.5000 -64.0 + 111.2500 120.5000 -64.0 + 109.5000 122.2500 -64.0 + 106.5000 122.2500 -64.0 + 103.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 85.7500 136.5000 -64.0 + 86.5000 135.7500 -64.0 + 87.2500 136.5000 -64.0 + 86.5000 137.2500 -64.0 +} -64.0 +v 484 z -162.000000 -64.0 +{ -64.0 + 96.2500 29.5000 -64.0 + 92.5000 32.2500 -64.0 + 89.5000 32.2500 -64.0 + 87.7500 31.5000 -64.0 + 87.2500 32.5000 -64.0 + 89.2500 34.5000 -64.0 + 89.2500 36.5000 -64.0 + 87.5000 37.2500 -64.0 + 87.2500 40.5000 -64.0 + 84.5000 43.2500 -64.0 + 84.5000 44.7500 -64.0 + 86.5000 45.7500 -64.0 + 86.7500 44.5000 -64.0 + 89.7500 41.5000 -64.0 + 88.7500 39.5000 -64.0 + 89.5000 38.7500 -64.0 + 92.7500 38.5000 -64.0 + 89.7500 34.5000 -64.0 + 91.5000 33.7500 -64.0 + 94.2500 36.5000 -64.0 + 95.5000 34.7500 -64.0 + 96.7500 30.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 32.5000 -64.0 + 106.5000 34.2500 -64.0 + 104.2500 34.5000 -64.0 + 105.2500 36.5000 -64.0 + 105.2500 39.5000 -64.0 + 101.2500 41.5000 -64.0 + 103.5000 41.7500 -64.0 + 105.2500 43.5000 -64.0 + 104.5000 45.2500 -64.0 + 102.5000 45.2500 -64.0 + 101.5000 47.2500 -64.0 + 102.5000 47.7500 -64.0 + 104.5000 46.7500 -64.0 + 115.5000 52.7500 -64.0 + 125.5000 56.7500 -64.0 + 124.5000 55.2500 -64.0 + 111.5000 47.2500 -64.0 + 108.7500 44.5000 -64.0 + 109.5000 43.7500 -64.0 + 109.7500 40.5000 -64.0 + 107.7500 38.5000 -64.0 + 108.5000 36.7500 -64.0 + 110.5000 36.7500 -64.0 + 112.5000 35.7500 -64.0 + 114.5000 36.7500 -64.0 + 116.5000 35.7500 -64.0 + 120.5000 37.7500 -64.0 + 123.2500 42.5000 -64.0 + 122.2500 45.5000 -64.0 + 123.5000 46.7500 -64.0 + 126.5000 45.7500 -64.0 + 126.7500 42.5000 -64.0 + 124.7500 40.5000 -64.0 + 124.7500 37.5000 -64.0 + 123.7500 35.5000 -64.0 + 119.5000 34.2500 -64.0 + 120.2500 35.5000 -64.0 + 119.5000 36.2500 -64.0 + 117.7500 35.5000 -64.0 + 112.5000 35.2500 -64.0 + 109.5000 36.2500 -64.0 + 107.7500 34.5000 -64.0 + 108.5000 33.7500 -64.0 + 118.7500 33.5000 -64.0 + 114.7500 32.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 38.5000 -64.0 + 94.5000 39.7500 -64.0 + 96.5000 40.7500 -64.0 + 95.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 77.2500 47.5000 -64.0 + 77.2500 49.5000 -64.0 + 79.5000 49.7500 -64.0 + 83.2500 51.5000 -64.0 + 79.2500 59.5000 -64.0 + 80.2500 61.5000 -64.0 + 80.2500 64.5000 -64.0 + 81.5000 64.7500 -64.0 + 80.7500 63.5000 -64.0 + 80.7500 59.5000 -64.0 + 81.7500 56.5000 -64.0 + 84.5000 52.7500 -64.0 + 86.5000 52.7500 -64.0 + 86.7500 49.5000 -64.0 + 84.5000 50.2500 -64.0 + 82.7500 49.5000 -64.0 + 84.7500 48.5000 -64.0 + 80.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 99.2500 48.5000 -64.0 + 99.2500 49.5000 -64.0 + 98.2500 51.5000 -64.0 + 101.5000 51.7500 -64.0 + 99.7500 49.5000 -64.0 + 100.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 50.5000 -64.0 + 136.5000 56.2500 -64.0 + 136.5000 57.7500 -64.0 + 140.5000 55.7500 -64.0 + 144.5000 55.7500 -64.0 + 146.2500 56.5000 -64.0 + 144.2500 57.5000 -64.0 + 146.5000 57.7500 -64.0 + 149.5000 56.7500 -64.0 + 151.7500 54.5000 -64.0 + 149.5000 54.2500 -64.0 + 143.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 54.5000 -64.0 + 91.2500 58.5000 -64.0 + 88.2500 64.5000 -64.0 + 89.5000 63.7500 -64.0 + 92.2500 65.5000 -64.0 + 91.5000 66.2500 -64.0 + 97.5000 67.7500 -64.0 + 99.5000 66.7500 -64.0 + 103.5000 66.7500 -64.0 + 105.5000 65.7500 -64.0 + 114.5000 64.7500 -64.0 + 118.5000 62.7500 -64.0 + 117.7500 61.5000 -64.0 + 108.5000 59.2500 -64.0 + 98.5000 54.2500 -64.0 + 96.5000 55.2500 -64.0 +} -64.0 +{ -64.0 + 135.2500 58.5000 -64.0 + 135.2500 59.5000 -64.0 + 136.5000 59.7500 -64.0 +} -64.0 +{ -64.0 + 138.2500 59.5000 -64.0 + 137.2500 60.5000 -64.0 + 141.5000 60.7500 -64.0 + 143.2500 63.5000 -64.0 + 141.2500 64.5000 -64.0 + 143.5000 64.7500 -64.0 + 151.2500 68.5000 -64.0 + 155.2500 69.5000 -64.0 + 152.5000 71.2500 -64.0 + 145.7500 69.5000 -64.0 + 141.5000 69.2500 -64.0 + 140.5000 69.7500 -64.0 + 147.5000 70.7500 -64.0 + 148.2500 72.5000 -64.0 + 146.5000 73.2500 -64.0 + 144.5000 75.7500 -64.0 + 148.5000 73.7500 -64.0 + 150.5000 73.7500 -64.0 + 152.5000 72.7500 -64.0 + 156.5000 72.7500 -64.0 + 158.5000 71.7500 -64.0 + 159.2500 72.5000 -64.0 + 161.5000 72.7500 -64.0 + 160.7500 70.5000 -64.0 + 155.7500 68.5000 -64.0 + 157.5000 66.7500 -64.0 + 154.5000 65.2500 -64.0 + 145.5000 63.2500 -64.0 + 142.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 56.2500 61.5000 -64.0 + 55.5000 62.2500 -64.0 + 55.5000 63.7500 -64.0 + 60.5000 64.7500 -64.0 + 62.2500 65.5000 -64.0 + 69.5000 65.7500 -64.0 + 71.2500 66.5000 -64.0 + 72.5000 65.7500 -64.0 + 74.5000 65.7500 -64.0 + 76.2500 66.5000 -64.0 + 78.5000 64.2500 -64.0 + 76.5000 65.2500 -64.0 + 74.5000 65.2500 -64.0 + 70.7500 63.5000 -64.0 + 66.5000 63.2500 -64.0 + 63.5000 62.2500 -64.0 + 61.7500 61.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 67.5000 -64.0 + 115.5000 69.2500 -64.0 + 116.2500 72.5000 -64.0 + 121.5000 72.7500 -64.0 + 121.7500 71.5000 -64.0 + 123.5000 69.7500 -64.0 + 126.5000 69.7500 -64.0 + 121.7500 67.5000 -64.0 +} -64.0 +{ -64.0 + 63.2500 71.5000 -64.0 + 63.2500 72.5000 -64.0 + 65.2500 73.5000 -64.0 + 69.5000 73.7500 -64.0 + 67.7500 72.5000 -64.0 + 69.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 73.5000 -64.0 + 93.2500 74.5000 -64.0 + 97.5000 74.7500 -64.0 + 99.2500 75.5000 -64.0 + 98.5000 76.2500 -64.0 + 93.5000 76.2500 -64.0 + 90.5000 77.2500 -64.0 + 91.2500 78.5000 -64.0 + 93.5000 78.7500 -64.0 + 95.2500 79.5000 -64.0 + 99.5000 79.7500 -64.0 + 101.5000 81.7500 -64.0 + 103.5000 80.7500 -64.0 + 105.5000 80.7500 -64.0 + 109.5000 82.7500 -64.0 + 112.5000 81.7500 -64.0 + 115.2500 84.5000 -64.0 + 114.5000 85.2500 -64.0 + 114.5000 86.7500 -64.0 + 116.5000 87.7500 -64.0 + 116.7500 86.5000 -64.0 + 118.5000 84.7500 -64.0 + 120.2500 85.5000 -64.0 + 117.2500 89.5000 -64.0 + 120.5000 89.7500 -64.0 + 121.2500 91.5000 -64.0 + 119.2500 93.5000 -64.0 + 121.5000 93.7500 -64.0 + 121.7500 91.5000 -64.0 + 123.5000 90.7500 -64.0 + 125.2500 92.5000 -64.0 + 124.5000 93.2500 -64.0 + 124.2500 96.5000 -64.0 + 125.5000 95.7500 -64.0 + 129.5000 95.7500 -64.0 + 131.7500 93.5000 -64.0 + 132.7500 91.5000 -64.0 + 135.5000 87.7500 -64.0 + 137.5000 87.7500 -64.0 + 137.7500 84.5000 -64.0 + 138.7500 81.5000 -64.0 + 136.5000 83.2500 -64.0 + 133.5000 83.2500 -64.0 + 130.5000 84.2500 -64.0 + 128.7500 83.5000 -64.0 + 128.7500 81.5000 -64.0 + 127.7500 78.5000 -64.0 + 129.7500 77.5000 -64.0 + 121.5000 77.2500 -64.0 + 118.5000 76.2500 -64.0 + 116.5000 77.2500 -64.0 + 114.7500 76.5000 -64.0 + 110.5000 76.2500 -64.0 + 104.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 73.5000 -64.0 + 130.2500 76.5000 -64.0 + 131.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 73.5000 -64.0 + 136.2500 75.5000 -64.0 + 138.5000 75.7500 -64.0 + 138.7500 74.5000 -64.0 +} -64.0 +{ -64.0 + 69.2500 77.5000 -64.0 + 68.5000 78.2500 -64.0 + 65.5000 78.2500 -64.0 + 63.5000 79.2500 -64.0 + 59.5000 79.2500 -64.0 + 53.5000 82.2500 -64.0 + 51.5000 82.2500 -64.0 + 50.2500 84.5000 -64.0 + 54.5000 84.7500 -64.0 + 63.5000 81.7500 -64.0 + 65.2500 84.5000 -64.0 + 67.5000 81.7500 -64.0 + 65.7500 80.5000 -64.0 + 67.5000 78.7500 -64.0 + 69.2500 79.5000 -64.0 + 70.5000 78.7500 -64.0 +} -64.0 +{ -64.0 + 86.2500 77.5000 -64.0 + 82.5000 81.2500 -64.0 + 81.7500 79.5000 -64.0 + 80.5000 79.2500 -64.0 + 81.2500 80.5000 -64.0 + 80.5000 84.2500 -64.0 + 81.2500 85.5000 -64.0 + 80.2500 90.5000 -64.0 + 81.5000 88.7500 -64.0 + 81.7500 84.5000 -64.0 + 84.5000 81.7500 -64.0 + 87.5000 81.7500 -64.0 + 87.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 76.2500 79.5000 -64.0 + 74.5000 81.2500 -64.0 + 73.2500 87.5000 -64.0 + 67.5000 93.2500 -64.0 + 68.5000 93.7500 -64.0 + 70.5000 91.7500 -64.0 + 72.5000 91.7500 -64.0 + 77.5000 86.7500 -64.0 + 75.7500 85.5000 -64.0 + 76.7500 80.5000 -64.0 +} -64.0 +{ -64.0 + 150.2500 87.5000 -64.0 + 150.2500 89.5000 -64.0 + 152.2500 93.5000 -64.0 + 153.2500 102.5000 -64.0 + 151.5000 103.2500 -64.0 + 151.2500 104.5000 -64.0 + 152.2500 107.5000 -64.0 + 152.7500 106.5000 -64.0 + 151.7500 104.5000 -64.0 + 152.5000 103.7500 -64.0 + 155.2500 107.5000 -64.0 + 155.5000 110.7500 -64.0 + 155.7500 105.5000 -64.0 + 153.7500 101.5000 -64.0 + 152.7500 91.5000 -64.0 + 151.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 138.2500 88.5000 -64.0 + 138.5000 88.7500 -64.0 + 142.2500 91.5000 -64.0 + 143.7500 91.5000 -64.0 + 139.7500 88.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 90.5000 -64.0 + 110.2500 91.5000 -64.0 + 111.2500 93.5000 -64.0 + 113.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 79.2500 92.5000 -64.0 + 79.2500 93.5000 -64.0 + 78.2500 96.5000 -64.0 + 77.5000 98.2500 -64.0 + 77.2500 102.5000 -64.0 + 77.7500 103.5000 -64.0 + 79.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 59.2500 97.5000 -64.0 + 57.5000 101.2500 -64.0 + 57.2500 105.5000 -64.0 + 58.2500 107.5000 -64.0 + 59.7500 106.5000 -64.0 + 60.7500 101.5000 -64.0 + 58.7500 100.5000 -64.0 + 59.7500 98.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 102.5000 -64.0 + 123.5000 103.2500 -64.0 + 124.2500 105.5000 -64.0 + 123.2500 107.5000 -64.0 + 124.2500 109.5000 -64.0 + 126.7500 104.5000 -64.0 + 125.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 76.2500 104.5000 -64.0 + 75.2500 106.5000 -64.0 + 75.7500 107.5000 -64.0 + 76.7500 105.5000 -64.0 +} -64.0 +{ -64.0 + 153.2500 110.5000 -64.0 + 153.2500 111.5000 -64.0 + 154.5000 111.7500 -64.0 +} -64.0 +{ -64.0 + 87.2500 112.5000 -64.0 + 86.5000 113.2500 -64.0 + 87.2500 114.5000 -64.0 + 86.2500 117.5000 -64.0 + 87.5000 116.7500 -64.0 + 89.2500 117.5000 -64.0 + 89.2500 119.5000 -64.0 + 90.2500 121.5000 -64.0 + 89.5000 122.2500 -64.0 + 90.2500 124.5000 -64.0 + 91.5000 124.7500 -64.0 + 93.2500 125.5000 -64.0 + 90.5000 128.2500 -64.0 + 87.5000 128.2500 -64.0 + 85.7500 126.5000 -64.0 + 85.7500 121.5000 -64.0 + 84.5000 120.2500 -64.0 + 84.2500 130.5000 -64.0 + 87.2500 134.5000 -64.0 + 86.5000 135.2500 -64.0 + 84.2500 135.5000 -64.0 + 83.2500 137.5000 -64.0 + 87.5000 144.7500 -64.0 + 100.5000 151.7500 -64.0 + 104.2500 154.5000 -64.0 + 108.5000 154.7500 -64.0 + 110.5000 153.7500 -64.0 + 114.5000 150.7500 -64.0 + 122.5000 146.7500 -64.0 + 125.7500 143.5000 -64.0 + 127.7500 139.5000 -64.0 + 126.7500 137.5000 -64.0 + 125.5000 138.2500 -64.0 + 119.5000 141.2500 -64.0 + 116.5000 141.2500 -64.0 + 110.5000 144.2500 -64.0 + 108.5000 144.2500 -64.0 + 106.5000 145.2500 -64.0 + 105.7500 144.5000 -64.0 + 102.5000 144.2500 -64.0 + 94.5000 140.2500 -64.0 + 87.7500 133.5000 -64.0 + 89.7500 131.5000 -64.0 + 96.7500 128.5000 -64.0 + 97.7500 126.5000 -64.0 + 95.5000 126.2500 -64.0 + 94.7500 124.5000 -64.0 + 95.5000 122.7500 -64.0 + 97.5000 122.7500 -64.0 + 99.5000 124.7500 -64.0 + 103.5000 122.7500 -64.0 + 107.5000 124.7500 -64.0 + 115.5000 120.7500 -64.0 + 120.5000 121.7500 -64.0 + 122.5000 119.7500 -64.0 + 123.2500 120.5000 -64.0 + 122.2500 125.5000 -64.0 + 120.5000 127.2500 -64.0 + 120.2500 129.5000 -64.0 + 122.5000 130.7500 -64.0 + 124.5000 131.7500 -64.0 + 126.2500 132.5000 -64.0 + 128.7500 132.5000 -64.0 + 131.5000 128.7500 -64.0 + 131.7500 125.5000 -64.0 + 132.7500 123.5000 -64.0 + 131.7500 121.5000 -64.0 + 131.7500 119.5000 -64.0 + 130.5000 118.2500 -64.0 + 124.5000 115.2500 -64.0 + 124.2500 117.5000 -64.0 + 123.5000 119.2500 -64.0 + 121.7500 117.5000 -64.0 + 120.7500 115.5000 -64.0 + 117.7500 113.5000 -64.0 + 116.5000 114.2500 -64.0 + 112.5000 114.2500 -64.0 + 107.5000 113.2500 -64.0 + 99.5000 117.2500 -64.0 + 96.5000 117.2500 -64.0 + 94.7500 116.5000 -64.0 + 93.5000 114.2500 -64.0 + 91.5000 113.2500 -64.0 + 89.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 71.2500 119.5000 -64.0 + 70.2500 121.5000 -64.0 + 72.5000 121.7500 -64.0 + 72.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 92.7500 59.5000 -64.0 + 93.5000 58.7500 -64.0 + 94.2500 59.5000 -64.0 + 93.5000 60.2500 -64.0 +} -64.0 +{ -64.0 + 93.7500 61.5000 -64.0 + 94.5000 60.7500 -64.0 + 95.2500 61.5000 -64.0 + 94.5000 62.2500 -64.0 +} -64.0 +{ -64.0 + 107.7500 61.5000 -64.0 + 109.5000 60.7500 -64.0 + 117.2500 62.5000 -64.0 + 114.5000 64.2500 -64.0 + 110.5000 64.2500 -64.0 + 103.5000 66.2500 -64.0 + 95.5000 66.2500 -64.0 + 93.7500 65.5000 -64.0 + 96.5000 63.7500 -64.0 + 98.5000 63.7500 -64.0 + 100.5000 62.7500 -64.0 + 107.5000 62.7500 -64.0 +} -64.0 +{ -64.0 + 118.7500 83.5000 -64.0 + 119.5000 82.7500 -64.0 + 120.2500 83.5000 -64.0 + 119.5000 84.2500 -64.0 +} -64.0 +{ -64.0 + 103.7500 116.5000 -64.0 + 105.5000 115.7500 -64.0 + 107.2500 116.5000 -64.0 + 104.5000 119.2500 -64.0 + 102.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 116.5000 -64.0 + 108.5000 115.7500 -64.0 + 111.2500 120.5000 -64.0 + 109.5000 122.2500 -64.0 + 107.5000 122.2500 -64.0 + 105.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 128.7500 125.5000 -64.0 + 129.5000 124.7500 -64.0 + 130.2500 125.5000 -64.0 + 129.5000 126.2500 -64.0 +} -64.0 +{ -64.0 + 126.7500 127.5000 -64.0 + 127.5000 126.7500 -64.0 + 129.2500 127.5000 -64.0 + 127.5000 129.2500 -64.0 +} -64.0 +{ -64.0 + 95.7500 145.5000 -64.0 + 96.5000 144.7500 -64.0 + 102.5000 146.7500 -64.0 + 104.2500 147.5000 -64.0 + 110.5000 147.7500 -64.0 + 113.5000 146.7500 -64.0 + 114.2500 148.5000 -64.0 + 112.5000 149.2500 -64.0 + 106.5000 152.2500 -64.0 + 104.7500 151.5000 -64.0 + 102.5000 151.2500 -64.0 + 98.5000 148.2500 -64.0 + 96.5000 147.2500 -64.0 +} -64.0 +v 400 z -164.000000 -64.0 +{ -64.0 + 95.2500 31.5000 -64.0 + 90.5000 42.2500 -64.0 + 88.7500 41.5000 -64.0 + 85.5000 43.2500 -64.0 + 88.5000 47.7500 -64.0 + 88.7500 45.5000 -64.0 + 90.5000 43.7500 -64.0 + 91.2500 44.5000 -64.0 + 92.5000 42.7500 -64.0 + 93.2500 43.5000 -64.0 + 92.5000 45.2500 -64.0 + 93.5000 45.7500 -64.0 + 94.5000 42.7500 -64.0 + 97.5000 43.7500 -64.0 + 98.2500 45.5000 -64.0 + 96.5000 47.2500 -64.0 + 93.5000 47.7500 -64.0 + 97.2500 49.5000 -64.0 + 96.2500 50.5000 -64.0 + 98.5000 50.7500 -64.0 + 97.7500 49.5000 -64.0 + 98.7500 47.5000 -64.0 + 101.5000 45.7500 -64.0 + 106.5000 39.7500 -64.0 + 108.5000 40.7500 -64.0 + 110.5000 37.7500 -64.0 + 116.5000 39.7500 -64.0 + 118.5000 38.7500 -64.0 + 121.2500 43.5000 -64.0 + 120.5000 45.2500 -64.0 + 121.2500 46.5000 -64.0 + 125.5000 46.7500 -64.0 + 127.5000 45.7500 -64.0 + 127.7500 42.5000 -64.0 + 126.5000 42.2500 -64.0 + 124.7500 40.5000 -64.0 + 124.7500 36.5000 -64.0 + 122.5000 35.2500 -64.0 + 115.7500 33.5000 -64.0 + 109.5000 33.2500 -64.0 + 107.5000 34.2500 -64.0 + 99.5000 35.2500 -64.0 + 97.5000 38.2500 -64.0 + 95.5000 39.2500 -64.0 + 93.7500 38.5000 -64.0 + 94.5000 37.7500 -64.0 + 95.7500 32.5000 -64.0 +} -64.0 +{ -64.0 + 80.2500 48.5000 -64.0 + 79.2500 49.5000 -64.0 + 83.2500 50.5000 -64.0 + 84.5000 49.7500 -64.0 +} -64.0 +{ -64.0 + 85.2500 50.5000 -64.0 + 86.2500 51.5000 -64.0 + 86.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 50.5000 -64.0 + 137.2500 54.5000 -64.0 + 136.5000 56.2500 -64.0 + 136.2500 61.5000 -64.0 + 141.2500 63.5000 -64.0 + 140.2500 66.5000 -64.0 + 141.5000 66.7500 -64.0 + 142.7500 64.5000 -64.0 + 140.7500 60.5000 -64.0 + 146.5000 57.7500 -64.0 + 148.5000 57.7500 -64.0 + 149.7500 56.5000 -64.0 + 143.7500 52.5000 -64.0 + 141.5000 53.2500 -64.0 +} -64.0 +{ -64.0 + 95.2500 53.5000 -64.0 + 92.5000 55.2500 -64.0 + 90.2500 61.5000 -64.0 + 91.5000 60.7500 -64.0 + 91.7500 58.5000 -64.0 + 93.5000 56.7500 -64.0 + 97.5000 57.7500 -64.0 + 97.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 79.2500 56.5000 -64.0 + 79.2500 62.5000 -64.0 + 77.2500 66.5000 -64.0 + 78.5000 65.7500 -64.0 + 79.5000 66.7500 -64.0 + 79.7500 63.5000 -64.0 + 81.5000 61.7500 -64.0 + 80.7500 60.5000 -64.0 + 81.5000 58.7500 -64.0 +} -64.0 +{ -64.0 + 83.2500 58.5000 -64.0 + 82.2500 60.5000 -64.0 + 83.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 58.5000 -64.0 + 109.5000 58.7500 -64.0 + 113.2500 61.5000 -64.0 + 112.5000 62.2500 -64.0 + 100.5000 62.2500 -64.0 + 94.5000 65.2500 -64.0 + 92.5000 65.2500 -64.0 + 90.5000 66.2500 -64.0 + 87.5000 66.2500 -64.0 + 87.2500 67.5000 -64.0 + 97.5000 67.7500 -64.0 + 99.5000 66.7500 -64.0 + 104.5000 66.7500 -64.0 + 106.5000 65.7500 -64.0 + 109.5000 65.7500 -64.0 + 111.5000 64.7500 -64.0 + 113.5000 64.7500 -64.0 + 115.5000 63.7500 -64.0 + 120.5000 63.7500 -64.0 + 120.7500 62.5000 -64.0 + 119.5000 62.2500 -64.0 + 114.5000 60.2500 -64.0 + 110.7500 58.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 65.5000 -64.0 + 128.2500 66.5000 -64.0 + 129.5000 66.7500 -64.0 +} -64.0 +{ -64.0 + 133.2500 65.5000 -64.0 + 133.2500 67.5000 -64.0 + 133.7500 66.5000 -64.0 +} -64.0 +{ -64.0 + 64.2500 66.5000 -64.0 + 63.5000 67.2500 -64.0 + 59.5000 67.2500 -64.0 + 56.5000 68.2500 -64.0 + 54.7500 67.5000 -64.0 + 53.2500 68.5000 -64.0 + 55.5000 68.7500 -64.0 + 57.2500 69.5000 -64.0 + 62.5000 69.7500 -64.0 + 69.5000 70.7500 -64.0 + 71.2500 72.5000 -64.0 + 71.2500 74.5000 -64.0 + 74.5000 74.7500 -64.0 + 73.5000 74.2500 -64.0 + 71.7500 71.5000 -64.0 + 72.5000 70.7500 -64.0 + 74.7500 70.5000 -64.0 + 72.5000 70.2500 -64.0 + 68.7500 66.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 69.5000 -64.0 + 126.2500 70.5000 -64.0 + 127.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 70.5000 -64.0 + 142.2500 71.5000 -64.0 + 148.5000 71.7500 -64.0 + 150.5000 72.7500 -64.0 + 152.5000 71.7500 -64.0 + 156.7500 71.5000 -64.0 + 152.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 157.2500 70.5000 -64.0 + 157.5000 70.7500 -64.0 + 159.5000 71.7500 -64.0 + 159.7500 70.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 71.5000 -64.0 + 115.5000 72.2500 -64.0 + 107.5000 72.2500 -64.0 + 105.5000 73.2500 -64.0 + 90.5000 73.2500 -64.0 + 90.2500 75.5000 -64.0 + 88.5000 77.2500 -64.0 + 85.5000 75.2500 -64.0 + 84.2500 79.5000 -64.0 + 82.5000 80.2500 -64.0 + 80.5000 79.2500 -64.0 + 80.2500 82.5000 -64.0 + 79.5000 84.2500 -64.0 + 77.5000 84.2500 -64.0 + 70.5000 90.2500 -64.0 + 68.2500 91.5000 -64.0 + 67.2500 93.5000 -64.0 + 69.5000 92.7500 -64.0 + 74.5000 88.7500 -64.0 + 76.5000 88.7500 -64.0 + 77.5000 90.7500 -64.0 + 78.7500 86.5000 -64.0 + 80.5000 85.7500 -64.0 + 80.7500 84.5000 -64.0 + 83.5000 81.7500 -64.0 + 86.5000 81.7500 -64.0 + 88.5000 80.7500 -64.0 + 87.7500 79.5000 -64.0 + 88.5000 77.7500 -64.0 + 90.2500 78.5000 -64.0 + 94.5000 78.7500 -64.0 + 96.5000 77.7500 -64.0 + 112.5000 77.7500 -64.0 + 114.2500 78.5000 -64.0 + 115.5000 80.7500 -64.0 + 117.5000 81.7500 -64.0 + 121.5000 79.7500 -64.0 + 122.5000 80.7500 -64.0 + 126.5000 78.7500 -64.0 + 127.2500 79.5000 -64.0 + 126.2500 81.5000 -64.0 + 128.2500 85.5000 -64.0 + 128.2500 87.5000 -64.0 + 127.5000 89.2500 -64.0 + 128.5000 89.7500 -64.0 + 128.7500 87.5000 -64.0 + 130.5000 85.7500 -64.0 + 132.5000 85.7500 -64.0 + 133.5000 83.7500 -64.0 + 134.2500 84.5000 -64.0 + 135.2500 86.5000 -64.0 + 137.5000 88.7500 -64.0 + 139.5000 89.7500 -64.0 + 143.2500 91.5000 -64.0 + 143.7500 90.5000 -64.0 + 142.5000 90.2500 -64.0 + 139.7500 87.5000 -64.0 + 139.7500 82.5000 -64.0 + 138.7500 79.5000 -64.0 + 137.5000 81.2500 -64.0 + 135.7500 80.5000 -64.0 + 133.5000 80.2500 -64.0 + 131.7500 78.5000 -64.0 + 132.5000 76.7500 -64.0 + 136.5000 74.7500 -64.0 + 133.5000 73.2500 -64.0 + 131.5000 74.2500 -64.0 + 129.5000 74.2500 -64.0 + 126.5000 73.2500 -64.0 + 124.7500 72.5000 -64.0 + 125.7500 71.5000 -64.0 +} -64.0 +{ -64.0 + 141.2500 73.5000 -64.0 + 141.2500 76.5000 -64.0 + 142.7500 73.5000 -64.0 +} -64.0 +{ -64.0 + 68.2500 77.5000 -64.0 + 66.5000 79.2500 -64.0 + 64.5000 79.2500 -64.0 + 65.2500 80.5000 -64.0 + 65.2500 83.5000 -64.0 + 63.2500 90.5000 -64.0 + 67.7500 81.5000 -64.0 + 71.5000 78.7500 -64.0 + 70.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 76.2500 79.5000 -64.0 + 75.5000 81.2500 -64.0 + 76.2500 82.5000 -64.0 + 77.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 147.2500 79.5000 -64.0 + 146.5000 80.2500 -64.0 + 148.2500 82.5000 -64.0 + 150.2500 86.5000 -64.0 + 150.2500 89.5000 -64.0 + 151.2500 91.5000 -64.0 + 151.2500 93.5000 -64.0 + 152.2500 95.5000 -64.0 + 152.2500 98.5000 -64.0 + 151.5000 100.2500 -64.0 + 150.5000 99.2500 -64.0 + 150.2500 101.5000 -64.0 + 151.2500 103.5000 -64.0 + 151.2500 107.5000 -64.0 + 153.2500 111.5000 -64.0 + 155.5000 111.7500 -64.0 + 155.7500 110.5000 -64.0 + 154.5000 111.2500 -64.0 + 152.7500 109.5000 -64.0 + 152.7500 107.5000 -64.0 + 153.5000 105.7500 -64.0 + 154.2500 107.5000 -64.0 + 155.5000 107.7500 -64.0 + 155.7500 105.5000 -64.0 + 153.7500 101.5000 -64.0 + 153.7500 97.5000 -64.0 + 152.7500 95.5000 -64.0 + 152.7500 90.5000 -64.0 + 150.7500 86.5000 -64.0 + 150.7500 81.5000 -64.0 + 152.5000 80.7500 -64.0 + 151.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 61.2500 93.5000 -64.0 + 58.2500 100.5000 -64.0 + 57.2500 105.5000 -64.0 + 58.2500 107.5000 -64.0 + 59.7500 106.5000 -64.0 + 64.5000 97.7500 -64.0 + 63.5000 97.2500 -64.0 + 61.5000 99.2500 -64.0 + 60.7500 97.5000 -64.0 + 61.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 112.5000 -64.0 + 116.5000 113.2500 -64.0 + 106.5000 113.2500 -64.0 + 100.5000 116.2500 -64.0 + 96.5000 116.2500 -64.0 + 94.5000 118.2500 -64.0 + 94.2500 123.5000 -64.0 + 95.2500 126.5000 -64.0 + 93.5000 127.2500 -64.0 + 91.7500 125.5000 -64.0 + 91.7500 122.5000 -64.0 + 90.7500 119.5000 -64.0 + 87.7500 115.5000 -64.0 + 85.5000 115.2500 -64.0 + 83.2500 121.5000 -64.0 + 84.2500 123.5000 -64.0 + 84.2500 128.5000 -64.0 + 86.2500 130.5000 -64.0 + 94.5000 130.7500 -64.0 + 96.5000 128.7500 -64.0 + 98.2500 129.5000 -64.0 + 99.7500 129.5000 -64.0 + 100.7500 127.5000 -64.0 + 103.5000 123.7500 -64.0 + 105.2500 124.5000 -64.0 + 108.5000 124.7500 -64.0 + 114.5000 121.7500 -64.0 + 117.5000 121.7500 -64.0 + 121.2500 124.5000 -64.0 + 124.5000 124.7500 -64.0 + 124.7500 117.5000 -64.0 + 119.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 120.5000 -64.0 + 129.5000 124.2500 -64.0 + 129.2500 126.5000 -64.0 + 127.5000 128.2500 -64.0 + 127.2500 130.5000 -64.0 + 129.5000 130.7500 -64.0 + 132.5000 125.7500 -64.0 + 132.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 140.5000 -64.0 + 88.5000 141.2500 -64.0 + 89.5000 143.7500 -64.0 + 93.2500 146.5000 -64.0 + 96.5000 146.7500 -64.0 + 100.5000 149.7500 -64.0 + 105.5000 150.7500 -64.0 + 108.5000 151.7500 -64.0 + 116.5000 147.7500 -64.0 + 120.7500 145.5000 -64.0 + 121.7500 143.5000 -64.0 + 120.5000 144.2500 -64.0 + 119.7500 143.5000 -64.0 + 112.5000 143.2500 -64.0 + 110.5000 144.2500 -64.0 + 106.5000 144.2500 -64.0 + 99.5000 143.2500 -64.0 + 97.7500 142.5000 -64.0 + 92.5000 142.2500 -64.0 + 90.7500 140.5000 -64.0 +} -64.0 +{ -64.0 + 108.7500 34.5000 -64.0 + 109.5000 33.7500 -64.0 + 111.2500 35.5000 -64.0 + 109.5000 37.2500 -64.0 + 108.7500 36.5000 -64.0 +} -64.0 +{ -64.0 + 111.7500 35.5000 -64.0 + 112.5000 34.7500 -64.0 + 114.5000 34.7500 -64.0 + 115.2500 36.5000 -64.0 + 113.5000 37.2500 -64.0 +} -64.0 +{ -64.0 + 92.7500 40.5000 -64.0 + 93.5000 39.7500 -64.0 + 94.2500 40.5000 -64.0 + 93.5000 42.2500 -64.0 +} -64.0 +{ -64.0 + 96.7500 41.5000 -64.0 + 98.5000 40.7500 -64.0 + 99.2500 42.5000 -64.0 + 97.5000 43.2500 -64.0 +} -64.0 +{ -64.0 + 99.7500 43.5000 -64.0 + 100.5000 42.7500 -64.0 + 101.2500 43.5000 -64.0 + 100.5000 44.2500 -64.0 +} -64.0 +{ -64.0 + 136.7500 59.5000 -64.0 + 137.5000 58.7500 -64.0 + 138.2500 59.5000 -64.0 + 137.5000 60.2500 -64.0 +} -64.0 +{ -64.0 + 111.7500 73.5000 -64.0 + 112.5000 72.7500 -64.0 + 113.2500 73.5000 -64.0 + 121.5000 73.7500 -64.0 + 130.5000 74.7500 -64.0 + 132.2500 75.5000 -64.0 + 131.5000 76.2500 -64.0 + 107.5000 76.2500 -64.0 + 105.7500 75.5000 -64.0 + 107.5000 74.7500 -64.0 + 109.5000 73.7500 -64.0 +} -64.0 +{ -64.0 + 90.7500 76.5000 -64.0 + 91.5000 75.7500 -64.0 + 92.2500 76.5000 -64.0 + 91.5000 77.2500 -64.0 +} -64.0 +{ -64.0 + 69.5000 77.7500 -64.0 + 70.2500 78.5000 -64.0 + 68.5000 80.2500 -64.0 + 67.7500 79.5000 -64.0 +} -64.0 +{ -64.0 + 136.7500 83.5000 -64.0 + 137.5000 82.7500 -64.0 + 138.2500 83.5000 -64.0 + 137.5000 84.2500 -64.0 +} -64.0 +{ -64.0 + 59.7500 100.5000 -64.0 + 60.5000 99.7500 -64.0 + 61.2500 100.5000 -64.0 + 60.5000 101.2500 -64.0 +} -64.0 +{ -64.0 + 104.7500 116.5000 -64.0 + 106.5000 115.7500 -64.0 + 111.5000 116.7500 -64.0 + 112.2500 118.5000 -64.0 + 111.2500 121.5000 -64.0 + 108.5000 123.2500 -64.0 + 101.7500 119.5000 -64.0 + 102.5000 117.7500 -64.0 +} -64.0 +v 233 z -166.000000 -64.0 +{ -64.0 + 105.2500 34.5000 -64.0 + 102.5000 37.2500 -64.0 + 100.5000 35.2500 -64.0 + 98.5000 36.2500 -64.0 + 98.2500 40.5000 -64.0 + 100.2500 42.5000 -64.0 + 102.5000 42.7500 -64.0 + 103.5000 40.7500 -64.0 + 106.5000 40.7500 -64.0 + 108.2500 41.5000 -64.0 + 111.5000 38.7500 -64.0 + 112.2500 40.5000 -64.0 + 118.5000 40.7500 -64.0 + 119.2500 42.5000 -64.0 + 121.2500 43.5000 -64.0 + 121.2500 45.5000 -64.0 + 122.2500 47.5000 -64.0 + 125.7500 47.5000 -64.0 + 123.5000 47.2500 -64.0 + 122.7500 45.5000 -64.0 + 126.5000 42.7500 -64.0 + 124.7500 41.5000 -64.0 + 125.5000 40.7500 -64.0 + 125.7500 37.5000 -64.0 + 122.7500 36.5000 -64.0 + 121.5000 37.2500 -64.0 + 118.7500 34.5000 -64.0 + 116.5000 35.2500 -64.0 + 113.5000 34.2500 -64.0 + 111.5000 35.2500 -64.0 + 110.5000 34.2500 -64.0 + 108.5000 35.2500 -64.0 +} -64.0 +{ -64.0 + 87.2500 38.5000 -64.0 + 91.2500 41.5000 -64.0 + 91.7500 40.5000 -64.0 + 93.5000 39.7500 -64.0 + 90.7500 38.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 43.5000 -64.0 + 87.2500 44.5000 -64.0 + 86.5000 46.2500 -64.0 + 87.2500 47.5000 -64.0 + 88.5000 45.7500 -64.0 + 90.5000 44.7500 -64.0 + 89.7500 43.5000 -64.0 +} -64.0 +{ -64.0 + 94.2500 44.5000 -64.0 + 95.2500 45.5000 -64.0 + 93.5000 46.2500 -64.0 + 95.2500 48.5000 -64.0 + 94.5000 52.2500 -64.0 + 92.5000 52.2500 -64.0 + 95.2500 53.5000 -64.0 + 96.5000 52.7500 -64.0 + 95.7500 50.5000 -64.0 + 96.5000 48.7500 -64.0 + 98.5000 48.7500 -64.0 + 99.5000 45.7500 -64.0 + 110.5000 51.7500 -64.0 + 111.2500 53.5000 -64.0 + 120.5000 56.7500 -64.0 + 121.5000 56.2500 -64.0 + 106.5000 48.2500 -64.0 + 100.5000 44.2500 -64.0 + 97.5000 45.2500 -64.0 +} -64.0 +{ -64.0 + 129.2500 44.5000 -64.0 + 129.2500 46.5000 -64.0 + 130.7500 44.5000 -64.0 +} -64.0 +{ -64.0 + 137.2500 60.5000 -64.0 + 136.5000 61.2500 -64.0 + 137.5000 63.7500 -64.0 + 139.5000 64.7500 -64.0 + 140.2500 66.5000 -64.0 + 141.2500 68.5000 -64.0 + 143.5000 68.7500 -64.0 + 143.7500 67.5000 -64.0 + 141.7500 65.5000 -64.0 + 143.7500 64.5000 -64.0 + 142.7500 62.5000 -64.0 + 138.5000 62.2500 -64.0 +} -64.0 +{ -64.0 + 129.2500 63.5000 -64.0 + 127.2500 66.5000 -64.0 + 128.2500 68.5000 -64.0 + 128.2500 72.5000 -64.0 + 129.5000 72.7500 -64.0 + 132.2500 76.5000 -64.0 + 132.2500 78.5000 -64.0 + 134.2500 82.5000 -64.0 + 134.2500 84.5000 -64.0 + 136.2500 86.5000 -64.0 + 146.2500 93.5000 -64.0 + 146.7500 92.5000 -64.0 + 142.7500 88.5000 -64.0 + 141.7500 79.5000 -64.0 + 139.5000 76.2500 -64.0 + 135.7500 74.5000 -64.0 + 135.7500 71.5000 -64.0 + 134.5000 72.2500 -64.0 + 131.5000 72.2500 -64.0 + 128.7500 68.5000 -64.0 + 128.7500 66.5000 -64.0 + 129.7500 64.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 68.5000 -64.0 + 80.5000 70.2500 -64.0 + 78.5000 70.2500 -64.0 + 83.2500 73.5000 -64.0 + 84.2500 75.5000 -64.0 + 83.5000 77.2500 -64.0 + 79.5000 77.2500 -64.0 + 77.5000 75.2500 -64.0 + 77.2500 77.5000 -64.0 + 75.5000 79.2500 -64.0 + 72.7500 77.5000 -64.0 + 72.7500 75.5000 -64.0 + 71.5000 75.2500 -64.0 + 67.5000 77.2500 -64.0 + 67.2500 79.5000 -64.0 + 64.2500 85.5000 -64.0 + 63.2500 90.5000 -64.0 + 58.2500 100.5000 -64.0 + 57.2500 105.5000 -64.0 + 58.2500 107.5000 -64.0 + 60.7500 106.5000 -64.0 + 67.5000 93.7500 -64.0 + 71.5000 90.7500 -64.0 + 79.5000 86.7500 -64.0 + 81.7500 84.5000 -64.0 + 86.5000 75.7500 -64.0 + 86.7500 72.5000 -64.0 + 83.5000 72.2500 -64.0 + 82.7500 70.5000 -64.0 + 85.7500 68.5000 -64.0 +} -64.0 +{ -64.0 + 74.2500 69.5000 -64.0 + 73.5000 70.2500 -64.0 + 74.2500 71.5000 -64.0 + 74.2500 73.5000 -64.0 + 74.7500 72.5000 -64.0 + 75.5000 70.7500 -64.0 +} -64.0 +{ -64.0 + 147.2500 77.5000 -64.0 + 143.2500 79.5000 -64.0 + 147.2500 80.5000 -64.0 + 150.2500 86.5000 -64.0 + 150.2500 89.5000 -64.0 + 151.2500 91.5000 -64.0 + 151.2500 96.5000 -64.0 + 150.5000 98.2500 -64.0 + 149.5000 97.2500 -64.0 + 149.2500 99.5000 -64.0 + 150.2500 101.5000 -64.0 + 150.2500 105.5000 -64.0 + 152.2500 111.5000 -64.0 + 155.5000 111.7500 -64.0 + 155.7500 107.5000 -64.0 + 153.7500 101.5000 -64.0 + 153.7500 96.5000 -64.0 + 152.7500 94.5000 -64.0 + 151.7500 85.5000 -64.0 + 149.7500 78.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 111.5000 -64.0 + 113.5000 114.2500 -64.0 + 112.7500 113.5000 -64.0 + 106.5000 113.2500 -64.0 + 100.5000 116.2500 -64.0 + 92.5000 115.2500 -64.0 + 89.2500 116.5000 -64.0 + 91.2500 120.5000 -64.0 + 92.2500 127.5000 -64.0 + 90.5000 128.2500 -64.0 + 85.7500 118.5000 -64.0 + 84.5000 118.2500 -64.0 + 82.5000 120.2500 -64.0 + 82.2500 124.5000 -64.0 + 85.2500 130.5000 -64.0 + 92.5000 130.7500 -64.0 + 94.2500 132.5000 -64.0 + 97.5000 132.7500 -64.0 + 100.7500 127.5000 -64.0 + 103.5000 124.7500 -64.0 + 107.5000 124.7500 -64.0 + 109.5000 123.7500 -64.0 + 117.5000 122.7500 -64.0 + 125.5000 127.7500 -64.0 + 131.5000 124.7500 -64.0 + 131.7500 121.5000 -64.0 + 130.7500 119.5000 -64.0 + 131.5000 117.7500 -64.0 + 130.5000 116.2500 -64.0 + 122.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 149.5000 -64.0 + 114.2500 150.5000 -64.0 + 115.2500 153.5000 -64.0 + 115.7500 152.5000 -64.0 +} -64.0 +{ -64.0 + 134.7500 77.5000 -64.0 + 135.5000 76.7500 -64.0 + 136.2500 77.5000 -64.0 + 135.5000 78.2500 -64.0 +} -64.0 +{ -64.0 + 70.5000 78.7500 -64.0 + 72.5000 78.7500 -64.0 + 77.2500 83.5000 -64.0 + 76.5000 85.2500 -64.0 + 72.5000 88.2500 -64.0 + 70.5000 89.2500 -64.0 + 63.5000 97.2500 -64.0 + 62.7500 95.5000 -64.0 + 63.7500 90.5000 -64.0 + 66.7500 86.5000 -64.0 + 67.7500 81.5000 -64.0 +} -64.0 +{ -64.0 + 58.7500 104.5000 -64.0 + 59.5000 103.7500 -64.0 + 60.2500 104.5000 -64.0 + 59.5000 105.2500 -64.0 +} -64.0 +{ -64.0 + 152.7500 106.5000 -64.0 + 153.5000 105.7500 -64.0 + 155.2500 109.5000 -64.0 + 154.5000 111.2500 -64.0 + 152.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 120.7500 112.5000 -64.0 + 121.5000 111.7500 -64.0 + 122.2500 112.5000 -64.0 + 121.2500 114.5000 -64.0 + 122.2500 117.5000 -64.0 + 120.5000 118.2500 -64.0 + 118.5000 119.2500 -64.0 + 116.5000 119.2500 -64.0 + 108.5000 123.2500 -64.0 + 104.5000 123.2500 -64.0 + 102.7500 122.5000 -64.0 + 96.5000 122.2500 -64.0 + 94.7500 120.5000 -64.0 + 96.5000 117.7500 -64.0 + 101.7500 117.5000 -64.0 + 108.5000 114.7500 -64.0 + 110.2500 115.5000 -64.0 + 116.5000 115.7500 -64.0 + 118.5000 113.7500 -64.0 +} -64.0 +v 207 z -168.000000 -64.0 +{ -64.0 + 105.2500 35.5000 -64.0 + 104.2500 37.5000 -64.0 + 102.5000 38.2500 -64.0 + 100.5000 36.2500 -64.0 + 98.5000 37.2500 -64.0 + 97.2500 45.5000 -64.0 + 95.5000 46.2500 -64.0 + 93.7500 44.5000 -64.0 + 92.5000 46.2500 -64.0 + 89.5000 46.2500 -64.0 + 89.2500 49.5000 -64.0 + 94.5000 56.7500 -64.0 + 95.7500 52.5000 -64.0 + 99.7500 46.5000 -64.0 + 106.5000 42.7500 -64.0 + 114.5000 42.7500 -64.0 + 119.5000 44.7500 -64.0 + 123.2500 48.5000 -64.0 + 126.5000 48.7500 -64.0 + 128.5000 46.2500 -64.0 + 126.5000 47.2500 -64.0 + 122.7500 46.5000 -64.0 + 125.5000 43.7500 -64.0 + 128.7500 43.5000 -64.0 + 124.7500 42.5000 -64.0 + 124.7500 38.5000 -64.0 + 120.5000 38.2500 -64.0 + 119.7500 36.5000 -64.0 + 118.5000 36.2500 -64.0 + 116.5000 37.2500 -64.0 + 113.7500 35.5000 -64.0 + 112.5000 36.2500 -64.0 +} -64.0 +{ -64.0 + 92.2500 39.5000 -64.0 + 91.2500 41.5000 -64.0 + 93.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 84.2500 63.5000 -64.0 + 84.2500 64.5000 -64.0 + 82.2500 68.5000 -64.0 + 75.5000 74.2500 -64.0 + 70.5000 74.2500 -64.0 + 69.2500 75.5000 -64.0 + 64.2500 85.5000 -64.0 + 63.2500 90.5000 -64.0 + 58.5000 101.2500 -64.0 + 58.2500 106.5000 -64.0 + 60.5000 106.7500 -64.0 + 63.5000 103.7500 -64.0 + 63.7500 101.5000 -64.0 + 68.7500 91.5000 -64.0 + 66.5000 92.2500 -64.0 + 66.2500 93.5000 -64.0 + 64.5000 95.2500 -64.0 + 63.7500 93.5000 -64.0 + 64.5000 91.7500 -64.0 + 66.7500 85.5000 -64.0 + 68.7500 80.5000 -64.0 + 71.5000 76.7500 -64.0 + 75.2500 79.5000 -64.0 + 75.2500 82.5000 -64.0 + 76.2500 84.5000 -64.0 + 73.5000 87.2500 -64.0 + 71.5000 88.2500 -64.0 + 69.5000 90.7500 -64.0 + 78.5000 86.7500 -64.0 + 82.7500 82.5000 -64.0 + 86.7500 74.5000 -64.0 + 87.7500 67.5000 -64.0 + 85.2500 72.5000 -64.0 + 84.5000 74.2500 -64.0 + 83.7500 73.5000 -64.0 + 82.7500 71.5000 -64.0 + 83.5000 69.7500 -64.0 + 85.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 63.5000 -64.0 + 129.5000 65.2500 -64.0 + 129.2500 67.5000 -64.0 + 130.2500 69.5000 -64.0 + 130.2500 72.5000 -64.0 + 133.2500 78.5000 -64.0 + 134.2500 83.5000 -64.0 + 136.5000 85.7500 -64.0 + 146.2500 92.5000 -64.0 + 146.7500 91.5000 -64.0 + 142.7500 87.5000 -64.0 + 142.7500 84.5000 -64.0 + 141.7500 82.5000 -64.0 + 142.5000 78.7500 -64.0 + 146.5000 78.7500 -64.0 + 150.2500 86.5000 -64.0 + 151.2500 95.5000 -64.0 + 150.5000 97.2500 -64.0 + 147.7500 93.5000 -64.0 + 147.2500 94.5000 -64.0 + 149.2500 98.5000 -64.0 + 149.2500 101.5000 -64.0 + 151.2500 105.5000 -64.0 + 151.2500 109.5000 -64.0 + 153.5000 111.7500 -64.0 + 155.5000 110.7500 -64.0 + 155.7500 105.5000 -64.0 + 153.7500 101.5000 -64.0 + 153.7500 94.5000 -64.0 + 152.7500 92.5000 -64.0 + 151.7500 83.5000 -64.0 + 150.7500 81.5000 -64.0 + 150.7500 79.5000 -64.0 + 147.7500 75.5000 -64.0 + 143.5000 75.2500 -64.0 + 139.5000 73.2500 -64.0 + 137.7500 69.5000 -64.0 + 136.5000 70.2500 -64.0 + 134.7500 69.5000 -64.0 + 132.5000 71.2500 -64.0 + 131.7500 70.5000 -64.0 + 131.7500 67.5000 -64.0 + 133.5000 65.7500 -64.0 + 136.5000 65.7500 -64.0 + 138.2500 66.5000 -64.0 + 138.5000 68.7500 -64.0 + 138.7500 65.5000 -64.0 + 136.5000 65.2500 -64.0 + 134.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 111.5000 -64.0 + 113.5000 114.2500 -64.0 + 111.7500 113.5000 -64.0 + 107.5000 113.2500 -64.0 + 101.5000 116.2500 -64.0 + 94.5000 116.2500 -64.0 + 91.5000 115.2500 -64.0 + 87.2500 116.5000 -64.0 + 83.5000 123.2500 -64.0 + 83.2500 127.5000 -64.0 + 84.2500 130.5000 -64.0 + 89.5000 135.7500 -64.0 + 94.5000 136.7500 -64.0 + 97.5000 133.7500 -64.0 + 97.7500 131.5000 -64.0 + 100.5000 127.7500 -64.0 + 104.7500 125.5000 -64.0 + 103.7500 123.5000 -64.0 + 101.5000 123.2500 -64.0 + 99.5000 124.2500 -64.0 + 97.5000 124.2500 -64.0 + 97.2500 126.5000 -64.0 + 95.5000 128.2500 -64.0 + 93.7500 127.5000 -64.0 + 93.7500 125.5000 -64.0 + 92.5000 125.2500 -64.0 + 89.7500 122.5000 -64.0 + 93.5000 117.7500 -64.0 + 100.5000 117.7500 -64.0 + 106.5000 114.7500 -64.0 + 110.5000 114.7500 -64.0 + 112.5000 115.7500 -64.0 + 114.5000 114.7500 -64.0 + 116.5000 114.7500 -64.0 + 122.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 113.5000 -64.0 + 131.2500 115.5000 -64.0 + 131.2500 118.5000 -64.0 + 129.5000 120.2500 -64.0 + 129.2500 124.5000 -64.0 + 125.5000 127.2500 -64.0 + 122.7500 123.5000 -64.0 + 123.5000 121.7500 -64.0 + 125.5000 121.7500 -64.0 + 124.7500 120.5000 -64.0 + 119.5000 119.2500 -64.0 + 118.5000 121.2500 -64.0 + 115.5000 121.2500 -64.0 + 113.5000 122.2500 -64.0 + 113.2500 124.5000 -64.0 + 114.5000 123.7500 -64.0 + 118.5000 123.7500 -64.0 + 126.5000 130.7500 -64.0 + 132.5000 122.7500 -64.0 + 132.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 142.5000 -64.0 + 116.5000 143.2500 -64.0 + 113.5000 146.2500 -64.0 + 111.7500 145.5000 -64.0 + 107.5000 145.2500 -64.0 + 107.2500 146.5000 -64.0 + 111.2500 148.5000 -64.0 + 114.2500 154.5000 -64.0 + 116.5000 153.7500 -64.0 + 116.7500 148.5000 -64.0 + 119.5000 144.7500 -64.0 + 119.7500 142.5000 -64.0 +} -64.0 +{ -64.0 + 89.7500 47.5000 -64.0 + 91.5000 46.7500 -64.0 + 92.2500 48.5000 -64.0 + 90.5000 49.2500 -64.0 +} -64.0 +{ -64.0 + 59.7500 103.5000 -64.0 + 60.5000 102.7500 -64.0 + 61.2500 104.5000 -64.0 + 59.5000 106.2500 -64.0 + 58.7500 105.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 106.5000 -64.0 + 153.5000 105.7500 -64.0 + 155.2500 108.5000 -64.0 + 154.5000 110.2500 -64.0 + 152.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 86.7500 122.5000 -64.0 + 87.5000 121.7500 -64.0 + 88.2500 122.5000 -64.0 + 87.5000 124.2500 -64.0 +} -64.0 +v 246 z -170.000000 -64.0 +{ -64.0 + 105.2500 36.5000 -64.0 + 104.5000 37.2500 -64.0 + 102.5000 38.2500 -64.0 + 100.7500 37.5000 -64.0 + 98.5000 38.2500 -64.0 + 98.2500 39.5000 -64.0 + 95.5000 42.2500 -64.0 + 93.5000 42.2500 -64.0 + 93.2500 44.5000 -64.0 + 89.5000 48.2500 -64.0 + 88.2500 54.5000 -64.0 + 85.2500 60.5000 -64.0 + 86.5000 60.7500 -64.0 + 87.7500 58.5000 -64.0 + 88.7500 56.5000 -64.0 + 89.5000 54.7500 -64.0 + 91.5000 53.7500 -64.0 + 93.2500 54.5000 -64.0 + 94.2500 56.5000 -64.0 + 91.2500 63.5000 -64.0 + 92.7500 62.5000 -64.0 + 96.5000 55.7500 -64.0 + 96.7500 52.5000 -64.0 + 103.5000 46.7500 -64.0 + 109.5000 43.7500 -64.0 + 112.5000 43.7500 -64.0 + 117.5000 45.7500 -64.0 + 125.2500 52.5000 -64.0 + 128.2500 58.5000 -64.0 + 128.5000 62.7500 -64.0 + 130.5000 59.7500 -64.0 + 132.2500 60.5000 -64.0 + 133.2500 62.5000 -64.0 + 131.5000 64.2500 -64.0 + 129.5000 65.2500 -64.0 + 129.2500 67.5000 -64.0 + 130.2500 69.5000 -64.0 + 130.2500 71.5000 -64.0 + 133.2500 77.5000 -64.0 + 133.2500 79.5000 -64.0 + 134.2500 82.5000 -64.0 + 135.5000 82.7500 -64.0 + 146.2500 92.5000 -64.0 + 149.2500 98.5000 -64.0 + 149.2500 100.5000 -64.0 + 150.2500 102.5000 -64.0 + 150.2500 104.5000 -64.0 + 151.2500 106.5000 -64.0 + 151.5000 109.7500 -64.0 + 153.5000 110.7500 -64.0 + 155.5000 109.7500 -64.0 + 155.7500 105.5000 -64.0 + 154.7500 103.5000 -64.0 + 154.7500 101.5000 -64.0 + 153.7500 99.5000 -64.0 + 153.7500 94.5000 -64.0 + 152.7500 92.5000 -64.0 + 152.7500 87.5000 -64.0 + 151.7500 85.5000 -64.0 + 151.7500 82.5000 -64.0 + 149.7500 76.5000 -64.0 + 146.7500 73.5000 -64.0 + 142.5000 72.2500 -64.0 + 134.7500 63.5000 -64.0 + 134.7500 61.5000 -64.0 + 131.7500 57.5000 -64.0 + 128.7500 51.5000 -64.0 + 126.7500 50.5000 -64.0 + 128.5000 48.7500 -64.0 + 128.5000 45.2500 -64.0 + 126.5000 44.2500 -64.0 + 124.7500 39.5000 -64.0 + 120.5000 39.2500 -64.0 + 119.7500 37.5000 -64.0 + 110.5000 37.2500 -64.0 +} -64.0 +{ -64.0 + 84.2500 62.5000 -64.0 + 83.5000 63.2500 -64.0 + 83.2500 65.5000 -64.0 + 80.5000 68.2500 -64.0 + 76.5000 71.2500 -64.0 + 74.5000 71.2500 -64.0 + 71.5000 72.2500 -64.0 + 69.2500 74.5000 -64.0 + 68.2500 76.5000 -64.0 + 67.5000 78.2500 -64.0 + 65.2500 84.5000 -64.0 + 63.5000 88.2500 -64.0 + 63.2500 90.5000 -64.0 + 62.2500 93.5000 -64.0 + 59.5000 99.2500 -64.0 + 59.2500 101.5000 -64.0 + 58.2500 104.5000 -64.0 + 59.2500 106.5000 -64.0 + 61.7500 106.5000 -64.0 + 69.7500 90.5000 -64.0 + 68.2500 90.5000 -64.0 + 65.5000 94.2500 -64.0 + 64.7500 93.5000 -64.0 + 65.7500 88.5000 -64.0 + 66.7500 85.5000 -64.0 + 69.7500 78.5000 -64.0 + 72.5000 75.7500 -64.0 + 76.5000 73.7500 -64.0 + 77.2500 74.5000 -64.0 + 77.2500 83.5000 -64.0 + 71.5000 88.7500 -64.0 + 76.5000 86.7500 -64.0 + 83.7500 81.5000 -64.0 + 85.7500 77.5000 -64.0 + 86.5000 75.7500 -64.0 + 88.7500 69.5000 -64.0 + 90.7500 64.5000 -64.0 + 89.2500 65.5000 -64.0 + 88.2500 67.5000 -64.0 + 87.5000 69.2500 -64.0 + 85.2500 75.5000 -64.0 + 83.5000 76.2500 -64.0 + 81.7500 74.5000 -64.0 + 80.7500 72.5000 -64.0 + 82.7500 71.5000 -64.0 + 83.7500 66.5000 -64.0 + 84.7500 63.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 112.5000 -64.0 + 102.5000 116.2500 -64.0 + 103.5000 116.7500 -64.0 + 107.5000 113.7500 -64.0 + 109.5000 113.7500 -64.0 + 111.2500 115.5000 -64.0 + 115.5000 115.7500 -64.0 + 119.5000 113.7500 -64.0 + 122.5000 113.7500 -64.0 + 123.7500 112.5000 -64.0 + 121.5000 112.2500 -64.0 + 117.5000 114.2500 -64.0 + 112.5000 114.2500 -64.0 + 108.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 115.5000 -64.0 + 88.5000 116.2500 -64.0 + 87.2500 118.5000 -64.0 + 100.5000 118.7500 -64.0 + 101.7500 117.5000 -64.0 + 94.5000 117.2500 -64.0 +} -64.0 +{ -64.0 + 131.2500 115.5000 -64.0 + 130.2500 117.5000 -64.0 + 130.7500 118.5000 -64.0 + 131.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 119.5000 -64.0 + 85.2500 120.5000 -64.0 + 84.2500 125.5000 -64.0 + 85.2500 128.5000 -64.0 + 86.5000 128.7500 -64.0 + 86.7500 125.5000 -64.0 + 85.7500 123.5000 -64.0 + 86.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 120.5000 -64.0 + 120.5000 121.2500 -64.0 + 118.5000 121.2500 -64.0 + 112.5000 124.2500 -64.0 + 110.7500 123.5000 -64.0 + 108.5000 123.2500 -64.0 + 108.2500 124.5000 -64.0 + 113.5000 124.7500 -64.0 + 115.5000 123.7500 -64.0 + 117.5000 123.7500 -64.0 + 121.5000 125.7500 -64.0 + 122.2500 127.5000 -64.0 + 124.2500 131.5000 -64.0 + 124.2500 134.5000 -64.0 + 126.5000 134.7500 -64.0 + 128.5000 131.7500 -64.0 + 128.7500 129.5000 -64.0 + 130.7500 125.5000 -64.0 + 129.7500 123.5000 -64.0 + 127.5000 123.2500 -64.0 + 129.2500 124.5000 -64.0 + 129.2500 127.5000 -64.0 + 126.5000 129.2500 -64.0 + 125.7500 128.5000 -64.0 + 122.7500 123.5000 -64.0 + 123.5000 122.7500 -64.0 + 126.7500 122.5000 -64.0 + 124.5000 122.2500 -64.0 + 122.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 124.5000 -64.0 + 93.2500 126.5000 -64.0 + 87.5000 131.2500 -64.0 + 89.2500 134.5000 -64.0 + 95.5000 138.7500 -64.0 + 97.5000 137.7500 -64.0 + 97.7500 131.5000 -64.0 + 100.7500 127.5000 -64.0 + 105.5000 125.7500 -64.0 + 103.7500 124.5000 -64.0 + 100.5000 124.2500 -64.0 + 96.5000 127.2500 -64.0 + 94.5000 134.2500 -64.0 + 92.5000 134.2500 -64.0 + 90.7500 132.5000 -64.0 + 90.7500 130.5000 -64.0 + 94.5000 127.7500 -64.0 + 94.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 139.5000 -64.0 + 120.5000 140.2500 -64.0 + 118.5000 141.2500 -64.0 + 114.5000 144.2500 -64.0 + 105.5000 144.2500 -64.0 + 102.5000 143.2500 -64.0 + 103.5000 144.7500 -64.0 + 109.5000 147.7500 -64.0 + 111.5000 145.7500 -64.0 + 114.5000 145.7500 -64.0 + 116.5000 144.7500 -64.0 + 117.2500 145.5000 -64.0 + 117.5000 148.7500 -64.0 + 117.7500 146.5000 -64.0 + 121.7500 141.5000 -64.0 + 122.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 154.5000 -64.0 + 113.2500 156.5000 -64.0 + 113.7500 155.5000 -64.0 +} -64.0 +{ -64.0 + 140.7500 75.5000 -64.0 + 142.5000 74.7500 -64.0 + 146.2500 77.5000 -64.0 + 149.2500 82.5000 -64.0 + 149.2500 84.5000 -64.0 + 150.2500 86.5000 -64.0 + 151.2500 94.5000 -64.0 + 150.5000 96.2500 -64.0 + 141.7500 84.5000 -64.0 + 141.7500 82.5000 -64.0 + 139.7500 81.5000 -64.0 + 139.7500 77.5000 -64.0 +} -64.0 +{ -64.0 + 134.7500 76.5000 -64.0 + 136.5000 75.7500 -64.0 + 138.2500 77.5000 -64.0 + 137.5000 78.2500 -64.0 + 135.5000 78.2500 -64.0 +} -64.0 +{ -64.0 + 60.5000 102.7500 -64.0 + 62.2500 103.5000 -64.0 + 60.5000 106.2500 -64.0 + 58.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 105.5000 -64.0 + 153.5000 104.7500 -64.0 + 155.2500 107.5000 -64.0 + 154.5000 109.2500 -64.0 + 152.7500 108.5000 -64.0 +} -64.0 +v 234 z -172.000000 -64.0 +{ -64.0 + 104.2500 38.5000 -64.0 + 103.5000 40.2500 -64.0 + 98.5000 39.2500 -64.0 + 98.2500 40.5000 -64.0 + 94.5000 43.2500 -64.0 + 90.2500 48.5000 -64.0 + 83.2500 62.5000 -64.0 + 76.5000 69.2500 -64.0 + 74.5000 69.2500 -64.0 + 69.5000 73.2500 -64.0 + 59.5000 100.2500 -64.0 + 59.2500 105.5000 -64.0 + 62.5000 105.7500 -64.0 + 66.7500 98.5000 -64.0 + 67.7500 93.5000 -64.0 + 70.5000 89.7500 -64.0 + 78.5000 84.7500 -64.0 + 82.5000 80.7500 -64.0 + 84.5000 79.7500 -64.0 + 91.7500 65.5000 -64.0 + 100.5000 50.7500 -64.0 + 104.5000 47.7500 -64.0 + 110.5000 44.7500 -64.0 + 115.5000 45.7500 -64.0 + 122.2500 51.5000 -64.0 + 127.2500 59.5000 -64.0 + 127.2500 61.5000 -64.0 + 128.5000 62.7500 -64.0 + 128.7500 60.5000 -64.0 + 127.7500 58.5000 -64.0 + 129.5000 56.7500 -64.0 + 131.2500 57.5000 -64.0 + 134.2500 62.5000 -64.0 + 133.2500 65.5000 -64.0 + 131.5000 66.2500 -64.0 + 129.5000 65.2500 -64.0 + 129.2500 67.5000 -64.0 + 130.2500 69.5000 -64.0 + 130.2500 71.5000 -64.0 + 133.2500 77.5000 -64.0 + 133.2500 79.5000 -64.0 + 139.2500 83.5000 -64.0 + 140.2500 85.5000 -64.0 + 145.2500 90.5000 -64.0 + 149.2500 97.5000 -64.0 + 149.2500 99.5000 -64.0 + 152.2500 109.5000 -64.0 + 154.5000 109.7500 -64.0 + 156.7500 106.5000 -64.0 + 155.7500 104.5000 -64.0 + 155.7500 102.5000 -64.0 + 153.7500 98.5000 -64.0 + 152.7500 86.5000 -64.0 + 148.7500 73.5000 -64.0 + 144.5000 71.2500 -64.0 + 138.5000 65.2500 -64.0 + 128.7500 50.5000 -64.0 + 128.7500 46.5000 -64.0 + 125.7500 44.5000 -64.0 + 125.7500 42.5000 -64.0 + 123.5000 40.2500 -64.0 + 120.5000 41.2500 -64.0 + 118.5000 38.2500 -64.0 + 116.5000 39.2500 -64.0 + 114.5000 38.2500 -64.0 + 112.5000 39.2500 -64.0 +} -64.0 +{ -64.0 + 106.2500 112.5000 -64.0 + 104.5000 113.2500 -64.0 + 103.5000 115.2500 -64.0 + 99.5000 118.2500 -64.0 + 96.5000 118.2500 -64.0 + 94.5000 119.2500 -64.0 + 89.5000 118.2500 -64.0 + 88.2500 119.5000 -64.0 + 92.5000 119.7500 -64.0 + 94.5000 121.7500 -64.0 + 100.5000 119.7500 -64.0 + 106.5000 113.7500 -64.0 + 109.5000 113.7500 -64.0 + 111.2500 115.5000 -64.0 + 115.2500 116.5000 -64.0 + 118.7500 115.5000 -64.0 + 113.5000 115.2500 -64.0 + 109.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 113.5000 -64.0 + 121.5000 114.2500 -64.0 + 119.5000 114.2500 -64.0 + 122.5000 115.7500 -64.0 + 125.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 116.5000 -64.0 + 130.2500 117.5000 -64.0 + 131.5000 117.7500 -64.0 + 131.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 118.5000 -64.0 + 119.2500 120.5000 -64.0 + 114.5000 124.2500 -64.0 + 111.5000 124.2500 -64.0 + 109.7500 123.5000 -64.0 + 106.5000 125.2500 -64.0 + 98.5000 125.2500 -64.0 + 95.5000 124.2500 -64.0 + 94.2500 127.5000 -64.0 + 90.2500 131.5000 -64.0 + 89.2500 133.5000 -64.0 + 90.2500 135.5000 -64.0 + 92.5000 130.7500 -64.0 + 94.5000 129.7500 -64.0 + 96.2500 130.5000 -64.0 + 96.2500 135.5000 -64.0 + 95.5000 137.2500 -64.0 + 93.5000 138.2500 -64.0 + 91.7500 136.5000 -64.0 + 91.2500 137.5000 -64.0 + 101.2500 145.5000 -64.0 + 103.5000 145.7500 -64.0 + 107.2500 148.5000 -64.0 + 108.7500 148.5000 -64.0 + 107.7500 146.5000 -64.0 + 108.5000 145.7500 -64.0 + 112.5000 145.7500 -64.0 + 116.5000 143.7500 -64.0 + 118.2500 144.5000 -64.0 + 118.5000 148.7500 -64.0 + 118.7500 145.5000 -64.0 + 123.5000 140.7500 -64.0 + 129.5000 132.7500 -64.0 + 129.7500 130.5000 -64.0 + 126.5000 131.2500 -64.0 + 124.7500 128.5000 -64.0 + 124.7500 125.5000 -64.0 + 126.5000 124.7500 -64.0 + 130.5000 126.7500 -64.0 + 130.7500 125.5000 -64.0 + 128.7500 123.5000 -64.0 + 125.5000 123.2500 -64.0 + 121.7500 121.5000 -64.0 + 121.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 123.5000 -64.0 + 85.2500 125.5000 -64.0 + 86.5000 125.7500 -64.0 + 86.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 160.5000 -64.0 + 113.2500 161.5000 -64.0 + 114.7500 160.5000 -64.0 +} -64.0 +{ -64.0 + 98.7500 46.5000 -64.0 + 99.5000 45.7500 -64.0 + 100.2500 46.5000 -64.0 + 99.5000 47.2500 -64.0 +} -64.0 +{ -64.0 + 93.7500 49.5000 -64.0 + 94.5000 48.7500 -64.0 + 98.2500 50.5000 -64.0 + 96.2500 53.5000 -64.0 + 95.2500 55.5000 -64.0 + 93.2500 60.5000 -64.0 + 87.5000 67.2500 -64.0 + 87.2500 70.5000 -64.0 + 86.2500 73.5000 -64.0 + 78.5000 81.2500 -64.0 + 68.5000 90.2500 -64.0 + 66.5000 90.2500 -64.0 + 65.7500 88.5000 -64.0 + 66.7500 85.5000 -64.0 + 69.7500 78.5000 -64.0 + 72.5000 74.7500 -64.0 + 76.5000 72.7500 -64.0 + 76.7500 71.5000 -64.0 + 80.5000 68.7500 -64.0 + 82.5000 68.7500 -64.0 + 82.7500 67.5000 -64.0 + 86.7500 59.5000 -64.0 + 89.7500 57.5000 -64.0 + 88.7500 55.5000 -64.0 + 90.5000 53.7500 -64.0 + 94.5000 53.7500 -64.0 + 94.7500 51.5000 -64.0 +} -64.0 +{ -64.0 + 124.7500 51.5000 -64.0 + 126.5000 50.7500 -64.0 + 128.2500 51.5000 -64.0 + 128.2500 53.5000 -64.0 + 126.5000 54.2500 -64.0 +} -64.0 +{ -64.0 + 140.7500 75.5000 -64.0 + 141.5000 74.7500 -64.0 + 145.5000 74.7500 -64.0 + 147.2500 76.5000 -64.0 + 147.2500 78.5000 -64.0 + 149.2500 82.5000 -64.0 + 149.2500 85.5000 -64.0 + 150.2500 87.5000 -64.0 + 150.2500 90.5000 -64.0 + 151.2500 92.5000 -64.0 + 150.5000 94.2500 -64.0 + 148.7500 92.5000 -64.0 + 147.7500 90.5000 -64.0 + 145.5000 88.2500 -64.0 + 140.7500 81.5000 -64.0 + 137.7500 77.5000 -64.0 + 138.5000 76.7500 -64.0 +} -64.0 +{ -64.0 + 65.7500 91.5000 -64.0 + 66.5000 90.7500 -64.0 + 67.2500 91.5000 -64.0 + 65.5000 94.2500 -64.0 + 64.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 62.5000 99.7500 -64.0 + 63.2500 100.5000 -64.0 + 62.5000 101.2500 -64.0 + 62.2500 103.5000 -64.0 + 60.5000 104.2500 -64.0 + 59.7500 102.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 104.5000 -64.0 + 153.5000 103.7500 -64.0 + 154.2500 104.5000 -64.0 + 155.2500 106.5000 -64.0 + 154.5000 108.2500 -64.0 + 152.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 115.7500 124.5000 -64.0 + 117.5000 123.7500 -64.0 + 120.5000 124.7500 -64.0 + 123.2500 128.5000 -64.0 + 123.2500 133.5000 -64.0 + 122.2500 136.5000 -64.0 + 119.5000 140.2500 -64.0 + 111.5000 144.2500 -64.0 + 109.7500 143.5000 -64.0 + 105.5000 143.2500 -64.0 + 101.7500 141.5000 -64.0 + 98.7500 137.5000 -64.0 + 98.7500 134.5000 -64.0 + 97.7500 132.5000 -64.0 + 98.7500 129.5000 -64.0 + 101.5000 126.7500 -64.0 + 103.5000 126.7500 -64.0 + 105.5000 125.7500 -64.0 + 109.5000 125.7500 -64.0 + 111.5000 124.7500 -64.0 +} -64.0 +v 203 z -174.000000 -64.0 +{ -64.0 + 106.2500 39.5000 -64.0 + 103.5000 41.2500 -64.0 + 100.5000 40.2500 -64.0 + 96.5000 44.2500 -64.0 + 94.5000 44.2500 -64.0 + 94.2500 45.5000 -64.0 + 89.2500 50.5000 -64.0 + 86.2500 56.5000 -64.0 + 77.5000 66.2500 -64.0 + 69.5000 72.2500 -64.0 + 59.5000 100.2500 -64.0 + 60.2500 101.5000 -64.0 + 60.2500 104.5000 -64.0 + 63.5000 104.7500 -64.0 + 65.7500 101.5000 -64.0 + 67.7500 92.5000 -64.0 + 76.5000 83.7500 -64.0 + 78.5000 82.7500 -64.0 + 86.7500 75.5000 -64.0 + 92.7500 64.5000 -64.0 + 98.7500 56.5000 -64.0 + 100.7500 52.5000 -64.0 + 107.5000 46.7500 -64.0 + 114.5000 46.7500 -64.0 + 120.2500 50.5000 -64.0 + 123.2500 54.5000 -64.0 + 123.2500 56.5000 -64.0 + 126.2500 60.5000 -64.0 + 130.2500 68.5000 -64.0 + 131.2500 74.5000 -64.0 + 139.5000 81.7500 -64.0 + 144.2500 88.5000 -64.0 + 150.2500 98.5000 -64.0 + 150.2500 103.5000 -64.0 + 152.2500 107.5000 -64.0 + 155.5000 107.7500 -64.0 + 156.7500 103.5000 -64.0 + 154.7500 99.5000 -64.0 + 153.7500 91.5000 -64.0 + 151.7500 84.5000 -64.0 + 150.7500 77.5000 -64.0 + 148.5000 72.2500 -64.0 + 146.5000 71.2500 -64.0 + 136.7500 60.5000 -64.0 + 123.7500 42.5000 -64.0 + 119.5000 42.2500 -64.0 + 118.7500 40.5000 -64.0 + 109.5000 40.2500 -64.0 +} -64.0 +{ -64.0 + 107.2500 111.5000 -64.0 + 105.2500 112.5000 -64.0 + 107.5000 112.7500 -64.0 + 114.2500 116.5000 -64.0 + 118.5000 116.7500 -64.0 + 120.2500 117.5000 -64.0 + 119.2500 119.5000 -64.0 + 114.5000 124.2500 -64.0 + 110.5000 124.2500 -64.0 + 108.5000 125.2500 -64.0 + 101.5000 125.2500 -64.0 + 98.5000 124.2500 -64.0 + 97.7500 122.5000 -64.0 + 101.5000 119.7500 -64.0 + 102.7500 116.5000 -64.0 + 94.5000 121.2500 -64.0 + 96.2500 123.5000 -64.0 + 96.2500 126.5000 -64.0 + 93.5000 129.2500 -64.0 + 89.5000 131.2500 -64.0 + 89.5000 136.7500 -64.0 + 91.5000 133.7500 -64.0 + 93.5000 132.7500 -64.0 + 95.2500 133.5000 -64.0 + 99.2500 141.5000 -64.0 + 104.2500 144.5000 -64.0 + 113.5000 144.7500 -64.0 + 116.5000 143.7500 -64.0 + 121.5000 139.7500 -64.0 + 122.2500 141.5000 -64.0 + 120.5000 143.2500 -64.0 + 120.2500 147.5000 -64.0 + 122.7500 142.5000 -64.0 + 130.5000 133.7500 -64.0 + 130.7500 131.5000 -64.0 + 129.2500 132.5000 -64.0 + 128.2500 134.5000 -64.0 + 123.5000 138.2500 -64.0 + 122.7500 137.5000 -64.0 + 124.5000 134.7500 -64.0 + 124.7500 128.5000 -64.0 + 126.5000 126.7500 -64.0 + 129.5000 126.7500 -64.0 + 131.5000 128.7500 -64.0 + 131.7500 126.5000 -64.0 + 128.7500 122.5000 -64.0 + 125.5000 124.2500 -64.0 + 122.2500 124.5000 -64.0 + 123.2500 126.5000 -64.0 + 123.2500 131.5000 -64.0 + 121.2500 137.5000 -64.0 + 118.5000 140.2500 -64.0 + 113.5000 143.2500 -64.0 + 106.5000 143.2500 -64.0 + 103.5000 142.2500 -64.0 + 100.7500 139.5000 -64.0 + 97.7500 133.5000 -64.0 + 97.7500 129.5000 -64.0 + 100.5000 126.7500 -64.0 + 107.5000 126.7500 -64.0 + 117.5000 123.7500 -64.0 + 121.5000 123.7500 -64.0 + 120.7500 122.5000 -64.0 + 120.7500 119.5000 -64.0 + 123.5000 116.7500 -64.0 + 127.2500 117.5000 -64.0 + 127.7500 116.5000 -64.0 + 122.7500 115.5000 -64.0 + 114.5000 115.2500 -64.0 + 108.7500 111.5000 -64.0 +} -64.0 +{ -64.0 + 85.2500 124.5000 -64.0 + 84.2500 126.5000 -64.0 + 86.5000 126.7500 -64.0 + 86.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 143.5000 -64.0 + 104.5000 147.7500 -64.0 + 107.2500 150.5000 -64.0 + 107.7500 149.5000 -64.0 + 105.5000 147.2500 -64.0 + 98.7500 143.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 148.5000 -64.0 + 119.2500 150.5000 -64.0 + 119.7500 149.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 161.5000 -64.0 + 112.2500 162.5000 -64.0 + 113.5000 162.7500 -64.0 + 113.7500 161.5000 -64.0 +} -64.0 +{ -64.0 + 97.7500 46.5000 -64.0 + 98.5000 45.7500 -64.0 + 100.2500 46.5000 -64.0 + 101.2500 48.5000 -64.0 + 99.5000 50.2500 -64.0 + 98.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 94.7500 50.5000 -64.0 + 95.5000 49.7500 -64.0 + 98.2500 52.5000 -64.0 + 97.2500 54.5000 -64.0 + 94.5000 57.2500 -64.0 + 94.2500 59.5000 -64.0 + 91.2500 62.5000 -64.0 + 90.2500 64.5000 -64.0 + 88.5000 65.2500 -64.0 + 88.2500 66.5000 -64.0 + 85.2500 73.5000 -64.0 + 82.2500 76.5000 -64.0 + 81.2500 78.5000 -64.0 + 79.5000 79.2500 -64.0 + 73.5000 85.2500 -64.0 + 69.5000 88.2500 -64.0 + 67.5000 89.2500 -64.0 + 66.7500 87.5000 -64.0 + 67.7500 84.5000 -64.0 + 71.7500 74.5000 -64.0 + 77.5000 68.7500 -64.0 + 81.5000 66.7500 -64.0 + 84.5000 63.7500 -64.0 + 86.7500 56.5000 -64.0 + 89.5000 54.7500 -64.0 + 92.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 124.7500 52.5000 -64.0 + 126.5000 51.7500 -64.0 + 128.2500 52.5000 -64.0 + 129.2500 54.5000 -64.0 + 130.5000 54.7500 -64.0 + 136.2500 63.5000 -64.0 + 136.2500 65.5000 -64.0 + 134.5000 67.2500 -64.0 + 132.5000 67.2500 -64.0 + 128.7500 62.5000 -64.0 + 126.7500 58.5000 -64.0 + 128.7500 57.5000 -64.0 + 124.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 142.7500 74.5000 -64.0 + 144.5000 73.7500 -64.0 + 146.2500 74.5000 -64.0 + 148.2500 78.5000 -64.0 + 148.2500 80.5000 -64.0 + 149.2500 82.5000 -64.0 + 150.2500 90.5000 -64.0 + 149.5000 92.2500 -64.0 + 138.7500 77.5000 -64.0 + 139.5000 75.7500 -64.0 + 141.5000 75.7500 -64.0 +} -64.0 +{ -64.0 + 63.5000 97.7500 -64.0 + 64.2500 98.5000 -64.0 + 63.5000 99.2500 -64.0 + 63.2500 101.5000 -64.0 + 62.5000 103.2500 -64.0 + 60.7500 102.5000 -64.0 + 60.7500 100.5000 -64.0 +} -64.0 +{ -64.0 + 152.7500 101.5000 -64.0 + 153.5000 100.7500 -64.0 + 155.2500 103.5000 -64.0 + 154.5000 105.2500 -64.0 + 152.7500 104.5000 -64.0 +} -64.0 +v 187 z -176.000000 -64.0 +{ -64.0 + 103.2500 41.5000 -64.0 + 102.5000 42.2500 -64.0 + 99.5000 42.2500 -64.0 + 91.2500 49.5000 -64.0 + 82.2500 59.5000 -64.0 + 81.2500 61.5000 -64.0 + 69.5000 72.2500 -64.0 + 69.2500 74.5000 -64.0 + 68.2500 77.5000 -64.0 + 66.2500 82.5000 -64.0 + 65.5000 84.2500 -64.0 + 62.2500 93.5000 -64.0 + 60.5000 97.2500 -64.0 + 60.2500 103.5000 -64.0 + 63.5000 103.7500 -64.0 + 65.7500 100.5000 -64.0 + 66.7500 95.5000 -64.0 + 67.7500 92.5000 -64.0 + 79.5000 79.7500 -64.0 + 87.7500 73.5000 -64.0 + 91.7500 65.5000 -64.0 + 97.7500 58.5000 -64.0 + 103.5000 50.7500 -64.0 + 108.5000 47.7500 -64.0 + 112.5000 47.7500 -64.0 + 117.5000 49.7500 -64.0 + 121.2500 53.5000 -64.0 + 124.2500 58.5000 -64.0 + 129.2500 66.5000 -64.0 + 131.2500 72.5000 -64.0 + 140.2500 80.5000 -64.0 + 144.2500 87.5000 -64.0 + 145.2500 89.5000 -64.0 + 148.2500 93.5000 -64.0 + 151.2500 99.5000 -64.0 + 151.2500 103.5000 -64.0 + 152.5000 104.7500 -64.0 + 154.5000 105.7500 -64.0 + 155.5000 103.7500 -64.0 + 154.7500 102.5000 -64.0 + 154.7500 96.5000 -64.0 + 153.7500 94.5000 -64.0 + 153.7500 91.5000 -64.0 + 152.7500 89.5000 -64.0 + 152.7500 87.5000 -64.0 + 151.7500 85.5000 -64.0 + 151.7500 82.5000 -64.0 + 150.7500 80.5000 -64.0 + 150.7500 77.5000 -64.0 + 148.7500 72.5000 -64.0 + 140.7500 64.5000 -64.0 + 139.5000 62.2500 -64.0 + 131.7500 52.5000 -64.0 + 130.7500 50.5000 -64.0 + 123.7500 44.5000 -64.0 + 121.5000 44.2500 -64.0 + 117.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 115.5000 -64.0 + 118.2500 118.5000 -64.0 + 118.2500 120.5000 -64.0 + 114.5000 124.2500 -64.0 + 112.5000 124.2500 -64.0 + 110.5000 125.2500 -64.0 + 111.5000 125.7500 -64.0 + 113.5000 124.7500 -64.0 + 116.5000 124.7500 -64.0 + 120.5000 122.7500 -64.0 + 120.7500 118.5000 -64.0 + 119.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 98.2500 120.5000 -64.0 + 97.2500 122.5000 -64.0 + 98.2500 125.5000 -64.0 + 100.2500 126.5000 -64.0 + 104.7500 126.5000 -64.0 + 99.7500 122.5000 -64.0 + 99.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 121.5000 -64.0 + 128.2500 123.5000 -64.0 + 124.5000 127.2500 -64.0 + 121.2500 137.5000 -64.0 + 112.5000 143.2500 -64.0 + 108.5000 143.2500 -64.0 + 102.5000 141.2500 -64.0 + 94.7500 130.5000 -64.0 + 90.5000 130.2500 -64.0 + 88.7500 128.5000 -64.0 + 88.5000 123.2500 -64.0 + 88.2500 129.5000 -64.0 + 90.2500 131.5000 -64.0 + 88.2500 135.5000 -64.0 + 89.5000 135.7500 -64.0 + 93.5000 133.7500 -64.0 + 95.2500 134.5000 -64.0 + 97.2500 138.5000 -64.0 + 103.2500 143.5000 -64.0 + 107.2500 144.5000 -64.0 + 112.5000 144.7500 -64.0 + 117.5000 142.7500 -64.0 + 120.5000 139.7500 -64.0 + 122.5000 138.7500 -64.0 + 124.5000 134.7500 -64.0 + 124.7500 130.5000 -64.0 + 127.5000 127.7500 -64.0 + 130.5000 127.7500 -64.0 + 132.2500 129.5000 -64.0 + 132.2500 131.5000 -64.0 + 133.7500 130.5000 -64.0 + 131.7500 126.5000 -64.0 + 131.7500 123.5000 -64.0 + 129.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 125.5000 -64.0 + 106.2500 126.5000 -64.0 + 108.5000 126.7500 -64.0 + 108.7500 125.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 137.5000 -64.0 + 123.2500 142.5000 -64.0 + 125.7500 140.5000 -64.0 + 126.7500 138.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 149.5000 -64.0 + 120.2500 152.5000 -64.0 + 121.5000 150.7500 -64.0 +} -64.0 +{ -64.0 + 107.2500 151.5000 -64.0 + 107.2500 152.5000 -64.0 + 109.2500 156.5000 -64.0 + 109.7500 155.5000 -64.0 + 108.7500 152.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 152.5000 -64.0 + 114.5000 153.2500 -64.0 + 114.2500 156.5000 -64.0 + 116.5000 154.7500 -64.0 +} -64.0 +{ -64.0 + 97.7500 46.5000 -64.0 + 98.5000 45.7500 -64.0 + 101.2500 49.5000 -64.0 + 98.5000 51.2500 -64.0 + 97.7500 50.5000 -64.0 +} -64.0 +{ -64.0 + 93.7500 50.5000 -64.0 + 94.5000 49.7500 -64.0 + 98.2500 52.5000 -64.0 + 96.2500 57.5000 -64.0 + 88.5000 65.2500 -64.0 + 88.2500 67.5000 -64.0 + 85.2500 71.5000 -64.0 + 84.2500 73.5000 -64.0 + 72.5000 85.2500 -64.0 + 68.5000 87.2500 -64.0 + 67.7500 85.5000 -64.0 + 68.7500 82.5000 -64.0 + 72.7500 72.5000 -64.0 + 75.5000 69.7500 -64.0 + 80.7500 65.5000 -64.0 + 81.7500 63.5000 -64.0 + 89.5000 54.7500 -64.0 + 91.7500 54.5000 -64.0 +} -64.0 +{ -64.0 + 124.7500 53.5000 -64.0 + 125.5000 52.7500 -64.0 + 129.5000 52.7500 -64.0 + 132.2500 56.5000 -64.0 + 132.5000 59.7500 -64.0 + 136.2500 62.5000 -64.0 + 138.2500 66.5000 -64.0 + 139.5000 66.7500 -64.0 + 143.2500 70.5000 -64.0 + 146.2500 74.5000 -64.0 + 148.2500 78.5000 -64.0 + 148.2500 81.5000 -64.0 + 149.2500 83.5000 -64.0 + 149.2500 86.5000 -64.0 + 150.2500 88.5000 -64.0 + 149.5000 89.2500 -64.0 + 147.5000 88.2500 -64.0 + 139.7500 78.5000 -64.0 + 139.7500 76.5000 -64.0 + 141.5000 74.7500 -64.0 + 140.7500 73.5000 -64.0 + 136.5000 73.2500 -64.0 + 133.7500 70.5000 -64.0 + 133.7500 67.5000 -64.0 + 130.7500 65.5000 -64.0 + 130.7500 62.5000 -64.0 + 127.7500 59.5000 -64.0 +} -64.0 +{ -64.0 + 62.7500 96.5000 -64.0 + 63.5000 95.7500 -64.0 + 64.2500 96.5000 -64.0 + 64.2500 98.5000 -64.0 + 63.2500 101.5000 -64.0 + 61.5000 102.2500 -64.0 + 60.7500 100.5000 -64.0 +} -64.0 +v 182 z -178.000000 -64.0 +{ -64.0 + 106.2500 41.5000 -64.0 + 105.5000 42.2500 -64.0 + 102.5000 42.2500 -64.0 + 94.5000 46.2500 -64.0 + 72.2500 69.5000 -64.0 + 69.5000 73.2500 -64.0 + 69.2500 75.5000 -64.0 + 68.2500 78.5000 -64.0 + 66.5000 82.2500 -64.0 + 66.2500 84.5000 -64.0 + 63.2500 90.5000 -64.0 + 62.2500 95.5000 -64.0 + 61.5000 97.2500 -64.0 + 61.2500 101.5000 -64.0 + 63.5000 101.7500 -64.0 + 65.5000 98.7500 -64.0 + 65.7500 96.5000 -64.0 + 67.7500 91.5000 -64.0 + 75.7500 83.5000 -64.0 + 76.7500 81.5000 -64.0 + 89.7500 69.5000 -64.0 + 90.7500 67.5000 -64.0 + 96.5000 59.7500 -64.0 + 98.7500 58.5000 -64.0 + 99.7500 56.5000 -64.0 + 104.5000 51.7500 -64.0 + 110.5000 48.7500 -64.0 + 113.5000 49.7500 -64.0 + 119.2500 52.5000 -64.0 + 129.2500 66.5000 -64.0 + 131.2500 70.5000 -64.0 + 137.5000 76.7500 -64.0 + 139.5000 77.7500 -64.0 + 139.7500 75.5000 -64.0 + 133.7500 69.5000 -64.0 + 133.7500 67.5000 -64.0 + 130.7500 64.5000 -64.0 + 130.7500 62.5000 -64.0 + 127.7500 59.5000 -64.0 + 123.7500 52.5000 -64.0 + 122.7500 50.5000 -64.0 + 123.5000 48.7500 -64.0 + 125.2500 51.5000 -64.0 + 128.5000 51.7500 -64.0 + 131.2500 55.5000 -64.0 + 133.5000 59.7500 -64.0 + 135.5000 60.7500 -64.0 + 141.2500 67.5000 -64.0 + 147.2500 75.5000 -64.0 + 147.2500 77.5000 -64.0 + 148.2500 79.5000 -64.0 + 148.2500 83.5000 -64.0 + 147.5000 85.2500 -64.0 + 140.2500 78.5000 -64.0 + 145.2500 88.5000 -64.0 + 149.2500 93.5000 -64.0 + 152.2500 97.5000 -64.0 + 152.2500 100.5000 -64.0 + 153.5000 101.7500 -64.0 + 153.7500 97.5000 -64.0 + 152.7500 95.5000 -64.0 + 152.7500 90.5000 -64.0 + 151.7500 88.5000 -64.0 + 151.7500 83.5000 -64.0 + 150.7500 81.5000 -64.0 + 150.7500 77.5000 -64.0 + 146.7500 69.5000 -64.0 + 135.7500 57.5000 -64.0 + 134.7500 55.5000 -64.0 + 128.5000 48.2500 -64.0 + 115.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 116.5000 -64.0 + 115.2500 117.5000 -64.0 + 116.5000 117.7500 -64.0 + 118.2500 120.5000 -64.0 + 117.5000 121.2500 -64.0 + 113.5000 119.2500 -64.0 + 114.2500 120.5000 -64.0 + 115.2500 122.5000 -64.0 + 114.2500 124.5000 -64.0 + 119.5000 124.7500 -64.0 + 121.5000 123.7500 -64.0 + 121.7500 121.5000 -64.0 + 119.7500 117.5000 -64.0 + 117.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 121.5000 -64.0 + 100.2500 126.5000 -64.0 + 103.5000 126.7500 -64.0 +} -64.0 +{ -64.0 + 87.2500 127.5000 -64.0 + 86.5000 128.2500 -64.0 + 84.5000 129.2500 -64.0 + 84.2500 130.5000 -64.0 + 86.2500 131.5000 -64.0 + 87.5000 130.7500 -64.0 + 89.5000 130.7500 -64.0 + 91.2500 134.5000 -64.0 + 93.5000 134.7500 -64.0 + 95.2500 135.5000 -64.0 + 98.2500 139.5000 -64.0 + 104.5000 143.7500 -64.0 + 113.5000 144.7500 -64.0 + 115.2500 145.5000 -64.0 + 115.2500 148.5000 -64.0 + 116.7500 147.5000 -64.0 + 115.7500 145.5000 -64.0 + 116.7500 143.5000 -64.0 + 119.5000 140.7500 -64.0 + 121.5000 139.7500 -64.0 + 124.5000 134.7500 -64.0 + 124.7500 131.5000 -64.0 + 127.5000 128.7500 -64.0 + 128.2500 129.5000 -64.0 + 130.5000 129.7500 -64.0 + 134.5000 131.7500 -64.0 + 135.7500 130.5000 -64.0 + 132.5000 128.2500 -64.0 + 127.5000 127.2500 -64.0 + 124.5000 130.2500 -64.0 + 122.2500 136.5000 -64.0 + 116.5000 141.2500 -64.0 + 110.5000 143.2500 -64.0 + 108.7500 142.5000 -64.0 + 105.5000 142.2500 -64.0 + 102.5000 141.2500 -64.0 + 93.7500 131.5000 -64.0 + 89.5000 130.2500 -64.0 + 88.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 139.5000 -64.0 + 125.5000 140.2500 -64.0 + 120.2500 150.5000 -64.0 + 121.7500 151.5000 -64.0 + 125.7500 141.5000 -64.0 + 128.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 143.5000 -64.0 + 94.2500 144.5000 -64.0 + 98.7500 144.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 148.5000 -64.0 + 108.5000 152.2500 -64.0 + 105.5000 150.2500 -64.0 + 105.2500 151.5000 -64.0 + 108.2500 155.5000 -64.0 + 109.5000 155.7500 -64.0 + 111.5000 149.7500 -64.0 + 113.2500 150.5000 -64.0 + 114.5000 152.7500 -64.0 + 114.7500 149.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 108.5000 42.7500 -64.0 + 113.5000 42.7500 -64.0 + 115.2500 44.5000 -64.0 + 118.5000 44.7500 -64.0 + 119.2500 46.5000 -64.0 + 118.5000 48.2500 -64.0 + 114.7500 46.5000 -64.0 + 108.5000 46.2500 -64.0 + 105.5000 47.2500 -64.0 + 103.7500 46.5000 -64.0 + 104.5000 45.7500 -64.0 + 106.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 96.7500 47.5000 -64.0 + 98.5000 46.7500 -64.0 + 101.2500 50.5000 -64.0 + 99.2500 51.5000 -64.0 + 97.2500 55.5000 -64.0 + 92.2500 60.5000 -64.0 + 87.2500 68.5000 -64.0 + 77.5000 79.2500 -64.0 + 70.5000 85.2500 -64.0 + 68.7500 84.5000 -64.0 + 69.7500 79.5000 -64.0 + 71.5000 77.7500 -64.0 + 71.7500 74.5000 -64.0 + 77.5000 66.7500 -64.0 + 79.5000 65.7500 -64.0 + 89.5000 55.7500 -64.0 + 94.5000 49.7500 -64.0 + 96.5000 49.7500 -64.0 + 95.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 62.7500 95.5000 -64.0 + 63.5000 94.7500 -64.0 + 64.2500 95.5000 -64.0 + 63.5000 96.2500 -64.0 +} -64.0 +v 164 z -180.000000 -64.0 +{ -64.0 + 107.2500 41.5000 -64.0 + 106.5000 42.2500 -64.0 + 104.5000 42.2500 -64.0 + 101.2500 43.5000 -64.0 + 94.5000 46.2500 -64.0 + 91.5000 49.2500 -64.0 + 87.5000 55.2500 -64.0 + 85.5000 56.2500 -64.0 + 70.2500 71.5000 -64.0 + 69.2500 76.5000 -64.0 + 68.2500 78.5000 -64.0 + 67.2500 85.5000 -64.0 + 64.2500 91.5000 -64.0 + 63.2500 96.5000 -64.0 + 63.7500 97.5000 -64.0 + 65.7500 93.5000 -64.0 + 67.5000 89.7500 -64.0 + 69.5000 88.7500 -64.0 + 77.7500 80.5000 -64.0 + 78.7500 78.5000 -64.0 + 76.5000 79.2500 -64.0 + 72.5000 82.2500 -64.0 + 70.7500 81.5000 -64.0 + 70.7500 78.5000 -64.0 + 74.7500 70.5000 -64.0 + 77.5000 66.7500 -64.0 + 82.7500 62.5000 -64.0 + 96.5000 47.7500 -64.0 + 98.5000 47.7500 -64.0 + 100.2500 48.5000 -64.0 + 100.2500 51.5000 -64.0 + 91.2500 61.5000 -64.0 + 89.2500 65.5000 -64.0 + 84.2500 70.5000 -64.0 + 83.2500 72.5000 -64.0 + 84.5000 72.7500 -64.0 + 90.7500 67.5000 -64.0 + 91.7500 65.5000 -64.0 + 105.5000 51.7500 -64.0 + 111.5000 49.7500 -64.0 + 116.5000 51.7500 -64.0 + 126.2500 61.5000 -64.0 + 127.2500 63.5000 -64.0 + 137.2500 74.5000 -64.0 + 138.2500 76.5000 -64.0 + 146.2500 87.5000 -64.0 + 147.2500 89.5000 -64.0 + 149.2500 90.5000 -64.0 + 150.5000 89.7500 -64.0 + 150.7500 79.5000 -64.0 + 149.7500 77.5000 -64.0 + 149.7500 74.5000 -64.0 + 145.7500 68.5000 -64.0 + 144.7500 66.5000 -64.0 + 136.5000 58.2500 -64.0 + 134.5000 57.2500 -64.0 + 132.7500 53.5000 -64.0 + 129.7500 49.5000 -64.0 + 124.5000 46.2500 -64.0 + 115.7500 41.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 115.5000 -64.0 + 113.5000 119.2500 -64.0 + 110.5000 119.2500 -64.0 + 104.5000 121.2500 -64.0 + 101.5000 120.2500 -64.0 + 99.2500 126.5000 -64.0 + 100.2500 128.5000 -64.0 + 102.5000 128.7500 -64.0 + 104.5000 123.7500 -64.0 + 108.5000 121.7500 -64.0 + 110.2500 122.5000 -64.0 + 110.2500 124.5000 -64.0 + 108.5000 126.2500 -64.0 + 105.5000 126.2500 -64.0 + 105.2500 127.5000 -64.0 + 108.5000 127.7500 -64.0 + 110.5000 126.7500 -64.0 + 112.5000 126.7500 -64.0 + 114.5000 124.7500 -64.0 + 115.2500 126.5000 -64.0 + 116.5000 126.7500 -64.0 + 119.5000 123.7500 -64.0 + 120.2500 124.5000 -64.0 + 121.5000 123.7500 -64.0 + 121.7500 120.5000 -64.0 + 120.7500 117.5000 -64.0 + 119.5000 117.2500 -64.0 + 117.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 128.5000 -64.0 + 125.2500 130.5000 -64.0 + 128.5000 130.7500 -64.0 + 130.2500 132.5000 -64.0 + 136.5000 132.7500 -64.0 + 136.7500 131.5000 -64.0 + 130.5000 131.2500 -64.0 +} -64.0 +{ -64.0 + 87.2500 131.5000 -64.0 + 86.2500 133.5000 -64.0 + 87.5000 133.7500 -64.0 + 90.5000 132.7500 -64.0 + 92.2500 135.5000 -64.0 + 96.2500 136.5000 -64.0 + 97.2500 138.5000 -64.0 + 103.2500 143.5000 -64.0 + 108.2500 144.5000 -64.0 + 109.2500 146.5000 -64.0 + 107.5000 148.2500 -64.0 + 104.5000 147.2500 -64.0 + 100.7500 143.5000 -64.0 + 98.5000 143.2500 -64.0 + 101.5000 146.7500 -64.0 + 105.2500 149.5000 -64.0 + 108.5000 149.7500 -64.0 + 111.5000 148.7500 -64.0 + 114.5000 149.7500 -64.0 + 115.5000 147.7500 -64.0 + 115.5000 145.2500 -64.0 + 111.5000 143.2500 -64.0 + 102.5000 141.2500 -64.0 + 98.7500 137.5000 -64.0 + 97.7500 135.5000 -64.0 + 90.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 132.5000 -64.0 + 123.5000 133.2500 -64.0 + 123.2500 135.5000 -64.0 + 118.5000 140.7500 -64.0 + 122.5000 138.7500 -64.0 + 122.7500 137.5000 -64.0 + 124.5000 135.7500 -64.0 + 124.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 138.5000 -64.0 + 122.5000 144.2500 -64.0 + 120.5000 145.2500 -64.0 + 120.2500 146.5000 -64.0 + 122.5000 146.7500 -64.0 + 126.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 108.5000 42.7500 -64.0 + 112.5000 42.7500 -64.0 + 126.5000 49.7500 -64.0 + 129.2500 52.5000 -64.0 + 132.2500 56.5000 -64.0 + 133.2500 58.5000 -64.0 + 139.5000 64.7500 -64.0 + 144.2500 71.5000 -64.0 + 147.2500 76.5000 -64.0 + 147.2500 79.5000 -64.0 + 146.5000 81.2500 -64.0 + 143.5000 80.2500 -64.0 + 140.7500 77.5000 -64.0 + 139.7500 75.5000 -64.0 + 133.7500 68.5000 -64.0 + 133.7500 66.5000 -64.0 + 131.7500 64.5000 -64.0 + 128.7500 60.5000 -64.0 + 126.7500 56.5000 -64.0 + 125.5000 56.2500 -64.0 + 124.7500 54.5000 -64.0 + 120.7500 50.5000 -64.0 + 115.5000 47.2500 -64.0 + 108.5000 46.2500 -64.0 + 106.5000 48.2500 -64.0 + 104.5000 48.2500 -64.0 + 102.7500 47.5000 -64.0 + 102.7500 45.5000 -64.0 +} -64.0 +v 148 z -182.000000 -64.0 +{ -64.0 + 109.2500 40.5000 -64.0 + 108.5000 41.2500 -64.0 + 106.2500 41.5000 -64.0 + 93.5000 47.2500 -64.0 + 90.2500 51.5000 -64.0 + 89.2500 53.5000 -64.0 + 90.5000 53.7500 -64.0 + 98.5000 47.7500 -64.0 + 101.5000 47.7500 -64.0 + 101.7500 46.5000 -64.0 + 104.5000 44.7500 -64.0 + 108.5000 42.7500 -64.0 + 113.5000 42.7500 -64.0 + 115.2500 43.5000 -64.0 + 120.2500 46.5000 -64.0 + 127.2500 50.5000 -64.0 + 130.2500 54.5000 -64.0 + 132.7500 54.5000 -64.0 + 130.7500 50.5000 -64.0 + 124.5000 46.2500 -64.0 + 113.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 47.5000 -64.0 + 108.5000 48.2500 -64.0 + 106.5000 48.2500 -64.0 + 102.5000 50.2500 -64.0 + 100.5000 50.2500 -64.0 + 100.2500 51.5000 -64.0 + 97.2500 54.5000 -64.0 + 95.2500 58.5000 -64.0 + 91.2500 61.5000 -64.0 + 90.2500 63.5000 -64.0 + 85.2500 68.5000 -64.0 + 83.2500 72.5000 -64.0 + 89.5000 66.7500 -64.0 + 91.5000 65.7500 -64.0 + 96.5000 59.7500 -64.0 + 104.5000 53.7500 -64.0 + 109.5000 50.7500 -64.0 + 111.5000 50.7500 -64.0 + 119.5000 54.7500 -64.0 + 133.5000 68.7500 -64.0 + 138.2500 75.5000 -64.0 + 139.2500 77.5000 -64.0 + 145.2500 83.5000 -64.0 + 146.2500 85.5000 -64.0 + 148.5000 85.7500 -64.0 + 149.5000 83.7500 -64.0 + 149.7500 76.5000 -64.0 + 144.7500 66.5000 -64.0 + 139.7500 61.5000 -64.0 + 138.7500 59.5000 -64.0 + 136.5000 57.2500 -64.0 + 134.5000 56.2500 -64.0 + 134.2500 57.5000 -64.0 + 135.2500 60.5000 -64.0 + 139.2500 64.5000 -64.0 + 145.2500 72.5000 -64.0 + 145.2500 75.5000 -64.0 + 144.5000 77.2500 -64.0 + 142.5000 77.2500 -64.0 + 134.7500 68.5000 -64.0 + 133.7500 66.5000 -64.0 + 127.7500 59.5000 -64.0 + 127.7500 57.5000 -64.0 + 124.5000 54.2500 -64.0 + 120.7500 51.5000 -64.0 + 114.7500 47.5000 -64.0 +} -64.0 +{ -64.0 + 87.2500 55.5000 -64.0 + 85.5000 56.2500 -64.0 + 79.5000 62.2500 -64.0 + 77.5000 63.2500 -64.0 + 70.5000 72.2500 -64.0 + 69.2500 83.5000 -64.0 + 70.2500 85.5000 -64.0 + 72.5000 84.7500 -64.0 + 80.7500 76.5000 -64.0 + 81.7500 74.5000 -64.0 + 80.5000 74.2500 -64.0 + 76.5000 78.2500 -64.0 + 72.7500 77.5000 -64.0 + 72.7500 75.5000 -64.0 + 75.7500 69.5000 -64.0 + 87.7500 57.5000 -64.0 + 88.7500 55.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 113.5000 -64.0 + 113.2500 116.5000 -64.0 + 115.2500 117.5000 -64.0 + 114.5000 119.2500 -64.0 + 112.5000 119.2500 -64.0 + 110.5000 125.2500 -64.0 + 111.2500 126.5000 -64.0 + 114.5000 126.7500 -64.0 + 118.5000 123.7500 -64.0 + 120.5000 124.7500 -64.0 + 122.5000 123.7500 -64.0 + 121.7500 122.5000 -64.0 + 121.7500 118.5000 -64.0 + 118.5000 118.2500 -64.0 + 116.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 98.2500 124.5000 -64.0 + 99.2500 127.5000 -64.0 + 100.5000 125.7500 -64.0 + 99.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 126.5000 -64.0 + 124.5000 129.2500 -64.0 + 124.2500 133.5000 -64.0 + 123.2500 136.5000 -64.0 + 120.5000 140.2500 -64.0 + 120.2500 143.5000 -64.0 + 122.5000 143.7500 -64.0 + 128.5000 135.2500 -64.0 + 126.5000 136.2500 -64.0 + 125.7500 134.5000 -64.0 + 126.5000 132.7500 -64.0 + 128.5000 132.7500 -64.0 + 132.5000 134.7500 -64.0 + 134.5000 133.7500 -64.0 + 132.7500 131.5000 -64.0 + 127.5000 131.2500 -64.0 + 126.7500 129.5000 -64.0 + 129.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 127.5000 -64.0 + 100.2500 128.5000 -64.0 + 103.5000 128.7500 -64.0 + 103.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 133.5000 -64.0 + 87.5000 134.2500 -64.0 + 88.2500 135.5000 -64.0 + 88.2500 138.5000 -64.0 + 89.5000 138.7500 -64.0 + 90.5000 136.7500 -64.0 + 92.5000 135.7500 -64.0 + 95.5000 136.7500 -64.0 + 98.2500 140.5000 -64.0 + 97.2500 143.5000 -64.0 + 104.2500 147.5000 -64.0 + 106.5000 147.7500 -64.0 + 108.5000 146.7500 -64.0 + 110.5000 146.7500 -64.0 + 114.5000 148.7500 -64.0 + 114.7500 146.5000 -64.0 + 113.7500 144.5000 -64.0 + 110.5000 144.2500 -64.0 + 106.5000 142.2500 -64.0 + 101.5000 141.2500 -64.0 + 99.5000 139.2500 -64.0 + 97.7500 134.5000 -64.0 + 95.7500 133.5000 -64.0 +} -64.0 +v 148 z -184.000000 -64.0 +{ -64.0 + 108.2500 40.5000 -64.0 + 94.5000 47.2500 -64.0 + 80.5000 61.2500 -64.0 + 78.5000 62.2500 -64.0 + 71.5000 72.2500 -64.0 + 71.2500 80.5000 -64.0 + 72.5000 81.7500 -64.0 + 75.5000 80.7500 -64.0 + 84.7500 71.5000 -64.0 + 85.7500 69.5000 -64.0 + 97.5000 58.7500 -64.0 + 108.5000 51.7500 -64.0 + 112.5000 51.7500 -64.0 + 117.5000 53.7500 -64.0 + 123.5000 57.7500 -64.0 + 131.5000 65.7500 -64.0 + 139.2500 76.5000 -64.0 + 145.2500 81.5000 -64.0 + 147.5000 81.7500 -64.0 + 148.5000 79.7500 -64.0 + 148.7500 76.5000 -64.0 + 147.7500 74.5000 -64.0 + 147.7500 72.5000 -64.0 + 142.7500 63.5000 -64.0 + 132.7500 53.5000 -64.0 + 131.5000 51.2500 -64.0 + 114.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 114.5000 -64.0 + 114.2500 118.5000 -64.0 + 107.5000 124.2500 -64.0 + 103.5000 124.2500 -64.0 + 103.2500 125.5000 -64.0 + 105.2500 127.5000 -64.0 + 100.5000 129.2500 -64.0 + 98.5000 127.2500 -64.0 + 98.2500 130.5000 -64.0 + 99.5000 130.7500 -64.0 + 103.5000 128.7500 -64.0 + 105.5000 128.7500 -64.0 + 107.5000 127.7500 -64.0 + 109.5000 128.7500 -64.0 + 112.7500 127.5000 -64.0 + 107.7500 126.5000 -64.0 + 113.5000 123.7500 -64.0 + 115.5000 123.7500 -64.0 + 116.7500 121.5000 -64.0 + 115.7500 119.5000 -64.0 + 116.5000 117.7500 -64.0 +} -64.0 +{ -64.0 + 120.2500 120.5000 -64.0 + 119.5000 121.2500 -64.0 + 120.2500 122.5000 -64.0 + 116.2500 125.5000 -64.0 + 122.5000 126.7500 -64.0 + 124.2500 129.5000 -64.0 + 124.5000 135.7500 -64.0 + 126.5000 136.7500 -64.0 + 132.5000 133.7500 -64.0 + 132.7500 132.5000 -64.0 + 128.5000 132.2500 -64.0 + 126.7500 130.5000 -64.0 + 125.7500 128.5000 -64.0 + 127.5000 126.7500 -64.0 + 130.5000 126.7500 -64.0 + 134.5000 128.7500 -64.0 + 134.7500 127.5000 -64.0 + 130.7500 125.5000 -64.0 + 127.5000 125.2500 -64.0 + 124.5000 124.2500 -64.0 + 121.7500 120.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 124.5000 -64.0 + 97.2500 125.5000 -64.0 + 97.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 133.5000 -64.0 + 88.5000 135.2500 -64.0 + 88.2500 139.5000 -64.0 + 92.5000 135.7500 -64.0 + 94.5000 135.7500 -64.0 + 96.2500 137.5000 -64.0 + 98.2500 141.5000 -64.0 + 95.5000 143.2500 -64.0 + 98.2500 144.5000 -64.0 + 109.5000 145.7500 -64.0 + 113.2500 148.5000 -64.0 + 115.5000 148.7500 -64.0 + 115.7500 144.5000 -64.0 + 110.5000 145.2500 -64.0 + 104.7500 141.5000 -64.0 + 100.5000 141.2500 -64.0 + 97.7500 138.5000 -64.0 + 98.5000 137.7500 -64.0 + 98.7500 135.5000 -64.0 + 97.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 137.5000 -64.0 + 120.5000 139.2500 -64.0 + 121.5000 139.7500 -64.0 + 123.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 140.5000 -64.0 + 117.5000 141.2500 -64.0 + 118.5000 141.7500 -64.0 + 119.7500 140.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 108.5000 42.7500 -64.0 + 110.5000 42.7500 -64.0 + 112.2500 43.5000 -64.0 + 113.5000 42.7500 -64.0 + 117.5000 44.7500 -64.0 + 119.2500 45.5000 -64.0 + 125.2500 49.5000 -64.0 + 131.2500 54.5000 -64.0 + 133.2500 58.5000 -64.0 + 134.5000 58.7500 -64.0 + 135.2500 60.5000 -64.0 + 139.2500 64.5000 -64.0 + 142.2500 69.5000 -64.0 + 143.2500 71.5000 -64.0 + 142.5000 73.2500 -64.0 + 140.5000 73.2500 -64.0 + 136.7500 69.5000 -64.0 + 135.7500 67.5000 -64.0 + 127.7500 58.5000 -64.0 + 127.7500 56.5000 -64.0 + 125.7500 54.5000 -64.0 + 118.5000 50.2500 -64.0 + 112.5000 47.2500 -64.0 + 110.5000 48.2500 -64.0 + 108.5000 48.2500 -64.0 + 106.5000 49.2500 -64.0 + 103.5000 49.2500 -64.0 + 101.5000 51.2500 -64.0 + 98.5000 51.2500 -64.0 + 98.2500 52.5000 -64.0 + 96.5000 54.2500 -64.0 + 96.2500 56.5000 -64.0 + 92.2500 60.5000 -64.0 + 91.2500 62.5000 -64.0 + 85.2500 67.5000 -64.0 + 84.2500 69.5000 -64.0 + 77.5000 75.2500 -64.0 + 75.7500 74.5000 -64.0 + 75.7500 70.5000 -64.0 + 77.7500 68.5000 -64.0 + 78.7500 66.5000 -64.0 + 89.7500 55.5000 -64.0 + 92.5000 51.7500 -64.0 + 94.5000 50.7500 -64.0 + 98.5000 47.7500 -64.0 + 103.5000 44.7500 -64.0 + 106.7500 45.5000 -64.0 +} -64.0 +v 122 z -186.000000 -64.0 +{ -64.0 + 110.2500 39.5000 -64.0 + 94.5000 47.2500 -64.0 + 78.5000 63.2500 -64.0 + 72.2500 73.5000 -64.0 + 74.2500 77.5000 -64.0 + 76.5000 77.7500 -64.0 + 82.5000 73.7500 -64.0 + 92.5000 62.7500 -64.0 + 99.5000 56.7500 -64.0 + 107.5000 52.7500 -64.0 + 113.5000 52.7500 -64.0 + 119.5000 54.7500 -64.0 + 126.2500 59.5000 -64.0 + 133.2500 68.5000 -64.0 + 142.2500 77.5000 -64.0 + 144.5000 77.7500 -64.0 + 146.5000 76.7500 -64.0 + 146.7500 73.5000 -64.0 + 145.7500 71.5000 -64.0 + 145.7500 69.5000 -64.0 + 139.7500 59.5000 -64.0 + 129.5000 49.2500 -64.0 + 123.5000 46.2500 -64.0 + 120.7500 43.5000 -64.0 + 113.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 114.5000 -64.0 + 112.5000 116.2500 -64.0 + 114.2500 117.5000 -64.0 + 115.5000 116.7500 -64.0 + 115.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 118.5000 -64.0 + 101.2500 119.5000 -64.0 + 102.5000 119.7500 -64.0 + 102.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 121.2500 121.5000 -64.0 + 121.2500 123.5000 -64.0 + 116.5000 125.2500 -64.0 + 117.2500 126.5000 -64.0 + 120.5000 126.7500 -64.0 + 123.2500 129.5000 -64.0 + 123.2500 133.5000 -64.0 + 122.2500 136.5000 -64.0 + 114.5000 143.2500 -64.0 + 110.5000 143.2500 -64.0 + 102.5000 140.2500 -64.0 + 99.7500 137.5000 -64.0 + 99.7500 132.5000 -64.0 + 103.5000 129.7500 -64.0 + 104.5000 128.2500 -64.0 + 102.5000 129.2500 -64.0 + 99.5000 129.2500 -64.0 + 96.2500 131.5000 -64.0 + 91.5000 133.2500 -64.0 + 88.5000 138.2500 -64.0 + 88.2500 141.5000 -64.0 + 89.5000 141.7500 -64.0 + 90.7500 137.5000 -64.0 + 94.5000 134.7500 -64.0 + 96.5000 135.7500 -64.0 + 101.2500 142.5000 -64.0 + 100.5000 143.2500 -64.0 + 104.2500 145.5000 -64.0 + 108.5000 145.7500 -64.0 + 114.5000 149.7500 -64.0 + 114.7500 148.5000 -64.0 + 116.5000 147.7500 -64.0 + 126.5000 135.7500 -64.0 + 131.5000 134.7500 -64.0 + 131.7500 133.5000 -64.0 + 127.5000 133.2500 -64.0 + 125.7500 131.5000 -64.0 + 125.7500 128.5000 -64.0 + 122.7500 125.5000 -64.0 + 123.5000 124.7500 -64.0 + 125.5000 125.7500 -64.0 + 126.7500 124.5000 -64.0 + 122.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 108.5000 42.7500 -64.0 + 110.5000 42.7500 -64.0 + 112.2500 43.5000 -64.0 + 111.5000 44.2500 -64.0 + 111.2500 46.5000 -64.0 + 107.5000 49.2500 -64.0 + 103.5000 49.2500 -64.0 + 103.2500 50.5000 -64.0 + 96.5000 54.2500 -64.0 + 96.2500 56.5000 -64.0 + 94.5000 57.2500 -64.0 + 94.2500 58.5000 -64.0 + 92.5000 60.2500 -64.0 + 90.5000 61.2500 -64.0 + 83.5000 68.2500 -64.0 + 79.5000 71.2500 -64.0 + 78.7500 69.5000 -64.0 + 79.7500 66.5000 -64.0 + 89.5000 55.7500 -64.0 + 99.5000 46.7500 -64.0 + 101.5000 46.7500 -64.0 + 103.5000 44.7500 -64.0 + 105.2500 45.5000 -64.0 +} -64.0 +{ -64.0 + 113.7500 43.5000 -64.0 + 114.5000 42.7500 -64.0 + 115.5000 43.7500 -64.0 + 119.5000 45.7500 -64.0 + 126.2500 50.5000 -64.0 + 126.2500 52.5000 -64.0 + 128.5000 52.7500 -64.0 + 134.2500 58.5000 -64.0 + 137.2500 62.5000 -64.0 + 140.2500 67.5000 -64.0 + 139.5000 69.2500 -64.0 + 137.5000 67.2500 -64.0 + 135.5000 66.2500 -64.0 + 134.7500 64.5000 -64.0 + 130.7500 60.5000 -64.0 + 129.7500 58.5000 -64.0 + 128.5000 58.2500 -64.0 + 127.7500 56.5000 -64.0 + 125.5000 54.2500 -64.0 + 119.5000 51.2500 -64.0 + 113.7500 46.5000 -64.0 +} -64.0 +v 113 z -188.000000 -64.0 +{ -64.0 + 109.2500 39.5000 -64.0 + 93.5000 48.2500 -64.0 + 82.2500 59.5000 -64.0 + 75.5000 69.2500 -64.0 + 75.5000 73.7500 -64.0 + 77.5000 74.7500 -64.0 + 82.5000 72.7500 -64.0 + 89.7500 65.5000 -64.0 + 90.7500 63.5000 -64.0 + 92.5000 62.7500 -64.0 + 97.5000 57.7500 -64.0 + 107.5000 52.7500 -64.0 + 114.5000 52.7500 -64.0 + 124.5000 56.7500 -64.0 + 125.2500 58.5000 -64.0 + 137.5000 71.7500 -64.0 + 141.2500 74.5000 -64.0 + 143.5000 74.7500 -64.0 + 144.7500 70.5000 -64.0 + 142.7500 66.5000 -64.0 + 142.7500 64.5000 -64.0 + 138.7500 58.5000 -64.0 + 128.5000 48.2500 -64.0 + 114.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 114.5000 -64.0 + 108.5000 115.2500 -64.0 + 105.2500 115.5000 -64.0 + 108.5000 115.7500 -64.0 + 110.5000 114.7500 -64.0 + 111.2500 115.5000 -64.0 + 114.5000 115.7500 -64.0 + 114.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 122.5000 -64.0 + 122.5000 123.7500 -64.0 + 126.2500 125.5000 -64.0 + 128.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 124.5000 -64.0 + 119.5000 125.2500 -64.0 + 116.5000 125.2500 -64.0 + 115.2500 126.5000 -64.0 + 119.5000 126.7500 -64.0 + 123.2500 129.5000 -64.0 + 123.2500 135.5000 -64.0 + 120.5000 139.2500 -64.0 + 122.2500 140.5000 -64.0 + 121.5000 141.2500 -64.0 + 118.5000 146.2500 -64.0 + 118.2500 149.5000 -64.0 + 122.7500 140.5000 -64.0 + 127.5000 135.7500 -64.0 + 129.5000 135.7500 -64.0 + 132.7500 134.5000 -64.0 + 129.5000 134.2500 -64.0 + 125.7500 132.5000 -64.0 + 125.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 103.2500 128.5000 -64.0 + 99.2500 130.5000 -64.0 + 97.2500 134.5000 -64.0 + 99.2500 138.5000 -64.0 + 98.5000 139.2500 -64.0 + 98.2500 142.5000 -64.0 + 100.2500 144.5000 -64.0 + 108.5000 146.7500 -64.0 + 112.2500 149.5000 -64.0 + 113.5000 148.7500 -64.0 + 110.7500 145.5000 -64.0 + 111.5000 144.7500 -64.0 + 117.5000 143.7500 -64.0 + 119.7500 140.5000 -64.0 + 118.5000 140.2500 -64.0 + 114.5000 143.2500 -64.0 + 109.5000 143.2500 -64.0 + 101.5000 139.2500 -64.0 + 99.7500 136.5000 -64.0 + 100.5000 132.7500 -64.0 + 105.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 132.5000 -64.0 + 89.5000 133.2500 -64.0 + 90.2500 135.5000 -64.0 + 89.5000 137.2500 -64.0 + 89.2500 142.5000 -64.0 + 90.5000 142.7500 -64.0 + 90.7500 140.5000 -64.0 + 91.7500 138.5000 -64.0 + 90.7500 136.5000 -64.0 + 90.7500 133.5000 -64.0 + 92.7500 132.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 43.5000 -64.0 + 109.5000 42.7500 -64.0 + 110.2500 44.5000 -64.0 + 109.5000 46.2500 -64.0 + 110.2500 47.5000 -64.0 + 102.5000 51.2500 -64.0 + 100.5000 51.2500 -64.0 + 84.5000 65.2500 -64.0 + 83.7500 64.5000 -64.0 + 85.7500 60.5000 -64.0 + 97.5000 48.7500 -64.0 + 103.5000 44.7500 -64.0 + 107.5000 45.7500 -64.0 +} -64.0 +{ -64.0 + 119.5000 46.7500 -64.0 + 121.5000 46.7500 -64.0 + 125.2500 49.5000 -64.0 + 125.2500 51.5000 -64.0 + 123.5000 52.2500 -64.0 + 120.5000 51.2500 -64.0 + 117.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 128.5000 52.7500 -64.0 + 136.2500 61.5000 -64.0 + 135.5000 63.2500 -64.0 + 132.7500 61.5000 -64.0 + 131.7500 59.5000 -64.0 + 126.7500 54.5000 -64.0 +} -64.0 +v 98 z -190.000000 -64.0 +{ -64.0 + 108.2500 39.5000 -64.0 + 100.5000 43.2500 -64.0 + 94.5000 47.2500 -64.0 + 84.5000 57.2500 -64.0 + 79.2500 65.5000 -64.0 + 78.2500 70.5000 -64.0 + 79.5000 71.7500 -64.0 + 81.5000 70.7500 -64.0 + 83.5000 70.7500 -64.0 + 98.5000 56.7500 -64.0 + 103.5000 53.7500 -64.0 + 105.5000 53.7500 -64.0 + 109.5000 51.7500 -64.0 + 111.2500 52.5000 -64.0 + 113.5000 51.7500 -64.0 + 123.5000 55.7500 -64.0 + 134.5000 67.7500 -64.0 + 138.2500 70.5000 -64.0 + 141.5000 70.7500 -64.0 + 141.7500 66.5000 -64.0 + 137.7500 58.5000 -64.0 + 130.7500 49.5000 -64.0 + 129.5000 49.2500 -64.0 + 126.7500 46.5000 -64.0 + 115.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 122.5000 -64.0 + 115.2500 126.5000 -64.0 + 119.5000 126.7500 -64.0 + 122.5000 127.7500 -64.0 + 124.2500 131.5000 -64.0 + 123.2500 136.5000 -64.0 + 119.5000 140.2500 -64.0 + 113.5000 144.2500 -64.0 + 108.5000 143.2500 -64.0 + 102.7500 140.5000 -64.0 + 99.7500 136.5000 -64.0 + 99.7500 133.5000 -64.0 + 104.7500 129.5000 -64.0 + 100.5000 129.2500 -64.0 + 96.5000 133.2500 -64.0 + 92.5000 133.2500 -64.0 + 89.5000 134.2500 -64.0 + 89.2500 142.5000 -64.0 + 91.2500 144.5000 -64.0 + 92.7500 144.5000 -64.0 + 90.7500 140.5000 -64.0 + 90.7500 135.5000 -64.0 + 92.5000 134.7500 -64.0 + 97.5000 136.7500 -64.0 + 98.2500 138.5000 -64.0 + 101.2500 141.5000 -64.0 + 95.2500 144.5000 -64.0 + 103.5000 144.7500 -64.0 + 101.7500 142.5000 -64.0 + 102.5000 141.7500 -64.0 + 108.2500 144.5000 -64.0 + 115.5000 144.7500 -64.0 + 119.5000 141.7500 -64.0 + 121.2500 142.5000 -64.0 + 118.5000 148.2500 -64.0 + 118.5000 149.7500 -64.0 + 121.5000 145.7500 -64.0 + 121.7500 141.5000 -64.0 + 126.5000 136.7500 -64.0 + 132.7500 135.5000 -64.0 + 126.5000 135.2500 -64.0 + 124.5000 137.2500 -64.0 + 123.7500 136.5000 -64.0 + 125.5000 133.7500 -64.0 + 125.7500 130.5000 -64.0 + 129.7500 124.5000 -64.0 + 123.5000 124.2500 -64.0 + 121.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 104.2500 145.5000 -64.0 + 106.2500 146.5000 -64.0 + 106.7500 145.5000 -64.0 +} -64.0 +{ -64.0 + 107.2500 147.5000 -64.0 + 113.7500 151.5000 -64.0 + 112.7500 148.5000 -64.0 + 110.7500 147.5000 -64.0 +} -64.0 +{ -64.0 + 103.7500 45.5000 -64.0 + 105.5000 44.7500 -64.0 + 107.2500 47.5000 -64.0 + 103.5000 50.2500 -64.0 + 97.5000 52.2500 -64.0 + 92.5000 56.2500 -64.0 + 91.7500 55.5000 -64.0 + 93.7500 52.5000 -64.0 + 99.5000 47.7500 -64.0 +} -64.0 +{ -64.0 + 113.7500 46.5000 -64.0 + 114.5000 45.7500 -64.0 + 115.2500 46.5000 -64.0 + 114.5000 47.2500 -64.0 +} -64.0 +{ -64.0 + 119.7500 47.5000 -64.0 + 121.5000 46.7500 -64.0 + 125.2500 49.5000 -64.0 + 124.5000 51.2500 -64.0 + 122.5000 51.2500 -64.0 +} -64.0 +v 100 z -192.000000 -64.0 +{ -64.0 + 107.2500 39.5000 -64.0 + 102.5000 41.2500 -64.0 + 95.5000 46.2500 -64.0 + 88.5000 53.2500 -64.0 + 82.2500 63.5000 -64.0 + 81.5000 66.7500 -64.0 + 83.5000 67.7500 -64.0 + 86.5000 66.7500 -64.0 + 99.5000 55.7500 -64.0 + 109.5000 50.7500 -64.0 + 113.5000 50.7500 -64.0 + 121.5000 53.7500 -64.0 + 136.2500 67.5000 -64.0 + 138.5000 67.7500 -64.0 + 138.7500 62.5000 -64.0 + 134.7500 54.5000 -64.0 + 130.7500 50.5000 -64.0 + 129.5000 48.2500 -64.0 + 121.5000 42.2500 -64.0 + 115.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 119.5000 -64.0 + 117.2500 121.5000 -64.0 + 115.2500 122.5000 -64.0 + 114.2500 124.5000 -64.0 + 116.2500 125.5000 -64.0 + 115.5000 127.2500 -64.0 + 116.5000 127.7500 -64.0 + 122.5000 125.7500 -64.0 + 120.5000 121.2500 -64.0 +} -64.0 +{ -64.0 + 132.2500 121.5000 -64.0 + 131.2500 123.5000 -64.0 + 125.5000 126.2500 -64.0 + 124.2500 134.5000 -64.0 + 120.2500 140.5000 -64.0 + 118.5000 141.2500 -64.0 + 115.5000 144.2500 -64.0 + 109.5000 144.2500 -64.0 + 101.7500 140.5000 -64.0 + 97.7500 134.5000 -64.0 + 93.5000 134.2500 -64.0 + 91.7500 133.5000 -64.0 + 90.7500 131.5000 -64.0 + 89.2500 130.5000 -64.0 + 91.2500 136.5000 -64.0 + 97.5000 137.7500 -64.0 + 100.2500 140.5000 -64.0 + 101.2500 142.5000 -64.0 + 98.5000 144.2500 -64.0 + 92.5000 144.2500 -64.0 + 90.7500 140.5000 -64.0 + 88.5000 138.2500 -64.0 + 88.2500 141.5000 -64.0 + 91.2500 144.5000 -64.0 + 102.5000 144.7500 -64.0 + 104.2500 145.5000 -64.0 + 105.2500 147.5000 -64.0 + 107.2500 148.5000 -64.0 + 112.5000 148.7500 -64.0 + 111.7500 147.5000 -64.0 + 109.5000 147.2500 -64.0 + 102.7500 143.5000 -64.0 + 103.5000 142.7500 -64.0 + 113.2500 146.5000 -64.0 + 117.5000 144.7500 -64.0 + 120.5000 141.7500 -64.0 + 121.2500 142.5000 -64.0 + 119.2500 146.5000 -64.0 + 120.5000 146.7500 -64.0 + 123.5000 141.7500 -64.0 + 123.7500 139.5000 -64.0 + 125.5000 137.7500 -64.0 + 128.5000 137.7500 -64.0 + 129.7500 136.5000 -64.0 + 127.5000 136.2500 -64.0 + 125.5000 137.2500 -64.0 + 124.7500 135.5000 -64.0 + 129.7500 125.5000 -64.0 + 133.5000 123.7500 -64.0 +} -64.0 +{ -64.0 + 100.2500 128.5000 -64.0 + 99.2500 130.5000 -64.0 + 104.5000 130.7500 -64.0 + 104.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 129.5000 -64.0 + 109.2500 130.5000 -64.0 + 111.5000 130.7500 -64.0 + 111.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 112.7500 43.5000 -64.0 + 113.5000 42.7500 -64.0 + 115.2500 44.5000 -64.0 + 114.5000 46.2500 -64.0 + 113.7500 45.5000 -64.0 +} -64.0 +{ -64.0 + 102.7500 45.5000 -64.0 + 104.5000 44.7500 -64.0 + 106.2500 46.5000 -64.0 + 101.5000 49.2500 -64.0 + 99.7500 48.5000 -64.0 +} -64.0 +{ -64.0 + 115.7500 45.5000 -64.0 + 116.5000 44.7500 -64.0 + 118.2500 45.5000 -64.0 + 117.5000 47.2500 -64.0 +} -64.0 +v 87 z -194.000000 -64.0 +{ -64.0 + 105.2500 39.5000 -64.0 + 101.5000 41.2500 -64.0 + 90.5000 52.2500 -64.0 + 86.5000 59.2500 -64.0 + 86.2500 63.5000 -64.0 + 87.5000 63.7500 -64.0 + 99.5000 54.7500 -64.0 + 109.5000 49.7500 -64.0 + 114.5000 49.7500 -64.0 + 121.5000 52.7500 -64.0 + 132.2500 62.5000 -64.0 + 135.5000 62.7500 -64.0 + 135.5000 60.2500 -64.0 + 132.7500 53.5000 -64.0 + 126.7500 45.5000 -64.0 + 122.5000 42.2500 -64.0 + 116.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 118.5000 -64.0 + 117.2500 120.5000 -64.0 + 115.2500 124.5000 -64.0 + 117.5000 123.7500 -64.0 + 119.2500 124.5000 -64.0 + 118.5000 126.2500 -64.0 + 116.5000 127.2500 -64.0 + 116.2500 128.5000 -64.0 + 117.5000 128.7500 -64.0 + 121.5000 124.7500 -64.0 + 120.7500 121.5000 -64.0 + 119.5000 121.2500 -64.0 +} -64.0 +{ -64.0 + 131.2500 124.5000 -64.0 + 130.5000 125.2500 -64.0 + 128.2500 125.5000 -64.0 + 127.2500 127.5000 -64.0 + 129.2500 128.5000 -64.0 + 130.5000 127.7500 -64.0 + 132.5000 126.7500 -64.0 +} -64.0 +{ -64.0 + 125.2500 130.5000 -64.0 + 125.2500 132.5000 -64.0 + 122.2500 139.5000 -64.0 + 115.5000 145.2500 -64.0 + 108.5000 145.2500 -64.0 + 98.5000 139.2500 -64.0 + 101.2500 142.5000 -64.0 + 95.2500 145.5000 -64.0 + 98.5000 145.7500 -64.0 + 100.5000 144.7500 -64.0 + 106.2500 147.5000 -64.0 + 111.5000 147.7500 -64.0 + 114.7500 150.5000 -64.0 + 113.7500 148.5000 -64.0 + 115.5000 146.7500 -64.0 + 117.2500 147.5000 -64.0 + 117.5000 149.7500 -64.0 + 117.7500 147.5000 -64.0 + 123.5000 143.7500 -64.0 + 124.7500 140.5000 -64.0 + 127.5000 137.7500 -64.0 + 132.5000 137.7500 -64.0 + 135.5000 136.7500 -64.0 + 135.5000 135.2500 -64.0 + 131.5000 137.2500 -64.0 + 129.5000 136.2500 -64.0 + 126.5000 137.2500 -64.0 + 124.7500 136.5000 -64.0 + 126.5000 133.7500 -64.0 + 126.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 137.5000 -64.0 + 92.5000 138.2500 -64.0 + 88.5000 138.2500 -64.0 + 88.2500 142.5000 -64.0 + 89.5000 143.7500 -64.0 + 93.5000 145.7500 -64.0 + 89.7500 141.5000 -64.0 + 90.5000 140.7500 -64.0 + 94.5000 137.7500 -64.0 + 96.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 151.5000 -64.0 + 116.5000 154.7500 -64.0 + 116.7500 151.5000 -64.0 +} -64.0 +{ -64.0 + 110.7500 43.5000 -64.0 + 111.5000 42.7500 -64.0 + 113.2500 43.5000 -64.0 + 112.5000 45.2500 -64.0 +} -64.0 +{ -64.0 + 107.7500 44.5000 -64.0 + 108.5000 43.7500 -64.0 + 109.2500 44.5000 -64.0 + 108.5000 45.2500 -64.0 +} -64.0 +v 81 z -196.000000 -64.0 +{ -64.0 + 105.2500 39.5000 -64.0 + 101.2500 41.5000 -64.0 + 93.5000 51.2500 -64.0 + 90.2500 56.5000 -64.0 + 91.2500 58.5000 -64.0 + 93.5000 57.7500 -64.0 + 99.5000 52.7500 -64.0 + 105.5000 49.7500 -64.0 + 107.5000 49.7500 -64.0 + 109.5000 48.7500 -64.0 + 114.5000 48.7500 -64.0 + 122.5000 51.7500 -64.0 + 129.2500 57.5000 -64.0 + 131.5000 57.7500 -64.0 + 131.5000 56.2500 -64.0 + 128.7500 49.5000 -64.0 + 123.5000 43.2500 -64.0 + 119.7500 40.5000 -64.0 + 114.5000 40.2500 -64.0 + 112.7500 39.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 119.5000 -64.0 + 117.2500 120.5000 -64.0 + 116.5000 122.2500 -64.0 + 111.5000 125.2500 -64.0 + 112.2500 126.5000 -64.0 + 115.5000 126.7500 -64.0 + 116.2500 128.5000 -64.0 + 115.5000 130.2500 -64.0 + 114.7500 129.5000 -64.0 + 111.5000 129.2500 -64.0 + 107.5000 131.2500 -64.0 + 102.5000 130.2500 -64.0 + 102.5000 131.7500 -64.0 + 111.5000 132.7500 -64.0 + 113.5000 130.7500 -64.0 + 117.5000 130.7500 -64.0 + 119.5000 128.7500 -64.0 + 121.5000 129.7500 -64.0 + 121.7500 128.5000 -64.0 + 120.7500 126.5000 -64.0 + 121.5000 125.7500 -64.0 + 122.5000 122.2500 -64.0 + 118.7500 119.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 126.5000 -64.0 + 128.2500 128.5000 -64.0 + 125.5000 131.2500 -64.0 + 122.2500 140.5000 -64.0 + 118.5000 144.2500 -64.0 + 114.5000 146.2500 -64.0 + 110.5000 146.2500 -64.0 + 103.5000 143.2500 -64.0 + 96.7500 138.5000 -64.0 + 93.5000 138.2500 -64.0 + 91.5000 137.2500 -64.0 + 88.5000 138.2500 -64.0 + 88.2500 139.5000 -64.0 + 93.2500 140.5000 -64.0 + 92.2500 141.5000 -64.0 + 94.5000 141.7500 -64.0 + 97.5000 140.7500 -64.0 + 100.2500 143.5000 -64.0 + 97.2500 145.5000 -64.0 + 102.5000 145.7500 -64.0 + 106.2500 147.5000 -64.0 + 114.5000 149.7500 -64.0 + 116.2500 153.5000 -64.0 + 117.5000 153.7500 -64.0 + 117.7500 149.5000 -64.0 + 118.5000 147.7500 -64.0 + 125.5000 141.7500 -64.0 + 130.5000 138.7500 -64.0 + 133.5000 138.7500 -64.0 + 133.7500 137.5000 -64.0 + 130.5000 137.2500 -64.0 + 127.5000 138.2500 -64.0 + 125.7500 137.5000 -64.0 + 126.7500 132.5000 -64.0 + 129.5000 129.7500 -64.0 + 131.5000 128.7500 -64.0 + 134.5000 129.7500 -64.0 + 131.7500 126.5000 -64.0 +} -64.0 +v 78 z -198.000000 -64.0 +{ -64.0 + 104.2500 40.5000 -64.0 + 102.2500 41.5000 -64.0 + 98.2500 49.5000 -64.0 + 101.5000 49.7500 -64.0 + 105.5000 47.7500 -64.0 + 114.5000 47.7500 -64.0 + 125.5000 50.7500 -64.0 + 125.7500 49.5000 -64.0 + 123.7500 44.5000 -64.0 + 120.7500 41.5000 -64.0 + 113.5000 41.2500 -64.0 + 111.7500 40.5000 -64.0 +} -64.0 +{ -64.0 + 129.2500 116.5000 -64.0 + 129.2500 117.5000 -64.0 + 130.5000 117.7500 -64.0 + 130.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 118.5000 -64.0 + 116.2500 119.5000 -64.0 + 117.5000 119.7500 -64.0 + 119.2500 122.5000 -64.0 + 119.2500 126.5000 -64.0 + 116.2500 129.5000 -64.0 + 115.2500 131.5000 -64.0 + 117.5000 131.7500 -64.0 + 120.7500 130.5000 -64.0 + 121.7500 128.5000 -64.0 + 120.7500 126.5000 -64.0 + 122.7500 124.5000 -64.0 + 123.7500 122.5000 -64.0 + 118.7500 118.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 120.5000 -64.0 + 111.5000 121.2500 -64.0 + 106.5000 121.2500 -64.0 + 103.5000 124.2500 -64.0 + 101.5000 124.2500 -64.0 + 102.5000 125.7500 -64.0 + 104.5000 126.7500 -64.0 + 104.7500 125.5000 -64.0 + 108.5000 122.7500 -64.0 + 114.5000 122.7500 -64.0 + 115.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 127.5000 -64.0 + 124.5000 134.2500 -64.0 + 124.2500 137.5000 -64.0 + 120.5000 143.2500 -64.0 + 116.5000 146.2500 -64.0 + 113.5000 146.2500 -64.0 + 111.5000 147.2500 -64.0 + 99.7500 142.5000 -64.0 + 97.2500 145.5000 -64.0 + 103.5000 145.7500 -64.0 + 109.5000 148.7500 -64.0 + 114.5000 149.7500 -64.0 + 115.2500 151.5000 -64.0 + 116.7500 152.5000 -64.0 + 117.7500 147.5000 -64.0 + 120.5000 144.7500 -64.0 + 130.7500 138.5000 -64.0 + 126.5000 137.2500 -64.0 + 125.5000 139.2500 -64.0 + 124.7500 137.5000 -64.0 + 126.5000 135.7500 -64.0 + 126.7500 133.5000 -64.0 + 132.5000 128.7500 -64.0 + 133.2500 130.5000 -64.0 + 135.5000 132.7500 -64.0 + 135.7500 130.5000 -64.0 + 132.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 130.5000 -64.0 + 101.2500 132.5000 -64.0 + 104.7500 132.5000 -64.0 + 103.7500 130.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 137.5000 -64.0 + 90.2500 140.5000 -64.0 + 95.5000 140.7500 -64.0 + 98.5000 141.7500 -64.0 + 98.7500 139.5000 -64.0 + 95.7500 137.5000 -64.0 +} -64.0 +v 75 z -200.000000 -64.0 +{ -64.0 + 107.2500 89.5000 -64.0 + 107.2500 91.5000 -64.0 + 109.5000 91.7500 -64.0 +} -64.0 +{ -64.0 + 90.2500 106.5000 -64.0 + 90.2500 108.5000 -64.0 + 91.7500 109.5000 -64.0 + 92.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 116.5000 -64.0 + 114.2500 117.5000 -64.0 + 116.5000 117.7500 -64.0 + 118.2500 120.5000 -64.0 + 118.2500 124.5000 -64.0 + 117.5000 126.2500 -64.0 + 113.5000 129.2500 -64.0 + 111.5000 129.2500 -64.0 + 109.5000 130.2500 -64.0 + 103.5000 130.2500 -64.0 + 101.2500 128.5000 -64.0 + 102.2500 130.5000 -64.0 + 102.2500 132.5000 -64.0 + 100.5000 133.2500 -64.0 + 98.7500 130.5000 -64.0 + 98.7500 128.5000 -64.0 + 97.2500 128.5000 -64.0 + 99.2500 134.5000 -64.0 + 101.5000 134.7500 -64.0 + 110.5000 131.7500 -64.0 + 112.2500 132.5000 -64.0 + 117.5000 132.7500 -64.0 + 121.5000 130.7500 -64.0 + 124.2500 132.5000 -64.0 + 124.2500 136.5000 -64.0 + 119.2500 144.5000 -64.0 + 113.5000 147.2500 -64.0 + 108.5000 146.2500 -64.0 + 107.2500 147.5000 -64.0 + 110.2500 149.5000 -64.0 + 112.5000 149.7500 -64.0 + 115.5000 152.7500 -64.0 + 118.5000 148.7500 -64.0 + 118.7500 146.5000 -64.0 + 123.5000 141.7500 -64.0 + 125.5000 141.7500 -64.0 + 125.7500 139.5000 -64.0 + 127.5000 135.7500 -64.0 + 127.7500 132.5000 -64.0 + 130.5000 129.7500 -64.0 + 132.5000 129.7500 -64.0 + 133.2500 131.5000 -64.0 + 134.5000 135.7500 -64.0 + 136.5000 134.7500 -64.0 + 136.7500 132.5000 -64.0 + 134.7500 128.5000 -64.0 + 131.5000 127.2500 -64.0 + 127.5000 130.2500 -64.0 + 123.5000 130.2500 -64.0 + 121.7500 126.5000 -64.0 + 125.7500 122.5000 -64.0 + 121.5000 122.2500 -64.0 + 119.7500 118.5000 -64.0 + 116.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 137.5000 -64.0 + 94.2500 139.5000 -64.0 + 93.2500 142.5000 -64.0 + 97.5000 142.7500 -64.0 + 100.7500 141.5000 -64.0 + 97.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 138.5000 -64.0 + 87.5000 141.2500 -64.0 + 88.2500 142.5000 -64.0 + 89.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 118.7500 125.5000 -64.0 + 119.5000 124.7500 -64.0 + 120.2500 125.5000 -64.0 + 119.5000 126.2500 -64.0 +} -64.0 +v 109 z -202.000000 -64.0 +{ -64.0 + 105.2500 86.5000 -64.0 + 103.5000 88.2500 -64.0 + 101.2500 88.5000 -64.0 + 104.5000 88.7500 -64.0 + 109.5000 86.7500 -64.0 + 114.5000 87.7500 -64.0 + 111.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 119.2500 90.5000 -64.0 + 119.5000 90.7500 -64.0 + 121.5000 91.7500 -64.0 + 120.7500 90.5000 -64.0 +} -64.0 +{ -64.0 + 98.2500 91.5000 -64.0 + 97.2500 93.5000 -64.0 + 98.5000 93.7500 -64.0 +} -64.0 +{ -64.0 + 100.2500 94.5000 -64.0 + 99.5000 95.2500 -64.0 + 100.5000 95.7500 -64.0 + 101.7500 94.5000 -64.0 +} -64.0 +{ -64.0 + 109.2500 115.5000 -64.0 + 107.5000 117.7500 -64.0 + 109.5000 116.7500 -64.0 + 113.5000 116.7500 -64.0 + 117.2500 120.5000 -64.0 + 114.5000 124.2500 -64.0 + 112.5000 124.2500 -64.0 + 107.5000 128.2500 -64.0 + 104.5000 128.2500 -64.0 + 102.5000 125.2500 -64.0 + 100.5000 124.2500 -64.0 + 100.2500 125.5000 -64.0 + 105.2500 130.5000 -64.0 + 107.5000 129.7500 -64.0 + 109.2500 130.5000 -64.0 + 115.5000 128.7500 -64.0 + 115.7500 126.5000 -64.0 + 119.5000 121.7500 -64.0 + 121.2500 122.5000 -64.0 + 122.2500 124.5000 -64.0 + 120.5000 126.2500 -64.0 + 120.2500 128.5000 -64.0 + 118.5000 130.2500 -64.0 + 115.2500 130.5000 -64.0 + 114.2500 132.5000 -64.0 + 115.5000 131.7500 -64.0 + 116.5000 132.7500 -64.0 + 118.5000 131.7500 -64.0 + 121.5000 131.7500 -64.0 + 124.2500 134.5000 -64.0 + 123.2500 139.5000 -64.0 + 114.5000 147.2500 -64.0 + 110.5000 147.2500 -64.0 + 105.5000 145.2500 -64.0 + 99.7500 139.5000 -64.0 + 99.7500 136.5000 -64.0 + 104.5000 134.7500 -64.0 + 104.7500 133.5000 -64.0 + 100.5000 133.2500 -64.0 + 98.5000 130.2500 -64.0 + 98.2500 132.5000 -64.0 + 95.5000 136.2500 -64.0 + 91.2500 136.5000 -64.0 + 88.5000 140.2500 -64.0 + 88.5000 142.7500 -64.0 + 92.2500 145.5000 -64.0 + 93.5000 144.7500 -64.0 + 100.5000 144.7500 -64.0 + 109.2500 149.5000 -64.0 + 111.5000 149.7500 -64.0 + 115.5000 154.7500 -64.0 + 116.5000 150.7500 -64.0 + 118.5000 149.7500 -64.0 + 122.5000 144.7500 -64.0 + 126.5000 141.7500 -64.0 + 128.5000 141.7500 -64.0 + 130.5000 139.7500 -64.0 + 132.5000 139.7500 -64.0 + 136.5000 136.7500 -64.0 + 136.7500 131.5000 -64.0 + 134.7500 127.5000 -64.0 + 131.5000 127.2500 -64.0 + 129.5000 129.2500 -64.0 + 131.2500 130.5000 -64.0 + 131.2500 132.5000 -64.0 + 133.2500 133.5000 -64.0 + 133.2500 135.5000 -64.0 + 131.5000 137.2500 -64.0 + 128.5000 137.2500 -64.0 + 126.7500 132.5000 -64.0 + 128.7500 130.5000 -64.0 + 124.5000 130.2500 -64.0 + 121.7500 126.5000 -64.0 + 123.5000 124.7500 -64.0 + 127.5000 122.7500 -64.0 + 127.5000 121.2500 -64.0 + 125.5000 122.2500 -64.0 + 122.5000 122.2500 -64.0 + 121.7500 120.5000 -64.0 + 118.5000 117.2500 -64.0 + 114.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 106.2500 133.5000 -64.0 + 111.5000 134.7500 -64.0 + 112.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 90.7500 138.5000 -64.0 + 91.5000 137.7500 -64.0 + 93.5000 137.7500 -64.0 + 95.2500 139.5000 -64.0 + 96.2500 141.5000 -64.0 + 93.5000 144.2500 -64.0 + 90.7500 140.5000 -64.0 +} -64.0 +v 109 z -204.000000 -64.0 +{ -64.0 + 106.2500 85.5000 -64.0 + 105.2500 86.5000 -64.0 + 108.5000 86.7500 -64.0 + 109.7500 85.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 115.5000 -64.0 + 110.2500 116.5000 -64.0 + 114.2500 118.5000 -64.0 + 113.5000 120.2500 -64.0 + 108.5000 120.2500 -64.0 + 106.5000 121.2500 -64.0 + 104.5000 121.2500 -64.0 + 99.2500 124.5000 -64.0 + 102.5000 124.7500 -64.0 + 106.5000 121.7500 -64.0 + 107.5000 123.7500 -64.0 + 109.5000 124.7500 -64.0 + 113.5000 121.7500 -64.0 + 117.5000 121.7500 -64.0 + 121.2500 123.5000 -64.0 + 121.2500 128.5000 -64.0 + 119.5000 130.2500 -64.0 + 117.5000 130.2500 -64.0 + 115.5000 131.2500 -64.0 + 113.5000 131.2500 -64.0 + 112.2500 132.5000 -64.0 + 117.5000 132.7500 -64.0 + 119.5000 131.7500 -64.0 + 121.5000 132.7500 -64.0 + 125.2500 136.5000 -64.0 + 123.2500 140.5000 -64.0 + 120.5000 143.2500 -64.0 + 116.5000 150.2500 -64.0 + 114.5000 151.2500 -64.0 + 112.7500 150.5000 -64.0 + 115.7500 148.5000 -64.0 + 112.5000 148.2500 -64.0 + 109.5000 147.2500 -64.0 + 104.5000 145.2500 -64.0 + 99.7500 140.5000 -64.0 + 99.7500 138.5000 -64.0 + 101.5000 136.7500 -64.0 + 106.7500 133.5000 -64.0 + 102.5000 133.2500 -64.0 + 100.5000 134.2500 -64.0 + 98.7500 133.5000 -64.0 + 98.5000 131.2500 -64.0 + 98.2500 133.5000 -64.0 + 96.2500 135.5000 -64.0 + 97.2500 137.5000 -64.0 + 96.5000 138.2500 -64.0 + 96.2500 140.5000 -64.0 + 97.2500 142.5000 -64.0 + 96.5000 144.2500 -64.0 + 93.5000 144.2500 -64.0 + 91.7500 143.5000 -64.0 + 91.7500 141.5000 -64.0 + 90.7500 139.5000 -64.0 + 90.7500 136.5000 -64.0 + 89.2500 136.5000 -64.0 + 90.2500 138.5000 -64.0 + 89.5000 140.2500 -64.0 + 89.2500 143.5000 -64.0 + 90.5000 144.7500 -64.0 + 94.5000 146.7500 -64.0 + 96.5000 145.7500 -64.0 + 98.5000 145.7500 -64.0 + 101.5000 146.7500 -64.0 + 107.2500 149.5000 -64.0 + 109.5000 149.7500 -64.0 + 113.2500 152.5000 -64.0 + 113.2500 154.5000 -64.0 + 115.5000 157.7500 -64.0 + 117.5000 156.7500 -64.0 + 116.7500 154.5000 -64.0 + 117.7500 151.5000 -64.0 + 123.5000 144.7500 -64.0 + 129.5000 141.7500 -64.0 + 131.5000 141.7500 -64.0 + 133.5000 140.7500 -64.0 + 135.5000 140.7500 -64.0 + 137.5000 138.7500 -64.0 + 137.7500 134.5000 -64.0 + 139.7500 129.5000 -64.0 + 136.7500 125.5000 -64.0 + 134.5000 125.2500 -64.0 + 132.5000 126.2500 -64.0 + 130.5000 126.2500 -64.0 + 130.2500 128.5000 -64.0 + 128.5000 130.2500 -64.0 + 124.5000 130.2500 -64.0 + 122.7500 128.5000 -64.0 + 121.7500 126.5000 -64.0 + 125.5000 123.7500 -64.0 + 129.5000 123.7500 -64.0 + 128.7500 122.5000 -64.0 + 124.5000 122.2500 -64.0 + 122.5000 121.2500 -64.0 + 114.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 132.7500 128.5000 -64.0 + 134.5000 127.7500 -64.0 + 136.2500 128.5000 -64.0 + 133.5000 130.2500 -64.0 +} -64.0 +{ -64.0 + 130.7500 133.5000 -64.0 + 131.5000 132.7500 -64.0 + 133.2500 133.5000 -64.0 + 134.2500 135.5000 -64.0 + 132.5000 137.2500 -64.0 + 127.5000 140.2500 -64.0 + 125.7500 139.5000 -64.0 +} -64.0 +v 97 z -206.000000 -64.0 +{ -64.0 + 107.2500 86.5000 -64.0 + 105.2500 87.5000 -64.0 + 114.5000 87.7500 -64.0 + 116.5000 88.7500 -64.0 + 117.5000 88.2500 -64.0 + 113.7500 86.5000 -64.0 +} -64.0 +{ -64.0 + 110.2500 116.5000 -64.0 + 108.5000 118.2500 -64.0 + 102.5000 121.2500 -64.0 + 101.2500 124.5000 -64.0 + 107.5000 119.7500 -64.0 + 110.5000 119.7500 -64.0 + 116.5000 121.7500 -64.0 + 120.2500 125.5000 -64.0 + 119.5000 129.2500 -64.0 + 114.5000 132.2500 -64.0 + 123.5000 132.7500 -64.0 + 125.2500 134.5000 -64.0 + 125.2500 138.5000 -64.0 + 119.5000 146.2500 -64.0 + 113.5000 149.2500 -64.0 + 104.5000 146.2500 -64.0 + 99.7500 141.5000 -64.0 + 100.5000 137.7500 -64.0 + 106.5000 134.7500 -64.0 + 103.7500 133.5000 -64.0 + 100.5000 134.2500 -64.0 + 98.5000 131.2500 -64.0 + 98.2500 133.5000 -64.0 + 95.5000 137.2500 -64.0 + 90.5000 137.2500 -64.0 + 89.2500 142.5000 -64.0 + 90.2500 145.5000 -64.0 + 93.2500 147.5000 -64.0 + 95.5000 147.7500 -64.0 + 97.5000 146.7500 -64.0 + 102.5000 147.7500 -64.0 + 111.5000 151.7500 -64.0 + 110.7500 150.5000 -64.0 + 111.5000 149.7500 -64.0 + 114.5000 149.7500 -64.0 + 116.5000 148.7500 -64.0 + 118.2500 149.5000 -64.0 + 117.5000 151.2500 -64.0 + 117.2500 155.5000 -64.0 + 118.2500 157.5000 -64.0 + 117.5000 158.2500 -64.0 + 114.7500 156.5000 -64.0 + 114.7500 154.5000 -64.0 + 113.5000 153.2500 -64.0 + 113.2500 158.5000 -64.0 + 114.5000 159.7500 -64.0 + 116.5000 158.7500 -64.0 + 119.5000 158.7500 -64.0 + 117.7500 154.5000 -64.0 + 119.7500 149.5000 -64.0 + 125.5000 143.7500 -64.0 + 127.5000 143.7500 -64.0 + 131.5000 141.7500 -64.0 + 137.5000 140.7500 -64.0 + 141.5000 137.7500 -64.0 + 141.7500 132.5000 -64.0 + 140.5000 131.2500 -64.0 + 138.5000 134.2500 -64.0 + 136.7500 132.5000 -64.0 + 133.5000 134.2500 -64.0 + 131.7500 131.5000 -64.0 + 125.5000 131.2500 -64.0 + 121.7500 127.5000 -64.0 + 124.7500 123.5000 -64.0 + 117.5000 119.2500 -64.0 + 115.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 128.2500 122.5000 -64.0 + 128.2500 123.5000 -64.0 + 130.2500 124.5000 -64.0 + 131.2500 126.5000 -64.0 + 132.5000 126.7500 -64.0 + 135.7500 124.5000 -64.0 + 132.5000 124.2500 -64.0 + 131.7500 122.5000 -64.0 + 130.5000 123.2500 -64.0 +} -64.0 +{ -64.0 + 132.5000 135.7500 -64.0 + 134.2500 136.5000 -64.0 + 134.2500 138.5000 -64.0 + 132.5000 139.2500 -64.0 + 130.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 90.7500 141.5000 -64.0 + 91.5000 140.7500 -64.0 + 93.5000 140.7500 -64.0 + 98.5000 142.7500 -64.0 + 101.2500 145.5000 -64.0 + 100.5000 146.2500 -64.0 + 98.5000 145.2500 -64.0 + 96.5000 146.2500 -64.0 + 94.7500 145.5000 -64.0 + 93.5000 146.2500 -64.0 + 90.7500 143.5000 -64.0 +} -64.0 +v 120 z -208.000000 -64.0 +{ -64.0 + 101.2500 87.5000 -64.0 + 100.2500 88.5000 -64.0 + 102.5000 88.7500 -64.0 + 102.7500 87.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 116.5000 -64.0 + 111.5000 118.2500 -64.0 + 106.5000 119.2500 -64.0 + 105.5000 120.7500 -64.0 + 107.5000 119.7500 -64.0 + 111.5000 119.7500 -64.0 + 114.5000 120.7500 -64.0 + 116.2500 123.5000 -64.0 + 116.2500 126.5000 -64.0 + 115.5000 128.2500 -64.0 + 113.5000 128.2500 -64.0 + 114.5000 128.7500 -64.0 + 115.2500 130.5000 -64.0 + 112.2500 134.5000 -64.0 + 123.5000 131.7500 -64.0 + 125.5000 128.7500 -64.0 + 124.7500 127.5000 -64.0 + 124.7500 123.5000 -64.0 + 122.5000 125.2500 -64.0 + 121.7500 124.5000 -64.0 + 122.7500 121.5000 -64.0 + 121.7500 119.5000 -64.0 + 121.7500 116.5000 -64.0 + 120.5000 116.2500 -64.0 + 118.5000 117.2500 -64.0 +} -64.0 +{ -64.0 + 103.2500 121.5000 -64.0 + 102.2500 123.5000 -64.0 + 103.7500 123.5000 -64.0 + 104.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 122.5000 -64.0 + 131.2500 123.5000 -64.0 + 132.2500 125.5000 -64.0 + 134.7500 125.5000 -64.0 + 135.7500 123.5000 -64.0 + 133.7500 122.5000 -64.0 +} -64.0 +{ -64.0 + 135.2500 127.5000 -64.0 + 135.2500 128.5000 -64.0 + 136.5000 129.7500 -64.0 + 136.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 99.2500 129.5000 -64.0 + 98.5000 130.2500 -64.0 + 98.2500 134.5000 -64.0 + 94.5000 138.2500 -64.0 + 91.5000 138.2500 -64.0 + 91.2500 139.5000 -64.0 + 88.5000 143.2500 -64.0 + 90.2500 145.5000 -64.0 + 90.2500 147.5000 -64.0 + 92.2500 148.5000 -64.0 + 94.5000 148.7500 -64.0 + 96.5000 147.7500 -64.0 + 101.5000 147.7500 -64.0 + 108.5000 150.7500 -64.0 + 113.2500 155.5000 -64.0 + 113.2500 157.5000 -64.0 + 112.5000 159.2500 -64.0 + 114.2500 161.5000 -64.0 + 115.5000 160.7500 -64.0 + 113.7500 159.5000 -64.0 + 114.5000 157.7500 -64.0 + 114.7500 155.5000 -64.0 + 110.7500 151.5000 -64.0 + 111.5000 150.7500 -64.0 + 113.2500 151.5000 -64.0 + 115.5000 151.7500 -64.0 + 117.5000 149.7500 -64.0 + 118.2500 150.5000 -64.0 + 117.5000 152.2500 -64.0 + 117.2500 155.5000 -64.0 + 118.5000 156.7500 -64.0 + 118.7500 153.5000 -64.0 + 120.7500 149.5000 -64.0 + 125.5000 144.7500 -64.0 + 129.5000 144.7500 -64.0 + 135.5000 142.7500 -64.0 + 139.5000 139.7500 -64.0 + 141.7500 138.5000 -64.0 + 142.7500 136.5000 -64.0 + 141.7500 134.5000 -64.0 + 141.2500 135.5000 -64.0 + 140.5000 137.2500 -64.0 + 138.5000 137.2500 -64.0 + 137.5000 135.2500 -64.0 + 135.5000 136.2500 -64.0 + 133.5000 136.2500 -64.0 + 130.5000 135.2500 -64.0 + 128.5000 137.2500 -64.0 + 126.5000 137.2500 -64.0 + 119.5000 147.2500 -64.0 + 114.5000 150.2500 -64.0 + 111.5000 150.2500 -64.0 + 101.5000 145.2500 -64.0 + 97.7500 140.5000 -64.0 + 97.7500 138.5000 -64.0 + 100.5000 136.7500 -64.0 + 104.5000 136.7500 -64.0 + 106.5000 135.7500 -64.0 + 108.5000 135.7500 -64.0 + 108.7500 134.5000 -64.0 + 106.5000 134.2500 -64.0 + 102.5000 130.2500 -64.0 + 100.5000 131.2500 -64.0 +} -64.0 +{ -64.0 + 87.2500 130.5000 -64.0 + 87.2500 132.5000 -64.0 + 87.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 89.2500 135.5000 -64.0 + 90.2500 137.5000 -64.0 + 90.7500 136.5000 -64.0 +} -64.0 +{ -64.0 + 90.7500 143.5000 -64.0 + 91.5000 142.7500 -64.0 + 97.5000 142.7500 -64.0 + 100.2500 145.5000 -64.0 + 99.5000 146.2500 -64.0 + 96.5000 146.2500 -64.0 + 93.5000 147.2500 -64.0 + 91.7500 145.5000 -64.0 +} -64.0 +v 97 z -210.000000 -64.0 +{ -64.0 + 118.2500 115.5000 -64.0 + 117.5000 116.2500 -64.0 + 114.5000 116.2500 -64.0 + 108.5000 119.2500 -64.0 + 106.5000 119.2500 -64.0 + 103.2500 122.5000 -64.0 + 102.2500 124.5000 -64.0 + 104.5000 122.7500 -64.0 + 106.5000 121.7500 -64.0 + 112.5000 119.7500 -64.0 + 114.2500 121.5000 -64.0 + 115.2500 123.5000 -64.0 + 112.5000 126.2500 -64.0 + 112.2500 129.5000 -64.0 + 113.2500 131.5000 -64.0 + 111.5000 134.2500 -64.0 + 107.5000 134.2500 -64.0 + 104.7500 130.5000 -64.0 + 102.5000 130.2500 -64.0 + 100.7500 129.5000 -64.0 + 100.7500 127.5000 -64.0 + 98.5000 131.2500 -64.0 + 98.2500 134.5000 -64.0 + 99.2500 136.5000 -64.0 + 105.5000 137.7500 -64.0 + 111.5000 134.7500 -64.0 + 116.5000 134.7500 -64.0 + 119.5000 133.7500 -64.0 + 121.2500 134.5000 -64.0 + 123.5000 132.7500 -64.0 + 123.7500 129.5000 -64.0 + 121.5000 129.2500 -64.0 + 119.7500 128.5000 -64.0 + 119.7500 126.5000 -64.0 + 117.7500 122.5000 -64.0 + 118.5000 121.7500 -64.0 + 120.5000 120.7500 -64.0 + 121.7500 118.5000 -64.0 + 120.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 128.5000 -64.0 + 127.5000 132.2500 -64.0 + 127.2500 134.5000 -64.0 + 129.5000 132.7500 -64.0 + 131.2500 133.5000 -64.0 + 138.5000 133.7500 -64.0 + 138.7500 132.5000 -64.0 + 136.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 86.2500 131.5000 -64.0 + 86.2500 132.5000 -64.0 + 87.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 140.2500 137.5000 -64.0 + 139.5000 138.2500 -64.0 + 133.5000 138.2500 -64.0 + 129.5000 140.2500 -64.0 + 125.5000 140.2500 -64.0 + 123.2500 142.5000 -64.0 + 121.2500 146.5000 -64.0 + 116.5000 151.2500 -64.0 + 113.5000 151.2500 -64.0 + 113.2500 152.5000 -64.0 + 116.5000 155.7500 -64.0 + 118.5000 156.7500 -64.0 + 117.7500 155.5000 -64.0 + 118.7500 152.5000 -64.0 + 124.5000 146.7500 -64.0 + 128.5000 144.7500 -64.0 + 130.5000 145.7500 -64.0 + 132.5000 144.7500 -64.0 + 134.5000 144.7500 -64.0 + 137.7500 142.5000 -64.0 + 138.7500 140.5000 -64.0 + 140.5000 139.7500 -64.0 + 140.7500 138.5000 -64.0 +} -64.0 +{ -64.0 + 93.2500 141.5000 -64.0 + 92.5000 142.2500 -64.0 + 89.2500 142.5000 -64.0 + 88.2500 144.5000 -64.0 + 89.5000 147.7500 -64.0 + 93.5000 149.7500 -64.0 + 99.5000 147.7500 -64.0 + 102.5000 148.7500 -64.0 + 107.5000 150.7500 -64.0 + 113.2500 156.5000 -64.0 + 113.2500 158.5000 -64.0 + 114.5000 156.7500 -64.0 + 110.7500 152.5000 -64.0 + 110.7500 150.5000 -64.0 + 106.5000 148.2500 -64.0 + 100.5000 145.2500 -64.0 + 96.7500 141.5000 -64.0 +} -64.0 +{ -64.0 + 96.5000 143.7500 -64.0 + 98.2500 145.5000 -64.0 + 97.5000 147.2500 -64.0 + 93.5000 147.2500 -64.0 + 91.7500 146.5000 -64.0 + 92.5000 145.7500 -64.0 + 94.5000 145.7500 -64.0 +} -64.0 +v 108 z -212.000000 -64.0 +{ -64.0 + 118.2500 113.5000 -64.0 + 117.5000 115.2500 -64.0 + 114.5000 115.2500 -64.0 + 106.5000 120.2500 -64.0 + 104.5000 120.2500 -64.0 + 101.5000 123.2500 -64.0 + 101.2500 125.5000 -64.0 + 105.5000 121.7500 -64.0 + 109.5000 119.7500 -64.0 + 113.2500 120.5000 -64.0 + 114.2500 122.5000 -64.0 + 109.5000 130.2500 -64.0 + 105.5000 130.2500 -64.0 + 105.2500 131.5000 -64.0 + 103.5000 132.2500 -64.0 + 102.7500 130.5000 -64.0 + 104.7500 129.5000 -64.0 + 100.7500 128.5000 -64.0 + 100.7500 126.5000 -64.0 + 99.5000 127.2500 -64.0 + 98.5000 137.7500 -64.0 + 100.5000 138.7500 -64.0 + 100.7500 137.5000 -64.0 + 102.5000 136.7500 -64.0 + 106.5000 138.7500 -64.0 + 110.5000 136.7500 -64.0 + 120.5000 136.7500 -64.0 + 120.7500 134.5000 -64.0 + 117.7500 132.5000 -64.0 + 117.7500 124.5000 -64.0 + 116.7500 122.5000 -64.0 + 116.7500 120.5000 -64.0 + 118.5000 119.7500 -64.0 + 119.5000 117.7500 -64.0 + 119.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 122.2500 117.5000 -64.0 + 120.2500 123.5000 -64.0 + 123.2500 129.5000 -64.0 + 123.2500 132.5000 -64.0 + 124.5000 131.7500 -64.0 + 124.7500 126.5000 -64.0 + 125.5000 124.7500 -64.0 + 124.7500 123.5000 -64.0 + 125.7500 121.5000 -64.0 + 123.7500 117.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 128.5000 -64.0 + 131.5000 129.2500 -64.0 + 124.5000 137.2500 -64.0 + 124.2500 140.5000 -64.0 + 129.5000 137.7500 -64.0 + 129.7500 135.5000 -64.0 + 131.5000 134.7500 -64.0 + 133.5000 137.7500 -64.0 + 137.5000 135.7500 -64.0 + 139.5000 137.7500 -64.0 + 141.5000 136.7500 -64.0 + 140.5000 133.2500 -64.0 + 136.5000 131.2500 -64.0 + 135.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 139.5000 -64.0 + 88.2500 141.5000 -64.0 + 93.5000 141.7500 -64.0 + 95.2500 142.5000 -64.0 + 95.7500 141.5000 -64.0 + 92.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 134.2500 140.5000 -64.0 + 133.5000 141.2500 -64.0 + 131.5000 141.2500 -64.0 + 129.5000 142.2500 -64.0 + 125.2500 142.5000 -64.0 + 123.2500 146.5000 -64.0 + 124.5000 146.7500 -64.0 + 126.5000 145.7500 -64.0 + 128.5000 145.7500 -64.0 + 131.5000 146.7500 -64.0 + 135.5000 143.7500 -64.0 + 137.7500 142.5000 -64.0 + 138.7500 140.5000 -64.0 + 137.5000 141.2500 -64.0 + 135.7500 140.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 143.5000 -64.0 + 94.5000 145.2500 -64.0 + 92.5000 145.2500 -64.0 + 90.5000 146.2500 -64.0 + 88.7500 145.5000 -64.0 + 87.2500 146.5000 -64.0 + 90.5000 146.7500 -64.0 + 92.5000 147.7500 -64.0 + 96.5000 145.7500 -64.0 + 98.2500 147.5000 -64.0 + 95.5000 149.2500 -64.0 + 92.2500 149.5000 -64.0 + 95.5000 149.7500 -64.0 + 97.5000 148.7500 -64.0 + 106.7500 149.5000 -64.0 + 102.7500 146.5000 -64.0 + 100.5000 146.2500 -64.0 + 97.7500 143.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 154.5000 -64.0 + 114.2500 157.5000 -64.0 + 116.5000 159.7500 -64.0 + 116.7500 154.5000 -64.0 + 115.5000 155.2500 -64.0 + 114.7500 154.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 162.5000 -64.0 + 111.5000 163.7500 -64.0 + 113.5000 164.7500 -64.0 + 113.7500 163.5000 -64.0 +} -64.0 +v 99 z -214.000000 -64.0 +{ -64.0 + 117.2500 114.5000 -64.0 + 116.5000 115.2500 -64.0 + 111.5000 115.2500 -64.0 + 110.2500 116.5000 -64.0 + 109.2500 118.5000 -64.0 + 107.5000 119.2500 -64.0 + 105.5000 120.2500 -64.0 + 103.5000 120.2500 -64.0 + 102.2500 121.5000 -64.0 + 101.2500 123.5000 -64.0 + 99.5000 124.2500 -64.0 + 99.2500 126.5000 -64.0 + 101.2500 130.5000 -64.0 + 102.5000 129.7500 -64.0 + 104.2500 130.5000 -64.0 + 106.2500 134.5000 -64.0 + 105.5000 136.2500 -64.0 + 103.5000 137.2500 -64.0 + 100.5000 136.2500 -64.0 + 97.7500 130.5000 -64.0 + 96.2500 131.5000 -64.0 + 97.2500 133.5000 -64.0 + 97.2500 135.5000 -64.0 + 99.2500 139.5000 -64.0 + 102.5000 139.7500 -64.0 + 104.5000 138.7500 -64.0 + 107.5000 138.7500 -64.0 + 111.5000 135.7500 -64.0 + 113.5000 135.7500 -64.0 + 113.7500 134.5000 -64.0 + 112.7500 132.5000 -64.0 + 115.5000 130.7500 -64.0 + 114.7500 129.5000 -64.0 + 114.7500 127.5000 -64.0 + 115.5000 125.7500 -64.0 + 115.7500 120.5000 -64.0 + 117.5000 118.7500 -64.0 + 117.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 116.5000 -64.0 + 120.2500 119.5000 -64.0 + 118.5000 128.2500 -64.0 + 120.2500 130.5000 -64.0 + 119.2500 131.5000 -64.0 + 121.2500 135.5000 -64.0 + 122.7500 135.5000 -64.0 + 124.5000 131.7500 -64.0 + 124.7500 121.5000 -64.0 + 123.7500 119.5000 -64.0 + 123.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 131.5000 -64.0 + 129.5000 133.2500 -64.0 + 125.2500 135.5000 -64.0 + 122.2500 142.5000 -64.0 + 116.5000 149.2500 -64.0 + 112.2500 152.5000 -64.0 + 115.7500 152.5000 -64.0 + 124.5000 146.7500 -64.0 + 124.7500 142.5000 -64.0 + 126.5000 141.7500 -64.0 + 128.2500 142.5000 -64.0 + 127.2500 145.5000 -64.0 + 129.2500 146.5000 -64.0 + 132.5000 146.7500 -64.0 + 134.5000 145.7500 -64.0 + 134.7500 143.5000 -64.0 + 132.5000 143.2500 -64.0 + 131.7500 141.5000 -64.0 + 133.5000 139.7500 -64.0 + 137.5000 139.7500 -64.0 + 139.5000 140.7500 -64.0 + 141.5000 139.7500 -64.0 + 141.7500 136.5000 -64.0 + 139.7500 134.5000 -64.0 + 137.5000 134.2500 -64.0 + 134.7500 131.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 139.5000 -64.0 + 91.2500 141.5000 -64.0 + 90.5000 143.2500 -64.0 + 91.2500 144.5000 -64.0 + 93.5000 144.7500 -64.0 + 97.2500 147.5000 -64.0 + 98.7500 147.5000 -64.0 + 97.7500 145.5000 -64.0 + 97.7500 143.5000 -64.0 + 92.7500 139.5000 -64.0 +} -64.0 +{ -64.0 + 107.7500 120.5000 -64.0 + 108.5000 119.7500 -64.0 + 110.5000 119.7500 -64.0 + 112.2500 120.5000 -64.0 + 113.2500 122.5000 -64.0 + 107.5000 127.2500 -64.0 + 103.5000 127.2500 -64.0 + 101.7500 126.5000 -64.0 + 101.7500 123.5000 -64.0 + 105.5000 120.7500 -64.0 +} -64.0 +{ -64.0 + 106.7500 132.5000 -64.0 + 108.5000 131.7500 -64.0 + 109.2500 133.5000 -64.0 + 107.5000 134.2500 -64.0 +} -64.0 +v 105 z -216.000000 -64.0 +{ -64.0 + 113.2500 114.5000 -64.0 + 112.5000 115.2500 -64.0 + 110.5000 116.2500 -64.0 + 108.2500 118.5000 -64.0 + 103.2500 120.5000 -64.0 + 106.5000 120.7500 -64.0 + 108.2500 121.5000 -64.0 + 107.5000 123.2500 -64.0 + 105.5000 123.2500 -64.0 + 98.5000 122.2500 -64.0 + 98.5000 123.7500 -64.0 + 100.5000 124.7500 -64.0 + 101.2500 126.5000 -64.0 + 104.5000 127.7500 -64.0 + 106.5000 126.7500 -64.0 + 111.5000 126.7500 -64.0 + 111.7500 124.5000 -64.0 + 114.5000 122.7500 -64.0 + 114.7500 120.5000 -64.0 + 116.5000 118.7500 -64.0 + 116.7500 116.5000 -64.0 + 115.7500 114.5000 -64.0 +} -64.0 +{ -64.0 + 120.2500 116.5000 -64.0 + 119.5000 117.2500 -64.0 + 119.2500 120.5000 -64.0 + 115.2500 128.5000 -64.0 + 116.2500 130.5000 -64.0 + 115.5000 132.2500 -64.0 + 114.7500 131.5000 -64.0 + 107.5000 135.2500 -64.0 + 104.5000 135.2500 -64.0 + 102.7500 134.5000 -64.0 + 98.5000 129.2500 -64.0 + 96.5000 128.2500 -64.0 + 96.2500 131.5000 -64.0 + 97.2500 133.5000 -64.0 + 97.2500 137.5000 -64.0 + 98.2500 139.5000 -64.0 + 102.5000 139.7500 -64.0 + 106.5000 137.7500 -64.0 + 108.5000 137.7500 -64.0 + 112.5000 135.7500 -64.0 + 113.2500 136.5000 -64.0 + 117.5000 137.7500 -64.0 + 119.5000 136.7500 -64.0 + 121.5000 136.7500 -64.0 + 123.2500 137.5000 -64.0 + 124.2500 139.5000 -64.0 + 122.2500 144.5000 -64.0 + 117.5000 149.2500 -64.0 + 112.5000 152.2500 -64.0 + 107.5000 150.2500 -64.0 + 97.7500 142.5000 -64.0 + 89.5000 139.2500 -64.0 + 89.2500 140.5000 -64.0 + 90.5000 140.7500 -64.0 + 93.2500 144.5000 -64.0 + 92.2500 146.5000 -64.0 + 97.5000 146.7500 -64.0 + 110.5000 152.7500 -64.0 + 112.2500 153.5000 -64.0 + 112.2500 155.5000 -64.0 + 113.5000 156.7500 -64.0 + 115.5000 157.7500 -64.0 + 115.7500 155.5000 -64.0 + 119.5000 151.7500 -64.0 + 126.5000 145.7500 -64.0 + 127.2500 146.5000 -64.0 + 128.5000 145.7500 -64.0 + 135.5000 146.7500 -64.0 + 136.7500 145.5000 -64.0 + 137.7500 143.5000 -64.0 + 138.5000 141.7500 -64.0 + 138.7500 138.5000 -64.0 + 137.7500 135.5000 -64.0 + 135.5000 135.2500 -64.0 + 133.7500 134.5000 -64.0 + 135.5000 133.7500 -64.0 + 135.7500 132.5000 -64.0 + 134.7500 130.5000 -64.0 + 127.5000 134.2500 -64.0 + 124.7500 132.5000 -64.0 + 124.7500 129.5000 -64.0 + 126.7500 125.5000 -64.0 + 125.7500 123.5000 -64.0 + 121.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 108.7500 120.5000 -64.0 + 109.5000 119.7500 -64.0 + 110.2500 120.5000 -64.0 + 109.5000 121.2500 -64.0 +} -64.0 +{ -64.0 + 97.7500 133.5000 -64.0 + 98.5000 132.7500 -64.0 + 100.2500 134.5000 -64.0 + 101.2500 136.5000 -64.0 + 99.5000 137.2500 -64.0 +} -64.0 +{ -64.0 + 133.7500 142.5000 -64.0 + 134.5000 141.7500 -64.0 + 135.2500 142.5000 -64.0 + 136.2500 144.5000 -64.0 + 134.5000 146.2500 -64.0 + 132.7500 144.5000 -64.0 +} -64.0 +{ -64.0 + 114.5000 151.7500 -64.0 + 116.2500 152.5000 -64.0 + 114.5000 154.2500 -64.0 + 112.7500 153.5000 -64.0 +} -64.0 +v 104 z -218.000000 -64.0 +{ -64.0 + 113.2500 113.5000 -64.0 + 111.5000 114.2500 -64.0 + 112.2500 115.5000 -64.0 + 111.5000 117.2500 -64.0 + 108.5000 117.2500 -64.0 + 103.5000 121.2500 -64.0 + 101.5000 121.2500 -64.0 + 99.5000 122.2500 -64.0 + 100.5000 122.7500 -64.0 + 105.5000 123.7500 -64.0 + 113.5000 119.7500 -64.0 + 115.5000 116.7500 -64.0 + 115.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 118.2500 116.5000 -64.0 + 118.2500 117.5000 -64.0 + 117.2500 122.5000 -64.0 + 115.5000 124.2500 -64.0 + 113.2500 125.5000 -64.0 + 112.2500 127.5000 -64.0 + 108.5000 131.2500 -64.0 + 106.7500 130.5000 -64.0 + 101.5000 130.2500 -64.0 + 98.5000 127.2500 -64.0 + 96.5000 126.2500 -64.0 + 96.2500 128.5000 -64.0 + 97.5000 127.7500 -64.0 + 98.2500 128.5000 -64.0 + 99.2500 130.5000 -64.0 + 105.2500 136.5000 -64.0 + 104.5000 138.2500 -64.0 + 102.5000 138.2500 -64.0 + 98.7500 136.5000 -64.0 + 97.7500 134.5000 -64.0 + 96.5000 136.2500 -64.0 + 96.2500 139.5000 -64.0 + 94.5000 141.2500 -64.0 + 91.2500 141.5000 -64.0 + 92.2500 143.5000 -64.0 + 94.5000 143.7500 -64.0 + 95.2500 145.5000 -64.0 + 93.5000 146.2500 -64.0 + 89.5000 144.2500 -64.0 + 89.2500 147.5000 -64.0 + 91.2500 148.5000 -64.0 + 98.5000 148.7500 -64.0 + 101.5000 149.7500 -64.0 + 107.2500 152.5000 -64.0 + 115.5000 153.7500 -64.0 + 117.2500 154.5000 -64.0 + 117.2500 156.5000 -64.0 + 118.7500 153.5000 -64.0 + 122.5000 149.7500 -64.0 + 126.5000 146.7500 -64.0 + 128.5000 146.7500 -64.0 + 130.5000 145.7500 -64.0 + 133.5000 146.7500 -64.0 + 136.5000 145.7500 -64.0 + 139.5000 140.7500 -64.0 + 139.7500 137.5000 -64.0 + 138.7500 135.5000 -64.0 + 134.5000 135.2500 -64.0 + 132.7500 133.5000 -64.0 + 133.5000 132.7500 -64.0 + 135.5000 131.7500 -64.0 + 135.5000 129.2500 -64.0 + 129.5000 133.2500 -64.0 + 126.5000 133.2500 -64.0 + 123.7500 130.5000 -64.0 + 124.7500 127.5000 -64.0 + 126.7500 126.5000 -64.0 + 127.7500 124.5000 -64.0 + 123.7500 122.5000 -64.0 + 123.7500 120.5000 -64.0 + 119.7500 116.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 157.5000 -64.0 + 113.2500 159.5000 -64.0 + 114.2500 161.5000 -64.0 + 114.2500 163.5000 -64.0 + 115.5000 162.7500 -64.0 + 116.7500 157.5000 -64.0 + 115.5000 158.2500 -64.0 +} -64.0 +{ -64.0 + 117.7500 125.5000 -64.0 + 119.5000 124.7500 -64.0 + 123.2500 127.5000 -64.0 + 123.2500 129.5000 -64.0 + 119.5000 132.2500 -64.0 + 116.7500 127.5000 -64.0 +} -64.0 +{ -64.0 + 116.7500 137.5000 -64.0 + 117.5000 136.7500 -64.0 + 120.5000 136.7500 -64.0 + 123.5000 137.7500 -64.0 + 125.2500 140.5000 -64.0 + 124.5000 141.2500 -64.0 + 124.2500 143.5000 -64.0 + 121.2500 147.5000 -64.0 + 114.5000 152.2500 -64.0 + 111.5000 152.2500 -64.0 + 102.5000 148.2500 -64.0 + 98.7500 143.5000 -64.0 + 99.5000 141.7500 -64.0 + 105.5000 138.7500 -64.0 + 106.2500 139.5000 -64.0 + 108.5000 139.7500 -64.0 + 110.5000 137.7500 -64.0 +} -64.0 +v 134 z -220.000000 -64.0 +{ -64.0 + 114.2500 91.5000 -64.0 + 114.5000 92.7500 -64.0 + 116.5000 93.7500 -64.0 +} -64.0 +{ -64.0 + 90.2500 109.5000 -64.0 + 91.2500 111.5000 -64.0 + 92.5000 111.7500 -64.0 + 92.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 110.5000 -64.0 + 127.5000 110.7500 -64.0 + 129.5000 111.7500 -64.0 + 129.7500 110.5000 -64.0 +} -64.0 +{ -64.0 + 112.2500 113.5000 -64.0 + 112.2500 115.5000 -64.0 + 110.5000 117.2500 -64.0 + 107.5000 117.2500 -64.0 + 104.5000 120.2500 -64.0 + 100.5000 120.2500 -64.0 + 100.2500 121.5000 -64.0 + 102.5000 121.7500 -64.0 + 104.5000 120.7500 -64.0 + 107.5000 120.7500 -64.0 + 111.5000 117.7500 -64.0 + 114.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 115.5000 -64.0 + 115.2500 120.5000 -64.0 + 112.5000 124.2500 -64.0 + 110.5000 124.2500 -64.0 + 108.5000 126.2500 -64.0 + 110.5000 128.7500 -64.0 + 112.5000 127.7500 -64.0 + 112.7500 125.5000 -64.0 + 117.5000 123.7500 -64.0 + 120.5000 124.7500 -64.0 + 123.2500 127.5000 -64.0 + 121.5000 134.2500 -64.0 + 119.5000 134.2500 -64.0 + 117.5000 135.2500 -64.0 + 116.7500 134.5000 -64.0 + 116.7500 131.5000 -64.0 + 115.5000 131.2500 -64.0 + 114.5000 133.2500 -64.0 + 112.5000 134.2500 -64.0 + 112.2500 137.5000 -64.0 + 125.5000 137.7500 -64.0 + 126.2500 139.5000 -64.0 + 125.2500 144.5000 -64.0 + 115.5000 154.2500 -64.0 + 111.5000 154.2500 -64.0 + 107.5000 151.2500 -64.0 + 101.5000 148.2500 -64.0 + 98.7500 144.5000 -64.0 + 99.5000 142.7500 -64.0 + 103.5000 139.7500 -64.0 + 105.5000 139.7500 -64.0 + 107.5000 138.7500 -64.0 + 109.2500 139.5000 -64.0 + 109.7500 138.5000 -64.0 + 107.7500 137.5000 -64.0 + 107.7500 135.5000 -64.0 + 106.5000 135.2500 -64.0 + 105.5000 138.2500 -64.0 + 99.5000 138.2500 -64.0 + 97.7500 136.5000 -64.0 + 97.7500 134.5000 -64.0 + 96.2500 137.5000 -64.0 + 93.5000 140.2500 -64.0 + 91.5000 141.2500 -64.0 + 91.2500 142.5000 -64.0 + 89.5000 143.2500 -64.0 + 88.2500 147.5000 -64.0 + 89.5000 148.7500 -64.0 + 95.5000 149.2500 -64.0 + 94.7500 147.5000 -64.0 + 96.5000 145.7500 -64.0 + 100.2500 148.5000 -64.0 + 99.2500 149.5000 -64.0 + 102.2500 151.5000 -64.0 + 105.5000 151.7500 -64.0 + 109.2500 154.5000 -64.0 + 116.5000 154.7500 -64.0 + 118.2500 155.5000 -64.0 + 117.2500 160.5000 -64.0 + 120.7500 152.5000 -64.0 + 124.5000 148.7500 -64.0 + 128.5000 146.7500 -64.0 + 133.5000 146.7500 -64.0 + 136.5000 145.7500 -64.0 + 139.5000 142.7500 -64.0 + 140.5000 138.7500 -64.0 + 139.7500 136.5000 -64.0 + 137.5000 136.2500 -64.0 + 134.5000 140.2500 -64.0 + 130.5000 140.2500 -64.0 + 128.7500 138.5000 -64.0 + 133.5000 135.7500 -64.0 + 135.5000 135.7500 -64.0 + 137.5000 134.7500 -64.0 + 134.5000 133.2500 -64.0 + 128.5000 136.2500 -64.0 + 123.7500 130.5000 -64.0 + 123.7500 128.5000 -64.0 + 125.5000 126.7500 -64.0 + 128.7500 126.5000 -64.0 + 127.7500 124.5000 -64.0 + 124.5000 124.2500 -64.0 + 120.7500 119.5000 -64.0 + 118.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 125.5000 -64.0 + 96.5000 126.2500 -64.0 + 96.2500 128.5000 -64.0 + 97.5000 128.7500 -64.0 + 99.2500 129.5000 -64.0 + 104.5000 129.7500 -64.0 + 107.5000 128.7500 -64.0 + 107.7500 127.5000 -64.0 + 106.5000 127.2500 -64.0 + 104.5000 126.2500 -64.0 + 100.5000 128.2500 -64.0 + 98.5000 127.2500 -64.0 +} -64.0 +{ -64.0 + 134.2500 129.5000 -64.0 + 131.5000 131.2500 -64.0 + 132.5000 131.7500 -64.0 + 135.5000 130.7500 -64.0 + 135.7500 129.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 159.5000 -64.0 + 113.2500 161.5000 -64.0 + 114.5000 161.7500 -64.0 +} -64.0 +{ -64.0 + 90.7500 144.5000 -64.0 + 91.5000 143.7500 -64.0 + 93.2500 144.5000 -64.0 + 94.2500 146.5000 -64.0 + 93.5000 148.2500 -64.0 + 91.5000 148.2500 -64.0 + 89.7500 146.5000 -64.0 +} -64.0 +v 125 z -222.000000 -64.0 +{ -64.0 + 114.2500 92.5000 -64.0 + 114.2500 93.5000 -64.0 + 116.5000 93.7500 -64.0 + 115.7500 92.5000 -64.0 +} -64.0 +{ -64.0 + 95.2500 95.5000 -64.0 + 94.5000 97.7500 -64.0 + 96.5000 96.7500 -64.0 +} -64.0 +{ -64.0 + 127.2500 106.5000 -64.0 + 126.5000 107.2500 -64.0 + 127.2500 108.5000 -64.0 + 127.2500 110.5000 -64.0 + 129.7500 110.5000 -64.0 + 128.7500 107.5000 -64.0 +} -64.0 +{ -64.0 + 91.2500 109.5000 -64.0 + 91.2500 110.5000 -64.0 + 92.2500 113.5000 -64.0 + 93.5000 113.7500 -64.0 + 92.7500 112.5000 -64.0 + 92.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 90.2500 115.5000 -64.0 + 90.5000 115.7500 -64.0 + 92.5000 116.7500 -64.0 + 92.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 116.2500 115.5000 -64.0 + 112.5000 119.2500 -64.0 + 112.2500 121.5000 -64.0 + 110.5000 123.2500 -64.0 + 108.2500 123.5000 -64.0 + 114.5000 123.7500 -64.0 + 114.7500 121.5000 -64.0 + 116.5000 119.7500 -64.0 + 122.2500 128.5000 -64.0 + 121.2500 131.5000 -64.0 + 118.5000 134.2500 -64.0 + 115.5000 134.2500 -64.0 + 118.2500 136.5000 -64.0 + 117.5000 137.2500 -64.0 + 118.5000 137.7500 -64.0 + 124.5000 135.7500 -64.0 + 124.7500 126.5000 -64.0 + 123.5000 126.2500 -64.0 + 119.7500 122.5000 -64.0 + 119.7500 120.5000 -64.0 + 117.7500 118.5000 -64.0 + 117.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 101.2500 124.5000 -64.0 + 100.5000 125.2500 -64.0 + 98.5000 125.2500 -64.0 + 99.2500 126.5000 -64.0 + 99.2500 128.5000 -64.0 + 98.5000 130.2500 -64.0 + 99.5000 130.7500 -64.0 + 101.5000 128.7500 -64.0 + 106.7500 124.5000 -64.0 +} -64.0 +{ -64.0 + 126.2500 125.5000 -64.0 + 127.2500 127.5000 -64.0 + 129.5000 127.7500 -64.0 + 129.7500 126.5000 -64.0 +} -64.0 +{ -64.0 + 131.2500 128.5000 -64.0 + 131.2500 129.5000 -64.0 + 135.5000 129.7500 -64.0 + 135.7500 128.5000 -64.0 +} -64.0 +{ -64.0 + 133.2500 133.5000 -64.0 + 129.5000 135.2500 -64.0 + 127.2500 137.5000 -64.0 + 125.2500 141.5000 -64.0 + 126.2500 144.5000 -64.0 + 116.2500 155.5000 -64.0 + 117.2500 157.5000 -64.0 + 117.5000 162.7500 -64.0 + 117.7500 158.5000 -64.0 + 123.5000 150.7500 -64.0 + 130.5000 146.7500 -64.0 + 135.5000 146.7500 -64.0 + 140.5000 140.7500 -64.0 + 140.7500 138.5000 -64.0 + 139.5000 138.2500 -64.0 + 134.5000 143.2500 -64.0 + 129.5000 143.2500 -64.0 + 128.7500 141.5000 -64.0 + 129.5000 139.7500 -64.0 + 132.5000 139.7500 -64.0 + 136.5000 136.7500 -64.0 + 138.5000 136.7500 -64.0 + 138.7500 135.5000 -64.0 + 135.7500 133.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 136.5000 -64.0 + 97.2500 137.5000 -64.0 + 94.5000 139.2500 -64.0 + 90.5000 141.2500 -64.0 + 90.2500 143.5000 -64.0 + 88.5000 145.2500 -64.0 + 88.5000 148.7500 -64.0 + 90.5000 149.7500 -64.0 + 89.7500 147.5000 -64.0 + 90.5000 145.7500 -64.0 + 92.5000 144.7500 -64.0 + 94.5000 146.7500 -64.0 + 99.7500 147.5000 -64.0 + 98.7500 145.5000 -64.0 + 98.7500 143.5000 -64.0 + 100.5000 141.7500 -64.0 + 106.7500 139.5000 -64.0 + 104.5000 139.2500 -64.0 + 101.5000 138.2500 -64.0 + 98.5000 139.2500 -64.0 + 97.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 113.2500 137.5000 -64.0 + 113.5000 137.7500 -64.0 + 115.5000 138.7500 -64.0 + 115.7500 137.5000 -64.0 +} -64.0 +{ -64.0 + 100.2500 148.5000 -64.0 + 99.5000 150.2500 -64.0 + 96.5000 150.2500 -64.0 + 94.5000 149.2500 -64.0 + 92.5000 150.2500 -64.0 + 94.5000 151.7500 -64.0 + 97.5000 150.7500 -64.0 + 105.5000 152.7500 -64.0 + 111.5000 158.7500 -64.0 + 111.7500 155.5000 -64.0 +} -64.0 +{ -64.0 + 129.7500 136.5000 -64.0 + 130.5000 135.7500 -64.0 + 132.2500 136.5000 -64.0 + 131.5000 137.2500 -64.0 +} -64.0 +v 115 z -224.000000 -64.0 +{ -64.0 + 114.2500 93.5000 -64.0 + 114.5000 93.7500 -64.0 + 116.5000 94.7500 -64.0 + 115.7500 93.5000 -64.0 +} -64.0 +{ -64.0 + 96.2500 96.5000 -64.0 + 95.2500 97.5000 -64.0 + 96.7500 97.5000 -64.0 +} -64.0 +{ -64.0 + 124.2500 104.5000 -64.0 + 126.2500 108.5000 -64.0 + 126.7500 107.5000 -64.0 + 125.7500 104.5000 -64.0 +} -64.0 +{ -64.0 + 127.2500 109.5000 -64.0 + 127.2500 110.5000 -64.0 + 128.5000 110.7500 -64.0 + 128.7500 109.5000 -64.0 +} -64.0 +{ -64.0 + 92.2500 111.5000 -64.0 + 93.2500 114.5000 -64.0 + 91.2500 115.5000 -64.0 + 93.5000 115.7500 -64.0 + 93.7500 112.5000 -64.0 +} -64.0 +{ -64.0 + 132.2500 113.5000 -64.0 + 132.2500 114.5000 -64.0 + 133.7500 115.5000 -64.0 + 134.7500 113.5000 -64.0 +} -64.0 +{ -64.0 + 114.2500 115.5000 -64.0 + 111.2500 120.5000 -64.0 + 107.5000 122.2500 -64.0 + 102.5000 122.2500 -64.0 + 100.5000 123.2500 -64.0 + 102.2500 126.5000 -64.0 + 98.5000 131.2500 -64.0 + 98.5000 132.7500 -64.0 + 101.7500 130.5000 -64.0 + 103.7500 126.5000 -64.0 + 108.5000 123.7500 -64.0 + 111.5000 123.7500 -64.0 + 113.5000 120.7500 -64.0 + 115.2500 121.5000 -64.0 + 116.5000 120.7500 -64.0 + 116.7500 115.5000 -64.0 +} -64.0 +{ -64.0 + 117.2500 121.5000 -64.0 + 117.2500 122.5000 -64.0 + 120.2500 126.5000 -64.0 + 120.2500 128.5000 -64.0 + 118.5000 130.2500 -64.0 + 114.5000 133.2500 -64.0 + 114.2500 135.5000 -64.0 + 118.5000 135.7500 -64.0 + 119.2500 137.5000 -64.0 + 117.5000 139.2500 -64.0 + 115.5000 139.2500 -64.0 + 113.7500 137.5000 -64.0 + 112.2500 139.5000 -64.0 + 121.5000 139.7500 -64.0 + 122.7500 138.5000 -64.0 + 125.7500 132.5000 -64.0 + 124.7500 129.5000 -64.0 + 126.5000 125.7500 -64.0 + 125.5000 124.2500 -64.0 + 123.5000 125.2500 -64.0 + 120.7500 121.5000 -64.0 +} -64.0 +{ -64.0 + 97.2500 135.5000 -64.0 + 97.2500 136.5000 -64.0 + 95.2500 141.5000 -64.0 + 94.5000 143.2500 -64.0 + 88.5000 146.2500 -64.0 + 88.2500 149.5000 -64.0 + 94.5000 152.7500 -64.0 + 96.5000 151.7500 -64.0 + 103.5000 152.7500 -64.0 + 109.5000 155.7500 -64.0 + 108.7500 154.5000 -64.0 + 102.5000 150.2500 -64.0 + 100.5000 149.2500 -64.0 + 99.5000 151.2500 -64.0 + 96.5000 151.2500 -64.0 + 94.7500 149.5000 -64.0 + 96.5000 147.7500 -64.0 + 99.5000 148.7500 -64.0 + 97.7500 145.5000 -64.0 + 97.7500 143.5000 -64.0 + 98.5000 141.7500 -64.0 + 103.5000 141.7500 -64.0 + 107.5000 139.7500 -64.0 + 106.5000 139.2500 -64.0 + 104.7500 138.5000 -64.0 + 105.7500 136.5000 -64.0 + 103.5000 136.2500 -64.0 + 101.5000 138.2500 -64.0 + 98.7500 135.5000 -64.0 +} -64.0 +{ -64.0 + 130.2500 135.5000 -64.0 + 124.5000 142.2500 -64.0 + 127.2500 145.5000 -64.0 + 124.2500 149.5000 -64.0 + 131.5000 145.7500 -64.0 + 137.5000 145.7500 -64.0 + 140.7500 141.5000 -64.0 + 138.5000 141.2500 -64.0 + 134.5000 144.2500 -64.0 + 131.5000 144.2500 -64.0 + 129.7500 143.5000 -64.0 + 138.5000 139.7500 -64.0 + 138.5000 136.2500 -64.0 + 136.5000 135.2500 -64.0 + 137.2500 136.5000 -64.0 + 136.5000 138.2500 -64.0 + 134.7500 137.5000 -64.0 + 132.5000 138.2500 -64.0 + 131.5000 140.2500 -64.0 + 129.7500 139.5000 -64.0 + 131.7500 135.5000 -64.0 +} -64.0 +{ -64.0 + 115.2500 164.5000 -64.0 + 115.2500 166.5000 -64.0 + 116.5000 166.7500 -64.0 + 116.7500 164.5000 -64.0 +} -64.0 + -64.0 \ No newline at end of file diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom1249.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom1249.pts new file mode 100644 index 000000000000..e3d4e09ed6a0 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom1249.pts @@ -0,0 +1,1249 @@ +1248 +27.850301 -17.970299 134.875148 +-25.310101 -17.089901 117.229948 +-30.421501 -21.008499 144.254249 +0.114400 -1.784400 50.132200 +-18.264400 12.484400 101.627799 +17.396600 -1.906600 99.023301 +21.175900 -19.185901 135.392952 +21.063600 -19.043600 132.826796 +-22.225100 -15.724900 108.897448 +8.249500 -14.839500 101.639749 +29.463299 -5.123300 142.671651 +28.427000 -18.197000 149.973500 +20.364199 6.405800 114.632099 +14.811500 -9.141500 105.235749 +-15.004000 -8.116000 98.497997 +19.542701 -11.952700 123.446353 +-10.693900 -4.016100 58.998050 +-18.223399 -13.286600 96.398302 +-24.134400 11.784400 107.332801 +-23.475999 8.946000 104.191998 +-4.457700 9.027700 56.901148 +16.912700 15.277300 98.476347 +12.924100 12.075900 77.677051 +-21.715099 6.515100 96.397452 +10.053100 -2.053100 61.576548 +8.974900 -5.644900 68.852447 +29.422501 -20.732500 142.186247 +31.027899 -19.127900 149.983950 +27.245601 -13.955600 143.737795 +27.104600 -21.824600 149.962300 +22.975500 -13.585500 143.232755 +17.288300 -16.248301 111.504147 +11.139900 -5.079900 66.779953 +5.708200 -5.798200 66.274099 +9.299900 -4.059900 60.559951 +18.658001 -17.238001 120.339001 +28.983600 -7.483600 149.996800 +27.157400 -17.317400 149.988700 +30.981799 -14.521800 149.960900 +20.507200 17.852800 112.518598 +14.246800 -7.776800 92.238399 +15.299200 -12.349200 106.839596 +20.051600 -15.941601 125.510798 +17.014300 -12.824300 114.637149 +22.088301 -9.988300 120.869147 +18.696699 -9.706700 114.113353 +21.106100 -15.646100 129.163047 +22.033800 -2.333800 121.891898 +-19.762800 -11.657200 96.948599 +-20.256000 10.436000 98.992001 +-2.200600 2.110600 56.369702 +4.071700 -2.541700 66.255849 +3.152600 -1.982600 62.086299 +9.701500 -1.501500 62.625749 +14.424000 10.726000 88.107003 +-17.650600 6.960600 97.964700 +-16.106900 1.746900 89.671550 +3.865300 -3.635300 75.612649 +3.290200 -2.310200 69.370102 +-16.555599 8.445600 91.712202 +-7.549400 1.549400 62.095299 +6.940000 -9.100000 95.914998 +7.074300 -4.804300 73.542148 +-19.513600 4.613600 100.078202 +-20.076300 6.286300 102.651850 +-18.569800 -9.290200 100.035102 +-20.560200 1.840200 99.014901 +-17.004301 -7.375700 95.372852 +-15.204500 -11.905500 99.517748 +-11.031800 -10.748200 96.414102 +-4.650500 -7.619500 80.814746 +10.709000 -15.099000 110.989500 +9.578600 -12.348600 107.329301 +0.532000 -11.422000 103.195997 +-20.686101 6.686100 104.721952 +-15.619500 -8.810500 100.040252 +-15.200400 -10.819600 104.194798 +-12.088800 -11.001200 104.220598 +10.674700 -9.114700 102.117354 +20.819301 -18.709300 132.819646 +20.199099 -12.049100 128.674543 +19.385099 -11.085100 123.957550 +-20.917200 -9.272800 92.751403 +-4.043800 -2.546200 51.163101 +-9.308000 -4.242000 58.466000 +-16.998900 -14.221100 97.475553 +-15.706300 -13.303700 92.791853 +-19.028101 -12.051900 90.675951 +-22.591499 15.911500 100.584248 +-15.927600 14.587600 91.711202 +3.550800 8.709200 54.815400 +16.712400 11.697600 99.021201 +-19.986700 12.906700 96.921649 +-11.174600 7.344600 64.152697 +-13.900700 8.860700 77.674651 +11.669300 -3.059300 65.219648 +15.810500 0.239500 89.140254 +5.729900 -1.889900 53.249949 +7.298300 1.991700 57.419149 +23.049200 11.560800 111.494597 +20.645301 4.974700 113.057652 +13.972400 -3.812400 76.116204 +25.074399 0.045600 121.367202 +24.139500 4.980500 116.704751 +24.998800 -17.598800 145.279407 +26.568401 -16.038400 146.854205 +29.687400 -21.817400 149.958700 +22.317100 -19.487100 141.113554 +25.554001 -17.094000 148.407002 +23.782200 -13.892200 146.856105 +27.890600 -16.050599 147.355294 +12.177100 -4.727100 67.308550 +9.268400 -5.148400 63.159200 +10.442500 -4.652500 60.026251 +11.252200 -4.762200 65.236098 +8.167200 -3.957200 64.183597 +7.972200 -4.402200 66.261099 +-19.830300 13.350300 103.164847 +30.963699 -7.213700 149.951850 +19.028700 14.271300 109.414352 +18.123000 15.257000 105.256499 +25.123199 -0.783200 126.596598 +23.697200 8.712800 116.683601 +22.574900 2.235100 119.282450 +22.567500 9.082500 114.078753 +23.254100 5.555900 117.232048 +20.163701 14.096300 113.586848 +24.498400 -20.888400 149.954200 +18.343900 -7.843900 101.601949 +15.379100 -10.709100 108.904548 +15.561800 -12.021800 110.440903 +12.753200 -13.093200 108.906598 +17.214001 -12.934000 112.521998 +17.983100 -12.533100 114.631549 +12.877700 -11.097700 103.713851 +12.889700 -9.189700 101.594849 +12.393600 -13.353600 103.161797 +20.851200 -17.701200 130.215605 +20.459600 -17.209600 127.624799 +20.577200 -13.737200 125.553598 +19.710300 -16.280299 122.945149 +19.676200 -15.496200 122.928099 +12.485200 -11.985200 105.252599 +11.968600 -13.238600 106.829296 +21.251200 -8.951200 115.150604 +21.900801 -7.770800 118.780403 +19.093600 -0.583600 105.761803 +22.807101 0.602900 117.213548 +22.114700 6.175300 112.542348 +12.904200 -9.734200 107.327101 +11.800100 -10.420100 109.390052 +19.031600 -11.781600 121.380802 +21.798900 2.881100 117.214448 +22.072500 5.927500 114.596249 +22.255400 -4.445400 119.797696 +22.579200 -0.669200 119.284600 +18.505701 -11.765700 116.707851 +23.753101 -11.153100 131.261549 +23.506001 -2.996000 123.983000 +23.473301 -5.973300 123.966650 +22.830800 -4.360800 121.870398 +-19.869601 -13.140400 97.955200 +-20.318900 -11.191100 95.365552 +-21.455201 -1.124800 98.992401 +-20.642100 -9.617900 96.928949 +-22.819500 11.419500 103.675251 +-21.773300 11.133300 102.113354 +-21.579701 9.669700 99.015151 +-2.144400 1.054400 53.792799 +-4.323100 1.703100 55.838451 +-0.517400 -2.832600 58.471300 +-1.598500 -0.901500 53.790749 +-3.327100 -1.722900 54.831450 +-6.151400 2.481400 58.479300 +-7.639500 -2.870500 58.995250 +-4.462400 -3.167600 61.063802 +-8.892300 -3.417700 59.488850 +2.383600 -2.413600 66.271799 +-1.912000 4.502000 55.359001 +8.304700 -1.794700 60.532351 +6.917900 -0.907900 57.918949 +0.455600 1.654400 54.312800 +4.490400 -0.380400 55.310201 +4.719600 1.400400 55.329801 +5.251200 -3.031200 61.070602 +4.253600 -2.293600 55.836801 +-1.507200 5.247200 57.431399 +9.099200 -1.539200 61.579598 +-3.477400 5.587400 57.436299 +5.813900 -3.023900 62.626949 +5.740100 -3.320100 64.685051 +7.698300 0.961700 61.079152 +7.038400 3.821600 60.524201 +-1.123300 5.973300 58.473350 +-11.906800 -9.293200 96.391602 +-11.910600 -8.269400 97.959700 +0.503600 -10.243600 101.626799 +-4.825000 -9.885000 98.487497 +17.830800 5.989200 98.510397 +-14.861700 10.991700 86.029151 +15.921900 13.058100 92.750953 +15.026600 9.873400 88.103303 +-19.060499 10.430500 98.994751 +-18.130300 12.180300 96.929849 +-17.176200 10.856200 94.316901 +-17.909900 2.589900 96.955049 +-19.156400 4.436400 96.916799 +-19.930999 4.581000 98.499497 +5.521700 -4.311700 71.965850 +-19.701600 12.661600 100.069202 +-20.812100 11.672100 98.483947 +-20.825200 12.795200 96.917399 +-18.757200 13.337200 93.281400 +-18.345499 13.475500 90.702251 +-20.228600 9.038600 97.455703 +-18.708099 7.788100 96.405952 +-16.348100 9.858100 90.195947 +-7.977300 3.337300 60.541351 +-11.808700 4.728700 71.995650 +-10.434000 3.634000 65.202998 +-5.086500 -4.323500 71.466753 +0.870600 -3.170600 75.100303 +-2.508200 -4.341800 75.095903 +-9.061500 5.131500 65.209248 +0.447400 8.312600 61.558698 +0.540500 9.129500 65.230248 +-7.760200 6.150200 62.099899 +-5.932200 9.472200 62.098899 +-10.075900 7.105900 68.332051 +7.026000 -4.076000 69.872998 +10.748600 -1.578600 65.744302 +7.064500 -3.804500 67.802246 +-14.228600 7.048600 81.830697 +0.624000 -3.784000 78.732002 +-2.199100 -7.120900 83.945449 +0.910300 -4.610300 79.770153 +-1.691200 -6.778800 81.879397 +-14.983700 -7.696300 96.913149 +-8.715400 -8.384600 93.307300 +-13.627000 -7.513000 93.826496 +13.315700 8.914300 81.347851 +14.384600 -1.814600 84.457303 +3.888300 -2.638300 71.449153 +-20.895399 9.765400 102.112304 +-19.105800 9.415800 100.592098 +-19.144600 7.074600 99.522698 +-21.144901 7.764900 101.102553 +-21.158100 5.308100 100.035952 +-20.203401 4.733400 100.078302 +-20.285100 6.535100 99.552448 +-19.867501 6.977500 97.956250 +-16.701200 -10.818800 102.654400 +-16.249600 -11.180400 101.110203 +-19.134101 -12.015900 97.987950 +-16.947700 -11.412300 97.981150 +-17.707000 -10.403000 98.506497 +-19.436600 -9.163400 100.031702 +-21.721901 2.901900 99.029051 +-21.651400 4.391400 101.599299 +-17.619800 -10.570200 96.935099 +-19.640300 -10.629700 95.374852 +-18.564900 -1.845100 97.447553 +-17.973400 -4.876600 94.328301 +-17.237900 -8.492100 96.956049 +-19.617101 -9.482900 95.876448 +-19.072001 -7.548000 95.898998 +-20.384401 1.644400 95.907798 +-16.475200 2.025200 89.642400 +-0.915300 -11.574700 99.532348 +5.236500 -11.196500 101.118253 +7.105100 -12.185100 103.692551 +-4.833600 -12.456400 99.548198 +3.587700 -12.287700 104.233848 +-11.012100 -10.037900 99.548948 +-14.849800 -12.400200 99.520098 +-11.471800 -11.978200 100.044102 +-13.937900 -10.512100 99.546048 +-14.697600 -10.622400 102.126204 +-16.399499 -13.070500 97.435253 +-16.645599 -10.554400 96.437202 +-14.318900 -9.381100 96.435552 +-16.075000 -11.765000 97.432503 +-13.879100 -11.310900 96.405452 +8.370300 -6.840300 78.730152 +5.836600 -8.476600 90.158297 +8.049600 -7.739600 84.989800 +6.871800 -13.841800 100.060902 +2.995900 -5.875900 79.272949 +-9.843800 -11.666200 93.308100 +-10.480200 -12.669800 96.439902 +4.401700 -4.881700 74.040852 +4.844300 -6.424300 70.932149 +6.401900 -6.821900 76.635950 +-2.854500 -7.305500 75.117753 +-12.435900 -5.864100 77.672051 +-16.050100 -6.369900 87.584948 +-14.378200 -7.051800 91.210898 +-17.341500 -3.838500 91.719252 +-16.670000 -7.100000 92.790003 +-16.213400 -6.776600 90.183297 +-14.210300 -9.339700 95.369852 +-0.693600 -3.496400 66.798203 +1.874500 -4.614500 73.032251 +16.307500 -14.677500 114.098753 +12.886800 -14.746800 108.388402 +16.145200 -14.355200 111.992601 +19.079701 -15.199700 120.344851 +18.376101 -14.066100 116.163047 +-6.587500 -13.632500 101.591249 +-12.355600 -12.534400 102.152204 +2.780700 -13.090700 104.190348 +-16.055700 -13.014300 100.557148 +-18.943901 -9.896100 101.638049 +-19.953901 2.633900 100.033052 +-11.035400 -9.444600 102.652300 +-14.802200 -9.647800 103.188897 +-19.080200 4.940200 100.034902 +-19.051199 9.191200 102.634400 +11.654100 -9.624100 105.782053 +3.878300 -11.078300 104.199148 +10.226000 -14.306000 110.443003 +-20.797801 -12.252200 92.231099 +18.481301 1.958700 105.255649 +3.080900 -10.280900 101.090453 +-20.208101 13.128100 90.710951 +-9.834500 10.214500 64.157747 +-21.474900 13.394900 95.362552 +2.548200 -1.428200 49.629099 +6.123200 -2.783200 54.286600 +4.486300 2.443700 51.688151 +5.448100 2.181900 53.784049 +9.673400 0.846600 60.536701 +9.712600 8.327400 65.196298 +22.982500 17.437500 112.026251 +23.942899 12.657100 115.671450 +18.971300 8.268700 104.755652 +21.303101 8.846900 111.491547 +21.161500 11.518500 111.515747 +20.607900 -4.577900 108.883948 +22.374501 15.865500 108.362252 +29.379899 -7.159900 148.399952 +22.148200 -18.958199 138.514098 +23.999200 -14.069200 146.359601 +30.092000 -20.322000 145.316007 +25.465401 -18.835400 147.887698 +9.726500 -4.096500 61.043252 +10.248800 -4.328800 62.629399 +9.941900 -2.591900 62.635949 +10.080400 -1.990400 63.665200 +5.986500 -3.566500 66.793253 +7.280200 -4.320200 66.260099 +31.057399 -6.397400 149.998700 +21.694800 8.405200 114.607399 +22.731200 13.688800 113.030602 +22.918801 11.191200 113.589398 +21.985999 12.554000 113.048002 +21.906799 11.493200 113.573398 +22.248400 1.821600 119.794196 +16.536301 -2.806300 94.323151 +18.774899 -2.934900 105.782453 +15.962600 -10.982600 108.911298 +17.625200 -11.455200 112.532598 +14.680600 -10.850600 106.805296 +14.956100 -11.846100 108.878048 +16.422500 -11.012500 112.516248 +15.800800 -10.710800 110.950400 +16.323700 -13.233700 110.441853 +12.565700 -12.055700 101.607849 +12.073700 -9.623700 103.671851 +9.856000 -6.856000 78.237998 +19.813300 -12.463300 123.476653 +11.211700 -10.151700 103.685851 +13.702600 -11.622600 107.356301 +13.741200 -11.611200 106.795596 +10.592600 -14.672600 109.941299 +10.970000 -14.090000 104.730002 +20.161701 -8.141700 108.380852 +18.341101 -2.181100 103.670551 +21.176500 -4.256500 115.113254 +19.864300 -3.604300 110.972150 +19.000100 -2.800100 107.320051 +15.300200 -9.330200 107.320101 +17.744199 -11.234200 114.607099 +18.064699 -11.294700 116.687351 +18.155199 -10.645200 117.212598 +22.239300 0.710700 119.319650 +23.097000 5.023000 116.683501 +22.833101 4.646900 119.306550 +23.943600 0.026400 121.896798 +24.344800 0.935200 121.887398 +22.038699 5.551300 114.109353 +21.817901 7.242100 114.098953 +22.650900 6.489100 114.590449 +22.047599 -3.577600 117.238798 +23.728501 -3.518500 121.894248 +21.818500 -1.128500 117.224248 +20.224299 -3.374300 113.042152 +20.642800 -3.622800 115.146404 +23.035299 0.004700 119.307650 +22.762501 -3.402500 119.271250 +26.109100 -5.889100 131.774553 +26.260599 -2.320600 129.175297 +24.383699 -5.773700 126.556848 +24.585801 -3.455800 123.987900 +24.507800 -1.517800 123.478903 +23.095200 -1.885200 121.892598 +-21.069200 -10.340800 95.895398 +-21.263501 -9.066500 97.443253 +-21.871401 11.921400 102.154304 +-22.629499 10.979500 102.125254 +-3.089700 4.849700 54.810150 +-1.995700 1.025700 53.247149 +-3.808300 4.718300 55.315851 +-2.563500 -2.246500 53.773249 +-4.778300 -1.591700 55.310851 +-3.715500 -2.444500 54.827250 +-2.715500 -1.094500 53.787249 +-4.852400 3.982400 58.473800 +-4.653400 4.553400 57.393299 +-4.061100 2.651100 56.904448 +-2.546700 2.416700 55.326651 +-8.068300 -1.411700 58.985850 +-3.838900 1.728900 56.915548 +-7.604500 -2.105500 58.462750 +-6.998900 -3.171100 58.460550 +-5.521700 0.361700 57.949149 +-2.973200 1.153200 55.353401 +-1.923500 -0.326500 55.353251 +-10.482400 3.952400 67.303800 +-3.653800 -3.206200 65.213098 +-1.448400 -3.021600 66.765803 +-9.218600 3.098600 65.190698 +-0.462900 2.592900 54.273550 +8.063300 -0.003300 58.476650 +2.443600 -1.503600 52.196802 +1.720900 -0.570900 51.685451 +0.261300 -1.001300 51.715651 +-1.007300 0.077300 53.236349 +1.049300 -1.919300 54.794650 +-1.498700 0.418700 54.270650 +-1.444500 0.014500 54.827750 +4.184200 2.065800 54.802100 +4.460000 2.760000 53.254999 +6.734300 2.025700 57.927149 +4.345700 1.744300 56.382852 +-0.237900 -2.462100 58.461050 +5.872000 -0.702000 55.336001 +6.442400 1.107600 57.931199 +3.319600 -1.989600 58.474800 +4.282500 1.017500 55.351251 +-1.445000 3.595000 55.877501 +-0.485100 2.845100 55.877451 +-1.454600 2.024600 54.822700 +5.745400 2.754600 55.857701 +5.633700 0.426300 55.311851 +4.461200 -0.811200 52.715598 +3.570900 1.759100 53.270449 +3.250700 0.399300 52.195352 +5.723800 3.876200 56.881898 +-0.977000 5.387000 57.396499 +4.967600 -2.257600 53.778799 +-1.971400 5.711400 56.384302 +8.033400 1.716600 60.016701 +9.139800 -0.679800 61.599898 +8.949100 -0.669100 61.074552 +9.047300 -1.457300 62.088649 +7.109500 4.410500 59.479750 +7.933100 3.676900 60.556551 +-8.984900 -9.175100 95.897548 +0.598900 -9.778900 100.034452 +-17.128199 12.078200 96.925899 +16.645199 2.394800 95.882598 +15.626100 1.453900 90.703051 +14.841600 12.258400 90.150797 +-15.930800 9.370800 90.169597 +15.111600 10.078400 89.650800 +-18.572300 12.242300 100.033852 +-19.811201 12.281200 97.984400 +-16.347099 13.737100 91.741452 +-18.811701 13.021700 92.269149 +-17.837300 13.337300 92.276349 +-17.081200 13.271200 93.314400 +-17.856500 4.066500 98.516747 +-18.786001 4.746000 98.476997 +-21.000300 3.670300 98.474847 +-20.752300 2.872300 98.513847 +7.249400 -5.679400 69.369702 +5.777500 -4.487500 70.408752 +4.603200 -3.233200 67.296600 +5.974100 -4.854100 67.287050 +5.335200 -3.745200 69.372602 +-16.499700 13.289700 90.685151 +-20.912000 12.362000 96.958999 +-21.594200 12.804200 98.517897 +-20.775100 12.475100 98.502447 +-20.759800 13.199800 96.950099 +-15.283200 13.193200 86.533398 +-19.654900 12.824900 93.807546 +-18.396400 7.436400 94.846797 +-18.371999 13.702000 89.129004 +-7.789900 4.059900 59.475050 +-9.356500 1.886500 62.606749 +-10.212100 3.162100 62.613949 +-15.292300 10.132300 86.038851 +-14.785000 9.135000 81.832497 +-10.827800 2.417800 64.156097 +-10.210600 2.390600 65.759702 +-6.756800 -3.573200 65.236598 +-9.469600 1.919600 64.170197 +-2.924400 -3.455600 69.902798 +-10.137300 5.887300 68.861347 +-12.612300 6.612300 77.713851 +1.076400 9.473600 64.698201 +-2.029800 6.949800 57.415099 +3.301900 -2.221900 67.790946 +8.036200 6.673800 64.173097 +-10.128600 6.178600 66.245699 +-8.139300 6.189300 61.570348 +-4.122300 7.932300 58.973850 +-4.172100 8.732100 59.488950 +-8.603300 3.333300 62.608349 +0.563200 -2.753200 66.791603 +0.562000 9.988000 68.346001 +-9.018100 7.958100 62.615949 +-6.984000 8.674000 61.562998 +-9.686800 7.526800 64.176597 +-7.311800 6.531800 62.604099 +-11.889900 7.249900 71.455053 +-10.956700 7.646700 65.726652 +-10.665100 6.305100 70.952449 +-9.969900 7.579900 65.210048 +-9.153600 7.653600 65.723202 +9.043200 -4.543200 67.796596 +8.712100 -4.102100 66.776053 +11.849900 -4.369900 67.794946 +6.775700 -3.965700 71.967850 +10.736500 1.233500 65.738252 +11.129600 8.350400 71.974800 +9.522200 -0.442200 62.591099 +8.286700 3.443300 61.598348 +9.468700 0.561300 62.619349 +-11.538400 -8.511600 96.410802 +14.541400 9.548600 87.060702 +13.429200 -2.329200 77.184597 +-19.824700 11.724700 101.637649 +-20.738800 10.828800 100.560598 +-20.055999 10.966000 100.551998 +-19.408699 9.348700 98.990651 +-20.488900 9.278900 101.080553 +-21.865900 7.415900 99.537048 +-21.178800 4.638800 98.470597 +-20.600600 5.500600 101.599699 +-20.710699 6.380700 97.959650 +-20.677699 6.937700 97.976150 +-20.338200 5.858200 99.525898 +-20.277300 11.417300 102.156354 +-20.647399 7.817400 102.631300 +-16.013600 -13.416400 100.578198 +-18.070301 -13.779700 99.544848 +-19.446700 -12.923300 99.541648 +-17.209300 -11.720700 99.545348 +-16.739900 -11.550100 99.520048 +-19.026900 -9.703100 100.061552 +-17.887701 -12.452300 99.546148 +-15.971300 -11.148700 99.559348 +-15.678100 -9.831900 101.605949 +-15.446900 -11.083100 102.661550 +-20.269301 -9.190700 100.045352 +-19.640699 -10.939300 98.474647 +-21.477400 5.407400 100.046302 +-18.805799 -11.964200 96.437102 +-17.937401 -2.042600 95.886298 +-17.162600 -0.177400 91.728702 +-18.283601 0.073600 95.878198 +-20.225801 -2.194200 95.902098 +-19.877400 -1.292600 97.466303 +-17.522800 -8.377200 98.513597 +-19.861900 -0.118100 97.474053 +-19.426100 1.256100 97.436953 +-19.457500 -9.512500 96.936249 +-18.080600 -9.899400 96.954699 +-20.346100 -9.883900 95.351952 +-18.459300 -7.490700 96.930349 +-18.618901 -7.741100 95.880548 +-18.978800 -8.421200 96.920599 +-20.064400 -7.895600 97.452803 +-19.394500 -4.695500 97.452753 +-19.944901 -8.645100 94.317551 +-20.432301 -8.337700 95.883848 +-19.915901 -5.434100 95.892048 +-21.048100 -0.571900 95.905948 +-14.592100 8.032100 80.798946 +-1.273500 -10.286500 100.048252 +2.758700 -11.898700 101.104353 +4.969800 -11.599800 101.074903 +0.497400 -11.537400 101.103703 +0.686300 -10.626300 101.633149 +-1.961500 -11.018500 100.049252 +8.126300 -10.126300 100.583148 +3.692500 -11.092500 102.666250 +6.195400 -11.235400 102.677700 +6.806500 -13.476500 102.123254 +5.796200 -12.036200 102.148104 +7.812300 -13.262300 101.596149 +7.333800 -11.483800 102.121904 +4.534400 -13.864400 102.132204 +0.311100 -12.631100 101.100553 +-2.320100 -13.109900 101.094953 +-0.060000 -12.310000 102.650000 +7.110100 -12.570100 103.695051 +-13.817700 -9.012300 99.521148 +-11.398700 -9.541300 101.090653 +-13.059600 -9.500400 97.980200 +-1.984100 -10.455900 101.612949 +-10.137700 -10.152300 97.456153 +-10.090500 -11.269500 97.479753 +-7.062300 -11.657700 98.473847 +-10.540700 -9.509300 99.529648 +-8.871800 -10.628200 100.589098 +-9.435300 -11.774700 99.022351 +-12.858100 -11.651900 99.020951 +-10.158400 -11.291600 100.555798 +-14.481000 -12.549000 97.469503 +-9.823700 -10.536300 102.638150 +-4.578100 -11.361900 101.630949 +-4.400300 -11.479700 100.034852 +-13.624600 -10.285400 97.952700 +-12.417300 -11.102700 102.671350 +-12.059100 -11.050900 101.110453 +-13.340600 -10.629400 101.079703 +-12.703600 -11.966400 100.583198 +-13.709000 -11.591000 101.070503 +-13.886400 -11.173600 102.646800 +-14.580800 -10.569200 102.654600 +-16.395599 -13.674400 96.957199 +-15.273900 -12.876100 94.853047 +-16.463399 -12.186600 95.398302 +-16.845900 -12.194100 97.467053 +-16.270699 -10.559300 94.849647 +-14.895900 -7.924100 95.357052 +-15.952600 -11.837400 95.888698 +8.999400 -8.169400 88.624699 +-1.951400 -7.968600 80.839296 +1.519900 -13.839900 99.029951 +-3.163900 -13.006100 99.523048 +-2.444000 -8.756000 87.058002 +-2.377500 -11.922500 96.416252 +-5.825300 -11.704700 98.497347 +-4.285300 -11.234700 98.502347 +-3.072700 -9.337300 92.783653 +-2.852700 -9.197300 91.228648 +-10.256200 -13.323800 100.046902 +-7.767800 -12.682200 99.541098 +3.179500 -5.899500 75.594749 +3.816800 -5.836800 74.068402 +5.268300 -4.898300 74.594148 +5.013300 -5.403300 77.176647 +4.839400 -5.449400 76.149704 +-0.478400 -6.161600 78.725802 +-3.160100 -6.699900 78.209948 +4.905800 -4.335800 74.037902 +5.658800 -5.768800 73.034401 +-18.743100 -12.386900 94.838447 +-5.969000 -5.351000 71.455503 +-14.914300 -4.505700 78.207848 +-12.596700 3.606700 72.476647 +-16.529799 -2.190200 87.570098 +-14.929800 -2.460200 80.835096 +-16.021900 -2.008100 85.479047 +-16.434299 -4.845700 85.492847 +-17.649101 -4.930900 92.780453 +-17.411000 -5.029000 91.759502 +-15.047400 -7.062600 89.661300 +-19.743401 -10.336600 92.773303 +-19.632000 -11.398000 92.253999 +-20.240601 -10.509400 94.334701 +-8.613500 -8.606500 90.718251 +-10.367600 -8.342400 93.286200 +-14.576100 -12.593900 91.751952 +-15.813600 -11.806400 91.203198 +-16.881300 -10.578700 93.819346 +-5.934000 -8.366000 88.118003 +-3.775600 -6.304400 76.112204 +-3.915400 -5.844600 74.572298 +-2.848200 -4.781800 73.530898 +1.946800 -5.566800 71.978400 +3.504500 -4.074500 74.042252 +3.815800 -4.355800 72.992901 +4.350600 -5.480600 71.435303 +4.330000 -5.250000 72.494997 +3.807500 -5.237500 70.398752 +2.250300 -5.580300 73.030151 +-1.741100 -4.118900 73.514448 +-0.621600 -3.908400 71.474203 +-1.640700 -5.509300 77.179647 +-1.134300 -4.735700 76.117854 +0.886300 -4.846300 77.178147 +0.960500 -4.980500 75.595249 +19.434700 -15.774700 122.917349 +16.403399 -15.823400 113.566698 +14.380000 -13.650000 106.839996 +12.812500 -13.552500 106.791246 +12.593000 -14.553000 106.286500 +14.959600 -14.949600 109.944799 +14.348700 -12.868700 108.369352 +14.253200 -14.333200 110.456603 +15.051900 -15.101900 112.025951 +19.063800 -12.133800 118.796903 +17.765000 -16.035001 115.677500 +-1.132400 -12.367600 103.168797 +-7.281300 -14.248700 101.594349 +-12.936200 -13.733800 102.126904 +-19.031599 -1.878400 99.009201 +-18.427901 2.807900 98.486047 +5.566800 -11.906800 104.233398 +8.440000 -10.640000 104.229998 +18.891900 1.818100 107.355951 +-20.619101 -12.610900 92.240449 +2.507200 -0.277200 49.103599 +18.247300 3.062700 102.113654 +19.661600 11.418400 109.920799 +17.886900 4.673100 102.113454 +-19.567501 14.097500 89.146254 +-8.484300 9.104300 61.052852 +-10.928400 9.608400 64.670801 +9.342000 5.998000 62.605999 +12.389100 10.620900 74.074552 +23.612199 17.337800 114.111103 +20.930699 7.409300 110.460353 +19.408001 3.942000 107.339001 +21.632499 12.437500 109.396252 +19.459799 11.880200 107.834897 +21.044199 9.885800 109.952099 +19.995600 12.884400 111.507797 +20.822699 10.117300 112.011351 +21.259400 9.530600 112.034701 +20.094301 15.515700 110.992150 +22.501500 15.058500 110.950750 +21.912701 12.347300 111.506347 +19.004100 15.795900 105.242049 +19.710200 15.499800 108.905098 +21.259000 16.191000 110.434503 +17.803699 13.776300 102.156854 +15.177400 9.722600 87.078702 +21.939200 -18.989199 138.529598 +23.911700 -13.801700 146.315851 +9.310900 -2.930900 62.110449 +23.127999 13.542000 113.034002 +22.026599 15.673400 113.068302 +22.630500 10.409500 114.110253 +22.306500 13.003500 113.578248 +21.877799 12.492200 113.558898 +22.036099 10.133900 114.108053 +9.660500 -9.490500 100.570248 +13.234500 -11.634500 105.267249 +15.683900 -11.453900 110.986950 +15.229400 -10.339400 108.919698 +16.328500 -11.218500 110.444253 +11.132700 -14.082700 102.661350 +14.446700 -13.526700 106.293350 +10.165900 -10.055900 104.192948 +11.387200 -9.647200 103.683601 +12.260800 -13.720800 104.740402 +11.562800 -13.462800 106.811396 +20.435100 -3.325100 110.967550 +21.217500 1.302500 117.223748 +20.850901 2.799100 115.150454 +22.218400 5.011600 117.219198 +22.275201 5.924800 114.597599 +23.548200 4.351800 118.784103 +23.407600 2.952400 119.283800 +20.810401 -3.450400 115.130204 +22.672000 1.668000 119.800996 +23.458500 0.581500 119.309250 +22.526901 -4.516900 119.833446 +26.467201 -2.627200 129.168597 +25.050799 -2.240800 126.560398 +-18.884899 -12.705100 96.397552 +-20.838900 -11.701100 96.910549 +-20.707300 -10.302700 94.346351 +-21.245200 12.155200 100.077402 +-2.979900 -0.100100 53.750049 +-1.436100 -1.653900 54.831950 +-1.004900 -1.265100 54.287550 +-4.738300 -2.201700 54.835850 +-2.840700 -0.669300 54.839650 +-2.847700 3.237700 55.851151 +-3.452400 4.162400 56.373802 +-1.977500 1.127500 54.316250 +-3.410300 2.150300 55.324851 +-9.306400 1.176400 60.556801 +-9.533000 1.113000 61.563498 +-9.235700 1.735700 61.552148 +-5.845100 -0.054900 57.392449 +-6.742400 -0.627600 58.988800 +-6.203500 -2.826500 56.913248 +-6.574700 -0.845300 58.472650 +-4.095700 0.715700 55.857151 +-3.577500 -1.022500 55.876251 +-1.324400 4.944400 58.997800 +1.937000 -0.987000 50.133500 +0.420500 1.349500 53.775249 +2.204900 0.255100 50.642450 +8.248700 -1.888700 59.484350 +6.950800 0.389200 57.935399 +-0.660600 -0.699400 53.269699 +-1.436900 0.696900 53.776549 +-2.051700 1.461700 55.334151 +-1.472900 -0.287100 54.813550 +-0.004700 0.984700 54.317650 +-0.319900 -2.520100 57.950049 +3.078400 -1.708400 53.254199 +5.237000 3.113000 55.848501 +-1.456500 2.376500 55.346751 +5.973600 2.056400 55.336801 +3.632100 -0.452100 52.756048 +3.661100 0.328900 51.675551 +5.372600 3.557400 57.401299 +-1.218900 5.388900 56.375552 +-16.900299 0.640300 92.754853 +-8.766600 -8.563400 94.831697 +-17.369600 11.989600 98.505197 +-14.430800 11.680800 83.424602 +-18.450301 11.330300 98.474847 +-18.156600 12.666600 92.276699 +-19.437900 12.877900 95.391052 +-19.977801 5.607800 97.986100 +7.468500 -4.268500 67.279250 +7.634000 -4.934000 68.831997 +6.310500 -3.440500 68.330251 +-17.804000 13.144000 97.973000 +-19.238299 12.828300 98.505847 +-16.842600 13.172600 89.123704 +-17.875700 9.275700 97.457153 +-17.528501 10.848500 95.360752 +-10.420200 1.940200 61.599898 +-5.235100 4.685100 57.397449 +-10.689100 1.659100 62.080449 +-9.898600 0.778600 63.675700 +-6.698200 -4.701800 70.430902 +-10.887500 -1.062500 63.111250 +0.190800 -3.010800 71.970400 +-0.084200 -3.165800 74.037902 +-8.963700 6.073700 65.758152 +-9.851000 6.131000 66.774503 +-2.943200 -6.006800 79.243399 +-2.575900 -4.564100 76.122054 +-10.995400 5.735400 71.472303 +7.643600 5.836400 61.051802 +6.448300 4.791700 58.964150 +-1.015200 6.165200 57.427399 +11.096800 9.553200 71.478403 +9.057300 6.952700 65.208648 +-8.771400 3.781400 62.074299 +-3.283700 7.473700 57.433149 +-2.533300 6.363300 57.943349 +-3.161800 8.221800 57.929099 +-6.149500 6.839500 58.980250 +-7.230500 8.290500 61.049752 +-7.556200 4.366200 60.541901 +-9.994300 4.304300 64.187847 +-8.963900 4.083900 63.148050 +-7.231200 8.501200 62.094399 +-4.680400 9.130400 60.029801 +-8.176900 6.906900 62.606549 +-6.618500 9.308500 63.665750 +-6.622300 8.532300 63.663850 +7.832100 4.517900 61.581048 +9.177400 6.492600 64.188697 +11.363700 8.996300 73.526848 +-14.315900 8.395900 81.857047 +9.925000 -8.095000 91.732502 +7.637400 -8.527400 92.273699 +-16.025100 -1.074900 87.597448 +13.503600 11.316400 80.826796 +14.441300 4.428700 82.915648 +3.068000 -5.418000 79.238999 +5.164300 -4.084300 73.037151 +-19.133900 10.793900 100.578048 +-19.882701 9.742700 100.553648 +-21.877999 8.168000 101.086003 +-18.307699 12.037700 100.076152 +-18.956600 8.146600 99.531698 +-20.833301 8.623300 99.538348 +-20.579900 5.269900 98.515047 +-21.368699 7.318700 97.965650 +-15.711300 -13.398700 102.149354 +-18.242199 -14.137800 99.543898 +-19.128900 -13.381100 99.530548 +-18.751200 -13.208800 101.079403 +-17.369601 -13.450400 100.595198 +-15.470100 -10.289900 99.554948 +-17.622000 -11.998000 97.979000 +-18.969501 -12.970500 97.985250 +-20.297800 -9.522200 98.486097 +-20.041400 -8.988600 97.464303 +-22.337700 6.107700 101.606149 +-21.421200 4.661200 98.519397 +-19.942101 -5.897900 94.318951 +-20.196300 -2.363700 97.471853 +-20.205400 0.605400 97.467303 +-20.026100 1.306100 97.471953 +-19.501500 0.671500 96.914249 +-18.046900 -9.563100 98.506547 +-20.152400 -9.007600 96.918799 +-19.113601 -8.916400 98.483197 +-19.917400 -5.452600 98.991301 +-19.058700 -7.431300 97.455653 +-20.600200 -5.409800 95.879898 +-20.391500 -4.828500 97.459253 +-18.158801 0.618800 95.375602 +-18.085800 -0.914200 94.352101 +-21.077800 1.227800 97.451103 +-20.904700 3.534700 95.892648 +-20.725500 -0.774500 94.337251 +1.656800 -12.046800 99.528398 +1.375800 -10.685800 101.107903 +-2.204500 -9.755500 96.942749 +2.351300 -13.141300 100.560648 +4.268100 -13.268100 100.564048 +4.446000 -11.966000 101.073003 +1.185800 -12.065800 102.652900 +3.278700 -13.098700 102.124354 +2.657400 -11.867400 102.678700 +-0.041200 -11.088800 101.619399 +4.417300 -12.107300 102.673650 +7.918300 -9.928300 102.149154 +5.226100 -13.316100 101.623049 +7.224300 -13.044300 102.157154 +7.005200 -14.205200 101.632599 +-0.241100 -13.088900 101.084453 +-1.299100 -11.680900 101.605449 +-0.725400 -11.414600 101.107303 +-3.895800 -12.704200 101.622099 +-2.657700 -12.092300 101.626149 +-1.259700 -13.020300 102.145154 +5.117700 -13.427700 103.683851 +6.028100 -12.468100 104.194048 +-9.005600 -11.644400 97.432203 +-7.580700 -10.549300 99.009651 +-8.126200 -9.903800 98.991901 +-9.141600 -11.488400 98.999201 +-9.957600 -9.722400 100.566198 +-6.761800 -12.628200 100.064102 +-10.849200 -11.060800 97.435403 +-10.337200 -11.122800 98.996401 +-15.430000 -13.560000 99.015001 +-13.858600 -13.471400 99.030701 +-11.126300 -12.393700 98.481847 +-5.201100 -10.968900 102.114454 +-4.884800 -10.385200 100.587598 +-7.142300 -10.377700 100.583848 +-9.404900 -10.375100 102.127554 +-2.794400 -12.145600 100.062802 +-3.641800 -11.558200 98.484097 +-4.366100 -10.783900 100.051952 +-16.248799 -12.571200 95.905598 +-15.558200 -9.601800 100.070902 +-12.069800 -11.720200 102.115104 +-12.968800 -11.831200 102.110604 +-14.535100 -11.014900 101.092453 +-13.630600 -11.569400 99.529698 +-16.839200 -13.770800 98.515397 +-15.121400 -13.008600 95.889298 +-16.586300 -7.463700 93.801846 +-16.328800 -11.351200 97.950600 +-14.892000 -11.678000 97.994000 +-1.479300 -7.400700 81.845347 +1.704500 -9.164500 92.257249 +-2.526900 -13.033100 97.476553 +0.609300 -13.289300 98.999651 +-5.638200 -12.681800 98.505897 +-2.951500 -9.328500 90.199247 +-8.721500 -12.178500 98.494247 +-10.965500 -12.024500 99.027251 +-9.812600 -12.037400 97.448703 +4.922200 -5.582200 75.621099 +3.014000 -6.524000 74.052002 +2.992300 -5.082300 76.651150 +3.315700 -5.645700 77.702851 +-0.489900 -6.620100 79.760053 +-2.971100 -6.778900 76.119454 +-0.741400 -7.228600 79.774303 +7.418000 -5.658000 71.979000 +4.855800 -5.685800 74.582898 +-15.413100 -6.296900 84.993450 +-13.719500 7.869500 77.700251 +-13.932100 5.432100 80.283950 +-14.582700 -7.297300 93.833646 +-16.340899 -0.519100 89.144554 +-16.430900 -7.379100 92.264549 +-16.089500 -7.260500 92.760253 +-20.344100 -10.375900 92.792953 +-15.898200 -12.141800 92.775903 +-17.373301 -10.936700 95.353352 +-3.282800 -6.947200 76.158604 +-4.096200 -5.783800 73.541898 +-4.712700 -4.817300 73.548648 +-5.949000 -5.221000 73.025501 +-3.369100 -5.470900 76.115454 +-5.298600 -6.371400 75.600699 +-2.107300 -4.812700 75.101353 +-2.906500 -5.103500 74.561748 +-1.200300 -4.249700 72.479847 +3.349200 -4.039200 73.014601 +3.784100 -5.264100 71.457053 +3.755100 -5.135100 73.027551 +1.703800 -4.023800 73.006901 +1.724800 -4.194800 71.992400 +0.728000 -4.668000 76.129004 +-1.398100 -6.191900 79.785953 +1.302400 -4.142400 75.636199 +0.616200 -5.796200 76.138104 +1.033800 -5.393800 76.666900 +0.773000 -5.513000 78.736502 +2.573000 -4.103000 75.111503 +2.523700 -4.603700 75.086853 +3.848400 -4.078400 75.099203 +0.352600 -5.902600 75.101303 +14.779300 -13.719300 108.399652 +14.169000 -13.929000 108.374502 +14.034200 -12.924200 108.887098 +13.809100 -14.669100 109.939549 +15.374200 -15.574200 111.992101 +14.246600 -14.726600 110.453303 +14.163200 -15.183200 109.926599 +17.995099 -14.645100 116.172547 +18.727100 -12.777100 116.718551 +5.203500 -14.453500 102.116754 +-7.577200 -12.942800 101.621399 +-12.417200 -14.212800 102.121404 +-10.189200 -13.710800 101.630399 +-12.684800 -12.595200 100.592598 +-18.994600 3.034600 100.077702 +17.938500 1.271500 102.139254 +18.172200 1.587800 103.676101 +20.542300 8.107700 112.536148 +-8.325600 8.975600 60.522201 +12.273400 11.316600 74.556698 +11.399500 10.250500 69.889748 +20.038900 15.501100 106.809446 +19.741400 12.578600 109.395702 +21.220699 13.649300 107.315351 +20.607401 11.942600 110.958700 +21.035200 8.784800 110.982600 +20.700001 9.330000 110.440003 +21.564700 11.035300 113.597348 +21.831000 16.478999 112.030501 +22.718699 15.041300 110.959350 +22.218999 13.341000 110.999500 +21.832900 16.197100 110.431453 +21.624699 13.385300 109.392352 +20.001500 14.638500 109.430752 +20.050601 16.059400 108.890298 +13.800800 8.389200 81.310401 +8.918300 -3.068300 61.594148 +9.239100 -2.609100 62.609549 +24.849800 4.640200 121.359902 +23.048699 12.901300 113.559348 +11.362700 -9.082700 100.551348 +12.453900 -9.783900 105.236949 +8.091000 -10.551000 102.150504 +13.143600 -13.903600 106.286800 +9.834300 -14.154300 108.357152 +11.236900 -14.266900 108.898448 +24.045800 2.204200 119.297900 +21.579900 -1.089900 117.204948 +24.209099 0.660900 121.354552 +-19.920200 -12.139800 96.954899 +-19.705199 -12.014800 96.402402 +-21.253200 -11.796800 96.958399 +-20.864600 -10.305400 94.347701 +-22.000500 12.300500 101.599749 +-1.911700 -1.348300 55.359151 +-2.414800 -1.665200 55.347601 +-1.634800 -0.775200 53.242599 +-0.924200 -0.765800 52.752898 +-4.062100 6.662100 56.903948 +-2.764500 4.794500 55.312751 +-9.752800 -0.927200 60.543601 +-9.007200 1.597200 61.056402 +-4.900900 -3.109100 57.959549 +-3.373400 0.763400 55.833301 +-0.303400 1.973400 53.788299 +6.939600 -0.359600 57.439799 +-0.322800 2.972800 54.818600 +2.601000 -0.291000 50.120500 +5.754300 1.385700 55.862151 +-1.026300 3.766300 55.321851 +8.488900 -3.988900 63.154450 +-8.255500 -9.234500 97.472253 +-8.875700 -9.104300 96.412152 +21.135701 13.684300 106.807846 +-18.171500 12.571500 97.959250 +-16.929101 13.089100 94.845447 +-18.142899 12.772900 93.833546 +-17.440600 12.530600 94.834697 +7.168700 -4.628700 69.389352 +-19.107301 11.067300 98.486347 +-17.802200 11.132200 96.923899 +-10.431200 -0.448800 61.079402 +-10.630100 0.010100 64.709951 +-2.191800 6.771800 57.914099 +-9.452200 4.712200 64.178897 +-10.022000 3.532000 64.679001 +-8.746800 8.916800 62.591599 +-7.065500 8.015500 62.072249 +-8.323400 7.803400 64.193297 +-8.401500 5.931500 64.154247 +-8.958500 7.108500 64.150747 +-7.750500 6.760500 63.154750 +6.902000 -4.952000 73.026001 +9.089200 5.610800 64.199597 +2.031200 -9.061200 93.800596 +0.774000 -9.234000 95.372002 +6.025700 -8.835700 94.357851 +-18.693999 10.284000 99.008001 +-20.413700 5.623700 98.513147 +-21.500199 7.400200 97.984900 +-20.939700 -9.680300 98.505147 +-20.005100 -12.404900 99.522448 +-15.512100 -13.887900 100.568948 +-18.016201 -13.173800 99.001901 +-19.614299 -8.925700 98.487847 +-20.485701 -7.234300 93.302150 +-20.235900 0.045900 97.452053 +-20.594000 -6.066000 98.998001 +-19.252000 -7.988000 97.439003 +-20.366200 -5.503800 94.351901 +-20.729201 -8.130800 95.900398 +-20.545800 -7.314200 94.342101 +-19.504900 -7.225100 96.912549 +-17.878101 0.438100 95.350952 +-21.312100 3.762100 98.488947 +3.354600 -12.344600 99.007301 +4.605200 -13.745200 100.557598 +1.130300 -12.400300 99.520148 +2.467000 -12.477000 102.673500 +2.390500 -11.400500 102.635250 +-4.104200 -10.285800 98.507897 +5.943600 -13.203600 101.626799 +-0.886200 -12.363800 102.676900 +-9.807600 -10.262400 97.451203 +-4.884100 -10.545900 100.052952 +-6.285300 -10.394700 100.042352 +-5.408200 -11.391800 100.050902 +-7.472800 -12.127200 100.053602 +-13.600500 -13.159500 100.569748 +-14.267400 -12.442600 98.996301 +-11.429100 -12.900900 98.500447 +-15.557100 -13.072900 97.436453 +-11.864500 -12.355500 97.432753 +-7.649700 -10.000300 102.125154 +-3.450800 -12.419200 100.079602 +-12.173600 -12.366400 99.018201 +-15.638900 -12.681100 98.995551 +-14.039000 -11.321000 97.995500 +-5.541200 -9.768800 96.949399 +-9.023300 -12.576700 98.513347 +-10.629400 -11.940600 97.460303 +-0.440800 -6.669200 80.829596 +-2.398300 -5.061700 76.140854 +4.359800 -4.659800 73.014901 +-17.483601 -4.606400 92.783203 +-3.060700 -6.689300 75.079653 +-3.945400 -6.184600 74.557298 +-5.946100 -5.913900 75.601949 +-5.400000 -6.040000 77.164997 +3.948800 -4.358800 72.489397 +-1.300700 -4.529300 74.594648 +-1.090000 -4.620000 75.095003 +-0.904500 -4.375500 73.552748 +1.464500 -5.244500 74.042252 +-1.689200 -5.650800 78.205398 +-3.034000 -6.826000 79.267999 +-0.047900 -5.592100 77.176047 +3.118000 -5.058000 75.633999 +14.808100 -12.418100 108.899048 +16.335901 -15.715900 111.507947 +-1.860800 -14.149200 102.634600 +-11.396100 -13.473900 101.091953 +-9.172300 -11.177700 102.153854 +-12.565700 -13.394300 100.567148 +-19.577500 1.877500 100.046252 +8.466200 -9.386200 100.578098 +19.573299 12.556700 109.406652 +21.416699 14.473300 113.053352 +22.896101 13.143900 113.578048 +11.592400 -9.272400 100.581198 +24.156601 5.503400 118.783303 +-19.708999 -12.051000 94.845497 +-21.051500 -9.698500 97.464253 +-21.918201 12.088200 102.130904 +-2.026100 -1.613900 55.831951 +-4.465300 6.075300 57.437349 +-2.882900 5.062900 55.348551 +-3.651000 -2.789000 58.954500 +-5.789400 -0.200600 57.915299 +-0.009000 0.189000 52.235502 +-18.146099 12.766100 96.436952 +-17.815799 13.105800 93.837096 +-5.299400 -5.510600 76.135304 +-4.335300 -4.734700 74.557348 +-6.351800 7.451800 61.064102 +-6.890500 8.200500 61.059752 +-8.940100 7.870100 64.714951 +9.550500 3.949500 63.675250 +8.953900 4.346100 62.631949 +-18.979699 9.259700 99.035151 +-16.512000 -12.938000 99.548998 +-20.079299 -8.850700 98.510347 +5.940500 -12.870500 102.130254 +0.809800 -13.409800 102.639900 +1.534600 -13.684600 100.587298 +9.148800 -14.488800 106.804396 +-9.647300 -11.772700 100.551348 +-8.129600 -12.640400 100.070202 +-13.581900 -11.868100 97.974050 +-3.431600 -12.718400 99.559198 +-16.493100 -12.906900 97.953450 +6.116500 -8.966500 93.318250 +-7.767700 -12.922300 99.541148 +-3.544400 -13.235600 101.092803 +-5.058200 -11.761800 96.940899 +1.882300 -5.152300 73.036151 +1.651600 -4.141600 74.075802 +1.381800 -3.981800 75.095903 +-0.766000 -6.334000 80.806996 +2.533300 -5.673300 74.576648 +-20.022500 1.102500 99.023751 +-20.421800 -0.278200 98.994101 +20.742200 9.897800 108.386102 +20.921700 15.538300 106.790846 +10.002500 -14.412500 108.351252 +-20.510999 -12.299000 94.854497 +-3.427100 4.807100 55.851451 +-4.795400 8.915400 60.512301 +-5.921800 8.331800 62.104099 +-17.686700 -12.443300 98.996651 +6.241100 -12.721100 103.705551 +1.394800 -13.844800 102.667400 +-4.408600 -13.111400 101.095703 +-4.308600 -13.251400 101.590699 +-4.643600 -12.316400 97.958200 +1.869400 -4.909400 74.054702 +20.499800 9.810200 108.359902 +19.769800 9.660200 108.369902 +20.653601 9.906400 109.941799 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom384.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom384.pts new file mode 100644 index 000000000000..36c8cf42d385 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/thom384.pts @@ -0,0 +1,384 @@ +383 +27.850301 -17.970299 134.875148 +-30.421501 -21.008499 144.254249 +0.114400 -1.784400 50.132200 +-18.264400 12.484400 101.627799 +17.396600 -1.906600 99.023301 +21.063600 -19.043600 132.826796 +29.463299 -5.123300 142.671651 +28.427000 -18.197000 149.973500 +20.364199 6.405800 114.632099 +14.811500 -9.141500 105.235749 +19.542701 -11.952700 123.446353 +-15.004000 -8.116000 98.497997 +-10.693900 -4.016100 58.998050 +-24.134400 11.784400 107.332801 +-23.475999 8.946000 104.191998 +-4.457700 9.027700 56.901148 +16.912700 15.277300 98.476347 +12.924100 12.075900 77.677051 +-21.715099 6.515100 96.397452 +10.053100 -2.053100 61.576548 +8.974900 -5.644900 68.852447 +8.249500 -14.839500 101.639749 +29.422501 -20.732500 142.186247 +27.104600 -21.824600 149.962300 +31.013999 -2.164000 149.977000 +27.157400 -17.317400 149.988700 +30.981799 -14.521800 149.960900 +31.027899 -19.127900 149.983950 +20.507200 17.852800 112.518598 +21.309300 -12.729300 134.384644 +19.385099 -11.085100 123.957550 +22.975500 -13.585500 143.232755 +14.246800 -7.776800 92.238399 +15.299200 -12.349200 106.839596 +-20.686101 6.686100 104.721952 +10.410300 -14.950300 109.945149 +-0.572800 -12.837200 104.743602 +9.430900 -11.520900 105.765453 +22.088301 -9.988300 120.869147 +18.696699 -9.706700 114.113353 +20.051600 -15.941601 125.510798 +17.014300 -12.824300 114.637149 +25.541301 -12.251300 134.885648 +22.033800 -2.333800 121.891898 +-18.289400 -7.380600 96.930299 +-21.954500 4.094500 101.622749 +-19.513600 4.613600 100.078202 +-20.256000 10.436000 98.992001 +-13.608300 -11.011700 97.960850 +-2.165500 -7.894500 80.802246 +-2.200600 2.110600 56.369702 +14.424000 10.726000 88.107003 +-17.650600 6.960600 97.964700 +-16.106900 1.746900 89.671550 +3.865300 -3.635300 75.612649 +3.290200 -2.310200 69.370102 +-16.555599 8.445600 91.712202 +-7.549400 1.549400 62.095299 +7.074300 -4.804300 73.542148 +10.674700 -9.114700 102.117354 +6.940000 -9.100000 95.914998 +-20.917200 -9.272800 92.751403 +-4.043800 -2.546200 51.163101 +-15.706300 -13.303700 92.791853 +-22.591499 15.911500 100.584248 +-15.927600 14.587600 91.711202 +3.550800 8.709200 54.815400 +-19.986700 12.906700 96.921649 +-11.174600 7.344600 64.152697 +5.729900 -1.889900 53.249949 +7.298300 1.991700 57.419149 +17.288300 -16.248301 111.504147 +11.139900 -5.079900 66.779953 +9.299900 -4.059900 60.559951 +23.049200 11.560800 111.494597 +24.139500 4.980500 116.704751 +29.687400 -21.817400 149.958700 +22.317100 -19.487100 141.113554 +23.782200 -13.892200 146.856105 +28.643601 -7.063600 145.816796 +-19.830300 13.350300 103.164847 +19.028700 14.271300 109.414352 +28.074900 -4.714900 140.597449 +22.833101 4.646900 119.306550 +22.090100 5.439900 116.685051 +22.567500 9.082500 114.078753 +20.163701 14.096300 113.586848 +20.742100 -11.562100 131.231049 +21.981901 -17.111900 134.370944 +25.385999 -12.786000 140.117995 +24.287300 -11.777300 136.968650 +27.245601 -13.955600 143.737795 +27.890600 -16.050599 147.355294 +21.251200 -8.951200 115.150604 +12.877700 -11.097700 103.713851 +-18.707900 5.677900 101.101053 +12.688800 -9.448800 105.264399 +-11.035400 -9.444600 102.652300 +-14.368000 -10.892000 101.091003 +-1.861500 -14.028500 102.634250 +-13.923300 -12.566700 98.998351 +12.485200 -11.985200 105.252599 +11.048700 -13.378700 106.834346 +15.585200 -10.855200 108.912598 +16.027501 -12.237500 112.513748 +14.253200 -14.333200 110.456603 +16.070500 -14.640500 114.080253 +17.983100 -12.533100 114.631549 +6.535600 -13.215600 105.777803 +21.772400 1.057600 117.201198 +22.093599 -4.353600 119.821796 +12.941200 -11.261200 110.465603 +8.894700 -11.624700 107.357351 +19.696600 0.693400 108.898298 +21.726600 6.443400 112.543298 +18.646500 -13.406500 116.678251 +21.180000 -14.900000 129.675001 +24.322701 -5.942700 126.056352 +20.577200 -13.737200 125.553598 +23.806999 -11.367000 134.358494 +21.780000 -11.330000 131.770003 +23.553400 -3.403400 121.911698 +-18.976199 -4.463800 99.036901 +-18.976499 -2.053500 99.036751 +-20.277900 -7.612100 97.431053 +-20.563300 -1.986700 97.458353 +-21.594099 7.434100 103.177947 +-20.604900 6.144900 101.112553 +-19.292400 9.542400 100.588798 +-22.819500 11.419500 103.675251 +-21.773300 11.133300 102.113354 +-16.047000 -8.803000 98.486497 +-17.838200 -12.431800 97.955900 +-18.931901 -9.888100 98.489047 +-2.144400 1.054400 53.792799 +-4.323100 1.703100 55.838451 +1.430600 -2.270600 61.570298 +-2.026100 -1.613900 55.831951 +2.131900 -1.761900 54.815950 +-0.320800 -1.229200 52.214602 +6.954800 -1.014800 57.937399 +4.719600 1.400400 55.329801 +-6.380700 2.000700 58.964650 +1.736200 -5.286200 72.513097 +5.514400 -4.744400 71.962200 +3.504500 -4.074500 74.042252 +-0.940300 5.240300 57.939849 +0.447400 8.312600 61.558698 +7.754600 1.155400 61.057302 +7.038400 3.821600 60.524201 +-18.130300 12.180300 96.929849 +0.591600 -4.271600 79.750803 +-16.671001 -7.499000 95.374502 +-17.649101 -4.930900 92.780453 +-14.640000 -9.350000 96.914999 +-9.162100 -7.997900 88.098953 +-15.918000 -6.132000 86.515998 +-19.701600 12.661600 100.069202 +-20.835200 13.045200 96.912399 +-18.631699 13.451700 92.279149 +-18.708099 7.788100 96.405952 +-7.977300 3.337300 60.541351 +-10.023200 0.453200 62.598399 +-7.388900 -3.921100 68.870547 +-3.846100 -3.533900 69.391952 +0.788000 -3.358000 76.674000 +-2.012200 -3.767800 75.083903 +-7.760200 6.150200 62.099899 +-9.870600 7.370600 66.764703 +-11.900100 5.990100 72.514947 +3.315700 -5.645700 77.702851 +-0.920200 -10.459800 101.614899 +-1.343500 -7.016500 82.893248 +6.011700 -11.191700 100.565848 +7.105100 -12.185100 103.692551 +-10.273400 -10.216600 99.028301 +-11.712200 -9.327800 96.408902 +-8.960200 -11.809800 97.454903 +3.113900 -12.953900 100.591948 +3.243300 -10.013300 101.081653 +-20.770601 -11.609400 92.244699 +-19.028101 -12.051900 90.675951 +-20.208101 13.128100 90.710951 +-9.834500 10.214500 64.157747 +4.486300 2.443700 51.688151 +9.673400 0.846600 60.536701 +9.712600 8.327400 65.196298 +13.512100 -4.832100 74.061052 +12.061000 -4.051000 66.245499 +22.982500 17.437500 112.026251 +23.673800 14.956200 114.606899 +20.499800 9.810200 108.359902 +21.161500 11.518500 111.515747 +22.374501 15.865500 108.362252 +24.998800 -17.598800 145.279407 +26.518900 -9.998900 142.679451 +27.565800 -12.355800 145.307907 +24.669799 -12.679800 143.214905 +23.095200 -1.885200 121.892598 +24.370300 1.799700 121.900148 +21.694800 8.405200 114.607399 +24.475301 -14.645300 142.167647 +23.101000 -12.941000 136.965500 +23.011600 -11.721600 136.445796 +11.249500 -10.039500 102.144754 +11.478300 -9.638300 105.789153 +-12.076300 -11.093700 102.666850 +-10.158400 -11.291600 100.555798 +-14.430500 -13.689500 100.589748 +-11.942100 -12.587900 101.628949 +4.210800 -13.780800 102.150404 +11.627100 -10.087100 103.713551 +13.965000 -12.725000 108.367502 +13.494400 -10.934400 107.342201 +11.087800 -11.727800 107.343901 +17.523701 -10.653700 114.596849 +15.976999 -14.507000 112.003501 +22.654100 0.555900 117.237048 +21.217500 1.302500 117.223748 +10.458900 -12.888900 110.959450 +20.789201 -3.569200 115.119604 +12.419000 -14.169000 106.289500 +26.735001 -12.275000 134.897498 +23.753101 -11.153100 131.261549 +25.044499 -9.814500 134.397244 +-15.024300 -9.735700 103.167847 +-18.943901 -9.896100 101.638049 +-19.183900 -0.826100 97.473053 +-21.081500 4.011500 100.074252 +-21.030300 -7.229700 97.474853 +-20.216900 -5.253100 99.011551 +-20.370299 9.710300 100.569848 +-18.827300 4.747300 101.606349 +-17.820599 -13.119400 96.429702 +-19.615700 -11.634300 96.937149 +-17.897401 -11.592600 99.541298 +-4.505300 -1.134700 55.352351 +-3.076800 -0.133200 54.281600 +-1.984000 -0.956000 53.782999 +-1.971800 5.601800 55.859101 +4.345700 1.744300 56.382852 +4.337700 0.212300 53.788849 +-5.845100 -0.054900 57.392449 +-2.207900 2.327900 56.896048 +-4.803200 5.673200 58.448400 +-3.315500 7.895500 58.437250 +-4.058200 3.998200 57.390899 +-2.918700 2.268700 55.330651 +1.922000 -4.172000 72.991001 +8.036200 6.673800 64.173097 +9.331000 0.699000 62.070499 +15.177400 9.722600 87.078702 +-15.047600 -11.302400 96.401202 +-18.230100 -10.259900 96.959949 +-19.210901 -7.459100 95.914548 +-20.057501 -6.162500 95.906248 +-14.785000 9.135000 81.832497 +-6.880700 -4.639300 67.304650 +0.504400 -5.664400 76.667200 +-9.644500 3.944500 63.637750 +-5.252100 8.492100 60.543951 +-8.323400 7.803400 64.193297 +-7.812700 5.902700 64.168647 +12.889700 -9.189700 101.594849 +-8.747400 -8.232600 93.291300 +-8.437700 -9.452300 99.006151 +4.299700 -11.999700 101.089853 +-13.059600 -9.500400 97.980200 +-4.751400 -11.228600 101.629299 +-5.702600 -11.687400 100.078702 +-0.019300 -11.130700 99.550348 +-1.125500 -12.214500 101.077253 +1.704500 -9.164500 92.257249 +-8.743600 -12.276400 95.388202 +-6.535000 -12.745000 98.482497 +-0.395100 -12.694900 102.657450 +8.012100 -6.662100 76.156054 +5.773300 -7.943300 83.946649 +-13.410600 -8.179400 97.974700 +2.629100 -10.759100 104.719552 +17.136201 12.023800 100.573098 +18.969300 1.950700 106.829646 +18.233000 12.227000 105.786503 +19.635699 9.214300 108.397852 +-19.567501 14.097500 89.146254 +-10.928400 9.608400 64.670801 +4.128600 -1.358600 51.189301 +23.612199 17.337800 114.111103 +22.350301 12.439700 113.035152 +20.050601 16.059400 108.890298 +25.622900 -14.602900 141.656443 +13.433900 -12.663900 105.271949 +14.446700 -13.526700 106.293350 +-12.458200 -10.991800 104.215898 +-7.977000 -12.133000 102.136504 +-10.337200 -11.122800 98.996401 +8.685300 -12.285300 103.677651 +11.915700 -12.805700 110.432853 +15.323500 -12.373500 108.876748 +21.036700 2.813300 115.143354 +20.474001 -10.874000 126.566998 +-15.678100 -9.831900 101.605949 +-18.537900 -9.082100 100.051052 +-19.415301 0.275300 95.892348 +-20.074500 -1.855500 98.997751 +-20.657700 -11.132300 96.921149 +-16.127301 -11.362700 102.676350 +-4.404800 -1.805200 55.352601 +3.603800 0.256200 52.236902 +-1.456500 2.376500 55.346751 +-6.989300 -0.650700 59.515350 +-3.508500 6.938500 57.420749 +13.405600 2.894400 79.752803 +5.013300 -5.403300 77.176647 +-16.463399 -12.186600 95.398302 +-17.237900 -8.492100 96.956049 +-15.187700 -11.322300 99.526148 +-19.380301 -9.519700 94.354851 +-17.254100 -10.525900 93.792946 +-10.367600 -8.342400 93.286200 +-18.943799 -7.526200 94.333101 +-18.886901 -5.823100 95.911548 +-18.345499 13.475500 90.702251 +0.806700 -5.676700 77.718351 +1.046900 -4.706900 77.708451 +-9.061500 5.131500 65.209248 +-11.407800 7.057800 72.511097 +-4.013600 -10.796400 100.058202 +3.416100 -12.676100 104.238048 +2.260000 -12.440000 102.655000 +7.753900 -12.673900 102.156954 +9.956900 -9.976900 102.113454 +7.505000 -11.235000 104.212498 +5.119000 -10.599000 102.669500 +-3.021400 -11.178600 103.199297 +-8.721000 -11.079000 99.034501 +-5.856500 -11.553500 98.481747 +3.042600 -10.732600 99.536298 +1.399600 -11.809600 101.119803 +-8.425600 8.965600 60.527201 +2.854500 -0.104500 50.117250 +20.102601 14.287400 110.996300 +20.071300 15.338700 106.825646 +25.300099 -13.550100 140.075045 +-14.544200 -10.735800 102.672900 +8.899800 -11.309800 103.694901 +8.373500 -13.593500 103.701751 +14.957000 -13.707000 108.393502 +-14.790800 -10.369200 100.579598 +-19.526100 -0.693900 99.016951 +-19.891100 1.501100 99.004451 +-20.159900 -11.180100 95.360052 +-19.838100 -11.101900 93.795946 +3.044600 0.755400 51.682301 +3.687800 1.442200 52.738898 +-6.885100 -3.294900 61.557448 +-6.215400 1.495400 59.492300 +-17.352500 -7.377500 94.313751 +-16.239999 -6.860000 91.224998 +-20.576800 0.046800 95.891598 +-18.031599 5.911600 96.409202 +-16.499700 13.289700 90.685151 +-9.316800 8.566800 63.131600 +-6.187100 -10.722900 98.486447 +3.329400 -10.959400 102.659700 +-9.227300 -10.502700 100.586348 +-5.203100 -11.776900 96.948449 +2.934500 -1.344500 50.157250 +21.912201 13.157800 111.506097 +-17.928601 0.158600 95.890698 +-17.785900 3.815900 96.932049 +-20.299200 3.889200 98.485397 +4.120400 0.749600 54.270200 +-17.981600 -6.818400 94.324201 +-19.942101 -5.897900 94.318951 +-18.396400 7.436400 94.846797 +-9.592500 7.612500 63.663750 +21.840700 14.839300 110.435353 +-20.119800 2.629800 96.935099 +21.831000 16.478999 112.030501 +20.249299 14.330700 108.894648 +21.416699 14.473300 113.053352 +21.707799 13.162200 109.433902 diff --git a/Alpha_shapes_3/demo/Alpha_shapes_3/data/torus_ran.pts b/Alpha_shapes_3/demo/Alpha_shapes_3/data/torus_ran.pts new file mode 100644 index 000000000000..0ee8d1f9dec2 --- /dev/null +++ b/Alpha_shapes_3/demo/Alpha_shapes_3/data/torus_ran.pts @@ -0,0 +1,500 @@ +500 +231.000000 182.000000 0.000351 +14.000000 115.000000 -15.999829 +71.000000 94.000000 31.999592 +68.000000 54.000000 47.999560 +207.000000 119.000000 31.999602 +108.000000 241.000000 -31.999965 +36.000000 131.000000 -31.999798 +61.000000 79.000000 -16.000061 +158.000000 29.000000 47.999573 +171.000000 20.000000 32.000102 +80.000000 21.000000 15.999613 +208.000000 209.000000 -32.000094 +72.000000 154.000000 -0.000168 +130.000000 195.000000 0.000267 +159.000000 185.000000 0.000415 +165.000000 172.000000 -15.999620 +189.000000 138.000000 -16.000149 +180.000000 211.000000 -48.000257 +152.000000 182.000000 -32.000245 +196.000000 216.000000 -0.000361 +171.000000 63.000000 47.999650 +8.000000 118.000000 -0.000377 +167.000000 228.000000 0.000447 +149.000000 64.000000 -0.000335 +26.000000 166.000000 -31.999897 +62.000000 132.000000 15.999507 +129.000000 244.000000 -15.999563 +223.000000 57.000000 15.999837 +142.000000 25.000000 47.999532 +119.000000 12.000000 15.999691 +51.000000 213.000000 -32.000051 +67.000000 59.000000 47.999558 +244.000000 118.000000 16.000059 +229.000000 186.000000 0.000022 +151.000000 232.000000 0.000274 +177.000000 166.000000 -0.000265 +139.000000 71.000000 16.000400 +201.000000 184.000000 16.000257 +149.000000 26.000000 47.999937 +144.000000 184.000000 -32.000347 +212.000000 44.000000 16.000372 +122.000000 243.000000 -32.000271 +63.000000 226.000000 -15.999717 +14.000000 92.000000 -0.000228 +79.000000 191.000000 -48.000345 +168.000000 174.000000 -31.999750 +94.000000 239.000000 -15.999957 +128.000000 196.000000 -0.000407 +10.000000 151.000000 -0.000198 +28.000000 63.000000 16.000490 +50.000000 217.000000 -15.999698 +147.000000 242.000000 -16.000115 +11.000000 139.000000 -16.000482 +208.000000 183.000000 16.000006 +153.000000 28.000000 47.999911 +63.000000 29.000000 15.999721 +18.000000 173.000000 0.000064 +80.000000 86.000000 31.999967 +214.000000 131.000000 -31.999614 +25.000000 164.000000 -32.000292 +18.000000 81.000000 15.999688 +174.000000 164.000000 -15.999519 +112.000000 58.000000 48.000316 +221.000000 196.000000 0.000020 +87.000000 228.000000 0.000271 +85.000000 82.000000 31.999577 +136.000000 185.000000 -31.999946 +139.000000 12.000000 15.999814 +207.000000 136.000000 -31.999751 +243.000000 127.000000 -16.000406 +238.000000 83.000000 16.000043 +236.000000 175.000000 0.000133 +59.000000 39.000000 -0.000173 +138.000000 58.000000 48.000435 +63.000000 125.000000 -15.999958 +148.000000 59.000000 47.999763 +11.000000 116.000000 16.000295 +12.000000 104.000000 16.000059 +99.000000 195.000000 -47.999545 +176.000000 168.000000 -32.000485 +97.000000 186.000000 -0.000049 +26.000000 69.000000 0.000408 +67.000000 196.000000 -48.000408 +197.000000 73.000000 -15.999752 +180.000000 99.000000 15.999739 +246.000000 145.000000 0.000341 +54.000000 184.000000 15.999968 +194.000000 78.000000 -15.999879 +16.000000 144.000000 15.999772 +100.000000 28.000000 47.999568 +26.000000 108.000000 32.000427 +188.000000 58.000000 48.000056 +104.000000 23.000000 0.000019 +186.000000 193.000000 -47.999712 +242.000000 100.000000 16.000407 +139.000000 12.000000 31.999602 +229.000000 168.000000 -31.999564 +96.000000 230.000000 -0.000241 +144.000000 71.000000 31.999954 +139.000000 184.000000 -16.000332 +158.000000 226.000000 -48.000437 +54.000000 143.000000 -31.999968 +241.000000 163.000000 -0.000375 +110.000000 59.000000 47.999725 +88.000000 27.000000 0.000264 +159.000000 25.000000 0.000204 +228.000000 68.000000 0.000450 +53.000000 114.000000 31.999861 +76.000000 22.000000 16.000012 +238.000000 172.000000 -16.000306 +27.000000 174.000000 -32.000074 +71.000000 64.000000 48.000089 +58.000000 73.000000 -16.000054 +226.000000 75.000000 31.999956 +64.000000 224.000000 -32.000409 +219.000000 79.000000 -16.000015 +171.000000 219.000000 -48.000443 +17.000000 149.000000 15.999620 +85.000000 219.000000 -47.999948 +139.000000 243.000000 -31.999927 +64.000000 132.000000 -15.999923 +133.000000 60.000000 0.000370 +141.000000 13.000000 32.000016 +144.000000 193.000000 0.000487 +29.000000 77.000000 32.000389 +186.000000 227.000000 -31.999584 +51.000000 211.000000 -0.000140 +100.000000 67.000000 -0.000192 +153.000000 240.000000 -31.999932 +184.000000 64.000000 48.000329 +118.000000 233.000000 0.000081 +37.000000 196.000000 -32.000450 +196.000000 35.000000 32.000130 +43.000000 51.000000 32.000190 +97.000000 61.000000 47.999902 +18.000000 174.000000 -15.999889 +54.000000 112.000000 32.000389 +244.000000 102.000000 -0.000141 +26.000000 89.000000 31.999633 +183.000000 101.000000 -0.000397 +190.000000 155.000000 -32.000059 +141.000000 61.000000 -0.000261 +122.000000 69.000000 31.999905 +159.000000 239.000000 -31.999703 +180.000000 156.000000 -16.000295 +122.000000 186.000000 -32.000017 +159.000000 16.000000 31.999811 +111.000000 62.000000 0.000081 +30.000000 73.000000 32.000406 +40.000000 131.000000 -32.000022 +185.000000 50.000000 47.999556 +46.000000 121.000000 32.000010 +15.000000 91.000000 15.999817 +139.000000 243.000000 -15.999875 +194.000000 110.000000 -15.999682 +200.000000 221.000000 -16.000194 +146.000000 183.000000 -32.000064 +106.000000 191.000000 0.000436 +182.000000 156.000000 -0.000125 +201.000000 71.000000 -16.000001 +127.000000 59.000000 0.000459 +141.000000 242.000000 -32.000493 +171.000000 235.000000 -31.999615 +61.000000 176.000000 15.999908 +151.000000 14.000000 31.999740 +121.000000 185.000000 -16.000410 +9.000000 110.000000 -0.000308 +36.000000 124.000000 31.999681 +162.000000 16.000000 16.000300 +80.000000 234.000000 -16.000029 +15.000000 164.000000 -15.999884 +208.000000 72.000000 -16.000103 +67.000000 114.000000 15.999868 +120.000000 60.000000 0.000358 +153.000000 24.000000 -0.000315 +167.000000 77.000000 0.000084 +88.000000 178.000000 -0.000296 +178.000000 88.000000 31.999579 +75.000000 99.000000 16.000467 +151.000000 241.000000 -31.999550 +47.000000 183.000000 15.999840 +151.000000 180.000000 -15.999625 +112.000000 230.000000 -47.999580 +152.000000 60.000000 47.999920 +145.000000 183.000000 -15.999679 +62.000000 123.000000 -16.000320 +228.000000 142.000000 -32.000272 +106.000000 232.000000 0.000122 +89.000000 33.000000 48.000060 +118.000000 231.000000 -48.000438 +162.000000 239.000000 -15.999565 +196.000000 220.000000 -31.999656 +189.000000 117.000000 15.999870 +73.000000 46.000000 48.000414 +193.000000 37.000000 0.000188 +187.000000 221.000000 0.000304 +61.000000 140.000000 15.999972 +115.000000 184.000000 -15.999817 +153.000000 231.000000 -0.000374 +46.000000 134.000000 -31.999890 +68.000000 201.000000 -47.999923 +217.000000 55.000000 -0.000048 +200.000000 34.000000 16.000119 +152.000000 195.000000 -48.000153 +146.000000 72.000000 32.000142 +105.000000 242.000000 -15.999819 +158.000000 69.000000 0.000177 +145.000000 72.000000 15.999652 +103.000000 73.000000 32.000330 +246.000000 112.000000 -0.000307 +243.000000 128.000000 16.000331 +46.000000 48.000000 0.000354 +99.000000 15.000000 31.999993 +96.000000 70.000000 0.000313 +192.000000 129.000000 15.999724 +171.000000 36.000000 48.000142 +56.000000 41.000000 -0.000237 +87.000000 236.000000 -32.000264 +110.000000 242.000000 -32.000440 +90.000000 26.000000 0.000233 +219.000000 176.000000 16.000414 +196.000000 32.000000 15.999647 +225.000000 119.000000 31.999763 +168.000000 81.000000 31.999513 +103.000000 182.000000 -31.999641 +28.000000 192.000000 -16.000020 +225.000000 136.000000 -32.000475 +62.000000 117.000000 -15.999916 +58.000000 182.000000 16.000479 +94.000000 71.000000 0.000277 +210.000000 43.000000 16.000458 +238.000000 86.000000 -0.000143 +186.000000 28.000000 32.000422 +208.000000 46.000000 32.000427 +99.000000 60.000000 47.999544 +85.000000 36.000000 47.999560 +14.000000 140.000000 16.000064 +174.000000 91.000000 16.000080 +72.000000 33.000000 0.000351 +230.000000 95.000000 31.999702 +153.000000 15.000000 31.999736 +180.000000 44.000000 48.000142 +147.000000 13.000000 16.000173 +168.000000 27.000000 0.000135 +16.000000 168.000000 -16.000330 +12.000000 98.000000 0.000077 +84.000000 88.000000 15.999770 +175.000000 162.000000 -15.999729 +122.000000 12.000000 31.999587 +194.000000 145.000000 16.000214 +245.000000 104.000000 0.000096 +38.000000 50.000000 16.000261 +102.000000 231.000000 -0.000273 +120.000000 70.000000 32.000247 +103.000000 241.000000 -15.999562 +24.000000 73.000000 0.000059 +153.000000 241.000000 -16.000022 +80.000000 29.000000 -0.000425 +73.000000 223.000000 0.000246 +25.000000 91.000000 -15.999716 +110.000000 13.000000 31.999612 +142.000000 230.000000 -47.999894 +23.000000 185.000000 -16.000220 +226.000000 180.000000 -31.999881 +230.000000 105.000000 32.000364 +80.000000 169.000000 -31.999656 +219.000000 203.000000 -16.000266 +69.000000 142.000000 -0.000292 +33.000000 61.000000 0.000446 +66.000000 119.000000 15.999737 +29.000000 178.000000 -31.999839 +122.000000 195.000000 0.000250 +95.000000 79.000000 15.999537 +53.000000 141.000000 -32.000021 +228.000000 113.000000 31.999506 +110.000000 196.000000 -48.000009 +84.000000 167.000000 -16.000145 +221.000000 123.000000 32.000377 +192.000000 126.000000 -16.000016 +163.000000 237.000000 -32.000336 +107.000000 73.000000 15.999636 +30.000000 59.000000 15.999555 +143.000000 233.000000 -0.000014 +76.000000 233.000000 -16.000291 +140.000000 24.000000 48.000373 +13.000000 122.000000 -16.000396 +119.000000 243.000000 -15.999928 +219.000000 52.000000 15.999516 +39.000000 207.000000 -16.000205 +11.000000 153.000000 0.000400 +153.000000 227.000000 -47.999632 +197.000000 182.000000 15.999689 +96.000000 15.000000 16.000408 +189.000000 27.000000 16.000370 +85.000000 173.000000 -32.000317 +137.000000 185.000000 -15.999535 +186.000000 113.000000 0.000316 +47.000000 72.000000 -16.000307 +26.000000 147.000000 -31.999760 +34.000000 59.000000 0.000272 +184.000000 191.000000 -47.999729 +135.000000 195.000000 0.000041 +137.000000 22.000000 0.000252 +137.000000 70.000000 16.000342 +25.000000 164.000000 16.000081 +241.000000 162.000000 -16.000253 +25.000000 91.000000 31.999907 +204.000000 44.000000 -0.000409 +110.000000 184.000000 -32.000070 +71.000000 191.000000 -47.999714 +186.000000 141.000000 -0.000049 +112.000000 22.000000 -0.000413 +27.000000 187.000000 -0.000197 +28.000000 139.000000 -31.999749 +155.000000 76.000000 16.000041 +31.000000 135.000000 -31.999815 +99.000000 240.000000 -32.000440 +218.000000 59.000000 32.000098 +240.000000 164.000000 -16.000179 +186.000000 62.000000 48.000381 +193.000000 120.000000 -15.999543 +87.000000 19.000000 32.000031 +185.000000 148.000000 -0.000396 +187.000000 139.000000 -0.000262 +194.000000 177.000000 15.999986 +13.000000 133.000000 15.999525 +217.000000 131.000000 -32.000238 +73.000000 229.000000 -31.999844 +218.000000 196.000000 -31.999779 +62.000000 218.000000 -0.000483 +131.000000 12.000000 16.000284 +68.000000 136.000000 -0.000446 +14.000000 94.000000 16.000185 +112.000000 197.000000 -48.000241 +223.000000 198.000000 -15.999801 +71.000000 161.000000 -32.000219 +86.000000 18.000000 16.000351 +100.000000 227.000000 -47.999777 +17.000000 169.000000 -0.000308 +118.000000 24.000000 47.999953 +190.000000 100.000000 31.999686 +72.000000 103.000000 0.000019 +214.000000 124.000000 32.000046 +221.000000 132.000000 -32.000248 +81.000000 217.000000 -48.000242 +54.000000 71.000000 -16.000327 +14.000000 161.000000 -16.000004 +64.000000 31.000000 31.999705 +196.000000 223.000000 -16.000117 +114.000000 194.000000 0.000448 +239.000000 109.000000 -15.999611 +242.000000 155.000000 -15.999961 +62.000000 138.000000 15.999829 +155.000000 188.000000 -0.000170 +12.000000 131.000000 15.999532 +230.000000 150.000000 -31.999836 +12.000000 124.000000 -15.999937 +244.000000 137.000000 -15.999895 +38.000000 200.000000 0.000110 +175.000000 93.000000 16.000389 +40.000000 124.000000 32.000203 +129.000000 11.000000 15.999840 +39.000000 48.000000 16.000091 +23.000000 70.000000 15.999560 +89.000000 222.000000 -47.999557 +73.000000 26.000000 31.999999 +242.000000 94.000000 -0.000065 +229.000000 148.000000 -32.000276 +86.000000 237.000000 -15.999800 +229.000000 190.000000 -15.999638 +115.000000 71.000000 15.999835 +180.000000 95.000000 -0.000262 +247.000000 137.000000 0.000076 +130.000000 69.000000 31.999978 +38.000000 205.000000 -15.999885 +95.000000 238.000000 -31.999829 +155.000000 179.000000 -16.000164 +25.000000 153.000000 -32.000133 +17.000000 106.000000 -15.999715 +178.000000 167.000000 -31.999967 +209.000000 207.000000 -0.000472 +68.000000 34.000000 0.000071 +239.000000 146.000000 15.999682 +81.000000 38.000000 47.999976 +110.000000 23.000000 -0.000396 +27.000000 81.000000 31.999842 +136.000000 70.000000 32.000427 +145.000000 232.000000 0.000270 +140.000000 231.000000 -47.999598 +148.000000 196.000000 -48.000069 +16.000000 111.000000 -16.000408 +108.000000 14.000000 31.999518 +240.000000 91.000000 16.000149 +230.000000 160.000000 -32.000275 +64.000000 123.000000 15.999728 +16.000000 87.000000 15.999844 +8.000000 141.000000 0.000100 +222.000000 194.000000 -0.000178 +160.000000 61.000000 48.000409 +174.000000 20.000000 15.999672 +171.000000 174.000000 0.000162 +84.000000 81.000000 -0.000264 +151.000000 75.000000 15.999741 +36.000000 79.000000 -16.000373 +163.000000 18.000000 31.999651 +68.000000 116.000000 -0.000288 +185.000000 205.000000 -48.000148 +193.000000 135.000000 16.000057 +187.000000 119.000000 0.000122 +19.000000 80.000000 0.000444 +173.000000 64.000000 47.999899 +237.000000 82.000000 0.000371 +212.000000 211.000000 -15.999928 +229.000000 87.000000 31.999870 +69.000000 114.000000 0.000236 +97.000000 194.000000 -48.000360 +36.000000 176.000000 15.999577 +55.000000 213.000000 -0.000157 +189.000000 228.000000 -15.999840 +110.000000 192.000000 -0.000275 +174.000000 235.000000 -15.999655 +73.000000 99.000000 -0.000327 +28.000000 116.000000 31.999974 +229.000000 107.000000 31.999858 +153.000000 14.000000 15.999576 +103.000000 14.000000 16.000290 +130.000000 186.000000 -31.999906 +162.000000 62.000000 48.000005 +75.000000 160.000000 0.000127 +13.000000 161.000000 -0.000169 +183.000000 222.000000 -0.000352 +107.000000 182.000000 -15.999640 +105.000000 13.000000 15.999856 +50.000000 38.000000 16.000248 +175.000000 86.000000 0.000015 +30.000000 196.000000 -15.999867 +51.000000 42.000000 31.999990 +241.000000 93.000000 15.999799 +131.000000 243.000000 -16.000487 +243.000000 102.000000 15.999527 +30.000000 182.000000 -32.000239 +120.000000 185.000000 -31.999833 +66.000000 136.000000 -16.000264 +200.000000 42.000000 -0.000351 +25.000000 102.000000 32.000231 +176.000000 87.000000 32.000019 +160.000000 194.000000 -47.999614 +96.000000 240.000000 -16.000345 +230.000000 91.000000 -15.999643 +243.000000 157.000000 -0.000306 +243.000000 153.000000 -16.000310 +217.000000 124.000000 32.000136 +188.000000 197.000000 -47.999767 +121.000000 70.000000 15.999790 +242.000000 134.000000 16.000201 +165.000000 229.000000 -0.000410 +102.000000 24.000000 -0.000139 +230.000000 164.000000 16.000285 +182.000000 32.000000 0.000135 +247.000000 114.000000 -0.000002 +43.000000 204.000000 -32.000367 +210.000000 212.000000 -15.999682 +37.000000 59.000000 32.000195 +94.000000 16.000000 15.999830 +112.000000 25.000000 48.000203 +95.000000 17.000000 31.999534 +171.000000 192.000000 -48.000241 +125.000000 60.000000 0.000292 +12.000000 151.000000 -15.999890 +162.000000 193.000000 -48.000247 +161.000000 184.000000 0.000343 +70.000000 107.000000 -0.000360 +31.000000 120.000000 32.000491 +73.000000 209.000000 -47.999995 +106.000000 73.000000 31.999769 +145.000000 63.000000 -0.000340 +183.000000 152.000000 0.000134 +138.000000 197.000000 -47.999966 +106.000000 182.000000 -32.000377 +95.000000 176.000000 -15.999590 +61.000000 115.000000 -16.000234 +80.000000 169.000000 0.000431 +149.000000 23.000000 0.000338 +242.000000 121.000000 -16.000055 +63.000000 130.000000 16.000208 +229.000000 65.000000 15.999791 +152.000000 73.000000 31.999837 +9.000000 143.000000 -0.000190 +13.000000 100.000000 15.999721 +78.000000 89.000000 0.000382 +175.000000 226.000000 -0.000207 +79.000000 64.000000 47.999724 +165.000000 83.000000 15.999635 +173.000000 191.000000 -48.000118 +67.000000 141.000000 -15.999508 +149.000000 229.000000 -48.000104 +75.000000 156.000000 -15.999668 +13.000000 155.000000 -15.999930 +110.000000 71.000000 32.000201 diff --git a/Alpha_wrap_3/benchmark/Alpha_wrap_3/CMakeLists.txt b/Alpha_wrap_3/benchmark/Alpha_wrap_3/CMakeLists.txt new file mode 100644 index 000000000000..a9aa0d1d63cb --- /dev/null +++ b/Alpha_wrap_3/benchmark/Alpha_wrap_3/CMakeLists.txt @@ -0,0 +1,15 @@ +# Created by the script cgal_create_cmake_script +# This is the CMake script for compiling a CGAL application. + +cmake_minimum_required(VERSION 3.1...3.20) +project(Alpha_wrap_3_Benchmark) + +find_package(CGAL REQUIRED) + +include_directories (BEFORE ../../include ./Quality ./Robustness) # AW3 includes +include_directories (BEFORE ../../../CGAL-Patches/include) + +# create a target per cppfile +create_single_source_cgal_program("Performance/performance_benchmark.cpp") +create_single_source_cgal_program("Quality/quality_benchmark.cpp") +create_single_source_cgal_program("Robustness/robustness_benchmark.cpp") diff --git a/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/compute_performance_benchmark_data.py b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/compute_performance_benchmark_data.py new file mode 100644 index 000000000000..86c57d351465 --- /dev/null +++ b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/compute_performance_benchmark_data.py @@ -0,0 +1,61 @@ +# Copyright (c) 2019-2023 Google LLC (USA). +# All rights reserved. +# +# This file is part of CGAL (www.cgal.org). +# +# $URL$ +# $Id$ +# SPDX-License-Identifier: GPL-3.0-or-later +# +# +# Author(s) : Pierre Alliez +# Michael Hemmer +# Cedric Portaneri +# +#!/usr/bin/python + +import os, sys, subprocess, datetime, time, getopt + +def compute_performance_benchmark_data(execname, filename, alpha): + + output = "" + cmd = ("/usr/bin/time", "-v", + execname, "-i", + filename, "-a", alpha) + proc = subprocess.Popen( + cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + start_new_session=True) + + outs, errs = proc.communicate() + output = outs.decode("utf-8") + errs.decode("utf-8") + + for output_line in output.split("\n"): + if "User time (seconds): " in output_line: + print(output_line[len("User time (seconds): "):]) + continue + if "Maximum resident set size (kbytes): " in output_line: + print(output_line[len("Maximum resident set size (kbytes): "):]) + continue + +def main(argv): + execname="" + filename="" + alpha="" + try: + opts, args = getopt.getopt(sys.argv[1:], 'e:i:a:') + except getopt.GetoptError: + sys.exit(2) + for opt, arg in opts: + if opt == "-e": + execname = arg + elif opt == "-i": + filename = arg + elif opt == "-a": + alpha = arg + + compute_performance_benchmark_data(execname, filename, alpha) + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/generate_performance_benchmark_charts.py b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/generate_performance_benchmark_charts.py new file mode 100644 index 000000000000..445b69232778 --- /dev/null +++ b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/generate_performance_benchmark_charts.py @@ -0,0 +1,156 @@ +# Copyright (c) 2019-2023 Google LLC (USA). +# All rights reserved. +# +# This file is part of CGAL (www.cgal.org). +# +# $URL$ +# $Id$ +# SPDX-License-Identifier: GPL-3.0-or-later +# +# +# Author(s) : Pierre Alliez +# Michael Hemmer +# Cedric Portaneri +# +#!/usr/bin/python + +import os, sys, subprocess, datetime, time, signal, getopt +import numpy as np +import matplotlib.pyplot as plt + +def main(argv): + + inputdir="" + outputdir="" + commit_hash="" + alpha="" + do_diff=False + diffdir="" + diff_hash="" + try: + opts, args = getopt.getopt(sys.argv[1:], 'i:a:o:c:d:p:') + except getopt.GetoptError: + sys.exit(2) + for opt, arg in opts: + if opt == "-i": + inputdir = arg + elif opt == "-a": + alpha = arg + elif opt == "-o": + outputdir = arg + elif opt == "-c": + commit_hash = arg + elif opt == "-d": + diff_hash = arg + do_diff = True + elif opt == "-p": + diffdir = arg + + all_metric = { + "Time_(second)" : {}, + "Memory_Peak_(kbytes)" : {}} + num_input = 0 + for filename in os.listdir(inputdir) : + new_path = os.path.join(inputdir,filename) + new_file = open(new_path) + is_empty_new = os.path.getsize(new_path) <= 1 + if do_diff : + old_path = os.path.join(diffdir,filename) + old_file = open(old_path) + is_empty_old = os.path.getsize(old_path) <= 1 + for key in all_metric: + if is_empty_new or is_empty_old : + new_val = 0. + old_val = 0. + else : + new_val = float(new_file.readline().rstrip('\n')) + old_val = float(old_file.readline().rstrip('\n')) + mesh_id = str(filename.split('.')[0]) + all_metric[key][mesh_id] = [new_val, old_val] + else : + for key in all_metric: + if is_empty_new : + new_val = 0. + else : + new_val = float(new_file.readline().rstrip('\n')) + mesh_id = str(filename.split('.')[0]) + all_metric[key][mesh_id] = [new_val, new_val] + num_input = num_input+1 + + # update .pdf chart + date_now = datetime.datetime.now() + date_for_filename = str(date_now.year) +"_"+ str(date_now.month) +"_"+ str(date_now.day) +"_"+ str(date_now.hour) +"h"+ str(date_now.minute) +"mn" + for key in all_metric: + goal = 0 + num_el = range(len(all_metric[key])) + avg_diff_to_goal = 0. + avg = 0. + x1 = [] + x2 = [] + for value in all_metric[key].values() : + avg += value[0] + diff_to_goal = abs(value[1]-goal) - abs(value[0]-goal) + avg_diff_to_goal += diff_to_goal + x1.append(value[0]) + x2.append(value[1]) + avg_diff_to_goal /= float(len(all_metric[key])) + avg /= float(len(all_metric[key])) + + plt.figure(figsize=(8,8)) + if do_diff : + plt.hist(x2, bins=100, color='tab:green', alpha=0.5) + plt.hist(x1, bins=100, color='tab:blue', alpha=0.5) + plt.vlines(x = goal, ymin=plt.ylim()[0], ymax=plt.ylim()[1], linestyles='dashed') + + title = "" + if do_diff : + title += "Diff between " + commit_hash + " and " + diff_hash + " on " + str(num_input) + " meshes from Thingi10K\nAlpha = Bbox diag length / " + alpha + else : + title += "Benchmarking on " + str(num_input) + " meshes from Thingi10K\nAlpha = Bbox diag length / " + alpha + + avg_str = str(format(abs(avg), '.2f')) + if key == "Time_(second)" : + title += "\nIn average we spend " + avg_str + " seconds" + else : + title += "\nIn average we use up to " + avg_str + " kbytes" + + if do_diff and avg_diff_to_goal == 0. : + title += "\nNo change between the two commits" + elif do_diff : + avg_diff_str = str(format(abs(avg_diff_to_goal), '.2f')) + if key == "Time_(second)" : + if avg_diff_to_goal < 0 : + title += "\nIn average we get slower by " + else : + title += "\nIn average we get faster " + title += avg_diff_str + " seconds" + else : + if avg_diff_to_goal < 0 : + title += "\nIn average we use " + avg_diff_str + " more" + else : + title += "\nIn average we use " + avg_diff_str + " less" + title += " kbytes" + + plt.title(title, fontsize=15) + plt.xlabel(key.replace("_"," "), fontsize=14) + plt.ylabel("# of meshes", fontsize=14) + plt.tick_params(axis="x", labelsize=9) + plt.tick_params(axis="y", labelsize=9) + + chart_filename = "" + if do_diff : + chart_filename += "diff_"+commit_hash+"_"+diff_hash+"_"+key+"_"+date_for_filename+".pdf" + else : + chart_filename += "results_"+commit_hash+"_"+key+"_"+date_for_filename+".pdf" + chart_path = os.path.join(outputdir+"/charts",chart_filename) + if os.path.isfile(chart_path) : + os.remove(chart_path) + plt.savefig(chart_path, bbox_inches="tight") + plt.close() + + print("pdf updated") + + sys.exit() + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/performance_benchmark.cpp b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/performance_benchmark.cpp new file mode 100644 index 000000000000..207b4704635a --- /dev/null +++ b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/performance_benchmark.cpp @@ -0,0 +1,65 @@ +#include +#include + +#include + +#include + +#include +#include +#include +#include + +using K = CGAL::Exact_predicates_inexact_constructions_kernel; +using Point_3 = K::Point_3; +using Vector_3 = K::Vector_3; + +using Mesh = CGAL::Surface_mesh; + +namespace PMP = CGAL::Polygon_mesh_processing; + +int main(int argc, char** argv) +{ + const int argc_check = argc - 1; + const char* entry_name_ptr = nullptr; + double relative_alpha_ratio = 20., relative_offset_ratio = 600.; + + for(int i=1; i points; + std::vector > faces; + if(!CGAL::IO::read_polygon_soup(entry_name_ptr, points, faces) || faces.empty()) + { + std::cerr << "Error: Invalid input data." << std::endl; + return EXIT_FAILURE; + } + + CGAL::Bbox_3 bbox; + for(const Point_3& p : points) + bbox += p.bbox(); + + const double diag_length = std::sqrt(CGAL::square(bbox.xmax() - bbox.xmin()) + + CGAL::square(bbox.ymax() - bbox.ymin()) + + CGAL::square(bbox.zmax() - bbox.zmin())); + const double alpha = diag_length / relative_alpha_ratio; + const double offset = diag_length / relative_offset_ratio; + + Mesh wrap; + CGAL::alpha_wrap_3(points, faces, alpha, offset, wrap); + + return EXIT_SUCCESS; +} diff --git a/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/compute_quality_benchmark_data.py b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/compute_quality_benchmark_data.py new file mode 100644 index 000000000000..3b996cb57490 --- /dev/null +++ b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/compute_quality_benchmark_data.py @@ -0,0 +1,54 @@ +# Copyright (c) 2019-2023 Google LLC (USA). +# All rights reserved. +# +# This file is part of CGAL (www.cgal.org). +# +# $URL$ +# $Id$ +# SPDX-License-Identifier: GPL-3.0-or-later +# +# +# Author(s) : Pierre Alliez +# Michael Hemmer +# Cedric Portaneri +# +#!/usr/bin/python + +import os, sys, subprocess, datetime, time, getopt + +def compute_quality_benchmark_data(execname, filename, alpha): + + output = "" + cmd = (execname, "-i", + filename, "-a", alpha) + proc = subprocess.Popen( + cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + start_new_session=True) + + outs, errs = proc.communicate() + output = outs.decode("utf-8") + errs.decode("utf-8") + + print(output) + +def main(argv): + execname="" + filename="" + alpha="" + try: + opts, args = getopt.getopt(sys.argv[1:], 'e:i:a:') + except getopt.GetoptError: + sys.exit(2) + for opt, arg in opts: + if opt == "-e": + execname = arg + elif opt == "-i": + filename = arg + elif opt == "-a": + alpha = arg + + compute_quality_benchmark_data(execname, filename, alpha) + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/distance_utils.h b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/distance_utils.h new file mode 100644 index 000000000000..379573e9c90a --- /dev/null +++ b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/distance_utils.h @@ -0,0 +1,151 @@ +// Copyright (c) 2019-2022 Google LLC (USA). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org). +// +// $URL$ +// $Id$ +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial +// +// Author(s) : Pierre Alliez +// Michael Hemmer +// Cedric Portaneri + +#ifndef CGAL_ALPHA_WRAP_3_BENCHMARK_ALPHA_WRAP_3_QUALITY_DISTANCE_H_ +#define CGAL_ALPHA_WRAP_3_BENCHMARK_ALPHA_WRAP_3_QUALITY_DISTANCE_H_ + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace Aw3i { + +enum Distance_metric { HAUSDORFF = 0, MEAN = 1, RMS = 2 }; + +template +inline double approximate_hausdorff_distance(const std::vector& sample_points, + const AABBTree& tree, + Point& hint) +{ + double hdist = 0; + for(const Point& pt : sample_points) + { + hint = tree.closest_point(pt, hint); + auto dist = CGAL::squared_distance(hint, pt); + double d = CGAL::to_double(CGAL::approximate_sqrt(dist)); + if(d > hdist) + hdist = d; + } + + return hdist; +} + +template +inline double approximate_mean_distance(const std::vector& sample_points, + const AABBTree& tree, + Point& hint) +{ + double mdist = 0; + for(const Point& pt : sample_points) + { + hint = tree.closest_point(pt, hint); + auto dist = CGAL::squared_distance(hint, pt); + double d = CGAL::to_double(CGAL::approximate_sqrt(dist)); + mdist += d; + } + + return mdist / sample_points.size(); +} + +template +inline double approximate_rms_distance(const std::vector& sample_points, + const AABBTree& tree, + Point& hint) +{ + double rmsdist = 0; + for(const Point& pt : sample_points) + { + hint = tree.closest_point(pt, hint); + auto dist = CGAL::squared_distance(hint, pt); + rmsdist += CGAL::to_double(dist); + } + + return CGAL::to_double(CGAL::approximate_sqrt(rmsdist / sample_points.size())); +} + +template +inline double approximate_distance(const TriangleMesh& tm1, + const TriangleMesh& tm2, + const Distance_metric& metric) +{ + using GT = typename CGAL::GetGeomTraits::type; + using Point_3 = typename GT::Point_3; + + using Primitive = CGAL::AABB_face_graph_triangle_primitive; + using AABB_traits = CGAL::AABB_traits; + using AABB_tree = CGAL::AABB_tree; + + using CGAL::parameters::choose_parameter; + using CGAL::parameters::get_parameter; + + std::vector original_sample_points; + CGAL::Polygon_mesh_processing::sample_triangle_mesh(tm1, std::back_inserter(original_sample_points), + CGAL::parameters::all_default()); + + std::vector sample_points(std::begin(original_sample_points), + std::end(original_sample_points)); + CGAL::spatial_sort(sample_points.begin(), sample_points.end()); + + AABB_tree tree(faces(tm2).first, faces(tm2).second, tm2); + tree.build(); + + auto vpm_2 = get(CGAL::vertex_point, tm2); + Point_3 hint = get(vpm_2, *vertices(tm2).first); + + if(metric == HAUSDORFF) + return approximate_hausdorff_distance(sample_points, tree, hint); + else if(metric == MEAN) + return approximate_mean_distance(sample_points, tree, hint); + else if(metric == RMS) + return approximate_rms_distance(sample_points, tree, hint); + else + std::cerr << "Metric unknown\n" << std::endl; + + return -1.0; +} + +template +double get_longest_diag_bbox(const TriangleMesh& tm) +{ + CGAL::Bbox_3 bbox = CGAL::Polygon_mesh_processing::bbox(tm); + return std::sqrt(CGAL::square(bbox.xmax() - bbox.xmin()) + + CGAL::square(bbox.ymax() - bbox.ymin()) + + CGAL::square(bbox.zmax() - bbox.zmin())); +} + +template +inline double approximate_distance_relative_to_bbox(const TriangleMesh& tm1, + const TriangleMesh& tm2, + const Distance_metric& metric) +{ + double longest_diag_length = get_longest_diag_bbox(tm1); + return approximate_distance(tm1, tm2, metric) / longest_diag_length; +} + +template +inline double approximate_distance_relative_to_bbox(const TriangleMesh& tm1, + const TriangleMesh& tm2, + const Distance_metric& metric, + const FT& longest_diag_length) +{ + return approximate_distance(tm1, tm2, metric) / CGAL::to_double(longest_diag_length); +} + +} // namespace Aw3i + +#endif // CGAL_CGAL_ALPHA_WRAP_3_BENCHMARK_ALPHA_WRAP_3_QUALITY_DISTANCE_H_ diff --git a/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/generate_quality_benchmark_charts.py b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/generate_quality_benchmark_charts.py new file mode 100644 index 000000000000..0df5ed5e0f4e --- /dev/null +++ b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/generate_quality_benchmark_charts.py @@ -0,0 +1,182 @@ +# Copyright (c) 2019-2023 Google LLC (USA). +# All rights reserved. +# +# This file is part of CGAL (www.cgal.org). +# +# $URL$ +# $Id$ +# SPDX-License-Identifier: GPL-3.0-or-later +# +# +# Author(s) : Pierre Alliez +# Michael Hemmer +# Cedric Portaneri +# +#!/usr/bin/python + +import os, sys, subprocess, datetime, time, signal, getopt +import numpy as np +import matplotlib.pyplot as plt + +def main(argv): + + inputdir="" + outputdir="" + commit_hash="" + alpha="" + do_diff=False + diffdir="" + diff_hash="" + try: + opts, args = getopt.getopt(sys.argv[1:], 'i:a:o:c:d:p:') + except getopt.GetoptError: + sys.exit(2) + for opt, arg in opts: + if opt == "-i": + inputdir = arg + elif opt == "-a": + alpha = arg + elif opt == "-o": + outputdir = arg + elif opt == "-c": + commit_hash = arg + elif opt == "-d": + diff_hash = arg + do_diff = True + elif opt == "-p": + diffdir = arg + + all_metric = { + "Mean_Min_Angle_(degree)" : {}, + "Mean_Max_Angle_(degree)" : {}, + "Mean_Radius_Ratio" : {}, + "Mean_Edge_Ratio" : {}, + "Mean_Aspect_Ratio" : {}, + "Complexity_(#_of_triangle)" : {}, + "#_of_almost_degenerate_triangle" : {}, + "Hausdorff_distance_output_to_input_(%_of_bbox_diag)" : {}} + num_input = 0 + print("inputdir = ", inputdir) + for filename in os.listdir(inputdir) : + new_path = os.path.join(inputdir,filename) + new_file = open(new_path) + if do_diff : + old_path = os.path.join(diffdir,filename) + old_file = open(old_path) + is_empty_old = os.path.getsize(old_path) <= 1 + for key in all_metric : + try : + new_val = float(new_file.readline().rstrip('\n')) + old_val = float(old_file.readline().rstrip('\n')) + mesh_id = str(filename.split('.')[0]) + all_metric[key][mesh_id] = [new_val, old_val] + except ValueError: + pass + else : + for key in all_metric : + try : + new_val = float(new_file.readline().rstrip('\n')) + mesh_id = str(filename.split('.')[0]) + all_metric[key][mesh_id] = [new_val, new_val] + except ValueError: + pass + num_input = num_input+1 + + # update .pdf chart + date_now = datetime.datetime.now() + date_for_filename = str(date_now.year) +"_"+ str(date_now.month) +"_"+ str(date_now.day) +"_"+ str(date_now.hour) +"h"+ str(date_now.minute) +"mn" + for key in all_metric: + goal = 0 + if key == "Mean_Min_Angle_(degree)" or key == "Mean_Max_Angle_(degree)": + goal = 60 + elif key == "Mean_Radius_Ratio" or key == "Mean_Edge_Ratio" or key == "Mean_Aspect_Ratio" : + goal = 1 + + num_el = range(len(all_metric[key])) + avg_diff_to_goal = 0. + avg = 0. + x1 = [] + x2 = [] + for value in all_metric[key].values() : + avg += value[0] + diff_to_goal = abs(value[1]-goal) - abs(value[0]-goal) + avg_diff_to_goal += diff_to_goal + x1.append(value[0]) + x2.append(value[1]) + avg_diff_to_goal /= float(len(all_metric[key])) + avg /= float(len(all_metric[key])) + + plt.figure(figsize=(8,8)) + if do_diff : + plt.hist(x2, bins=100, color='tab:green', alpha=0.5) + plt.hist(x1, bins=100, color='tab:blue', alpha=0.5) + plt.vlines(x = goal, ymin=plt.ylim()[0], ymax=plt.ylim()[1], linestyles='dashed') + + title = "" + if do_diff : + title += "Diff between " + commit_hash + " and " + diff_hash + " on " + str(num_input) + " meshes from Thingi10K\nAlpha = Bbox diag length / " + alpha + else : + title += "Benchmarking on " + str(num_input) + " meshes from Thingi10K\nAlpha = Bbox diag length / " + alpha + + avg_str = str(format(abs(avg), '.2f')) + if key == "Mean_Min_Angle_(degree)" or key == "Mean_Max_Angle_(degree)": + title += "\nIn average we have " + avg_str + "°" + elif key == "Mean_Radius_Ratio" or key == "Mean_Edge_Ratio" or key == "Mean_Aspect_Ratio" : + title += "\nIn average we have a ratio of " + avg_str + elif key == "Hausdorff_distance_output_to_input_(%_of_bbox_diag)" : + title += "\nIn average we have a distance of " + avg_str + "% of bbox diag" + elif key == "Complexity_(#_of_triangle)" or key == "#_of_almost_degenerate_triangle" : + title += "\nIn average we have " + avg_str + " triangles" + + if do_diff and avg_diff_to_goal == 0. : + title += "\nNo change between the two commits" + elif do_diff : + avg_diff_str = str(format(abs(avg_diff_to_goal), '.2f')) + if key == "Mean_Min_Angle_(degree)" or key == "Mean_Max_Angle_(degree)": + if avg_diff_to_goal < 0 : + title += "\nIn average we loose " + else : + title += "\nIn average we gain " + title += avg_diff_str + "° toward 60°" + elif key == "Mean_Radius_Ratio" or key == "Mean_Edge_Ratio" or key == "Mean_Aspect_Ratio" : + if avg_diff_to_goal < 0 : + title += "\nIn average we loose " + else : + title += "\nIn average we gain " + title += avg_diff_str + " of ratio toward 1" + elif key == "Hausdorff_distance_output_to_input_(%_of_bbox_diag)" : + if avg_diff_to_goal < 0 : + title += "\nIn average we increase by " + else : + title += "\nIn average we reduce by " + title += avg_diff_str + " the bbox ratio" + elif key == "Complexity_(#_of_triangle)" or key == "#_of_almost_degenerate_triangle" : + if avg_diff_to_goal < 0 : + title += "\nIn average we get " + avg_diff_str + " more" + else : + title += "\nIn average we get " + avg_diff_str + " less" + title += " triangles" + + plt.title(title, fontsize=15) + plt.xlabel(key.replace("_"," "), fontsize=14) + plt.ylabel("# of meshes", fontsize=14) + plt.tick_params(axis="x", labelsize=9) + plt.tick_params(axis="y", labelsize=9) + + chart_filename = "" + if do_diff : + chart_filename += "diff_"+commit_hash+"_"+diff_hash+"_"+key+"_"+date_for_filename+".pdf" + else : + chart_filename += "results_"+commit_hash+"_"+key+"_"+date_for_filename+".pdf" + chart_path = os.path.join(outputdir+"/charts",chart_filename) + if os.path.isfile(chart_path) : + os.remove(chart_path) + plt.savefig(chart_path, bbox_inches="tight") + plt.close() + + print("pdf updated") + + sys.exit() + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/quality_benchmark.cpp b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/quality_benchmark.cpp new file mode 100644 index 000000000000..f8e54c488a49 --- /dev/null +++ b/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/quality_benchmark.cpp @@ -0,0 +1,271 @@ +#include + +#include +#include + +#include + +#include + +#include +#include +#include + +using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; +using Point_3 = Kernel::Point_3; +using Vector_3 = Kernel::Vector_3; +using Triangle_3 = Kernel::Triangle_3; +using FT = Kernel::FT; + +using Mesh = CGAL::Surface_mesh; +using face_descriptor = boost::graph_traits::face_descriptor; + +using Oracle = CGAL::Alpha_wraps_3::internal::Triangle_mesh_oracle; +using Dt = CGAL::Alpha_wraps_3::internal::Alpha_wrapper_3::Triangulation; + +namespace PMP = CGAL::Polygon_mesh_processing; + +std::array triangle_angles(const Triangle_3& tr) +{ + FT sq_a = CGAL::squared_distance(tr[0], tr[1]); + FT sq_b = CGAL::squared_distance(tr[1], tr[2]); + FT sq_c = CGAL::squared_distance(tr[2], tr[0]); + + FT two_ab = 2. * CGAL::sqrt(sq_a) * CGAL::sqrt(sq_b); + FT two_bc = 2. * CGAL::sqrt(sq_b) * CGAL::sqrt(sq_c); + FT two_ca = 2. * CGAL::sqrt(sq_c) * CGAL::sqrt(sq_a); + + FT angle_a = (sq_b + sq_c - sq_a) / two_bc; + FT angle_b = (sq_c + sq_a - sq_b) / two_ca; + FT angle_c = (sq_a + sq_b - sq_c) / two_ab; + if(angle_a < -1.) angle_a = -1.; + if(angle_b < -1.) angle_b = -1.; + if(angle_c < -1.) angle_c = -1.; + if(angle_a > 1.) angle_a = 1.; + if(angle_b > 1.) angle_b = 1.; + if(angle_c > 1.) angle_c = 1.; + angle_a = std::acos(angle_a); + angle_b = std::acos(angle_b); + angle_c = std::acos(angle_c); + + return {angle_a, angle_b, angle_c}; +} + +bool is_almost_degenerate(const Triangle_3& tr, + double threshold) +{ + FT sq_area = tr.squared_area(); + return (CGAL::sqrt(CGAL::to_double(sq_area)) < threshold); +} + +auto surface_mesh_face_to_triangle(const face_descriptor fd, + const Mesh& sm) +{ + typename boost::graph_traits::halfedge_descriptor hd = halfedge(fd,sm); + return Triangle_3(sm.point(target(hd,sm)), + sm.point(target(next(hd,sm),sm)), + sm.point(target(next(next(hd,sm),sm),sm))); +} + +double mean_min_angle(const Mesh& mesh) +{ + double mean_min_angle = 0.; + for(const face_descriptor f : faces(mesh)) + { + const Triangle_3 tr = surface_mesh_face_to_triangle(f, mesh); + std::array angles = triangle_angles(tr); + + FT min_angle = std::min({angles[0], angles[1], angles[2]}); + + min_angle = min_angle * (180.0 / CGAL_PI); + mean_min_angle += min_angle; + } + + mean_min_angle /= static_cast(mesh.number_of_faces()); + return mean_min_angle; +} + +double mean_max_angle(const Mesh& mesh) +{ + double mean_max_angle = 0.; + for(const face_descriptor f : faces(mesh)) + { + const Triangle_3 tr = surface_mesh_face_to_triangle(f, mesh); + std::array angles = triangle_angles(tr); + + FT max_angle = std::max({angles[0], angles[1], angles[2]}); + + max_angle = max_angle * (180.0 / CGAL_PI); + mean_max_angle += max_angle; + } + + mean_max_angle /= static_cast(mesh.number_of_faces()); + return mean_max_angle; +} + +double mean_radius_ratio(const Mesh& mesh, + double degenerate_threshold) +{ + double mean_radius_ratio = 0.; + size_t num_almost_degenerate_tri = 0; + for(const face_descriptor f : faces(mesh)) + { + const Triangle_3 tr = surface_mesh_face_to_triangle(f, mesh); + if(is_almost_degenerate(tr, degenerate_threshold)) + { + ++num_almost_degenerate_tri; + continue; + } + + FT circumsphere_radius = std::sqrt(CGAL::squared_radius(tr[0], tr[1], tr[2])); + + FT a = std::sqrt(CGAL::squared_distance(tr[0], tr[1])); + FT b = std::sqrt(CGAL::squared_distance(tr[1], tr[2])); + FT c = std::sqrt(CGAL::squared_distance(tr[2], tr[0])); + FT s = 0.5 * (a + b + c); + FT inscribed_radius = std::sqrt((s * (s - a) * (s - b) * (s - c)) / s); + FT radius_ratio = circumsphere_radius / inscribed_radius; + radius_ratio /= 2.; // normalized + mean_radius_ratio += radius_ratio; + } + + mean_radius_ratio /= static_cast(mesh.number_of_faces() - num_almost_degenerate_tri); + return mean_radius_ratio; +} + +double mean_edge_ratio(const Mesh& mesh, + double degenerate_threshold) +{ + double mean_edge_ratio = 0.; + size_t num_almost_degenerate_tri = 0; + + for(const face_descriptor f : faces(mesh)) + { + const Triangle_3 tr = surface_mesh_face_to_triangle(f, mesh); + if(is_almost_degenerate(tr, degenerate_threshold)) + { + ++num_almost_degenerate_tri; + continue; + } + + FT a = std::sqrt(CGAL::squared_distance(tr[0], tr[1])); + FT b = std::sqrt(CGAL::squared_distance(tr[1], tr[2])); + FT c = std::sqrt(CGAL::squared_distance(tr[2], tr[0])); + FT min_edge = std::min({a, b, c}); + FT max_edge = std::max({a, b, c}); + FT edge_ratio = max_edge / min_edge; + + mean_edge_ratio += edge_ratio; + } + + mean_edge_ratio /= static_cast(mesh.number_of_faces() - num_almost_degenerate_tri); + return mean_edge_ratio; +} + +double mean_aspect_ratio(const Mesh& mesh, + double degenerate_threshold) +{ + double mean_aspect_ratio = 0.; + size_t num_almost_degenerate_tri = 0; + for(const face_descriptor f : faces(mesh)) + { + const Triangle_3 tr = surface_mesh_face_to_triangle(f, mesh); + if(is_almost_degenerate(tr, degenerate_threshold)) + { + ++num_almost_degenerate_tri; + continue; + } + + FT a = std::sqrt(CGAL::squared_distance(tr[0], tr[1])); + FT b = std::sqrt(CGAL::squared_distance(tr[1], tr[2])); + FT c = std::sqrt(CGAL::squared_distance(tr[2], tr[0])); + FT s = 0.5 * (a + b + c); + FT inscribed_radius = std::sqrt((s * (s - a) * (s - b) * (s - c)) / s); + FT max_edge = std::max({a, b, c}); + FT aspect_ratio = max_edge / inscribed_radius; + aspect_ratio /= (2. * std::sqrt(3.)); // normalized + mean_aspect_ratio += aspect_ratio; + } + + mean_aspect_ratio /= static_cast(mesh.number_of_faces() - num_almost_degenerate_tri); + return mean_aspect_ratio; +} + +size_t num_almost_degenerate_tri(const Mesh& mesh, + double degenerate_threshold) +{ + size_t num_almost_degenerate_tri = 0; + for(const face_descriptor f : faces(mesh)) + { + const Triangle_3 tr = surface_mesh_face_to_triangle(f, mesh); + if(is_almost_degenerate(tr, degenerate_threshold)) + { + ++num_almost_degenerate_tri; + } + } + return num_almost_degenerate_tri; +} + +int main(int argc, char** argv) +{ + const int argc_check = argc - 1; + char *entry_name_ptr = nullptr; + double relative_alpha_ratio = 20.; + double relative_offset_ratio = 600.; + + for(int i=1; i +#include + +#include +#include + +#include + +using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; +using Point_3 = Kernel::Point_3; +using Mesh = CGAL::Surface_mesh; + +namespace CGAL { +namespace Alpha_wraps_3 { +namespace internal { +namespace { + +enum Robustness_benchmark_exit_code +{ + // Success + VALID_SOLID_OUTPUT = 0, + + // Failure + INPUT_IS_INVALID = 1, + OUTPUT_IS_NOT_TRIANGLE_MESH = 2, + OUTPUT_IS_COMBINATORIAL_NON_MANIFOLD = 3, + OUTPUT_HAS_BORDERS = 4, + OUTPUT_HAS_DEGENERATED_FACES = 5, + OUTPUT_HAS_GEOMETRIC_SELF_INTERSECTIONS = 6, + OUTPUT_DOES_NOT_BOUND_VOLUME = 7, + OUTPUT_DOES_NOT_CONTAIN_INPUT = 8, + OUTPUT_DISTANCE_IS_TOO_LARGE = 9, +}; + +} // namespace +} // namespace internal +} // namespace Alpha_wraps_3 +} // namespace CGAL + +namespace PMP = CGAL::Polygon_mesh_processing; +namespace AW3i = CGAL::Alpha_wraps_3::internal; + +int main(int argc, char** argv) +{ + const int argc_check = argc - 1; + char* entry_name_ptr = nullptr; + double relative_alpha_ratio = 20.; + double relative_offset_ratio = 600.; + + for(int i=1; i $2/Robustness/results/$5/$filename.log + + python3 $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/compute_performance_benchmark_data.py \ + -e $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/build-release/performance_benchmark -i $6 -a $3 \ + > $2/Performance/results/$5/$filename.log + + python3 $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/compute_quality_benchmark_data.py \ + -e $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/build-release/quality_benchmark -i $6 -a $3 \ + > $2/Quality/results/$5/$filename.log +} +export -f compute_benchmark_data + +# $1: directory containing the alpha wrap project +# $2: directory containing the input data folder +# $3: directory containing the output results +# $4: alpha value +# $5: timeout value for robustness benchmark in seconds +# $6: number of virtual thread used +# $7: hash of the latest commit +# $8: hash of a commit to perform the diff with latest +cd $1 + +mkdir -p $3/Robustness/results/$7 +mkdir -p $3/Performance/results/$7 +mkdir -p $3/Quality/results/$7 +mkdir -p $3/Robustness/charts_data +mkdir -p $3/Performance/charts_data +mkdir -p $3/Quality/charts_data +mkdir -p $3/Robustness/charts +mkdir -p $3/Performance/charts +mkdir -p $3/Quality/charts +mkdir -p $3/Robustness/log +mkdir -p $3/Performance/log +mkdir -p $3/Quality/log +mkdir -p $3/charts + +find $2 -mindepth 1 | parallel -j$6 compute_benchmark_data $1 $3 $4 $5 $7 ::: + +python3 $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/Robustness/generate_robustness_benchmark_charts.py -i $3/Robustness/results/$7 -o $3/Robustness -a $4 -c $7 + +if [ -z "$8" ]; then + python3 $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/generate_performance_benchmark_charts.py -i $3/Performance/results/$7 -o $3/Performance -a $4 -c $7; +else + python3 $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/Performance/generate_performance_benchmark_charts.py -i $3/Performance/results/$7 -o $3/Performance -a $4 -c $7 -p $3/Performance/results/$8 -d $8; +fi + +if [ -z "$8" ]; then + python3 $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/generate_quality_benchmark_charts.py -i $3/Quality/results/$7 -o $3/Quality -a $4 -c $7; +else + python3 $1/Alpha_wrap_3/benchmark/Alpha_wrap_3/Quality/generate_quality_benchmark_charts.py -i $3/Quality/results/$7 -o $3/Quality -a $4 -c $7 -p $3/Quality/results/$8 -d $8; +fi + +charts_path="$(ls "$3/Robustness/charts"/* -dArt | tail -n 1) $(ls "$3/Performance/charts"/* -dArt | tail -n 2) $(ls "$3/Quality/charts"/* -dArt | tail -n 9)" + +pdfjam --nup 2x6 $charts_path --outfile $3/charts/results_$7_$8_alpha_$4_$(date '+%Y-%m-%d_%H:%M:%S').pdf diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/CMakeLists.txt b/Alpha_wrap_3/examples/Alpha_wrap_3/CMakeLists.txt index 0be54f87eed0..40187ca194cb 100644 --- a/Alpha_wrap_3/examples/Alpha_wrap_3/CMakeLists.txt +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/CMakeLists.txt @@ -13,3 +13,5 @@ create_single_source_cgal_program("point_set_wrap.cpp") create_single_source_cgal_program("wrap_from_cavity.cpp") create_single_source_cgal_program("mixed_inputs_wrap.cpp") create_single_source_cgal_program("volumetric_wrap.cpp") +create_single_source_cgal_program("successive_wraps.cpp") +create_single_source_cgal_program("pause_and_resume_wrapping.cpp") diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/mixed_inputs_wrap.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/mixed_inputs_wrap.cpp index ffcedc7f1cbb..90b488e0407c 100644 --- a/Alpha_wrap_3/examples/Alpha_wrap_3/mixed_inputs_wrap.cpp +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/mixed_inputs_wrap.cpp @@ -103,10 +103,10 @@ int main(int argc, char** argv) oracle.add_segment_soup(segments, CGAL::parameters::default_values()); oracle.add_point_set(ps_points, CGAL::parameters::default_values()); - CGAL::Alpha_wraps_3::internal::Alpha_wrap_3 aw3(oracle); + CGAL::Alpha_wraps_3::internal::Alpha_wrapper_3 aw3(oracle); - Mesh output_mesh; - aw3(alpha, offset, output_mesh); + Mesh wrap; + aw3(alpha, offset, wrap); t.stop(); std::cout << "Took " << t.time() << std::endl; @@ -120,10 +120,11 @@ int main(int argc, char** argv) std::string ps_name = std::string(ps_filename); ps_name = ps_name.substr(ps_name.find_last_of("/") + 1, ps_name.length() - 1); ps_name = ps_name.substr(0, ps_name.find_last_of(".")); - std::string output_name = ts_name + "_" + ss_name + "_" + ps_name + "_" + std::to_string(static_cast(relative_alpha)) - + "_" + std::to_string(static_cast(relative_offset)) + ".off"; + std::string output_name = ts_name + "_" + ss_name + "_" + ps_name + "_" + + std::to_string(static_cast(relative_alpha)) + "_" + + std::to_string(static_cast(relative_offset)) + ".off"; std::cout << "Writing to " << output_name << std::endl; - CGAL::IO::write_polygon_mesh(output_name, output_mesh, CGAL::parameters::stream_precision(17)); + CGAL::IO::write_polygon_mesh(output_name, wrap, CGAL::parameters::stream_precision(17)); return EXIT_SUCCESS; } diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/output_helper.h b/Alpha_wrap_3/examples/Alpha_wrap_3/output_helper.h new file mode 100644 index 000000000000..581ac82bff02 --- /dev/null +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/output_helper.h @@ -0,0 +1,19 @@ +#ifndef CGAL_ALPHA_WRAP_3_EXAMPLES_OUTPUT_HELPER_H +#define CGAL_ALPHA_WRAP_3_EXAMPLES_OUTPUT_HELPER_H + +#include + +std::string generate_output_name(std::string input_name, + const double alpha, + const double offset) +{ + input_name = input_name.substr(input_name.find_last_of("/") + 1, input_name.length() - 1); + input_name = input_name.substr(0, input_name.find_last_of(".")); + std::string output_name = input_name + + "_" + std::to_string(static_cast(alpha)) + + "_" + std::to_string(static_cast(offset)) + ".off"; + + return output_name; +} + +#endif // CGAL_ALPHA_WRAP_3_EXAMPLES_OUTPUT_HELPER_H diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/pause_and_resume_wrapping.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/pause_and_resume_wrapping.cpp new file mode 100644 index 000000000000..cee169048c32 --- /dev/null +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/pause_and_resume_wrapping.cpp @@ -0,0 +1,164 @@ +// This example demonstrates how to interrupt the wrapping process before it has terminated, +// and how to resume afterwards. +// +// -------------------------------- !! Warning !! -------------------------------------------------- +// By default, the wrapper uses an unsorted LIFO queue of faces to refine. This means that +// the intermediate result is not very useful because the algorithm carves deep and not wide +// (somewhat like a DFS vs a BFS). +// +// The sorted queue option is enabled with the macro below to make the refinement algorithm +// more uniform. The downside is that it is slower. +// ------------------------------------------------------------------------------------------------- +#define CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + +#include "output_helper.h" + +#include +#include + +#include +#include +#include +#include +#include + +#include +#include + +namespace AW3 = CGAL::Alpha_wraps_3; +namespace PMP = CGAL::Polygon_mesh_processing; + +using K = CGAL::Exact_predicates_inexact_constructions_kernel; +using Point_3 = K::Point_3; + +using Points = std::vector; +using Face = std::array; +using Faces = std::vector; + +using Mesh = CGAL::Surface_mesh; +using face_descriptor = boost::graph_traits::face_descriptor; + +struct Interrupter_visitor + : public AW3::internal::Wrapping_default_visitor +{ + using Base = AW3::internal::Wrapping_default_visitor; + + CGAL::Real_timer timer; + double max_time = -1; // in seconds + +public: + void set_max_time(double t) { max_time = t; } + +public: + template + void on_flood_fill_begin(const AlphaWrapper&) + { + std::cout << "Starting timer..." << std::endl; + timer.start(); + } + + template + bool go_further(const Wrapper&) + { + if(timer.time() > max_time) + { + timer.stop(); + std::cout << "Paused after " << timer.time() << " s." << std::endl; + return false; + } + + return true; + } +}; + +int main(int argc, char** argv) +{ + std::cout.precision(17); + std::cerr.precision(17); + + CGAL::Random rng; + std::cout << "Random seed = " << rng.get_seed() << std::endl; + + const std::string filename = (argc > 1) ? argv[1] : CGAL::data_file_path("meshes/armadillo.off"); + + // = read the soup + Points points; + Faces faces; + if(!CGAL::IO::read_polygon_soup(filename, points, faces) || faces.empty()) + { + std::cerr << "Invalid soup input: " << filename << std::endl; + return EXIT_FAILURE; + } + + std::cout << "Input: " << points.size() << " points, " << faces.size() << " faces" << std::endl; + + // Compute the alpha and offset values + const double relative_alpha = (argc > 2) ? std::stod(argv[2]) : rng.get_double(150., 200.); + const double relative_offset = (argc > 3) ? std::stod(argv[3]) : 600.; + std::cout << "relative_alpha = " << relative_alpha << std::endl; + + CGAL::Bbox_3 bbox; + for(const Point_3& p : points) + bbox += p.bbox(); + + const double diag_length = std::sqrt(CGAL::square(bbox.xmax() - bbox.xmin()) + + CGAL::square(bbox.ymax() - bbox.ymin()) + + CGAL::square(bbox.zmax() - bbox.zmin())); + + const double alpha = diag_length / relative_alpha; + const double offset = diag_length / relative_offset; + + // Build the wrapper + using Oracle = CGAL::Alpha_wraps_3::internal::Triangle_soup_oracle; + Oracle oracle(alpha); + oracle.add_triangle_soup(points, faces, CGAL::parameters::default_values()); + CGAL::Alpha_wraps_3::internal::Alpha_wrapper_3 aw3(oracle); + + // --- Launch the wrapping, and pause when the algorithm has spent 1s flooding + Interrupter_visitor interrupter; + interrupter.set_max_time(1.); + + Mesh wrap; + aw3(alpha, offset, wrap, CGAL::parameters::visitor(interrupter)); + std::cout << ">>> The current wrap has " << num_vertices(wrap) << " vertices" << std::endl; + CGAL::IO::write_polygon_mesh("stopped_1.off", wrap, CGAL::parameters::stream_precision(17)); + + // --- Restart from the previous state, and pause a bit further + interrupter.set_max_time(2.); + aw3(alpha, offset, wrap, CGAL::parameters::visitor(interrupter) + .refine_triangulation(true)); + std::cout << ">>> The current wrap has " << num_vertices(wrap) << " vertices" << std::endl; + CGAL::IO::write_polygon_mesh("stopped_2.off", wrap, CGAL::parameters::stream_precision(17)); + + // --- Restart from the previous state, and let it finish + aw3(alpha, offset, wrap, CGAL::parameters::refine_triangulation(true)); + std::cout << ">>> The final (resumed) wrap has " << num_vertices(wrap) << " vertices" << std::endl; + std::string output_name = generate_output_name(filename, relative_alpha, relative_offset); + std::cout << "Writing to " << "resumed_" + output_name << std::endl; + CGAL::IO::write_polygon_mesh("resumed_" + output_name, wrap, CGAL::parameters::stream_precision(17)); + + // --- Get the final wrap, in one go: + Mesh single_pass_wrap; + CGAL::alpha_wrap_3(points, faces, alpha, offset, single_pass_wrap); + std::cout << ">>> The final (from scratch) wrap has " << num_vertices(single_pass_wrap) << " vertices" << std::endl; + + output_name = generate_output_name(filename, relative_alpha, relative_offset); + std::cout << "Writing to " << output_name << std::endl; + CGAL::IO::write_polygon_mesh(output_name, single_pass_wrap, CGAL::parameters::stream_precision(17)); + + // --- Compare the results to ensure both approaches yield identical meshes + std::vector > common; + std::vector m1_only; + std::vector m2_only; + PMP::match_faces(wrap, single_pass_wrap, + std::back_inserter(common), + std::back_inserter(m1_only), + std::back_inserter(m2_only)); + if(!m1_only.empty() || !m2_only.empty()) + { + std::cerr << "Error: The two wraps should have been identical!" << std::endl; + return EXIT_FAILURE; + } + + return EXIT_SUCCESS; +} diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/point_set_wrap.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/point_set_wrap.cpp index 8742a2a20011..a602cf5c58bf 100644 --- a/Alpha_wrap_3/examples/Alpha_wrap_3/point_set_wrap.cpp +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/point_set_wrap.cpp @@ -1,3 +1,5 @@ +#include "output_helper.h" + #include #include @@ -23,7 +25,7 @@ int main(int argc, char** argv) Point_container points; if(!CGAL::IO::read_points(filename, std::back_inserter(points)) || points.empty()) { - std::cerr << "Invalid input." << std::endl; + std::cerr << "Invalid input:" << filename << std::endl; return EXIT_FAILURE; } @@ -53,11 +55,7 @@ int main(int argc, char** argv) std::cout << "Took " << t.time() << " s." << std::endl; // Save the result - std::string input_name = std::string(filename); - input_name = input_name.substr(input_name.find_last_of("/") + 1, input_name.length() - 1); - input_name = input_name.substr(0, input_name.find_last_of(".")); - std::string output_name = input_name + "_" + std::to_string(static_cast(relative_alpha)) - + "_" + std::to_string(static_cast(relative_offset)) + ".off"; + const std::string output_name = generate_output_name(filename, relative_alpha, relative_offset); std::cout << "Writing to " << output_name << std::endl; CGAL::IO::write_polygon_mesh(output_name, wrap, CGAL::parameters::stream_precision(17)); diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/successive_wraps.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/successive_wraps.cpp new file mode 100644 index 000000000000..301aec46e2d5 --- /dev/null +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/successive_wraps.cpp @@ -0,0 +1,135 @@ +// In this example, we reuse the underlying triangulation of the previous state, and carve using +// a new (smaller) alpha value. This enables considerable speed-up: the cumulated time taken +// to run `n` successive instances of `{alpha_wrap(alpha_i)}_(i=1...n)` will be roughly equal +// to the time taken to the single instance of alpha_wrap(alpha_n) from scratch. +// +// The speed-up increases with the number of intermediate results, and on the gap between +// alpha values: if alpha_2 is close to alpha_1, practically no new computation are required, +// and the speed-up is almost 100%. +// +// -------------------------------- !! Warning !! -------------------------------------------------- +// The result of: +// > alpha_wrap(alpha_1, ...) +// > alpha_wrap(alpha_2, ..., reuse) +// is not exactly identical to calling directly: +// > alpha_wrap(alpha_2, ..., do_not_reuse) +// because the queues are sorted slightly differently and the AABB tree is rebuilt differently +// to optimize the runtime. +// ------------------------------------------------------------------------------------------------- + +#include "output_helper.h" + +#include +#include + +#include +#include +#include +#include + +#include +#include + +namespace PMP = CGAL::Polygon_mesh_processing; + +using K = CGAL::Exact_predicates_inexact_constructions_kernel; +using FT = K::FT; +using Point_3 = K::Point_3; + +using Mesh = CGAL::Surface_mesh; + +int main(int argc, char** argv) +{ + std::cout.precision(17); + std::cerr.precision(17); + + // Read the input + const std::string filename = (argc > 1) ? argv[1] : CGAL::data_file_path("meshes/cube.off"); + std::cout << "Reading " << filename << "..." << std::endl; + + Mesh mesh; + if(!PMP::IO::read_polygon_mesh(filename, mesh) || is_empty(mesh) || !is_triangle_mesh(mesh)) + { + std::cerr << "Invalid input:" << filename << std::endl; + return EXIT_FAILURE; + } + + std::cout << "Input: " << num_vertices(mesh) << " vertices, " << num_faces(mesh) << " faces" << std::endl; + + const CGAL::Bbox_3 bbox = CGAL::Polygon_mesh_processing::bbox(mesh); + const double diag_length = std::sqrt(CGAL::square(bbox.xmax() - bbox.xmin()) + + CGAL::square(bbox.ymax() - bbox.ymin()) + + CGAL::square(bbox.zmax() - bbox.zmin())); + + // We want decreasing alphas, and these are relative ratios, so they need to be increasing + const std::vector relative_alphas = { 1, 50, 100, 150, 200, 250 }; + const FT relative_offset = 600; + + // =============================================================================================== + // Naive approach: + + CGAL::Real_timer t; + double total_time = 0.; + + for(std::size_t i=0; i>> [" << i << "] alpha: " << alpha << " offset: " << offset << std::endl; + + Mesh wrap; + CGAL::alpha_wrap_3(mesh, alpha, offset, wrap); + + t.stop(); + std::cout << " Result: " << num_vertices(wrap) << " vertices, " << num_faces(wrap) << " faces" << std::endl; + std::cout << " Elapsed time: " << t.time() << " s." << std::endl; + + total_time += t.time(); + } + + std::cout << "Total elapsed time (naive): " << total_time << " s.\n" << std::endl; + + // =============================================================================================== + // Re-use approach + + total_time = 0.; + t.reset(); + + using Oracle = CGAL::Alpha_wraps_3::internal::Triangle_mesh_oracle; + using Wrapper = CGAL::Alpha_wraps_3::internal::Alpha_wrapper_3; + Wrapper wrapper; // contains the triangulation that is being refined iteratively + + for(std::size_t i=0; i>> [" << i << "] alpha: " << alpha << " offset: " << offset << std::endl; + + // The triangle mesh oracle should be initialized with alpha to internally perform a split + // of too-big facets while building the AABB Tree. This split in fact yields a significant + // speed-up for meshes with elements that are large compared to alpha. This speed-up makes it + // faster to re-build the AABB tree for every value of alpha than to use a non-optimized tree. + Oracle oracle(alpha); + oracle.add_triangle_mesh(mesh, CGAL::parameters::default_values()); + wrapper.oracle() = oracle; + + Mesh wrap; + wrapper(alpha, offset, wrap, CGAL::parameters::refine_triangulation((i != 0))); + + t.stop(); + std::cout << " Result: " << num_vertices(wrap) << " vertices, " << num_faces(wrap) << " faces" << std::endl; + std::cout << " Elapsed time: " << t.time() << " s." << std::endl; + + total_time += t.time(); + } + + std::cout << "Total elapsed time (successive): " << total_time << " s." << std::endl; + + return EXIT_SUCCESS; +} diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/triangle_mesh_wrap.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/triangle_mesh_wrap.cpp index 00e2e4fd9fc5..d49534904461 100644 --- a/Alpha_wrap_3/examples/Alpha_wrap_3/triangle_mesh_wrap.cpp +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/triangle_mesh_wrap.cpp @@ -1,3 +1,5 @@ +#include "output_helper.h" + #include #include @@ -25,7 +27,7 @@ int main(int argc, char** argv) Mesh mesh; if(!PMP::IO::read_polygon_mesh(filename, mesh) || is_empty(mesh) || !is_triangle_mesh(mesh)) { - std::cerr << "Invalid input." << std::endl; + std::cerr << "Invalid input:" << filename << std::endl; return EXIT_FAILURE; } @@ -56,12 +58,7 @@ int main(int argc, char** argv) std::cout << "Took " << t.time() << " s." << std::endl; // Save the result - std::string input_name = std::string(filename); - input_name = input_name.substr(input_name.find_last_of("/") + 1, input_name.length() - 1); - input_name = input_name.substr(0, input_name.find_last_of(".")); - std::string output_name = input_name - + "_" + std::to_string(static_cast(relative_alpha)) - + "_" + std::to_string(static_cast(relative_offset)) + ".off"; + const std::string output_name = generate_output_name(filename, relative_alpha, relative_offset); std::cout << "Writing to " << output_name << std::endl; CGAL::IO::write_polygon_mesh(output_name, wrap, CGAL::parameters::stream_precision(17)); diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/triangle_soup_wrap.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/triangle_soup_wrap.cpp index 626e3bdc3ba4..51e04974c28a 100644 --- a/Alpha_wrap_3/examples/Alpha_wrap_3/triangle_soup_wrap.cpp +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/triangle_soup_wrap.cpp @@ -1,3 +1,5 @@ +#include "output_helper.h" + #include #include @@ -30,7 +32,7 @@ int main(int argc, char** argv) std::vector > faces; if(!CGAL::IO::read_polygon_soup(filename, points, faces) || faces.empty()) { - std::cerr << "Invalid input." << std::endl; + std::cerr << "Invalid input:" << filename << std::endl; return EXIT_FAILURE; } @@ -63,12 +65,7 @@ int main(int argc, char** argv) std::cout << "Took " << t.time() << " s." << std::endl; // Save the result - std::string input_name = std::string(filename); - input_name = input_name.substr(input_name.find_last_of("/") + 1, input_name.length() - 1); - input_name = input_name.substr(0, input_name.find_last_of(".")); - std::string output_name = input_name - + "_" + std::to_string(static_cast(relative_alpha)) - + "_" + std::to_string(static_cast(relative_offset)) + ".off"; + const std::string output_name = generate_output_name(filename, relative_alpha, relative_offset); std::cout << "Writing to " << output_name << std::endl; CGAL::IO::write_polygon_mesh(output_name, wrap, CGAL::parameters::stream_precision(17)); diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp index 113215b631a1..ddc6f765612b 100644 --- a/Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp @@ -1,3 +1,5 @@ +#include "output_helper.h" + #include #include @@ -70,7 +72,7 @@ int main(int argc, char** argv) Faces faces; if(!CGAL::IO::read_polygon_soup(filename, points, faces) || faces.empty()) { - std::cerr << "Invalid input." << std::endl; + std::cerr << "Invalid input:" << filename << std::endl; return EXIT_FAILURE; } @@ -101,7 +103,7 @@ int main(int argc, char** argv) Oracle oracle(K{}); oracle.add_triangle_soup(points, faces, CGAL::parameters::default_values()); - CGAL::Alpha_wraps_3::internal::Alpha_wrap_3 aw3(oracle); + CGAL::Alpha_wraps_3::internal::Alpha_wrapper_3 aw3(oracle); Mesh wrap; aw3(alpha, offset, wrap); @@ -113,12 +115,7 @@ int main(int argc, char** argv) auto dt = aw3.triangulation(); // Save the result - std::string input_name = std::string(filename); - input_name = input_name.substr(input_name.find_last_of("/") + 1, input_name.length() - 1); - input_name = input_name.substr(0, input_name.find_last_of(".")); - std::string output_name = input_name - + "_" + std::to_string(static_cast(relative_alpha)) - + "_" + std::to_string(static_cast(relative_offset)) + ".off"; + const std::string output_name = generate_output_name(filename, relative_alpha, relative_offset); std::cout << "Writing to " << output_name << std::endl; CGAL::IO::write_polygon_mesh(output_name, wrap, CGAL::parameters::stream_precision(17)); diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/wrap_from_cavity.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/wrap_from_cavity.cpp index 1c1d6c7b3d72..970bb583484f 100644 --- a/Alpha_wrap_3/examples/Alpha_wrap_3/wrap_from_cavity.cpp +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/wrap_from_cavity.cpp @@ -1,3 +1,5 @@ +#include "output_helper.h" + #include #include @@ -25,13 +27,13 @@ int main(int argc, char** argv) if(!PMP::IO::read_polygon_mesh(filename, input) || is_empty(input) || !is_triangle_mesh(input)) { - std::cerr << "Invalid input." << std::endl; + std::cerr << "Invalid input:" << filename << std::endl; return EXIT_FAILURE; } std::cout << "Input: " << num_vertices(input) << " vertices, " << num_faces(input) << " faces" << std::endl; - const double relative_alpha = (argc > 2) ? std::stod(argv[2]) : 30.; + const double relative_alpha = (argc > 2) ? std::stod(argv[2]) : 40.; const double relative_offset = (argc > 3) ? std::stod(argv[3]) : 600.; // Compute the alpha and offset values diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h index 04b30cf76783..d6ca4fb356c3 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h @@ -49,7 +49,9 @@ #include #include #include -#include +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + #include +#endif #include #include #include @@ -92,6 +94,10 @@ struct Wrapping_default_visitor template void on_flood_fill_begin(const AlphaWrapper&) { } + // Whether the flood filling process should continue + template + constexpr bool go_further(const Wrapper&) { return true; } + template void before_facet_treatment(const AlphaWrapper&, const Gate&) { } @@ -110,7 +116,7 @@ struct Wrapping_default_visitor template -class Alpha_wrap_3 +class Alpha_wrapper_3 { using Oracle = Oracle_; @@ -120,22 +126,36 @@ class Alpha_wrap_3 using Default_Vb = Alpha_wrap_triangulation_vertex_base_3; using Default_Cb = Alpha_wrap_triangulation_cell_base_3; - using Default_Cbt = Cell_base_with_timestamp; // determinism + using Default_Cbt = Cell_base_with_timestamp; // for determinism using Default_Tds = CGAL::Triangulation_data_structure_3; using Default_Triangulation = CGAL::Delaunay_triangulation_3; +public: using Triangulation = typename Default::Get::type; + // Use the geom traits from the triangulation, and trust the (advanced) user that provided it + using Geom_traits = typename Triangulation::Geom_traits; + +private: using Cell_handle = typename Triangulation::Cell_handle; using Facet = typename Triangulation::Facet; using Vertex_handle = typename Triangulation::Vertex_handle; using Locate_type = typename Triangulation::Locate_type; using Gate = internal::Gate; - using Alpha_PQ = Modifiable_priority_queue, CGAL_BOOST_PAIRING_HEAP>; - // Use the geom traits from the triangulation, and trust the (advanced) user that provided it - using Geom_traits = typename Triangulation::Geom_traits; + // A sorted queue is a priority queue sorted by circumradius, and is experimentally significantly + // slower. However, intermediate results are usable: at each point of the algorithm, the wrap + // has a somewhat uniform mesh element size. + // + // An unsorted queue is a LIFO queue, and is experimentally much faster (~35%), + // but intermediate results are not useful: a LIFO carves deep before than wide, + // and can thus for example leave scaffolding faces till almost the end of the refinement. +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + using Alpha_PQ = Modifiable_priority_queue, CGAL_BOOST_PAIRING_HEAP>; +#else + using Alpha_PQ = std::stack; +#endif using FT = typename Geom_traits::FT; using Point_3 = typename Geom_traits::Point_3; @@ -149,33 +169,48 @@ class Alpha_wrap_3 using SC_Iso_cuboid_3 = SC::Iso_cuboid_3; using SC2GT = Cartesian_converter; + using Seeds = std::vector; protected: - const Oracle m_oracle; + Oracle m_oracle; SC_Iso_cuboid_3 m_bbox; - FT m_alpha, m_sq_alpha; - FT m_offset, m_sq_offset; + FT m_alpha = FT(-1), m_sq_alpha = FT(-1); + FT m_offset = FT(-1), m_sq_offset = FT(-1); + + Seeds m_seeds; Triangulation m_tr; + Alpha_PQ m_queue; public: - // Main constructor - Alpha_wrap_3(const Oracle& oracle) - : - m_oracle(oracle), - m_tr(Geom_traits(oracle.geom_traits())), - // used to set up the initial MPQ, use some arbitrary not-too-small value - m_queue(4096) + Alpha_wrapper_3() +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + // '4096' is an arbitrary, not-too-small value for the largest ID in queue initialization + : m_queue(4096) +#endif { // Due to the Steiner point computation being a dichotomy, the algorithm is inherently inexact // and passing exact kernels is explicitly disabled to ensure no misunderstanding. static_assert(std::is_floating_point::value); } + Alpha_wrapper_3(const Oracle& oracle) + : + m_oracle(oracle), + m_tr(Geom_traits(oracle.geom_traits())) +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + , m_queue(4096) +#endif + { + static_assert(std::is_floating_point::value); + } + public: const Geom_traits& geom_traits() const { return m_tr.geom_traits(); } + Oracle& oracle() { return m_oracle; } + const Oracle& oracle() const { return m_oracle; } Triangulation& triangulation() { return m_tr; } const Triangulation& triangulation() const { return m_tr; } const Alpha_PQ& queue() const { return m_queue; } @@ -222,26 +257,53 @@ class Alpha_wrap_3 using parameters::get_parameter_reference; using parameters::choose_parameter; + // using OVPM = typename CGAL::GetVertexPointMap::type; OVPM ovpm = choose_parameter(get_parameter(out_np, internal_np::vertex_point), get_property_map(vertex_point, output_mesh)); - typedef typename internal_np::Lookup_named_param_def < - internal_np::visitor_t, - InputNamedParameters, - Wrapping_default_visitor // default - >::reference Visitor; + // + using Visitor = typename internal_np::Lookup_named_param_def< + internal_np::visitor_t, + InputNamedParameters, + Wrapping_default_visitor // default + >::reference; Wrapping_default_visitor default_visitor; Visitor visitor = choose_parameter(get_parameter_reference(in_np, internal_np::visitor), default_visitor); - std::vector no_seeds; - using Seeds = typename internal_np::Lookup_named_param_def< - internal_np::seed_points_t, InputNamedParameters, std::vector >::reference; - Seeds seeds = choose_parameter(get_parameter_reference(in_np, internal_np::seed_points), no_seeds); + // Points used to create initial cavities + m_seeds = choose_parameter(get_parameter_reference(in_np, internal_np::seed_points), Seeds()); + // Whether or not some cells should be reflagged as "inside" after the refinement+carving loop + // as ended, as to ensure that the result is not only combinatorially manifold, but also + // geometrically manifold. + // + // -- Warning -- + // Manifoldness postprocessing will be performed even if the wrapping is interrupted (and + // this option is enabled). const bool do_enforce_manifoldness = choose_parameter(get_parameter(in_np, internal_np::do_enforce_manifoldness), true); + // Whether to keep pockets of "outside" cells that are not connected to the exterior (or to the + // initial cavities, if used). + // + // -- Warning -- + // Pockets of "outside" cells will be purged even if the wrapping is interrupted (and + // this option is enabled). + const bool keep_inner_ccs = choose_parameter(get_parameter(in_np, internal_np::keep_inner_connected_components), false); + + // This parameter enables avoiding recomputing the triangulation from scratch when wrapping + // the same input for multiple values of alpha (and typically the same offset values). + // + // -- Warning -- + // If this is enabled, the 3D triangulation will NOT be re-initialized at launch. + // This means that the triangulation is NOT cleared, even if: + // - you use an alpha value that is greater than what was used in a previous run; you will + // obtain the same result as the last run. + // - you use a different offset value between runs, you might then get points that are not + // on the offset surface corresponding to that corresponding to the latter offset value. + const bool refining = choose_parameter(get_parameter(in_np, internal_np::refine_triangulation), false); + #ifdef CGAL_AW3_TIMER CGAL::Real_timer t; t.start(); @@ -249,76 +311,59 @@ class Alpha_wrap_3 visitor.on_alpha_wrapping_begin(*this); - if(!initialize(alpha, offset, seeds)) + if(!initialize(alpha, offset, refining)) return; -#ifdef CGAL_AW3_DEBUG_DUMP_EVERY_STEP - extract_surface(output_mesh, ovpm, true /*tolerate non manifoldness*/); - CGAL::IO::write_polygon_mesh("initial_cavities.off", output_mesh, - CGAL::parameters::vertex_point_map(ovpm).stream_precision(17)); -#endif - - alpha_flood_fill(visitor); - #ifdef CGAL_AW3_TIMER t.stop(); - std::cout << "Flood filling took: " << t.time() << " s." << std::endl; + std::cout << "Initialization took: " << t.time() << " s." << std::endl; + t.reset(); + t.start(); #endif - if(do_enforce_manifoldness) - { -#ifdef CGAL_AW3_DEBUG_MANIFOLDNESS - std::cout << "> Make manifold..." << std::endl; - - extract_surface(output_mesh, ovpm, true /*tolerate non manifoldness*/); - -#ifdef CGAL_AW3_DEBUG_DUMP_EVERY_STEP - dump_triangulation_faces("intermediate_dt3.off", false /*only_boundary_faces*/); - IO::write_polygon_mesh("intermediate.off", output_mesh, - CGAL::parameters::vertex_point_map(ovpm).stream_precision(17)); +#ifdef CGAL_AW3_DEBUG_DUMP_INTERMEDIATE_WRAPS + dump_triangulation_faces("starting_wrap.off", true /*only_boundary_faces*/); #endif - FT base_vol = 0; - if(is_closed(output_mesh)) // might not be due to manifoldness - base_vol = PMP::volume(output_mesh, CGAL::parameters::vertex_point_map(ovpm)); - else - std::cerr << "Warning: couldn't compute volume before manifoldness fixes (mesh is not closed)" << std::endl; + alpha_flood_fill(visitor); + +#ifdef CGAL_AW3_DEBUG_DUMP_INTERMEDIATE_WRAPS + dump_triangulation_faces("flood_filled_wrap.off", true /*only_boundary_faces*/); #endif #ifdef CGAL_AW3_TIMER + t.stop(); + std::cout << "Flood filling took: " << t.time() << " s." << std::endl; t.reset(); t.start(); #endif + if(do_enforce_manifoldness) + { make_manifold(); +#ifdef CGAL_AW3_DEBUG_DUMP_INTERMEDIATE_WRAPS + dump_triangulation_faces("manifold_wrap.off", true /*only_boundary_faces*/); +#endif + #ifdef CGAL_AW3_TIMER t.stop(); - std::cout << "\nManifoldness post-processing took: " << t.time() << " s." << std::endl; + std::cout << "Manifoldness post-processing took: " << t.time() << " s." << std::endl; + t.reset(); + t.start(); #endif + } -#ifdef CGAL_AW3_DEBUG_MANIFOLDNESS - if(!is_zero(base_vol)) - { - extract_surface(output_mesh, ovpm, false /*do not tolerate non-manifoldness*/); - - const FT manifold_vol = PMP::volume(output_mesh, CGAL::parameters::vertex_point_map(ovpm)); - const FT ratio = manifold_vol / base_vol; - - std::cout << "Volumes post-manifoldness fix:\n" - << "before: " << base_vol << "\n" - << "after: " << manifold_vol << "\n" - << "ratio: " << ratio << std::endl; - if(ratio > 1.1) // more than 10% extra volume - std::cerr << "Warning: large increase of volume after manifoldness resolution" << std::endl; - } -#endif - } // do_enforce_manifoldness + if(!keep_inner_ccs) + { + // We could purge *before* manifold enforcement, but making the mesh manifold is + // very cheap in most cases, so it is better to keep the code simpler. + purge_inner_connected_components(); -#ifdef CGAL_AW3_TIMER - t.reset(); - t.start(); +#ifdef CGAL_AW3_DEBUG_DUMP_INTERMEDIATE_WRAPS + dump_triangulation_faces("purged_wrap.off", true /*only_boundary_faces*/); #endif + } extract_surface(output_mesh, ovpm, !do_enforce_manifoldness); @@ -331,9 +376,9 @@ class Alpha_wrap_3 std::cout << "Alpha wrap vertices: " << vertices(output_mesh).size() << std::endl; std::cout << "Alpha wrap faces: " << faces(output_mesh).size() << std::endl; - #ifdef CGAL_AW3_DEBUG_DUMP_EVERY_STEP - IO::write_polygon_mesh("final.off", output_mesh, CGAL::parameters::stream_precision(17)); - dump_triangulation_faces("final_dt3.off", false /*only_boundary_faces*/); + #ifdef CGAL_AW3_DEBUG_DUMP_INTERMEDIATE_WRAPS + IO::write_polygon_mesh("final_wrap.off", output_mesh, CGAL::parameters::stream_precision(17)); + dump_triangulation_faces("final_tr.off", false /*only_boundary_faces*/); #endif #endif @@ -382,6 +427,20 @@ class Alpha_wrap_3 return bbox; } +private: + // The distinction between inside boundary and outside boundary is the presence of cells + // being flagged for manifoldness: inside boundary considers those outside, and outside + // boundary considers them inside. + bool is_on_inside_boundary(Cell_handle ch, Cell_handle nh) const + { + return (ch->is_inside() != nh->is_inside()); // one is "inside", the other is not + } + + bool is_on_outside_boundary(Cell_handle ch, Cell_handle nh) const + { + return (ch->is_outside() != nh->is_outside()); // one is "outside", the other is not + } + private: // Adjust the bbox & insert its corners to construct the starting triangulation void insert_bbox_corners() @@ -409,20 +468,20 @@ class Alpha_wrap_3 // - Cells whose circumcenter is in the offset volume are inside: this is because // we need to have outside cell circumcenters outside of the volume to ensure // that the refinement point is separated from the existing point set. - bool cavity_cell_outside_tag(const Cell_handle ch) + Cell_label cavity_cell_label(const Cell_handle ch) { CGAL_precondition(!m_tr.is_infinite(ch)); const Tetrahedron_with_outside_info tet(ch, geom_traits()); if(m_oracle.do_intersect(tet)) - return false; + return Cell_label::INSIDE; const Point_3& ch_cc = circumcenter(ch); typename Geom_traits::Construct_ball_3 ball = geom_traits().construct_ball_3_object(); const Ball_3 ch_cc_offset_ball = ball(ch_cc, m_sq_offset); const bool is_cc_in_offset = m_oracle.do_intersect(ch_cc_offset_ball); - return !is_cc_in_offset; + return is_cc_in_offset ? Cell_label::INSIDE : Cell_label::OUTSIDE; } // Create a cavity using seeds rather than starting from the infinity. @@ -461,15 +520,14 @@ class Alpha_wrap_3 // // Another way is to simply make faces incident to the seed always traversable, and then // we only have to ensure faces opposite of the seed are traversable (i.e., radius ~= 1.65 * alpha) - template - bool initialize_with_cavities(const SeedRange& seeds) + bool initialize_with_cavities() { #ifdef CGAL_AW3_DEBUG_INITIALIZATION std::cout << "> Dig cavities" << std::endl; - std::cout << seeds.size() << " seed(s)" << std::endl; + std::cout << m_seeds.size() << " seed(s)" << std::endl; #endif - CGAL_precondition(!seeds.empty()); + CGAL_precondition(!m_seeds.empty()); // Get a double value approximating the scaling factors // std::cout << sqrt(3) * sin(2pi / 5) << std::endl; @@ -478,7 +536,7 @@ class Alpha_wrap_3 Iso_cuboid_3 bbox = SC2GT()(m_bbox); std::vector seed_vs; - for(const Point_3& seed_p : seeds) + for(const Point_3& seed_p : m_seeds) { #ifdef CGAL_AW3_DEBUG_INITIALIZATION std::cout << "Initialize from seed " << seed_p << std::endl; @@ -504,7 +562,7 @@ class Alpha_wrap_3 continue; } - // Mark the seeds and icosahedron vertices as "artificial vertices" such that the facets + // Mark the seeds and icosahedron vertices as "scaffolding" vertices such that the facets // incident to these vertices are always traversable regardless of their circumcenter. // This is done because otherwise some cavities can appear on the mesh: non-traversable facets // with two vertices on the offset, and the third being a deeper inside seed / ico_seed. @@ -573,17 +631,19 @@ class Alpha_wrap_3 std::vector inc_cells; inc_cells.reserve(64); m_tr.incident_cells(seed_v, std::back_inserter(inc_cells)); + for(Cell_handle ch : inc_cells) - ch->is_outside() = cavity_cell_outside_tag(ch); + ch->set_label(cavity_cell_label(ch)); } - // Might as well go through the full triangulation since only seeds should have been inserted + // Should be cheap enough to go through the full triangulation as only seeds have been inserted for(Cell_handle ch : m_tr.all_cell_handles()) { - if(!ch->is_outside()) + if(ch->is_inside()) continue; - // When the algorithm starts from a manually dug hole, infinite cells are tagged "inside" + // When the algorithm starts from a manually dug hole, infinite cells are initialized + // as "inside" such that they do not appear on the boundary CGAL_assertion(!m_tr.is_infinite(ch)); for(int i=0; i<4; ++i) @@ -601,7 +661,7 @@ class Alpha_wrap_3 return true; } - // tag all infinite cells OUTSIDE and all finite cells INSIDE + // tag all infinite cells "outside" and all finite cells "inside" // init queue with all convex hull facets bool initialize_from_infinity() { @@ -609,20 +669,52 @@ class Alpha_wrap_3 { if(m_tr.is_infinite(ch)) { - ch->is_outside() = true; + ch->set_label(Cell_label::OUTSIDE); const int inf_index = ch->index(m_tr.infinite_vertex()); push_facet(std::make_pair(ch, inf_index)); } else { - ch->is_outside() = false; + ch->set_label(Cell_label::INSIDE); } } return true; } -public: + void reset_manifold_labels() + { + // No erase counter increment, or it will mess up with a possibly non-empty queue. + for(Cell_handle ch : m_tr.all_cell_handles()) + if(ch->label() == Cell_label::MANIFOLD) + ch->set_label(Cell_label::OUTSIDE); + } + + // This function is used in the case of resumption of a previous run: m_tr is not cleared, + // and we fill the queue with the new parameters. + bool initialize_from_existing_triangulation() + { +#ifdef CGAL_AW3_DEBUG_INITIALIZATION + std::cout << "Restart from a DT of " << m_tr.number_of_cells() << " cells" << std::endl; +#endif + + for(Cell_handle ch : m_tr.all_cell_handles()) + { + if(ch->is_inside()) + continue; + + for(int i=0; i<4; ++i) + { + if(ch->neighbor(i)->is_inside()) + push_facet(std::make_pair(ch, i)); + + } + } + + return true; + } + +private: // Manifoldness is tolerated while debugging and extracting at intermediate states // Not the preferred way because it uses 3*nv storage template @@ -662,7 +754,6 @@ class Alpha_wrap_3 if(cell->tds_data().processed()) continue; - cell->tds_data().mark_processed(); for(int fid=0; fid<4; ++fid) @@ -689,8 +780,6 @@ class Alpha_wrap_3 } } - PMP::duplicate_non_manifold_edges_in_polygon_soup(points, faces); - CGAL_assertion(PMP::is_polygon_soup_a_polygon_mesh(faces)); PMP::polygon_soup_to_polygon_mesh(points, faces, output_mesh, CGAL::parameters::default_values(), @@ -708,6 +797,8 @@ class Alpha_wrap_3 CGAL_postcondition(is_closed(output_mesh)); PMP::orient_to_bound_a_volume(output_mesh, CGAL::parameters::vertex_point_map(ovpm)); + + collect_garbage(output_mesh); } template @@ -717,7 +808,7 @@ class Alpha_wrap_3 namespace PMP = Polygon_mesh_processing; #ifdef CGAL_AW3_DEBUG - std::cout << "> Extract wrap... ()" << std::endl; + std::cout << "> Extract manifold wrap... ()" << std::endl; #endif CGAL_assertion_code(for(Vertex_handle v : m_tr.finite_vertex_handles())) @@ -725,35 +816,30 @@ class Alpha_wrap_3 clear(output_mesh); - // boundary faces to polygon soup std::vector points; std::vector > faces; std::unordered_map vertex_to_id; - std::size_t nv = 0; - for(auto fit=m_tr.finite_facets_begin(), fend=m_tr.finite_facets_end(); fit!=fend; ++fit) + for(auto fit=m_tr.all_facets_begin(), fend=m_tr.all_facets_end(); fit!=fend; ++fit) { Facet f = *fit; if(!f.first->is_outside()) f = m_tr.mirror_facet(f); - const Cell_handle c = f.first; + const Cell_handle ch = f.first; const int s = f.second; - const Cell_handle nh = c->neighbor(s); - if(c->is_outside() == nh->is_outside()) + const Cell_handle nh = ch->neighbor(s); + if(!is_on_outside_boundary(ch, nh)) continue; std::array ids; for(int pos=0; pos<3; ++pos) { - Vertex_handle vh = c->vertex(Triangulation::vertex_triple_index(s, pos)); - auto insertion_res = vertex_to_id.emplace(vh, nv); + Vertex_handle vh = ch->vertex(Triangulation::vertex_triple_index(s, pos)); + auto insertion_res = vertex_to_id.emplace(vh, vertex_to_id.size()); if(insertion_res.second) // successful insertion, never-seen-before vertex - { points.push_back(m_tr.point(vh)); - ++nv; - } ids[pos] = insertion_res.first->second; } @@ -761,12 +847,22 @@ class Alpha_wrap_3 faces.emplace_back(std::array{ids[0], ids[1], ids[2]}); } +#ifdef CGAL_AW3_DEBUG + std::cout << "\t" << points.size() << " points" << std::endl; + std::cout << "\t" << faces.size() << " faces" << std::endl; +#endif + if(faces.empty()) + { +#ifdef CGAL_AW3_DEBUG + std::cerr << "Warning: empty wrap?..." << std::endl; +#endif return; + } if(!PMP::is_polygon_soup_a_polygon_mesh(faces)) { - CGAL_warning_msg(false, "Could NOT extract mesh..."); + CGAL_warning_msg(false, "Failed to extract a manifold boundary!"); return; } @@ -777,10 +873,12 @@ class Alpha_wrap_3 CGAL_postcondition(!is_empty(output_mesh)); CGAL_postcondition(is_valid_polygon_mesh(output_mesh)); CGAL_postcondition(is_closed(output_mesh)); + CGAL_postcondition(PMP::does_bound_a_volume(output_mesh, CGAL::parameters::vertex_point_map(ovpm))); PMP::orient_to_bound_a_volume(output_mesh, CGAL::parameters::vertex_point_map(ovpm)); } +public: template void extract_surface(OutputMesh& output_mesh, OVPM ovpm, @@ -886,43 +984,76 @@ class Alpha_wrap_3 } private: - enum Facet_queue_status + // A permissive gate is a gate that we can traverse without checking its circumradius + enum class Facet_status { IRRELEVANT = 0, - ARTIFICIAL_FACET, + HAS_INFINITE_NEIGHBOR, // the cell incident to the mirrored facet is infinite (permissive) + SCAFFOLDING, // incident to a SEED or BBOX vertex (permissive) TRAVERSABLE }; + inline const char* get_status_message(const Facet_status status) + { + constexpr std::size_t status_count = 4; + + // Messages corresponding to Error_code list above. Must be kept in sync! + static const char* message[status_count] = { + "Irrelevant facet", + "Facet incident to infinite neighbor", + "Facet with a bbox/seed vertex", + "Traversable facet" + }; + + const std::size_t status_id = static_cast(status); + if(status_id > status_count || status_id < 0) + return "Unknown status"; + else + return message[status_id]; + } + +public: // @speed some decent time may be spent constructing Facet (pairs) for no reason as it's always // just to grab the .first and .second as soon as it's constructed, and not due to API requirements - // e.g. from DT3 - Facet_queue_status facet_status(const Facet& f) const + Facet_status facet_status(const Facet& f) const { CGAL_precondition(!m_tr.is_infinite(f)); #ifdef CGAL_AW3_DEBUG_FACET_STATUS std::cout << "facet status: " - << f.first->vertex((f.second + 1)&3)->point() << " " - << f.first->vertex((f.second + 2)&3)->point() << " " - << f.first->vertex((f.second + 3)&3)->point() << std::endl; + << m_tr.point(f.first, Triangulation::vertex_triple_index(f.second, 0)) << " " + << m_tr.point(f.first, Triangulation::vertex_triple_index(f.second, 1)) << " " + << m_tr.point(f.first, Triangulation::vertex_triple_index(f.second, 2)) << std::endl; #endif - // skip if neighbor is OUTSIDE or infinite + // skip if neighbor is "outside" or infinite const Cell_handle ch = f.first; const int id = f.second; + CGAL_precondition(ch->label() == Cell_label::INSIDE || ch->label() == Cell_label::OUTSIDE); + + if(!ch->is_outside()) // "inside" or "manifold" + { +#ifdef CGAL_AW3_DEBUG_FACET_STATUS + std::cout << "Facet is inside" << std::endl; +#endif + return Facet_status::IRRELEVANT; + } + const Cell_handle nh = ch->neighbor(id); + CGAL_precondition(ch->label() == Cell_label::INSIDE || ch->label() == Cell_label::OUTSIDE); + if(m_tr.is_infinite(nh)) - return TRAVERSABLE; + return Facet_status::HAS_INFINITE_NEIGHBOR; if(nh->is_outside()) { #ifdef CGAL_AW3_DEBUG_FACET_STATUS std::cout << "Neighbor already outside" << std::endl; #endif - return IRRELEVANT; + return Facet_status::IRRELEVANT; } - // push if facet is connected to artificial vertices + // push if facet is connected to scaffolding vertices for(int i=0; i<3; ++i) { const Vertex_handle vh = ch->vertex(Triangulation::vertex_triple_index(id, i)); @@ -930,9 +1061,9 @@ class Alpha_wrap_3 vh->type() == AW3i::Vertex_type:: SEED_VERTEX) { #ifdef CGAL_AW3_DEBUG_FACET_STATUS - std::cout << "artificial facet due to artificial vertex #" << i << std::endl; + std::cout << "Scaffolding facet due to vertex #" << i << std::endl; #endif - return ARTIFICIAL_FACET; + return Facet_status::SCAFFOLDING; } } @@ -942,78 +1073,143 @@ class Alpha_wrap_3 #ifdef CGAL_AW3_DEBUG_FACET_STATUS std::cout << "traversable" << std::endl; #endif - return TRAVERSABLE; + return Facet_status::TRAVERSABLE; } #ifdef CGAL_AW3_DEBUG_FACET_STATUS std::cout << "not traversable" << std::endl; #endif - return IRRELEVANT; + return Facet_status::IRRELEVANT; } +private: bool push_facet(const Facet& f) { CGAL_precondition(f.first->is_outside()); +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE // skip if f is already in queue if(m_queue.contains_with_bounds_check(Gate(f))) return false; +#endif - const Facet_queue_status s = facet_status(f); - if(s == IRRELEVANT) + // @todo could avoid useless facet_status() calls by doing it after the zombie check + // for the unsorted priority queue, but AFAIR, it doesn't save noticeable time (and that + // increases the queue size). + const Facet_status status = facet_status(f); + if(status == Facet_status::IRRELEVANT) return false; - const Cell_handle ch = f.first; - const int id = f.second; - const Point_3& p0 = m_tr.point(ch, (id+1)&3); - const Point_3& p1 = m_tr.point(ch, (id+2)&3); - const Point_3& p2 = m_tr.point(ch, (id+3)&3); +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + const FT sqr = smallest_squared_radius_3(f, m_tr); + const bool is_permissive = (status == Facet_status::HAS_INFINITE_NEIGHBOR || + status == Facet_status::SCAFFOLDING); + m_queue.resize_and_push(Gate(f, sqr, is_permissive)); +#else + m_queue.push(Gate(f, m_tr)); +#endif - // @todo should prob be the real value we compare to alpha instead of squared_radius - const FT sqr = geom_traits().compute_squared_radius_3_object()(p0, p1, p2); - m_queue.resize_and_push(Gate(f, sqr, (s == ARTIFICIAL_FACET))); +#ifdef CGAL_AW3_DEBUG_QUEUE + const Cell_handle ch = f.first; + const int s = f.second; + const Point_3& p0 = m_tr.point(ch, Triangulation::vertex_triple_index(s, 0)); + const Point_3& p1 = m_tr.point(ch, Triangulation::vertex_triple_index(s, 1)); + const Point_3& p2 = m_tr.point(ch, Triangulation::vertex_triple_index(s, 2)); + + static int gid = 0; + std::cout << "Queue insertion #" << gid++ << "\n" + << " ch = " << &*ch << " (" << m_tr.is_infinite(ch) << ") " << "\n" + << "\t" << p0 << "\n\t" << p1 << "\n\t" << p2 << std::endl; + std::cout << " Status: " << get_status_message(status) << std::endl; + #ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + std::cout << " SQR: " << sqr << std::endl; + std::cout << " Permissiveness: " << is_permissive << std::endl; + + CGAL_assertion(is_permissive || sqr >= m_sq_alpha); + #endif // CGAL_AW3_USE_SORTED_PRIORITY_QUEUE +#endif // CGAL_AW3_DEBUG_QUEUE return true; } private: - template bool initialize(const double alpha, const double offset, - const SeedRange& seeds) + const bool refining) { #ifdef CGAL_AW3_DEBUG std::cout << "> Initialize..." << std::endl; - std::cout << "Alpha: " << alpha << std::endl; - std::cout << "Offset: " << offset << std::endl; +#endif + + const bool resuming = refining && (alpha == m_alpha) && (offset == m_offset); + +#ifdef CGAL_AW3_DEBUG + std::cout << "\tAlpha: " << alpha << std::endl; + std::cout << "\tOffset: " << offset << std::endl; + std::cout << "\tRefining? " << refining << std::endl; + std::cout << "\tResuming? " << resuming << std::endl; #endif if(!is_positive(alpha) || !is_positive(offset)) { #ifdef CGAL_AW3_DEBUG - std::cout << "Error: invalid input parameters" << std::endl; + std::cerr << "Error: invalid input parameters: " << alpha << " and" << offset << std::endl; #endif return false; } + if(refining && alpha > m_alpha) + std::cerr << "Warning: refining with an alpha greater than the last iteration's!" << std::endl; + if(refining && offset != m_offset) + std::cerr << "Warning: refining with a different offset value!" << std::endl; + m_alpha = FT(alpha); m_sq_alpha = square(m_alpha); m_offset = FT(offset); m_sq_offset = square(m_offset); - m_tr.clear(); + // Resuming means that we do not need to re-initialize the queue: either we have finished + // and there is nothing to do, or the interruption was due to a user callback in the visitor, + // and we can resume with the current queue + if(resuming) + { +#ifdef CGAL_AW3_DEBUG + std::cout << "Resuming with a queue of size: " << m_queue.size() << std::endl; +#endif + + reset_manifold_labels(); + return true; + } + +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE m_queue.clear(); +#else + m_queue = { }; +#endif - insert_bbox_corners(); + if(refining) + { + // If we are re-using the triangulation, change the label of the extra elements + // that we have added to ensure a manifold result back to external ("manifold" -> "outside") + reset_manifold_labels(); - if(seeds.empty()) - return initialize_from_infinity(); + return initialize_from_existing_triangulation(); + } else - return initialize_with_cavities(seeds); + { + m_tr.clear(); + + insert_bbox_corners(); + + if(m_seeds.empty()) + return initialize_from_infinity(); + else + return initialize_with_cavities(); + } } template - void alpha_flood_fill(Visitor& visitor) + bool alpha_flood_fill(Visitor& visitor) { #ifdef CGAL_AW3_DEBUG std::cout << "> Flood fill..." << std::endl; @@ -1024,33 +1220,47 @@ class Alpha_wrap_3 // Explore all finite cells that are reachable from one of the initial outside cells. while(!m_queue.empty()) { + if(!visitor.go_further(*this)) + return false; + #ifdef CGAL_AW3_DEBUG_QUEUE_PP check_queue_sanity(); #endif // const& to something that will be popped, but safe as `ch` && `id` are extracted before the pop const Gate& gate = m_queue.top(); + +#ifndef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + if(gate.is_zombie()) + { + m_queue.pop(); + continue; + } +#endif + const Facet& f = gate.facet(); CGAL_precondition(!m_tr.is_infinite(f)); const Cell_handle ch = f.first; - const int id = f.second; - const Cell_handle neighbor = ch->neighbor(id); + const int s = f.second; + CGAL_precondition(ch->is_outside()); + + const Cell_handle nh = ch->neighbor(s); + CGAL_precondition(nh->label() == Cell_label::INSIDE || nh->label() == Cell_label::OUTSIDE); #ifdef CGAL_AW3_DEBUG_QUEUE static int fid = 0; std::cout << m_tr.number_of_vertices() << " DT vertices" << std::endl; std::cout << m_queue.size() << " facets in the queue" << std::endl; std::cout << "Face " << fid++ << "\n" - << "c = " << &*ch << " (" << m_tr.is_infinite(ch) << "), n = " << &*neighbor << " (" << m_tr.is_infinite(neighbor) << ")" << "\n" - << m_tr.point(ch, (id+1)&3) << "\n" << m_tr.point(ch, (id+2)&3) << "\n" << m_tr.point(ch, (id+3)&3) << std::endl; - std::cout << "Priority: " << gate.priority() << std::endl; + << "c = " << &*ch << " (" << m_tr.is_infinite(ch) << "), n = " << &*nh << " (" << m_tr.is_infinite(nh) << ")" << "\n" + << m_tr.point(ch, Triangulation::vertex_triple_index(s, 0)) << "\n" + << m_tr.point(ch, Triangulation::vertex_triple_index(s, 1)) << "\n" + << m_tr.point(ch, Triangulation::vertex_triple_index(s, 2)) << std::endl; + std::cout << "Priority: " << gate.priority() << " (sq alpha: " << m_sq_alpha << ")" << std::endl; + std::cout << "Permissiveness: " << gate.is_permissive_facet() << std::endl; #endif - visitor.before_facet_treatment(*this, gate); - - m_queue.pop(); - #ifdef CGAL_AW3_DEBUG_DUMP_EVERY_STEP static int i = 0; std::string step_name = "results/steps/step_" + std::to_string(static_cast(i)) + ".off"; @@ -1059,18 +1269,27 @@ class Alpha_wrap_3 std::string face_name = "results/steps/face_" + std::to_string(static_cast(i++)) + ".xyz"; std::ofstream face_out(face_name); face_out.precision(17); - face_out << "3\n" << m_tr.point(ch, (id+1)&3) << "\n" << m_tr.point(ch, (id+2)&3) << "\n" << m_tr.point(ch, (id+3)&3) << std::endl; + face_out << "3\n" << m_tr.point(ch, Triangulation::vertex_triple_index(s, 0)) << "\n" + << m_tr.point(ch, Triangulation::vertex_triple_index(s, 1)) << "\n" + << m_tr.point(ch, Triangulation::vertex_triple_index(s, 2)) << std::endl; face_out.close(); #endif - if(m_tr.is_infinite(neighbor)) + visitor.before_facet_treatment(*this, gate); + + m_queue.pop(); + + if(m_tr.is_infinite(nh)) { - neighbor->is_outside() = true; + nh->set_label(Cell_label::OUTSIDE); +#ifndef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + nh->increment_erase_counter(); +#endif continue; } Point_3 steiner_point; - if(compute_steiner_point(ch, neighbor, steiner_point)) + if(compute_steiner_point(ch, nh, steiner_point)) { // std::cout << CGAL::abs(CGAL::approximate_sqrt(m_oracle.squared_distance(steiner_point)) - m_offset) // << " vs " << 1e-2 * m_offset << std::endl; @@ -1079,7 +1298,7 @@ class Alpha_wrap_3 // locate cells that are going to be destroyed and remove their facet from the queue int li, lj = 0; Locate_type lt; - const Cell_handle conflict_cell = m_tr.locate(steiner_point, lt, li, lj, neighbor); + const Cell_handle conflict_cell = m_tr.locate(steiner_point, lt, li, lj, nh); CGAL_assertion(lt != Triangulation::VERTEX); // Using small vectors like in Triangulation_3 does not bring any runtime improvement @@ -1092,6 +1311,7 @@ class Alpha_wrap_3 std::back_inserter(boundary_facets), std::back_inserter(conflict_zone)); +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE // Purge the queue of facets that will be deleted/modified by the Steiner point insertion, // and which might have been gates for(const Cell_handle& cch : conflict_zone) @@ -1110,6 +1330,7 @@ class Alpha_wrap_3 if(m_queue.contains_with_bounds_check(Gate(mf))) m_queue.erase(Gate(mf)); } +#endif visitor.before_Steiner_point_insertion(*this, steiner_point); @@ -1124,10 +1345,10 @@ class Alpha_wrap_3 std::vector new_cells; new_cells.reserve(32); m_tr.incident_cells(vh, std::back_inserter(new_cells)); - for(const Cell_handle& ch : new_cells) + for(const Cell_handle& new_ch : new_cells) { - // std::cout << "new cell has time stamp " << ch->time_stamp() << std::endl; - ch->is_outside() = m_tr.is_infinite(ch); + // std::cout << "new cell has time stamp " << new_ch->time_stamp() << std::endl; + new_ch->set_label(m_tr.is_infinite(new_ch) ? Cell_label::OUTSIDE : Cell_label::INSIDE); } // Push all new boundary facets to the queue. @@ -1135,34 +1356,37 @@ class Alpha_wrap_3 // because we need to handle internal facets, infinite facets, and also more subtle changes // such as a new cell being marked inside which now creates a boundary // with its incident "outside" flagged cell. - for(Cell_handle ch : new_cells) + for(Cell_handle new_ch : new_cells) { for(int i=0; i<4; ++i) { - if(m_tr.is_infinite(ch, i)) + if(m_tr.is_infinite(new_ch, i)) continue; - const Cell_handle nh = ch->neighbor(i); - if(nh->is_outside() == ch->is_outside()) // not on the boundary + const Cell_handle new_nh = new_ch->neighbor(i); + if(new_nh->label() == new_ch->label()) // not on a boundary continue; - const Facet boundary_f = std::make_pair(ch, i); - if(ch->is_outside()) + const Facet boundary_f = std::make_pair(new_ch, i); + if(new_ch->is_outside()) push_facet(boundary_f); else push_facet(m_tr.mirror_facet(boundary_f)); } } } - else + else // no need for a Steiner point, carve through and continue { - // tag neighbor as OUTSIDE - neighbor->is_outside() = true; + nh->set_label(Cell_label::OUTSIDE); +#ifndef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + nh->increment_erase_counter(); +#endif // for each finite facet of neighbor, push it to the queue - for(int i=0; i<4; ++i) + const int mi = m_tr.mirror_index(ch, s); + for(int i=1; i<4; ++i) { - const Facet neighbor_f = std::make_pair(neighbor, i); + const Facet neighbor_f = std::make_pair(nh, (mi+i)&3); push_facet(neighbor_f); } } @@ -1172,11 +1396,103 @@ class Alpha_wrap_3 // Check that no useful facet has been ignored CGAL_postcondition_code(for(auto fit=m_tr.finite_facets_begin(), fend=m_tr.finite_facets_end(); fit!=fend; ++fit) {) - CGAL_postcondition_code( if(fit->first->is_outside() == fit->first->neighbor(fit->second)->is_outside()) continue;) + CGAL_postcondition_code( Cell_handle ch = fit->first; Cell_handle nh = fit->first->neighbor(fit->second); ) + CGAL_postcondition_code( if(ch->label() == nh->label()) continue;) CGAL_postcondition_code( Facet f = *fit;) - CGAL_postcondition_code( if(!fit->first->is_outside()) f = m_tr.mirror_facet(f);) - CGAL_postcondition( facet_status(f) == IRRELEVANT); + CGAL_postcondition_code( if(ch->is_inside()) f = m_tr.mirror_facet(f);) + CGAL_postcondition( facet_status(f) == Facet_status::IRRELEVANT); CGAL_postcondition_code(}) + + return true; + } + + // Any outside cell that isn't reachable from infinity is a cavity that can be discarded. + std::size_t purge_inner_connected_components() + { +#ifdef CGAL_AW3_DEBUG + std::cout << "> Purge inner islands..." << std::endl; + + std::size_t pre_counter = 0; + for(Cell_handle ch : m_tr.all_cell_handles()) + if(ch->is_outside()) + ++pre_counter; + std::cout << pre_counter << " / " << m_tr.all_cell_handles().size() << " (pre purge)" << std::endl; +#endif + + std::size_t label_change_counter = 0; + + std::stack cells_to_visit; + + if(!m_seeds.empty()) + { + for(const Point_3& seed : m_seeds) + { + Locate_type lt; + int li, lj; + Cell_handle ch = m_tr.locate(seed, lt, li, lj); + + if(!ch->is_outside()) + { + std::cerr << "Warning: cell containing seed is not outside?!" << std::endl; + continue; + } + + cells_to_visit.push(ch); + } + } + else // typical flooding from outside + { + cells_to_visit.push(m_tr.infinite_vertex()->cell()); + } + + while(!cells_to_visit.empty()) + { + Cell_handle curr_c = cells_to_visit.top(); + cells_to_visit.pop(); + + CGAL_assertion(curr_c->is_outside()); + + if(curr_c->tds_data().processed()) + continue; + curr_c->tds_data().mark_processed(); + + for(int j=0; j<4; ++j) + { + Cell_handle neigh_c = curr_c->neighbor(j); + if(neigh_c->tds_data().processed() || !neigh_c->is_outside()) + continue; + + cells_to_visit.push(neigh_c); + } + } + + for(Cell_handle ch : m_tr.all_cell_handles()) + { + if(ch->tds_data().is_clear() && ch->is_outside()) + { + ch->set_label(Cell_label::INSIDE); +#ifndef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + ch->increment_erase_counter(); +#endif + ++label_change_counter; + } + } + + // reset the conflict flags + for(Cell_handle ch : m_tr.all_cell_handles()) + ch->tds_data().clear(); + +#ifdef CGAL_AW3_DEBUG + std::size_t post_counter = 0; + for(Cell_handle ch : m_tr.all_cell_handles()) + if(ch->is_outside()) + ++post_counter; + std::cout << post_counter << " / " << m_tr.all_cell_handles().size() << " (pre purge)" << std::endl; + + std::cout << label_change_counter << " label changes" << std::endl; +#endif + + return label_change_counter; } private: @@ -1190,7 +1506,7 @@ class Alpha_wrap_3 inc_cells.reserve(64); m_tr.incident_cells(v, std::back_inserter(inc_cells)); - // Flood one inside and outside CC. + // Flood one inside and outside CC within the cell umbrella of the vertex. // Process both an inside and an outside CC to also detect edge pinching. // If there are still unprocessed afterwards, there is a non-manifoldness issue. // @@ -1204,7 +1520,7 @@ class Alpha_wrap_3 if(ic->is_outside()) outside_start = ic; else if(inside_start == Cell_handle()) - inside_start = ic; + inside_start = ic; // can be "inside" or "manifold" } // fully inside / outside @@ -1236,8 +1552,10 @@ class Alpha_wrap_3 CGAL_assertion(neigh_c->has_vertex(v)); if(neigh_c->tds_data().processed() || - neigh_c->is_outside() != curr_c->is_outside()) // do not cross the boundary + is_on_outside_boundary(neigh_c, curr_c)) // do not cross the boundary + { continue; + } cells_to_visit.push(neigh_c); } @@ -1330,22 +1648,47 @@ class Alpha_wrap_3 // Not the best complexity, but it's very cheap compared to the rest of the algorithm. void make_manifold() { - namespace PMP = Polygon_mesh_processing; +#ifdef CGAL_AW3_DEBUG + std::cout << "> Make manifold..." << std::endl; + + auto wrap_volume = [&]() + { + FT vol = 0; + for(Cell_handle ch : m_tr.finite_cell_handles()) + if(!ch->is_outside()) + vol += volume(m_tr.point(ch, 0), m_tr.point(ch, 1), m_tr.point(ch, 2), m_tr.point(ch, 3)); + + return vol; + }; + + #ifdef CGAL_AW3_DEBUG_DUMP_INTERMEDIATE_WRAPS + dump_triangulation_faces("carved_tr.off", true /*only_boundary_faces*/); + #endif - // This seems more harmful than useful after the priority queue has been introduced since - // it adds a lot of flat cells into the triangulation, which then get added to the mesh - // during manifoldness fixing. + FT base_vol = wrap_volume(); + if(!is_positive(base_vol)) + std::cerr << "Warning: wrap with non-positive volume?" << std::endl; +#endif + + // This ends up more harmful than useful after the priority queue has been introduced since + // it usually results in a lot of flat cells into the triangulation, which then get added + // to the mesh during manifoldness fixing. // remove_bbox_vertices(); std::stack non_manifold_vertices; // @todo sort somehow? for(Vertex_handle v : m_tr.finite_vertex_handles()) { if(is_non_manifold(v)) + { +#ifdef CGAL_AW3_DEBUG_MANIFOLDNESS_PP + std::cout << v->point() << " is non-manifold" << std::endl; +#endif non_manifold_vertices.push(v); + } } // Some lambdas for the comparer - auto has_artificial_vertex = [](Cell_handle c) -> bool + auto has_scaffolding_vertex = [](Cell_handle c) -> bool { for(int i=0; i<4; ++i) { @@ -1359,79 +1702,77 @@ class Alpha_wrap_3 return false; }; - auto is_on_boundary = [](Cell_handle c, int i) -> bool - { - return (c->is_outside() != c->neighbor(i)->is_outside()); - }; - - auto count_boundary_facets = [&](Cell_handle c, Vertex_handle v) -> int - { - const int v_index_in_c = c->index(v); - int boundary_facets = 0; - for(int i=0; i<3; ++i) // also take into account the opposite facet? - { - if(i == v_index_in_c) - continue; - - boundary_facets += is_on_boundary(c, i); - } - - return boundary_facets; - }; + // This originally seemed like a good idea, but in the end it can have strong cascading issues, + // whereas some cells with much smaller volume could have solved the non-manifoldness. +// auto is_on_boundary = [](Cell_handle c, int i) -> bool +// { +// return is_on_outside_boundary(c, c->neighbor(i)); +// }; +// +// auto count_boundary_facets = [&](Cell_handle c, Vertex_handle v) -> int +// { +// const int v_index_in_c = c->index(v); +// int boundary_facets = 0; +// for(int i=0; i<3; ++i) // also take into account the opposite facet? +// { +// if(i == v_index_in_c) +// continue; +// +// boundary_facets += is_on_boundary(c, i); +// } +// +// return boundary_facets; +// }; - // longest edge works better + // Experimentally, longest edge works better // auto sq_circumradius = [&](Cell_handle c) -> FT // { // const Point_3& cc = circumcenter(c); // return geom_traits().compute_squared_distance_3_object()(m_tr.point(c, 0), cc); // }; + // The reasoning behind using longest edge rather than volume is that we want to avoid + // spikes (which would have a small volume), and can often happen since we do not spend + // any care on the quality of tetrahedra. auto sq_longest_edge = [&](Cell_handle c) -> FT { return (std::max)({ squared_distance(m_tr.point(c, 0), m_tr.point(c, 1)), squared_distance(m_tr.point(c, 0), m_tr.point(c, 2)), squared_distance(m_tr.point(c, 0), m_tr.point(c, 3)), squared_distance(m_tr.point(c, 1), m_tr.point(c, 2)), - squared_distance(m_tr.point(c, 3), m_tr.point(c, 3)), + squared_distance(m_tr.point(c, 1), m_tr.point(c, 3)), squared_distance(m_tr.point(c, 2), m_tr.point(c, 3)) }); }; -#ifdef CGAL_AW3_DEBUG_MANIFOLDNESS +#ifdef CGAL_AW3_DEBUG_MANIFOLDNESS_PP std::cout << non_manifold_vertices.size() << " initial NMV" << std::endl; #endif while(!non_manifold_vertices.empty()) { -#ifdef CGAL_AW3_DEBUG_MANIFOLDNESS +#ifdef CGAL_AW3_DEBUG_MANIFOLDNESS_PP std::cout << non_manifold_vertices.size() << " NMV in queue" << std::endl; #endif Vertex_handle v = non_manifold_vertices.top(); non_manifold_vertices.pop(); -#ifdef CGAL_AW3_DEBUG_MANIFOLDNESS - std::cout << "·"; -#endif - if(!is_non_manifold(v)) continue; // Prioritize: // - cells without bbox vertices - // - cells that already have a large number of boundary facets // - small cells when equal number of boundary facets - // @todo give topmost priority to cells with > 1 non-manifold vertex? + // + // Note that these are properties that do not depend on the cell labels, and so we only need + // to sort once. However, if a criterion such as the number of incident inside cells were added, + // we would need to sort after each modification of "inside"/"outside" labels. auto comparer = [&](Cell_handle l, Cell_handle r) -> bool { - if(has_artificial_vertex(l)) - return false; - if(has_artificial_vertex(r)) - return true; + CGAL_precondition(!m_tr.is_infinite(l) && !m_tr.is_infinite(r)); - const int l_bf_count = count_boundary_facets(l, v); - const int r_bf_count = count_boundary_facets(r, v); - if(l_bf_count != r_bf_count) - return l_bf_count > r_bf_count; + if(has_scaffolding_vertex(l) != has_scaffolding_vertex(r)) + return has_scaffolding_vertex(r); return sq_longest_edge(l) < sq_longest_edge(r); }; @@ -1440,22 +1781,22 @@ class Alpha_wrap_3 inc_cells.reserve(64); m_tr.finite_incident_cells(v, std::back_inserter(inc_cells)); -#define CGAL_AW3_USE_BRUTE_FORCE_MUTABLE_PRIORITY_QUEUE -#ifndef CGAL_AW3_USE_BRUTE_FORCE_MUTABLE_PRIORITY_QUEUE - std::sort(inc_cells.begin(), inc_cells.end(), comparer); // sort once -#endif + std::vector finite_outside_inc_cells; + finite_outside_inc_cells.reserve(64); + std::copy_if(inc_cells.begin(), inc_cells.end(), std::back_inserter(finite_outside_inc_cells), + [&](Cell_handle c) -> bool { return !m_tr.is_infinite(c) && c->is_outside(); }); - for(auto cit=inc_cells.begin(), cend=inc_cells.end(); cit!=cend; ++cit) + // 'std::stable_sort' to have determinism without having to write something like: + // if(longest_edge(l) == longest_edge(r)) return ... + // in the comparer. It's almost always a small range, so the extra cost does not matter. + std::stable_sort(finite_outside_inc_cells.begin(), finite_outside_inc_cells.end(), comparer); + + for(Cell_handle ic : finite_outside_inc_cells) { -#ifdef CGAL_AW3_USE_BRUTE_FORCE_MUTABLE_PRIORITY_QUEUE - // sort at every iteration since the number of boundary facets evolves - std::sort(cit, cend, comparer); -#endif - Cell_handle ic = *cit; - CGAL_assertion(!m_tr.is_infinite(ic)); + CGAL_assertion(!m_tr.is_infinite(ic) && ic->is_outside()); // This is where new material is added - ic->is_outside() = false; + ic->set_label(Cell_label::MANIFOLD); #ifdef CGAL_AW3_DEBUG_DUMP_EVERY_STEP static int i = 0; @@ -1470,6 +1811,8 @@ class Alpha_wrap_3 CGAL_assertion(!is_non_manifold(v)); + // Check if the new material has not created a non-manifold configuration. + // @speed this could be done on only the vertices of cells whose labels have changed. std::vector adj_vertices; adj_vertices.reserve(64); m_tr.finite_adjacent_vertices(v, std::back_inserter(adj_vertices)); @@ -1481,12 +1824,34 @@ class Alpha_wrap_3 CGAL_assertion_code(for(Vertex_handle v : m_tr.finite_vertex_handles())) CGAL_assertion(!is_non_manifold(v)); + +#ifdef CGAL_AW3_DEBUG + std::size_t nm_cells_counter = 0; + for(Cell_handle ch : m_tr.all_cell_handles()) + if(ch->label() == Cell_label::MANIFOLD) + ++nm_cells_counter; + std::cout << "Number of added cells: " << nm_cells_counter << std::endl; + + if(!is_zero(base_vol)) + { + const FT manifold_vol = wrap_volume(); + const FT ratio = manifold_vol / base_vol; + + std::cout << "Volumes post-manifoldness fix:\n" + << "before: " << base_vol << "\n" + << "after: " << manifold_vol << "\n" + << "ratio: " << ratio << std::endl; + if(ratio > 1.1) // more than 10% extra volume + std::cerr << "Warning: large increase of volume after manifoldness resolution" << std::endl; + } +#endif } private: void check_queue_sanity() { - std::cout << "Check queue sanity..." << std::endl; + std::cout << "\t~~~ Check queue sanity ~~~" << std::endl; + std::vector queue_gates; Gate previous_top_gate = m_queue.top(); while(!m_queue.empty()) @@ -1496,24 +1861,31 @@ class Alpha_wrap_3 const Facet& current_f = current_gate.facet(); const Cell_handle ch = current_f.first; const int id = current_f.second; - const Point_3& p0 = m_tr.point(ch, (id+1)&3); - const Point_3& p1 = m_tr.point(ch, (id+2)&3); - const Point_3& p2 = m_tr.point(ch, (id+3)&3); - const FT sqr = geom_traits().compute_squared_radius_3_object()(p0, p1, p2); + const Point_3& p0 = m_tr.point(ch, Triangulation::vertex_triple_index(id, 0)); + const Point_3& p1 = m_tr.point(ch, Triangulation::vertex_triple_index(id, 1)); + const Point_3& p2 = m_tr.point(ch, Triangulation::vertex_triple_index(id, 2)); - std::cout << "At Facet with VID " << get(Gate_ID_PM(), current_gate) << std::endl; + std::cout << "Facet with VID " << get(Gate_ID_PM(), current_gate) << "\n"; + std::cout << "\t" << p0 << "\n\t" << p1 << "\n\t" << p2 << "\n"; - if(current_gate.priority() != sqr) - std::cerr << "Error: facet in queue has wrong priority" << std::endl; +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + std::cout << " Permissiveness: " << current_gate.is_permissive_facet() << "\n"; + std::cout << " SQR: " << geom_traits().compute_squared_radius_3_object()(p0, p1, p2) << "\n"; + std::cout << " Priority " << current_gate.priority() << std::endl; if(Less_gate()(current_gate, previous_top_gate)) std::cerr << "Error: current gate has higher priority than the previous top" << std::endl; previous_top_gate = current_gate; +#else + if(current_gate.is_zombie()) + std::cout << "Gate is a zombie!" << std::endl; +#endif m_queue.pop(); } - std::cout << "End sanity check" << std::endl; + + std::cout << "\t~~~ End queue sanity check ~~~" << std::endl; // Rebuild CGAL_assertion(m_queue.empty()); @@ -1536,17 +1908,17 @@ class Alpha_wrap_3 for(auto fit=m_tr.finite_facets_begin(), fend=m_tr.finite_facets_end(); fit!=fend; ++fit) { - Cell_handle c = fit->first; + Cell_handle ch = fit->first; int s = fit->second; - Cell_handle nc = c->neighbor(s); - if(only_boundary_faces && (c->is_outside() == nc->is_outside())) + Cell_handle nh = ch->neighbor(s); + if(only_boundary_faces && ch->label() == nh->label()) continue; std::array ids; for(std::size_t pos=0; pos<3; ++pos) { - Vertex_handle v = c->vertex((s+pos+1)&3); + Vertex_handle v = ch->vertex((s+pos+1)&3); auto insertion_res = vertex_to_id.emplace(v, nv); if(insertion_res.second) { diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_triangulation_cell_base_3.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_triangulation_cell_base_3.h index db1df61c8f65..efaeb82d330f 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_triangulation_cell_base_3.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_triangulation_cell_base_3.h @@ -20,18 +20,26 @@ namespace CGAL { namespace Alpha_wraps_3 { namespace internal { +enum class Cell_label +{ + // Cells that have been carved + OUTSIDE, + // Cells that have not yet been carved + INSIDE, + // OUTSIDE cells that have been labeled "inside" again as to make the result manifold + MANIFOLD +}; + template < typename GT, typename Cb = CGAL::Delaunay_triangulation_cell_base_with_circumcenter_3 > class Alpha_wrap_triangulation_cell_base_3 : public Cb { -private: - bool outside = false; - public: typedef typename Cb::Vertex_handle Vertex_handle; typedef typename Cb::Cell_handle Cell_handle; +public: template < typename TDS2 > struct Rebind_TDS { @@ -39,6 +47,14 @@ class Alpha_wrap_triangulation_cell_base_3 using Other = Alpha_wrap_triangulation_cell_base_3; }; +private: + Cell_label m_label = Cell_label::INSIDE; + +#ifndef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + unsigned int m_erase_counter; +#endif + +public: Alpha_wrap_triangulation_cell_base_3() : Cb() {} @@ -55,8 +71,26 @@ class Alpha_wrap_triangulation_cell_base_3 : Cb(v0, v1, v2, v3, n0, n1, n2, n3) {} - bool is_outside() const { return outside; } - bool& is_outside() { return outside; } +public: + Cell_label label() const { return m_label; } + void set_label(const Cell_label label) { m_label = label; } + bool is_inside() const { return m_label == Cell_label::INSIDE; } + bool is_outside() const { return m_label == Cell_label::OUTSIDE; } + +#ifndef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + unsigned int erase_counter() const + { + return m_erase_counter; + } + void set_erase_counter(unsigned int c) + { + m_erase_counter = c; + } + void increment_erase_counter() + { + ++m_erase_counter; + } +#endif }; template diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Oracle_base.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Oracle_base.h index 85bd11c00b6c..7f3534a484cf 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Oracle_base.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Oracle_base.h @@ -321,7 +321,6 @@ class AABB_tree_oracle typename AABB_tree::Bounding_box bbox() const { CGAL_precondition(!empty()); - return tree().bbox(); } diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Point_set_oracle.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Point_set_oracle.h index 7bad2ff313d4..33f8a52b178b 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Point_set_oracle.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Point_set_oracle.h @@ -28,6 +28,7 @@ #include #include #include +#include #include namespace CGAL { @@ -41,6 +42,7 @@ struct PS_oracle_traits using Geom_traits = Alpha_wrap_AABB_geom_traits; // Wrap the kernel to add Ball_3 + custom Do_intersect_3 using Points = std::vector; + using Points_ptr = std::shared_ptr; using PR_iterator = typename Points::const_iterator; using Primitive = AABB_primitive; private: - Points m_points; + Points_ptr m_points_ptr; public: // Constructors - Point_set_oracle() - : Oracle_base(BaseOracle(), Base_GT()) - { } - Point_set_oracle(const BaseOracle& base_oracle, const Base_GT& gt = Base_GT()) : Oracle_base(base_oracle, gt) - { } + { + m_points_ptr = std::make_shared(); + } Point_set_oracle(const Base_GT& gt, const BaseOracle& base_oracle = BaseOracle()) - : Oracle_base(base_oracle, gt) + : Point_set_oracle(base_oracle, gt) + { } + + Point_set_oracle() + : Point_set_oracle(BaseOracle(), Base_GT()) { } public: @@ -101,21 +106,27 @@ class Point_set_oracle if(points.empty()) { #ifdef CGAL_AW3_DEBUG - std::cout << "Warning: Input is empty " << std::endl; + std::cout << "Warning: Input is empty (PS)" << std::endl; #endif return; } - const std::size_t old_size = m_points.size(); - m_points.insert(std::cend(m_points), std::cbegin(points), std::cend(points)); + const std::size_t old_size = m_points_ptr->size(); + m_points_ptr->insert(std::cend(*m_points_ptr), std::cbegin(points), std::cend(points)); #ifdef CGAL_AW3_DEBUG std::cout << "Insert into AABB tree (points)..." << std::endl; #endif - this->tree().insert(std::next(std::cbegin(m_points), old_size), std::cend(m_points)); + this->tree().insert(std::next(std::cbegin(*m_points_ptr), old_size), std::cend(*m_points_ptr)); + + // Manually constructing it here purely for profiling reasons: if we keep the lazy approach, + // it will be done at the first treatment of a facet that needs a Steiner point. + // So if one wanted to bench the flood fill runtime, it would be skewed by the time it takes + // to accelerate the tree. + this->tree().accelerate_distance_queries(); - CGAL_postcondition(this->tree().size() == m_points.size()); + CGAL_postcondition(this->tree().size() == m_points_ptr->size()); } }; diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Segment_soup_oracle.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Segment_soup_oracle.h index d02a9f9faaf8..349cd012ef7a 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Segment_soup_oracle.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Segment_soup_oracle.h @@ -28,6 +28,7 @@ #include #include #include +#include #include namespace CGAL { @@ -40,7 +41,9 @@ struct SS_oracle_traits { using Geom_traits = Alpha_wrap_AABB_geom_traits; // Wrap the kernel to add Ball_3 + custom Do_intersect_3 - using Segments = std::vector; + using Segment = typename GT_::Segment_3; + using Segments = std::vector; + using Segments_ptr = std::shared_ptr; using SR_iterator = typename Segments::const_iterator; using Primitive = AABB_primitive; private: - Segments m_segments; + Segments_ptr m_segments_ptr; public: // Constructors - Segment_soup_oracle() - : Oracle_base(BaseOracle(), Base_GT()) - { } - Segment_soup_oracle(const BaseOracle& base_oracle, const Base_GT& gt = Base_GT()) : Oracle_base(base_oracle, gt) - { } + { + m_segments_ptr = std::make_shared(); + } Segment_soup_oracle(const Base_GT& gt, const BaseOracle& base_oracle = BaseOracle()) - : Oracle_base(base_oracle, gt) + : Segment_soup_oracle(base_oracle, gt) + { } + + Segment_soup_oracle() + : Segment_soup_oracle(BaseOracle(), Base_GT()) { } public: @@ -100,20 +107,40 @@ class Segment_soup_oracle if(segments.empty()) { #ifdef CGAL_AW3_DEBUG - std::cout << "Warning: Input is empty " << std::endl; + std::cout << "Warning: Input is empty (SS)" << std::endl; #endif return; } - const std::size_t old_size = m_segments.size(); - m_segments.insert(std::cend(m_segments), std::cbegin(segments), std::cend(segments)); + typename Geom_traits::Is_degenerate_3 is_degenerate = this->geom_traits().is_degenerate_3_object(); + + const std::size_t old_size = m_segments_ptr->size(); + + for(const Segment& s : segments) + { + if(is_degenerate(s)) + { +#ifdef CGAL_AW3_DEBUG + std::cerr << "Warning: ignoring degenerate segment " << s << std::endl; +#endif + continue; + } + + m_segments_ptr->push_back(s); + } #ifdef CGAL_AW3_DEBUG std::cout << "Insert into AABB tree (segments)..." << std::endl; #endif - this->tree().insert(std::next(std::cbegin(m_segments), old_size), std::cend(m_segments)); + this->tree().insert(std::next(std::cbegin(*m_segments_ptr), old_size), std::cend(*m_segments_ptr)); + + // Manually constructing it here purely for profiling reasons: if we keep the lazy approach, + // it will be done at the first treatment of a facet that needs a Steiner point. + // So if one wanted to bench the flood fill runtime, it would be skewed by the time it takes + // to accelerate the tree. + this->tree().accelerate_distance_queries(); - CGAL_postcondition(this->tree().size() == m_segments.size()); + CGAL_postcondition(this->tree().size() == m_segments_ptr->size()); } }; diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Triangle_mesh_oracle.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Triangle_mesh_oracle.h index c87f82ac75fe..d7f325e1428f 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Triangle_mesh_oracle.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Triangle_mesh_oracle.h @@ -135,7 +135,7 @@ class Triangle_mesh_oracle if(is_empty(tmesh)) { #ifdef CGAL_AW3_DEBUG - std::cout << "Warning: Input is empty " << std::endl; + std::cout << "Warning: Input is empty (TM)" << std::endl; #endif return; } @@ -153,7 +153,12 @@ class Triangle_mesh_oracle for(face_descriptor f : faces(tmesh)) { if(Polygon_mesh_processing::is_degenerate_triangle_face(f, tmesh, np)) + { +#ifdef CGAL_AW3_DEBUG + std::cerr << "Warning: ignoring degenerate face " << f << std::endl; +#endif continue; + } const Point_ref p0 = get(vpm, source(halfedge(f, tmesh), tmesh)); const Point_ref p1 = get(vpm, target(halfedge(f, tmesh), tmesh)); @@ -164,6 +169,12 @@ class Triangle_mesh_oracle Splitter_base::split_and_insert_datum(tr, this->tree(), this->geom_traits()); } + // Manually constructing it here purely for profiling reasons: if we keep the lazy approach, + // it will be done at the first treatment of a facet that needs a Steiner point. + // So if one wanted to bench the flood fill runtime, it would be skewed by the time it takes + // to accelerate the tree. + this->tree().accelerate_distance_queries(); + #ifdef CGAL_AW3_DEBUG std::cout << "Tree: " << this->tree().size() << " primitives (" << num_faces(tmesh) << " faces in input)" << std::endl; #endif diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Triangle_soup_oracle.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Triangle_soup_oracle.h index 0a8f589fc2df..dadfb5d8be10 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Triangle_soup_oracle.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Triangle_soup_oracle.h @@ -133,7 +133,7 @@ class Triangle_soup_oracle if(points.empty() || faces.empty()) { #ifdef CGAL_AW3_DEBUG - std::cout << "Warning: Input is empty " << std::endl; + std::cout << "Warning: Input is empty (TS)" << std::endl; #endif return; } @@ -164,11 +164,22 @@ class Triangle_soup_oracle const Triangle_3 tr = triangle(p0, p1, p2); if(is_degenerate(tr)) + { +#ifdef CGAL_AW3_DEBUG + std::cerr << "Warning: ignoring degenerate face " << tr << std::endl; +#endif continue; + } Splitter_base::split_and_insert_datum(tr, this->tree(), this->geom_traits()); } + // Manually constructing it here purely for profiling reasons: if we keep the lazy approach, + // it will be done at the first treatment of a facet that needs a Steiner point. + // So if one wanted to bench the flood fill runtime, it would be skewed by the time it takes + // to accelerate the tree. + this->tree().accelerate_distance_queries(); + #ifdef CGAL_AW3_DEBUG std::cout << "Tree: " << this->tree().size() << " primitives (" << faces.size() << " faces in input)" << std::endl; #endif @@ -179,12 +190,31 @@ class Triangle_soup_oracle void add_triangle_soup(const TriangleRange& triangles, const CGAL_NP_CLASS& /*np*/ = CGAL::parameters::default_values()) { + if(triangles.empty()) + { +#ifdef CGAL_AW3_DEBUG + std::cout << "Warning: Input is empty (TS)" << std::endl; +#endif + return; + } + +#ifdef CGAL_AW3_DEBUG + std::cout << "Insert into AABB Tree (triangles)..." << std::endl; +#endif + typename Geom_traits::Is_degenerate_3 is_degenerate = this->geom_traits().is_degenerate_3_object(); + Splitter_base::reserve(triangles.size()); + for(const Triangle_3& tr : triangles) { if(is_degenerate(tr)) + { +#ifdef CGAL_AW3_DEBUG + std::cerr << "Warning: ignoring degenerate triangle " << tr << std::endl; +#endif continue; + } Splitter_base::split_and_insert_datum(tr, this->tree(), this->geom_traits()); } diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/gate_priority_queue.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/gate_priority_queue.h index 8d63e34c9e3b..ec48b4f458b6 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/gate_priority_queue.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/gate_priority_queue.h @@ -27,27 +27,29 @@ namespace CGAL { namespace Alpha_wraps_3 { namespace internal { +#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + // Represents an alpha-traversable facet in the mutable priority queue -template +template class Gate { - using Facet = typename DT3::Facet; - using FT = typename DT3::Geom_traits::FT; + using Facet = typename Tr::Facet; + using FT = typename Tr::Geom_traits::FT; private: Facet m_facet; FT m_priority; // circumsphere sq_radius - bool m_is_artificial_facet; + bool m_is_permissive_facet; public: // Constructors Gate(const Facet& facet, const FT& priority, - const bool is_artificial_facet) + const bool is_permissive_facet) : m_facet(facet), m_priority(priority), - m_is_artificial_facet(is_artificial_facet) + m_is_permissive_facet(is_permissive_facet) { CGAL_assertion(priority >= 0); } @@ -60,34 +62,85 @@ class Gate public: const Facet& facet() const { return m_facet; } const FT& priority() const { return m_priority; } - bool is_artificial_facet() const { return m_is_artificial_facet; } + bool is_permissive_facet() const { return m_is_permissive_facet; } }; struct Less_gate { - template - bool operator()(const Gate& a, const Gate& b) const + template + bool operator()(const Gate& a, const Gate& b) const { - // @fixme? make it a total order by comparing addresses if both gates are bbox facets - if(a.is_artificial_facet()) - return true; - else if(b.is_artificial_facet()) - return false; + // If one is permissive and the other is not, give priority to the permissive facet. + // + // The permissive facet are given highest priority because they need to be treated + // regardless of their circumradius. Treating them first allow the part that depends + // on alpha to be treated uniformly in a way: whatever the alpha, all permissive faces + // will first be treated. + if(a.is_permissive_facet() != b.is_permissive_facet()) + return a.is_permissive_facet(); + + if(a.priority() == b.priority()) + { + // arbitrary, the sole purpose is to make it a total order for determinism + if(a.facet().first->time_stamp() == b.facet().first->time_stamp()) + return a.facet().second < b.facet().second; + + return a.facet().first->time_stamp() < b.facet().first->time_stamp(); + } + return a.priority() > b.priority(); } }; -template +#else // CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + +// Represents an alpha-traversable facet in the mutable priority queue +template +class Gate +{ + using Facet = typename Tr::Facet; + using FT = typename Tr::Geom_traits::FT; + +private: + Facet m_facet, m_mirror_facet; + const unsigned int m_erase_counter_mem; + const unsigned int m_mirror_erase_counter_mem; + +public: + // Constructors + Gate(const Facet& facet, + const Tr& tr) + : + m_facet(facet), + m_mirror_facet(tr.mirror_facet(facet)), + m_erase_counter_mem(m_facet.first->erase_counter()), + m_mirror_erase_counter_mem(m_mirror_facet.first->erase_counter()) + { + } + +public: + const Facet& facet() const { return m_facet; } + + bool is_zombie() const + { + return (m_facet.first->erase_counter() != m_erase_counter_mem) || + (m_mirror_facet.first->erase_counter() != m_mirror_erase_counter_mem); + } +}; + +#endif // CGAL_AW3_USE_SORTED_PRIORITY_QUEUE + +template struct Gate_ID_PM { - using key_type = Gate; + using key_type = Gate; using value_type = std::size_t; using reference = std::size_t; using category = boost::readable_property_map_tag; inline friend value_type get(Gate_ID_PM, const key_type& k) { - using Facet = typename DT3::Facet; + using Facet = typename Tr::Facet; const Facet& f = k.facet(); return (4 * f.first->time_stamp() + f.second); diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/geometry_utils.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/geometry_utils.h index d3814d0f3b25..7f5f60de701c 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/geometry_utils.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/geometry_utils.h @@ -40,16 +40,16 @@ struct Orientation_of_circumcenter } }; -template +template bool -less_squared_radius_of_min_empty_sphere(typename Dt::Geom_traits::FT sq_alpha, - const typename Dt::Facet& fh, - const Dt& dt) +less_squared_radius_of_min_empty_sphere(typename Tr::Geom_traits::FT sq_alpha, + const typename Tr::Facet& fh, + const Tr& tr) { - using Cell_handle = typename Dt::Cell_handle; - using Point = typename Dt::Point; + using Cell_handle = typename Tr::Cell_handle; + using Point = typename Tr::Point; - using CK = typename Dt::Geom_traits; + using CK = typename Tr::Geom_traits; using Exact_kernel = typename Exact_kernel_selector::Exact_kernel; using Approximate_kernel = Simple_cartesian; using C2A = Cartesian_converter; @@ -61,21 +61,30 @@ less_squared_radius_of_min_empty_sphere(typename Dt::Geom_traits::FT sq_alpha, Orientation_of_circumcenter orientation_of_circumcenter; +#ifdef CGAL_AW3_DEBUG_TRAVERSABILITY + std::cout << "Checking for traversability of facet" << std::endl; +#endif + const Cell_handle c = fh.first; const int ic = fh.second; const Cell_handle n = c->neighbor(ic); - const Point& p1 = dt.point(c, Dt::vertex_triple_index(ic,0)); - const Point& p2 = dt.point(c, Dt::vertex_triple_index(ic,1)); - const Point& p3 = dt.point(c, Dt::vertex_triple_index(ic,2)); + const Point& p1 = tr.point(c, Tr::vertex_triple_index(ic,0)); + const Point& p2 = tr.point(c, Tr::vertex_triple_index(ic,1)); + const Point& p3 = tr.point(c, Tr::vertex_triple_index(ic,2)); // This is not actually possible in the context of alpha wrapping, but keeping it for genericity // and because it does not cost anything. - if(dt.is_infinite(n)) + if(tr.is_infinite(n)) { +#ifdef CGAL_AW3_DEBUG_TRAVERSABILITY + std::cerr << "Warning: computing less_squared_radius_of_min_empty_sphere() with an infinite neighbor?" << std::endl; +#endif + CGAL_assertion(!tr.is_infinite(c)); + Orientation ori = orientation_of_circumcenter(p1, p2, p3, - dt.point(c, 0), dt.point(c, 1), - dt.point(c, 2), dt.point(c, 3)); + tr.point(c, 0), tr.point(c, 1), + tr.point(c, 2), tr.point(c, 3)); if(ori == POSITIVE) { @@ -84,18 +93,22 @@ less_squared_radius_of_min_empty_sphere(typename Dt::Geom_traits::FT sq_alpha, } else { - Comparison_result cr = compare_squared_radius(dt.point(c, 0), dt.point(c, 1), - dt.point(c, 2), dt.point(c, 3), + Comparison_result cr = compare_squared_radius(tr.point(c, 0), tr.point(c, 1), + tr.point(c, 2), tr.point(c, 3), sq_alpha); return cr == LARGER; } } - if(dt.is_infinite(c)) + if(tr.is_infinite(c)) { Orientation ori = orientation_of_circumcenter(p1, p2, p3, - dt.point(n, 0), dt.point(n, 1), - dt.point(n, 2), dt.point(n, 3)); + tr.point(n, 0), tr.point(n, 1), + tr.point(n, 2), tr.point(n, 3)); + +#ifdef CGAL_AW3_DEBUG_TRAVERSABILITY + std::cout << "Cell 'c' is infinite; Orientation: " << ori << std::endl; +#endif if(ori == NEGATIVE) { @@ -104,8 +117,8 @@ less_squared_radius_of_min_empty_sphere(typename Dt::Geom_traits::FT sq_alpha, } else { - Comparison_result cr = compare_squared_radius(dt.point(n, 0), dt.point(n, 1), - dt.point(n, 2), dt.point(n, 3), + Comparison_result cr = compare_squared_radius(tr.point(n, 0), tr.point(n, 1), + tr.point(n, 2), tr.point(n, 3), sq_alpha); return cr == LARGER; } @@ -113,40 +126,40 @@ less_squared_radius_of_min_empty_sphere(typename Dt::Geom_traits::FT sq_alpha, // both c and n are finite if(orientation_of_circumcenter(p1, p2, p3, - dt.point(c, 0), dt.point(c, 1), dt.point(c, 2), dt.point(c, 3)) != + tr.point(c, 0), tr.point(c, 1), tr.point(c, 2), tr.point(c, 3)) != orientation_of_circumcenter(p1, p2, p3, - dt.point(n, 0), dt.point(n, 1), dt.point(n, 2), dt.point(n, 3))) + tr.point(n, 0), tr.point(n, 1), tr.point(n, 2), tr.point(n, 3))) { Comparison_result cr = compare_squared_radius(p1, p2, p3, sq_alpha); #ifdef CGAL_AW3_DEBUG_TRAVERSABILITY std::cout << "dual crosses the face; CR: " - << typename Dt::Geom_traits().compute_squared_radius_3_object()(p1, p2, p3) + << typename Tr::Geom_traits().compute_squared_radius_3_object()(p1, p2, p3) << " sq alpha " << sq_alpha << std::endl; #endif return cr == LARGER; } else { - Comparison_result cr = compare_squared_radius(dt.point(c, 0), dt.point(c, 1), - dt.point(c, 2), dt.point(c, 3), + Comparison_result cr = compare_squared_radius(tr.point(c, 0), tr.point(c, 1), + tr.point(c, 2), tr.point(c, 3), sq_alpha); #ifdef CGAL_AW3_DEBUG_TRAVERSABILITY std::cout << "dual does not cross the face; CR(c): " - << typename Dt::Geom_traits().compute_squared_radius_3_object()(dt.point(c, 0), dt.point(c, 1), - dt.point(c, 2), dt.point(c, 3)) + << typename Tr::Geom_traits().compute_squared_radius_3_object()(tr.point(c, 0), tr.point(c, 1), + tr.point(c, 2), tr.point(c, 3)) << " sq alpha " << sq_alpha << std::endl; #endif if(cr != LARGER) return false; - cr = compare_squared_radius(dt.point(n, 0), dt.point(n, 1), - dt.point(n, 2), dt.point(n, 3), + cr = compare_squared_radius(tr.point(n, 0), tr.point(n, 1), + tr.point(n, 2), tr.point(n, 3), sq_alpha); #ifdef CGAL_AW3_DEBUG_TRAVERSABILITY std::cout << "dual does not cross the face; CR(n): " - << typename Dt::Geom_traits().compute_squared_radius_3_object()(dt.point(n, 0), dt.point(n, 1), - dt.point(n, 2), dt.point(n, 3)) + << typename Tr::Geom_traits().compute_squared_radius_3_object()(tr.point(n, 0), tr.point(n, 1), + tr.point(n, 2), tr.point(n, 3)) << " sq alpha " << sq_alpha << std::endl; #endif @@ -154,6 +167,100 @@ less_squared_radius_of_min_empty_sphere(typename Dt::Geom_traits::FT sq_alpha, } } +template +typename Tr::Geom_traits::FT +smallest_squared_radius_3(const typename Tr::Facet& fh, + const Tr& tr) +{ + using Cell_handle = typename Tr::Cell_handle; + using Point = typename Tr::Point; + using FT = typename Tr::Geom_traits::FT; + + using CK = typename Tr::Geom_traits; + using Exact_kernel = typename Exact_kernel_selector::Exact_kernel; + using Approximate_kernel = Simple_cartesian; + using C2A = Cartesian_converter; + using C2E = typename Exact_kernel_selector::C2E; + + using Orientation_of_circumcenter = Filtered_predicate, + Orientation_of_circumcenter, + C2E, C2A>; + + Orientation_of_circumcenter orientation_of_circumcenter; + + auto squared_radius = tr.geom_traits().compute_squared_radius_3_object(); + +#ifdef CGAL_AW3_DEBUG_TRAVERSABILITY + std::cout << "Computing circumradius of facet" << std::endl; +#endif + + CGAL_precondition(!tr.is_infinite(fh)); + + const Cell_handle c = fh.first; + const int ic = fh.second; + const Cell_handle n = c->neighbor(ic); + + const Point& p1 = tr.point(c, Tr::vertex_triple_index(ic,0)); + const Point& p2 = tr.point(c, Tr::vertex_triple_index(ic,1)); + const Point& p3 = tr.point(c, Tr::vertex_triple_index(ic,2)); + + // This is not actually possible in the context of alpha wrapping, but keeping it for genericity + // and because it does not cost anything. + if(tr.is_infinite(n)) + { + CGAL_assertion(!tr.is_infinite(c)); + + Orientation ori = orientation_of_circumcenter(p1, p2, p3, + tr.point(c, 0), tr.point(c, 1), + tr.point(c, 2), tr.point(c, 3)); + if(ori == POSITIVE) + return squared_radius(p1, p2, p3); + else + return squared_radius(tr.point(c, 0), tr.point(c, 1), tr.point(c, 2), tr.point(c, 3)); + } + + if(tr.is_infinite(c)) + { + Orientation ori = orientation_of_circumcenter(p1, p2, p3, + tr.point(n, 0), tr.point(n, 1), + tr.point(n, 2), tr.point(n, 3)); + +#ifdef CGAL_AW3_DEBUG_TRAVERSABILITY + std::cout << "Cell 'c' is infinite; Orientation: " << ori << std::endl; +#endif + + if(ori == NEGATIVE) + return squared_radius(p1, p2, p3); + else + return squared_radius(tr.point(n, 0), tr.point(n, 1), tr.point(n, 2), tr.point(n, 3)); + } + + // both c and n are finite + if(orientation_of_circumcenter(p1, p2, p3, + tr.point(c, 0), tr.point(c, 1), tr.point(c, 2), tr.point(c, 3)) != + orientation_of_circumcenter(p1, p2, p3, + tr.point(n, 0), tr.point(n, 1), tr.point(n, 2), tr.point(n, 3))) + { +#ifdef CGAL_AW3_DEBUG_TRAVERSABILITY + std::cout << "dual crosses the face; CR: " << squared_radius(p1, p2, p3) << std::endl; +#endif + + return squared_radius(p1, p2, p3); + } + else + { + const FT cr = squared_radius(tr.point(c, 0), tr.point(c, 1), tr.point(c, 2), tr.point(c, 3)); + const FT cnr = squared_radius(tr.point(n, 0), tr.point(n, 1), tr.point(n, 2), tr.point(n, 3)); + +#ifdef CGAL_AW3_DEBUG_TRAVERSABILITY + std::cout << "dual does not cross the face; CR(c): " << cr << " CRn: " << cnr << std::endl; +#endif + + return (CGAL::min)(cr, cnr); + } +} + + } // namespace internal } // namespace Alpha_wraps_3 } // namespace CGAL diff --git a/Alpha_wrap_3/test/Alpha_wrap_3/alpha_wrap_validation.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/validation.h similarity index 97% rename from Alpha_wrap_3/test/Alpha_wrap_3/alpha_wrap_validation.h rename to Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/validation.h index c9445c9e9c50..6d9a9191d5f4 100644 --- a/Alpha_wrap_3/test/Alpha_wrap_3/alpha_wrap_validation.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/validation.h @@ -117,7 +117,7 @@ bool has_expected_Hausdorff_distance(const TriangleMesh& wrap, template bool is_valid_wrap(const TriangleMesh& wrap, - const bool check_manifoldness = true, + const bool check_manifoldness, const NamedParameters& np = parameters::default_values()) { namespace PMP = CGAL::Polygon_mesh_processing; @@ -203,6 +203,13 @@ bool is_valid_wrap(const TriangleMesh& wrap, return true; } +template +bool is_valid_wrap(const TriangleMesh& wrap, + const NamedParameters& np = parameters::default_values()) +{ + return is_valid_wrap(wrap, true /*consider manifoldness*/, np); +} + template diff --git a/Alpha_wrap_3/include/CGAL/alpha_wrap_3.h b/Alpha_wrap_3/include/CGAL/alpha_wrap_3.h index 638c5fb9fa17..8be78675422e 100644 --- a/Alpha_wrap_3/include/CGAL/alpha_wrap_3.h +++ b/Alpha_wrap_3/include/CGAL/alpha_wrap_3.h @@ -105,7 +105,7 @@ void alpha_wrap_3(const PointRange& points, using NP_helper = Point_set_processing_3_np_helper; using Geom_traits = typename NP_helper::Geom_traits; using Oracle = Alpha_wraps_3::internal::Triangle_soup_oracle; - using AW3 = Alpha_wraps_3::internal::Alpha_wrap_3; + using AW3 = Alpha_wraps_3::internal::Alpha_wrapper_3; Geom_traits gt = choose_parameter(get_parameter(in_np, internal_np::geom_traits)); @@ -254,7 +254,7 @@ void alpha_wrap_3(const TriangleMesh& tmesh, using Geom_traits = typename GetGeomTraits::type; using Oracle = Alpha_wraps_3::internal::Triangle_mesh_oracle; - using AW3 = Alpha_wraps_3::internal::Alpha_wrap_3; + using AW3 = Alpha_wraps_3::internal::Alpha_wrapper_3; Geom_traits gt = choose_parameter(get_parameter(in_np, internal_np::geom_traits)); @@ -350,7 +350,7 @@ void alpha_wrap_3(const PointRange& points, using NP_helper = Point_set_processing_3_np_helper; using Geom_traits = typename NP_helper::Geom_traits; using Oracle = Alpha_wraps_3::internal::Point_set_oracle; - using AW3 = Alpha_wraps_3::internal::Alpha_wrap_3; + using AW3 = Alpha_wraps_3::internal::Alpha_wrapper_3; Geom_traits gt = choose_parameter(get_parameter(in_np, internal_np::geom_traits)); diff --git a/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_cavity_initializations.cpp b/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_cavity_initializations.cpp index d7567bab205b..af94eecd25ae 100644 --- a/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_cavity_initializations.cpp +++ b/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_cavity_initializations.cpp @@ -1,12 +1,13 @@ #define CGAL_AW3_TIMER #define CGAL_AW3_DEBUG +#define CGAL_AW3_DEBUG_MANIFOLDNESS // #define CGAL_AW3_DEBUG_INITIALIZATION #include #include #include -#include "alpha_wrap_validation.h" +#include #include @@ -27,7 +28,7 @@ void generate_random_seeds(const Oracle& oracle, Seeds& seeds, CGAL::Random& r) { - const auto bbox = CGAL::Alpha_wraps_3::internal::Alpha_wrap_3(oracle).construct_bbox(offset); + const auto bbox = CGAL::Alpha_wraps_3::internal::Alpha_wrapper_3(oracle).construct_bbox(offset); const double sq_offset = CGAL::square(offset); while(seeds.size() < 3) @@ -69,7 +70,7 @@ void alpha_wrap_triangle_mesh(Mesh& input_mesh, Oracle oracle; oracle.add_triangle_mesh(input_mesh); - AW3::internal::Alpha_wrap_3 aw3(oracle); + AW3::internal::Alpha_wrapper_3 aw3(oracle); if(seeds.empty()) generate_random_seeds(oracle, offset, seeds, r); diff --git a/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_manifoldness.cpp b/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_manifoldness.cpp index 638431e30567..954fe6163dff 100644 --- a/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_manifoldness.cpp +++ b/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_manifoldness.cpp @@ -1,11 +1,12 @@ #define CGAL_AW3_TIMER #define CGAL_AW3_DEBUG +#define CGAL_AW3_DEBUG_MANIFOLDNESS //#define CGAL_AW3_DEBUG_STEINER_COMPUTATION //#define CGAL_AW3_DEBUG_INITIALIZATION //#define CGAL_AW3_DEBUG_QUEUE #include -#include "alpha_wrap_validation.h" +#include #include #include diff --git a/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_multiple_calls.cpp b/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_multiple_calls.cpp index e2abc6f1f12f..35a954f17b20 100644 --- a/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_multiple_calls.cpp +++ b/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_multiple_calls.cpp @@ -1,10 +1,11 @@ #define CGAL_AW3_TIMER #define CGAL_AW3_DEBUG +#define CGAL_AW3_DEBUG_MANIFOLDNESS #include #include -#include "alpha_wrap_validation.h" +#include #include #include @@ -52,7 +53,7 @@ void alpha_wrap_triangle_soup(Points& pr, // AW3 Oracle oracle; oracle.add_triangle_soup(pr, fr); - AW3::internal::Alpha_wrap_3 aw3(oracle); + AW3::internal::Alpha_wrapper_3 aw3(oracle); Mesh wrap; aw3(alpha, offset, wrap, CGAL::parameters::do_enforce_manifoldness(false)); diff --git a/Alpha_wrap_3/test/Alpha_wrap_3/test_alpha_wrap_3_mesh.cpp b/Alpha_wrap_3/test/Alpha_wrap_3/test_alpha_wrap_3_mesh.cpp index 470d48e40d44..6209019a7a4d 100644 --- a/Alpha_wrap_3/test/Alpha_wrap_3/test_alpha_wrap_3_mesh.cpp +++ b/Alpha_wrap_3/test/Alpha_wrap_3/test_alpha_wrap_3_mesh.cpp @@ -1,12 +1,12 @@ #define CGAL_AW3_TIMER //#define CGAL_AW3_DEBUG -//#define CGAL_AW3_DEBUG_MANIFOLDNESS +#define CGAL_AW3_DEBUG_MANIFOLDNESS //#define CGAL_AW3_DEBUG_STEINER_COMPUTATION //#define CGAL_AW3_DEBUG_INITIALIZATION //#define CGAL_AW3_DEBUG_QUEUE #include -#include "alpha_wrap_validation.h" +#include #include #include diff --git a/Apollonius_graph_2/include/CGAL/Parabola_segment_2.h b/Apollonius_graph_2/include/CGAL/Parabola_segment_2.h index 7c03ff5d5e51..20883169ba7a 100644 --- a/Apollonius_graph_2/include/CGAL/Parabola_segment_2.h +++ b/Apollonius_graph_2/include/CGAL/Parabola_segment_2.h @@ -27,7 +27,7 @@ namespace Qt { } template < class Gt > -class Parabola_segment_2 : public Parabola_2< Gt > +struct Parabola_segment_2 : public Parabola_2< Gt > { typedef CGAL::Parabola_2 Base; typedef typename Base::Site_2 Site_2; @@ -39,10 +39,10 @@ class Parabola_segment_2 : public Parabola_2< Gt > using Base::t; using Base::f; -protected: + Point_2 p1, p2; -public: + Parabola_segment_2() : Parabola_2< Gt >() {} template diff --git a/Apollonius_graph_2/test/Apollonius_graph_2/include/test.h b/Apollonius_graph_2/test/Apollonius_graph_2/include/test.h index 69064b0c7813..7d9e98171e9b 100644 --- a/Apollonius_graph_2/test/Apollonius_graph_2/include/test.h +++ b/Apollonius_graph_2/test/Apollonius_graph_2/include/test.h @@ -1,19 +1,16 @@ #ifndef CGAL_APOLLONIUS_GRAPH_2_TEST_H #define CGAL_APOLLONIUS_GRAPH_2_TEST_H -#include -#include -#include - -#include // this is done in order to avoid error -// when the Segment_2_Segment_2_intersection.h file is included from -// the Triangulation_euclidean_traits_2.h file. - #include #include #include #include -//#include + +#include +#include +#include +#include + #include "IO/Null_output_stream.h" @@ -839,24 +836,29 @@ bool test_algo_generic(InputStream& is) // file I/O methods //-------------------------------------------------------------------- { - std::ofstream ofs("ag_testsuite.tmp"); + std::string fname = "ag_testsuite_" + std::to_string(CGAL::Random().get_seed()) + ".tmp"; + std::cout << "writing to " << fname << std::endl; + + std::ofstream ofs(fname); assert( ofs ); ag.file_output(ofs); ofs.close(); - std::ifstream ifs("ag_testsuite.tmp"); + std::ifstream ifs(fname); assert( ifs ); ag.file_input(ifs); ifs.close(); assert( ag.is_valid() ); } { - std::ofstream ofs("ag_testsuite.tmp"); + std::string fname = "ag_testsuite_" + std::to_string(CGAL::Random().get_seed()) + ".tmp"; + std::cout << "writing to " << fname << std::endl; + std::ofstream ofs(fname); assert( ofs ); ofs << ag; ofs.close(); - std::ifstream ifs("ag_testsuite.tmp"); + std::ifstream ifs(fname); assert( ifs ); ifs >> ag; ifs.close(); diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt index 7992c9b19fa8..1ad374a61033 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/CMakeLists.txt @@ -12,13 +12,12 @@ if(POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt5) -find_package(Qt5 QUIET COMPONENTS Widgets) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core Qt6) +find_package(Qt6 QUIET COMPONENTS Widgets) -if (CGAL_Qt5_FOUND AND Qt5_FOUND) - include(${CGAL_USE_FILE}) +if (CGAL_Qt6_FOUND AND Qt6_FOUND) add_compile_definitions(QT_NO_KEYWORDS) - include_directories( BEFORE ./ ) + set(CMAKE_INCLUDE_CURRENT_DIR ON) # Arrangement package includes add_definitions(-DQT_NO_KEYWORDS) @@ -50,7 +49,7 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) endif() - qt5_wrap_ui(arrangement_2_uis + qt6_wrap_ui(arrangement_2_uis ArrangementDemoWindow.ui NewTabDialog.ui OverlayDialog.ui @@ -58,7 +57,7 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) AlgebraicCurveInputDialog.ui RationalCurveInputDialog.ui) - qt5_wrap_cpp(CGAL_Qt5_MOC_FILES + qt6_wrap_cpp(CGAL_Qt6_MOC_FILES ArrangementDemoWindow.h ArrangementDemoTab.h GraphicsViewCurveInput.h @@ -70,7 +69,7 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) ColorItemEditor.h PropertyValueDelegate.h) - qt5_add_resources(CGAL_Qt5_RESOURCE_FILES Arrangement_on_surface_2.qrc) + qt6_add_resources(CGAL_Qt6_RESOURCE_FILES Arrangement_on_surface_2.qrc) add_executable(arrangement_2 arrangement_2.cpp @@ -107,11 +106,11 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) ArrangementIO.cpp ${UTILS_COMPILE_FILES} ${arrangement_2_uis} - ${CGAL_Qt5_RESOURCE_FILES} - ${CGAL_Qt5_MOC_FILES}) + ${CGAL_Qt6_RESOURCE_FILES} + ${CGAL_Qt6_MOC_FILES}) - target_link_libraries(arrangement_2 PRIVATE Qt5::Widgets) - target_link_libraries(arrangement_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5) + target_link_libraries(arrangement_2 PRIVATE Qt6::Widgets) + target_link_libraries(arrangement_2 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6) if(CGAL_Core_FOUND) target_link_libraries(arrangement_2 PRIVATE CGAL::CGAL_Core) endif() @@ -124,11 +123,11 @@ if (CGAL_Qt5_FOUND AND Qt5_FOUND) else() set(MISSING_DEPS "") - if(NOT CGAL_Qt5_FOUND) - set(MISSING_DEPS "the CGAL Qt5 library, ${MISSING_DEPS}") + if(NOT CGAL_Qt6_FOUND) + set(MISSING_DEPS "the CGAL Qt6 library, ${MISSING_DEPS}") endif() - if(NOT Qt5_FOUND) - set(MISSING_DEPS "Qt5, ${MISSING_DEPS}") + if(NOT Qt6_FOUND) + set(MISSING_DEPS "Qt6, ${MISSING_DEPS}") endif() message("NOTICE: This demo requires ${MISSING_DEPS} and will not be compiled.") endif() diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/PropertyValueDelegate.cpp b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/PropertyValueDelegate.cpp index 0f2dbb004986..ba47beb81df0 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/PropertyValueDelegate.cpp +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/PropertyValueDelegate.cpp @@ -22,7 +22,7 @@ PropertyValueDelegate::PropertyValueDelegate( QObject* parent ): QItemEditorFactory* factory = new QItemEditorFactory; QItemEditorCreatorBase* creator = new QStandardItemEditorCreator< PositiveSpinBox >( ); - factory->registerEditor( QVariant::UInt, creator ); + factory->registerEditor( QMetaType::UInt, creator ); this->setItemEditorFactory( factory ); } diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/arrangement_2.cpp b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/arrangement_2.cpp index 35d589585d8d..f0a5ccfe47fa 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/arrangement_2.cpp +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2/arrangement_2.cpp @@ -19,7 +19,7 @@ int main(int argc, char* argv[]) QCoreApplication::setOrganizationName("CGAL"); QCoreApplication::setApplicationName("2D Arrangements Demo"); - // Import resources from libCGAL (Qt5). + // Import resources from libCGAL (Qt6). CGAL_QT_INIT_RESOURCES; ArrangementDemoWindow demoWindow; diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt index 33d5252ec89f..42b4621de21d 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt @@ -5704,20 +5704,25 @@ objects, so that when one object changes state, all its dependents are notified and updated automatically. The observed object does not know anything about the observers. It merely "publishes" information about changes when they occur. In our case observers can be attached to an -arrangement object. An attached observer receives notifications about -the changes this arrangement undergoes. - -An observer object, the type of which is an instance of the -`Arr_observer` class template, stores a pointer to an -arrangement object. When the `Arr_observer` class -template is instantiated, the `Arrangement` parameter must be -substituted with the type of the arrangement object. The observer -receives notifications just before a structural change occurs -in the arrangement and immediately after such a change takes -place. `Arr_observer` serves as a base class for other -observer classes and defines a set of virtual notification -functions, with default empty implementations. The set of functions -can be divided into three categories, as follows: +arrangement object. + +An observer object that observes changes in an arrangement object +stores a pointer to the attached arrangement object. It receives +notifications about the changes this arrangement undergoes. The +observer receives notifications just before a structural +change occurs in the arrangement and immediately after such a +change takes place. An observer object that observes changes in an +arrangement object of type `Arrangement` must be of a type derived +from `Arrangement::Observer`, which is an alias to +`Aos_observer`, where +`Arrangement_on_surface_2` is the type of the arrangement object or +its base type. An instance of `Aos_observer<>` serves as a base type +for other observer classes and defines a set of virtual notification +functions, with default empty implementations. You can also use the +template alias `Arr_observer`, where `Arrangement_2` is +the type of the arrangement object in case it is derived from an +instance of the template `Arrangement_on_surface_2`. The set of +functions can be divided into three categories, as follows:
    @@ -5783,10 +5788,10 @@ the call to `after_global_change()`.
See the Reference Manual for a detailed specification of the -`Arr_observer` class template and the prototypes of all notification +`Aos_observer` class template and the prototypes of all notification functions. -Each arrangement object stores a list of pointers to `Arr_observer` +Each arrangement object stores a list of pointers to `Aos_observer` objects. This list may be empty, in which case the arrangement does not have to notify any external class on the structural changes it undergoes. If, however, there are observers associated with the @@ -5800,7 +5805,7 @@ invoked for each observer. Concrete arrangement-observer classes should inherit from -`Arr_observer`. When an observer is constructed, it is attached to a +`Aos_observer`. When an observer is constructed, it is attached to a valid arrangement supplied to the observed constructor, or alternatively the observer can be attached to the arrangement at a later time. When this happens, the observer object inserts itself @@ -5810,8 +5815,8 @@ thereafter. Subsequently, the observer object unregisters itself by removing itself from this list just before it is destroyed. Most concrete observer-classes do not need to use the full set of notifications. Thus, the bodies of all notification methods defined in -the base class `Arr_observer` are empty. A concrete observer that -inherits from `Arr_observer` needs to override only the relevant +the base class `Aos_observer` are empty. A concrete observer that +inherits from `Aos_observer` needs to override only the relevant notification methods. The remaining methods are invoked when corresponding changes occur, but they do nothing. @@ -6765,8 +6770,8 @@ An arrangement data structure can be visualized by calling the \link PkgArrangem \cgalExample{Arrangement_on_surface_2/draw_arr.cpp} -This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \cgalFigureBegin{aos_fig-draw_arr,draw_arr.png} A snapshot of the window created by the program diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Aos_observer.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Aos_observer.h new file mode 100644 index 000000000000..2f21f4a886cc --- /dev/null +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Aos_observer.h @@ -0,0 +1,424 @@ +namespace CGAL { + +/*! \ingroup PkgArrangementOnSurface2Ref + * + * \anchor arr_refaos_obs + * + * `Aos_observer` serves as an abstract base class for all observer classes that + * are attached to an arrangement instance of type `Arrangement` and receive + * notifications from the arrangement. This base class handles the attachment + * of the observer to a given arrangement instance or to the detachment of the + * observer from this arrangement instance. It also gives a default empty + * implementation to all notification functions that are invoked by the + * arrangement to notify the observer on local or global changes it undergoes. + * The notification functions are all virtual functions, so they can be + * overridden by the concrete observer classes that inherit from `Aos_observer`. + * + * In order to implement a concrete arrangement observer-class, one simply needs + * to derive from `Aos_observer` and override the relevant notification + * functions. For example, if only face-split events are of interest, it is + * sufficient to override just `before_split_face()` (or just + * `after_split_face()`). + */ +template +class Aos_observer { +public: + + /// \name Types + /// @{ + + //! the type of the associated arrangement. + typedef unspecified_type Arrangement_2; + + //! the point type. + typedef typename Arrangement_2::Point_2 Point_2; + + //! the \f$x\f$-monotone curve type. + typedef typename Arrangement_2::X_monotone_curve_2 X_monotone_curve_2; + + //! the type of a handle to an arrangement vertex. + typedef typename Arrangement_2::Vertex_handle Vertex_handle; + + //! the type of a handle to an arrangement halfedge. + typedef typename Arrangement_2::Halfedge_handle Halfedge_handle; + + //! the type of a handle to an arrangement face. + typedef typename Arrangement_2::Face_handle Face_handle; + + /*! represents a connected component of the boundary (CCB), either an outer + * boundary or an inner boundary (the latter is also referred to as a hole). + */ + typedef typename Arrangement_2::Ccb_halfedge_circulator Ccb_halfedge_circulator; + + /// @} + + /// \name Creation + /// @{ + + /*! constructs an observer that is unattached to any arrangement instance. */ + Aos_observer(); + + /*! constructs an observer and attaches it to the given arrangement `arr`. */ + Aos_observer(Arrangement_2& arr); + + /// @} + + /// \name Modifiers + /// @{ + + /*! attaches the observer to the given arrangement `arr`. */ + void attach(Arrangement_2& arr); + + /*! detaches the observer from its arrangement. */ + void detach(); + + /// @} + + /// \name Notifications on Global Arrangement Operations + /// @{ + + /*! issued just before the attached arrangement is assigned with the contents of another + * arrangement. + * \param arr The other arrangement. Notice that the arrangement type is the type used to + * instantiate the observer, which is conveniently defined as + * `Arrangement_2::Base_aos`. + */ + virtual void before_assign(const typename Arrangement_2::Base_aos& arr); + + /*! issued immediately after the attached arrangement has been assigned with + * the contents of another arrangement. + */ + virtual void after_assign(); + + /*! issued just before the attached arrangement is cleared. */ + virtual void before_clear(); + + /*! issued immediately after the attached arrangement has been cleared, so it + * now consists only of a the unbounded face `uf`. + */ + virtual void after_clear(Face_handle uf); + + /*! issued just before a global function starts to modify the attached + * arrangement. It is guaranteed that no queries (especially no point-location + * queries) are issued until the termination of the global function is + * indicated by `after_global_change()`. + */ + virtual void before_global_change(); + + /*! + issued immediately after a global function has stopped modifying the + attached arrangement. + */ + virtual void after_global_change(); + + /// @} + + /// \name Notifications on Attachment or Detachment + /// @{ + + /*! issued just before the observer is attached to the arrangement instance + * `arr`. + * \param arr The arrangement that is about to attach the observer. Notice + * that the arrangement type is the type used to instantiate the + * observer, which is conveniently defined as + * `Arrangement_2::Base_aos`. + */ + virtual void before_attach(const typename Arrangement_2::Base_aos& arr); + + /*! issued immediately after the observer has been attached to an arrangement + * instance. + */ + virtual void after_attach(); + + /*! issued just before the observer is detached from its arrangement instance. + */ + virtual void before_detach(); + + /*! issued immediately after the observer has been detached from its + * arrangement instance. + */ + virtual void after_detach(); + + /// @} + + /// \name Notifications on Local Changes in the Arrangement + /// @{ + + /*! issued just before a new vertex that corresponds to the point `p` is + * created. + */ + virtual void before_create_vertex(const Point_2& p); + + /*! issued immediately after a new vertex `v` has been created. Note that the + * vertex still has no incident edges and is not connected to any other vertex. + */ + virtual void after_create_vertex(Vertex_handle v); + + /*! issued just before a new vertex at infinity is created, `cv` is the curve + * incident to the surface boundary, `ind` is the relevant curve-end, `ps_x` + * is the boundary condition of the vertex in \f$x\f$ and `ps_y` is the + * boundary condition of the vertex in \f$y\f$. + */ + virtual void before_create_boundary_vertex(const X_monotone_curve_2& cv, + Arr_curve_end ind, + Arr_parameter_space ps_x, + Arr_parameter_space ps_y); + + /*! issued immediately after a new vertex `v` has been created. Note that the + * vertex still has no incident edges and is not connected to any other vertex. + */ + virtual void after_create_boundary_vertex(Vertex_handle v); + + /*! issued just before a new edge that corresponds to the \f$x\f$-monotone + * curve `c` and connects the vertices `v1` and `v2` is created. + */ + virtual void before_create_edge(const X_monotone_curve_2& c, + Vertex_handle v1, Vertex_handle v2); + + /*! issued immediately after a new edge `e` has been created. The halfedge + * that is sent to this function is always directed from `v1` to `v2` (see + * `before_create_edge()`). + */ + virtual void after_create_edge(Halfedge_handle e); + + /*! issued just before a vertex `v` is modified to be associated with the point + * `p`. + */ + virtual void before_modify_vertex(Vertex_handle v, const Point_2& p); + + /*! issued immediately after an existing vertex `v` has been modified. */ + virtual void after_modify_vertex(Vertex_handle v); + + /*! issued just before an edge `e` is modified to be associated with the + * \f$x\f$-monotone curve `c`. + */ + virtual void before_modify_edge(Halfedge_handle e, + const X_monotone_curve_2& c); + + /*! issued immediately after an existing edge `e` has been modified. */ + virtual void after_modify_edge(Halfedge_handle e); + + /*! issued just before an edge `e` is split into two edges that should be + * associated with the \f$x\f$-monotone curves `c1` and `c2`. The vertex `v` + * corresponds to the split point, and will be used to separate the two + * resulting edges. + */ + virtual void before_split_edge(Halfedge_handle e, Vertex_handle v, + const X_monotone_curve_2& c1, + const X_monotone_curve_2& c2); + + /*! issued immediately after an existing edge has been split into the two + * given edges `e1` and `e2`. + */ + virtual void after_split_edge(Halfedge_handle e1, Halfedge_handle e2); + + /*! issued just before a fictitious edge `e` is split into two. The vertex at + * infinity `v` corresponds to the split point, and will be used to separate + * the two resulting edges. + */ + virtual void before_split_fictitious_edge(Halfedge_handle e, Vertex_handle v); + + /*! issued immediately after an existing fictitious edge has been split into + * the two given fictitious edges `e1` and `e2`. + */ + virtual void after_split_fictitious_edge(Halfedge_handle e1, + Halfedge_handle e2); + + /*! issued just before a face `f` is split into two, as a result of the + * insertion of the edge `e` into the arrangement. + */ + virtual void before_split_face(Face_handle f, Halfedge_handle e); + + /*! issued immediately after the existing face `f1` has been split, such that + * a portion of it now forms a new face `f2`. The flag `is_hole` designates + * whether `f2` forms a hole (an inner CCB) inside `f1`. + */ + virtual void after_split_face(Face_handle f1, Face_handle f2, bool is_hole); + + /*! issued just before outer CCB `h` inside a face `f` is split into two, as a + * result of the removal of the edge `e` from the arrangement. + */ + virtual void before_split_outer_ccb(Face_handle f, Ccb_halfedge_circulator h, + Halfedge_handle e); + + /*! issued immediately after an outer CCB of the face `f` has been split, + * resulting in the two holes `h1` and `h2`. + */ + virtual void after_split_outer_ccb(Face_handle f, + Ccb_halfedge_circulator h1, + Ccb_halfedge_circulator h2); + + /*! issued just before an inner CCB `h` inside a face `f` is split into two, + * as a result of the removal of the edge `e` from the arrangement. + */ + virtual void before_split_inner_ccb(Face_handle f, Ccb_halfedge_circulator h, + Halfedge_handle e); + + /*! issued immediately after an inner CCB of the face `f` has been split, + * resulting in the two inner CCBs (holes) `h1` and `h2`. + */ + virtual void after_split_inner_ccb(Face_handle f, + Ccb_halfedge_circulator h1, + Ccb_halfedge_circulator h2); + + /*! issued just before the edge `e` is inserted as a new outer CCB inside the + * face `f`. + */ + virtual void before_add_outer_ccb(Face_handle f, Halfedge_handle e); + + /*! issued immediately after a new outer ccb `h` has been created. The outer + * ccb always consists of a single pair of twin halfedges. + */ + virtual void after_add_outer_ccb(Ccb_halfedge_circulator h); + + /*! issued just before the edge `e` is inserted as a new inner CCB inside the + * face `f`. + */ + virtual void before_add_inner_ccb(Face_handle f, Halfedge_handle e); + + /*! issued immediately after a new inner CCB `h` has been created. The inner + * CCB always consists of a single pair of twin halfedges. + */ + virtual void after_add_inner_ccb(Ccb_halfedge_circulator h); + + /*! issued just before the vertex `v` is inserted as an isolated vertex inside + * the face `f`. + */ + virtual void before_add_isolated_vertex(Face_handle f, Vertex_handle v); + + /*! issued immediately after the vertex `v` has been set as an isolated vertex. + */ + virtual void after_add_isolated_vertex(Vertex_handle v); + + /*! issued just before the two edges `e1` and `e2` are merged to form a single + * edge that will be associated with the \f$x\f$-monotone curve `c`. + */ + virtual void before_merge_edge(Halfedge_handle e1, Halfedge_handle e2, + const X_monotone_curve_2& c); + + /*! issued immediately after two edges have been merged to form the edge `e`. + */ + virtual void after_merge_edge(Halfedge_handle e); + + /*! issued just before the two fictitious edges `e1` and `e2` are merged to + * form a single fictitious edge. + */ + virtual void before_merge_fictitious_edge(Halfedge_handle e1, + Halfedge_handle e2); + + /*! issued immediately after two fictitious edges have been merged to form the + * fictitious edge `e`. + */ + virtual void after_merge_fictitious_edge(Halfedge_handle e); + + /*! issued just before the two edges `f1` and `f2` are merged to form a single + * face, following the removal of the edge `e` from the arrangement. + */ + virtual void before_merge_face(Face_handle f1, Face_handle f2, + Halfedge_handle e); + + /*! issued immediately after two faces have been merged to form the face `f`. + */ + virtual void after_merge_face(Face_handle f); + + /*! issued just before two outer ccbs `h1` and `h2` inside the face `f` are + * merged to form a single connected component, following the insertion of the + * edge `e` into the arrangement. + */ + virtual void before_merge_outer_ccb(Face_handle f, + Ccb_halfedge_circulator h1, + Ccb_halfedge_circulator h2, + Halfedge_handle e); + + /*! issued immediately after two outer cCBs have been merged to form a single + * outer CCB `h` inside the face `f`. + */ + virtual void after_merge_outer_ccb(Face_handle f, Ccb_halfedge_circulator h); + + /*! issued just before two inner CCBs `h1` and `h2` inside the face `f` are + * merged to form a single connected component, following the insertion of the + * edge `e` into the arrangement. + */ + virtual void before_merge_inner_ccb(Face_handle f, + Ccb_halfedge_circulator h1, + Ccb_halfedge_circulator h2, + Halfedge_handle e); + + /*! issued immediately after two inner CCBs have been merged to form a single + * inner CCB `h` inside the face `f`. + */ + virtual void after_merge_inner_ccb(Face_handle f, Ccb_halfedge_circulator h); + + /*! issued just before the outer CCB `h` is moved from one face to another. + * This can happen if the face `to_f` containing the outer CCB has just been + * split from `from_f`. + */ + virtual void before_move_outer_ccb(Face_handle from_f, Face_handle to_f, + Ccb_halfedge_circulator h); + + /*! issued immediately after the outer CCB `h` has been moved to a new face. + */ + virtual void after_move_outer_ccb(Ccb_halfedge_circulator h); + + /*! issued just before the inner CCB `h` is moved from one face to another. + * This can happen if the face `to_f` containing the inner CCB has just been + * split from `from_f`. + */ + virtual void before_move_inner_ccb(Face_handle from_f, Face_handle to_f, + Ccb_halfedge_circulator h); + + /*! issued immediately after the inner CCB `h` has been moved to a new face. + */ + virtual void after_move_inner_ccb(Ccb_halfedge_circulator h); + + /*! issued just before the isolated vertex `v` is moved from one face to + * another. This can happen if the face `to_f` containing the isolated vertex + * has just been split from `from_f`. + */ + virtual void before_move_isolated_vertex(Face_handle from_f, + Face_handle to_f, Vertex_handle v); + + /*! issued immediately after the isolated vertex `v` has been moved to a new + * face. + */ + virtual void after_move_isolated_vertex(Vertex_handle v); + + /*! issued just before the vertex `v` is removed from the arrangement. */ + virtual void before_remove_vertex(Vertex_handle v); + + /*! issued immediately after a vertex has been removed (and deleted) from the + * arrangement. + */ + virtual void after_remove_vertex(); + + /*! issued just before the edge `e` is removed from the arrangement. */ + virtual void before_remove_edge(Halfedge_handle e); + + /*! issued immediately after an edge has been removed (and deleted) from the + * arrangement. + */ + virtual void after_remove_edge(); + + /*! issued just before the outer ccb `f` is removed from inside the face `f`. + */ + virtual void before_remove_outer_ccb(Face_handle f, Ccb_halfedge_circulator h); + + /*! issued immediately after a outer CCB has been removed (and deleted) from + * inside the face `f`. + */ + virtual void after_remove_outer_ccb(Face_handle f); + + /*! issued just before the inner CCB `f` is removed from inside the face `f`. + */ + virtual void before_remove_inner_ccb(Face_handle f, + Ccb_halfedge_circulator h); + + /*! issued immediately after a inner CCB has been removed (and deleted) from + * inside the face `f`. + */ + virtual void after_remove_inner_ccb(Face_handle f); + + /// @} + +}; /* end Aos_observer */ +} /* end namespace CGAL */ diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_face_index_map.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_face_index_map.h index bcb0d5c378f2..21f071f4596d 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_face_index_map.h +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_face_index_map.h @@ -1,77 +1,69 @@ namespace CGAL { -/*! -\ingroup PkgArrangementOnSurface2Ref + /*! \ingroup PkgArrangementOnSurface2Ref + * + * `Arr_face_index_map` maintains a mapping of face handles of an attached + * arrangement object to indices (of type `unsigned int`). This class template + * is a model of the concept `ReadablePropertyMap`. A mapping between face + * handles and indices enables convenient usage of property-map classes supplied + * by `boost`. For example, the property-map class templates + * `boost::vector_property_map`, which is based on `std::vector`, and + * `boost::iterator_property_map`, which can be used to implement a property map + * based on a native \CC array, require the user to supply a mapping such as + * `Arr_face_index_map`. + * + * As new faces might be inserted into the attached arrangement, and + * existing faces might be removed, the notification mechanism is used + * to dynamically maintain the mapping of face handles to indices. + * + * \cgalModels{DefaultConstructible,CopyConstructible,Assignable,ReadablePropertyMap} + * + * \sa `Arr_vertex_index_map` + */ -`Arr_face_index_map` maintains a mapping of face handles of an -attached arrangement object to indices (of type `unsigned int`). -This class template is a model of the concept -`ReadablePropertyMap`. A mapping between face handles and indices -enables convenient usage of property-map classes supplied by `boost`. -For example, the property-map class templates -`boost::vector_property_map`, which is based on `std::vector`, -and `boost::iterator_property_map`, which can be used to implement -a property map based on a native \CC array, require the -user to supply a mapping such as `Arr_face_index_map`. + template + class Arr_face_index_map: public Arrangement_::Observer { + public: -As new faces might be inserted into the attached arrangement, and -existing faces might be removed, the notification mechanism is used -to dynamically maintain the mapping of face handles to indices. + /// \name Types + /// @{ + /*! the type of the attached arrangement. + */ + typedef Arrangement_ Arrangement_2; + typedef typename Arrangement_2::Base_aos Base_aos; -\cgalModels{DefaultConstructible,CopyConstructible,Assignable,ReadablePropertyMap} + typedef boost::readable_property_map_tag category; -\sa `Arr_observer` -\sa `Arr_vertex_index_map` -*/ + typedef unsigned int value_type; -template< typename Arrangement > -class Arr_face_index_map: public Arr_observer { -public: + typedef unsigned int reference; -/// \name Types -/// @{ + typedef Face_handle key_type; -/*! -the type of the attached arrangement. -*/ -typedef Arrangement Arrangement_2; + /*! The face handle type. + */ + typedef typename Base_aos::Face_handle Face_handle; -typedef boost::readable_property_map_tag category; + /*! The type of mapping of faces to indices. + */ + typedef Unique_hash_map Index_map; -typedef unsigned int value_type; + /// @} -typedef unsigned int reference; + /// \name Creation + /// @{ -typedef Face_handle key_type; + /*! constructs a map that is unattached to any arrangement instance. + */ + Arr_face_index_map(); -/*! -The face handle type. -*/ -typedef typename Arrangement_2::Face_handle Face_handle; + /*! constructs a map and attaches it to the given arrangement `arr`. + */ + Arr_face_index_map(Base_aos& arr); -/*! -The type of mapping of faces to indices. -*/ -typedef Unique_hash_map Index_map; + /// @} -/// @} + }; /* end Arr_accessor */ -/// \name Creation -/// @{ - -/*! -constructs a map that is unattached to any arrangement instance. -*/ -Arr_face_index_map(); - -/*! -constructs a map and attaches it to the given arrangement `arr`. -*/ -Arr_face_index_map(Arrangement_2& arr); - -/// @} - -}; /* end Arr_accessor */ } /* end namespace CGAL */ - diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_observer.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_observer.h index fe04d140aeb8..99abf22396f1 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_observer.h +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_observer.h @@ -2,408 +2,14 @@ namespace CGAL { /*! \ingroup PkgArrangementOnSurface2Ref * - * \anchor arr_refarr_obs - * - * `Arr_observer` serves as an abstract base class for all observer classes that - * are attached to an arrangement instance of type `Arrangement` and receive - * notifications from the arrangement. This base class handles the attachment - * of the observer to a given arrangement instance or to the detachment of the - * observer from this arrangement instance. It also gives a default empty - * implementation to all notification functions that are invoked by the - * arrangement to notify the observer on local or global changes it undergoes. - * The notification functions are all virtual functions, so they can be - * overridden by the concrete observer classes that inherit from `Arr_observer`. - * - * In order to implement a concrete arrangement observer-class, one simply needs - * to derive from `Arr_observer` and override the relevant notification - * functions. For example, if only face-split events are of interest, it is - * sufficient to override just `before_split_face()` (or just - * `after_split_face()`). - */ -template< typename Arrangement > -class Arr_observer { -public: - -/// \name Types -/// @{ - -/*! the type of the associated arrangement. */ -typedef unspecified_type Arrangement_2; - -/*! the point type. */ -typedef typename Arrangement_2::Point_2 Point_2; - -/*! the \f$ x\f$-monotone curve type. */ -typedef typename Arrangement_2::X_monotone_curve_2 X_monotone_curve_2; - -/*! */ -typedef typename Arrangement_2::Vertex_handle Vertex_handle; - -/*! */ -typedef typename Arrangement_2::Halfedge_handle Halfedge_handle; - -/*! */ -typedef typename Arrangement_2::Face_handle Face_handle; - -/*! represents a connected component of the boundary (CCB), either an outer - * boundary or an inner boundary (the latter is also referred to as a hole). - */ -typedef typename Arrangement_2::Ccb_halfedge_circulator Ccb_halfedge_circulator; - -/// @} - -/// \name Creation -/// @{ - -/*! constructs an observer that is unattached to any arrangement instance. */ -Arr_observer(); - -/*! constructs an observer and attaches it to the given arrangement `arr`. */ -Arr_observer(Arrangement_2& arr); - -/// @} - -/// \name Modifiers -/// @{ - -/*! attaches the observer to the given arrangement `arr`. */ -void attach(Arrangement_2& arr); - -/*! detaches the observer from its arrangement. */ -void detach(); - -/// @} - -/// \name Notifications on Global Arrangement Operations -/// @{ - -/*! issued just before the attached arrangement is assigned with the contents of - * another arrangement `arr`. - */ -virtual void before_assign(const Arrangement_2& arr); - -/*! issued immediately after the attached arrangement has been assigned with the - * contents of another arrangement. - */ -virtual void after_assign(); - -/*! issued just before the attached arrangement is cleared. */ -virtual void before_clear(); - -/*! issued immediately after the attached arrangement has been cleared, so it - * now consists only of a the unbounded face `uf`. - */ -virtual void after_clear(Face_handle uf); - -/*! issued just before a global function starts to modify the attached - * arrangement. It is guaranteed that no queries (especially no point-location - * queries) are issued until the termination of the global function is indicated - * by `after_global_change()`. - */ -virtual void before_global_change(); - -/*! -issued immediately after a global function has stopped modifying the -attached arrangement. -*/ -virtual void after_global_change(); - -/// @} - -/// \name Notifications on Attachment or Detachment -/// @{ - -/*! issued just before the observer is attached to the arrangement instance - * `arr`. - */ -virtual void before_attach(const Arrangement_2& arr); - -/*! issued immediately after the observer has been attached to an arrangement - * instance. - */ -virtual void after_attach(); - -/*! issued just before the observer is detached from its arrangement instance. - */ -virtual void before_detach(); - -/*! issued immediately after the observer has been detached from its arrangement - * instance. - */ -virtual void after_detach(); - -/// @} - -/// \name Notifications on Local Changes in the Arrangement -/// @{ - -/*! issued just before a new vertex that corresponds to the point `p` is - * created. - */ -virtual void before_create_vertex(const Point_2& p); - -/*! issued immediately after a new vertex `v` has been created. Note that the - * vertex still has no incident edges and is not connected to any other vertex. - */ -virtual void after_create_vertex(Vertex_handle v); - -/*! issued just before a new vertex at infinity is created, `cv` is the curve - * incident to the surface boundary, `ind` is the relevant curve-end, `ps_x` is - * the boundary condition of the vertex in \f$ x\f$ and `ps_y` is the boundary - * condition of the vertex in \f$ y\f$. - */ -virtual void before_create_boundary_vertex(const X_monotone_curve_2& cv, - Arr_curve_end ind, - Arr_parameter_space ps_x, - Arr_parameter_space ps_y); - -/*! issued immediately after a new vertex `v` has been created. Note that the - * vertex still has no incident edges and is not connected to any other vertex. - */ -virtual void after_create_boundary_vertex(Vertex_handle v); - -/*! issued just before a new edge that corresponds to the \f$ x\f$-monotone - * curve `c` and connects the vertices `v1` and `v2` is created. - */ -virtual void before_create_edge(const X_monotone_curve_2& c, - Vertex_handle v1, Vertex_handle v2); - -/*! issued immediately after a new edge `e` has been created. The halfedge that - * is sent to this function is always directed from `v1` to `v2` (see above). - */ -virtual void after_create_edge(Halfedge_handle e); - -/*! issued just before a vertex `v` is modified to be associated with the point - * `p`. - */ -virtual void before_modify_vertex(Vertex_handle v, const Point_2& p); - -/*! issued immediately after an existing vertex `v` has been modified. */ -virtual void after_modify_vertex(Vertex_handle v); - -/*! issued just before an edge `e` is modified to be associated with the \f$ - * x\f$-monotone curve `c`. - */ -virtual void before_modify_edge(Halfedge_handle e, const X_monotone_curve_2& c); - -/*! issued immediately after an existing edge `e` has been modified. */ -virtual void after_modify_edge(Halfedge_handle e); - -/*! issued just before an edge `e` is split into two edges that should be - * associated with the \f$ x\f$-monotone curves `c1` and `c2`. The vertex `v` - * corresponds to the split point, and will be used to separate the two - * resulting edges. - */ -virtual void before_split_edge(Halfedge_handle e, Vertex_handle v, - const X_monotone_curve_2& c1, - const X_monotone_curve_2& c2); - -/*! issued immediately after an existing edge has been split into the two given - * edges `e1` and `e2`. - */ -virtual void after_split_edge(Halfedge_handle e1, Halfedge_handle e2); - -/*! issued just before a fictitious edge `e` is split into two. The vertex at - * infinity `v` corresponds to the split point, and will be used to separate the - * two resulting edges. - */ -virtual void before_split_fictitious_edge(Halfedge_handle e, Vertex_handle v); - -/*! issued immediately after an existing fictitious edge has been split into the - * two given fictitious edges `e1` and `e2`. - */ -virtual void after_split_fictitious_edge(Halfedge_handle e1, Halfedge_handle e2); - -/*! issued just before a face `f` is split into two, as a result of the - * insertion of the edge `e` into the arrangement. - */ -virtual void before_split_face(Face_handle f, Halfedge_handle e); - -/*! issued immediately after the existing face `f1` has been split, such that a - * portion of it now forms a new face `f2`. The flag `is_hole` designates - * whether `f2` forms a hole (an inner CCB) inside `f1`. - */ -virtual void after_split_face(Face_handle f1, Face_handle f2, bool is_hole); - -/*! issued just before outer ccb `h` inside a face `f` is split into two, as a - * result of the removal of the edge `e` from the arrangement. - */ -virtual void before_split_outer_ccb(Face_handle f, Ccb_halfedge_circulator h, - Halfedge_handle e); - -/*! issued immediately after an outer ccb of the face `f` has been split, - * resulting in the two holes `h1` and `h2`. - */ -virtual void after_split_outer_ccb(Face_handle f, - Ccb_halfedge_circulator h1, - Ccb_halfedge_circulator h2); - -/*! issued just before an inner ccb `h` inside a face `f` is split into two, as - * a result of the removal of the edge `e` from the arrangement. - */ -virtual void before_split_inner_ccb(Face_handle f, Ccb_halfedge_circulator h, - Halfedge_handle e); - -/*! issued immediately after an inner ccb of the face `f` has been split, - * resulting in the two inner CCBs (holes) `h1` and `h2`. - */ -virtual void after_split_inner_ccb(Face_handle f, - Ccb_halfedge_circulator h1, - Ccb_halfedge_circulator h2); - -/*! issued just before the edge `e` is inserted as a new outer ccb inside the - * face `f`. - */ -virtual void before_add_outer_ccb(Face_handle f, Halfedge_handle e); - -/*! issued immediately after a new outer ccb `h` has been created. The outer ccb - * always consists of a single pair of twin halfedges. - */ -virtual void after_add_outer_ccb(Ccb_halfedge_circulator h); - -/*! issued just before the edge `e` is inserted as a new inner ccb inside the - * face `f`. - */ -virtual void before_add_inner_ccb(Face_handle f, Halfedge_handle e); - -/*! issued immediately after a new inner ccb `h` has been created. The inner ccb - * always consists of a single pair of twin halfedges. - */ -virtual void after_add_inner_ccb(Ccb_halfedge_circulator h); - -/*! issued just before the vertex `v` is inserted as an isolated vertex inside - * the face `f`. - */ -virtual void before_add_isolated_vertex(Face_handle f, Vertex_handle v); - -/*! issued immediately after the vertex `v` has been set as an isolated vertex. - */ -virtual void after_add_isolated_vertex(Vertex_handle v); - -/*! issued just before the two edges `e1` and `e2` are merged to form a single - * edge that will be associated with the \f$ x\f$-monotone curve `c`. -*/ -virtual void before_merge_edge(Halfedge_handle e1, Halfedge_handle e2, - const X_monotone_curve_2& c); - -/*! issued immediately after two edges have been merged to form the edge `e`. */ -virtual void after_merge_edge(Halfedge_handle e); - -/*! issued just before the two fictitious edges `e1` and `e2` are merged to form - * a single fictitious edge. - */ -virtual void before_merge_fictitious_edge(Halfedge_handle e1, - Halfedge_handle e2); - -/*! issued immediately after two fictitious edges have been merged to form the - * fictitious edge `e`. - */ -virtual void after_merge_fictitious_edge(Halfedge_handle e); - -/*! issued just before the two edges `f1` and `f2` are merged to form a single - * face, following the removal of the edge `e` from the arrangement. - */ -virtual void before_merge_face(Face_handle f1, Face_handle f2, - Halfedge_handle e); - -/*! issued immediately after two faces have been merged to form the face `f`. */ -virtual void after_merge_face(Face_handle f); - -/*! issued just before two outer ccbs `h1` and `h2` inside the face `f` are - * merged to form a single connected component, following the insertion of the - * edge `e` into the arrangement. - */ -virtual void before_merge_outer_ccb(Face_handle f, - Ccb_halfedge_circulator h1, - Ccb_halfedge_circulator h2, - Halfedge_handle e); - -/*! issued immediately after two outer ccbs have been merged to form a single - * outer ccb `h` inside the face `f`. - */ -virtual void after_merge_outer_ccb(Face_handle f, Ccb_halfedge_circulator h); - -/*! issued just before two inner ccbs `h1` and `h2` inside the face `f` are - * merged to form a single connected component, following the insertion of the - * edge `e` into the arrangement. - */ -virtual void before_merge_inner_ccb(Face_handle f, - Ccb_halfedge_circulator h1, - Ccb_halfedge_circulator h2, - Halfedge_handle e); - -/*! issued immediately after two inner ccbs have been merged to form a single - * inner ccb `h` inside the face `f`. - */ -virtual void after_merge_inner_ccb(Face_handle f, Ccb_halfedge_circulator h); - -/*! issued just before the outer ccb `h` is moved from one face to another. - * This can happen if the face `to_f` containing the outer ccb has just been - * split from `from_f`. - */ -virtual void before_move_outer_ccb(Face_handle from_f, Face_handle to_f, - Ccb_halfedge_circulator h); - -/*! issued immediately after the outer ccb `h` has been moved to a new face. */ -virtual void after_move_outer_ccb(Ccb_halfedge_circulator h); - -/*! issued just before the inner ccb `h` is moved from one face to another. - * This can happen if the face `to_f` containing the inner ccb has just been - * split from `from_f`. - */ -virtual void before_move_inner_ccb(Face_handle from_f, Face_handle to_f, - Ccb_halfedge_circulator h); - -/*! issued immediately after the inner ccb `h` has been moved to a new face. */ -virtual void after_move_inner_ccb(Ccb_halfedge_circulator h); - -/*! issued just before the isolated vertex `v` is moved from one face to - * another. This can happen if the face `to_f` containing the isolated vertex - * has just been split from `from_f`. - */ -virtual void before_move_isolated_vertex(Face_handle from_f, - Face_handle to_f, Vertex_handle v); - -/*! issued immediately after the isolated vertex `v` has been moved to a new - * face. - */ -virtual void after_move_isolated_vertex(Vertex_handle v); - -/*! issued just before the vertex `v` is removed from the arrangement. */ -virtual void before_remove_vertex(Vertex_handle v); - -/*! issued immediately after a vertex has been removed (and deleted) from the - * arrangement. - */ -virtual void after_remove_vertex(); - -/*! issued just before the edge `e` is removed from the arrangement. */ -virtual void before_remove_edge(Halfedge_handle e); - -/*! issued immediately after an edge has been removed (and deleted) from the - * arrangement. - */ -virtual void after_remove_edge(); - -/*! issued just before the outer ccb `f` is removed from inside the face `f`. */ -virtual void before_remove_outer_ccb(Face_handle f, Ccb_halfedge_circulator h); - -/*! issued immediately after a outer ccb has been removed (and deleted) from - * inside the face `f`. - */ -virtual void after_remove_outer_ccb(Face_handle f); - -/*! issued just before the inner ccb `f` is removed from inside the face `f`. - */ -virtual void before_remove_inner_ccb(Face_handle f, -Ccb_halfedge_circulator h); - -/*! issued immediately after a inner ccb has been removed (and deleted) from - * inside the face `f`. + * `Arr_observer` is an alias for + * Aos_observer`, + * where `Arrangement_2` derives from `Arrangement_on_surface_2` and the latter + * is an instance of the template + * `CGAL::Arrangement_on_surface_2`. */ -virtual void after_remove_inner_ccb(Face_handle f); -/// @} +template +using Arr_observer = typename Arrangement_::Observer; -}; /* end Arr_observer */ -} /* end namespace CGAL */ +} // namespace CGAL diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_triangulation_point_location.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_triangulation_point_location.h index 5106f32ec366..f0799d553be7 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_triangulation_point_location.h +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_triangulation_point_location.h @@ -1,7 +1,6 @@ namespace CGAL { -/*! - * \ingroup PkgArrangementOnSurface2PointLocation +/*! \ingroup PkgArrangementOnSurface2PointLocation * * \anchor arr_reftri_pl * @@ -23,7 +22,6 @@ namespace CGAL { */ template -class Arr_triangulation_point_location : public Arr_observer -{} +class Arr_triangulation_point_location : public Arrangement_::Observer {} } diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_vertex_index_map.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_vertex_index_map.h index 1c915a6b23cf..e5bb1449dbf2 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_vertex_index_map.h +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/Arr_vertex_index_map.h @@ -1,82 +1,69 @@ namespace CGAL { -/*! -\ingroup PkgArrangementOnSurface2Ref + /*! \ingroup PkgArrangementOnSurface2Ref + * + * `Arr_vertex_index_map` maintains a mapping of vertex handles of an attached + * arrangement object to indices (of type `unsigned int`). This class template + * is a model of the concept `ReadablePropertyMap`. A mapping between vertex + * handles and indices enables convenient usage of property-map classes supplied + * by `boost`. For example, the property-map class templates + * `boost::vector_property_map`, which is based on `std::vector`, and + * `boost::iterator_property_map`, which can be used to implement a property map + * based on a native \CC array, require the user to supply a mapping such as + * `Arr_vertex_index_map`. + * + * As new vertices might be inserted into the attached arrangement, and + * existing vertices might be removed, the notification mechanism is used + * to dynamically maintain the mapping of vertex handles to indices. + * + * \cgalModels{DefaultConstructible,CopyConstructible,Assignable,ReadablePropertyMap} + * + * \sa `Arr_face_index_map` + */ -`Arr_vertex_index_map` maintains a mapping of vertex handles of an -attached arrangement object to indices (of type `unsigned int`). -This class template is a model of the concept -`ReadablePropertyMap`. A mapping between vertex handles and indices -enables convenient usage of property-map classes supplied by `boost`. -For example, the property-map class templates -`boost::vector_property_map`, which is based on `std::vector`, -and `boost::iterator_property_map`, which can be used to implement -a property map based on a native \CC array, require the -user to supply a mapping such as `Arr_vertex_index_map`. + template< typename Arrangement_> + class Arr_vertex_index_map: public Arrangement_::Observer { + public: -As new vertices might be inserted into the attached arrangement, and -existing vertices might be removed, the notification mechanism is used -to dynamically maintain the mapping of vertex handles to indices. + /// \name Types + /// @{ + /*! the type of the attached arrangement. + */ + typedef Arrangement_ Arrangement_2; + typedef typename Arrangement_2::Base_aos Base_aos; -\cgalModels{DefaultConstructible,CopyConstructible,Assignable,ReadablePropertyMap} + typedef boost::readable_property_map_tag category; -\sa `Arr_observer` -\sa `Arr_face_index_map` -*/ + typedef unsigned int value_type; -template< typename Arrangement > -class Arr_vertex_index_map: public Arr_observer { -public: + typedef unsigned int reference; -/// \name Types -/// @{ + typedef Vertex_handle key_type; -/*! -the type of the attached arrangement. -*/ -typedef Arrangement Arrangement_2; + /*! The vertex handle type. + */ + typedef typename Base_aos::Vertex_handle Vertex_handle; -typedef boost::readable_property_map_tag category; + /*! The type of mapping of vertices to indices. + */ + typedef Unique_hash_map Index_map; -typedef unsigned int value_type; + /// @} -typedef unsigned int reference; + /// \name Creation + /// @{ -typedef Vertex_handle key_type; + /*! constructs a map that is unattached to any arrangement instance. + */ + Arr_vertex_index_map(); -/*! -The vertex handle type. -*/ -typedef typename Arrangement_2::Vertex_handle Vertex_handle; + /*! constructs a map and attaches it to the given arrangement `arr`. + */ + Arr_vertex_index_map(Base_aos& arr); -/*! -The type of mapping of vertices to indices. -*/ -typedef Unique_hash_map Index_map; + /// @} -/// @} + }; /* end Arr_accessor */ -/// \name Creation -/// @{ - -/*! -constructs a map that is unattached to any arrangement instance. -*/ -Arr_vertex_index_map(); - -/*! -constructs a map and attaches it to the given arrangement `arr`. -*/ -Arr_vertex_index_map(Arrangement_2& arr); - -/// @} - -}; /* end Arr_accessor */ } /* end namespace CGAL */ - - - - - - diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/draw_arrangement_2.h b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/draw_arrangement_2.h index f415f5c9e7ec..a22a398115e0 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/draw_arrangement_2.h +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/CGAL/draw_arrangement_2.h @@ -28,9 +28,9 @@ namespace CGAL { * opens a new window and draws `arr`, an instance of the `CGAL::Arrangement_2` * class template. A call to this function is blocking; that is, the program * continues only after the user closes the window. This function requires - * `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is + * `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is * defined. Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link - * with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. + * with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. * * \tparam GeometryTraits_2 a geometry traits type, a model of a 2D arrangement * traits concept. At this point it must be an instance of either diff --git a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/PackageDescription.txt b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/PackageDescription.txt index f15213dcdebd..1a82a431b566 100644 --- a/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/PackageDescription.txt +++ b/Arrangement_on_surface_2/doc/Arrangement_on_surface_2/PackageDescription.txt @@ -199,7 +199,8 @@ implemented as peripheral classes or as free (global) functions. - `CGAL::Arrangement_2` - `CGAL::Arrangement_with_history_2` - `CGAL::Arr_accessor` -- `CGAL::Arr_observer` +- `CGAL::Aos_observer` +- `CGAL::Arr_observer` - `CGAL::Arrangement_2::Vertex` - `CGAL::Arrangement_2::Halfedge` - `CGAL::Arrangement_2::Face` diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/CMakeLists.txt b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/CMakeLists.txt index bd3e707c4b45..a7d1965c8cd4 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/CMakeLists.txt +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Arrangement_on_surface_2_Examples) -find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( @@ -15,7 +15,7 @@ foreach(cppfile ${cppfiles}) create_single_source_cgal_program("${cppfile}") endforeach() -if(CGAL_Qt5_FOUND) +if(CGAL_Qt6_FOUND) target_link_libraries(draw_arr PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(linear_conics PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(parabolas PUBLIC CGAL::CGAL_Basic_viewer) diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Edge_length.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Edge_length.h index 7ac8eb85dbc0..fe533d91c193 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Edge_length.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Edge_length.h @@ -4,15 +4,15 @@ #include #include -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef Kernel::FT Number_type; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Number_type = Kernel::FT; template struct Edge_length { // Boost property-type definitions. - typedef boost::readable_property_map_tag category; - typedef Number_type value_type; - typedef value_type reference; - typedef typename Arrangement::Halfedge_handle key_type; + using category = boost::readable_property_map_tag; + using value_type = Number_type; + using reference = value_type; + using key_type = typename Arrangement::Halfedge_handle; value_type operator()(typename Arrangement::Halfedge_handle e) const { const auto diff_x = e->target()->point().x() - e->source()->point().x(); diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Extended_face_property_map.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Extended_face_property_map.h index d85ce59f669d..e98b15799cf2 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Extended_face_property_map.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Extended_face_property_map.h @@ -4,13 +4,13 @@ // A property map that reads/writes the information to/from the extended face. template class Extended_face_property_map { public: - typedef typename Arrangement::Face_handle Face_handle; + using Face_handle = typename Arrangement::Face_handle; // Boost property type definitions. - typedef boost::read_write_property_map_tag category; - typedef Type value_type; - typedef value_type& reference; - typedef Face_handle key_type; + using category = boost::read_write_property_map_tag; + using value_type = Type; + using reference = value_type&; + using key_type = Face_handle; // The get function is required by the property map concept. friend reference get(const Extended_face_property_map& /* map */, key_type key) diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Overlay_color_traits.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Overlay_color_traits.h index 66d31c7c6506..6c04c312cb4f 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Overlay_color_traits.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/Overlay_color_traits.h @@ -2,13 +2,13 @@ #define OVERLAY_COLOR_TRAITS_H template struct Overlay_color_traits { - typedef unsigned int Color; - typedef typename Arrangement::Vertex_const_handle V_const_handle; - typedef typename Arrangement::Halfedge_const_handle H_const_handle; - typedef typename Arrangement::Face_const_handle F_const_handle; - typedef typename Arrangement::Vertex_handle V_handle; - typedef typename Arrangement::Halfedge_handle H_handle; - typedef typename Arrangement::Face_handle F_handle; + using Color = unsigned int; + using V_const_handle = typename Arrangement::Vertex_const_handle; + using H_const_handle = typename Arrangement::Halfedge_const_handle; + using F_const_handle = typename Arrangement::Face_const_handle; + using V_handle = typename Arrangement::Vertex_handle; + using H_handle = typename Arrangement::Halfedge_handle; + using F_handle = typename Arrangement::Face_handle; // Compute the average of the red, green, and blue components separately. Color blend(Color color1, Color color2) const diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_curves.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_curves.cpp index 8d0a27ae5705..f8bc222897b7 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_curves.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_curves.cpp @@ -21,10 +21,10 @@ int main () #include "integer_type.h" #include "arr_print.h" -typedef CGAL::Arr_algebraic_segment_traits_2 Traits; -typedef CGAL::Arrangement_2 Arrangement; -typedef Traits::Curve_2 Curve; -typedef Traits::Polynomial_2 Polynomial; +using Traits = CGAL::Arr_algebraic_segment_traits_2; +using Arrangement = CGAL::Arrangement_2; +using Curve = Traits::Curve_2; +using Polynomial = Traits::Polynomial_2; int main() { CGAL::IO::set_pretty_mode(std::cout); // for nice printouts. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_segments.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_segments.cpp index 69c4a66ea689..aba48b9f2224 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_segments.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/algebraic_segments.cpp @@ -21,15 +21,15 @@ int main () #include "integer_type.h" #include "arr_print.h" -typedef CGAL::Arr_algebraic_segment_traits_2 Traits; -typedef CGAL::Arrangement_2 Arrangement; -typedef Traits::Curve_2 Curve; -typedef Traits::Polynomial_2 Polynomial; -typedef Traits::Algebraic_real_1 Algebraic_real; -typedef Traits::X_monotone_curve_2 X_monotone_curve; -typedef Traits::Point_2 Point; - -typedef std::variant Make_x_monotone_result; +using Traits = CGAL::Arr_algebraic_segment_traits_2; +using Arrangement = CGAL::Arrangement_2; +using Curve = Traits::Curve_2; +using Polynomial = Traits::Polynomial_2; +using Algebraic_real = Traits::Algebraic_real_1; +using X_monotone_curve = Traits::X_monotone_curve_2; +using Point = Traits::Point_2; + +using Make_x_monotone_result = std::variant; int main() { Traits traits; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_Bezier.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_Bezier.h index 30d978942c8d..b78d0192ca44 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_Bezier.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_Bezier.h @@ -6,17 +6,17 @@ #include #include -typedef CGAL::CORE_algebraic_number_traits Nt_traits; -typedef Nt_traits::Rational NT; -typedef Nt_traits::Rational Rational; -typedef Nt_traits::Algebraic Algebraic; -typedef CGAL::Cartesian Rat_kernel; -typedef CGAL::Cartesian Alg_kernel; -typedef Rat_kernel::Point_2 Rat_point; -typedef CGAL::Arr_Bezier_curve_traits_2 - Traits; -typedef Traits::X_monotone_curve_2 Bezier_x_monotone_curve; -typedef Traits::Curve_2 Bezier_curve; -typedef CGAL::Arrangement_2 Arrangement; +using Nt_traits = CGAL::CORE_algebraic_number_traits; +using NT = Nt_traits::Rational; +using Rational = Nt_traits::Rational; +using Algebraic = Nt_traits::Algebraic; +using Rat_kernel = CGAL::Cartesian; +using Alg_kernel = CGAL::Cartesian; +using Rat_point = Rat_kernel::Point_2; +using Traits = + CGAL::Arr_Bezier_curve_traits_2; +using Bezier_x_monotone_curve = Traits::X_monotone_curve_2; +using Bezier_curve = Traits::Curve_2; +using Arrangement = CGAL::Arrangement_2; #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_circular.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_circular.h index 752a1e84a2df..da88c3dfeb15 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_circular.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_circular.h @@ -5,16 +5,16 @@ #include #include -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef Kernel::FT Number_type; -typedef CGAL::Arr_circle_segment_traits_2 Traits; -typedef Traits::CoordNT CoordNT; -typedef Traits::Point_2 Point; -typedef Traits::Curve_2 Curve; -typedef Traits::X_monotone_curve_2 X_monotone_curve; -typedef Traits::Rational_point_2 Rational_point; -typedef Traits::Rational_segment_2 Segment; -typedef Traits::Rational_circle_2 Circle; -typedef CGAL::Arrangement_2 Arrangement; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Number_type = Kernel::FT; +using Traits = CGAL::Arr_circle_segment_traits_2; +using CoordNT = Traits::CoordNT; +using Point = Traits::Point_2; +using Curve = Traits::Curve_2; +using X_monotone_curve = Traits::X_monotone_curve_2; +using Rational_point = Traits::Rational_point_2; +using Segment = Traits::Rational_segment_2; +using Circle = Traits::Rational_circle_2; +using Arrangement = CGAL::Arrangement_2; #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_exact_construction_segments.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_exact_construction_segments.h index 9a80ccddf386..8673bf88d2a8 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_exact_construction_segments.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_exact_construction_segments.h @@ -5,19 +5,19 @@ #include #include -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef Kernel::FT Number_type; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Number_type = Kernel::FT; -typedef CGAL::Arr_segment_traits_2 Traits; -typedef Traits::Point_2 Point; -typedef Traits::X_monotone_curve_2 Segment; +using Traits = CGAL::Arr_segment_traits_2; +using Point = Traits::Point_2; +using Segment = Traits::X_monotone_curve_2; -typedef CGAL::Arrangement_2 Arrangement; -typedef Arrangement::Vertex_handle Vertex_handle; -typedef Arrangement::Halfedge_handle Halfedge_handle; -typedef Arrangement::Face_handle Face_handle; -typedef Arrangement::Vertex_const_handle Vertex_const_handle; -typedef Arrangement::Halfedge_const_handle Halfedge_const_handle; -typedef Arrangement::Face_const_handle Face_const_handle; +using Arrangement = CGAL::Arrangement_2; +using Vertex_handle = Arrangement::Vertex_handle; +using Halfedge_handle = Arrangement::Halfedge_handle; +using Face_handle = Arrangement::Face_handle; +using Vertex_const_handle = Arrangement::Vertex_const_handle; +using Halfedge_const_handle = Arrangement::Halfedge_const_handle; +using Face_const_handle = Arrangement::Face_const_handle; #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_geodesic_on_sphere.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_geodesic_on_sphere.h index 5223a580111e..295c43cde6cf 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_geodesic_on_sphere.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_geodesic_on_sphere.h @@ -6,21 +6,20 @@ #include #include -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef Kernel::FT Number_type; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Number_type = Kernel::FT; -typedef CGAL::Arr_geodesic_arc_on_sphere_traits_2 Geom_traits; -typedef Geom_traits::Point_2 Point; -typedef Geom_traits::X_monotone_curve_2 X_monotone_curve; -typedef CGAL::Arr_spherical_topology_traits_2 Topol_traits; -typedef CGAL::Arrangement_on_surface_2 - Arrangement; +using Geom_traits = CGAL::Arr_geodesic_arc_on_sphere_traits_2; +using Point = Geom_traits::Point_2; +using X_monotone_curve = Geom_traits::X_monotone_curve_2; +using Topol_traits = CGAL::Arr_spherical_topology_traits_2; +using Arrangement = CGAL::Arrangement_on_surface_2; -typedef Arrangement::Vertex_handle Vertex_handle; -typedef Arrangement::Halfedge_handle Halfedge_handle; -typedef Arrangement::Face_handle Face_handle; -typedef Arrangement::Vertex_const_handle Vertex_const_handle; -typedef Arrangement::Halfedge_const_handle Halfedge_const_handle; -typedef Arrangement::Face_const_handle Face_const_handle; +using Vertex_handle = Arrangement::Vertex_handle; +using Halfedge_handle = Arrangement::Halfedge_handle; +using Face_handle = Arrangement::Face_handle; +using Vertex_const_handle = Arrangement::Vertex_const_handle; +using Halfedge_const_handle = Arrangement::Halfedge_const_handle; +using Face_const_handle = Arrangement::Face_const_handle; #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_inexact_construction_segments.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_inexact_construction_segments.h index d38181e0f330..a6c2f4d9d8c0 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_inexact_construction_segments.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_inexact_construction_segments.h @@ -5,16 +5,16 @@ #include #include -typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel; -typedef Kernel::FT Number_type; +using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; +using Number_type = Kernel::FT; -typedef CGAL::Arr_non_caching_segment_traits_2 Traits; -typedef Traits::Point_2 Point; -typedef Traits::X_monotone_curve_2 Segment; +using Traits = CGAL::Arr_non_caching_segment_traits_2; +using Point = Traits::Point_2; +using Segment = Traits::X_monotone_curve_2; -typedef CGAL::Arrangement_2 Arrangement; -typedef Arrangement::Vertex_handle Vertex_handle; -typedef Arrangement::Halfedge_handle Halfedge_handle; -typedef Arrangement::Face_handle Face_handle; +using Arrangement = CGAL::Arrangement_2; +using Vertex_handle = Arrangement::Vertex_handle; +using Halfedge_handle = Arrangement::Halfedge_handle; +using Face_handle = Arrangement::Face_handle; #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_linear.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_linear.h index 8dad9c70f593..d30ad3ae4dbd 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_linear.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_linear.h @@ -5,22 +5,22 @@ #include #include -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef Kernel::FT Number_type; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Number_type = Kernel::FT; -typedef CGAL::Arr_linear_traits_2 Traits; -typedef Traits::Point_2 Point; -typedef Traits::Segment_2 Segment; -typedef Traits::Ray_2 Ray; -typedef Traits::Line_2 Line; -typedef Traits::X_monotone_curve_2 X_monotone_curve; +using Traits = CGAL::Arr_linear_traits_2; +using Point = Traits::Point_2; +using Segment = Traits::Segment_2; +using Ray = Traits::Ray_2; +using Line = Traits::Line_2; +using X_monotone_curve = Traits::X_monotone_curve_2; -typedef CGAL::Arrangement_2 Arrangement; -typedef Arrangement::Vertex_handle Vertex_handle; -typedef Arrangement::Halfedge_handle Halfedge_handle; -typedef Arrangement::Face_handle Face_handle; -typedef Arrangement::Vertex_const_handle Vertex_const_handle; -typedef Arrangement::Halfedge_const_handle Halfedge_const_handle; -typedef Arrangement::Face_const_handle Face_const_handle; +using Arrangement = CGAL::Arrangement_2; +using Vertex_handle = Arrangement::Vertex_handle; +using Halfedge_handle = Arrangement::Halfedge_handle; +using Face_handle = Arrangement::Face_handle; +using Vertex_const_handle = Arrangement::Vertex_const_handle; +using Halfedge_const_handle = Arrangement::Halfedge_const_handle; +using Face_const_handle = Arrangement::Face_const_handle; #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_polylines.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_polylines.h index 710f3f05f8b2..97f0413c5216 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_polylines.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_polylines.h @@ -6,14 +6,14 @@ #include #include -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef Kernel::FT Number_type; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Number_type = Kernel::FT; -typedef CGAL::Arr_segment_traits_2 Segment_traits; -typedef CGAL::Arr_polyline_traits_2 Traits; -typedef Traits::Point_2 Point; -typedef Traits::Segment_2 Segment; -typedef Traits::Curve_2 My_polyline; -typedef CGAL::Arrangement_2 Arrangement; +using Segment_traits = CGAL::Arr_segment_traits_2; +using Traits = CGAL::Arr_polyline_traits_2; +using Point = Traits::Point_2; +using Segment = Traits::Segment_2; +using My_polyline = Traits::Curve_2; +using Arrangement = CGAL::Arrangement_2; #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_rat_functions.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_rat_functions.h index 79abccb062ca..f3d42944e805 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_rat_functions.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/arr_rat_functions.h @@ -7,14 +7,14 @@ #include #include -typedef CORE::BigInt Number_type; -typedef CGAL::Algebraic_kernel_d_1 AK1; -typedef CGAL::Arr_rational_function_traits_2 Traits; +using Number_type = CORE::BigInt; +using AK1 = CGAL::Algebraic_kernel_d_1; +using Traits = CGAL::Arr_rational_function_traits_2; -typedef Traits::Polynomial_1 Polynomial; -typedef Traits::Algebraic_real_1 Alg_real; -typedef Traits::Bound Bound; +using Polynomial = Traits::Polynomial_1; +using Alg_real = Traits::Algebraic_real_1; +using Bound = Traits::Bound; -typedef CGAL::Arrangement_2 Arrangement; +using Arrangement = CGAL::Arrangement_2; #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/batched_point_location.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/batched_point_location.cpp index f2cbc29815d4..a88e118f38c0 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/batched_point_location.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/batched_point_location.cpp @@ -10,8 +10,8 @@ #include "arr_inexact_construction_segments.h" #include "point_location_utils.h" -typedef CGAL::Arr_point_location_result Point_location_result; -typedef std::pair Query_result; +using Point_location_result = CGAL::Arr_point_location_result; +using Query_result = std::pair; int main() { // Construct the arrangement. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_dual_adapter.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_dual_adapter.cpp index d059facf8f95..3d0f0b65c314 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_dual_adapter.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_dual_adapter.cpp @@ -15,12 +15,12 @@ #include "arr_exact_construction_segments.h" #include "arr_print.h" -typedef CGAL::Arr_face_extended_dcel Dcel; -typedef CGAL::Arrangement_2 Ex_arrangement; -typedef CGAL::Dual Dual_arrangement; -typedef CGAL::Arr_face_index_map Face_index_map; -typedef Extended_face_property_map - Face_property_map; +using Dcel = CGAL::Arr_face_extended_dcel; +using Ex_arrangement = CGAL::Arrangement_2; +using Dual_arrangement = CGAL::Dual; +using Face_index_map = CGAL::Arr_face_index_map; +using Face_property_map = + Extended_face_property_map; int main() { // Construct an arrangement of seven intersecting line segments. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_primal_adapter.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_primal_adapter.cpp index 163125c0e3df..237c6fede77e 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_primal_adapter.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_primal_adapter.cpp @@ -5,7 +5,7 @@ #include -#include +#include #include #include @@ -15,8 +15,8 @@ #include "arr_exact_construction_segments.h" #include "Edge_length.h" -typedef CGAL::Arr_vertex_index_map Vertex_index_map; -typedef Edge_length My_edge_length; +using Vertex_index_map = CGAL::Arr_vertex_index_map; +using My_edge_length = Edge_length; int main() { // Construct an arrangement of seven intersecting line segments. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bounded_vertical_decomposition.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bounded_vertical_decomposition.cpp index 3f1403ecebdb..77137ced4873 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bounded_vertical_decomposition.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bounded_vertical_decomposition.cpp @@ -8,9 +8,9 @@ #include "arr_exact_construction_segments.h" -typedef std::pair Object_pair; -typedef std::pair Vert_decomp_entry; -typedef std::list Vert_decomp_list; +using Object_pair = std::pair; +using Vert_decomp_entry = std::pair; +using Vert_decomp_list = std::list; int main() { // Construct the arrangement. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/circular_line_arcs.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/circular_line_arcs.cpp index 750986dda1eb..0d3e8cc3d169 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/circular_line_arcs.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/circular_line_arcs.cpp @@ -15,23 +15,23 @@ #include -typedef CGAL::Quotient NT; -typedef CGAL::Cartesian Linear_k; -typedef CGAL::Algebraic_kernel_for_circles_2_2 Algebraic_k; -typedef CGAL::Circular_kernel_2 Circular_k; +using NT = CGAL::Quotient; +using Linear_k = CGAL::Cartesian; +using Algebraic_k = CGAL::Algebraic_kernel_for_circles_2_2; +using Circular_k = CGAL::Circular_kernel_2; -typedef Circular_k::Point_2 Point_2; -typedef Circular_k::Circle_2 Circle_2; -typedef Circular_k::Circular_arc_2 Circular_arc_2; -typedef Circular_k::Line_arc_2 Line_arc_2; +using Point_2 = Circular_k::Point_2; +using Circle_2 = Circular_k::Circle_2; +using Circular_arc_2 = Circular_k::Circular_arc_2; +using Line_arc_2 = Circular_k::Line_arc_2; -typedef std::variant< Circular_arc_2, Line_arc_2> Arc_2; -typedef std::vector< Arc_2> ArcContainer; +using Arc_2 = std::variant< Circular_arc_2, Line_arc_2>; +using ArcContainer = std::vector< Arc_2>; -typedef CGAL::Arr_circular_line_arc_traits_2 Traits; +using Traits = CGAL::Arr_circular_line_arc_traits_2; -typedef CGAL::Arrangement_2 Arrangement; -typedef CGAL::Arr_naive_point_location Point_location; +using Arrangement = CGAL::Arrangement_2; +using Point_location = CGAL::Arr_naive_point_location; int main() { CGAL::Random generatorOfgenerator; @@ -46,7 +46,7 @@ int main() { for (int i = 0; i < 10; i++) { x1 = theRandom.get_int(random_min,random_max); y1 = theRandom.get_int(random_min,random_max); - do{ + do { x2 = theRandom.get_int(random_min,random_max); y2 = theRandom.get_int(random_min,random_max); } while((x1 == x2) && (y1 == y2)); diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/conic_multiplicities.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/conic_multiplicities.cpp index 752f6e21f9dd..5eaccf5db9ef 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/conic_multiplicities.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/conic_multiplicities.cpp @@ -11,7 +11,7 @@ #include "arr_conics.h" #include "arr_print.h" -typedef CGAL::Arr_naive_point_location Naive_pl; +using Naive_pl = CGAL::Arr_naive_point_location; int main() { Traits traits; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/consolidated_curve_data.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/consolidated_curve_data.cpp index 2bb6b9084758..55ea5aada147 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/consolidated_curve_data.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/consolidated_curve_data.cpp @@ -9,10 +9,10 @@ enum Segment_color {RED, BLUE}; -typedef CGAL::Arr_consolidated_curve_data_traits_2 - Data_traits; -typedef Data_traits::Curve_2 Colored_segment; -typedef CGAL::Arrangement_2 Colored_arr; +using Data_traits = + CGAL::Arr_consolidated_curve_data_traits_2; +using Colored_segment = Data_traits::Curve_2; +using Colored_arr = CGAL::Arrangement_2; int main() { Colored_arr arr; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/curve_history.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/curve_history.cpp index 49fa78bff2bf..4a7b7a57bdb4 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/curve_history.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/curve_history.cpp @@ -8,9 +8,9 @@ #include "arr_exact_construction_segments.h" #include "point_location_utils.h" -typedef CGAL::Arrangement_with_history_2 Arr_with_hist; -typedef Arr_with_hist::Curve_handle Curve_handle; -typedef CGAL::Arr_trapezoid_ric_point_location Point_location; +using Arr_with_hist = CGAL::Arrangement_with_history_2; +using Curve_handle = Arr_with_hist::Curve_handle; +using Point_location = CGAL::Arr_trapezoid_ric_point_location; int main() { // Insert 3 curves incrementally. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension.cpp index 3801d3126ae8..88140318fd22 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension.cpp @@ -8,8 +8,8 @@ enum Color {BLUE, RED, WHITE}; -typedef CGAL::Arr_extended_dcel Dcel; -typedef CGAL::Arrangement_2 Ex_arrangement; +using Dcel = CGAL::Arr_extended_dcel; +using Ex_arrangement = CGAL::Arrangement_2; int main() { // Construct the arrangement containing two intersecting triangles. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension_io.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension_io.cpp index 2be07e6bf1bb..441e4f7b6cac 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension_io.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dcel_extension_io.cpp @@ -31,9 +31,9 @@ std::istream& operator>>(std::istream& is, Color& color) { return is; } -typedef CGAL::Arr_extended_dcel Ext_dcel; -typedef CGAL::Arrangement_2 Ext_arrangement; -typedef CGAL::Arr_extended_dcel_text_formatter Formatter; +using Ext_dcel = CGAL::Arr_extended_dcel; +using Ext_arrangement = CGAL::Arrangement_2; +using Formatter = CGAL::Arr_extended_dcel_text_formatter; int main() { // Construct the arrangement containing two intersecting triangles. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp index ea99cca39a85..c72c0168c04f 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/draw_arr.cpp @@ -1,9 +1,9 @@ -#include +#include #include #include #include -using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; using Traits = CGAL::Arr_segment_traits_2; using Point = Traits::Point_2; using Arrangement_2 = CGAL::Arrangement_2; @@ -18,12 +18,12 @@ using Arrangement_2 = CGAL::Arrangement_2; * \param value Value component range: [0, 1] * \return tuple, where each component is in the range [0, 255] */ -std::tuple +std::tuple hsv_to_rgb(float hue, float sat, float value) { float red, green, blue; float fc = value * sat; // Chroma - float hue_prime = fmod(hue / 60.0, 6); - float fx = fc * (1.0 - fabs(fmod(hue_prime, 2) - 1.0)); + float hue_prime = fmod(hue / 60.0f, 6.f); + float fx = fc * (1.0f - fabs(fmod(hue_prime, 2.f) - 1.f)); float fm = value - fc; if(0 <= hue_prime && hue_prime < 1) { @@ -69,7 +69,10 @@ hsv_to_rgb(float hue, float sat, float value) { red *= 255; green *= 255; blue *= 255; - return std::make_tuple(red, green, blue); + unsigned char redc = (unsigned char)red; + unsigned char greenc = (unsigned char)green; + unsigned char bluec = (unsigned char)blue; + return std::make_tuple(redc, greenc, bluec); } int main() { @@ -98,12 +101,11 @@ int main() { std::size_t id(0); CGAL::draw(arr, [&] (Arrangement_2::Face_const_handle) -> CGAL::IO::Color { - float h = 360.0 * id++ / arr.number_of_faces(); + float h = 360.0f * id++ / arr.number_of_faces(); float s = 0.5; float v = 0.5; - float r, g, b; - std::tie(r, g, b) = hsv_to_rgb(h, s, v); - return CGAL::IO::Color(r, g, b); + auto [r, g, b] = hsv_to_rgb(h, s, v); + return CGAL::IO::Color(r,g,b); }, "hsv colors", true); return EXIT_SUCCESS; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dual_with_data.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dual_with_data.cpp index e81a00c5d58d..8ffb6688971e 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dual_with_data.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/dual_with_data.cpp @@ -10,9 +10,9 @@ #include "arr_linear.h" #include "read_objects.h" -typedef CGAL::Arr_curve_data_traits_2 Data_traits; -typedef Data_traits::X_monotone_curve_2 Data_x_monotone_curve_2; -typedef CGAL::Arrangement_2 Data_arrangement; +using Data_traits = CGAL::Arr_curve_data_traits_2; +using Data_x_monotone_curve_2 = Data_traits::X_monotone_curve_2; +using Data_arrangement = CGAL::Arrangement_2; int main(int argc, char* argv[]) { // Get the name of the input file from the command line, or use the default diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/edge_manipulation_curve_history.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/edge_manipulation_curve_history.cpp index bd636bc94fe5..bf1d504d4f6b 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/edge_manipulation_curve_history.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/edge_manipulation_curve_history.cpp @@ -8,9 +8,9 @@ #include "arr_circular.h" #include "arr_print.h" -typedef CGAL::Arrangement_with_history_2 Arr_with_hist; -typedef Arr_with_hist::Curve_handle Curve_handle; -typedef CGAL::Arr_walk_along_line_point_location Point_location; +using Arr_with_hist = CGAL::Arrangement_with_history_2; +using Curve_handle = Arr_with_hist::Curve_handle; +using Point_location = CGAL::Arr_walk_along_line_point_location; int main() { // Construct an arrangement containing nine circles: C[0] of radius 2 and diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension.cpp index 5778412a8dc0..d1bdaa8bb385 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension.cpp @@ -7,8 +7,8 @@ #include "arr_exact_construction_segments.h" -typedef CGAL::Arr_face_extended_dcel Dcel; -typedef CGAL::Arrangement_2 Ex_arrangement; +using Dcel = CGAL::Arr_face_extended_dcel; +using Ex_arrangement = CGAL::Arrangement_2; // An arrangement observer, used to receive notifications of face splits and // to update the indices of the newly created faces. @@ -18,9 +18,10 @@ class Face_index_observer : public CGAL::Arr_observer { public: Face_index_observer(Ex_arrangement& arr) : - CGAL::Arr_observer(arr), n_faces(0) + CGAL::Arr_observer(arr), + n_faces(0) { - CGAL_precondition (arr.is_empty()); + CGAL_precondition(arr.is_empty()); arr.unbounded_face()->set_data (0); } diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension_overlay.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension_overlay.cpp index 7eda7deea852..27459e6ff9e2 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension_overlay.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/face_extension_overlay.cpp @@ -9,12 +9,11 @@ #include "arr_exact_construction_segments.h" -typedef CGAL::Arr_face_extended_dcel Dcel; -typedef CGAL::Arrangement_2 Ex_arrangement; -typedef CGAL::Arr_face_overlay_traits > - Overlay_traits; +using Dcel = CGAL::Arr_face_extended_dcel; +using Ex_arrangement = CGAL::Arrangement_2; +using Overlay_traits = + CGAL::Arr_face_overlay_traits>; int main() { // Construct the first arrangement, containing a square-shaped face. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/generic_curve_data.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/generic_curve_data.cpp index 5756885a48ee..72710580dee3 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/generic_curve_data.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/generic_curve_data.cpp @@ -7,18 +7,18 @@ #include "arr_polylines.h" -typedef std::string Name; // The name-field type. +using Name = std::string; // The name-field type. struct Merge_names { Name operator() (const Name& s1, const Name& s2) const { return (s1 + " " + s2); } }; -typedef CGAL::Arr_curve_data_traits_2 - Ex_traits; -typedef Ex_traits::Curve_2 Ex_polyline; -typedef Ex_traits::X_monotone_curve_2 Ex_x_monotone_polyline; -typedef CGAL::Arrangement_2 Ex_arrangement; +using Ex_traits = CGAL::Arr_curve_data_traits_2; + +using Ex_polyline = Ex_traits::Curve_2; +using Ex_x_monotone_polyline = Ex_traits::X_monotone_curve_2; +using Ex_arrangement = CGAL::Arrangement_2; int main() { // Construct an arrangement of four polylines named A--D. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/incremental_insertion.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/incremental_insertion.cpp index 59a0203a4b45..857a5ecdf01d 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/incremental_insertion.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/incremental_insertion.cpp @@ -7,8 +7,8 @@ #include "arr_exact_construction_segments.h" #include "arr_print.h" -typedef CGAL::Arr_naive_point_location Naive_pl; -typedef CGAL::Arr_point_location_result::Type Pl_result_type; +using Naive_pl = CGAL::Arr_naive_point_location; +using Pl_result_type = CGAL::Arr_point_location_result::Type; int main() { // Construct the arrangement of five intersecting segments. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/integer_type.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/integer_type.h index 994567478152..b03f83fd832d 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/integer_type.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/integer_type.h @@ -5,13 +5,13 @@ #if CGAL_USE_GMP && CGAL_USE_MPFI #include -typedef CGAL::Gmpz Integer; +using Integer = CGAL::Gmpz; #elif CGAL_USE_CORE #include -typedef CORE::BigInt Integer; +using Integer = CORE::BigInt; #else #include -typedef LEDA::integer Integer; +using Integer = LEDA::integer; #endif #endif diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/io_curve_history.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/io_curve_history.cpp index de866be3ada2..b62c6a93ff99 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/io_curve_history.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/io_curve_history.cpp @@ -10,7 +10,7 @@ #include "arr_exact_construction_segments.h" #include "arr_print.h" -typedef CGAL::Arrangement_with_history_2 Arr_with_hist; +using Arr_with_hist = CGAL::Arrangement_with_history_2; int main() { // Insert six additional segments aggregately: diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_color.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_color.cpp index 6cb7f17f477b..42c7f69aaffc 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_color.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_color.cpp @@ -11,9 +11,9 @@ #include "arr_exact_construction_segments.h" #include "Overlay_color_traits.h" -typedef unsigned int Color; -typedef CGAL::Arr_extended_dcel Dcel; -typedef CGAL::Arrangement_2 Ex_arrangement; +using Color = unsigned int; +using Dcel = CGAL::Arr_extended_dcel; +using Ex_arrangement = CGAL::Arrangement_2; int main() { const Color vcol1(0x00000080), hcol1(0x000000ff), fcol1(0x00ccccff); diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_unbounded.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_unbounded.cpp index 866c66016d1d..40d06f4f712c 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_unbounded.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/overlay_unbounded.cpp @@ -16,15 +16,15 @@ struct Overlay_label { { return c + std::to_string(i); } }; -typedef CGAL::Arr_face_extended_dcel Dcel_dlue; -typedef CGAL::Arrangement_2 Arrangement_blue; -typedef CGAL::Arr_face_extended_dcel Dcel_red; -typedef CGAL::Arrangement_2 Arrangement_red; -typedef CGAL::Arr_face_extended_dcel Dcel_res; -typedef CGAL::Arrangement_2 Arrangement_res; -typedef CGAL::Arr_face_overlay_traits - Overlay_traits; +using Dcel_dlue = CGAL::Arr_face_extended_dcel; +using Arrangement_blue = CGAL::Arrangement_2; +using Dcel_red = CGAL::Arr_face_extended_dcel; +using Arrangement_red = CGAL::Arrangement_2; +using Dcel_res = CGAL::Arr_face_extended_dcel; +using Arrangement_res = CGAL::Arrangement_2; +using Overlay_traits = + CGAL::Arr_face_overlay_traits; int main() { // Construct the first arrangement, induced by two lines y = x and y = -x. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location.cpp index 31224d3363c8..8f9c0458d55e 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location.cpp @@ -8,8 +8,8 @@ #include "arr_inexact_construction_segments.h" #include "point_location_utils.h" -typedef CGAL::Arr_naive_point_location Naive_pl; -typedef CGAL::Arr_landmarks_point_location Landmarks_pl; +using Naive_pl = CGAL::Arr_naive_point_location; +using Landmarks_pl = CGAL::Arr_landmarks_point_location; int main() { // Construct the arrangement. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location_utils.h b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location_utils.h index d5a729edc6d9..8dd199fde072 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location_utils.h +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/point_location_utils.h @@ -9,10 +9,10 @@ void print_point_location (const typename Arrangement_::Point_2& q, typename CGAL::Arr_point_location_result::Type obj) { - typedef Arrangement_ Arrangement_2; - typedef typename Arrangement_2::Vertex_const_handle Vertex_const_handle; - typedef typename Arrangement_2::Halfedge_const_handle Halfedge_const_handle; - typedef typename Arrangement_2::Face_const_handle Face_const_handle; + using Arrangement_2 = Arrangement_; + using Vertex_const_handle = typename Arrangement_2::Vertex_const_handle; + using Halfedge_const_handle = typename Arrangement_2::Halfedge_const_handle; + using Face_const_handle = typename Arrangement_2::Face_const_handle; const Vertex_const_handle* v; const Halfedge_const_handle* e; @@ -39,8 +39,8 @@ void locate_point(const PointLocation& pl, const typename PointLocation::Arrangement_2::Point_2& q) { // Perform the point-location query. - typedef PointLocation Point_location; - typedef typename Point_location::Arrangement_2 Arrangement_2; + using Point_location = PointLocation; + using Arrangement_2 = typename Point_location::Arrangement_2; typename CGAL::Arr_point_location_result::Type obj = pl.locate(q); @@ -56,16 +56,16 @@ void shoot_vertical_ray(const VerticalRayShooting& vrs, const typename VerticalRayShooting::Arrangement_2::Point_2& q) { - typedef VerticalRayShooting Vertical_ray_shooting; + using Vertical_ray_shooting = VerticalRayShooting; // Perform the point-location query. typename Vertical_ray_shooting::result_type obj = vrs.ray_shoot_up(q); // Print the result. - typedef typename Vertical_ray_shooting::Arrangement_2 Arrangement_2; - typedef typename Arrangement_2::Vertex_const_handle Vertex_const_handle; - typedef typename Arrangement_2::Halfedge_const_handle Halfedge_const_handle; - typedef typename Arrangement_2::Face_const_handle Face_const_handle; + using Arrangement_2 = typename Vertical_ray_shooting::Arrangement_2; + using Vertex_const_handle = typename Arrangement_2::Vertex_const_handle; + using Halfedge_const_handle = typename Arrangement_2::Halfedge_const_handle; + using Face_const_handle = typename Arrangement_2::Face_const_handle; const Vertex_const_handle* v; const Halfedge_const_handle* e; @@ -94,10 +94,10 @@ void shoot_vertical_ray(const VerticalRayShooting& vrs, template void construct_segments_arr(Arrangement_& arr) { - typedef Arrangement_ Arrangement_2; - typedef typename Arrangement_2::Point_2 Point_2; - typedef typename Arrangement_2::X_monotone_curve_2 Segment_2; - typedef typename Arrangement_2::Halfedge_handle Halfedge_handle; + using Arrangement_2 = Arrangement_; + using Point_2 = typename Arrangement_2::Point_2; + using Segment_2 = typename Arrangement_2::X_monotone_curve_2; + using Halfedge_handle = typename Arrangement_2::Halfedge_handle; Point_2 p0(3,2), p1(0,3), p2(2,5), p3(4,5), p4(6,3), p5(3,0); Segment_2 s1(p1, p2), s2(p2, p3), s3(p3, p4), s4(p4, p5), s5(p5, p1); diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_bezier.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_bezier.cpp index 70184f7f4bb5..309a849e64bd 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_bezier.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_bezier.cpp @@ -19,12 +19,12 @@ int main() { #include "arr_Bezier.h" #include "arr_print.h" -typedef CGAL::Arr_polycurve_traits_2 Polycurve_bezier_traits; -typedef Polycurve_bezier_traits::Point_2 Point; -typedef Polycurve_bezier_traits::X_monotone_curve_2 X_mono_polycurve; -typedef CGAL::Arrangement_2 Arrangement_2; +using Polycurve_bezier_traits = CGAL::Arr_polycurve_traits_2; +using Point = Polycurve_bezier_traits::Point_2; +using X_mono_polycurve = Polycurve_bezier_traits::X_monotone_curve_2; +using Arrangement_2 = CGAL::Arrangement_2; -typedef std::variant Make_x_monotone_result; +using Make_x_monotone_result = std::variant; int main() { Polycurve_bezier_traits pc_traits; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_circular_arc.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_circular_arc.cpp index 00827b0da577..742473a79bfa 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_circular_arc.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_circular_arc.cpp @@ -22,11 +22,11 @@ int main() { #include "arr_circular.h" #include "arr_print.h" -typedef CGAL::Arr_polycurve_traits_2 Polycurve_traits; -typedef Polycurve_traits::X_monotone_curve_2 X_monotone_polycurve; -typedef Polycurve_traits::Curve_2 Polycurve; -typedef Kernel::Circle_2 Circle_2; -typedef CGAL::Arrangement_2 Polycurve_circ_arc_arrangment; +using Polycurve_traits = CGAL::Arr_polycurve_traits_2; +using X_monotone_polycurve = Polycurve_traits::X_monotone_curve_2; +using Polycurve = Polycurve_traits::Curve_2; +using Circle_2 = Kernel::Circle_2; +using Polycurve_circ_arc_arrangment = CGAL::Arrangement_2; int main() { Polycurve_traits traits; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_conic.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_conic.cpp index 803a0696bd28..bdaafb9ebb0c 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_conic.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_conic.cpp @@ -21,10 +21,10 @@ int main() { #include "arr_conics.h" #include "arr_print.h" -typedef CGAL::Arr_polycurve_traits_2 Polycurve_conic_traits_2; -typedef Polycurve_conic_traits_2::X_monotone_curve_2 X_monotone_polycurve; -typedef Polycurve_conic_traits_2::Curve_2 Polycurve; -typedef CGAL::Arrangement_2 Polycurve_conic_arrangment; +using Polycurve_conic_traits_2 = CGAL::Arr_polycurve_traits_2; +using X_monotone_polycurve = Polycurve_conic_traits_2::X_monotone_curve_2; +using Polycurve = Polycurve_conic_traits_2::Curve_2; +using Polycurve_conic_arrangment = CGAL::Arrangement_2; int main() { Traits sub_traits; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_geodesic.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_geodesic.cpp index fdf6a5d0a5a7..008730bba159 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_geodesic.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurve_geodesic.cpp @@ -10,31 +10,29 @@ #include #include -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef CGAL::Arr_geodesic_arc_on_sphere_traits_2 Segment_traits_2; -typedef CGAL::Arr_polyline_traits_2 Poly_traits_2; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Segment_traits_2 = CGAL::Arr_geodesic_arc_on_sphere_traits_2; +using Poly_traits_2 = CGAL::Arr_polyline_traits_2; -typedef Poly_traits_2::Point_2 Point_2; -typedef Poly_traits_2::Curve_2 Poly_curve_2; -typedef Poly_traits_2::X_monotone_curve_2 X_poly_curve_2; -typedef CGAL::Arr_spherical_topology_traits_2 - Topol_poly_traits_2; -typedef CGAL::Arrangement_on_surface_2 - Poly_arr; +using Point_2 = Poly_traits_2::Point_2; +using Poly_curve_2 = Poly_traits_2::Curve_2; +using X_poly_curve_2 = Poly_traits_2::X_monotone_curve_2; +using Topol_poly_traits_2 = + CGAL::Arr_spherical_topology_traits_2; +using Poly_arr = + CGAL::Arrangement_on_surface_2; -typedef Segment_traits_2::Curve_2 Seg_curve_2; -typedef Segment_traits_2::X_monotone_curve_2 X_seg_curve_2; -typedef CGAL::Arr_spherical_topology_traits_2 - Topol_segment_traits_2; -typedef CGAL::Arrangement_on_surface_2 - Segment_arr; +using Seg_curve_2 = Segment_traits_2::Curve_2; +using X_seg_curve_2 = Segment_traits_2::X_monotone_curve_2; +using Topol_segment_traits_2 = + CGAL::Arr_spherical_topology_traits_2; +using Segment_arr = + CGAL::Arrangement_on_surface_2; int main() { Segment_traits_2 seg_traits; - Segment_traits_2::Construct_point_2 ctr_p = - seg_traits.construct_point_2_object(); - Segment_traits_2::Construct_x_monotone_curve_2 ctr_seg = - seg_traits.construct_x_monotone_curve_2_object(); + auto ctr_p = seg_traits.construct_point_2_object(); + auto ctr_seg = seg_traits.construct_x_monotone_curve_2_object(); Point_2 p1 = ctr_p(0, 1, -1); Point_2 p2 = ctr_p(-11, 7, -7); @@ -62,8 +60,7 @@ int main() { points.push_back(p5); Poly_traits_2 poly_traits; - Poly_traits_2::Construct_x_monotone_curve_2 ctr = - poly_traits.construct_x_monotone_curve_2_object(); + auto ctr = poly_traits.construct_x_monotone_curve_2_object(); Poly_arr poly_arr(&poly_traits); insert(poly_arr, ctr(seg_cv1)); insert(poly_arr, ctr(seg_cv2)); diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurves_basic.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurves_basic.cpp index 016c0ef74de5..90bfde3c0a00 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurves_basic.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/polycurves_basic.cpp @@ -10,14 +10,14 @@ #include "arr_print.h" -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef CGAL::Arr_directional_non_caching_segment_basic_traits_2 - Subcurve_traits; -typedef CGAL::Arr_polycurve_basic_traits_2 Geom_traits; -typedef Geom_traits::Point_2 Point; -typedef Subcurve_traits::X_monotone_curve_2 X_monotone_subcurve; -typedef Geom_traits::X_monotone_curve_2 X_monotone_curve; -typedef CGAL::Arrangement_2 Arrangement; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Subcurve_traits = + CGAL::Arr_directional_non_caching_segment_basic_traits_2; +using Geom_traits = CGAL::Arr_polycurve_basic_traits_2; +using Point = Geom_traits::Point_2; +using X_monotone_subcurve = Subcurve_traits::X_monotone_curve_2; +using X_monotone_curve = Geom_traits::X_monotone_curve_2; +using Arrangement = CGAL::Arrangement_2; int main() { Geom_traits traits; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel.cpp index cca02d632103..f0ed969d845a 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel.cpp @@ -3,9 +3,9 @@ // predefined kernel with exact constructions and exact predicates. #include +#include #include -#include #include "arr_exact_construction_segments.h" #include "arr_print.h" @@ -28,18 +28,17 @@ int main (int argc, char* argv[]) { // Construct the arrangement by aggregately inserting all segments. Arrangement arr; - CGAL::Timer timer; std::cout << "Performing aggregated insertion of " << segments.size() << " segments.\n"; - timer.start(); + auto start = std::chrono::system_clock::now(); insert(arr, segments.begin(), segments.end()); - timer.stop(); + std::chrono::duration secs = std::chrono::system_clock::now() - start; print_arrangement_size(arr); - std::cout << "Construction took " << timer.time() << " seconds.\n"; + std::cout << "Construction took " << secs.count() << " seconds.\n"; return 0; } diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel_non_intersecting.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel_non_intersecting.cpp index 87b05dcbb15a..2300d13c7814 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel_non_intersecting.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/predefined_kernel_non_intersecting.cpp @@ -2,19 +2,20 @@ // Constructing an arrangement of non-intersecting line segments using the // predefined kernel with exact predicates. +#include +#include +#include + #include #include #include -#include -#include -#include -typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel; -typedef Kernel::FT Number_type; -typedef CGAL::Arr_non_caching_segment_basic_traits_2 Traits_2; -typedef Traits_2::Point_2 Point_2; -typedef Traits_2::X_monotone_curve_2 Segment_2; -typedef CGAL::Arrangement_2 Arrangement_2; +using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; +using Number_type = Kernel::FT; +using Traits_2 = CGAL::Arr_non_caching_segment_basic_traits_2; +using Point_2 = Traits_2::Point_2; +using Segment_2 = Traits_2::X_monotone_curve_2; +using Arrangement_2 = CGAL::Arrangement_2; int main(int argc, char* argv[]) { // Get the name of the input file from the command line, or use the default @@ -39,33 +40,31 @@ int main(int argc, char* argv[]) { // // source and target of segment #n. std::list segments; - unsigned int n; + std::size_t n; in_file >> n; - unsigned int i; - for (i = 0; i < n; ++i) { + for (std::size_t i = 0; i < n; ++i) { double sx, sy, tx, ty; in_file >> sx >> sy >> tx >> ty; - segments.push_back (Segment_2 (Point_2 (Number_type(sx), Number_type(sy)), - Point_2 (Number_type(tx), Number_type(ty)))); + segments.push_back(Segment_2(Point_2 (Number_type(sx), Number_type(sy)), + Point_2 (Number_type(tx), Number_type(ty)))); } in_file.close(); // Construct the arrangement by aggregately inserting all segments. Arrangement_2 arr; - CGAL::Timer timer; std::cout << "Performing aggregated insertion of " << n << " segments.\n"; - timer.start(); + auto start = std::chrono::system_clock::now(); insert_non_intersecting_curves (arr, segments.begin(), segments.end()); - timer.stop(); + std::chrono::duration secs = std::chrono::system_clock::now() - start; // Print the arrangement dimensions. std::cout << "V = " << arr.number_of_vertices() - << ", E = " << arr.number_of_edges() - << ", F = " << arr.number_of_faces() << std::endl; + << ", E = " << arr.number_of_edges() + << ", F = " << arr.number_of_faces() << std::endl; - std::cout << "Construction took " << timer.time() << " seconds.\n"; + std::cout << "Construction took " << secs.count() << " seconds.\n"; return 0; } diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/rational_functions_rational_coefficients.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/rational_functions_rational_coefficients.cpp index 2419a5868bbb..4267a229f7c0 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/rational_functions_rational_coefficients.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/rational_functions_rational_coefficients.cpp @@ -18,23 +18,22 @@ int main() { #include // Traits #include // Arrangement -typedef CORE::BigInt Integer; -typedef CORE::BigRat Rational; -typedef CGAL::Algebraic_kernel_d_1 AK1; -typedef CGAL::Arr_rational_function_traits_2 Traits_2; +using Integer = CORE::BigInt; +using Rational = CORE::BigRat; +using AK1 = CGAL::Algebraic_kernel_d_1; +using Traits_2 = CGAL::Arr_rational_function_traits_2; -typedef std::vector Rat_vec; -typedef Traits_2::Algebraic_real_1 Alg_real_1; +using Rat_vec = std::vector; +using Alg_real_1 = Traits_2::Algebraic_real_1; -typedef CGAL::Arrangement_2 Arrangement_2; +using Arrangement_2 = CGAL::Arrangement_2; int main () { CGAL::IO::set_pretty_mode(std::cout); // for nice printouts. // Traits class object Traits_2 traits; - Traits_2::Construct_x_monotone_curve_2 construct_arc - = traits.construct_x_monotone_curve_2_object(); + auto construct_arc = traits.construct_x_monotone_curve_2_object(); // container storing all arcs std::vector arcs; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/sgm_point_location.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/sgm_point_location.cpp index 98515d5d0c9d..2fb6649b535d 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/sgm_point_location.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/sgm_point_location.cpp @@ -14,36 +14,36 @@ #include "point_location_utils.h" -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef Kernel::Point_3 Point_3; -typedef Kernel::Direction_3 Direction_3; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Point_3 = Kernel::Point_3; +using Direction_3 = Kernel::Direction_3; #if 0 -typedef CGAL::Arr_polyhedral_sgm_traits Gm_traits; +using Gm_traits = CGAL::Arr_polyhedral_sgm_traits; #elif 0 -typedef CGAL::Arr_polyhedral_sgm_traits Gm_traits; +using Gm_traits = CGAL::Arr_polyhedral_sgm_traits; #else -typedef CGAL::Arr_polyhedral_sgm_traits Gm_traits; +using Gm_traits = CGAL::Arr_polyhedral_sgm_traits; #endif -typedef CGAL::Arr_polyhedral_sgm Gm; -typedef CGAL::Arr_polyhedral_sgm_polyhedron_3 Gm_polyhedron; -typedef CGAL::Arr_polyhedral_sgm_initializer Gm_initializer; +using Gm = CGAL::Arr_polyhedral_sgm; +using Gm_polyhedron = CGAL::Arr_polyhedral_sgm_polyhedron_3; +using Gm_initializer = CGAL::Arr_polyhedral_sgm_initializer; -typedef CGAL::Arr_naive_point_location Naive_pl; -typedef CGAL::Arr_walk_along_line_point_location Walk_pl; -typedef CGAL::Arr_landmarks_point_location Landmarks_pl; -typedef CGAL::Arr_trapezoid_ric_point_location Trap_pl; +using Naive_pl = CGAL::Arr_naive_point_location; +using Walk_pl = CGAL::Arr_walk_along_line_point_location; +using Landmarks_pl = CGAL::Arr_landmarks_point_location; +using Trap_pl = CGAL::Arr_trapezoid_ric_point_location; -typedef Gm::Geometry_traits_2 Geom_traits; -typedef Geom_traits::Point_2 Point_2; +using Geom_traits = Gm::Geometry_traits_2; +using Point_2 = Geom_traits::Point_2; -typedef CGAL::Arr_point_location_result Point_location_result; -typedef std::pair Query_result; +using Point_location_result = CGAL::Arr_point_location_result; +using Query_result = std::pair; -typedef Gm::Vertex_const_handle Vertex_const_handle; -typedef Gm::Halfedge_const_handle Halfedge_const_handle; -typedef Gm::Face_const_handle Face_const_handle; +using Vertex_const_handle = Gm::Vertex_const_handle; +using Halfedge_const_handle = Gm::Halfedge_const_handle; +using Face_const_handle = Gm::Face_const_handle; int main() { Gm_polyhedron p; @@ -55,29 +55,13 @@ int main() { // Landmarks_pl landmarks_pl(gm); Walk_pl walk_pl(gm); // Trap_pl trap_pl(gm); - /* Need to add the code below to both Arr_spherical_gaussian_map_3 and - * Arr_polyhedral_sgm, and then work on the trap point location code... - -private: - friend class Arr_observer; - friend class Arr_accessor; - -protected: - typedef Arr_observer Observer; - - void _register_observer(Observer *p_obs) - { Base::_register_observer((typename Base::Observer*)p_obs); } - - bool _unregister_observer(Observer *p_obs) - { return (Base::_unregister_observer ((typename Base::Observer*)p_obs)); } - */ Gm_traits traits; Gm_initializer gm_initializer(gm); gm_initializer(p); if (! gm.is_valid()) return -1; - Geom_traits::Construct_point_2 ctr_point = traits.construct_point_2_object(); + auto ctr_point = traits.construct_point_2_object(); Point_2 points[] = { ctr_point(-1, 0, 0), ctr_point(0, -1, 0), diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_degenerate_sweep.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_degenerate_sweep.cpp index 8c6f46dfeb61..62d7b46654c6 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_degenerate_sweep.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_degenerate_sweep.cpp @@ -15,31 +15,30 @@ #include "arr_print.h" -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; #if 0 -typedef CGAL::Arr_geodesic_arc_on_sphere_traits_2 Geom_traits_2; +using Geom_traits_2 = CGAL::Arr_geodesic_arc_on_sphere_traits_2; #elif 0 -typedef CGAL::Arr_geodesic_arc_on_sphere_traits_2 Geom_traits_2; +using Geom_traits_2 = CGAL::Arr_geodesic_arc_on_sphere_traits_2; #else -typedef CGAL::Arr_geodesic_arc_on_sphere_traits_2 Geom_traits_2; +using Geom_traits_2 = CGAL::Arr_geodesic_arc_on_sphere_traits_2; #endif -typedef Geom_traits_2::Point_2 Point_2; -typedef Geom_traits_2::X_monotone_curve_2 X_monotone_curve_2; -typedef CGAL::Arr_spherical_topology_traits_2 Topol_traits_2; -typedef CGAL::Arrangement_on_surface_2 - Arrangement_2; -typedef Arrangement_2::Vertex_handle Vertex_handle; +using Point_2 = Geom_traits_2::Point_2; +using X_monotone_curve_2 = Geom_traits_2::X_monotone_curve_2; +using Topol_traits_2 = CGAL::Arr_spherical_topology_traits_2; +using Arrangement_2 = + CGAL::Arrangement_on_surface_2; +using Vertex_handle = Arrangement_2::Vertex_handle; int main() { Geom_traits_2 traits; - Geom_traits_2::Construct_point_2 ctr_p = traits.construct_point_2_object(); - Geom_traits_2::Construct_x_monotone_curve_2 ctr_xcv = - traits.construct_x_monotone_curve_2_object(); + auto ctr_p = traits.construct_point_2_object(); + auto ctr_xcv = traits.construct_x_monotone_curve_2_object(); - std::vector< Point_2 > points; - std::vector< X_monotone_curve_2 > xcvs; + std::vector points; + std::vector xcvs; CGAL::IO::set_pretty_mode(std::cout); diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_insert.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_insert.cpp index 783ef0a48f3e..e341758c75ec 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_insert.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_insert.cpp @@ -10,12 +10,12 @@ #include "arr_print.h" -typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; -typedef CGAL::Arr_geodesic_arc_on_sphere_traits_2 Geom_traits; -typedef Geom_traits::Point_2 Point; -typedef Geom_traits::Curve_2 Curve; -typedef CGAL::Arr_spherical_topology_traits_2 Topol_traits; -typedef CGAL::Arrangement_on_surface_2 Arrangement; +using Kernel = CGAL::Exact_predicates_exact_constructions_kernel; +using Geom_traits = CGAL::Arr_geodesic_arc_on_sphere_traits_2; +using Point = Geom_traits::Point_2; +using Curve = Geom_traits::Curve_2; +using Topol_traits = CGAL::Arr_spherical_topology_traits_2; +using Arrangement = CGAL::Arrangement_on_surface_2; int main() { // Construct the arrangement from 12 geodesic arcs. @@ -46,7 +46,6 @@ int main() { CGAL::insert(arr, arcs.begin(), arcs.end()); print_arrangement_size(arr); // print the arrangement size - // print_arrangement(arr); return 0; } diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_overlay.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_overlay.cpp index 2f5f6430dee9..ba27599b22d3 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_overlay.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/spherical_overlay.cpp @@ -7,7 +7,7 @@ #include "arr_geodesic_on_sphere.h" -typedef CGAL::Arr_default_overlay_traits Overlay_traits; +using Overlay_traits = CGAL::Arr_default_overlay_traits; int main() { Geom_traits traits; diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/tracing_counting.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/tracing_counting.cpp index 351e5c7e004f..100c8828e398 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/tracing_counting.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/tracing_counting.cpp @@ -9,9 +9,9 @@ #include "arr_exact_construction_segments.h" -typedef CGAL::Arr_tracing_traits_2 Tracing_traits; -typedef CGAL::Arr_counting_traits_2 Geom_traits; -typedef CGAL::Arrangement_2 My_arrangement; +using Tracing_traits = CGAL::Arr_tracing_traits_2; +using Geom_traits = CGAL::Arr_counting_traits_2; +using My_arrangement = CGAL::Arrangement_2; int main() { const Segment s1(Point(0, 0), Point(2, 2)); diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/unb_planar_vertical_decomposition.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/unb_planar_vertical_decomposition.cpp index 0b31dc9655bf..e870a714ccc1 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/unb_planar_vertical_decomposition.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/unb_planar_vertical_decomposition.cpp @@ -8,12 +8,12 @@ #include "arr_linear.h" -typedef std::variant Cell_type; -typedef std::optional Vert_decomp_type; -typedef std::pair Vert_decomp_pair; -typedef std::pair Vert_decomp_entry; -typedef std::list Vert_decomp_list; +using Cell_type = std::variant; +using Vert_decomp_type = std::optional; +using Vert_decomp_pair = std::pair; +using Vert_decomp_entry = std::pair; +using Vert_decomp_list = std::list; int main() { // Construct the arrangement. diff --git a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/vertical_ray_shooting.cpp b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/vertical_ray_shooting.cpp index a0b0912a6d63..e4e415bd8254 100644 --- a/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/vertical_ray_shooting.cpp +++ b/Arrangement_on_surface_2/examples/Arrangement_on_surface_2/vertical_ray_shooting.cpp @@ -8,8 +8,8 @@ #include "arr_inexact_construction_segments.h" #include "point_location_utils.h" -typedef CGAL::Arr_walk_along_line_point_location Walk_pl; -typedef CGAL::Arr_trapezoid_ric_point_location Trap_pl; +using Walk_pl = CGAL::Arr_walk_along_line_point_location; +using Trap_pl = CGAL::Arr_trapezoid_ric_point_location; int main() { // Construct the arrangement. diff --git a/Arrangement_on_surface_2/include/CGAL/Aos_observer.h b/Arrangement_on_surface_2/include/CGAL/Aos_observer.h new file mode 100644 index 000000000000..6f918138c666 --- /dev/null +++ b/Arrangement_on_surface_2/include/CGAL/Aos_observer.h @@ -0,0 +1,571 @@ +// Copyright (c) 2006,2007,2009,2010,2011 Tel-Aviv University (Israel). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org). +// +// $URL$ +// $Id$ +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial +// +// +// Author(s): Ron Wein +// Efi Fogel + +#ifndef CGAL_AOS_OBSERVER_H +#define CGAL_AOS_OBSERVER_H + +#include + +#include + +#include + +/*! \file + * Definition of the `Aos_observer` base class. + */ + +namespace CGAL { + +/*! \class + * A base class for arrangement observers. + * The Arrangement parameter corresponds to an arrangement instantiation. + */ +template +class Aos_observer { +public: + typedef Arrangement_ Arrangement_2; + typedef Aos_observer Self; + + typedef typename Arrangement_2::Point_2 Point_2; + typedef typename Arrangement_2::X_monotone_curve_2 X_monotone_curve_2; + + typedef typename Arrangement_2::Vertex_handle Vertex_handle; + typedef typename Arrangement_2::Halfedge_handle Halfedge_handle; + typedef typename Arrangement_2::Face_handle Face_handle; + typedef typename Arrangement_2::Ccb_halfedge_circulator + Ccb_halfedge_circulator; + +private: + Arrangement_2* p_arr; // The associated arrangement. + + /*! Copy constructor - not supported. */ + Aos_observer(const Self&); + + /*! Assignment operator - not supported. */ + Self& operator=(const Self&); + +public: + /// \name Construction and destruction functions. + //@{ + + /*! Default constructor. */ + Aos_observer() : p_arr(nullptr) {} + + /*! Constructor with an associated arrangement. */ + Aos_observer(Arrangement_2& arr) : p_arr(&arr) + { + // Register the observer object in the arrangement. + p_arr->_register_observer(this); + } + + /*! Destructor. */ + virtual ~Aos_observer() + { + // Unregister the observer object from the arrangement. + if (p_arr != nullptr) + p_arr->_unregister_observer(this); + } + //@} + + /// \name Modifying the associated arrangement. + //@{ + + /*! Get the associated arrangement (const version). */ + const Arrangement_2* arrangement() const { return (p_arr); } + + /*! Get the associated arrangement (non-const version). */ + Arrangement_2* arrangement() { return (p_arr); } + + /*! Attach the observer to an arrangement. + * \pre The observer is not already attached to an arrangement. + */ + void attach(Arrangement_2& arr) + { + // Do nothing if the associated arrangement is not changed. + if (p_arr == &arr) return; + + // The observer is not already attached to an arrangement. + CGAL_precondition (p_arr == nullptr); + + if (p_arr != nullptr) return; + + // Notify the concrete observer (the sub-class) about the attachment. + before_attach(arr); + + // Register the observer object in the new arrangement. + p_arr = &arr; + p_arr->_register_observer(this); + + // Notify the concrete observer that the attachment took place. + after_attach(); + } + + /*! Detach the observer from the arrangement. */ + void detach() + { + if (p_arr == nullptr) return; + + // Notify the concrete observer (the sub-class) about the detachment. + before_detach (); + + // Unregister the observer object from the current arrangement, and mark + // that the observer is not attached to an arrangement. + p_arr->_unregister_observer(this); + p_arr = nullptr; + + // Notify the concrete observer that the detachment took place. + after_detach(); + } + //@} + + /// \name Notification functions on global arrangement operations. + //@{ + + /*! Notification before the arrangement is assigned with another + * arrangement. + * \param arr The arrangement to be copied. + */ + virtual void before_assign(const Arrangement_2& /* arr */) {} + + /*! Notification after the arrangement has been assigned with another + * arrangement. + */ + virtual void after_assign() {} + + /*! Notification before the arrangement is cleared. */ + virtual void before_clear() {} + + /*! Notification after the arrangement is cleared. */ + virtual void after_clear() {} + + /*! Notification before a global operation modifies the arrangement. */ + virtual void before_global_change() {} + + /*! Notification after a global operation is completed. */ + virtual void after_global_change() {} + //@} + + /// \name Notification functions on observer attachment or detachment. + //@{ + + /*! Notification before the observer is attached to an arrangement. + * \param arr The arrangement that is about to attach the observer. + */ + virtual void before_attach(const Arrangement_2& /* arr */) {} + + /*! Notification after the observer has been attached to an arrangement. */ + virtual void after_attach() {} + + /*! Notification before the observer is detached from the arrangement. */ + virtual void before_detach() {} + + /*! Notification after the observer has been detached from the arrangement. */ + virtual void after_detach() {} + //@} + + /// \name Notification functions on local changes in the arrangement. + //@{ + + /*! Notification before the creation of a new vertex. + * \param p The point to be associated with the vertex. + * This point cannot lie on the surface boundaries. + */ + virtual void before_create_vertex(const Point_2& /* p */) {} + + /*! Notification after the creation of a new vertex. + * \param v A handle to the created vertex. + */ + virtual void after_create_vertex(Vertex_handle /* v */) + {} + + /*! Notification before the creation of a new boundary vertex. + * \param p The point on the surface boundary. + * \param ps_x The boundary condition of the vertex in x. + * \param ps_y The boundary condition of the vertex in y. + */ + virtual void before_create_boundary_vertex(const Point_2& /* p */, + Arr_parameter_space /* ps_x */, + Arr_parameter_space /* ps_y */) + {} + + /*! Notification before the creation of a new boundary vertex. + * \param cv The curve incident to the surface boundary. + * \param ind The relevant curve-end. + * \param ps_x The boundary condition of the vertex in x. + * \param ps_y The boundary condition of the vertex in y. + */ + virtual void before_create_boundary_vertex(const X_monotone_curve_2& /* cv */, + Arr_curve_end /* ind */, + Arr_parameter_space /* ps_x */, + Arr_parameter_space /* ps_y */) + {} + + /*! Notification after the creation of a new vertex at infinity. + * \param v A handle to the created vertex. + */ + virtual void after_create_boundary_vertex(Vertex_handle /* v */) {} + + /*! Notification before the creation of a new edge. + * \param c The \f$x\f$-monotone curve to be associated with the edge. + * \param v1 A handle to the first end-vertex of the edge. + * \param v2 A handle to the second end-vertex of the edge. + */ + virtual void before_create_edge(const X_monotone_curve_2& /* c */, + Vertex_handle /* v1 */, + Vertex_handle /* v2 */) + {} + + /*! Notification after the creation of a new edge. + * \param e A handle to one of the twin halfedges that were created. + */ + virtual void after_create_edge(Halfedge_handle /* e */) {} + + /*! Notification before the modification of an existing vertex. + * \param v A handle to the vertex to be updated. + * \param p The point to be associated with the vertex. + */ + virtual void before_modify_vertex(Vertex_handle /* v */, + const Point_2& /* p */) + {} + + /*! Notification after a vertex was modified. + * \param v A handle to the updated vertex. + */ + virtual void after_modify_vertex(Vertex_handle /* v */) {} + + /*! Notification before the modification of an existing edge. + * \param e A handle to one of the twin halfedges to be updated. + * \param c The \f$x\f$-monotone curve to be associated with the edge. + */ + virtual void before_modify_edge(Halfedge_handle /* e */, + const X_monotone_curve_2& /* c */) + {} + + /*! Notification after an edge was modified. + * \param e A handle to one of the twin halfedges that were updated. + */ + virtual void after_modify_edge(Halfedge_handle /* e */) {} + + /*! Notification before the splitting of an edge into two. + * \param e A handle to one of the existing halfedges. + * \param v A vertex representing the split point. + * \param c1 The \f$x\f$-monotone curve to be associated with the first edge. + * \param c2 The \f$x\f$-monotone curve to be associated with the second edge. + */ + virtual void before_split_edge(Halfedge_handle /* e */, + Vertex_handle /* v */, + const X_monotone_curve_2& /* c1 */, + const X_monotone_curve_2& /* c2 */) + {} + + /*! Notification after an edge was split. + * \param e1 A handle to one of the twin halfedges forming the first edge. + * \param e2 A handle to one of the twin halfedges forming the second edge. + */ + virtual void after_split_edge(Halfedge_handle /* e1 */, + Halfedge_handle /* e2 */) + {} + + /*! Notification before the splitting of a fictitious edge into two. + * \param e A handle to one of the existing halfedges. + * \param v A vertex representing the unbounded split point. + */ + virtual void before_split_fictitious_edge(Halfedge_handle /* e */, + Vertex_handle /* v */) + {} + + /*! Notification after a fictitious edge was split. + * \param e1 A handle to one of the twin halfedges forming the first edge. + * \param e2 A handle to one of the twin halfedges forming the second edge. + */ + virtual void after_split_fictitious_edge(Halfedge_handle /* e1 */, + Halfedge_handle /* e2 */) + {} + + /*! Notification before the splitting of a face into two. + * \param f A handle to the existing face. + * \param e The new edge whose insertion causes the face to split. + */ + virtual void before_split_face(Face_handle /* f */, + Halfedge_handle /* e */) + {} + + /*! Notification after a face was split. + * \param f A handle to the face we have just split. + * \param new_f A handle to the new face that has been created. + * \param is_hole Whether the new face forms a hole inside f. + */ + virtual void after_split_face(Face_handle /* f */, + Face_handle /* new_f */, + bool /* is_hole */) + {} + + /*! Notification before the splitting of an outer CCB into two. + * \param f A handle to the face that owns the outer CCB. + * \param h A circulator representing the component boundary. + * \param e The new edge whose removal causes the outer CCB to split. + */ + virtual void before_split_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */, + Halfedge_handle /* e */) + {} + + /*! Notification after an outer CCB was split. + * \param f A handle to the face that owns the outer CCBs. + * \param h1 A circulator representing the boundary of the first component. + * \param h2 A circulator representing the boundary of the second component. + */ + virtual void after_split_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h1 */, + Ccb_halfedge_circulator /* h2 */) + {} + + /*! Notification before the splitting of an inner CCB into two. + * \param f A handle to the face containing the inner CCB. + * \param h A circulator representing the component boundary. + * \param e The new edge whose removal causes the inner CCB to split. + */ + virtual void before_split_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */, + Halfedge_handle /* e */) + {} + + /*! Notification after an inner CCB was split. + * \param f A handle to the face containing the inner CCBs. + * \param h1 A circulator representing the boundary of the first component. + * \param h2 A circulator representing the boundary of the second component. + */ + virtual void after_split_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h1 */, + Ccb_halfedge_circulator /* h2 */) + {} + + /*! Notification before the creation of a new outer CCB of a face. + * \param f A handle to the face that owns the outer CCB. + * \param e A halfedge along the new outer CCB. + */ + virtual void before_add_outer_ccb(Face_handle /* f */, + Halfedge_handle /* e */) + {} + + /*! Notification after an outer CCB was added to a face. + * \param h A circulator representing the boundary of the new outer CCB. + */ + virtual void after_add_outer_ccb(Ccb_halfedge_circulator /* h */) {} + + /*! Notification before the creation of a new inner CCB inside a face. + * \param f A handle to the face containing the inner CCB. + * \param e The new halfedge that forms the new inner CCB. + */ + virtual void before_add_inner_ccb(Face_handle /* f */, + Halfedge_handle /* e */) + {} + + /*! Notification after an inner CCB was created inside a face. + * \param h A circulator representing the boundary of the new inner CCB. + */ + virtual void after_add_inner_ccb(Ccb_halfedge_circulator /* h */) {} + + /*! Notification before the creation of a new isolated vertex inside a face. + * \param f A handle to the face containing the isolated vertex. + * \param v The isolated vertex. + */ + virtual void before_add_isolated_vertex(Face_handle /* f */, + Vertex_handle /* v */) + {} + + /*! Notification after an isolated vertex was created inside a face. + * \param v The isolated vertex. + */ + virtual void after_add_isolated_vertex(Vertex_handle /* v */) {} + + /*! Notification before the merging of two edges. + * \param e1 A handle to one of the halfedges forming the first edge. + * \param e2 A handle to one of the halfedges forming the second edge. + * \param c The \f$x\f$-monotone curve to be associated with the merged edge. + */ + virtual void before_merge_edge(Halfedge_handle /* e1 */, + Halfedge_handle /* e2 */, + const X_monotone_curve_2& /* c */) + {} + + /*! Notification after an edge was merged. + * \param e A handle to one of the twin halfedges forming the merged edge. + */ + virtual void after_merge_edge(Halfedge_handle /* e */) {} + + /*! Notification before the merging of two fictitious edges. + * \param e1 A handle to one of the halfedges forming the first edge. + * \param e2 A handle to one of the halfedges forming the second edge. + */ + virtual void before_merge_fictitious_edge(Halfedge_handle /* e1 */, + Halfedge_handle /* e2 */) + {} + + /*! Notification after a fictitious edge was merged. + * \param e A handle to one of the twin halfedges forming the merged edge. + */ + virtual void after_merge_fictitious_edge(Halfedge_handle /* e */) {} + + /*! Notification before the merging of two faces. + * \param f1 A handle to the first face. + * \param f2 A handle to the second face. + * \param e The edge whose removal causes the faces to merge. + */ + virtual void before_merge_face(Face_handle /* f1 */, + Face_handle /* f2 */, + Halfedge_handle /* e */) + {} + + /*! Notification after a face was merged. + * \param f A handle to the merged face. + */ + virtual void after_merge_face(Face_handle /* f */) {} + + /*! Notification before the merging of two outer CCBs. + * \param f A handle to the face that owns the outer CCBs. + * \param h1 A circulator representing the boundary of the first component. + * \param h2 A circulator representing the boundary of the second component. + * \param e The edge whose insertion or removal causes the CCBs to merge. + */ + virtual void before_merge_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h1 */, + Ccb_halfedge_circulator /* h2 */, + Halfedge_handle /* e */) + {} + + /*! Notification after an outer CCB was merged. + * \param f A handle to the face that owns the outer CCBs. + * \param h A circulator representing the boundary of the merged component. + */ + virtual void after_merge_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */) + {} + + /*! Notification before the merging of two inner CCBs (holes). + * \param f A handle to the face that contains the inner CCBs. + * \param h1 A circulator representing the boundary of the first component. + * \param h2 A circulator representing the boundary of the second component. + * \param e The edge whose insertion causes the inner CCBs to merge. + */ + virtual void before_merge_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h1 */, + Ccb_halfedge_circulator /* h2 */, + Halfedge_handle /* e */) + {} + + /*! Notification after an inner CCB was merged. + * \param f A handle to the face that contains the inner CCBs. + * \param h A circulator representing the boundary of the merged component. + */ + virtual void after_merge_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */) + {} + + /*! Notification before an outer CCB is moved from one face to another. + * \param from_f A handle to the face that currently owns the outer CCB. + * \param to_f A handle to the face that should own the outer CCB. + * \param h A circulator representing the boundary of the component. + */ + virtual void before_move_outer_ccb(Face_handle /* from_f */, + Face_handle /* to_f */, + Ccb_halfedge_circulator /* h */) + {} + + /*! Notification after an outer CCB is moved from one face to another. + * \param h A circulator representing the boundary of the component. + */ + virtual void after_move_outer_ccb(Ccb_halfedge_circulator /* h */) {} + + + /*! Notification before an inner CCB is moved from one face to another. + * \param from_f A handle to the face currently containing the inner CCB. + * \param to_f A handle to the face that should contain the inner CCB. + * \param h A circulator representing the boundary of the component. + */ + virtual void before_move_inner_ccb(Face_handle /* from_f */, + Face_handle /* to_f */, + Ccb_halfedge_circulator /* h */) + {} + + /*! + * Notification after an inner CCB is moved from one face to another. + * \param h A circulator representing the boundary of the component. + */ + virtual void after_move_inner_ccb(Ccb_halfedge_circulator /* h */) {} + + /*! Notification before an isolated vertex is moved from one face to another. + * \param from_f A handle to the face currently containing the vertex. + * \param to_f A handle to the face that should contain the vertex. + * \param v The isolated vertex. + */ + virtual void before_move_isolated_vertex(Face_handle /* from_f */, + Face_handle /* to_f */, + Vertex_handle /* v */) + {} + + /*! Notification after an isolated vertex is moved from one face to another. + * \param v The isolated vertex. + */ + virtual void after_move_isolated_vertex(Vertex_handle /* v */) {} + + /*! Notificaion before the removal of a vertex. + * \param v A handle to the vertex to be deleted. + */ + virtual void before_remove_vertex(Vertex_handle /* v */) {} + + /*! Notificaion after the removal of a vertex. */ + virtual void after_remove_vertex() {} + + /*! Notification before the removal of an edge. + * \param e A handle to one of the twin halfedges to be deleted. + */ + virtual void before_remove_edge(Halfedge_handle /* e */) {} + + /*! Notificaion after the removal of an edge. */ + virtual void after_remove_edge() {} + + /*! Notification before the removal of an outer CCB. + * \param f The face that owns the outer CCB. + * \param h A circulator representing the boundary of the component. + */ + virtual void before_remove_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */) + {} + + /*! Notificaion after the removal of an outer CCB. + * \param f The face that used to own the outer CCB. + */ + virtual void after_remove_outer_ccb(Face_handle /* f */) {} + + /*! Notification before the removal of an inner CCB. + * \param f The face containing the inner CCB. + * \param h A circulator representing the boundary of the component. + */ + virtual void before_remove_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */) + {} + + /*! Notificaion after the removal of an inner CCB. + * \param f The face that used to contain the inner CCB. + */ + virtual void after_remove_inner_ccb(Face_handle /* f */) {} + + //@} +}; + +} //namespace CGAL + +#include + +#endif diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_algebraic_segment_traits_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_algebraic_segment_traits_2.h index af9b28db6f21..03566eaa9197 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_algebraic_segment_traits_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_algebraic_segment_traits_2.h @@ -5,15 +5,18 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s): Michael Kerber // // ============================================================================ -#ifndef CGAL_ARR_ALGEBRAIC_SEGMENT_TRAITS -#define CGAL_ARR_ALGEBRAIC_SEGMENT_TRAITS +#ifndef CGAL_ARR_ALGEBRAIC_SEGMENT_TRAITS_H +#define CGAL_ARR_ALGEBRAIC_SEGMENT_TRAITS_H + +#include + #include @@ -655,4 +658,4 @@ class Arr_algebraic_segment_traits_2 { #include -#endif // CGAL_ARR_ALGEBRAIC_SEGMENT_TRAITS +#endif // CGAL_ARR_ALGEBRAIC_SEGMENT_TRAITS_H diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_batched_point_location.h b/Arrangement_on_surface_2/include/CGAL/Arr_batched_point_location.h index 42715621e4b2..85ba6ccc235f 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_batched_point_location.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_batched_point_location.h @@ -26,7 +26,6 @@ #include #include -#include #include namespace CGAL { @@ -120,7 +119,7 @@ locate(const Arrangement_on_surface_2& arr, * Use the form 'A a(*b);' and not ''A a = b;' to handle the case where A has * only an implicit constructor, (which takes *b as a parameter). */ - typename boost::mpl::if_, const Bgt2&, Bgt2>::type + std::conditional_t, const Bgt2&, Bgt2> ex_traits(*geom_traits); // Define the sweep-line visitor and perform the sweep. diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_conic_traits_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_conic_traits_2.h index 5244d1e64dc8..a850f5ef3c88 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_conic_traits_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_conic_traits_2.h @@ -141,7 +141,7 @@ class Arr_conic_traits_2 { /*! Obtain the rational kernel. */ - Shared_rat_kernel rat_kernel() { return m_rat_kernel; } + Shared_rat_kernel rat_kernel() const { return m_rat_kernel; } /*! Obtain the algebraic kernel. */ diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_curve_data_traits_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_curve_data_traits_2.h index 810da81aa6f6..6fbf49afb5eb 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_curve_data_traits_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_curve_data_traits_2.h @@ -249,6 +249,7 @@ class Arr_curve_data_traits_2 : public Traits_ { template bool are_mergeable_data(const T& cv1, const T& cv2, long) const { + bool are_mergeable_data(const T& /* cv1 */, const T& /* cv2 */, long) const { CGAL_error_msg("Equality operator is not supported."); return false; } diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_face_index_map.h b/Arrangement_on_surface_2/include/CGAL/Arr_face_index_map.h index 1e03af5e1c6c..ee804c574c54 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_face_index_map.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_face_index_map.h @@ -21,7 +21,6 @@ * Definition of the Arr_face_index_map class. */ -#include #include #include @@ -34,140 +33,110 @@ namespace CGAL { * arrangement faces to the indices 0, ..., (n -1), where n is the number * of faces in the arrangement. */ -template -class Arr_face_index_map : public Arr_observer -{ +template +class Arr_face_index_map : public Arrangement_::Observer { public: + using Arrangement_2 = Arrangement_; + using Base_aos = typename Arrangement_2::Base_aos; - typedef Arrangement_ Arrangement_2; - typedef typename Arrangement_2::Face_handle Face_handle; + using Halfedge_handle = typename Base_aos::Halfedge_handle; + using Face_handle = typename Base_aos::Face_handle; // Boost property type definitions: - typedef boost::readable_property_map_tag category; - typedef unsigned int value_type; - typedef value_type reference; - typedef Face_handle key_type; + using category = boost::readable_property_map_tag; + using value_type = unsigned int; + using reference = value_type; + using key_type = Face_handle; private: + using Self = Arr_face_index_map; + using Base = typename Arrangement_2::Observer; - typedef Arr_face_index_map Self; - typedef Arr_observer Base; - - typedef Unique_hash_map Index_map; + using Index_map = Unique_hash_map; // Data members: - unsigned int n_faces; // The current number of faces. - Index_map index_map; // Mapping faces to indices. - std::vector rev_map; // Mapping indices to faces. + unsigned int n_faces; // The current number of faces. + Index_map index_map; // Mapping faces to indices. + std::vector rev_map; // Mapping indices to faces. enum {MIN_REV_MAP_SIZE = 32}; public: - /*! Default constructor. */ - Arr_face_index_map () : - Base (), - n_faces (0), - rev_map (MIN_REV_MAP_SIZE) + Arr_face_index_map() : + Base(), + n_faces(0), + rev_map(MIN_REV_MAP_SIZE) {} /*! Constructor with an associated arrangement. */ - Arr_face_index_map (const Arrangement_2& arr) : - Base (const_cast (arr)) - { - _init(); - } + Arr_face_index_map(const Base_aos& arr) : + Base(const_cast(arr)) + { _init(); } /*! Copy constructor. */ - Arr_face_index_map (const Self& other) : - Base (const_cast (*(other.arrangement()))) - { - _init(); - } + Arr_face_index_map(const Self& other) : + Base(const_cast(*(other.arrangement()))) + { _init(); } /*! Assignment operator. */ - Self& operator= (const Self& other) - { - if (this == &other) - return (*this); + Self& operator= (const Self& other) { + if (this == &other) return (*this); this->detach(); - this->attach (const_cast (*(other.arrangement()))); + this->attach(const_cast(*(other.arrangement()))); return (*this); } - /*! - * Get the index of a given face. + /*! Get the index of a given face. * \param f A handle to the face. * \pre f is a valid face in the arrangement. */ - unsigned int operator[] (Face_handle f) const - { - return (index_map[f]); - } + unsigned int operator[](Face_handle f) const { return (index_map[f]); } - /*! - * Get the face given its index. + /*! Get the face given its index. * \param i The index of the face. * \pre i is less than the number of faces in the arrangement. */ - Face_handle face (const int i) const - { + Face_handle face(const int i) const { CGAL_precondition((unsigned int) i < n_faces); - return (rev_map[i]); } /// \name Notification functions, to keep the mapping up-to-date. //@{ - /*! - * Update the mapping after the arrangement has been assigned with another + /*! Update the mapping after the arrangement has been assigned with another * arrangement. */ - virtual void after_assign () - { - _init(); - } + virtual void after_assign() override { _init(); } - /*! - * Update the mapping after the arrangement is cleared. + /*! Update the mapping after the arrangement is cleared. */ - virtual void after_clear () - { - _init(); - } + virtual void after_clear() override { _init(); } - /*! - * Update the mapping after attaching to a new arrangement. + /*! Update the mapping after attaching to a new arrangement. */ - virtual void after_attach () - { - _init(); - } + virtual void after_attach() override { _init(); } - /*! - * Update the mapping after detaching the arrangement. + /*! Update the mapping after detaching the arrangement. */ - virtual void after_detach () - { + virtual void after_detach() override { n_faces = 0; index_map.clear(); } - /*! - * Update the mapping after the creation of a new face is split from another + /*! Update the mapping after the creation of a new face is split from another * face. * \param f A handle to the existing face. * \param new_f A handle to the newly created face. */ - virtual void after_split_face (Face_handle /* f */, - Face_handle new_f, - bool /* is_hole */) - { + virtual void after_split_face(Face_handle /* f */, + Face_handle new_f, + bool /* is_hole */) override { // Update the number of vertices. - n_faces++; + ++n_faces; // If necessary, allocate memory for the reverse mapping. if (rev_map.size() < n_faces) @@ -176,97 +145,77 @@ class Arr_face_index_map : public Arr_observer // Update the mapping of the newly created face. index_map[new_f] = n_faces - 1; rev_map[n_faces - 1] = new_f; - - return; } - /*! - * Update the mapping before the merge of two faces. + /*! Update the mapping before the merge of two faces. * \param f1 A handle to the face that is going to remain. * \param f2 A handle to the face that is about to be removed. */ - virtual void before_merge_face (Face_handle /* f1 */, - Face_handle f2, - typename - Arrangement_2::Halfedge_handle /* e */) - { + virtual void before_merge_face(Face_handle /* f1 */, + Face_handle f2, + Halfedge_handle /* e */) override { // Update the number of faces. - n_faces--; + --n_faces; // Reduce memory consumption in case the number of faces has // drastically decreased. if (2*n_faces+1 < rev_map.size() && rev_map.size() / 2 >= MIN_REV_MAP_SIZE) { - rev_map.resize (rev_map.size() / 2); + rev_map.resize(rev_map.size() / 2); } // Get the current face index, and assign this index to the face // currently indexed (n - 1). - unsigned int index = index_map[f2]; + unsigned int index = index_map[f2]; - if (index == n_faces) - return; + if (index == n_faces) return; - Face_handle last_f = rev_map[n_faces]; + Face_handle last_f = rev_map[n_faces]; index_map[last_f] = index; rev_map[index] = last_f; // Clear the reverse mapping for the last face. rev_map[n_faces] = Face_handle(); - - return; } //@} private: - /*! Initialize the map for the given arrangement. */ - void _init () - { + void _init() { // Get the number of faces and allocate the reverse map accordingly. n_faces = static_cast(this->arrangement()->number_of_faces()); - if (n_faces < MIN_REV_MAP_SIZE) - rev_map.resize (MIN_REV_MAP_SIZE); - else - rev_map.resize (n_faces); + if (n_faces < MIN_REV_MAP_SIZE) rev_map.resize (MIN_REV_MAP_SIZE); + else rev_map.resize (n_faces); // Clear the current mapping. index_map.clear(); // Create the initial mapping. - typename Arrangement_2::Face_iterator fit; - Face_handle fh; - unsigned int index = 0; + Face_handle fh; + unsigned int index = 0; - for (fit = this->arrangement()->faces_begin(); - fit != this->arrangement()->faces_end(); ++fit, ++index) - { + for (auto fit = this->arrangement()->faces_begin(); + fit != this->arrangement()->faces_end(); ++fit, ++index) { // Map the current face to the current index. fh = fit; index_map[fh] = index; rev_map[index] = fh; } - - return; } - }; -/*! - * Get the index property-map function. Provided so that boost is able to +/*! Get the index property-map function. Provided so that boost is able to * access the Arr_face_index_map above. * \param index_map The index map. * \param f A face handle. * \return The face index. */ -template -unsigned int get (const CGAL::Arr_face_index_map& index_map, - typename Arrangement::Face_handle f) -{ - return (index_map[f]); -} +template +unsigned int get(const CGAL::Arr_face_index_map& index_map, + typename Arrangement::Face_handle f) +{ return (index_map[f]); } } //namespace CGAL diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_observer.h b/Arrangement_on_surface_2/include/CGAL/Arr_observer.h index c622bbe1a325..1e0791ed05a9 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_observer.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_observer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006,2007,2009,2010,2011 Tel-Aviv University (Israel). +// Copyright (c) 2023 Tel-Aviv University (Israel). // All rights reserved. // // This file is part of CGAL (www.cgal.org). @@ -8,565 +8,26 @@ // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // -// Author(s) : Ron Wein -// Efi Fogel +// Author(s): Efi Fogel #ifndef CGAL_ARR_OBSERVER_H #define CGAL_ARR_OBSERVER_H +/*! \file + * Definition of the `Arr_observer` base class mainly for backward + * compatibility. + */ + #include #include -#include - -/*! \file - * Definition of the Arr_observer base class. - */ - namespace CGAL { -/*! \class - * A base class for arrangement observers. - * The Arrangement parameter corresponds to an arrangement instantiation. - */ template -class Arr_observer -{ -public: - typedef Arrangement_ Arrangement_2; - typedef Arr_observer Self; - - typedef typename Arrangement_2::Point_2 Point_2; - typedef typename Arrangement_2::X_monotone_curve_2 X_monotone_curve_2; - - typedef typename Arrangement_2::Vertex_handle Vertex_handle; - typedef typename Arrangement_2::Halfedge_handle Halfedge_handle; - typedef typename Arrangement_2::Face_handle Face_handle; - typedef typename Arrangement_2::Ccb_halfedge_circulator - Ccb_halfedge_circulator; - -private: - Arrangement_2* p_arr; // The associated arrangement. - - /*! Copy constructor - not supported. */ - Arr_observer(const Self&); - - /*! Assignment operator - not supported. */ - Self& operator=(const Self&); - -public: - /// \name Construction and destruction functions. - //@{ - - /*! Default constructor. */ - Arr_observer() : p_arr(nullptr) {} - - /*! Constructor with an associated arrangement. */ - Arr_observer(Arrangement_2& arr) : p_arr(&arr) - { - // Register the observer object in the arrangement. - p_arr->_register_observer(this); - } - - /*! Destructor. */ - virtual ~Arr_observer() - { - // Unregister the observer object from the arrangement. - if (p_arr != nullptr) - p_arr->_unregister_observer(this); - } - //@} - - /// \name Modifying the associated arrangement. - //@{ - - /*! Get the associated arrangement (non-const version). */ - const Arrangement_2* arrangement() const { return (p_arr); } - - /*! Get the associated arrangement (non-const version). */ - Arrangement_2* arrangement() { return (p_arr); } - - /*! Attach the observer to an arrangement. - * \pre The observer is not already attached to an arrangement. - */ - void attach(Arrangement_2& arr) - { - // Do nothing if the associated arrangement is not changed. - if (p_arr == &arr) return; - - // The observer is not already attached to an arrangement. - CGAL_precondition (p_arr == nullptr); - - if (p_arr != nullptr) return; - - // Notify the concrete observer (the sub-class) about the attachment. - before_attach(arr); - - // Register the observer object in the new arrangement. - p_arr = &arr; - p_arr->_register_observer(this); - - // Notify the concrete observer that the attachment took place. - after_attach(); - } - - /*! Detach the observer from the arrangement. */ - void detach() - { - if (p_arr == nullptr) return; - - // Notify the concrete observer (the sub-class) about the detachment. - before_detach (); - - // Unregister the observer object from the current arrangement, and mark - // that the observer is not attached to an arrangement. - p_arr->_unregister_observer(this); - p_arr = nullptr; - - // Notify the concrete observer that the detachment took place. - after_detach(); - } - //@} - - /// \name Notification functions on global arrangement operations. - //@{ - - /*! Notification before the arrangement is assigned with another - * arrangement. - * \param arr The arrangement to be copied. - */ - virtual void before_assign(const Arrangement_2& /* arr */) {} - - /*! Notification after the arrangement has been assigned with another - * arrangement. - */ - virtual void after_assign() {} - - /*! Notification before the arrangement is cleared. */ - virtual void before_clear() {} - - /*! Notification after the arrangement is cleared. */ - virtual void after_clear() {} - - /*! Notification before a global operation modifies the arrangement. */ - virtual void before_global_change() {} - - /*! Notification after a global operation is completed. */ - virtual void after_global_change() {} - //@} - - /// \name Notification functions on observer attachment or detachment. - //@{ - - /*! Notification before the observer is attached to an arrangement. - * \param arr The arrangement we are about to attach the observer to. - */ - virtual void before_attach(const Arrangement_2& /* arr */) {} - - /*! Notification after the observer has been attached to an arrangement. */ - virtual void after_attach() {} - - /*! Notification before the observer is detached from the arrangement. */ - virtual void before_detach() {} - - /*! Notification after the observer has been detached to the arrangement. */ - virtual void after_detach() {} - //@} - - /// \name Notification functions on local changes in the arrangement. - //@{ - - /*! - * Notification before the creation of a new vertex. - * \param p The point to be associated with the vertex. - * This point cannot lies on the surface boundaries. - */ - virtual void before_create_vertex(const Point_2& /* p */) {} - - /*! Notification after the creation of a new vertex. - * \param v A handle to the created vertex. - */ - virtual void after_create_vertex(Vertex_handle /* v */) - {} - - /*! Notification before the creation of a new boundary vertex. - * \param p The on the surface boundary. - * \param ps_x The boundary condition of the vertex in x. - * \param ps_y The boundary condition of the vertex in y. - */ - virtual void before_create_boundary_vertex(const Point_2& /* p */, - Arr_parameter_space /* ps_x */, - Arr_parameter_space /* ps_y */) - {} - - /*! Notification before the creation of a new boundary vertex. - * \param cv The curve incident to the surface boundary. - * \param ind The relevant curve-end. - * \param ps_x The boundary condition of the vertex in x. - * \param ps_y The boundary condition of the vertex in y. - */ - virtual void before_create_boundary_vertex(const X_monotone_curve_2& /* cv */, - Arr_curve_end /* ind */, - Arr_parameter_space /* ps_x */, - Arr_parameter_space /* ps_y */) - {} - - /*! Notification after the creation of a new vertex at infinity. - * \param v A handle to the created vertex. - */ - virtual void after_create_boundary_vertex(Vertex_handle /* v */) {} - - /*! Notification before the creation of a new edge. - * \param c The x-monotone curve to be associated with the edge. - * \param v1 A handle to the first end-vertex of the edge. - * \param v2 A handle to the second end-vertex of the edge. - */ - virtual void before_create_edge(const X_monotone_curve_2& /* c */, - Vertex_handle /* v1 */, - Vertex_handle /* v2 */) - {} - - /*! Notification after the creation of a new edge. - * \param e A handle to one of the twin halfedges that were created. - */ - virtual void after_create_edge(Halfedge_handle /* e */) {} - - /*! Notification before the modification of an existing vertex. - * \param v A handle to the vertex to be updated. - * \param p The point to be associated with the vertex. - */ - virtual void before_modify_vertex(Vertex_handle /* v */, - const Point_2& /* p */) - {} - - /*! Notification after a vertex was modified. - * \param v A handle to the updated vertex. - */ - virtual void after_modify_vertex(Vertex_handle /* v */) {} - - /*! Notification before the modification of an existing edge. - * \param e A handle to one of the twin halfedges to be updated. - * \param c The x-monotone curve to be associated with the edge. - */ - virtual void before_modify_edge(Halfedge_handle /* e */, - const X_monotone_curve_2& /* c */) - {} - - /*! Notification after an edge was modified. - * \param e A handle to one of the twin halfedges that were updated. - */ - virtual void after_modify_edge(Halfedge_handle /* e */) {} - - /*! Notification before the splitting of an edge into two. - * \param e A handle to one of the existing halfedges. - * \param v A vertex representing the split point. - * \param c1 The x-monotone curve to be associated with the first edge. - * \param c2 The x-monotone curve to be associated with the second edge. - */ - virtual void before_split_edge(Halfedge_handle /* e */, - Vertex_handle /* v */, - const X_monotone_curve_2& /* c1 */, - const X_monotone_curve_2& /* c2 */) - {} - - /*! Notification after an edge was split. - * \param e1 A handle to one of the twin halfedges forming the first edge. - * \param e2 A handle to one of the twin halfedges forming the second edge. - */ - virtual void after_split_edge(Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */) - {} - - /*! Notification before the splitting of a fictitious edge into two. - * \param e A handle to one of the existing halfedges. - * \param v A vertex representing the unbounded split point. - */ - virtual void before_split_fictitious_edge(Halfedge_handle /* e */, - Vertex_handle /* v */) - {} - - /*! Notification after a fictitious edge was split. - * \param e1 A handle to one of the twin halfedges forming the first edge. - * \param e2 A handle to one of the twin halfedges forming the second edge. - */ - virtual void after_split_fictitious_edge(Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */) - {} - - /*! Notification before the splitting of a face into two. - * \param f A handle to the existing face. - * \param e The new edge whose insertion causes the face to split. - */ - virtual void before_split_face(Face_handle /* f */, - Halfedge_handle /* e */) - {} - - /*! Notification after a face was split. - * \param f A handle to the face we have just split. - * \param new_f A handle to the new face that has been created. - * \param is_hole Whether the new face forms a hole inside f. - */ - virtual void after_split_face(Face_handle /* f */, - Face_handle /* new_f */, - bool /* is_hole */) - {} - - /*! Notification before the splitting of an outer CCB into two. - * \param f A handle to the face that owns the outer CCB. - * \param h A circulator representing the component boundary. - * \param e The new edge whose removal causes the outer CCB to split. - */ - virtual void before_split_outer_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h */, - Halfedge_handle /* e */) - {} - - /*! Notification after an outer CCB was split. - * \param f A handle to the face that owns the outer CCBs. - * \param h1 A circulator representing the boundary of the first component. - * \param h2 A circulator representing the boundary of the second component. - */ - virtual void after_split_outer_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h1 */, - Ccb_halfedge_circulator /* h2 */) - {} - - /*! Notification before the splitting of an inner CCB into two. - * \param f A handle to the face containing the inner CCB. - * \param h A circulator representing the component boundary. - * \param e The new edge whose removal causes the inner CCB to split. - */ - virtual void before_split_inner_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h */, - Halfedge_handle /* e */) - {} - - /*! Notification after an inner CCB was split. - * \param f A handle to the face containing the inner CCBs. - * \param h1 A circulator representing the boundary of the first component. - * \param h2 A circulator representing the boundary of the second component. - */ - virtual void after_split_inner_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h1 */, - Ccb_halfedge_circulator /* h2 */) - {} - - /*! Notification before the creation of a new outer CCB of a face. - * \param f A handle to the face that owns the outer CCB. - * \param e A halfedge along the new outer CCB. - */ - virtual void before_add_outer_ccb(Face_handle /* f */, - Halfedge_handle /* e */) - {} - - /*! Notification after an outer CCB was added to a face. - * \param h A circulator representing the boundary of the new outer CCB. - */ - virtual void after_add_outer_ccb(Ccb_halfedge_circulator /* h */) {} - - /*! Notification before the creation of a new inner CCB inside a face. - * \param f A handle to the face containing the inner CCB. - * \param e The new halfedge that forms the new inner CCB. - */ - virtual void before_add_inner_ccb(Face_handle /* f */, - Halfedge_handle /* e */) - {} - - /*! Notification after an inner CCB was created inside a face. - * \param h A circulator representing the boundary of the new inner CCB. - */ - virtual void after_add_inner_ccb(Ccb_halfedge_circulator /* h */) {} - - /*! Notification before the creation of a new isolated vertex inside a face. - * \param f A handle to the face containing the isolated vertex. - * \param v The isolated vertex. - */ - virtual void before_add_isolated_vertex(Face_handle /* f */, - Vertex_handle /* v */) - {} - - /*! Notification after an isolated vertex was created inside a face. - * \param v The isolated vertex. - */ - virtual void after_add_isolated_vertex(Vertex_handle /* v */) {} - - /*! Notification before the merging of two edges. - * \param e1 A handle to one of the halfedges forming the first edge. - * \param e2 A handle to one of the halfedges forming the second edge. - * \param c The x-monotone curve to be associated with the merged edge. - */ - virtual void before_merge_edge(Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */, - const X_monotone_curve_2& /* c */) - {} - - /*! Notification after an edge was merged. - * \param e A handle to one of the twin halfedges forming the merged edge. - */ - virtual void after_merge_edge(Halfedge_handle /* e */) {} - - /*! Notification before the merging of two fictitious edges. - * \param e1 A handle to one of the halfedges forming the first edge. - * \param e2 A handle to one of the halfedges forming the second edge. - */ - virtual void before_merge_fictitious_edge(Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */) - {} - - /*! Notification after a fictitious edge was merged. - * \param e A handle to one of the twin halfedges forming the merged edge. - */ - virtual void after_merge_fictitious_edge(Halfedge_handle /* e */) {} - - /*! Notification before the merging of two faces. - * \param f1 A handle to the first face. - * \param f2 A handle to the second face. - * \param e The edge whose removal causes the faces to merge. - */ - virtual void before_merge_face(Face_handle /* f1 */, - Face_handle /* f2 */, - Halfedge_handle /* e */) - {} - - /*! Notification after a face was merged. - * \param f A handle to the merged face. - */ - virtual void after_merge_face(Face_handle /* f */) {} - - /*! Notification before the merging of two outer CCBs. - * \param f A handle to the face that owns the outer CCBs. - * \param h1 A circulator representing the boundary of the first component. - * \param h2 A circulator representing the boundary of the second component. - * \param e The edge whose insertion or removal causes the CCBs to merge. - */ - virtual void before_merge_outer_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h1 */, - Ccb_halfedge_circulator /* h2 */, - Halfedge_handle /* e */) - {} - - /*! Notification after an outer CCB was merged. - * \param f A handle to the face that owns the outer CCBs. - * \param h A circulator representing the boundary of the merged component. - */ - virtual void after_merge_outer_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h */) - {} - - /*! Notification before the merging of two inner CCBs (holes). - * \param f A handle to the face that contains the inner CCBs. - * \param h1 A circulator representing the boundary of the first component. - * \param h2 A circulator representing the boundary of the second component. - * \param e The edge whose insertion causes the inner CCBs to merge. - */ - virtual void before_merge_inner_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h1 */, - Ccb_halfedge_circulator /* h2 */, - Halfedge_handle /* e */) - {} - - /*! Notification after an inner CCB was merged. - * \param f A handle to the face that contains the inner CCBs. - * \param h A circulator representing the boundary of the merged component. - */ - virtual void after_merge_inner_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h */) - {} - - /*! Notification before an outer CCB is moved from one face to another. - * \param from_f A handle to the face that currently owns the outer CCB. - * \param to_f A handle to the face that should own the outer CCB. - * \param h A circulator representing the boundary of the component. - */ - virtual void before_move_outer_ccb(Face_handle /* from_f */, - Face_handle /* to_f */, - Ccb_halfedge_circulator /* h */) - {} - - /*! Notification after an outer CCB is moved from one face to another. - * \param h A circulator representing the boundary of the component. - */ - virtual void after_move_outer_ccb(Ccb_halfedge_circulator /* h */) {} - - - /*! Notification before an inner CCB is moved from one face to another. - * \param from_f A handle to the face currently containing the inner CCB. - * \param to_f A handle to the face that should contain the inner CCB. - * \param h A circulator representing the boundary of the component. - */ - virtual void before_move_inner_ccb(Face_handle /* from_f */, - Face_handle /* to_f */, - Ccb_halfedge_circulator /* h */) - {} - - /*! - * Notification after an inner CCB is moved from one face to another. - * \param h A circulator representing the boundary of the component. - */ - virtual void after_move_inner_ccb(Ccb_halfedge_circulator /* h */) {} - - /*! Notification before an isolated vertex is moved from one face to another. - * \param from_f A handle to the face currently containing the vertex. - * \param to_f A handle to the face that should contain the vertex. - * \param v The isolated vertex. - */ - virtual void before_move_isolated_vertex(Face_handle /* from_f */, - Face_handle /* to_f */, - Vertex_handle /* v */) - {} - - /*! Notification after an isolated vertex is moved from one face to another. - * \param v The isolated vertex. - */ - virtual void after_move_isolated_vertex(Vertex_handle /* v */) {} - - /*! Notificaion before the removal of a vertex. - * \param v A handle to the vertex to be deleted. - */ - virtual void before_remove_vertex(Vertex_handle /* v */) {} - - /*! Notificaion after the removal of a vertex. */ - virtual void after_remove_vertex() {} - - /*! Notification before the removal of an edge. - * \param e A handle to one of the twin halfedges to be deleted. - */ - virtual void before_remove_edge(Halfedge_handle /* e */) {} - - /*! Notificaion after the removal of an edge. */ - virtual void after_remove_edge() {} - - /*! Notification before the removal of an outer CCB. - * \param f The face that owns the outer CCB. - * \param h A circulator representing the boundary of the component. - */ - virtual void before_remove_outer_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h */) - {} - - /*! Notificaion after the removal of an outer CCB. - * \param f The face that used to own the outer CCB. - */ - virtual void after_remove_outer_ccb(Face_handle /* f */) {} - - /*! Notification before the removal of an inner CCB. - * \param f The face containing the inner CCB. - * \param h A circulator representing the boundary of the component. - */ - virtual void before_remove_inner_ccb(Face_handle /* f */, - Ccb_halfedge_circulator /* h */) - {} - - /*! Notificaion after the removal of an inner CCB. - * \param f The face that used to contain the inner CCB. - */ - virtual void after_remove_inner_ccb(Face_handle /* f */) {} - - //@} -}; +using Arr_observer = typename Arrangement_::Observer; -} //namespace CGAL +} // namespace CGAL #include diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_overlay_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_overlay_2.h index 2951b1983fe8..dfa6fb89ffc1 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_overlay_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_overlay_2.h @@ -25,7 +25,6 @@ #include #include -#include #include #include @@ -247,8 +246,8 @@ overlay(const Arrangement_on_surface_2& arr1 * Use the form 'A a(*b);' and not ''A a = b;' to handle the case where A has * only an implicit constructor, (which takes *b as a parameter). */ - typename boost::mpl::if_, - const Ovl_gt2&, Ovl_gt2>::type + std::conditional_t, + const Ovl_gt2&, Ovl_gt2> ex_traits(*traits_adaptor); Ovl_visitor visitor(&arr1, &arr2, &arr, &ovl_tr); diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_lm_generator_base.h b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_lm_generator_base.h index daf08604ed2a..42dc494377ff 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_lm_generator_base.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_lm_generator_base.h @@ -20,7 +20,6 @@ * Definition of the Arr_landmarks_generator_base template. */ #include -#include #include #include #include @@ -43,44 +42,44 @@ namespace CGAL { */ template > -class Arr_landmarks_generator_base : public Arr_observer { + Arr_landmarks_nearest_neighbor > +class Arr_landmarks_generator_base : public Arrangement_::Observer { public: - typedef Arrangement_ Arrangement_2; - typedef Nearest_neighbor_ Nearest_neighbor; + using Arrangement_2 = Arrangement_; + using Base_aos = typename Arrangement_2::Base_aos; - typedef typename Arrangement_2::Geometry_traits_2 Geometry_traits_2; - typedef typename Arrangement_2::Vertex_const_handle Vertex_const_handle; - typedef typename Arrangement_2::Halfedge_const_handle Halfedge_const_handle; - typedef typename Arrangement_2::Face_const_handle Face_const_handle; - typedef typename Arrangement_2::Vertex_handle Vertex_handle; - typedef typename Arrangement_2::Halfedge_handle Halfedge_handle; - typedef typename Arrangement_2::Face_handle Face_handle; - typedef typename Arrangement_2::Vertex_const_iterator Vertex_const_iterator; - typedef typename Arrangement_2::Ccb_halfedge_circulator - Ccb_halfedge_circulator; + using Nearest_neighbor = Nearest_neighbor_; - typedef typename Arrangement_2::Point_2 Point_2; - typedef typename Arrangement_2::X_monotone_curve_2 X_monotone_curve_2; + using Geometry_traits_2 = typename Base_aos::Geometry_traits_2; + using Vertex_const_handle = typename Base_aos::Vertex_const_handle; + using Halfedge_const_handle = typename Base_aos::Halfedge_const_handle; + using Face_const_handle = typename Base_aos::Face_const_handle; + using Vertex_handle = typename Base_aos::Vertex_handle; + using Halfedge_handle = typename Base_aos::Halfedge_handle; + using Face_handle = typename Base_aos::Face_handle; + using Vertex_const_iterator = typename Base_aos::Vertex_const_iterator; + using Ccb_halfedge_circulator = typename Base_aos::Ccb_halfedge_circulator; - typedef typename Nearest_neighbor::NN_Point_2 NN_Point_2; - typedef std::list NN_Points_set; + using Point_2 = typename Base_aos::Point_2; + using X_monotone_curve_2 = typename Base_aos::X_monotone_curve_2; - typedef std::vector Points_set; + using NN_Point_2 = typename Nearest_neighbor::NN_Point_2; + using NN_Points_set = std::list; - typedef Arr_point_location_result PL_result; - typedef typename PL_result::Type PL_result_type; + using Points_set = std::vector; - typedef std::pair PL_pair; - typedef std::vector Pairs_set; - typedef typename std::vector::iterator Pairs_iterator; + using PL_result = Arr_point_location_result; + using PL_result_type = typename PL_result::Type; + + using PL_pair = std::pair; + using Pairs_set = std::vector; + using Pairs_iterator = typename std::vector::iterator; private: - typedef Arr_landmarks_generator_base - Self; + using Self = Arr_landmarks_generator_base; protected: - typedef Arr_traits_basic_adaptor_2 Traits_adaptor_2; + using Traits_adaptor_2 = Arr_traits_basic_adaptor_2; // Data members: const Traits_adaptor_2* m_traits; // The associated traits object. @@ -109,8 +108,8 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Constructor from an arrangement. * \param arr (in) The arrangement. */ - Arr_landmarks_generator_base(const Arrangement_2& arr) : - Arr_observer (const_cast(arr)), + Arr_landmarks_generator_base(const Base_aos& arr) : + Base_aos::Observer(const_cast(arr)), m_traits(static_cast(arr.geometry_traits())), m_ignore_notifications(false), m_ignore_remove_edge(false), @@ -124,8 +123,7 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Create the landmarks set (choosing the landmarks) , * and saving them in the nearest-neighbor search structure. */ - virtual void build_landmark_set() - { + virtual void build_landmark_set() { // Create the landmark points. NN_Points_set nn_points; _create_nn_points_set(nn_points); @@ -140,8 +138,7 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! clear the set of landmarks. */ - virtual void clear_landmark_set() - { + virtual void clear_landmark_set() { nn.clear(); num_small_not_updated_changes = 0; updated = false; @@ -153,8 +150,7 @@ class Arr_landmarks_generator_base : public Arr_observer { * arrangement (a vertex, halfedge, or face handle). * \return The nearest landmark point. */ - virtual Point_2 closest_landmark(const Point_2& p, PL_result_type& obj) - { + virtual Point_2 closest_landmark(const Point_2& p, PL_result_type& obj) { CGAL_assertion(updated); return (nn.find_nearest_neighbor(p, obj)); } @@ -162,13 +158,13 @@ class Arr_landmarks_generator_base : public Arr_observer { /// \name Overloaded observer functions on global changes. //@{ - /*! - * Notification before the arrangement is assigned with another - * arrangement. - * \param arr The arrangement to be copied. + /*! Notification before the arrangement is assigned with the content of + * another arrangement. + * \param arr The other arrangement. Notice that the arrangement type is the + * type used to instantiate the observer, which is conveniently + * defined as `Arrangement_2::Base_aos`. */ - virtual void before_assign(const Arrangement_2& arr) - { + virtual void before_assign(const Base_aos& arr) override { this->clear_landmark_set(); m_traits = static_cast(arr.geometry_traits()); m_ignore_notifications = true; @@ -177,8 +173,7 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Notification after the arrangement has been assigned with another * arrangement. */ - virtual void after_assign() - { + virtual void after_assign() override { this->build_landmark_set(); m_ignore_notifications = false; } @@ -186,8 +181,7 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Notification before the observer is attached to an arrangement. * \param arr The arrangement we are about to attach the observer to. */ - virtual void before_attach(const Arrangement_2& arr) - { + virtual void before_attach(const Base_aos& arr) override { this->clear_landmark_set(); m_traits = static_cast(arr.geometry_traits()); m_ignore_notifications = true; @@ -195,38 +189,33 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Notification after the observer has been attached to an arrangement. */ - virtual void after_attach() - { + virtual void after_attach() override { this->build_landmark_set(); m_ignore_notifications = false; } /*! Notification before the observer is detached from the arrangement. */ - virtual void before_detach() - { this->clear_landmark_set(); } + virtual void before_detach() override { this->clear_landmark_set(); } /*! Notification after the arrangement is cleared. * \param u A handle to the unbounded face. */ - virtual void after_clear() - { + virtual void after_clear() override { this->clear_landmark_set(); this->build_landmark_set(); } /*! Notification before a global operation modifies the arrangement. */ - virtual void before_global_change() - { + virtual void before_global_change() override { this->clear_landmark_set(); m_ignore_notifications = true; } /*! Notification after a global operation is completed. */ - virtual void after_global_change() - { + virtual void after_global_change() override { this->build_landmark_set(); m_ignore_notifications = false; } @@ -238,12 +227,11 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Notification before the removal of an edge. * \param e (in) A handle to one of the twin halfedges to be removed. */ - virtual void before_remove_edge(Halfedge_handle /* e */) + virtual void before_remove_edge(Halfedge_handle /* e */) override { m_ignore_remove_edge = true; } /*! Notification after the creation of a new vertex. */ - virtual void after_create_vertex(Vertex_handle) - { + virtual void after_create_vertex(Vertex_handle) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -251,8 +239,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after the creation of a new edge. */ - virtual void after_create_edge(Halfedge_handle) - { + virtual void after_create_edge(Halfedge_handle) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -260,8 +247,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after an edge was split. */ - virtual void after_split_edge(Halfedge_handle, Halfedge_handle) - { + virtual void after_split_edge(Halfedge_handle, Halfedge_handle) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -269,8 +255,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after a face was split. */ - virtual void after_split_face(Face_handle, Face_handle, bool) - { + virtual void after_split_face(Face_handle, Face_handle, bool) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -280,8 +265,7 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Notification after an outer CCB was split.*/ virtual void after_split_outer_ccb(Face_handle, Ccb_halfedge_circulator, - Ccb_halfedge_circulator) - { + Ccb_halfedge_circulator) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -291,8 +275,7 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Notification after an inner CCB was split. */ virtual void after_split_inner_ccb(Face_handle, Ccb_halfedge_circulator, - Ccb_halfedge_circulator) - { + Ccb_halfedge_circulator) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -300,8 +283,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after an outer CCB was added to a face. */ - virtual void after_add_outer_ccb(Ccb_halfedge_circulator) - { + virtual void after_add_outer_ccb(Ccb_halfedge_circulator) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -309,8 +291,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after an inner CCB was created inside a face. */ - virtual void after_add_inner_ccb(Ccb_halfedge_circulator) - { + virtual void after_add_inner_ccb(Ccb_halfedge_circulator) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -318,8 +299,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after an isolated vertex was created inside a face. */ - virtual void after_add_isolated_vertex(Vertex_handle) - { + virtual void after_add_isolated_vertex(Vertex_handle) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -327,8 +307,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after an edge was merged. */ - virtual void after_merge_edge(Halfedge_handle) - { + virtual void after_merge_edge(Halfedge_handle) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -336,8 +315,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after a face was merged. */ - virtual void after_merge_face(Face_handle) - { + virtual void after_merge_face(Face_handle) override { if (! m_ignore_notifications && ! m_ignore_remove_edge) { clear_landmark_set(); build_landmark_set(); @@ -346,7 +324,7 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Notification after an outer CCB was merged. */ virtual void after_merge_outer_ccb(Face_handle, Ccb_halfedge_circulator) - { + override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -355,7 +333,7 @@ class Arr_landmarks_generator_base : public Arr_observer { /*! Notification after an inner CCB was merged. */ virtual void after_merge_inner_ccb(Face_handle, Ccb_halfedge_circulator) - { + override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -363,8 +341,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after an outer CCB is moved from one face to another. */ - virtual void after_move_outer_ccb(Ccb_halfedge_circulator ) - { + virtual void after_move_outer_ccb(Ccb_halfedge_circulator) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -372,8 +349,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after an inner CCB is moved from one face to another. */ - virtual void after_move_inner_ccb(Ccb_halfedge_circulator ) - { + virtual void after_move_inner_ccb(Ccb_halfedge_circulator) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -381,8 +357,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after an isolated vertex is moved. */ - virtual void after_move_isolated_vertex(Vertex_handle ) - { + virtual void after_move_isolated_vertex(Vertex_handle) override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -390,8 +365,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notificaion after the removal of a vertex. */ - virtual void after_remove_vertex() - { + virtual void after_remove_vertex() override { if (! m_ignore_notifications && ! m_ignore_remove_edge) { clear_landmark_set(); build_landmark_set(); @@ -399,8 +373,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notification after the removal of an edge. */ - virtual void after_remove_edge() - { + virtual void after_remove_edge() override { if (! m_ignore_notifications) { clear_landmark_set(); build_landmark_set(); @@ -409,8 +382,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notificaion after the removal of an outer CCB. */ - virtual void after_remove_outer_ccb(Face_handle) - { + virtual void after_remove_outer_ccb(Face_handle) override { if (! m_ignore_notifications && ! m_ignore_remove_edge) { clear_landmark_set(); build_landmark_set(); @@ -418,8 +390,7 @@ class Arr_landmarks_generator_base : public Arr_observer { } /*! Notificaion after the removal of an inner CCB. */ - virtual void after_remove_inner_ccb(Face_handle) - { + virtual void after_remove_inner_ccb(Face_handle) override { if (! m_ignore_notifications && ! m_ignore_remove_edge) { clear_landmark_set(); build_landmark_set(); @@ -434,8 +405,7 @@ class Arr_landmarks_generator_base : public Arr_observer { */ virtual void _create_points_set(Points_set&) = 0; - virtual void _create_nn_points_set(NN_Points_set& nn_points) - { + virtual void _create_nn_points_set(NN_Points_set& nn_points) { Points_set points; Pairs_set pairs; @@ -453,8 +423,7 @@ class Arr_landmarks_generator_base : public Arr_observer { // Insert all landmarks (paired with their current location in the // arrangement) into the nearest-neighbor search structure. - Pairs_iterator itr; - for (itr = pairs.begin(); itr != pairs.end(); ++itr) { + for (auto itr = pairs.begin(); itr != pairs.end(); ++itr) { NN_Point_2 np(itr->first, itr->second); nn_points.push_back(np); } diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_lm_vertices_generator.h b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_lm_vertices_generator.h index 57478ec79363..01fd5aba0527 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_lm_vertices_generator.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Arr_lm_vertices_generator.h @@ -98,14 +98,13 @@ class Arr_landmarks_vertices_generator : virtual void build_landmark_set() { // Go over the arrangement, and insert all its vertices as landmarks. - NN_Point_list nnp_list; - const Arrangement_2* arr = this->arrangement(); - Vertex_const_iterator vit; + NN_Point_list nnp_list; + const auto* arr = this->arrangement(); num_landmarks = 0; - for (vit = arr->vertices_begin(); vit != arr->vertices_end(); ++vit) { + for (auto vit = arr->vertices_begin(); vit != arr->vertices_end(); ++vit) { Vertex_const_handle vh = vit; nnp_list.push_back(NN_Point_2(vh->point(), this->pl_make_result(vh))); - num_landmarks++; + ++num_landmarks; } // Update the search structure. diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h index 1a3549c0008c..82b554cb6a01 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h @@ -177,6 +177,7 @@ class Trapezoidal_decomposition_2 //typedef of arrangement on surface typedef typename Traits::Arrangement_on_surface_2 Arrangement_on_surface_2; + using Base_aos = typename Arrangement_on_surface_2::Base_aos; //type of traits adaptor typedef typename Traits::Arrangement_on_surface_2::Traits_adaptor_2 @@ -1804,7 +1805,7 @@ class Trapezoidal_decomposition_2 return m_number_of_curves; } - void init_arrangement_and_traits(const Arrangement_on_surface_2* arr, + void init_arrangement_and_traits(const Base_aos* arr, bool allocate_traits = true) { m_arr = arr; @@ -2125,7 +2126,7 @@ class Trapezoidal_decomposition_2 unsigned long m_number_of_curves; const Traits* traits; //Before_split_data m_before_split; - const Arrangement_on_surface_2* m_arr; + const Base_aos* m_arr; const Traits_adaptor_2* m_trts_adaptor; Halfedge_const_handle m_empty_he_handle; diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_tags.h b/Arrangement_on_surface_2/include/CGAL/Arr_tags.h index 91313be6c5d8..8f3c78095f4d 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_tags.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_tags.h @@ -21,7 +21,6 @@ #include #include #include -#include #include #include #include @@ -246,14 +245,14 @@ struct Arr_all_sides_not_finite_tag : struct Arr_not_all_sides_not_finite_tag : public virtual Arr_not_all_sides_oblivious_tag {}; -typedef boost::mpl::bool_ Arr_true; -typedef boost::mpl::bool_ Arr_false; +typedef std::true_type Arr_true; +typedef std::false_type Arr_false; template struct Arr_is_side_oblivious { typedef ArrSideCategory Side_cat; typedef std::is_same Is_same; - typedef boost::mpl::if_ result; + typedef std::bool_constant result; typedef typename result::type type; }; @@ -261,7 +260,7 @@ template struct Arr_is_side_open { typedef ArrSideCategory Side_cat; typedef std::is_same Is_same; - typedef boost::mpl::if_ result; + typedef std::bool_constant result; typedef typename result::type type; }; @@ -269,15 +268,19 @@ template struct Arr_is_side_identified { typedef ArrSideCategory Side_cat; typedef std::is_same Is_same; - typedef boost::mpl::if_ result; + typedef std::bool_constant result; typedef typename result::type type; }; +template +inline constexpr bool Arr_is_side_identified_v = + Arr_is_side_identified::type::value; + template struct Arr_is_side_contracted { typedef ArrSideCategory Side_cat; typedef std::is_same Is_same; - typedef boost::mpl::if_ result; + typedef std::bool_constant result; typedef typename result::type type; }; @@ -285,7 +288,7 @@ template struct Arr_is_side_closed { typedef ArrSideCategory Side_cat; typedef std::is_same Is_same; - typedef boost::mpl::if_ result; + typedef std::bool_constant result; typedef typename result::type type; }; @@ -307,10 +310,10 @@ struct Arr_all_sides_oblivious_category { /*! Boolean tag that is Arr_all_sides_oblivious_tag if all sides are * oblivious, otherwise Arr_not_all_sides_oblivious_tag */ - typedef typename boost::mpl::if_, - Arr_all_sides_oblivious_tag, - Arr_not_all_sides_oblivious_tag>::type + typedef std::conditional_t result; }; @@ -331,19 +334,19 @@ struct Arr_all_sides_not_open_category { typedef typename Arr_is_side_open::result Bot_ope; typedef typename Arr_is_side_open::result Top_ope; - typedef boost::mpl::not_ Lef_not_ope; - typedef boost::mpl::not_ Rig_not_ope; - typedef boost::mpl::not_ Bot_not_ope; - typedef boost::mpl::not_ Top_not_ope; + static inline constexpr bool lef_not_ope = !Lef_ope::value; + static inline constexpr bool rig_not_ope = !Rig_ope::value; + static inline constexpr bool bot_not_ope = !Bot_ope::value; + static inline constexpr bool top_not_ope = !Top_ope::value; public: /*! Boolean tag that is Arr_all_sides_not_open_tag if all sides are not-open, * otherwise Arr_not_all_sides_not_open_tag */ - typedef typename boost::mpl::if_, - Arr_all_sides_not_open_tag, - Arr_not_all_sides_not_open_tag>::type + typedef std::conditional_t result; }; @@ -374,23 +377,23 @@ struct Arr_sides_category { typedef typename Arr_is_side_open::result Bot_ope; typedef typename Arr_is_side_open::result Top_ope; - typedef boost::mpl::or_ Lef_obl_or_ope; - typedef boost::mpl::or_ Rig_obl_or_ope; - typedef boost::mpl::or_ Bot_obl_or_ope; - typedef boost::mpl::or_ Top_obl_or_ope; - - typedef typename boost::mpl::if_, - Arr_all_sides_not_finite_tag, - Arr_not_all_sides_not_finite_tag>::type + static inline constexpr bool lef_obl_or_ope = Lef_obl::value || Lef_ope::value; + static inline constexpr bool rig_obl_or_ope = Rig_obl::value || Rig_ope::value; + static inline constexpr bool bot_obl_or_ope = Bot_obl::value || Bot_ope::value; + static inline constexpr bool top_obl_or_ope = Top_obl::value || Top_ope::value; + + typedef std::conditional_t tmp; public: - typedef typename boost::mpl::if_, - Arr_all_sides_oblivious_tag, tmp>::type + typedef std::conditional_t result; }; @@ -404,32 +407,27 @@ struct Arr_sane_identified_tagging { typedef ArrBottomSideCategory Bot_side_cat; typedef ArrTopSideCategory Top_side_cat; - typedef typename Arr_is_side_identified::result Lef_ide; - typedef typename Arr_is_side_identified::result Rig_ide; - typedef typename Arr_is_side_identified::result Bot_ide; - typedef typename Arr_is_side_identified::result Top_ide; - - typedef boost::mpl::and_ LR_ide; - typedef boost::mpl::and_ BT_ide; + static inline constexpr bool lef_ide = Arr_is_side_identified_v; + static inline constexpr bool rig_ide = Arr_is_side_identified_v; + static inline constexpr bool bot_ide = Arr_is_side_identified_v; + static inline constexpr bool top_ide = Arr_is_side_identified_v; - typedef boost::mpl::not_ Lef_not_ide; - typedef boost::mpl::not_ Rig_not_ide; - typedef boost::mpl::not_ Bot_not_ide; - typedef boost::mpl::not_ Top_not_ide; + static inline constexpr bool lr_ide = lef_ide && rig_ide; + static inline constexpr bool bt_ide = bot_ide && top_ide; - typedef boost::mpl::and_ LR_not_ide; + static inline constexpr bool lr_not_ide = !lef_ide && !rig_ide; - typedef boost::mpl::and_ BT_not_ide; + static inline constexpr bool bt_not_ide = !bot_ide && !top_ide; - typedef boost::mpl::or_ LR_ok; - typedef boost::mpl::or_ BT_ok; + static inline constexpr bool lr_ok = lr_ide || lr_not_ide; + static inline constexpr bool bt_ok = bt_ide || bt_not_ide; - /*! Boolean tag that is bool_ if opposite sides are either + /*! Boolean tag that is bool_constant if opposite sides are either * both identified or both not-identified, - * otherwise bool_ + * otherwise bool_constant */ - typedef boost::mpl::and_ result; - static constexpr bool value = result::value; + typedef std::bool_constant result; + static inline constexpr bool value = result::value; }; /*! Checks whether one of two boundary sides are identified @@ -448,10 +446,10 @@ struct Arr_has_identified_sides { typedef typename Arr_is_side_identified::result Side_one_ide; typedef typename Arr_is_side_identified::result Side_two_ide; - /*! Boolean tag that is bool_ if one side is identified, - * otherwise bool_ + /*! Boolean tag that is bool_constant if one side is identified, + * otherwise bool_constant */ - typedef boost::mpl::or_ result; + typedef std::bool_constant result; }; /*! Checks whether one of two boundary sides are contracted @@ -464,10 +462,11 @@ struct Arr_has_contracted_sides_two { typedef typename Arr_is_side_contracted::result Side_one_con; typedef typename Arr_is_side_contracted::result Side_two_con; - /*!\ Boolean tag that is bool_ if one side is identified, - * otherwise bool_ + /*!\ Boolean tag that is bool_constant if one side is identified, + * otherwise bool_constant */ - typedef boost::mpl::or_ result; + typedef std::bool_constant result; }; /*! Checks whether one of two boundary sides are closed @@ -480,10 +479,11 @@ struct Arr_has_closed_sides_two { typedef typename Arr_is_side_closed::result Side_one_clo; typedef typename Arr_is_side_closed::result Side_two_clo; - /*! Boolean tag that is bool_ if one side is identified, - * otherwise bool_ + /*! Boolean tag that is bool_constant if one side is identified, + * otherwise bool_constant */ - typedef boost::mpl::or_ result; + typedef std::bool_constant result; }; /*! Checks whether one of two boundary sides are open @@ -496,10 +496,11 @@ struct Arr_has_open_sides_two { typedef typename Arr_is_side_open::result Side_one_ope; typedef typename Arr_is_side_open::result Side_two_ope; - /*! Boolean tag that is bool_ if one side is identified, - * otherwise bool_ + /*! Boolean tag that is bool_constant if one side is identified, + * otherwise bool_constant */ - typedef boost::mpl::or_ result; + typedef std::bool_constant result; }; /*! Categorizes two boundary sides: @@ -532,11 +533,11 @@ struct Arr_two_sides_category { Is_open; public: - typedef typename boost::mpl::if_::type>::type>::type>::type + typedef std::conditional_t>>> result; }; diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_trapezoid_ric_point_location.h b/Arrangement_on_surface_2/include/CGAL/Arr_trapezoid_ric_point_location.h index 7a4042e9601f..5776d9cf3ab8 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_trapezoid_ric_point_location.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_trapezoid_ric_point_location.h @@ -8,8 +8,8 @@ // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // -// Author(s) : Idit Haran -// (based on old version by Oren Nechushtan and Iddo Hanniel) +// Author(s): Idit Haran +// (based on old version by Oren Nechushtan and Iddo Hanniel) #ifndef CGAL_ARR_TRAPEZOID_RIC_POINT_LOCATION_H #define CGAL_ARR_TRAPEZOID_RIC_POINT_LOCATION_H @@ -26,7 +26,6 @@ #include #include #include -#include namespace CGAL { @@ -36,96 +35,95 @@ namespace CGAL { * The Arrangement parameter corresponds to an arrangement instantiation. */ template -class Arr_trapezoid_ric_point_location : public Arr_observer { +class Arr_trapezoid_ric_point_location : public Arrangement_::Observer { public: //type of arrangement on surface - typedef Arrangement_ Arrangement_on_surface_2; + using Arrangement_on_surface_2 = Arrangement_; + using Base_aos = typename Arrangement_on_surface_2::Base_aos; //type of geometry traits - typedef typename Arrangement_on_surface_2::Geometry_traits_2 - Geometry_traits_2; + using Geometry_traits_2 = typename Base_aos::Geometry_traits_2; + //type of traits adaptor - typedef typename Arrangement_on_surface_2::Traits_adaptor_2 - Traits_adaptor_2; + using Traits_adaptor_2 = typename Base_aos::Traits_adaptor_2; + //type of vertex handle - typedef typename Arrangement_on_surface_2::Vertex_handle - Vertex_handle; + using Vertex_handle = typename Base_aos::Vertex_handle; + //type of vertex const handle - typedef typename Arrangement_on_surface_2::Vertex_const_handle - Vertex_const_handle; + using Vertex_const_handle = typename Base_aos::Vertex_const_handle; + //type of halfedge handle - typedef typename Arrangement_on_surface_2::Halfedge_handle - Halfedge_handle; + using Halfedge_handle = typename Base_aos::Halfedge_handle; + //type of halfedge const handle - typedef typename Arrangement_on_surface_2::Halfedge_const_handle - Halfedge_const_handle; + using Halfedge_const_handle = typename Base_aos::Halfedge_const_handle; + //type of face const handle - typedef typename Arrangement_on_surface_2::Face_const_handle - Face_const_handle; + using Face_const_handle = typename Base_aos::Face_const_handle; + //type of edge const iterator - typedef typename Arrangement_on_surface_2::Edge_const_iterator - Edge_const_iterator; + using Edge_const_iterator = typename Base_aos::Edge_const_iterator; + //type of isolated vertex const iterator - typedef typename Arrangement_on_surface_2::Isolated_vertex_const_iterator - Isolated_vertex_const_iterator; + using Isolated_vertex_const_iterator = + typename Base_aos::Isolated_vertex_const_iterator; + //type of point - typedef typename Geometry_traits_2::Point_2 Point_2; + using Point_2 = typename Geometry_traits_2::Point_2; //type of x-monotone curve - typedef typename Geometry_traits_2::X_monotone_curve_2 - X_monotone_curve_2; + using X_monotone_curve_2 = typename Geometry_traits_2::X_monotone_curve_2; + //type of trapezoidal decomposition traits class - typedef CGAL::Td_traits - Td_traits; + using Td_traits = CGAL::Td_traits; + //type of trapezoidal decomposition class - typedef Trapezoidal_decomposition_2 - Trapezoidal_decomposition; + using Trapezoidal_decomposition = Trapezoidal_decomposition_2; //!types of Td_map_item-s - typedef typename Trapezoidal_decomposition::Td_map_item - Td_map_item; - typedef typename Trapezoidal_decomposition::Td_active_vertex - Td_active_vertex; - typedef typename Trapezoidal_decomposition::Td_active_fictitious_vertex - Td_active_fictitious_vertex; - typedef typename Trapezoidal_decomposition::Td_active_edge - Td_active_edge; - typedef typename Trapezoidal_decomposition::Td_active_trapezoid - Td_active_trapezoid; + using Td_map_item = typename Trapezoidal_decomposition::Td_map_item; + using Td_active_vertex = typename Trapezoidal_decomposition::Td_active_vertex; + using Td_active_fictitious_vertex = + typename Trapezoidal_decomposition::Td_active_fictitious_vertex; + using Td_active_edge = typename Trapezoidal_decomposition::Td_active_edge; + using Td_active_trapezoid = + typename Trapezoidal_decomposition::Td_active_trapezoid; + //!type of side tags - typedef typename Traits_adaptor_2::Left_side_category Left_side_category; - typedef typename Traits_adaptor_2::Bottom_side_category Bottom_side_category; - typedef typename Traits_adaptor_2::Top_side_category Top_side_category; - typedef typename Traits_adaptor_2::Right_side_category Right_side_category; + using Left_side_category = typename Traits_adaptor_2::Left_side_category; + using Bottom_side_category = typename Traits_adaptor_2::Bottom_side_category; + using Top_side_category = typename Traits_adaptor_2::Top_side_category; + using Right_side_category = typename Traits_adaptor_2::Right_side_category; protected: - typedef Arr_point_location_result Result; - typedef typename Result::Type Result_type; + using Result = Arr_point_location_result; + using Result_type = typename Result::Type; public: // Support cpp11::result_of - typedef Result_type result_type; + using result_type = Result_type; protected: //type of trapezoidal decomposition class - typedef Trapezoidal_decomposition TD; + using TD = Trapezoidal_decomposition; - typedef typename Arr_all_sides_oblivious_category::result - All_sides_oblivious_category; + using All_sides_oblivious_category= + typename Arr_all_sides_oblivious_category::result; // Data members: const Traits_adaptor_2* m_traits; // Its associated traits object. - TD td; // instance of trapezoidal decomposition + TD td; // instance of trapezoidal decomposition bool m_with_guarantees; //for the notification functions - X_monotone_curve_2 m_cv_before_split; - Halfedge_handle m_he_after_merge; - //X_monotone_curve_2 m_cv_before_merge1; - //X_monotone_curve_2 m_cv_before_merge2; + X_monotone_curve_2 m_cv_before_split; + Halfedge_handle m_he_after_merge; + //X_monotone_curve_2 m_cv_before_merge1; + //X_monotone_curve_2 m_cv_before_merge2; template Result_type make_result(T t) const { return Result::make_result(t); } @@ -133,26 +131,25 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { public: /*! Default constructor. */ - Arr_trapezoid_ric_point_location(bool with_guarantees = true, - double depth_thrs = CGAL_TD_DEFAULT_DEPTH_THRESHOLD, - double size_thrs = CGAL_TD_DEFAULT_SIZE_THRESHOLD) : - m_traits(nullptr), m_with_guarantees(with_guarantees) - { + Arr_trapezoid_ric_point_location + (bool with_guarantees = true, + double depth_thrs = CGAL_TD_DEFAULT_DEPTH_THRESHOLD, + double size_thrs = CGAL_TD_DEFAULT_SIZE_THRESHOLD) : + m_traits(nullptr), m_with_guarantees(with_guarantees) { td.set_with_guarantees(with_guarantees); td.depth_threshold(depth_thrs); td.size_threshold(size_thrs); } /*! Constructor given an arrangement. */ - Arr_trapezoid_ric_point_location (const Arrangement_on_surface_2& arr, - bool with_guarantees = true, - double depth_thrs = CGAL_TD_DEFAULT_DEPTH_THRESHOLD, - double size_thrs = CGAL_TD_DEFAULT_SIZE_THRESHOLD) : - Arr_observer - (const_cast(arr)), - m_with_guarantees(with_guarantees) - { - m_traits = static_cast (arr.geometry_traits()); + Arr_trapezoid_ric_point_location + (const Base_aos& arr, + bool with_guarantees = true, + double depth_thrs = CGAL_TD_DEFAULT_DEPTH_THRESHOLD, + double size_thrs = CGAL_TD_DEFAULT_SIZE_THRESHOLD) : + Base_aos::Observer(const_cast(arr)), + m_with_guarantees(with_guarantees) { + m_traits = static_cast(arr.geometry_traits()); td.set_with_guarantees(with_guarantees); td.init_arrangement_and_traits(&arr); td.depth_threshold(depth_thrs); @@ -161,17 +158,15 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { } /*! Destructor. */ - ~Arr_trapezoid_ric_point_location () { } + ~Arr_trapezoid_ric_point_location() { } /*! defines whether the underlying search structure guarantees logarithmic * query time and linear size */ - void with_guarantees (bool with_guarantees) - { + void with_guarantees(bool with_guarantees) { //if with_guarantees was changed from false to true - reconstruct // the search structure with guarantees td.set_with_guarantees(with_guarantees); - if (with_guarantees && !m_with_guarantees) - { + if (with_guarantees && !m_with_guarantees) { td.clear(); _construct_td(); } @@ -182,30 +177,20 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { * (the longest path in the DAG) */ unsigned long depth() //longest_dag_path() - { - return td.largest_leaf_depth() + 1; - } + { return td.largest_leaf_depth() + 1; } /*! returns the longest query path in the underlying search structure */ unsigned long longest_query_path_length() - { - return td.longest_query_path_length(); - } + { return td.longest_query_path_length(); } #ifdef CGAL_TD_DEBUG //void locate_and_print (std::ostream& out, const Point_2& p) const - //{ - // td.locate_and_print(out, p); - //} + //{ td.locate_and_print(out, p); } - void print_dag(std::ostream& out) const - { - td.print_dag(out); - } + void print_dag(std::ostream& out) const { td.print_dag(out); } #endif - /*! - * Locate the arrangement feature containing the given point. + /*! Locate the arrangement feature containing the given point. * \param p The query point. * \return An object representing the arrangement feature containing the * query point. This object is either a Face_const_handle or a @@ -213,8 +198,7 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { */ result_type locate(const Point_2& p) const; - /*! - * Locate the arrangement feature which a upward vertical ray emanating from + /*! Locate the arrangement feature which a upward vertical ray emanating from * the given point hits. * \param p The query point. * \return An object representing the arrangement feature the ray hits. @@ -224,8 +208,7 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { result_type ray_shoot_up(const Point_2& p) const { return (_vertical_ray_shoot(p, true)); } - /*! - * Locate the arrangement feature which a downward vertical ray emanating + /*! Locate the arrangement feature which a downward vertical ray emanating * from the given point hits. * \param p The query point. * \return An object representing the arrangement feature the ray hits. @@ -239,72 +222,62 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { // base observer. //@{ - virtual void before_assign (const Arrangement_on_surface_2& arr) - { + /*! Notification before the arrangement is assigned with the content of + * another arrangement. + * \param arr The other arrangement. Notice that the arrangement type is the + * type used to instantiate the observer, which is conveniently + * defined as `Arrangement_2::Base_aos`. + */ + virtual void before_assign(const Base_aos& arr) override { td.clear(); m_traits = static_cast (arr.geometry_traits()); td.init_arrangement_and_traits(&arr, false); } - virtual void after_assign () - { - _construct_td(); - } + virtual void after_assign() override { _construct_td(); } - virtual void before_clear () - { - td.clear(); - } + virtual void before_clear() override { td.clear(); } - virtual void after_clear () - { - _construct_td(); - } + virtual void after_clear() override { _construct_td(); } - virtual void before_attach (const Arrangement_on_surface_2& arr) - { + /*! Notification before the observer is attached to an arrangement. + * \param arr The arrangement that is about to attach the observer. Notice + * that the arrangement type is the type used to instantiate the + * observer, which is conveniently defined as + * `Arrangement_2::Base_aos`. + */ + virtual void before_attach(const Base_aos& arr) override { td.clear(); m_traits = static_cast (arr.geometry_traits()); td.init_arrangement_and_traits(&arr); } - virtual void after_attach () - { - _construct_td(); - } + virtual void after_attach() override { _construct_td(); } - virtual void before_detach () - { - td.clear(); - } + virtual void before_detach() override { td.clear(); } - virtual void after_create_edge (Halfedge_handle e) - { - td.insert(e); - } + virtual void after_create_edge(Halfedge_handle e) override { td.insert(e); } //TODO IDIT OREN: what can be done in order to avoid the need //to save the original curve is to find the common endpoint of the //two new halfedges, locate it in the trapezoid in order to find the //curve it lies on, which is the curve that was split, and then remove //this curve. - virtual void before_split_edge (Halfedge_handle e, - Vertex_handle /* v */, - const X_monotone_curve_2& /* cv1 */ , - const X_monotone_curve_2& /* cv2 */ ) - { - - ////MICHAL: commented due to inefficient depth update, remove and insert instead - ////save the curve for the "after" function. + virtual void before_split_edge(Halfedge_handle e, + Vertex_handle /* v */, + const X_monotone_curve_2& /* cv1 */, + const X_monotone_curve_2& /* cv2 */) override { + + ////MICHAL: commented due to inefficient depth update, remove and insert + ////instead save the curve for the "after" function. //m_cv_before_split = e->curve(); //td.before_split_edge(m_cv_before_split, cv1, cv2); td.remove(e); } - virtual void after_split_edge (Halfedge_handle e1, - Halfedge_handle e2) - { + virtual void after_split_edge(Halfedge_handle e1, Halfedge_handle e2) + override { //MICHAL: commented due to inefficient depth update, remove and insert instead //td.split_edge(m_cv_before_split,e1,e2); @@ -312,29 +285,20 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { td.insert(e2); } - virtual void before_merge_edge (Halfedge_handle e1, - Halfedge_handle e2, - const X_monotone_curve_2& cv) - { + virtual void before_merge_edge(Halfedge_handle e1, Halfedge_handle e2, + const X_monotone_curve_2& cv) override { //save the halfedge handle for the "after" function. m_he_after_merge = e1; td.merge_edge (e1, e2, cv); } - virtual void after_merge_edge (Halfedge_handle e) - { - td.after_merge_edge(e, m_he_after_merge); - } + virtual void after_merge_edge(Halfedge_handle e) override + { td.after_merge_edge(e, m_he_after_merge); } - virtual void before_remove_edge (Halfedge_handle e) - { - //called before combinatoric deletion - td.remove(e); - } + virtual void before_remove_edge(Halfedge_handle e) override { td.remove(e); } //@} public: - //#ifdef CGAL_TD_DEBUG // void debug() // { @@ -343,27 +307,22 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { //#endif protected: - /*! Construct the trapezoidal decomposition. */ - void _construct_td () - { + void _construct_td() { td.clear(); std::vector he_container; - Edge_const_iterator eit; - Halfedge_const_handle he_cst; - Arrangement_on_surface_2 *arr = this->arrangement(); + auto* arr = this->arrangement(); //collect the arrangement halfedges - for (eit = arr->edges_begin(); eit != arr->edges_end(); ++eit) - { - he_cst = eit; + for (auto eit = arr->edges_begin(); eit != arr->edges_end(); ++eit) { + Halfedge_const_handle he_cst = eit; he_container.push_back(he_cst); } //container insertion td.insert(he_container.begin(), he_container.end()); } - /*! gets the unbounded face that contains the point when the trapezoid is + /*! Obtain the unbounded face that contains the point when the trapezoid is * unbounded * \param tr The unbounded trapezoid whose face we should get * \param p The query point. @@ -371,24 +330,23 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { * \return A Face_const_handle representing the arrangement unbounded face in * which the point p lies */ - Face_const_handle _get_unbounded_face (const Td_map_item& tr, - const Point_2& p, - Arr_all_sides_oblivious_tag) const; + Face_const_handle _get_unbounded_face(const Td_map_item& tr, + const Point_2& p, + Arr_all_sides_oblivious_tag) const; - /*! gets the unbounded face that contains the point when the trapezoid is + /*! Obtain the unbounded face that contains the point when the trapezoid is * unbounded * \param tr The unbounded trapezoid whose face we should get * \param p The query point. * \param Arr_not_all_sides_oblivious_tag - * \return A Face_const_handle representing the arrangement unbounded face in which - * the point p lies + * \return A Face_const_handle representing the arrangement unbounded face in + * which the point p lies */ - Face_const_handle _get_unbounded_face (const Td_map_item& tr, - const Point_2& p, - Arr_not_all_sides_oblivious_tag) const; + Face_const_handle _get_unbounded_face(const Td_map_item& tr, + const Point_2& p, + Arr_not_all_sides_oblivious_tag) const; - /*! - * Locate the arrangement feature which a vertical ray emanating from the + /*! Locate the arrangement feature which a vertical ray emanating from the * given point hits, considering isolated vertices. * \param p The query point. * \param shoot_up Indicates whether the ray is directed upward or downward. @@ -403,11 +361,10 @@ class Arr_trapezoid_ric_point_location : public Arr_observer { * we check the isolated vertices inside the face to check whether there * is an isolated vertex right above/below the query point. */ - result_type - _check_isolated_for_vertical_ray_shoot - (Halfedge_const_handle halfedge_found, - const Point_2& p, bool shoot_up, - const Td_map_item& tr) const; + result_type _check_isolated_for_vertical_ray_shoot + (Halfedge_const_handle halfedge_found, + const Point_2& p, bool shoot_up, + const Td_map_item& tr) const; }; } //namespace CGAL diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_triangulation_point_location.h b/Arrangement_on_surface_2/include/CGAL/Arr_triangulation_point_location.h index e3f5c3565ff4..37aef38630cb 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_triangulation_point_location.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_triangulation_point_location.h @@ -21,7 +21,6 @@ * Definition of the Arr_triangulation_point_location template. */ -#include #include #include @@ -39,73 +38,70 @@ namespace CGAL { * triangulation algorithm. */ template -class Arr_triangulation_point_location : public Arr_observer -{ +class Arr_triangulation_point_location : public Arrangement_::Observer { public: - typedef Arrangement_ Arrangement_2; - - typedef typename Arrangement_2::Geometry_traits_2 Geometry_traits_2; - typedef typename Geometry_traits_2::Kernel Kernel; - - typedef typename Arrangement_2::Vertex_const_handle Vertex_const_handle; - typedef typename Arrangement_2::Halfedge_const_handle Halfedge_const_handle; - typedef typename Arrangement_2::Face_const_handle Face_const_handle; - typedef typename Arrangement_2::Vertex_handle Vertex_handle; - typedef typename Arrangement_2::Halfedge_handle Halfedge_handle; - typedef typename Arrangement_2::Face_handle Face_handle; - - typedef typename Arrangement_2::Vertex_const_iterator Vertex_const_iterator; - typedef typename Arrangement_2::Edge_const_iterator Edge_const_iterator; - typedef typename Arrangement_2::Face_const_iterator Face_const_iterator; - typedef typename Arrangement_2::Halfedge_const_iterator - Halfedge_const_iterator; - typedef typename Arrangement_2::Halfedge_around_vertex_const_circulator - Halfedge_around_vertex_const_circulator; - typedef typename Arrangement_2::Ccb_halfedge_const_circulator - Ccb_halfedge_const_circulator; - typedef typename Arrangement_2::Ccb_halfedge_circulator - Ccb_halfedge_circulator; - typedef typename Arrangement_2::Isolated_vertex_const_iterator - Isolated_vertex_const_iterator; - - typedef typename Geometry_traits_2::Point_2 Point_2; - typedef typename Geometry_traits_2::X_monotone_curve_2 X_monotone_curve_2; - - typedef std::list Edge_list; - typedef typename Edge_list::iterator Std_edge_iterator; + using Arrangement_2 = Arrangement_; + using Base_aos = typename Arrangement_2::Base_aos; + + using Geometry_traits_2 = typename Base_aos::Geometry_traits_2; + using Kernel = typename Geometry_traits_2::Kernel; + + using Vertex_const_handle = typename Base_aos::Vertex_const_handle; + using Halfedge_const_handle = typename Base_aos::Halfedge_const_handle; + using Face_const_handle = typename Base_aos::Face_const_handle; + using Vertex_handle = typename Base_aos::Vertex_handle; + using Halfedge_handle = typename Base_aos::Halfedge_handle; + using Face_handle = typename Base_aos::Face_handle; + + using Vertex_const_iterator = typename Base_aos::Vertex_const_iterator; + using Edge_const_iterator = typename Base_aos::Edge_const_iterator; + using Face_const_iterator = typename Base_aos::Face_const_iterator; + using Halfedge_const_iterator = typename Base_aos::Halfedge_const_iterator; + using Halfedge_around_vertex_const_circulator = + typename Base_aos::Halfedge_around_vertex_const_circulator; + using Ccb_halfedge_const_circulator = + typename Base_aos::Ccb_halfedge_const_circulator; + using Ccb_halfedge_circulator = typename Base_aos::Ccb_halfedge_circulator; + using Isolated_vertex_const_iterator = + typename Base_aos::Isolated_vertex_const_iterator; + + using Point_2 = typename Geometry_traits_2::Point_2; + using X_monotone_curve_2 = typename Geometry_traits_2::X_monotone_curve_2; + + using Edge_list = std::list; + using Std_edge_iterator = typename Edge_list::iterator; //---------------------------------------------------------- // Triangulation Types //---------------------------------------------------------- - typedef Triangulation_vertex_base_with_info_2 - Vbb; - typedef Triangulation_hierarchy_vertex_base_2 Vb; + using Vbb = Triangulation_vertex_base_with_info_2; + using Vb = Triangulation_hierarchy_vertex_base_2; //typedef Triangulation_face_base_with_info_2 Fbt; - typedef Constrained_triangulation_face_base_2 Fb; - typedef Triangulation_data_structure_2 TDS; - typedef Exact_predicates_tag Itag; + using Fb = Constrained_triangulation_face_base_2; + using TDS = Triangulation_data_structure_2; + using Itag = Exact_predicates_tag; //typedef Constrained_Delaunay_triangulation_2 CDT; - typedef Constrained_Delaunay_triangulation_2 CDT_t; - typedef Triangulation_hierarchy_2 CDTH; - typedef Constrained_triangulation_plus_2 CDT; - - typedef typename CDT::Point CDT_Point; - typedef typename CDT::Edge CDT_Edge; - typedef typename CDT::Face_handle CDT_Face_handle; - typedef typename CDT::Vertex_handle CDT_Vertex_handle; - typedef typename CDT::Finite_faces_iterator CDT_Finite_faces_iterator; - typedef typename CDT::Finite_vertices_iterator CDT_Finite_vertices_iterator; - typedef typename CDT::Finite_edges_iterator CDT_Finite_edges_iterator; - typedef typename CDT::Locate_type CDT_Locate_type; - - typedef Arr_point_location_result Result; - typedef typename Result::Type Result_type; + using CDT_t = Constrained_Delaunay_triangulation_2; + using CDTH = Triangulation_hierarchy_2; + using CDT = Constrained_triangulation_plus_2; + + using CDT_Point = typename CDT::Point; + using CDT_Edge = typename CDT::Edge; + using CDT_Face_handle = typename CDT::Face_handle; + using CDT_Vertex_handle = typename CDT::Vertex_handle; + using CDT_Finite_faces_iterator = typename CDT::Finite_faces_iterator; + using CDT_Finite_vertices_iterator = typename CDT::Finite_vertices_iterator; + using CDT_Finite_edges_iterator = typename CDT::Finite_edges_iterator; + using CDT_Locate_type = typename CDT::Locate_type; + + using Result = Arr_point_location_result; + using Result_type = typename Result::Type; // Support cpp11::result_of - typedef Result_type result_type; + using result_type = Result_type; protected: - typedef Arr_traits_basic_adaptor_2 Traits_adaptor_2; + using Traits_adaptor_2 = Arr_traits_basic_adaptor_2; // Data members: const Traits_adaptor_2* m_traits; // Its associated traits object. @@ -128,8 +124,8 @@ class Arr_triangulation_point_location : public Arr_observer /*! Constructor from an arrangement. * \param arr (in) The arrangement. */ - Arr_triangulation_point_location(const Arrangement_2& arr) : - Arr_observer(const_cast(arr)), + Arr_triangulation_point_location(const Base_aos& arr) : + Base_aos::Observer(const_cast(arr)), m_traits(static_cast(arr.geometry_traits())), m_ignore_notifications(false), m_ignore_remove_edge(false) @@ -149,12 +145,12 @@ class Arr_triangulation_point_location : public Arr_observer /*! Attach an arrangement. * \param arr (in) The arrangement. */ - virtual void before_attach(const Arrangement_2& arr) + virtual void before_attach(const Base_aos& arr) override { m_traits = static_cast(arr.geometry_traits()); } - virtual void after_attach() { build_triangulation(); } + virtual void after_attach() override { build_triangulation(); } - virtual void before_detach() { clear_triangulation(); } + virtual void before_detach() override { clear_triangulation(); } /// \name Overloaded observer functions on global changes. //@{ @@ -162,32 +158,28 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification after the arrangement has been assigned with another * arrangement. */ - virtual void after_assign() - { + virtual void after_assign() override { clear_triangulation(); build_triangulation(); } /*! Notification after the arrangement is cleared. */ - virtual void after_clear() - { + virtual void after_clear() override { clear_triangulation(); build_triangulation(); } /*! Notification before a global operation modifies the arrangement. */ - virtual void before_global_change() - { + virtual void before_global_change() override { clear_triangulation(); m_ignore_notifications = true; } /*! Notification after a global operation is completed. */ - virtual void after_global_change() - { + virtual void after_global_change() override { build_triangulation(); m_ignore_notifications = false; } @@ -199,14 +191,13 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification before the removal of an edge. * \param e (in) A handle to one of the twin halfedges to be removed. */ - virtual void before_remove_edge(Halfedge_handle /* e */) + virtual void before_remove_edge(Halfedge_handle /* e */) override { m_ignore_remove_edge = true; } /*! Notification after the creation of a new vertex. * \param v (in) A handle to the created vertex. */ - virtual void after_create_vertex(Vertex_handle /* v */) - { + virtual void after_create_vertex(Vertex_handle /* v */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -216,8 +207,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification after the creation of a new edge. * \param e (in) A handle to one of the twin halfedges that were created. */ - virtual void after_create_edge(Halfedge_handle /* e */) - { + virtual void after_create_edge(Halfedge_handle /* e */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -229,8 +219,7 @@ class Arr_triangulation_point_location : public Arr_observer * \param e2 (in) A handle to one of the twin halfedges forming the second edge. */ virtual void after_split_edge(Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */) - { + Halfedge_handle /* e2 */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -244,8 +233,7 @@ class Arr_triangulation_point_location : public Arr_observer */ virtual void after_split_face(Face_handle /* f */, Face_handle /* new_f */, - bool /* is_hole */) - { + bool /* is_hole */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -255,8 +243,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification after an outer CCB was created inside a face. * \param h (in) A circulator representing the boundary of the new outer CCB. */ - virtual void after_add_outer_ccb(Ccb_halfedge_circulator /* h */) - { + virtual void after_add_outer_ccb(Ccb_halfedge_circulator /* h */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -266,8 +253,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification after an edge was merged. * \param e (in) A handle to one of the twin halfedges forming the merged edge. */ - virtual void after_merge_edge(Halfedge_handle /* e */) - { + virtual void after_merge_edge(Halfedge_handle /* e */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -277,8 +263,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification after a face was merged. * \param f (in) A handle to the merged face. */ - virtual void after_merge_face(Face_handle /* f */) - { + virtual void after_merge_face(Face_handle /* f */) override { if (! m_ignore_notifications && ! m_ignore_remove_edge) { clear_triangulation(); build_triangulation(); @@ -288,8 +273,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification after an outer CCB is moved from one face to another. * \param h (in) A circulator representing the boundary of the component. */ - virtual void after_move_outer_ccb(Ccb_halfedge_circulator /* h */) - { + virtual void after_move_outer_ccb(Ccb_halfedge_circulator /* h */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -299,8 +283,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notificaion before the removal of a vertex. * \param v (in) A handle to the vertex to be deleted. */ - virtual void after_remove_vertex() - { + virtual void after_remove_vertex() override { if (! m_ignore_notifications && ! m_ignore_remove_edge) { clear_triangulation(); build_triangulation(); @@ -310,8 +293,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification before the removal of an edge. * \param e (in) A handle to one of the twin halfedges to be deleted. */ - virtual void after_remove_edge() - { + virtual void after_remove_edge() override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -322,8 +304,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification before the removal of an outer CCB. * \param f (in) The face that used to own the outer CCB. */ - virtual void after_remove_outer_ccb(Face_handle /* f */) - { + virtual void after_remove_outer_ccb(Face_handle /* f */) override { if (! m_ignore_notifications && ! m_ignore_remove_edge) { clear_triangulation(); build_triangulation(); @@ -333,8 +314,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification after an inner CCB was created inside a face. * \param h (in) A circulator representing the boundary of the new inner CCB. */ - virtual void after_add_inner_ccb(Ccb_halfedge_circulator /* h */) - { + virtual void after_add_inner_ccb(Ccb_halfedge_circulator /* h */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -344,8 +324,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notification after an inner CCB is moved from one face to another. * \param h (in) A circulator representing the boundary of the component. */ - virtual void after_move_inner_ccb(Ccb_halfedge_circulator /* h */) - { + virtual void after_move_inner_ccb(Ccb_halfedge_circulator /* h */) override { if (! m_ignore_notifications) { clear_triangulation(); build_triangulation(); @@ -355,8 +334,7 @@ class Arr_triangulation_point_location : public Arr_observer /*! Notificaion after the removal of an inner CCB. * \param f (in) The face that used to contain the inner CCB. */ - virtual void after_remove_inner_ccb(Face_handle /* f */) - { + virtual void after_remove_inner_ccb(Face_handle /* f */) override { if (! m_ignore_notifications && ! m_ignore_remove_edge) { clear_triangulation(); build_triangulation(); diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_vertex_index_map.h b/Arrangement_on_surface_2/include/CGAL/Arr_vertex_index_map.h index ac6902cc9e22..a9682dc5bad1 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_vertex_index_map.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_vertex_index_map.h @@ -22,7 +22,6 @@ /*! \file * Definition of the Arr_vertex_index_map class. */ -#include #include #include @@ -35,154 +34,120 @@ namespace CGAL { * arrangement vertices to the indices 0, ..., (n -1), where n is the number * of vertices in the arrangement. */ -template -class Arr_vertex_index_map : public Arr_observer -{ +template +class Arr_vertex_index_map : public Arrangement_::Observer { public: + using Arrangement_2 = Arrangement_; + using Base_aos = typename Arrangement_2::Base_aos; - typedef Arrangement_ Arrangement_2; - typedef typename Arrangement_2::Vertex_handle Vertex_handle; + using Vertex_handle = typename Base_aos::Vertex_handle; // Boost property type definitions: - typedef boost::readable_property_map_tag category; - typedef unsigned int value_type; - typedef value_type reference; - typedef Vertex_handle key_type; + using category = boost::readable_property_map_tag; + using value_type = unsigned int; + using reference = value_type; + using key_type = Vertex_handle; private: + using Self = Arr_vertex_index_map; + using Base = typename Arrangement_2::Observer; - typedef Arr_vertex_index_map Self; - typedef Arr_observer Base; - - typedef Unique_hash_map Index_map; + using Index_map = Unique_hash_map; // Data members: - unsigned int n_vertices; // The current number of vertices. - Index_map index_map; // Mapping vertices to indices. - std::vector rev_map; // Mapping indices to vertices. + unsigned int n_vertices; // The current number of vertices. + Index_map index_map; // Mapping vertices to indices. + std::vector rev_map; // Mapping indices to vertices. enum {MIN_REV_MAP_SIZE = 32}; public: - /*! Default constructor. */ - Arr_vertex_index_map () : - Base (), - n_vertices (0), - rev_map (MIN_REV_MAP_SIZE) + Arr_vertex_index_map() : + Base(), + n_vertices(0), + rev_map(MIN_REV_MAP_SIZE) {} /*! Constructor with an associated arrangement. */ - Arr_vertex_index_map (const Arrangement_2& arr) : - Base (const_cast (arr)) - { - _init(); - } + Arr_vertex_index_map(const Base_aos& arr) : + Base(const_cast(arr)) + { _init(); } /*! Copy constructor. */ - Arr_vertex_index_map (const Self& other) : - Base (const_cast (*(other.arrangement()))) - { - _init(); - } + Arr_vertex_index_map(const Self& other) : + Base(const_cast(*(other.arrangement()))) + { _init(); } /*! Assignment operator. */ - Self& operator= (const Self& other) - { - if (this == &other) - return (*this); + Self& operator= (const Self& other) { + if (this == &other) return (*this); this->detach(); - this->attach (const_cast (*(other.arrangement()))); + this->attach(const_cast(*(other.arrangement()))); return (*this); } - /*! - * Get the index of a given vertex. + /*! Get the index of a given vertex. * \param v A handle to the vertex. * \pre v is a valid vertex in the arrangement. */ - unsigned int operator[] (Vertex_handle v) const - { - return index_map[v]; - } + unsigned int operator[](Vertex_handle v) const { return index_map[v]; } - /*! - * Get the vertex given its index. + /*! Get the vertex given its index. * \param i The index of the vertex. * \pre i is less than the number of vertices in the graph. */ - Vertex_handle vertex (const int i) const - { - CGAL_precondition (i < n_vertices); - + Vertex_handle vertex(const int i) const { + CGAL_precondition(i < n_vertices); return rev_map[i]; } /// \name Notification functions, to keep the mapping up-to-date. //@{ - /*! - * Update the mapping after the arrangement has been assigned with another + /*! Update the mapping after the arrangement has been assigned with another * arrangement. */ - virtual void after_assign () - { - _init(); - } + virtual void after_assign() override { _init(); } - /*! - * Update the mapping after the arrangement is cleared. + /*! Update the mapping after the arrangement is cleared. */ - virtual void after_clear () - { - _init(); - } + virtual void after_clear() override { _init(); } - /*! - * Update the mapping after attaching to a new arrangement. + /*! Update the mapping after attaching to a new arrangement. */ - virtual void after_attach () - { - _init(); - } + virtual void after_attach() override { _init(); } - /*! - * Update the mapping after detaching the arrangement. + /*! Update the mapping after detaching the arrangement. */ - virtual void after_detach () - { + virtual void after_detach() override { n_vertices = 0; index_map.clear(); } - /*! - * Update the mapping after the creation of a new vertex. + /*! Update the mapping after the creation of a new vertex. * \param v A handle to the created vertex. */ - virtual void after_create_vertex (Vertex_handle v) - { + virtual void after_create_vertex(Vertex_handle v) override { // Update the number of vertices. - n_vertices++; + ++n_vertices; // If necessary, allocate memory for the reverse mapping. - if (rev_map.size() < n_vertices) - rev_map.resize (2 * n_vertices); + if (rev_map.size() < n_vertices) rev_map.resize(2 * n_vertices); // Update the mapping of the newly created vertex. index_map[v] = n_vertices - 1; rev_map[n_vertices - 1] = v; } - /*! - * Update the mapping after the creation of a new boundary vertex. + /*! Update the mapping after the creation of a new boundary vertex. * \param v A handle to the created vertex. */ - virtual void after_create_boundary_vertex (Vertex_handle v) - { + virtual void after_create_boundary_vertex(Vertex_handle v) override { // Update the number of vertices. - n_vertices++; + ++n_vertices; // If necessary, allocate memory for the reverse mapping. if (rev_map.size() < n_vertices) @@ -193,31 +158,28 @@ class Arr_vertex_index_map : public Arr_observer rev_map[n_vertices - 1] = v; } - /*! - * Update the mapping before the removal of a vertex. + /*! Update the mapping before the removal of a vertex. * \param v A handle to the vertex to be removed. */ - virtual void before_remove_vertex (Vertex_handle v) - { + virtual void before_remove_vertex(Vertex_handle v) override { // Update the number of vertices. - n_vertices--; + --n_vertices; // Reduce memory consumption in case the number of vertices has // drastically decreased. if (2*n_vertices+1 < rev_map.size() && rev_map.size() / 2 >= MIN_REV_MAP_SIZE) { - rev_map.resize (rev_map.size() / 2); + rev_map.resize(rev_map.size() / 2); } // Get the current vertex index, and assign this index to the vertex // currently indexed (n - 1). - unsigned int index = index_map[v]; + unsigned int index = index_map[v]; - if (index == n_vertices) - return; + if (index == n_vertices) return; - Vertex_handle last_v = rev_map[n_vertices]; + Vertex_handle last_v = rev_map[n_vertices]; index_map[last_v] = index; rev_map[index] = last_v; @@ -227,51 +189,42 @@ class Arr_vertex_index_map : public Arr_observer //@} private: - /*! Initialize the map for the given arrangement. */ - void _init () - { + void _init() { // Get the number of vertices and allocate the reverse map accordingly. - n_vertices = static_cast(this->arrangement()->number_of_vertices()); + n_vertices = + static_cast(this->arrangement()->number_of_vertices()); - if (n_vertices < MIN_REV_MAP_SIZE) - rev_map.resize (MIN_REV_MAP_SIZE); - else - rev_map.resize (n_vertices); + if (n_vertices < MIN_REV_MAP_SIZE) rev_map.resize (MIN_REV_MAP_SIZE); + else rev_map.resize (n_vertices); // Clear the current mapping. index_map.clear(); // Create the initial mapping. - typename Arrangement_2::Vertex_iterator vit; - Vertex_handle vh; - unsigned int index = 0; + Vertex_handle vh; + unsigned int index = 0; - for (vit = this->arrangement()->vertices_begin(); - vit != this->arrangement()->vertices_end(); ++vit, ++index) - { + for (auto vit = this->arrangement()->vertices_begin(); + vit != this->arrangement()->vertices_end(); ++vit, ++index) { // Map the current vertex to the current index. vh = vit; index_map[vh] = index; rev_map[index] = vh; } } - }; -/*! - * Get the index property-map function. Provided so that boost is able to +/*! Get the index property-map function. Provided so that boost is able to * access the Arr_vertex_index_map above. * \param index_map The index map. * \param v A vertex handle. * \return The vertex index. */ -template -unsigned int get (const CGAL::Arr_vertex_index_map& index_map, - typename Arrangement::Vertex_handle v) -{ - return index_map[v]; -} +template +unsigned int get(const CGAL::Arr_vertex_index_map& index_map, + typename Arrangement::Vertex_handle v) +{ return index_map[v]; } } //namespace CGAL diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_vertical_decomposition_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_vertical_decomposition_2.h index 75c8f25e0c96..099f44192ee5 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_vertical_decomposition_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_vertical_decomposition_2.h @@ -24,7 +24,6 @@ #include #include -#include #include namespace CGAL { @@ -124,7 +123,7 @@ decompose(const Arrangement_on_surface_2& arr, * Use the form 'A a(*b);' and not ''A a = b;' to handle the case where A has * only an implicit constructor, (which takes *b as a parameter). */ - typename boost::mpl::if_, const Vgt2&, Vgt2>::type + std::conditional_t, const Vgt2&, Vgt2> ex_traits(*geom_traits); // Define the sweep-line visitor and perform the sweep. diff --git a/Arrangement_on_surface_2/include/CGAL/Arrangement_2.h b/Arrangement_on_surface_2/include/CGAL/Arrangement_2.h index 0b0e1769f808..dbeab324b121 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arrangement_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arrangement_2.h @@ -116,12 +116,9 @@ class Arrangement_2 : typedef typename Base::Inner_ccb_const_iterator Hole_const_iterator; private: - - friend class Arr_observer; friend class Arr_accessor; public: - /// \name Constructors. //@{ @@ -216,34 +213,6 @@ class Arrangement_2 : } //@} - -protected: - - /// \name Managing and notifying the arrangement observers. - //@{ - typedef Arr_observer Observer; - - /*! - * Register a new observer (so it starts receiving notifications). - * \param p_obs A pointer to the observer object. - */ - void _register_observer (Observer *p_obs) - { - Base::_register_observer ((typename Base::Observer*)p_obs); - return; - } - - /*! - * Unregister a new observer (so it stops receiving notifications). - * \param p_obs A pointer to the observer object. - * \return Whether the observer was successfully unregistered. - */ - bool _unregister_observer (Observer *p_obs) - { - return (Base::_unregister_observer ((typename Base::Observer*)p_obs)); - } - //@} - }; } //namespace CGAL diff --git a/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arr_on_surface_with_history_2_impl.h b/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arr_on_surface_with_history_2_impl.h index b60f198906f3..8c63a3344c1e 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arr_on_surface_with_history_2_impl.h +++ b/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arr_on_surface_with_history_2_impl.h @@ -273,29 +273,6 @@ bool Arrangement_on_surface_with_history_2::are_mergeable e2->curve())); } -//----------------------------------------------------------------------------- -// Register a new observer (so it starts receiving notifications). -// -template -void Arrangement_on_surface_with_history_2:: -_register_observer(Arr_observer *p_obs) -{ - Base_arr_2::_register_observer - (reinterpret_cast*>(p_obs)); - return; -} - -//----------------------------------------------------------------------------- -// Unregister an observer (so it stops receiving notifications). -// -template -bool Arrangement_on_surface_with_history_2:: -_unregister_observer(Arr_observer *p_obs) -{ - return (Base_arr_2::_unregister_observer - (reinterpret_cast*>(p_obs))); -} - } //namespace CGAL #endif diff --git a/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arr_traits_adaptor_2_dispatching.h b/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arr_traits_adaptor_2_dispatching.h index e4533596dd2b..9bcabf985d68 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arr_traits_adaptor_2_dispatching.h +++ b/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arr_traits_adaptor_2_dispatching.h @@ -17,7 +17,6 @@ #include -#include #include #include #include @@ -59,25 +58,22 @@ struct Or_traits { private: - typedef boost::mpl::bool_< true > true_; - typedef boost::mpl::bool_< false > false_; + typedef std::conditional_t< + std::is_same_v< Arr_smaller_implementation_tag, Arr_use_traits_tag >, + std::true_type, std::false_type > Smaller_traits; - typedef boost::mpl::if_< - std::is_same< Arr_smaller_implementation_tag, Arr_use_traits_tag >, - true_, false_ > Smaller_traits; - - typedef boost::mpl::if_< - std::is_same< Arr_larger_implementation_tag, Arr_use_traits_tag >, - true_, false_ > Larger_traits; + typedef std::conditional_t< + std::is_same_v< Arr_larger_implementation_tag, Arr_use_traits_tag >, + std::true_type, std::false_type > Larger_traits; public: //! the result type (if one side asks for traits, then ask traits! //! Or vice versa: If both ask for dummy, then dummy!) - typedef typename boost::mpl::if_< - boost::mpl::or_< Smaller_traits, Larger_traits >, + typedef std::conditional_t< + Smaller_traits::value || Larger_traits::value, Arr_use_traits_tag, - Arr_use_dummy_tag >::type type; + Arr_use_dummy_tag > type; }; diff --git a/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arrangement_on_surface_2_global.h b/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arrangement_on_surface_2_global.h index 0f2957d47149..5bc8054c5254 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arrangement_on_surface_2_global.h +++ b/Arrangement_on_surface_2/include/CGAL/Arrangement_2/Arrangement_on_surface_2_global.h @@ -23,8 +23,6 @@ #include #include -#include -#include #include #include @@ -66,7 +64,7 @@ namespace Ss2 = Surface_sweep_2; // // error: no matching function for call to `do_intersect(Arrangement_2<>&, // const Arr_segment_2&, const Arr_walk_along_line_point_location<>&, -// mpl_::bool_< true>)' +// std::bool_constant< true>)' // template @@ -137,7 +135,7 @@ void insert(Arrangement_on_surface_2& arr, // // error: no matching function for call to `do_intersect(Arrangement_2<>&, // const Arr_segment_2&, const Arr_walk_along_line_point_location<>&, -// mpl_::bool_< true>)' +// std::bool_constant< true>)' // // template & arr, * Use the form 'A a(*b);' and not ''A a = b;' to handle the case where A has * only an implicit constructor, (which takes *b as a parameter). */ - typename boost::mpl::if_, const Cgt2&, Cgt2>::type + std::conditional_t, const Cgt2&, Cgt2> traits(*geom_traits); // Define a surface-sweep instance and perform the sweep: @@ -326,7 +324,7 @@ void insert_empty(Arrangement_on_surface_2& * Use the form 'A a(*b);' and not ''A a = b;' to handle the case where A has * only an implicit constructor, (which takes *b as a parameter). */ - typename boost::mpl::if_, const Cgt2&, Cgt2>::type + std::conditional_t, const Cgt2&, Cgt2> traits(*geom_traits); // Define a surface-sweep instance and perform the sweep. @@ -379,7 +377,7 @@ void insert_non_empty(Arrangement_on_surface_2, const Igt2&, Igt2>::type + std::conditional_t, const Igt2&, Igt2> traits(*geom_traits); // Create a set of existing as well as new curves and points. @@ -411,7 +409,7 @@ void insert_non_empty(Arrangement_on_surface_2&, // const Arr_segment_2&, const Arr_walk_along_line_point_location<>&, -// mpl_::bool_< true>)' +// std::bool_constant< true>)' // template @@ -465,7 +463,7 @@ void insert(Arrangement_on_surface_2& arr, // // error: no matching function for call to `do_intersect(Arrangement_2<>&, // const Arr_segment_2&, const Arr_walk_along_line_point_location<>&, -// mpl_::bool_< true>)' +// std::bool_constant< true>)' // template @@ -979,7 +977,7 @@ non_intersecting_insert_non_empty(Arrangement_on_surface_2, const Igt2&, Igt2>::type + std::conditional_t, const Igt2&, Igt2> traits(*geom_traits); // Create a set of existing as well as new curves and points. @@ -1526,7 +1524,7 @@ zone(Arrangement_on_surface_2& arr, // workaround since it didn't compile in FC3_g++-3.4.4 with the error of: // // error: no matching function for call to `do_intersect(Arrangement_on_surface_2<>&, -// const Arr_segment_2&, const Arr_walk_along_line_point_location<>&, mpl_::bool_< true>)' +// const Arr_segment_2&, const Arr_walk_along_line_point_location<>&, std::bool_constant< true>)' // template @@ -1564,7 +1562,7 @@ do_intersect(Arrangement_on_surface_2& arr, // // error: no matching function for call to // `do_intersect(Arrangement_on_surface_2<>&, -// const Arr_segment_2&, const Arr_walk_along_line_point_location<>&, mpl_::bool_< true>)' +// const Arr_segment_2&, const Arr_walk_along_line_point_location<>&, std::bool_constant< true>)' // template diff --git a/Arrangement_on_surface_2/include/CGAL/Arrangement_on_surface_2.h b/Arrangement_on_surface_2/include/CGAL/Arrangement_on_surface_2.h index 8df2b6cde580..4dad5388eaa2 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arrangement_on_surface_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arrangement_on_surface_2.h @@ -109,8 +109,11 @@ class Arrangement_on_surface_2 { typedef typename Topology_traits::Dcel Dcel; typedef typename Dcel::Size Size; + using Observer = Aos_observer; + using Base_aos = Self; + protected: - friend class Arr_observer; + friend class Aos_observer; friend class Arr_accessor; // Internal DCEL types: @@ -892,7 +895,6 @@ class Arrangement_on_surface_2 { typedef CGAL_ALLOCATOR(Point_2) Points_alloc; typedef CGAL_ALLOCATOR(X_monotone_curve_2) Curves_alloc; - typedef Arr_observer Observer; typedef std::list Observers_container; typedef typename Observers_container::iterator Observers_iterator; diff --git a/Arrangement_on_surface_2/include/CGAL/Arrangement_on_surface_with_history_2.h b/Arrangement_on_surface_2/include/CGAL/Arrangement_on_surface_with_history_2.h index 0c201db12984..c1072bafc853 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arrangement_on_surface_with_history_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arrangement_on_surface_with_history_2.h @@ -26,7 +26,6 @@ #include #include #include -#include #include #include @@ -75,10 +74,7 @@ class Arrangement_on_surface_with_history_2 : typedef typename Geometry_traits_2::Curve_2 Curve_2; typedef typename Geometry_traits_2::X_monotone_curve_2 X_monotone_curve_2; - typedef Arr_observer Observer; - protected: - friend class Arr_observer; friend class Arr_accessor; friend class Arr_with_history_accessor; @@ -247,111 +243,87 @@ class Arrangement_on_surface_with_history_2 : * involving edges and updates the list of halfedges associated with the * input curves accordingly. */ - class Curve_halfedges_observer : public Arr_observer { + class Curve_halfedges_observer : public Base_arr_2::Observer { public: + using Base_aos = typename Base_arr_2::Base_aos; - typedef typename Base_arr_2::Halfedge_handle Halfedge_handle; - typedef typename Base_arr_2::Vertex_handle Vertex_handle; - typedef typename Base_arr_2::X_monotone_curve_2 X_monotone_curve_2; + using Vertex_handle = typename Base_aos::Vertex_handle; + using Halfedge_handle = typename Base_aos::Halfedge_handle; + using X_monotone_curve_2 = typename Base_aos::X_monotone_curve_2; - /*! - * Notification after the creation of a new edge. + /*! Notification after the creation of a new edge. * \param e A handle to one of the twin halfedges that were created. */ - virtual void after_create_edge (Halfedge_handle e) - { - _register_edge(e); - } + virtual void after_create_edge(Halfedge_handle e) override + { _register_edge(e); } /*! * Notification before the modification of an existing edge. * \param e A handle to one of the twin halfedges to be updated. * \param c The x-monotone curve to be associated with the edge. */ - virtual void before_modify_edge (Halfedge_handle e, - const X_monotone_curve_2& /* c */) - { - _unregister_edge(e); - } + virtual void before_modify_edge(Halfedge_handle e, + const X_monotone_curve_2& /* c */) override + { _unregister_edge(e); } - /*! - * Notification after an edge was modified. + /*! Notification after an edge was modified. * \param e A handle to one of the twin halfedges that were updated. */ - virtual void after_modify_edge (Halfedge_handle e) - { - _register_edge(e); - } + virtual void after_modify_edge(Halfedge_handle e) override + { _register_edge(e); } - /*! - * Notification before the splitting of an edge into two. + /*! Notification before the splitting of an edge into two. * \param e A handle to one of the existing halfedges. * \param c1 The x-monotone curve to be associated with the first edge. * \param c2 The x-monotone curve to be associated with the second edge. */ - virtual void before_split_edge (Halfedge_handle e, - Vertex_handle /* v */, - const X_monotone_curve_2& /* c1 */, - const X_monotone_curve_2& /* c2 */) - { - _unregister_edge(e); - } + virtual void before_split_edge(Halfedge_handle e, + Vertex_handle /* v */, + const X_monotone_curve_2& /* c1 */, + const X_monotone_curve_2& /* c2 */) override + { _unregister_edge(e); } - /*! - * Notification after an edge was split. + /*! Notification after an edge was split. * \param e1 A handle to one of the twin halfedges forming the first edge. * \param e2 A handle to one of the twin halfedges forming the second edge. */ - virtual void after_split_edge (Halfedge_handle e1, Halfedge_handle e2) - { + virtual void after_split_edge(Halfedge_handle e1, Halfedge_handle e2) + override { _register_edge(e1); _register_edge(e2); } - /*! - * Notification before the merging of two edges. + /*! Notification before the merging of two edges. * \param e1 A handle to one of the halfedges forming the first edge. * \param e2 A handle to one of the halfedges forming the second edge. * \param c The x-monotone curve to be associated with the merged edge. */ - virtual void before_merge_edge (Halfedge_handle e1, Halfedge_handle e2, - const X_monotone_curve_2& /* c */) - { + virtual void before_merge_edge(Halfedge_handle e1, Halfedge_handle e2, + const X_monotone_curve_2& /* c */) override { _unregister_edge(e1); _unregister_edge(e2); } - /*! - * Notification after an edge was merged. + /*! Notification after an edge was merged. * \param e A handle to one of the twin halfedges forming the merged edge. */ - virtual void after_merge_edge (Halfedge_handle e) - { - _register_edge(e); - } + virtual void after_merge_edge(Halfedge_handle e) override + { _register_edge(e); } - /*! - * Notification before the removal of an edge. + /*! Notification before the removal of an edge. * \param e A handle to one of the twin halfedges to be deleted. */ - virtual void before_remove_edge (Halfedge_handle e) - { - _unregister_edge(e); - } + virtual void before_remove_edge(Halfedge_handle e) override + { _unregister_edge(e); } private: - /*! - * Register the given halfedge in the set(s) associated with its curve. + /*! Register the given halfedge in the set(s) associated with its curve. */ - void _register_edge (Halfedge_handle e) - { - Curve_halfedges *curve_halfedges; - Data_iterator di; - - for (di = e->curve().data().begin(); di != e->curve().data().end(); ++di) - { - curve_halfedges = static_cast(*di); + void _register_edge(Halfedge_handle e) { + for (auto di = e->curve().data().begin(); di != e->curve().data().end(); + ++di) { + Curve_halfedges* curve_halfedges = static_cast(*di); curve_halfedges->_insert(e); } } @@ -359,14 +331,10 @@ class Arrangement_on_surface_with_history_2 : /*! * Unregister the given halfedge from the set(s) associated with its curve. */ - void _unregister_edge (Halfedge_handle e) - { - Curve_halfedges *curve_halfedges; - Data_iterator di; - - for (di = e->curve().data().begin(); di != e->curve().data().end(); ++di) - { - curve_halfedges = static_cast(*di); + void _unregister_edge(Halfedge_handle e) { + for (auto di = e->curve().data().begin(); di != e->curve().data().end(); + ++di) { + Curve_halfedges* curve_halfedges = static_cast(*di); curve_halfedges->_erase(e); } } @@ -550,24 +518,6 @@ class Arrangement_on_surface_with_history_2 : //@} protected: - - /// \name Managing and notifying the arrangement observers. - //@{ - - /*! - * Register a new observer (so it starts receiving notifications). - * \param p_obs A pointer to the observer object. - */ - void _register_observer (Observer *p_obs); - - /*! - * Unregister an observer (so it stops receiving notifications). - * \param p_obs A pointer to the observer object. - * \return Whether the observer was successfully unregistered. - */ - bool _unregister_observer (Observer *p_obs); - //@} - /// \name Curve insertion and deletion. //@{ diff --git a/Arrangement_on_surface_2/include/CGAL/Arrangement_with_history_2.h b/Arrangement_on_surface_2/include/CGAL/Arrangement_with_history_2.h index 7e421c6ce54c..010fa182c001 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arrangement_with_history_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arrangement_with_history_2.h @@ -121,7 +121,6 @@ class Arrangement_with_history_2 : private: typedef Arrangement_with_history_2 Self; - friend class Arr_observer; friend class Arr_accessor; public: @@ -235,35 +234,8 @@ class Arrangement_with_history_2 : return (Face_const_handle (p_oc->face())); } - //@} - -protected: - - /// \name Managing and notifying the arrangement observers. - //@{ - typedef Arr_observer Observer; - /*! - * Register a new observer (so it starts receiving notifications). - * \param p_obs A pointer to the observer object. - */ - void _register_observer (Observer *p_obs) - { - Base::_register_observer ((typename Base::Observer*)p_obs); - return; - } - - /*! - * Unregister a new observer (so it stops receiving notifications). - * \param p_obs A pointer to the observer object. - * \return Whether the observer was successfully unregistered. - */ - bool _unregister_observer (Observer *p_obs) - { - return (Base::_unregister_observer ((typename Base::Observer*)p_obs)); - } //@} - }; } //namespace CGAL diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Arc_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Arc_2.h index 8766eac294d0..c7a47a2c1b2a 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Arc_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Arc_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Eric Berberich // Pavel Emeliyanenko @@ -13,6 +13,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_ARC_2_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_ARC_2_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Arc_2.h *\brief defines class \c Arc_2 that represents an arc on a curve that * can be analyzed. diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curve_interval_arcno_cache.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curve_interval_arcno_cache.h index 7a8cf2840bf1..36152129a941 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curve_interval_arcno_cache.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curve_interval_arcno_cache.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Pavel Emeliyanenko @@ -13,6 +13,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_CURVE_INTERVAL_ARCNO_CACHE_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_CURVE_INTERVAL_ARCNO_CACHE_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Curve_interval_arcno_cache.h * \brief defines \c Curve_interval_arcno_cache functor */ diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curve_renderer_facade.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curve_renderer_facade.h index 3bb749b395cd..dc31345cf8c0 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curve_renderer_facade.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curve_renderer_facade.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Pavel Emeliyanenko // @@ -21,6 +21,9 @@ #ifndef CGAL_CKVA_CURVE_RENDERER_FACADE_H #define CGAL_CKVA_CURVE_RENDERER_FACADE_H +#include + + // do not compile curve renderer code (for fast debugging) //#define CGAL_CKVA_DUMMY_RENDERER diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h index 8fe1efa48c79..7087285e754f 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Eric Berberich @@ -14,6 +14,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_FUNCTORS_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_FUNCTORS_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h * \brief defines Curved_kernel_via_analysis_2 function objects + class */ diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_impl.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_impl.h index 66f20cccf099..cbc2a9ad81ad 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_impl.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_impl.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Eric Berberich @@ -14,6 +14,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_IMPL_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_IMPL_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2.h * \brief defines class \c Curved_kernel_via_analysis_2 * diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Filtered_curved_kernel_via_analysis_2_impl.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Filtered_curved_kernel_via_analysis_2_impl.h index 45bb19fa5586..34eb19ae4b29 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Filtered_curved_kernel_via_analysis_2_impl.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Filtered_curved_kernel_via_analysis_2_impl.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Eric Berberich @@ -15,6 +15,9 @@ #ifndef CGAL_FILTERED_CURVED_KERNEL_VIA_ANALYSIS_2_IMPL_H #define CGAL_FILTERED_CURVED_KERNEL_VIA_ANALYSIS_2_IMPL_H +#include + + /*!\file include/CGAL/Filtered_curved_kernel_via_analysis_2.h * \brief defines class \c Filtered_curved_kernel_via_analysis_2 * diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Generic_arc_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Generic_arc_2.h index 06ec76eb58f8..d0f318f0fa6f 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Generic_arc_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Generic_arc_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Pavel Emeliyanenko @@ -14,6 +14,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_GENERIC_ARC_2_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_GENERIC_ARC_2_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Generic_arc_2.h * \brief defines class \c Generic_arc_2 * diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Generic_point_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Generic_point_2.h index c465cae03009..b13e3cd0da4a 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Generic_point_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Generic_point_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Pavel Emeliyanenko @@ -13,6 +13,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_GENERIC_POINT_2_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_GENERIC_POINT_2_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Generic_point_2.h * \brief defines class \c Generic_point_2 * diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Make_x_monotone_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Make_x_monotone_2.h index aae3aea01e9d..0b495e31bc23 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Make_x_monotone_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Make_x_monotone_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Eric Berberich @@ -17,6 +17,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_MAKE_X_MONOTONE_2_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_MAKE_X_MONOTONE_2_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Make_x_monotone_2.h * \brief defines \c Make_x_monotone_2 functor */ diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Non_x_monotone_arc_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Non_x_monotone_arc_2.h index d2cae5964bfe..9e95d7de5fbc 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Non_x_monotone_arc_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Non_x_monotone_arc_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Pavel Emeliyanenko @@ -13,6 +13,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_NON_X_MONOTONE_ARC_2_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_NON_X_MONOTONE_ARC_2_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Non_x_monotone_arc_2.h * \brief defines class \c Non_x_monotone_arc_2 * diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h index f64c67b70eac..f2c5c1bec8a6 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Point_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Eric Berberich @@ -14,6 +14,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_POINT_2_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_POINT_2_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Point_2.h * \brief defines class \c Point_2 that represents a point on a curve that can * be analyzed. diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Sweep_curves_adapter_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Sweep_curves_adapter_2.h index 018992c467b4..9576806a1b38 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Sweep_curves_adapter_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/Sweep_curves_adapter_2.h @@ -5,13 +5,16 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Pavel Emeliyanenko #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_SWEEP_CURVES_ADAPTER_2_H -#define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_SWEEP_CURVES_ADAPTER_2_H 1 +#define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_SWEEP_CURVES_ADAPTER_2_H + +#include + /*!\file include/CGAL/Curved_kernel_via_analysis_2/Sweep_curves_adapter_2.h * \brief defines class \c Sweep_curves_adapter_2 diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_2.h index 32d3d4cc8493..fcf022620d90 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Pavel Emeliyanenko // @@ -19,6 +19,9 @@ #ifndef CGAL_CKVA_CURVE_RENDERER_2_H #define CGAL_CKVA_CURVE_RENDERER_2_H +#include + + #ifndef CGAL_AK_ENABLE_DEPRECATED_INTERFACE #define CGAL_AK_ENABLE_DEPRECATED_INTERFACE 1 #endif diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_internals.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_internals.h index c0c62a2ad887..1cbc6be55359 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_internals.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_internals.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Pavel Emeliyanenko // @@ -22,7 +22,10 @@ */ #ifndef CGAL_CKVA_CURVE_RENDERER_INTERNALS_H -#define CGAL_CKVA_CURVE_RENDERER_INTERNALS_H 1 +#define CGAL_CKVA_CURVE_RENDERER_INTERNALS_H + +#include + #include #include diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_traits.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_traits.h index 32e108b71c0b..5300354df86a 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_traits.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_traits.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Pavel Emeliyanenko // @@ -14,6 +14,9 @@ #ifndef CGAL_CKVA_CURVE_RENDERER_TRAITS_H #define CGAL_CKVA_CURVE_RENDERER_TRAITS_H +#include + + #include #include diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_1.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_1.h index 395b44a9f11e..078b7df5b8ea 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_1.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_1.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Pavel Emeliyanenko // @@ -17,7 +17,10 @@ */ #ifndef CGAL_CKVA_SUBDIVISION_1_H -#define CGAL_CKVA_SUBDIVISION_1_H 1 +#define CGAL_CKVA_SUBDIVISION_1_H + +#include + #include #include diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_2.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_2.h index 9358316c0b8d..5a70721c6093 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/gfx/Subdivision_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Pavel Emeliyanenko // @@ -17,7 +17,10 @@ */ #ifndef CGAL_CKVA_SUBDIVISION_2_H -#define CGAL_CKVA_SUBDIVISION_2_H 1 +#define CGAL_CKVA_SUBDIVISION_2_H + +#include + #warning this file is considered obsolete diff --git a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h index 201bfc19b4bd..c81fd5b93bd4 100644 --- a/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h +++ b/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Pavel Emeliyanenko @@ -13,6 +13,9 @@ #ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_TEST_SIMPLE_MODELS_H #define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_TEST_SIMPLE_MODELS_H +#include + + /*!\file include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h * \brief defines dummy implementations satisfying Curve_kernel_2 * concept requirenments diff --git a/Arrangement_on_surface_2/include/CGAL/Surface_sweep_2/Arr_overlay_ss_visitor.h b/Arrangement_on_surface_2/include/CGAL/Surface_sweep_2/Arr_overlay_ss_visitor.h index 30c8b38b4a0d..06052a8f19d7 100644 --- a/Arrangement_on_surface_2/include/CGAL/Surface_sweep_2/Arr_overlay_ss_visitor.h +++ b/Arrangement_on_surface_2/include/CGAL/Surface_sweep_2/Arr_overlay_ss_visitor.h @@ -295,7 +295,7 @@ class Arr_overlay_ss_visitor : * \param tag The tag used for dispatching. */ void _map_boundary_vertices(Event* event, Vertex_handle v, - boost::mpl::bool_ /* tag */); + std::bool_constant /* tag */); /*! * Update the boundary vertices map. @@ -306,7 +306,7 @@ class Arr_overlay_ss_visitor : * \param tag The tag used for dispatching. */ void _map_boundary_vertices(Event* event, Vertex_handle v, - boost::mpl::bool_ /* tag */); + std::bool_constant /* tag */); /*! * Update a newly created vertex using the overlay traits. @@ -319,7 +319,7 @@ class Arr_overlay_ss_visitor : * \param tag The tag used for dispatching. */ void _create_vertex(Event* event, Vertex_handle res_v, Subcurve* sc, - boost::mpl::bool_ /* tag */); + std::bool_constant /* tag */); /*! * Update a newly created vertex using the overlay traits. @@ -331,7 +331,7 @@ class Arr_overlay_ss_visitor : * \param tag The tag used for dispatching. */ void _create_vertex(Event* event, Vertex_handle res_v, Subcurve* sc, - boost::mpl::bool_ /* tag */); + std::bool_constant /* tag */); /*! * Update a newly created edge using the overlay traits. @@ -922,7 +922,7 @@ _map_halfedge_and_twin(Halfedge_handle he, // template void Arr_overlay_ss_visitor:: -_map_boundary_vertices(Event* event, Vertex_handle v, boost::mpl::bool_) +_map_boundary_vertices(Event* event, Vertex_handle v, std::bool_constant) { // Update the red and blue object if the last event on sc is on the boundary. if ((event->parameter_space_in_x() != ARR_INTERIOR) || @@ -960,7 +960,7 @@ _map_boundary_vertices(Event* event, Vertex_handle v, boost::mpl::bool_) template void Arr_overlay_ss_visitor:: _map_boundary_vertices(Event* /* event */, Vertex_handle /* v */, - boost::mpl::bool_) + std::bool_constant) {} /* Notify the overlay traits about a newly created vertex. @@ -974,7 +974,7 @@ void Arr_overlay_ss_visitor:: _create_vertex(Event* event, Vertex_handle new_v, Subcurve* sc, - boost::mpl::bool_) + std::bool_constant) { const Point_2& pt = event->point(); const Cell_handle_red* red_handle = pt.red_cell_handle(); @@ -1011,7 +1011,7 @@ _create_vertex(Event* event, return; } - _create_vertex(event, new_v, sc, boost::mpl::bool_()); + _create_vertex(event, new_v, sc, std::bool_constant()); } /* Notify the overlay traits about a newly created vertex. */ @@ -1020,7 +1020,7 @@ void Arr_overlay_ss_visitor:: _create_vertex(Event* event, Vertex_handle new_v, Subcurve* sc, - boost::mpl::bool_) + std::bool_constant) { const Point_2& pt = event->point(); const Cell_handle_red* red_handle = pt.red_cell_handle(); diff --git a/Arrangement_on_surface_2/include/CGAL/boost/graph/graph_traits_Arrangement_2.h b/Arrangement_on_surface_2/include/CGAL/boost/graph/graph_traits_Arrangement_2.h index ad371b4667df..aabdea5bb495 100644 --- a/Arrangement_on_surface_2/include/CGAL/boost/graph/graph_traits_Arrangement_2.h +++ b/Arrangement_on_surface_2/include/CGAL/boost/graph/graph_traits_Arrangement_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Ron Wein @@ -14,6 +14,9 @@ #ifndef CGAL_BOOST_GRAPH_GRAPH_TRAITS_ARRANGEMENT_2_H #define CGAL_BOOST_GRAPH_GRAPH_TRAITS_ARRANGEMENT_2_H +#include + + #include #endif //CGAL_BOOST_GRAPH_GRAPH_TRAITS_ARRANGEMENT_2_H diff --git a/Arrangement_on_surface_2/include/CGAL/boost/graph/graph_traits_Dual_Arrangement_2.h b/Arrangement_on_surface_2/include/CGAL/boost/graph/graph_traits_Dual_Arrangement_2.h index 5126f0106869..f46345c3fcc1 100644 --- a/Arrangement_on_surface_2/include/CGAL/boost/graph/graph_traits_Dual_Arrangement_2.h +++ b/Arrangement_on_surface_2/include/CGAL/boost/graph/graph_traits_Dual_Arrangement_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Ron Wein @@ -14,6 +14,9 @@ #ifndef CGAL_BOOST_GRAPH_GRAPH_TRAITS_DUAL_ARRANGEMENT_2_H #define CGAL_BOOST_GRAPH_GRAPH_TRAITS_ARRANGEMENT_2_H +#include + + #include #endif //CGAL_BOOST_GRAPH_GRAPH_TRAITS_DUAL_ARRANGEMENT_2_H diff --git a/Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h b/Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h index 76e2eaf32832..7810ca4e62f1 100644 --- a/Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h +++ b/Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h @@ -9,7 +9,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s): Efi Fogel @@ -17,6 +17,9 @@ #ifndef CGAL_DRAW_ARRANGEMENT_2_H #define CGAL_DRAW_ARRANGEMENT_2_H +#include + + #include #include diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/CMakeLists.txt b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/CMakeLists.txt index bd49b35a5ac5..f138fb0beb3e 100644 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/CMakeLists.txt +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/CMakeLists.txt @@ -8,7 +8,4 @@ enable_testing() find_package(CGAL REQUIRED COMPONENTS Core) -include (${CGAL_USE_FILE}) -# Since CMake-2.8.12: New CMake script, that defines the targets and -# the CTest test cases. include(${CMAKE_CURRENT_SOURCE_DIR}/cgal_test.cmake) diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/cgal_test.cmake b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/cgal_test.cmake index 783ba994ab88..59f174e0ba60 100644 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/cgal_test.cmake +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/cgal_test.cmake @@ -72,13 +72,23 @@ if(CGAL_DISABLE_GMP) endif() if(CGAL_DISABLE_GMP) - message(STATUS "GMP is disable. Try to use LEDA instead.") - set(GMPZ_NT ${LEDA_INT_NT}) - set(QUOTIENT_CGAL_GMPZ_NT ${LEDA_RAT_NT}) - set(CGAL_GMPQ_NT ${LEDA_RAT_NT}) - set(LAZY_CGAL_GMPQ_NT ${LAZY_LEDA_RAT_NT}) - set(LAZY_GMPZ_NT ${LAZY_LEDA_RAT_NT}) - set(CGAL_GMPZ_NT ${LEDA_INT_NT}) + if (CGAL_USE_LEDA) + message(STATUS "GMP is disabled, try to use LEDA instead.") + set(GMPZ_NT ${LEDA_INT_NT}) + set(QUOTIENT_CGAL_GMPZ_NT ${LEDA_RAT_NT}) + set(CGAL_GMPQ_NT ${LEDA_RAT_NT}) + set(LAZY_CGAL_GMPQ_NT ${LAZY_LEDA_RAT_NT}) + set(LAZY_GMPZ_NT ${LAZY_LEDA_RAT_NT}) + set(CGAL_GMPZ_NT ${LEDA_INT_NT}) + else() + message(STATUS "GMP is disabled, try to use MP float instead.") + set(GMPZ_NT ${MP_FLOAT_NT}) + set(QUOTIENT_CGAL_GMPZ_NT ${QUOTIENT_MP_FLOAT_NT}) + set(CGAL_GMPQ_NT ${QUOTIENT_MP_FLOAT_NT}) + set(LAZY_CGAL_GMPQ_NT ${LAZY_QUOTIENT_MP_FLOAT_NT}) + set(LAZY_GMPZ_NT ${LAZY_QUOTIENT_MP_FLOAT_NT}) + set(CGAL_GMPZ_NT ${MP_FLOAT_NT}) + endif() endif() set(COMPARE 1) @@ -160,16 +170,16 @@ function(cgal_arr_2_add_target exe_name source_file) target_compile_options(${name} PRIVATE ${flags}) cgal_debug_message(STATUS "# -> target ${name} with TESTSUITE_CXXFLAGS: ${flags}") - if(BUILD_TESTING) + if(CGAL_ENABLE_TESTING) cgal_add_compilation_test(${name}) - endif(BUILD_TESTING) + endif(CGAL_ENABLE_TESTING) # Add a compatibility-mode with the shell script `cgal_test_base` if(NOT TARGET ${exe_name}) create_single_source_cgal_program( "${source_file}" NO_TESTING) - if(BUILD_TESTING) + if(CGAL_ENABLE_TESTING) cgal_add_compilation_test(${exe_name}) - endif(BUILD_TESTING) + endif(CGAL_ENABLE_TESTING) endif() endfunction() @@ -182,7 +192,7 @@ endfunction() function(run_test_with_flags) # ${ARGV0} - executable name # ${ARGV1} - test substring name - if(NOT BUILD_TESTING) + if(NOT CGAL_ENABLE_TESTING) return() endif() cgal_debug_message(STATUS "# run_test_with_flags(${ARGN})") @@ -190,7 +200,7 @@ function(run_test_with_flags) endfunction() function(run_test_alt name datafile) - if(NOT BUILD_TESTING) + if(NOT CGAL_ENABLE_TESTING) return() endif() if(suffix) @@ -214,7 +224,7 @@ function(compile_and_run) cgal_debug_message(STATUS "# compile_and_run(${ARGN})") # message(" successful compilation of ${name}") cgal_arr_2_add_target(${name} ${name}.cpp) - if(BUILD_TESTING) + if(CGAL_ENABLE_TESTING) cgal_add_test(${name}) endif() endfunction() diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/cgal_test_with_cmake b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/cgal_test_with_cmake index 4d62ce617774..d8c26c683902 100755 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/cgal_test_with_cmake +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/cgal_test_with_cmake @@ -78,13 +78,23 @@ CORE_INT_NT=15 CORE_RAT_NT=16 if [ -n "${CGAL_DISABLE_GMP}" ]; then - echo GMP is disable. Try to use LEDA instead. - GMPZ_NT=$LEDA_INT_NT - QUOTIENT_CGAL_GMPZ_NT=$LEDA_RAT_NT - CGAL_GMPQ_NT=$LEDA_RAT_NT - LAZY_CGAL_GMPQ_NT=$LAZY_LEDA_RAT_NT - LAZY_GMPZ_NT=$LAZY_LEDA_RAT_NT - CGAL_GMPZ_NT=$LEDA_INT_NT + if [ -n "CGAL_USE_LEDA" ]; then + echo GMP is disabled, try to use LEDA instead. + GMPZ_NT=$LEDA_INT_NT + QUOTIENT_CGAL_GMPZ_NT=$LEDA_RAT_NT + CGAL_GMPQ_NT=$LEDA_RAT_NT + LAZY_CGAL_GMPQ_NT=$LAZY_LEDA_RAT_NT + LAZY_GMPZ_NT=$LAZY_LEDA_RAT_NT + CGAL_GMPZ_NT=$LEDA_INT_NT + else + echo GMP is disabled, try to use MP float instead. + GMPZ_NT=$MP_FLOAT_NT + QUOTIENT_CGAL_GMPZ_NT=$QUOTIENT_MP_FLOAT_NT + CGAL_GMPQ_NT=$QUOTIENT_MP_FLOAT_NT + LAZY_CGAL_GMPQ_NT=$LAZY_QUOTIENT_MP_FLOAT_NT + LAZY_GMPZ_NT=$LAZY_QUOTIENT_MP_FLOAT_NT + CGAL_GMPZ_NT=$MP_FLOAT_NT + fi fi COMPARE=1 diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_dual.cpp b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_dual.cpp index 1915f8a1a235..98c2c4b1526b 100644 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_dual.cpp +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_dual.cpp @@ -5,7 +5,7 @@ #include #include -#include +#include #include diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_observer.cpp b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_observer.cpp index 6f12f6e8c736..6c5d646c62ef 100644 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_observer.cpp +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_observer.cpp @@ -5,7 +5,6 @@ #include #include #include -#include #include #include @@ -34,687 +33,509 @@ typedef Traits_2::Point_2 Point_2; typedef Traits_2::X_monotone_curve_2 Segment_2; typedef CGAL::Arrangement_2 Arrangement_2; -void skip_comments(std::ifstream & is, char * line) -{ +void skip_comments(std::ifstream & is, char* line) { while (!is.eof()) { is.getline(line, 128); if (line[0] != '#') break; } } -void compare_results(std::string str) -{ - skip_comments(global_input_file, one_line); - std::istringstream str_stream(one_line); - str_stream.getline(buff, 128, ' '); - if (std::string(buff)!=str) - { - std::cout << "Expected " << std::string(buff) << " obtained " - << str << std::endl; - ok=-1; - } +void compare_results(std::string str) { + skip_comments(global_input_file, one_line); + std::istringstream str_stream(one_line); + str_stream.getline(buff, 128, ' '); + if (std::string(buff) != str) { + std::cout << "Expected " << std::string(buff) << " obtained " + << str << std::endl; + ok = -1; + } } // An arrangement observer, used to receive notifications of face splits and // face mergers. -class Test_observer : public CGAL::Arr_observer -{ - +class Test_observer : public Arrangement_2::Observer { public: + using Observer = Arrangement_2::Observer; + using Base_aos = Arrangement_2::Base_aos; + + using Vertex_handle = Base_aos::Vertex_handle; + using Halfedge_handle = Base_aos::Halfedge_handle; + using Face_handle = Base_aos::Face_handle; + using Ccb_halfedge_circulator = Base_aos::Ccb_halfedge_circulator; + using Point_2 = Base_aos::Point_2; + using X_monotone_curve_2 = Base_aos::X_monotone_curve_2; - Test_observer (Arrangement_2& arr) : - CGAL::Arr_observer (arr) - {} + Test_observer(Base_aos& arr) : Observer(arr) {} /// \name Notification functions on global arrangement operations. //@{ - /*! - * Notification before the arrangement is assigned with another - * arrangement. - * \param arr The arrangement to be copied. + /*! Notification before the arrangement is assigned with the content of + * another arrangement. + * \param arr The other arrangement. Notice that the arrangement type is the + * type used to instantiate the observer, which is conveniently + * defined as `Arrangement_2::Base_aos`. */ - virtual void before_assign (const Arrangement_2& /* arr */) - { - compare_results("before_assign"); - } + virtual void before_assign(const Base_aos& /* arr */) override + { compare_results("before_assign"); } /*! * Notification after the arrangement has been assigned with another * arrangement. */ - virtual void after_assign () - { - compare_results("after_assign"); - } + virtual void after_assign() override { compare_results("after_assign"); } /*! Notification before the arrangement is cleared. */ - virtual void before_clear () - { - compare_results("before_clear"); - } + virtual void before_clear() override { compare_results("before_clear"); } /*! * Notification after the arrangement is cleared. */ - virtual void after_clear () - { - compare_results("after_clear"); - } + virtual void after_clear() override { compare_results("after_clear"); } /*! Notification before a global operation modifies the arrangement. */ - virtual void before_global_change () - { - compare_results("before_global_change"); - } + virtual void before_global_change() override + { compare_results("before_global_change"); } /*! Notification after a global operation is completed. */ - virtual void after_global_change () - { - compare_results("after_global_change"); - } + virtual void after_global_change() override + { compare_results("after_global_change"); } //@} /// \name Notification functions on observer attachment or detachment. //@{ - /*! - * Notification before the observer is attached to an arrangement. + /*! Notification before the observer is attached to an arrangement. * \param arr The arrangement we are about to attach the observer to. */ - virtual void before_attach (const Arrangement_2& /* arr */) - { - compare_results("before_attach"); - } + virtual void before_attach(const Base_aos& /* arr */) override + { compare_results("before_attach"); } - /*! - * Notification after the observer has been attached to an arrangement. + /*! Notification after the observer has been attached to an arrangement. */ - virtual void after_attach () - { - compare_results("after_attach"); - } + virtual void after_attach() override { compare_results("after_attach"); } - /*! - * Notification before the observer is detached from the arrangement. + /*! Notification before the observer is detached from the arrangement. */ - virtual void before_detach () - { - compare_results("before_detach"); - } + virtual void before_detach() override { compare_results("before_detach"); } - /*! - * Notification after the observer has been detached to the arrangement. + /*! Notification after the observer has been detached to the arrangement. */ - virtual void after_detach () - - { - compare_results("after_detach"); - } + virtual void after_detach() override { compare_results("after_detach"); } //@} /// \name Notification functions on local changes in the arrangement. //@{ - /*! - * Notification before the creation of a new vertex. + /*! Notification before the creation of a new vertex. * \param p The point to be associated with the vertex. * This point cannot lies on the surface boundaries. */ - virtual void before_create_vertex (const Point_2& /* p */) - { - compare_results("before_create_vertex"); - } + virtual void before_create_vertex(const Point_2& /* p */) override + { compare_results("before_create_vertex"); } - /*! - * Notification after the creation of a new vertex. + /*! Notification after the creation of a new vertex. * \param v A handle to the created vertex. */ - virtual void after_create_vertex (Vertex_handle /* v */) - { - compare_results("after_create_vertex"); - } + virtual void after_create_vertex(Vertex_handle /* v */) override + { compare_results("after_create_vertex"); } - /*! - * Notification before the creation of a new boundary vertex. + /*! Notification before the creation of a new boundary vertex. * \param cv The curve incident to the surface boundary. * \param ind The relevant curve-end. * \param bound_x The boundary condition of the vertex in x. * \param bound_y The boundary condition of the vertex in y. */ - virtual void before_create_boundary_vertex (const X_monotone_curve_2& /*cv*/, - CGAL::Arr_curve_end /* ind */, - CGAL::Arr_parameter_space /* bound_x */, - CGAL::Arr_parameter_space /* bound_y */) - { - compare_results("before_create_boundary_vertex"); - } + virtual void + before_create_boundary_vertex(const X_monotone_curve_2& /*cv*/, + CGAL::Arr_curve_end /* ind */, + CGAL::Arr_parameter_space /* bound_x */, + CGAL::Arr_parameter_space /* bound_y */) + override + { compare_results("before_create_boundary_vertex"); } - /*! - * Notification after the creation of a new vertex at infinity. + /*! Notification after the creation of a new vertex at infinity. * \param v A handle to the created vertex. */ - virtual void after_create_boundary_vertex (Vertex_handle /* v */) - { - compare_results("after_create_boundary_vertex"); - } + virtual void after_create_boundary_vertex(Vertex_handle /* v */) override + { compare_results("after_create_boundary_vertex"); } - /*! - * Notification before the creation of a new edge. + /*! Notification before the creation of a new edge. * \param c The x-monotone curve to be associated with the edge. * \param v1 A handle to the first end-vertex of the edge. * \param v2 A handle to the second end-vertex of the edge. */ - virtual void before_create_edge (const X_monotone_curve_2& /* c */, - Vertex_handle /* v1 */, - Vertex_handle /* v2 */) - { - compare_results("before_create_edge"); - } + virtual void before_create_edge(const X_monotone_curve_2& /* c */, + Vertex_handle /* v1 */, + Vertex_handle /* v2 */) override + { compare_results("before_create_edge"); } - /*! - * Notification after the creation of a new edge. + /*! Notification after the creation of a new edge. * \param e A handle to one of the twin halfedges that were created. */ - virtual void after_create_edge (Halfedge_handle /* e */) - { - compare_results("after_create_edge"); - } + virtual void after_create_edge(Halfedge_handle /* e */) override + { compare_results("after_create_edge"); } - /*! - * Notification before the modification of an existing vertex. + /*! Notification before the modification of an existing vertex. * \param v A handle to the vertex to be updated. * \param p The point to be associated with the vertex. */ - virtual void before_modify_vertex (Vertex_handle /* v */, - const Point_2& /* p */) - { - compare_results("before_modify_vertex"); - } + virtual void before_modify_vertex(Vertex_handle /* v */, + const Point_2& /* p */) override + { compare_results("before_modify_vertex"); } - /*! - * Notification after a vertex was modified. + /*! Notification after a vertex was modified. * \param v A handle to the updated vertex. */ - virtual void after_modify_vertex (Vertex_handle /* v */) - { - compare_results("after_modify_vertex"); - } + virtual void after_modify_vertex(Vertex_handle /* v */) override + { compare_results("after_modify_vertex"); } - /*! - * Notification before the modification of an existing edge. + /*! Notification before the modification of an existing edge. * \param e A handle to one of the twin halfedges to be updated. * \param c The x-monotone curve to be associated with the edge. */ - virtual void before_modify_edge (Halfedge_handle /* e */, - const X_monotone_curve_2& /* c */) - { - compare_results("before_modify_edge"); - } + virtual void before_modify_edge(Halfedge_handle /* e */, + const X_monotone_curve_2& /* c */) override + { compare_results("before_modify_edge"); } - /*! - * Notification after an edge was modified. + /*! Notification after an edge was modified. * \param e A handle to one of the twin halfedges that were updated. */ - virtual void after_modify_edge (Halfedge_handle /* e */) - { - compare_results("after_modify_edge"); - } + virtual void after_modify_edge(Halfedge_handle /* e */) override + { compare_results("after_modify_edge"); } - /*! - * Notification before the splitting of an edge into two. + /*! Notification before the splitting of an edge into two. * \param e A handle to one of the existing halfedges. * \param v A vertex representing the split point. * \param c1 The x-monotone curve to be associated with the first edge. * \param c2 The x-monotone curve to be associated with the second edge. */ - virtual void before_split_edge (Halfedge_handle /* e */, - Vertex_handle /* v */, - const X_monotone_curve_2& /* c1 */, - const X_monotone_curve_2& /* c2 */) - { - compare_results("before_split_edge"); - } + virtual void before_split_edge(Halfedge_handle /* e */, + Vertex_handle /* v */, + const X_monotone_curve_2& /* c1 */, + const X_monotone_curve_2& /* c2 */) override + { compare_results("before_split_edge"); } - /*! - * Notification after an edge was split. + /*! Notification after an edge was split. * \param e1 A handle to one of the twin halfedges forming the first edge. * \param e2 A handle to one of the twin halfedges forming the second edge. */ - virtual void after_split_edge (Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */) - { - compare_results("after_split_edge"); - } + virtual void after_split_edge(Halfedge_handle /* e1 */, + Halfedge_handle /* e2 */) override + { compare_results("after_split_edge"); } - /*! - * Notification before the splitting of a fictitious edge into two. + /*! Notification before the splitting of a fictitious edge into two. * \param e A handle to one of the existing halfedges. * \param v A vertex representing the unbounded split point. */ - virtual void before_split_fictitious_edge (Halfedge_handle /* e */, - Vertex_handle /* v */) - { - compare_results("before_split_fictitious_edge"); - } + virtual void before_split_fictitious_edge(Halfedge_handle /* e */, + Vertex_handle /* v */) override + { compare_results("before_split_fictitious_edge"); } - /*! - * Notification after a fictitious edge was split. + /*! Notification after a fictitious edge was split. * \param e1 A handle to one of the twin halfedges forming the first edge. * \param e2 A handle to one of the twin halfedges forming the second edge. */ - virtual void after_split_fictitious_edge (Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */) - { - compare_results("after_split_fictitious_edge"); - } + virtual void after_split_fictitious_edge(Halfedge_handle /* e1 */, + Halfedge_handle /* e2 */) override + { compare_results("after_split_fictitious_edge"); } - /*! - * Notification before the splitting of a face into two. + /*! Notification before the splitting of a face into two. * \param f A handle to the existing face. * \param e The new edge whose insertion causes the face to split. */ - virtual void before_split_face (Face_handle /* f */, - Halfedge_handle /* e */) - { - compare_results("before_split_face"); - } + virtual void before_split_face(Face_handle /* f */, + Halfedge_handle /* e */) override + { compare_results("before_split_face"); } - /*! - * Notification after a face was split. + /*! Notification after a face was split. * \param f A handle to the face we have just split. * \param new_f A handle to the new face that has been created. * \param is_hole Whether the new face forms a hole inside f. */ virtual void after_split_face (Face_handle /* f */, Face_handle /* new_f */, - bool /* is_hole */) - { - compare_results("after_split_face"); - } + bool /* is_hole */) override + { compare_results("after_split_face"); } - /*! - * Notification before the splitting of an outer CCB into two. + /*! Notification before the splitting of an outer CCB into two. * \param f A handle to the face that owns the outer CCB. * \param h A circulator representing the component boundary. * \param e The new edge whose removal causes the outer CCB to split. */ - virtual void before_split_outer_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h */, - Halfedge_handle /* e */) - { - compare_results("before_split_outer_ccb"); - } + virtual void before_split_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */, + Halfedge_handle /* e */) override + { compare_results("before_split_outer_ccb"); } - /*! - * Notification after an outer CCB was split. + /*! Notification after an outer CCB was split. * \param f A handle to the face that owns the outer CCBs. * \param h1 A circulator representing the boundary of the first component. * \param h2 A circulator representing the boundary of the second component. */ - virtual void after_split_outer_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h1 */, - Ccb_halfedge_circulator /* h2 */) - { - compare_results("after_split_outer_ccb"); - } + virtual void after_split_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h1 */, + Ccb_halfedge_circulator /* h2 */) override + { compare_results("after_split_outer_ccb"); } - /*! - * Notification before the splitting of an inner CCB into two. + /*! Notification before the splitting of an inner CCB into two. * \param f A handle to the face containing the inner CCB. * \param h A circulator representing the component boundary. * \param e The new edge whose removal causes the inner CCB to split. */ - virtual void before_split_inner_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h */, - Halfedge_handle /* e */) - { - compare_results("before_split_inner_ccb"); - } + virtual void before_split_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */, + Halfedge_handle /* e */) override + { compare_results("before_split_inner_ccb"); } - /*! - * Notification after an inner CCB was split. + /*! Notification after an inner CCB was split. * \param f A handle to the face containing the inner CCBs. * \param h1 A circulator representing the boundary of the first component. * \param h2 A circulator representing the boundary of the second component. */ - virtual void after_split_inner_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h1 */, - Ccb_halfedge_circulator /* h2 */) - { - compare_results("after_split_inner_ccb"); - } + virtual void after_split_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h1 */, + Ccb_halfedge_circulator /* h2 */) override + { compare_results("after_split_inner_ccb"); } - /*! - * Notification before the creation of a new outer CCB of a face. + /*! Notification before the creation of a new outer CCB of a face. * \param f A handle to the face that owns the outer CCB. * \param e A halfedge along the new outer CCB. */ - virtual void before_add_outer_ccb (Face_handle /* f */, - Halfedge_handle /* e */) - { - compare_results("before_add_outer_ccb"); - } + virtual void before_add_outer_ccb(Face_handle /* f */, + Halfedge_handle /* e */) override + { compare_results("before_add_outer_ccb"); } - /*! - * Notification after an outer CCB was added to a face. + /*! Notification after an outer CCB was added to a face. * \param h A circulator representing the boundary of the new outer CCB. */ - virtual void after_add_outer_ccb (Ccb_halfedge_circulator /* h */) - { - compare_results("after_add_outer_ccb"); - } + virtual void after_add_outer_ccb(Ccb_halfedge_circulator /* h */) override + { compare_results("after_add_outer_ccb"); } - /*! - * Notification before the creation of a new inner CCB inside a face. + /*! Notification before the creation of a new inner CCB inside a face. * \param f A handle to the face containing the inner CCB. * \param e The new halfedge that forms the new inner CCB. */ - virtual void before_add_inner_ccb (Face_handle /* f */, - Halfedge_handle /* e */) - { - compare_results("before_add_inner_ccb"); - } + virtual void before_add_inner_ccb(Face_handle /* f */, + Halfedge_handle /* e */) override + { compare_results("before_add_inner_ccb"); } - /*! - * Notification after an inner CCB was created inside a face. + /*! Notification after an inner CCB was created inside a face. * \param h A circulator representing the boundary of the new inner CCB. */ - virtual void after_add_inner_ccb (Ccb_halfedge_circulator /* h */) - { - compare_results("after_add_inner_ccb"); - } + virtual void after_add_inner_ccb(Ccb_halfedge_circulator /* h */) override + { compare_results("after_add_inner_ccb"); } - /*! - * Notification before the creation of a new isolated vertex inside a face. + /*! Notification before the creation of a new isolated vertex inside a face. * \param f A handle to the face containing the isolated vertex. * \param v The isolated vertex. */ - virtual void before_add_isolated_vertex (Face_handle /* f */, - Vertex_handle /* v */) - { - compare_results("before_add_isolated_vertex"); - } + virtual void before_add_isolated_vertex(Face_handle /* f */, + Vertex_handle /* v */) override + { compare_results("before_add_isolated_vertex"); } - /*! - * Notification after an isolated vertex was created inside a face. + /*! Notification after an isolated vertex was created inside a face. * \param v The isolated vertex. */ - virtual void after_add_isolated_vertex (Vertex_handle /* v */) - { - compare_results("after_add_isolated_vertex"); - } + virtual void after_add_isolated_vertex(Vertex_handle /* v */) override + { compare_results("after_add_isolated_vertex"); } - /*! - * Notification before the merging of two edges. + /*! Notification before the merging of two edges. * \param e1 A handle to one of the halfedges forming the first edge. * \param e2 A handle to one of the halfedges forming the second edge. * \param c The x-monotone curve to be associated with the merged edge. */ - virtual void before_merge_edge (Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */, - const X_monotone_curve_2& /* c */) - { - compare_results("before_merge_edge"); - } + virtual void before_merge_edge(Halfedge_handle /* e1 */, + Halfedge_handle /* e2 */, + const X_monotone_curve_2& /* c */) override + { compare_results("before_merge_edge"); } - /*! - * Notification after an edge was merged. + /*! Notification after an edge was merged. * \param e A handle to one of the twin halfedges forming the merged edge. */ - virtual void after_merge_edge (Halfedge_handle /* e */) - { - compare_results("after_merge_edge"); - } + virtual void after_merge_edge(Halfedge_handle /* e */) override + { compare_results("after_merge_edge"); } /*! * Notification before the merging of two fictitious edges. * \param e1 A handle to one of the halfedges forming the first edge. * \param e2 A handle to one of the halfedges forming the second edge. */ - virtual void before_merge_fictitious_edge (Halfedge_handle /* e1 */, - Halfedge_handle /* e2 */) - { - compare_results("before_merge_fictitious_edge"); - } + virtual void before_merge_fictitious_edge(Halfedge_handle /* e1 */, + Halfedge_handle /* e2 */) override + { compare_results("before_merge_fictitious_edge"); } - /*! - * Notification after a fictitious edge was merged. + /*! Notification after a fictitious edge was merged. * \param e A handle to one of the twin halfedges forming the merged edge. */ - virtual void after_merge_fictitious_edge (Halfedge_handle /* e */) - { - compare_results("after_merge_fictitious_edge"); - } + virtual void after_merge_fictitious_edge (Halfedge_handle /* e */) override + { compare_results("after_merge_fictitious_edge"); } - /*! - * Notification before the merging of two faces. + /*! Notification before the merging of two faces. * \param f1 A handle to the first face. * \param f2 A handle to the second face. * \param e The edge whose removal causes the faces to merge. */ - virtual void before_merge_face (Face_handle /* f1 */, - Face_handle /* f2 */, - Halfedge_handle /* e */) - { - compare_results("before_merge_face"); - } + virtual void before_merge_face(Face_handle /* f1 */, + Face_handle /* f2 */, + Halfedge_handle /* e */) override + { compare_results("before_merge_face"); } - /*! - * Notification after a face was merged. + /*! Notification after a face was merged. * \param f A handle to the merged face. */ - virtual void after_merge_face (Face_handle /* f */) - { - compare_results("after_merge_face"); - } + virtual void after_merge_face(Face_handle /* f */) override + { compare_results("after_merge_face"); } - /*! - * Notification before the merging of two outer CCBs. + /*! Notification before the merging of two outer CCBs. * \param f A handle to the face that owns the outer CCBs. * \param h1 A circulator representing the boundary of the first component. * \param h2 A circulator representing the boundary of the second component. * \param e The edge whose insertion or removal causes the CCBs to merge. */ - virtual void before_merge_outer_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h1 */, - Ccb_halfedge_circulator /* h2 */, - Halfedge_handle /* e */) - { - compare_results("before_merge_outer_ccb"); - } + virtual void before_merge_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h1 */, + Ccb_halfedge_circulator /* h2 */, + Halfedge_handle /* e */) override + { compare_results("before_merge_outer_ccb"); } - /*! - * Notification after an outer CCB was merged. + /*! Notification after an outer CCB was merged. * \param f A handle to the face that owns the outer CCBs. * \param h A circulator representing the boundary of the merged component. */ - virtual void after_merge_outer_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h */) - { - compare_results("after_merge_outer_ccb"); - } + virtual void after_merge_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */) override + { compare_results("after_merge_outer_ccb"); } - /*! - * Notification before the merging of two inner CCBs (holes). + /*! Notification before the merging of two inner CCBs (holes). * \param f A handle to the face that contains the inner CCBs. * \param h1 A circulator representing the boundary of the first component. * \param h2 A circulator representing the boundary of the second component. * \param e The edge whose insertion causes the inner CCBs to merge. */ - virtual void before_merge_inner_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h1 */, - Ccb_halfedge_circulator /* h2 */, - Halfedge_handle /* e */) - { - compare_results("before_merge_inner_ccb"); - } + virtual void before_merge_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h1 */, + Ccb_halfedge_circulator /* h2 */, + Halfedge_handle /* e */) override + { compare_results("before_merge_inner_ccb"); } - /*! - * Notification after an inner CCB was merged. + /*! Notification after an inner CCB was merged. * \param f A handle to the face that contains the inner CCBs. * \param h A circulator representing the boundary of the merged component. */ - virtual void after_merge_inner_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h */) - { - compare_results("after_merge_inner_ccb"); - } + virtual void after_merge_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */) override + { compare_results("after_merge_inner_ccb"); } - /*! - * Notification before an outer CCB is moved from one face to another. + /*! Notification before an outer CCB is moved from one face to another. * \param from_f A handle to the face that currently owns the outer CCB. * \param to_f A handle to the face that should own the outer CCB. * \param h A circulator representing the boundary of the component. */ - virtual void before_move_outer_ccb (Face_handle /* from_f */, - Face_handle /* to_f */, - Ccb_halfedge_circulator /* h */) - { - compare_results("before_move_outer_ccb"); - } + virtual void before_move_outer_ccb(Face_handle /* from_f */, + Face_handle /* to_f */, + Ccb_halfedge_circulator /* h */) override + { compare_results("before_move_outer_ccb"); } - /*! - * Notification after an outer CCB is moved from one face to another. + /*! Notification after an outer CCB is moved from one face to another. * \param h A circulator representing the boundary of the component. */ - virtual void after_move_outer_ccb (Ccb_halfedge_circulator /* h */) - { - compare_results("after_move_outer_ccb"); - } + virtual void after_move_outer_ccb(Ccb_halfedge_circulator /* h */) override + { compare_results("after_move_outer_ccb"); } - /*! - * Notification before an inner CCB is moved from one face to another. + /*! Notification before an inner CCB is moved from one face to another. * \param from_f A handle to the face currently containing the inner CCB. * \param to_f A handle to the face that should contain the inner CCB. * \param h A circulator representing the boundary of the component. */ - virtual void before_move_inner_ccb (Face_handle /* from_f */, - Face_handle /* to_f */, - Ccb_halfedge_circulator /* h */) - { - compare_results("before_move_inner_ccb"); - } + virtual void before_move_inner_ccb(Face_handle /* from_f */, + Face_handle /* to_f */, + Ccb_halfedge_circulator /* h */) override + { compare_results("before_move_inner_ccb"); } - /*! - * Notification after an inner CCB is moved from one face to another. + /*! Notification after an inner CCB is moved from one face to another. * \param h A circulator representing the boundary of the component. */ - virtual void after_move_inner_ccb (Ccb_halfedge_circulator /* h */) - { - compare_results("after_move_inner_ccb"); - } + virtual void after_move_inner_ccb(Ccb_halfedge_circulator /* h */) override + { compare_results("after_move_inner_ccb"); } - /*! - * Notification before an isolated vertex is moved from one face to another. + /*! Notification before an isolated vertex is moved from one face to another. * \param from_f A handle to the face currently containing the vertex. * \param to_f A handle to the face that should contain the vertex. * \param v The isolated vertex. */ - virtual void before_move_isolated_vertex (Face_handle /* from_f */, - Face_handle /* to_f */, - Vertex_handle /* v */) - { - compare_results("before_move_isolated_vertex"); - } + virtual void before_move_isolated_vertex(Face_handle /* from_f */, + Face_handle /* to_f */, + Vertex_handle /* v */) override + { compare_results("before_move_isolated_vertex"); } - /*! - * Notification after an isolated vertex is moved from one face to another. + /*! Notification after an isolated vertex is moved from one face to another. * \param v The isolated vertex. */ - virtual void after_move_isolated_vertex (Vertex_handle /* v */) - { - compare_results("after_move_isolated_vertex"); - } + virtual void after_move_isolated_vertex(Vertex_handle /* v */) override + { compare_results("after_move_isolated_vertex"); } - /*! - * Notificaion before the removal of a vertex. + /*! Notificaion before the removal of a vertex. * \param v A handle to the vertex to be deleted. */ - virtual void before_remove_vertex (Vertex_handle /* v */) - { - compare_results("before_remove_vertex"); - } + virtual void before_remove_vertex(Vertex_handle /* v */) override + { compare_results("before_remove_vertex"); } - /*! - * Notificaion after the removal of a vertex. + /*! Notificaion after the removal of a vertex. */ - virtual void after_remove_vertex () - { - compare_results("after_remove_vertex"); - } + virtual void after_remove_vertex() override + { compare_results("after_remove_vertex"); } - /*! - * Notification before the removal of an edge. + /*! Notification before the removal of an edge. * \param e A handle to one of the twin halfedges to be deleted. */ - virtual void before_remove_edge (Halfedge_handle /* e */) - { - compare_results("before_remove_edge"); - } + virtual void before_remove_edge(Halfedge_handle /* e */) override + { compare_results("before_remove_edge"); } - /*! - * Notificaion after the removal of an edge. + /*! Notificaion after the removal of an edge. */ - virtual void after_remove_edge () - { - compare_results("after_remove_edge"); - } + virtual void after_remove_edge() override + { compare_results("after_remove_edge"); } - /*! - * Notification before the removal of an outer CCB. + /*! Notification before the removal of an outer CCB. * \param f The face that owns the outer CCB. * \param h A circulator representing the boundary of the component. */ - virtual void before_remove_outer_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h */) - { - compare_results("before_remove_outer_ccb"); - } + virtual void before_remove_outer_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */) override + { compare_results("before_remove_outer_ccb"); } - /*! - * Notificaion after the removal of an outer CCB. + /*! Notificaion after the removal of an outer CCB. * \param f The face that used to own the outer CCB. */ - virtual void after_remove_outer_ccb (Face_handle /* f */) - { - compare_results("after_remove_outer_ccb"); - } + virtual void after_remove_outer_ccb(Face_handle /* f */) override + { compare_results("after_remove_outer_ccb"); } - /*! - * Notification before the removal of an inner CCB. + /*! Notification before the removal of an inner CCB. * \param f The face containing the inner CCB. * \param h A circulator representing the boundary of the component. */ - virtual void before_remove_inner_ccb (Face_handle /* f */, - Ccb_halfedge_circulator /* h */) - { - compare_results("before_remove_inner_ccb"); - } + virtual void before_remove_inner_ccb(Face_handle /* f */, + Ccb_halfedge_circulator /* h */) override + { compare_results("before_remove_inner_ccb"); } - /*! - * Notificaion after the removal of an inner CCB. + /*! Notificaion after the removal of an inner CCB. * \param f The face that used to contain the inner CCB. */ - virtual void after_remove_inner_ccb (Face_handle /* f */) - { - compare_results("after_remove_inner_ccb"); - } + virtual void after_remove_inner_ccb(Face_handle /* f */) override + { compare_results("after_remove_inner_ccb"); } //@} }; -int main (int argc, char * argv[]) -{ - if (argc != 2) - { +int main (int argc, char* argv[]) { + if (argc != 2) { std::cout << "Usage: " << argv[0] << " inputfile" << std::endl; CGAL_error(); } - else - { + else { // Construct the arrangement containing one diamond-shaped face. Arrangement_2 arr; global_input_file.open(argv[1]); @@ -725,55 +546,48 @@ int main (int argc, char * argv[]) int i_vh = 0, i_heh = 0; std::vector heh_vec; std::vector vh_vec; - while (!global_input_file.eof()) - { + while (! global_input_file.eof()) { skip_comments(global_input_file, one_line); std::istringstream str_stream(one_line); char c; str_stream >> c; if (!global_input_file.gcount()) break; - if (c=='s') - { + if (c=='s') { str_stream >> c; //read segment str_stream >> s; - if (c=='i') - { + if (c=='i') { // si means insert intersecting segment insert(arr,s); std::cout << "intersecting segment insert " << s << std::endl; } - else if (c=='n') - { + else if (c=='n') { // sn means insert non intersecting segment heh_vec.push_back(insert_non_intersecting_curve (arr, s)); std::cout << "non intersecting segment insert " << s << std::endl; } } - else if (c=='p') - { + else if (c=='p') { // p means read point str_stream >> p ; - std::cout << "point insert " << p << " index " << vh_vec.size() << std::endl; + std::cout << "point insert " << p << " index " << vh_vec.size() + << std::endl; vh_vec.push_back(insert_point(arr,p)); } - else if (c=='e') - { + else if (c=='e') { // e means read edge index to be removed str_stream >> i_heh ; std::cout << "remove edge " << heh_vec[i_heh]->curve() << std::endl; remove_edge(arr,heh_vec[i_heh]); } - else if (c=='v') - { + else if (c=='v') { // v means read point index to be removed str_stream >> i_vh ; std::cout << "remove point " << vh_vec[i_vh]->point() << std::endl; remove_vertex(arr,vh_vec[i_vh]); } - else - { + else { //error std::cout << "error, unknowen command" << std::endl; return -1; diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_tags.cpp b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_tags.cpp index 81eae4204966..a86325de2afc 100644 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_tags.cpp +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_tags.cpp @@ -6,7 +6,6 @@ #include #include -#include struct Traits1 { typedef CGAL::Arr_open_side_tag Left_side_category; diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_traits_dispatching.cpp b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_traits_dispatching.cpp index 5c8e19fa12e0..ce17f3b9105e 100644 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_traits_dispatching.cpp +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_traits_dispatching.cpp @@ -4,7 +4,6 @@ #include #include -#include int dispatch(CGAL::Arr_use_dummy_tag) { return 0; diff --git a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/utils.h b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/utils.h index f49b92f4c01c..f4975fb14283 100644 --- a/Arrangement_on_surface_2/test/Arrangement_on_surface_2/utils.h +++ b/Arrangement_on_surface_2/test/Arrangement_on_surface_2/utils.h @@ -55,13 +55,13 @@ class Point_compare { // This function is invoked for traits classes where at least one // boundary is not oblivious and all boundaries are not identified. bool operator()(const Point_2& p1, const Point_2& p2, - boost::mpl::bool_) const + std::bool_constant) const { return (m_traits.compare_xy_2_object()(p1, p2) == CGAL::SMALLER); } // This function should be invoked for traits classes where at least one // boundary is identified. bool operator()(const Point_2& p1, const Point_2& p2, - boost::mpl::bool_) const + std::bool_constant) const { // Compare in y boundaries: CGAL::Arr_parameter_space ps_y1 = diff --git a/BGL/doc/BGL/Doxyfile.in b/BGL/doc/BGL/Doxyfile.in index 4e5d35a91d2c..72d3e79168c8 100644 --- a/BGL/doc/BGL/Doxyfile.in +++ b/BGL/doc/BGL/Doxyfile.in @@ -1,7 +1,8 @@ @INCLUDE = ${CGAL_DOC_PACKAGE_DEFAULTS} PROJECT_NAME = "CGAL ${CGAL_DOC_VERSION} - CGAL and the Boost Graph Library" -INPUT += ${CGAL_PACKAGE_INCLUDE_DIR}/CGAL/boost/graph/Euler_operations.h \ +INPUT += ${CGAL_PACKAGE_INCLUDE_DIR}/CGAL/IO/polygon_mesh_io.h \ + ${CGAL_PACKAGE_INCLUDE_DIR}/CGAL/boost/graph/Euler_operations.h \ ${CGAL_PACKAGE_INCLUDE_DIR}/CGAL/boost/graph/iterator.h \ ${CGAL_PACKAGE_INCLUDE_DIR}/CGAL/boost/graph/helpers.h \ ${CGAL_PACKAGE_INCLUDE_DIR}/CGAL/boost/graph/generators.h \ diff --git a/BGL/examples/BGL_LCC/distance_lcc.cpp b/BGL/examples/BGL_LCC/distance_lcc.cpp index 9e60c5bfb297..b19f0ab2b384 100644 --- a/BGL/examples/BGL_LCC/distance_lcc.cpp +++ b/BGL/examples/BGL_LCC/distance_lcc.cpp @@ -1,7 +1,7 @@ #include #include -#include +#include #include // wrapper to suppress a warning diff --git a/BGL/examples/BGL_LCC/incident_vertices_lcc.cpp b/BGL/examples/BGL_LCC/incident_vertices_lcc.cpp index f2b66d46ca03..af02d72a81b1 100644 --- a/BGL/examples/BGL_LCC/incident_vertices_lcc.cpp +++ b/BGL/examples/BGL_LCC/incident_vertices_lcc.cpp @@ -2,7 +2,7 @@ #include #include -#include +#include #include #include diff --git a/BGL/examples/BGL_LCC/normals_lcc.cpp b/BGL/examples/BGL_LCC/normals_lcc.cpp index da1177a70624..b729b0b4792e 100644 --- a/BGL/examples/BGL_LCC/normals_lcc.cpp +++ b/BGL/examples/BGL_LCC/normals_lcc.cpp @@ -1,7 +1,7 @@ #include #include -#include +#include #include #include diff --git a/BGL/examples/BGL_LCC/range_lcc.cpp b/BGL/examples/BGL_LCC/range_lcc.cpp index 02a28d869a0c..cdf89714c30f 100644 --- a/BGL/examples/BGL_LCC/range_lcc.cpp +++ b/BGL/examples/BGL_LCC/range_lcc.cpp @@ -2,7 +2,7 @@ #include #include -#include +#include #include #include diff --git a/BGL/examples/BGL_LCC/transform_iterator_lcc.cpp b/BGL/examples/BGL_LCC/transform_iterator_lcc.cpp index 0bfc08914376..988c0230bae2 100644 --- a/BGL/examples/BGL_LCC/transform_iterator_lcc.cpp +++ b/BGL/examples/BGL_LCC/transform_iterator_lcc.cpp @@ -3,7 +3,7 @@ #include #include #include -#include +#include #include #include diff --git a/BGL/examples/BGL_OpenMesh/TriMesh.cpp b/BGL/examples/BGL_OpenMesh/TriMesh.cpp index 0f30d0c10a52..e474020cc67e 100644 --- a/BGL/examples/BGL_OpenMesh/TriMesh.cpp +++ b/BGL/examples/BGL_OpenMesh/TriMesh.cpp @@ -6,7 +6,7 @@ #include #include #include -#include +#include #include #include diff --git a/BGL/examples/BGL_arrangement_2/primal.cpp b/BGL/examples/BGL_arrangement_2/primal.cpp index 62d684e0c426..e5f954dfdad3 100644 --- a/BGL/examples/BGL_arrangement_2/primal.cpp +++ b/BGL/examples/BGL_arrangement_2/primal.cpp @@ -8,7 +8,7 @@ #include #include -#include +#include #include diff --git a/BGL/examples/BGL_surface_mesh/surface_mesh_partition.cpp b/BGL/examples/BGL_surface_mesh/surface_mesh_partition.cpp index 57c96a907d8d..1f57a67524f4 100644 --- a/BGL/examples/BGL_surface_mesh/surface_mesh_partition.cpp +++ b/BGL/examples/BGL_surface_mesh/surface_mesh_partition.cpp @@ -3,7 +3,7 @@ #include #include -#include +#include #include #include diff --git a/BGL/examples/BGL_triangulation_2/dijkstra.cpp b/BGL/examples/BGL_triangulation_2/dijkstra.cpp index 1e63fc8810f1..f0bf554b69d2 100644 --- a/BGL/examples/BGL_triangulation_2/dijkstra.cpp +++ b/BGL/examples/BGL_triangulation_2/dijkstra.cpp @@ -1,7 +1,7 @@ #include #include -#include +#include #include diff --git a/BGL/examples/BGL_triangulation_2/dijkstra_with_internal_properties.cpp b/BGL/examples/BGL_triangulation_2/dijkstra_with_internal_properties.cpp index b1bc089d216e..bcd9548338fb 100644 --- a/BGL/examples/BGL_triangulation_2/dijkstra_with_internal_properties.cpp +++ b/BGL/examples/BGL_triangulation_2/dijkstra_with_internal_properties.cpp @@ -4,7 +4,7 @@ #include #include -#include +#include #include diff --git a/BGL/include/CGAL/IO/polygon_mesh_io.h b/BGL/include/CGAL/IO/polygon_mesh_io.h new file mode 100644 index 000000000000..b8b86d45f8f7 --- /dev/null +++ b/BGL/include/CGAL/IO/polygon_mesh_io.h @@ -0,0 +1,264 @@ +// Copyright (c) 2020 GeometryFactory (France). All rights reserved. +// +// This file is part of CGAL (www.cgal.org) +// +// $URL$ +// $Id$ +// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// +// Author(s) : Maxime Gimeno +// Mael Rouxel-Labbé + +#ifndef CGAL_IO_POLYGON_MESH_IO_H +#define CGAL_IO_POLYGON_MESH_IO_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +namespace CGAL { + +namespace IO { + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Read + +//not for now : some readers will return "ok" despite not managing to read anything +/* +template +bool read_polygon_mesh(std::istream& is, + Graph& g, + const NamedParameters& np = parameters::default_values()) +{ + bool ok = false; + ok = read_OFF(is, g, np, false); + if(ok) + return true; + g.clear(); + is.clear();//reset the error state + is.seekg (0, is.beg); + ok = read_OBJ(is, g, np, false); + if(ok) + return true; + g.clear(); + is.clear(); + is.seekg (0, is.beg); + ok = read_PLY(is, g, np, false); + if(ok) + return true; + g.clear(); + is.clear(); + is.seekg (0, is.beg); + ok = read_STL(is, g, np, false); + if(ok) + return true; + g.clear(); + is.clear(); + is.seekg (0, is.beg); + ok = read_GOCAD(is, g, np, false); + return ok; +} + +*/ + +/*! + * \ingroup PkgBGLIOFct + * + * \brief reads a polygon mesh from a file. + * + * Supported file formats are the following: + * - \ref IOStreamOFF (`.off`) + * - \ref IOStreamOBJ (`.obj`) + * - \ref IOStreamSTL (`.stl`) + * - \ref IOStreamPLY (`.ply`) + * - \ref IOStreamGocad (`.ts`) + * - \ref IOStreamVTK (`.vtp`) + * + * The format is detected from the filename extension (letter case is not important). + * + * The data is expected to represent a 2-manifold (possibly with borders). + * + * \tparam Graph a model of `MutableFaceGraph` + * \tparam NamedParameters a sequence of \ref bgl_namedparameters "Named Parameters" + * + * \param fname the name of the file + * \param g the mesh + * \param np optional \ref bgl_namedparameters "Named Parameters" described below + * + * \cgalNamedParamsBegin + * \cgalParamNBegin{vertex_point_map} + * \cgalParamDescription{a property map associating points to the vertices of `g`} + * \cgalParamType{a class model of `WritablePropertyMap` with `boost::graph_traits::%vertex_descriptor` + * as key type and `%Point_3` as value type} + * \cgalParamDefault{`boost::get(CGAL::vertex_point, g)`} + * \cgalParamExtra{If this parameter is omitted, an internal property map for `CGAL::vertex_point_t` + * must be available in `Graph`.} + * \cgalParamNEnd + * + * \cgalParamNBegin{verbose} + * \cgalParamDescription{whether extra information is printed when an incident occurs during reading} + * \cgalParamType{Boolean} + * \cgalParamDefault{`false`} + * \cgalParamNEnd + * \cgalNamedParamsEnd + * + * Other named parameters may be used according to the file extension, see \ref PkgBGLIOFct for an exhaustive list. + * + * \return `true` if reading was successful, `false` otherwise. + * + * \sa \link PMP_IO_grp `CGAL::Polygon_mesh_processing::IO::read_polygon_mesh()`\endlink if the data is not 2-manifold +*/ +template +bool read_polygon_mesh(const std::string& fname, + Graph& g, + const NamedParameters& np = parameters::default_values()) +{ + const bool verbose = parameters::choose_parameter(parameters::get_parameter(np, internal_np::verbose), false); + + const std::string ext = internal::get_file_extension(fname); + if(ext == std::string()) + { + if(verbose) + std::cerr << "Error: cannot read from file without extension" << std::endl; + return false; + } + + if(ext == "obj") + return read_OBJ(fname, g, np); + else if(ext == "off") + return read_OFF(fname, g, np); + else if(ext == "ply") + return read_PLY(fname, g, np); + else if(ext == "stl") + return read_STL(fname, g, np); + else if(ext == "ts") + return read_GOCAD(fname, g, np); +#ifdef CGAL_USE_VTK + else if(ext == "vtp") + return read_VTP(fname, g, np); +#endif + + if(verbose) + { + std::cerr << "Error: unknown input file extension: " << ext << "\n" + << "Please refer to the documentation for the list of supported file formats" << std::endl; + } + + return false; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Write + +/*! + * \ingroup PkgBGLIOFct + * + * \brief writes a polygon mesh in a file. + * + * Supported file formats are the following: + * - \ref IOStreamOFF (`.off`) + * - \ref IOStreamOBJ (`.obj`) + * - \ref IOStreamSTL (`.stl`) + * - \ref IOStreamPLY (`.ply`) + * - \ref IOStreamGocad (`.ts`) + * - \ref IOStreamVTK (`.vtp`) + * + * The format is detected from the filename extension (letter case is not important). + * + * \tparam Graph a model of `FaceListGraph` and `HalfedgeListGraph` + * \tparam NamedParameters a sequence of \ref bgl_namedparameters "Named Parameters" + * + * \param fname the name of the file + * \param g the mesh to be output + * \param np optional \ref bgl_namedparameters "Named Parameters" described below + * + * \cgalNamedParamsBegin + * \cgalParamNBegin{vertex_point_map} + * \cgalParamDescription{a property map associating points to the vertices of `g`} + * \cgalParamType{a class model of `ReadablePropertyMap` with `boost::graph_traits::%vertex_descriptor` + * as key type and `%Point_3` as value type} + * \cgalParamDefault{`boost::get(CGAL::vertex_point, g)`} + * \cgalParamExtra{If this parameter is omitted, an internal property map for `CGAL::vertex_point_t` + * must be available in `Graph`.} + * \cgalParamNEnd + * + * \cgalParamNBegin{stream_precision} + * \cgalParamDescription{a parameter used to set the precision (i.e. how many digits are generated) of the output stream} + * \cgalParamType{int} + * \cgalParamDefault{`6`} + * \cgalParamExtra{This parameter is only meaningful while using \ascii encoding.} + * \cgalParamNEnd + * + * \cgalParamNBegin{use_binary_mode} + * \cgalParamDescription{indicates whether data should be written in binary (`true`) or in \ascii (`false`)} + * \cgalParamType{Boolean} + * \cgalParamDefault{`true`} + * \cgalParamExtra{This parameter is only meaningful for formats that support binary encoding.} + * \cgalParamNEnd + * + * \cgalParamNBegin{verbose} + * \cgalParamDescription{whether extra information is printed when an incident occurs during reading} + * \cgalParamType{Boolean} + * \cgalParamDefault{`false`} + * \cgalParamNEnd + * \cgalNamedParamsEnd + * + * Other named parameters may be used according to the file extension, see \ref PkgBGLIOFct for an exhaustive list. + * + * \return `true` if writing was successful, `false` otherwise. + */ +template +bool write_polygon_mesh(const std::string& fname, + Graph& g, + const NamedParameters& np = parameters::default_values()) +{ + const bool verbose = parameters::choose_parameter(parameters::get_parameter(np, internal_np::verbose), false); + + const std::string ext = internal::get_file_extension(fname); + if(ext == std::string()) + { + if(verbose) + std::cerr << "Error: trying to output to file without extension" << std::endl; + return false; + } + + if(ext == "obj") + return write_OBJ(fname, g, np); + else if(ext == "off") + return write_OFF(fname, g, np); + else if(ext == "ply") + return write_PLY(fname, g, np); + else if(ext == "stl") + return write_STL(fname, g, np); + else if(ext == "ts") + return write_GOCAD(fname, g, np); +#ifdef CGAL_USE_VTK + else if(ext == "vtp") + return write_VTP(fname, g, np); +#endif + + if(verbose) + { + std::cerr << "Error: unknown output file extension: " << ext << "\n" + << "Please refer to the documentation for the list of supported file formats" << std::endl; + } + + return false; +} + +} // namespace IO +} // namespace CGAL + +#endif // CGAL_IO_POLYGON_MESH_IO_H diff --git a/BGL/include/CGAL/boost/graph/IO/polygon_mesh_io.h b/BGL/include/CGAL/boost/graph/IO/polygon_mesh_io.h index d60af3c9949e..84189cf7373b 100644 --- a/BGL/include/CGAL/boost/graph/IO/polygon_mesh_io.h +++ b/BGL/include/CGAL/boost/graph/IO/polygon_mesh_io.h @@ -1,4 +1,4 @@ -// Copyright (c) 2020 GeometryFactory (France). All rights reserved. +// Copyright (c) 2023 GeometryFactory (France). All rights reserved. // // This file is part of CGAL (www.cgal.org) // @@ -6,258 +6,11 @@ // $Id$ // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // -// Author(s) : Maxime Gimeno -// Mael Rouxel-Labbé +// Author(s) : Mael Rouxel-Labbé #ifndef CGAL_BOOST_GRAPH_POLYGON_MESH_IO_H #define CGAL_BOOST_GRAPH_POLYGON_MESH_IO_H -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -namespace CGAL { - -namespace IO { - -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -// Read - -//not for now : some readers will return "ok" despite not managing to read anything -/* -template -bool read_polygon_mesh(std::istream& is, - Graph& g, - const NamedParameters& np = parameters::default_values()) -{ - bool ok = false; - ok = read_OFF(is, g, np, false); - if(ok) - return true; - g.clear(); - is.clear();//reset the error state - is.seekg (0, is.beg); - ok = read_OBJ(is, g, np, false); - if(ok) - return true; - g.clear(); - is.clear(); - is.seekg (0, is.beg); - ok = read_PLY(is, g, np, false); - if(ok) - return true; - g.clear(); - is.clear(); - is.seekg (0, is.beg); - ok = read_STL(is, g, np, false); - if(ok) - return true; - g.clear(); - is.clear(); - is.seekg (0, is.beg); - ok = read_GOCAD(is, g, np, false); - return ok; -} - -*/ - -/*! - * \ingroup PkgBGLIOFct - * - * \brief reads a polygon mesh from a file. - * - * Supported file formats are the following: - * - \ref IOStreamOFF (`.off`) - * - \ref IOStreamOBJ (`.obj`) - * - \ref IOStreamSTL (`.stl`) - * - \ref IOStreamPLY (`.ply`) - * - \ref IOStreamGocad (`.ts`) - * - \ref IOStreamVTK (`.vtp`) - * - * The format is detected from the filename extension (letter case is not important). - * - * The data is expected to represent a 2-manifold (possibly with borders). - * - * \tparam Graph a model of `MutableFaceGraph` - * \tparam NamedParameters a sequence of \ref bgl_namedparameters "Named Parameters" - * - * \param fname the name of the file - * \param g the mesh - * \param np optional \ref bgl_namedparameters "Named Parameters" described below - * - * \cgalNamedParamsBegin - * \cgalParamNBegin{vertex_point_map} - * \cgalParamDescription{a property map associating points to the vertices of `g`} - * \cgalParamType{a class model of `WritablePropertyMap` with `boost::graph_traits::%vertex_descriptor` - * as key type and `%Point_3` as value type} - * \cgalParamDefault{`boost::get(CGAL::vertex_point, g)`} - * \cgalParamExtra{If this parameter is omitted, an internal property map for `CGAL::vertex_point_t` - * must be available in `Graph`.} - * \cgalParamNEnd - * - * \cgalParamNBegin{verbose} - * \cgalParamDescription{whether extra information is printed when an incident occurs during reading} - * \cgalParamType{Boolean} - * \cgalParamDefault{`false`} - * \cgalParamNEnd - * \cgalNamedParamsEnd - * - * Other named parameters may be used according to the file extension, see \ref PkgBGLIOFct for an exhaustive list. - * - * \return `true` if reading was successful, `false` otherwise. - * - * \sa \link PMP_IO_grp `CGAL::Polygon_mesh_processing::IO::read_polygon_mesh()`\endlink if the data is not 2-manifold -*/ -template -bool read_polygon_mesh(const std::string& fname, - Graph& g, - const NamedParameters& np = parameters::default_values()) -{ - const bool verbose = parameters::choose_parameter(parameters::get_parameter(np, internal_np::verbose), false); - - const std::string ext = internal::get_file_extension(fname); - if(ext == std::string()) - { - if(verbose) - std::cerr << "Error: cannot read from file without extension" << std::endl; - return false; - } - - if(ext == "obj") - return read_OBJ(fname, g, np); - else if(ext == "off") - return read_OFF(fname, g, np); - else if(ext == "ply") - return read_PLY(fname, g, np); - else if(ext == "stl") - return read_STL(fname, g, np); - else if(ext == "ts") - return read_GOCAD(fname, g, np); -#ifdef CGAL_USE_VTK - else if(ext == "vtp") - return read_VTP(fname, g, np); -#endif - - if(verbose) - { - std::cerr << "Error: unknown input file extension: " << ext << "\n" - << "Please refer to the documentation for the list of supported file formats" << std::endl; - } - - return false; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -// Write - -/*! - * \ingroup PkgBGLIOFct - * - * \brief writes a polygon mesh in a file. - * - * Supported file formats are the following: - * - \ref IOStreamOFF (`.off`) - * - \ref IOStreamOBJ (`.obj`) - * - \ref IOStreamSTL (`.stl`) - * - \ref IOStreamPLY (`.ply`) - * - \ref IOStreamGocad (`.ts`) - * - \ref IOStreamVTK (`.vtp`) - * - * The format is detected from the filename extension (letter case is not important). - * - * \tparam Graph a model of `FaceListGraph` and `HalfedgeListGraph` - * \tparam NamedParameters a sequence of \ref bgl_namedparameters "Named Parameters" - * - * \param fname the name of the file - * \param g the mesh to be output - * \param np optional \ref bgl_namedparameters "Named Parameters" described below - * - * \cgalNamedParamsBegin - * \cgalParamNBegin{vertex_point_map} - * \cgalParamDescription{a property map associating points to the vertices of `g`} - * \cgalParamType{a class model of `ReadablePropertyMap` with `boost::graph_traits::%vertex_descriptor` - * as key type and `%Point_3` as value type} - * \cgalParamDefault{`boost::get(CGAL::vertex_point, g)`} - * \cgalParamExtra{If this parameter is omitted, an internal property map for `CGAL::vertex_point_t` - * must be available in `Graph`.} - * \cgalParamNEnd - * - * \cgalParamNBegin{stream_precision} - * \cgalParamDescription{a parameter used to set the precision (i.e. how many digits are generated) of the output stream} - * \cgalParamType{int} - * \cgalParamDefault{`6`} - * \cgalParamExtra{This parameter is only meaningful while using \ascii encoding.} - * \cgalParamNEnd - * - * \cgalParamNBegin{use_binary_mode} - * \cgalParamDescription{indicates whether data should be written in binary (`true`) or in \ascii (`false`)} - * \cgalParamType{Boolean} - * \cgalParamDefault{`true`} - * \cgalParamExtra{This parameter is only meaningful for formats that support binary encoding.} - * \cgalParamNEnd - * - * \cgalParamNBegin{verbose} - * \cgalParamDescription{whether extra information is printed when an incident occurs during reading} - * \cgalParamType{Boolean} - * \cgalParamDefault{`false`} - * \cgalParamNEnd - * \cgalNamedParamsEnd - * - * Other named parameters may be used according to the file extension, see \ref PkgBGLIOFct for an exhaustive list. - * - * \return `true` if writing was successful, `false` otherwise. - */ -template -bool write_polygon_mesh(const std::string& fname, - Graph& g, - const NamedParameters& np = parameters::default_values()) -{ - const bool verbose = parameters::choose_parameter(parameters::get_parameter(np, internal_np::verbose), false); - - const std::string ext = internal::get_file_extension(fname); - if(ext == std::string()) - { - if(verbose) - std::cerr << "Error: trying to output to file without extension" << std::endl; - return false; - } - - if(ext == "obj") - return write_OBJ(fname, g, np); - else if(ext == "off") - return write_OFF(fname, g, np); - else if(ext == "ply") - return write_PLY(fname, g, np); - else if(ext == "stl") - return write_STL(fname, g, np); - else if(ext == "ts") - return write_GOCAD(fname, g, np); -#ifdef CGAL_USE_VTK - else if(ext == "vtp") - return write_VTP(fname, g, np); -#endif - - if(verbose) - { - std::cerr << "Error: unknown output file extension: " << ext << "\n" - << "Please refer to the documentation for the list of supported file formats" << std::endl; - } - - return false; -} - -}} // namespace CGAL::IO +#include #endif // CGAL_BOOST_GRAPH_POLYGON_MESH_IO_H diff --git a/BGL/include/CGAL/boost/graph/dijkstra_shortest_paths.h b/BGL/include/CGAL/boost/graph/dijkstra_shortest_paths.h deleted file mode 100644 index a8563023229b..000000000000 --- a/BGL/include/CGAL/boost/graph/dijkstra_shortest_paths.h +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2014 GeometryFactory (France). All rights reserved. -// -// This file is part of CGAL (www.cgal.org) -// -// $URL$ -// $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial -// -// -// Author(s) : Sebastien Loriot - - -#ifndef CGAL_BOOST_GRAPH_DIJKSTRA_SHORTEST_PATHS_H -#define CGAL_BOOST_GRAPH_DIJKSTRA_SHORTEST_PATHS_H - -// This will push/pop a VC++ warning -#include - -#if defined(BOOST_MSVC) -# pragma warning(push) -# pragma warning(disable:4172) // Address warning inside boost named parameters -#endif - -#include - -#if defined(BOOST_MSVC) -# pragma warning(pop) -#endif - -#endif // CGAL_BOOST_GRAPH_DIJKSTRA_SHORTEST_PATHS_H diff --git a/BGL/include/CGAL/boost/graph/helpers.h b/BGL/include/CGAL/boost/graph/helpers.h index 76135fd82a7c..43016f9889fb 100644 --- a/BGL/include/CGAL/boost/graph/helpers.h +++ b/BGL/include/CGAL/boost/graph/helpers.h @@ -953,6 +953,11 @@ void swap_edges(const typename boost::graph_traits::halfedge_descript if (fo2 != nf && halfedge(fo2, g)==oh2) set_halfedge(fo2, oh1, g); } +template +void collect_garbage(Graph&) +{ + // nothing by default +} } //end of internal namespace diff --git a/BGL/include/CGAL/boost/graph/internal/OM_iterator_from_circulator.h b/BGL/include/CGAL/boost/graph/internal/OM_iterator_from_circulator.h index e726e161a6bd..01104c546804 100644 --- a/BGL/include/CGAL/boost/graph/internal/OM_iterator_from_circulator.h +++ b/BGL/include/CGAL/boost/graph/internal/OM_iterator_from_circulator.h @@ -20,8 +20,6 @@ #include #include -#include - namespace CGAL { // adapted from circulator.h, does not support @@ -45,23 +43,20 @@ class OM_iterator_from_circulator { typedef typename I__traits::iterator_category iterator_category; - typedef typename - boost::mpl::if_c< Prevent_deref - , C - , typename C::value_type - >::type value_type; + typedef std::conditional_t< Prevent_deref + , C + , typename C::value_type> + value_type; typedef typename C::difference_type difference_type; - typedef typename - boost::mpl::if_c< Prevent_deref - , C& - , typename C::reference - >::type reference; - typedef typename - boost::mpl::if_c< Prevent_deref - , C* - , typename C::reference - >::type pointer; + typedef std::conditional_t< Prevent_deref + , C& + , typename C::reference + > reference; + typedef std::conditional_t< Prevent_deref + , C* + , typename C::reference + > pointer; OM_iterator_from_circulator(){} diff --git a/BGL/include/CGAL/boost/graph/internal/initialized_index_maps_helpers.h b/BGL/include/CGAL/boost/graph/internal/initialized_index_maps_helpers.h index 2d85e38d35c1..eddefcec7fb2 100644 --- a/BGL/include/CGAL/boost/graph/internal/initialized_index_maps_helpers.h +++ b/BGL/include/CGAL/boost/graph/internal/initialized_index_maps_helpers.h @@ -276,8 +276,8 @@ class GetInitializedIndexMap { public: // Check if there is an internal property map; if not, we must a dynamic property map - typedef typename boost::mpl::if_c< - CGAL::graph_has_property::value, Tag, DynamicTag>::type Final_tag; + typedef std::conditional_t< + CGAL::graph_has_property::value, Tag, DynamicTag> Final_tag; typedef typename internal_np::Lookup_named_param_def< PropertyTag, diff --git a/BGL/include/CGAL/boost/graph/named_params_helper.h b/BGL/include/CGAL/boost/graph/named_params_helper.h index 1e0efd6faa60..7dd7edd08875 100644 --- a/BGL/include/CGAL/boost/graph/named_params_helper.h +++ b/BGL/include/CGAL/boost/graph/named_params_helper.h @@ -20,7 +20,6 @@ #include #include -#include #include #include @@ -43,14 +42,13 @@ class property_map_selector { public: typedef typename graph_has_property::type Has_internal_pmap; - typedef typename boost::mpl::if_c::type, - typename boost::cgal_no_property::type - >::type type; - typedef typename boost::mpl::if_c::const_type, - typename boost::cgal_no_property::const_type - >::type const_type; + typedef std::conditional_t::type, + typename boost::cgal_no_property::type> type; + typedef std::conditional_t::const_type, + typename boost::cgal_no_property::const_type + > const_type; type get_pmap(const PropertyTag& p, PolygonMesh& pmesh) { @@ -209,10 +207,10 @@ struct GetGeomTraits_impl::value, - typename GetK::Kernel, - Fake_GT>::type type; + typedef std::conditional_t::value, + typename GetK::Kernel, + Fake_GT> type; }; template typedef ValueType value_type; typedef Handle key_type; - typedef typename boost::mpl::if_< std::is_reference, - ValueType&, - ValueType >::type Reference; + typedef std::conditional_t< std::is_reference_v, + ValueType&, + ValueType > Reference; Point_accessor() {} Point_accessor(Point_accessor) {} @@ -172,9 +172,9 @@ struct Is_writable_property_map // property map must define. template struct Is_writable_property_map - : boost::mpl::if_c::reference>::type>::value, - CGAL::Tag_false, CGAL::Tag_true>::type + CGAL::Tag_false, CGAL::Tag_true> { }; } // namespace internal diff --git a/BGL/include/CGAL/boost/graph/properties_OpenMesh.h b/BGL/include/CGAL/boost/graph/properties_OpenMesh.h index 861f5aea98b6..f6f56cea7ef8 100644 --- a/BGL/include/CGAL/boost/graph/properties_OpenMesh.h +++ b/BGL/include/CGAL/boost/graph/properties_OpenMesh.h @@ -13,7 +13,6 @@ #include #include #include -#include #ifndef OPEN_MESH_CLASS #error OPEN_MESH_CLASS is not defined @@ -29,13 +28,13 @@ namespace CGAL { template class OM_pmap { public: - typedef typename boost::mpl::if_::vertex_descriptor>, - OpenMesh::VPropHandleT, - typename boost::mpl::if_::face_descriptor>, - OpenMesh::FPropHandleT, - typename boost::mpl::if_::halfedge_descriptor>, - OpenMesh::HPropHandleT, - OpenMesh::EPropHandleT >::type>::type>::type H; + typedef std::conditional_t::vertex_descriptor>, + OpenMesh::VPropHandleT, + std::conditional_t::face_descriptor>, + OpenMesh::FPropHandleT, + std::conditional_t::halfedge_descriptor>, + OpenMesh::HPropHandleT, + OpenMesh::EPropHandleT >>> H; typedef boost::lvalue_property_map_tag category; diff --git a/BGL/include/CGAL/boost/graph/property_maps.h b/BGL/include/CGAL/boost/graph/property_maps.h index aab29d9b8811..b6973feb65c8 100644 --- a/BGL/include/CGAL/boost/graph/property_maps.h +++ b/BGL/include/CGAL/boost/graph/property_maps.h @@ -15,7 +15,6 @@ #include #include -#include namespace CGAL{ diff --git a/BGL/test/BGL/test_Face_filtered_graph.cpp b/BGL/test/BGL/test_Face_filtered_graph.cpp index ee4f2166439b..9623d2868bdc 100644 --- a/BGL/test/BGL/test_Face_filtered_graph.cpp +++ b/BGL/test/BGL/test_Face_filtered_graph.cpp @@ -5,8 +5,6 @@ #include #include "test_Prefix.h" -#include - #include #include #include @@ -80,7 +78,7 @@ void test_edge_iterators(const Graph& g) // do we iterate as many as that? edge_iterator eb, ee; boost::tie(eb, ee) = edges(fg); - assert(boost::numeric_cast(std::distance(eb, ee)) == num_edges(g)); + assert(static_cast(std::distance(eb, ee)) == num_edges(g)); id_map ids; unsigned int count = 0; for(boost::tie(eb, ee) = edges(fg); eb != ee; ++eb) { diff --git a/BGL/test/BGL/test_graph_traits.cpp b/BGL/test/BGL/test_graph_traits.cpp index 08e80ef75c76..082469a58a9d 100644 --- a/BGL/test/BGL/test_graph_traits.cpp +++ b/BGL/test/BGL/test_graph_traits.cpp @@ -2,7 +2,6 @@ #include -#include #include typedef std::unordered_set id_map; @@ -68,7 +67,7 @@ void test_halfedge_iterators(const G& g) // do we iterate as many as that? halfedge_iterator hb, he; boost::tie(hb, he) = halfedges(g); - assert(boost::numeric_cast(std::distance(hb, he)) == num_halfedges(g)); + assert(static_cast(std::distance(hb, he)) == num_halfedges(g)); id_map ids; unsigned int count = 0; @@ -94,7 +93,7 @@ void test_edge_iterators(const G& g) // do we iterate as many as that? edge_iterator eb, ee; boost::tie(eb, ee) = edges(g); - assert(boost::numeric_cast(std::distance(eb, ee)) == num_edges(g)); + assert(static_cast(std::distance(eb, ee)) == num_edges(g)); id_map ids; unsigned int count = 0; diff --git a/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/draw_polygon_set_2.h b/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/draw_polygon_set_2.h index df7a777dbdc9..5728fe8b86c6 100644 --- a/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/draw_polygon_set_2.h +++ b/Boolean_set_operations_2/doc/Boolean_set_operations_2/CGAL/draw_polygon_set_2.h @@ -3,8 +3,8 @@ namespace CGAL { /*! \ingroup PkgDrawPolygonSet2 -opens a new window and draws `aps`, an instance of the `CGAL::Polygon_set_2` class. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt5`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. -Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add the definition `CGAL_USE_BASIC_VIEWER`. +opens a new window and draws `aps`, an instance of the `CGAL::Polygon_set_2` class. A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires `CGAL_Qt6`, and is only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. +Linking with the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add the definition `CGAL_USE_BASIC_VIEWER`. \tparam PS an instance of the `CGAL::Polygon_set_2` class. \param aps the polygon set to draw. diff --git a/Boolean_set_operations_2/examples/Boolean_set_operations_2/CMakeLists.txt b/Boolean_set_operations_2/examples/Boolean_set_operations_2/CMakeLists.txt index f24ead2e8bd4..518d15129422 100644 --- a/Boolean_set_operations_2/examples/Boolean_set_operations_2/CMakeLists.txt +++ b/Boolean_set_operations_2/examples/Boolean_set_operations_2/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Boolean_set_operations_2_Examples) -find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt6) # create a target per cppfile file( @@ -15,7 +15,7 @@ foreach(cppfile ${cppfiles}) create_single_source_cgal_program("${cppfile}") endforeach() -if(CGAL_Qt5_FOUND) +if(CGAL_Qt6_FOUND) target_link_libraries(draw_polygon_set PUBLIC CGAL::CGAL_Basic_viewer) else() message(STATUS "NOTICE: The example 'draw_polygon_set' requires Qt and drawing will be disabled.") diff --git a/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h b/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h index 3a5a31421be5..bd9cfec7f7cb 100644 --- a/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h +++ b/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h @@ -9,7 +9,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Guillaume Damiand @@ -17,6 +17,9 @@ #ifndef CGAL_DRAW_POLYGON_SET_2_H #define CGAL_DRAW_POLYGON_SET_2_H +#include + + #include #ifdef DOXYGEN_RUNNING @@ -27,9 +30,9 @@ namespace CGAL { * * opens a new window and draws `aps`, an instance of the `CGAL::Polygon_set_2` * class. A call to this function is blocking, that is the program continues as - * soon as the user closes the window. This function requires `CGAL_Qt5`, and is + * soon as the user closes the window. This function requires `CGAL_Qt6`, and is * only available if the macro `CGAL_USE_BASIC_VIEWER` is defined. Linking with - * the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt5` and add + * the cmake target `CGAL::CGAL_Basic_viewer` will link with `CGAL_Qt6` and add * the definition `CGAL_USE_BASIC_VIEWER`. * \tparam PS an instance of the `CGAL::Polygon_set_2` class. * \param aps the polygon set to draw. diff --git a/Bounding_volumes/include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_impl.h b/Bounding_volumes/include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_impl.h index b38b77949670..e6c85c192a65 100644 --- a/Bounding_volumes/include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_impl.h +++ b/Bounding_volumes/include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_impl.h @@ -10,6 +10,10 @@ // // Author(s) : Kaspar Fischer +#ifndef CGAL_APPROXIMATE_MIN_ELLIPSOID_D_APPROXIMATE_MIN_ELLIPSOID_D_IMPL_H +#define CGAL_APPROXIMATE_MIN_ELLIPSOID_D_APPROXIMATE_MIN_ELLIPSOID_D_IMPL_H + +#include #include @@ -272,3 +276,5 @@ namespace CGAL { } } + +#endif //CGAL_APPROXIMATE_MIN_ELLIPSOID_D_APPROXIMATE_MIN_ELLIPSOID_D_IMPL_H diff --git a/Bounding_volumes/include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation_impl.h b/Bounding_volumes/include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation_impl.h index 90944fd8b7fa..c3c5844f2732 100644 --- a/Bounding_volumes/include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation_impl.h +++ b/Bounding_volumes/include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation_impl.h @@ -10,6 +10,11 @@ // // Author(s) : Kaspar Fischer +#ifndef CGAL_APPROX_MIN_ELLIPSOID_KHACHIYAN_APPROX_IMPL_H +#define CGAL_APPROX_MIN_ELLIPSOID_KHACHIYAN_APPROX_IMPL_H + +#include + // Note: whenever a comment refers to "Khachiyan's paper" then the // paper "Rounding of polytopes in the real number model of // computation" is meant (Mathematics of Operations Research, Vol. 21, @@ -663,3 +668,5 @@ namespace CGAL { } } + +#endif // CGAL_APPROX_MIN_ELLIPSOID_KHACHIYAN_APPROX_IMPL_H diff --git a/Bounding_volumes/include/CGAL/Min_circle_2/Min_circle_2_impl.h b/Bounding_volumes/include/CGAL/Min_circle_2/Min_circle_2_impl.h index 114a59a297a1..c7f9893103d6 100644 --- a/Bounding_volumes/include/CGAL/Min_circle_2/Min_circle_2_impl.h +++ b/Bounding_volumes/include/CGAL/Min_circle_2/Min_circle_2_impl.h @@ -10,6 +10,11 @@ // // Author(s) : Sven Schoenherr , Bernd Gaertner +#ifndef CGAL_MIN_CIRCLE_2_MIN_CIRCLE_2_IMPL_H +#define CGAL_MIN_CIRCLE_2_MIN_CIRCLE_2_IMPL_H + +#include + #include namespace CGAL { @@ -98,3 +103,5 @@ operator >> ( std::istream& is, CGAL::Min_circle_2& min_circle) } //namespace CGAL // ===== EOF ================================================================== + +#endif // CGAL_MIN_CIRCLE_2_MIN_CIRCLE_2_IMPL_H diff --git a/Bounding_volumes/include/CGAL/Min_circle_2/Optimisation_circle_2_impl.h b/Bounding_volumes/include/CGAL/Min_circle_2/Optimisation_circle_2_impl.h index f2e94333b610..04a47b6d2b0b 100644 --- a/Bounding_volumes/include/CGAL/Min_circle_2/Optimisation_circle_2_impl.h +++ b/Bounding_volumes/include/CGAL/Min_circle_2/Optimisation_circle_2_impl.h @@ -10,6 +10,11 @@ // // Author(s) : Sven Schoenherr , Bernd Gaertner +#ifndef CGAL_MIN_SPHERE_D_OPTIMISATION_CIRCLE_2_IMPL_H +#define CGAL_MIN_SPHERE_D_OPTIMISATION_CIRCLE_2_IMPL_H + +#include + // includes # include @@ -89,3 +94,5 @@ operator >> ( std::istream& is, CGAL::Optimisation_circle_2& c) } //namespace CGAL // ===== EOF ================================================================== + +#endif //CGAL_MIN_SPHERE_D_OPTIMISATION_CIRCLE_2_IMPL_H diff --git a/Bounding_volumes/include/CGAL/Min_ellipse_2/Min_ellipse_2_impl.h b/Bounding_volumes/include/CGAL/Min_ellipse_2/Min_ellipse_2_impl.h index d7bd821350ed..01cc0d2dcf7d 100644 --- a/Bounding_volumes/include/CGAL/Min_ellipse_2/Min_ellipse_2_impl.h +++ b/Bounding_volumes/include/CGAL/Min_ellipse_2/Min_ellipse_2_impl.h @@ -10,6 +10,11 @@ // // Author(s) : Sven Schoenherr , Bernd Gaertner +#ifndef CGAL_MIN_ELLIPSE_2_MIN_ELLIPSE_2_IMP_H +#define CGAL_MIN_ELLIPSE_2_MIN_ELLIPSE_2_IMP_H + +#include + #include namespace CGAL { @@ -98,3 +103,5 @@ operator >> ( std::istream& is, CGAL::Min_ellipse_2& min_ellipse) } //namespace CGAL // ===== EOF ================================================================== + +#endif // CGAL_MIN_ELLIPSE_2_MIN_ELLIPSE_2_IMP_H diff --git a/Bounding_volumes/include/CGAL/Min_ellipse_2/Optimisation_ellipse_2_impl.h b/Bounding_volumes/include/CGAL/Min_ellipse_2/Optimisation_ellipse_2_impl.h index 4f94bbe40479..4100d9d3de69 100644 --- a/Bounding_volumes/include/CGAL/Min_ellipse_2/Optimisation_ellipse_2_impl.h +++ b/Bounding_volumes/include/CGAL/Min_ellipse_2/Optimisation_ellipse_2_impl.h @@ -10,6 +10,11 @@ // // Author(s) : Sven Schoenherr , Bernd Gaertner +#ifndef CGAL_MIN_ELLIPSE_2_OPTIMISATION_ELLIPSE_2_IMPL_H +#define CGAL_MIN_ELLIPSE_2_OPTIMISATION_ELLIPSE_2_IMPL_H + +#include + namespace CGAL { // Class implementation (continued) @@ -116,3 +121,5 @@ operator >> ( std::istream& is, CGAL::Optimisation_ellipse_2& e) } //namespace CGAL // ===== EOF ================================================================== + +#endif // CGAL_MIN_ELLIPSE_2_OPTIMISATION_ELLIPSE_2_IMPL_H diff --git a/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_2.h b/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_2.h index 05dd8668050e..933212c0c6bc 100644 --- a/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_2.h +++ b/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_2.h @@ -9,7 +9,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Sven Schoenherr @@ -17,6 +17,9 @@ #ifndef CGAL_MIN_SPHERE_ANNULUS_D_TRAITS_2_H #define CGAL_MIN_SPHERE_ANNULUS_D_TRAITS_2_H +#include + + // includes # include # include diff --git a/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_3.h b/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_3.h index 75c7f038d701..a941f4e0b469 100644 --- a/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_3.h +++ b/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_3.h @@ -9,7 +9,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Sven Schoenherr @@ -17,6 +17,9 @@ #ifndef CGAL_MIN_SPHERE_ANNULUS_D_TRAITS_3_H #define CGAL_MIN_SPHERE_ANNULUS_D_TRAITS_3_H +#include + + // includes # include # include diff --git a/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_d.h b/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_d.h index 8d2f13a56c67..ff1feca70bde 100644 --- a/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_d.h +++ b/Bounding_volumes/include/CGAL/Min_sphere_annulus_d_traits_d.h @@ -9,7 +9,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Sven Schoenherr @@ -17,6 +17,9 @@ #ifndef CGAL_MIN_SPHERE_ANULUS_D_TRAITS_D_H #define CGAL_MIN_SPHERE_ANULUS_D_TRAITS_D_H +#include + + // includes # include # include diff --git a/Bounding_volumes/include/CGAL/Min_sphere_d/Min_sphere_d_impl.h b/Bounding_volumes/include/CGAL/Min_sphere_d/Min_sphere_d_impl.h index 17231e575e40..95ebcd1fb310 100644 --- a/Bounding_volumes/include/CGAL/Min_sphere_d/Min_sphere_d_impl.h +++ b/Bounding_volumes/include/CGAL/Min_sphere_d/Min_sphere_d_impl.h @@ -11,6 +11,11 @@ // Author(s) : Sven Schoenherr // Bernd Gaertner +#ifndef CGAL_MIN_SPHERE_D_MIN_SPHERE_D_IMPL_H +#define CGAL_MIN_SPHERE_D_MIN_SPHERE_D_IMPL_H + +#include + #include namespace CGAL { @@ -105,3 +110,5 @@ operator >> ( std::istream& is, Min_sphere_d& min_sphere) } //namespace CGAL // ===== EOF ================================================================== + +#endif //CGAL_MIN_SPHERE_D_MIN_SPHERE_D_IMPL_H diff --git a/CGAL_ImageIO/include/CGAL/ImageIO/analyze_impl.h b/CGAL_ImageIO/include/CGAL/ImageIO/analyze_impl.h index 1c326b6fa1f4..86bb69221a0d 100644 --- a/CGAL_ImageIO/include/CGAL/ImageIO/analyze_impl.h +++ b/CGAL_ImageIO/include/CGAL/ImageIO/analyze_impl.h @@ -463,60 +463,79 @@ int _readAnalyzeHeader( _image* im, const char* name, for ( i=0; inuser; i++ ) im->user[i] = nullptr; i = 0 ; - im->user[i] = (char *) ImageIO_alloc((strlen("Data lost in the Analyze -> ImageIO conversion:") + 1)); - sprintf( im->user[i++], "Data lost in the Analyze -> ImageIO conversion:" ); + size_t buffer_size; + buffer_size = strlen("Data lost in the Analyze -> ImageIO conversion:") + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, "Data lost in the Analyze -> ImageIO conversion:" ); - im->user[i] = (char *) ImageIO_alloc((strlen(" descrip: ") + 1 + strlen(analyzeHeader->hist.descrip) )); - sprintf( im->user[i++], " descrip: %s", analyzeHeader->hist.descrip ); + buffer_size = snprintf(nullptr, 0, " descrip: %s", analyzeHeader->hist.descrip) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " descrip: %s", analyzeHeader->hist.descrip ); - im->user[i] = (char *) ImageIO_alloc((strlen(" aux_file: ") + 1 + strlen(analyzeHeader->hist.descrip) )); - sprintf( im->user[i++], " aux_file: %s", analyzeHeader->hist.descrip ); + buffer_size = snprintf(nullptr, 0, " aux_file: %s", analyzeHeader->hist.descrip ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " aux_file: %s", analyzeHeader->hist.descrip ); - im->user[i] = (char *) ImageIO_alloc((strlen(" orient: ") + 1+ 2)); - sprintf( im->user[i++], " orient: %d", analyzeHeader->hist.orient ); + buffer_size = snprintf(nullptr, 0, " orient: %d", analyzeHeader->hist.orient ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " orient: %d", analyzeHeader->hist.orient ); - im->user[i] = (char *) ImageIO_alloc((strlen(" originator: ") + 1 + strlen(analyzeHeader->hist.originator) )); - sprintf( im->user[i++], " originator: %s", analyzeHeader->hist.originator ); + buffer_size = snprintf(nullptr, 0, " originator: %s", analyzeHeader->hist.originator ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " originator: %s", analyzeHeader->hist.originator ); - im->user[i] = (char *) ImageIO_alloc((strlen(" generated: ") + 1 + strlen(analyzeHeader->hist.generated) )); - sprintf( im->user[i++], " generated: %s", analyzeHeader->hist.generated ); + buffer_size = snprintf(nullptr, 0, " generated: %s", analyzeHeader->hist.generated ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " generated: %s", analyzeHeader->hist.generated ); - im->user[i] = (char *) ImageIO_alloc((strlen(" scannum: ") + 1 + strlen(analyzeHeader->hist.scannum) )); - sprintf( im->user[i++], " scannum: %s", analyzeHeader->hist.scannum ); + buffer_size = snprintf(nullptr, 0, " scannum: %s", analyzeHeader->hist.scannum ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " scannum: %s", analyzeHeader->hist.scannum ); - im->user[i] = (char *) ImageIO_alloc((strlen(" patient_id: ") + 1 + strlen(analyzeHeader->hist.patient_id) )); - sprintf( im->user[i++], " patient_id: %s", analyzeHeader->hist.patient_id ); + buffer_size = snprintf(nullptr, 0, " patient_id: %s", analyzeHeader->hist.patient_id ) +1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " patient_id: %s", analyzeHeader->hist.patient_id ); - im->user[i] = (char *) ImageIO_alloc((strlen(" exp_date: ") + 1 + strlen(analyzeHeader->hist.exp_date) )); - sprintf( im->user[i++], " exp_date: %s", analyzeHeader->hist.exp_date ); + buffer_size = snprintf(nullptr, 0, " exp_date: %s", analyzeHeader->hist.exp_date ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " exp_date: %s", analyzeHeader->hist.exp_date ); - im->user[i] = (char *) ImageIO_alloc((strlen(" exp_time: ") + 1 + strlen(analyzeHeader->hist.exp_time) )); - sprintf( im->user[i++], " exp_time: %s", analyzeHeader->hist.exp_time ); + buffer_size = snprintf(nullptr, 0, " exp_time: %s", analyzeHeader->hist.exp_time ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " exp_time: %s", analyzeHeader->hist.exp_time ); + buffer_size = snprintf(nullptr, 0, " views: %d", analyzeHeader->hist.views ) + 1; /* A 32 bit int doesn't print on more than 11 chars */ - im->user[i] = (char *) ImageIO_alloc((strlen(" views: ") + 11 + 1)); - sprintf( im->user[i++], " views: %d", analyzeHeader->hist.views ); + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " views: %d", analyzeHeader->hist.views ); - im->user[i] = (char *) ImageIO_alloc((strlen(" vols_added: ") + 11 + 1)); - sprintf( im->user[i++], " vols_added: %d", analyzeHeader->hist.vols_added ); + buffer_size = snprintf(nullptr, 0, " vols_added: %d", analyzeHeader->hist.vols_added ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " vols_added: %d", analyzeHeader->hist.vols_added ); - im->user[i] = (char *) ImageIO_alloc((strlen(" start_field: ") + 11 + 1)); - sprintf( im->user[i++], " start_field: %d", analyzeHeader->hist.start_field ); + buffer_size = snprintf(nullptr, 0, " start_field: %d", analyzeHeader->hist.start_field ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " start_field: %d", analyzeHeader->hist.start_field ); - im->user[i] = (char *) ImageIO_alloc((strlen(" field_skip: ") + 11 + 1)); - sprintf( im->user[i++], " field_skip: %d", analyzeHeader->hist.field_skip ); + buffer_size = snprintf(nullptr, 0, " field_skip: %d", analyzeHeader->hist.field_skip ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " field_skip: %d", analyzeHeader->hist.field_skip ); - im->user[i] = (char *) ImageIO_alloc((strlen(" omax: ") + 11 + 1)); - sprintf( im->user[i++], " omax: %d", analyzeHeader->hist.omax ); + buffer_size = snprintf(nullptr, 0, " omax: %d", analyzeHeader->hist.omax ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " omax: %d", analyzeHeader->hist.omax ); - im->user[i] = (char *) ImageIO_alloc((strlen(" omin: ") + 11 + 1)); - sprintf( im->user[i++], " omin: %d", analyzeHeader->hist.omin ); + buffer_size = snprintf(nullptr, 0, " omin: %d", analyzeHeader->hist.omin ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " omin: %d", analyzeHeader->hist.omin ); - im->user[i] = (char *) ImageIO_alloc((strlen(" smax: ") + 11 + 1)); - sprintf( im->user[i++], " smax: %d", analyzeHeader->hist.smax ); + buffer_size = snprintf(nullptr, 0, " smax: %d", analyzeHeader->hist.smax ) + 1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " smax: %d", analyzeHeader->hist.smax ); - im->user[i] = (char *) ImageIO_alloc((strlen(" smin: ") + 11 + 1)); - sprintf( im->user[i++], " smin: %d", analyzeHeader->hist.smin ); + buffer_size = snprintf(nullptr, 0, " smin: %d", analyzeHeader->hist.smin ) +1; + im->user[i] = (char *) ImageIO_alloc(buffer_size); + snprintf( im->user[i++], buffer_size, " smin: %d", analyzeHeader->hist.smin ); /* header is read. close header file and open data file. */ diff --git a/CGAL_ImageIO/include/CGAL/ImageIO/gis_impl.h b/CGAL_ImageIO/include/CGAL/ImageIO/gis_impl.h index e2d9b5b28186..f9c590dd5a7a 100644 --- a/CGAL_ImageIO/include/CGAL/ImageIO/gis_impl.h +++ b/CGAL_ImageIO/include/CGAL/ImageIO/gis_impl.h @@ -130,10 +130,10 @@ int writeGis( char *name, _image* im) { do { memset( str, 0, _LGTH_STRING_ ); for ( j=0; jwordKind) { case WK_FLOAT: - sprintf(type, "float"); + snprintf(type, 30, "float"); scale[0] = '\0'; break; case WK_FIXED: switch(im->sign) { case SGN_SIGNED: - sprintf(type, "signed fixed"); + snprintf(type, 30, "signed fixed"); break; case SGN_UNSIGNED: - sprintf(type, "unsigned fixed"); + snprintf(type, 30, "unsigned fixed"); break; default: return -1; } - sprintf(scale, "SCALE=2**0\n"); + snprintf(scale, 20, "SCALE=2**0\n"); break; default: @@ -101,17 +101,17 @@ int _writeInrimageHeader(const _image *im, ENDIANNESS end) { switch(end) { case END_LITTLE: - sprintf(endianness, "decm"); + snprintf(endianness, 5, "decm"); break; case END_BIG: - sprintf(endianness, "sun"); + snprintf(endianness, 5, "sun"); break; default: /* fix architecture endianness */ if( _getEndianness() == END_LITTLE) - sprintf(endianness, "decm"); + snprintf(endianness, 5, "decm"); else - sprintf(endianness, "sun"); + snprintf(endianness, 5, "sun"); break; } diff --git a/CGAL_ImageIO/include/CGAL/ImageIO/mincio_impl.h b/CGAL_ImageIO/include/CGAL/ImageIO/mincio_impl.h index cd701bb2e893..5addca29f1e1 100644 --- a/CGAL_ImageIO/include/CGAL/ImageIO/mincio_impl.h +++ b/CGAL_ImageIO/include/CGAL/ImageIO/mincio_impl.h @@ -357,7 +357,7 @@ int writeMincFile( const _image* im, const char *filename, strcat(newname, filename + i + 1); } else - sprintf(newname, "#TMP#%s", filename); + snprintf(newname,strlen(filename) + 10, "#TMP#%s", filename); } } diff --git a/CGAL_ImageIO/include/CGAL/ImageIO/pnm_impl.h b/CGAL_ImageIO/include/CGAL/ImageIO/pnm_impl.h index 1298dd4e84a8..ceb9d7ff68a2 100644 --- a/CGAL_ImageIO/include/CGAL/ImageIO/pnm_impl.h +++ b/CGAL_ImageIO/include/CGAL/ImageIO/pnm_impl.h @@ -524,14 +524,14 @@ int writePgmImage(char *name,_image *im ) } if ( im->dataMode == DM_ASCII ) - sprintf( string, "%s\n", PGM_ASCII_MAGIC ); + snprintf( string, 256, "%s\n", PGM_ASCII_MAGIC ); else - sprintf( string, "%s\n", PGM_MAGIC ); + snprintf( string, 256, "%s\n", PGM_MAGIC ); ImageIO_write( im, string, strlen( string ) ); - sprintf( string, "# CREATOR: pnm.c $Revision$ $Date$\n" ); + snprintf( string, 256, "# CREATOR: pnm.c $Revision$ $Date$\n" ); ImageIO_write( im, string, strlen( string ) ); - sprintf( string, "%zu %zu\n", im->xdim, im->ydim ); + snprintf( string, 256, "%zu %zu\n", im->xdim, im->ydim ); ImageIO_write( im, string, strlen( string ) ); max = 0; switch ( im->wdim ) { @@ -552,7 +552,7 @@ int writePgmImage(char *name,_image *im ) } /* max == 0 causes problems for xv */ if ( max == 0 ) max = 1; - sprintf( string, "%d\n", max ); + snprintf( string, 256, "%d\n", max ); ImageIO_write( im, string, strlen( string ) ); if ( im->dataMode == DM_ASCII ) { @@ -574,10 +574,10 @@ int writePgmImage(char *name,_image *im ) do { memset( str, 0, _LGTH_STRING_ ); for ( j=0; jopenMode = OM_CLOSE; return 1; } - - - diff --git a/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt b/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt index f017575dd855..f40e7275bdc8 100644 --- a/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt +++ b/CGAL_ipelets/demo/CGAL_ipelets/CMakeLists.txt @@ -20,8 +20,6 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") find_package(CGAL REQUIRED COMPONENTS Core) -include(${CGAL_USE_FILE}) - find_package(Eigen3 3.1.0 QUIET) #(requires 3.1.0 or greater) include(CGAL_Eigen3_support) if(NOT TARGET CGAL::Eigen3_support) @@ -65,6 +63,7 @@ if(IPE_FOUND AND IPE_VERSION) set(CGAL_IPELETS ${CGAL_IPELETS} mesh_2) set(CGAL_IPELETS ${CGAL_IPELETS} minkowski) set(CGAL_IPELETS ${CGAL_IPELETS} mst) + set(CGAL_IPELETS ${CGAL_IPELETS} nearest_neighbor_graph) set(CGAL_IPELETS ${CGAL_IPELETS} multi_delaunay) set(CGAL_IPELETS ${CGAL_IPELETS} multi_regular) set(CGAL_IPELETS ${CGAL_IPELETS} partition) @@ -99,13 +98,13 @@ if(IPE_FOUND AND IPE_VERSION) cgal_add_compilation_test(CGAL_${IPELET}) endforeach(IPELET) if(CGAL_Core_FOUND) - target_link_libraries(CGAL_cone_spanners PRIVATE CGAL::CGAL_Core + target_link_libraries(CGAL_cone_spanners PRIVATE CGAL::CGAL CGAL::CGAL_Core CGAL::Eigen3_support) endif() #example in doc not installed add_library(simple_triangulation MODULE simple_triangulation.cpp) add_to_cached_list(CGAL_EXECUTABLE_TARGETS simple_triangulation) - target_link_libraries(simple_triangulation CGAL::Eigen3_support + target_link_libraries(simple_triangulation CGAL::CGAL CGAL::Eigen3_support ${IPE_LIBRARIES}) target_include_directories(simple_triangulation BEFORE PRIVATE ${IPE_INCLUDE_DIR}) if (WITH_IPE_7) diff --git a/CGAL_ipelets/demo/CGAL_ipelets/lua/libCGAL_nearest_neighbor_graph.lua b/CGAL_ipelets/demo/CGAL_ipelets/lua/libCGAL_nearest_neighbor_graph.lua new file mode 100644 index 000000000000..b46e8c771ca1 --- /dev/null +++ b/CGAL_ipelets/demo/CGAL_ipelets/lua/libCGAL_nearest_neighbor_graph.lua @@ -0,0 +1,24 @@ +---------------------------------------------------------------------- +-- CGAL NNG ipelet description +---------------------------------------------------------------------- + +label = "k-nearest-neighbor graph" + +about = [[ +This ipelet is part of the CGAL_ipelet package. See www.cgal.org. +]] + +-- this variable will store the C++ ipelet when it has been loaded +ipelet = false + +function run(model, num) + if not ipelet then ipelet = assert(ipe.Ipelet(dllname)) end + model:runIpelet(methods[num].label, ipelet, num) +end + +methods = { + { label="k-nearest-neighbor graph" }, + { label="Help" }, +} + +---------------------------------------------------------------------- diff --git a/CGAL_ipelets/demo/CGAL_ipelets/nearest_neighbor_graph.cpp b/CGAL_ipelets/demo/CGAL_ipelets/nearest_neighbor_graph.cpp new file mode 100644 index 000000000000..32cec4460dd4 --- /dev/null +++ b/CGAL_ipelets/demo/CGAL_ipelets/nearest_neighbor_graph.cpp @@ -0,0 +1,88 @@ +// Copyright (c) 2023 Inria +// All rights reserved. +// +// +// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// +// Author(s) : Daniel Funke + +#include +#include +#include +#include + +#include + +namespace CGAL_nng { + +typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel; +typedef CGAL::Delaunay_triangulation_2 Triangulation; + +const std::string Slab[] = { + "k-nearest-neighbor graph", "Help" +}; + +const std::string Hmsg[] = { + "Draw the k-nearest-neighbor graph of a set of points" +}; + +struct nngIpelet + : CGAL::Ipelet_base { + nngIpelet() : CGAL::Ipelet_base("k-nearest-neighbor graph", Slab, Hmsg){} + void protected_run(int); +}; + +void nngIpelet::protected_run(int fn) +{ + + if(fn == 1){ + show_help(); + return; + } + + std::list pt_list; + + read_active_objects( + CGAL::dispatch_or_drop_output( + std::back_inserter(pt_list) + ) + ); + + if (pt_list.empty()) { + print_error_message("No mark selected"); + return; + } + + int ret_val; + int kNeighbors=1; + + boost::tie(ret_val,kNeighbors)=request_value_from_user((boost::format("Number of nearest neighbors (default : k=%1%)") % kNeighbors).str() ); + if (ret_val == -1) return; + if (ret_val == 0) kNeighbors=1; + + Triangulation t(pt_list.begin(), pt_list.end()); + + bool edgesDrawn = false; + for(auto v = t.finite_vertices_begin(); + v != t.finite_vertices_end(); + ++v){ + + std::vector kNN; + CGAL::nearest_neighbors(t, v, kNeighbors+1, std::back_inserter(kNN)); // +1 as v itself counts as its nearest neigbhor for CGAL::nearest_neighbors + + for(const auto & nn : kNN) { + if(v->point() != nn->point()) { + draw_in_ipe(Kernel::Segment_2(v->point(), nn->point())); + edgesDrawn = true; + } + } + } + + if(edgesDrawn) { + group_selected_objects_(); + // don't create an empty group if no edges are drawn + } +} +} + +CGAL_IPELET(CGAL_nng::nngIpelet) diff --git a/CGAL_ipelets/doc/CGAL_ipelets/CGAL_ipelets.txt b/CGAL_ipelets/doc/CGAL_ipelets/CGAL_ipelets.txt index 9cbfa8e64fce..3025dc111555 100644 --- a/CGAL_ipelets/doc/CGAL_ipelets/CGAL_ipelets.txt +++ b/CGAL_ipelets/doc/CGAL_ipelets/CGAL_ipelets.txt @@ -248,6 +248,9 @@ The Minkowski sum of the polygons with the circle is computed and drawn. The input selection must be a set of points. The Euclidean minimum spanning tree of the points is computed and drawn. +\subsection nng_ipelet Nearest-neighbor graph +The input selection must be a set of points. The nearest-neighbor graph of the points is computed and drawn. + \subsection multi_delaunay_ipelet k Order Delaunay The input selection must be a set of points. The order k Voronoi diagram or its dual the order k Delaunay is drawn. diff --git a/CGAL_ipelets/include/CGAL/CGAL_Ipelet_base_v6.h b/CGAL_ipelets/include/CGAL/CGAL_Ipelet_base_v6.h index 48572f24118b..9876131f47b0 100644 --- a/CGAL_ipelets/include/CGAL/CGAL_Ipelet_base_v6.h +++ b/CGAL_ipelets/include/CGAL/CGAL_Ipelet_base_v6.h @@ -636,12 +636,11 @@ namespace CGAL{ template void draw_in_ipe(const iterator begin,const iterator end,const Iso_rectangle_2& bbox,bool make_grp=true,bool deselect_all=false, - std::enable_if_t< boost::mpl::or_< std::is_same::value_type,Point_2> , - boost::mpl::or_< std::is_same::value_type,Segment_2> , - boost::mpl::or_< std::is_same::value_type,Circle_2> , - boost::mpl::or_< std::is_same::value_type,Circular_arc_2> , - std::is_same::value_type,Polygon_2> - > > > >::value + std::enable_if_t< std::is_same_v::value_type,Point_2> || + std::is_same_v::value_type,Segment_2> || + std::is_same_v::value_type,Circle_2> || + std::is_same_v::value_type,Circular_arc_2> || + std::is_same_v::value_type,Polygon_2> >* = nullptr) const { for (iterator it=begin;it!=end;++it) diff --git a/CGAL_ipelets/include/CGAL/CGAL_Ipelet_base_v7.h b/CGAL_ipelets/include/CGAL/CGAL_Ipelet_base_v7.h index 5373b0a3445f..3dc51367d33e 100644 --- a/CGAL_ipelets/include/CGAL/CGAL_Ipelet_base_v7.h +++ b/CGAL_ipelets/include/CGAL/CGAL_Ipelet_base_v7.h @@ -645,12 +645,11 @@ namespace CGAL{ template void draw_in_ipe(const iterator begin,const iterator end,const Iso_rectangle_2& bbox,bool make_grp=true,bool deselect_all=false, - std::enable_if_t< boost::mpl::or_< std::is_same::value_type,Point_2> , - boost::mpl::or_< std::is_same::value_type,Segment_2> , - boost::mpl::or_< std::is_same::value_type,Circle_2> , - boost::mpl::or_< std::is_same::value_type,Circular_arc_2> , - std::is_same::value_type,Polygon_2> - > > > >::value + std::enable_if_t< std::is_same_v::value_type,Point_2> || + std::is_same_v::value_type,Segment_2> || + std::is_same_v::value_type,Circle_2> || + std::is_same_v::value_type,Circular_arc_2> || + std::is_same_v::value_type,Polygon_2> >* = nullptr) const { for (iterator it=begin;it!=end;++it) diff --git a/CMakeLists.txt b/CMakeLists.txt index f021ea345f3b..c7f9ace726f7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,14 +46,17 @@ option( message("== CMake setup (DONE) ==\n") -# Enable testing with BUILD_TESTING -option(BUILD_TESTING "Build the testing tree." OFF) -if(BUILD_TESTING AND NOT POLICY CMP0064) +# Enable testing with CGAL_ENABLE_TESTING. Before CGAL-6.0, users would enable +# the tests by specifying BUILD_TESTING. For compatibility, If BUILD_TESTING is +# set, that is the default value for CGAL_ENABLE_TESTING. Otherwise, the default +# value is OFF. +option(CGAL_ENABLE_TESTING "Build the testing tree." ${BUILD_TESTING}) +if(CGAL_ENABLE_TESTING AND NOT POLICY CMP0064) message( FATAL_ERROR "CGAL support of CTest requires CMake version 3.4 or later. -The variable BUILD_TESTING must be set of OFF.") +The variable CGAL_ENABLE_TESTING must be set of OFF.") endif() -if(BUILD_TESTING) +if(CGAL_ENABLE_TESTING) enable_testing() endif() diff --git a/Cartesian_kernel/include/CGAL/predicates/kernel_ftC3.h b/Cartesian_kernel/include/CGAL/predicates/kernel_ftC3.h index 5d210da549dc..86bf5f74bd23 100644 --- a/Cartesian_kernel/include/CGAL/predicates/kernel_ftC3.h +++ b/Cartesian_kernel/include/CGAL/predicates/kernel_ftC3.h @@ -102,12 +102,14 @@ collinearC3(const FT &px, const FT &py, const FT &pz, FT dqx = qx-rx; FT dpy = py-ry; FT dqy = qy-ry; - if (sign_of_determinant(dpx, dqx, dpy, dqy) != ZERO) + + auto is_zero = sign_of_determinant(dpx, dqx, dpy, dqy) == ZERO; + if (certainly_not(is_zero)) return false; FT dpz = pz-rz; FT dqz = qz-rz; - return CGAL_AND( sign_of_determinant(dpx, dqx, dpz, dqz) == ZERO , - sign_of_determinant(dpy, dqy, dpz, dqz) == ZERO ); + return is_zero & CGAL_AND( sign_of_determinant(dpx, dqx, dpz, dqz) == ZERO , + sign_of_determinant(dpy, dqy, dpz, dqz) == ZERO ); } template < class FT > diff --git a/Circular_kernel_2/include/CGAL/Circular_kernel_2/Intersection_traits.h b/Circular_kernel_2/include/CGAL/Circular_kernel_2/Intersection_traits.h index 34ba0ccc3868..bab7cfadfc11 100644 --- a/Circular_kernel_2/include/CGAL/Circular_kernel_2/Intersection_traits.h +++ b/Circular_kernel_2/include/CGAL/Circular_kernel_2/Intersection_traits.h @@ -5,11 +5,11 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Philipp Möller and Sebastien Loriot @@ -17,6 +17,9 @@ #ifndef CGAL_CIRCULAR_KERNEL_2_INTERSECTION_TRAITS_H #define CGAL_CIRCULAR_KERNEL_2_INTERSECTION_TRAITS_H +#include + + #include #include diff --git a/Circular_kernel_2/include/CGAL/Circular_kernel_2/interface_macros.h b/Circular_kernel_2/include/CGAL/Circular_kernel_2/interface_macros.h index ca10ee63135f..544f437b9360 100644 --- a/Circular_kernel_2/include/CGAL/Circular_kernel_2/interface_macros.h +++ b/Circular_kernel_2/include/CGAL/Circular_kernel_2/interface_macros.h @@ -9,6 +9,8 @@ // // Author(s) : Monique Teillaud, Sylvain Pion, Pedro Machado +#include + // Partially supported by the IST Programme of the EU as a Shared-cost // RTD (FET Open) Project under Contract No IST-2000-26473 // (ECG - Effective Computational Geometry for Curves and Surfaces) diff --git a/Circular_kernel_2/include/CGAL/Filtered_bbox_circular_kernel_2/interface_macros.h b/Circular_kernel_2/include/CGAL/Filtered_bbox_circular_kernel_2/interface_macros.h index 32afcea5df7a..73dd6f14b37d 100644 --- a/Circular_kernel_2/include/CGAL/Filtered_bbox_circular_kernel_2/interface_macros.h +++ b/Circular_kernel_2/include/CGAL/Filtered_bbox_circular_kernel_2/interface_macros.h @@ -9,6 +9,8 @@ // // Author(s) : Monique Teillaud, Sylvain Pion, Pedro Machado +#include + // Partially supported by the IST Programme of the EU as a Shared-cost // RTD (FET Open) Project under Contract No IST-2000-26473 // (ECG - Effective Computational Geometry for Curves and Surfaces) diff --git a/Circular_kernel_2/test/Circular_kernel_2/CMakeLists.txt b/Circular_kernel_2/test/Circular_kernel_2/CMakeLists.txt index c59104595f13..84c04f4accec 100644 --- a/Circular_kernel_2/test/Circular_kernel_2/CMakeLists.txt +++ b/Circular_kernel_2/test/Circular_kernel_2/CMakeLists.txt @@ -22,7 +22,7 @@ create_single_source_cgal_program("test_Line_arc.cpp") create_single_source_cgal_program("test_Circular_kernel_basic.cpp") create_single_source_cgal_program("test_Exact_circular_kernel_basic.cpp") -if(BUILD_TESTING) +if(CGAL_ENABLE_TESTING) set_tests_properties( "execution of test_Circular_kernel_basic" "execution of test_Exact_circular_kernel_basic" diff --git a/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt b/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt index de903d372baa..42cc885bbffa 100644 --- a/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt +++ b/Circular_kernel_3/demo/Circular_kernel_3/CMakeLists.txt @@ -1,29 +1,18 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Circular_kernel_3_Demo) -if(NOT POLICY CMP0070 AND POLICY CMP0053) - # Only set CMP0053 to OLD with CMake<3.10, otherwise there is a warning. - cmake_policy(SET CMP0053 OLD) -endif() - -if(POLICY CMP0071) - cmake_policy(SET CMP0071 NEW) -endif() - -find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt5) +find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Qt6) -find_package(Qt5 QUIET COMPONENTS Widgets OpenGL) +find_package(Qt6 QUIET COMPONENTS Widgets OpenGL) -if(CGAL_Qt5_FOUND AND Qt5_FOUND) +if(CGAL_Qt6_FOUND AND Qt6_FOUND) - add_executable( - Circular_kernel_3 Circular_kernel_3.cpp Viewer.cpp - ${CGAL_Qt5_RESOURCE_FILES} ${CGAL_Qt5_MOC_FILES}) + qt_add_executable(Circular_kernel_3 Circular_kernel_3.cpp Viewer.cpp) add_to_cached_list(CGAL_EXECUTABLE_TARGETS Circular_kernel_3) - target_link_libraries(Circular_kernel_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt5 - Qt5::Widgets Qt5::OpenGL) + target_link_libraries(Circular_kernel_3 PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 + Qt6::Widgets Qt6::OpenGL) include(${CGAL_MODULES_DIR}/CGAL_add_test.cmake) cgal_add_compilation_test(Circular_kernel_3) @@ -33,6 +22,6 @@ if(CGAL_Qt5_FOUND AND Qt5_FOUND) else() - message("NOTICE: This demo requires CGAL and Qt5, and will not be compiled.") + message("NOTICE: This demo requires CGAL and Qt6, and will not be compiled.") endif() diff --git a/Circular_kernel_3/include/CGAL/Circular_kernel_3/Intersection_traits.h b/Circular_kernel_3/include/CGAL/Circular_kernel_3/Intersection_traits.h index 9612d2ca5787..ed6ac62628fb 100644 --- a/Circular_kernel_3/include/CGAL/Circular_kernel_3/Intersection_traits.h +++ b/Circular_kernel_3/include/CGAL/Circular_kernel_3/Intersection_traits.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Philipp Möller and Sebastien Loriot @@ -13,6 +13,9 @@ #ifndef CGAL_CIRCULAR_KERNEL_3_INTERSECTION_TRAITS_H #define CGAL_CIRCULAR_KERNEL_3_INTERSECTION_TRAITS_H +#include + + #include #include diff --git a/Circular_kernel_3/include/CGAL/Circular_kernel_3/interface_macros.h b/Circular_kernel_3/include/CGAL/Circular_kernel_3/interface_macros.h index dfb43c312983..17d538869ed4 100644 --- a/Circular_kernel_3/include/CGAL/Circular_kernel_3/interface_macros.h +++ b/Circular_kernel_3/include/CGAL/Circular_kernel_3/interface_macros.h @@ -10,6 +10,8 @@ // Author(s) : Monique Teillaud, Sylvain Pion, Pedro Machado, // Sebastien Loriot, Julien Hazebrouck, Damien Leroy +#include + // Partially supported by the IST Programme of the EU as a // STREP (FET Open) Project under Contract No IST-006413 // (ACS -- Algorithms for Complex Shapes) diff --git a/Circular_kernel_3/include/CGAL/Spherical_kernel_type_equality_wrapper.h b/Circular_kernel_3/include/CGAL/Spherical_kernel_type_equality_wrapper.h index 5553e5566988..7e3e82c822dc 100644 --- a/Circular_kernel_3/include/CGAL/Spherical_kernel_type_equality_wrapper.h +++ b/Circular_kernel_3/include/CGAL/Spherical_kernel_type_equality_wrapper.h @@ -11,7 +11,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Monique Teillaud // Sylvain Pion @@ -22,6 +22,9 @@ #ifndef CGAL_SPHERICAL_KERNEL_TYPE_EQUALITY_WRAPPER_H #define CGAL_SPHERICAL_KERNEL_TYPE_EQUALITY_WRAPPER_H +#include + + #include #include #include diff --git a/Classification/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp b/Classification/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp index 6d2ebb01acfc..c62a2cddfcae 100644 --- a/Classification/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp +++ b/Classification/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp @@ -34,11 +34,7 @@ #include #include #include -#if BOOST_VERSION >= 104700 -# include -#else -# include -#endif +#include #include #include #if defined(CGAL_LINKED_WITH_BOOST_IOSTREAMS) && defined(CGAL_LINKED_WITH_BOOST_SERIALIZATION) @@ -65,17 +61,10 @@ inline void init_feature_class_data(FeatureClassDataFloat& /*data*/, int /*n_cla } typedef std::unordered_set FeatureSet; -#if BOOST_VERSION >= 104700 typedef boost::random::uniform_int_distribution<> UniformIntDist; typedef boost::random::normal_distribution<> NormalDist; typedef boost::random::mt19937 RandomGen; typedef boost::random::uniform_01<> UnitDist; -#else -typedef boost::uniform_int<> UniformIntDist; -typedef boost::normal_distribution<> NormalDist; -typedef boost::uniform_01<> UnitDist; -typedef boost::mt19937 RandomGen; -#endif struct ForestParams { size_t n_classes; diff --git a/Combinatorial_map/include/CGAL/Combinatorial_map_iterators_base.h b/Combinatorial_map/include/CGAL/Combinatorial_map_iterators_base.h index a50266f76592..555dc554c58e 100644 --- a/Combinatorial_map/include/CGAL/Combinatorial_map_iterators_base.h +++ b/Combinatorial_map/include/CGAL/Combinatorial_map_iterators_base.h @@ -18,7 +18,6 @@ #include #include -#include #include @@ -68,24 +67,24 @@ namespace CGAL { class CMap_dart_iterator; template < typename Map_,bool Const> - class CMap_dart_iterator: public boost::mpl::if_c< Const, + class CMap_dart_iterator: public std::conditional_t< Const, typename Map_::Dart_container::const_iterator, - typename Map_::Dart_container::iterator>::type + typename Map_::Dart_container::iterator> //public internal::CC_iterator { public: typedef CMap_dart_iterator Self; - typedef typename boost::mpl::if_c< Const, + typedef std::conditional_t< Const, typename Map_::Dart_container::const_iterator, - typename Map_::Dart_container::iterator>::type Base; + typename Map_::Dart_container::iterator> Base; // typedef internal::CC_iterator Base; - typedef typename boost::mpl::if_c< Const, - typename Map_::Dart_const_descriptor, - typename Map_::Dart_descriptor>::type + typedef std::conditional_t< Const, + typename Map_::Dart_const_descriptor, + typename Map_::Dart_descriptor> Dart_descriptor; - typedef typename boost::mpl::if_c< Const, const Map_, Map_>::type Map; + typedef std::conditional_t< Const, const Map_, Map_> Map; typedef std::input_iterator_tag iterator_category; typedef typename Base::value_type value_type; @@ -180,25 +179,24 @@ namespace CGAL { template < typename Map_,bool Const > class CMap_dart_iterator: - /*public boost::mpl::if_c< Const, + /*public std::conditional_t< Const, typename Map_::Dart_container::const_iterator, - typename Map_::Dart_container::iterator>::type*/ + typename Map_::Dart_container::iterator>*/ public internal::CC_iterator_with_index { public: typedef CMap_dart_iterator Self; - /*typedef typename boost::mpl::if_c< Const, + /*typedef std::conditional_t< Const, typename Map_::Dart_container::const_iterator, - typename Map_::Dart_container::iterator>::type Base;*/ + typename Map_::Dart_container::iterator> Base;*/ typedef internal::CC_iterator_with_index Base; - typedef typename boost::mpl::if_c< Const, - typename Map_::Dart_const_descriptor, - typename Map_::Dart_descriptor>::type + typedef std::conditional_t< Const, + typename Map_::Dart_const_descriptor, + typename Map_::Dart_descriptor> Dart_descriptor; - typedef typename boost::mpl::if_c< Const, const Map_, - Map_>::type Map; + typedef std::conditional_t< Const, const Map_, Map_> Map; typedef std::input_iterator_tag iterator_category; typedef typename Base::value_type value_type; diff --git a/Combinatorial_map/include/CGAL/Compact_container_with_index.h b/Combinatorial_map/include/CGAL/Compact_container_with_index.h index d3d67c57a88d..dbb9aa8bae6d 100644 --- a/Combinatorial_map/include/CGAL/Compact_container_with_index.h +++ b/Combinatorial_map/include/CGAL/Compact_container_with_index.h @@ -861,14 +861,13 @@ namespace internal { typedef typename DSC::value_type value_type; typedef typename DSC::size_type size_type; typedef typename DSC::difference_type difference_type; - typedef typename boost::mpl::if_c< Const, const value_type*, - value_type*>::type pointer; - typedef typename boost::mpl::if_c< Const, const value_type&, - value_type&>::type reference; + typedef std::conditional_t< Const, const value_type*, + value_type*> pointer; + typedef std::conditional_t< Const, const value_type&, + value_type&> reference; typedef std::bidirectional_iterator_tag iterator_category; - typedef typename boost::mpl::if_c< Const, const DSC*, DSC*>::type - cc_pointer; + typedef std::conditional_t< Const, const DSC*, DSC*> cc_pointer; CC_iterator_with_index(): m_ptr_to_cc(nullptr), m_index(0) diff --git a/Cone_spanners_2/examples/Cone_spanners_2/CMakeLists.txt b/Cone_spanners_2/examples/Cone_spanners_2/CMakeLists.txt index ded37dfad089..99442720fc15 100644 --- a/Cone_spanners_2/examples/Cone_spanners_2/CMakeLists.txt +++ b/Cone_spanners_2/examples/Cone_spanners_2/CMakeLists.txt @@ -5,21 +5,10 @@ find_package(CGAL REQUIRED OPTIONAL_COMPONENTS Core) find_package(LEDA QUIET) if(CGAL_Core_FOUND OR LEDA_FOUND) - if(MSVC) - # Turn off a boost related warning that appears with VC2015 - # boost_1_65_1\boost\graph\named_function_params.hpp(240) : - # warning C4172: returning address of local variable or temporary - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4172") - endif() - - # create a target per cppfile - file( - GLOB cppfiles - RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} - ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp) - foreach(cppfile ${cppfiles}) - create_single_source_cgal_program("${cppfile}") - endforeach() + create_single_source_cgal_program("compute_cones.cpp") + create_single_source_cgal_program("theta_io.cpp") else() message("NOTICE: This program requires the CGAL_Core library (or LEDA), and will not be compiled.") endif() + +create_single_source_cgal_program("dijkstra_theta.cpp") diff --git a/Cone_spanners_2/include/CGAL/Compute_cone_boundaries_2.h b/Cone_spanners_2/include/CGAL/Compute_cone_boundaries_2.h index 74e12a8f4db3..4256fd0dc179 100644 --- a/Cone_spanners_2/include/CGAL/Compute_cone_boundaries_2.h +++ b/Cone_spanners_2/include/CGAL/Compute_cone_boundaries_2.h @@ -30,7 +30,9 @@ #include #include // CGAL_PI is defined there #include +#if defined(CGAL_USE_LEDA) || defined(CGAL_USE_CORE) #include +#endif #include namespace CGAL { @@ -111,7 +113,7 @@ class Compute_cone_boundaries_2 { }; - +#if defined(CGAL_USE_LEDA) || defined(CGAL_USE_CORE) /* The specialised functor for computing the directions of cone boundaries exactly with a given cone number and a given initial direction. @@ -209,6 +211,7 @@ class Compute_cone_boundaries_2 #include #include -#include #include #include diff --git a/Cone_spanners_2/test/Cone_spanners_2/CMakeLists.txt b/Cone_spanners_2/test/Cone_spanners_2/CMakeLists.txt index 462edfc78196..17c47060a82f 100644 --- a/Cone_spanners_2/test/Cone_spanners_2/CMakeLists.txt +++ b/Cone_spanners_2/test/Cone_spanners_2/CMakeLists.txt @@ -5,12 +5,16 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Cone_spanners_2_Tests) find_package(CGAL REQUIRED COMPONENTS Core) +find_package(LEDA QUIET) -# create a target per cppfile -file( - GLOB cppfiles - RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} - ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp) -foreach(cppfile ${cppfiles}) - create_single_source_cgal_program("${cppfile}") -endforeach() +create_single_source_cgal_program("cones_inexact.cpp") +create_single_source_cgal_program("theta_inexact.cpp") +create_single_source_cgal_program("yao_inexact.cpp") + +if(CGAL_Core_FOUND OR LEDA_FOUND) + create_single_source_cgal_program("cones_exact.cpp") + create_single_source_cgal_program("theta_exact.cpp") + create_single_source_cgal_program("yao_exact.cpp") +else() + message("NOTICE: Some tests require the CGAL_Core library (or LEDA), and will not be compiled.") +endif() diff --git a/Convex_hull_2/include/CGAL/Convex_hull_traits_adapter_2.h b/Convex_hull_2/include/CGAL/Convex_hull_traits_adapter_2.h index f5aa3fe06d7e..eb7f87c96eaa 100644 --- a/Convex_hull_2/include/CGAL/Convex_hull_traits_adapter_2.h +++ b/Convex_hull_2/include/CGAL/Convex_hull_traits_adapter_2.h @@ -5,7 +5,7 @@ // // $URL$ // $Id$ -// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Sebastien Loriot @@ -13,6 +13,9 @@ #ifndef CGAL_CONVEX_HULL_TRAITS_ADAPTER_2_H #define CGAL_CONVEX_HULL_TRAITS_ADAPTER_2_H +#include + + #include #include diff --git a/Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h b/Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h index eab79fb69457..f6621de0063a 100644 --- a/Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h +++ b/Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h @@ -26,7 +26,7 @@ then the default traits class of `::convex_hull_3()` is `Convex_hull_traits_3 \cgalHeading{Implementation} The algorithm implemented by these functions is the quickhull algorithm of -Barnard et al. \cgalCite{bdh-qach-96}. +Barber et al. \cgalCite{bdh-qach-96}. */ diff --git a/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h b/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h index 19ee436cc524..112d91491cc7 100644 --- a/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h +++ b/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_3.h @@ -26,7 +26,9 @@ #include #include // For interior_polyhedron_3 +#ifndef CGAL_CH3_DUAL_WITHOUT_QP_SOLVER #include +#endif #include #include @@ -227,7 +229,11 @@ namespace CGAL template void halfspace_intersection_3 (PlaneIterator begin, PlaneIterator end, Polyhedron &P, - std::optional::value_type>::Kernel::Point_3> origin = std::nullopt) { + std::optional::value_type>::Kernel::Point_3> origin +#ifndef CGAL_CH3_DUAL_WITHOUT_QP_SOLVER + = std::nullopt +#endif + ) { // Checks whether the intersection is a polyhedron CGAL_assertion_msg(Convex_hull_3::internal::is_intersection_dim_3(begin, end), "halfspace_intersection_3: intersection not a polyhedron"); @@ -238,8 +244,10 @@ namespace CGAL // if a point inside is not provided find one using linear programming if (!origin) { +#ifndef CGAL_CH3_DUAL_WITHOUT_QP_SOLVER // find a point inside the intersection origin = halfspace_intersection_interior_point_3(begin, end); +#endif CGAL_assertion_msg(origin!=std::nullopt, "halfspace_intersection_3: problem when determining a point inside the intersection"); if (origin==std::nullopt) diff --git a/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h b/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h index d8946af7353c..df781ade4eeb 100644 --- a/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h +++ b/Convex_hull_3/include/CGAL/Convex_hull_3/dual/halfspace_intersection_with_constructions_3.h @@ -23,7 +23,9 @@ #include // For interior_polyhedron_3 +#ifndef CGAL_CH3_DUAL_WITHOUT_QP_SOLVER #include +#endif #include #include @@ -99,7 +101,9 @@ namespace CGAL // if a point inside is not provided find one using linear programming if (!origin) { // find a point inside the intersection +#ifndef CGAL_CH3_DUAL_WITHOUT_QP_SOLVER origin = halfspace_intersection_interior_point_3(pbegin, pend); +#endif CGAL_assertion_msg(origin!=std::nullopt, "halfspace_intersection_with_constructions_3: problem when determining a point inside the intersection"); if (origin==std::nullopt) @@ -134,7 +138,11 @@ namespace CGAL void halfspace_intersection_with_constructions_3 (PlaneIterator pbegin, PlaneIterator pend, Polyhedron &P, - std::optional::value_type>::Kernel::Point_3> const& origin = std::nullopt) { + std::optional::value_type>::Kernel::Point_3> const& origin +#ifndef CGAL_CH3_DUAL_WITHOUT_QP_SOLVER + = std::nullopt +#endif + ) { typedef typename Kernel_traits::value_type>::Kernel K; typedef typename K::Point_3 Point_3; typedef typename Convex_hull_3::internal::Default_traits_for_Chull_3::type Traits; diff --git a/Data/data/meshes/polyhedral_complex_of_spheres/Intersection12.off b/Data/data/meshes/polyhedral_complex_of_spheres/Intersection12.off new file mode 100644 index 000000000000..1bb3adb4471e --- /dev/null +++ b/Data/data/meshes/polyhedral_complex_of_spheres/Intersection12.off @@ -0,0 +1,831 @@ +OFF +336 491 0 + +0.17031256632806052 0.87149140923129198 0.45766135056488999 +0.1530482164355772 0.8581878051094145 0.48898817612201739 +0.17773204761375261 0.87689701064830428 0.44478929974988757 +0.17773204761375266 0.87689701064830428 0.44478929974988746 +0.18610643753537565 0.88125255845135109 0.43210633013751576 +0.20692923660476614 0.89148810692249181 0.40180685413975092 +0.21254447256850684 0.89390471712616404 0.39369586600014284 +0.21439421228553288 0.89457789356401529 0.39128013241131548 +0.22681489975349639 0.89805158744476077 0.37520377518580433 +0.2284369195008584 0.89844705357522048 0.37311241287933194 +0.25355721782048268 0.90387507728811034 0.34253810440658672 +0.25671454238163 0.90442701067601727 0.33903474443581866 +0.271410708194047 0.90595336478045674 0.32286639405373119 +0.2811508450273621 0.90641151615731863 0.31222404809805682 +0.30186484921791523 0.90688305806336122 0.29107512591583129 +0.30397342055421117 0.90687073458352585 0.28910030252843327 +0.33295004022963903 0.90494753379947435 0.26218372058148826 +0.33544566672286746 0.90463734990484679 0.25988381527545978 +0.35660859546245854 0.90157505838463314 0.24184951424973428 +0.35918321758479488 0.90105806124803856 0.23967742655656488 +0.38998187620182156 0.89436470058605533 0.21570896554595276 +0.39229183849441457 0.893825128737608 0.21405999957086966 +0.41582096722616779 0.88692657891222382 0.1974660445788706 +0.42721864490060912 0.88304523202927654 0.18950565604187919 +0.44486756488630003 0.87684117534766193 0.17811496227257201 +0.44878045857535931 0.87541500307784514 0.17583413883161553 +0.48126519958548886 0.86156266551879135 0.15717574894030889 +0.48342144068564125 0.86055952199012919 0.15594877494016779 +0.50017470245974227 0.85269038907862327 0.14688267020077073 +0.50275426427774228 0.85145286645038376 0.14564781357706019 +0.51101182387798261 0.84695178356442291 0.1418121948905855 +0.5423386494351099 0.82968743367193953 0.12850859076870802 +0.55521070025011254 0.82226795238624728 0.12310298935169575 +0.55521070025011254 0.82226795238624728 0.12310298935169572 +0.56789366986248413 0.81389356246462441 0.11874744154864894 +0.59819314586024919 0.79307076339523386 0.10851189307750808 +0.60630413399985716 0.78745552743149316 0.10609528287383588 +0.60871986758868468 0.78560578771446699 0.10542210643598451 +0.62479622481419628 0.77318510024650322 0.10194841255523895 +0.62688758712066828 0.77156308049914157 0.10155294642477933 +0.65746189559341328 0.74644278217951743 0.096124922711889452 +0.66096525556418162 0.74328545761836973 0.095572989323982643 +0.6771336059462687 0.72858929180595311 0.094046635219543206 +0.68777595190194307 0.71884915497263779 0.093588483842681286 +0.70892487408416871 0.69813515078208477 0.093116941936638747 +0.71089969747156689 0.69602657944578872 0.093129265416474039 +0.73781627941851213 0.66704995977036097 0.095052466200525487 +0.74011618472454033 0.66455433327713243 0.095362650095153101 +0.75815048575026589 0.64339140453754129 0.098424941615366732 +0.76032257344343512 0.64081678241520534 0.098941938751961195 +0.78429103445404746 0.6100181237981781 0.10563529941394456 +0.78594000042913037 0.60770816150558526 0.10617487126239183 +0.80253395542112949 0.58417903277383187 0.11307342108777621 +0.8104943439581207 0.5727813550993911 0.11695476797072311 +0.82188503772742805 0.55513243511369992 0.12315882465233803 +0.82416586116838464 0.5512195414246408 0.12458499692215486 +0.84282425105969128 0.51873480041451114 0.13843733448120865 +0.84405122505983243 0.51657855931435837 0.13944047800987086 +0.85311732979922938 0.49982529754025784 0.14730961092137676 +0.85435218642293986 0.49724573572225761 0.14854713354961632 +0.85818780510941439 0.48898817612201739 0.15304821643557714 +0.87149140923129176 0.45766135056489032 0.17031256632806041 +0.87689701064830428 0.44478929974988757 0.17773204761375266 +0.88125255845135109 0.43210633013751554 0.18610643753537598 +0.89148810692249181 0.40180685413975104 0.20692923660476614 +0.89390471712616404 0.39369586600014284 0.21254447256850695 +0.89457789356401518 0.39128013241131554 0.21439421228553296 +0.89805158744476088 0.37520377518580417 0.22681489975349667 +0.89844705357522048 0.37311241287933194 0.22843691950085848 +0.90387507728811034 0.34253810440658677 0.25355721782048279 +0.90442701067601738 0.33903474443581871 0.25671454238163005 +0.90595336478045685 0.32286639405373119 0.271410708194047 +0.90641151615731874 0.31222404809805687 0.28115084502736221 +0.90688305806336122 0.29107512591583123 0.30186484921791512 +0.90687073458352596 0.28910030252843322 0.30397342055421106 +0.90494753379947435 0.26218372058148803 0.33295004022963903 +0.90463734990484679 0.25988381527545973 0.33544566672286741 +0.90157505838463314 0.24184951424973419 0.35660859546245843 +0.90105806124803878 0.23967742655656488 0.35918321758479488 +0.89436470058605533 0.21570896554595267 0.38998187620182156 +0.893825128737608 0.21405999957086963 0.39229183849441451 +0.88692657891222382 0.1974660445788706 0.41582096722616779 +0.88304523202927676 0.18950565604187922 0.42721864490060907 +0.87684117534766193 0.17811496227257195 0.44486756488630008 +0.87541500307784514 0.17583413883161553 0.44878045857535925 +0.86156266551879135 0.15717574894030889 0.48126519958548886 +0.86055952199012919 0.15594877494016762 0.48342144068564141 +0.85269038907862327 0.14688267020077067 0.50017470245974227 +0.85145286645038376 0.14564781357706019 0.50275426427774228 +0.84695178356442291 0.1418121948905855 0.51101182387798261 +0.82968743367193953 0.12850859076870802 0.5423386494351099 +0.82226795238624728 0.12310298935169575 0.55521070025011254 +0.82226795238624728 0.12310298935169572 0.55521070025011254 +0.81389356246462441 0.11874744154864894 0.56789366986248413 +0.79307076339523386 0.10851189307750797 0.59819314586024919 +0.78745552743149327 0.10609528287383579 0.60630413399985716 +0.78560578771446699 0.10542210643598442 0.60871986758868479 +0.77318510024650355 0.10194841255523886 0.62479622481419606 +0.77156308049914157 0.10155294642477924 0.62688758712066828 +0.74644278217951743 0.096124922711889466 0.65746189559341328 +0.74328545761836984 0.095572989323982616 0.66096525556418162 +0.72858929180595311 0.094046635219543179 0.67713360594626881 +0.71884915497263779 0.093588483842681203 0.68777595190194329 +0.69813515078208477 0.093116941936638692 0.70892487408416871 +0.69602657944578872 0.09312926541647408 0.71089969747156689 +0.66704995977036097 0.095052466200525487 0.73781627941851213 +0.66455433327713243 0.095362650095153129 0.74011618472454044 +0.64339140453754151 0.098424941615366676 0.75815048575026589 +0.64081678241520534 0.098941938751961223 0.76032257344343512 +0.61001812379817832 0.1056352994139447 0.78429103445404746 +0.60770816150558549 0.10617487126239183 0.78594000042913037 +0.58417903277383187 0.11307342108777625 0.80253395542112949 +0.57278135509939099 0.11695476797072324 0.8104943439581207 +0.55513243511370003 0.123158824652338 0.82188503772742816 +0.5512195414246408 0.12458499692215487 0.82416586116838453 +0.51873480041451092 0.13843733448120876 0.84282425105969128 +0.51657855931435848 0.13944047800987086 0.84405122505983243 +0.49982529754025784 0.14730961092137676 0.85311732979922927 +0.49724573572225761 0.14854713354961635 0.85435218642293975 +0.4889881761220175 0.15304821643557709 0.85818780510941428 +0.4576613505648901 0.17031256632806047 0.87149140923129198 +0.44478929974988757 0.17773204761375261 0.87689701064830428 +0.44478929974988746 0.17773204761375266 0.87689701064830428 +0.43210633013751587 0.18610643753537565 0.88125255845135109 +0.40180685413975104 0.20692923660476614 0.89148810692249203 +0.39369586600014295 0.21254447256850689 0.89390471712616426 +0.39128013241131554 0.21439421228553296 0.89457789356401551 +0.37520377518580433 0.22681489975349645 0.89805158744476099 +0.37311241287933189 0.22843691950085854 0.8984470535752207 +0.34253810440658672 0.25355721782048268 0.90387507728811034 +0.3390347444358186 0.25671454238163 0.90442701067601727 +0.32286639405373108 0.271410708194047 0.90595336478045685 +0.31222404809805682 0.2811508450273621 0.90641151615731874 +0.29107512591583118 0.30186484921791523 0.90688305806336111 +0.28910030252843322 0.30397342055421106 0.90687073458352596 +0.26218372058148809 0.33295004022963903 0.90494753379947435 +0.25988381527545967 0.33544566672286746 0.9046373499048469 +0.24184951424973422 0.35660859546245849 0.90157505838463314 +0.23967742655656482 0.35918321758479488 0.90105806124803833 +0.21570896554595276 0.38998187620182151 0.89436470058605511 +0.21405999957086966 0.39229183849441451 0.893825128737608 +0.1974660445788706 0.41582096722616779 0.88692657891222382 +0.18950565604187924 0.42721864490060907 0.88304523202927665 +0.17811496227257201 0.44486756488630003 0.87684117534766193 +0.17583413883161547 0.44878045857535925 0.87541500307784514 +0.15717574894030886 0.48126519958548875 0.86156266551879135 +0.15594877494016779 0.48342144068564119 0.86055952199012919 +0.14688267020077073 0.50017470245974227 0.85269038907862316 +0.14564781357706014 0.50275426427774228 0.85145286645038376 +0.1418121948905855 0.51101182387798283 0.84695178356442269 +0.12850859076870802 0.5423386494351099 0.82968743367193953 +0.12310298935169575 0.55521070025011254 0.82226795238624728 +0.12310298935169572 0.55521070025011254 0.82226795238624728 +0.11874744154864894 0.56789366986248413 0.81389356246462441 +0.10851189307750805 0.59819314586024896 0.79307076339523386 +0.10609528287383586 0.60630413399985694 0.78745552743149316 +0.10542210643598447 0.60871986758868468 0.78560578771446687 +0.10194841255523887 0.62479622481419628 0.77318510024650311 +0.10155294642477927 0.62688758712066828 0.77156308049914146 +0.096124922711889493 0.65746189559341328 0.74644278217951743 +0.095572989323982643 0.66096525556418151 0.74328545761836984 +0.09404663521954322 0.6771336059462687 0.72858929180595311 +0.093588483842681203 0.68777595190194329 0.71884915497263779 +0.093116941936638636 0.70892487408416871 0.69813515078208488 +0.093129265416474122 0.71089969747156689 0.69602657944578861 +0.095052466200525557 0.7378162794185118 0.66704995977036108 +0.095362650095153129 0.74011618472454033 0.66455433327713254 +0.098424941615366676 0.758150485750266 0.64339140453754151 +0.098941938751961223 0.76032257344343512 0.64081678241520534 +0.10563529941394462 0.78429103445404746 0.61001812379817821 +0.10617487126239186 0.78594000042913037 0.60770816150558549 +0.11307342108777627 0.80253395542112949 0.58417903277383187 +0.11695476797072325 0.81049434395812059 0.57278135509939099 +0.12315882465233809 0.82188503772742794 0.55513243511370003 +0.12458499692215494 0.8241658611683842 0.55121954142464069 +0.13843733448120885 0.84282425105969117 0.5187348004145107 +0.13944047800987086 0.84405122505983243 0.51657855931435837 +0.1473096109213767 0.85311732979922927 0.49982529754025778 +0.14854713354961635 0.85435218642293975 0.49724573572225772 +0.44564650023159863 0.34126814896874336 0.82760814841975505 +0.27542468411056592 0.78691464920034204 0.55218346430918919 +0.82760814841975505 0.44564650023159863 0.34126814896874336 +0.55218346430918919 0.27542468411056592 0.78691464920034204 +0.78691464920034204 0.55218346430918919 0.27542468411056592 +0.34126814896874336 0.82760814841975505 0.44564650023159863 +0.30369631682393589 0.52293928186267558 0.79643145005237248 +0.26105426945011484 0.63457761123722189 0.7274351680516471 +0.79643145005237248 0.30369631682393589 0.52293928186267558 +0.7274351680516471 0.26105426945011484 0.63457761123722201 +0.63457761123722201 0.7274351680516471 0.26105426945011484 +0.52293928186267558 0.79643145005237248 0.30369631682393589 +0.63704738383668802 0.33543172738922172 0.69401454380114713 +0.50369111272938427 0.52836121174546036 0.68346886752821701 +0.69401454380114724 0.63704738383668813 0.33543172738922178 +0.68346886752821701 0.50369111272938438 0.52836121174546036 +0.33543172738922172 0.69401454380114713 0.63704738383668802 +0.52836121174546025 0.68346886752821701 0.50369111272938438 +0.42151877198336163 0.46863573506266104 0.77633914798103421 +0.46047178079401074 0.64151089172333209 0.61353851948571891 +0.77633914798103421 0.42151877198336163 0.46863573506266104 +0.61353851948571891 0.4604717807940108 0.64151089172333209 +0.46863573506266104 0.77633914798103421 0.42151877198336163 +0.64151089172333209 0.61353851948571891 0.4604717807940108 +0.61446983418191203 0.27287882084494514 0.74024588618561449 +0.40632940254264294 0.78437123837371081 0.46867704983435055 +0.33924096091721673 0.86230450765389344 0.37596077789543381 +0.74024588618561449 0.61446983418191203 0.27287882084494514 +0.46867704983435055 0.40632940254264294 0.78437123837371081 +0.37596077789543381 0.33924096091721673 0.86230450765389344 +0.78437123837371081 0.46867704983435055 0.40632940254264294 +0.86230450765389344 0.37596077789543381 0.33924096091721673 +0.27287882084494514 0.74024588618561449 0.61446983418191203 +0.32839555720531111 0.64061453708709604 0.69409608332024086 +0.20012814034344362 0.68018071850695239 0.70519707714513458 +0.23458495860622128 0.51571602924327076 0.82401873423925942 +0.35362935294171677 0.46556504362316592 0.81129246939324073 +0.69409608332024086 0.32839555720531111 0.64061453708709615 +0.70519707714513458 0.20012814034344362 0.6801807185069525 +0.82401873423925942 0.23458495860622128 0.51571602924327076 +0.81129246939324073 0.35362935294171677 0.46556504362316592 +0.51571602924327076 0.82401873423925942 0.23458495860622128 +0.46556504362316592 0.81129246939324073 0.35362935294171677 +0.64061453708709615 0.69409608332024086 0.32839555720531111 +0.68018071850695239 0.70519707714513447 0.20012814034344359 +0.67170915887432037 0.4512666656072587 0.58750761901107273 +0.56664784959934422 0.52372394783737519 0.63610018157997195 +0.37149736972483099 0.52777252693426735 0.76383628095354983 +0.58750761901107262 0.67170915887432026 0.45126666560725864 +0.63610018157997184 0.56664784959934422 0.52372394783737519 +0.76383628095354983 0.37149736972483099 0.52777252693426735 +0.45126666560725853 0.58750761901107273 0.67170915887432037 +0.52372394783737508 0.63610018157997195 0.56664784959934422 +0.52777252693426735 0.76383628095354983 0.37149736972483099 +0.19300544019554741 0.62457262167826677 0.75674166021493716 +0.55216883979414833 0.46626606661797837 0.69116244652106429 +0.33994835690442565 0.74334549596053456 0.57608383788574391 +0.75674166021493716 0.19300544019554741 0.62457262167826677 +0.69116244652106429 0.55216883979414833 0.46626606661797837 +0.57608383788574391 0.33994835690442565 0.74334549596053456 +0.62457262167826677 0.75674166021493716 0.19300544019554741 +0.46626606661797826 0.6911624465210644 0.55216883979414844 +0.74334549596053456 0.57608383788574391 0.33994835690442565 +0.48696645046278469 0.27572854131968005 0.82875656716879031 +0.40547414873191512 0.74192286377215233 0.53398612240605781 +0.34179011670600551 0.78792826822967776 0.5121997269099976 +0.82875656716879031 0.48696645046278469 0.27572854131968005 +0.53398612240605769 0.40547414873191501 0.74192286377215222 +0.5121997269099976 0.34179011670600551 0.78792826822967776 +0.74192286377215222 0.53398612240605769 0.40547414873191501 +0.78792826822967776 0.5121997269099976 0.34179011670600551 +0.27572854131968005 0.82875656716879031 0.48696645046278469 +0.38505005624480643 0.58714124035889637 0.71204046096811668 +0.31802330015895514 0.58336686281126149 0.74735820322637392 +0.25063608611031912 0.57642063043274483 0.7777665518334006 +0.71204046096811668 0.38505005624480643 0.58714124035889637 +0.74735820322637392 0.31802330015895514 0.58336686281126149 +0.77776655183340049 0.25063608611031907 0.57642063043274483 +0.57642063043274483 0.77776655183340049 0.25063608611031907 +0.58714124035889637 0.71204046096811668 0.38505005624480643 +0.58336686281126149 0.74735820322637392 0.31802330015895514 +0.65621226556123025 0.39498488175763669 0.64294043714010041 +0.43823895845745109 0.52969979418799096 0.72619883181352507 +0.64294043714010041 0.65621226556123025 0.39498488175763669 +0.72619883181352507 0.43823895845745109 0.52969979418799096 +0.39498488175763669 0.64294043714010041 0.65621226556123025 +0.52969979418799096 0.72619883181352507 0.43823895845745109 +0.48798559166164257 0.46894076499437626 0.73618246464930537 +0.40176612662410133 0.69466625495449263 0.59667643972673012 +0.73618246464930537 0.48798559166164257 0.46894076499437626 +0.59667643972673012 0.40176612662410133 0.69466625495449263 +0.46894076499437626 0.73618246464930537 0.48798559166164257 +0.69466625495449263 0.59667643972673012 0.40176612662410133 +0.64927986178574382 0.20469785983476813 0.7324851174314404 +0.58942568680894825 0.20731239180326447 0.78076816785433134 +0.40127702279442362 0.85397772162051189 0.33120809463701678 +0.40480738995889742 0.82178222598517658 0.40100492526839771 +0.73248511743144051 0.64927986178574382 0.20469785983476813 +0.78076816785433134 0.58942568680894825 0.20731239180326447 +0.33120809463701678 0.40127702279442362 0.85397772162051189 +0.40100492526839771 0.40480738995889742 0.82178222598517658 +0.85397772162051189 0.33120809463701678 0.40127702279442362 +0.82178222598517658 0.40100492526839771 0.40480738995889742 +0.20469785983476813 0.7324851174314404 0.64927986178574382 +0.20731239180326447 0.78076816785433134 0.58942568680894825 +0.26817151760031976 0.68929656115193516 0.6730187872058685 +0.28407954462258928 0.46039308870086582 0.84103330267207554 +0.67301878720586839 0.26817151760031971 0.68929656115193505 +0.84103330267207554 0.28407954462258928 0.46039308870086582 +0.46039308870086582 0.84103330267207554 0.28407954462258928 +0.68929656115193505 0.67301878720586839 0.26817151760031971 +0.62674761880757135 0.51556327979539029 0.58427898032160919 +0.58427898032160919 0.62674761880757146 0.51556327979539029 +0.57735026918962573 0.57735026918962573 0.57735026918962584 +0.51556327979539029 0.58427898032160919 0.62674761880757146 +0.52579382752597525 0.20828740048796671 0.8247164420172246 +0.20793674136609455 0.86400769557376311 0.45853354684184816 +0.1264800315542341 0.61148180127020313 0.78108437977813105 +0.891573746743482 0.30401279487901051 0.33566720821021828 +0.78108437977813128 0.1264800315542341 0.61148180127020324 +0.61148180127020324 0.78108437977813128 0.1264800315542341 +0.50619228471494349 0.84615687966832631 0.16669704821929851 +0.62340222914316235 0.13827368218737227 0.76957783850217643 +0.84615687966832631 0.16669704821929851 0.50619228471494349 +0.13929176414434621 0.81523570763863507 0.5621285844293008 +0.45853354684184816 0.20793674136609455 0.86400769557376311 +0.81523570763863529 0.5621285844293008 0.13929176414434621 +0.27249577181778528 0.89756031181852247 0.34659997257597425 +0.33566720821021828 0.891573746743482 0.30401279487901051 +0.68063975088704343 0.13583622552694097 0.71991530706536411 +0.13827368218737227 0.76957783850217643 0.62340222914316235 +0.16669704821929851 0.50619228471494349 0.84615687966832631 +0.5621285844293008 0.13929176414434621 0.81523570763863529 +0.25952221836449818 0.39610117388436322 0.88076789123048704 +0.30401279487901051 0.33566720821021828 0.891573746743482 +0.34659997257597425 0.27249577181778528 0.89756031181852247 +0.41838703947458172 0.27466844612618396 0.86574218443040096 +0.88076789123048704 0.25952221836449818 0.39610117388436322 +0.76957783850217643 0.62340222914316235 0.13827368218737227 +0.86400769557376311 0.45853354684184816 0.20793674136609455 +0.71991530706536411 0.68063975088704343 0.13583622552694097 +0.89756031181852258 0.3465999725759743 0.27249577181778534 +0.66669512270283426 0.73357768674250456 0.13183850301701969 +0.8247164420172246 0.52579382752597525 0.20828740048796671 +0.45337594379539092 0.86541618975952417 0.21331917890744351 +0.56644608341520641 0.80357852474018532 0.18275773351615091 +0.80357852474018532 0.18275773351615091 0.56644608341520641 +0.39610117388436322 0.88076789123048704 0.25952221836449818 +0.21331917890744351 0.45337594379539092 0.86541618975952417 +0.86574218443040096 0.41838703947458172 0.27466844612618396 +0.135836225526941 0.719915307065364 0.68063975088704354 +0.27466844612618396 0.86574218443040096 0.41838703947458172 +0.86541618975952417 0.21331917890744351 0.45337594379539092 +0.73357768674250456 0.13183850301701969 0.66669512270283426 +0.20828740048796671 0.8247164420172246 0.52579382752597525 +0.13183850301701969 0.66669512270283426 0.73357768674250456 +0.18275773351615091 0.56644608341520641 0.80357852474018532 +3 242 247 179 +3 244 250 180 +3 245 249 181 +3 247 242 182 +3 249 245 183 +3 250 244 184 +3 252 253 185 +3 253 252 186 +3 255 256 187 +3 256 255 188 +3 257 259 189 +3 259 257 190 +3 260 269 191 +3 261 266 192 +3 262 271 193 +3 263 268 194 +3 264 267 195 +3 265 270 196 +3 334 159 158 +3 157 156 296 +3 266 261 197 +3 267 264 198 +3 175 174 303 +3 310 145 327 +3 99 98 332 +3 268 263 199 +3 269 260 200 +3 37 36 299 +3 270 265 201 +3 271 262 202 +3 40 39 321 +3 26 25 323 +3 302 85 331 +3 56 55 305 +3 273 294 311 +3 238 203 191 +3 275 204 201 +3 330 205 306 +3 277 322 305 +3 241 206 193 +3 279 207 197 +3 315 208 314 +3 281 209 199 +3 328 210 320 +3 283 333 303 +3 235 211 195 +3 284 212 195 +3 233 213 334 +3 285 214 327 +3 226 215 197 +3 163 162 329 +3 303 171 309 +3 313 134 133 +3 327 141 312 +3 286 216 191 +3 236 217 332 +3 308 103 102 +3 311 112 111 +3 287 218 331 +3 229 219 199 +3 288 220 323 +3 232 221 201 +3 289 222 193 +3 239 223 321 +3 15 14 307 +3 323 22 326 +3 297 74 73 +3 81 80 316 +3 319 44 43 +3 305 52 317 +3 290 224 194 +3 234 225 192 +3 215 226 185 +3 207 279 179 +3 333 283 180 +3 291 227 196 +3 237 228 194 +3 219 229 187 +3 209 281 181 +3 294 273 182 +3 322 277 183 +3 293 230 192 +3 240 231 196 +3 221 232 190 +3 204 275 184 +3 214 285 185 +3 208 315 179 +3 213 233 186 +3 225 234 200 +3 230 293 198 +3 211 235 180 +3 212 284 186 +3 78 77 316 +3 218 287 187 +3 210 328 181 +3 217 236 188 +3 104 103 308 +3 228 237 202 +3 224 290 200 +3 203 238 182 +3 216 286 188 +3 223 239 189 +3 231 240 198 +3 227 291 202 +3 206 241 183 +3 222 289 189 +3 19 18 326 +3 220 288 190 +3 205 330 184 +3 242 315 304 +3 242 294 182 +3 244 235 243 +3 244 204 184 +3 245 328 318 +3 245 322 183 +3 247 238 246 +3 247 207 179 +3 249 241 248 +3 249 209 181 +3 250 330 295 +3 250 333 180 +3 252 226 251 +3 252 212 186 +3 253 233 335 +3 253 214 185 +3 255 229 254 +3 255 216 188 +3 256 236 325 +3 256 218 187 +3 257 239 324 +3 257 220 190 +3 259 232 258 +3 259 222 189 +3 260 216 254 +3 260 224 200 +3 261 230 251 +3 261 226 197 +3 262 222 258 +3 262 227 202 +3 263 224 254 +3 263 229 199 +3 264 212 251 +3 264 230 198 +3 265 227 258 +3 265 232 201 +3 127 126 315 +3 296 153 335 +3 296 233 334 +3 266 207 246 +3 266 234 192 +3 267 240 243 +3 267 235 195 +3 295 1 333 +3 310 214 335 +3 149 148 310 +3 67 66 328 +3 119 118 294 +3 298 93 325 +3 298 236 332 +3 268 209 248 +3 268 237 194 +3 269 234 246 +3 269 238 191 +3 34 33 324 +3 299 239 321 +3 270 204 243 +3 270 240 196 +3 271 237 248 +3 271 241 193 +3 8 7 330 +3 300 220 324 +3 30 29 300 +3 302 218 325 +3 318 60 322 +3 273 301 272 +3 273 203 182 +3 238 269 246 +3 238 247 182 +3 275 221 274 +3 275 205 184 +3 7 6 330 +3 330 250 184 +3 277 317 276 +3 277 206 183 +3 241 271 248 +3 241 249 183 +3 279 215 278 +3 279 208 179 +3 126 125 315 +3 315 242 179 +3 281 219 280 +3 281 210 181 +3 66 65 328 +3 328 245 181 +3 283 309 282 +3 283 211 180 +3 235 267 243 +3 235 244 180 +3 284 211 282 +3 284 213 186 +3 233 296 335 +3 233 253 186 +3 285 312 278 +3 285 215 185 +3 226 261 251 +3 226 252 185 +3 329 213 282 +3 309 167 329 +3 313 208 278 +3 137 136 312 +3 286 203 272 +3 286 217 188 +3 236 298 325 +3 236 256 188 +3 308 217 272 +3 301 107 308 +3 287 316 280 +3 287 219 187 +3 229 263 254 +3 229 255 187 +3 288 326 274 +3 288 221 190 +3 232 265 258 +3 232 259 190 +3 289 206 276 +3 289 223 189 +3 239 299 324 +3 239 257 189 +3 307 205 274 +3 18 17 326 +3 297 210 280 +3 316 77 76 +3 319 223 276 +3 317 48 319 +3 290 228 292 +3 290 225 200 +3 234 266 246 +3 234 269 200 +3 215 285 278 +3 215 279 197 +3 207 247 246 +3 207 266 197 +3 309 329 282 +3 309 283 303 +3 333 250 295 +3 177 176 333 +3 291 231 292 +3 291 228 202 +3 237 268 248 +3 237 271 202 +3 219 287 280 +3 219 281 199 +3 209 249 248 +3 209 268 199 +3 301 308 272 +3 301 273 311 +3 294 242 304 +3 294 117 116 +3 317 319 276 +3 317 277 305 +3 322 245 318 +3 322 58 57 +3 293 225 292 +3 293 231 198 +3 240 270 243 +3 240 267 198 +3 221 288 274 +3 221 275 201 +3 204 244 243 +3 204 270 201 +3 335 151 150 +3 312 313 278 +3 312 285 327 +3 214 253 335 +3 214 310 327 +3 208 279 278 +3 208 313 314 +3 213 284 282 +3 213 329 334 +3 225 290 292 +3 225 293 192 +3 230 264 251 +3 230 261 192 +3 211 283 282 +3 211 284 195 +3 212 252 251 +3 212 264 195 +3 91 90 325 +3 316 297 280 +3 316 287 331 +3 218 256 325 +3 218 302 331 +3 210 281 280 +3 210 297 320 +3 217 286 272 +3 217 308 332 +3 101 100 332 +3 228 291 292 +3 228 290 194 +3 224 260 254 +3 224 263 194 +3 203 273 272 +3 203 286 191 +3 216 255 254 +3 216 260 191 +3 223 289 276 +3 223 319 321 +3 41 40 321 +3 231 293 292 +3 231 291 196 +3 227 262 258 +3 227 265 196 +3 206 277 276 +3 206 289 193 +3 222 259 258 +3 222 262 193 +3 32 31 324 +3 326 307 274 +3 326 288 323 +3 220 257 324 +3 220 300 323 +3 205 275 274 +3 205 307 306 +3 294 304 119 +3 294 118 117 +3 72 71 320 +3 297 72 320 +3 73 72 297 +3 4 295 5 +3 3 295 4 +3 2 295 3 +3 123 304 124 +3 121 304 122 +3 122 304 123 +3 294 116 311 +3 161 334 162 +3 159 334 160 +3 160 334 161 +3 110 109 301 +3 311 111 301 +3 111 110 301 +3 46 319 47 +3 44 319 45 +3 45 319 46 +3 143 327 144 +3 142 327 143 +3 141 327 142 +3 24 323 25 +3 22 323 23 +3 23 323 24 +3 298 95 94 +3 93 298 94 +3 324 299 34 +3 324 33 32 +3 295 2 0 +3 1 295 0 +3 304 315 124 +3 315 125 124 +3 92 91 325 +3 93 92 325 +3 296 155 154 +3 153 296 154 +3 165 329 166 +3 163 329 164 +3 164 329 165 +3 35 299 36 +3 34 299 35 +3 296 158 157 +3 156 155 296 +3 76 75 297 +3 316 76 297 +3 97 298 98 +3 95 298 96 +3 96 298 97 +3 299 39 38 +3 38 37 299 +3 310 150 149 +3 300 29 28 +3 26 300 27 +3 27 300 28 +3 89 302 90 +3 88 302 89 +3 300 31 30 +3 107 301 108 +3 308 107 106 +3 302 88 87 +3 86 302 87 +3 85 302 86 +3 10 306 11 +3 9 306 10 +3 8 306 9 +3 152 151 335 +3 153 152 335 +3 326 21 20 +3 19 326 20 +3 303 176 175 +3 174 173 303 +3 139 312 140 +3 137 312 138 +3 138 312 139 +3 59 58 322 +3 60 59 322 +3 171 303 172 +3 309 171 170 +3 309 170 169 +3 305 57 56 +3 55 54 305 +3 141 140 312 +3 307 326 17 +3 307 17 16 +3 120 304 121 +3 119 304 120 +3 52 305 53 +3 317 51 50 +3 317 52 51 +3 332 102 101 +3 100 99 332 +3 306 307 13 +3 306 13 12 +3 307 14 13 +3 63 318 64 +3 62 318 63 +3 308 102 332 +3 318 328 64 +3 328 65 64 +3 129 314 130 +3 127 314 128 +3 128 314 129 +3 316 80 79 +3 78 316 79 +3 331 84 83 +3 82 331 83 +3 81 331 82 +3 308 106 105 +3 105 104 308 +3 178 177 333 +3 1 178 333 +3 167 309 168 +3 329 167 166 +3 310 148 147 +3 146 310 147 +3 145 310 146 +3 115 311 116 +3 113 311 114 +3 114 311 115 +3 313 312 136 +3 313 136 135 +3 133 132 313 +3 313 132 314 +3 132 131 314 +3 315 314 127 +3 321 43 42 +3 42 41 321 +3 316 331 81 +3 48 317 49 +3 319 48 47 +3 318 62 61 +3 60 318 61 +3 319 43 321 +3 317 50 49 +3 69 320 70 +3 67 320 68 +3 68 320 69 +3 295 330 5 +3 330 6 5 +3 15 307 16 +3 299 321 39 +3 322 57 305 +3 305 54 53 +3 323 300 26 +3 320 71 70 +3 300 324 31 +3 302 325 90 +3 22 21 326 +3 145 144 327 +3 328 320 67 +3 334 329 162 +3 306 12 11 +3 297 75 74 +3 330 306 8 +3 168 309 169 +3 85 84 331 +3 311 113 112 +3 172 303 173 +3 298 332 98 +3 108 301 109 +3 303 333 176 +3 134 313 135 +3 334 158 296 +3 335 150 310 +3 130 314 131 + diff --git a/Data/data/meshes/polyhedral_complex_of_spheres/Intersection13.off b/Data/data/meshes/polyhedral_complex_of_spheres/Intersection13.off new file mode 100644 index 000000000000..b64038540fe4 --- /dev/null +++ b/Data/data/meshes/polyhedral_complex_of_spheres/Intersection13.off @@ -0,0 +1,1601 @@ +OFF +619 978 0 + +0.27219661039719134 -0.89987434907152952 0.34005641981910195 +0.27399725512977036 -0.89741802080743249 0.34558774394436154 +0.2679128793459149 -0.90549608434201145 0.32699007860623508 +0.26758089404998364 -0.90597288936521869 0.32585692434233743 +0.26660413751883816 -0.90759811547986069 0.32187126056253501 +0.25697201819559901 -0.92432848622760766 0.28050566540029309 +0.25313054028719528 -0.92991689161909552 0.26460466631117985 +0.25308933658097965 -0.92998804508785282 0.26439588316448515 +0.24930895838975131 -0.93567470552212895 0.24579255546759948 +0.24336599009814622 -0.94602936533555493 0.21094260961626568 +0.24152064540259124 -0.9485706826100101 0.20072208160320942 +0.2389405724498605 -0.95306848001363997 0.18186355091081885 +0.23440017510432309 -0.9594775020158709 0.15035899655759535 +0.23294949527472616 -0.96194916611186088 0.13775142693846476 +0.23259475183323847 -0.96237493457550005 0.13494008765512316 +0.23052646968895496 -0.96592607882051262 0.10986054425367281 +0.22988186145330614 -0.96732927410114633 0.099634331047451258 +0.22762677949308696 -0.97053761901938218 0.067701629511043929 +0.22743420727478347 -0.97114863140943242 0.060907607905721757 +0.22648000271342916 -0.97241808576487498 0.034988854233130681 +0.22628605152906522 -0.97313250261608553 0.01853460685588823 +0.22589145876869662 -0.97323020415808847 -0 +0.22628605152906522 -0.97313250261608553 -0.01853460685588823 +0.22648000271342922 -0.97241808576487498 -0.034988854233130834 +0.2274342072747835 -0.97114863140943242 -0.060907607905721785 +0.22762677949308691 -0.97053761901938207 -0.067701629511043929 +0.22988186145330608 -0.96732927410114655 -0.09963433104745123 +0.23052646968895496 -0.96592607882051251 -0.10986054425367295 +0.23259475183323847 -0.96237493457549972 -0.13494008765512314 +0.23294949527472619 -0.96194916611186088 -0.13775142693846473 +0.23440017510432298 -0.95947750201587068 -0.15035899655759499 +0.23894057244986044 -0.95306848001363997 -0.18186355091081888 +0.24152064540259116 -0.94857068261000999 -0.2007220816032094 +0.24336599009814619 -0.94602936533555493 -0.21094260961626565 +0.24930895838975131 -0.93567470552212884 -0.24579255546759954 +0.2530893365809796 -0.92998804508785282 -0.26439588316448515 +0.25313054028719528 -0.92991689161909541 -0.26460466631117996 +0.25697201819559901 -0.92432848622760766 -0.28050566540029298 +0.26660413751883794 -0.90759811547986147 -0.32187126056253368 +0.26758089404998375 -0.9059728893652188 -0.32585692434233748 +0.26791287934591512 -0.90549608434201145 -0.32699007860623563 +0.27219661039719123 -0.89987434907152986 -0.34005641981910134 +0.27399725512977041 -0.89741802080743249 -0.34558774394436126 +0.27461092234606044 -0.89644305776905853 -0.34753041451074085 +0.28617291708332143 -0.87638371280443894 -0.38483791504434917 +0.29057971437418995 -0.8695923485436825 -0.39708487175152696 +0.29401138453262826 -0.86471241548978539 -0.40567809407889899 +0.30362145533065937 -0.84916410602320314 -0.43023759412454321 +0.30729748704039861 -0.84278707285381271 -0.43974499787970978 +0.31474205002823552 -0.83109069623026088 -0.45671715648324696 +0.31682936237190801 -0.8280363774210906 -0.46105412139556579 +0.32993533901945349 -0.80654749644509327 -0.4886330537542477 +0.3395133710973568 -0.79211156275892003 -0.50664961250726259 +0.34177771381313393 -0.78887113359859207 -0.51061830246204121 +0.34243159318633287 -0.78789291377908466 -0.51176714118576783 +0.34288899659372696 -0.78713443636827329 -0.51257565524045923 +0.35314170479917451 -0.76928684914828649 -0.53075413092765567 +0.36517401588679066 -0.75 -0.5497573450331017 +0.36998650939197825 -0.74269333684247574 -0.5567855194421365 +0.37506412073313466 -0.73422479552976916 -0.56417193374348928 +0.39411849558532475 -0.7042679462719752 -0.58956860097969033 +0.39895802436542988 -0.69687753315555612 -0.5957410107715313 +0.40036321981550371 -0.69465247190942381 -0.5975302451883705 +0.40065939257699101 -0.69413734830776352 -0.5979056290568221 +0.40151480227572495 -0.69274920908571347 -0.59888293763788791 +0.40435813432554835 -0.6879005781223142 -0.60211592452938867 +0.42861413394522363 -0.64891100701386617 -0.62717432611494861 +0.4331208322019765 -0.64210794890239153 -0.63136143448574877 +0.44633019100468196 -0.62042776846682712 -0.64334361719230815 +0.4546732585899762 -0.60749293870920396 -0.65018159643527595 +0.45944041532897179 -0.59972505245462004 -0.65399889841309111 +0.46796403496887884 -0.58666916470964625 -0.66003296952840651 +0.4897853260968788 -0.55056521742650477 -0.67476755984413883 +0.49314081475211935 -0.54531814984023852 -0.67677227421098896 +0.5039242293873103 -0.52945918848859996 -0.68235511400187066 +0.50468001700647158 -0.52828837108788052 -0.68272481536695295 +0.50622685812276502 -0.52571510245600428 -0.68341702461536269 +0.50787822903713031 -0.52299793234814496 -0.68413337702600852 +0.52912853141459681 -0.48757002987147358 -0.69320320770179844 +0.53310523682898858 -0.48133611427487955 -0.69462568959831961 +0.54306000239317154 -0.46664565776233691 -0.69755165300174249 +0.5493198212532957 -0.45674068614295493 -0.69911600851089584 +0.56731181848165257 -0.42664579118104862 -0.70294074606773127 +0.57556494808430081 -0.41363385795819674 -0.70422028778974766 +0.58303192413334481 -0.40257317574481138 -0.70495163176324016 +0.59214384399202524 -0.38815954298187871 -0.70538094374692584 +0.6078561560079746 -0.36184045701812118 -0.70538094374692584 +0.61696807586665503 -0.34742682425518878 -0.70495163176324016 +0.62443505191569915 -0.33636614204180315 -0.70422028778974766 +0.63268818151834738 -0.32335420881895127 -0.70294074606773105 +0.65068017874670414 -0.29325931385704507 -0.69911600851089584 +0.6569399976068282 -0.28335434223766326 -0.69755165300174249 +0.66689476317101137 -0.26866388572512034 -0.69462568959831961 +0.67087146858540314 -0.2624299701285262 -0.69320320770179855 +0.69212177096286942 -0.22700206765185557 -0.68413337702600874 +0.69377314187723493 -0.22428489754399594 -0.68341702461536258 +0.69531998299352837 -0.2217116289121196 -0.68272481536695306 +0.69607577061268988 -0.22054081151140006 -0.68235511400187066 +0.70685918524788072 -0.20468185015976154 -0.67677227421098896 +0.71021467390312099 -0.19943478257349526 -0.67476755984413894 +0.73203596503112101 -0.16333083529035375 -0.66003296952840662 +0.74055958467102845 -0.15027494754537968 -0.65399889841309089 +0.74532674141002375 -0.14250706129079624 -0.65018159643527618 +0.75366980899531777 -0.12957223153317302 -0.64334361719230837 +0.76687916779802356 -0.10789205109760858 -0.63136143448574888 +0.77138586605477633 -0.1010889929861338 -0.62717432611494872 +0.79564186567445128 -0.06209942187768587 -0.60211592452938889 +0.79848519772427506 -0.057250790914286004 -0.59888293763788769 +0.79934060742300872 -0.055862651692236032 -0.59790562905682221 +0.79963678018449613 -0.055347528090576067 -0.59753024518837083 +0.80104197563456991 -0.053122466844444029 -0.59574101077153174 +0.80588150441467521 -0.045732053728024212 -0.58956860097968999 +0.82493587926686529 -0.015775204470230772 -0.56417193374348928 +0.83001349060802165 -0.0073066631575244411 -0.55678551944213672 +0.8348259841132093 -6.1457978060811826e-19 -0.5497573450331017 +0.84685829520082545 0.019286849148286479 -0.53075413092765555 +0.85711100340627278 0.037134436368273155 -0.51257565524045934 +0.85756840681366708 0.037892913779084561 -0.51176714118576794 +0.85822228618686602 0.038871133598591998 -0.51061830246204143 +0.86048662890264316 0.042111562758920099 -0.50664961250726259 +0.87006466098054647 0.056547496445093395 -0.48863305375424759 +0.88317063762809189 0.078036377421090597 -0.46105412139556579 +0.88525794997176432 0.081090696230260814 -0.45671715648324701 +0.89270251295960135 0.092787072853812741 -0.43974499787970978 +0.89637854466934042 0.099164106023202886 -0.43023759412454343 +0.90598861546737153 0.11471241548978532 -0.40567809407889888 +0.9094202856258099 0.11959234854368263 -0.39708487175152668 +0.91382708291667858 0.12638371280443889 -0.38483791504434905 +0.9253890776539393 0.14644305776905842 -0.34753041451074107 +0.92600274487022949 0.14741802080743258 -0.34558774394436131 +0.92780338960280884 0.14987434907153013 -0.34005641981910084 +0.93208712065408494 0.15549608434201162 -0.32699007860623541 +0.9324191059500162 0.15597288936521903 -0.32585692434233743 +0.93339586248116191 0.15759811547986141 -0.32187126056253423 +0.94302798180440084 0.17432848622760777 -0.2805056654002932 +0.94686945971280467 0.17991689161909563 -0.26460466631117985 +0.94691066341902053 0.17998804508785299 -0.26439588316448503 +0.95069104161024875 0.18567470552212903 -0.24579255546759926 +0.95663400990185365 0.19602936533555493 -0.21094260961626565 +0.95847935459740874 0.19857068261001024 -0.20072208160320937 +0.9610594275501394 0.20306848001363986 -0.18186355091081907 +0.96559982489567697 0.20947750201587081 -0.15035899655759494 +0.96705050472527398 0.21194916611186077 -0.13775142693846465 +0.96740524816676143 0.21237493457549977 -0.13494008765512311 +0.96947353031104488 0.21592607882051251 -0.10986054425367317 +0.97011813854669371 0.2173292741011463 -0.099634331047451508 +0.97237322050691288 0.2205376190193819 -0.067701629511043915 +0.97256579272521626 0.22114863140943242 -0.060907607905721556 +0.97351999728657068 0.22241808576487493 -0.034988854233130418 +0.97371394847093473 0.22313250261608547 -0.018534606855888307 +0.9741085412313033 0.22323020415808842 -0 +0.97371394847093473 0.22313250261608547 0.018534606855888314 +0.97351999728657068 0.22241808576487493 0.034988854233130445 +0.97256579272521648 0.22114863140943247 0.060907607905721736 +0.97237322050691288 0.22053761901938193 0.067701629511043915 +0.9701181385466936 0.21732927410114636 0.099634331047451369 +0.96947353031104511 0.21592607882051257 0.10986054425367309 +0.96740524816676143 0.21237493457549983 0.13494008765512311 +0.96705050472527376 0.21194916611186071 0.13775142693846484 +0.96559982489567697 0.20947750201587079 0.15035899655759488 +0.9610594275501394 0.20306848001363986 0.18186355091081891 +0.95847935459740885 0.19857068261001021 0.20072208160320931 +0.95663400990185365 0.1960293653355549 0.21094260961626565 +0.95069104161024875 0.185674705522129 0.24579255546759909 +0.94691066341902042 0.17998804508785277 0.2643958831644852 +0.94686945971280478 0.17991689161909552 0.26460466631117979 +0.94302798180440095 0.1743284862276076 0.2805056654002932 +0.93339586248116191 0.15759811547986138 0.32187126056253412 +0.93241910595001631 0.15597288936521894 0.32585692434233732 +0.93208712065408506 0.15549608434201159 0.3269900786062353 +0.92780338960280884 0.14987434907153008 0.34005641981910095 +0.92600274487022949 0.1474180208074326 0.34558774394436137 +0.92538907765393941 0.14644305776905847 0.34753041451074107 +0.91382708291667858 0.12638371280443894 0.38483791504434894 +0.9094202856258099 0.11959234854368264 0.39708487175152674 +0.90598861546737153 0.11471241548978531 0.40567809407889893 +0.89637854466934042 0.099164106023202803 0.43023759412454371 +0.89270251295960135 0.092787072853812713 0.43974499787970978 +0.88525794997176432 0.0810906962302608 0.4567171564832469 +0.88317063762809189 0.078036377421090528 0.46105412139556584 +0.87006466098054647 0.056547496445093395 0.48863305375424759 +0.86048662890264316 0.042111562758920092 0.50664961250726259 +0.85822228618686625 0.038871133598592303 0.51061830246204098 +0.85756840681366708 0.037892913779084658 0.51176714118576783 +0.85711100340627278 0.037134436368273058 0.51257565524045945 +0.84685829520082545 0.019286849148286413 0.53075413092765555 +0.83482598411320952 6.1457978060812172e-19 0.54975734503310147 +0.83001349060802176 -0.0073066631575244463 0.55678551944213661 +0.82493587926686529 -0.015775204470230869 0.56417193374348917 +0.80588150441467499 -0.045732053728024698 0.58956860097969011 +0.80104197563456947 -0.053122466844444688 0.59574101077153174 +0.79963678018449591 -0.05534752809057629 0.59753024518837039 +0.79934060742300872 -0.055862651692236226 0.5979056290568221 +0.79848519772427518 -0.05725079091428617 0.59888293763788758 +0.7956418656744515 -0.062099421877685829 0.60211592452938856 +0.77138586605477644 -0.10108899298613383 0.62717432611494861 +0.76687916779802356 -0.10789205109760849 0.63136143448574888 +0.75366980899531777 -0.12957223153317304 0.64334361719230837 +0.74532674141002397 -0.14250706129079604 0.65018159643527595 +0.74055958467102845 -0.15027494754537984 0.65399889841309089 +0.73203596503112123 -0.16333083529035369 0.66003296952840662 +0.71021467390312121 -0.19943478257349531 0.67476755984413883 +0.70685918524788072 -0.20468185015976154 0.67677227421098896 +0.69607577061268988 -0.22054081151139987 0.68235511400187043 +0.69531998299352837 -0.22171162891211948 0.68272481536695295 +0.69377314187723504 -0.22428489754399578 0.68341702461536258 +0.69212177096286909 -0.22700206765185593 0.68413337702600874 +0.67087146858540314 -0.2624299701285262 0.69320320770179844 +0.66689476317101137 -0.26866388572512034 0.69462568959831961 +0.65693999760682831 -0.28335434223766309 0.69755165300174227 +0.65068017874670425 -0.29325931385704501 0.69911600851089595 +0.63268818151834738 -0.32335420881895094 0.70294074606773105 +0.62443505191569892 -0.33636614204180326 0.70422028778974766 +0.61696807586665514 -0.34742682425518856 0.70495163176324005 +0.60785615600797449 -0.36184045701812129 0.70538094374692584 +0.59214384399202546 -0.3881595429818786 0.70538094374692573 +0.58303192413334481 -0.40257317574481138 0.70495163176324016 +0.57556494808430092 -0.41363385795819674 0.70422028778974766 +0.5673118184816528 -0.42664579118104884 0.70294074606773105 +0.5493198212532957 -0.45674068614295493 0.69911600851089584 +0.54306000239317154 -0.46664565776233696 0.69755165300174249 +0.53310523682898858 -0.4813361142748796 0.69462568959831961 +0.52912853141459681 -0.48757002987147369 0.69320320770179866 +0.50787822903712998 -0.52299793234814529 0.68413337702600852 +0.50622685812276469 -0.5257151024560045 0.68341702461536258 +0.50468001700647158 -0.52828837108788052 0.68272481536695295 +0.50392422938731019 -0.52945918848859996 0.68235511400187066 +0.49314081475211924 -0.54531814984023841 0.67677227421098896 +0.48978532609687886 -0.55056521742650477 0.67476755984413894 +0.46796403496887878 -0.58666916470964625 0.66003296952840662 +0.45944041532897167 -0.59972505245462004 0.65399889841309089 +0.45467325858997609 -0.60749293870920384 0.65018159643527607 +0.44633019100468213 -0.6204277684668269 0.64334361719230826 +0.4331208322019765 -0.64210794890239153 0.63136143448574877 +0.42861413394522363 -0.64891100701386595 0.62717432611494872 +0.40435813432554857 -0.6879005781223142 0.60211592452938856 +0.401514802275725 -0.69274920908571369 0.59888293763788769 +0.40065939257699124 -0.69413734830776352 0.5979056290568221 +0.40036321981550405 -0.6946524719094237 0.59753024518837061 +0.39895802436543049 -0.69687753315555545 0.59574101077153174 +0.39411849558532508 -0.7042679462719752 0.58956860097969033 +0.37506412073313489 -0.73422479552976916 0.5641719337434894 +0.36998650939197836 -0.74269333684247552 0.55678551944213661 +0.36517401588679066 -0.75 0.5497573450331017 +0.35314170479917451 -0.76928684914828649 0.53075413092765567 +0.34288899659372707 -0.78713443636827329 0.51257565524045945 +0.34243159318633287 -0.78789291377908466 0.51176714118576805 +0.34177771381313388 -0.78887113359859229 0.51061830246204121 +0.33951337109735685 -0.79211156275892003 0.50664961250726281 +0.32993533901945349 -0.80654749644509338 0.4886330537542477 +0.31682936237190812 -0.8280363774210906 0.46105412139556601 +0.31474205002823563 -0.83109069623026077 0.45671715648324707 +0.30729748704039872 -0.84278707285381294 0.43974499787970983 +0.30362145533065943 -0.84916410602320291 0.43023759412454349 +0.29401138453262832 -0.86471241548978517 0.4056780940788991 +0.29057971437419 -0.8695923485436825 0.39708487175152685 +0.28617291708332138 -0.87638371280443861 0.38483791504434917 +0.27461092234606033 -0.8964430577690583 0.34753041451074085 +0.78691464920034204 -0.55218346430918919 -0.27542468411056592 +0.78691464920034204 -0.5521834643091893 0.27542468411056592 +0.82760814841975494 -0.44564650023159885 0.3412681489687433 +0.82760814841975505 -0.44564650023159863 -0.34126814896874336 +0.99782996454078776 -1.231040596610629e-18 0.065843464858177492 +0.99782996454078776 1.231040596610629e-18 -0.065843464858177492 +0.33088129441328606 -0.9151298141069959 0.23033669342916982 +0.52293928186267569 -0.79643145005237237 0.30369631682393589 +0.52293928186267558 -0.79643145005237248 -0.30369631682393589 +0.33088129441328601 -0.9151298141069959 -0.23033669342916974 +0.75327597529184531 -0.65407554465688111 -0.068996282000725426 +0.63457761123722201 -0.72743516805164721 -0.2610542694501149 +0.63457761123722189 -0.7274351680516471 0.26105426945011495 +0.75327597529184531 -0.65407554465688111 0.068996282000725467 +0.9151298141069959 -0.23033669342916982 0.33088129441328606 +0.79643145005237237 -0.30369631682393589 0.52293928186267569 +0.79643145005237248 -0.30369631682393589 -0.52293928186267558 +0.9151298141069959 -0.23033669342916974 -0.33088129441328601 +0.95777186148081694 -0.11869836405462342 0.26188501241256068 +0.95777186148081694 -0.1186983640546234 -0.26188501241256062 +0.52836121174546036 -0.68346886752821701 -0.50369111272938427 +0.89756031181852258 -0.3465999725759743 -0.27249577181778534 +0.88287877117884817 -0.46436496618972251 -0.069930348042498217 +0.77633914798103421 -0.42151877198336174 0.46863573506266099 +0.64151089172333209 -0.61353851948571902 0.46047178079401074 +0.61353851948571902 -0.46047178079401074 0.64151089172333209 +0.81523570763863507 -0.5621285844293008 0.13929176414434621 +0.92483674698373297 -0.35451755943338792 0.13781977899394779 +0.46863573506266087 -0.77633914798103421 0.42151877198336168 +0.69401454380114724 -0.63704738383668813 -0.33543172738922178 +0.68346886752821701 -0.50369111272938438 -0.52836121174546025 +0.98364735641266243 0.12122116383748827 -0.13320400767343918 +0.98364735641266243 -0.12122116383748827 0.13320400767343918 +0.96805607891910661 -0.24136787945551613 -0.067889430951449614 +0.32153744077837104 -0.94689686564994791 1.2287154012371122e-18 +0.49525883802792392 -0.86299895207436528 0.099757165525981087 +0.69401454380114691 -0.63704738383668813 0.33543172738922172 +0.52836121174546025 -0.68346886752821701 0.50369111272938427 +0.45337594379539092 -0.86541618975952417 -0.21331917890744351 +0.43360551911151823 -0.90110279868394083 1.2262216765384848e-18 +0.66669512270283426 -0.73357768674250456 -0.13183850301701969 +0.49525883802792381 -0.86299895207436528 -0.099757165525981059 +0.66669512270283438 -0.73357768674250434 0.13183850301701977 +0.59501600355390494 -0.80134563315795981 -0.061653318916405575 +0.46863573506266104 -0.77633914798103421 -0.42151877198336163 +0.64151089172333209 -0.61353851948571891 -0.46047178079401074 +0.45337594379539092 -0.86541618975952417 0.21331917890744348 +0.59501600355390494 -0.8013456331579597 0.061653318916405561 +0.81523570763863507 -0.5621285844293008 -0.13929176414434621 +0.88287877117884817 -0.46436496618972245 0.069930348042498217 +0.98364735641266243 0.12122116383748827 0.13320400767343918 +0.86541618975952417 -0.21331917890744348 0.45337594379539092 +0.94689686564994791 1.2287154012371122e-18 -0.32153744077837104 +0.94689686564994791 -1.2287154012371122e-18 0.32153744077837104 +0.86299895207436528 -0.099757165525981073 0.49525883802792381 +0.68346886752821712 -0.50369111272938438 0.52836121174546036 +0.77633914798103421 -0.42151877198336163 -0.46863573506266104 +0.61353851948571891 -0.4604717807940108 -0.64151089172333209 +0.86299895207436528 -0.099757165525981059 -0.49525883802792381 +0.98364735641266243 -0.12122116383748827 -0.13320400767343918 +0.92483674698373319 -0.35451755943338792 -0.13781977899394779 +0.90110279868394083 -1.2262216765384848e-18 0.43360551911151823 +0.89756031181852236 -0.34659997257597436 0.27249577181778539 +0.96805607891910661 -0.24136787945551613 0.067889430951449614 +0.86541618975952417 -0.21331917890744351 -0.45337594379539092 +0.90110279868394083 1.2262216765384848e-18 -0.43360551911151823 +0.78437123837371081 -0.46867704983435055 -0.40632940254264294 +0.86230450765389344 -0.37596077789543381 -0.33924096091721673 +0.86574218443040074 -0.41838703947458195 0.27466844612618391 +0.82178222598517658 -0.40100492526839776 0.40480738995889742 +0.74334549596053445 -0.57608383788574413 0.33994835690442576 +0.78076816785433134 -0.58942568680894825 0.20731239180326447 +0.40480738995889742 -0.82178222598517658 0.40100492526839776 +0.8247164420172246 -0.52579382752597525 -0.20828740048796671 +0.74024588618561449 -0.61446983418191203 -0.27287882084494514 +0.9944708773603258 -0.081370946056690249 -0.066381045638217229 +0.99043061207734606 0.040522281668716874 -0.13192856911395229 +0.9944708773603258 0.081370946056690249 0.066381045638217229 +0.99043061207734606 -0.040522281668716874 0.13192856911395229 +0.62457262167826666 -0.75674166021493738 0.19300544019554747 +0.68929656115193505 -0.6730187872058685 0.26817151760031971 +0.39610117388436322 -0.88076789123048704 -0.25952221836449818 +0.38998766307204569 -0.90172313788306901 0.18656099607880575 +0.64061453708709615 -0.69409608332024098 -0.32839555720531116 +0.68018071850695239 -0.70519707714513458 -0.20012814034344362 +0.32271058904772337 -0.94330265629374277 -0.077704403643809677 +0.8004723406749189 -0.59529852733606181 0.069740197633308881 +0.719915307065364 -0.68063975088704354 0.135836225526941 +0.51571602924327076 -0.82401873423925942 -0.23458495860622128 +0.46556504362316592 -0.81129246939324073 -0.35362935294171677 +0.52777252693426735 -0.76383628095354983 0.37149736972483099 +0.46039308870086582 -0.84103330267207554 0.28407954462258922 +0.70227702532207648 -0.70871769768752158 -0.067277074024322203 +0.76957783850217643 -0.62340222914316235 -0.13827368218737227 +0.94330265629374277 0.077704403643809677 0.32271058904772337 +0.97703158208487906 0.080281277350241265 0.19739352602284616 +0.76383628095354983 -0.37149736972483099 0.52777252693426735 +0.84103330267207554 -0.28407954462258922 0.46039308870086582 +0.96471929550963276 0.039734588558411582 -0.26026494835742225 +0.96679589706089264 -0.15985780358782284 0.19937696972895624 +0.96471929550963276 -0.039734588558411582 0.26026494835742225 +0.82401873423925942 -0.23458495860622128 -0.51571602924327076 +0.81129246939324073 -0.35362935294171677 -0.46556504362316592 +0.69409608332024086 -0.32839555720531111 -0.64061453708709615 +0.94330265629374277 -0.077704403643809677 -0.32271058904772337 +0.97703158208487906 -0.080281277350241265 -0.19739352602284616 +0.90172313788306901 -0.18656099607880575 0.38998766307204569 +0.891573746743482 -0.30401279487901056 0.33566720821021839 +0.9236940845413727 -0.2726998137406515 -0.26911716736226499 +0.88076789123048704 -0.25952221836449818 -0.39610117388436322 +0.52372394783737519 -0.63610018157997195 -0.56664784959934422 +0.52777252693426735 -0.76383628095354983 -0.37149736972483099 +0.9506072962094394 -0.27889813733511903 -0.13624095340381404 +0.9168554803037775 -0.39313153246640248 -0.069452331980627613 +0.8004723406749189 -0.59529852733606159 -0.069740197633308867 +0.67170915887432037 -0.45126666560725853 0.58750761901107262 +0.63610018157997195 -0.56664784959934433 0.52372394783737519 +0.64061453708709593 -0.69409608332024109 0.32839555720531116 +0.69409608332024109 -0.32839555720531116 0.64061453708709593 +0.67170915887432026 -0.45126666560725864 -0.58750761901107262 +0.86640575634619166 -0.4993406306021807 0 +0.9168554803037775 -0.39313153246640248 0.069452331980627613 +0.92369408454137258 -0.27269981374065166 0.26911716736226515 +0.58750761901107262 -0.67170915887432037 0.45126666560725853 +0.52372394783737519 -0.63610018157997195 0.56664784959934433 +0.58750761901107273 -0.67170915887432037 -0.45126666560725853 +0.63610018157997195 -0.56664784959934422 -0.52372394783737508 +0.76383628095354983 -0.37149736972483099 -0.52777252693426735 +0.9506072962094394 -0.27889813733511903 0.13624095340381404 +0.95977938206574664 -0.28075529872380572 0 +0.96679589706089264 -0.15985780358782287 -0.19937696972895619 +0.43765447584202588 -0.8962672300889245 -0.071858277492354974 +0.48516082808530336 -0.87376742805233321 0.033903577486650911 +0.51571602924327076 -0.82401873423925942 0.23458495860622128 +0.69116244652106429 -0.55216883979414844 0.46626606661797826 +0.55392361119767786 -0.82440895259656954 -0.11626913535565189 +0.32271058904772337 -0.94330265629374277 0.077704403643809677 +0.62578188869003271 -0.77999809473327264 0 +0.38998766307204552 -0.90172313788306913 -0.18656099607880564 +0.55392361119767786 -0.82440895259656954 0.11626913535565189 +0.62457262167826677 -0.75674166021493716 -0.19300544019554741 +0.46626606661797837 -0.69116244652106429 -0.55216883979414833 +0.74334549596053456 -0.57608383788574391 -0.33994835690442565 +0.43765447584202588 -0.8962672300889245 0.071858277492354974 +0.70227702532207659 -0.70871769768752169 0.067277074024322245 +0.89342795031552769 -0.42716188369754926 -0.13899360672691591 +0.8247164420172246 -0.52579382752597525 0.20828740048796671 +0.8962672300889245 -0.071858277492354974 0.43765447584202588 +0.82440895259656954 -0.11626913535565189 0.55392361119767786 +0.8962672300889245 -0.071858277492354974 -0.43765447584202588 +0.82401873423925942 -0.23458495860622128 0.51571602924327076 +0.78437123837371081 -0.46867704983435066 0.40632940254264294 +0.46626606661797843 -0.69116244652106429 0.55216883979414844 +0.6911624465210644 -0.55216883979414844 -0.46626606661797826 +0.90172313788306913 -0.18656099607880564 -0.38998766307204552 +0.97933072349169759 -0.20226550379446331 0 +0.86574218443040096 -0.41838703947458172 -0.27466844612618396 +0.94330265629374277 -0.077704403643809677 0.32271058904772337 +0.89342795031552757 -0.42716188369754932 0.13899360672691585 +0.9944708773603258 -0.081370946056690249 0.066381045638217229 +0.82440895259656954 -0.11626913535565189 -0.55392361119767786 +0.94330265629374277 0.077704403643809677 -0.32271058904772337 +0.9944708773603258 0.081370946056690249 -0.066381045638217229 +0.74192286377215222 -0.53398612240605769 -0.40547414873191501 +0.78792826822967776 -0.5121997269099976 -0.34179011670600551 +0.86400769557376311 -0.45853354684184838 0.20793674136609452 +0.8287565671687902 -0.48696645046278497 0.27572854131968016 +0.74192286377215222 -0.53398612240605792 0.40547414873191506 +0.78792826822967776 -0.51219972690999771 0.34179011670600545 +0.86400769557376311 -0.45853354684184816 -0.20793674136609455 +0.82875656716879031 -0.48696645046278469 -0.27572854131968005 +0.9925196692479058 -0.12208483180161094 -2.4628875390745819e-18 +0.99916617737278246 -0.040828298939112578 0 +0.9925196692479058 0.12208483180161092 2.4628875390745815e-18 +0.99916617737278246 0.040828298939112578 0 +0.56644608341520675 -0.80357852474018521 0.18275773351615091 +0.57642063043274472 -0.77776655183340049 0.25063608611031907 +0.38368834989905565 -0.91652901576006229 0.1129504910198771 +0.32578454432242587 -0.93266817185682316 0.15490162002342261 +0.58714124035889637 -0.71204046096811668 -0.38505005624480643 +0.58336686281126149 -0.74735820322637392 -0.31802330015895514 +0.38368834989905559 -0.91652901576006229 -0.11295049101987709 +0.32578454432242576 -0.93266817185682316 -0.15490162002342259 +0.82511526248824529 -0.56496442685265946 4.927907460000931e-18 +0.77991607152390563 -0.62588411178006298 6.5652635294160463e-18 +0.56644608341520641 -0.80357852474018532 -0.18275773351615091 +0.57642063043274472 -0.77776655183340049 -0.25063608611031907 +0.58714124035889637 -0.7120404609681168 0.38505005624480637 +0.58336686281126149 -0.74735820322637392 0.31802330015895514 +0.67939657443508372 -0.73377128224391142 3.6838438251301899e-18 +0.73132225045616739 -0.68203208574650398 6.5571195165482265e-18 +0.7120404609681168 -0.38505005624480637 0.58714124035889637 +0.74735820322637392 -0.31802330015895514 0.58336686281126149 +0.95001448309746583 -0.23797402212934904 0.20209118411408986 +0.94390741193901806 -0.19654920871264409 0.26534356265230635 +0.80357852474018521 -0.18275773351615091 0.56644608341520675 +0.77776655183340049 -0.25063608611031907 0.57642063043274472 +0.80357852474018532 -0.18275773351615091 -0.56644608341520641 +0.77776655183340049 -0.25063608611031907 -0.57642063043274483 +0.71204046096811668 -0.38505005624480643 -0.58714124035889637 +0.74735820322637392 -0.31802330015895514 -0.58336686281126149 +0.91652901576006229 -0.11295049101987709 -0.38368834989905559 +0.93266817185682316 -0.15490162002342259 -0.32578454432242576 +0.91652901576006229 -0.1129504910198771 0.38368834989905565 +0.93266817185682316 -0.15490162002342261 0.32578454432242587 +0.95001448309746583 -0.23797402212934904 -0.20209118411408983 +0.94390741193901806 -0.19654920871264411 -0.2653435626523063 +0.52969979418799096 -0.72619883181352507 -0.43823895845745109 +0.9270588370822882 -0.31410064822087247 -0.20470147868264915 +0.84380044240886354 -0.53207395532465163 -0.069986566252294838 +0.72619883181352496 -0.43823895845745114 0.52969979418799107 +0.64294043714010041 -0.65621226556123025 0.39498488175763657 +0.65621226556123025 -0.39498488175763657 0.64294043714010041 +0.65621226556123025 -0.39498488175763669 -0.64294043714010041 +0.84380044240886354 -0.53207395532465163 0.069986566252294838 +0.9270588370822882 -0.31410064822087264 0.20470147868264923 +0.52969979418799107 -0.72619883181352496 0.43823895845745114 +0.64294043714010041 -0.65621226556123025 -0.39498488175763669 +0.72619883181352507 -0.43823895845745109 -0.52969979418799096 +0.97031291378210283 -0.20086000526876321 0.13471491243035441 +0.97031291378210283 -0.20086000526876321 -0.13471491243035441 +0.37971225316070945 -0.92432583806700219 -0.037951941733611459 +0.50619228471494349 -0.84615687966832631 0.16669704821929851 +0.69466625495449252 -0.59667643972673035 0.40176612662410133 +0.46894076499437626 -0.73618246464930526 0.48798559166164268 +0.50619228471494349 -0.84615687966832631 -0.16669704821929851 +0.37971225316070945 -0.92432583806700219 0.037951941733611459 +0.64943374300381451 -0.75762878984770377 -0.06507249989019516 +0.44478475305090454 -0.88410882140193769 -0.14324145828887103 +0.61148180127020324 -0.78108437977813128 0.12648003155423412 +0.61148180127020324 -0.78108437977813128 -0.1264800315542341 +0.46894076499437626 -0.73618246464930537 -0.48798559166164257 +0.69466625495449263 -0.59667643972673012 -0.40176612662410133 +0.44478475305090459 -0.88410882140193769 0.14324145828887105 +0.64943374300381462 -0.75762878984770354 0.06507249989019516 +0.85675191169903997 -0.49650199476975138 -0.13950602492257505 +0.85675191169903997 -0.49650199476975149 0.13950602492257505 +0.88410882140193769 -0.14324145828887105 0.44478475305090459 +0.92432583806700219 -0.037951941733611459 -0.37971225316070945 +0.92432583806700219 0.037951941733611459 0.37971225316070945 +0.84615687966832631 -0.16669704821929851 0.50619228471494349 +0.73618246464930526 -0.48798559166164268 0.46894076499437626 +0.73618246464930537 -0.48798559166164257 -0.46894076499437626 +0.88410882140193769 -0.14324145828887103 -0.44478475305090454 +0.98448758643139411 -0.16208565674454736 -0.067174638370274931 +0.89826812139385259 -0.38781114670466371 -0.20668066329284998 +0.92432583806700219 -0.037951941733611459 0.37971225316070945 +0.89826812139385259 -0.38781114670466382 0.20668066329284998 +0.98448758643139411 -0.16208565674454736 0.067174638370274931 +0.84615687966832631 -0.16669704821929851 -0.50619228471494349 +0.92432583806700219 0.037951941733611459 -0.37971225316070945 +0.85397772162051189 -0.33120809463701678 -0.40127702279442362 +0.82178222598517658 -0.40100492526839771 -0.40480738995889742 +0.85397772162051189 -0.33120809463701684 0.40127702279442379 +0.86230450765389344 -0.37596077789543403 0.33924096091721678 +0.7324851174314404 -0.64927986178574382 0.20469785983476813 +0.74024588618561449 -0.61446983418191226 0.27287882084494519 +0.40127702279442368 -0.85397772162051189 0.33120809463701678 +0.40127702279442373 -0.85397772162051189 -0.33120809463701684 +0.40480738995889742 -0.82178222598517658 -0.40100492526839771 +0.7324851174314404 -0.64927986178574382 -0.20469785983476813 +0.78076816785433134 -0.58942568680894825 -0.20731239180326447 +0.98048795642276054 0 -0.19657916295965558 +0.99043061207734606 -0.040522281668716874 -0.13192856911395229 +0.98048795642276054 0 0.19657916295965558 +0.99043061207734606 0.040522281668716874 0.13192856911395229 +0.68018071850695239 -0.70519707714513458 0.20012814034344362 +0.39610117388436322 -0.88076789123048704 0.25952221836449818 +0.68929656115193516 -0.6730187872058685 -0.26817151760031976 +0.7695778385021762 -0.62340222914316235 0.13827368218737232 +0.46039308870086582 -0.84103330267207554 -0.28407954462258928 +0.46556504362316581 -0.81129246939324073 0.35362935294171682 +0.719915307065364 -0.68063975088704354 -0.135836225526941 +0.96471929550963276 0.039734588558411582 0.26026494835742225 +0.81129246939324073 -0.35362935294171682 0.46556504362316581 +0.97703158208487906 0.080281277350241251 -0.19739352602284607 +0.97703158208487906 -0.080281277350241251 0.19739352602284607 +0.84103330267207554 -0.28407954462258928 -0.46039308870086582 +0.96471929550963276 -0.039734588558411582 -0.26026494835742225 +0.88076789123048704 -0.25952221836449818 0.39610117388436322 +0.891573746743482 -0.30401279487901051 -0.33566720821021828 +0.9453832490724946 -0.3186356302649232 -0.068715700526218768 +0.62674761880757135 -0.51556327979539029 0.58427898032160919 +0.62674761880757146 -0.51556327979539029 -0.58427898032160919 +0.93417235896271567 -0.35682208977308999 1.2321651268072113e-18 +0.90291461058653233 -0.4298199692771042 0 +0.57735026918962573 -0.57735026918962573 0.57735026918962573 +0.58427898032160919 -0.62674761880757135 0.51556327979539029 +0.57735026918962573 -0.57735026918962584 -0.57735026918962573 +0.58427898032160919 -0.62674761880757146 -0.51556327979539029 +0.9453832490724946 -0.31863563026492325 0.068715700526218768 +0.52573111211913348 -0.8506508083520401 -2.4513010918904207e-18 +0.48516082808530336 -0.87376742805233321 -0.033903577486650911 +0.54001796879892028 -0.83986385056568236 -0.054857140713616914 +0.57392154628557124 -0.81891028733871629 0 +0.54001796879892028 -0.83986385056568236 0.054857140713616914 +0.87376742805233321 -0.033903577486650911 0.48516082808530336 +0.87376742805233321 -0.033903577486650911 -0.48516082808530336 +0.55216883979414833 -0.46626606661797837 -0.69116244652106429 +0.59667643972673012 -0.40176612662410133 -0.69466625495449263 +0.63704738383668802 -0.33543172738922172 -0.69401454380114713 +0.67301878720586839 -0.26817151760031971 -0.68929656115193505 +0.40176612662410133 -0.69466625495449263 -0.59667643972673012 +0.33924096091721678 -0.86230450765389344 0.37596077789543403 +0.4604717807940108 -0.64151089172333209 -0.61353851948571891 +0.34126814896874336 -0.82760814841975505 0.44564650023159885 +0.40547414873191512 -0.74192286377215233 -0.53398612240605781 +0.93266817185682316 0.15490162002342261 -0.32578454432242587 +0.91652901576006229 0.1129504910198771 -0.38368834989905565 +0.75674166021493716 -0.19300544019554741 -0.62457262167826677 +0.80134563315795981 -0.061653318916405575 -0.59501600355390494 +0.93266817185682316 0.15490162002342259 0.32578454432242576 +0.91652901576006229 0.11295049101987709 0.38368834989905559 +0.8962672300889245 0.071858277492354974 0.43765447584202588 +0.34126814896874336 -0.82760814841975505 -0.44564650023159863 +0.46047178079401074 -0.64151089172333209 0.61353851948571902 +0.98448758643139411 0.16208565674454742 -0.067174638370274931 +0.26534356265230635 -0.94390741193901806 0.19654920871264409 +0.95777186148081694 0.1186983640546234 0.26188501241256062 +0.63704738383668813 -0.33543172738922172 0.69401454380114691 +0.87376742805233321 0.033903577486650911 0.48516082808530336 +0.85065080835203988 1.2256505459452103e-18 0.52573111211913359 +0.40176612662410133 -0.69466625495449252 0.59667643972673035 +0.51556327979539029 -0.58427898032160919 0.62674761880757135 +0.75674166021493738 -0.19300544019554747 0.62457262167826666 +0.51556327979539029 -0.58427898032160919 -0.62674761880757135 +0.7274351680516471 -0.26105426945011484 -0.63457761123722201 +0.85065080835203988 -1.2256505459452103e-18 -0.52573111211913359 +0.87376742805233321 0.033903577486650911 -0.48516082808530336 +0.8962672300889245 0.071858277492354974 -0.43765447584202588 +0.95777186148081694 0.11869836405462342 -0.26188501241256068 +0.26911716736226499 -0.9236940845413727 -0.2726998137406515 +0.2653435626523063 -0.94390741193901806 -0.19654920871264411 +0.96679589706089264 0.15985780358782284 -0.19937696972895624 +0.97031291378210283 0.20086000526876321 -0.13471491243035441 +0.26026494835742225 -0.96471929550963276 -0.039734588558411582 +0.26188501241256062 -0.95777186148081694 -0.1186983640546234 +0.97933072349169759 0.20226550379446337 0 +0.26188501241256068 -0.95777186148081694 0.11869836405462342 +0.26026494835742225 -0.96471929550963276 0.039734588558411582 +0.98448758643139411 0.16208565674454742 0.067174638370274931 +0.97031291378210283 0.20086000526876321 0.13471491243035441 +0.96679589706089264 0.15985780358782287 0.19937696972895619 +0.59667643972673035 -0.40176612662410133 0.69466625495449252 +0.26911716736226504 -0.9236940845413727 0.27269981374065155 +0.40547414873191501 -0.74192286377215233 0.53398612240605781 +0.8013456331579597 -0.06165331891640554 0.59501600355390483 +0.55216883979414844 -0.46626606661797843 0.69116244652106429 +0.6730187872058685 -0.26817151760031971 0.68929656115193505 +0.78108437977813128 -0.1264800315542341 -0.61148180127020324 +0.33566720821021839 -0.891573746743482 0.30401279487901056 +0.7274351680516471 -0.26105426945011495 0.63457761123722189 +0.83986385056568236 -0.054857140713616914 0.54001796879892028 +0.33924096091721673 -0.86230450765389344 -0.37596077789543381 +0.83986385056568236 -0.054857140713616914 -0.54001796879892028 +0.40632940254264294 -0.78437123837371059 0.46867704983435055 +0.78108437977813128 -0.12648003155423412 0.61148180127020324 +0.56664784959934433 -0.52372394783737519 0.63610018157997195 +0.56664784959934433 -0.5237239478373753 -0.63610018157997195 +0.40632940254264294 -0.78437123837371081 -0.46867704983435055 +0.33566720821021828 -0.891573746743482 -0.30401279487901051 +3 249 250 563 +3 258 422 428 +3 259 424 426 +3 260 426 424 +3 261 428 422 +3 262 430 432 +3 263 432 430 +3 264 575 436 +3 265 434 446 +3 594 590 440 +3 596 436 575 +3 266 438 444 +3 267 440 590 +3 268 442 448 +3 269 444 438 +3 270 446 434 +3 271 448 442 +3 609 450 454 +3 272 452 462 +3 273 454 450 +3 584 456 458 +3 274 458 456 +3 275 460 464 +3 165 166 576 +3 276 462 452 +3 277 464 460 +3 565 133 588 +3 278 465 489 +3 279 466 503 +3 280 467 493 +3 281 468 499 +3 282 469 481 +3 283 470 601 +3 558 471 557 +3 284 472 494 +3 285 473 505 +3 286 474 482 +3 233 234 573 +3 287 475 490 +3 288 476 500 +3 289 592 574 +3 154 155 598 +3 290 477 506 +3 291 478 502 +3 292 479 484 +3 293 480 491 +3 294 481 469 +3 295 482 474 +3 296 483 486 +3 297 484 479 +3 298 485 488 +3 299 486 483 +3 300 487 492 +3 301 488 485 +3 302 489 465 +3 303 490 475 +3 304 491 480 +3 305 492 487 +3 306 493 467 +3 307 494 472 +3 308 598 599 +3 309 495 498 +3 604 194 614 +3 310 496 508 +3 311 497 504 +3 312 498 495 +3 577 601 470 +3 313 499 468 +3 560 64 65 +3 105 106 607 +3 314 500 476 +3 315 557 471 +3 316 501 507 +3 317 502 478 +3 318 503 466 +3 319 504 497 +3 320 505 473 +3 321 506 477 +3 322 507 501 +3 323 508 496 +3 592 144 574 +3 314 510 324 +3 279 414 325 +3 320 512 326 +3 281 409 327 +3 294 514 328 +3 284 404 329 +3 286 613 330 +3 302 517 617 +3 45 46 611 +3 306 519 331 +3 287 400 332 +3 317 521 333 +3 289 420 334 +3 308 523 335 +3 290 417 336 +3 292 394 597 +3 300 524 337 +3 294 375 338 +3 589 41 618 +3 296 396 339 +3 304 525 340 +3 608 1 0 +3 287 526 341 +3 298 398 342 +3 292 593 343 +3 284 527 344 +3 300 402 345 +3 296 528 346 +3 302 369 347 +3 286 529 348 +3 304 391 349 +3 298 530 350 +3 306 372 351 +3 311 531 352 +3 308 600 353 +3 281 532 354 +3 309 408 355 +3 289 533 591 +3 310 419 356 +3 290 534 357 +3 311 415 358 +3 577 376 606 +3 322 535 359 +3 314 385 360 +3 558 559 361 +3 100 101 567 +3 310 536 362 +3 317 388 363 +3 309 537 364 +3 320 380 365 +3 279 538 366 +3 322 412 367 +3 264 608 602 +3 563 253 561 +3 27 28 594 +3 278 399 368 +3 266 347 369 +3 572 617 517 +3 291 539 370 +3 280 403 371 +3 268 351 372 +3 258 331 519 +3 283 540 373 +3 282 392 374 +3 270 338 375 +3 259 328 514 +3 229 230 581 +3 283 605 615 +3 609 606 376 +3 288 541 377 +3 75 76 616 +3 280 543 378 +3 285 416 379 +3 272 365 380 +3 260 326 512 +3 282 545 381 +3 573 410 382 +3 278 547 383 +3 288 411 384 +3 274 360 385 +3 261 324 510 +3 576 353 600 +3 262 335 523 +3 285 548 386 +3 291 413 387 +3 277 363 388 +3 263 333 521 +3 299 550 389 +3 293 401 390 +3 265 349 391 +3 264 340 525 +3 313 374 392 +3 295 381 545 +3 563 330 613 +3 265 348 529 +3 301 551 393 +3 297 389 550 +3 596 597 394 +3 594 343 593 +3 305 552 395 +3 299 393 551 +3 267 339 396 +3 266 346 528 +3 46 47 611 +3 267 589 618 +3 293 553 397 +3 301 395 552 +3 269 342 398 +3 268 350 530 +3 562 368 399 +3 303 383 547 +3 258 332 400 +3 269 341 526 +3 297 390 401 +3 305 397 553 +3 271 345 402 +3 270 337 524 +3 318 371 403 +3 307 378 543 +3 259 329 404 +3 271 344 527 +3 319 554 405 +3 604 406 610 +3 582 201 609 +3 312 610 406 +3 323 586 587 +3 316 555 407 +3 586 120 121 +3 571 178 179 +3 312 405 554 +3 273 355 408 +3 272 364 537 +3 223 224 615 +3 313 373 540 +3 260 327 409 +3 273 354 532 +3 295 382 410 +3 228 229 581 +3 315 616 556 +3 562 69 583 +3 98 99 584 +3 303 384 411 +3 315 377 541 +3 584 361 559 +3 316 418 612 +3 275 367 412 +3 274 359 535 +3 321 387 413 +3 318 370 539 +3 261 325 414 +3 275 366 538 +3 319 571 578 +3 276 358 415 +3 576 352 531 +3 307 379 416 +3 321 386 548 +3 262 336 417 +3 276 357 534 +3 568 612 418 +3 323 407 555 +3 588 356 419 +3 277 362 536 +3 263 334 420 +3 588 591 533 +3 603 245 613 +3 421 422 400 +3 261 422 324 +3 423 424 404 +3 260 424 326 +3 425 426 409 +3 259 426 328 +3 57 58 564 +3 572 53 617 +3 427 428 414 +3 258 428 331 +3 429 430 417 +3 263 430 333 +3 431 432 420 +3 262 432 335 +3 602 8 575 +3 575 12 596 +3 433 434 391 +3 270 434 337 +3 32 33 590 +3 267 590 589 +3 435 436 394 +3 264 436 340 +3 437 438 369 +3 269 438 341 +3 439 440 396 +3 594 440 343 +3 441 442 372 +3 271 442 344 +3 443 444 398 +3 266 444 346 +3 445 446 375 +3 265 446 348 +3 447 448 402 +3 268 448 350 +3 569 170 570 +3 576 569 352 +3 449 450 376 +3 273 450 354 +3 135 136 588 +3 451 452 380 +3 276 452 357 +3 453 454 408 +3 609 454 582 +3 455 456 567 +3 274 456 359 +3 457 458 385 +3 584 458 361 +3 459 460 412 +3 277 460 362 +3 461 462 415 +3 272 462 364 +3 463 464 388 +3 275 464 366 +3 566 565 419 +3 437 465 383 +3 302 465 369 +3 463 466 366 +3 318 466 370 +3 441 467 378 +3 306 467 372 +3 449 468 354 +3 313 468 373 +3 445 469 381 +3 294 469 375 +3 449 470 373 +3 577 470 376 +3 457 471 361 +3 315 471 377 +3 441 472 344 +3 307 472 378 +3 451 473 386 +3 320 473 380 +3 445 474 348 +3 295 474 381 +3 437 475 341 +3 303 475 383 +3 457 476 377 +3 314 476 385 +3 139 140 591 +3 308 599 600 +3 451 477 357 +3 321 477 386 +3 463 478 370 +3 317 478 388 +3 439 479 343 +3 297 479 389 +3 433 480 397 +3 304 480 391 +3 425 481 328 +3 282 481 392 +3 603 482 410 +3 286 482 613 +3 443 483 346 +3 299 483 393 +3 435 484 401 +3 292 484 394 +3 447 485 350 +3 301 485 395 +3 439 486 389 +3 296 486 396 +3 433 487 337 +3 305 487 397 +3 443 488 393 +3 298 488 398 +3 564 489 617 +3 278 489 399 +3 421 490 411 +3 287 490 400 +3 435 491 340 +3 293 491 401 +3 447 492 395 +3 300 492 402 +3 427 493 331 +3 280 493 403 +3 423 494 416 +3 284 494 404 +3 570 174 175 +3 431 598 335 +3 595 152 598 +3 461 495 364 +3 312 495 405 +3 453 614 582 +3 604 614 406 +3 459 496 362 +3 323 496 407 +3 570 497 352 +3 319 497 571 +3 453 498 406 +3 309 498 408 +3 283 601 605 +3 425 499 392 +3 281 499 409 +3 580 240 603 +3 573 580 410 +3 564 560 399 +3 455 607 418 +3 101 102 567 +3 421 500 324 +3 288 500 411 +3 556 81 82 +3 557 86 558 +3 459 501 407 +3 322 501 412 +3 429 502 333 +3 291 502 413 +3 427 503 403 +3 279 503 414 +3 461 504 405 +3 311 504 415 +3 423 505 326 +3 285 505 416 +3 429 506 413 +3 290 506 417 +3 455 507 359 +3 316 507 418 +3 566 508 587 +3 310 508 419 +3 431 574 595 +3 289 574 420 +3 564 58 59 +3 509 510 360 +3 261 510 325 +3 427 414 503 +3 261 414 428 +3 511 512 365 +3 260 512 327 +3 425 409 499 +3 260 409 426 +3 513 514 338 +3 259 514 329 +3 423 404 494 +3 259 404 424 +3 515 561 608 +3 563 561 330 +3 603 613 482 +3 246 247 613 +3 516 517 347 +3 572 517 611 +3 518 519 351 +3 258 519 332 +3 421 400 490 +3 258 400 422 +3 520 521 363 +3 263 521 334 +3 431 420 574 +3 263 420 432 +3 522 523 353 +3 262 523 336 +3 429 417 506 +3 262 417 430 +3 596 17 597 +3 435 394 484 +3 596 394 436 +3 513 524 345 +3 270 524 338 +3 445 375 469 +3 270 375 446 +3 516 618 611 +3 267 618 339 +3 439 396 486 +3 267 396 440 +3 515 525 349 +3 264 525 608 +3 264 602 575 +3 518 526 332 +3 269 526 342 +3 443 398 488 +3 269 398 444 +3 597 21 593 +3 593 24 25 +3 594 29 30 +3 513 527 329 +3 271 527 345 +3 447 402 492 +3 271 402 448 +3 516 528 339 +3 266 528 347 +3 437 369 465 +3 266 369 438 +3 515 529 330 +3 265 529 349 +3 433 391 480 +3 265 391 434 +3 518 530 342 +3 268 530 351 +3 441 372 467 +3 268 372 442 +3 522 531 358 +3 576 531 353 +3 599 159 160 +3 600 163 576 +3 511 532 327 +3 273 532 355 +3 453 408 498 +3 273 408 454 +3 520 533 334 +3 588 533 356 +3 566 419 508 +3 588 419 565 +3 522 534 336 +3 276 534 358 +3 461 415 504 +3 276 415 462 +3 202 203 609 +3 449 376 470 +3 609 376 450 +3 509 535 367 +3 274 535 360 +3 457 385 476 +3 274 385 458 +3 559 95 584 +3 455 567 607 +3 584 567 456 +3 520 536 356 +3 277 536 363 +3 463 388 478 +3 277 388 464 +3 511 537 355 +3 272 537 365 +3 451 380 473 +3 272 380 452 +3 509 538 325 +3 275 538 367 +3 459 412 501 +3 275 412 460 +3 515 608 525 +3 257 1 608 +3 23 24 593 +3 546 583 616 +3 562 583 368 +3 564 399 489 +3 562 399 560 +3 516 347 528 +3 302 347 517 +3 54 55 617 +3 302 617 489 +3 542 539 387 +3 318 539 371 +3 427 403 493 +3 318 403 503 +3 518 351 530 +3 306 351 519 +3 427 331 428 +3 306 331 493 +3 544 540 615 +3 313 540 374 +3 425 392 481 +3 313 392 499 +3 513 338 524 +3 294 338 514 +3 425 328 426 +3 294 328 481 +3 544 581 382 +3 225 226 615 +3 216 217 601 +3 606 208 209 +3 212 213 577 +3 546 541 384 +3 315 541 616 +3 315 556 557 +3 542 543 371 +3 307 543 379 +3 423 416 505 +3 307 416 494 +3 511 365 537 +3 320 365 512 +3 423 326 424 +3 320 326 505 +3 544 545 374 +3 295 545 382 +3 603 410 580 +3 295 410 482 +3 546 547 368 +3 303 547 384 +3 421 411 500 +3 303 411 490 +3 509 360 535 +3 314 360 510 +3 421 324 422 +3 314 324 500 +3 431 595 598 +3 574 146 147 +3 522 353 531 +3 308 353 523 +3 431 335 432 +3 308 335 598 +3 542 548 379 +3 321 548 387 +3 429 413 502 +3 321 413 506 +3 520 363 536 +3 317 363 521 +3 429 333 430 +3 317 333 502 +3 549 550 551 +3 297 550 390 +3 435 401 491 +3 297 401 484 +3 515 349 529 +3 304 349 525 +3 435 340 436 +3 304 340 491 +3 544 374 540 +3 282 374 545 +3 445 381 474 +3 282 381 469 +3 515 330 561 +3 286 330 529 +3 445 348 446 +3 286 348 474 +3 549 551 552 +3 299 551 550 +3 439 389 479 +3 299 389 486 +3 292 597 593 +3 439 343 440 +3 292 343 479 +3 549 552 553 +3 301 552 551 +3 443 393 483 +3 301 393 488 +3 516 339 618 +3 296 339 528 +3 443 346 444 +3 296 346 483 +3 516 611 517 +3 42 43 618 +3 33 34 590 +3 549 553 390 +3 305 553 552 +3 447 395 485 +3 305 395 492 +3 518 342 526 +3 298 342 530 +3 447 350 448 +3 298 350 485 +3 546 368 583 +3 278 368 547 +3 437 383 475 +3 278 383 465 +3 518 332 519 +3 287 332 526 +3 437 341 438 +3 287 341 475 +3 549 390 550 +3 293 390 553 +3 433 397 487 +3 293 397 480 +3 513 345 527 +3 300 345 524 +3 433 337 434 +3 300 337 487 +3 542 371 539 +3 280 371 543 +3 441 378 472 +3 280 378 467 +3 513 329 514 +3 284 329 527 +3 441 344 442 +3 284 344 472 +3 579 186 187 +3 579 554 578 +3 312 554 610 +3 453 406 614 +3 312 406 498 +3 453 582 454 +3 197 198 582 +3 579 610 554 +3 188 189 610 +3 585 586 555 +3 585 555 612 +3 323 555 586 +3 123 124 587 +3 323 587 508 +3 127 128 566 +3 578 181 182 +3 319 578 554 +3 461 405 495 +3 319 405 504 +3 511 355 532 +3 309 355 537 +3 461 364 462 +3 309 364 495 +3 544 615 581 +3 283 615 540 +3 449 373 468 +3 283 373 470 +3 511 327 512 +3 281 327 532 +3 449 354 450 +3 281 354 468 +3 544 382 545 +3 573 382 581 +3 546 616 541 +3 583 74 616 +3 585 115 116 +3 546 384 547 +3 288 384 541 +3 457 377 471 +3 288 377 476 +3 558 89 90 +3 457 361 458 +3 558 361 471 +3 568 111 612 +3 455 418 507 +3 568 418 607 +3 509 367 538 +3 322 367 535 +3 455 359 456 +3 322 359 507 +3 542 387 548 +3 291 387 539 +3 463 370 466 +3 291 370 478 +3 509 325 510 +3 279 325 538 +3 463 366 464 +3 279 366 466 +3 570 571 497 +3 522 358 534 +3 311 358 531 +3 570 352 569 +3 311 352 497 +3 542 379 543 +3 285 379 548 +3 451 386 477 +3 285 386 473 +3 522 336 523 +3 290 336 534 +3 451 357 452 +3 290 357 477 +3 112 113 612 +3 316 612 555 +3 459 407 496 +3 316 407 501 +3 520 356 533 +3 310 356 536 +3 459 362 460 +3 310 362 496 +3 520 334 521 +3 289 334 533 +3 289 591 592 +3 78 556 77 +3 80 556 79 +3 79 556 78 +3 147 148 574 +3 574 148 595 +3 585 612 113 +3 585 113 114 +3 2 602 0 +3 5 602 4 +3 4 602 2 +3 4 2 3 +3 90 91 559 +3 558 90 559 +3 91 92 559 +3 560 62 63 +3 64 560 63 +3 83 84 557 +3 556 82 557 +3 82 83 557 +3 240 580 239 +3 603 240 241 +3 603 241 242 +3 104 607 103 +3 105 607 104 +3 86 557 85 +3 558 86 87 +3 558 87 88 +3 614 195 196 +3 197 614 196 +3 125 587 124 +3 566 587 125 +3 566 125 126 +3 589 590 34 +3 589 34 35 +3 21 597 20 +3 593 21 22 +3 153 154 598 +3 152 153 598 +3 589 37 38 +3 41 589 40 +3 40 589 38 +3 40 38 39 +3 556 616 77 +3 616 76 77 +3 593 22 23 +3 255 561 254 +3 257 561 256 +3 256 561 255 +3 142 592 141 +3 143 592 142 +3 582 614 197 +3 582 198 199 +3 94 559 93 +3 95 559 94 +3 563 247 248 +3 248 249 563 +3 60 61 560 +3 564 60 560 +3 59 60 564 +3 179 180 578 +3 571 179 578 +3 66 67 562 +3 560 65 562 +3 65 66 562 +3 591 588 137 +3 588 136 137 +3 253 254 561 +3 562 67 68 +3 69 562 68 +3 70 71 583 +3 69 70 583 +3 563 250 251 +3 252 563 251 +3 253 563 252 +3 580 573 235 +3 580 235 236 +3 573 234 235 +3 14 596 13 +3 16 596 15 +3 15 596 14 +3 8 602 7 +3 575 8 9 +3 564 55 56 +3 56 57 564 +3 157 599 156 +3 567 99 100 +3 565 566 130 +3 565 130 131 +3 566 128 130 +3 128 129 130 +3 606 609 205 +3 609 203 204 +3 609 204 205 +3 10 575 9 +3 11 575 10 +3 109 568 108 +3 110 568 109 +3 111 568 110 +3 607 567 103 +3 567 102 103 +3 48 572 47 +3 50 572 49 +3 49 572 48 +3 567 584 99 +3 107 568 106 +3 108 568 107 +3 170 569 169 +3 570 170 172 +3 172 170 171 +3 570 172 173 +3 175 176 571 +3 570 175 571 +3 176 177 571 +3 611 43 44 +3 44 45 611 +3 210 211 577 +3 606 210 577 +3 209 210 606 +3 600 161 162 +3 163 600 162 +3 599 157 158 +3 159 599 158 +3 51 572 50 +3 53 572 52 +3 52 572 51 +3 569 576 167 +3 576 166 167 +3 149 595 148 +3 150 595 149 +3 19 597 18 +3 20 597 19 +3 30 31 590 +3 594 30 590 +3 594 26 27 +3 28 29 594 +3 138 591 137 +3 139 591 138 +3 581 226 227 +3 227 228 581 +3 232 573 231 +3 233 573 232 +3 145 146 574 +3 144 145 574 +3 12 575 11 +3 596 12 13 +3 164 165 576 +3 163 164 576 +3 601 577 214 +3 601 214 215 +3 577 213 214 +3 187 188 610 +3 579 187 610 +3 578 184 579 +3 578 183 184 +3 182 183 578 +3 184 185 579 +3 237 580 236 +3 238 580 237 +3 190 604 189 +3 191 604 190 +3 192 604 191 +3 573 581 231 +3 581 230 231 +3 615 605 223 +3 615 224 225 +3 582 199 200 +3 201 582 200 +3 72 583 71 +3 73 583 72 +3 583 73 74 +3 96 97 584 +3 95 96 584 +3 97 98 584 +3 117 118 586 +3 585 116 586 +3 116 117 586 +3 118 119 586 +3 121 122 587 +3 586 121 587 +3 134 135 588 +3 133 134 588 +3 36 589 35 +3 37 589 36 +3 590 31 32 +3 592 591 140 +3 592 140 141 +3 25 26 594 +3 593 25 594 +3 595 150 151 +3 152 595 151 +3 17 596 16 +3 597 17 18 +3 599 598 156 +3 598 155 156 +3 160 161 600 +3 599 160 600 +3 218 601 217 +3 605 601 218 +3 605 218 219 +3 602 5 6 +3 7 602 6 +3 603 242 243 +3 245 603 244 +3 244 603 243 +3 193 604 192 +3 194 604 193 +3 579 185 186 +3 605 220 221 +3 223 605 222 +3 222 605 221 +3 578 180 181 +3 206 606 205 +3 207 606 206 +3 568 607 106 +3 115 585 114 +3 558 88 89 +3 556 80 81 +3 608 0 602 +3 608 561 257 +3 586 119 120 +3 85 557 84 +3 93 559 92 +3 201 202 609 +3 168 569 167 +3 560 61 62 +3 604 610 189 +3 565 132 133 +3 572 611 47 +3 174 570 173 +3 592 143 144 +3 111 112 612 +3 127 566 126 +3 123 587 122 +3 132 565 131 +3 41 42 618 +3 245 246 613 +3 563 613 247 +3 571 177 178 +3 580 238 239 +3 194 195 614 +3 220 605 219 +3 581 615 226 +3 216 601 215 +3 169 569 168 +3 74 75 616 +3 564 617 55 +3 53 54 617 +3 611 618 43 +3 577 211 212 +3 606 207 208 + diff --git a/Data/data/meshes/polyhedral_complex_of_spheres/Sphere1.off b/Data/data/meshes/polyhedral_complex_of_spheres/Sphere1.off new file mode 100644 index 000000000000..56690a7cd58b --- /dev/null +++ b/Data/data/meshes/polyhedral_complex_of_spheres/Sphere1.off @@ -0,0 +1,6620 @@ +OFF +2351 4265 0 + +0.27219661039719134 -0.89987434907152952 0.34005641981910195 +0.27399725512977036 -0.89741802080743249 0.34558774394436154 +0.2679128793459149 -0.90549608434201145 0.32699007860623508 +0.26758089404998364 -0.90597288936521869 0.32585692434233743 +0.26660413751883816 -0.90759811547986069 0.32187126056253501 +0.25697201819559901 -0.92432848622760766 0.28050566540029309 +0.25313054028719528 -0.92991689161909552 0.26460466631117985 +0.25308933658097965 -0.92998804508785282 0.26439588316448515 +0.24930895838975131 -0.93567470552212895 0.24579255546759948 +0.24336599009814622 -0.94602936533555493 0.21094260961626568 +0.24152064540259124 -0.9485706826100101 0.20072208160320942 +0.2389405724498605 -0.95306848001363997 0.18186355091081885 +0.23440017510432309 -0.9594775020158709 0.15035899655759535 +0.23294949527472616 -0.96194916611186088 0.13775142693846476 +0.23259475183323847 -0.96237493457550005 0.13494008765512316 +0.23052646968895496 -0.96592607882051262 0.10986054425367281 +0.22988186145330614 -0.96732927410114633 0.099634331047451258 +0.22762677949308696 -0.97053761901938218 0.067701629511043929 +0.22743420727478347 -0.97114863140943242 0.060907607905721757 +0.22648000271342916 -0.97241808576487498 0.034988854233130681 +0.22628605152906522 -0.97313250261608553 0.01853460685588823 +0.22589145876869662 -0.97323020415808847 -0 +0.22628605152906522 -0.97313250261608553 -0.01853460685588823 +0.22648000271342922 -0.97241808576487498 -0.034988854233130834 +0.2274342072747835 -0.97114863140943242 -0.060907607905721785 +0.22762677949308691 -0.97053761901938207 -0.067701629511043929 +0.22988186145330608 -0.96732927410114655 -0.09963433104745123 +0.23052646968895496 -0.96592607882051251 -0.10986054425367295 +0.23259475183323847 -0.96237493457549972 -0.13494008765512314 +0.23294949527472619 -0.96194916611186088 -0.13775142693846473 +0.23440017510432298 -0.95947750201587068 -0.15035899655759499 +0.23894057244986044 -0.95306848001363997 -0.18186355091081888 +0.24152064540259116 -0.94857068261000999 -0.2007220816032094 +0.24336599009814619 -0.94602936533555493 -0.21094260961626565 +0.24930895838975131 -0.93567470552212884 -0.24579255546759954 +0.2530893365809796 -0.92998804508785282 -0.26439588316448515 +0.25313054028719528 -0.92991689161909541 -0.26460466631117996 +0.25697201819559901 -0.92432848622760766 -0.28050566540029298 +0.26660413751883794 -0.90759811547986147 -0.32187126056253368 +0.26758089404998375 -0.9059728893652188 -0.32585692434233748 +0.26791287934591512 -0.90549608434201145 -0.32699007860623563 +0.27219661039719123 -0.89987434907152986 -0.34005641981910134 +0.27399725512977041 -0.89741802080743249 -0.34558774394436126 +0.27461092234606044 -0.89644305776905853 -0.34753041451074085 +0.28617291708332143 -0.87638371280443894 -0.38483791504434917 +0.29057971437418995 -0.8695923485436825 -0.39708487175152696 +0.29401138453262826 -0.86471241548978539 -0.40567809407889899 +0.30362145533065937 -0.84916410602320314 -0.43023759412454321 +0.30729748704039861 -0.84278707285381271 -0.43974499787970978 +0.31474205002823552 -0.83109069623026088 -0.45671715648324696 +0.31682936237190801 -0.8280363774210906 -0.46105412139556579 +0.32993533901945349 -0.80654749644509327 -0.4886330537542477 +0.3395133710973568 -0.79211156275892003 -0.50664961250726259 +0.34177771381313393 -0.78887113359859207 -0.51061830246204121 +0.34243159318633287 -0.78789291377908466 -0.51176714118576783 +0.34288899659372696 -0.78713443636827329 -0.51257565524045923 +0.35314170479917451 -0.76928684914828649 -0.53075413092765567 +0.36517401588679066 -0.75 -0.5497573450331017 +0.36998650939197825 -0.74269333684247574 -0.5567855194421365 +0.37506412073313466 -0.73422479552976916 -0.56417193374348928 +0.39411849558532475 -0.7042679462719752 -0.58956860097969033 +0.39895802436542988 -0.69687753315555612 -0.5957410107715313 +0.40036321981550371 -0.69465247190942381 -0.5975302451883705 +0.40065939257699101 -0.69413734830776352 -0.5979056290568221 +0.40151480227572495 -0.69274920908571347 -0.59888293763788791 +0.40435813432554835 -0.6879005781223142 -0.60211592452938867 +0.42861413394522363 -0.64891100701386617 -0.62717432611494861 +0.4331208322019765 -0.64210794890239153 -0.63136143448574877 +0.44633019100468196 -0.62042776846682712 -0.64334361719230815 +0.4546732585899762 -0.60749293870920396 -0.65018159643527595 +0.45944041532897179 -0.59972505245462004 -0.65399889841309111 +0.46796403496887884 -0.58666916470964625 -0.66003296952840651 +0.4897853260968788 -0.55056521742650477 -0.67476755984413883 +0.49314081475211935 -0.54531814984023852 -0.67677227421098896 +0.5039242293873103 -0.52945918848859996 -0.68235511400187066 +0.50468001700647158 -0.52828837108788052 -0.68272481536695295 +0.50622685812276502 -0.52571510245600428 -0.68341702461536269 +0.50787822903713031 -0.52299793234814496 -0.68413337702600852 +0.52912853141459681 -0.48757002987147358 -0.69320320770179844 +0.53310523682898858 -0.48133611427487955 -0.69462568959831961 +0.54306000239317154 -0.46664565776233691 -0.69755165300174249 +0.5493198212532957 -0.45674068614295493 -0.69911600851089584 +0.56731181848165257 -0.42664579118104862 -0.70294074606773127 +0.57556494808430081 -0.41363385795819674 -0.70422028778974766 +0.58303192413334481 -0.40257317574481138 -0.70495163176324016 +0.59214384399202524 -0.38815954298187871 -0.70538094374692584 +0.6078561560079746 -0.36184045701812118 -0.70538094374692584 +0.61696807586665503 -0.34742682425518878 -0.70495163176324016 +0.62443505191569915 -0.33636614204180315 -0.70422028778974766 +0.63268818151834738 -0.32335420881895127 -0.70294074606773105 +0.65068017874670414 -0.29325931385704507 -0.69911600851089584 +0.6569399976068282 -0.28335434223766326 -0.69755165300174249 +0.66689476317101137 -0.26866388572512034 -0.69462568959831961 +0.67087146858540314 -0.2624299701285262 -0.69320320770179855 +0.69212177096286942 -0.22700206765185557 -0.68413337702600874 +0.69377314187723493 -0.22428489754399594 -0.68341702461536258 +0.69531998299352837 -0.2217116289121196 -0.68272481536695306 +0.69607577061268988 -0.22054081151140006 -0.68235511400187066 +0.70685918524788072 -0.20468185015976154 -0.67677227421098896 +0.71021467390312099 -0.19943478257349526 -0.67476755984413894 +0.73203596503112101 -0.16333083529035375 -0.66003296952840662 +0.74055958467102845 -0.15027494754537968 -0.65399889841309089 +0.74532674141002375 -0.14250706129079624 -0.65018159643527618 +0.75366980899531777 -0.12957223153317302 -0.64334361719230837 +0.76687916779802356 -0.10789205109760858 -0.63136143448574888 +0.77138586605477633 -0.1010889929861338 -0.62717432611494872 +0.79564186567445128 -0.06209942187768587 -0.60211592452938889 +0.79848519772427506 -0.057250790914286004 -0.59888293763788769 +0.79934060742300872 -0.055862651692236032 -0.59790562905682221 +0.79963678018449613 -0.055347528090576067 -0.59753024518837083 +0.80104197563456991 -0.053122466844444029 -0.59574101077153174 +0.80588150441467521 -0.045732053728024212 -0.58956860097968999 +0.82493587926686529 -0.015775204470230772 -0.56417193374348928 +0.83001349060802165 -0.0073066631575244411 -0.55678551944213672 +0.8348259841132093 -6.1457978060811826e-19 -0.5497573450331017 +0.84685829520082545 0.019286849148286479 -0.53075413092765555 +0.85711100340627278 0.037134436368273155 -0.51257565524045934 +0.85756840681366708 0.037892913779084561 -0.51176714118576794 +0.85822228618686602 0.038871133598591998 -0.51061830246204143 +0.86048662890264316 0.042111562758920099 -0.50664961250726259 +0.87006466098054647 0.056547496445093395 -0.48863305375424759 +0.88317063762809189 0.078036377421090597 -0.46105412139556579 +0.88525794997176432 0.081090696230260814 -0.45671715648324701 +0.89270251295960135 0.092787072853812741 -0.43974499787970978 +0.89637854466934042 0.099164106023202886 -0.43023759412454343 +0.90598861546737153 0.11471241548978532 -0.40567809407889888 +0.9094202856258099 0.11959234854368263 -0.39708487175152668 +0.91382708291667858 0.12638371280443889 -0.38483791504434905 +0.9253890776539393 0.14644305776905842 -0.34753041451074107 +0.92600274487022949 0.14741802080743258 -0.34558774394436131 +0.92780338960280884 0.14987434907153013 -0.34005641981910084 +0.93208712065408494 0.15549608434201162 -0.32699007860623541 +0.9324191059500162 0.15597288936521903 -0.32585692434233743 +0.93339586248116191 0.15759811547986141 -0.32187126056253423 +0.94302798180440084 0.17432848622760777 -0.2805056654002932 +0.94686945971280467 0.17991689161909563 -0.26460466631117985 +0.94691066341902053 0.17998804508785299 -0.26439588316448503 +0.95069104161024875 0.18567470552212903 -0.24579255546759926 +0.95663400990185365 0.19602936533555493 -0.21094260961626565 +0.95847935459740874 0.19857068261001024 -0.20072208160320937 +0.9610594275501394 0.20306848001363986 -0.18186355091081907 +0.96559982489567697 0.20947750201587081 -0.15035899655759494 +0.96705050472527398 0.21194916611186077 -0.13775142693846465 +0.96740524816676143 0.21237493457549977 -0.13494008765512311 +0.96947353031104488 0.21592607882051251 -0.10986054425367317 +0.97011813854669371 0.2173292741011463 -0.099634331047451508 +0.97237322050691288 0.2205376190193819 -0.067701629511043915 +0.97256579272521626 0.22114863140943242 -0.060907607905721556 +0.97351999728657068 0.22241808576487493 -0.034988854233130418 +0.97371394847093473 0.22313250261608547 -0.018534606855888307 +0.9741085412313033 0.22323020415808842 -0 +0.97371394847093473 0.22313250261608547 0.018534606855888314 +0.97351999728657068 0.22241808576487493 0.034988854233130445 +0.97256579272521648 0.22114863140943247 0.060907607905721736 +0.97237322050691288 0.22053761901938193 0.067701629511043915 +0.9701181385466936 0.21732927410114636 0.099634331047451369 +0.96947353031104511 0.21592607882051257 0.10986054425367309 +0.96740524816676143 0.21237493457549983 0.13494008765512311 +0.96705050472527376 0.21194916611186071 0.13775142693846484 +0.96559982489567697 0.20947750201587079 0.15035899655759488 +0.9610594275501394 0.20306848001363986 0.18186355091081891 +0.95847935459740885 0.19857068261001021 0.20072208160320931 +0.95663400990185365 0.1960293653355549 0.21094260961626565 +0.95069104161024875 0.185674705522129 0.24579255546759909 +0.94691066341902042 0.17998804508785277 0.2643958831644852 +0.94686945971280478 0.17991689161909552 0.26460466631117979 +0.94302798180440095 0.1743284862276076 0.2805056654002932 +0.93339586248116191 0.15759811547986138 0.32187126056253412 +0.93241910595001631 0.15597288936521894 0.32585692434233732 +0.93208712065408506 0.15549608434201159 0.3269900786062353 +0.92780338960280884 0.14987434907153008 0.34005641981910095 +0.92600274487022949 0.1474180208074326 0.34558774394436137 +0.92538907765393941 0.14644305776905847 0.34753041451074107 +0.91382708291667858 0.12638371280443894 0.38483791504434894 +0.9094202856258099 0.11959234854368264 0.39708487175152674 +0.90598861546737153 0.11471241548978531 0.40567809407889893 +0.89637854466934042 0.099164106023202803 0.43023759412454371 +0.89270251295960135 0.092787072853812713 0.43974499787970978 +0.88525794997176432 0.0810906962302608 0.4567171564832469 +0.88317063762809189 0.078036377421090528 0.46105412139556584 +0.87006466098054647 0.056547496445093395 0.48863305375424759 +0.86048662890264316 0.042111562758920092 0.50664961250726259 +0.85822228618686625 0.038871133598592303 0.51061830246204098 +0.85756840681366708 0.037892913779084658 0.51176714118576783 +0.85711100340627278 0.037134436368273058 0.51257565524045945 +0.84685829520082545 0.019286849148286413 0.53075413092765555 +0.83482598411320952 6.1457978060812172e-19 0.54975734503310147 +0.83001349060802176 -0.0073066631575244463 0.55678551944213661 +0.82493587926686529 -0.015775204470230869 0.56417193374348917 +0.80588150441467499 -0.045732053728024698 0.58956860097969011 +0.80104197563456947 -0.053122466844444688 0.59574101077153174 +0.79963678018449591 -0.05534752809057629 0.59753024518837039 +0.79934060742300872 -0.055862651692236226 0.5979056290568221 +0.79848519772427518 -0.05725079091428617 0.59888293763788758 +0.7956418656744515 -0.062099421877685829 0.60211592452938856 +0.77138586605477644 -0.10108899298613383 0.62717432611494861 +0.76687916779802356 -0.10789205109760849 0.63136143448574888 +0.75366980899531777 -0.12957223153317304 0.64334361719230837 +0.74532674141002397 -0.14250706129079604 0.65018159643527595 +0.74055958467102845 -0.15027494754537984 0.65399889841309089 +0.73203596503112123 -0.16333083529035369 0.66003296952840662 +0.71021467390312121 -0.19943478257349531 0.67476755984413883 +0.70685918524788072 -0.20468185015976154 0.67677227421098896 +0.69607577061268988 -0.22054081151139987 0.68235511400187043 +0.69531998299352837 -0.22171162891211948 0.68272481536695295 +0.69377314187723504 -0.22428489754399578 0.68341702461536258 +0.69212177096286909 -0.22700206765185593 0.68413337702600874 +0.67087146858540314 -0.2624299701285262 0.69320320770179844 +0.66689476317101137 -0.26866388572512034 0.69462568959831961 +0.65693999760682831 -0.28335434223766309 0.69755165300174227 +0.65068017874670425 -0.29325931385704501 0.69911600851089595 +0.63268818151834738 -0.32335420881895094 0.70294074606773105 +0.62443505191569892 -0.33636614204180326 0.70422028778974766 +0.61696807586665514 -0.34742682425518856 0.70495163176324005 +0.60785615600797449 -0.36184045701812129 0.70538094374692584 +0.59214384399202546 -0.3881595429818786 0.70538094374692573 +0.58303192413334481 -0.40257317574481138 0.70495163176324016 +0.57556494808430092 -0.41363385795819674 0.70422028778974766 +0.5673118184816528 -0.42664579118104884 0.70294074606773105 +0.5493198212532957 -0.45674068614295493 0.69911600851089584 +0.54306000239317154 -0.46664565776233696 0.69755165300174249 +0.53310523682898858 -0.4813361142748796 0.69462568959831961 +0.52912853141459681 -0.48757002987147369 0.69320320770179866 +0.50787822903712998 -0.52299793234814529 0.68413337702600852 +0.50622685812276469 -0.5257151024560045 0.68341702461536258 +0.50468001700647158 -0.52828837108788052 0.68272481536695295 +0.50392422938731019 -0.52945918848859996 0.68235511400187066 +0.49314081475211924 -0.54531814984023841 0.67677227421098896 +0.48978532609687886 -0.55056521742650477 0.67476755984413894 +0.46796403496887878 -0.58666916470964625 0.66003296952840662 +0.45944041532897167 -0.59972505245462004 0.65399889841309089 +0.45467325858997609 -0.60749293870920384 0.65018159643527607 +0.44633019100468213 -0.6204277684668269 0.64334361719230826 +0.4331208322019765 -0.64210794890239153 0.63136143448574877 +0.42861413394522363 -0.64891100701386595 0.62717432611494872 +0.40435813432554857 -0.6879005781223142 0.60211592452938856 +0.401514802275725 -0.69274920908571369 0.59888293763788769 +0.40065939257699124 -0.69413734830776352 0.5979056290568221 +0.40036321981550405 -0.6946524719094237 0.59753024518837061 +0.39895802436543049 -0.69687753315555545 0.59574101077153174 +0.39411849558532508 -0.7042679462719752 0.58956860097969033 +0.37506412073313489 -0.73422479552976916 0.5641719337434894 +0.36998650939197836 -0.74269333684247552 0.55678551944213661 +0.36517401588679066 -0.75 0.5497573450331017 +0.35314170479917451 -0.76928684914828649 0.53075413092765567 +0.34288899659372707 -0.78713443636827329 0.51257565524045945 +0.34243159318633287 -0.78789291377908466 0.51176714118576805 +0.34177771381313388 -0.78887113359859229 0.51061830246204121 +0.33951337109735685 -0.79211156275892003 0.50664961250726281 +0.32993533901945349 -0.80654749644509338 0.4886330537542477 +0.31682936237190812 -0.8280363774210906 0.46105412139556601 +0.31474205002823563 -0.83109069623026077 0.45671715648324707 +0.30729748704039872 -0.84278707285381294 0.43974499787970983 +0.30362145533065943 -0.84916410602320291 0.43023759412454349 +0.29401138453262832 -0.86471241548978517 0.4056780940788991 +0.29057971437419 -0.8695923485436825 0.39708487175152685 +0.28617291708332138 -0.87638371280443861 0.38483791504434917 +0.27461092234606033 -0.8964430577690583 0.34753041451074085 +-0.27542468411056592 0.78691464920034204 0.5521834643091893 +-0.4456465002315988 0.3412681489687433 0.82760814841975494 +-1.2310405966106288e-18 0.065843464858177478 0.99782996454078776 +1.2310405966106288e-18 0.065843464858177478 -0.99782996454078776 +-0.44564650023159863 0.34126814896874336 -0.82760814841975505 +-0.27542468411056592 0.78691464920034204 -0.55218346430918919 +0.27542468411056592 0.78691464920034204 -0.5521834643091893 +0.4456465002315988 0.3412681489687433 -0.82760814841975494 +0.065843464858177478 -0.99782996454078776 1.2310405966106288e-18 +-0.4456465002315988 -0.3412681489687433 -0.82760814841975494 +-0.99782996454078776 -1.231040596610629e-18 -0.065843464858177492 +-0.55218346430918919 -0.27542468411056592 0.78691464920034204 +-0.78691464920034204 0.5521834643091893 0.27542468411056592 +1.2310405966106288e-18 -0.065843464858177478 0.99782996454078776 +0.5521834643091893 -0.27542468411056592 0.78691464920034204 +-0.065843464858177492 0.99782996454078776 1.231040596610629e-18 +-0.3412681489687433 0.82760814841975494 0.44564650023159885 +-0.82760814841975494 0.44564650023159885 0.34126814896874336 +-0.5521834643091893 0.27542468411056592 0.78691464920034204 +-0.44564650023159863 -0.34126814896874336 0.82760814841975505 +0.5521834643091893 0.27542468411056592 -0.78691464920034204 +0.44564650023159863 -0.34126814896874336 -0.82760814841975505 +-1.2310405966106288e-18 -0.065843464858177478 -0.99782996454078776 +-0.5521834643091893 -0.27542468411056592 -0.78691464920034204 +-0.55218346430918919 0.27542468411056592 -0.78691464920034204 +-0.78691464920034204 0.55218346430918919 -0.27542468411056592 +-0.34126814896874336 0.82760814841975505 -0.44564650023159863 +0.065843464858177492 0.99782996454078776 -1.231040596610629e-18 +0.3412681489687433 0.82760814841975494 -0.44564650023159885 +0.82760814841975505 0.44564650023159885 -0.34126814896874336 +0.4456465002315988 -0.3412681489687433 0.82760814841975494 +0.27542468411056592 -0.78691464920034204 0.5521834643091893 +-0.34126814896874336 -0.82760814841975505 0.44564650023159863 +-0.065843464858177478 -0.99782996454078776 -1.2310405966106288e-18 +-0.27542468411056592 -0.78691464920034204 -0.5521834643091893 +0.27542468411056592 -0.78691464920034204 -0.55218346430918919 +0.55218346430918919 -0.27542468411056592 -0.78691464920034204 +0.78691464920034204 0.5521834643091893 -0.27542468411056592 +-0.3412681489687433 -0.82760814841975505 -0.44564650023159885 +-0.82760814841975505 -0.44564650023159885 -0.34126814896874336 +-0.78691464920034204 -0.5521834643091893 -0.27542468411056592 +-0.82760814841975505 -0.44564650023159863 0.34126814896874336 +-0.78691464920034204 -0.55218346430918919 0.27542468411056592 +-0.27542468411056592 -0.78691464920034204 0.55218346430918919 +-0.82760814841975505 0.44564650023159863 -0.34126814896874336 +-0.99782996454078776 1.231040596610629e-18 0.065843464858177492 +-0.26105426945011495 0.63457761123722189 0.7274351680516471 +-0.068996282000725467 0.75327597529184531 0.65407554465688111 +-0.23033669342916982 0.33088129441328606 0.9151298141069959 +-0.30369631682393589 0.52293928186267569 0.79643145005237237 +0.1186983640546234 0.26188501241256062 0.95777186148081694 +-0.11869836405462342 0.26188501241256068 0.95777186148081694 +-0.1186983640546234 0.26188501241256062 -0.95777186148081694 +0.11869836405462342 0.26188501241256068 -0.95777186148081694 +-0.30369631682393589 0.52293928186267558 -0.79643145005237248 +-0.23033669342916974 0.33088129441328601 -0.9151298141069959 +-0.068996282000725426 0.75327597529184531 -0.65407554465688111 +-0.26105426945011484 0.63457761123722189 -0.7274351680516471 +0.26105426945011495 0.63457761123722189 -0.7274351680516471 +0.068996282000725467 0.75327597529184531 -0.65407554465688111 +0.23033669342916982 0.33088129441328606 -0.9151298141069959 +0.30369631682393589 0.52293928186267569 -0.79643145005237237 +-0.23033669342916982 -0.33088129441328606 -0.9151298141069959 +-0.30369631682393589 -0.52293928186267569 -0.79643145005237237 +-0.95777186148081694 0.1186983640546234 -0.26188501241256062 +-0.95777186148081694 -0.11869836405462342 -0.26188501241256068 +-0.65407554465688111 -0.068996282000725426 0.75327597529184531 +-0.7274351680516471 -0.26105426945011484 0.63457761123722201 +-0.63457761123722189 0.7274351680516471 0.26105426945011495 +-0.75327597529184531 0.65407554465688111 0.068996282000725467 +-0.1186983640546234 -0.26188501241256062 0.95777186148081694 +0.11869836405462342 -0.26188501241256068 0.95777186148081694 +0.65407554465688111 -0.068996282000725467 0.75327597529184531 +-0.26188501241256062 0.95777186148081694 -0.1186983640546234 +-0.26188501241256068 0.95777186148081694 0.11869836405462342 +-0.33088129441328606 0.9151298141069959 0.23033669342916982 +-0.52293928186267569 0.79643145005237237 0.30369631682393589 +-0.9151298141069959 0.23033669342916982 0.33088129441328606 +-0.79643145005237237 0.30369631682393589 0.52293928186267569 +-0.7274351680516471 0.26105426945011495 0.63457761123722189 +-0.65407554465688111 0.068996282000725467 0.75327597529184531 +-0.30369631682393589 -0.52293928186267558 0.79643145005237248 +-0.23033669342916974 -0.33088129441328601 0.9151298141069959 +0.7274351680516471 0.26105426945011495 -0.63457761123722189 +0.65407554465688111 0.068996282000725467 -0.75327597529184531 +0.30369631682393589 -0.52293928186267558 -0.79643145005237248 +0.23033669342916974 -0.33088129441328601 -0.9151298141069959 +0.1186983640546234 -0.26188501241256062 -0.95777186148081694 +-0.11869836405462342 -0.26188501241256068 -0.95777186148081694 +-0.7274351680516471 -0.26105426945011495 -0.63457761123722189 +-0.65407554465688111 -0.068996282000725467 -0.75327597529184531 +-0.65407554465688111 0.068996282000725426 -0.75327597529184531 +-0.7274351680516471 0.26105426945011484 -0.63457761123722201 +-0.75327597529184531 0.65407554465688111 -0.068996282000725426 +-0.63457761123722201 0.72743516805164721 -0.2610542694501149 +-0.52293928186267558 0.79643145005237248 -0.30369631682393589 +-0.33088129441328601 0.9151298141069959 -0.23033669342916974 +0.26188501241256062 0.95777186148081694 0.1186983640546234 +0.26188501241256068 0.95777186148081694 -0.11869836405462342 +0.33088129441328606 0.9151298141069959 -0.23033669342916982 +0.52293928186267569 0.79643145005237237 -0.30369631682393589 +0.79643145005237237 0.30369631682393589 -0.52293928186267569 +0.23033669342916982 -0.33088129441328606 0.9151298141069959 +0.30369631682393589 -0.52293928186267569 0.79643145005237237 +0.26105426945011495 -0.63457761123722189 0.7274351680516471 +0.068996282000725467 -0.75327597529184531 0.65407554465688111 +-0.52293928186267558 -0.79643145005237248 0.30369631682393589 +-0.33088129441328601 -0.9151298141069959 0.23033669342916974 +-0.26188501241256062 -0.95777186148081694 0.1186983640546234 +-0.26188501241256068 -0.95777186148081694 -0.11869836405462342 +-0.26105426945011495 -0.63457761123722189 -0.7274351680516471 +-0.068996282000725467 -0.75327597529184531 -0.65407554465688111 +0.068996282000725426 -0.75327597529184531 -0.65407554465688111 +0.26105426945011484 -0.63457761123722201 -0.7274351680516471 +0.65407554465688111 -0.068996282000725426 -0.75327597529184531 +0.63457761123722189 0.7274351680516471 -0.26105426945011495 +0.75327597529184531 0.65407554465688111 -0.068996282000725467 +-0.33088129441328606 -0.9151298141069959 -0.23033669342916982 +-0.52293928186267569 -0.79643145005237237 -0.30369631682393589 +-0.9151298141069959 -0.23033669342916982 -0.33088129441328606 +-0.79643145005237237 -0.30369631682393589 -0.52293928186267569 +-0.63457761123722189 -0.7274351680516471 -0.26105426945011495 +-0.75327597529184531 -0.65407554465688111 -0.068996282000725467 +-0.79643145005237248 -0.30369631682393589 0.52293928186267558 +-0.9151298141069959 -0.23033669342916974 0.33088129441328601 +-0.75327597529184531 -0.65407554465688111 0.068996282000725426 +-0.63457761123722201 -0.7274351680516471 0.26105426945011484 +-0.068996282000725426 -0.75327597529184531 0.65407554465688111 +-0.26105426945011484 -0.63457761123722201 0.7274351680516471 +-0.79643145005237248 0.30369631682393589 -0.52293928186267558 +-0.9151298141069959 0.23033669342916974 -0.33088129441328601 +-0.95777186148081694 -0.1186983640546234 0.26188501241256062 +-0.95777186148081694 0.11869836405462342 0.26188501241256068 +0.25355721782048268 0.90387507728811034 0.34253810440658672 +0.069930348042498217 0.88287877117884817 0.46436496618972251 +-0.46863573506266099 0.77633914798103421 0.42151877198336174 +-0.46047178079401074 0.64151089172333209 0.61353851948571902 +-0.5621285844293008 0.13929176414434621 0.81523570763863507 +-0.35451755943338797 0.13781977899394779 0.92483674698373319 +0.12122116383748827 -0.13320400767343918 0.98364735641266243 +0.24136787945551613 0.067889430951449614 0.96805607891910661 +-0.12122116383748827 -0.13320400767343918 -0.98364735641266243 +-0.24136787945551613 0.067889430951449614 -0.96805607891910661 +-0.63704738383668802 0.33543172738922172 -0.69401454380114713 +-0.50369111272938427 0.52836121174546036 -0.68346886752821701 +-0.27249577181778528 0.89756031181852247 -0.34659997257597425 +-0.069930348042498217 0.88287877117884817 -0.46436496618972251 +0.46863573506266099 0.77633914798103421 -0.42151877198336174 +0.46047178079401074 0.64151089172333209 -0.61353851948571902 +0.5621285844293008 0.13929176414434621 -0.81523570763863507 +0.35451755943338797 0.13781977899394779 -0.92483674698373319 +0.13929176414434621 -0.81523570763863507 0.5621285844293008 +0.13781977899394779 -0.92483674698373319 0.35451755943338797 +-0.13320400767343918 -0.98364735641266243 -0.12122116383748827 +0.067889430951449614 -0.96805607891910661 -0.24136787945551613 +-0.5621285844293008 -0.13929176414434621 -0.81523570763863507 +-0.35451755943338797 -0.13781977899394779 -0.92483674698373319 +-0.98364735641266243 0.12122116383748827 0.13320400767343918 +-0.96805607891910661 0.24136787945551613 -0.067889430951449614 +-0.34659997257597425 -0.27249577181778528 0.89756031181852247 +-0.46436496618972251 -0.069930348042498217 0.88287877117884817 +-0.77633914798103421 0.42151877198336174 0.46863573506266099 +-0.64151089172333209 0.61353851948571902 0.46047178079401074 +-0.12122116383748827 0.13320400767343918 0.98364735641266243 +-0.24136787945551613 -0.067889430951449614 0.96805607891910661 +0.42151877198336168 -0.46863573506266087 0.77633914798103421 +0.34253810440658672 0.25355721782048268 0.90387507728811034 +0.46436496618972256 0.069930348042498217 0.88287877117884817 +0.90387507728811034 0.34253810440658677 0.25355721782048279 +0.88287877117884817 0.46436496618972256 0.069930348042498217 +0.13320400767343918 0.98364735641266243 -0.12122116383748827 +-0.067889430951449614 0.96805607891910661 -0.24136787945551613 +-0.13929176414434621 0.81523570763863507 0.5621285844293008 +-0.13781977899394779 0.92483674698373319 0.35451755943338797 +-0.81523570763863507 0.5621285844293008 0.13929176414434621 +-0.92483674698373297 0.35451755943338792 0.13781977899394779 +-0.42151877198336168 0.46863573506266087 0.77633914798103421 +-0.61353851948571902 0.46047178079401074 0.64151089172333209 +-0.63704738383668802 -0.33543172738922172 0.69401454380114713 +-0.50369111272938438 -0.52836121174546025 0.68346886752821701 +0.42151877198336168 0.46863573506266087 -0.77633914798103421 +0.61353851948571902 0.46047178079401074 -0.64151089172333209 +0.12122116383748827 0.13320400767343918 -0.98364735641266243 +0.24136787945551613 -0.067889430951449614 -0.96805607891910661 +-0.42151877198336168 -0.46863573506266087 -0.77633914798103421 +-0.61353851948571902 -0.46047178079401074 -0.64151089172333209 +-0.34659997257597425 0.27249577181778528 -0.89756031181852247 +-0.46436496618972256 0.069930348042498217 -0.88287877117884817 +-0.89756031181852258 0.3465999725759743 -0.27249577181778534 +-0.88287877117884817 0.46436496618972251 -0.069930348042498217 +-0.33543172738922172 0.69401454380114713 -0.63704738383668802 +-0.52836121174546025 0.68346886752821701 -0.50369111272938438 +-0.13320400767343918 0.98364735641266243 0.12122116383748827 +0.067889430951449614 0.96805607891910661 0.24136787945551613 +0.13929176414434621 0.81523570763863507 -0.5621285844293008 +0.13781977899394779 0.92483674698373319 -0.35451755943338797 +0.81523570763863507 0.5621285844293008 -0.13929176414434621 +0.92483674698373297 0.35451755943338792 -0.13781977899394779 +0.5621285844293008 -0.13929176414434621 0.81523570763863507 +0.35451755943338797 -0.13781977899394779 0.92483674698373319 +-0.33543172738922172 -0.69401454380114713 0.63704738383668802 +-0.52836121174546036 -0.68346886752821701 0.50369111272938438 +0.13320400767343918 -0.98364735641266243 0.12122116383748827 +-0.067889430951449614 -0.96805607891910661 0.24136787945551613 +-0.46863573506266087 -0.77633914798103421 -0.42151877198336168 +-0.46047178079401074 -0.64151089172333209 -0.61353851948571902 +0.069930348042498217 -0.88287877117884817 -0.46436496618972256 +0.34659997257597425 -0.27249577181778528 -0.89756031181852247 +0.46436496618972251 -0.069930348042498217 -0.88287877117884817 +0.77633914798103421 0.42151877198336168 -0.46863573506266087 +0.64151089172333209 0.61353851948571902 -0.46047178079401074 +-0.13929176414434621 -0.81523570763863507 -0.5621285844293008 +-0.13781977899394779 -0.92483674698373319 -0.35451755943338797 +-0.81523570763863507 -0.5621285844293008 -0.13929176414434621 +-0.92483674698373297 -0.35451755943338792 -0.13781977899394779 +-0.77633914798103421 -0.42151877198336168 -0.46863573506266087 +-0.64151089172333209 -0.61353851948571902 -0.46047178079401074 +-0.69401454380114724 -0.63704738383668813 0.33543172738922178 +-0.68346886752821701 -0.50369111272938427 0.52836121174546036 +-0.89756031181852258 -0.3465999725759743 0.27249577181778534 +-0.88287877117884817 -0.46436496618972251 0.069930348042498217 +-0.27249577181778528 -0.89756031181852247 0.34659997257597425 +-0.069930348042498217 -0.88287877117884817 0.46436496618972251 +-0.69401454380114724 0.63704738383668813 -0.33543172738922178 +-0.68346886752821701 0.50369111272938438 -0.52836121174546036 +-0.98364735641266243 -0.12122116383748827 -0.13320400767343918 +-0.96805607891910661 -0.24136787945551613 0.067889430951449614 +0.14324145828887103 0.44478475305090454 0.88410882140193769 +0.15717574894030886 0.48126519958548875 0.86156266551879135 +0.12122116383748825 0.13320400767343915 0.98364735641266243 +0.35451755943338792 0.13781977899394779 0.92483674698373319 +-0.13183850301701977 0.66669512270283438 0.73357768674250445 +-0.21331917890744348 0.45337594379539092 0.86541618975952417 +-0.06165331891640554 0.59501600355390483 0.8013456331579597 +-0.069930348042498217 0.88287877117884817 0.46436496618972245 +-1.2287154012371122e-18 0.32153744077837104 0.94689686564994791 +-0.099757165525981073 0.49525883802792381 0.86299895207436528 +-0.33543172738922172 0.69401454380114691 0.63704738383668813 +-0.50369111272938427 0.52836121174546025 0.68346886752821701 +-1.2262216765384848e-18 0.43360551911151823 0.90110279868394083 +-0.34659997257597441 0.27249577181778545 0.89756031181852258 +-0.24136787945551613 0.067889430951449614 0.96805607891910661 +-0.21331917890744351 0.45337594379539092 -0.86541618975952417 +1.2262216765384848e-18 0.43360551911151823 -0.90110279868394083 +0.34659997257597441 0.27249577181778545 -0.89756031181852258 +0.24136787945551613 0.067889430951449614 -0.96805607891910661 +-0.13183850301701969 0.66669512270283426 -0.73357768674250456 +-0.099757165525981059 0.49525883802792381 -0.86299895207436528 +-0.12122116383748825 0.13320400767343915 -0.98364735641266243 +-0.35451755943338792 0.13781977899394779 -0.92483674698373319 +0.13183850301701977 0.66669512270283438 -0.73357768674250434 +-0.061653318916405575 0.59501600355390494 -0.80134563315795981 +-0.42151877198336163 0.46863573506266104 -0.77633914798103421 +-0.46047178079401074 0.64151089172333209 -0.61353851948571891 +0.21331917890744348 0.45337594379539092 -0.86541618975952417 +0.061653318916405561 0.59501600355390494 -0.8013456331579597 +-0.13929176414434621 0.81523570763863507 -0.5621285844293008 +0.069930348042498217 0.88287877117884817 -0.46436496618972245 +1.2287154012371122e-18 0.32153744077837104 -0.94689686564994791 +0.099757165525981087 0.49525883802792392 -0.86299895207436528 +0.33543172738922172 0.69401454380114691 -0.63704738383668813 +0.50369111272938427 0.52836121174546025 -0.68346886752821701 +0.067889430951449614 -0.96805607891910661 0.24136787945551613 +0.13320400767343915 -0.98364735641266243 -0.12122116383748825 +0.13781977899394779 -0.92483674698373319 -0.35451755943338792 +0.86156266551879135 0.15717574894030889 0.48126519958548886 +0.92483674698373319 0.35451755943338792 0.13781977899394779 +-1.2287154012371122e-18 -0.32153744077837104 -0.94689686564994791 +-0.099757165525981087 -0.49525883802792392 -0.86299895207436528 +-0.33543172738922172 -0.69401454380114691 -0.63704738383668813 +-0.50369111272938427 -0.52836121174546025 -0.68346886752821701 +-0.86541618975952417 0.21331917890744351 -0.45337594379539092 +-0.90110279868394083 -1.2262216765384848e-18 -0.43360551911151823 +-0.89756031181852236 -0.34659997257597436 -0.27249577181778539 +-0.96805607891910661 -0.24136787945551613 -0.067889430951449614 +-0.73357768674250445 0.13183850301701977 0.66669512270283438 +-0.80134563315795981 -0.061653318916405575 0.59501600355390494 +-0.77633914798103421 -0.42151877198336163 0.46863573506266104 +-0.61353851948571891 -0.46047178079401074 0.64151089172333209 +-0.45337594379539092 0.86541618975952417 0.21331917890744348 +-0.59501600355390494 0.8013456331579597 0.061653318916405561 +-0.81523570763863507 0.5621285844293008 -0.13929176414434621 +-0.88287877117884817 0.46436496618972245 0.069930348042498217 +-0.21331917890744351 -0.45337594379539092 0.86541618975952417 +1.2262216765384848e-18 -0.43360551911151823 0.90110279868394083 +0.34659997257597441 -0.27249577181778545 0.89756031181852258 +0.24136787945551616 -0.067889430951449614 0.96805607891910661 +0.49650199476975138 0.13950602492257505 0.85675191169903997 +0.51873480041451092 0.13843733448120876 0.84282425105969128 +0.46436496618972245 -0.069930348042498203 0.88287877117884817 +0.77318510024650355 0.10194841255523886 0.62479622481419606 +0.66669512270283438 0.73357768674250434 -0.13183850301701977 +0.44478475305090454 0.88410882140193769 0.14324145828887103 +0.48126519958548886 0.86156266551879135 0.15717574894030889 +0.13320400767343918 0.98364735641266243 0.12122116383748827 +0.13781977899394779 0.92483674698373319 0.35451755943338792 +-0.45337594379539092 0.86541618975952417 -0.21331917890744351 +-0.43360551911151823 0.90110279868394083 1.2262216765384848e-18 +-0.27249577181778539 0.89756031181852236 0.34659997257597436 +-0.067889430951449614 0.96805607891910661 0.24136787945551613 +-0.32153744077837104 0.94689686564994791 1.2287154012371122e-18 +-0.49525883802792392 0.86299895207436528 0.099757165525981087 +-0.69401454380114691 0.63704738383668813 0.33543172738922172 +-0.52836121174546025 0.68346886752821701 0.50369111272938427 +-0.94689686564994791 1.2287154012371122e-18 0.32153744077837104 +-0.86299895207436528 0.099757165525981073 0.49525883802792381 +-0.63704738383668813 0.33543172738922172 0.69401454380114691 +-0.68346886752821701 0.50369111272938438 0.52836121174546036 +-0.86541618975952417 0.21331917890744348 0.45337594379539092 +-0.8013456331579597 0.06165331891640554 0.59501600355390483 +-0.5621285844293008 -0.13929176414434621 0.81523570763863529 +-0.46436496618972234 0.069930348042498203 0.88287877117884817 +-0.13183850301701969 -0.66669512270283426 0.73357768674250456 +-0.099757165525981059 -0.49525883802792381 0.86299895207436528 +-0.12122116383748825 -0.13320400767343915 0.98364735641266243 +-0.35451755943338792 -0.13781977899394779 0.92483674698373319 +0.86541618975952417 0.21331917890744348 -0.45337594379539092 +0.8013456331579597 0.06165331891640554 -0.59501600355390483 +0.5621285844293008 -0.13929176414434621 -0.81523570763863529 +0.46436496618972234 0.069930348042498203 -0.88287877117884817 +0.13183850301701969 -0.66669512270283426 -0.73357768674250456 +0.099757165525981059 -0.49525883802792381 -0.86299895207436528 +0.12122116383748825 -0.13320400767343915 -0.98364735641266243 +0.35451755943338792 -0.13781977899394779 -0.92483674698373319 +0.21331917890744351 -0.45337594379539092 -0.86541618975952417 +-1.2262216765384848e-18 -0.43360551911151823 -0.90110279868394083 +-0.34659997257597441 -0.27249577181778545 -0.89756031181852258 +-0.24136787945551616 -0.067889430951449614 -0.96805607891910661 +-0.86541618975952417 -0.21331917890744348 -0.45337594379539092 +-0.8013456331579597 -0.06165331891640554 -0.59501600355390483 +-0.5621285844293008 0.13929176414434621 -0.81523570763863529 +-0.46436496618972245 -0.069930348042498203 -0.88287877117884817 +-0.73357768674250445 -0.13183850301701977 -0.66669512270283438 +-0.80134563315795981 0.061653318916405582 -0.59501600355390505 +-0.77633914798103421 0.42151877198336163 -0.46863573506266104 +-0.61353851948571891 0.4604717807940108 -0.64151089172333209 +-0.66669512270283438 0.73357768674250434 0.13183850301701977 +-0.59501600355390505 0.80134563315795981 -0.061653318916405582 +-0.46863573506266104 0.77633914798103421 -0.42151877198336163 +-0.64151089172333209 0.61353851948571891 -0.4604717807940108 +-0.66669512270283426 0.73357768674250456 -0.13183850301701969 +-0.49525883802792381 0.86299895207436528 -0.099757165525981059 +-0.13320400767343918 0.98364735641266243 -0.12122116383748827 +-0.13781977899394779 0.92483674698373319 -0.35451755943338792 +0.43360551911151823 0.90110279868394083 -1.2262216765384848e-18 +0.27249577181778539 0.89756031181852236 -0.34659997257597436 +0.067889430951449614 0.96805607891910661 -0.24136787945551613 +0.32153744077837104 0.94689686564994791 -1.2287154012371122e-18 +0.49525883802792392 0.86299895207436528 -0.099757165525981087 +0.69401454380114691 0.63704738383668813 -0.33543172738922172 +0.52836121174546025 0.68346886752821701 -0.50369111272938427 +0.63704738383668813 0.33543172738922172 -0.69401454380114691 +0.68346886752821701 0.50369111272938438 -0.52836121174546036 +1.2287154012371122e-18 -0.32153744077837104 0.94689686564994791 +0.099757165525981087 -0.49525883802792392 0.86299895207436528 +0.21331917890744348 -0.45337594379539092 0.86541618975952417 +0.061653318916405561 -0.59501600355390494 0.8013456331579597 +-0.13929176414434621 -0.81523570763863529 0.5621285844293008 +0.069930348042498203 -0.88287877117884817 0.46436496618972234 +-0.66669512270283426 -0.73357768674250456 0.13183850301701969 +-0.49525883802792381 -0.86299895207436528 0.099757165525981059 +-0.13320400767343915 -0.98364735641266243 0.12122116383748825 +-0.13781977899394779 -0.92483674698373319 0.35451755943338792 +-0.45337594379539092 -0.86541618975952417 0.21331917890744351 +-0.43360551911151823 -0.90110279868394083 -1.2262216765384848e-18 +-0.27249577181778539 -0.89756031181852236 -0.34659997257597436 +-0.067889430951449614 -0.96805607891910661 -0.24136787945551616 +-0.21331917890744348 -0.45337594379539092 -0.86541618975952417 +-0.061653318916405561 -0.59501600355390494 -0.8013456331579597 +0.13929176414434621 -0.81523570763863529 -0.5621285844293008 +-0.069930348042498203 -0.88287877117884817 -0.46436496618972245 +-0.13183850301701977 -0.66669512270283438 -0.73357768674250434 +0.061653318916405582 -0.59501600355390505 -0.80134563315795981 +0.42151877198336163 -0.46863573506266104 -0.77633914798103421 +0.73357768674250445 0.13183850301701977 -0.66669512270283438 +0.89756031181852236 0.34659997257597436 -0.27249577181778539 +0.45337594379539092 0.86541618975952417 -0.21331917890744348 +0.59501600355390494 0.8013456331579597 -0.061653318916405561 +0.88287877117884817 0.46436496618972245 -0.069930348042498203 +-0.32153744077837104 -0.94689686564994791 -1.2287154012371122e-18 +-0.49525883802792392 -0.86299895207436528 -0.099757165525981087 +-0.69401454380114691 -0.63704738383668813 -0.33543172738922172 +-0.52836121174546025 -0.68346886752821701 -0.50369111272938427 +-0.94689686564994791 -1.2287154012371122e-18 -0.32153744077837104 +-0.86299895207436528 -0.099757165525981073 -0.49525883802792381 +-0.63704738383668813 -0.33543172738922172 -0.69401454380114691 +-0.68346886752821701 -0.50369111272938438 -0.52836121174546036 +-0.45337594379539092 -0.86541618975952417 -0.21331917890744348 +-0.59501600355390494 -0.8013456331579597 -0.061653318916405561 +-0.81523570763863529 -0.5621285844293008 0.13929176414434621 +-0.88287877117884817 -0.46436496618972234 -0.069930348042498203 +-0.73357768674250456 -0.13183850301701969 0.66669512270283426 +-0.86299895207436528 -0.099757165525981059 0.49525883802792381 +-0.98364735641266243 -0.12122116383748827 0.13320400767343918 +-0.92483674698373319 -0.35451755943338792 0.13781977899394779 +-0.66669512270283438 -0.73357768674250434 -0.13183850301701977 +-0.59501600355390505 -0.80134563315795981 0.061653318916405582 +-0.46863573506266104 -0.77633914798103421 0.42151877198336163 +-0.64151089172333209 -0.61353851948571891 0.4604717807940108 +0.13183850301701977 -0.66669512270283438 0.73357768674250434 +-0.061653318916405582 -0.59501600355390505 0.80134563315795981 +-0.42151877198336163 -0.46863573506266104 0.77633914798103421 +-0.4604717807940108 -0.64151089172333209 0.61353851948571891 +-0.73357768674250456 0.13183850301701969 -0.66669512270283426 +-0.86299895207436528 0.099757165525981059 -0.49525883802792381 +-0.98364735641266243 0.12122116383748827 -0.13320400767343918 +-0.92483674698373319 0.35451755943338792 -0.13781977899394779 +-0.86541618975952417 -0.21331917890744351 0.45337594379539092 +-0.90110279868394083 1.2262216765384848e-18 0.43360551911151823 +-0.89756031181852236 0.34659997257597436 0.27249577181778539 +-0.96805607891910661 0.24136787945551613 0.067889430951449614 +-0.27466844612618391 0.86574218443040074 0.41838703947458195 +-0.40480738995889742 0.82178222598517658 0.40100492526839776 +-0.57608383788574413 0.33994835690442576 0.74334549596053445 +-0.58942568680894825 0.20731239180326447 0.78076816785433134 +-0.081370946056690249 -0.066381045638217229 0.9944708773603258 +0.040522281668716874 -0.13192856911395229 0.99043061207734606 +0.081370946056690249 -0.066381045638217229 -0.9944708773603258 +-0.040522281668716874 -0.13192856911395229 -0.99043061207734606 +-0.52579382752597525 0.20828740048796671 -0.8247164420172246 +-0.61446983418191203 0.27287882084494514 -0.74024588618561449 +-0.40632940254264294 0.78437123837371081 -0.46867704983435055 +-0.33924096091721673 0.86230450765389344 -0.37596077789543381 +0.27466844612618391 0.86574218443040074 -0.41838703947458195 +0.40480738995889742 0.82178222598517658 -0.40100492526839776 +0.57608383788574413 0.33994835690442576 -0.74334549596053445 +0.58942568680894825 0.20731239180326447 -0.78076816785433134 +0.20731239180326447 -0.78076816785433134 0.58942568680894825 +-0.066381045638217229 -0.9944708773603258 0.081370946056690249 +-0.13192856911395229 -0.99043061207734606 -0.040522281668716874 +0.20828740048796671 -0.8247164420172246 -0.52579382752597525 +0.27287882084494514 -0.74024588618561449 -0.61446983418191203 +-0.57608383788574413 -0.33994835690442576 -0.74334549596053445 +-0.58942568680894825 -0.20731239180326447 -0.78076816785433134 +-0.9944708773603258 -0.081370946056690249 0.066381045638217229 +-0.99043061207734606 0.040522281668716874 0.13192856911395229 +-0.46867704983435055 -0.40632940254264294 0.78437123837371081 +-0.37596077789543381 -0.33924096091721673 0.86230450765389344 +-0.86574218443040074 0.41838703947458195 0.27466844612618391 +-0.82178222598517658 0.40100492526839776 0.40480738995889742 +0.081370946056690249 0.066381045638217229 0.9944708773603258 +-0.040522281668716874 0.13192856911395229 0.99043061207734606 +0.41838703947458189 -0.27466844612618385 0.86574218443040085 +0.40100492526839776 -0.40480738995889742 0.82178222598517658 +0.066381045638217229 0.9944708773603258 0.081370946056690249 +0.13192856911395229 0.99043061207734606 -0.040522281668716874 +-0.33994835690442576 0.74334549596053445 0.57608383788574413 +-0.20731239180326447 0.78076816785433134 0.58942568680894825 +-0.74334549596053445 0.57608383788574413 0.33994835690442576 +-0.78076816785433134 0.58942568680894825 0.20731239180326447 +-0.41838703947458189 0.27466844612618385 0.86574218443040085 +-0.40100492526839776 0.40480738995889742 0.82178222598517658 +-0.52579382752597525 -0.20828740048796671 0.8247164420172246 +-0.61446983418191203 -0.27287882084494514 0.74024588618561449 +0.41838703947458189 0.27466844612618385 -0.86574218443040085 +0.40100492526839776 0.40480738995889742 -0.82178222598517658 +0.52579382752597525 -0.20828740048796671 -0.8247164420172246 +-0.081370946056690249 0.066381045638217229 -0.9944708773603258 +0.040522281668716874 0.13192856911395229 -0.99043061207734606 +-0.41838703947458189 -0.27466844612618385 -0.86574218443040085 +-0.40100492526839776 -0.40480738995889742 -0.82178222598517658 +-0.46867704983435055 0.40632940254264294 -0.78437123837371081 +-0.37596077789543381 0.33924096091721673 -0.86230450765389344 +-0.78437123837371081 0.46867704983435055 -0.40632940254264294 +-0.86230450765389344 0.37596077789543381 -0.33924096091721673 +-0.20828740048796671 0.8247164420172246 -0.52579382752597525 +-0.27287882084494514 0.74024588618561449 -0.61446983418191203 +-0.066381045638217229 0.9944708773603258 -0.081370946056690249 +-0.13192856911395229 0.99043061207734606 0.040522281668716874 +0.33994835690442576 0.74334549596053445 -0.57608383788574413 +0.20731239180326447 0.78076816785433134 -0.58942568680894825 +0.74334549596053445 0.57608383788574413 -0.33994835690442576 +0.78076816785433134 0.58942568680894825 -0.20731239180326447 +0.58942568680894825 -0.20731239180326447 0.78076816785433134 +-0.20828740048796671 -0.8247164420172246 0.52579382752597525 +-0.27287882084494514 -0.74024588618561449 0.61446983418191203 +0.066381045638217229 -0.9944708773603258 -0.081370946056690249 +0.13192856911395229 -0.99043061207734606 0.040522281668716874 +-0.27466844612618385 -0.86574218443040085 -0.41838703947458189 +-0.40480738995889742 -0.82178222598517658 -0.40100492526839776 +0.46867704983435055 -0.40632940254264294 -0.78437123837371081 +0.37596077789543381 -0.33924096091721673 -0.86230450765389344 +0.86574218443040085 0.41838703947458189 -0.27466844612618385 +0.82178222598517658 0.40100492526839776 -0.40480738995889742 +-0.33994835690442576 -0.74334549596053445 -0.57608383788574413 +-0.20731239180326447 -0.78076816785433134 -0.58942568680894825 +-0.74334549596053445 -0.57608383788574413 -0.33994835690442576 +-0.78076816785433134 -0.58942568680894825 -0.20731239180326447 +-0.86574218443040085 -0.41838703947458189 -0.27466844612618385 +-0.82178222598517658 -0.40100492526839776 -0.40480738995889742 +-0.8247164420172246 -0.52579382752597525 0.20828740048796671 +-0.74024588618561449 -0.61446983418191203 0.27287882084494514 +-0.78437123837371081 -0.46867704983435055 0.40632940254264294 +-0.86230450765389344 -0.37596077789543381 0.33924096091721673 +-0.40632940254264294 -0.78437123837371081 0.46867704983435055 +-0.33924096091721673 -0.86230450765389344 0.37596077789543381 +-0.8247164420172246 0.52579382752597525 -0.20828740048796671 +-0.74024588618561449 0.61446983418191203 -0.27287882084494514 +-0.9944708773603258 0.081370946056690249 -0.066381045638217229 +-0.99043061207734606 -0.040522281668716874 -0.13192856911395229 +0.077704403643809677 0.32271058904772337 0.94330265629374277 +0.080281277350241265 0.19739352602284616 0.97703158208487906 +-0.069740197633308881 0.8004723406749189 0.59529852733606181 +-0.135836225526941 0.719915307065364 0.68063975088704354 +-0.37149736972483099 0.52777252693426735 0.76383628095354983 +-0.28407954462258922 0.46039308870086582 0.84103330267207554 +-0.15985780358782284 0.19937696972895624 0.96679589706089264 +-0.039734588558411582 0.26026494835742225 0.96471929550963276 +-0.19300544019554747 0.62457262167826666 0.75674166021493738 +-0.26817151760031971 0.68929656115193505 0.6730187872058685 +-0.18656099607880575 0.38998766307204569 0.90172313788306901 +-0.30401279487901056 0.33566720821021839 0.891573746743482 +-0.2726998137406515 0.26911716736226499 -0.9236940845413727 +-0.25952221836449818 0.39610117388436322 -0.88076789123048704 +0.18656099607880575 0.38998766307204569 -0.90172313788306901 +0.30401279487901056 0.33566720821021839 -0.891573746743482 +-0.32839555720531111 0.64061453708709604 -0.69409608332024086 +-0.20012814034344362 0.68018071850695239 -0.70519707714513458 +-0.077704403643809677 0.32271058904772337 -0.94330265629374277 +-0.080281277350241265 0.19739352602284616 -0.97703158208487906 +0.069740197633308881 0.8004723406749189 -0.59529852733606181 +0.135836225526941 0.719915307065364 -0.68063975088704354 +-0.23458495860622128 0.51571602924327076 -0.82401873423925942 +-0.35362935294171677 0.46556504362316592 -0.81129246939324073 +0.37149736972483099 0.52777252693426735 -0.76383628095354983 +0.28407954462258922 0.46039308870086582 -0.84103330267207554 +-0.067277074024322203 0.70227702532207648 -0.70871769768752158 +-0.13827368218737227 0.76957783850217643 -0.62340222914316235 +0.15985780358782284 0.19937696972895624 -0.96679589706089264 +0.039734588558411582 0.26026494835742225 -0.96471929550963276 +0.19300544019554747 0.62457262167826666 -0.75674166021493738 +0.26817151760031971 0.68929656115193505 -0.6730187872058685 +-0.15985780358782284 -0.19937696972895624 -0.96679589706089264 +-0.039734588558411582 -0.26026494835742225 -0.96471929550963276 +-0.19300544019554747 -0.62457262167826666 -0.75674166021493738 +-0.26817151760031971 -0.68929656115193505 -0.6730187872058685 +-0.9236940845413727 0.2726998137406515 -0.26911716736226499 +-0.88076789123048704 0.25952221836449818 -0.39610117388436322 +-0.90172313788306901 -0.18656099607880575 -0.38998766307204569 +-0.891573746743482 -0.30401279487901056 -0.33566720821021839 +-0.59529852733606159 0.069740197633308854 0.80047234067491879 +-0.68063975088704354 0.135836225526941 0.719915307065364 +-0.82401873423925942 -0.23458495860622128 0.51571602924327076 +-0.81129246939324073 -0.35362935294171677 0.46556504362316592 +-0.52777252693426735 0.76383628095354983 0.37149736972483099 +-0.46039308870086582 0.84103330267207554 0.28407954462258922 +-0.70227702532207648 0.70871769768752158 -0.067277074024322203 +-0.76957783850217643 0.62340222914316235 -0.13827368218737227 +-0.2726998137406515 -0.26911716736226499 0.9236940845413727 +-0.25952221836449818 -0.39610117388436322 0.88076789123048704 +0.18656099607880575 -0.38998766307204569 0.90172313788306901 +0.30401279487901056 -0.33566720821021839 0.891573746743482 +0.59529852733606159 -0.069740197633308854 0.80047234067491879 +0.68063975088704354 -0.135836225526941 0.719915307065364 +0.80047234067491879 0.59529852733606159 -0.069740197633308854 +0.719915307065364 0.68063975088704354 -0.135836225526941 +0.32271058904772337 0.94330265629374277 0.077704403643809677 +0.19739352602284616 0.97703158208487906 0.080281277350241265 +-0.26911716736226499 0.9236940845413727 -0.2726998137406515 +-0.39610117388436322 0.88076789123048704 -0.25952221836449818 +-0.38998766307204569 0.90172313788306901 0.18656099607880575 +-0.33566720821021839 0.891573746743482 0.30401279487901056 +-0.19937696972895624 0.96679589706089264 0.15985780358782284 +-0.26026494835742225 0.96471929550963276 0.039734588558411582 +-0.62457262167826666 0.75674166021493738 0.19300544019554747 +-0.68929656115193505 0.6730187872058685 0.26817151760031971 +-0.96679589706089264 0.15985780358782284 0.19937696972895624 +-0.96471929550963276 0.039734588558411582 0.26026494835742225 +-0.75674166021493738 0.19300544019554747 0.62457262167826666 +-0.6730187872058685 0.26817151760031971 0.68929656115193505 +-0.76383628095354983 0.37149736972483099 0.52777252693426735 +-0.84103330267207554 0.28407954462258922 0.46039308870086582 +-0.70871769768752158 -0.067277074024322203 0.70227702532207648 +-0.62340222914316235 -0.13827368218737227 0.76957783850217643 +-0.32839555720531111 -0.64061453708709615 0.69409608332024086 +-0.20012814034344359 -0.68018071850695239 0.70519707714513447 +-0.077704403643809677 -0.32271058904772337 0.94330265629374277 +-0.080281277350241265 -0.19739352602284616 0.97703158208487906 +0.76383628095354983 0.37149736972483099 -0.52777252693426735 +0.84103330267207554 0.28407954462258922 -0.46039308870086582 +0.70871769768752158 -0.067277074024322203 -0.70227702532207648 +0.62340222914316235 -0.13827368218737227 -0.76957783850217643 +0.32839555720531111 -0.64061453708709615 -0.69409608332024086 +0.20012814034344359 -0.68018071850695239 -0.70519707714513447 +0.077704403643809677 -0.32271058904772337 -0.94330265629374277 +0.080281277350241265 -0.19739352602284616 -0.97703158208487906 +0.2726998137406515 -0.26911716736226499 -0.9236940845413727 +0.25952221836449818 -0.39610117388436322 -0.88076789123048704 +-0.18656099607880575 -0.38998766307204569 -0.90172313788306901 +-0.30401279487901056 -0.33566720821021839 -0.891573746743482 +-0.76383628095354983 -0.37149736972483099 -0.52777252693426735 +-0.84103330267207554 -0.28407954462258922 -0.46039308870086582 +-0.70871769768752158 0.067277074024322203 -0.70227702532207648 +-0.62340222914316235 0.13827368218737227 -0.76957783850217643 +-0.59529852733606159 -0.069740197633308854 -0.80047234067491879 +-0.68063975088704354 -0.135836225526941 -0.719915307065364 +-0.82401873423925942 0.23458495860622128 -0.51571602924327076 +-0.81129246939324073 0.35362935294171677 -0.46556504362316592 +-0.8004723406749189 0.59529852733606181 0.069740197633308881 +-0.719915307065364 0.68063975088704354 0.135836225526941 +-0.51571602924327076 0.82401873423925942 -0.23458495860622128 +-0.46556504362316592 0.81129246939324073 -0.35362935294171677 +-0.64061453708709615 0.69409608332024098 -0.32839555720531116 +-0.68018071850695239 0.70519707714513458 -0.20012814034344362 +-0.32271058904772337 0.94330265629374277 -0.077704403643809677 +-0.19739352602284616 0.97703158208487906 -0.080281277350241265 +0.38998766307204569 0.90172313788306901 -0.18656099607880575 +0.33566720821021839 0.891573746743482 -0.30401279487901056 +0.19937696972895624 0.96679589706089264 -0.15985780358782284 +0.26026494835742225 0.96471929550963276 -0.039734588558411582 +0.62457262167826666 0.75674166021493738 -0.19300544019554747 +0.68929656115193505 0.6730187872058685 -0.26817151760031971 +0.75674166021493738 0.19300544019554747 -0.62457262167826666 +0.6730187872058685 0.26817151760031971 -0.68929656115193505 +0.15985780358782284 -0.19937696972895624 0.96679589706089264 +0.039734588558411582 -0.26026494835742225 0.96471929550963276 +0.19300544019554747 -0.62457262167826666 0.75674166021493738 +0.26817151760031971 -0.68929656115193505 0.6730187872058685 +0.37149736972483099 -0.52777252693426735 0.76383628095354983 +0.28407954462258922 -0.46039308870086582 0.84103330267207554 +-0.067277074024322203 -0.70227702532207648 0.70871769768752158 +-0.13827368218737227 -0.76957783850217643 0.62340222914316235 +-0.64061453708709615 -0.69409608332024086 0.32839555720531111 +-0.68018071850695239 -0.70519707714513447 0.20012814034344359 +-0.32271058904772337 -0.94330265629374277 0.077704403643809677 +-0.19739352602284616 -0.97703158208487906 0.080281277350241265 +-0.26911716736226499 -0.9236940845413727 0.2726998137406515 +-0.39610117388436322 -0.88076789123048704 0.25952221836449818 +-0.38998766307204569 -0.90172313788306901 -0.18656099607880575 +-0.33566720821021839 -0.891573746743482 -0.30401279487901056 +-0.37149736972483099 -0.52777252693426735 -0.76383628095354983 +-0.28407954462258922 -0.46039308870086582 -0.84103330267207554 +0.067277074024322203 -0.70227702532207648 -0.70871769768752158 +0.13827368218737227 -0.76957783850217643 -0.62340222914316235 +-0.069740197633308854 -0.80047234067491879 -0.59529852733606159 +-0.135836225526941 -0.719915307065364 -0.68063975088704354 +0.23458495860622128 -0.51571602924327076 -0.82401873423925942 +0.35362935294171677 -0.46556504362316592 -0.81129246939324073 +0.59529852733606159 0.069740197633308854 -0.80047234067491879 +0.68063975088704354 0.135836225526941 -0.719915307065364 +0.891573746743482 0.30401279487901056 -0.33566720821021839 +0.52777252693426735 0.76383628095354983 -0.37149736972483099 +0.46039308870086582 0.84103330267207554 -0.28407954462258922 +-0.19937696972895624 -0.96679589706089264 -0.15985780358782284 +-0.26026494835742225 -0.96471929550963276 -0.039734588558411582 +-0.62457262167826666 -0.75674166021493738 -0.19300544019554747 +-0.68929656115193505 -0.6730187872058685 -0.26817151760031971 +-0.96679589706089264 -0.15985780358782284 -0.19937696972895624 +-0.96471929550963276 -0.039734588558411582 -0.26026494835742225 +-0.75674166021493738 -0.19300544019554747 -0.62457262167826666 +-0.6730187872058685 -0.26817151760031971 -0.68929656115193505 +-0.52777252693426735 -0.76383628095354983 -0.37149736972483099 +-0.46039308870086582 -0.84103330267207554 -0.28407954462258922 +-0.70227702532207648 -0.70871769768752158 0.067277074024322203 +-0.76957783850217643 -0.62340222914316235 0.13827368218737227 +-0.69409608332024086 -0.32839555720531111 0.64061453708709615 +-0.70519707714513458 -0.20012814034344362 0.6801807185069525 +-0.94330265629374277 -0.077704403643809677 0.32271058904772337 +-0.97703158208487906 -0.080281277350241265 0.19739352602284616 +-0.80047234067491879 -0.59529852733606159 -0.069740197633308854 +-0.719915307065364 -0.68063975088704354 -0.135836225526941 +-0.51571602924327076 -0.82401873423925942 0.23458495860622128 +-0.46556504362316592 -0.81129246939324073 0.35362935294171677 +0.069740197633308854 -0.80047234067491879 0.59529852733606159 +0.135836225526941 -0.719915307065364 0.68063975088704354 +-0.23458495860622128 -0.51571602924327076 0.82401873423925942 +-0.35362935294171677 -0.46556504362316592 0.81129246939324073 +-0.69409608332024086 0.32839555720531111 -0.64061453708709615 +-0.70519707714513458 0.20012814034344362 -0.6801807185069525 +-0.94330265629374277 0.077704403643809677 -0.32271058904772337 +-0.97703158208487906 0.080281277350241265 -0.19739352602284616 +-0.9236940845413727 -0.2726998137406515 0.26911716736226499 +-0.88076789123048704 -0.25952221836449818 0.39610117388436322 +-0.90172313788306901 0.18656099607880575 0.38998766307204569 +-0.891573746743482 0.30401279487901056 0.33566720821021839 +0.13624095340381404 0.9506072962094394 0.27889813733511903 +0.069452331980627613 0.9168554803037775 0.39313153246640248 +0.098941938751961223 0.76032257344343512 0.64081678241520534 +-0.58750761901107262 0.67170915887432037 0.45126666560725853 +-0.52372394783737519 0.63610018157997195 0.56664784959934433 +-0.32839555720531116 0.64061453708709593 0.69409608332024109 +-0.4993406306021807 0 0.86640575634619166 +-0.39313153246640237 0.069452331980627585 0.9168554803037775 +-0.27269981374065155 0.26911716736226504 0.9236940845413727 +0.27889813733511903 -0.13624095340381404 0.9506072962094394 +0.28075529872380572 0 0.95977938206574664 +0.15985780358782287 0.19937696972895619 0.96679589706089264 +-0.27889813733511903 -0.13624095340381404 -0.9506072962094394 +-0.28075529872380572 0 -0.95977938206574664 +-0.15985780358782287 0.19937696972895619 -0.96679589706089264 +-0.67170915887432037 0.4512666656072587 -0.58750761901107273 +-0.56664784959934422 0.52372394783737519 -0.63610018157997195 +-0.37149736972483099 0.52777252693426735 -0.76383628095354983 +-0.13624095340381404 0.9506072962094394 -0.27889813733511903 +-0.069452331980627585 0.9168554803037775 -0.39313153246640237 +-0.069740197633308867 0.8004723406749189 -0.59529852733606159 +0.58750761901107262 0.67170915887432037 -0.45126666560725853 +0.52372394783737508 0.63610018157997195 -0.56664784959934422 +0.32839555720531116 0.64061453708709593 -0.69409608332024109 +0.4993406306021807 0 -0.86640575634619166 +0.39313153246640237 0.069452331980627585 -0.9168554803037775 +0.27269981374065155 0.26911716736226504 -0.9236940845413727 +0 -0.86640575634619166 0.4993406306021807 +0.069452331980627585 -0.9168554803037775 0.39313153246640237 +-0.13624095340381404 -0.9506072962094394 -0.27889813733511903 +0 -0.95977938206574664 -0.28075529872380572 +-0.49934063060218076 0 -0.86640575634619166 +-0.39313153246640237 -0.069452331980627585 -0.9168554803037775 +-0.27269981374065155 -0.26911716736226504 -0.9236940845413727 +-0.9506072962094394 0.27889813733511903 0.13624095340381404 +-0.95977938206574664 0.28075529872380572 0 +-0.96679589706089264 0.15985780358782287 -0.19937696972895619 +-0.27889813733511903 -0.13624095340381404 0.9506072962094394 +-0.39313153246640237 -0.069452331980627585 0.9168554803037775 +-0.59529852733606148 -0.069740197633308854 0.8004723406749189 +-0.67170915887432037 0.45126666560725853 0.58750761901107262 +-0.63610018157997195 0.56664784959934433 0.52372394783737519 +-0.64061453708709593 0.69409608332024109 0.32839555720531116 +-0.27889813733511903 0.13624095340381404 0.9506072962094394 +-0.28075529872380572 0 0.95977938206574664 +-0.15985780358782287 -0.19937696972895619 0.96679589706089264 +0.27889813733511903 0.13624095340381404 0.9506072962094394 +0.39313153246640237 0.069452331980627585 0.9168554803037775 +0.59529852733606148 0.069740197633308854 0.8004723406749189 +0.64081678241520534 0.098941938751961223 0.76032257344343512 +0.9168554803037775 0.39313153246640237 0.069452331980627585 +0.75327597529184531 0.65407554465688111 0.068996282000725426 +0.13624095340381404 0.9506072962094394 -0.27889813733511903 +0 0.95977938206574664 -0.28075529872380572 +-0.19937696972895619 0.96679589706089264 -0.15985780358782287 +0 0.86640575634619166 0.4993406306021807 +-0.069452331980627613 0.9168554803037775 0.39313153246640248 +-0.26911716736226515 0.92369408454137258 0.27269981374065166 +-0.86640575634619166 0.4993406306021807 0 +-0.9168554803037775 0.39313153246640237 0.069452331980627585 +-0.92369408454137258 0.27269981374065166 0.26911716736226515 +-0.45126666560725853 0.58750761901107262 0.67170915887432037 +-0.56664784959934433 0.52372394783737519 0.63610018157997195 +-0.69409608332024109 0.32839555720531116 0.64061453708709593 +-0.67170915887432037 -0.45126666560725853 0.58750761901107273 +-0.56664784959934422 -0.52372394783737508 0.63610018157997195 +-0.37149736972483099 -0.52777252693426735 0.76383628095354983 +0.45126666560725853 0.58750761901107262 -0.67170915887432037 +0.56664784959934433 0.52372394783737519 -0.63610018157997195 +0.69409608332024109 0.32839555720531116 -0.64061453708709593 +0.37149736972483099 -0.52777252693426735 -0.76383628095354983 +0.27889813733511903 0.13624095340381404 -0.9506072962094394 +0.28075529872380572 0 -0.95977938206574664 +0.15985780358782287 -0.19937696972895619 -0.96679589706089264 +-0.45126666560725853 -0.58750761901107262 -0.67170915887432037 +-0.56664784959934433 -0.52372394783737519 -0.63610018157997195 +-0.69409608332024109 -0.32839555720531116 -0.64061453708709593 +-0.27889813733511903 0.13624095340381404 -0.9506072962094394 +-0.39313153246640237 0.069452331980627585 -0.9168554803037775 +-0.59529852733606148 0.069740197633308854 -0.8004723406749189 +-0.9506072962094394 0.27889813733511903 -0.13624095340381404 +-0.9168554803037775 0.39313153246640237 -0.069452331980627585 +-0.8004723406749189 0.59529852733606159 -0.069740197633308867 +-0.45126666560725853 0.58750761901107273 -0.67170915887432037 +-0.52372394783737508 0.63610018157997195 -0.56664784959934422 +-0.52777252693426735 0.76383628095354983 -0.37149736972483099 +-0.13624095340381404 0.9506072962094394 0.27889813733511903 +0 0.95977938206574664 0.28075529872380572 +0.19937696972895619 0.96679589706089264 0.15985780358782287 +0 0.86640575634619166 -0.4993406306021807 +0.069452331980627585 0.9168554803037775 -0.39313153246640237 +0.26911716736226515 0.92369408454137258 -0.27269981374065166 +0.86640575634619166 0.49934063060218076 0 +0.9168554803037775 0.39313153246640237 -0.069452331980627585 +0.9236940845413727 0.27269981374065155 -0.26911716736226504 +0.49934063060218076 0 0.86640575634619166 +0.39313153246640237 -0.069452331980627585 0.9168554803037775 +0.27269981374065155 -0.26911716736226504 0.9236940845413727 +0.32839555720531116 -0.64061453708709593 0.69409608332024109 +-0.45126666560725864 -0.58750761901107262 0.67170915887432026 +-0.52372394783737519 -0.63610018157997184 0.56664784959934422 +-0.52777252693426735 -0.76383628095354983 0.37149736972483099 +0.13624095340381404 -0.9506072962094394 0.27889813733511903 +0 -0.95977938206574664 0.28075529872380572 +-0.19937696972895619 -0.96679589706089264 0.15985780358782287 +-0.58750761901107262 -0.67170915887432037 -0.45126666560725853 +-0.52372394783737508 -0.63610018157997195 -0.56664784959934422 +-0.32839555720531116 -0.64061453708709593 -0.69409608332024109 +0.13624095340381404 -0.9506072962094394 -0.27889813733511903 +0.069452331980627585 -0.9168554803037775 -0.39313153246640237 +0.069740197633308854 -0.8004723406749189 -0.59529852733606148 +0.27889813733511903 -0.13624095340381404 -0.9506072962094394 +0.39313153246640237 -0.069452331980627585 -0.9168554803037775 +0.59529852733606148 -0.069740197633308854 -0.8004723406749189 +0.67170915887432037 0.45126666560725853 -0.58750761901107262 +0.63610018157997184 0.56664784959934433 -0.52372394783737508 +0.64061453708709593 0.69409608332024109 -0.32839555720531116 +0 -0.86640575634619166 -0.49934063060218076 +-0.069452331980627585 -0.9168554803037775 -0.39313153246640237 +-0.26911716736226504 -0.9236940845413727 -0.27269981374065155 +-0.86640575634619166 -0.4993406306021807 0 +-0.9168554803037775 -0.39313153246640248 -0.069452331980627613 +-0.9236940845413727 -0.27269981374065155 -0.26911716736226504 +-0.67170915887432037 -0.45126666560725853 -0.58750761901107262 +-0.63610018157997184 -0.56664784959934433 -0.52372394783737508 +-0.64061453708709593 -0.69409608332024109 -0.32839555720531116 +-0.58750761901107262 -0.67170915887432026 0.45126666560725864 +-0.63610018157997195 -0.56664784959934422 0.52372394783737519 +-0.76383628095354983 -0.37149736972483099 0.52777252693426735 +-0.9506072962094394 -0.27889813733511903 0.13624095340381404 +-0.9168554803037775 -0.39313153246640248 0.069452331980627613 +-0.8004723406749189 -0.59529852733606148 0.069740197633308854 +-0.13624095340381404 -0.9506072962094394 0.27889813733511903 +-0.069452331980627585 -0.9168554803037775 0.39313153246640237 +-0.069740197633308854 -0.8004723406749189 0.59529852733606148 +-0.58750761901107262 0.67170915887432026 -0.45126666560725864 +-0.63610018157997184 0.56664784959934422 -0.52372394783737519 +-0.76383628095354983 0.37149736972483099 -0.52777252693426735 +-0.9506072962094394 -0.27889813733511903 -0.13624095340381404 +-0.95977938206574664 -0.28075529872380572 0 +-0.96679589706089264 -0.15985780358782287 0.19937696972895619 +0 0.62578188869003271 0.77999809473327264 +0.054857140713616914 0.54001796879892028 0.83986385056568236 +0.21570896554595276 0.38998187620182151 0.89436470058605511 +0.20226550379446337 0 0.97933072349169759 +0.28910030252843322 0.30397342055421106 0.90687073458352596 +-0.11626913535565189 0.55392361119767786 0.82440895259656954 +0.095052466200525557 0.7378162794185118 0.66704995977036108 +-0.071858277492354974 0.43765447584202588 0.8962672300889245 +-0.067277074024322245 0.70227702532207659 0.70871769768752169 +-0.20828740048796671 0.8247164420172246 0.52579382752597525 +0.071858277492354974 0.43765447584202588 0.8962672300889245 +-0.23458495860622128 0.51571602924327076 0.82401873423925942 +-0.46626606661797826 0.69116244652106429 0.55216883979414844 +-0.46867704983435055 0.40632940254264294 0.78437123837371059 +-0.077704403643809677 0.32271058904772337 0.94330265629374277 +-0.42716188369754932 0.13899360672691585 0.89342795031552757 +-0.081370946056690235 0.066381045638217215 0.9944708773603258 +-0.11626913535565189 0.55392361119767786 -0.82440895259656954 +-0.033903577486650904 0.48516082808530331 -0.87376742805233321 +0.077704403643809677 0.32271058904772337 -0.94330265629374277 +0.42716188369754932 0.13899360672691585 -0.89342795031552757 +0.081370946056690235 0.066381045638217215 -0.9944708773603258 +0 0.62578188869003271 -0.77999809473327264 +-0.18656099607880564 0.38998766307204552 -0.90172313788306913 +-0.20226550379446337 0 -0.97933072349169759 +-0.41838703947458172 0.27466844612618396 -0.86574218443040096 +0.11626913535565189 0.55392361119767786 -0.82440895259656954 +-0.19300544019554741 0.62457262167826677 -0.75674166021493716 +-0.55216883979414833 0.46626606661797837 -0.69116244652106429 +-0.33994835690442565 0.74334549596053456 -0.57608383788574391 +0.071858277492354974 0.43765447584202588 -0.8962672300889245 +0.067277074024322245 0.70227702532207659 -0.70871769768752169 +-0.13899360672691591 0.89342795031552769 -0.42716188369754926 +0.20828740048796671 0.8247164420172246 -0.52579382752597525 +-0.071858277492354974 0.43765447584202588 -0.8962672300889245 +0.23458495860622128 0.51571602924327076 -0.82401873423925942 +0.46626606661797826 0.69116244652106429 -0.55216883979414844 +0.46867704983435055 0.40632940254264294 -0.78437123837371059 +0.13899360672691585 -0.89342795031552757 0.42716188369754932 +0.066381045638217215 -0.9944708773603258 0.081370946056690235 +0 -0.97933072349169759 -0.20226550379446337 +0.90687073458352596 0.28910030252843322 0.30397342055421106 +0.071858277492354974 -0.43765447584202588 -0.8962672300889245 +-0.23458495860622128 -0.51571602924327076 -0.82401873423925942 +-0.46626606661797826 -0.69116244652106429 -0.55216883979414844 +-0.46867704983435055 -0.40632940254264294 -0.78437123837371059 +-0.82440895259656954 0.11626913535565189 -0.55392361119767786 +-0.87376742805233321 0.033903577486650911 -0.48516082808530336 +-0.94330265629374277 -0.077704403643809677 -0.32271058904772337 +-0.89342795031552757 -0.42716188369754932 -0.13899360672691585 +-0.9944708773603258 -0.081370946056690249 -0.066381045638217229 +-0.82440895259656954 0.11626913535565189 0.55392361119767786 +-0.75674166021493716 -0.19300544019554741 0.62457262167826677 +-0.69116244652106429 -0.55216883979414833 0.46626606661797837 +-0.57608383788574391 -0.33994835690442565 0.74334549596053456 +-0.43765447584202588 0.8962672300889245 0.071858277492354974 +-0.70227702532207659 0.70871769768752169 0.067277074024322245 +-0.89342795031552769 0.42716188369754926 -0.13899360672691591 +-0.8247164420172246 0.52579382752597525 0.20828740048796671 +-0.11626913535565189 -0.55392361119767786 0.82440895259656954 +0.077704403643809677 -0.32271058904772337 0.94330265629374277 +0.42716188369754932 -0.13899360672691585 0.89342795031552757 +0.081370946056690235 -0.066381045638217215 0.9944708773603258 +0.70871769768752169 -0.067277074024322245 0.70227702532207659 +0.52579382752597525 -0.20828740048796671 0.8247164420172246 +0.55392361119767786 0.82440895259656954 -0.11626913535565189 +0.73781627941851213 0.66704995977036097 0.095052466200525487 +0.62578188869003271 0.77999809473327264 0 +0 0.97933072349169759 0.20226550379446331 +0.30397342055421117 0.90687073458352585 0.28910030252843327 +-0.55392361119767786 0.82440895259656954 -0.11626913535565189 +-0.48516082808530336 0.87376742805233321 -0.033903577486650911 +-0.32271058904772337 0.94330265629374277 0.077704403643809677 +-0.13899360672691585 0.89342795031552757 0.42716188369754932 +-0.066381045638217229 0.9944708773603258 0.081370946056690249 +-0.43765447584202588 0.8962672300889245 -0.071858277492354974 +-0.51571602924327076 0.82401873423925942 0.23458495860622128 +-0.69116244652106418 0.55216883979414833 0.46626606661797837 +-0.40632940254264294 0.78437123837371081 0.46867704983435066 +-0.8962672300889245 -0.071858277492354974 0.43765447584202588 +-0.87376742805233321 0.033903577486650911 0.48516082808530336 +-0.82401873423925942 0.23458495860622128 0.51571602924327076 +-0.55216883979414844 0.46626606661797843 0.69116244652106429 +-0.78437123837371059 0.46867704983435055 0.40632940254264294 +-0.8962672300889245 0.071858277492354974 0.43765447584202588 +-0.70871769768752169 0.067277074024322245 0.70227702532207659 +-0.42716188369754926 -0.13899360672691591 0.89342795031552769 +-0.52579382752597525 0.20828740048796671 0.8247164420172246 +0 -0.62578188869003271 0.77999809473327264 +-0.18656099607880564 -0.38998766307204552 0.90172313788306913 +-0.20226550379446331 0 0.97933072349169759 +-0.41838703947458172 -0.27466844612618396 0.86574218443040096 +0.70871769768752169 0.067277074024322245 -0.70227702532207659 +0.42716188369754926 -0.13899360672691591 -0.89342795031552769 +0.52579382752597525 0.20828740048796671 -0.8247164420172246 +0 -0.62578188869003271 -0.77999809473327264 +0.054857140713616921 -0.54001796879892028 -0.83986385056568236 +0.18656099607880564 -0.38998766307204552 -0.90172313788306913 +0.20226550379446331 0 -0.97933072349169759 +0.41838703947458172 -0.27466844612618396 -0.86574218443040096 +0.11626913535565189 -0.55392361119767786 -0.82440895259656954 +-0.077704403643809677 -0.32271058904772337 -0.94330265629374277 +-0.42716188369754932 -0.13899360672691585 -0.89342795031552757 +-0.081370946056690235 -0.066381045638217215 -0.9944708773603258 +-0.8962672300889245 -0.071858277492354974 -0.43765447584202588 +-0.70871769768752169 -0.067277074024322245 -0.70227702532207659 +-0.42716188369754932 0.13899360672691591 -0.89342795031552757 +-0.52579382752597525 -0.20828740048796671 -0.8247164420172246 +-0.82440895259656954 -0.11626913535565189 -0.55392361119767786 +-0.81891028733871629 0 -0.57392154628557124 +-0.75674166021493716 0.19300544019554741 -0.62457262167826677 +-0.69116244652106429 0.55216883979414833 -0.46626606661797837 +-0.57608383788574391 0.33994835690442565 -0.74334549596053456 +-0.55392361119767786 0.82440895259656954 0.11626913535565189 +-0.57392154628557124 0.81891028733871629 0 +-0.62457262167826677 0.75674166021493716 -0.19300544019554741 +-0.46626606661797826 0.6911624465210644 -0.55216883979414844 +-0.74334549596053456 0.57608383788574391 -0.33994835690442565 +-0.62578188869003271 0.77999809473327264 0 +-0.38998766307204552 0.90172313788306913 -0.18656099607880564 +0 0.97933072349169759 -0.20226550379446331 +-0.27466844612618396 0.86574218443040096 -0.41838703947458172 +0.32271058904772337 0.94330265629374277 -0.077704403643809677 +0.13899360672691585 0.89342795031552757 -0.42716188369754932 +0.066381045638217229 0.9944708773603258 -0.081370946056690249 +0.43765447584202588 0.8962672300889245 0.071858277492354974 +0.48516082808530336 0.87376742805233321 -0.033903577486650911 +0.51571602924327076 0.82401873423925942 -0.23458495860622128 +0.69116244652106418 0.55216883979414833 -0.46626606661797837 +0.40632940254264294 0.78437123837371081 -0.46867704983435066 +0.82401873423925942 0.23458495860622128 -0.51571602924327076 +0.55216883979414844 0.46626606661797843 -0.69116244652106429 +0.78437123837371059 0.46867704983435055 -0.40632940254264294 +-0.071858277492354974 -0.43765447584202588 0.8962672300889245 +0.23458495860622128 -0.51571602924327076 0.82401873423925942 +0.46867704983435055 -0.40632940254264294 0.78437123837371059 +0.071858277492354974 -0.43765447584202588 0.8962672300889245 +0.054857140713616921 -0.54001796879892028 0.83986385056568236 +0.067277074024322245 -0.70227702532207659 0.70871769768752169 +-0.13899360672691591 -0.89342795031552769 0.42716188369754926 +0.20828740048796671 -0.8247164420172246 0.52579382752597525 +-0.62578188869003271 -0.77999809473327264 0 +-0.38998766307204552 -0.90172313788306913 0.18656099607880564 +0 -0.97933072349169759 0.20226550379446331 +-0.27466844612618396 -0.86574218443040096 0.41838703947458172 +-0.55392361119767786 -0.82440895259656954 0.11626913535565189 +-0.32271058904772337 -0.94330265629374277 -0.077704403643809677 +-0.13899360672691585 -0.89342795031552757 -0.42716188369754932 +-0.066381045638217215 -0.9944708773603258 -0.081370946056690235 +-0.071858277492354974 -0.43765447584202588 -0.8962672300889245 +-0.054857140713616921 -0.54001796879892028 -0.83986385056568236 +-0.067277074024322245 -0.70227702532207659 -0.70871769768752169 +0.13899360672691591 -0.89342795031552757 -0.42716188369754932 +-0.20828740048796671 -0.8247164420172246 -0.52579382752597525 +-0.11626913535565189 -0.55392361119767786 -0.82440895259656954 +0.19300544019554741 -0.62457262167826677 -0.75674166021493716 +0.82440895259656954 0.11626913535565189 -0.55392361119767786 +0.89342795031552757 0.42716188369754932 -0.13899360672691585 +0.43765447584202588 0.8962672300889245 -0.071858277492354974 +0.70227702532207659 0.70871769768752169 -0.067277074024322245 +0.8247164420172246 0.52579382752597525 -0.20828740048796671 +-0.43765447584202588 -0.8962672300889245 0.071858277492354974 +-0.51571602924327076 -0.82401873423925942 -0.23458495860622128 +-0.69116244652106418 -0.55216883979414833 -0.46626606661797837 +-0.40632940254264294 -0.78437123837371081 -0.46867704983435066 +-0.8962672300889245 0.071858277492354974 -0.43765447584202588 +-0.82401873423925942 -0.23458495860622128 -0.51571602924327076 +-0.55216883979414844 -0.46626606661797843 -0.69116244652106429 +-0.78437123837371059 -0.46867704983435055 -0.40632940254264294 +-0.43765447584202588 -0.8962672300889245 -0.071858277492354974 +-0.54001796879892028 -0.83986385056568236 -0.054857140713616921 +-0.70227702532207659 -0.70871769768752169 -0.067277074024322245 +-0.89342795031552769 -0.42716188369754926 0.13899360672691591 +-0.8247164420172246 -0.52579382752597525 -0.20828740048796671 +-0.77999809473327264 0 0.62578188869003271 +-0.83986385056568236 -0.054857140713616914 0.54001796879892028 +-0.90172313788306913 -0.18656099607880564 0.38998766307204552 +-0.97933072349169759 -0.20226550379446331 0 +-0.86574218443040096 -0.41838703947458172 0.27466844612618396 +-0.55392361119767786 -0.82440895259656954 -0.11626913535565189 +-0.62457262167826677 -0.75674166021493716 0.19300544019554741 +-0.46626606661797837 -0.69116244652106429 0.55216883979414833 +-0.74334549596053456 -0.57608383788574391 0.33994835690442565 +0.11626913535565189 -0.55392361119767786 0.82440895259656954 +-0.19300544019554741 -0.62457262167826677 0.75674166021493716 +-0.55216883979414844 -0.46626606661797826 0.6911624465210644 +-0.33994835690442565 -0.74334549596053456 0.57608383788574391 +-0.77999809473327264 0 -0.62578188869003271 +-0.90172313788306913 0.18656099607880564 -0.38998766307204552 +-0.97933072349169759 0.20226550379446331 0 +-0.86574218443040096 0.41838703947458172 -0.27466844612618396 +-0.82440895259656954 -0.11626913535565189 0.55392361119767786 +-0.94330265629374277 0.077704403643809677 0.32271058904772337 +-0.89342795031552757 0.42716188369754932 0.13899360672691585 +-0.9944708773603258 0.081370946056690249 0.066381045638217229 +-0.20793674136609452 0.86400769557376311 0.45853354684184838 +-0.27572854131968011 0.82875656716879009 0.48696645046278492 +-0.53398612240605781 0.40547414873191501 0.74192286377215233 +-0.51219972690999771 0.34179011670600545 0.78792826822967776 +-0.12208483180161088 -2.4628875390745807e-18 0.9925196692479058 +-0.040828298939112564 0 0.99916617737278246 +0.12208483180161088 -2.4628875390745807e-18 -0.9925196692479058 +0.040828298939112564 0 -0.99916617737278246 +-0.45853354684184816 0.20793674136609455 -0.86400769557376311 +-0.48696645046278469 0.27572854131968005 -0.82875656716879031 +-0.40547414873191512 0.74192286377215233 -0.53398612240605781 +-0.34179011670600551 0.78792826822967776 -0.5121997269099976 +0.20793674136609452 0.86400769557376311 -0.45853354684184838 +0.27572854131968011 0.82875656716879009 -0.48696645046278492 +0.53398612240605781 0.40547414873191501 -0.74192286377215233 +0.51219972690999771 0.34179011670600545 -0.78792826822967776 +-2.4628875390745807e-18 -0.9925196692479058 0.12208483180161088 +0 -0.99916617737278246 0.040828298939112564 +0.20793674136609455 -0.86400769557376311 -0.45853354684184816 +-0.53398612240605781 -0.40547414873191501 -0.74192286377215233 +-0.51219972690999771 -0.34179011670600545 -0.78792826822967776 +-0.9925196692479058 -0.12208483180161092 2.4628875390745815e-18 +-0.99916617737278246 -0.040828298939112578 0 +-0.53398612240605769 -0.40547414873191501 0.74192286377215222 +-0.5121997269099976 -0.34179011670600551 0.78792826822967776 +-0.86400769557376311 0.45853354684184838 0.20793674136609452 +-0.8287565671687902 0.48696645046278497 0.27572854131968016 +0.12208483180161088 2.4628875390745807e-18 0.9925196692479058 +0.040828298939112564 0 0.99916617737278246 +0.45853354684184838 -0.20793674136609452 0.86400769557376311 +0.48696645046278492 -0.27572854131968011 0.82875656716879031 +2.4628875390745819e-18 0.9925196692479058 0.12208483180161094 +0 0.99916617737278246 0.040828298939112578 +-0.40547414873191501 0.74192286377215211 0.53398612240605781 +-0.34179011670600545 0.78792826822967776 0.51219972690999771 +-0.74192286377215222 0.53398612240605792 0.40547414873191506 +-0.78792826822967776 0.51219972690999771 0.34179011670600545 +-0.45853354684184838 0.20793674136609452 0.86400769557376311 +-0.48696645046278492 0.27572854131968011 0.82875656716879031 +-0.45853354684184816 -0.20793674136609455 0.86400769557376311 +-0.48696645046278469 -0.27572854131968005 0.82875656716879031 +0.45853354684184838 0.20793674136609452 -0.86400769557376311 +0.48696645046278492 0.27572854131968011 -0.82875656716879031 +0.45853354684184816 -0.20793674136609455 -0.86400769557376311 +0.48696645046278469 -0.27572854131968005 -0.82875656716879031 +-0.12208483180161088 2.4628875390745807e-18 -0.9925196692479058 +-0.040828298939112564 0 -0.99916617737278246 +-0.45853354684184838 -0.20793674136609452 -0.86400769557376311 +-0.48696645046278492 -0.27572854131968011 -0.82875656716879031 +-0.53398612240605769 0.40547414873191501 -0.74192286377215222 +-0.5121997269099976 0.34179011670600551 -0.78792826822967776 +-0.74192286377215222 0.53398612240605769 -0.40547414873191501 +-0.78792826822967776 0.5121997269099976 -0.34179011670600551 +-0.20793674136609455 0.86400769557376311 -0.45853354684184816 +-0.27572854131968005 0.82875656716879031 -0.48696645046278469 +-2.4628875390745819e-18 0.9925196692479058 -0.12208483180161094 +0 0.99916617737278246 -0.040828298939112578 +0.40547414873191501 0.74192286377215211 -0.53398612240605781 +0.34179011670600545 0.78792826822967776 -0.51219972690999771 +0.74192286377215222 0.53398612240605769 -0.40547414873191495 +0.78792826822967776 0.51219972690999771 -0.34179011670600545 +0.51219972690999771 -0.34179011670600545 0.78792826822967776 +0.20793674136609452 -0.86400769557376311 0.45853354684184838 +-0.20793674136609455 -0.86400769557376311 0.45853354684184816 +-0.27572854131968005 -0.82875656716879031 0.48696645046278469 +2.4628875390745807e-18 -0.9925196692479058 -0.12208483180161088 +0 -0.99916617737278246 -0.040828298939112564 +-0.20793674136609452 -0.86400769557376311 -0.45853354684184838 +-0.27572854131968011 -0.82875656716879031 -0.48696645046278492 +0.5121997269099976 -0.34179011670600551 -0.78792826822967776 +0.86400769557376311 0.45853354684184838 -0.20793674136609452 +0.82875656716879031 0.48696645046278492 -0.27572854131968011 +-0.40547414873191501 -0.74192286377215233 -0.53398612240605781 +-0.34179011670600545 -0.78792826822967776 -0.51219972690999771 +-0.74192286377215222 -0.53398612240605769 -0.40547414873191495 +-0.78792826822967776 -0.51219972690999771 -0.34179011670600545 +-0.86400769557376311 -0.45853354684184838 -0.20793674136609452 +-0.82875656716879031 -0.48696645046278492 -0.27572854131968011 +-0.86400769557376311 -0.45853354684184816 0.20793674136609455 +-0.82875656716879031 -0.48696645046278469 0.27572854131968005 +-0.74192286377215222 -0.53398612240605769 0.40547414873191501 +-0.78792826822967776 -0.5121997269099976 0.34179011670600551 +-0.40547414873191512 -0.74192286377215233 0.53398612240605781 +-0.34179011670600551 -0.78792826822967776 0.5121997269099976 +-0.86400769557376311 0.45853354684184816 -0.20793674136609455 +-0.82875656716879031 0.48696645046278469 -0.27572854131968005 +-0.9925196692479058 0.12208483180161094 -2.4628875390745819e-18 +-0.99916617737278246 0.040828298939112578 0 +0.11295049101987709 0.38368834989905559 0.91652901576006229 +0.15490162002342259 0.32578454432242576 0.93266817185682316 +-4.927907460000931e-18 0.82511526248824529 0.56496442685265946 +-6.5652635294160463e-18 0.77991607152390563 0.62588411178006298 +-0.38505005624480637 0.58714124035889637 0.7120404609681168 +-0.31802330015895514 0.58336686281126149 0.74735820322637392 +-3.6838438251301899e-18 0.67939657443508372 0.73377128224391142 +-6.5571195165482265e-18 0.73132225045616739 0.68203208574650398 +-0.23797402212934904 0.20209118411408986 0.95001448309746583 +-0.19654920871264409 0.26534356265230635 0.94390741193901806 +-0.18275773351615091 0.56644608341520675 0.80357852474018521 +-0.25063608611031912 0.57642063043274483 0.7777665518334006 +0.23797402212934904 0.20209118411408983 0.95001448309746583 +0.19654920871264411 0.2653435626523063 0.94390741193901806 +-0.1129504910198771 0.38368834989905565 0.91652901576006229 +-0.15490162002342261 0.32578454432242587 0.93266817185682316 +-0.23797402212934904 0.20209118411408983 -0.95001448309746583 +-0.19654920871264411 0.2653435626523063 -0.94390741193901806 +0.1129504910198771 0.38368834989905565 -0.91652901576006229 +0.15490162002342261 0.32578454432242587 -0.93266817185682316 +-0.38505005624480643 0.58714124035889637 -0.71204046096811668 +-0.31802330015895514 0.58336686281126149 -0.74735820322637392 +-0.11295049101987709 0.38368834989905559 -0.91652901576006229 +-0.15490162002342259 0.32578454432242576 -0.93266817185682316 +4.927907460000931e-18 0.82511526248824529 -0.56496442685265946 +6.5652635294160463e-18 0.77991607152390563 -0.62588411178006298 +-0.18275773351615091 0.56644608341520641 -0.80357852474018532 +-0.25063608611031912 0.57642063043274483 -0.7777665518334006 +0.38505005624480637 0.58714124035889637 -0.7120404609681168 +0.31802330015895514 0.58336686281126149 -0.74735820322637392 +3.6838438251301899e-18 0.67939657443508372 -0.73377128224391142 +6.5571195165482265e-18 0.73132225045616739 -0.68203208574650398 +0.23797402212934904 0.20209118411408986 -0.95001448309746583 +0.19654920871264409 0.26534356265230635 -0.94390741193901806 +0.18275773351615091 0.56644608341520675 -0.80357852474018521 +0.25063608611031912 0.57642063043274483 -0.7777665518334006 +-0.23797402212934904 -0.20209118411408986 -0.95001448309746583 +-0.19654920871264409 -0.26534356265230635 -0.94390741193901806 +-0.18275773351615091 -0.56644608341520675 -0.80357852474018521 +-0.25063608611031912 -0.57642063043274483 -0.7777665518334006 +-0.95001448309746583 0.23797402212934904 -0.20209118411408983 +-0.94390741193901806 0.19654920871264411 -0.2653435626523063 +-0.91652901576006229 -0.1129504910198771 -0.38368834989905565 +-0.93266817185682316 -0.15490162002342261 -0.32578454432242587 +-0.56496442685265946 4.927907460000931e-18 0.82511526248824529 +-0.62588411178006298 6.5652635294160463e-18 0.77991607152390563 +-0.80357852474018532 -0.18275773351615091 0.56644608341520641 +-0.77776655183340049 -0.25063608611031907 0.57642063043274483 +-0.58714124035889637 0.7120404609681168 0.38505005624480637 +-0.58336686281126149 0.74735820322637392 0.31802330015895514 +-0.67939657443508372 0.73377128224391142 3.6838438251301899e-18 +-0.73132225045616739 0.68203208574650398 6.5571195165482265e-18 +-0.23797402212934904 -0.20209118411408983 0.95001448309746583 +-0.19654920871264411 -0.2653435626523063 0.94390741193901806 +0.1129504910198771 -0.38368834989905565 0.91652901576006229 +0.15490162002342261 -0.32578454432242587 0.93266817185682316 +0.73377128224391142 -3.6838438251301899e-18 0.67939657443508372 +0.68203208574650398 -6.5571195165482265e-18 0.73132225045616739 +0.70871769768752158 0.067277074024322203 0.70227702532207648 +0.56496442685265946 -4.927907460000931e-18 0.82511526248824529 +0.62588411178006298 -6.5652635294160463e-18 0.77991607152390563 +0.82511526248824529 0.56496442685265946 -4.927907460000931e-18 +0.77991607152390563 0.62588411178006298 -6.5652635294160463e-18 +0.38368834989905559 0.91652901576006229 0.11295049101987709 +0.32578454432242576 0.93266817185682316 0.15490162002342259 +-0.20209118411408983 0.95001448309746583 -0.23797402212934904 +-0.2653435626523063 0.94390741193901806 -0.19654920871264411 +-0.38368834989905565 0.91652901576006229 0.1129504910198771 +-0.32578454432242587 0.93266817185682316 0.15490162002342261 +-0.20209118411408986 0.95001448309746583 0.23797402212934904 +-0.26534356265230635 0.94390741193901806 0.19654920871264409 +-0.56644608341520675 0.80357852474018521 0.18275773351615091 +-0.57642063043274472 0.77776655183340049 0.25063608611031907 +-0.95001448309746583 0.23797402212934904 0.20209118411408986 +-0.94390741193901806 0.19654920871264409 0.26534356265230635 +-0.80357852474018521 0.18275773351615091 0.56644608341520675 +-0.77776655183340049 0.25063608611031907 0.57642063043274472 +-0.7120404609681168 0.38505005624480637 0.58714124035889637 +-0.74735820322637392 0.31802330015895514 0.58336686281126149 +-0.73377128224391142 3.6838438251301899e-18 0.67939657443508372 +-0.68203208574650398 6.5571195165482265e-18 0.73132225045616739 +-0.38505005624480643 -0.58714124035889637 0.71204046096811668 +-0.31802330015895514 -0.58336686281126149 0.74735820322637392 +-0.11295049101987709 -0.38368834989905559 0.91652901576006229 +-0.15490162002342259 -0.32578454432242576 0.93266817185682316 +0.7120404609681168 0.38505005624480637 -0.58714124035889637 +0.74735820322637392 0.31802330015895514 -0.58336686281126149 +0.73377128224391142 3.6838438251301899e-18 -0.67939657443508372 +0.68203208574650398 6.5571195165482265e-18 -0.73132225045616739 +0.38505005624480643 -0.58714124035889637 -0.71204046096811668 +0.31802330015895514 -0.58336686281126149 -0.74735820322637392 +0.11295049101987709 -0.38368834989905559 -0.91652901576006229 +0.15490162002342259 -0.32578454432242576 -0.93266817185682316 +0.23797402212934904 -0.20209118411408983 -0.95001448309746583 +0.19654920871264411 -0.2653435626523063 -0.94390741193901806 +-0.1129504910198771 -0.38368834989905565 -0.91652901576006229 +-0.15490162002342261 -0.32578454432242587 -0.93266817185682316 +-0.7120404609681168 -0.38505005624480637 -0.58714124035889637 +-0.74735820322637392 -0.31802330015895514 -0.58336686281126149 +-0.73377128224391142 -3.6838438251301899e-18 -0.67939657443508372 +-0.68203208574650398 -6.5571195165482265e-18 -0.73132225045616739 +-0.56496442685265946 -4.927907460000931e-18 -0.82511526248824529 +-0.62588411178006298 -6.5652635294160463e-18 -0.77991607152390563 +-0.80357852474018532 0.18275773351615091 -0.56644608341520641 +-0.77776655183340049 0.25063608611031907 -0.57642063043274483 +-0.82511526248824529 0.56496442685265946 4.927907460000931e-18 +-0.77991607152390563 0.62588411178006298 6.5652635294160463e-18 +-0.56644608341520641 0.80357852474018532 -0.18275773351615091 +-0.57642063043274472 0.77776655183340049 -0.25063608611031907 +-0.58714124035889637 0.71204046096811668 -0.38505005624480643 +-0.58336686281126149 0.74735820322637392 -0.31802330015895514 +-0.38368834989905559 0.91652901576006229 -0.11295049101987709 +-0.32578454432242576 0.93266817185682316 -0.15490162002342259 +0.20209118411408983 0.95001448309746583 0.23797402212934904 +0.2653435626523063 0.94390741193901806 0.19654920871264411 +0.38368834989905565 0.91652901576006229 -0.1129504910198771 +0.32578454432242587 0.93266817185682316 -0.15490162002342261 +0.20209118411408986 0.95001448309746583 -0.23797402212934904 +0.26534356265230635 0.94390741193901806 -0.19654920871264409 +0.56644608341520675 0.80357852474018521 -0.18275773351615091 +0.57642063043274472 0.77776655183340049 -0.25063608611031907 +0.80357852474018521 0.18275773351615091 -0.56644608341520675 +0.77776655183340049 0.25063608611031907 -0.57642063043274472 +0.23797402212934904 -0.20209118411408986 0.95001448309746583 +0.19654920871264409 -0.26534356265230635 0.94390741193901806 +0.18275773351615091 -0.56644608341520675 0.80357852474018521 +0.25063608611031912 -0.57642063043274483 0.7777665518334006 +0.38505005624480637 -0.58714124035889637 0.7120404609681168 +0.31802330015895514 -0.58336686281126149 0.74735820322637392 +3.6838438251301899e-18 -0.67939657443508372 0.73377128224391142 +6.5571195165482265e-18 -0.73132225045616739 0.68203208574650398 +-0.58714124035889637 -0.71204046096811668 0.38505005624480643 +-0.58336686281126149 -0.74735820322637392 0.31802330015895514 +-0.38368834989905559 -0.91652901576006229 0.11295049101987709 +-0.32578454432242576 -0.93266817185682316 0.15490162002342259 +-0.20209118411408983 -0.95001448309746583 0.23797402212934904 +-0.2653435626523063 -0.94390741193901806 0.19654920871264411 +-0.38368834989905565 -0.91652901576006229 -0.1129504910198771 +-0.32578454432242587 -0.93266817185682316 -0.15490162002342261 +-0.38505005624480637 -0.58714124035889637 -0.7120404609681168 +-0.31802330015895514 -0.58336686281126149 -0.74735820322637392 +-3.6838438251301899e-18 -0.67939657443508372 -0.73377128224391142 +-6.5571195165482265e-18 -0.73132225045616739 -0.68203208574650398 +-4.927907460000931e-18 -0.82511526248824529 -0.56496442685265946 +-6.5652635294160463e-18 -0.77991607152390563 -0.62588411178006298 +0.18275773351615091 -0.56644608341520641 -0.80357852474018532 +0.25063608611031907 -0.57642063043274483 -0.77776655183340049 +0.56496442685265946 4.927907460000931e-18 -0.82511526248824529 +0.62588411178006298 6.5652635294160463e-18 -0.77991607152390563 +0.9236940845413727 0.2726998137406515 0.26911716736226499 +0.58714124035889637 0.7120404609681168 -0.38505005624480637 +0.58336686281126149 0.74735820322637392 -0.31802330015895514 +0.67939657443508372 0.73377128224391142 -3.6838438251301899e-18 +0.73132225045616739 0.68203208574650398 -6.5571195165482265e-18 +-0.20209118411408986 -0.95001448309746583 -0.23797402212934904 +-0.26534356265230635 -0.94390741193901806 -0.19654920871264409 +-0.56644608341520675 -0.80357852474018521 -0.18275773351615091 +-0.57642063043274472 -0.77776655183340049 -0.25063608611031907 +-0.95001448309746583 -0.23797402212934904 -0.20209118411408986 +-0.94390741193901806 -0.19654920871264409 -0.26534356265230635 +-0.80357852474018521 -0.18275773351615091 -0.56644608341520675 +-0.77776655183340049 -0.25063608611031907 -0.57642063043274472 +-0.58714124035889637 -0.7120404609681168 -0.38505005624480637 +-0.58336686281126149 -0.74735820322637392 -0.31802330015895514 +-0.67939657443508372 -0.73377128224391142 -3.6838438251301899e-18 +-0.73132225045616739 -0.68203208574650398 -6.5571195165482265e-18 +-0.71204046096811668 -0.38505005624480643 0.58714124035889637 +-0.74735820322637392 -0.31802330015895514 0.58336686281126149 +-0.91652901576006229 -0.11295049101987709 0.38368834989905559 +-0.93266817185682316 -0.15490162002342259 0.32578454432242576 +-0.82511526248824529 -0.56496442685265946 -4.927907460000931e-18 +-0.77991607152390563 -0.62588411178006298 -6.5652635294160463e-18 +-0.56644608341520641 -0.80357852474018532 0.18275773351615091 +-0.57642063043274483 -0.77776655183340049 0.25063608611031907 +4.927907460000931e-18 -0.82511526248824529 0.56496442685265946 +6.5652635294160463e-18 -0.77991607152390563 0.62588411178006298 +-0.18275773351615091 -0.56644608341520641 0.80357852474018532 +-0.25063608611031907 -0.57642063043274483 0.77776655183340049 +-0.71204046096811668 0.38505005624480643 -0.58714124035889637 +-0.74735820322637392 0.31802330015895514 -0.58336686281126149 +-0.91652901576006229 0.11295049101987709 -0.38368834989905559 +-0.93266817185682316 0.15490162002342259 -0.32578454432242576 +-0.95001448309746583 -0.23797402212934904 0.20209118411408983 +-0.94390741193901806 -0.19654920871264411 0.2653435626523063 +-0.91652901576006229 0.1129504910198771 0.38368834989905565 +-0.93266817185682316 0.15490162002342261 0.32578454432242587 +0.20470147868264915 0.9270588370822882 0.31410064822087247 +0.069986566252294838 0.84380044240886354 0.53207395532465163 +0.11695476797072325 0.81049434395812059 0.57278135509939099 +-0.52969979418799107 0.72619883181352496 0.43823895845745114 +-0.39498488175763657 0.64294043714010041 0.65621226556123025 +-0.53207395532465163 0.069986566252294838 0.84380044240886354 +-0.31410064822087258 0.20470147868264921 0.9270588370822882 +0.20086000526876321 -0.13471491243035441 0.97031291378210283 +0.20086000526876321 0.13471491243035441 0.97031291378210283 +-0.20086000526876321 -0.13471491243035441 -0.97031291378210283 +-0.20086000526876321 0.13471491243035441 -0.97031291378210283 +-0.65621226556123025 0.39498488175763669 -0.64294043714010041 +-0.43823895845745109 0.52969979418799096 -0.72619883181352507 +-0.20470147868264915 0.9270588370822882 -0.31410064822087247 +-0.069986566252294838 0.84380044240886354 -0.53207395532465163 +0.52969979418799107 0.72619883181352496 -0.43823895845745114 +0.39498488175763657 0.64294043714010041 -0.65621226556123025 +0.53207395532465163 0.069986566252294838 -0.84380044240886354 +0.31410064822087258 0.20470147868264921 -0.9270588370822882 +0.069986566252294838 -0.84380044240886354 0.53207395532465163 +-0.13471491243035441 -0.97031291378210283 -0.20086000526876321 +0.13471491243035441 -0.97031291378210283 -0.20086000526876321 +-0.53207395532465163 -0.069986566252294838 -0.84380044240886354 +-0.31410064822087258 -0.20470147868264921 -0.9270588370822882 +-0.97031291378210283 0.20086000526876321 0.13471491243035441 +-0.97031291378210283 0.20086000526876321 -0.13471491243035441 +-0.31410064822087247 -0.20470147868264915 0.9270588370822882 +-0.53207395532465163 -0.069986566252294838 0.84380044240886354 +-0.72619883181352496 0.43823895845745114 0.52969979418799107 +-0.64294043714010041 0.65621226556123025 0.39498488175763657 +-0.20086000526876321 0.13471491243035441 0.97031291378210283 +-0.20086000526876321 -0.13471491243035441 0.97031291378210283 +0.43823895845745114 -0.52969979418799107 0.72619883181352496 +0.31410064822087252 0.20470147868264915 0.9270588370822882 +0.9270588370822882 0.31410064822087252 0.20470147868264915 +0.13471491243035441 0.97031291378210283 -0.20086000526876321 +-0.13471491243035441 0.97031291378210283 -0.20086000526876321 +-0.069986566252294838 0.84380044240886354 0.53207395532465163 +-0.20470147868264923 0.9270588370822882 0.31410064822087264 +-0.84380044240886354 0.53207395532465163 0.069986566252294838 +-0.9270588370822882 0.31410064822087264 0.20470147868264923 +-0.43823895845745114 0.52969979418799107 0.72619883181352496 +-0.65621226556123025 0.39498488175763657 0.64294043714010041 +-0.65621226556123025 -0.39498488175763669 0.64294043714010041 +-0.43823895845745109 -0.52969979418799096 0.72619883181352507 +0.43823895845745114 0.52969979418799107 -0.72619883181352496 +0.65621226556123025 0.39498488175763657 -0.64294043714010041 +0.43823895845745109 -0.52969979418799096 -0.72619883181352507 +0.20086000526876321 0.13471491243035441 -0.97031291378210283 +0.20086000526876321 -0.13471491243035441 -0.97031291378210283 +-0.43823895845745114 -0.52969979418799107 -0.72619883181352496 +-0.65621226556123025 -0.39498488175763657 -0.64294043714010041 +-0.31410064822087252 0.20470147868264915 -0.9270588370822882 +-0.53207395532465174 0.069986566252294838 -0.84380044240886354 +-0.9270588370822882 0.31410064822087247 -0.20470147868264915 +-0.84380044240886354 0.53207395532465163 -0.069986566252294838 +-0.39498488175763669 0.64294043714010041 -0.65621226556123025 +-0.52969979418799096 0.72619883181352507 -0.43823895845745109 +-0.13471491243035441 0.97031291378210283 0.20086000526876321 +0.13471491243035441 0.97031291378210283 0.20086000526876321 +0.069986566252294838 0.84380044240886354 -0.53207395532465163 +0.20470147868264923 0.9270588370822882 -0.31410064822087264 +0.84380044240886354 0.53207395532465163 -0.069986566252294838 +0.9270588370822882 0.31410064822087258 -0.20470147868264921 +0.53207395532465163 -0.069986566252294838 0.84380044240886354 +0.31410064822087258 -0.20470147868264921 0.9270588370822882 +-0.39498488175763669 -0.64294043714010041 0.65621226556123025 +-0.52969979418799096 -0.72619883181352507 0.43823895845745109 +0.13471491243035441 -0.97031291378210283 0.20086000526876321 +-0.13471491243035441 -0.97031291378210283 0.20086000526876321 +-0.52969979418799107 -0.72619883181352496 -0.43823895845745114 +-0.39498488175763657 -0.64294043714010041 -0.65621226556123025 +0.069986566252294838 -0.84380044240886354 -0.53207395532465174 +0.31410064822087247 -0.20470147868264915 -0.9270588370822882 +0.53207395532465163 -0.069986566252294838 -0.84380044240886354 +0.72619883181352496 0.43823895845745114 -0.52969979418799107 +0.64294043714010041 0.65621226556123025 -0.39498488175763657 +-0.069986566252294838 -0.84380044240886354 -0.53207395532465163 +-0.20470147868264921 -0.9270588370822882 -0.31410064822087258 +-0.84380044240886354 -0.53207395532465163 -0.069986566252294838 +-0.9270588370822882 -0.31410064822087258 -0.20470147868264921 +-0.72619883181352496 -0.43823895845745114 -0.52969979418799107 +-0.64294043714010041 -0.65621226556123025 -0.39498488175763657 +-0.64294043714010041 -0.65621226556123025 0.39498488175763669 +-0.72619883181352507 -0.43823895845745109 0.52969979418799096 +-0.9270588370822882 -0.31410064822087247 0.20470147868264915 +-0.84380044240886354 -0.53207395532465163 0.069986566252294838 +-0.20470147868264915 -0.9270588370822882 0.31410064822087247 +-0.069986566252294838 -0.84380044240886354 0.53207395532465163 +-0.64294043714010041 0.65621226556123025 -0.39498488175763669 +-0.72619883181352507 0.43823895845745109 -0.52969979418799096 +-0.97031291378210283 -0.20086000526876321 -0.13471491243035441 +-0.97031291378210283 -0.20086000526876321 0.13471491243035441 +0.17811496227257201 0.44486756488630003 0.87684117534766193 +0.16208565674454739 0.067174638370274917 0.984487586431394 +0.43210633013751587 0.18610643753537565 0.88125255845135109 +-0.1264800315542341 0.61148180127020313 0.78108437977813105 +-0.14324145828887105 0.44478475305090459 0.88410882140193769 +-0.06507249989019516 0.64943374300381451 0.75762878984770377 +-0.13950602492257505 0.85675191169903997 0.49650199476975149 +0.037951941733611459 0.37971225316070945 0.92432583806700219 +-0.16669704821929851 0.50619228471494349 0.84615687966832631 +-0.40176612662410133 0.69466625495449252 0.59667643972673035 +-0.48798559166164268 0.46894076499437626 0.73618246464930526 +-0.037951941733611459 0.37971225316070945 0.92432583806700219 +-0.38781114670466377 0.20668066329284993 0.89826812139385259 +-0.16208565674454734 0.067174638370274917 0.984487586431394 +-0.16669704821929851 0.50619228471494349 -0.84615687966832631 +0.037951941733611459 0.37971225316070945 -0.92432583806700219 +0.38781114670466377 0.20668066329284993 -0.89826812139385259 +0.16208565674454734 0.067174638370274917 -0.984487586431394 +-0.06507249989019516 0.64943374300381451 -0.75762878984770377 +-0.14324145828887103 0.44478475305090454 -0.88410882140193769 +-0.16208565674454739 0.067174638370274917 -0.984487586431394 +-0.38781114670466377 0.20668066329285001 -0.89826812139385281 +0.1264800315542341 0.61148180127020313 -0.78108437977813105 +-0.1264800315542341 0.61148180127020313 -0.78108437977813105 +-0.48798559166164257 0.46894076499437626 -0.73618246464930537 +-0.40176612662410133 0.69466625495449263 -0.59667643972673012 +0.14324145828887105 0.44478475305090459 -0.88410882140193769 +0.065072499890195173 0.64943374300381473 -0.75762878984770365 +-0.13950602492257505 0.85675191169903997 -0.49650199476975138 +0.13950602492257505 0.85675191169903997 -0.49650199476975149 +-0.037951941733611459 0.37971225316070945 -0.92432583806700219 +0.16669704821929851 0.50619228471494349 -0.84615687966832631 +0.40176612662410133 0.69466625495449252 -0.59667643972673035 +0.48798559166164268 0.46894076499437626 -0.73618246464930526 +0.20668066329284993 -0.89826812139385259 0.38781114670466377 +0.067174638370274931 -0.98448758643139411 0.16208565674454736 +0.067174638370274931 -0.98448758643139411 -0.16208565674454742 +0.20668066329284998 -0.89826812139385259 -0.38781114670466371 +0.88692657891222382 0.1974660445788706 0.41582096722616779 +0.88125255845135109 0.43210633013751554 0.18610643753537598 +0.037951941733611459 -0.37971225316070945 -0.92432583806700219 +-0.16669704821929851 -0.50619228471494349 -0.84615687966832631 +-0.40176612662410133 -0.69466625495449252 -0.59667643972673035 +-0.48798559166164268 -0.46894076499437626 -0.73618246464930526 +-0.84615687966832631 0.16669704821929851 -0.50619228471494349 +-0.92432583806700219 -0.037951941733611459 -0.37971225316070945 +-0.89826812139385259 -0.38781114670466377 -0.20668066329284993 +-0.98448758643139411 -0.16208565674454736 -0.067174638370274931 +-0.78108437977813128 0.12648003155423412 0.61148180127020324 +-0.78108437977813128 -0.1264800315542341 0.61148180127020324 +-0.73618246464930537 -0.48798559166164257 0.46894076499437626 +-0.59667643972673012 -0.40176612662410133 0.69466625495449263 +-0.44478475305090459 0.88410882140193769 0.14324145828887105 +-0.64943374300381462 0.75762878984770354 0.06507249989019516 +-0.85675191169903997 0.49650199476975138 -0.13950602492257505 +-0.85675191169903997 0.49650199476975149 0.13950602492257505 +-0.16669704821929851 -0.50619228471494349 0.84615687966832631 +0.037951941733611459 -0.37971225316070945 0.92432583806700219 +0.38781114670466377 -0.20668066329284993 0.89826812139385259 +0.16208565674454739 -0.067174638370274917 0.984487586431394 +0.49650199476975149 -0.13950602492257505 0.85675191169903997 +0.61148180127020324 0.78108437977813128 -0.12648003155423412 +0.44486756488630003 0.87684117534766193 0.17811496227257201 +0.067174638370274931 0.98448758643139411 0.16208565674454736 +0.18610643753537565 0.88125255845135109 0.43210633013751576 +-0.50619228471494349 0.84615687966832631 -0.16669704821929851 +-0.37971225316070945 0.92432583806700219 0.037951941733611459 +-0.20668066329284998 0.89826812139385259 0.38781114670466382 +-0.067174638370274931 0.98448758643139411 0.16208565674454736 +-0.37971225316070945 0.92432583806700219 -0.037951941733611459 +-0.50619228471494349 0.84615687966832631 0.16669704821929851 +-0.69466625495449252 0.59667643972673035 0.40176612662410133 +-0.46894076499437626 0.73618246464930526 0.48798559166164268 +-0.92432583806700219 -0.037951941733611459 0.37971225316070945 +-0.84615687966832631 0.16669704821929851 0.50619228471494349 +-0.59667643972673035 0.40176612662410133 0.69466625495449252 +-0.73618246464930526 0.48798559166164268 0.46894076499437626 +-0.88410882140193769 0.14324145828887105 0.44478475305090459 +-0.75762878984770377 0.06507249989019516 0.64943374300381451 +-0.49650199476975138 -0.13950602492257505 0.85675191169903997 +-0.49650199476975149 0.13950602492257505 0.85675191169903997 +-0.06507249989019516 -0.64943374300381462 0.75762878984770377 +-0.14324145828887103 -0.44478475305090454 0.88410882140193769 +-0.16208565674454734 -0.067174638370274917 0.984487586431394 +-0.38781114670466377 -0.20668066329285001 0.89826812139385281 +0.75762878984770377 0.06507249989019516 -0.64943374300381451 +0.49650199476975138 -0.13950602492257505 -0.85675191169903997 +0.49650199476975149 0.13950602492257505 -0.85675191169903997 +0.06507249989019516 -0.64943374300381462 -0.75762878984770377 +0.14324145828887103 -0.44478475305090454 -0.88410882140193769 +0.16208565674454734 -0.067174638370274917 -0.984487586431394 +0.38781114670466377 -0.20668066329285001 -0.89826812139385281 +0.16669704821929851 -0.50619228471494349 -0.84615687966832631 +-0.037951941733611459 -0.37971225316070945 -0.92432583806700219 +-0.38781114670466377 -0.20668066329284993 -0.89826812139385259 +-0.16208565674454739 -0.067174638370274917 -0.984487586431394 +-0.88410882140193769 -0.14324145828887105 -0.44478475305090459 +-0.75762878984770377 -0.06507249989019516 -0.64943374300381451 +-0.49650199476975138 0.13950602492257505 -0.85675191169903997 +-0.49650199476975149 -0.13950602492257505 -0.85675191169903997 +-0.78108437977813128 -0.12648003155423412 -0.61148180127020324 +-0.78108437977813128 0.1264800315542341 -0.61148180127020324 +-0.73618246464930537 0.48798559166164257 -0.46894076499437626 +-0.59667643972673012 0.40176612662410133 -0.69466625495449263 +-0.61148180127020324 0.78108437977813128 0.12648003155423412 +-0.61148180127020324 0.78108437977813128 -0.1264800315542341 +-0.46894076499437626 0.73618246464930537 -0.48798559166164257 +-0.69466625495449263 0.59667643972673012 -0.40176612662410133 +-0.64943374300381451 0.75762878984770377 -0.06507249989019516 +-0.44478475305090454 0.88410882140193769 -0.14324145828887103 +-0.067174638370274931 0.98448758643139411 -0.16208565674454736 +-0.20668066329284998 0.89826812139385259 -0.38781114670466371 +0.37971225316070945 0.92432583806700219 -0.037951941733611459 +0.20668066329284998 0.89826812139385259 -0.38781114670466382 +0.067174638370274931 0.98448758643139411 -0.16208565674454736 +0.37971225316070945 0.92432583806700219 0.037951941733611459 +0.50619228471494349 0.84615687966832631 -0.16669704821929851 +0.69466625495449252 0.59667643972673035 -0.40176612662410133 +0.46894076499437626 0.73618246464930526 -0.48798559166164268 +0.84615687966832631 0.16669704821929851 -0.50619228471494349 +0.59667643972673035 0.40176612662410133 -0.69466625495449252 +0.73618246464930526 0.48798559166164268 -0.46894076499437626 +-0.037951941733611459 -0.37971225316070945 0.92432583806700219 +0.16669704821929851 -0.50619228471494349 0.84615687966832631 +0.14324145828887105 -0.44478475305090459 0.88410882140193769 +0.065072499890195173 -0.64943374300381473 0.75762878984770365 +-0.13950602492257505 -0.85675191169903997 0.49650199476975138 +0.13950602492257505 -0.85675191169903997 0.49650199476975149 +-0.64943374300381451 -0.75762878984770365 0.065072499890195146 +-0.44478475305090454 -0.88410882140193769 0.14324145828887103 +-0.067174638370274931 -0.98448758643139411 0.16208565674454736 +-0.20668066329284998 -0.89826812139385259 0.38781114670466371 +-0.50619228471494349 -0.84615687966832631 0.16669704821929851 +-0.37971225316070945 -0.92432583806700219 -0.037951941733611459 +-0.20668066329284993 -0.89826812139385259 -0.38781114670466377 +-0.067174638370274931 -0.98448758643139411 -0.16208565674454742 +-0.14324145828887105 -0.44478475305090459 -0.88410882140193769 +-0.065072499890195173 -0.64943374300381473 -0.75762878984770365 +0.13950602492257505 -0.85675191169903997 -0.49650199476975138 +-0.13950602492257505 -0.85675191169903997 -0.49650199476975149 +-0.1264800315542341 -0.61148180127020313 -0.78108437977813105 +0.1264800315542341 -0.61148180127020313 -0.78108437977813105 +0.78108437977813128 0.12648003155423412 -0.61148180127020324 +0.84695178356442291 0.1418121948905855 0.51101182387798261 +0.89826812139385259 0.38781114670466377 -0.20668066329284993 +0.44478475305090459 0.88410882140193769 -0.14324145828887105 +0.64943374300381462 0.75762878984770354 -0.06507249989019516 +0.85675191169903997 0.49650199476975149 -0.13950602492257505 +-0.37971225316070945 -0.92432583806700219 0.037951941733611459 +-0.50619228471494349 -0.84615687966832631 -0.16669704821929851 +-0.69466625495449252 -0.59667643972673035 -0.40176612662410133 +-0.46894076499437626 -0.73618246464930526 -0.48798559166164268 +-0.92432583806700219 0.037951941733611459 -0.37971225316070945 +-0.84615687966832631 -0.16669704821929851 -0.50619228471494349 +-0.59667643972673035 -0.40176612662410133 -0.69466625495449252 +-0.73618246464930526 -0.48798559166164268 -0.46894076499437626 +-0.44478475305090459 -0.88410882140193769 -0.14324145828887105 +-0.64943374300381462 -0.75762878984770354 -0.06507249989019516 +-0.85675191169903997 -0.49650199476975138 0.13950602492257505 +-0.85675191169903997 -0.49650199476975149 -0.13950602492257505 +-0.75762878984770377 -0.06507249989019516 0.64943374300381462 +-0.88410882140193769 -0.14324145828887103 0.44478475305090454 +-0.98448758643139411 -0.16208565674454736 0.067174638370274931 +-0.89826812139385259 -0.38781114670466371 0.20668066329284998 +-0.61148180127020324 -0.78108437977813128 -0.12648003155423412 +-0.61148180127020324 -0.78108437977813128 0.1264800315542341 +-0.46894076499437626 -0.73618246464930537 0.48798559166164257 +-0.69466625495449263 -0.59667643972673012 0.40176612662410133 +0.1264800315542341 -0.61148180127020313 0.78108437977813105 +-0.1264800315542341 -0.61148180127020313 0.78108437977813105 +-0.48798559166164257 -0.46894076499437626 0.73618246464930537 +-0.40176612662410133 -0.69466625495449263 0.59667643972673012 +-0.75762878984770377 0.06507249989019516 -0.64943374300381462 +-0.88410882140193769 0.14324145828887103 -0.44478475305090454 +-0.98448758643139411 0.16208565674454736 -0.067174638370274931 +-0.89826812139385259 0.38781114670466371 -0.20668066329284998 +-0.84615687966832631 -0.16669704821929851 0.50619228471494349 +-0.92432583806700219 0.037951941733611459 0.37971225316070945 +-0.89826812139385259 0.38781114670466382 0.20668066329284998 +-0.98448758643139411 0.16208565674454736 0.067174638370274931 +-0.40127702279442368 0.85397772162051189 0.33120809463701684 +-0.33924096091721678 0.86230450765389344 0.37596077789543403 +-0.64927986178574382 0.20469785983476813 0.7324851174314404 +-0.61446983418191226 0.27287882084494519 0.74024588618561449 +0 -0.19657916295965555 0.98048795642276054 +-0.040522281668716867 -0.13192856911395229 0.99043061207734606 +0 -0.19657916295965558 -0.98048795642276054 +0.040522281668716867 -0.13192856911395229 -0.99043061207734606 +-0.64927986178574371 0.20469785983476807 -0.7324851174314404 +-0.58942568680894825 0.20731239180326447 -0.78076816785433134 +-0.40127702279442362 0.85397772162051189 -0.33120809463701684 +-0.40480738995889742 0.82178222598517658 -0.40100492526839771 +0.40127702279442368 0.85397772162051189 -0.33120809463701678 +0.33924096091721678 0.86230450765389344 -0.37596077789543403 +0.64927986178574382 0.20469785983476813 -0.7324851174314404 +0.61446983418191226 0.27287882084494519 -0.74024588618561449 +0.20469785983476813 -0.7324851174314404 0.64927986178574382 +0.27287882084494519 -0.74024588618561449 0.61446983418191226 +-0.19657916295965555 -0.98048795642276054 0 +-0.13192856911395229 -0.99043061207734606 0.040522281668716867 +0.20469785983476813 -0.7324851174314404 -0.64927986178574382 +0.20731239180326447 -0.78076816785433134 -0.58942568680894825 +-0.64927986178574382 -0.20469785983476813 -0.7324851174314404 +-0.61446983418191226 -0.27287882084494519 -0.74024588618561449 +-0.98048795642276054 0 0.19657916295965558 +-0.99043061207734606 -0.040522281668716874 0.13192856911395229 +-0.33120809463701684 -0.40127702279442373 0.85397772162051189 +-0.40100492526839771 -0.40480738995889742 0.82178222598517658 +-0.85397772162051189 0.33120809463701684 0.40127702279442379 +-0.86230450765389344 0.37596077789543403 0.33924096091721678 +0 0.19657916295965558 0.98048795642276054 +0.040522281668716867 0.13192856911395229 0.99043061207734606 +0.33120809463701678 -0.40127702279442368 0.85397772162051189 +0.37596077789543403 -0.33924096091721678 0.86230450765389344 +0.19657916295965558 0.98048795642276054 0 +0.13192856911395229 0.99043061207734606 0.040522281668716874 +-0.20469785983476813 0.7324851174314404 0.64927986178574382 +-0.27287882084494519 0.74024588618561449 0.61446983418191226 +-0.7324851174314404 0.64927986178574382 0.20469785983476813 +-0.74024588618561449 0.61446983418191226 0.27287882084494519 +-0.33120809463701684 0.40127702279442379 0.85397772162051189 +-0.37596077789543403 0.33924096091721678 0.86230450765389344 +-0.64927986178574371 -0.20469785983476807 0.7324851174314404 +-0.58942568680894825 -0.20731239180326447 0.78076816785433134 +0.33120809463701684 0.40127702279442368 -0.85397772162051189 +0.37596077789543403 0.33924096091721678 -0.86230450765389344 +0.58942568680894825 -0.20731239180326447 -0.78076816785433134 +0 0.19657916295965555 -0.98048795642276054 +-0.040522281668716867 0.13192856911395229 -0.99043061207734606 +-0.33120809463701678 -0.40127702279442368 -0.85397772162051189 +-0.37596077789543403 -0.33924096091721678 -0.86230450765389344 +-0.33120809463701684 0.40127702279442373 -0.85397772162051189 +-0.40100492526839771 0.40480738995889742 -0.82178222598517658 +-0.85397772162051189 0.33120809463701684 -0.40127702279442362 +-0.82178222598517658 0.40100492526839771 -0.40480738995889742 +-0.20469785983476813 0.7324851174314404 -0.64927986178574382 +-0.20731239180326447 0.78076816785433134 -0.58942568680894825 +-0.19657916295965552 0.98048795642276054 0 +-0.13192856911395229 0.99043061207734606 -0.040522281668716874 +0.20469785983476813 0.7324851174314404 -0.64927986178574382 +0.27287882084494519 0.74024588618561449 -0.61446983418191226 +0.7324851174314404 0.64927986178574382 -0.20469785983476813 +0.74024588618561449 0.61446983418191226 -0.27287882084494519 +-0.20469785983476813 -0.7324851174314404 0.64927986178574382 +-0.20731239180326447 -0.78076816785433134 0.58942568680894825 +0.13192856911395229 -0.99043061207734606 -0.040522281668716867 +-0.40127702279442368 -0.85397772162051189 -0.33120809463701678 +-0.33924096091721678 -0.86230450765389344 -0.37596077789543403 +0.33120809463701684 -0.40127702279442373 -0.85397772162051189 +0.40100492526839771 -0.40480738995889742 -0.82178222598517658 +0.85397772162051189 0.33120809463701684 -0.40127702279442379 +0.86230450765389344 0.37596077789543403 -0.33924096091721678 +-0.20469785983476813 -0.7324851174314404 -0.64927986178574382 +-0.27287882084494519 -0.74024588618561449 -0.61446983418191226 +-0.7324851174314404 -0.64927986178574382 -0.20469785983476813 +-0.74024588618561449 -0.61446983418191226 -0.27287882084494519 +-0.85397772162051189 -0.33120809463701684 -0.40127702279442368 +-0.86230450765389344 -0.37596077789543403 -0.33924096091721678 +-0.7324851174314404 -0.64927986178574382 0.20469785983476813 +-0.78076816785433134 -0.58942568680894825 0.20731239180326447 +-0.85397772162051189 -0.33120809463701678 0.40127702279442362 +-0.82178222598517658 -0.40100492526839771 0.40480738995889742 +-0.40127702279442373 -0.85397772162051189 0.33120809463701684 +-0.40480738995889742 -0.82178222598517658 0.40100492526839771 +-0.7324851174314404 0.64927986178574382 -0.20469785983476813 +-0.78076816785433134 0.58942568680894825 -0.20731239180326447 +-0.98048795642276054 0 -0.19657916295965552 +-0.99043061207734606 0.040522281668716874 -0.13192856911395229 +0.039734588558411582 0.26026494835742225 0.96471929550963276 +-0.13827368218737232 0.7695778385021762 0.62340222914316235 +-0.35362935294171682 0.46556504362316581 0.81129246939324073 +0.069740197633308867 0.8004723406749189 0.59529852733606159 +0.068996282000725426 0.75327597529184531 0.65407554465688111 +-0.080281277350241251 0.19739352602284607 0.97703158208487906 +-0.20012814034344362 0.68018071850695239 0.70519707714513458 +-0.25952221836449818 0.39610117388436322 0.88076789123048704 +-0.30401279487901051 0.33566720821021828 -0.891573746743482 +0.25952221836449818 0.39610117388436322 -0.88076789123048704 +-0.26817151760031976 0.68929656115193516 -0.6730187872058685 +-0.039734588558411582 0.26026494835742225 -0.96471929550963276 +0.13827368218737232 0.7695778385021762 -0.62340222914316235 +-0.28407954462258928 0.46039308870086582 -0.84103330267207554 +0.35362935294171682 0.46556504362316581 -0.81129246939324073 +-0.135836225526941 0.719915307065364 -0.68063975088704354 +0.080281277350241251 0.19739352602284607 -0.97703158208487906 +0.20012814034344362 0.68018071850695239 -0.70519707714513458 +-0.080281277350241251 -0.19739352602284607 -0.97703158208487906 +-0.20012814034344362 -0.68018071850695239 -0.70519707714513458 +-0.891573746743482 0.30401279487901051 -0.33566720821021828 +-0.88076789123048704 -0.25952221836449818 -0.39610117388436322 +-0.62340222914316235 0.13827368218737232 0.76957783850217643 +-0.84103330267207554 -0.28407954462258928 0.46039308870086582 +-0.46556504362316581 0.81129246939324073 0.35362935294171682 +-0.719915307065364 0.68063975088704354 -0.135836225526941 +-0.30401279487901051 -0.33566720821021828 0.891573746743482 +0.25952221836449818 -0.39610117388436322 0.88076789123048704 +0.65407554465688111 0.068996282000725426 0.75327597529184531 +0.62340222914316235 -0.13827368218737232 0.76957783850217643 +0.76957783850217643 0.62340222914316235 -0.13827368218737232 +0.26026494835742225 0.96471929550963276 0.039734588558411582 +-0.33566720821021828 0.891573746743482 -0.30401279487901051 +-0.39610117388436322 0.88076789123048704 0.25952221836449818 +-0.19739352602284607 0.97703158208487906 0.080281277350241251 +-0.68018071850695239 0.70519707714513458 0.20012814034344362 +-0.97703158208487906 0.080281277350241251 0.19739352602284607 +-0.70519707714513458 0.20012814034344362 0.68018071850695239 +-0.81129246939324073 0.35362935294171682 0.46556504362316581 +-0.68063975088704343 -0.13583622552694097 0.71991530706536411 +-0.26817151760031971 -0.68929656115193505 0.67301878720586839 +-0.039734588558411582 -0.26026494835742225 0.96471929550963276 +0.81129246939324073 0.35362935294171682 -0.46556504362316581 +0.68063975088704343 -0.13583622552694097 -0.71991530706536411 +0.26817151760031971 -0.68929656115193505 -0.67301878720586839 +0.039734588558411582 -0.26026494835742225 -0.96471929550963276 +0.30401279487901051 -0.33566720821021828 -0.891573746743482 +-0.25952221836449818 -0.39610117388436322 -0.88076789123048704 +-0.81129246939324073 -0.35362935294171682 -0.46556504362316581 +-0.68063975088704343 0.13583622552694097 -0.71991530706536411 +-0.62340222914316235 -0.13827368218737232 -0.76957783850217643 +-0.84103330267207554 0.28407954462258928 -0.46039308870086582 +-0.7695778385021762 0.62340222914316235 0.13827368218737232 +-0.46039308870086582 0.84103330267207554 -0.28407954462258928 +-0.68929656115193516 0.6730187872058685 -0.26817151760031976 +-0.26026494835742225 0.96471929550963276 -0.039734588558411582 +0.39610117388436322 0.88076789123048704 -0.25952221836449818 +0.19739352602284607 0.97703158208487906 -0.080281277350241251 +0.68018071850695239 0.70519707714513458 -0.20012814034344362 +0.70519707714513458 0.20012814034344362 -0.68018071850695239 +0.080281277350241251 -0.19739352602284607 0.97703158208487906 +0.20012814034344362 -0.68018071850695239 0.70519707714513458 +0.35362935294171682 -0.46556504362316581 0.81129246939324073 +-0.13583622552694097 -0.71991530706536411 0.68063975088704343 +-0.68929656115193505 -0.67301878720586839 0.26817151760031971 +-0.26026494835742225 -0.96471929550963276 0.039734588558411582 +-0.33566720821021828 -0.891573746743482 0.30401279487901051 +-0.39610117388436322 -0.88076789123048704 -0.25952221836449818 +-0.35362935294171682 -0.46556504362316581 -0.81129246939324073 +0.13583622552694097 -0.71991530706536411 -0.68063975088704343 +-0.13827368218737232 -0.76957783850217643 -0.62340222914316235 +0.28407954462258928 -0.46039308870086582 -0.84103330267207554 +0.62340222914316235 0.13827368218737232 -0.76957783850217643 +0.88076789123048704 0.25952221836449818 -0.39610117388436322 +0.46556504362316581 0.81129246939324073 -0.35362935294171682 +-0.19739352602284607 -0.97703158208487906 -0.080281277350241251 +-0.68018071850695239 -0.70519707714513458 -0.20012814034344362 +-0.97703158208487906 -0.080281277350241251 -0.19739352602284607 +-0.70519707714513458 -0.20012814034344362 -0.68018071850695239 +-0.46556504362316581 -0.81129246939324073 -0.35362935294171682 +-0.71991530706536411 -0.68063975088704343 0.13583622552694097 +-0.67301878720586839 -0.26817151760031971 0.68929656115193505 +-0.96471929550963276 -0.039734588558411582 0.26026494835742225 +-0.76957783850217643 -0.62340222914316235 -0.13827368218737232 +-0.46039308870086582 -0.84103330267207554 0.28407954462258928 +0.13827368218737232 -0.76957783850217643 0.62340222914316235 +-0.28407954462258928 -0.46039308870086582 0.84103330267207554 +-0.67301878720586839 0.26817151760031971 -0.68929656115193505 +-0.96471929550963276 0.039734588558411582 -0.26026494835742225 +-0.891573746743482 -0.30401279487901051 0.33566720821021828 +-0.88076789123048704 0.25952221836449818 0.39610117388436322 +0.068715700526218768 0.9453832490724946 0.3186356302649232 +-0.58427898032160919 0.62674761880757135 0.51556327979539029 +-0.42981996927710414 0 0.90291461058653233 +0.31863563026492325 -0.068715700526218768 0.9453832490724946 +-0.31863563026492325 -0.068715700526218768 -0.9453832490724946 +-0.62674761880757135 0.51556327979539029 -0.58427898032160919 +-0.068715700526218768 0.9453832490724946 -0.3186356302649232 +0.58427898032160919 0.62674761880757146 -0.51556327979539029 +0.42981996927710414 0 -0.90291461058653233 +0 -0.90291461058653233 0.42981996927710414 +-0.068715700526218768 -0.9453832490724946 -0.31863563026492325 +-0.42981996927710414 0 -0.90291461058653233 +-0.9453832490724946 0.31863563026492325 0.068715700526218768 +-0.3186356302649232 -0.068715700526218768 0.9453832490724946 +-0.62674761880757135 0.51556327979539029 0.58427898032160919 +-0.3568220897730901 -1.2321651268072113e-18 0.93417235896271567 +-0.31863563026492325 0.068715700526218768 0.9453832490724946 +0.35682208977308999 -6.1608256340360548e-19 0.93417235896271567 +0.3186356302649232 0.068715700526218768 0.9453832490724946 +0.42716188369754932 0.13899360672691591 0.89342795031552757 +0.4576613505648901 0.17031256632806047 0.87149140923129198 +0.93417235896271567 0.35682208977308999 -6.1608256340360548e-19 +0.9453832490724946 0.3186356302649232 0.068715700526218768 +0.068715700526218768 0.9453832490724946 -0.31863563026492325 +-1.2321651268072113e-18 0.93417235896271567 0.35682208977308999 +0 0.90291461058653233 0.4298199692771042 +-0.93417235896271567 0.35682208977308988 1.232165126807211e-18 +-0.90291461058653233 0.42981996927710414 0 +-0.57735026918962573 0.57735026918962573 0.57735026918962573 +-0.51556327979539029 0.58427898032160919 0.62674761880757135 +-0.57735026918962584 -0.57735026918962573 0.57735026918962573 +-0.62674761880757146 -0.51556327979539029 0.58427898032160919 +0.57735026918962573 0.57735026918962584 -0.57735026918962573 +0.51556327979539029 0.58427898032160919 -0.62674761880757135 +0.3568220897730901 -1.2321651268072113e-18 -0.93417235896271567 +0.31863563026492325 0.068715700526218768 -0.9453832490724946 +-0.57735026918962573 -0.57735026918962584 -0.57735026918962573 +-0.51556327979539029 -0.58427898032160919 -0.62674761880757135 +-0.35682208977308999 -6.1608256340360548e-19 -0.93417235896271567 +-0.3186356302649232 0.068715700526218768 -0.9453832490724946 +-0.9453832490724946 0.3186356302649232 -0.068715700526218768 +-0.57735026918962573 0.57735026918962573 -0.57735026918962584 +-0.51556327979539029 0.58427898032160919 -0.62674761880757146 +-0.068715700526218768 0.9453832490724946 0.31863563026492325 +1.232165126807211e-18 0.93417235896271567 -0.35682208977308988 +0 0.90291461058653233 -0.42981996927710414 +0.90291461058653233 0.42981996927710414 0 +0.42981996927710414 0 0.90291461058653233 +-0.51556327979539029 -0.58427898032160919 0.62674761880757146 +-1.2321651268072113e-18 -0.93417235896271567 0.3568220897730901 +0.068715700526218768 -0.9453832490724946 0.31863563026492325 +-0.58427898032160919 -0.62674761880757146 -0.51556327979539029 +-6.1608256340360548e-19 -0.93417235896271567 -0.35682208977308999 +0.068715700526218768 -0.9453832490724946 -0.3186356302649232 +0.3186356302649232 -0.068715700526218768 -0.9453832490724946 +0.9453832490724946 0.31863563026492325 -0.068715700526218768 +0.62674761880757135 0.51556327979539029 -0.58427898032160919 +0 -0.90291461058653233 -0.42981996927710414 +-0.90291461058653233 -0.4298199692771042 0 +-0.62674761880757135 -0.51556327979539029 -0.58427898032160919 +-0.58427898032160919 -0.62674761880757135 0.51556327979539029 +-0.9453832490724946 -0.3186356302649232 0.068715700526218768 +-0.068715700526218768 -0.9453832490724946 0.3186356302649232 +-0.58427898032160919 0.62674761880757146 -0.51556327979539029 +-0.93417235896271567 -0.3568220897730901 1.2321651268072113e-18 +-0.9453832490724946 -0.31863563026492325 -0.068715700526218768 +1.2256505459452103e-18 0.52573111211913359 0.85065080835203988 +0 0.57392154628557113 0.8189102873387164 +0.3390347444358186 0.25671454238163 0.90442701067601727 +-0.054857140713616914 0.54001796879892028 0.83986385056568236 +0.09404663521954322 0.6771336059462687 0.72858929180595311 +-0.033903577486650918 0.48516082808530342 0.87376742805233332 +0.033903577486650918 0.48516082808530342 0.87376742805233332 +1.2256505459452101e-18 0.52573111211913348 -0.85065080835203999 +-0.054857140713616914 0.54001796879892028 -0.83986385056568236 +0 0.57392154628557113 -0.8189102873387164 +0.054857140713616914 0.54001796879892028 -0.83986385056568236 +0.033903577486650918 0.48516082808530342 -0.87376742805233332 +0.90442701067601738 0.33903474443581871 0.25671454238163005 +0.033903577486650918 -0.48516082808530342 -0.87376742805233332 +-0.83986385056568236 0.054857140713616921 -0.54001796879892028 +-0.83986385056568236 0.054857140713616914 0.54001796879892028 +-0.48516082808530336 0.87376742805233321 0.033903577486650911 +-0.054857140713616921 -0.54001796879892028 0.83986385056568236 +0.54001796879892028 0.83986385056568236 -0.054857140713616914 +0.57392154628557124 0.81891028733871629 0 +0.59819314586024919 0.79307076339523386 0.10851189307750808 +0.25671454238163 0.90442701067601727 0.33903474443581866 +-0.54001796879892028 0.83986385056568236 -0.054857140713616921 +-0.87376742805233321 -0.033903577486650911 0.48516082808530336 +0 -0.57392154628557124 0.81891028733871629 +0 -0.57392154628557124 -0.81891028733871629 +-0.87376742805233321 -0.033903577486650911 -0.48516082808530336 +-0.85065080835203988 0 -0.52573111211913359 +-0.83986385056568236 -0.054857140713616921 -0.54001796879892028 +-0.52573111211913359 0.85065080835203988 -1.2256505459452105e-18 +-0.54001796879892028 0.83986385056568236 0.054857140713616921 +0.54001796879892028 0.83986385056568236 0.054857140713616914 +0.52573111211913348 0.8506508083520401 2.4513010918904207e-18 +0.48516082808530336 0.87376742805233321 0.033903577486650911 +-0.033903577486650918 -0.48516082808530342 0.87376742805233332 +-1.2256505459452103e-18 -0.52573111211913359 0.85065080835203988 +0.033903577486650918 -0.48516082808530342 0.87376742805233332 +-0.57392154628557124 -0.81891028733871629 0 +-0.54001796879892028 -0.83986385056568236 0.054857140713616921 +1.2256505459452103e-18 -0.52573111211913359 -0.85065080835203988 +-0.033903577486650918 -0.48516082808530342 -0.87376742805233332 +-0.48516082808530336 -0.87376742805233321 0.033903577486650911 +-0.52573111211913359 -0.85065080835203988 1.2256505459452103e-18 +-0.48516082808530336 -0.87376742805233321 -0.033903577486650911 +-0.85065080835203988 -1.2256505459452103e-18 0.52573111211913359 +-0.8189102873387164 0 0.57392154628557113 +0.49982529754025784 0.14730961092137676 0.85311732979922927 +0.49724573572225761 0.14854713354961635 0.85435218642293975 +0.90595336478045685 0.32286639405373119 0.271410708194047 +0.90688305806336122 0.29107512591583123 0.30186484921791512 +0.90641151615731874 0.31222404809805687 0.28115084502736221 +0.17773204761375266 0.87689701064830428 0.44478929974988746 +0.17773204761375261 0.87689701064830428 0.44478929974988757 +0.44478929974988757 0.17773204761375261 0.87689701064830428 +0.44478929974988746 0.17773204761375266 0.87689701064830428 +0.51657855931435848 0.13944047800987086 0.84405122505983243 +0.06507249989019516 0.64943374300381451 0.75762878984770377 +0.096124922711889493 0.65746189559341328 0.74644278217951743 +0.095572989323982643 0.66096525556418151 0.74328545761836984 +0.61001812379817832 0.1056352994139447 0.78429103445404746 +0.58417903277383187 0.11307342108777625 0.80253395542112949 +0.60770816150558549 0.10617487126239183 0.78594000042913037 +0.71089969747156689 0.69602657944578872 0.093129265416474039 +0.70227702532207648 0.70871769768752158 0.067277074024322203 +0.70892487408416871 0.69813515078208477 0.093116941936638747 +0.1974660445788706 0.41582096722616779 0.88692657891222382 +0.18656099607880564 0.38998766307204552 0.90172313788306913 +0.18950565604187924 0.42721864490060907 0.88304523202927665 +0.41582096722616779 0.88692657891222382 0.1974660445788706 +0.38998766307204552 0.90172313788306913 0.18656099607880564 +0.42721864490060912 0.88304523202927654 0.18950565604187919 +0.79307076339523386 0.10851189307750797 0.59819314586024919 +0.81389356246462441 0.11874744154864894 0.56789366986248413 +0.55521070025011254 0.82226795238624728 0.12310298935169575 +0.55392361119767786 0.82440895259656954 0.11626913535565189 +0.55521070025011254 0.82226795238624728 0.12310298935169572 +0.13899360672691591 0.89342795031552769 0.42716188369754926 +0.17031256632806052 0.87149140923129198 0.45766135056488999 +0.1530482164355772 0.8581878051094145 0.48898817612201739 +0.40180685413975104 0.20692923660476614 0.89148810692249203 +0.39369586600014295 0.21254447256850689 0.89390471712616426 +0.82226795238624728 0.12310298935169572 0.55521070025011254 +0.82440895259656954 0.11626913535565189 0.55392361119767786 +0.82226795238624728 0.12310298935169575 0.55521070025011254 +0.10851189307750805 0.59819314586024896 0.79307076339523386 +0.11874744154864894 0.56789366986248413 0.81389356246462441 +0.093129265416474122 0.71089969747156689 0.69602657944578861 +0.067277074024322203 0.70227702532207648 0.70871769768752158 +0.093116941936638636 0.70892487408416871 0.69813515078208488 +0.56789366986248413 0.81389356246462441 0.11874744154864894 +0.10194841255523887 0.62479622481419628 0.77318510024650311 +0.061653318916405575 0.59501600355390494 0.80134563315795981 +0.10542210643598447 0.60871986758868468 0.78560578771446687 +0.10609528287383586 0.60630413399985694 0.78745552743149316 +0.90463734990484679 0.25988381527545973 0.33544566672286741 +0.90494753379947435 0.26218372058148803 0.33295004022963903 +0.80134563315795981 0.061653318916405575 0.59501600355390494 +0.78745552743149327 0.10609528287383579 0.60630413399985716 +0.78560578771446699 0.10542210643598442 0.60871986758868479 +0.59501600355390494 0.80134563315795981 0.061653318916405575 +0.60630413399985716 0.78745552743149316 0.10609528287383588 +0.62479622481419628 0.77318510024650322 0.10194841255523895 +0.60871986758868468 0.78560578771446699 0.10542210643598451 +0.1418121948905855 0.51101182387798283 0.84695178356442269 +0.14564781357706014 0.50275426427774228 0.85145286645038376 +0.50017470245974227 0.85269038907862327 0.14688267020077073 +0.48342144068564125 0.86055952199012919 0.15594877494016779 +0.85145286645038376 0.14564781357706019 0.50275426427774228 +0.49525883802792381 0.86299895207436528 0.099757165525981059 +0.51101182387798261 0.84695178356442291 0.1418121948905855 +0.50275426427774228 0.85145286645038376 0.14564781357706019 +0.66455433327713243 0.095362650095153129 0.74011618472454044 +0.64339140453754151 0.098424941615366676 0.75815048575026589 +0.85269038907862327 0.14688267020077067 0.50017470245974227 +0.86055952199012919 0.15594877494016762 0.48342144068564141 +0.22681489975349639 0.89805158744476077 0.37520377518580433 +0.20668066329284998 0.89826812139385259 0.38781114670466371 +0.2284369195008584 0.89844705357522048 0.37311241287933194 +0.12310298935169572 0.55521070025011254 0.82226795238624728 +0.11626913535565189 0.55392361119767786 0.82440895259656954 +0.12310298935169575 0.55521070025011254 0.82226795238624728 +0.38998187620182156 0.89436470058605533 0.21570896554595276 +0.35918321758479488 0.90105806124803856 0.23967742655656488 +0.35660859546245854 0.90157505838463314 0.24184951424973428 +0.13843733448120885 0.84282425105969117 0.5187348004145107 +0.12458499692215494 0.8241658611683842 0.55121954142464069 +0.12315882465233809 0.82188503772742794 0.55513243511370003 +0.24184951424973422 0.35660859546245849 0.90157505838463314 +0.23967742655656482 0.35918321758479488 0.90105806124803833 +0.85435218642293986 0.49724573572225761 0.14854713354961632 +0.85675191169903997 0.49650199476975138 0.13950602492257505 +0.85311732979922938 0.49982529754025784 0.14730961092137676 +0.10563529941394462 0.78429103445404746 0.61001812379817821 +0.11307342108777627 0.80253395542112949 0.58417903277383187 +0.10617487126239186 0.78594000042913037 0.60770816150558549 +0.84282425105969128 0.51873480041451114 0.13843733448120865 +0.82416586116838464 0.5512195414246408 0.12458499692215486 +0.84380044240886332 0.53207395532465163 0.069986566252294824 +0.82188503772742805 0.55513243511369992 0.12315882465233803 +0.21405999957086966 0.39229183849441451 0.893825128737608 +0.33295004022963903 0.90494753379947435 0.26218372058148826 +0.33088129441328601 0.9151298141069959 0.23033669342916974 +0.33544566672286746 0.90463734990484679 0.25988381527545978 +0.4889881761220175 0.15304821643557709 0.85818780510941428 +0.78429103445404746 0.6100181237981781 0.10563529941394456 +0.8004723406749189 0.59529852733606148 0.069740197633308854 +0.78594000042913037 0.60770816150558526 0.10617487126239183 +0.80253395542112949 0.58417903277383187 0.11307342108777621 +0.72858929180595311 0.094046635219543179 0.67713360594626881 +0.74328545761836984 0.095572989323982616 0.66096525556418162 +0.75762878984770377 0.06507249989019516 0.64943374300381462 +0.74644278217951743 0.096124922711889466 0.65746189559341328 +0.271410708194047 0.90595336478045674 0.32286639405373119 +0.26911716736226499 0.9236940845413727 0.2726998137406515 +0.2811508450273621 0.90641151615731863 0.31222404809805682 +0.30186484921791523 0.90688305806336122 0.29107512591583129 +0.87689701064830428 0.44478929974988757 0.17773204761375266 +0.71884915497263779 0.093588483842681203 0.68777595190194329 +0.89148810692249181 0.40180685413975104 0.20692923660476614 +0.89390471712616404 0.39369586600014284 0.21254447256850695 +0.37520377518580433 0.22681489975349645 0.89805158744476099 +0.38781114670466377 0.20668066329285001 0.89826812139385281 +0.37311241287933189 0.22843691950085854 0.8984470535752207 +0.89436470058605533 0.21570896554595267 0.38998187620182156 +0.90105806124803878 0.23967742655656488 0.35918321758479488 +0.90157505838463314 0.24184951424973419 0.35660859546245843 +0.87684117534766193 0.17811496227257195 0.44486756488630008 +0.88304523202927676 0.18950565604187922 0.42721864490060907 +0.69602657944578872 0.09312926541647408 0.71089969747156689 +0.69813515078208477 0.093116941936638692 0.70892487408416871 +0.66704995977036097 0.095052466200525487 0.73781627941851213 +0.14854713354961635 0.85435218642293975 0.49724573572225772 +0.13950602492257505 0.85675191169903997 0.49650199476975138 +0.1473096109213767 0.85311732979922927 0.49982529754025778 +0.095362650095153129 0.74011618472454033 0.66455433327713254 +0.098424941615366676 0.758150485750266 0.64339140453754151 +0.14688267020077073 0.50017470245974227 0.85269038907862316 +0.099757165525981059 0.49525883802792381 0.86299895207436528 +0.15594877494016779 0.48342144068564119 0.86055952199012919 +0.53207395532465174 0.069986566252294838 0.84380044240886354 +0.55513243511370003 0.123158824652338 0.82188503772742816 +0.5512195414246408 0.12458499692215487 0.82416586116838453 +0.26218372058148809 0.33295004022963903 0.90494753379947435 +0.23033669342916974 0.33088129441328601 0.9151298141069959 +0.25988381527545967 0.33544566672286746 0.9046373499048469 +0.29107512591583118 0.30186484921791523 0.90688305806336111 +0.31222404809805682 0.2811508450273621 0.90641151615731874 +0.2726998137406515 0.26911716736226499 0.9236940845413727 +0.32286639405373108 0.271410708194047 0.90595336478045685 +0.39128013241131554 0.21439421228553296 0.89457789356401551 +0.64943374300381451 0.75762878984770365 0.065072499890195146 +0.65746189559341328 0.74644278217951743 0.096124922711889452 +0.6771336059462687 0.72858929180595311 0.094046635219543206 +0.66096525556418162 0.74328545761836973 0.095572989323982643 +0.893825128737608 0.21405999957086963 0.39229183849441451 +0.74011618472454033 0.66455433327713243 0.095362650095153101 +0.75815048575026589 0.64339140453754129 0.098424941615366732 +0.87149140923129176 0.45766135056489032 0.17031256632806041 +0.89342795031552757 0.42716188369754932 0.13899360672691591 +0.85818780510941439 0.48898817612201739 0.15304821643557714 +0.68777595190194307 0.71884915497263779 0.093588483842681286 +0.76032257344343512 0.64081678241520534 0.098941938751961195 +0.89805158744476088 0.37520377518580417 0.22681489975349667 +0.89826812139385259 0.38781114670466371 0.20668066329284998 +0.89844705357522048 0.37311241287933194 0.22843691950085848 +0.20692923660476614 0.89148810692249181 0.40180685413975092 +0.21254447256850684 0.89390471712616404 0.39369586600014284 +0.62688758712066828 0.77156308049914157 0.10155294642477933 +0.84405122505983243 0.51657855931435837 0.13944047800987086 +0.8104943439581207 0.5727813550993911 0.11695476797072311 +0.44878045857535931 0.87541500307784514 0.17583413883161553 +0.5423386494351099 0.82968743367193953 0.12850859076870802 +0.82968743367193953 0.12850859076870802 0.5423386494351099 +0.39229183849441457 0.893825128737608 0.21405999957086966 +0.17583413883161547 0.44878045857535925 0.87541500307784514 +0.89457789356401518 0.39128013241131554 0.21439421228553296 +0.093588483842681203 0.68777595190194329 0.71884915497263779 +0.21439421228553288 0.89457789356401529 0.39128013241131548 +0.87541500307784514 0.17583413883161553 0.44878045857535925 +0.57278135509939099 0.11695476797072324 0.8104943439581207 +0.77156308049914157 0.10155294642477924 0.62688758712066828 +0.13944047800987086 0.84405122505983243 0.51657855931435837 +0.10155294642477927 0.62688758712066828 0.77156308049914146 +0.12850859076870802 0.5423386494351099 0.82968743367193953 +0.8189102873387164 0 -0.57392154628557113 +0.75762878984770377 -0.06507249989019516 -0.64943374300381462 +0.57608383788574391 -0.33994835690442565 -0.74334549596053456 +0.75762878984770377 -0.06507249989019516 0.64943374300381451 +0.27249577181778539 -0.89756031181852236 0.34659997257597436 +0.39498488175763669 -0.64294043714010041 -0.65621226556123025 +0.27466844612618385 -0.86574218443040085 0.41838703947458189 +0.27572854131968011 -0.82875656716879031 0.48696645046278492 +0.33994835690442565 -0.74334549596053456 -0.57608383788574391 +0.73357768674250456 -0.13183850301701969 -0.66669512270283426 +0.77999809473327264 0 -0.62578188869003271 +0.27249577181778528 -0.89756031181852247 -0.34659997257597425 +0.27466844612618396 -0.86574218443040096 -0.41838703947458172 +0.9506072962094394 0.27889813733511903 0.13624095340381404 +0.34179011670600551 -0.78792826822967776 -0.5121997269099976 +0.27572854131968005 -0.82875656716879031 -0.48696645046278469 +0.19657916295965552 -0.98048795642276054 0 +0.39498488175763657 -0.64294043714010041 0.65621226556123025 +0.96805607891910661 0.24136787945551616 -0.067889430951449614 +0.19937696972895624 -0.96679589706089264 0.15985780358782284 +0.94390741193901806 0.19654920871264411 0.2653435626523063 +0.57608383788574413 -0.33994835690442576 0.74334549596053445 +0.8189102873387164 0 0.57392154628557113 +0.45126666560725853 -0.58750761901107262 0.67170915887432037 +0.50369111272938438 -0.52836121174546036 0.68346886752821701 +0.70519707714513458 -0.20012814034344362 0.68018071850695239 +0.73357768674250445 -0.13183850301701977 0.66669512270283438 +0.50369111272938438 -0.52836121174546036 -0.68346886752821701 +0.45126666560725864 -0.58750761901107262 -0.67170915887432026 +0.70519707714513458 -0.20012814034344362 -0.6801807185069525 +0.94390741193901806 0.19654920871264409 -0.26534356265230635 +0.20470147868264915 -0.9270588370822882 -0.31410064822087252 +0.19937696972895619 -0.96679589706089264 -0.15985780358782287 +0.20209118411408983 -0.95001448309746583 -0.23797402212934904 +0.95001448309746583 0.23797402212934904 -0.20209118411408986 +0.19739352602284616 -0.97703158208487906 -0.080281277350241265 +0.95977938206574664 0.28075529872380572 0 +0.19739352602284607 -0.97703158208487906 0.080281277350241251 +0.96805607891910661 0.24136787945551613 0.067889430951449614 +0.95001448309746583 0.23797402212934904 0.20209118411408983 +0.20209118411408986 -0.95001448309746583 0.23797402212934904 +0.20470147868264921 -0.9270588370822882 0.31410064822087258 +0.34179011670600545 -0.78792826822967776 0.51219972690999771 +0.33994835690442576 -0.74334549596053445 0.57608383788574413 +0.77999809473327264 0 0.62578188869003271 +0.83986385056568236 0.054857140713616914 0.54001796879892028 +0.86299895207436528 0.099757165525981059 0.49525883802792381 +0.83986385056568236 0.054857140713616914 -0.54001796879892028 +0.61446983418191203 -0.27287882084494514 -0.74024588618561449 +0.48798559166164257 -0.46894076499437626 -0.73618246464930537 +0.86299895207436528 0.099757165525981073 -0.49525883802792381 +0.53398612240605769 -0.40547414873191501 -0.74192286377215222 +0.64927986178574371 -0.20469785983476807 -0.7324851174314404 +0.33543172738922172 -0.69401454380114713 -0.63704738383668802 +0.90172313788306913 0.18656099607880564 0.38998766307204552 +0.9506072962094394 0.27889813733511903 -0.13624095340381404 +0.90172313788306901 0.18656099607880575 -0.38998766307204569 +0.88410882140193769 0.14324145828887105 -0.44478475305090459 +0.9151298141069959 0.23033669342916982 -0.33088129441328606 +0.88410882140193769 0.14324145828887103 0.44478475305090454 +0.33543172738922172 -0.69401454380114691 0.63704738383668813 +0.48798559166164268 -0.46894076499437626 0.73618246464930526 +0.53398612240605781 -0.40547414873191501 0.74192286377215233 +0.9151298141069959 0.23033669342916974 0.33088129441328601 +0.61446983418191226 -0.27287882084494519 0.74024588618561449 +0.64927986178574382 -0.20469785983476813 0.7324851174314404 +3 258 1270 1303 +3 259 1272 1307 +3 260 1274 1297 +3 261 1276 1315 +3 262 1278 1319 +3 263 1280 1323 +3 264 1282 1327 +3 265 1284 1311 +3 266 1286 1335 +3 51 50 2300 +3 267 1289 1317 +3 268 1291 1356 +3 269 1293 1309 +3 270 1295 1305 +3 271 1297 1274 +3 272 1299 1330 +3 273 1301 1325 +3 274 1303 1270 +3 275 1305 1295 +3 276 1307 1272 +3 277 1309 1293 +3 278 1311 1284 +3 279 1313 1338 +3 280 1315 1276 +3 281 1317 1289 +3 282 1319 1278 +3 283 1321 1354 +3 284 1323 1280 +3 285 1325 1301 +3 286 1327 1282 +3 287 1329 1340 +3 288 1330 1299 +3 289 2292 2327 +3 290 1333 1352 +3 291 1335 1286 +3 292 1337 1342 +3 293 2299 2300 +3 294 1338 1313 +3 295 1340 1329 +3 296 1342 1337 +3 297 1344 1346 +3 298 1346 1344 +3 299 1348 1350 +3 300 1350 1348 +3 301 1352 1333 +3 302 1354 1321 +3 303 1356 1291 +3 2244 1358 1370 +3 1908 1360 1364 +3 304 1362 1368 +3 305 1364 1360 +3 306 1366 1372 +3 307 1368 1362 +3 308 1370 1358 +3 309 1372 1366 +3 310 1374 1380 +3 311 1376 1390 +3 312 1378 1384 +3 313 1380 1374 +3 314 1382 1388 +3 315 1384 1378 +3 316 1386 1392 +3 317 1388 1382 +3 318 1390 1376 +3 319 1392 1386 +3 168 167 2348 +3 320 1394 1453 +3 321 1396 1497 +3 322 1398 1538 +3 323 1400 1516 +3 324 1402 1437 +3 325 1404 1524 +3 326 1406 1429 +3 327 1408 1463 +3 328 1410 1441 +3 329 1412 1481 +3 330 1414 1417 +3 1932 1417 1414 +3 984 1419 1510 +3 2202 1421 1471 +3 331 1423 1469 +3 332 1425 1427 +3 333 1427 1425 +3 334 1429 1406 +3 335 1431 1542 +3 336 1433 1435 +3 337 1435 1433 +3 338 1437 1402 +3 339 1439 1534 +3 340 1441 1410 +3 341 1443 1479 +3 342 1445 1505 +3 343 1447 1503 +3 344 1449 1451 +3 345 1451 1449 +3 346 1453 1394 +3 347 1455 1518 +3 348 1457 1459 +3 349 1459 1457 +3 350 1461 1536 +3 351 1463 1408 +3 352 1465 1467 +3 353 1467 1465 +3 354 1469 1423 +3 355 1471 1421 +3 356 1473 1475 +3 357 1475 1473 +3 358 1477 1508 +3 2315 133 2343 +3 359 1479 1443 +3 360 1481 1412 +3 361 1483 1485 +3 362 1485 1483 +3 363 1487 1532 +3 364 1489 1530 +3 365 1491 1493 +3 366 1493 1491 +3 367 1495 1512 +3 368 1497 1396 +3 369 1499 1501 +3 370 1501 1499 +3 371 1503 1447 +3 372 1505 1445 +3 373 1508 1477 +3 374 1510 1419 +3 375 1512 1495 +3 376 1514 1520 +3 377 1516 1400 +3 378 1518 1455 +3 379 1520 1514 +3 380 1522 1528 +3 381 1524 1404 +3 382 1526 1540 +3 383 1528 1522 +3 384 1530 1489 +3 385 1532 1487 +3 386 1534 1439 +3 387 1536 1461 +3 388 1538 1398 +3 389 1540 1526 +3 390 1542 1431 +3 1543 391 2082 +3 392 1544 2233 +3 393 1546 1708 +3 394 1547 1645 +3 395 1548 1716 +3 396 1549 1648 +3 397 1550 1695 +3 398 1551 1637 +3 399 1552 1731 +3 400 1553 1656 +3 401 1554 1739 +3 402 1555 1660 +3 403 1556 1747 +3 404 1557 1664 +3 405 1558 1754 +3 406 1559 1668 +3 407 1560 1723 +3 408 1561 1652 +3 409 1562 1763 +3 410 2326 1670 +3 411 1563 1771 +3 412 1564 1672 +3 2290 64 2338 +3 413 1565 1735 +3 414 1566 1730 +3 415 1567 1815 +3 416 1568 1810 +3 417 1569 1720 +3 418 1570 1715 +3 419 1571 1712 +3 420 1572 1707 +3 421 1573 1649 +3 422 1574 1719 +3 423 1575 2346 +3 1576 424 2063 +3 425 2240 545 +3 1577 426 2073 +3 427 2198 2191 +3 428 1578 1750 +3 429 1579 1746 +3 430 1580 1642 +3 431 1581 1703 +3 432 1582 1691 +3 433 1583 1814 +3 434 1584 1646 +3 435 1585 1711 +3 436 1586 1687 +3 437 1587 1806 +3 438 1588 1669 +3 439 1589 1756 +3 2312 1590 2334 +3 440 1591 1653 +3 441 1592 1726 +3 442 1593 1679 +3 443 1594 1790 +3 444 1595 1657 +3 445 1596 1734 +3 446 1597 1811 +3 447 1598 1690 +3 448 1599 1661 +3 449 1600 1742 +3 450 1601 1704 +3 451 1602 1699 +3 452 1603 1665 +3 453 1604 1749 +3 454 1605 1783 +3 455 1606 1780 +3 456 1607 1696 +3 457 1608 1694 +3 458 1609 1807 +3 459 1610 1802 +3 460 1611 1671 +3 461 1612 1766 +3 462 1613 1787 +3 463 1614 1678 +3 2296 2316 1673 +3 464 1615 1774 +3 465 1616 1727 +3 466 1617 1722 +3 467 1618 1757 +3 468 1619 1753 +3 469 1620 1775 +3 470 1621 1770 +3 471 1622 1795 +3 472 1623 1682 +3 473 1624 1791 +3 474 1625 1786 +3 475 1626 1803 +3 476 1627 1686 +3 477 1628 1799 +3 478 1629 1794 +3 479 1630 1767 +3 480 1631 1762 +3 481 1632 1743 +3 482 1633 1738 +3 483 1634 1683 +3 484 1635 1798 +3 2239 485 486 +3 487 1637 1551 +3 488 2222 1576 +3 489 1639 1641 +3 490 1640 1644 +3 491 1641 1639 +3 492 1642 1580 +3 493 1643 1647 +3 494 1644 1640 +3 495 1645 1547 +3 496 1646 1584 +3 497 1647 1643 +3 498 1648 1549 +3 499 1649 1573 +3 500 1650 1655 +3 501 1651 1666 +3 502 1652 1561 +3 503 1653 1591 +3 504 1654 1659 +3 505 1655 1650 +3 506 1656 1553 +3 507 1657 1595 +3 508 1658 1663 +3 509 1659 1654 +3 510 1660 1555 +3 511 1661 1599 +3 512 1662 1667 +3 513 1663 1658 +3 514 1664 1557 +3 515 1665 1603 +3 516 1666 1651 +3 517 1667 1662 +3 518 1668 1559 +3 519 1669 1588 +3 2289 1670 2326 +3 520 1671 1611 +3 521 1672 1564 +3 522 1673 2316 +3 2175 2344 523 +3 524 2264 1577 +3 525 1676 1729 +3 526 1677 1772 +3 527 1678 1614 +3 528 1679 1593 +3 529 1680 1809 +3 530 1681 1788 +3 531 1682 1623 +3 532 1683 1634 +3 533 1684 1714 +3 534 1685 1796 +3 535 1686 1627 +3 536 1687 1586 +3 537 1688 1706 +3 538 1689 1740 +3 539 1690 1598 +3 540 1691 1582 +3 541 1692 1718 +3 542 1693 1758 +3 543 1694 1608 +3 544 1695 1550 +3 545 546 2116 +3 547 1696 1607 +3 2311 197 2288 +3 2211 548 2281 +3 549 1697 1782 +3 2167 550 551 +3 552 1699 1602 +3 553 2177 1543 +3 554 1701 1745 +3 555 1702 1705 +3 556 1703 1581 +3 557 1704 1601 +3 558 1705 1702 +3 559 1706 1688 +3 560 1707 1572 +3 561 1708 1546 +3 562 1709 1813 +3 563 1710 1713 +3 564 1711 1585 +3 565 1712 1571 +3 566 1713 1710 +3 567 1714 1684 +3 568 1715 1570 +3 569 1716 1548 +3 570 1717 1805 +3 571 1718 1692 +3 572 1719 1574 +3 573 1720 1569 +3 574 2342 1755 +3 575 1721 1778 +3 576 1722 1617 +3 577 1723 1560 +3 578 1724 1777 +3 579 1725 1728 +3 580 1726 1592 +3 581 1727 1616 +3 582 1728 1725 +3 583 1729 1676 +3 584 1730 1566 +3 585 1731 1552 +3 586 1732 1789 +3 587 1733 1736 +3 588 1734 1596 +3 589 1735 1565 +3 590 1736 1733 +3 591 1737 1808 +3 592 1738 1633 +3 593 1739 1554 +3 594 1740 1689 +3 595 1741 1744 +3 596 1742 1600 +3 597 1743 1632 +3 598 1744 1741 +3 599 1745 1701 +3 600 1746 1579 +3 601 1747 1556 +3 602 1748 1751 +3 603 1749 1604 +3 604 1750 1578 +3 605 1751 1748 +3 606 1752 1781 +3 607 1753 1619 +3 608 1754 1558 +3 2335 1755 2342 +3 609 1756 1589 +3 610 1757 1618 +3 611 1758 1693 +3 612 1759 1760 +3 237 236 2345 +3 2309 2346 1575 +3 613 1760 1759 +3 614 1761 1804 +3 615 1762 1631 +3 616 1763 1562 +3 617 1764 1801 +3 618 1765 1768 +3 619 1766 1612 +3 620 1767 1630 +3 621 1768 1765 +3 622 1769 1784 +3 623 1770 1621 +3 624 1771 1563 +3 625 1772 1677 +3 626 1773 1776 +3 627 1774 1615 +3 628 1775 1620 +3 629 1776 1773 +3 630 1777 1724 +3 631 2334 1590 +3 632 1778 1721 +3 104 103 2286 +3 633 1780 1606 +3 634 1781 1752 +3 635 1782 1697 +3 636 1783 1605 +3 637 1784 1769 +3 638 1785 1792 +3 639 1786 1625 +3 640 1787 1613 +3 641 1788 1681 +3 642 1789 1732 +3 643 1790 1594 +3 644 1791 1624 +3 645 1792 1785 +3 646 1793 1800 +3 647 1794 1629 +3 648 1795 1622 +3 649 1796 1685 +3 650 1797 1812 +3 651 1798 1635 +3 652 1799 1628 +3 653 1800 1793 +3 654 1801 1764 +3 655 1802 1610 +3 656 1803 1626 +3 657 1804 1761 +3 658 1805 1717 +3 659 1806 1587 +3 660 1807 1609 +3 661 1808 1737 +3 662 1809 1680 +3 663 1810 1568 +3 664 1811 1597 +3 665 1812 1797 +3 666 1813 1709 +3 667 1814 1583 +3 668 1815 1567 +3 556 1817 669 +3 393 1152 670 +3 564 1819 671 +3 395 1161 672 +3 572 1821 673 +3 397 1136 674 +3 580 1823 675 +3 399 1177 676 +3 588 1825 677 +3 401 1186 678 +3 596 1827 679 +3 403 1195 680 +3 603 1829 681 +3 405 1203 682 +3 609 1831 683 +3 407 1168 684 +3 2345 1833 2328 +3 409 1214 685 +3 619 1835 686 +3 411 1222 687 +3 627 1837 688 +3 2338 2293 689 +3 643 1839 690 +3 413 1181 691 +3 651 1841 692 +3 415 1268 693 +3 659 1843 694 +3 417 1165 695 +3 667 1845 696 +3 419 1157 697 +3 487 1847 698 +3 421 1090 699 +3 543 1849 700 +3 423 1209 701 +3 552 1851 702 +3 428 1198 703 +3 495 1853 704 +3 430 1083 705 +3 560 1855 706 +3 432 1132 707 +3 498 1857 708 +3 434 1087 709 +3 568 1859 710 +3 436 1128 711 +3 502 1861 712 +3 438 1111 713 +3 576 1862 714 +3 2333 89 88 +3 506 1864 715 +3 440 1095 716 +3 584 1866 717 +3 442 1119 718 +3 510 1868 719 +3 444 1099 720 +3 592 1870 721 +3 446 1264 722 +3 514 1872 723 +3 448 1103 724 +3 600 1874 725 +3 450 1148 726 +3 518 1876 727 +3 452 1107 728 +3 607 1878 729 +3 454 1234 730 +3 2306 212 2349 +3 456 1138 731 +3 255 254 2291 +3 615 1880 732 +3 458 1260 733 +3 521 1881 734 +3 460 1113 735 +3 623 1883 736 +3 462 1238 737 +3 631 1885 738 +3 465 1173 739 +3 633 1887 740 +3 467 1206 741 +3 527 1889 742 +3 469 1227 743 +3 639 1891 744 +3 471 1247 745 +3 531 1893 746 +3 473 1242 747 +3 647 1895 748 +3 475 1256 749 +3 535 1897 750 +3 477 1252 751 +3 655 1899 752 +3 479 1218 753 +3 539 1901 754 +3 481 1191 755 +3 663 1903 756 +3 483 1124 757 +3 493 1904 758 +3 487 944 759 +3 430 1905 760 +3 489 1082 761 +3 434 1906 762 +3 490 1085 763 +3 421 1909 764 +3 493 1088 765 +3 489 1910 766 +3 495 938 767 +3 490 1911 768 +3 498 941 769 +3 444 1912 770 +3 500 1097 771 +3 512 1913 772 +3 502 959 773 +3 448 1914 774 +3 504 1101 775 +3 516 1915 776 +3 506 947 777 +3 452 1916 778 +3 508 1105 779 +3 500 1917 780 +3 510 950 781 +3 438 1918 782 +3 512 1109 783 +3 504 1919 784 +3 514 953 785 +3 440 1920 786 +3 516 1093 787 +3 508 1921 788 +3 518 956 789 +3 460 2322 2304 +3 521 2317 2320 +3 399 1922 790 +3 525 1175 791 +3 629 1923 792 +3 527 1040 793 +3 446 1924 794 +3 529 1262 795 +3 586 1925 796 +3 531 1055 797 +3 395 1926 798 +3 533 1159 799 +3 665 1927 800 +3 535 1061 801 +3 393 1928 802 +3 537 1150 803 +3 598 1929 804 +3 539 1015 805 +3 417 1930 806 +3 541 1163 807 +3 613 1931 808 +3 543 1030 809 +3 456 1933 810 +3 2311 1137 811 +3 454 1934 812 +3 549 1233 813 +3 605 1935 814 +3 552 1021 815 +3 403 1936 816 +3 554 1193 817 +3 537 1937 818 +3 556 990 819 +3 450 1938 820 +3 558 1146 821 +3 594 1939 822 +3 560 975 823 +3 415 1940 824 +3 562 1266 825 +3 533 1941 826 +3 564 996 827 +3 419 1942 828 +3 566 1155 829 +3 649 1943 830 +3 568 972 831 +3 458 1944 832 +3 570 1258 833 +3 611 1945 834 +3 572 978 835 +3 467 1946 836 +3 574 1204 837 +3 2294 1947 838 +3 576 1046 839 +3 2338 1948 840 +3 578 1229 841 +3 525 1949 842 +3 580 1006 843 +3 465 1950 844 +3 582 1171 845 +3 625 1951 846 +3 584 966 847 +3 473 1952 848 +3 586 1240 849 +3 661 1953 850 +3 588 1012 851 +3 413 1954 852 +3 590 1179 853 +3 529 1955 854 +3 592 1070 855 +3 432 1956 856 +3 594 1130 857 +3 554 1957 858 +3 596 1018 859 +3 481 1958 860 +3 598 1189 861 +3 558 1959 862 +3 600 987 863 +3 634 1960 864 +3 603 1024 865 +3 428 1961 866 +3 605 1196 867 +3 549 1962 868 +3 607 1049 869 +3 632 1963 870 +3 609 1002 871 +3 2310 201 200 +3 397 1964 872 +3 611 1134 873 +3 657 1965 874 +3 2345 1031 875 +3 423 1966 876 +3 613 1208 877 +3 570 1967 878 +3 615 1067 879 +3 475 1968 880 +3 617 1254 881 +3 637 1969 882 +3 619 1037 883 +3 479 1970 884 +3 621 1216 885 +3 645 1971 886 +3 623 1052 887 +3 442 1972 888 +3 625 1117 889 +3 578 1973 890 +3 627 1043 891 +3 469 1974 892 +3 629 1225 893 +3 582 1975 894 +3 631 1003 895 +3 407 1976 896 +3 632 1166 897 +3 574 1977 2341 +3 633 1027 898 +3 405 1978 899 +3 634 1201 900 +3 411 1979 901 +3 637 1220 902 +3 653 1980 903 +3 639 1058 904 +3 483 1981 905 +3 641 1122 906 +3 590 1982 907 +3 643 1009 908 +3 462 1983 909 +3 645 1236 910 +3 617 1984 911 +3 647 1064 912 +3 436 1985 913 +3 649 1126 914 +3 562 1986 915 +3 651 1073 916 +3 471 1987 917 +3 653 1245 918 +3 621 1988 919 +3 655 1034 920 +3 409 1989 921 +3 657 1212 922 +3 541 1990 923 +3 659 999 924 +3 401 1991 925 +3 661 1184 926 +3 641 1992 927 +3 663 969 928 +3 477 1993 929 +3 665 1250 930 +3 566 1994 931 +3 667 993 932 +3 451 1995 933 +3 392 2137 934 +3 1907 935 2193 +3 420 1996 936 +3 394 1086 937 +3 304 767 938 +3 258 704 1853 +3 418 1997 939 +3 396 1089 940 +3 306 769 941 +3 259 708 1857 +3 457 1998 942 +3 398 1077 943 +3 308 759 944 +3 260 698 1847 +3 414 1999 945 +3 400 1098 946 +3 310 777 947 +3 261 715 1864 +3 482 2000 948 +3 402 1102 949 +3 312 781 950 +3 262 719 1868 +3 429 2001 951 +3 404 1106 952 +3 314 785 953 +3 263 723 1872 +3 468 2002 954 +3 406 1110 955 +3 316 789 956 +3 264 727 1876 +3 466 2003 957 +3 408 1094 958 +3 318 773 959 +3 265 712 1861 +3 480 2004 960 +3 410 1112 961 +3 470 2005 962 +3 412 1114 963 +3 266 734 1881 +3 72 71 2313 +3 445 2006 964 +3 414 1176 965 +3 320 847 966 +3 267 717 1866 +3 433 2007 967 +3 416 1263 968 +3 322 928 969 +3 268 756 1903 +3 422 2008 970 +3 418 1160 971 +3 324 831 972 +3 269 710 1859 +3 435 2009 973 +3 420 1151 974 +3 326 823 975 +3 270 706 1855 +3 396 2011 976 +3 422 1164 977 +3 328 835 978 +3 271 673 1821 +3 272 2306 2349 +3 398 2013 979 +3 425 2014 980 +3 981 982 2120 +3 2323 2017 2298 +3 427 2259 983 +3 2206 984 2262 +3 453 2018 985 +3 429 1194 986 +3 331 863 987 +3 273 725 1874 +3 392 2020 988 +3 431 1147 989 +3 333 819 990 +3 274 669 1817 +3 447 2022 991 +3 433 1267 992 +3 335 932 993 +3 275 696 1845 +3 394 2024 994 +3 435 1156 995 +3 337 827 996 +3 276 671 1819 +3 476 2026 997 +3 437 1259 998 +3 339 924 999 +3 277 694 1843 +3 406 2028 1000 +3 439 1205 1001 +3 341 871 1002 +3 278 683 1831 +3 343 895 1003 +3 279 738 1885 +3 408 2030 1004 +3 441 1172 1005 +3 345 843 1006 +3 280 675 1823 +3 463 2032 1007 +3 443 1241 1008 +3 347 908 1009 +3 281 690 1839 +3 400 2034 1010 +3 445 1180 1011 +3 349 851 1012 +3 282 677 1825 +3 416 2035 1013 +3 447 1131 1014 +3 351 805 1015 +3 283 754 1901 +3 402 2037 1016 +3 449 1190 1017 +3 353 859 1018 +3 284 679 1827 +3 431 2038 1019 +3 451 1142 1020 +3 355 815 1021 +3 285 702 1851 +3 404 2040 1022 +3 453 1197 1023 +3 357 865 1024 +3 286 681 1829 +3 427 2041 1025 +3 455 1231 1026 +3 2343 898 1027 +3 287 740 1887 +3 425 2042 1028 +3 457 1135 1029 +3 360 809 1030 +3 288 700 1849 +3 362 875 1031 +3 289 2328 1833 +3 437 2043 1032 +3 459 1255 1033 +3 364 920 1034 +3 290 752 1899 +3 410 2045 1035 +3 461 1217 1036 +3 366 883 1037 +3 291 686 1835 +3 474 2046 1038 +3 463 1118 1039 +3 368 793 1040 +3 292 742 1889 +3 412 2048 1041 +3 464 1226 1042 +3 370 891 1043 +3 293 688 1837 +3 441 2049 1044 +3 466 1167 1045 +3 372 839 1046 +3 294 714 1862 +3 455 2050 2340 +3 2323 152 2321 +3 439 2051 1047 +3 468 1202 1048 +3 373 869 1049 +3 295 729 1878 +3 464 2052 1050 +3 470 1221 1051 +3 375 887 1052 +3 296 736 1883 +3 478 2053 1053 +3 472 1123 1054 +3 377 797 1055 +3 297 746 1893 +3 443 2054 1056 +3 474 1237 1057 +3 379 904 1058 +3 298 744 1891 +3 459 2055 1059 +3 476 1127 1060 +3 381 801 1061 +3 299 750 1897 +3 484 2056 1062 +3 478 1246 1063 +3 383 912 1064 +3 300 748 1895 +3 461 2057 1065 +3 480 1213 1066 +3 385 879 1067 +3 301 732 1880 +3 449 2058 1068 +3 482 1185 1069 +3 387 855 1070 +3 302 721 1870 +3 472 2060 1071 +3 484 1251 1072 +3 389 916 1073 +3 303 692 1841 +3 491 2062 1074 +3 2238 2180 1075 +3 2127 1076 2200 +3 544 943 1077 +3 488 979 2013 +3 2248 1078 2243 +3 494 2064 1079 +3 2152 1074 2062 +3 1908 1080 2235 +3 497 2066 1081 +3 491 1079 2064 +3 305 761 1082 +3 304 766 1910 +3 553 934 2137 +3 492 988 2020 +3 258 705 1083 +3 305 760 1905 +3 2238 2067 1084 +3 494 1081 2066 +3 307 763 1085 +3 306 768 1911 +3 561 937 1086 +3 496 994 2024 +3 259 709 1087 +3 307 762 1906 +3 2152 1075 2180 +3 497 1084 2067 +3 309 765 1088 +3 308 758 1904 +3 569 940 1089 +3 499 976 2011 +3 260 699 1090 +3 309 764 1909 +3 509 2069 1091 +3 501 1108 1092 +3 311 787 1093 +3 310 776 1915 +3 577 958 1094 +3 503 1004 2030 +3 261 716 1095 +3 311 786 1920 +3 513 2070 1096 +3 505 1091 2069 +3 313 771 1097 +3 312 780 1917 +3 585 946 1098 +3 507 1010 2034 +3 262 720 1099 +3 313 770 1912 +3 517 2071 1100 +3 509 1096 2070 +3 315 775 1101 +3 314 784 1919 +3 593 949 1102 +3 511 1016 2037 +3 263 724 1103 +3 315 774 1914 +3 501 2072 1104 +3 513 1100 2071 +3 317 779 1105 +3 316 788 1921 +3 601 952 1106 +3 515 1022 2040 +3 264 728 1107 +3 317 778 1916 +3 505 1092 1108 +3 517 1104 2072 +3 319 783 1109 +3 318 772 1913 +3 608 955 1110 +3 519 1000 2028 +3 265 713 1111 +3 319 782 1918 +3 616 961 1112 +3 520 1035 2045 +3 266 735 1113 +3 14 13 2304 +3 624 963 1114 +3 522 1041 2048 +3 190 189 2329 +3 2331 2143 2330 +3 149 148 2321 +3 524 2298 2017 +3 2156 1506 1115 +3 579 2074 1116 +3 526 1223 2101 +3 321 889 1117 +3 320 846 1951 +3 640 1039 1118 +3 528 1007 2032 +3 267 718 1119 +3 321 888 1972 +3 591 2075 1120 +3 530 1239 1121 +3 323 906 1122 +3 322 927 1992 +3 648 1054 1123 +3 532 1071 2060 +3 268 757 1124 +3 323 905 1981 +3 563 2076 1125 +3 534 1248 2106 +3 325 914 1126 +3 324 830 1943 +3 656 1060 1127 +3 536 997 2026 +3 269 711 1128 +3 325 913 1985 +3 555 2077 1129 +3 538 1187 2091 +3 327 857 1130 +3 326 822 1939 +3 664 1014 1131 +3 540 991 2022 +3 270 707 1132 +3 327 856 1956 +3 658 2078 1133 +3 542 1207 2095 +3 329 873 1134 +3 328 834 1945 +3 547 1029 1135 +3 544 942 1998 +3 271 674 1136 +3 329 872 1964 +3 330 811 1137 +3 488 980 2014 +3 547 1028 2042 +3 272 731 1138 +3 330 810 1933 +3 2157 2329 2307 +3 606 2079 1139 +3 2160 1141 2080 +3 984 1140 2256 +3 635 2080 1141 +3 2169 2135 2092 +3 557 1020 1142 +3 553 933 1995 +3 2214 1143 2201 +3 595 2083 1144 +3 555 1149 1145 +3 332 821 1146 +3 331 862 1959 +3 492 989 1147 +3 557 1019 2038 +3 273 726 1148 +3 332 820 1938 +3 599 1145 1149 +3 559 1129 2077 +3 334 803 1150 +3 333 818 1937 +3 565 974 1151 +3 561 936 1996 +3 274 670 1152 +3 334 802 1928 +3 650 2084 1153 +3 563 1158 1154 +3 336 829 1155 +3 335 931 1994 +3 496 995 1156 +3 565 973 2009 +3 275 697 1157 +3 336 828 1942 +3 666 1154 1158 +3 567 1125 2076 +3 338 799 1159 +3 337 826 1941 +3 573 971 1160 +3 569 939 1997 +3 276 672 1161 +3 338 798 1926 +3 614 2085 1162 +3 571 1133 2078 +3 340 807 1163 +3 339 923 1990 +3 499 977 1164 +3 573 970 2008 +3 277 695 1165 +3 340 806 1930 +3 575 1230 2332 +3 342 897 1166 +3 341 870 1963 +3 581 1045 1167 +3 577 957 2003 +3 278 684 1168 +3 342 896 1976 +3 626 2086 1169 +3 579 1174 1170 +3 344 845 1171 +3 343 894 1975 +3 503 1005 1172 +3 581 1044 2049 +3 279 739 1173 +3 344 844 1950 +3 630 1170 1174 +3 583 1116 2074 +3 346 791 1175 +3 345 842 1949 +3 589 965 1176 +3 585 945 1999 +3 280 676 1177 +3 346 790 1922 +3 530 2087 1178 +3 587 1182 2089 +3 348 853 1179 +3 347 907 1982 +3 507 1011 1180 +3 589 964 2006 +3 281 691 1181 +3 348 852 1954 +3 642 2089 1182 +3 591 1261 1183 +3 350 926 1184 +3 349 850 1953 +3 597 1069 1185 +3 593 948 2000 +3 282 678 1186 +3 350 925 1991 +3 559 2091 1187 +3 595 1192 1188 +3 352 861 1189 +3 351 804 1929 +3 511 1017 1190 +3 597 1068 2058 +3 283 755 1191 +3 352 860 1958 +3 538 1188 1192 +3 599 1144 2083 +3 354 817 1193 +3 353 858 1957 +3 604 986 1194 +3 601 951 2001 +3 284 680 1195 +3 354 816 1936 +3 2160 2092 2135 +3 602 1199 2094 +3 356 867 1196 +3 355 814 1935 +3 515 1023 1197 +3 604 985 2018 +3 285 703 1198 +3 356 866 1961 +3 2169 2094 1199 +3 606 1232 1200 +3 358 900 1201 +3 357 864 1960 +3 610 1048 1202 +3 608 954 2002 +3 286 682 1203 +3 358 899 1978 +3 359 837 1204 +3 2343 2341 1977 +3 519 1001 1205 +3 610 1047 2051 +3 287 741 1206 +3 359 836 1946 +3 571 2095 1207 +3 612 1210 2097 +3 361 877 1208 +3 360 808 1931 +3 288 701 1209 +3 361 876 1966 +3 542 2097 1210 +3 614 1257 1211 +3 363 922 1212 +3 362 874 1965 +3 620 1066 1213 +3 616 960 2004 +3 289 685 1214 +3 363 921 1989 +3 646 2098 1215 +3 618 1219 2099 +3 365 885 1216 +3 364 919 1988 +3 520 1036 1217 +3 620 1065 2057 +3 290 753 1218 +3 365 884 1970 +3 654 2099 1219 +3 622 1235 2102 +3 367 902 1220 +3 366 882 1969 +3 628 1051 1221 +3 624 962 2005 +3 291 687 1222 +3 367 901 1979 +3 583 2101 1223 +3 626 1228 1224 +3 369 893 1225 +3 368 792 1923 +3 522 1042 1226 +3 628 1050 2052 +3 292 743 1227 +3 369 892 1974 +3 526 1224 1228 +3 630 1169 2086 +3 371 841 1229 +3 370 890 1973 +3 293 689 2293 +3 371 840 1948 +3 2335 2332 1230 +3 109 108 2295 +3 372 838 1947 +3 294 2333 2287 +3 575 2285 2295 +3 2157 2330 2143 +3 636 1026 1231 +3 2303 2340 2050 +3 602 1200 1232 +3 635 1139 2079 +3 374 813 1233 +3 373 868 1962 +3 524 983 2259 +3 636 1025 2041 +3 295 730 1234 +3 374 812 1934 +3 618 2102 1235 +3 638 1243 2104 +3 376 910 1236 +3 375 886 1971 +3 644 1057 1237 +3 640 1038 2046 +3 296 737 1238 +3 376 909 1983 +3 662 1121 1239 +3 642 1178 2087 +3 378 849 1240 +3 377 796 1925 +3 528 1008 1241 +3 644 1056 2054 +3 297 747 1242 +3 378 848 1952 +3 622 2104 1243 +3 646 1253 1244 +3 380 918 1245 +3 379 903 1980 +3 652 1063 1246 +3 648 1053 2053 +3 298 745 1247 +3 380 917 1987 +3 567 2106 1248 +3 650 1265 1249 +3 382 930 1250 +3 381 800 1927 +3 532 1072 1251 +3 652 1062 2056 +3 299 751 1252 +3 382 929 1993 +3 638 1244 1253 +3 654 1215 2098 +3 384 881 1254 +3 383 911 1984 +3 660 1033 1255 +3 656 1059 2055 +3 300 749 1256 +3 384 880 1968 +3 612 1211 1257 +3 658 1162 2085 +3 386 833 1258 +3 385 878 1967 +3 536 998 1259 +3 660 1032 2043 +3 301 733 1260 +3 386 832 1944 +3 587 1183 1261 +3 662 1120 2075 +3 388 795 1262 +3 387 854 1955 +3 668 968 1263 +3 664 1013 2035 +3 302 722 1264 +3 388 794 1924 +3 534 1249 1265 +3 666 1153 2084 +3 390 825 1266 +3 389 915 1986 +3 540 992 1267 +3 668 967 2007 +3 303 693 1268 +3 390 824 1940 +3 1269 1270 1083 +3 274 1270 669 +3 1271 1272 1087 +3 276 1272 671 +3 1273 1274 1090 +3 271 1274 673 +3 1275 1276 1095 +3 280 1276 675 +3 1277 1278 1099 +3 282 1278 677 +3 1279 1280 1103 +3 284 1280 679 +3 1281 1282 1107 +3 286 1282 681 +3 1283 1284 1111 +3 278 1284 683 +3 289 2327 2328 +3 1285 1286 1113 +3 291 1286 686 +3 1287 2300 2297 +3 293 2300 688 +3 1288 1289 1119 +3 281 1289 690 +3 1290 1291 1124 +3 303 1291 692 +3 1292 1293 1128 +3 277 1293 694 +3 1294 1295 1132 +3 275 1295 696 +3 1296 1297 1136 +3 260 1297 698 +3 1298 1299 1138 +3 288 1299 700 +3 1300 1301 1148 +3 285 1301 702 +3 1302 1303 1152 +3 258 1303 704 +3 1304 1305 1157 +3 270 1305 706 +3 1306 1307 1161 +3 259 1307 708 +3 1308 1309 1165 +3 269 1309 710 +3 1310 1311 1168 +3 265 1311 712 +3 1312 1313 1173 +3 294 1313 714 +3 1314 1315 1177 +3 261 1315 715 +3 1316 1317 1181 +3 267 1317 717 +3 1318 1319 1186 +3 262 1319 719 +3 1320 1321 1191 +3 302 1321 721 +3 1322 1323 1195 +3 263 1323 723 +3 1324 1325 1198 +3 273 1325 725 +3 1326 1327 1203 +3 264 1327 727 +3 1328 1329 1206 +3 295 1329 729 +3 2347 1330 1209 +3 272 1330 2306 +3 1331 2292 1214 +3 2291 253 252 +3 1332 1333 1218 +3 301 1333 732 +3 1334 1335 1222 +3 266 1335 734 +3 1336 1337 1227 +3 296 1337 736 +3 2336 1338 2287 +3 279 1338 738 +3 1339 1340 1234 +3 287 1340 740 +3 1341 1342 1238 +3 292 1342 742 +3 1343 1344 1242 +3 298 1344 744 +3 1345 1346 1247 +3 297 1346 746 +3 1347 1348 1252 +3 300 1348 748 +3 1349 1350 1256 +3 299 1350 750 +3 1351 1352 1260 +3 290 1352 752 +3 1353 1354 1264 +3 283 1354 754 +3 1355 1356 1268 +3 268 1356 756 +3 1357 1358 2127 +3 308 1358 758 +3 1359 1360 1907 +3 305 1360 760 +3 1361 1362 938 +3 307 1362 762 +3 1363 1364 1082 +3 1908 1364 2148 +3 1365 1366 941 +3 309 1366 764 +3 1367 1368 1085 +3 304 1368 766 +3 1369 1370 944 +3 2244 1370 2248 +3 1371 1372 1088 +3 306 1372 768 +3 1373 1374 947 +3 313 1374 770 +3 1375 1376 1093 +3 318 1376 772 +3 1377 1378 950 +3 315 1378 774 +3 1379 1380 1097 +3 310 1380 776 +3 1381 1382 953 +3 317 1382 778 +3 1383 1384 1101 +3 312 1384 780 +3 1385 1386 956 +3 319 1386 782 +3 1387 1388 1105 +3 314 1388 784 +3 1389 1390 959 +3 311 1390 786 +3 1391 1392 1109 +3 316 1392 788 +3 1393 1394 966 +3 346 1394 790 +3 1395 1396 1117 +3 368 1396 792 +3 1397 1398 969 +3 388 1398 794 +3 1399 1400 1122 +3 377 1400 796 +3 1401 1402 972 +3 338 1402 798 +3 1403 1404 1126 +3 381 1404 800 +3 1405 1406 975 +3 334 1406 802 +3 1407 1408 1130 +3 351 1408 804 +3 1409 1410 978 +3 340 1410 806 +3 1411 1412 1134 +3 360 1412 808 +3 1413 1414 1137 +3 1932 1414 1415 +3 1416 1417 981 +3 330 1417 810 +3 1418 1419 2206 +3 374 1419 812 +3 1420 1421 2130 +3 355 1421 814 +3 1422 1423 987 +3 354 1423 816 +3 1424 1425 1146 +3 333 1425 818 +3 1426 1427 990 +3 332 1427 820 +3 1428 1429 1150 +3 326 1429 822 +3 1430 1431 993 +3 390 1431 824 +3 1432 1433 1155 +3 337 1433 826 +3 1434 1435 996 +3 336 1435 828 +3 1436 1437 1159 +3 324 1437 830 +3 1438 1439 999 +3 386 1439 832 +3 1440 1441 1163 +3 328 1441 834 +3 1442 1443 1002 +3 359 1443 836 +3 1444 1445 1166 +3 372 1445 838 +3 1446 1447 1003 +3 371 1447 840 +3 1448 1449 1171 +3 345 1449 842 +3 1450 1451 1006 +3 344 1451 844 +3 1452 1453 1175 +3 320 1453 846 +3 1454 1455 1009 +3 378 1455 848 +3 1456 1457 1179 +3 349 1457 850 +3 1458 1459 1012 +3 348 1459 852 +3 1460 1461 1184 +3 387 1461 854 +3 1462 1463 1015 +3 327 1463 856 +3 1464 1465 1189 +3 353 1465 858 +3 1466 1467 1018 +3 352 1467 860 +3 1468 1469 1193 +3 331 1469 862 +3 1470 1471 1021 +3 2202 1471 2214 +3 1472 1473 1196 +3 357 1473 864 +3 1474 1475 1024 +3 356 1475 866 +3 1476 1477 1201 +3 373 1477 868 +3 2319 2315 1027 +3 1478 1479 1204 +3 341 1479 870 +3 1480 1481 1030 +3 329 1481 872 +3 1482 1483 1208 +3 362 1483 874 +3 1484 1485 1031 +3 361 1485 876 +3 1486 1487 1212 +3 385 1487 878 +3 1488 1489 1034 +3 384 1489 880 +3 1490 1491 1216 +3 366 1491 882 +3 1492 1493 1037 +3 365 1493 884 +3 1494 1495 1220 +3 375 1495 886 +3 1496 1497 1040 +3 321 1497 888 +3 1498 1499 1225 +3 370 1499 890 +3 1500 1501 1043 +3 369 1501 892 +3 1502 1503 1229 +3 343 1503 894 +3 1504 1505 1046 +3 342 1505 896 +3 2305 163 2324 +3 2348 2305 1506 +3 132 131 2343 +3 1507 1508 1049 +3 358 1508 899 +3 1509 1510 1233 +3 984 1510 2124 +3 1511 1512 1052 +3 367 1512 901 +3 1513 1514 1236 +3 379 1514 903 +3 1515 1516 1055 +3 323 1516 905 +3 1517 1518 1240 +3 347 1518 907 +3 1519 1520 1058 +3 376 1520 909 +3 1521 1522 1245 +3 383 1522 911 +3 1523 1524 1061 +3 325 1524 913 +3 1525 1526 1250 +3 389 1526 915 +3 1527 1528 1064 +3 380 1528 917 +3 1529 1530 1254 +3 364 1530 919 +3 1531 1532 1067 +3 363 1532 921 +3 1533 1534 1258 +3 339 1534 923 +3 1535 1536 1070 +3 350 1536 925 +3 1537 1538 1262 +3 322 1538 927 +3 1539 1540 1073 +3 382 1540 929 +3 1541 1542 1266 +3 335 1542 931 +3 1470 1543 2214 +3 553 1543 933 +3 1359 1544 988 +3 1544 1545 2187 +3 1405 1546 802 +3 561 1546 936 +3 1361 1547 994 +3 495 1547 938 +3 1401 1548 798 +3 569 1548 939 +3 1365 1549 976 +3 498 1549 941 +3 1480 1550 872 +3 544 1550 942 +3 1369 1551 979 +3 487 1551 944 +3 1393 1552 790 +3 585 1552 945 +3 1373 1553 1010 +3 506 1553 947 +3 1535 1554 925 +3 593 1554 948 +3 1377 1555 1016 +3 510 1555 950 +3 1422 1556 816 +3 601 1556 951 +3 1381 1557 1022 +3 514 1557 953 +3 1507 1558 899 +3 608 1558 954 +3 1385 1559 1000 +3 518 1559 956 +3 1504 1560 896 +3 577 1560 957 +3 1389 1561 1004 +3 502 1561 959 +3 1531 1562 921 +3 616 1562 960 +3 2325 2326 1035 +3 2 0 2289 +3 1511 1563 901 +3 624 1563 962 +3 2318 1564 1041 +3 521 1564 2317 +3 1446 2290 840 +3 2313 69 68 +3 1458 1565 852 +3 589 1565 964 +3 1393 1566 945 +3 584 1566 966 +3 1430 1567 824 +3 668 1567 967 +3 1397 1568 1013 +3 663 1568 969 +3 1409 1569 806 +3 573 1569 970 +3 1401 1570 939 +3 568 1570 972 +3 1434 1571 828 +3 565 1571 973 +3 1405 1572 936 +3 560 1572 975 +3 1365 1573 764 +3 499 1573 976 +3 1409 1574 970 +3 572 1574 978 +3 1484 1575 876 +3 2309 1575 2308 +3 1369 1576 2248 +3 488 1576 979 +3 1416 2240 1028 +3 2240 981 2280 +3 2324 1577 1506 +3 524 1577 2298 +3 1418 2198 1025 +3 2198 2206 2270 +3 1474 1578 866 +3 604 1578 985 +3 1422 1579 951 +3 600 1579 987 +3 1359 1580 760 +3 492 1580 988 +3 1426 1581 1019 +3 556 1581 990 +3 1462 1582 856 +3 540 1582 991 +3 1430 1583 967 +3 667 1583 993 +3 1361 1584 762 +3 496 1584 994 +3 1434 1585 973 +3 564 1585 996 +3 1523 1586 913 +3 536 1586 997 +3 1438 1587 1032 +3 659 1587 999 +3 1385 1588 782 +3 519 1588 1000 +3 1442 1589 1047 +3 609 1589 1002 +3 1446 1590 2313 +3 631 1590 1003 +3 1389 1591 786 +3 503 1591 1004 +3 1450 1592 1044 +3 580 1592 1006 +3 1496 1593 888 +3 528 1593 1007 +3 1454 1594 1056 +3 643 1594 1009 +3 1373 1595 770 +3 507 1595 1010 +3 1458 1596 964 +3 588 1596 1012 +3 1397 1597 794 +3 664 1597 1013 +3 1462 1598 991 +3 539 1598 1015 +3 1377 1599 774 +3 511 1599 1016 +3 1466 1600 1068 +3 596 1600 1018 +3 1426 1601 820 +3 557 1601 1019 +3 1470 1602 933 +3 552 1602 1021 +3 1381 1603 778 +3 515 1603 1022 +3 1474 1604 985 +3 603 1604 1024 +3 1418 1605 812 +3 636 1605 1025 +3 2319 1606 2340 +3 633 1606 1027 +3 1416 1607 810 +3 547 1607 1028 +3 1480 1608 942 +3 543 1608 1030 +3 1484 2302 2308 +3 2345 2302 1031 +3 1438 1609 832 +3 660 1609 1032 +3 1488 1610 1059 +3 655 1610 1034 +3 2325 1611 2304 +3 520 1611 1035 +3 1492 1612 1065 +3 619 1612 1037 +3 1519 1613 909 +3 640 1613 1038 +3 1496 1614 1007 +3 527 1614 1040 +3 36 35 2318 +3 522 2316 1041 +3 1500 1615 1050 +3 627 1615 1043 +3 1450 1616 844 +3 581 1616 1044 +3 1504 1617 957 +3 576 1617 1046 +3 2303 144 2340 +3 2324 159 2298 +3 1442 1618 836 +3 610 1618 1047 +3 1507 1619 954 +3 607 1619 1049 +3 1500 1620 892 +3 628 1620 1050 +3 1511 1621 962 +3 623 1621 1052 +3 1527 1622 917 +3 648 1622 1053 +3 1515 1623 1071 +3 531 1623 1055 +3 1454 1624 848 +3 644 1624 1056 +3 1519 1625 1038 +3 639 1625 1058 +3 1488 1626 880 +3 656 1626 1059 +3 1523 1627 997 +3 535 1627 1061 +3 1539 1628 929 +3 652 1628 1062 +3 1527 1629 1053 +3 647 1629 1064 +3 1492 1630 884 +3 620 1630 1065 +3 1531 1631 960 +3 615 1631 1067 +3 1466 1632 860 +3 597 1632 1068 +3 1535 1633 948 +3 592 1633 1070 +3 1515 1634 905 +3 532 1634 1071 +3 1539 1635 1062 +3 651 1635 1073 +3 1363 2117 2148 +3 2152 2117 1074 +3 1357 485 1084 +3 485 1636 2275 +3 1296 1637 698 +3 398 1637 1077 +3 2014 1638 2140 +3 1367 1639 766 +3 491 1639 1079 +3 1371 1640 768 +3 494 1640 1081 +3 1363 1641 1074 +3 489 1641 1082 +3 392 2233 2137 +3 1269 1642 1147 +3 430 1642 1083 +3 1357 1643 758 +3 497 1643 1084 +3 1367 1644 1079 +3 490 1644 1085 +3 1302 1645 704 +3 394 1645 1086 +3 1271 1646 1156 +3 434 1646 1087 +3 1371 1647 1081 +3 493 1647 1088 +3 1306 1648 708 +3 396 1648 1089 +3 1273 1649 1164 +3 421 1649 1090 +3 1383 1650 780 +3 505 1650 1091 +3 1375 1651 1104 +3 516 1651 1093 +3 1310 1652 712 +3 408 1652 1094 +3 1275 1653 1172 +3 440 1653 1095 +3 1387 1654 784 +3 509 1654 1096 +3 1379 1655 1108 +3 500 1655 1097 +3 1314 1656 715 +3 400 1656 1098 +3 1277 1657 1180 +3 444 1657 1099 +3 1391 1658 788 +3 513 1658 1100 +3 1383 1659 1091 +3 504 1659 1101 +3 1318 1660 719 +3 402 1660 1102 +3 1279 1661 1190 +3 448 1661 1103 +3 1375 1662 772 +3 517 1662 1104 +3 1387 1663 1096 +3 508 1663 1105 +3 1322 1664 723 +3 404 1664 1106 +3 1281 1665 1197 +3 452 1665 1107 +3 1379 1666 776 +3 501 1666 1108 +3 1391 1667 1100 +3 512 1667 1109 +3 1326 1668 727 +3 406 1668 1110 +3 1283 1669 1205 +3 438 1669 1111 +3 1331 1670 2291 +3 410 1670 1112 +3 1285 1671 1217 +3 460 1671 1113 +3 1334 1672 734 +3 412 1672 1114 +3 1287 1673 1226 +3 2296 1673 2297 +3 1413 2211 1415 +3 2157 2211 2329 +3 2228 2339 1674 +3 2259 1675 2219 +3 1448 1676 842 +3 583 1676 1116 +3 1395 1677 1228 +3 625 1677 1117 +3 1341 1678 742 +3 463 1678 1118 +3 1288 1679 1241 +3 442 1679 1119 +3 1460 1680 854 +3 662 1680 1120 +3 1399 1681 1178 +3 641 1681 1122 +3 1345 1682 746 +3 472 1682 1123 +3 1290 1683 1251 +3 483 1683 1124 +3 1432 1684 826 +3 567 1684 1125 +3 1403 1685 1265 +3 649 1685 1126 +3 1349 1686 750 +3 476 1686 1127 +3 1292 1687 1259 +3 436 1687 1128 +3 1424 1688 818 +3 559 1688 1129 +3 1407 1689 1192 +3 594 1689 1130 +3 1353 1690 754 +3 447 1690 1131 +3 1294 1691 1267 +3 432 1691 1132 +3 1533 1692 923 +3 571 1692 1133 +3 1411 1693 1210 +3 611 1693 1134 +3 1298 1694 700 +3 457 1694 1135 +3 1296 1695 1077 +3 397 1695 1136 +3 1413 2288 2329 +3 2311 2288 1137 +3 425 545 2014 +3 1298 1696 1135 +3 456 1696 1138 +3 1476 1697 868 +3 635 1697 1139 +3 1509 2251 2124 +3 2160 2251 1141 +3 1420 550 1199 +3 550 1698 2271 +3 1300 1699 702 +3 451 1699 1142 +3 2137 1700 2266 +3 1464 1701 858 +3 599 1701 1144 +3 1424 1702 1129 +3 558 1702 1146 +3 1269 1703 669 +3 431 1703 1147 +3 1300 1704 1142 +3 450 1704 1148 +3 1468 1705 862 +3 555 1705 1149 +3 1428 1706 1187 +3 537 1706 1150 +3 1304 1707 706 +3 420 1707 1151 +3 1302 1708 1086 +3 393 1708 1152 +3 1525 1709 915 +3 666 1709 1153 +3 1432 1710 1125 +3 566 1710 1155 +3 1271 1711 671 +3 435 1711 1156 +3 1304 1712 1151 +3 419 1712 1157 +3 1541 1713 931 +3 563 1713 1158 +3 1436 1714 1248 +3 533 1714 1159 +3 1308 1715 710 +3 418 1715 1160 +3 1306 1716 1089 +3 395 1716 1161 +3 1486 1717 878 +3 658 1717 1162 +3 1440 1718 1207 +3 541 1718 1163 +3 1273 1719 673 +3 422 1719 1164 +3 1308 1720 1160 +3 417 1720 1165 +3 127 126 2341 +3 123 122 2342 +3 1444 1721 2295 +3 632 1721 1166 +3 1312 1722 714 +3 466 1722 1167 +3 1310 1723 1094 +3 407 1723 1168 +3 1498 1724 890 +3 630 1724 1169 +3 1448 1725 1116 +3 582 1725 1171 +3 1275 1726 675 +3 441 1726 1172 +3 1312 1727 1167 +3 465 1727 1173 +3 1502 1728 894 +3 579 1728 1174 +3 1452 1729 1223 +3 525 1729 1175 +3 1316 1730 717 +3 414 1730 1176 +3 1314 1731 1098 +3 399 1731 1177 +3 1399 1732 796 +3 642 1732 1178 +3 1456 1733 1261 +3 590 1733 1179 +3 1277 1734 677 +3 445 1734 1180 +3 1316 1735 1176 +3 413 1735 1181 +3 1517 1736 907 +3 587 1736 1182 +3 1460 1737 1120 +3 661 1737 1184 +3 1320 1738 721 +3 482 1738 1185 +3 1318 1739 1102 +3 401 1739 1186 +3 1428 1740 822 +3 538 1740 1187 +3 1464 1741 1144 +3 598 1741 1189 +3 1279 1742 679 +3 449 1742 1190 +3 1320 1743 1185 +3 481 1743 1191 +3 1407 1744 804 +3 595 1744 1192 +3 1468 1745 1149 +3 554 1745 1193 +3 1324 1746 725 +3 429 1746 1194 +3 1322 1747 1106 +3 403 1747 1195 +3 1472 1748 1232 +3 605 1748 1196 +3 1281 1749 681 +3 453 1749 1197 +3 1324 1750 1194 +3 428 1750 1198 +3 1420 1751 814 +3 602 1751 1199 +3 1476 1752 1139 +3 634 1752 1201 +3 1328 1753 729 +3 468 1753 1202 +3 1326 1754 1110 +3 405 1754 1203 +3 1478 1755 1230 +3 574 1755 1204 +3 1283 1756 683 +3 439 1756 1205 +3 1328 1757 1202 +3 467 1757 1206 +3 216 215 2347 +3 1440 1758 834 +3 542 1758 1207 +3 1482 1759 1257 +3 613 1759 1208 +3 220 219 2346 +3 423 2346 1209 +3 1411 1760 808 +3 612 1760 1210 +3 1486 1761 1162 +3 657 1761 1212 +3 1332 1762 732 +3 480 1762 1213 +3 1331 1763 1112 +3 409 1763 1214 +3 1521 1764 911 +3 654 1764 1215 +3 1490 1765 1235 +3 621 1765 1216 +3 1285 1766 686 +3 461 1766 1217 +3 1332 1767 1213 +3 479 1767 1218 +3 1529 1768 919 +3 618 1768 1219 +3 1494 1769 1243 +3 637 1769 1220 +3 1336 1770 736 +3 470 1770 1221 +3 1334 1771 1114 +3 411 1771 1222 +3 1452 1772 846 +3 526 1772 1223 +3 1498 1773 1169 +3 629 1773 1225 +3 1287 1774 688 +3 464 1774 1226 +3 1336 1775 1221 +3 469 1775 1227 +3 1395 1776 792 +3 626 1776 1228 +3 1502 1777 1174 +3 578 1777 1229 +3 2336 2334 738 +3 78 77 2334 +3 2338 62 61 +3 1478 1778 870 +3 575 1778 1230 +3 1444 2286 838 +3 107 106 2295 +3 2331 1779 2273 +3 1339 1780 740 +3 455 1780 1231 +3 1472 1781 864 +3 606 1781 1232 +3 1509 1782 1141 +3 549 1782 1233 +3 427 2191 2259 +3 1339 1783 1231 +3 454 1783 1234 +3 1490 1784 882 +3 622 1784 1235 +3 1513 1785 1253 +3 645 1785 1236 +3 1343 1786 744 +3 474 1786 1237 +3 1341 1787 1118 +3 462 1787 1238 +3 1537 1788 927 +3 530 1788 1239 +3 1517 1789 1182 +3 586 1789 1240 +3 1288 1790 690 +3 443 1790 1241 +3 1343 1791 1237 +3 473 1791 1242 +3 1494 1792 886 +3 638 1792 1243 +3 1521 1793 1215 +3 653 1793 1245 +3 1347 1794 748 +3 478 1794 1246 +3 1345 1795 1123 +3 471 1795 1247 +3 1436 1796 830 +3 534 1796 1248 +3 1525 1797 1153 +3 665 1797 1250 +3 1290 1798 692 +3 484 1798 1251 +3 1347 1799 1246 +3 477 1799 1252 +3 1513 1800 903 +3 646 1800 1253 +3 1529 1801 1219 +3 617 1801 1254 +3 1351 1802 752 +3 459 1802 1255 +3 1349 1803 1127 +3 475 1803 1256 +3 1482 1804 874 +3 614 1804 1257 +3 1533 1805 1133 +3 570 1805 1258 +3 1292 1806 694 +3 437 1806 1259 +3 1351 1807 1255 +3 458 1807 1260 +3 1456 1808 850 +3 591 1808 1261 +3 1537 1809 1239 +3 529 1809 1262 +3 1355 1810 756 +3 416 1810 1263 +3 1353 1811 1131 +3 446 1811 1264 +3 1403 1812 800 +3 650 1812 1265 +3 1541 1813 1158 +3 562 1813 1266 +3 1294 1814 696 +3 433 1814 1267 +3 1355 1815 1263 +3 415 1815 1268 +3 1816 1817 819 +3 274 1817 670 +3 1302 1152 1708 +3 274 1152 1303 +3 1818 1819 827 +3 276 1819 672 +3 1306 1161 1716 +3 276 1161 1307 +3 1820 1821 835 +3 271 1821 674 +3 1296 1136 1695 +3 271 1136 1297 +3 1822 1823 843 +3 280 1823 676 +3 1314 1177 1731 +3 280 1177 1315 +3 1824 1825 851 +3 282 1825 678 +3 1318 1186 1739 +3 282 1186 1319 +3 1826 1827 859 +3 284 1827 680 +3 1322 1195 1747 +3 284 1195 1323 +3 1828 1829 865 +3 286 1829 682 +3 1326 1203 1754 +3 286 1203 1327 +3 1830 1831 871 +3 278 1831 684 +3 1310 1168 1723 +3 278 1168 1311 +3 1832 1833 875 +3 289 1833 685 +3 1331 1214 1763 +3 289 1214 2292 +3 1834 1835 883 +3 291 1835 687 +3 1334 1222 1771 +3 291 1222 1335 +3 1836 1837 891 +3 293 1837 689 +3 293 2293 2299 +3 1838 1839 908 +3 281 1839 691 +3 1316 1181 1735 +3 281 1181 1317 +3 1840 1841 916 +3 303 1841 693 +3 1355 1268 1815 +3 303 1268 1356 +3 1842 1843 924 +3 277 1843 695 +3 1308 1165 1720 +3 277 1165 1309 +3 1844 1845 932 +3 275 1845 697 +3 1304 1157 1712 +3 275 1157 1305 +3 1846 1847 759 +3 260 1847 699 +3 1273 1090 1649 +3 260 1090 1274 +3 1848 1849 809 +3 288 1849 701 +3 2347 1209 2346 +3 288 1209 1330 +3 1850 1851 815 +3 285 1851 703 +3 1324 1198 1750 +3 285 1198 1325 +3 1852 1853 767 +3 258 1853 705 +3 1269 1083 1642 +3 258 1083 1270 +3 1854 1855 823 +3 270 1855 707 +3 1294 1132 1691 +3 270 1132 1295 +3 1856 1857 769 +3 259 1857 709 +3 1271 1087 1646 +3 259 1087 1272 +3 1858 1859 831 +3 269 1859 711 +3 1292 1128 1687 +3 269 1128 1293 +3 1860 1861 773 +3 265 1861 713 +3 1283 1111 1669 +3 265 1111 1284 +3 2337 1862 839 +3 294 1862 2333 +3 85 84 2336 +3 294 2287 1338 +3 1863 1864 777 +3 261 1864 716 +3 1275 1095 1653 +3 261 1095 1276 +3 1865 1866 847 +3 267 1866 718 +3 1288 1119 1679 +3 267 1119 1289 +3 1867 1868 781 +3 262 1868 720 +3 1277 1099 1657 +3 262 1099 1278 +3 1869 1870 855 +3 302 1870 722 +3 1353 1264 1811 +3 302 1264 1354 +3 1871 1872 785 +3 263 1872 724 +3 1279 1103 1661 +3 263 1103 1280 +3 1873 1874 863 +3 273 1874 726 +3 1300 1148 1704 +3 273 1148 1301 +3 1875 1876 789 +3 264 1876 728 +3 1281 1107 1665 +3 264 1107 1282 +3 1877 1878 869 +3 295 1878 730 +3 1339 1234 1783 +3 295 1234 1340 +3 2349 208 2350 +3 272 2349 731 +3 1298 1138 1696 +3 272 1138 1299 +3 1879 1880 879 +3 301 1880 733 +3 1351 1260 1807 +3 301 1260 1352 +3 2301 1881 2320 +3 266 1881 735 +3 1285 1113 1671 +3 266 1113 1286 +3 1882 1883 887 +3 296 1883 737 +3 1341 1238 1787 +3 296 1238 1342 +3 1287 2297 1673 +3 48 47 2297 +3 1884 1885 895 +3 279 1885 739 +3 1312 1173 1727 +3 279 1173 1313 +3 1886 1887 898 +3 287 1887 741 +3 1328 1206 1757 +3 287 1206 1329 +3 1888 1889 793 +3 292 1889 743 +3 1336 1227 1775 +3 292 1227 1337 +3 1890 1891 904 +3 298 1891 745 +3 1345 1247 1795 +3 298 1247 1346 +3 1892 1893 797 +3 297 1893 747 +3 1343 1242 1791 +3 297 1242 1344 +3 1894 1895 912 +3 300 1895 749 +3 1349 1256 1803 +3 300 1256 1350 +3 1896 1897 801 +3 299 1897 751 +3 1347 1252 1799 +3 299 1252 1348 +3 1898 1899 920 +3 290 1899 753 +3 1332 1218 1767 +3 290 1218 1333 +3 1900 1901 805 +3 283 1901 755 +3 1320 1191 1743 +3 283 1191 1321 +3 1902 1903 928 +3 268 1903 757 +3 1290 1124 1683 +3 268 1124 1291 +3 1846 1904 765 +3 308 1904 759 +3 1369 944 1551 +3 308 944 1370 +3 1852 1905 705 +3 305 1905 761 +3 1363 1082 1641 +3 305 1082 1364 +3 1856 1906 709 +3 307 1906 763 +3 1367 1085 1644 +3 307 1085 1368 +3 1359 1907 1544 +3 1908 1907 1360 +3 1846 1909 699 +3 309 1909 765 +3 1371 1088 1647 +3 309 1088 1372 +3 1852 1910 761 +3 304 1910 767 +3 1361 938 1547 +3 304 938 1362 +3 1357 2127 485 +3 2244 2127 1358 +3 1856 1911 763 +3 306 1911 769 +3 1365 941 1549 +3 306 941 1366 +3 1867 1912 720 +3 313 1912 771 +3 1379 1097 1655 +3 313 1097 1380 +3 1860 1913 783 +3 318 1913 773 +3 1389 959 1561 +3 318 959 1390 +3 1871 1914 724 +3 315 1914 775 +3 1383 1101 1659 +3 315 1101 1384 +3 1863 1915 787 +3 310 1915 777 +3 1373 947 1553 +3 310 947 1374 +3 1875 1916 728 +3 317 1916 779 +3 1387 1105 1663 +3 317 1105 1388 +3 1867 1917 771 +3 312 1917 781 +3 1377 950 1555 +3 312 950 1378 +3 1860 1918 713 +3 319 1918 783 +3 1391 1109 1667 +3 319 1109 1392 +3 1871 1919 775 +3 314 1919 785 +3 1381 953 1557 +3 314 953 1382 +3 1863 1920 716 +3 311 1920 787 +3 1375 1093 1651 +3 311 1093 1376 +3 1875 1921 779 +3 316 1921 789 +3 1385 956 1559 +3 316 956 1386 +3 2301 2322 735 +3 2325 7 6 +3 2318 2317 1564 +3 1822 1922 676 +3 346 1922 791 +3 1452 1175 1729 +3 346 1175 1453 +3 1888 1923 893 +3 368 1923 793 +3 1496 1040 1614 +3 368 1040 1497 +3 1869 1924 722 +3 388 1924 795 +3 1537 1262 1809 +3 388 1262 1538 +3 1892 1925 849 +3 377 1925 797 +3 1515 1055 1623 +3 377 1055 1516 +3 1818 1926 672 +3 338 1926 799 +3 1436 1159 1714 +3 338 1159 1437 +3 1896 1927 930 +3 381 1927 801 +3 1523 1061 1627 +3 381 1061 1524 +3 1816 1928 670 +3 334 1928 803 +3 1428 1150 1706 +3 334 1150 1429 +3 1900 1929 861 +3 351 1929 805 +3 1462 1015 1598 +3 351 1015 1463 +3 1842 1930 695 +3 340 1930 807 +3 1440 1163 1718 +3 340 1163 1441 +3 1848 1931 877 +3 360 1931 809 +3 1480 1030 1608 +3 360 1030 1481 +3 1416 981 2240 +3 1932 981 1417 +3 2350 1933 731 +3 330 1933 811 +3 1413 1137 2288 +3 330 1137 1414 +3 1877 1934 730 +3 374 1934 813 +3 1509 1233 1782 +3 374 1233 1510 +3 1850 1935 867 +3 355 1935 815 +3 1470 1021 1602 +3 355 1021 1471 +3 1826 1936 680 +3 354 1936 817 +3 1468 1193 1745 +3 354 1193 1469 +3 1816 1937 803 +3 333 1937 819 +3 1426 990 1581 +3 333 990 1427 +3 1873 1938 726 +3 332 1938 821 +3 1424 1146 1702 +3 332 1146 1425 +3 1854 1939 857 +3 326 1939 823 +3 1405 975 1572 +3 326 975 1406 +3 1840 1940 693 +3 390 1940 825 +3 1541 1266 1813 +3 390 1266 1542 +3 1818 1941 799 +3 337 1941 827 +3 1434 996 1585 +3 337 996 1435 +3 1844 1942 697 +3 336 1942 829 +3 1432 1155 1710 +3 336 1155 1433 +3 1858 1943 914 +3 324 1943 831 +3 1401 972 1570 +3 324 972 1402 +3 1879 1944 733 +3 386 1944 833 +3 1533 1258 1805 +3 386 1258 1534 +3 1820 1945 873 +3 328 1945 835 +3 1409 978 1574 +3 328 978 1410 +3 1886 1946 741 +3 359 1946 837 +3 1478 1204 1755 +3 359 1204 1479 +3 2337 1947 2314 +3 372 1947 839 +3 1504 1046 1617 +3 372 1046 1505 +3 1836 1948 689 +3 371 1948 841 +3 1502 1229 1777 +3 371 1229 1503 +3 1822 1949 791 +3 345 1949 843 +3 1450 1006 1592 +3 345 1006 1451 +3 1884 1950 739 +3 344 1950 845 +3 1448 1171 1725 +3 344 1171 1449 +3 1865 1951 889 +3 320 1951 847 +3 1393 966 1566 +3 320 966 1394 +3 1892 1952 747 +3 378 1952 849 +3 1517 1240 1789 +3 378 1240 1518 +3 1824 1953 926 +3 349 1953 851 +3 1458 1012 1596 +3 349 1012 1459 +3 1838 1954 691 +3 348 1954 853 +3 1456 1179 1733 +3 348 1179 1457 +3 1869 1955 795 +3 387 1955 855 +3 1535 1070 1633 +3 387 1070 1536 +3 1854 1956 707 +3 327 1956 857 +3 1407 1130 1689 +3 327 1130 1408 +3 1826 1957 817 +3 353 1957 859 +3 1466 1018 1600 +3 353 1018 1467 +3 1900 1958 755 +3 352 1958 861 +3 1464 1189 1741 +3 352 1189 1465 +3 1873 1959 821 +3 331 1959 863 +3 1422 987 1579 +3 331 987 1423 +3 1420 2130 550 +3 2202 2130 1421 +3 1828 1960 900 +3 357 1960 865 +3 1474 1024 1604 +3 357 1024 1475 +3 1850 1961 703 +3 356 1961 867 +3 1472 1196 1748 +3 356 1196 1473 +3 1877 1962 813 +3 373 1962 869 +3 1507 1049 1619 +3 373 1049 1508 +3 1830 1963 897 +3 341 1963 871 +3 1442 1002 1589 +3 341 1002 1443 +3 2350 2310 811 +3 1820 1964 674 +3 329 1964 873 +3 1411 1134 1693 +3 329 1134 1412 +3 1832 1965 922 +3 362 1965 875 +3 1484 1031 2302 +3 362 1031 1485 +3 1848 1966 701 +3 361 1966 877 +3 1482 1208 1759 +3 361 1208 1483 +3 1879 1967 833 +3 385 1967 879 +3 1531 1067 1631 +3 385 1067 1532 +3 1894 1968 749 +3 384 1968 881 +3 1529 1254 1801 +3 384 1254 1530 +3 1834 1969 902 +3 366 1969 883 +3 1492 1037 1612 +3 366 1037 1493 +3 1898 1970 753 +3 365 1970 885 +3 1490 1216 1765 +3 365 1216 1491 +3 1882 1971 910 +3 375 1971 887 +3 1511 1052 1621 +3 375 1052 1512 +3 1865 1972 718 +3 321 1972 889 +3 1395 1117 1677 +3 321 1117 1396 +3 1836 1973 841 +3 370 1973 891 +3 1500 1043 1615 +3 370 1043 1501 +3 1888 1974 743 +3 369 1974 893 +3 1498 1225 1773 +3 369 1225 1499 +3 1884 1975 845 +3 343 1975 895 +3 1446 1003 1590 +3 343 1003 1447 +3 1830 1976 684 +3 342 1976 897 +3 1444 1166 1721 +3 342 1166 1445 +3 93 92 2337 +3 174 173 2339 +3 169 168 2348 +3 1886 1977 837 +3 2343 1977 898 +3 2319 1027 1606 +3 2343 1027 2315 +3 1828 1978 682 +3 358 1978 900 +3 1476 1201 1752 +3 358 1201 1477 +3 1418 2206 2198 +3 984 2206 1419 +3 1834 1979 687 +3 367 1979 902 +3 1494 1220 1769 +3 367 1220 1495 +3 1890 1980 918 +3 379 1980 904 +3 1519 1058 1625 +3 379 1058 1520 +3 1902 1981 757 +3 323 1981 906 +3 1399 1122 1681 +3 323 1122 1400 +3 1838 1982 853 +3 347 1982 908 +3 1454 1009 1594 +3 347 1009 1455 +3 1882 1983 737 +3 376 1983 910 +3 1513 1236 1785 +3 376 1236 1514 +3 1894 1984 881 +3 383 1984 912 +3 1527 1064 1629 +3 383 1064 1528 +3 1858 1985 711 +3 325 1985 914 +3 1403 1126 1685 +3 325 1126 1404 +3 1840 1986 825 +3 389 1986 916 +3 1539 1073 1635 +3 389 1073 1540 +3 1890 1987 745 +3 380 1987 918 +3 1521 1245 1793 +3 380 1245 1522 +3 1898 1988 885 +3 364 1988 920 +3 1488 1034 1610 +3 364 1034 1489 +3 1832 1989 685 +3 363 1989 922 +3 1486 1212 1761 +3 363 1212 1487 +3 1842 1990 807 +3 339 1990 924 +3 1438 999 1587 +3 339 999 1439 +3 1824 1991 678 +3 350 1991 926 +3 1460 1184 1737 +3 350 1184 1461 +3 1902 1992 906 +3 322 1992 928 +3 1397 969 1568 +3 322 969 1398 +3 1896 1993 751 +3 382 1993 930 +3 1525 1250 1797 +3 382 1250 1526 +3 1844 1994 829 +3 335 1994 932 +3 1430 993 1583 +3 335 993 1431 +3 2019 1995 1020 +3 553 1995 934 +3 2137 2233 2139 +3 553 2137 2177 +3 2023 1996 974 +3 561 1996 937 +3 1302 1086 1645 +3 561 1086 1708 +3 1852 767 1910 +3 495 767 1853 +3 1302 704 1303 +3 495 704 1645 +3 2010 1997 971 +3 569 1997 940 +3 1306 1089 1648 +3 569 1089 1716 +3 1856 769 1911 +3 498 769 1857 +3 1306 708 1307 +3 498 708 1648 +3 2012 1998 1029 +3 544 1998 943 +3 1296 1077 1637 +3 544 1077 1695 +3 1846 759 1904 +3 487 759 1847 +3 1296 698 1297 +3 487 698 1637 +3 2033 1999 965 +3 585 1999 946 +3 1314 1098 1656 +3 585 1098 1731 +3 1863 777 1915 +3 506 777 1864 +3 1314 715 1315 +3 506 715 1656 +3 2036 2000 1069 +3 593 2000 949 +3 1318 1102 1660 +3 593 1102 1739 +3 1867 781 1917 +3 510 781 1868 +3 1318 719 1319 +3 510 719 1660 +3 2039 2001 986 +3 601 2001 952 +3 1322 1106 1664 +3 601 1106 1747 +3 1871 785 1919 +3 514 785 1872 +3 1322 723 1323 +3 514 723 1664 +3 2027 2002 1048 +3 608 2002 955 +3 1326 1110 1668 +3 608 1110 1754 +3 1875 789 1921 +3 518 789 1876 +3 1326 727 1327 +3 518 727 1668 +3 2029 2003 1045 +3 577 2003 958 +3 1310 1094 1652 +3 577 1094 1723 +3 1860 773 1913 +3 502 773 1861 +3 1310 712 1311 +3 502 712 1652 +3 2044 2004 1066 +3 616 2004 961 +3 1331 1112 1670 +3 616 1112 1763 +3 1331 2291 2292 +3 2289 2291 1670 +3 2047 2005 1051 +3 624 2005 963 +3 1334 1114 1672 +3 624 1114 1771 +3 521 2320 1881 +3 1334 734 1335 +3 521 734 1672 +3 2033 2006 1011 +3 589 2006 965 +3 1316 1176 1730 +3 589 1176 1735 +3 1865 847 1951 +3 584 847 1866 +3 1316 717 1317 +3 584 717 1730 +3 2021 2007 992 +3 668 2007 968 +3 1355 1263 1810 +3 668 1263 1815 +3 1902 928 1992 +3 663 928 1903 +3 1355 756 1356 +3 663 756 1810 +3 2010 2008 977 +3 573 2008 971 +3 1308 1160 1715 +3 573 1160 1720 +3 1858 831 1943 +3 568 831 1859 +3 1308 710 1309 +3 568 710 1715 +3 2023 2009 995 +3 565 2009 974 +3 1304 1151 1707 +3 565 1151 1712 +3 1854 823 1939 +3 560 823 1855 +3 1304 706 1305 +3 560 706 1707 +3 2010 2011 940 +3 499 2011 977 +3 1273 1164 1719 +3 499 1164 1649 +3 1820 835 1945 +3 572 835 1821 +3 1273 673 1274 +3 572 673 1719 +3 2309 223 2346 +3 206 205 2350 +3 2347 2306 1330 +3 2012 2013 943 +3 488 2013 980 +3 2014 2015 2114 +3 488 2014 2222 +3 2016 2017 2321 +3 524 2017 983 +3 2259 2191 2260 +3 524 2259 2264 +3 2039 2018 1023 +3 604 2018 986 +3 1324 1194 1746 +3 604 1194 1750 +3 1873 863 1959 +3 600 863 1874 +3 1324 725 1325 +3 600 725 1746 +3 2019 2020 934 +3 492 2020 989 +3 1269 1147 1703 +3 492 1147 1642 +3 1816 819 1937 +3 556 819 1817 +3 1269 669 1270 +3 556 669 1703 +3 2021 2022 1014 +3 540 2022 992 +3 1294 1267 1814 +3 540 1267 1691 +3 1844 932 1994 +3 667 932 1845 +3 1294 696 1295 +3 667 696 1814 +3 2023 2024 937 +3 496 2024 995 +3 1271 1156 1711 +3 496 1156 1646 +3 1818 827 1941 +3 564 827 1819 +3 1271 671 1272 +3 564 671 1711 +3 2025 2026 1060 +3 536 2026 998 +3 1292 1259 1806 +3 536 1259 1687 +3 1842 924 1990 +3 659 924 1843 +3 1292 694 1293 +3 659 694 1806 +3 2027 2028 955 +3 519 2028 1001 +3 1283 1205 1756 +3 519 1205 1669 +3 1830 871 1963 +3 609 871 1831 +3 1283 683 1284 +3 609 683 1756 +3 2336 81 2334 +3 1884 895 1975 +3 631 895 1885 +3 2336 738 1338 +3 631 738 2334 +3 2029 2030 958 +3 503 2030 1005 +3 1275 1172 1726 +3 503 1172 1653 +3 1822 843 1949 +3 580 843 1823 +3 1275 675 1276 +3 580 675 1726 +3 2031 2032 1039 +3 528 2032 1008 +3 1288 1241 1790 +3 528 1241 1679 +3 1838 908 1982 +3 643 908 1839 +3 1288 690 1289 +3 643 690 1790 +3 2033 2034 946 +3 507 2034 1011 +3 1277 1180 1734 +3 507 1180 1657 +3 1824 851 1953 +3 588 851 1825 +3 1277 677 1278 +3 588 677 1734 +3 2021 2035 968 +3 664 2035 1014 +3 1353 1131 1690 +3 664 1131 1811 +3 1900 805 1929 +3 539 805 1901 +3 1353 754 1354 +3 539 754 1690 +3 2036 2037 949 +3 511 2037 1017 +3 1279 1190 1742 +3 511 1190 1661 +3 1826 859 1957 +3 596 859 1827 +3 1279 679 1280 +3 596 679 1742 +3 2019 2038 989 +3 557 2038 1020 +3 1300 1142 1699 +3 557 1142 1704 +3 1850 815 1935 +3 552 815 1851 +3 1300 702 1301 +3 552 702 1699 +3 2039 2040 952 +3 515 2040 1023 +3 1281 1197 1749 +3 515 1197 1665 +3 1828 865 1960 +3 603 865 1829 +3 1281 681 1282 +3 603 681 1749 +3 2016 2041 983 +3 636 2041 1026 +3 1339 1231 1780 +3 636 1231 1783 +3 1886 898 1977 +3 633 898 1887 +3 1339 740 1340 +3 633 740 1780 +3 2012 2042 980 +3 547 2042 1029 +3 1298 1135 1694 +3 547 1135 1696 +3 1848 809 1931 +3 543 809 1849 +3 1298 700 1299 +3 543 700 1694 +3 1832 875 1965 +3 2345 875 1833 +3 2327 245 244 +3 2328 239 2345 +3 2025 2043 998 +3 660 2043 1033 +3 1351 1255 1802 +3 660 1255 1807 +3 1898 920 1988 +3 655 920 1899 +3 1351 752 1352 +3 655 752 1802 +3 2044 2045 961 +3 520 2045 1036 +3 1285 1217 1766 +3 520 1217 1671 +3 1834 883 1969 +3 619 883 1835 +3 1285 686 1286 +3 619 686 1766 +3 2031 2046 1057 +3 640 2046 1039 +3 1341 1118 1678 +3 640 1118 1787 +3 1888 793 1923 +3 527 793 1889 +3 1341 742 1342 +3 527 742 1678 +3 2047 2048 963 +3 522 2048 1042 +3 1287 1226 1774 +3 522 1226 1673 +3 1836 891 1973 +3 627 891 1837 +3 1287 688 2300 +3 627 688 1774 +3 2029 2049 1005 +3 581 2049 1045 +3 1312 1167 1722 +3 581 1167 1727 +3 2337 839 1947 +3 576 839 1862 +3 1312 714 1313 +3 576 714 1722 +3 2016 2050 1026 +3 2303 2050 2321 +3 2027 2051 1001 +3 610 2051 1048 +3 1328 1202 1753 +3 610 1202 1757 +3 1877 869 1962 +3 607 869 1878 +3 1328 729 1329 +3 607 729 1753 +3 2047 2052 1042 +3 628 2052 1051 +3 1336 1221 1770 +3 628 1221 1775 +3 1882 887 1971 +3 623 887 1883 +3 1336 736 1337 +3 623 736 1770 +3 2059 2053 1063 +3 648 2053 1054 +3 1345 1123 1682 +3 648 1123 1795 +3 1892 797 1925 +3 531 797 1893 +3 1345 746 1346 +3 531 746 1682 +3 2031 2054 1008 +3 644 2054 1057 +3 1343 1237 1786 +3 644 1237 1791 +3 1890 904 1980 +3 639 904 1891 +3 1343 744 1344 +3 639 744 1786 +3 2025 2055 1033 +3 656 2055 1060 +3 1349 1127 1686 +3 656 1127 1803 +3 1896 801 1927 +3 535 801 1897 +3 1349 750 1350 +3 535 750 1686 +3 2059 2056 1072 +3 652 2056 1063 +3 1347 1246 1794 +3 652 1246 1799 +3 1894 912 1984 +3 647 912 1895 +3 1347 748 1348 +3 647 748 1794 +3 2044 2057 1036 +3 620 2057 1066 +3 1332 1213 1762 +3 620 1213 1767 +3 1879 879 1967 +3 615 879 1880 +3 1332 732 1333 +3 615 732 1762 +3 2036 2058 1017 +3 597 2058 1069 +3 1320 1185 1738 +3 597 1185 1743 +3 1869 855 1955 +3 592 855 1870 +3 1320 721 1321 +3 592 721 1738 +3 2059 2060 1054 +3 532 2060 1072 +3 1290 1251 1798 +3 532 1251 1683 +3 1840 916 1986 +3 651 916 1841 +3 1290 692 1291 +3 651 692 1798 +3 2061 2062 2064 +3 2152 2062 1075 +3 2152 2180 2146 +3 2012 943 1998 +3 398 943 2013 +3 1369 979 1576 +3 398 979 1551 +3 1369 2248 1370 +3 1576 2063 2249 +3 2061 2064 2066 +3 491 2064 2062 +3 1363 1074 2117 +3 491 1074 1641 +3 1363 2148 1364 +3 2148 2065 2277 +3 2061 2066 2067 +3 494 2066 2064 +3 1367 1079 1639 +3 494 1079 1644 +3 1852 761 1905 +3 489 761 1910 +3 1367 766 1368 +3 489 766 1639 +3 2019 934 1995 +3 392 934 2020 +3 1359 988 1580 +3 392 988 1544 +3 1852 705 1853 +3 430 705 1905 +3 1359 760 1360 +3 430 760 1580 +3 2061 2067 1075 +3 497 2067 2066 +3 1371 1081 1640 +3 497 1081 1647 +3 1856 763 1906 +3 490 763 1911 +3 1371 768 1372 +3 490 768 1640 +3 2023 937 1996 +3 394 937 2024 +3 1361 994 1584 +3 394 994 1547 +3 1856 709 1857 +3 434 709 1906 +3 1361 762 1362 +3 434 762 1584 +3 2061 1075 2062 +3 2238 1075 2067 +3 1357 1084 1643 +3 2238 1084 485 +3 1846 765 1909 +3 493 765 1904 +3 1357 758 1358 +3 493 758 1643 +3 2010 940 1997 +3 396 940 2011 +3 1365 976 1573 +3 396 976 1549 +3 1846 699 1847 +3 421 699 1909 +3 1365 764 1366 +3 421 764 1573 +3 2068 2069 2070 +3 505 2069 1092 +3 1379 1108 1666 +3 505 1108 1655 +3 1863 787 1920 +3 516 787 1915 +3 1379 776 1380 +3 516 776 1666 +3 2029 958 2003 +3 408 958 2030 +3 1389 1004 1591 +3 408 1004 1561 +3 1863 716 1864 +3 440 716 1920 +3 1389 786 1390 +3 440 786 1591 +3 2068 2070 2071 +3 509 2070 2069 +3 1383 1091 1650 +3 509 1091 1659 +3 1867 771 1912 +3 500 771 1917 +3 1383 780 1384 +3 500 780 1650 +3 2033 946 1999 +3 400 946 2034 +3 1373 1010 1595 +3 400 1010 1553 +3 1867 720 1868 +3 444 720 1912 +3 1373 770 1374 +3 444 770 1595 +3 2068 2071 2072 +3 513 2071 2070 +3 1387 1096 1654 +3 513 1096 1663 +3 1871 775 1914 +3 504 775 1919 +3 1387 784 1388 +3 504 784 1654 +3 2036 949 2000 +3 402 949 2037 +3 1377 1016 1599 +3 402 1016 1555 +3 1871 724 1872 +3 448 724 1914 +3 1377 774 1378 +3 448 774 1599 +3 2068 2072 1092 +3 517 2072 2071 +3 1391 1100 1658 +3 517 1100 1667 +3 1875 779 1916 +3 508 779 1921 +3 1391 788 1392 +3 508 788 1658 +3 2039 952 2001 +3 404 952 2040 +3 1381 1022 1603 +3 404 1022 1557 +3 1875 728 1876 +3 452 728 1916 +3 1381 778 1382 +3 452 778 1603 +3 2068 1092 2069 +3 501 1092 2072 +3 1375 1104 1662 +3 501 1104 1651 +3 1860 783 1918 +3 512 783 1913 +3 1375 772 1376 +3 512 772 1662 +3 2027 955 2002 +3 406 955 2028 +3 1385 1000 1588 +3 406 1000 1559 +3 1860 713 1861 +3 438 713 1918 +3 1385 782 1386 +3 438 782 1588 +3 19 18 2322 +3 2044 961 2004 +3 410 961 2045 +3 2325 1035 1611 +3 410 1035 2326 +3 2301 735 1881 +3 460 735 2322 +3 10 9 2325 +3 460 2304 1611 +3 2047 963 2005 +3 412 963 2048 +3 2318 1041 2316 +3 412 1041 1564 +3 2296 41 40 +3 2157 2307 2330 +3 2157 2143 2133 +3 2016 2321 2050 +3 2323 2321 2017 +3 2324 2298 1577 +3 157 156 2298 +3 2324 1506 2305 +3 2109 1577 2073 +3 2100 2074 1170 +3 583 2074 2101 +3 1452 1223 1772 +3 583 1223 1729 +3 1865 889 1972 +3 625 889 1951 +3 1452 846 1453 +3 625 846 1772 +3 2031 1039 2046 +3 463 1039 2032 +3 1496 1007 1593 +3 463 1007 1614 +3 1865 718 1866 +3 442 718 1972 +3 1496 888 1497 +3 442 888 1593 +3 2088 2075 1183 +3 662 2075 1121 +3 1537 1239 1788 +3 662 1239 1809 +3 1902 906 1981 +3 641 906 1992 +3 1537 927 1538 +3 641 927 1788 +3 2059 1054 2053 +3 472 1054 2060 +3 1515 1071 1634 +3 472 1071 1623 +3 1902 757 1903 +3 483 757 1981 +3 1515 905 1516 +3 483 905 1634 +3 2105 2076 1154 +3 567 2076 2106 +3 1436 1248 1796 +3 567 1248 1714 +3 1858 914 1985 +3 649 914 1943 +3 1436 830 1437 +3 649 830 1796 +3 2025 1060 2055 +3 476 1060 2026 +3 1523 997 1586 +3 476 997 1627 +3 1858 711 1859 +3 436 711 1985 +3 1523 913 1524 +3 436 913 1586 +3 2090 2077 1145 +3 559 2077 2091 +3 1428 1187 1740 +3 559 1187 1706 +3 1854 857 1956 +3 594 857 1939 +3 1428 822 1429 +3 594 822 1740 +3 2021 1014 2035 +3 447 1014 2022 +3 1462 991 1582 +3 447 991 1598 +3 1854 707 1855 +3 432 707 1956 +3 1462 856 1463 +3 432 856 1582 +3 2096 2078 2085 +3 571 2078 2095 +3 1440 1207 1758 +3 571 1207 1718 +3 1820 873 1964 +3 611 873 1945 +3 1440 834 1441 +3 611 834 1758 +3 2012 1029 2042 +3 457 1029 1998 +3 1480 942 1550 +3 457 942 1608 +3 1820 674 1821 +3 397 674 1964 +3 1480 872 1481 +3 397 872 1550 +3 2350 811 1933 +3 2311 811 2310 +3 2012 980 2013 +3 425 980 2042 +3 1416 1028 1607 +3 425 1028 2240 +3 2350 731 2349 +3 456 731 1933 +3 1416 810 1417 +3 456 810 1607 +3 1413 2329 2211 +3 193 192 2329 +3 1413 1415 1414 +3 2093 2079 1200 +3 635 2079 2080 +3 1509 1141 2251 +3 635 1141 1782 +3 1509 2124 1510 +3 2093 2080 2079 +3 2160 2080 2092 +3 2160 2081 2161 +3 2019 1020 2038 +3 451 1020 1995 +3 1470 933 1543 +3 451 933 1602 +3 1470 2214 1471 +3 2213 1543 2082 +3 2090 2083 1188 +3 599 2083 1145 +3 1468 1149 1705 +3 599 1149 1745 +3 1873 821 1938 +3 558 821 1959 +3 1468 862 1469 +3 558 862 1705 +3 2019 989 2020 +3 431 989 2038 +3 1426 1019 1601 +3 431 1019 1581 +3 1873 726 1874 +3 450 726 1938 +3 1426 820 1427 +3 450 820 1601 +3 2090 1145 2083 +3 555 1145 2077 +3 1424 1129 1688 +3 555 1129 1702 +3 1816 803 1928 +3 537 803 1937 +3 1424 818 1425 +3 537 818 1688 +3 2023 974 2009 +3 420 974 1996 +3 1405 936 1546 +3 420 936 1572 +3 1816 670 1817 +3 393 670 1928 +3 1405 802 1406 +3 393 802 1546 +3 2105 2084 1249 +3 666 2084 1154 +3 1541 1158 1713 +3 666 1158 1813 +3 1844 829 1942 +3 566 829 1994 +3 1541 931 1542 +3 566 931 1713 +3 2023 995 2024 +3 435 995 2009 +3 1434 973 1571 +3 435 973 1585 +3 1844 697 1845 +3 419 697 1942 +3 1434 828 1435 +3 419 828 1571 +3 2105 1154 2084 +3 563 1154 2076 +3 1432 1125 1684 +3 563 1125 1710 +3 1818 799 1926 +3 533 799 1941 +3 1432 826 1433 +3 533 826 1684 +3 2010 971 2008 +3 418 971 1997 +3 1401 939 1548 +3 418 939 1570 +3 1818 672 1819 +3 395 672 1926 +3 1401 798 1402 +3 395 798 1548 +3 2096 2085 1211 +3 658 2085 2078 +3 1533 1133 1692 +3 658 1133 1805 +3 1842 807 1930 +3 541 807 1990 +3 1533 923 1534 +3 541 923 1692 +3 2010 977 2011 +3 422 977 2008 +3 1409 970 1569 +3 422 970 1574 +3 1842 695 1843 +3 417 695 1930 +3 1409 806 1410 +3 417 806 1569 +3 2335 120 119 +3 1478 1230 1778 +3 2335 1230 1755 +3 1830 897 1976 +3 632 897 1963 +3 1478 870 1479 +3 632 870 1778 +3 2029 1045 2049 +3 466 1045 2003 +3 1504 957 1560 +3 466 957 1617 +3 1830 684 1831 +3 407 684 1976 +3 1504 896 1505 +3 407 896 1560 +3 2100 2086 1224 +3 630 2086 1170 +3 1502 1174 1728 +3 630 1174 1777 +3 1884 845 1950 +3 582 845 1975 +3 1502 894 1503 +3 582 894 1728 +3 2029 1005 2030 +3 441 1005 2049 +3 1450 1044 1616 +3 441 1044 1592 +3 1884 739 1885 +3 465 739 1950 +3 1450 844 1451 +3 465 844 1616 +3 2100 1170 2086 +3 579 1170 2074 +3 1448 1116 1676 +3 579 1116 1725 +3 1822 791 1922 +3 525 791 1949 +3 1448 842 1449 +3 525 842 1676 +3 2033 965 2006 +3 414 965 1999 +3 1393 945 1552 +3 414 945 1566 +3 1822 676 1823 +3 399 676 1922 +3 1393 790 1394 +3 399 790 1552 +3 2088 2087 1121 +3 642 2087 2089 +3 1517 1182 1736 +3 642 1182 1789 +3 1838 853 1954 +3 590 853 1982 +3 1517 907 1518 +3 590 907 1736 +3 2033 1011 2034 +3 445 1011 2006 +3 1458 964 1565 +3 445 964 1596 +3 1838 691 1839 +3 413 691 1954 +3 1458 852 1459 +3 413 852 1565 +3 2088 2089 2087 +3 587 2089 1183 +3 1456 1261 1808 +3 587 1261 1733 +3 1824 926 1991 +3 661 926 1953 +3 1456 850 1457 +3 661 850 1808 +3 2036 1069 2058 +3 482 1069 2000 +3 1535 948 1554 +3 482 948 1633 +3 1824 678 1825 +3 401 678 1991 +3 1535 925 1536 +3 401 925 1554 +3 2090 2091 2077 +3 538 2091 1188 +3 1407 1192 1744 +3 538 1192 1689 +3 1900 861 1958 +3 598 861 1929 +3 1407 804 1408 +3 598 804 1744 +3 2036 1017 2037 +3 449 1017 2058 +3 1466 1068 1632 +3 449 1068 1600 +3 1900 755 1901 +3 481 755 1958 +3 1466 860 1467 +3 481 860 1632 +3 2090 1188 2091 +3 595 1188 2083 +3 1464 1144 1701 +3 595 1144 1741 +3 1826 817 1936 +3 554 817 1957 +3 1464 858 1465 +3 554 858 1701 +3 2039 986 2018 +3 429 986 2001 +3 1422 951 1556 +3 429 951 1579 +3 1826 680 1827 +3 403 680 1936 +3 1422 816 1423 +3 403 816 1556 +3 2093 2092 2080 +3 2169 2092 2094 +3 1420 1199 1751 +3 2169 1199 550 +3 1850 867 1961 +3 605 867 1935 +3 1420 814 1421 +3 605 814 1751 +3 2039 1023 2040 +3 453 1023 2018 +3 1474 985 1578 +3 453 985 1604 +3 1850 703 1851 +3 428 703 1961 +3 1474 866 1475 +3 428 866 1578 +3 2093 2094 2092 +3 602 2094 1200 +3 1472 1232 1781 +3 602 1232 1748 +3 1828 900 1978 +3 634 900 1960 +3 1472 864 1473 +3 634 864 1781 +3 2027 1048 2051 +3 468 1048 2002 +3 1507 954 1558 +3 468 954 1619 +3 1828 682 1829 +3 405 682 1978 +3 1507 899 1508 +3 405 899 1558 +3 1886 837 1946 +3 574 837 1977 +3 574 2341 2342 +3 2027 1001 2028 +3 439 1001 2051 +3 1442 1047 1618 +3 439 1047 1589 +3 1886 741 1887 +3 467 741 1946 +3 1442 836 1443 +3 467 836 1618 +3 2096 2095 2078 +3 542 2095 2097 +3 1411 1210 1760 +3 542 1210 1693 +3 1848 877 1966 +3 613 877 1931 +3 1411 808 1412 +3 613 808 1760 +3 1484 2308 1575 +3 232 231 2308 +3 1848 701 1849 +3 423 701 1966 +3 1484 876 1485 +3 423 876 1575 +3 2096 2097 2095 +3 612 2097 1211 +3 1482 1257 1804 +3 612 1257 1759 +3 1832 922 1989 +3 657 922 1965 +3 1482 874 1483 +3 657 874 1804 +3 2044 1066 2057 +3 480 1066 2004 +3 1531 960 1562 +3 480 960 1631 +3 1832 685 1833 +3 409 685 1989 +3 1531 921 1532 +3 409 921 1562 +3 2103 2098 1244 +3 654 2098 2099 +3 1529 1219 1768 +3 654 1219 1801 +3 1898 885 1970 +3 621 885 1988 +3 1529 919 1530 +3 621 919 1768 +3 2044 1036 2045 +3 461 1036 2057 +3 1492 1065 1630 +3 461 1065 1612 +3 1898 753 1899 +3 479 753 1970 +3 1492 884 1493 +3 479 884 1630 +3 2103 2099 2098 +3 618 2099 2102 +3 1490 1235 1784 +3 618 1235 1765 +3 1834 902 1979 +3 637 902 1969 +3 1490 882 1491 +3 637 882 1784 +3 2047 1051 2052 +3 470 1051 2005 +3 1511 962 1563 +3 470 962 1621 +3 1834 687 1835 +3 411 687 1979 +3 1511 901 1512 +3 411 901 1563 +3 2100 2101 2074 +3 526 2101 1224 +3 1395 1228 1776 +3 526 1228 1677 +3 1888 893 1974 +3 629 893 1923 +3 1395 792 1396 +3 629 792 1776 +3 2047 1042 2048 +3 464 1042 2052 +3 1500 1050 1620 +3 464 1050 1615 +3 1888 743 1889 +3 469 743 1974 +3 1500 892 1501 +3 469 892 1620 +3 2100 1224 2101 +3 626 1224 2086 +3 1498 1169 1724 +3 626 1169 1773 +3 1836 841 1948 +3 578 841 1973 +3 1498 890 1499 +3 578 890 1724 +3 1446 2313 2290 +3 2312 2313 1590 +3 1836 689 1837 +3 2338 689 1948 +3 1446 840 1447 +3 2338 840 2290 +3 575 2332 2285 +3 1444 2295 2286 +3 575 2295 1721 +3 94 93 2337 +3 2294 2314 1947 +3 1444 838 1445 +3 2294 838 2286 +3 2337 2333 1862 +3 115 114 2332 +3 2307 186 2330 +3 2330 181 2331 +3 2331 178 2344 +3 2016 1026 2041 +3 455 1026 2050 +3 142 141 2340 +3 455 2340 1606 +3 138 137 2319 +3 2093 1200 2094 +3 606 1200 2079 +3 1476 1139 1697 +3 606 1139 1752 +3 1877 813 1934 +3 549 813 1962 +3 1476 868 1477 +3 549 868 1697 +3 2016 983 2017 +3 427 983 2041 +3 1418 1025 1605 +3 427 1025 2198 +3 1877 730 1878 +3 454 730 1934 +3 1418 812 1419 +3 454 812 1605 +3 2103 2102 2099 +3 622 2102 2104 +3 1494 1243 1792 +3 622 1243 1769 +3 1882 910 1983 +3 645 910 1971 +3 1494 886 1495 +3 645 886 1792 +3 2031 1057 2054 +3 474 1057 2046 +3 1519 1038 1613 +3 474 1038 1625 +3 1882 737 1883 +3 462 737 1983 +3 1519 909 1520 +3 462 909 1613 +3 2088 1121 2075 +3 530 1121 2087 +3 1399 1178 1732 +3 530 1178 1681 +3 1892 849 1952 +3 586 849 1925 +3 1399 796 1400 +3 586 796 1732 +3 2031 1008 2032 +3 443 1008 2054 +3 1454 1056 1624 +3 443 1056 1594 +3 1892 747 1893 +3 473 747 1952 +3 1454 848 1455 +3 473 848 1624 +3 2103 2104 2102 +3 638 2104 1244 +3 1513 1253 1800 +3 638 1253 1785 +3 1890 918 1987 +3 653 918 1980 +3 1513 903 1514 +3 653 903 1800 +3 2059 1063 2056 +3 478 1063 2053 +3 1527 1053 1622 +3 478 1053 1629 +3 1890 745 1891 +3 471 745 1987 +3 1527 917 1528 +3 471 917 1622 +3 2105 2106 2076 +3 534 2106 1249 +3 1403 1265 1812 +3 534 1265 1685 +3 1896 930 1993 +3 665 930 1927 +3 1403 800 1404 +3 665 800 1812 +3 2059 1072 2060 +3 484 1072 2056 +3 1539 1062 1628 +3 484 1062 1635 +3 1896 751 1897 +3 477 751 1993 +3 1539 929 1540 +3 477 929 1628 +3 2103 1244 2104 +3 646 1244 2098 +3 1521 1215 1764 +3 646 1215 1793 +3 1894 881 1968 +3 617 881 1984 +3 1521 911 1522 +3 617 911 1764 +3 2025 1033 2043 +3 459 1033 2055 +3 1488 1059 1626 +3 459 1059 1610 +3 1894 749 1895 +3 475 749 1968 +3 1488 880 1489 +3 475 880 1626 +3 2096 1211 2097 +3 614 1211 2085 +3 1486 1162 1717 +3 614 1162 1761 +3 1879 833 1944 +3 570 833 1967 +3 1486 878 1487 +3 570 878 1717 +3 2025 998 2026 +3 437 998 2043 +3 1438 1032 1609 +3 437 1032 1587 +3 1879 733 1880 +3 458 733 1944 +3 1438 832 1439 +3 458 832 1609 +3 2088 1183 2089 +3 591 1183 2075 +3 1460 1120 1680 +3 591 1120 1737 +3 1869 795 1924 +3 529 795 1955 +3 1460 854 1461 +3 529 854 1680 +3 2021 968 2007 +3 416 968 2035 +3 1397 1013 1597 +3 416 1013 1568 +3 1869 722 1870 +3 446 722 1924 +3 1397 794 1398 +3 446 794 1597 +3 2105 1249 2106 +3 650 1249 2084 +3 1525 1153 1709 +3 650 1153 1797 +3 1840 825 1940 +3 562 825 1986 +3 1525 915 1526 +3 562 915 1709 +3 2021 992 2022 +3 433 992 2007 +3 1430 967 1567 +3 433 967 1583 +3 1840 693 1841 +3 415 693 1940 +3 1430 824 1431 +3 415 824 1567 +3 2107 2108 545 +3 2108 2204 545 +3 2111 1506 2109 +3 1115 1506 2110 +3 2110 1506 2111 +3 2266 2177 2137 +3 2137 2112 1700 +3 2137 2113 2112 +3 2140 2222 2014 +3 2014 2114 2115 +3 2014 2115 1638 +3 2107 545 2116 +3 2065 2148 2117 +3 2117 2118 2119 +3 2117 2119 2065 +3 2122 981 2120 +3 2280 981 2121 +3 2121 981 2122 +3 2123 1140 2124 +3 2124 2125 2123 +3 984 2124 1140 +3 2126 2128 2127 +3 485 2128 1636 +3 485 2127 2128 +3 2129 2131 2130 +3 550 2130 2131 +3 550 2131 1698 +3 2157 2132 2158 +3 2157 2133 2132 +3 2134 2136 2135 +3 2136 2150 2135 +3 2137 2138 2113 +3 2137 2139 2138 +3 2140 2141 2222 +3 2141 2250 2222 +3 2133 2143 2142 +3 2142 2143 2144 +3 2152 2145 2154 +3 2152 2146 2145 +3 2147 1080 2148 +3 2148 2149 2147 +3 1908 2148 1080 +3 2150 2160 2135 +3 2160 2150 2081 +3 2117 2152 2151 +3 2283 2117 2151 +3 2151 2152 2153 +3 2153 2152 2154 +3 2226 2348 2155 +3 2155 2348 2156 +3 548 2211 2157 +3 2157 2158 2159 +3 2157 2159 548 +3 2251 2160 2162 +3 2163 2160 2161 +3 2268 2251 2162 +3 2162 2160 2163 +3 2180 2238 2284 +3 2284 2238 2164 +3 2164 2238 2165 +3 2169 2166 2171 +3 2169 550 2167 +3 2169 2167 2166 +3 2273 2143 2331 +3 2331 2168 1779 +3 2135 2169 2272 +3 2272 2169 2170 +3 2170 2169 2171 +3 2172 2173 1932 +3 2173 982 1932 +3 2331 2174 2168 +3 2331 2175 2174 +3 2331 2344 2175 +3 2176 2178 2177 +3 1543 2178 391 +3 1543 2177 2178 +3 2146 2180 2179 +3 2179 2180 2181 +3 2130 2182 2274 +3 2130 2202 2183 +3 2182 2130 2183 +3 2183 2202 2184 +3 2233 1544 2185 +3 2282 2233 2185 +3 2185 1544 2186 +3 2186 1544 2187 +3 2188 2189 2244 +3 2127 2244 2189 +3 2127 2189 1076 +3 2260 2191 2190 +3 2190 2191 2192 +3 2193 2195 1907 +3 2194 1545 1907 +3 2195 2194 1907 +3 2191 2198 2196 +3 2269 2191 2196 +3 2196 2198 2197 +3 2197 2198 2199 +3 2126 2127 2200 +3 2201 2203 2202 +3 2203 2184 2202 +3 2204 2014 545 +3 2014 2204 2015 +3 2205 2207 2206 +3 2207 2208 2206 +3 2208 2270 2206 +3 1415 2211 2209 +3 2218 1415 2209 +3 2209 2211 2210 +3 2210 2211 2212 +3 2213 2215 2214 +3 2215 2216 2214 +3 2216 1143 2214 +3 2219 2264 2259 +3 2259 2217 1675 +3 2230 1415 2218 +3 2219 2220 2264 +3 2220 2276 2264 +3 2221 2223 2222 +3 1576 2222 2223 +3 1576 2223 424 +3 2339 2224 2255 +3 2339 2348 2225 +3 2224 2339 2225 +3 2225 2348 2226 +3 2344 2227 2279 +3 2344 2228 2227 +3 2344 2339 2228 +3 2231 1415 2229 +3 2229 1415 2230 +3 2172 1932 2231 +3 2231 1932 1415 +3 2139 2233 2232 +3 2232 2233 2234 +3 2235 2236 1908 +3 2236 935 1908 +3 2238 2237 2165 +3 2238 2239 2237 +3 2238 485 2239 +3 546 545 2240 +3 2240 2241 2242 +3 2240 2242 546 +3 2243 2245 2244 +3 2245 2188 2244 +3 1078 2248 2246 +3 2246 2248 2247 +3 2247 2248 2249 +3 2250 2221 2222 +3 2124 2251 2253 +3 2254 2251 2252 +3 2261 2124 2253 +3 2253 2251 2254 +3 2255 1674 2339 +3 2256 2257 984 +3 2257 2262 984 +3 2258 2217 2259 +3 2259 2260 2258 +3 2125 2124 2261 +3 2206 2262 2205 +3 2263 2265 2264 +3 1577 2264 2265 +3 1577 2265 426 +3 2266 2267 2177 +3 2267 2278 2177 +3 2201 2202 2214 +3 2268 2252 2251 +3 2192 2191 2269 +3 2198 2270 2199 +3 2271 551 550 +3 1506 1577 2109 +3 2272 2134 2135 +3 2273 2144 2143 +3 2129 2130 2274 +3 486 485 2275 +3 2276 2263 2264 +3 2277 2149 2148 +3 2214 1543 2213 +3 2348 1506 2156 +3 2278 2176 2177 +3 935 1907 1908 +3 523 2344 2279 +3 2240 2280 2241 +3 1545 1544 1907 +3 2281 2212 2211 +3 982 981 1932 +3 2282 2234 2233 +3 2243 2244 2248 +3 2118 2117 2283 +3 2181 2180 2284 +3 2249 2248 1576 +3 2312 2334 77 +3 80 79 2334 +3 79 78 2334 +3 2303 147 146 +3 2303 148 147 +3 113 2285 114 +3 112 2285 113 +3 2289 2326 2 +3 5 4 2326 +3 3 2 2326 +3 4 3 2326 +3 2333 90 89 +3 2333 91 90 +3 2333 92 91 +3 63 62 2338 +3 64 63 2338 +3 2336 84 83 +3 2336 82 81 +3 2336 83 82 +3 241 2328 242 +3 239 2328 240 +3 240 2328 241 +3 2294 2286 103 +3 105 104 2286 +3 87 2287 88 +3 85 2287 86 +3 86 2287 87 +3 196 195 2288 +3 197 196 2288 +3 125 2342 126 +3 123 2342 124 +3 124 2342 125 +3 34 2318 35 +3 33 2318 34 +3 21 2301 22 +3 20 2301 21 +3 2323 153 152 +3 2323 154 153 +3 38 37 2316 +3 2296 40 2316 +3 39 38 2316 +3 40 39 2316 +3 76 2312 77 +3 75 2312 76 +3 2320 23 2301 +3 2301 23 22 +3 2320 24 23 +3 256 2289 257 +3 2289 256 2291 +3 256 255 2291 +3 2319 2340 141 +3 143 142 2340 +3 198 2311 199 +3 197 2311 198 +3 2337 2314 95 +3 95 94 2337 +3 2292 249 248 +3 2292 250 249 +3 2327 248 247 +3 2327 2292 248 +3 2293 61 60 +3 2293 59 58 +3 2293 60 59 +3 2331 179 178 +3 2331 180 179 +3 2290 67 66 +3 2290 65 64 +3 2290 66 65 +3 136 2315 137 +3 135 2315 136 +3 2291 254 253 +3 68 67 2290 +3 2313 68 2290 +3 2313 70 69 +3 2313 71 70 +3 251 250 2292 +3 252 251 2292 +3 2291 252 2292 +3 235 2302 236 +3 234 2302 235 +3 233 2302 234 +3 15 2322 16 +3 2322 15 2304 +3 15 14 2304 +3 8 2325 9 +3 7 2325 8 +3 2293 56 2299 +3 2293 58 57 +3 2299 56 55 +3 2293 57 56 +3 2323 2298 156 +3 2294 100 2314 +3 2314 100 99 +3 2294 101 100 +3 130 2341 131 +3 129 2341 130 +3 127 2341 128 +3 128 2341 129 +3 204 2310 205 +3 202 2310 203 +3 203 2310 204 +3 10 2304 11 +3 2304 10 2325 +3 2295 2285 111 +3 110 109 2295 +3 111 110 2295 +3 102 2294 103 +3 101 2294 102 +3 2297 2300 48 +3 50 49 2300 +3 49 48 2300 +3 98 2314 99 +3 2286 2295 106 +3 108 107 2295 +3 172 2339 173 +3 170 2339 171 +3 169 2339 170 +3 171 2339 172 +3 2344 175 174 +3 2344 176 175 +3 2344 177 176 +3 2296 44 43 +3 2297 46 45 +3 2297 44 2296 +3 2297 45 44 +3 2349 211 210 +3 2349 209 208 +3 2349 210 209 +3 162 161 2324 +3 163 162 2324 +3 158 157 2298 +3 159 158 2298 +3 52 2299 53 +3 2299 52 2300 +3 52 51 2300 +3 166 2305 167 +3 165 2305 166 +3 2303 2321 148 +3 150 149 2321 +3 19 2301 20 +3 2301 19 2322 +3 2317 30 29 +3 2317 31 30 +3 2317 27 2320 +3 2320 27 26 +3 2317 28 27 +3 2317 29 28 +3 2315 2319 137 +3 139 138 2319 +3 2308 228 227 +3 2308 229 228 +3 2309 227 226 +3 2309 2308 227 +3 2308 2302 232 +3 233 232 2302 +3 2303 145 144 +3 2303 146 145 +3 12 2304 13 +3 11 2304 12 +3 2305 164 163 +3 2305 165 164 +3 214 2306 215 +3 213 2306 214 +3 212 2306 213 +3 2307 187 186 +3 2307 188 187 +3 2330 182 181 +3 2330 183 182 +3 2330 184 183 +3 2330 185 184 +3 2302 2345 236 +3 238 237 2345 +3 2307 2329 189 +3 191 190 2329 +3 192 191 2329 +3 230 2308 231 +3 229 2308 230 +3 224 2309 225 +3 223 2309 224 +3 200 199 2311 +3 2310 200 2311 +3 73 2312 74 +3 2312 73 2313 +3 72 2313 73 +3 2314 96 95 +3 2314 97 96 +3 2314 98 97 +3 2332 116 115 +3 2332 117 116 +3 2332 118 117 +3 2332 119 118 +3 2335 121 120 +3 2335 122 121 +3 2315 134 133 +3 2315 135 134 +3 2318 2316 36 +3 37 36 2316 +3 2318 32 2317 +3 2317 32 31 +3 2318 33 32 +3 140 2319 141 +3 139 2319 140 +3 2320 25 24 +3 2320 26 25 +3 151 150 2321 +3 152 151 2321 +3 17 2322 18 +3 16 2322 17 +3 155 2323 156 +3 154 2323 155 +3 2324 160 159 +3 2324 161 160 +3 218 2347 219 +3 216 2347 217 +3 217 2347 218 +3 6 5 2326 +3 2325 6 2326 +3 243 242 2328 +3 2327 244 2328 +3 244 243 2328 +3 2329 2288 194 +3 194 193 2329 +3 186 185 2330 +3 221 220 2346 +3 223 222 2346 +3 222 221 2346 +3 181 180 2331 +3 2310 2350 205 +3 207 206 2350 +3 105 2286 106 +3 2285 2332 114 +3 2333 88 2287 +3 81 80 2334 +3 2289 0 1 +3 257 2289 1 +3 2335 119 2332 +3 2336 2287 85 +3 2333 2337 92 +3 2310 202 201 +3 2305 2348 167 +3 2338 61 2293 +3 188 2307 189 +3 133 132 2343 +3 46 2297 47 +3 2339 2344 174 +3 144 143 2340 +3 2285 112 111 +3 2342 2341 126 +3 2335 2342 122 +3 2341 2343 131 +3 2296 42 41 +3 2327 246 245 +3 246 2327 247 +3 178 177 2344 +3 239 238 2345 +3 2288 195 194 +3 2347 2346 219 +3 225 2309 226 +3 2306 2347 215 +3 2348 2339 169 +3 2312 75 74 +3 54 2299 55 +3 2299 54 53 +3 42 2296 43 +3 212 211 2349 +3 208 207 2350 + diff --git a/Data/data/meshes/polyhedral_complex_of_spheres/Sphere2.off b/Data/data/meshes/polyhedral_complex_of_spheres/Sphere2.off new file mode 100644 index 000000000000..55f360d2ff57 --- /dev/null +++ b/Data/data/meshes/polyhedral_complex_of_spheres/Sphere2.off @@ -0,0 +1,7185 @@ +OFF +2454 4727 0 + +0.17031256632806052 0.87149140923129198 0.45766135056488999 +0.1530482164355772 0.8581878051094145 0.48898817612201739 +0.17773204761375261 0.87689701064830428 0.44478929974988757 +0.17773204761375266 0.87689701064830428 0.44478929974988746 +0.18610643753537565 0.88125255845135109 0.43210633013751576 +0.20692923660476614 0.89148810692249181 0.40180685413975092 +0.21254447256850684 0.89390471712616404 0.39369586600014284 +0.21439421228553288 0.89457789356401529 0.39128013241131548 +0.22681489975349639 0.89805158744476077 0.37520377518580433 +0.2284369195008584 0.89844705357522048 0.37311241287933194 +0.25355721782048268 0.90387507728811034 0.34253810440658672 +0.25671454238163 0.90442701067601727 0.33903474443581866 +0.271410708194047 0.90595336478045674 0.32286639405373119 +0.2811508450273621 0.90641151615731863 0.31222404809805682 +0.30186484921791523 0.90688305806336122 0.29107512591583129 +0.30397342055421117 0.90687073458352585 0.28910030252843327 +0.33295004022963903 0.90494753379947435 0.26218372058148826 +0.33544566672286746 0.90463734990484679 0.25988381527545978 +0.35660859546245854 0.90157505838463314 0.24184951424973428 +0.35918321758479488 0.90105806124803856 0.23967742655656488 +0.38998187620182156 0.89436470058605533 0.21570896554595276 +0.39229183849441457 0.893825128737608 0.21405999957086966 +0.41582096722616779 0.88692657891222382 0.1974660445788706 +0.42721864490060912 0.88304523202927654 0.18950565604187919 +0.44486756488630003 0.87684117534766193 0.17811496227257201 +0.44878045857535931 0.87541500307784514 0.17583413883161553 +0.48126519958548886 0.86156266551879135 0.15717574894030889 +0.48342144068564125 0.86055952199012919 0.15594877494016779 +0.50017470245974227 0.85269038907862327 0.14688267020077073 +0.50275426427774228 0.85145286645038376 0.14564781357706019 +0.51101182387798261 0.84695178356442291 0.1418121948905855 +0.5423386494351099 0.82968743367193953 0.12850859076870802 +0.55521070025011254 0.82226795238624728 0.12310298935169575 +0.55521070025011254 0.82226795238624728 0.12310298935169572 +0.56789366986248413 0.81389356246462441 0.11874744154864894 +0.59819314586024919 0.79307076339523386 0.10851189307750808 +0.60630413399985716 0.78745552743149316 0.10609528287383588 +0.60871986758868468 0.78560578771446699 0.10542210643598451 +0.62479622481419628 0.77318510024650322 0.10194841255523895 +0.62688758712066828 0.77156308049914157 0.10155294642477933 +0.65746189559341328 0.74644278217951743 0.096124922711889452 +0.66096525556418162 0.74328545761836973 0.095572989323982643 +0.6771336059462687 0.72858929180595311 0.094046635219543206 +0.68777595190194307 0.71884915497263779 0.093588483842681286 +0.70892487408416871 0.69813515078208477 0.093116941936638747 +0.71089969747156689 0.69602657944578872 0.093129265416474039 +0.73781627941851213 0.66704995977036097 0.095052466200525487 +0.74011618472454033 0.66455433327713243 0.095362650095153101 +0.75815048575026589 0.64339140453754129 0.098424941615366732 +0.76032257344343512 0.64081678241520534 0.098941938751961195 +0.78429103445404746 0.6100181237981781 0.10563529941394456 +0.78594000042913037 0.60770816150558526 0.10617487126239183 +0.80253395542112949 0.58417903277383187 0.11307342108777621 +0.8104943439581207 0.5727813550993911 0.11695476797072311 +0.82188503772742805 0.55513243511369992 0.12315882465233803 +0.82416586116838464 0.5512195414246408 0.12458499692215486 +0.84282425105969128 0.51873480041451114 0.13843733448120865 +0.84405122505983243 0.51657855931435837 0.13944047800987086 +0.85311732979922938 0.49982529754025784 0.14730961092137676 +0.85435218642293986 0.49724573572225761 0.14854713354961632 +0.85818780510941439 0.48898817612201739 0.15304821643557714 +0.87149140923129176 0.45766135056489032 0.17031256632806041 +0.87689701064830428 0.44478929974988757 0.17773204761375266 +0.88125255845135109 0.43210633013751554 0.18610643753537598 +0.89148810692249181 0.40180685413975104 0.20692923660476614 +0.89390471712616404 0.39369586600014284 0.21254447256850695 +0.89457789356401518 0.39128013241131554 0.21439421228553296 +0.89805158744476088 0.37520377518580417 0.22681489975349667 +0.89844705357522048 0.37311241287933194 0.22843691950085848 +0.90387507728811034 0.34253810440658677 0.25355721782048279 +0.90442701067601738 0.33903474443581871 0.25671454238163005 +0.90595336478045685 0.32286639405373119 0.271410708194047 +0.90641151615731874 0.31222404809805687 0.28115084502736221 +0.90688305806336122 0.29107512591583123 0.30186484921791512 +0.90687073458352596 0.28910030252843322 0.30397342055421106 +0.90494753379947435 0.26218372058148803 0.33295004022963903 +0.90463734990484679 0.25988381527545973 0.33544566672286741 +0.90157505838463314 0.24184951424973419 0.35660859546245843 +0.90105806124803878 0.23967742655656488 0.35918321758479488 +0.89436470058605533 0.21570896554595267 0.38998187620182156 +0.893825128737608 0.21405999957086963 0.39229183849441451 +0.88692657891222382 0.1974660445788706 0.41582096722616779 +0.88304523202927676 0.18950565604187922 0.42721864490060907 +0.87684117534766193 0.17811496227257195 0.44486756488630008 +0.87541500307784514 0.17583413883161553 0.44878045857535925 +0.86156266551879135 0.15717574894030889 0.48126519958548886 +0.86055952199012919 0.15594877494016762 0.48342144068564141 +0.85269038907862327 0.14688267020077067 0.50017470245974227 +0.85145286645038376 0.14564781357706019 0.50275426427774228 +0.84695178356442291 0.1418121948905855 0.51101182387798261 +0.82968743367193953 0.12850859076870802 0.5423386494351099 +0.82226795238624728 0.12310298935169575 0.55521070025011254 +0.82226795238624728 0.12310298935169572 0.55521070025011254 +0.81389356246462441 0.11874744154864894 0.56789366986248413 +0.79307076339523386 0.10851189307750797 0.59819314586024919 +0.78745552743149327 0.10609528287383579 0.60630413399985716 +0.78560578771446699 0.10542210643598442 0.60871986758868479 +0.77318510024650355 0.10194841255523886 0.62479622481419606 +0.77156308049914157 0.10155294642477924 0.62688758712066828 +0.74644278217951743 0.096124922711889466 0.65746189559341328 +0.74328545761836984 0.095572989323982616 0.66096525556418162 +0.72858929180595311 0.094046635219543179 0.67713360594626881 +0.71884915497263779 0.093588483842681203 0.68777595190194329 +0.69813515078208477 0.093116941936638692 0.70892487408416871 +0.69602657944578872 0.09312926541647408 0.71089969747156689 +0.66704995977036097 0.095052466200525487 0.73781627941851213 +0.66455433327713243 0.095362650095153129 0.74011618472454044 +0.64339140453754151 0.098424941615366676 0.75815048575026589 +0.64081678241520534 0.098941938751961223 0.76032257344343512 +0.61001812379817832 0.1056352994139447 0.78429103445404746 +0.60770816150558549 0.10617487126239183 0.78594000042913037 +0.58417903277383187 0.11307342108777625 0.80253395542112949 +0.57278135509939099 0.11695476797072324 0.8104943439581207 +0.55513243511370003 0.123158824652338 0.82188503772742816 +0.5512195414246408 0.12458499692215487 0.82416586116838453 +0.51873480041451092 0.13843733448120876 0.84282425105969128 +0.51657855931435848 0.13944047800987086 0.84405122505983243 +0.49982529754025784 0.14730961092137676 0.85311732979922927 +0.49724573572225761 0.14854713354961635 0.85435218642293975 +0.4889881761220175 0.15304821643557709 0.85818780510941428 +0.4576613505648901 0.17031256632806047 0.87149140923129198 +0.44478929974988757 0.17773204761375261 0.87689701064830428 +0.44478929974988746 0.17773204761375266 0.87689701064830428 +0.43210633013751587 0.18610643753537565 0.88125255845135109 +0.40180685413975104 0.20692923660476614 0.89148810692249203 +0.39369586600014295 0.21254447256850689 0.89390471712616426 +0.39128013241131554 0.21439421228553296 0.89457789356401551 +0.37520377518580433 0.22681489975349645 0.89805158744476099 +0.37311241287933189 0.22843691950085854 0.8984470535752207 +0.34253810440658672 0.25355721782048268 0.90387507728811034 +0.3390347444358186 0.25671454238163 0.90442701067601727 +0.32286639405373108 0.271410708194047 0.90595336478045685 +0.31222404809805682 0.2811508450273621 0.90641151615731874 +0.29107512591583118 0.30186484921791523 0.90688305806336111 +0.28910030252843322 0.30397342055421106 0.90687073458352596 +0.26218372058148809 0.33295004022963903 0.90494753379947435 +0.25988381527545967 0.33544566672286746 0.9046373499048469 +0.24184951424973422 0.35660859546245849 0.90157505838463314 +0.23967742655656482 0.35918321758479488 0.90105806124803833 +0.21570896554595276 0.38998187620182151 0.89436470058605511 +0.21405999957086966 0.39229183849441451 0.893825128737608 +0.1974660445788706 0.41582096722616779 0.88692657891222382 +0.18950565604187924 0.42721864490060907 0.88304523202927665 +0.17811496227257201 0.44486756488630003 0.87684117534766193 +0.17583413883161547 0.44878045857535925 0.87541500307784514 +0.15717574894030886 0.48126519958548875 0.86156266551879135 +0.15594877494016779 0.48342144068564119 0.86055952199012919 +0.14688267020077073 0.50017470245974227 0.85269038907862316 +0.14564781357706014 0.50275426427774228 0.85145286645038376 +0.1418121948905855 0.51101182387798283 0.84695178356442269 +0.12850859076870802 0.5423386494351099 0.82968743367193953 +0.12310298935169575 0.55521070025011254 0.82226795238624728 +0.12310298935169572 0.55521070025011254 0.82226795238624728 +0.11874744154864894 0.56789366986248413 0.81389356246462441 +0.10851189307750805 0.59819314586024896 0.79307076339523386 +0.10609528287383586 0.60630413399985694 0.78745552743149316 +0.10542210643598447 0.60871986758868468 0.78560578771446687 +0.10194841255523887 0.62479622481419628 0.77318510024650311 +0.10155294642477927 0.62688758712066828 0.77156308049914146 +0.096124922711889493 0.65746189559341328 0.74644278217951743 +0.095572989323982643 0.66096525556418151 0.74328545761836984 +0.09404663521954322 0.6771336059462687 0.72858929180595311 +0.093588483842681203 0.68777595190194329 0.71884915497263779 +0.093116941936638636 0.70892487408416871 0.69813515078208488 +0.093129265416474122 0.71089969747156689 0.69602657944578861 +0.095052466200525557 0.7378162794185118 0.66704995977036108 +0.095362650095153129 0.74011618472454033 0.66455433327713254 +0.098424941615366676 0.758150485750266 0.64339140453754151 +0.098941938751961223 0.76032257344343512 0.64081678241520534 +0.10563529941394462 0.78429103445404746 0.61001812379817821 +0.10617487126239186 0.78594000042913037 0.60770816150558549 +0.11307342108777627 0.80253395542112949 0.58417903277383187 +0.11695476797072325 0.81049434395812059 0.57278135509939099 +0.12315882465233809 0.82188503772742794 0.55513243511370003 +0.12458499692215494 0.8241658611683842 0.55121954142464069 +0.13843733448120885 0.84282425105969117 0.5187348004145107 +0.13944047800987086 0.84405122505983243 0.51657855931435837 +0.1473096109213767 0.85311732979922927 0.49982529754025778 +0.14854713354961635 0.85435218642293975 0.49724573572225772 +1.4456465002315988 1.3412681489687435 1.8276081484197548 +1.2754246841105661 1.786914649200342 1.552183464309189 +0.72457531588943436 1.7869146492003418 1.5521834643091896 +0.55435349976840165 1.3412681489687435 1.8276081484197553 +1.0000000000000002 1.0658434648581778 1.9978299645407878 +1.0000000000000002 1.0658434648581778 0.0021700354592122384 +0.55435349976840154 1.3412681489687437 0.17239185158024495 +0.72457531588943436 1.7869146492003423 0.44781653569081092 +1.2754246841105661 1.7869146492003423 0.44781653569081104 +1.4456465002315988 1.3412681489687435 0.17239185158024506 +1.3412681489687435 0.17239185158024517 1.4456465002315988 +1.0658434648581778 0.0021700354592122384 1.0000000000000002 +1.3412681489687437 0.17239185158024495 0.55435349976840154 +1.7869146492003423 0.44781653569081104 0.72457531588943436 +1.7869146492003423 0.44781653569081104 1.2754246841105661 +1.8276081484197548 1.4456465002315988 1.3412681489687435 +0.0021700354592122384 1.0000000000000002 0.93415653514182284 +0.44781653569081104 0.72457531588943436 1.7869146492003423 +0.21308535079965829 1.5521834643091896 1.2754246841105661 +1.0000000000000002 0.93415653514182273 1.997829964540788 +1.5521834643091896 0.72457531588943436 1.7869146492003418 +1.552183464309189 1.2754246841105661 1.786914649200342 +1.786914649200342 1.552183464309189 1.2754246841105661 +1.3412681489687435 1.8276081484197548 1.4456465002315988 +0.93415653514182273 1.997829964540788 1 +0.65873185103125687 1.8276081484197551 1.4456465002315988 +0.17239185158024528 1.4456465002315988 1.3412681489687437 +0.44781653569081104 1.2754246841105661 1.7869146492003423 +0.55435349976840165 0.65873185103125698 1.8276081484197553 +1.5521834643091894 1.2754246841105661 0.21308535079965818 +1.4456465002315988 0.65873185103125698 0.17239185158024495 +1.0000000000000002 0.93415653514182284 0.0021700354592122384 +0.44781653569081092 1.2754246841105661 0.21308535079965796 +0.21308535079965796 1.5521834643091892 0.72457531588943436 +0.65873185103125698 1.8276081484197553 0.55435349976840165 +1.0658434648581778 1.9978299645407878 1.0000000000000002 +1.3412681489687435 1.8276081484197551 0.55435349976840154 +1.8276081484197551 1.4456465002315988 0.65873185103125687 +1.8276081484197553 0.55435349976840165 1.3412681489687435 +1.4456465002315988 0.65873185103125687 1.8276081484197551 +1.2754246841105661 0.21308535079965818 1.5521834643091894 +0.65873185103125698 0.17239185158024495 1.4456465002315988 +0.93415653514182284 0.0021700354592122384 1.0000000000000002 +1.2754246841105661 0.21308535079965796 0.44781653569081092 +1.5521834643091892 0.72457531588943436 0.21308535079965796 +1.8276081484197553 0.55435349976840165 0.65873185103125698 +1.9978299645407878 1.0000000000000002 1.0658434648581778 +1.997829964540788 1.0000000000000002 0.93415653514182273 +1.7869146492003418 1.5521834643091896 0.72457531588943436 +0.17239185158024495 0.55435349976840154 1.3412681489687437 +0.21308535079965796 0.44781653569081092 1.2754246841105661 +0.72457531588943436 0.21308535079965796 1.5521834643091892 +0.17239185158024495 1.4456465002315988 0.65873185103125698 +0.0021700354592122384 1.0000000000000002 1.0658434648581778 +1.3036963168239359 1.5229392818626755 1.7964314500523726 +1.2303366934291702 1.3308812944132862 1.9151298141069959 +1.0689962820007257 1.7532759752918454 1.6540755446568809 +1.2610542694501152 1.6345776112372217 1.7274351680516471 +0.73894573054988544 1.6345776112372219 1.7274351680516471 +0.93100371799927484 1.7532759752918454 1.6540755446568809 +0.76966330657083071 1.3308812944132864 1.9151298141069959 +0.69630368317606461 1.5229392818626757 1.7964314500523726 +1.1186983640546238 1.2618850124125609 1.9577718614808168 +0.88130163594537692 1.2618850124125609 1.9577718614808168 +0.88130163594537714 1.2618850124125609 0.042228138519183167 +1.1186983640546233 1.2618850124125609 0.042228138519183167 +0.6963036831760645 1.5229392818626757 0.20356854994762752 +0.7696633065708306 1.3308812944132864 0.084870185893004102 +0.93100371799927484 1.7532759752918454 0.34592445534311911 +0.73894573054988522 1.6345776112372219 0.27256483194835279 +1.2610542694501152 1.6345776112372221 0.27256483194835313 +1.0689962820007257 1.7532759752918454 0.34592445534311911 +1.2303366934291695 1.3308812944132864 0.084870185893004102 +1.3036963168239355 1.5229392818626759 0.20356854994762763 +1.3308812944132866 0.084870185893004213 1.2303366934291695 +1.5229392818626759 0.20356854994762763 1.3036963168239355 +1.2618850124125609 0.042228138519183167 0.88130163594537714 +1.2618850124125609 0.042228138519183167 1.1186983640546233 +1.5229392818626757 0.20356854994762752 0.69630368317606439 +1.3308812944132864 0.084870185893004102 0.7696633065708306 +1.7532759752918454 0.34592445534311911 0.93100371799927484 +1.6345776112372219 0.27256483194835279 0.73894573054988522 +1.6345776112372221 0.27256483194835313 1.2610542694501152 +1.7532759752918454 0.34592445534311911 1.0689962820007257 +1.7964314500523724 1.3036963168239359 1.5229392818626757 +1.9151298141069959 1.2303366934291702 1.3308812944132862 +0.042228138519183056 1.1186983640546238 0.73811498758743976 +0.042228138519183056 0.88130163594537692 0.73811498758743943 +0.34592445534311911 0.93100371799927484 1.7532759752918454 +0.27256483194835279 0.73894573054988522 1.6345776112372219 +0.36542238876277822 1.7274351680516471 1.2610542694501152 +0.24672402470815469 1.6540755446568811 1.0689962820007257 +0.88130163594537703 0.73811498758743976 1.9577718614808171 +1.1186983640546233 0.73811498758743943 1.9577718614808171 +1.7274351680516471 0.73894573054988544 1.6345776112372219 +1.6540755446568809 0.93100371799927484 1.7532759752918454 +1.6540755446568807 1.0689962820007257 1.7532759752918454 +1.7274351680516471 1.2610542694501152 1.6345776112372219 +1.7532759752918454 1.6540755446568809 1.0689962820007257 +1.6345776112372219 1.7274351680516471 1.2610542694501152 +1.5229392818626755 1.7964314500523726 1.3036963168239359 +1.3308812944132862 1.9151298141069959 1.2303366934291702 +0.73811498758743976 1.9577718614808171 0.88130163594537658 +0.73811498758743943 1.9577718614808171 1.1186983640546233 +0.66911870558671405 1.9151298141069959 1.2303366934291695 +0.47706071813732487 1.7964314500523728 1.3036963168239355 +0.084870185893004213 1.2303366934291695 1.3308812944132866 +0.20356854994762763 1.3036963168239355 1.5229392818626759 +0.27256483194835313 1.2610542694501152 1.6345776112372221 +0.34592445534311922 1.0689962820007257 1.7532759752918454 +0.6963036831760645 0.47706071813732487 1.796431450052373 +0.7696633065708306 0.66911870558671405 1.9151298141069959 +1.7274351680516471 1.2610542694501152 0.36542238876277822 +1.6540755446568811 1.0689962820007257 0.24672402470815469 +1.3036963168239362 0.47706071813732476 0.20356854994762752 +1.2303366934291702 0.66911870558671405 0.084870185893004102 +1.1186983640546238 0.73811498758743954 0.042228138519183167 +0.88130163594537692 0.73811498758743943 0.042228138519183056 +0.345924455343119 1.0689962820007257 0.24672402470815469 +0.27256483194835313 1.2610542694501152 0.36542238876277799 +0.24672402470815469 1.6540755446568811 0.93100371799927484 +0.36542238876277799 1.7274351680516471 0.73894573054988533 +0.47706071813732487 1.7964314500523728 0.6963036831760645 +0.66911870558671405 1.9151298141069959 0.76966330657083049 +1.2618850124125609 1.9577718614808168 1.1186983640546238 +1.2618850124125609 1.9577718614808168 0.88130163594537692 +1.3308812944132866 1.9151298141069959 0.76966330657083049 +1.5229392818626757 1.7964314500523726 0.69630368317606461 +1.9151298141069959 1.2303366934291695 0.66911870558671405 +1.796431450052373 1.3036963168239355 0.47706071813732487 +1.9151298141069959 0.76966330657083071 1.3308812944132864 +1.7964314500523726 0.69630368317606461 1.5229392818626757 +1.2303366934291695 0.66911870558671405 1.9151298141069959 +1.3036963168239355 0.47706071813732487 1.796431450052373 +1.2610542694501152 0.36542238876277833 1.7274351680516471 +1.0689962820007257 0.24672402470815469 1.6540755446568811 +0.47706071813732465 0.20356854994762741 1.3036963168239364 +0.66911870558671405 0.084870185893004102 1.2303366934291702 +0.73811498758743976 0.042228138519183056 1.1186983640546238 +0.73811498758743943 0.042228138519183056 0.88130163594537692 +1.0689962820007257 0.24672402470815469 0.345924455343119 +1.2610542694501152 0.36542238876277799 0.27256483194835313 +1.6540755446568811 0.93100371799927484 0.24672402470815469 +1.7274351680516471 0.73894573054988533 0.36542238876277799 +1.796431450052373 0.6963036831760645 0.47706071813732487 +1.9151298141069959 0.7696633065708306 0.66911870558671405 +1.9577718614808168 1.1186983640546238 1.2618850124125609 +1.9577718614808168 0.88130163594537692 1.2618850124125609 +1.9577718614808171 0.88130163594537703 0.73811498758743976 +1.9577718614808171 1.1186983640546233 0.73811498758743943 +1.6345776112372219 1.7274351680516471 0.73894573054988544 +1.7532759752918454 1.6540755446568809 0.93100371799927484 +0.20356854994762752 0.69630368317606439 1.5229392818626757 +0.084870185893004102 0.7696633065708306 1.3308812944132864 +0.24672402470815469 0.345924455343119 1.0689962820007257 +0.36542238876277799 0.27256483194835313 1.2610542694501152 +0.93100371799927484 0.24672402470815469 1.6540755446568811 +0.73894573054988544 0.36542238876277811 1.7274351680516471 +0.20356854994762752 1.3036963168239362 0.47706071813732454 +0.084870185893004102 1.2303366934291702 0.66911870558671405 +0.042228138519183167 0.88130163594537714 1.2618850124125609 +0.042228138519183167 1.1186983640546233 1.2618850124125609 +1.6370473838366881 1.335431727389222 1.6940145438011469 +1.5036911127293844 1.5283612117454601 1.683468867528217 +1.2724957718177854 1.8975603118185225 1.3465999725759743 +1.0699303480424984 1.8828787711788482 1.4643649661897227 +0.53136426493733957 1.7763391479810346 1.4215187719833617 +0.53952821920598959 1.6415108917233323 1.6135385194857188 +0.4378714155706992 1.1392917641443463 1.8152357076386352 +0.6454824405666123 1.1378197789939481 1.9248367469837333 +1.1212211638374883 0.86679599232656113 1.9836473564126624 +1.2413678794555163 1.0678894309514497 1.9680560789191066 +0.87877883616251229 0.86679599232656113 0.016352643587337568 +0.75863212054448437 1.0678894309514497 0.031943921080893056 +0.36295261616331198 1.335431727389222 0.30598545619885309 +0.49630888727061584 1.5283612117454606 0.31653113247178299 +0.72750422818221505 1.8975603118185227 0.65340002742402614 +0.93006965195750224 1.8828787711788482 0.53563503381027777 +1.4686357350626613 1.7763391479810342 0.5784812280166387 +1.4604717807940109 1.6415108917233325 0.38646148051428153 +1.5621285844293009 1.1392917641443463 0.18476429236136493 +1.354517559433388 1.1378197789939481 0.075163253016267029 +1.1392917641443463 0.18476429236136493 1.5621285844293009 +1.1378197789939481 0.075163253016267029 1.3545175594333883 +0.86679599232656124 0.016352643587337568 0.87877883616251229 +1.0678894309514497 0.031943921080893056 0.75863212054448437 +1.335431727389222 0.30598545619885309 0.36295261616331198 +1.5283612117454606 0.31653113247178311 0.49630888727061584 +1.8975603118185227 0.65340002742402614 0.72750422818221505 +1.8828787711788482 0.53563503381027777 0.93006965195750224 +1.7763391479810344 0.57848122801663893 1.4686357350626611 +1.6415108917233325 0.38646148051428153 1.4604717807940109 +1.6940145438011469 1.6370473838366881 1.335431727389222 +1.6834688675282168 1.5036911127293844 1.5283612117454606 +0.64548244056661241 0.86218022100605241 0.075163253016266696 +0.01635264358733779 1.1212211638374883 1.1332040076734395 +0.031943921080893167 1.2413678794555163 0.93211056904855083 +0.65340002742402614 0.72750422818221505 1.8975603118185227 +0.53563503381027777 0.93006965195750224 1.8828787711788482 +0.22366085201896613 1.421518771983362 1.4686357350626613 +0.35848910827666824 1.613538519485719 1.4604717807940111 +0.87877883616251218 1.1332040076734395 1.9836473564126624 +0.75863212054448437 0.93211056904855083 1.9680560789191071 +1.4215187719833617 0.53136426493733957 1.7763391479810346 +1.613538519485719 0.53952821920598937 1.6415108917233319 +1.3465999725759743 1.2724957718177854 1.8975603118185225 +1.4643649661897227 1.0699303480424984 1.8828787711788482 +1.8975603118185225 1.3465999725759743 1.2724957718177854 +1.8828787711788482 1.4643649661897227 1.0699303480424984 +1.335431727389222 1.6940145438011469 1.6370473838366881 +1.5283612117454601 1.683468867528217 1.5036911127293844 +1.1332040076734395 1.9836473564126622 0.87877883616251196 +0.93211056904855083 1.9680560789191068 0.75863212054448415 +0.86070823585565392 1.8152357076386347 1.5621285844293014 +0.86218022100605252 1.9248367469837331 1.3545175594333883 +0.18476429236136516 1.5621285844293014 1.1392917641443463 +0.075163253016267029 1.3545175594333883 1.1378197789939481 +0.57848122801663893 1.4686357350626611 1.7763391479810344 +0.38646148051428164 1.4604717807940109 1.6415108917233323 +0.36295261616331187 0.66456827261077822 1.6940145438011469 +0.49630888727061595 0.47163878825453998 1.6834688675282172 +1.421518771983362 1.4686357350626613 0.22366085201896613 +1.613538519485719 1.4604717807940111 0.35848910827666824 +1.6370473838366881 0.66456827261077822 0.30598545619885309 +1.5036911127293848 0.47163878825453998 0.31653113247178311 +1.1212211638374883 1.1332040076734395 0.01635264358733779 +1.2413678794555163 0.93211056904855083 0.031943921080893167 +0.65340002742402614 1.2724957718177854 0.10243968818147742 +0.53563503381027766 1.0699303480424984 0.11712122882115172 +0.10243968818147742 1.3465999725759745 0.72750422818221494 +0.11712122882115195 1.4643649661897229 0.93006965195750224 +0.66456827261077822 1.6940145438011469 0.36295261616331187 +0.47163878825453998 1.6834688675282172 0.49630888727061595 +0.86679599232656124 1.9836473564126624 1.1212211638374883 +1.0678894309514497 1.9680560789191066 1.2413678794555163 +1.1392917641443463 1.8152357076386352 0.4378714155706992 +1.1378197789939481 1.9248367469837331 0.64548244056661219 +1.8152357076386347 1.5621285844293014 0.86070823585565392 +1.9248367469837331 1.3545175594333883 0.86218022100605252 +1.8152357076386352 0.4378714155706992 1.1392917641443463 +1.9248367469837333 0.6454824405666123 1.1378197789939481 +1.5621285844293014 0.86070823585565392 1.8152357076386347 +1.3545175594333883 0.86218022100605252 1.9248367469837331 +1.4686357350626613 0.22366085201896613 1.421518771983362 +1.4604717807940111 0.35848910827666824 1.613538519485719 +0.66456827261077822 0.30598545619885309 1.6370473838366881 +0.47163878825453986 0.31653113247178322 1.5036911127293848 +1.1332040076734395 0.01635264358733779 1.1212211638374883 +0.93211056904855083 0.031943921080893167 1.2413678794555163 +1.2724957718177854 0.10243968818147742 0.65340002742402614 +1.0699303480424984 0.11712122882115172 0.53563503381027766 +1.3465999725759745 0.72750422818221494 0.10243968818147742 +1.4643649661897227 0.93006965195750224 0.11712122882115183 +1.6940145438011469 0.36295261616331198 0.66456827261077822 +1.6834688675282172 0.49630888727061595 0.47163878825453998 +1.9836473564126624 1.1212211638374883 0.86679599232656124 +1.9680560789191066 1.2413678794555163 1.0678894309514497 +1.9836473564126624 0.87877883616251229 1.1332040076734395 +1.9680560789191071 0.75863212054448437 0.93211056904855083 +1.7763391479810346 1.4215187719833617 0.53136426493733957 +1.6415108917233319 1.613538519485719 0.53952821920598937 +0.86218022100605241 0.075163253016266696 0.64548244056661241 +0.075163253016266696 0.6454824405666123 0.86218022100605241 +0.30598545619885309 0.36295261616331198 1.335431727389222 +0.31653113247178311 0.49630888727061584 1.5283612117454606 +0.10243968818147742 0.65340002742402614 1.2724957718177854 +0.11712122882115172 0.53563503381027766 1.0699303480424984 +0.72750422818221494 0.10243968818147742 1.3465999725759745 +0.93006965195750224 0.11712122882115183 1.4643649661897227 +0.30598545619885309 1.6370473838366881 0.66456827261077822 +0.31653113247178322 1.5036911127293848 0.47163878825453964 +0.016352643587337568 0.87877883616251229 0.86679599232656124 +0.031943921080893056 0.75863212054448437 1.0678894309514497 +1.1318385030170197 1.6666951227028342 1.7335776867425046 +1.099757165525981 1.4952588380279241 1.8629989520743653 +1.1212211638374885 1.1332040076734393 1.9836473564126622 +1.3545175594333883 1.1378197789939481 1.9248367469837331 +0.86816149698298051 1.6666951227028339 1.7335776867425046 +1.0616533189164057 1.5950160035539049 1.8013456331579596 +1.4215187719833615 1.4686357350626609 1.7763391479810346 +1.4604717807940113 1.6415108917233316 1.6135385194857188 +0.78668082109255699 1.453375943795391 1.8654161897595243 +0.93834668108359465 1.5950160035539049 1.8013456331579598 +1.1392917641443467 1.815235707638635 1.5621285844293009 +0.93006965195750202 1.8828787711788482 1.4643649661897225 +1 1.3215374407783715 1.9468968656499477 +0.9002428344740192 1.4952588380279237 1.8629989520743653 +0.66456827261077844 1.6940145438011469 1.6370473838366881 +0.49630888727061606 1.5283612117454606 1.6834688675282172 +1.2133191789074431 1.4533759437953908 1.8654161897595243 +1.0000000000000002 1.4336055191115187 1.9011027986839406 +0.65340002742402636 1.2724957718177858 1.8975603118185225 +0.75863212054448415 1.0678894309514502 1.9680560789191068 +0.78668082109255688 1.453375943795391 0.13458381024047572 +1 1.4336055191115187 0.09889720131605928 +1.3465999725759743 1.2724957718177858 0.10243968818147775 +1.2413678794555163 1.0678894309514502 0.031943921080893389 +0.86816149698298051 1.6666951227028342 0.26642231325749555 +0.9002428344740192 1.4952588380279244 0.13700104792563483 +0.87877883616251229 1.1332040076734393 0.016352643587337568 +0.64548244056661241 1.1378197789939481 0.075163253016266696 +1.1318385030170197 1.6666951227028342 0.26642231325749555 +0.93834668108359476 1.5950160035539049 0.19865436684204019 +0.57848122801663848 1.4686357350626613 0.22366085201896579 +0.53952821920598926 1.6415108917233321 0.3864614805142812 +1.2133191789074438 1.453375943795391 0.13458381024047594 +1.0616533189164057 1.5950160035539047 0.19865436684204019 +0.86070823585565392 1.8152357076386352 0.4378714155706992 +1.0699303480424984 1.8828787711788482 0.53563503381027788 +1.0000000000000002 1.3215374407783713 0.053103134350052095 +1.0997571655259812 1.4952588380279237 0.13700104792563461 +1.335431727389222 1.6940145438011469 0.3629526161633122 +1.5036911127293848 1.5283612117454606 0.31653113247178333 +1.3215374407783713 0.053103134350052095 1.0000000000000002 +1.4952588380279237 0.13700104792563472 1.0997571655259812 +1.6940145438011469 0.3629526161633122 1.335431727389222 +1.5283612117454606 0.31653113247178333 1.5036911127293848 +1.453375943795391 0.13458381024047572 0.78668082109255688 +1.4336055191115187 0.09889720131605928 1 +1.2724957718177858 0.10243968818147775 1.3465999725759745 +1.0678894309514502 0.031943921080893389 1.2413678794555163 +1.6666951227028344 0.26642231325749555 0.86816149698298051 +1.4952588380279244 0.13700104792563483 0.9002428344740192 +1.1332040076734393 0.016352643587337568 0.87877883616251229 +1.1378197789939481 0.075163253016266696 0.64548244056661241 +1.6666951227028342 0.26642231325749555 1.1318385030170197 +1.5950160035539049 0.19865436684204019 0.93834668108359476 +1.4686357350626613 0.22366085201896579 0.57848122801663837 +1.6415108917233321 0.3864614805142812 0.53952821920598926 +1.4533759437953913 0.13458381024047605 1.2133191789074438 +1.5950160035539052 0.19865436684204041 1.0616533189164057 +1.8152357076386352 0.4378714155706992 0.86070823585565392 +1.8828787711788482 0.53563503381027788 1.0699303480424984 +1.7335776867425046 1.1318385030170197 1.6666951227028342 +1.8629989520743653 1.099757165525981 1.4952588380279241 +1.9836473564126622 1.1212211638374885 1.1332040076734393 +1.9248367469837331 1.3545175594333883 1.1378197789939481 +1 0.67846255922162868 0.053103134350052095 +0.13458381024047572 1.2133191789074433 0.54662405620460941 +0.098897201316059169 1.0000000000000002 0.56639448088848177 +0.031943921080893167 0.75863212054448415 0.9321105690485505 +0.26642231325749555 1.1318385030170197 1.6666951227028342 +0.19865436684204019 0.93834668108359476 1.5950160035539049 +0.22366085201896579 0.57848122801663837 1.4686357350626613 +0.3864614805142812 0.53952821920598926 1.6415108917233321 +0.54662405620460952 1.8654161897595243 1.2133191789074438 +0.40498399644609528 1.8013456331579598 1.0616533189164057 +0.18476429236136493 1.5621285844293009 0.86070823585565404 +0.11712122882115183 1.4643649661897227 1.0699303480424984 +0.78668082109255699 0.54662405620460941 1.8654161897595245 +1 0.56639448088848177 1.9011027986839408 +1.3465999725759743 0.72750422818221505 1.8975603118185225 +1.2413678794555165 0.9321105690485505 1.9680560789191066 +1.8654161897595243 0.78668082109255699 1.453375943795391 +1.8013456331579594 0.93834668108359476 1.5950160035539054 +1.5621285844293009 1.1392917641443467 1.815235707638635 +1.4643649661897225 0.93006965195750202 1.8828787711788482 +1.7335776867425046 0.86816149698298051 1.6666951227028339 +1.8013456331579596 1.0616533189164057 1.5950160035539049 +1.7763391479810346 1.4215187719833615 1.4686357350626609 +1.6135385194857188 1.4604717807940106 1.6415108917233323 +1.6666951227028339 1.7335776867425046 0.86816149698298051 +1.5950160035539049 1.8013456331579596 1.0616533189164057 +1.4686357350626609 1.7763391479810346 1.4215187719833615 +1.6415108917233321 1.6135385194857186 1.4604717807940111 +1.6666951227028342 1.7335776867425046 1.1318385030170197 +1.4952588380279241 1.8629989520743653 1.099757165525981 +1.1332040076734391 1.9836473564126622 1.1212211638374885 +1.1378197789939481 1.9248367469837331 1.3545175594333883 +0.54662405620460952 1.8654161897595243 0.78668082109255688 +0.56639448088848177 1.9011027986839408 1 +0.72750422818221505 1.8975603118185225 1.3465999725759743 +0.9321105690485505 1.9680560789191066 1.2413678794555165 +0.67846255922162868 1.9468968656499477 1.0000000000000002 +0.5047411619720763 1.8629989520743653 1.0997571655259812 +0.30598545619885331 1.6370473838366881 1.335431727389222 +0.47163878825454009 1.6834688675282172 1.5036911127293844 +0.053103134350052095 1.0000000000000002 1.3215374407783713 +0.13700104792563472 1.0997571655259812 1.4952588380279237 +0.3629526161633122 1.335431727389222 1.6940145438011469 +0.31653113247178344 1.5036911127293846 1.5283612117454608 +0.13458381024047605 1.2133191789074438 1.4533759437953913 +0.19865436684204008 1.0616533189164057 1.5950160035539049 +0.43787141557069909 0.86070823585565392 1.8152357076386352 +0.53563503381027788 1.0699303480424984 1.8828787711788482 +0.86816149698298051 0.33330487729716585 1.7335776867425046 +0.9002428344740192 0.50474116197207619 1.8629989520743653 +0.87877883616251218 0.86679599232656135 1.9836473564126624 +0.64548244056661219 0.86218022100605274 1.9248367469837333 +1.8654161897595243 1.2133191789074438 0.54662405620460952 +1.8013456331579596 1.0616533189164057 0.40498399644609495 +1.5621285844293009 0.86070823585565404 0.18476429236136482 +1.4643649661897227 1.0699303480424984 0.11712122882115183 +1.1318385030170197 0.33330487729716562 0.26642231325749555 +1.0997571655259812 0.50474116197207608 0.13700104792563472 +1.1212211638374885 0.86679599232656113 0.016352643587337568 +1.3545175594333883 0.86218022100605274 0.075163253016266807 +1.2133191789074433 0.54662405620460941 0.13458381024047572 +1.0000000000000002 0.56639448088848177 0.098897201316059169 +0.75863212054448437 0.9321105690485505 0.031943921080893056 +0.43787141557069942 1.1392917641443465 0.18476429236136482 +0.53563503381027777 0.93006965195750191 0.11712122882115172 +0.19865436684204019 1.0616533189164057 0.40498399644609517 +0.22366085201896579 1.4215187719833617 0.53136426493733901 +0.3864614805142812 1.4604717807940109 0.35848910827666791 +0.33330487729716596 1.7335776867425046 1.1318385030170197 +0.40498399644609495 1.8013456331579598 0.93834668108359465 +0.53136426493733957 1.7763391479810346 0.5784812280166387 +0.35848910827666813 1.613538519485719 0.53952821920598937 +0.33330487729716574 1.7335776867425046 0.86816149698298051 +0.50474116197207619 1.8629989520743653 0.9002428344740192 +0.86679599232656135 1.9836473564126624 0.87877883616251218 +0.86218022100605274 1.9248367469837333 0.64548244056661219 +1.4533759437953908 1.8654161897595243 1.2133191789074431 +1.4336055191115187 1.9011027986839406 1.0000000000000002 +1.2724957718177858 1.8975603118185225 0.65340002742402592 +1.0678894309514502 1.9680560789191066 0.75863212054448392 +1.3215374407783715 1.9468968656499477 1 +1.4952588380279237 1.8629989520743653 0.9002428344740192 +1.6940145438011469 1.6370473838366881 0.66456827261077844 +1.5283612117454606 1.6834688675282172 0.49630888727061606 +1.9468968656499477 1.0000000000000002 0.67846255922162868 +1.8629989520743653 1.0997571655259812 0.5047411619720763 +1.6370473838366881 1.335431727389222 0.30598545619885331 +1.6834688675282172 1.5036911127293844 0.47163878825454009 +1.9468968656499477 1 1.3215374407783715 +1.8629989520743653 0.9002428344740192 1.4952588380279237 +1.6370473838366881 0.66456827261077844 1.6940145438011469 +1.6834688675282172 0.49630888727061606 1.5283612117454606 +1.0000000000000002 0.67846255922162868 1.9468968656499477 +1.0997571655259812 0.50474116197207619 1.8629989520743653 +1.335431727389222 0.30598545619885331 1.6370473838366881 +1.5036911127293844 0.47163878825454009 1.6834688675282172 +1.2133191789074438 0.54662405620460952 1.8654161897595243 +1.0616533189164057 0.40498399644609495 1.8013456331579596 +0.86070823585565404 0.18476429236136493 1.5621285844293009 +1.0699303480424984 0.11712122882115183 1.4643649661897227 +0.33330487729716562 0.26642231325749555 1.1318385030170197 +0.50474116197207608 0.13700104792563472 1.0997571655259812 +0.86679599232656146 0.016352643587337568 1.1212211638374885 +0.86218022100605274 0.075163253016266807 1.3545175594333883 +0.5466240562046093 0.13458381024047572 1.2133191789074433 +0.56639448088848177 0.098897201316059169 1.0000000000000002 +0.9321105690485505 0.031943921080893056 0.75863212054448437 +1.1392917641443465 0.18476429236136482 0.43787141557069942 +0.93006965195750191 0.11712122882115172 0.53563503381027777 +1.0616533189164057 0.40498399644609517 0.19865436684204019 +1.421518771983362 0.53136426493733913 0.22366085201896568 +1.4604717807940109 0.35848910827666791 0.38646148051428109 +1.7335776867425046 1.1318385030170197 0.33330487729716596 +1.8013456331579598 0.93834668108359465 0.40498399644609495 +1.7763391479810346 0.5784812280166387 0.53136426493733957 +1.613538519485719 0.53952821920598926 0.35848910827666802 +1.7335776867425046 0.86816149698298051 0.33330487729716574 +1.8629989520743653 0.9002428344740192 0.50474116197207619 +1.9836473564126624 0.87877883616251218 0.86679599232656135 +1.9248367469837333 0.64548244056661219 0.86218022100605274 +1.8654161897595243 1.2133191789074431 1.4533759437953908 +1.9011027986839406 1.0000000000000002 1.4336055191115187 +1.8975603118185225 0.65340002742402636 1.2724957718177858 +1.9680560789191066 0.75863212054448415 1.0678894309514502 +1.8654161897595245 0.78668082109255699 0.54662405620460941 +1.9011027986839408 1 0.56639448088848177 +1.8975603118185225 1.3465999725759743 0.72750422818221505 +1.9680560789191066 1.2413678794555165 0.9321105690485505 +1.453375943795391 1.8654161897595241 0.78668082109255688 +1.5950160035539054 1.8013456331579594 0.93834668108359476 +1.815235707638635 1.5621285844293009 1.1392917641443467 +1.8828787711788482 1.4643649661897225 0.93006965195750202 +0.67846255922162868 0.053103134350052095 1 +0.053103134350052095 1 0.67846255922162868 +0.18476429236136482 0.43787141557069942 1.1392917641443465 +0.11712122882115172 0.53563503381027777 0.93006965195750191 +0.26642231325749555 0.86816149698298051 1.6666951227028344 +0.13700104792563483 0.9002428344740192 1.4952588380279244 +0.016352643587337568 0.87877883616251229 1.1332040076734393 +0.075163253016266807 0.64548244056661219 1.1378197789939481 +0.40498399644609517 0.19865436684204019 1.0616533189164057 +0.53136426493733913 0.22366085201896568 1.421518771983362 +0.35848910827666802 0.3864614805142812 1.4604717807940109 +1.1318385030170197 0.33330487729716596 1.7335776867425046 +0.93834668108359465 0.40498399644609495 1.8013456331579598 +0.5784812280166387 0.53136426493733957 1.7763391479810346 +0.53952821920598926 0.35848910827666802 1.613538519485719 +0.26642231325749555 1.1318385030170197 0.33330487729716562 +0.13700104792563472 1.0997571655259812 0.50474116197207608 +0.016352643587337568 1.1212211638374885 0.86679599232656146 +0.075163253016266807 1.3545175594333883 0.86218022100605274 +0.13458381024047572 0.78668082109255688 1.453375943795391 +0.09889720131605928 1 1.4336055191115187 +0.10243968818147775 1.3465999725759745 1.2724957718177858 +0.031943921080893389 1.2413678794555165 1.0678894309514502 +1.5257938275259753 1.2082874004879671 1.8247164420172246 +1.6144698341819117 1.2728788208449453 1.7402458861856145 +1.4063294025426432 1.7843712383737107 1.4686770498343504 +1.3392409609172167 1.8623045076538935 1.3759607778954341 +0.72533155387381609 1.8657421844304007 1.4183870394745819 +0.59519261004110291 1.8217822259851766 1.4010049252683978 +0.4239161621142562 1.3399483569044259 1.7433454959605346 +0.41057431319105175 1.2073123918032649 1.7807681678543315 +0.91862905394330996 0.93361895436178299 1.9944708773603259 +1.0405222816687172 0.86807143088604788 1.9904306120773461 +1.0813709460566903 0.9336189543617831 0.0055291226396741999 +0.95947771833128337 0.86807143088604799 0.009569387922653938 +0.47420617247402497 1.2082874004879671 0.17528355798277517 +0.38553016581808797 1.2728788208449453 0.25975411381438551 +0.5936705974573574 1.7843712383737111 0.53132295016564957 +0.66075903908278344 1.8623045076538935 0.6240392221045663 +1.2746684461261846 1.8657421844304007 0.58161296052541855 +1.4048073899588978 1.8217822259851766 0.59899507473160241 +1.576083837885744 1.3399483569044259 0.25665450403946566 +1.5894256868089485 1.2073123918032649 0.21923183214566877 +1.3399483569044259 0.25665450403946566 1.576083837885744 +1.2073123918032649 0.21923183214566899 1.5894256868089485 +0.9336189543617831 0.0055291226396743109 1.0813709460566903 +0.86807143088604799 0.009569387922653938 0.95947771833128337 +1.2082874004879671 0.17528355798277517 0.47420617247402497 +1.2728788208449453 0.25975411381438551 0.38553016581808797 +1.7843712383737111 0.53132295016564979 0.5936705974573574 +1.8623045076538935 0.6240392221045663 0.66075903908278344 +1.8657421844304007 0.58161296052541855 1.2746684461261846 +1.8217822259851766 0.59899507473160263 1.4048073899588975 +1.8247164420172246 1.5257938275259753 1.2082874004879671 +1.7402458861856145 1.6144698341819117 1.2728788208449453 +0.0055291226396741999 0.91862905394330996 1.0663810456382175 +0.009569387922654049 1.0405222816687172 1.1319285691139529 +0.53132295016564979 0.5936705974573574 1.7843712383737111 +0.6240392221045663 0.66075903908278344 1.8623045076538935 +0.13425781556959937 1.4183870394745819 1.2746684461261846 +0.17821777401482364 1.401004925268398 1.4048073899588978 +1.0813709460566905 1.0663810456382177 1.9944708773603259 +0.95947771833128326 1.1319285691139529 1.9904306120773461 +1.4183870394745819 0.72533155387381609 1.8657421844304007 +1.4010049252683978 0.59519261004110291 1.8217822259851766 +1.4686770498343504 1.4063294025426432 1.7843712383737107 +1.3759607778954341 1.3392409609172167 1.8623045076538935 +1.7843712383737107 1.4686770498343504 1.4063294025426432 +1.8623045076538935 1.3759607778954341 1.3392409609172167 +1.2082874004879671 1.8247164420172246 1.5257938275259753 +1.2728788208449453 1.7402458861856145 1.6144698341819117 +1.0663810456382175 1.9944708773603257 1.0813709460566903 +1.1319285691139529 1.9904306120773461 0.95947771833128304 +0.66005164309557451 1.7433454959605346 1.576083837885744 +0.79268760819673556 1.7807681678543315 1.5894256868089485 +0.25665450403946555 1.576083837885744 1.3399483569044259 +0.21923183214566888 1.5894256868089487 1.2073123918032649 +0.58161296052541855 1.2746684461261846 1.8657421844304007 +0.59899507473160263 1.4048073899588975 1.8217822259851766 +0.47420617247402475 0.79171259951203332 1.8247164420172246 +0.38553016581808797 0.72712117915505492 1.7402458861856145 +1.4183870394745819 1.2746684461261846 0.13425781556959937 +1.401004925268398 1.4048073899588978 0.17821777401482353 +1.5257938275259753 0.79171259951203343 0.17528355798277517 +1.6144698341819119 0.72712117915505481 0.25975411381438529 +0.91862905394330996 1.0663810456382175 0.0055291226396743109 +1.0405222816687172 1.1319285691139529 0.009569387922654049 +0.53132295016564979 1.4063294025426434 0.2156287616262893 +0.6240392221045663 1.3392409609172167 0.13769549234610656 +0.21562876162628952 1.4686770498343509 0.59367059745735706 +0.13769549234610656 1.3759607778954341 0.66075903908278333 +0.79171259951203332 1.8247164420172246 0.47420617247402475 +0.72712117915505492 1.7402458861856145 0.38553016581808797 +0.9336189543617831 1.9944708773603257 0.91862905394330985 +0.86807143088604799 1.9904306120773461 1.0405222816687167 +1.3399483569044259 1.7433454959605346 0.4239161621142562 +1.2073123918032649 1.7807681678543315 0.41057431319105175 +1.7433454959605346 1.576083837885744 0.66005164309557451 +1.7807681678543315 1.5894256868089485 0.79268760819673556 +1.7433454959605346 0.4239161621142562 1.3399483569044259 +1.7807681678543315 0.41057431319105175 1.2073123918032649 +1.576083837885744 0.66005164309557451 1.7433454959605346 +1.5894256868089485 0.79268760819673556 1.7807681678543315 +1.2746684461261846 0.13425781556959937 1.4183870394745819 +1.4048073899588978 0.17821777401482364 1.401004925268398 +0.79171259951203343 0.17528355798277517 1.5257938275259753 +0.72712117915505481 0.25975411381438529 1.6144698341819119 +1.0663810456382175 0.0055291226396741999 0.91862905394330996 +1.1319285691139529 0.009569387922654049 1.0405222816687172 +1.4063294025426436 0.21562876162628952 0.53132295016564968 +1.3392409609172167 0.13769549234610656 0.6240392221045663 +1.4686770498343509 0.59367059745735729 0.21562876162628941 +1.3759607778954341 0.66075903908278333 0.13769549234610656 +1.8247164420172246 0.47420617247402475 0.79171259951203332 +1.7402458861856145 0.38553016581808797 0.72712117915505492 +1.9944708773603259 0.91862905394330996 0.9336189543617831 +1.9904306120773461 1.0405222816687172 0.86807143088604799 +1.9944708773603259 1.0813709460566905 1.0663810456382177 +1.9904306120773461 0.95947771833128337 1.1319285691139529 +1.8657421844304007 1.4183870394745819 0.72533155387381609 +1.8217822259851766 1.4010049252683978 0.59519261004110291 +0.17528355798277517 0.47420617247402497 1.2082874004879671 +0.25975411381438551 0.38553016581808797 1.2728788208449453 +0.21562876162628952 0.53132295016564968 1.4063294025426436 +0.13769549234610656 0.6240392221045663 1.3392409609172167 +0.59367059745735729 0.21562876162628941 1.4686770498343509 +0.66075903908278333 0.13769549234610656 1.3759607778954341 +0.17528355798277517 1.5257938275259753 0.79171259951203343 +0.25975411381438529 1.6144698341819119 0.72712117915505481 +0.0055291226396743109 1.0813709460566903 0.9336189543617831 +0.009569387922653938 0.95947771833128337 0.86807143088604799 +1.3283955572053112 1.6406145370870959 1.694096083320241 +1.2001281403434438 1.6801807185069526 1.7051970771451344 +1.0777044036438097 1.3227105890477233 1.943302656293743 +1.0802812773502413 1.1973935260228461 1.9770315820848792 +0.93025980236669126 1.8004723406749188 1.5952985273360616 +0.86416377447305925 1.7199153070653639 1.6806397508870439 +1.2345849586062214 1.5157160292432703 1.8240187342392598 +1.3536293529417165 1.4655650436231658 1.8112924693932408 +0.62850263027516928 1.5277725269342672 1.7638362809535502 +0.71592045537741122 1.4603930887008656 1.8410333026720758 +1.0672770740243225 1.7022770253220765 1.7087176976875216 +1.1382736821873727 1.7695778385021763 1.6234022291431622 +0.84014219641217736 1.1993769697289565 1.9667958970608925 +0.96026541144158839 1.2602649483574222 1.9647192955096329 +0.80699455980445267 1.624572621678267 1.7567416602149373 +0.73182848239968057 1.6892965611519348 1.6730187872058688 +1.2726998137406516 1.2691171673622652 1.9236940845413728 +1.2595222183644983 1.3961011738843632 1.8807678912304873 +0.81343900392119473 1.3899876630720456 1.9017231378830692 +0.69598720512098988 1.3356672082102183 1.8915737467434823 +0.72730018625934878 1.2691171673622652 0.076305915458627194 +0.74047778163550204 1.3961011738843632 0.11923210876951273 +1.1865609960788057 1.3899876630720458 0.098276862116930985 +1.3040127948790103 1.3356672082102183 0.108426253256518 +0.671604442794689 1.6406145370870961 0.30590391667975902 +0.79987185965655661 1.6801807185069528 0.29480292285486565 +0.92229559635619074 1.3227105890477233 0.056697343706257008 +0.91971872264975907 1.1973935260228461 0.022968417915120942 +1.069740197633309 1.800472340674919 0.40470147266393852 +1.135836225526941 1.7199153070653639 0.31936024911295646 +0.76541504139377881 1.5157160292432705 0.17598126576074025 +0.64637064705828351 1.4655650436231658 0.18870753060675938 +1.3714973697248309 1.5277725269342675 0.23616371904645017 +1.2840795446225894 1.4603930887008656 0.15896669732792434 +0.93272292597567807 1.7022770253220765 0.29128230231247854 +0.86172631781262787 1.7695778385021763 0.37659777085683765 +1.1598578035878229 1.1993769697289562 0.033204102939107583 +1.0397345885584115 1.2602649483574222 0.035280704490367243 +1.1930054401955479 1.6245726216782668 0.24325833978506295 +1.2681715176003199 1.689296561151935 0.32698121279413161 +1.1993769697289562 0.033204102939107583 1.1598578035878229 +1.2602649483574222 0.035280704490367243 1.0397345885584115 +1.6245726216782668 0.24325833978506295 1.1930054401955479 +1.689296561151935 0.32698121279413161 1.2681715176003199 +1.2691171673622652 0.076305915458627194 0.72730018625934878 +1.3961011738843634 0.11923210876951285 0.74047778163550193 +1.3899876630720458 0.098276862116930763 1.1865609960788057 +1.3356672082102183 0.108426253256518 1.3040127948790106 +1.6406145370870964 0.30590391667975914 0.67160444279468889 +1.6801807185069528 0.29480292285486565 0.79987185965655661 +1.3227105890477233 0.056697343706257008 0.92229559635619074 +1.1973935260228461 0.022968417915120942 0.91971872264975907 +1.800472340674919 0.40470147266393852 1.069740197633309 +1.7199153070653639 0.31936024911295646 1.135836225526941 +1.5157160292432708 0.17598126576074047 0.76541504139377869 +1.465565043623166 0.18870753060675916 0.64637064705828351 +1.5277725269342675 0.23616371904645017 1.3714973697248309 +1.4603930887008658 0.15896669732792457 1.2840795446225894 +1.7022770253220765 0.29128230231247854 0.93272292597567807 +1.7695778385021763 0.37659777085683765 0.86172631781262787 +1.694096083320241 1.3283955572053112 1.6406145370870959 +1.7051970771451344 1.2001281403434438 1.6801807185069526 +1.9433026562937428 1.0777044036438097 1.3227105890477233 +1.9770315820848792 1.0802812773502413 1.1973935260228461 +0.84014219641217736 0.80062303027104398 0.033204102939107361 +0.96026541144158839 0.73973505164257791 0.035280704490367243 +0.076305915458627194 1.2726998137406516 0.73088283263773501 +0.11923210876951296 1.2595222183644985 0.60389882611563694 +0.40470147266393852 1.069740197633309 1.800472340674919 +0.31936024911295646 1.135836225526941 1.7199153070653639 +0.17598126576074047 0.76541504139377869 1.5157160292432708 +0.18870753060675916 0.64637064705828351 1.465565043623166 +0.47222747306573287 1.7638362809535502 1.3714973697248309 +0.53960691129913463 1.8410333026720758 1.2840795446225892 +0.29772297467792341 1.7087176976875216 0.93272292597567807 +0.23042216149782357 1.6234022291431622 0.86172631781262776 +0.72730018625934878 0.73088283263773501 1.9236940845413728 +0.74047778163550215 0.60389882611563706 1.8807678912304873 +1.1865609960788057 0.61001233692795442 1.9017231378830692 +1.3040127948790103 0.66433279178978188 1.8915737467434823 +1.7638362809535502 0.62850263027516928 1.5277725269342672 +1.8410333026720758 0.71592045537741122 1.4603930887008656 +1.7087176976875216 1.0672770740243225 1.7022770253220765 +1.6234022291431622 1.1382736821873727 1.7695778385021765 +1.5952985273360616 0.93025980236669126 1.8004723406749188 +1.6806397508870439 0.86416377447305925 1.7199153070653639 +1.8240187342392593 1.2345849586062214 1.5157160292432708 +1.8112924693932408 1.3536293529417165 1.4655650436231658 +1.8004723406749188 1.5952985273360616 0.93025980236669126 +1.7199153070653639 1.6806397508870439 0.86416377447305925 +1.5157160292432703 1.8240187342392598 1.2345849586062214 +1.4655650436231658 1.8112924693932408 1.3536293529417165 +1.6406145370870959 1.694096083320241 1.3283955572053112 +1.6801807185069526 1.7051970771451344 1.2001281403434438 +1.3227105890477233 1.9433026562937428 1.0777044036438097 +1.1973935260228461 1.9770315820848792 1.0802812773502413 +0.73088283263773501 1.9236940845413728 0.72730018625934867 +0.60389882611563706 1.8807678912304873 0.74047778163550215 +0.61001233692795442 1.9017231378830692 1.1865609960788057 +0.66433279178978188 1.8915737467434823 1.3040127948790103 +0.80062303027104398 1.9667958970608925 1.1598578035878231 +0.73973505164257791 1.9647192955096329 1.0397345885584115 +0.37542737832173323 1.7567416602149373 1.1930054401955479 +0.31070343884806517 1.6730187872058688 1.2681715176003199 +0.033204102939107583 1.1598578035878229 1.1993769697289562 +0.035280704490367243 1.0397345885584115 1.2602649483574222 +0.24325833978506295 1.1930054401955479 1.6245726216782668 +0.32698121279413161 1.2681715176003199 1.6892965611519353 +0.23616371904645039 1.3714973697248309 1.5277725269342679 +0.15896669732792457 1.2840795446225894 1.4603930887008658 +0.29128230231247854 0.93272292597567807 1.7022770253220765 +0.37659777085683765 0.86172631781262787 1.7695778385021763 +0.67160444279468889 0.35938546291290396 1.694096083320241 +0.79987185965655649 0.3198192814930475 1.7051970771451346 +0.92229559635619063 0.67728941095227657 1.943302656293743 +0.91971872264975907 0.80260647397715423 1.9770315820848792 +1.7638362809535502 1.3714973697248309 0.47222747306573287 +1.8410333026720758 1.2840795446225892 0.53960691129913463 +1.7087176976875216 0.93272292597567807 0.29772297467792341 +1.6234022291431622 0.86172631781262776 0.23042216149782357 +1.3283955572053112 0.35938546291290407 0.30590391667975902 +1.2001281403434438 0.3198192814930475 0.29480292285486553 +1.0777044036438097 0.67728941095227668 0.056697343706257008 +1.0802812773502413 0.80260647397715423 0.022968417915120942 +1.2726998137406516 0.73088283263773501 0.076305915458627194 +1.2595222183644985 0.60389882611563694 0.11923210876951296 +0.29128230231247842 1.0672770740243225 0.29772297467792341 +0.37659777085683765 1.1382736821873727 0.23042216149782369 +0.17598126576074047 1.2345849586062214 0.48428397075672935 +0.18870753060675916 1.3536293529417167 0.53443495637683425 +0.19952765932508121 1.5952985273360616 1.069740197633309 +0.28008469293463611 1.6806397508870439 1.135836225526941 +0.48428397075672935 1.8240187342392595 0.76541504139377881 +0.53443495637683458 1.8112924693932411 0.64637064705828351 +0.35938546291290396 1.694096083320241 0.67160444279468889 +0.3198192814930475 1.7051970771451346 0.79987185965655649 +0.67728941095227657 1.943302656293743 0.92229559635619063 +0.80260647397715434 1.9770315820848792 0.91971872264975896 +1.2691171673622652 1.9236940845413728 1.2726998137406516 +1.3961011738843632 1.8807678912304873 1.2595222183644983 +1.3899876630720458 1.9017231378830692 0.8134390039211945 +1.3356672082102183 1.8915737467434819 0.69598720512098966 +1.1993769697289565 1.9667958970608925 0.84014219641217713 +1.2602649483574222 1.9647192955096329 0.96026541144158839 +1.624572621678267 1.7567416602149373 0.80699455980445267 +1.6892965611519348 1.6730187872058688 0.73182848239968057 +1.9667958970608925 1.1598578035878231 0.80062303027104387 +1.9647192955096329 1.0397345885584115 0.73973505164257791 +1.7567416602149373 1.1930054401955479 0.37542737832173323 +1.6730187872058688 1.2681715176003199 0.31070343884806517 +1.9667958970608925 0.84014219641217736 1.1993769697289565 +1.9647192955096329 0.96026541144158839 1.2602649483574222 +1.7567416602149373 0.80699455980445267 1.624572621678267 +1.6730187872058688 0.73182848239968057 1.6892965611519348 +1.1598578035878231 0.80062303027104387 1.9667958970608925 +1.0397345885584115 0.73973505164257791 1.9647192955096329 +1.1930054401955479 0.37542737832173323 1.7567416602149373 +1.2681715176003199 0.31070343884806517 1.6730187872058688 +1.3714973697248309 0.47222747306573287 1.7638362809535502 +1.2840795446225892 0.53960691129913463 1.8410333026720758 +0.93272292597567807 0.29772297467792341 1.7087176976875216 +0.86172631781262776 0.23042216149782357 1.6234022291431622 +0.35938546291290407 0.30590391667975902 1.3283955572053112 +0.3198192814930475 0.29480292285486553 1.2001281403434438 +0.67728941095227668 0.056697343706257008 1.0777044036438097 +0.80260647397715423 0.022968417915120942 1.0802812773502413 +0.73088283263773501 0.076305915458627194 1.2726998137406516 +0.60389882611563683 0.11923210876951296 1.2595222183644985 +1.0672770740243225 0.29772297467792341 0.29128230231247842 +1.1382736821873727 0.23042216149782369 0.37659777085683765 +1.2345849586062214 0.48428397075672935 0.17598126576074047 +1.3536293529417167 0.53443495637683447 0.18870753060675904 +1.5952985273360616 1.069740197633309 0.19952765932508121 +1.6806397508870439 1.135836225526941 0.28008469293463611 +1.8240187342392595 0.76541504139377881 0.48428397075672935 +1.8112924693932411 0.64637064705828351 0.53443495637683458 +1.694096083320241 0.67160444279468889 0.35938546291290396 +1.7051970771451346 0.79987185965655649 0.3198192814930475 +1.943302656293743 0.92229559635619063 0.67728941095227657 +1.9770315820848792 0.91971872264975918 0.80260647397715434 +1.9236940845413728 1.2726998137406516 1.2691171673622652 +1.8807678912304873 1.2595222183644983 1.3961011738843632 +1.9017231378830692 0.81343900392119473 1.3899876630720456 +1.8915737467434823 0.69598720512098988 1.3356672082102183 +1.9236940845413728 0.72730018625934878 0.73088283263773501 +1.8807678912304873 0.74047778163550215 0.60389882611563706 +1.9017231378830692 1.1865609960788057 0.61001233692795442 +1.8915737467434823 1.3040127948790103 0.66433279178978188 +1.5277725269342675 1.7638362809535499 0.62850263027516917 +1.4603930887008656 1.8410333026720758 0.71592045537741122 +1.7022770253220765 1.7087176976875216 1.0672770740243225 +1.7695778385021763 1.6234022291431622 1.1382736821873727 +0.80062303027104398 0.033204102939107361 0.84014219641217736 +0.73973505164257791 0.035280704490367243 0.96026541144158839 +0.033204102939107361 0.84014219641217736 0.80062303027104398 +0.035280704490367243 0.96026541144158839 0.73973505164257791 +0.29772297467792341 0.29128230231247842 1.0672770740243225 +0.23042216149782369 0.37659777085683765 1.1382736821873727 +0.30590391667975914 0.67160444279468889 1.6406145370870964 +0.29480292285486576 0.79987185965655661 1.6801807185069526 +0.056697343706257008 0.92229559635619074 1.3227105890477233 +0.022968417915120942 0.91971872264975907 1.1973935260228461 +0.48428397075672913 0.17598126576074058 1.2345849586062216 +0.53443495637683447 0.18870753060675904 1.3536293529417167 +1.069740197633309 0.19952765932508121 1.5952985273360616 +1.135836225526941 0.28008469293463611 1.6806397508870439 +0.76541504139377881 0.48428397075672935 1.8240187342392595 +0.64637064705828351 0.53443495637683469 1.8112924693932411 +0.30590391667975902 1.3283955572053112 0.35938546291290407 +0.29480292285486553 1.2001281403434438 0.3198192814930475 +0.056697343706257008 1.0777044036438097 0.67728941095227668 +0.022968417915120942 1.0802812773502413 0.80260647397715423 +0.076305915458627194 0.72730018625934878 1.2691171673622652 +0.11923210876951285 0.74047778163550193 1.3961011738843634 +0.098276862116930985 1.1865609960788057 1.3899876630720458 +0.108426253256518 1.3040127948790106 1.3356672082102183 +1.6717091588743203 1.4512666656072586 1.5875076190110728 +1.5666478495993443 1.5237239478373752 1.6361001815799718 +1.3714973697248309 1.527772526934267 1.7638362809535499 +1.1362409534038143 1.9506072962094394 1.2788981373351191 +1.0694523319806282 1.9168554803037774 1.3931315324664026 +1.069740197633309 1.800472340674919 1.5952985273360614 +0.41249238098892749 1.6717091588743205 1.4512666656072588 +0.47627605216262503 1.6361001815799718 1.5666478495993443 +0.671604442794689 1.6406145370870961 1.694096083320241 +0.50065936939781919 1.0000000000000002 1.8664057563461918 +0.60686846753359758 1.0694523319806275 1.9168554803037776 +0.72730018625934878 1.2691171673622654 1.9236940845413728 +1.2788981373351191 0.86375904659618619 1.9506072962094394 +1.280755298723806 1 1.9597793820657468 +1.1598578035878231 1.1993769697289565 1.9667958970608925 +0.7211018626648813 0.86375904659618619 0.049392703790560488 +0.71924470127619444 1 0.040220617934253244 +0.84014219641217736 1.1993769697289565 0.033204102939107361 +0.32829084112567963 1.4512666656072588 0.41249238098892738 +0.43335215040065567 1.5237239478373752 0.36389981842002816 +0.62850263027516917 1.5277725269342675 0.23616371904645006 +0.86375904659618641 1.9506072962094394 0.72110186266488108 +0.93054766801937283 1.9168554803037776 0.60686846753359758 +0.93025980236669126 1.800472340674919 0.40470147266393852 +1.5875076190110726 1.6717091588743203 0.54873333439274141 +1.5237239478373752 1.6361001815799718 0.43335215040065567 +1.3283955572053112 1.6406145370870961 0.30590391667975925 +1.499340630602181 1.0000000000000002 0.13359424365380856 +1.3931315324664024 1.0694523319806275 0.083144519696222496 +1.2726998137406516 1.2691171673622654 0.076305915458627416 +1.0000000000000002 0.13359424365380856 1.499340630602181 +1.0694523319806275 0.083144519696222496 1.3931315324664024 +1.2691171673622654 0.076305915458627416 1.2726998137406516 +0.86375904659618619 0.049392703790560488 0.7211018626648813 +1 0.040220617934253244 0.71924470127619444 +1.1993769697289565 0.033204102939107361 0.84014219641217736 +1.4512666656072588 0.41249238098892738 0.32829084112567963 +1.5237239478373752 0.36389981842002816 0.43335215040065567 +1.5277725269342675 0.23616371904645006 0.62850263027516917 +1.9506072962094394 0.72110186266488108 0.86375904659618641 +1.9168554803037776 0.6068684675335978 0.93054766801937272 +1.800472340674919 0.40470147266393852 0.93025980236669126 +1.6717091588743203 0.54873333439274141 1.5875076190110726 +1.6361001815799718 0.43335215040065567 1.5237239478373752 +1.6406145370870961 0.30590391667975925 1.3283955572053112 +1.5875076190110726 1.67170915887432 1.4512666656072588 +1.6361001815799718 1.5666478495993443 1.5237239478373752 +1.7638362809535497 1.3714973697248309 1.5277725269342677 +0.50065936939781919 1.0000000000000002 0.13359424365380834 +0.6068684675335978 0.93054766801937272 0.083144519696222274 +0.049392703790560599 1.2788981373351191 1.1362409534038143 +0.040220617934253355 1.280755298723806 1.0000000000000002 +0.033204102939107361 1.1598578035878231 0.80062303027104398 +0.72110186266488108 0.8637590465961863 1.9506072962094394 +0.60686846753359758 0.93054766801937272 1.9168554803037776 +0.40470147266393852 0.93025980236669126 1.800472340674919 +0.32829084112567997 1.4512666656072586 1.5875076190110731 +0.36389981842002839 1.5666478495993443 1.5237239478373752 +0.35938546291290407 1.694096083320241 1.3283955572053112 +0.72110186266488108 1.1362409534038143 1.9506072962094394 +0.71924470127619433 1.0000000000000002 1.9597793820657468 +0.84014219641217736 0.80062303027104387 1.9667958970608925 +1.4512666656072588 0.41249238098892749 1.6717091588743205 +1.5666478495993443 0.47627605216262503 1.6361001815799718 +1.694096083320241 0.671604442794689 1.6406145370870961 +1.2788981373351191 1.1362409534038143 1.9506072962094394 +1.3931315324664026 1.0694523319806277 1.9168554803037774 +1.5952985273360614 1.069740197633309 1.800472340674919 +1.9506072962094394 1.2788981373351191 1.1362409534038143 +1.9168554803037774 1.3931315324664026 1.0694523319806277 +1.800472340674919 1.5952985273360614 1.069740197633309 +1.451266665607259 1.5875076190110726 1.6717091588743203 +1.5237239478373752 1.6361001815799718 1.5666478495993443 +1.527772526934267 1.7638362809535499 1.3714973697248309 +1.1362409534038143 1.9506072962094394 0.72110186266488119 +1.0000000000000002 1.9597793820657468 0.71924470127619433 +0.80062303027104398 1.9667958970608925 0.84014219641217713 +1.0000000000000002 1.8664057563461913 1.499340630602181 +0.93054766801937272 1.9168554803037776 1.3931315324664026 +0.73088283263773501 1.9236940845413728 1.2726998137406516 +0.13359424365380856 1.499340630602181 1.0000000000000002 +0.083144519696222607 1.3931315324664026 1.0694523319806275 +0.076305915458627416 1.2726998137406516 1.2691171673622654 +0.54873333439274141 1.5875076190110726 1.6717091588743203 +0.43335215040065567 1.5237239478373752 1.6361001815799718 +0.30590391667975925 1.3283955572053112 1.6406145370870961 +0.32829084112567974 0.5487333343927413 1.5875076190110728 +0.43335215040065567 0.47627605216262503 1.6361001815799718 +0.62850263027516928 0.47222747306573287 1.7638362809535502 +1.4512666656072588 1.5875076190110726 0.32829084112567986 +1.5666478495993446 1.5237239478373752 0.36389981842002828 +1.694096083320241 1.3283955572053112 0.35938546291290407 +1.6717091588743205 0.5487333343927413 0.41249238098892749 +1.5666478495993443 0.47627605216262503 0.36389981842002828 +1.3714973697248309 0.47222747306573287 0.23616371904645017 +1.2788981373351191 1.1362409534038143 0.049392703790560599 +1.2807552987238058 1.0000000000000002 0.040220617934253244 +1.1598578035878231 0.80062303027104398 0.033204102939107361 +0.7211018626648813 1.1362409534038143 0.049392703790560599 +0.6068684675335978 1.0694523319806277 0.083144519696222274 +0.4047014726639383 1.069740197633309 0.1995276593250811 +0.049392703790560599 1.2788981373351191 0.8637590465961863 +0.083144519696222496 1.3931315324664026 0.93054766801937272 +0.1995276593250811 1.5952985273360616 0.93025980236669126 +0.54873333439274141 1.5875076190110726 0.32829084112567963 +0.47627605216262503 1.6361001815799718 0.43335215040065567 +0.47222747306573287 1.7638362809535502 0.62850263027516928 +0.86375904659618619 1.9506072962094394 1.2788981373351191 +1 1.9597793820657468 1.280755298723806 +1.1993769697289565 1.9667958970608925 1.1598578035878231 +1.0000000000000002 1.8664057563461918 0.50065936939781919 +1.0694523319806282 1.9168554803037776 0.60686846753359758 +1.2691171673622654 1.9236940845413726 0.72730018625934867 +1.8664057563461913 1.499340630602181 1.0000000000000002 +1.9168554803037776 1.3931315324664026 0.93054766801937272 +1.9236940845413728 1.2726998137406516 0.73088283263773501 +1.8664057563461918 0.50065936939781919 1.0000000000000002 +1.9168554803037776 0.6068684675335978 1.0694523319806275 +1.9236940845413726 0.72730018625934889 1.2691171673622654 +1.499340630602181 1.0000000000000002 1.8664057563461913 +1.3931315324664026 0.93054766801937272 1.9168554803037776 +1.2726998137406516 0.73088283263773501 1.9236940845413728 +1.5875076190110726 0.32829084112567986 1.4512666656072588 +1.5237239478373752 0.36389981842002828 1.5666478495993446 +1.3283955572053112 0.35938546291290407 1.694096083320241 +0.5487333343927413 0.41249238098892749 1.6717091588743205 +0.47627605216262503 0.36389981842002828 1.5666478495993443 +0.47222747306573287 0.23616371904645017 1.3714973697248309 +1.1362409534038143 0.049392703790560599 1.2788981373351191 +1.0000000000000002 0.040220617934253244 1.2807552987238058 +0.80062303027104398 0.033204102939107361 1.1598578035878231 +1.1362409534038143 0.049392703790560488 0.7211018626648813 +1.0694523319806277 0.083144519696222274 0.6068684675335978 +1.069740197633309 0.1995276593250811 0.4047014726639383 +1.2788981373351191 0.86375904659618641 0.049392703790560599 +1.3931315324664024 0.93054766801937272 0.083144519696222496 +1.5952985273360616 0.93025980236669126 0.1995276593250811 +1.5875076190110728 0.32829084112567974 0.5487333343927413 +1.6361001815799721 0.43335215040065578 0.47627605216262492 +1.7638362809535502 0.62850263027516928 0.47222747306573287 +1.9506072962094394 1.2788981373351191 0.86375904659618619 +1.9597793820657468 1.280755298723806 1 +1.9667958970608925 1.1598578035878231 1.1993769697289565 +1.9506072962094394 0.72110186266488119 1.1362409534038143 +1.9597793820657468 0.71924470127619444 1.0000000000000002 +1.9667958970608925 0.84014219641217736 0.80062303027104398 +1.6717091588743205 1.4512666656072588 0.41249238098892749 +1.6361001815799718 1.5666478495993443 0.47627605216262503 +1.6406145370870961 1.694096083320241 0.671604442794689 +1.0000000000000002 0.13359424365380834 0.50065936939781919 +0.93054766801937272 0.083144519696222274 0.6068684675335978 +0.13359424365380834 0.50065936939781919 1.0000000000000002 +0.083144519696222274 0.6068684675335978 0.93054766801937272 +0.41249238098892738 0.32829084112567963 1.4512666656072588 +0.36389981842002828 0.43335215040065567 1.5237239478373752 +0.23616371904645006 0.62850263027516917 1.5277725269342675 +0.049392703790560599 0.72110186266488119 1.1362409534038143 +0.083144519696222274 0.6068684675335978 1.0694523319806282 +0.1995276593250811 0.4047014726639383 1.069740197633309 +0.86375904659618641 0.049392703790560599 1.2788981373351191 +0.93054766801937272 0.083144519696222274 1.3931315324664024 +0.93025980236669126 0.1995276593250811 1.5952985273360616 +0.41249238098892749 1.6717091588743205 0.5487333343927413 +0.36389981842002828 1.5666478495993443 0.47627605216262503 +0.23616371904645017 1.3714973697248309 0.47222747306573265 +0.049392703790560488 0.72110186266488108 0.86375904659618619 +0.040220617934253244 0.71924470127619444 1 +0.033204102939107361 0.84014219641217736 1.1993769697289565 +1 1.625781888690033 1.7799980947332728 +1.0548571407136167 1.5400179687989204 1.8398638505656821 +1.1865609960788062 1.3899876630720454 1.901723137883069 +1.2022655037944634 1 1.9793307234916977 +1.4183870394745819 1.2746684461261839 1.8657421844304007 +0.88373086464434814 1.553923611197678 1.8244089525965697 +1.1930054401955474 1.624572621678267 1.7567416602149373 +1.5521688397941482 1.4662660666179783 1.6911624465210644 +1.3399483569044259 1.7433454959605346 1.5760838378857436 +0.92814172250764548 1.437654475842026 1.8962672300889245 +0.93272292597567796 1.7022770253220765 1.7087176976875216 +1.1389936067269157 1.8934279503155276 1.427161883697549 +0.79171259951203343 1.8247164420172246 1.5257938275259759 +1.0718582774923548 1.4376544758420258 1.8962672300889245 +0.76541504139377881 1.515716029243271 1.8240187342392595 +0.53373393338202191 1.6911624465210644 1.5521688397941484 +0.53132295016564979 1.4063294025426427 1.7843712383737111 +1.116269135355652 1.553923611197678 1.8244089525965697 +0.92229559635619029 1.3227105890477233 1.943302656293743 +0.57283811630245085 1.1389936067269162 1.8934279503155276 +0.91862905394331007 1.0663810456382177 1.9944708773603259 +0.88373086464434825 1.5539236111976775 0.17559104740343034 +0.96609642251334915 1.4851608280853033 0.12623257194766668 +1.0777044036438097 1.3227105890477233 0.056697343706257008 +1.427161883697549 1.1389936067269162 0.10657204968447243 +1.0813709460566903 1.0663810456382175 0.0055291226396743109 +1 1.6257818886900326 0.22000190526672714 +0.81343900392119461 1.3899876630720456 0.098276862116930652 +0.79773449620553682 1 0.020669276508302414 +0.58161296052541844 1.2746684461261841 0.13425781556959904 +1.116269135355652 1.5539236111976775 0.17559104740343034 +0.80699455980445256 1.624572621678267 0.24325833978506284 +0.44783116020585179 1.4662660666179785 0.30883755347893571 +0.66005164309557451 1.7433454959605346 0.4239161621142562 +1.0718582774923548 1.437654475842026 0.1037327699110755 +1.0672770740243225 1.7022770253220765 0.29128230231247831 +0.86100639327308448 1.8934279503155278 0.57283811630245107 +1.2082874004879671 1.8247164420172246 0.47420617247402486 +0.92814172250764526 1.4376544758420258 0.10373276991107527 +1.2345849586062212 1.515716029243271 0.17598126576074047 +1.4662660666179783 1.6911624465210644 0.44783116020585179 +1.4686770498343509 1.4063294025426429 0.21562876162628941 +1.4376544758420258 0.10373276991107527 0.92814172250764526 +1.4851608280853033 0.12623257194766668 1.0339035774866507 +1.5157160292432712 0.17598126576074069 1.2345849586062212 +1.6911624465210644 0.44783116020585179 1.4662660666179783 +1.4063294025426429 0.21562876162628941 1.4686770498343509 +1.553923611197678 0.17559104740343034 0.88373086464434814 +1.3227105890477233 0.056697343706257008 1.0777044036438097 +1.1389936067269162 0.10657204968447254 1.4271618836975493 +1.0663810456382175 0.0055291226396743109 1.0813709460566903 +1.6257818886900326 0.22000190526672714 1 +1.3899876630720456 0.098276862116930652 0.81343900392119461 +1 0.020669276508302414 0.79773449620553682 +1.2746684461261841 0.13425781556959904 0.58161296052541844 +1.5539236111976777 0.17559104740343046 1.116269135355652 +1.624572621678267 0.24325833978506284 0.80699455980445256 +1.4662660666179785 0.30883755347893571 0.44783116020585167 +1.7433454959605346 0.4239161621142562 0.66005164309557451 +1.437654475842026 0.1037327699110755 1.0718582774923548 +1.7022770253220765 0.29128230231247831 1.0672770740243225 +1.8934279503155278 0.57283811630245107 0.86100639327308448 +1.8247164420172246 0.47420617247402486 1.2082874004879671 +1.7799980947332728 1 1.625781888690033 +1.8398638505656821 1.0548571407136167 1.5400179687989204 +1.901723137883069 1.1865609960788062 1.3899876630720454 +1.9793307234916977 1.2022655037944634 1 +1.8657421844304007 1.4183870394745819 1.2746684461261839 +1.0718582774923548 0.56234552415797401 0.1037327699110755 +0.17559104740343046 1.116269135355652 0.44607638880232214 +0.12623257194766668 1.0339035774866507 0.51483917191469664 +0.056697343706257008 0.92229559635619041 0.67728941095227668 +0.0055291226396741999 0.91862905394331018 0.93361895436178288 +0.17559104740343034 1.116269135355652 1.553923611197678 +0.24325833978506284 0.80699455980445256 1.624572621678267 +0.30883755347893571 0.44783116020585167 1.4662660666179785 +0.4239161621142562 0.66005164309557451 1.7433454959605346 +0.56234552415797401 1.8962672300889243 1.0718582774923548 +0.29772297467792341 1.7087176976875216 1.0672770740243225 +0.10657204968447231 1.4271618836975493 0.86100639327308448 +0.17528355798277562 1.5257938275259757 1.2082874004879671 +0.88373086464434814 0.44607638880232214 1.8244089525965697 +1.0777044036438097 0.67728941095227657 1.943302656293743 +1.4271618836975497 0.86100639327308426 1.8934279503155274 +1.0813709460566905 0.93361895436178288 1.9944708773603259 +1.8962672300889245 0.92814172250764548 1.437654475842026 +1.8398638505656821 0.94514285928638309 1.5400179687989204 +1.7087176976875216 0.93272292597567796 1.7022770253220765 +1.4271618836975493 1.138993606726916 1.8934279503155276 +1.5257938275259757 0.79171259951203343 1.8247164420172244 +1.8244089525965697 0.88373086464434814 1.553923611197678 +1.7567416602149373 1.1930054401955474 1.624572621678267 +1.6911624465210642 1.552168839794148 1.4662660666179788 +1.5760838378857436 1.3399483569044259 1.7433454959605346 +1.553923611197678 1.8244089525965697 0.88373086464434814 +1.624572621678267 1.7567416602149373 1.1930054401955474 +1.4662660666179788 1.6911624465210642 1.552168839794148 +1.7433454959605346 1.5760838378857436 1.3399483569044259 +1.625781888690033 1.7799980947332728 1 +1.3899876630720454 1.901723137883069 1.1865609960788062 +1 1.9793307234916977 1.2022655037944634 +1.2746684461261839 1.8657421844304012 1.4183870394745819 +0.44607638880232214 1.8244089525965697 0.88373086464434814 +0.51483917191469653 1.8737674280523331 0.96609642251334915 +0.67728941095227668 1.9433026562937428 1.0777044036438097 +0.86100639327308426 1.8934279503155274 1.4271618836975497 +0.93361895436178288 1.9944708773603257 1.0813709460566903 +0.56234552415797401 1.8962672300889243 0.92814172250764526 +0.48428397075672935 1.8240187342392595 1.2345849586062212 +0.30883755347893593 1.5521688397941484 1.4662660666179788 +0.59367059745735751 1.7843712383737109 1.4686770498343507 +0.10373276991107527 0.92814172250764526 1.4376544758420258 +0.12623257194766668 1.0339035774866507 1.4851608280853033 +0.17598126576074069 1.2345849586062212 1.5157160292432712 +0.44783116020585179 1.4662660666179783 1.6911624465210644 +0.21562876162628963 1.4686770498343507 1.4063294025426434 +0.1037327699110755 1.0718582774923548 1.437654475842026 +0.29128230231247831 1.0672770740243225 1.7022770253220765 +0.57283811630245085 0.86100639327308437 1.8934279503155276 +0.47420617247402486 1.2082874004879671 1.8247164420172246 +1 0.37421811130996696 1.7799980947332725 +0.81343900392119473 0.61001233692795442 1.9017231378830692 +0.79773449620553671 1.0000000000000002 1.9793307234916977 +0.58161296052541844 0.72533155387381609 1.865742184430401 +1.8962672300889243 1.0718582774923548 0.56234552415797401 +1.7087176976875216 1.0672770740243225 0.29772297467792341 +1.4271618836975493 0.86100639327308448 0.10657204968447231 +1.5257938275259753 1.2082874004879671 0.1752835579827754 +1 0.37421811130996707 0.22000190526672725 +1.0548571407136167 0.45998203120107961 0.16013614943431764 +1.1865609960788062 0.61001233692795442 0.098276862116930985 +1.2022655037944634 1.0000000000000002 0.020669276508302414 +1.4183870394745819 0.72533155387381609 0.13425781556959915 +1.116269135355652 0.44607638880232214 0.17559104740343046 +0.92229559635619041 0.67728941095227668 0.056697343706257008 +0.91862905394331018 0.93361895436178288 0.0055291226396741999 +0.1037327699110755 0.92814172250764548 0.56234552415797401 +0.57283811630245096 1.138993606726916 0.10657204968447231 +0.18108971266128371 1 0.42607845371442887 +0.24325833978506284 1.1930054401955474 0.37542737832173323 +0.30883755347893582 1.5521688397941484 0.53373393338202169 +0.42391616211425609 1.3399483569044259 0.25665450403946555 +0.44607638880232214 1.8244089525965697 1.116269135355652 +0.42607845371442887 1.8189102873387162 1 +0.37542737832173312 1.7567416602149373 0.80699455980445245 +0.53373393338202169 1.6911624465210644 0.44783116020585179 +0.25665450403946544 1.5760838378857438 0.66005164309557429 +0.37421811130996729 1.7799980947332728 1 +0.61001233692795442 1.9017231378830692 0.8134390039211945 +1.0000000000000002 1.9793307234916977 0.79773449620553649 +0.72533155387381631 1.8657421844304012 0.58161296052541867 +1.5539236111976777 1.8244089525965697 1.116269135355652 +1.3227105890477233 1.943302656293743 0.92229559635619029 +1.1389936067269162 1.8934279503155276 0.57283811630245085 +1.0663810456382175 1.9944708773603257 0.91862905394330985 +1.437654475842026 1.8962672300889247 1.0718582774923548 +1.4851608280853035 1.8737674280523331 0.96609642251334915 +1.5157160292432708 1.8240187342392593 0.76541504139377881 +1.6911624465210644 1.5521688397941484 0.53373393338202191 +1.4063294025426429 1.7843712383737109 0.53132295016564957 +1.8962672300889243 0.92814172250764526 0.56234552415797401 +1.8240187342392595 1.2345849586062212 0.48428397075672935 +1.5521688397941484 1.4662660666179785 0.30883755347893582 +1.7843712383737109 1.4686770498343507 0.59367059745735751 +1.8962672300889245 1.0718582774923548 1.4376544758420258 +1.8240187342392593 0.76541504139377881 1.5157160292432708 +1.5521688397941484 0.53373393338202191 1.6911624465210644 +1.7843712383737111 0.53132295016564979 1.4063294025426427 +0.92814172250764526 0.56234552415797401 1.8962672300889243 +1.2345849586062212 0.48428397075672935 1.8240187342392595 +1.4662660666179785 0.30883755347893582 1.5521688397941484 +1.4686770498343507 0.59367059745735751 1.7843712383737109 +1.0718582774923548 0.56234552415797401 1.8962672300889243 +1.0548571407136167 0.4599820312010795 1.8398638505656821 +1.0672770740243225 0.29772297467792341 1.7087176976875216 +0.86100639327308448 0.10657204968447231 1.4271618836975493 +1.2082874004879671 0.1752835579827754 1.5257938275259753 +0.37421811130996707 0.22000190526672725 1 +0.61001233692795442 0.098276862116931096 1.1865609960788062 +1.0000000000000002 0.020669276508302414 1.2022655037944634 +0.72533155387381609 0.13425781556959915 1.4183870394745819 +0.44607638880232214 0.17559104740343046 1.116269135355652 +0.67728941095227668 0.056697343706257008 0.92229559635619041 +0.93361895436178288 0.0055291226396741999 0.91862905394331018 +0.92814172250764548 0.56234552415797401 0.1037327699110755 +0.94514285928638309 0.45998203120107961 0.16013614943431764 +1.138993606726916 0.10657204968447231 0.57283811630245096 +1.1930054401955474 0.37542737832173323 0.24325833978506284 +1.5521688397941484 0.53373393338202157 0.30883755347893571 +1.3399483569044259 0.25665450403946555 0.42391616211425609 +1.8244089525965697 1.116269135355652 0.44607638880232214 +1.7567416602149373 0.80699455980445256 0.37542737832173323 +1.6911624465210644 0.44783116020585179 0.53373393338202169 +1.5760838378857438 0.66005164309557429 0.25665450403946544 +1.7799980947332725 1 0.37421811130996718 +1.8398638505656821 0.94514285928638309 0.4599820312010795 +1.9017231378830692 0.81343900392119473 0.61001233692795442 +1.9793307234916977 0.79773449620553671 1.0000000000000002 +1.8657421844304012 0.58161296052541867 0.72533155387381631 +1.8244089525965697 1.116269135355652 1.553923611197678 +1.943302656293743 0.92229559635619029 1.3227105890477233 +1.8934279503155276 0.57283811630245096 1.1389936067269162 +1.9944708773603259 0.91862905394331018 1.0663810456382175 +1.8244089525965697 0.88373086464434814 0.44607638880232214 +1.9433026562937428 1.0777044036438097 0.67728941095227668 +1.8934279503155274 1.4271618836975497 0.86100639327308426 +1.9944708773603259 1.0813709460566905 0.93361895436178288 +1.4376544758420262 1.8962672300889245 0.92814172250764526 +1.7022770253220765 1.7087176976875216 0.93272292597567796 +1.8934279503155276 1.4271618836975493 1.138993606726916 +1.8247164420172244 1.5257938275259757 0.79171259951203343 +0.56234552415797401 0.1037327699110755 1.0718582774923548 +0.1037327699110755 1.0718582774923548 0.56234552415797401 +0.56234552415797401 0.1037327699110755 0.92814172250764548 +0.45998203120107961 0.16013614943431764 0.94514285928638309 +0.10657204968447231 0.57283811630245096 1.138993606726916 +0.22000190526672714 1 1.6257818886900326 +0.16013614943431764 0.94514285928638309 1.5400179687989204 +0.098276862116930652 0.81343900392119461 1.3899876630720456 +0.020669276508302414 0.79773449620553682 1 +0.13425781556959904 0.58161296052541844 1.2746684461261841 +0.37542737832173312 0.24325833978506273 1.1930054401955474 +0.53373393338202169 0.30883755347893582 1.5521688397941484 +0.25665450403946555 0.42391616211425609 1.3399483569044259 +1.116269135355652 0.44607638880232214 1.8244089525965697 +0.80699455980445256 0.37542737832173323 1.7567416602149373 +0.44783116020585179 0.53373393338202169 1.6911624465210644 +0.66005164309557429 0.25665450403946544 1.5760838378857438 +0.22000190526672725 1 0.37421811130996729 +0.098276862116931096 1.1865609960788062 0.61001233692795442 +0.020669276508302414 1.2022655037944634 1.0000000000000002 +0.13425781556959915 1.4183870394745819 0.72533155387381609 +0.17559104740343034 0.88373086464434814 1.553923611197678 +0.056697343706257008 1.0777044036438097 1.3227105890477233 +0.10657204968447276 1.4271618836975497 1.1389936067269162 +0.0055291226396743109 1.0813709460566903 1.0663810456382175 +1.4585335468418477 1.2079367413660946 1.8640076955737634 +1.4869664504627846 1.2757285413196802 1.8287565671687904 +1.4054741487319156 1.7419228637721522 1.5339861224060576 +1.3417901167060058 1.7879282682296775 1.5121997269099978 +0.7920632586339057 1.8640076955737634 1.4585335468418479 +0.72427145868032006 1.8287565671687904 1.4869664504627849 +0.46601387759394275 1.4054741487319153 1.7419228637721522 +0.48780027309000262 1.3417901167060056 1.787928268229678 +0.87791516819838944 1.0000000000000002 1.9925196692479057 +0.95917170106088778 1.0000000000000002 1.9991661773727825 +1.1220848318016112 1.0000000000000002 0.0074803307520941997 +1.0408282989391127 1.0000000000000002 0.00083382262721753975 +0.54146645315815223 1.2079367413660949 0.13599230442623678 +0.51303354953721536 1.2757285413196804 0.17124343283120957 +0.59452585126808533 1.7419228637721524 0.46601387759394242 +0.65820988329399455 1.787928268229678 0.48780027309000262 +1.2079367413660951 1.8640076955737632 0.54146645315815234 +1.2757285413196804 1.8287565671687904 0.51303354953721536 +1.5339861224060583 1.4054741487319153 0.25807713622784811 +1.5121997269099978 1.3417901167060056 0.21207173177032246 +1.4054741487319153 0.25807713622784811 1.5339861224060583 +1.3417901167060056 0.21207173177032246 1.5121997269099978 +1.0000000000000002 0.0074803307520941997 1.1220848318016112 +1.0000000000000002 0.00083382262721753975 1.0408282989391127 +1.2079367413660949 0.13599230442623678 0.54146645315815223 +1.2757285413196804 0.17124343283120957 0.51303354953721536 +1.7419228637721527 0.46601387759394253 0.59452585126808521 +1.787928268229678 0.48780027309000262 0.65820988329399455 +1.8640076955737634 0.54146645315815256 1.2079367413660949 +1.8287565671687904 0.51303354953721558 1.2757285413196802 +1.8640076955737634 1.4585335468418477 1.2079367413660946 +1.8287565671687904 1.4869664504627846 1.2757285413196802 +0.0074803307520941997 0.87791516819838944 1.0000000000000002 +0.00083382262721753975 0.95917170106088778 1.0000000000000002 +0.46601387759394253 0.59452585126808521 1.7419228637721527 +0.48780027309000262 0.65820988329399455 1.787928268229678 +0.135992304426237 1.4585335468418483 1.2079367413660951 +0.17124343283120991 1.4869664504627851 1.2757285413196804 +1.1220848318016112 1.0000000000000002 1.9925196692479057 +1.0408282989391127 1.0000000000000002 1.9991661773727825 +1.4585335468418479 0.7920632586339057 1.8640076955737634 +1.4869664504627849 0.72427145868032006 1.8287565671687904 +1.5339861224060576 1.4054741487319156 1.7419228637721522 +1.5121997269099978 1.3417901167060058 1.7879282682296775 +1.7419228637721522 1.5339861224060576 1.4054741487319156 +1.7879282682296775 1.5121997269099978 1.3417901167060058 +1.2079367413660946 1.8640076955737634 1.4585335468418474 +1.2757285413196802 1.8287565671687904 1.4869664504627846 +1.0000000000000002 1.9925196692479057 1.1220848318016112 +1.0000000000000002 1.9991661773727825 1.0408282989391127 +0.59452585126808544 1.7419228637721522 1.533986122406058 +0.65820988329399466 1.7879282682296778 1.5121997269099978 +0.25807713622784823 1.5339861224060583 1.4054741487319156 +0.21207173177032257 1.5121997269099978 1.3417901167060058 +0.54146645315815245 1.2079367413660949 1.8640076955737634 +0.51303354953721558 1.2757285413196802 1.8287565671687904 +0.54146645315815245 0.79206325863390548 1.8640076955737634 +0.51303354953721558 0.72427145868032006 1.8287565671687904 +1.4585335468418481 1.2079367413660951 0.13599230442623689 +1.4869664504627849 1.2757285413196802 0.17124343283120991 +1.4585335468418479 0.79206325863390536 0.13599230442623678 +1.4869664504627846 0.72427145868031995 0.17124343283120957 +0.87791516819838944 1.0000000000000002 0.0074803307520941997 +0.95917170106088778 1.0000000000000002 0.00083382262721753975 +0.46601387759394242 1.4054741487319158 0.25807713622784789 +0.48780027309000262 1.3417901167060058 0.21207173177032246 +0.25807713622784789 1.533986122406058 0.59452585126808488 +0.21207173177032246 1.5121997269099978 0.65820988329399444 +0.79206325863390559 1.8640076955737634 0.54146645315815256 +0.72427145868032006 1.8287565671687904 0.51303354953721558 +1.0000000000000002 1.9925196692479057 0.87791516819838922 +1.0000000000000002 1.9991661773727825 0.95917170106088745 +1.4054741487319156 1.7419228637721522 0.46601387759394231 +1.3417901167060056 1.787928268229678 0.48780027309000262 +1.7419228637721522 1.533986122406058 0.59452585126808544 +1.7879282682296778 1.5121997269099978 0.65820988329399466 +1.7419228637721522 0.46601387759394275 1.4054741487319153 +1.787928268229678 0.48780027309000262 1.3417901167060056 +1.533986122406058 0.59452585126808544 1.7419228637721522 +1.5121997269099978 0.65820988329399466 1.7879282682296775 +1.2079367413660951 0.135992304426237 1.4585335468418483 +1.2757285413196804 0.17124343283120991 1.4869664504627851 +0.79206325863390536 0.13599230442623678 1.4585335468418479 +0.72427145868031995 0.17124343283120957 1.4869664504627846 +1.0000000000000002 0.0074803307520941997 0.87791516819838944 +1.0000000000000002 0.00083382262721753975 0.95917170106088778 +1.4054741487319158 0.258077136227848 0.46601387759394253 +1.341790116706006 0.21207173177032235 0.48780027309000251 +1.533986122406058 0.5945258512680851 0.25807713622784789 +1.5121997269099978 0.65820988329399455 0.21207173177032246 +1.8640076955737634 0.54146645315815256 0.79206325863390559 +1.8287565671687904 0.51303354953721558 0.72427145868032006 +1.9925196692479057 0.87791516819838944 1.0000000000000002 +1.9991661773727825 0.95917170106088778 1.0000000000000002 +1.9925196692479057 1.1220848318016112 1.0000000000000002 +1.9991661773727825 1.0408282989391127 1.0000000000000002 +1.8640076955737634 1.4585335468418479 0.7920632586339057 +1.8287565671687904 1.4869664504627849 0.72427145868032006 +0.13599230442623678 0.54146645315815223 1.2079367413660949 +0.17124343283120957 0.51303354953721536 1.2757285413196804 +0.258077136227848 0.46601387759394253 1.4054741487319158 +0.21207173177032235 0.48780027309000251 1.341790116706006 +0.5945258512680851 0.25807713622784789 1.533986122406058 +0.65820988329399455 0.21207173177032246 1.5121997269099978 +0.13599230442623678 1.4585335468418479 0.79206325863390536 +0.17124343283120957 1.4869664504627846 0.72427145868031995 +0.0074803307520941997 1.1220848318016112 1.0000000000000002 +0.00083382262721753975 1.0408282989391127 1.0000000000000002 +1.3850500562448067 1.5871412403588967 1.7120404609681164 +1.3180233001589552 1.5833668628112614 1.7473582032263737 +1.1129504910198773 1.3836883498990558 1.9165290157600623 +1.154901620023423 1.3257845443224259 1.932668171856823 +1 1.8251152624882454 1.5649644268526592 +1.0000000000000002 1.7799160715239055 1.6258841117800629 +1.1827577335161514 1.5664460834152063 1.8035785247401852 +1.2506360861103192 1.5764206304327446 1.7777665518334007 +0.61494994375519396 1.5871412403588967 1.7120404609681168 +0.68197669984104503 1.5833668628112616 1.7473582032263737 +1 1.6793965744350836 1.7337712822439113 +1 1.7313222504561676 1.6820320857465041 +0.76202597787065152 1.20209118411409 1.9500144830974659 +0.80345079128735619 1.2653435626523064 1.9439074119390181 +0.81724226648384946 1.5664460834152067 1.8035785247401852 +0.74936391388968104 1.5764206304327451 1.7777665518334005 +1.2379740221293494 1.20209118411409 1.9500144830974655 +1.1965492087126446 1.2653435626523064 1.9439074119390178 +0.88704950898012358 1.3836883498990562 1.9165290157600621 +0.84509837997657777 1.3257845443224261 1.932668171856823 +0.76202597787065152 1.20209118411409 0.049985516902534055 +0.80345079128735619 1.2653435626523064 0.056092588060981941 +1.1129504910198773 1.3836883498990562 0.08347098423993804 +1.1549016200234223 1.3257845443224259 0.067331828143176842 +0.61494994375519396 1.5871412403588969 0.28795953903188354 +0.68197669984104503 1.5833668628112614 0.25264179677362608 +0.88704950898012358 1.3836883498990558 0.083470984239937707 +0.84509837997657777 1.3257845443224259 0.067331828143176842 +1 1.8251152624882456 0.43503557314734087 +1 1.7799160715239055 0.37411588821993702 +0.81724226648384946 1.5664460834152065 0.19642147525981468 +0.74936391388968104 1.5764206304327446 0.22223344816659929 +1.3850500562448065 1.5871412403588967 0.28795953903188365 +1.318023300158955 1.5833668628112618 0.25264179677362619 +1 1.6793965744350834 0.26622871775608836 +1.0000000000000002 1.7313222504561674 0.31796791425349591 +1.2379740221293494 1.20209118411409 0.049985516902534388 +1.1965492087126439 1.2653435626523064 0.056092588060981941 +1.1827577335161514 1.5664460834152067 0.1964214752598149 +1.2506360861103192 1.5764206304327451 0.22223344816659951 +1.20209118411409 0.049985516902534388 1.2379740221293494 +1.2653435626523064 0.056092588060981941 1.1965492087126439 +1.5664460834152067 0.19642147525981501 1.1827577335161514 +1.5764206304327453 0.22223344816659973 1.2506360861103192 +1.20209118411409 0.049985516902534055 0.76202597787065152 +1.2653435626523064 0.056092588060981941 0.80345079128735619 +1.3836883498990562 0.08347098423993804 1.1129504910198773 +1.3257845443224259 0.067331828143176842 1.1549016200234223 +1.5871412403588971 0.28795953903188365 0.61494994375519385 +1.5833668628112616 0.25264179677362608 0.68197669984104492 +1.3836883498990558 0.083470984239937596 0.88704950898012358 +1.3257845443224259 0.067331828143176842 0.84509837997657777 +1.8251152624882456 0.43503557314734087 1 +1.7799160715239055 0.37411588821993702 1 +1.5664460834152067 0.19642147525981479 0.81724226648384946 +1.5764206304327446 0.22223344816659929 0.74936391388968104 +1.5871412403588967 0.28795953903188365 1.3850500562448065 +1.5833668628112618 0.25264179677362619 1.318023300158955 +1.6793965744350836 0.26622871775608847 1 +1.7313222504561674 0.31796791425349591 1.0000000000000002 +1.7120404609681164 1.3850500562448067 1.5871412403588967 +1.7473582032263737 1.3180233001589552 1.5833668628112614 +1.9165290157600623 1.1129504910198773 1.3836883498990558 +1.932668171856823 1.154901620023423 1.3257845443224259 +0.76202597787065152 0.79790881588591023 0.049985516902534055 +0.80345079128735619 0.73465643734769381 0.056092588060981829 +0.049985516902534277 1.2379740221293494 0.79790881588591067 +0.056092588060981941 1.1965492087126446 0.73465643734769381 +0.083470984239937707 0.88704950898012358 0.61631165010094424 +0.067331828143176842 0.84509837997657777 0.67421545567757424 +0.43503557314734087 1 1.8251152624882456 +0.37411588821993702 1 1.7799160715239055 +0.19642147525981468 0.81724226648384946 1.5664460834152065 +0.22223344816659929 0.74936391388968104 1.5764206304327446 +0.41285875964110408 1.712040460968117 1.3850500562448065 +0.41663313718873862 1.7473582032263741 1.318023300158955 +0.32060342556491628 1.7337712822439113 1 +0.26867774954383239 1.6820320857465041 1.0000000000000002 +0.76202597787065152 0.79790881588591056 1.9500144830974659 +0.80345079128735619 0.73465643734769381 1.9439074119390183 +1.1129504910198773 0.61631165010094424 1.9165290157600623 +1.1549016200234223 0.67421545567757413 1.932668171856823 +1.7120404609681168 0.61494994375519396 1.5871412403588967 +1.7473582032263737 0.68197669984104503 1.5833668628112616 +1.7337712822439113 1 1.6793965744350836 +1.6820320857465041 1 1.7313222504561676 +1.5649644268526592 1 1.8251152624882454 +1.6258841117800629 1.0000000000000002 1.7799160715239055 +1.803578524740185 1.1827577335161514 1.5664460834152067 +1.7777665518334005 1.2506360861103192 1.5764206304327451 +1.8251152624882454 1.5649644268526592 1 +1.7799160715239055 1.6258841117800629 1.0000000000000002 +1.5664460834152067 1.803578524740185 1.1827577335161514 +1.5764206304327446 1.7777665518334007 1.2506360861103192 +1.5871412403588967 1.7120404609681164 1.3850500562448067 +1.5833668628112614 1.7473582032263737 1.3180233001589552 +1.3836883498990558 1.9165290157600623 1.1129504910198773 +1.3257845443224259 1.932668171856823 1.154901620023423 +0.79790881588591056 1.9500144830974659 0.76202597787065107 +0.73465643734769381 1.9439074119390181 0.80345079128735586 +0.61631165010094424 1.9165290157600623 1.1129504910198773 +0.67421545567757413 1.932668171856823 1.1549016200234223 +0.79790881588591023 1.9500144830974657 1.2379740221293494 +0.73465643734769381 1.9439074119390181 1.1965492087126439 +0.4335539165847937 1.8035785247401852 1.1827577335161514 +0.42357936956725528 1.7777665518334005 1.2506360861103192 +0.049985516902534388 1.2379740221293494 1.20209118411409 +0.056092588060981941 1.1965492087126439 1.2653435626523064 +0.19642147525981501 1.1827577335161514 1.5664460834152067 +0.22223344816659973 1.2506360861103192 1.5764206304327453 +0.28795953903188365 1.3850500562448065 1.5871412403588967 +0.25264179677362619 1.318023300158955 1.5833668628112618 +0.26622871775608847 1 1.6793965744350836 +0.31796791425349591 1.0000000000000002 1.7313222504561674 +0.61494994375519374 0.41285875964110375 1.712040460968117 +0.68197669984104503 0.41663313718873862 1.7473582032263741 +0.88704950898012358 0.61631165010094435 1.9165290157600623 +0.84509837997657777 0.67421545567757435 1.932668171856823 +1.712040460968117 1.3850500562448065 0.41285875964110408 +1.7473582032263741 1.318023300158955 0.41663313718873862 +1.7337712822439113 1 0.32060342556491628 +1.6820320857465041 1.0000000000000002 0.26867774954383239 +1.3850500562448067 0.41285875964110363 0.28795953903188343 +1.3180233001589552 0.41663313718873873 0.25264179677362608 +1.1129504910198773 0.61631165010094446 0.083470984239937707 +1.154901620023423 0.67421545567757435 0.067331828143176842 +1.2379740221293494 0.79790881588591067 0.049985516902534166 +1.1965492087126446 0.73465643734769381 0.056092588060981941 +0.88704950898012358 0.61631165010094424 0.083470984239937707 +0.84509837997657777 0.67421545567757424 0.067331828143176842 +0.26622871775608858 1 0.32060342556491639 +0.31796791425349591 1 0.26867774954383261 +0.43503557314734065 1 0.1748847375117546 +0.37411588821993691 1.0000000000000002 0.22008392847609459 +0.19642147525981479 1.1827577335161514 0.43355391658479359 +0.22223344816659951 1.2506360861103192 0.42357936956725528 +0.17488473751175482 1.5649644268526597 1 +0.22008392847609459 1.6258841117800631 1 +0.43355391658479348 1.8035785247401854 0.81724226648384946 +0.42357936956725517 1.7777665518334005 0.74936391388968104 +0.41285875964110386 1.7120404609681168 0.61494994375519374 +0.41663313718873862 1.7473582032263741 0.68197669984104503 +0.61631165010094446 1.9165290157600623 0.88704950898012325 +0.67421545567757435 1.932668171856823 0.84509837997657744 +1.20209118411409 1.9500144830974655 1.2379740221293494 +1.2653435626523064 1.9439074119390178 1.1965492087126446 +1.3836883498990562 1.9165290157600621 0.88704950898012325 +1.3257845443224261 1.932668171856823 0.84509837997657744 +1.20209118411409 1.9500144830974657 0.76202597787065107 +1.2653435626523066 1.9439074119390181 0.80345079128735586 +1.5664460834152067 1.8035785247401852 0.81724226648384946 +1.5764206304327451 1.7777665518334005 0.74936391388968104 +1.9500144830974657 1.2379740221293494 0.79790881588591023 +1.9439074119390181 1.1965492087126439 0.73465643734769381 +1.8035785247401852 1.1827577335161514 0.4335539165847937 +1.7777665518334005 1.2506360861103192 0.42357936956725528 +1.9500144830974659 0.76202597787065152 1.20209118411409 +1.9439074119390181 0.80345079128735619 1.2653435626523064 +1.8035785247401852 0.81724226648384946 1.5664460834152067 +1.7777665518334005 0.74936391388968104 1.5764206304327451 +1.2379740221293494 0.79790881588591023 1.9500144830974657 +1.1965492087126439 0.73465643734769381 1.9439074119390181 +1.1827577335161514 0.43355391658479359 1.8035785247401852 +1.2506360861103192 0.42357936956725528 1.7777665518334005 +1.3850500562448065 0.41285875964110408 1.712040460968117 +1.318023300158955 0.41663313718873862 1.7473582032263741 +1 0.32060342556491628 1.7337712822439113 +1.0000000000000002 0.26867774954383239 1.6820320857465041 +0.41285875964110363 0.28795953903188343 1.3850500562448067 +0.41663313718873873 0.25264179677362608 1.3180233001589552 +0.61631165010094446 0.083470984239937707 1.1129504910198773 +0.67421545567757435 0.067331828143176842 1.154901620023423 +0.79790881588591067 0.049985516902534166 1.2379740221293494 +0.73465643734769381 0.056092588060981941 1.1965492087126446 +0.61631165010094424 0.083470984239937596 0.88704950898012358 +0.67421545567757413 0.06733182814317662 0.84509837997657777 +1 0.3206034255649165 0.26622871775608858 +1 0.26867774954383261 0.31796791425349591 +1 0.1748847375117546 0.43503557314734065 +1.0000000000000002 0.22008392847609459 0.37411588821993691 +1.1827577335161514 0.43355391658479359 0.19642147525981479 +1.2506360861103192 0.42357936956725528 0.22223344816659951 +1.5649644268526597 1 0.17488473751175482 +1.6258841117800631 1 0.22008392847609459 +1.8035785247401854 0.81724226648384946 0.43355391658479348 +1.7777665518334005 0.74936391388968104 0.42357936956725517 +1.712040460968117 0.61494994375519374 0.41285875964110375 +1.7473582032263741 0.68197669984104503 0.41663313718873862 +1.9165290157600623 0.88704950898012358 0.61631165010094435 +1.932668171856823 0.84509837997657777 0.67421545567757435 +1.9500144830974655 1.2379740221293494 1.20209118411409 +1.9439074119390178 1.1965492087126446 1.2653435626523064 +1.9165290157600621 0.88704950898012358 1.3836883498990562 +1.932668171856823 0.84509837997657777 1.3257845443224261 +1.9500144830974659 0.76202597787065152 0.79790881588591056 +1.9439074119390183 0.80345079128735619 0.73465643734769381 +1.9165290157600623 1.1129504910198773 0.61631165010094424 +1.932668171856823 1.1549016200234223 0.67421545567757413 +1.5871412403588967 1.7120404609681168 0.61494994375519396 +1.5833668628112616 1.7473582032263737 0.68197669984104503 +1.6793965744350836 1.7337712822439113 1 +1.7313222504561676 1.6820320857465041 1 +0.79790881588591023 0.049985516902534055 0.76202597787065152 +0.73465643734769381 0.056092588060981829 0.80345079128735619 +0.049985516902534055 0.76202597787065152 0.79790881588591023 +0.056092588060981829 0.80345079128735619 0.73465643734769381 +0.32060342556491639 0.26622871775608858 1 +0.26867774954383261 0.31796791425349591 1 +0.28795953903188365 0.61494994375519385 1.5871412403588971 +0.25264179677362608 0.68197669984104492 1.5833668628112616 +0.083470984239937707 0.88704950898012358 1.3836883498990558 +0.067331828143176842 0.84509837997657777 1.3257845443224259 +0.1748847375117546 0.43503557314734065 1 +0.22008392847609459 0.37411588821993691 1.0000000000000002 +0.43355391658479359 0.19642147525981479 1.1827577335161514 +0.42357936956725528 0.22223344816659951 1.2506360861103192 +1 0.17488473751175482 1.5649644268526597 +1 0.22008392847609459 1.6258841117800631 +0.81724226648384946 0.43355391658479348 1.8035785247401854 +0.74936391388968104 0.42357936956725517 1.7777665518334005 +0.28795953903188343 1.3850500562448067 0.41285875964110363 +0.25264179677362608 1.3180233001589552 0.41663313718873873 +0.083470984239937707 1.1129504910198773 0.61631165010094446 +0.067331828143176842 1.154901620023423 0.67421545567757435 +0.049985516902534055 0.76202597787065152 1.20209118411409 +0.056092588060981941 0.80345079128735619 1.2653435626523064 +0.08347098423993804 1.1129504910198773 1.3836883498990562 +0.067331828143176842 1.1549016200234223 1.3257845443224259 +1.6562122655612299 1.3949848817576367 1.6429404371401004 +1.4382389584574513 1.5296997941879908 1.7261988318135251 +1.2047014786826495 1.9270588370822881 1.3141006482208728 +1.0699865662522952 1.8438004424088632 1.5320739553246518 +0.47030020581200926 1.7261988318135253 1.4382389584574511 +0.60501511824236354 1.6429404371401004 1.6562122655612299 +0.46792604467534848 1.0699865662522952 1.8438004424088636 +0.68589935177912764 1.2047014786826495 1.9270588370822881 +1.2008600052687632 0.86528508756964573 1.9703129137821027 +1.2008600052687632 1.1347149124303546 1.9703129137821027 +0.79913999473123709 0.86528508756964573 0.029687086217897174 +0.79913999473123709 1.1347149124303546 0.029687086217897174 +0.34378773443876987 1.3949848817576367 0.3570595628598997 +0.56176104154254902 1.5296997941879913 0.27380116818647482 +0.7952985213173509 1.9270588370822881 0.68589935177912764 +0.93001343374770529 1.8438004424088634 0.46792604467534826 +1.5296997941879913 1.7261988318135248 0.56176104154254891 +1.3949848817576367 1.6429404371401006 0.34378773443876998 +1.5320739553246518 1.0699865662522952 0.15619955759113668 +1.3141006482208728 1.2047014786826495 0.07294116291771191 +1.0699865662522952 0.15619955759113668 1.5320739553246518 +1.2047014786826495 0.07294116291771191 1.3141006482208728 +0.86528508756964573 0.029687086217897174 0.79913999473123709 +1.1347149124303546 0.029687086217897174 0.79913999473123709 +1.3949848817576367 0.3570595628598997 0.34378773443876987 +1.5296997941879913 0.27380116818647482 0.56176104154254902 +1.9270588370822881 0.68589935177912764 0.7952985213173509 +1.8438004424088634 0.46792604467534826 0.93001343374770529 +1.7261988318135253 0.56176104154254913 1.5296997941879908 +1.6429404371401006 0.34378773443876998 1.3949848817576367 +1.6429404371401004 1.6562122655612299 1.3949848817576369 +1.7261988318135248 1.4382389584574513 1.5296997941879911 +0.029687086217897396 1.2008600052687632 1.1347149124303546 +0.029687086217897174 1.2008600052687632 0.86528508756964573 +0.68589935177912764 0.7952985213173509 1.9270588370822881 +0.46792604467534826 0.93001343374770529 1.8438004424088634 +0.27380116818647515 1.4382389584574511 1.5296997941879913 +0.3570595628598997 1.6562122655612304 1.3949848817576367 +0.79913999473123698 1.1347149124303548 1.9703129137821027 +0.79913999473123698 0.86528508756964573 1.9703129137821027 +1.4382389584574511 0.47030020581200926 1.7261988318135253 +1.6562122655612299 0.60501511824236354 1.6429404371401004 +1.3141006482208728 1.2047014786826495 1.9270588370822881 +1.5320739553246518 1.0699865662522952 1.8438004424088632 +1.9270588370822881 1.3141006482208728 1.2047014786826495 +1.8438004424088632 1.5320739553246518 1.0699865662522952 +1.3949848817576369 1.6429404371401004 1.6562122655612299 +1.5296997941879911 1.7261988318135248 1.4382389584574513 +1.1347149124303548 1.9703129137821027 0.79913999473123687 +0.86528508756964584 1.9703129137821027 0.79913999473123709 +0.93001343374770529 1.8438004424088634 1.5320739553246518 +0.7952985213173509 1.9270588370822881 1.3141006482208728 +0.15619955759113668 1.5320739553246518 1.0699865662522952 +0.07294116291771191 1.3141006482208728 1.2047014786826495 +0.56176104154254913 1.5296997941879908 1.7261988318135253 +0.34378773443876998 1.3949848817576367 1.6429404371401006 +0.34378773443876998 0.60501511824236354 1.6429404371401006 +0.56176104154254913 0.47030020581200926 1.7261988318135253 +1.4382389584574513 1.5296997941879913 0.27380116818647504 +1.6562122655612304 1.3949848817576367 0.3570595628598997 +1.6562122655612304 0.60501511824236343 0.3570595628598997 +1.4382389584574513 0.47030020581200915 0.27380116818647493 +1.2008600052687632 1.1347149124303546 0.029687086217897396 +1.2008600052687632 0.86528508756964573 0.029687086217897174 +0.68589935177912764 1.2047014786826495 0.072941162917711799 +0.46792604467534848 1.0699865662522952 0.15619955759113646 +0.07294116291771191 1.3141006482208728 0.7952985213173509 +0.15619955759113657 1.5320739553246518 0.93001343374770529 +0.60501511824236354 1.6429404371401004 0.34378773443876998 +0.47030020581200915 1.7261988318135253 0.56176104154254902 +0.86528508756964584 1.9703129137821027 1.2008600052687632 +1.1347149124303546 1.9703129137821027 1.2008600052687632 +1.0699865662522952 1.8438004424088636 0.46792604467534848 +1.2047014786826495 1.9270588370822881 0.68589935177912764 +1.8438004424088634 1.5320739553246518 0.93001343374770529 +1.9270588370822881 1.3141006482208728 0.7952985213173509 +1.8438004424088636 0.46792604467534848 1.0699865662522952 +1.9270588370822881 0.68589935177912764 1.2047014786826495 +1.5320739553246518 0.93001343374770529 1.8438004424088634 +1.3141006482208728 0.7952985213173509 1.9270588370822881 +1.5296997941879913 0.27380116818647515 1.4382389584574511 +1.3949848817576367 0.3570595628598997 1.6562122655612304 +0.60501511824236343 0.3570595628598997 1.6562122655612304 +0.47030020581200915 0.27380116818647493 1.4382389584574513 +1.1347149124303546 0.029687086217897396 1.2008600052687632 +0.86528508756964573 0.029687086217897174 1.2008600052687632 +1.2047014786826495 0.072941162917711799 0.68589935177912764 +1.0699865662522952 0.15619955759113646 0.46792604467534848 +1.3141006482208724 0.7952985213173509 0.072941162917711799 +1.5320739553246518 0.93001343374770529 0.15619955759113657 +1.6429404371401006 0.34378773443876998 0.60501511824236354 +1.7261988318135253 0.56176104154254913 0.47030020581200926 +1.9703129137821027 1.2008600052687632 0.86528508756964573 +1.9703129137821027 1.2008600052687632 1.1347149124303546 +1.9703129137821027 0.79913999473123709 1.1347149124303546 +1.9703129137821027 0.79913999473123709 0.86528508756964584 +1.7261988318135253 1.4382389584574511 0.47030020581200926 +1.6429404371401004 1.6562122655612299 0.60501511824236354 +0.3570595628598997 0.34378773443876987 1.3949848817576367 +0.27380116818647504 0.56176104154254891 1.5296997941879913 +0.072941162917711799 0.68589935177912764 1.2047014786826495 +0.15619955759113646 0.46792604467534848 1.0699865662522952 +0.7952985213173509 0.072941162917711799 1.3141006482208724 +0.93001343374770529 0.15619955759113657 1.5320739553246518 +0.3570595628598997 1.6562122655612304 0.60501511824236343 +0.27380116818647493 1.4382389584574513 0.47030020581200915 +0.029687086217897174 0.79913999473123709 0.86528508756964573 +0.029687086217897174 0.79913999473123709 1.1347149124303546 +1.0650724998901953 1.6494337430038146 1.7576287898477037 +1.143241458288871 1.4447847530509046 1.8841088214019377 +1.1620856567445474 1.0671746383702749 1.984487586431394 +1.3878111467046637 1.20668066329285 1.898268121393853 +0.87351996844576596 1.6114818012702035 1.7810843797781308 +1.1264800315542343 1.611481801270203 1.7810843797781311 +1.4879855916616425 1.4689407649943766 1.7361824646493051 +1.4017661266241019 1.6946662549544924 1.5966764397267301 +0.8567585417111292 1.444784753050905 1.8841088214019377 +0.93492750010980485 1.6494337430038146 1.7576287898477037 +1.1395060249225755 1.8567519116990399 1.4965019947697513 +0.86049397507742498 1.8567519116990399 1.4965019947697515 +1.0379519417336116 1.3797122531607096 1.9243258380670021 +0.83330295178070157 1.5061922847149436 1.8461568796683263 +0.59823387337589862 1.6946662549544926 1.5966764397267301 +0.51201440833835776 1.4689407649943764 1.7361824646493056 +1.1666970482192984 1.5061922847149436 1.8461568796683263 +0.96204805826638895 1.3797122531607096 1.9243258380670021 +0.61218885329533657 1.2066806632928504 1.8982681213938526 +0.83791434325545278 1.0671746383702752 1.9844875864313942 +0.83330295178070157 1.5061922847149436 0.15384312033167369 +1.0379519417336116 1.3797122531607096 0.075674161932997919 +1.3878111467046634 1.2066806632928504 0.10173187860614719 +1.1620856567445474 1.0671746383702752 0.015512413568605998 +0.93492750010980485 1.6494337430038146 0.24237121015229646 +0.8567585417111292 1.4447847530509046 0.11589117859806208 +0.83791434325545289 1.0671746383702749 0.015512413568605887 +0.61218885329533657 1.2066806632928497 0.10173187860614707 +1.1264800315542343 1.611481801270203 0.21891562022186883 +0.87351996844576596 1.6114818012702032 0.21891562022186895 +0.51201440833835754 1.4689407649943766 0.26381753535069474 +0.59823387337589873 1.6946662549544924 0.40332356027326965 +1.143241458288871 1.4447847530509048 0.11589117859806231 +1.0650724998901953 1.6494337430038146 0.24237121015229646 +0.86049397507742531 1.8567519116990399 0.50349800523024868 +1.1395060249225755 1.8567519116990399 0.50349800523024868 +0.96204805826638895 1.3797122531607096 0.075674161932997919 +1.1666970482192986 1.5061922847149436 0.15384312033167369 +1.401766126624101 1.6946662549544926 0.40332356027326954 +1.4879855916616427 1.4689407649943764 0.26381753535069474 +1.3797122531607096 0.075674161932997919 0.96204805826638895 +1.5061922847149436 0.15384312033167369 1.1666970482192986 +1.6946662549544926 0.40332356027326954 1.401766126624101 +1.4689407649943764 0.26381753535069496 1.4879855916616429 +1.5061922847149436 0.15384312033167369 0.83330295178070157 +1.3797122531607096 0.075674161932997919 1.0379519417336116 +1.2066806632928504 0.1017318786061473 1.3878111467046637 +1.0671746383702752 0.015512413568605998 1.1620856567445474 +1.6494337430038146 0.24237121015229646 0.93492750010980485 +1.4447847530509046 0.11589117859806219 0.8567585417111292 +1.0671746383702749 0.015512413568605887 0.83791434325545289 +1.2066806632928497 0.10173187860614707 0.61218885329533657 +1.6114818012702032 0.21891562022186895 1.1264800315542343 +1.6114818012702032 0.21891562022186895 0.87351996844576596 +1.4689407649943766 0.26381753535069474 0.51201440833835754 +1.6946662549544924 0.40332356027326965 0.59823387337589873 +1.4447847530509048 0.11589117859806242 1.143241458288871 +1.6494337430038146 0.24237121015229646 1.0650724998901953 +1.8567519116990399 0.50349800523024868 0.86049397507742531 +1.8567519116990399 0.50349800523024868 1.1395060249225755 +1.7576287898477037 1.0650724998901953 1.6494337430038146 +1.8841088214019377 1.143241458288871 1.4447847530509046 +1.984487586431394 1.1620856567445474 1.0671746383702749 +1.898268121393853 1.3878111467046637 1.20668066329285 +1.0379519417336116 0.62028774683929067 0.075674161932997919 +0.15384312033167369 1.1666970482192984 0.4938077152850564 +0.075674161932997919 0.96204805826638895 0.62028774683929022 +0.015512413568605887 0.83791434325545289 0.93282536162972529 +0.21891562022186895 1.1264800315542343 1.6114818012702032 +0.21891562022186895 0.87351996844576596 1.6114818012702032 +0.26381753535069474 0.51201440833835754 1.4689407649943766 +0.40332356027326965 0.59823387337589873 1.6946662549544924 +0.55521524694909519 1.8841088214019377 1.143241458288871 +0.35056625699618549 1.7576287898477037 1.0650724998901953 +0.14324808830096003 1.4965019947697515 0.86049397507742531 +0.14324808830096014 1.4965019947697515 1.1395060249225755 +0.83330295178070157 0.49380771528505629 1.8461568796683263 +1.0379519417336116 0.62028774683929033 1.9243258380670021 +1.3878111467046637 0.79331933670715005 1.898268121393853 +1.1620856567445474 0.93282536162972529 1.984487586431394 +1.8841088214019377 0.8567585417111292 1.444784753050905 +1.7576287898477037 0.93492750010980485 1.6494337430038146 +1.4965019947697513 1.1395060249225755 1.8567519116990399 +1.4965019947697515 0.86049397507742498 1.8567519116990399 +1.7810843797781308 0.87351996844576596 1.6114818012702035 +1.7810843797781311 1.1264800315542343 1.611481801270203 +1.7361824646493051 1.4879855916616425 1.4689407649943764 +1.5966764397267301 1.4017661266241017 1.6946662549544924 +1.6114818012702035 1.7810843797781308 0.87351996844576596 +1.6114818012702035 1.7810843797781308 1.1264800315542343 +1.4689407649943766 1.7361824646493051 1.4879855916616425 +1.6946662549544924 1.5966764397267301 1.4017661266241019 +1.6494337430038151 1.7576287898477032 1.0650724998901953 +1.4447847530509046 1.8841088214019377 1.143241458288871 +1.0671746383702749 1.984487586431394 1.1620856567445474 +1.2066806632928497 1.898268121393853 1.3878111467046634 +0.49380771528505629 1.8461568796683263 0.83330295178070157 +0.62028774683929033 1.9243258380670021 1.0379519417336116 +0.79331933670715005 1.898268121393853 1.3878111467046637 +0.93282536162972529 1.984487586431394 1.1620856567445474 +0.62028774683929067 1.9243258380670021 0.96204805826638862 +0.49380771528505629 1.8461568796683263 1.1666970482192989 +0.30533374504550748 1.5966764397267301 1.4017661266241017 +0.53105923500562402 1.7361824646493054 1.4879855916616427 +0.075674161932997919 0.96204805826638895 1.3797122531607096 +0.15384312033167369 1.1666970482192986 1.5061922847149436 +0.40332356027326965 1.4017661266241013 1.6946662549544924 +0.26381753535069508 1.4879855916616427 1.4689407649943766 +0.11589117859806242 1.143241458288871 1.4447847530509048 +0.24237121015229646 1.0650724998901953 1.6494337430038146 +0.50349800523024868 0.86049397507742531 1.8567519116990399 +0.50349800523024868 1.1395060249225755 1.8567519116990399 +0.93492750010980485 0.35056625699618549 1.7576287898477037 +0.8567585417111292 0.55521524694909519 1.8841088214019377 +0.83791434325545278 0.93282536162972529 1.9844875864313942 +0.61218885329533645 0.79331933670715005 1.898268121393853 +1.8841088214019377 1.143241458288871 0.55521524694909519 +1.7576287898477037 1.0650724998901953 0.35056625699618549 +1.4965019947697515 0.86049397507742531 0.14324808830096003 +1.4965019947697513 1.1395060249225755 0.14324808830096014 +1.0650724998901953 0.35056625699618549 0.24237121015229646 +1.143241458288871 0.55521524694909541 0.11589117859806231 +1.1620856567445474 0.93282536162972529 0.015512413568605998 +1.3878111467046634 0.79331933670715005 0.10173187860614719 +1.1666970482192984 0.4938077152850564 0.15384312033167369 +0.96204805826638895 0.62028774683929033 0.07567416193299803 +0.83791434325545289 0.93282536162972529 0.015512413568605887 +0.50349800523024868 1.1395060249225755 0.14324808830096003 +0.21891562022186895 1.1264800315542343 0.38851819872979687 +0.26381753535069463 1.4879855916616429 0.5310592350056238 +0.40332356027326977 1.4017661266241015 0.30533374504550737 +0.38851819872979698 1.7810843797781313 1.1264800315542343 +0.38851819872979698 1.7810843797781313 0.87351996844576596 +0.53105923500562391 1.7361824646493056 0.51201440833835743 +0.30533374504550737 1.5966764397267303 0.59823387337589851 +0.35056625699618538 1.7576287898477037 0.93492750010980485 +0.55521524694909519 1.8841088214019377 0.8567585417111292 +0.93282536162972529 1.9844875864313942 0.83791434325545266 +0.79331933670715016 1.898268121393853 0.61218885329533679 +1.5061922847149436 1.8461568796683263 1.1666970482192984 +1.3797122531607098 1.9243258380670021 0.96204805826638862 +1.2066806632928504 1.8982681213938526 0.61218885329533623 +1.0671746383702752 1.984487586431394 0.83791434325545278 +1.3797122531607098 1.9243258380670021 1.0379519417336116 +1.5061922847149436 1.8461568796683263 0.83330295178070157 +1.6946662549544926 1.5966764397267301 0.59823387337589862 +1.4689407649943764 1.7361824646493054 0.51201440833835765 +1.9243258380670021 0.96204805826638895 0.62028774683929067 +1.8461568796683263 1.1666970482192989 0.49380771528505629 +1.5966764397267303 1.4017661266241015 0.30533374504550737 +1.7361824646493054 1.4879855916616427 0.53105923500562402 +1.9243258380670021 1.0379519417336116 1.3797122531607096 +1.8461568796683263 0.83330295178070157 1.5061922847149436 +1.5966764397267301 0.59823387337589862 1.6946662549544926 +1.7361824646493056 0.51201440833835776 1.4689407649943764 +0.96204805826638895 0.62028774683929067 1.9243258380670021 +1.1666970482192989 0.49380771528505629 1.8461568796683263 +1.4017661266241015 0.30533374504550737 1.5966764397267303 +1.4879855916616427 0.53105923500562402 1.7361824646493054 +1.143241458288871 0.55521524694909519 1.8841088214019377 +1.0650724998901953 0.35056625699618549 1.7576287898477037 +0.86049397507742531 0.14324808830096003 1.4965019947697515 +1.1395060249225755 0.14324808830096014 1.4965019947697515 +0.35056625699618538 0.24237121015229635 1.0650724998901953 +0.55521524694909519 0.11589117859806231 1.143241458288871 +0.93282536162972529 0.015512413568605998 1.1620856567445474 +0.79331933670715005 0.10173187860614719 1.3878111467046634 +0.4938077152850564 0.15384312033167369 1.1666970482192984 +0.62028774683929022 0.075674161932997919 0.96204805826638895 +0.93282536162972529 0.015512413568605887 0.83791434325545289 +1.1395060249225755 0.14324808830096003 0.50349800523024868 +1.1264800315542343 0.38851819872979687 0.21891562022186895 +1.4879855916616429 0.5310592350056238 0.26381753535069463 +1.4017661266241017 0.30533374504550759 0.40332356027326965 +1.7810843797781308 1.1264800315542343 0.38851819872979676 +1.7810843797781313 0.87351996844576596 0.38851819872979698 +1.7361824646493056 0.51201440833835754 0.53105923500562391 +1.5966764397267303 0.59823387337589851 0.30533374504550737 +1.7576287898477037 0.93492750010980485 0.35056625699618549 +1.8841088214019377 0.8567585417111292 0.55521524694909519 +1.9844875864313942 0.83791434325545289 0.93282536162972529 +1.898268121393853 0.61218885329533679 0.79331933670715016 +1.8461568796683263 1.1666970482192984 1.5061922847149436 +1.9243258380670021 0.96204805826638895 1.3797122531607096 +1.8982681213938526 0.61218885329533657 1.2066806632928504 +1.984487586431394 0.83791434325545289 1.0671746383702752 +1.8461568796683263 0.83330295178070157 0.49380771528505629 +1.9243258380670021 1.0379519417336116 0.62028774683929033 +1.898268121393853 1.3878111467046637 0.79331933670715005 +1.984487586431394 1.1620856567445474 0.93282536162972529 +1.444784753050905 1.8841088214019377 0.8567585417111292 +1.6494337430038146 1.7576287898477037 0.93492750010980485 +1.8567519116990399 1.4965019947697513 1.1395060249225755 +1.8567519116990399 1.4965019947697515 0.86049397507742498 +0.62028774683929067 0.075674161932997919 1.0379519417336116 +0.075674161932997919 1.0379519417336116 0.62028774683929067 +0.14324808830096003 0.50349800523024868 1.1395060249225755 +0.24237121015229646 0.93492750010980485 1.6494337430038146 +0.11589117859806231 0.8567585417111292 1.4447847530509046 +0.015512413568605887 0.83791434325545289 1.0671746383702749 +0.10173187860614707 0.61218885329533657 1.2066806632928497 +0.38851819872979687 0.21891562022186895 1.1264800315542343 +0.5310592350056238 0.26381753535069463 1.4879855916616429 +0.30533374504550759 0.40332356027326965 1.4017661266241017 +1.1264800315542343 0.38851819872979665 1.7810843797781311 +0.87351996844576596 0.38851819872979698 1.7810843797781313 +0.51201440833835754 0.53105923500562391 1.7361824646493056 +0.59823387337589851 0.30533374504550737 1.5966764397267303 +0.24237121015229646 1.0650724998901953 0.35056625699618549 +0.11589117859806231 1.143241458288871 0.55521524694909541 +0.015512413568605998 1.1620856567445474 0.93282536162972529 +0.10173187860614707 1.3878111467046637 0.79331933670715005 +0.15384312033167369 0.83330295178070157 1.5061922847149436 +0.075674161932997919 1.0379519417336116 1.3797122531607096 +0.1017318786061473 1.3878111467046637 1.2066806632928504 +0.015512413568605998 1.1620856567445474 1.0671746383702752 +1.6492798617857436 1.2046978598347686 1.7324851174314406 +1.589425686808948 1.2073123918032649 1.7807681678543315 +1.4012770227944238 1.8539777216205118 1.3312080946370168 +1.4048073899588975 1.8217822259851766 1.4010049252683978 +0.59872297720557688 1.8539777216205122 1.3312080946370171 +0.66075903908278355 1.8623045076538935 1.3759607778954341 +0.35072013821425641 1.2046978598347684 1.7324851174314406 +0.38553016581808797 1.2728788208449453 1.7402458861856145 +1.0000000000000002 0.80342083704034495 1.9804879564227607 +0.95947771833128337 0.86807143088604799 1.9904306120773461 +1.0000000000000002 0.80342083704034484 0.019512043577239457 +1.0405222816687167 0.86807143088604799 0.009569387922653938 +0.35072013821425641 1.2046978598347684 0.26751488256855949 +0.41057431319105175 1.2073123918032649 0.21923183214566866 +0.59872297720557666 1.8539777216205122 0.66879190536298361 +0.5951926100411028 1.8217822259851768 0.59899507473160252 +1.401277022794424 1.8539777216205118 0.66879190536298383 +1.3392409609172167 1.8623045076538935 0.6240392221045663 +1.649279861785744 1.2046978598347684 0.26751488256855982 +1.6144698341819124 1.2728788208449453 0.25975411381438585 +1.2046978598347684 0.26751488256855982 1.649279861785744 +1.2728788208449453 0.25975411381438585 1.6144698341819124 +0.80342083704034495 0.019512043577239346 1.0000000000000002 +0.86807143088604799 0.009569387922653938 1.0405222816687167 +1.2046978598347686 0.2675148825685596 0.35072013821425641 +1.2073123918032649 0.21923183214566866 0.41057431319105175 +1.8539777216205122 0.66879190536298383 0.59872297720557643 +1.8217822259851768 0.59899507473160252 0.5951926100411028 +1.853977721620512 0.66879190536298383 1.4012770227944238 +1.8623045076538935 0.6240392221045663 1.3392409609172167 +1.7324851174314406 1.6492798617857436 1.2046978598347684 +1.7807681678543315 1.589425686808948 1.2073123918032649 +0.019512043577239457 1.0000000000000002 1.1965791629596561 +0.009569387922654049 0.95947771833128337 1.1319285691139529 +0.66879190536298383 0.59872297720557643 1.8539777216205122 +0.59899507473160252 0.5951926100411028 1.8217822259851768 +0.14602227837948833 1.3312080946370171 1.401277022794424 +0.1376954923461069 1.3759607778954341 1.3392409609172171 +1.0000000000000002 1.1965791629596558 1.9804879564227607 +1.0405222816687167 1.1319285691139529 1.9904306120773461 +1.3312080946370171 0.59872297720557688 1.8539777216205122 +1.3759607778954341 0.66075903908278355 1.8623045076538935 +1.3312080946370168 1.4012770227944238 1.8539777216205118 +1.4010049252683978 1.4048073899588975 1.8217822259851766 +1.8539777216205118 1.3312080946370168 1.4012770227944238 +1.8217822259851766 1.4010049252683978 1.4048073899588975 +1.2046978598347684 1.7324851174314406 1.6492798617857436 +1.2073123918032649 1.7807681678543315 1.589425686808948 +1.1965791629596561 1.9804879564227607 1 +1.1319285691139529 1.9904306120773461 1.0405222816687167 +0.79530214016523215 1.7324851174314406 1.6492798617857436 +0.72712117915505503 1.7402458861856145 1.6144698341819124 +0.26751488256855993 1.649279861785744 1.2046978598347684 +0.25975411381438585 1.6144698341819124 1.2728788208449453 +0.66879190536298383 1.4012770227944238 1.853977721620512 +0.6240392221045663 1.3392409609172167 1.8623045076538935 +0.35072013821425629 0.79530214016523215 1.7324851174314406 +0.41057431319105175 0.79268760819673556 1.7807681678543315 +1.3312080946370171 1.401277022794424 0.14602227837948833 +1.3759607778954341 1.3392409609172167 0.13769549234610667 +1.6492798617857436 0.79530214016523215 0.26751488256855938 +1.589425686808948 0.79268760819673556 0.21923183214566844 +1.0000000000000002 1.1965791629596558 0.019512043577239568 +0.95947771833128337 1.1319285691139529 0.009569387922654049 +0.66879190536298361 1.4012770227944238 0.146022278379488 +0.59899507473160241 1.4048073899588978 0.17821777401482342 +0.14602227837948811 1.3312080946370171 0.59872297720557643 +0.17821777401482353 1.401004925268398 0.59519261004110269 +0.79530214016523226 1.7324851174314406 0.35072013821425641 +0.79268760819673556 1.7807681678543315 0.41057431319105175 +0.80342083704034506 1.9804879564227607 1.0000000000000002 +0.86807143088604799 1.9904306120773461 0.95947771833128337 +1.2046978598347684 1.7324851174314404 0.35072013821425629 +1.2728788208449453 1.7402458861856145 0.38553016581808797 +1.7324851174314402 1.649279861785744 0.79530214016523226 +1.7402458861856145 1.6144698341819124 0.72712117915505503 +1.7324851174314406 0.35072013821425641 1.2046978598347684 +1.7402458861856145 0.38553016581808797 1.2728788208449453 +1.6492798617857436 0.79530214016523215 1.7324851174314406 +1.6144698341819124 0.72712117915505503 1.7402458861856145 +1.401277022794424 0.14602227837948833 1.3312080946370171 +1.3392409609172169 0.13769549234610667 1.3759607778954344 +0.79530214016523215 0.26751488256855938 1.6492798617857436 +0.79268760819673556 0.21923183214566844 1.589425686808948 +1.1965791629596561 0.019512043577239457 1.0000000000000002 +1.1319285691139529 0.009569387922654049 0.95947771833128337 +1.4012770227944238 0.146022278379488 0.66879190536298361 +1.4048073899588978 0.17821777401482342 0.59899507473160241 +1.3312080946370175 0.59872297720557643 0.14602227837948822 +1.401004925268398 0.59519261004110269 0.17821777401482342 +1.7324851174314406 0.35072013821425641 0.79530214016523226 +1.7807681678543315 0.41057431319105175 0.79268760819673556 +1.9804879564227607 1.0000000000000002 0.80342083704034484 +1.9904306120773461 0.95947771833128337 0.86807143088604799 +1.9804879564227607 1.0000000000000002 1.1965791629596558 +1.9904306120773461 1.0405222816687167 1.1319285691139529 +1.853977721620512 1.3312080946370168 0.59872297720557677 +1.8623045076538935 1.3759607778954341 0.66075903908278355 +0.2675148825685596 0.35072013821425641 1.2046978598347686 +0.21923183214566866 0.41057431319105175 1.2073123918032649 +0.14602227837948811 0.66879190536298361 1.401277022794424 +0.17821777401482342 0.59899507473160241 1.4048073899588978 +0.59872297720557643 0.14602227837948822 1.3312080946370175 +0.59519261004110269 0.17821777401482342 1.401004925268398 +0.26751488256855938 1.6492798617857436 0.79530214016523215 +0.21923183214566844 1.589425686808948 0.79268760819673556 +0.019512043577239346 1.0000000000000002 0.80342083704034495 +0.009569387922653938 1.0405222816687167 0.86807143088604799 +1.2681715176003199 1.6892965611519348 1.6730187872058684 +1.0397345885584115 1.2602649483574222 1.9647192955096329 +0.86172631781262787 1.7695778385021761 1.6234022291431622 +1.2840795446225892 1.4603930887008656 1.8410333026720758 +0.64637064705828351 1.4655650436231658 1.8112924693932408 +1.1358362255269414 1.7199153070653641 1.6806397508870434 +0.91971872264975896 1.1973935260228461 1.9770315820848792 +0.79987185965655649 1.6801807185069524 1.7051970771451348 +1.3040127948790106 1.3356672082102183 1.8915737467434819 +0.74047778163550215 1.3961011738843632 1.8807678912304873 +0.69598720512098966 1.3356672082102183 0.10842625325651789 +1.2595222183644981 1.3961011738843632 0.11923210876951273 +0.73182848239968035 1.6892965611519353 0.32698121279413161 +0.96026541144158861 1.2602649483574222 0.035280704490367243 +1.1382736821873722 1.7695778385021763 0.37659777085683765 +0.71592045537741122 1.4603930887008656 0.15896669732792434 +1.3536293529417167 1.4655650436231658 0.18870753060675938 +0.86416377447305925 1.7199153070653641 0.31936024911295635 +1.0802812773502413 1.1973935260228461 0.022968417915120942 +1.2001281403434438 1.6801807185069524 0.29480292285486542 +1.1973935260228461 0.022968417915120942 1.0802812773502413 +1.6801807185069524 0.29480292285486542 1.2001281403434438 +1.3356672082102183 0.10842625325651789 0.69598720512098966 +1.3961011738843634 0.11923210876951296 1.2595222183644981 +1.6892965611519353 0.32698121279413161 0.73182848239968035 +1.2602649483574222 0.035280704490367243 0.96026541144158861 +1.7695778385021763 0.37659777085683765 1.1382736821873722 +1.4603930887008658 0.15896669732792446 0.715920455377411 +1.465565043623166 0.18870753060675938 1.3536293529417167 +1.7199153070653641 0.31936024911295635 0.86416377447305925 +1.6730187872058684 1.2681715176003199 1.689296561151935 +1.9647192955096329 1.0397345885584115 1.2602649483574222 +0.91971872264975896 0.80260647397715423 0.022968417915120942 +0.108426253256518 1.3040127948790108 0.66433279178978188 +0.37659777085683765 1.1382736821873722 1.7695778385021763 +0.15896669732792446 0.715920455377411 1.4603930887008658 +0.53443495637683469 1.8112924693932411 1.3536293529417167 +0.280084692934636 1.6806397508870434 0.86416377447305925 +0.69598720512098988 0.66433279178978188 1.8915737467434823 +1.2595222183644981 0.60389882611563706 1.8807678912304873 +1.8112924693932408 0.64637064705828351 1.4655650436231658 +1.6806397508870434 1.1358362255269414 1.7199153070653641 +1.6234022291431622 0.86172631781262787 1.7695778385021761 +1.8410333026720758 1.2840795446225892 1.4603930887008656 +1.7695778385021761 1.6234022291431622 0.86172631781262787 +1.4603930887008656 1.8410333026720758 1.2840795446225892 +1.6892965611519348 1.6730187872058684 1.2681715176003199 +1.2602649483574224 1.9647192955096329 1.0397345885584115 +0.66433279178978188 1.8915737467434823 0.69598720512098966 +0.60389882611563706 1.8807678912304873 1.2595222183644981 +0.80260647397715423 1.9770315820848792 1.0802812773502413 +0.3198192814930475 1.7051970771451346 1.2001281403434438 +0.022968417915120942 1.0802812773502413 1.1973935260228461 +0.29480292285486542 1.2001281403434438 1.6801807185069524 +0.18870753060675938 1.3536293529417167 1.465565043623166 +0.31936024911295646 0.86416377447305925 1.7199153070653639 +0.73182848239968035 0.31070343884806495 1.6730187872058686 +0.96026541144158861 0.73973505164257791 1.9647192955096329 +1.8112924693932411 1.3536293529417167 0.53443495637683469 +1.6806397508870434 0.86416377447305925 0.280084692934636 +1.2681715176003199 0.31070343884806495 0.32698121279413161 +1.0397345885584115 0.73973505164257791 0.035280704490367243 +1.3040127948790108 0.66433279178978188 0.108426253256518 +0.31936024911295646 1.1358362255269414 0.28008469293463611 +0.15896669732792446 1.2840795446225892 0.53960691129913418 +0.23042216149782391 1.6234022291431627 1.1382736821873722 +0.53960691129913418 1.8410333026720758 0.71592045537741122 +0.31070343884806495 1.6730187872058686 0.73182848239968035 +0.73973505164257791 1.9647192955096329 0.96026541144158861 +1.3356672082102183 1.8915737467434819 1.3040127948790106 +1.3961011738843634 1.8807678912304873 0.74047778163550193 +1.1973935260228461 1.9770315820848792 0.91971872264975862 +1.6801807185069524 1.7051970771451348 0.79987185965655649 +1.9770315820848792 1.0802812773502413 0.80260647397715423 +1.7051970771451346 1.2001281403434438 0.3198192814930475 +1.9770315820848792 0.91971872264975896 1.1973935260228461 +1.7051970771451346 0.79987185965655649 1.6801807185069522 +1.0802812773502413 0.80260647397715423 1.9770315820848792 +1.2001281403434438 0.3198192814930475 1.7051970771451346 +1.3536293529417167 0.53443495637683469 1.8112924693932411 +0.86416377447305925 0.280084692934636 1.6806397508870434 +0.31070343884806495 0.32698121279413161 1.2681715176003199 +0.73973505164257791 0.035280704490367243 1.0397345885584115 +0.66433279178978188 0.108426253256518 1.3040127948790108 +1.1358362255269414 0.28008469293463611 0.31936024911295646 +1.2840795446225892 0.53960691129913418 0.15896669732792446 +1.6234022291431627 1.1382736821873722 0.23042216149782391 +1.8410333026720758 0.71592045537741122 0.53960691129913418 +1.6730187872058686 0.73182848239968035 0.31070343884806495 +1.9647192955096329 0.96026541144158861 0.73973505164257791 +1.8915737467434819 1.3040127948790106 1.3356672082102183 +1.8807678912304873 0.74047778163550215 1.3961011738843632 +1.8915737467434823 0.69598720512098988 0.66433279178978188 +1.8807678912304873 1.2595222183644981 0.60389882611563706 +1.465565043623166 1.8112924693932408 0.64637064705828351 +1.7199153070653641 1.6806397508870434 1.1358362255269414 +0.80260647397715423 0.022968417915120942 0.91971872264975896 +0.022968417915120942 0.91971872264975896 0.80260647397715423 +0.28008469293463611 0.31936024911295646 1.1358362255269414 +0.32698121279413161 0.73182848239968035 1.6892965611519353 +0.035280704490367243 0.96026541144158861 1.2602649483574222 +0.53960691129913396 0.15896669732792457 1.2840795446225894 +1.1382736821873722 0.23042216149782391 1.6234022291431627 +0.71592045537741122 0.53960691129913418 1.8410333026720758 +0.32698121279413161 1.2681715176003199 0.31070343884806495 +0.035280704490367243 1.0397345885584115 0.73973505164257791 +0.10842625325651789 0.69598720512098966 1.3356672082102183 +0.11923210876951296 1.2595222183644981 1.3961011738843634 +1.6267476188075718 1.5155632797953902 1.5842789803216091 +1.0687157005262189 1.9453832490724943 1.3186356302649234 +0.41572101967839148 1.6267476188075716 1.5155632797953906 +0.57018003072289591 1.0000000000000002 1.9029146105865324 +1.3186356302649234 0.93128429947378155 1.9453832490724945 +0.68136436973507708 0.93128429947378122 0.054616750927505398 +0.37325238119242876 1.5155632797953904 0.41572101967839081 +0.93128429947378166 1.9453832490724945 0.68136436973507686 +1.5842789803216091 1.6267476188075718 0.48443672020460993 +1.4298199692771043 1.0000000000000002 0.097085389413467671 +1.0000000000000002 0.097085389413467671 1.4298199692771043 +0.93128429947378155 0.054616750927505398 0.68136436973507708 +1.5155632797953904 0.41572101967839092 0.37325238119242865 +1.9453832490724945 0.68136436973507708 0.93128429947378155 +1.6267476188075718 0.48443672020460993 1.5842789803216091 +1.5842789803216091 1.6267476188075709 1.5155632797953906 +0.57018003072289591 1 0.097085389413467671 +0.05461675092750562 1.3186356302649231 1.0687157005262189 +0.68136436973507708 0.93128429947378155 1.9453832490724945 +0.37325238119242898 1.5155632797953906 1.5842789803216091 +0.6431779102269104 1.0000000000000002 1.9341723589627158 +0.68136436973507686 1.0687157005262189 1.9453832490724945 +1.5155632797953908 0.41572101967839115 1.6267476188075713 +1.3568220897730903 1.0000000000000002 1.9341723589627156 +1.3186356302649234 1.0687157005262189 1.9453832490724945 +1.9341723589627156 1.3568220897730903 1.0000000000000002 +1.9453832490724943 1.3186356302649234 1.0687157005262189 +1.5773502691896257 1.5773502691896257 1.5773502691896257 +1.5155632797953906 1.5842789803216091 1.6267476188075711 +1.0687157005262193 1.9453832490724945 0.68136436973507686 +1.0000000000000007 1.9341723589627156 1.3568220897730903 +1.0000000000000002 1.9029146105865324 1.4298199692771043 +0.065827641037284446 1.3568220897730903 1.0000000000000002 +0.097085389413467671 1.4298199692771043 1.0000000000000002 +0.4226497308103746 1.5773502691896262 1.5773502691896257 +0.48443672020460971 1.5842789803216091 1.6267476188075713 +0.42264973081037438 0.42264973081037427 1.577350269189626 +0.37325238119242876 0.48443672020460959 1.5842789803216091 +1.5773502691896257 1.5773502691896262 0.4226497308103746 +1.5155632797953902 1.5842789803216091 0.37325238119242876 +1.6267476188075713 0.48443672020460959 0.41572101967839103 +1.35682208977309 1.0000000000000002 0.065827641037284335 +1.3186356302649231 1.0687157005262189 0.054616750927505398 +0.6431779102269104 1.0000000000000002 0.065827641037284113 +0.68136436973507708 1.0687157005262189 0.054616750927505398 +0.054616750927505398 1.3186356302649231 0.93128429947378155 +0.42264973081037427 1.577350269189626 0.42264973081037438 +0.48443672020460971 1.5842789803216091 0.37325238119242865 +0.93128429947378155 1.9453832490724945 1.3186356302649234 +1.0000000000000007 1.9341723589627158 0.6431779102269104 +1.0000000000000002 1.9029146105865324 0.57018003072289591 +1.9029146105865324 1.4298199692771043 1 +1.9341723589627158 0.6431779102269104 1.0000000000000002 +1.9029146105865324 0.57018003072289591 1.0000000000000002 +1.4298199692771043 1 1.9029146105865324 +1.577350269189626 0.4226497308103746 1.577350269189626 +1.5842789803216091 0.37325238119242876 1.5155632797953902 +0.48443672020460959 0.41572101967839103 1.6267476188075713 +1.0000000000000002 0.065827641037284335 1.35682208977309 +1.0687157005262189 0.05461675092750562 1.3186356302649231 +1.0000000000000002 0.065827641037284113 0.6431779102269104 +1.0687157005262189 0.054616750927505398 0.68136436973507708 +1.3186356302649231 0.93128429947378155 0.054616750927505398 +1.5773502691896262 0.42264973081037449 0.42264973081037416 +1.5842789803216091 0.37325238119242876 0.48443672020460959 +1.9453832490724945 1.3186356302649234 0.93128429947378155 +1.9453832490724945 0.68136436973507708 1.0687157005262189 +1.6267476188075713 1.5155632797953908 0.41572101967839115 +1 0.097085389413467671 0.57018003072289591 +0.097085389413467671 0.57018003072289591 1.0000000000000002 +0.41572101967839092 0.37325238119242865 1.5155632797953904 +0.054616750927505398 0.68136436973507708 1.0687157005262189 +0.93128429947378155 0.054616750927505398 1.3186356302649231 +0.41572101967839103 1.6267476188075713 0.48443672020460948 +0.065827641037284113 0.6431779102269104 1.0000000000000002 +0.054616750927505398 0.68136436973507708 0.93128429947378155 +0.99999999999999989 1.5257311121191339 1.8506508083520397 +1 1.5739215462855711 1.8189102873387162 +0.94514285928638309 1.5400179687989204 1.8398638505656821 +0.96609642251334915 1.4851608280853035 1.8737674280523333 +1.0339035774866507 1.4851608280853035 1.8737674280523333 +1 1.5257311121191335 0.14934919164796001 +0.94514285928638309 1.5400179687989204 0.16013614943431764 +1 1.5739215462855709 0.1810897126612836 +1.0548571407136167 1.5400179687989204 0.16013614943431764 +1.0339035774866507 1.4851608280853033 0.12623257194766668 +1.5257311121191337 0.14934919164796012 0.99999999999999967 +1.4851608280853033 0.12623257194766668 0.96609642251334915 +1.5400179687989204 0.16013614943431764 0.94514285928638309 +1.5739215462855713 0.18108971266128371 1 +1.5400179687989204 0.16013614943431764 1.0548571407136167 +1.8506508083520397 0.99999999999999989 1.5257311121191339 +1.8189102873387162 1 1.5739215462855713 +1.0339035774866507 0.51483917191469653 0.12623257194766679 +0.16013614943431764 1.0548571407136167 0.45998203120107961 +0.16013614943431764 1.0548571407136167 1.5400179687989204 +0.51483917191469653 1.8737674280523331 1.0339035774866507 +0.94514285928638309 0.4599820312010795 1.8398638505656821 +1.8737674280523331 0.96609642251334915 1.4851608280853035 +1.5400179687989204 1.8398638505656821 0.94514285928638309 +1.5739215462855713 1.8189102873387162 1 +0.4599820312010795 1.8398638505656821 0.94514285928638309 +0.12623257194766668 0.96609642251334915 1.4851608280853033 +1 0.42607845371442854 1.8189102873387162 +1.8737674280523331 1.0339035774866507 0.5148391719146963 +1 0.42607845371442854 0.18108971266128371 +0.12623257194766668 0.96609642251334915 0.51483917191469664 +0.1493491916479599 0.99999999999999989 0.47426888788086663 +0.16013614943431764 0.94514285928638309 0.45998203120107972 +0.4742688878808663 1.8506508083520399 0.99999999999999989 +0.45998203120107972 1.8398638505656824 1.0548571407136167 +1.5400179687989204 1.8398638505656821 1.0548571407136167 +1.5257311121191339 1.8506508083520397 1 +1.4851608280853035 1.8737674280523331 1.0339035774866507 +1.8737674280523331 0.96609642251334915 0.51483917191469641 +1.8737674280523333 1.0339035774866507 1.4851608280853035 +0.96609642251334915 0.51483917191469641 1.8737674280523331 +0.99999999999999989 0.47426888788086619 1.8506508083520397 +1.0339035774866507 0.5148391719146963 1.8737674280523331 +0.42607845371442854 0.18108971266128371 1 +0.45998203120107961 0.16013614943431764 1.0548571407136167 +0.99999999999999967 0.4742688878808663 0.14934919164796012 +0.96609642251334915 0.51483917191469653 0.12623257194766679 +1.8398638505656821 1.0548571407136167 0.4599820312010795 +1.8506508083520397 0.99999999999999989 0.47426888788086619 +1.8189102873387162 1 0.42607845371442854 +0.51483917191469653 0.12623257194766679 1.0339035774866507 +0.4742688878808663 0.14934919164796012 0.99999999999999967 +0.51483917191469653 0.12623257194766679 0.96609642251334915 +0.14934919164796023 0.99999999999999989 1.5257311121191337 +0.1810897126612836 1 1.5739215462855709 +0.13700104792563472 0.9002428344740192 0.50474116197207619 +0.7696633065708306 0.66911870558671405 0.084870185893003991 +0.88373086464434825 0.44607638880232225 0.17559104740343046 +0.61218885329533657 0.79331933670715005 0.10173187860614719 +0.29128230231247842 0.93272292597567807 0.29772297467792341 +0.9002428344740192 0.50474116197207608 0.13700104792563472 +0.61001233692795442 0.098276862116930763 0.81343900392119461 +0.55521524694909541 0.11589117859806231 0.85675854171112931 +0.81343900392119461 0.6100123369279542 0.098276862116930763 +0.85675854171112931 0.55521524694909541 0.11589117859806231 +0.44607638880232214 0.17559104740343046 0.88373086464434814 +0.50349800523024868 0.86049397507742498 0.14324808830096003 +0.86100639327308426 0.10657204968447231 0.57283811630245096 +0.345924455343119 0.93100371799927484 0.24672402470815469 +0.93272292597567807 0.29772297467792341 0.29128230231247842 +0.93100371799927484 0.24672402470815469 0.345924455343119 +0.57283811630245096 0.86100639327308426 0.10657204968447231 +0.86049397507742498 0.14324808830096003 0.50349800523024868 +0.66911870558671394 0.084870185893003991 0.76966330657083049 +0.93492750010980485 0.35056625699618549 0.24237121015229646 +0.93834668108359476 0.40498399644609495 0.19865436684204019 +0.46792604467534826 0.93001343374770529 0.15619955759113657 +0.40498399644609495 0.19865436684204019 0.93834668108359476 +0.35056625699618549 0.24237121015229635 0.93492750010980485 +0.50474116197207608 0.13700104792563472 0.9002428344740192 +0.084870185893003991 0.7696633065708306 0.66911870558671405 +0.24237121015229635 0.93492750010980485 0.35056625699618549 +0.19865436684204019 0.93834668108359476 0.40498399644609495 +0.17559104740343046 0.88373086464434814 0.44607638880232214 +0.098276862116930763 0.81343900392119461 0.61001233692795442 +0.11589117859806231 0.85675854171112931 0.55521524694909541 +0.73088283263773501 0.076305915458627194 0.72730018625934878 +0.10657204968447231 0.57283811630245096 0.86100639327308426 +0.14324808830096003 0.50349800523024868 0.86049397507742498 +0.24672402470815469 0.345924455343119 0.93100371799927484 +0.29772297467792341 0.29128230231247842 0.93272292597567807 +0.79331933670715005 0.10173187860614707 0.61218885329533657 +0.10173187860614707 0.61218885329533657 0.79331933670715005 +0.072941162917711799 0.68589935177912764 0.7952985213173509 +0.93025980236669126 0.1995276593250811 0.4047014726639383 +0.93001343374770529 0.15619955759113657 0.46792604467534826 +0.1995276593250811 0.4047014726639383 0.93025980236669126 +0.4047014726639383 0.93025980236669126 0.1995276593250811 +0.7952985213173509 0.072941162917711799 0.68589935177912764 +0.076305915458627194 0.72730018625934878 0.73088283263773501 +0.15619955759113657 0.46792604467534826 0.93001343374770529 +0.68589935177912764 0.7952985213173509 0.072941162917711577 +0.72730018625934878 0.73088283263773501 0.076305915458627194 +3 1400 1442 179 +3 1402 1446 180 +3 1404 1450 181 +3 1406 1454 182 +3 1408 1438 183 +3 1410 1462 184 +3 1412 1464 185 +3 1414 1468 186 +3 1416 1472 187 +3 1418 1458 188 +3 1420 1480 189 +3 1422 1484 190 +3 1424 1486 191 +3 1426 1490 192 +3 1428 1476 193 +3 1430 1444 194 +3 1432 1506 195 +3 1434 1456 196 +3 1436 1452 197 +3 1438 1408 198 +3 1440 1478 199 +3 1442 1400 200 +3 1444 1430 201 +3 1446 1402 202 +3 1448 1470 203 +3 1450 1404 204 +3 1452 1436 205 +3 1454 1406 206 +3 1456 1434 207 +3 1458 1418 208 +3 1460 1488 209 +3 1462 1410 210 +3 1464 1412 211 +3 1466 1504 212 +3 1468 1414 213 +3 1470 1448 214 +3 1472 1416 215 +3 1474 1496 216 +3 1476 1428 217 +3 1478 1440 218 +3 1480 1420 219 +3 1482 1502 220 +3 1484 1422 221 +3 1486 1424 222 +3 1488 1460 223 +3 1490 1426 224 +3 1492 1494 225 +3 1494 1492 226 +3 1496 1474 227 +3 1498 1500 228 +3 1500 1498 229 +3 1502 1482 230 +3 1504 1466 231 +3 1506 1432 232 +3 1508 1514 233 +3 1510 1524 234 +3 1512 1518 235 +3 1514 1508 236 +3 1516 1522 237 +3 1518 1512 238 +3 1520 1526 239 +3 1522 1516 240 +3 1524 1510 241 +3 1526 1520 242 +3 1528 1534 243 +3 1530 1544 244 +3 1532 1538 245 +3 1534 1528 246 +3 1536 1542 247 +3 1538 1532 248 +3 1540 1546 249 +3 1542 1536 250 +3 1544 1530 251 +3 1546 1540 252 +3 1548 1554 253 +3 1550 1564 254 +3 1552 1558 255 +3 1554 1548 256 +3 1556 1562 257 +3 1558 1552 258 +3 1560 1566 259 +3 1562 1556 260 +3 1564 1550 261 +3 1566 1560 262 +3 1568 1596 263 +3 1570 1698 264 +3 1572 1636 2407 +3 1574 1730 265 +3 1576 1712 266 +3 1578 1620 267 +3 1580 1716 268 +3 1582 1612 269 +3 1584 1644 270 +3 1586 1624 271 +3 1588 1668 272 +3 1590 1666 273 +3 1592 1594 274 +3 1594 1592 275 +3 1596 1568 276 +3 1598 1708 277 +3 1600 1602 278 +3 1602 1600 279 +3 1604 1652 280 +3 1606 1650 281 +3 1608 1610 282 +3 1610 1608 283 +3 1612 1582 284 +3 1614 1734 285 +3 1616 1618 286 +3 1618 1616 287 +3 1620 1578 288 +3 1622 1726 289 +3 1624 1586 290 +3 1626 1662 291 +3 1628 1690 292 +3 1630 1688 293 +3 1632 1634 294 +3 1634 1632 295 +3 1636 1572 296 +3 1638 1640 2419 +3 1640 1638 297 +3 1642 1728 298 +3 1644 1584 299 +3 1646 1648 300 +3 1648 1646 301 +3 1650 1606 302 +3 1652 1604 303 +3 1654 1656 304 +3 1656 1654 305 +3 1658 1706 306 +3 1660 1704 307 +3 1662 1626 308 +3 1664 1700 309 +3 1666 1590 310 +3 1668 1588 311 +3 1670 1672 312 +3 1672 1670 313 +3 1674 1724 314 +3 1676 1722 315 +3 1678 1680 316 +3 1680 1678 317 +3 1682 1710 318 +3 1684 1686 2421 +3 1686 1684 319 +3 1688 1630 320 +3 1690 1628 321 +3 1692 1694 322 +3 1694 1692 323 +3 1696 1702 324 +3 1698 1570 325 +3 1700 1664 326 +3 1702 1696 327 +3 1704 1660 328 +3 1706 1658 329 +3 1708 1598 330 +3 1710 1682 2424 +3 1712 1576 2431 +3 1714 1720 2440 +3 1716 1580 331 +3 1718 1732 332 +3 1720 1714 333 +3 1722 1676 334 +3 1724 1674 335 +3 1726 1622 336 +3 1728 1642 337 +3 1730 1574 338 +3 1732 1718 339 +3 1734 1614 340 +3 1735 1930 341 +3 1736 1849 342 +3 1737 1938 343 +3 1738 1853 344 +3 1739 1946 345 +3 1740 1857 346 +3 1741 1954 347 +3 1742 1861 348 +3 1743 1922 349 +3 1744 1845 350 +3 1745 1969 351 +3 1746 1869 352 +3 1747 1973 353 +3 1748 1873 354 +3 1749 1981 355 +3 1750 1877 356 +3 1751 1989 357 +3 1752 1881 358 +3 1753 1962 359 +3 1754 1865 360 +3 1755 2005 361 +3 1756 1889 362 +3 1757 2012 363 +3 1758 1893 364 +3 1759 2016 365 +3 1760 1897 366 +3 1761 2024 367 +3 1762 1901 368 +3 1763 1997 369 +3 1764 1885 370 +3 1765 1934 371 +3 1766 1929 372 +3 25 24 2427 +3 2452 2409 373 +3 1767 2058 374 +3 1768 2053 375 +3 1769 1958 376 +3 1770 1953 377 +3 1771 1950 378 +3 1772 1945 379 +3 1773 1862 380 +3 1774 1957 381 +3 1775 2001 382 +3 1776 1996 383 +3 1777 1846 384 +3 1778 1925 385 +3 1779 1906 386 +3 1780 2035 387 +3 1781 1850 388 +3 1782 1933 389 +3 1783 1985 390 +3 1784 1980 391 +3 1785 1854 392 +3 1786 1941 393 +3 1787 1918 394 +3 1788 2057 395 +3 1789 1858 396 +3 1790 1949 397 +3 1791 1914 398 +3 1792 2049 399 +3 1793 1882 400 +3 1794 1992 401 +3 1795 2020 402 +3 1796 2015 403 +3 1797 1866 404 +3 1798 1965 405 +3 1799 1870 406 +3 1800 1970 407 +3 1801 2054 408 +3 1802 1917 409 +3 1803 1874 410 +3 1804 1976 411 +3 1805 1942 412 +3 1806 1937 413 +3 1807 1878 414 +3 1808 1984 415 +3 1809 2036 416 +3 1810 2031 417 +3 1811 1902 418 +3 1812 2027 419 +3 1813 1926 420 +3 1814 1921 421 +3 1815 1886 422 +3 1816 2000 423 +3 1817 2050 424 +3 1818 2045 425 +3 1819 1890 426 +3 1820 2008 427 +3 1821 1894 428 +3 1822 2013 429 +3 1823 1966 430 +3 1824 1961 431 +3 1825 1898 432 +3 1826 2019 433 +3 1827 2032 434 +3 1828 1905 435 +3 1829 2028 436 +3 1830 2023 437 +3 1831 1993 438 +3 1832 1988 439 +3 2423 86 85 +3 2449 2442 440 +3 144 143 2451 +3 2444 2443 441 +3 1833 2046 442 +3 1834 1913 443 +3 1835 2043 444 +3 1836 2039 445 +3 1837 2009 446 +3 1838 2004 447 +3 1839 1977 448 +3 1840 1972 449 +3 1841 1910 450 +3 1842 2042 451 +3 1843 1848 452 +3 1844 1859 453 +3 1845 1744 454 +3 1846 1777 455 +3 1847 1852 456 +3 1848 1843 457 +3 1849 1736 458 +3 1850 1781 459 +3 1851 1856 460 +3 1852 1847 461 +3 1853 1738 462 +3 1854 1785 463 +3 1855 1860 464 +3 1856 1851 465 +3 1857 1740 466 +3 1858 1789 467 +3 1859 1844 468 +3 1860 1855 469 +3 1861 1742 470 +3 1862 1773 471 +3 1863 1868 472 +3 1864 1879 473 +3 1865 1754 474 +3 1866 1797 475 +3 1867 1872 476 +3 1868 1863 477 +3 1869 1746 478 +3 1870 1799 479 +3 1871 1876 480 +3 1872 1867 481 +3 1873 1748 482 +3 1874 1803 483 +3 1875 1880 484 +3 1876 1871 485 +3 1877 1750 486 +3 1878 1807 487 +3 1879 1864 488 +3 1880 1875 489 +3 1881 1752 490 +3 1882 1793 491 +3 1883 1888 492 +3 1884 1899 493 +3 1885 1764 494 +3 1886 1815 495 +3 1887 1892 496 +3 1888 1883 497 +3 1889 1756 498 +3 1890 1819 499 +3 1891 1896 500 +3 1892 1887 501 +3 1893 1758 502 +3 1894 1821 503 +3 1895 1900 504 +3 1896 1891 505 +3 1897 1760 506 +3 1898 1825 507 +3 1899 1884 508 +3 1900 1895 509 +3 1901 1762 510 +3 1902 1811 511 +3 1903 1928 512 +3 1904 2025 513 +3 1905 1828 514 +3 1906 1779 515 +3 1907 1968 516 +3 1908 2052 517 +3 1909 2038 518 +3 1910 1841 519 +3 1911 1952 520 +3 1912 2040 521 +3 1913 1834 522 +3 1914 1791 523 +3 1915 1944 524 +3 1916 1974 525 +3 1917 1802 526 +3 1918 1787 527 +3 1919 1956 528 +3 1920 1998 529 +3 1921 1814 530 +3 1922 1743 531 +3 1923 1995 532 +3 1924 1927 533 +3 1925 1778 534 +3 1926 1813 535 +3 1927 1924 536 +3 1928 1903 537 +3 1929 1766 538 +3 1930 1735 539 +3 1931 2034 540 +3 1932 1935 541 +3 1933 1782 542 +3 1934 1765 543 +3 1935 1932 544 +3 1936 1982 545 +3 1937 1806 546 +3 1938 1737 547 +3 1939 1979 548 +3 1940 1943 549 +3 1941 1786 550 +3 1942 1805 551 +3 1943 1940 552 +3 1944 1915 553 +3 1945 1772 554 +3 1946 1739 555 +3 1947 2056 556 +3 1948 1951 557 +3 1949 1790 558 +3 1950 1771 559 +3 1951 1948 560 +3 1952 1911 561 +3 1953 1770 562 +3 1954 1741 563 +3 1955 2048 564 +3 1956 1919 565 +3 1957 1774 566 +3 1958 1769 567 +3 1959 1991 568 +3 1960 2017 569 +3 1961 1824 570 +3 1962 1753 571 +3 1963 2014 572 +3 1964 1967 573 +3 1965 1798 574 +3 1966 1823 575 +3 1967 1964 576 +3 1968 1907 577 +3 1969 1745 578 +3 2432 9 8 +3 1970 1800 579 +3 2417 2427 580 +3 1971 2051 581 +3 1972 1840 582 +3 1973 1747 583 +3 1974 1916 584 +3 1975 1978 585 +3 1976 1804 586 +3 1977 1839 587 +3 1978 1975 588 +3 1979 1939 589 +3 1980 1784 590 +3 1981 1749 591 +3 1982 1936 592 +3 1983 1986 593 +3 1984 1808 594 +3 1985 1783 595 +3 1986 1983 596 +3 1987 2033 597 +3 1988 1832 598 +3 1989 1751 599 +3 1990 2030 600 +3 1991 1959 601 +3 1992 1794 602 +3 1993 1831 603 +3 1994 2026 604 +3 1995 1923 605 +3 1996 1776 606 +3 1997 1763 607 +3 1998 1920 608 +3 1999 2002 609 +3 2000 1816 610 +3 2001 1775 611 +3 2002 1999 612 +3 2003 2047 613 +3 2004 1838 614 +3 2005 1755 615 +3 2006 2044 616 +3 2007 2010 617 +3 2008 1820 618 +3 2009 1837 619 +3 2010 2007 620 +3 2011 2037 621 +3 98 97 2442 +3 2012 1757 622 +3 66 65 2426 +3 2013 1822 623 +3 2423 2446 624 +3 2014 1963 625 +3 2015 1796 626 +3 2016 1759 627 +3 2017 1960 628 +3 2018 2021 629 +3 2019 1826 630 +3 2020 1795 631 +3 2021 2018 632 +3 2022 2029 633 +3 2023 1830 634 +3 2024 1761 635 +3 2025 1904 636 +3 2026 1994 637 +3 2027 1812 638 +3 2028 1829 639 +3 2029 2022 640 +3 2030 1990 641 +3 2031 1810 642 +3 2032 1827 643 +3 2033 1987 644 +3 2034 1931 645 +3 2035 1780 646 +3 2036 1809 647 +3 2037 2011 648 +3 2038 1909 649 +3 176 175 2436 +3 126 125 2428 +3 2039 1836 650 +3 2439 2451 651 +3 2040 1912 652 +3 2041 2055 653 +3 2042 1842 654 +3 2043 1835 655 +3 2044 2006 656 +3 2045 1818 657 +3 2046 1833 658 +3 2047 2003 659 +3 2048 1955 660 +3 2049 1792 661 +3 2050 1817 662 +3 2051 1971 663 +3 2052 1908 664 +3 2053 1768 665 +3 2054 1801 666 +3 2055 2041 667 +3 2056 1947 668 +3 2057 1788 669 +3 2058 1767 670 +3 2060 671 534 +3 1256 672 341 +3 2062 673 542 +3 1264 674 343 +3 2064 675 550 +3 1273 676 345 +3 2066 677 558 +3 1282 678 347 +3 2068 679 566 +3 1247 680 349 +3 2070 681 574 +3 1298 682 351 +3 2072 683 579 +3 1304 684 353 +3 2074 685 586 +3 1313 686 355 +3 2076 687 594 +3 1322 688 357 +3 2078 689 602 +3 1290 690 359 +3 2080 691 610 +3 1339 692 361 +3 2082 693 618 +3 1346 694 363 +3 2084 695 623 +3 1352 696 365 +3 2086 697 630 +3 1361 698 367 +3 2088 699 638 +3 1330 700 369 +3 2090 701 646 +3 1260 702 371 +3 2092 703 654 +3 1398 704 374 +3 2094 705 661 +3 1286 706 376 +3 2096 707 669 +3 1278 708 378 +3 2098 709 454 +3 1183 710 380 +3 2100 711 530 +3 1334 712 382 +3 2102 713 458 +3 1167 714 384 +3 2104 715 538 +3 1230 716 386 +3 2106 717 462 +3 1171 718 388 +3 2108 719 546 +3 1317 720 390 +3 2110 721 466 +3 1175 722 392 +3 2112 723 554 +3 1243 724 394 +3 2114 725 470 +3 1179 726 396 +3 2116 727 562 +3 1239 728 398 +3 2118 729 474 +3 1204 730 400 +3 2120 731 570 +3 1356 732 402 +3 2122 733 478 +3 1188 734 404 +3 2124 735 482 +3 1192 736 406 +3 2126 737 582 +3 1394 738 408 +3 2128 739 486 +3 1196 740 410 +3 2130 741 590 +3 1269 742 412 +3 2132 743 490 +3 1200 744 414 +3 2134 745 598 +3 1373 746 416 +3 2136 747 494 +3 1225 748 418 +3 2138 749 606 +3 1252 750 420 +3 2140 751 498 +3 1209 752 422 +3 2142 753 614 +3 1390 754 424 +3 2144 755 502 +3 1213 756 426 +3 2146 757 506 +3 1217 758 428 +3 2148 759 626 +3 1295 760 430 +3 2150 761 510 +3 1221 762 432 +3 2152 763 634 +3 1369 764 434 +3 2154 765 514 +3 1365 766 436 +3 2156 767 642 +3 1326 768 438 +3 2158 769 650 +3 1386 770 442 +3 2160 771 522 +3 1383 772 444 +3 2162 773 657 +3 1343 774 446 +3 2164 775 526 +3 1309 776 448 +3 2166 777 665 +3 1235 778 450 +3 2167 779 388 +3 1169 780 452 +3 2168 781 464 +3 1009 782 454 +3 2169 783 392 +3 1173 784 456 +3 2170 785 468 +3 997 786 458 +3 2171 787 396 +3 1177 788 460 +3 2172 789 452 +3 1000 790 462 +3 2173 791 380 +3 1181 792 464 +3 2174 793 456 +3 1003 794 466 +3 2175 795 384 +3 1165 796 468 +3 2176 797 460 +3 1006 798 470 +3 2177 799 406 +3 1190 800 472 +3 2178 801 484 +3 1024 802 474 +3 2179 803 410 +3 1194 804 476 +3 2180 805 488 +3 1012 806 478 +3 2181 807 414 +3 1198 808 480 +3 2182 809 472 +3 1015 810 482 +3 2183 811 400 +3 1202 812 484 +3 2184 813 476 +3 1018 814 486 +3 2185 815 404 +3 1186 816 488 +3 2186 817 480 +3 1021 818 490 +3 2187 819 426 +3 1211 820 492 +3 2188 821 504 +3 1039 822 494 +3 2189 823 428 +3 1215 824 496 +3 2190 825 508 +3 1027 826 498 +3 2191 827 432 +3 1219 828 500 +3 2192 829 492 +3 1030 830 502 +3 2193 831 418 +3 1223 832 504 +3 2194 833 496 +3 1033 834 506 +3 2195 835 422 +3 1207 836 508 +3 2196 837 500 +3 1036 838 510 +3 2197 839 341 +3 1254 840 512 +3 2198 841 604 +3 1137 842 514 +3 2199 843 351 +3 1297 844 516 +3 2200 845 408 +3 1392 846 517 +3 2201 847 347 +3 1280 848 520 +3 2202 849 667 +3 1150 850 522 +3 2203 851 345 +3 1271 852 524 +3 2204 853 588 +3 1098 854 526 +3 2205 855 376 +3 1284 856 528 +3 2206 857 612 +3 1116 858 530 +3 2207 859 369 +3 1328 860 532 +3 2208 861 512 +3 1062 862 534 +3 2209 863 420 +3 1250 864 536 +3 2210 865 636 +3 1042 866 538 +3 2211 867 416 +3 1371 868 540 +3 2212 869 592 +3 1068 870 542 +3 2213 871 371 +3 1258 872 544 +3 2214 873 596 +3 1104 874 546 +3 2215 875 355 +3 1311 876 548 +3 2216 877 524 +3 1074 878 550 +3 2217 879 412 +3 1267 880 552 +3 2218 881 584 +3 1053 882 554 +3 2219 883 374 +3 1396 884 556 +3 2220 885 520 +3 1080 886 558 +3 2221 887 378 +3 1276 888 560 +3 2222 889 652 +3 1050 890 562 +3 2223 891 424 +3 1388 892 564 +3 2224 893 608 +3 1056 894 566 +3 2225 895 438 +3 1324 896 568 +3 2226 897 632 +3 1131 898 570 +3 2227 899 365 +3 1350 900 572 +3 2228 901 516 +3 1092 902 574 +3 2229 903 430 +3 1293 904 576 +3 2230 905 663 +3 1095 906 579 +3 2231 907 517 +3 1159 908 582 +3 2232 909 394 +3 1241 910 584 +3 2233 911 548 +3 1101 912 586 +3 2234 913 448 +3 1307 914 588 +3 2235 915 552 +3 1071 916 590 +3 2236 917 343 +3 1262 918 592 +3 2237 919 644 +3 1107 920 594 +3 2238 921 390 +3 1315 922 596 +3 2239 923 540 +3 1143 924 598 +3 2240 925 434 +3 1367 926 600 +3 2241 927 628 +3 1086 928 602 +3 2242 929 436 +3 1363 930 604 +3 2243 931 536 +3 1059 932 606 +3 2244 933 349 +3 1245 934 608 +3 2245 935 659 +3 1119 936 610 +3 2246 937 382 +3 1332 938 612 +3 2247 939 564 +3 1156 940 614 +3 2248 941 442 +3 1384 942 616 +3 2249 943 648 +3 1125 944 618 +3 2250 945 446 +3 1341 946 620 +3 2251 947 572 +3 1128 948 623 +3 2252 949 576 +3 1089 950 626 +3 2253 951 359 +3 1288 952 628 +3 2254 953 640 +3 1134 954 630 +3 2255 955 402 +3 1354 956 632 +3 2256 957 600 +3 1140 958 634 +3 2257 959 386 +3 1228 960 636 +3 2258 961 532 +3 1113 962 638 +3 2259 963 367 +3 1359 964 640 +3 2260 965 568 +3 1110 966 642 +3 2261 967 357 +3 1320 968 644 +3 2262 969 544 +3 1065 970 646 +3 2263 971 363 +3 1345 972 648 +3 2264 973 450 +3 1234 974 649 +3 2265 975 616 +3 1153 976 650 +3 2266 977 398 +3 1237 978 652 +3 2267 979 556 +3 1162 980 654 +3 2268 981 620 +3 1122 982 657 +3 2269 983 361 +3 1337 984 659 +3 2270 985 528 +3 1083 986 661 +3 2271 987 353 +3 1302 988 663 +3 2272 989 649 +3 1047 990 665 +3 2273 991 444 +3 1381 992 667 +3 2274 993 560 +3 1077 994 669 +3 2275 995 372 +3 1170 996 342 +3 786 997 233 +3 713 2102 179 +3 2276 998 413 +3 1174 999 344 +3 790 1000 235 +3 717 2106 180 +3 2277 1001 379 +3 1178 1002 346 +3 794 1003 237 +3 721 2110 181 +3 2278 1004 377 +3 1182 1005 348 +3 798 1006 239 +3 725 2114 182 +3 2279 1007 421 +3 1166 1008 350 +3 782 1009 241 +3 709 2098 183 +3 2280 1010 373 +3 1191 1011 352 +3 806 1012 243 +3 733 2122 184 +3 2281 1013 449 +3 1195 1014 354 +3 810 1015 245 +3 735 2124 185 +3 2282 1016 391 +3 1199 1017 356 +3 814 1018 247 +3 739 2128 186 +3 2283 1019 439 +3 1203 1020 358 +3 818 1021 249 +3 743 2132 187 +3 2284 1022 431 +3 1187 1023 360 +3 802 1024 251 +3 729 2118 188 +3 2285 1025 447 +3 1212 1026 362 +3 826 1027 253 +3 751 2140 189 +3 2286 1028 440 +3 1216 1029 364 +3 830 1030 255 +3 755 2144 190 +3 2287 1031 403 +3 1220 1032 366 +3 834 1033 257 +3 757 2146 191 +3 2288 1034 437 +3 1224 1035 368 +3 838 1036 259 +3 761 2150 192 +3 2289 1037 383 +3 1208 1038 370 +3 822 1039 261 +3 747 2136 193 +3 2290 1040 389 +3 1255 1041 372 +3 866 1042 263 +3 715 2104 194 +3 2291 1043 407 +3 2422 1044 373 +3 46 45 2453 +3 2292 1045 395 +3 1393 1046 375 +3 990 1047 265 +3 777 2166 195 +3 2293 1048 381 +3 1281 1049 377 +3 890 1050 267 +3 727 2116 196 +3 2294 1051 397 +3 1272 1052 379 +3 882 1053 269 +3 723 2112 197 +3 2296 1054 348 +3 1285 1055 381 +3 894 1056 271 +3 679 2068 198 +3 2297 1057 423 +3 1329 1058 383 +3 932 1059 273 +3 749 2138 199 +3 2299 1060 350 +3 1251 1061 385 +3 862 1062 275 +3 671 2060 200 +3 2301 1063 435 +3 1372 1064 387 +3 970 1065 277 +3 701 2090 201 +3 2303 1066 342 +3 1259 1067 389 +3 870 1068 279 +3 673 2062 202 +3 2304 1069 415 +3 1312 1070 391 +3 916 1071 281 +3 741 2130 203 +3 2306 1072 344 +3 1268 1073 393 +3 878 1074 283 +3 675 2064 204 +3 2308 1075 409 +3 1397 1076 395 +3 994 1077 285 +3 707 2096 205 +3 2310 1078 346 +3 1277 1079 397 +3 886 1080 287 +3 677 2066 206 +3 2312 1081 443 +3 1389 1082 399 +3 986 1083 289 +3 705 2094 207 +3 2314 1084 358 +3 1325 1085 401 +3 928 1086 291 +3 689 2078 208 +3 2315 1087 433 +3 1351 1088 403 +3 950 1089 293 +3 759 2148 209 +3 2317 1090 360 +3 1294 1091 405 +3 902 1092 295 +3 681 2070 210 +3 2319 1093 352 +3 1300 1094 407 +3 906 1095 297 +3 683 2072 211 +3 2320 1096 375 +3 1242 1097 409 +3 854 1098 299 +3 775 2164 212 +3 2322 1099 354 +3 1308 1100 411 +3 912 1101 301 +3 685 2074 213 +3 2323 1102 393 +3 1263 1103 413 +3 874 1104 303 +3 719 2108 214 +3 2325 1105 356 +3 1316 1106 415 +3 920 1107 305 +3 687 2076 215 +3 2326 1108 387 +3 1368 1109 417 +3 966 1110 307 +3 767 2156 216 +3 2328 1111 368 +3 1364 1112 419 +3 962 1113 309 +3 699 2088 217 +3 2329 1114 385 +3 1246 1115 421 +3 858 1116 311 +3 711 2100 218 +3 2331 1117 370 +3 1333 1118 423 +3 936 1119 313 +3 691 2080 219 +3 2332 1120 399 +3 1385 1121 425 +3 982 1122 315 +3 773 2162 220 +3 2334 1123 362 +3 1342 1124 427 +3 944 1125 317 +3 693 2082 221 +3 2336 1126 364 +3 1349 1127 429 +3 948 1128 319 +3 695 2084 222 +3 2337 1129 405 +3 1289 1130 431 +3 898 1131 321 +3 731 2120 223 +3 2339 1132 366 +3 1355 1133 433 +3 954 1134 323 +3 697 2086 224 +3 2340 1135 417 +3 1229 1136 435 +3 842 1137 325 +3 765 2154 225 +3 2341 1138 419 +3 1360 1139 437 +3 958 1140 327 +3 763 2152 226 +3 2342 1141 401 +3 1321 1142 439 +3 924 1143 329 +3 745 2134 227 +3 2343 1144 429 +3 2418 1145 440 +3 105 104 2437 +3 2344 1146 445 +3 2438 1147 441 +3 165 164 2450 +3 2345 1148 425 +3 1238 1149 443 +3 850 1150 331 +3 771 2160 228 +3 2346 1151 451 +3 1378 1152 445 +3 976 1153 333 +3 769 2158 229 +3 2347 1154 427 +3 1338 1155 447 +3 940 1156 335 +3 753 2142 230 +3 2348 1157 411 +3 1303 1158 449 +3 908 1159 337 +3 737 2126 231 +3 2350 1160 441 +3 1382 1161 451 +3 980 1162 339 +3 703 2092 232 +3 2352 1163 461 +3 1180 1164 453 +3 796 1165 234 +3 785 2170 233 +3 1008 1166 531 +3 1060 2299 455 +3 714 1167 179 +3 795 2175 234 +3 2353 1168 465 +3 1163 2352 457 +3 780 1169 236 +3 789 2172 235 +3 996 1170 539 +3 1066 2303 459 +3 718 1171 180 +3 779 2167 236 +3 2354 1172 469 +3 1168 2353 461 +3 784 1173 238 +3 793 2174 237 +3 999 1174 547 +3 1072 2306 463 +3 722 1175 181 +3 783 2169 238 +3 2355 1176 453 +3 1172 2354 465 +3 788 1177 240 +3 797 2176 239 +3 1002 1178 555 +3 1078 2310 467 +3 726 1179 182 +3 787 2171 240 +3 1164 1180 457 +3 1176 2355 469 +3 792 1181 242 +3 781 2168 241 +3 1005 1182 563 +3 1054 2296 471 +3 710 1183 183 +3 791 2173 242 +3 2357 1184 481 +3 1201 1185 473 +3 816 1186 244 +3 805 2180 243 +3 1023 1187 571 +3 1090 2317 475 +3 734 1188 184 +3 815 2185 244 +3 2358 1189 485 +3 1184 2357 477 +3 800 1190 246 +3 809 2182 245 +3 1011 1191 578 +3 1093 2319 479 +3 736 1192 185 +3 799 2177 246 +3 2359 1193 489 +3 1189 2358 481 +3 804 1194 248 +3 813 2184 247 +3 1014 1195 583 +3 1099 2322 483 +3 740 1196 186 +3 803 2179 248 +3 2360 1197 473 +3 1193 2359 485 +3 808 1198 250 +3 817 2186 249 +3 1017 1199 591 +3 1105 2325 487 +3 744 1200 187 +3 807 2181 250 +3 1185 1201 477 +3 1197 2360 489 +3 812 1202 252 +3 801 2178 251 +3 1020 1203 599 +3 1084 2314 491 +3 730 1204 188 +3 811 2183 252 +3 2362 1205 501 +3 1222 1206 493 +3 836 1207 254 +3 825 2190 253 +3 1038 1208 607 +3 1117 2331 495 +3 752 1209 189 +3 835 2195 254 +3 2363 1210 505 +3 1205 2362 497 +3 820 1211 256 +3 829 2192 255 +3 1026 1212 615 +3 1123 2334 499 +3 756 1213 190 +3 819 2187 256 +3 2364 1214 509 +3 1210 2363 501 +3 824 1215 258 +3 833 2194 257 +3 1029 1216 622 +3 1126 2336 503 +3 758 1217 191 +3 823 2189 258 +3 2365 1218 493 +3 1214 2364 505 +3 828 1219 260 +3 837 2196 259 +3 1032 1220 627 +3 1132 2339 507 +3 762 1221 192 +3 827 2191 260 +3 1206 1222 497 +3 1218 2365 509 +3 832 1223 262 +3 821 2188 261 +3 1035 1224 635 +3 1111 2328 511 +3 748 1225 193 +3 831 2193 262 +3 2367 1226 533 +3 1362 1227 513 +3 960 1228 264 +3 865 2210 263 +3 1136 1229 643 +3 1063 2301 515 +3 716 1230 194 +3 959 2257 264 +3 2368 1231 573 +3 1347 2397 2411 +3 49 48 2407 +3 2369 1232 581 +3 1375 1233 518 +3 974 1234 266 +3 989 2272 265 +3 1147 2438 651 +3 1160 2350 519 +3 778 1235 195 +3 973 2264 266 +3 2370 1236 557 +3 1379 2405 521 +3 978 1237 268 +3 889 2222 267 +3 1149 1238 658 +3 1081 2312 523 +3 728 1239 196 +3 977 2266 268 +3 2371 1240 549 +3 1305 2385 525 +3 910 1241 270 +3 881 2218 269 +3 1097 1242 666 +3 1075 2308 527 +3 724 1243 197 +3 909 2232 270 +3 2372 1244 660 +3 1331 2391 529 +3 934 1245 272 +3 893 2224 271 +3 1115 1246 535 +3 1007 2279 531 +3 680 1247 198 +3 933 2244 272 +3 2373 1248 637 +3 1253 1249 533 +3 864 1250 274 +3 931 2243 273 +3 1061 1251 455 +3 1114 2329 535 +3 750 1252 199 +3 863 2209 274 +3 1249 1253 605 +3 1226 2367 537 +3 840 1254 276 +3 861 2208 275 +3 1041 1255 543 +3 995 2275 539 +3 672 1256 200 +3 839 2197 276 +3 2374 1257 597 +3 1261 2375 541 +3 872 1258 278 +3 969 2262 277 +3 1067 1259 459 +3 1040 2290 543 +3 702 1260 201 +3 871 2213 278 +3 2375 1261 645 +3 1314 2386 545 +3 918 1262 280 +3 869 2212 279 +3 1103 1263 551 +3 998 2276 547 +3 674 1264 202 +3 917 2236 280 +3 2376 1265 585 +3 1270 1266 549 +3 880 1267 282 +3 915 2235 281 +3 1073 1268 463 +3 1102 2323 551 +3 742 1269 203 +3 879 2217 282 +3 1266 1270 589 +3 1240 2371 553 +3 852 1271 284 +3 877 2216 283 +3 1052 1272 559 +3 1001 2277 555 +3 676 1273 204 +3 851 2203 284 +3 2377 1274 653 +3 1279 1275 557 +3 888 1276 286 +3 993 2274 285 +3 1079 1277 467 +3 1051 2294 559 +3 708 1278 205 +3 887 2221 286 +3 1275 1279 668 +3 1236 2370 561 +3 848 1280 288 +3 885 2220 287 +3 1049 1281 567 +3 1004 2278 563 +3 678 1282 206 +3 847 2201 288 +3 2378 1283 613 +3 1244 2372 565 +3 856 1284 290 +3 985 2270 289 +3 1055 1285 471 +3 1048 2293 567 +3 706 1286 207 +3 855 2205 290 +3 2379 1287 641 +3 1353 2398 569 +3 952 1288 292 +3 927 2241 291 +3 1130 1289 575 +3 1022 2284 571 +3 690 1290 208 +3 951 2253 292 +3 2380 1291 2426 +3 1296 1292 573 +3 904 1293 294 +3 949 2252 293 +3 1091 1294 475 +3 1129 2337 575 +3 760 1295 209 +3 903 2229 294 +3 1292 1296 625 +3 1231 2368 577 +3 844 1297 296 +3 901 2228 295 +3 1044 2422 580 +3 1010 2280 578 +3 682 1298 210 +3 843 2199 296 +3 2381 1299 518 +3 2434 2383 2433 +3 2419 17 16 +3 1094 1300 479 +3 1043 2291 580 +3 2448 20 19 +3 2383 2434 2406 +3 1391 1301 581 +3 988 1302 298 +3 905 2230 297 +3 1158 1303 587 +3 1013 2281 583 +3 684 1304 211 +3 987 2271 298 +3 2385 1305 553 +3 1310 1306 585 +3 914 1307 300 +3 853 2204 299 +3 1100 1308 483 +3 1157 2348 587 +3 776 1309 212 +3 913 2234 300 +3 1306 1310 525 +3 1265 2376 589 +3 876 1311 302 +3 911 2233 301 +3 1070 1312 595 +3 1016 2282 591 +3 686 1313 213 +3 875 2215 302 +3 2386 1314 541 +3 1318 2388 593 +3 922 1315 304 +3 873 2214 303 +3 1106 1316 487 +3 1069 2304 595 +3 720 1317 214 +3 921 2238 304 +3 2388 1318 545 +3 1370 1319 597 +3 968 1320 306 +3 919 2237 305 +3 1142 1321 603 +3 1019 2283 599 +3 688 1322 215 +3 967 2261 306 +3 2389 1323 633 +3 1287 2379 601 +3 896 1324 308 +3 965 2260 307 +3 1085 1325 491 +3 1141 2342 603 +3 768 1326 216 +3 895 2225 308 +3 2390 1327 513 +3 1248 2373 605 +3 860 1328 310 +3 961 2258 309 +3 1058 1329 611 +3 1037 2289 607 +3 700 1330 217 +3 859 2207 310 +3 2391 1331 565 +3 1335 2393 609 +3 938 1332 312 +3 857 2206 311 +3 1118 1333 495 +3 1057 2297 611 +3 712 1334 218 +3 937 2246 312 +3 2393 1335 529 +3 1387 1336 613 +3 984 1337 314 +3 935 2245 313 +3 1155 1338 619 +3 1025 2285 615 +3 692 1339 219 +3 983 2269 314 +3 2394 1340 2428 +3 1344 2395 617 +3 946 1341 316 +3 981 2268 315 +3 1124 1342 499 +3 1154 2347 619 +3 774 1343 220 +3 945 2250 316 +3 2395 1344 656 +3 1374 2401 621 +3 972 1345 318 +3 943 2249 317 +3 1145 2418 624 +3 1028 2286 622 +3 694 1346 221 +3 971 2263 318 +3 2397 1347 577 +3 2408 1348 2426 +3 1127 1349 503 +3 1144 2343 624 +3 2445 79 78 +3 1348 2408 2411 +3 1291 2380 625 +3 900 1350 320 +3 947 2251 319 +3 1088 1351 631 +3 1031 2287 627 +3 696 1352 222 +3 899 2227 320 +3 2398 1353 601 +3 1357 2400 629 +3 956 1354 322 +3 897 2226 321 +3 1133 1355 507 +3 1087 2315 631 +3 732 1356 223 +3 955 2255 322 +3 2400 1357 569 +3 1366 1358 633 +3 964 1359 324 +3 953 2254 323 +3 1139 1360 639 +3 1034 2288 635 +3 698 1361 224 +3 963 2259 324 +3 1227 1362 537 +3 1327 2390 637 +3 930 1363 326 +3 841 2198 325 +3 1112 1364 511 +3 1138 2341 639 +3 766 1365 225 +3 929 2242 326 +3 1358 1366 629 +3 1323 2389 641 +3 926 1367 328 +3 957 2256 327 +3 1109 1368 647 +3 1135 2340 643 +3 764 1369 226 +3 925 2240 328 +3 1319 1370 593 +3 1257 2374 645 +3 868 1371 330 +3 923 2239 329 +3 1064 1372 515 +3 1108 2326 647 +3 746 1373 227 +3 867 2211 330 +3 2401 1374 617 +3 1376 2403 2430 +3 1233 1375 664 +3 1299 2381 2406 +3 168 167 2431 +3 2403 1376 621 +3 2416 1377 2428 +3 2440 136 135 +3 1152 1378 655 +3 1146 2344 651 +3 139 138 2447 +3 2405 1379 561 +3 1395 1380 653 +3 992 1381 332 +3 849 2202 331 +3 1161 1382 519 +3 1151 2346 655 +3 772 1383 228 +3 991 2273 332 +3 1377 2416 2430 +3 1340 2394 656 +3 942 1384 334 +3 975 2265 333 +3 1121 1385 662 +3 1148 2345 658 +3 770 1386 229 +3 941 2248 334 +3 1336 1387 609 +3 1283 2378 660 +3 892 1388 336 +3 939 2247 335 +3 1082 1389 523 +3 1120 2332 662 +3 754 1390 230 +3 891 2223 336 +3 1301 1391 2433 +3 1232 2369 664 +3 846 1392 338 +3 907 2231 337 +3 1046 1393 670 +3 1096 2320 666 +3 738 1394 231 +3 845 2200 338 +3 1380 1395 521 +3 1274 2377 668 +3 884 1396 340 +3 979 2267 339 +3 1076 1397 527 +3 1045 2292 670 +3 704 1398 232 +3 883 2219 340 +3 1400 1167 1399 +3 1400 671 200 +3 1402 1171 1401 +3 1402 673 202 +3 1404 1175 1403 +3 1404 675 204 +3 1406 1179 1405 +3 1406 677 206 +3 1408 1183 1407 +3 1408 679 198 +3 1410 1188 1409 +3 1410 681 210 +3 1412 1192 1411 +3 1412 683 211 +3 1414 1196 1413 +3 1414 685 213 +3 1416 1200 1415 +3 1416 687 215 +3 1418 1204 1417 +3 1418 689 208 +3 1420 1209 1419 +3 1420 691 219 +3 1422 1213 1421 +3 1422 693 221 +3 1424 1217 1423 +3 1424 695 222 +3 1426 1221 1425 +3 1426 697 224 +3 1428 1225 1427 +3 1428 699 217 +3 1430 1230 1429 +3 1430 701 201 +3 1432 1235 1431 +3 1432 703 232 +3 1434 1239 1433 +3 1434 705 207 +3 1436 1243 1435 +3 1436 707 205 +3 1438 1247 1437 +3 1438 709 183 +3 1440 1252 1439 +3 1440 711 218 +3 1442 1256 1441 +3 1442 713 179 +3 1444 1260 1443 +3 1444 715 194 +3 1446 1264 1445 +3 1446 717 180 +3 1448 1269 1447 +3 1448 719 214 +3 1450 1273 1449 +3 1450 721 181 +3 1452 1278 1451 +3 1452 723 197 +3 1454 1282 1453 +3 1454 725 182 +3 1456 1286 1455 +3 1456 727 196 +3 1458 1290 1457 +3 1458 729 188 +3 1460 1295 1459 +3 1460 731 223 +3 1462 1298 1461 +3 1462 733 184 +3 1464 1304 1463 +3 1464 735 185 +3 1466 1309 1465 +3 1466 737 231 +3 1468 1313 1467 +3 1468 739 186 +3 1470 1317 1469 +3 1470 741 203 +3 1472 1322 1471 +3 1472 743 187 +3 1474 1326 1473 +3 1474 745 227 +3 1476 1330 1475 +3 1476 747 193 +3 1478 1334 1477 +3 1478 749 199 +3 1480 1339 1479 +3 1480 751 189 +3 1482 1343 1481 +3 1482 753 230 +3 1484 1346 1483 +3 1484 755 190 +3 1486 1352 1485 +3 1486 757 191 +3 1488 1356 1487 +3 1488 759 209 +3 1490 1361 1489 +3 1490 761 192 +3 1492 1365 1491 +3 1492 763 226 +3 1494 1369 1493 +3 1494 765 225 +3 1496 1373 1495 +3 1496 767 216 +3 1498 1383 1497 +3 1498 769 229 +3 1500 1386 1499 +3 1500 771 228 +3 1502 1390 1501 +3 1502 773 220 +3 1504 1394 1503 +3 1504 775 212 +3 1506 1398 1505 +3 1506 777 195 +3 1508 997 1507 +3 1508 779 236 +3 1510 1165 1509 +3 1510 781 241 +3 1512 1000 1511 +3 1512 783 238 +3 1514 1169 1513 +3 1514 785 233 +3 1516 1003 1515 +3 1516 787 240 +3 1518 1173 1517 +3 1518 789 235 +3 1520 1006 1519 +3 1520 791 242 +3 1522 1177 1521 +3 1522 793 237 +3 1524 1009 1523 +3 1524 795 234 +3 1526 1181 1525 +3 1526 797 239 +3 1528 1012 1527 +3 1528 799 246 +3 1530 1186 1529 +3 1530 801 251 +3 1532 1015 1531 +3 1532 803 248 +3 1534 1190 1533 +3 1534 805 243 +3 1536 1018 1535 +3 1536 807 250 +3 1538 1194 1537 +3 1538 809 245 +3 1540 1021 1539 +3 1540 811 252 +3 1542 1198 1541 +3 1542 813 247 +3 1544 1024 1543 +3 1544 815 244 +3 1546 1202 1545 +3 1546 817 249 +3 1548 1027 1547 +3 1548 819 256 +3 1550 1207 1549 +3 1550 821 261 +3 1552 1030 1551 +3 1552 823 258 +3 1554 1211 1553 +3 1554 825 253 +3 1556 1033 1555 +3 1556 827 260 +3 1558 1215 1557 +3 1558 829 255 +3 1560 1036 1559 +3 1560 831 262 +3 1562 1219 1561 +3 1562 833 257 +3 1564 1039 1563 +3 1564 835 254 +3 1566 1223 1565 +3 1566 837 259 +3 1568 1042 1567 +3 1568 839 276 +3 1570 1228 1569 +3 1570 841 325 +3 1572 2453 1571 +3 1572 843 296 +3 1574 1047 1573 +3 1574 845 338 +3 1576 1234 1575 +3 1576 2435 2431 +3 1578 1050 1577 +3 1578 847 288 +3 1580 1237 1579 +3 1580 849 331 +3 1582 1053 1581 +3 1582 851 284 +3 1584 1241 1583 +3 1584 853 299 +3 1586 1056 1585 +3 1586 855 290 +3 1588 1245 1587 +3 1588 857 311 +3 1590 1059 1589 +3 1590 859 310 +3 1592 1250 1591 +3 1592 861 275 +3 1594 1062 1593 +3 1594 863 274 +3 1596 1254 1595 +3 1596 865 263 +3 1598 1065 1597 +3 1598 867 330 +3 1600 1258 1599 +3 1600 869 279 +3 1602 1068 1601 +3 1602 871 278 +3 1604 1262 1603 +3 1604 873 303 +3 1606 1071 1605 +3 1606 875 302 +3 1608 1267 1607 +3 1608 877 283 +3 1610 1074 1609 +3 1610 879 282 +3 1612 1271 1611 +3 1612 881 269 +3 1614 1077 1613 +3 1614 883 340 +3 1616 1276 1615 +3 1616 885 287 +3 1618 1080 1617 +3 1618 887 286 +3 1620 1280 1619 +3 1620 889 267 +3 1622 1083 1621 +3 1622 891 336 +3 1624 1284 1623 +3 1624 893 271 +3 1626 1086 1625 +3 1626 895 308 +3 1628 1288 1627 +3 1628 897 321 +3 1630 1089 1629 +3 1630 899 320 +3 1632 1293 1631 +3 1632 901 295 +3 1634 1092 1633 +3 1634 903 294 +3 1636 1297 1635 +3 1636 2414 2407 +3 1638 2410 1637 +3 1638 905 297 +3 1640 1095 1639 +3 1640 2448 2419 +3 1642 1302 1641 +3 1642 907 337 +3 1644 1098 1643 +3 1644 909 270 +3 1646 1307 1645 +3 1646 911 301 +3 1648 1101 1647 +3 1648 913 300 +3 1650 1311 1649 +3 1650 915 281 +3 1652 1104 1651 +3 1652 917 280 +3 1654 1315 1653 +3 1654 919 305 +3 1656 1107 1655 +3 1656 921 304 +3 1658 1320 1657 +3 1658 923 329 +3 1660 1110 1659 +3 1660 925 328 +3 1662 1324 1661 +3 1662 927 291 +3 1664 1113 1663 +3 1664 929 326 +3 1666 1328 1665 +3 1666 931 273 +3 1668 1116 1667 +3 1668 933 272 +3 1670 1332 1669 +3 1670 935 313 +3 1672 1119 1671 +3 1672 937 312 +3 1674 1337 1673 +3 1674 939 335 +3 1676 1122 1675 +3 1676 941 334 +3 1678 1341 1677 +3 1678 943 317 +3 1680 1125 1679 +3 1680 945 316 +3 1682 1345 1681 +3 1682 2412 2424 +3 1684 2420 1683 +3 1684 947 319 +3 1686 1128 1685 +3 1686 2445 2421 +3 1688 1350 1687 +3 1688 949 293 +3 1690 1131 1689 +3 1690 951 292 +3 1692 1354 1691 +3 1692 953 323 +3 1694 1134 1693 +3 1694 955 322 +3 1696 1359 1695 +3 1696 957 327 +3 1698 1137 1697 +3 1698 959 264 +3 1700 1363 1699 +3 1700 961 309 +3 1702 1140 1701 +3 1702 963 324 +3 1704 1367 1703 +3 1704 965 307 +3 1706 1143 1705 +3 1706 967 306 +3 1708 1371 1707 +3 1708 969 277 +3 1710 2437 1709 +3 1710 971 318 +3 1712 2450 1711 +3 1712 973 266 +3 1714 2441 1713 +3 1714 975 333 +3 1716 1150 1715 +3 1716 977 268 +3 1718 1381 1717 +3 1718 979 339 +3 1720 1153 1719 +3 1720 2447 2440 +3 1722 1384 1721 +3 1722 981 315 +3 1724 1156 1723 +3 1724 983 314 +3 1726 1388 1725 +3 1726 985 289 +3 1728 1159 1727 +3 1728 987 298 +3 1730 1392 1729 +3 1730 989 265 +3 1732 1162 1731 +3 1732 991 332 +3 1734 1396 1733 +3 1734 993 285 +3 1735 839 1567 +3 1735 995 539 +3 1736 1066 1507 +3 1736 997 458 +3 1737 917 1651 +3 1737 998 547 +3 1738 1072 1511 +3 1738 1000 462 +3 1739 851 1581 +3 1739 1001 555 +3 1740 1078 1515 +3 1740 1003 466 +3 1741 847 1577 +3 1741 1004 563 +3 1742 1054 1519 +3 1742 1006 470 +3 1743 933 1667 +3 1743 1007 531 +3 1744 1060 1523 +3 1744 1009 454 +3 1745 843 1571 +3 1745 1010 578 +3 1746 1093 1527 +3 1746 1012 478 +3 1747 987 1727 +3 1747 1013 583 +3 1748 1099 1531 +3 1748 1015 482 +3 1749 875 1605 +3 1749 1016 591 +3 1750 1105 1535 +3 1750 1018 486 +3 1751 967 1705 +3 1751 1019 599 +3 1752 1084 1539 +3 1752 1021 490 +3 1753 951 1689 +3 1753 1022 571 +3 1754 1090 1543 +3 1754 1024 474 +3 1755 983 1723 +3 1755 1025 615 +3 1756 1123 1547 +3 1756 1027 498 +3 1757 971 1709 +3 1757 1028 622 +3 1758 1126 1551 +3 1758 1030 502 +3 1759 899 1629 +3 1759 1031 627 +3 1760 1132 1555 +3 1760 1033 506 +3 1761 963 1701 +3 1761 1034 635 +3 1762 1111 1559 +3 1762 1036 510 +3 1763 859 1589 +3 1763 1037 607 +3 1764 1117 1563 +3 1764 1039 494 +3 1765 871 1601 +3 1765 1040 543 +3 1766 995 1567 +3 1766 1042 538 +3 2427 2448 1639 +3 2427 1043 580 +3 2452 1010 1571 +3 42 41 2452 +3 1767 883 1613 +3 1767 1045 670 +3 1768 1096 1573 +3 1768 1047 665 +3 1769 855 1585 +3 1769 1048 567 +3 1770 1004 1577 +3 1770 1050 562 +3 1771 887 1617 +3 1771 1051 559 +3 1772 1001 1581 +3 1772 1053 554 +3 1773 791 1519 +3 1773 1054 471 +3 1774 1048 1585 +3 1774 1056 566 +3 1775 937 1671 +3 1775 1057 611 +3 1776 1037 1589 +3 1776 1059 606 +3 1777 795 1523 +3 1777 1060 455 +3 1778 1114 1593 +3 1778 1062 534 +3 1779 959 1697 +3 1779 1063 515 +3 1780 1108 1597 +3 1780 1065 646 +3 1781 779 1507 +3 1781 1066 459 +3 1782 1040 1601 +3 1782 1068 542 +3 1783 921 1655 +3 1783 1069 595 +3 1784 1016 1605 +3 1784 1071 590 +3 1785 783 1511 +3 1785 1072 463 +3 1786 1102 1609 +3 1786 1074 550 +3 1787 909 1643 +3 1787 1075 527 +3 1788 1045 1613 +3 1788 1077 669 +3 1789 787 1515 +3 1789 1078 467 +3 1790 1051 1617 +3 1790 1080 558 +3 1791 977 1715 +3 1791 1081 523 +3 1792 1120 1621 +3 1792 1083 661 +3 1793 811 1539 +3 1793 1084 491 +3 1794 1141 1625 +3 1794 1086 602 +3 1795 955 1693 +3 1795 1087 631 +3 1796 1031 1629 +3 1796 1089 626 +3 1797 815 1543 +3 1797 1090 475 +3 1798 1129 1633 +3 1798 1092 574 +3 1799 799 1527 +3 1799 1093 479 +3 1800 1043 1639 +3 1800 1095 579 +3 1801 845 1573 +3 1801 1096 666 +3 1802 1075 1643 +3 1802 1098 526 +3 1803 803 1531 +3 1803 1099 483 +3 1804 1157 1647 +3 1804 1101 586 +3 1805 879 1609 +3 1805 1102 551 +3 1806 998 1651 +3 1806 1104 546 +3 1807 807 1535 +3 1807 1105 487 +3 1808 1069 1655 +3 1808 1107 594 +3 1809 867 1597 +3 1809 1108 647 +3 1810 1135 1659 +3 1810 1110 642 +3 1811 831 1559 +3 1811 1111 511 +3 1812 1138 1663 +3 1812 1113 638 +3 1813 863 1593 +3 1813 1114 535 +3 1814 1007 1667 +3 1814 1116 530 +3 1815 835 1563 +3 1815 1117 495 +3 1816 1057 1671 +3 1816 1119 610 +3 1817 891 1621 +3 1817 1120 662 +3 1818 1148 1675 +3 1818 1122 657 +3 1819 819 1547 +3 1819 1123 499 +3 1820 1154 1679 +3 1820 1125 618 +3 1821 823 1551 +3 1821 1126 503 +3 1822 1144 1685 +3 1822 1128 623 +3 1823 903 1633 +3 1823 1129 575 +3 1824 1022 1689 +3 1824 1131 570 +3 1825 827 1555 +3 1825 1132 507 +3 1826 1087 1693 +3 1826 1134 630 +3 1827 925 1659 +3 1827 1135 643 +3 1828 1063 1697 +3 1828 1137 514 +3 1829 929 1663 +3 1829 1138 639 +3 1830 1034 1701 +3 1830 1140 634 +3 1831 895 1625 +3 1831 1141 603 +3 1832 1019 1705 +3 1832 1143 598 +3 2446 2445 1685 +3 2446 1144 624 +3 2449 1028 1709 +3 2437 101 2449 +3 2451 2447 1719 +3 2451 1146 651 +3 2444 1160 1711 +3 161 160 2444 +3 1833 941 1675 +3 1833 1148 658 +3 1834 1081 1715 +3 1834 1150 522 +3 1835 991 1731 +3 1835 1151 655 +3 1836 1146 1719 +3 1836 1153 650 +3 1837 945 1679 +3 1837 1154 619 +3 1838 1025 1723 +3 1838 1156 614 +3 1839 913 1647 +3 1839 1157 587 +3 1840 1013 1727 +3 1840 1159 582 +3 1841 973 1711 +3 1841 1160 519 +3 1842 1151 1731 +3 1842 1162 654 +3 1843 789 1517 +3 1843 1163 457 +3 1844 1176 1509 +3 1844 1165 468 +3 1845 709 1437 +3 1845 1166 350 +3 1846 1251 1399 +3 1846 1167 384 +3 1847 793 1521 +3 1847 1168 461 +3 1848 1180 1513 +3 1848 1169 452 +3 1849 713 1441 +3 1849 1170 342 +3 1850 1259 1401 +3 1850 1171 388 +3 1851 797 1525 +3 1851 1172 465 +3 1852 1163 1517 +3 1852 1173 456 +3 1853 717 1445 +3 1853 1174 344 +3 1854 1268 1403 +3 1854 1175 392 +3 1855 781 1509 +3 1855 1176 469 +3 1856 1168 1521 +3 1856 1177 460 +3 1857 721 1449 +3 1857 1178 346 +3 1858 1277 1405 +3 1858 1179 396 +3 1859 785 1513 +3 1859 1180 453 +3 1860 1172 1525 +3 1860 1181 464 +3 1861 725 1453 +3 1861 1182 348 +3 1862 1285 1407 +3 1862 1183 380 +3 1863 809 1537 +3 1863 1184 477 +3 1864 1197 1529 +3 1864 1186 488 +3 1865 729 1457 +3 1865 1187 360 +3 1866 1294 1409 +3 1866 1188 404 +3 1867 813 1541 +3 1867 1189 481 +3 1868 1201 1533 +3 1868 1190 472 +3 1869 733 1461 +3 1869 1191 352 +3 1870 1300 1411 +3 1870 1192 406 +3 1871 817 1545 +3 1871 1193 485 +3 1872 1184 1537 +3 1872 1194 476 +3 1873 735 1463 +3 1873 1195 354 +3 1874 1308 1413 +3 1874 1196 410 +3 1875 801 1529 +3 1875 1197 489 +3 1876 1189 1541 +3 1876 1198 480 +3 1877 739 1467 +3 1877 1199 356 +3 1878 1316 1415 +3 1878 1200 414 +3 1879 805 1533 +3 1879 1201 473 +3 1880 1193 1545 +3 1880 1202 484 +3 1881 743 1471 +3 1881 1203 358 +3 1882 1325 1417 +3 1882 1204 400 +3 1883 829 1557 +3 1883 1205 497 +3 1884 1218 1549 +3 1884 1207 508 +3 1885 747 1475 +3 1885 1208 370 +3 1886 1333 1419 +3 1886 1209 422 +3 1887 833 1561 +3 1887 1210 501 +3 1888 1222 1553 +3 1888 1211 492 +3 1889 751 1479 +3 1889 1212 362 +3 1890 1342 1421 +3 1890 1213 426 +3 1891 837 1565 +3 1891 1214 505 +3 1892 1205 1557 +3 1892 1215 496 +3 1893 755 1483 +3 1893 1216 364 +3 1894 1349 1423 +3 1894 1217 428 +3 1895 821 1549 +3 1895 1218 509 +3 1896 1210 1561 +3 1896 1219 500 +3 1897 757 1485 +3 1897 1220 366 +3 1898 1355 1425 +3 1898 1221 432 +3 1899 825 1553 +3 1899 1222 493 +3 1900 1214 1565 +3 1900 1223 504 +3 1901 761 1489 +3 1901 1224 368 +3 1902 1364 1427 +3 1902 1225 418 +3 1903 861 1591 +3 1903 1226 537 +3 1904 1327 1569 +3 1904 1228 636 +3 1905 765 1493 +3 1905 1229 435 +3 1906 1372 1429 +3 1906 1230 386 +3 1907 901 1631 +3 1907 1231 577 +3 1908 907 1641 +3 1908 1232 664 +3 1909 1299 1575 +3 1909 1234 649 +3 2443 2438 441 +3 1910 1382 1431 +3 1910 1235 450 +3 1911 885 1615 +3 1911 1236 561 +3 1912 1395 1579 +3 1912 1237 652 +3 1913 771 1499 +3 1913 1238 443 +3 1914 1389 1433 +3 1914 1239 398 +3 1915 877 1607 +3 1915 1240 553 +3 1916 1310 1583 +3 1916 1241 584 +3 1917 775 1503 +3 1917 1242 409 +3 1918 1397 1435 +3 1918 1243 394 +3 1919 985 1725 +3 1919 1244 565 +3 1920 1335 1587 +3 1920 1245 608 +3 1921 711 1439 +3 1921 1246 421 +3 1922 1166 1437 +3 1922 1247 349 +3 1923 961 1699 +3 1923 1248 605 +3 1924 1226 1591 +3 1924 1250 536 +3 1925 671 1399 +3 1925 1251 385 +3 1926 1246 1439 +3 1926 1252 420 +3 1927 931 1665 +3 1927 1253 533 +3 1928 1362 1595 +3 1928 1254 512 +3 1929 715 1443 +3 1929 1255 372 +3 1930 1170 1441 +3 1930 1256 341 +3 1931 923 1657 +3 1931 1257 645 +3 1932 1314 1599 +3 1932 1258 544 +3 1933 673 1401 +3 1933 1259 389 +3 1934 1255 1443 +3 1934 1260 371 +3 1935 969 1707 +3 1935 1261 541 +3 1936 1318 1603 +3 1936 1262 592 +3 1937 719 1447 +3 1937 1263 413 +3 1938 1174 1445 +3 1938 1264 343 +3 1939 911 1645 +3 1939 1265 589 +3 1940 1240 1607 +3 1940 1267 552 +3 1941 675 1403 +3 1941 1268 393 +3 1942 1263 1447 +3 1942 1269 412 +3 1943 915 1649 +3 1943 1270 549 +3 1944 1305 1611 +3 1944 1271 524 +3 1945 723 1451 +3 1945 1272 379 +3 1946 1178 1449 +3 1946 1273 345 +3 1947 979 1717 +3 1947 1274 668 +3 1948 1236 1615 +3 1948 1276 560 +3 1949 677 1405 +3 1949 1277 397 +3 1950 1272 1451 +3 1950 1278 378 +3 1951 993 1733 +3 1951 1279 557 +3 1952 1379 1619 +3 1952 1280 520 +3 1953 727 1455 +3 1953 1281 377 +3 1954 1182 1453 +3 1954 1282 347 +3 1955 939 1673 +3 1955 1283 660 +3 1956 1331 1623 +3 1956 1284 528 +3 1957 679 1407 +3 1957 1285 381 +3 1958 1281 1455 +3 1958 1286 376 +3 1959 965 1703 +3 1959 1287 601 +3 1960 1357 1627 +3 1960 1288 628 +3 1961 731 1459 +3 1961 1289 431 +3 1962 1187 1457 +3 1962 1290 359 +3 1963 947 1683 +3 1963 1291 625 +3 1964 1231 1631 +3 1964 1293 576 +3 1965 681 1409 +3 1965 1294 405 +3 1966 1289 1459 +3 1966 1295 430 +3 1967 949 1687 +3 1967 1296 573 +3 1968 1347 1635 +3 1968 1297 516 +3 2409 2422 373 +3 1969 1191 1461 +3 1969 1298 351 +3 2436 2435 1575 +3 2436 1299 2406 +3 2432 1391 1637 +3 2410 13 12 +3 1970 683 1411 +3 1970 1300 407 +3 5 4 2433 +3 1971 1232 1641 +3 1971 1302 663 +3 1972 737 1465 +3 1972 1303 449 +3 1973 1195 1463 +3 1973 1304 353 +3 1974 881 1611 +3 1974 1305 525 +3 1975 1265 1645 +3 1975 1307 588 +3 1976 685 1413 +3 1976 1308 411 +3 1977 1303 1465 +3 1977 1309 448 +3 1978 853 1583 +3 1978 1310 585 +3 1979 1270 1649 +3 1979 1311 548 +3 1980 741 1469 +3 1980 1312 391 +3 1981 1199 1467 +3 1981 1313 355 +3 1982 869 1599 +3 1982 1314 545 +3 1983 1370 1653 +3 1983 1315 596 +3 1984 687 1415 +3 1984 1316 415 +3 1985 1312 1469 +3 1985 1317 390 +3 1986 873 1603 +3 1986 1318 593 +3 1987 1257 1657 +3 1987 1320 644 +3 1988 745 1473 +3 1988 1321 439 +3 1989 1203 1471 +3 1989 1322 357 +3 1990 957 1695 +3 1990 1323 641 +3 1991 1353 1661 +3 1991 1324 568 +3 1992 689 1417 +3 1992 1325 401 +3 1993 1321 1473 +3 1993 1326 438 +3 1994 841 1569 +3 1994 1327 637 +3 1995 1253 1665 +3 1995 1328 532 +3 1996 749 1477 +3 1996 1329 383 +3 1997 1208 1475 +3 1997 1330 369 +3 1998 893 1623 +3 1998 1331 529 +3 1999 1387 1669 +3 1999 1332 612 +3 2000 691 1419 +3 2000 1333 423 +3 2001 1329 1477 +3 2001 1334 382 +3 2002 857 1587 +3 2002 1335 609 +3 2003 1283 1673 +3 2003 1337 659 +3 2004 753 1481 +3 2004 1338 447 +3 2005 1212 1479 +3 2005 1339 361 +3 2006 975 1713 +3 2006 1340 656 +3 2007 1374 1677 +3 2007 1341 620 +3 2008 693 1421 +3 2008 1342 427 +3 2009 1338 1481 +3 2009 1343 446 +3 2010 981 1721 +3 2010 1344 617 +3 2011 1376 1681 +3 2011 1345 648 +3 2442 2418 440 +3 2012 1216 1483 +3 2012 1346 363 +3 2415 2414 1635 +3 2415 1347 2411 +3 2425 1291 1683 +3 2420 72 71 +3 2013 695 1423 +3 2013 1349 429 +3 2014 1296 1687 +3 2014 1350 572 +3 2015 759 1487 +3 2015 1351 403 +3 2016 1220 1485 +3 2016 1352 365 +3 2017 927 1661 +3 2017 1353 569 +3 2018 1366 1691 +3 2018 1354 632 +3 2019 697 1425 +3 2019 1355 433 +3 2020 1351 1487 +3 2020 1356 402 +3 2021 897 1627 +3 2021 1357 629 +3 2022 1323 1695 +3 2022 1359 640 +3 2023 763 1491 +3 2023 1360 437 +3 2024 1224 1489 +3 2024 1361 367 +3 2025 865 1595 +3 2025 1362 513 +3 2026 1248 1699 +3 2026 1363 604 +3 2027 699 1427 +3 2027 1364 419 +3 2028 1360 1491 +3 2028 1365 436 +3 2029 953 1691 +3 2029 1366 633 +3 2030 1287 1703 +3 2030 1367 600 +3 2031 767 1495 +3 2031 1368 417 +3 2032 1229 1493 +3 2032 1369 434 +3 2033 919 1653 +3 2033 1370 597 +3 2034 1261 1707 +3 2034 1371 540 +3 2035 701 1429 +3 2035 1372 387 +3 2036 1368 1495 +3 2036 1373 416 +3 2037 943 1677 +3 2037 1374 621 +3 2038 989 1729 +3 2038 1375 518 +3 2413 2412 1681 +3 2413 1376 2430 +3 2429 1340 1713 +3 130 129 2429 +3 2039 769 1497 +3 2039 1378 445 +3 2040 889 1619 +3 2040 1379 521 +3 2041 1274 1717 +3 2041 1381 667 +3 2042 703 1431 +3 2042 1382 451 +3 2043 1378 1497 +3 2043 1383 444 +3 2044 1344 1721 +3 2044 1384 616 +3 2045 773 1501 +3 2045 1385 425 +3 2046 1238 1499 +3 2046 1386 442 +3 2047 935 1669 +3 2047 1387 613 +3 2048 1244 1725 +3 2048 1388 564 +3 2049 705 1433 +3 2049 1389 399 +3 2050 1385 1501 +3 2050 1390 424 +3 2051 905 1637 +3 2051 1391 581 +3 2052 1375 1729 +3 2052 1392 517 +3 2053 777 1505 +3 2053 1393 375 +3 2054 1242 1503 +3 2054 1394 408 +3 2055 849 1579 +3 2055 1395 653 +3 2056 1279 1733 +3 2056 1396 556 +3 2057 707 1435 +3 2057 1397 395 +3 2058 1393 1505 +3 2058 1398 374 +3 2060 862 2059 +3 2060 672 200 +3 1256 1930 1441 +3 1256 1442 200 +3 2062 870 2061 +3 2062 674 202 +3 1264 1938 1445 +3 1264 1446 202 +3 2064 878 2063 +3 2064 676 204 +3 1273 1946 1449 +3 1273 1450 204 +3 2066 886 2065 +3 2066 678 206 +3 1282 1954 1453 +3 1282 1454 206 +3 2068 894 2067 +3 2068 680 198 +3 1247 1922 1437 +3 1247 1438 198 +3 2070 902 2069 +3 2070 682 210 +3 1298 1969 1461 +3 1298 1462 210 +3 2072 906 2071 +3 2072 684 211 +3 1304 1973 1463 +3 1304 1464 211 +3 2074 912 2073 +3 2074 686 213 +3 1313 1981 1467 +3 1313 1468 213 +3 2076 920 2075 +3 2076 688 215 +3 1322 1989 1471 +3 1322 1472 215 +3 2078 928 2077 +3 2078 690 208 +3 1290 1962 1457 +3 1290 1458 208 +3 2080 936 2079 +3 2080 692 219 +3 1339 2005 1479 +3 1339 1480 219 +3 2082 944 2081 +3 2082 694 221 +3 1346 2012 1483 +3 1346 1484 221 +3 2084 948 2083 +3 2084 696 222 +3 1352 2016 1485 +3 1352 1486 222 +3 2086 954 2085 +3 2086 698 224 +3 1361 2024 1489 +3 1361 1490 224 +3 2088 962 2087 +3 2088 700 217 +3 1330 1997 1475 +3 1330 1476 217 +3 2090 970 2089 +3 2090 702 201 +3 1260 1934 1443 +3 1260 1444 201 +3 2092 980 2091 +3 2092 704 232 +3 1398 2058 1505 +3 1398 1506 232 +3 2094 986 2093 +3 2094 706 207 +3 1286 1958 1455 +3 1286 1456 207 +3 2096 994 2095 +3 2096 708 205 +3 1278 1950 1451 +3 1278 1452 205 +3 2098 782 2097 +3 2098 710 183 +3 1183 1862 1407 +3 1183 1408 183 +3 2100 858 2099 +3 2100 712 218 +3 1334 2001 1477 +3 1334 1478 218 +3 2102 786 2101 +3 2102 714 179 +3 1167 1846 1399 +3 1167 1400 179 +3 2104 866 2103 +3 2104 716 194 +3 1230 1906 1429 +3 1230 1430 194 +3 2106 790 2105 +3 2106 718 180 +3 1171 1850 1401 +3 1171 1402 180 +3 2108 874 2107 +3 2108 720 214 +3 1317 1985 1469 +3 1317 1470 214 +3 2110 794 2109 +3 2110 722 181 +3 1175 1854 1403 +3 1175 1404 181 +3 2112 882 2111 +3 2112 724 197 +3 1243 1918 1435 +3 1243 1436 197 +3 2114 798 2113 +3 2114 726 182 +3 1179 1858 1405 +3 1179 1406 182 +3 2116 890 2115 +3 2116 728 196 +3 1239 1914 1433 +3 1239 1434 196 +3 2118 802 2117 +3 2118 730 188 +3 1204 1882 1417 +3 1204 1418 188 +3 2120 898 2119 +3 2120 732 223 +3 1356 2020 1487 +3 1356 1488 223 +3 2122 806 2121 +3 2122 734 184 +3 1188 1866 1409 +3 1188 1410 184 +3 2124 810 2123 +3 2124 736 185 +3 1192 1870 1411 +3 1192 1412 185 +3 2126 908 2125 +3 2126 738 231 +3 1394 2054 1503 +3 1394 1504 231 +3 2128 814 2127 +3 2128 740 186 +3 1196 1874 1413 +3 1196 1414 186 +3 2130 916 2129 +3 2130 742 203 +3 1269 1942 1447 +3 1269 1448 203 +3 2132 818 2131 +3 2132 744 187 +3 1200 1878 1415 +3 1200 1416 187 +3 2134 924 2133 +3 2134 746 227 +3 1373 2036 1495 +3 1373 1496 227 +3 2136 822 2135 +3 2136 748 193 +3 1225 1902 1427 +3 1225 1428 193 +3 2138 932 2137 +3 2138 750 199 +3 1252 1926 1439 +3 1252 1440 199 +3 2140 826 2139 +3 2140 752 189 +3 1209 1886 1419 +3 1209 1420 189 +3 2142 940 2141 +3 2142 754 230 +3 1390 2050 1501 +3 1390 1502 230 +3 2144 830 2143 +3 2144 756 190 +3 1213 1890 1421 +3 1213 1422 190 +3 2146 834 2145 +3 2146 758 191 +3 1217 1894 1423 +3 1217 1424 191 +3 2148 950 2147 +3 2148 760 209 +3 1295 1966 1459 +3 1295 1460 209 +3 2150 838 2149 +3 2150 762 192 +3 1221 1898 1425 +3 1221 1426 192 +3 2152 958 2151 +3 2152 764 226 +3 1369 2032 1493 +3 1369 1494 226 +3 2154 842 2153 +3 2154 766 225 +3 1365 2028 1491 +3 1365 1492 225 +3 2156 966 2155 +3 2156 768 216 +3 1326 1993 1473 +3 1326 1474 216 +3 2158 976 2157 +3 2158 770 229 +3 1386 2046 1499 +3 1386 1500 229 +3 2160 850 2159 +3 2160 772 228 +3 1383 2043 1497 +3 1383 1498 228 +3 2162 982 2161 +3 2162 774 220 +3 1343 2009 1481 +3 1343 1482 220 +3 2164 854 2163 +3 2164 776 212 +3 1309 1977 1465 +3 1309 1466 212 +3 2166 990 2165 +3 2166 778 195 +3 1235 1910 1431 +3 1235 1432 195 +3 2167 718 2105 +3 2167 780 236 +3 1169 1848 1513 +3 1169 1514 236 +3 2168 792 2097 +3 2168 782 241 +3 1009 1744 1523 +3 1009 1524 241 +3 2169 722 2109 +3 2169 784 238 +3 1173 1852 1517 +3 1173 1518 238 +3 2170 796 2101 +3 2170 786 233 +3 997 1736 1507 +3 997 1508 233 +3 2171 726 2113 +3 2171 788 240 +3 1177 1856 1521 +3 1177 1522 240 +3 2172 780 2105 +3 2172 790 235 +3 1000 1738 1511 +3 1000 1512 235 +3 2173 710 2097 +3 2173 792 242 +3 1181 1860 1525 +3 1181 1526 242 +3 2174 784 2109 +3 2174 794 237 +3 1003 1740 1515 +3 1003 1516 237 +3 2175 714 2101 +3 2175 796 234 +3 1165 1844 1509 +3 1165 1510 234 +3 2176 788 2113 +3 2176 798 239 +3 1006 1742 1519 +3 1006 1520 239 +3 2177 736 2123 +3 2177 800 246 +3 1190 1868 1533 +3 1190 1534 246 +3 2178 812 2117 +3 2178 802 251 +3 1024 1754 1543 +3 1024 1544 251 +3 2179 740 2127 +3 2179 804 248 +3 1194 1872 1537 +3 1194 1538 248 +3 2180 816 2121 +3 2180 806 243 +3 1012 1746 1527 +3 1012 1528 243 +3 2181 744 2131 +3 2181 808 250 +3 1198 1876 1541 +3 1198 1542 250 +3 2182 800 2123 +3 2182 810 245 +3 1015 1748 1531 +3 1015 1532 245 +3 2183 730 2117 +3 2183 812 252 +3 1202 1880 1545 +3 1202 1546 252 +3 2184 804 2127 +3 2184 814 247 +3 1018 1750 1535 +3 1018 1536 247 +3 2185 734 2121 +3 2185 816 244 +3 1186 1864 1529 +3 1186 1530 244 +3 2186 808 2131 +3 2186 818 249 +3 1021 1752 1539 +3 1021 1540 249 +3 2187 756 2143 +3 2187 820 256 +3 1211 1888 1553 +3 1211 1554 256 +3 2188 832 2135 +3 2188 822 261 +3 1039 1764 1563 +3 1039 1564 261 +3 2189 758 2145 +3 2189 824 258 +3 1215 1892 1557 +3 1215 1558 258 +3 2190 836 2139 +3 2190 826 253 +3 1027 1756 1547 +3 1027 1548 253 +3 2191 762 2149 +3 2191 828 260 +3 1219 1896 1561 +3 1219 1562 260 +3 2192 820 2143 +3 2192 830 255 +3 1030 1758 1551 +3 1030 1552 255 +3 2193 748 2135 +3 2193 832 262 +3 1223 1900 1565 +3 1223 1566 262 +3 2194 824 2145 +3 2194 834 257 +3 1033 1760 1555 +3 1033 1556 257 +3 2195 752 2139 +3 2195 836 254 +3 1207 1884 1549 +3 1207 1550 254 +3 2196 828 2149 +3 2196 838 259 +3 1036 1762 1559 +3 1036 1560 259 +3 2197 672 2059 +3 2197 840 276 +3 1254 1928 1595 +3 1254 1596 276 +3 2198 930 2153 +3 2198 842 325 +3 1137 1828 1697 +3 1137 1698 325 +3 2199 682 2069 +3 2199 844 296 +3 1297 1968 1635 +3 1297 1636 296 +3 2200 738 2125 +3 2200 846 338 +3 1392 2052 1729 +3 1392 1730 338 +3 2450 2444 1711 +3 2450 1712 2431 +3 2201 678 2065 +3 2201 848 288 +3 1280 1952 1619 +3 1280 1620 288 +3 2202 992 2159 +3 2202 850 331 +3 1150 1834 1715 +3 1150 1716 331 +3 2203 676 2063 +3 2203 852 284 +3 1271 1944 1611 +3 1271 1612 284 +3 2204 914 2163 +3 2204 854 299 +3 1098 1802 1643 +3 1098 1644 299 +3 2205 706 2093 +3 2205 856 290 +3 1284 1956 1623 +3 1284 1624 290 +3 2206 938 2099 +3 2206 858 311 +3 1116 1814 1667 +3 1116 1668 311 +3 2207 700 2087 +3 2207 860 310 +3 1328 1995 1665 +3 1328 1666 310 +3 2208 840 2059 +3 2208 862 275 +3 1062 1778 1593 +3 1062 1594 275 +3 2209 750 2137 +3 2209 864 274 +3 1250 1924 1591 +3 1250 1592 274 +3 2210 960 2103 +3 2210 866 263 +3 1042 1766 1567 +3 1042 1568 263 +3 2211 746 2133 +3 2211 868 330 +3 1371 2034 1707 +3 1371 1708 330 +3 2212 918 2061 +3 2212 870 279 +3 1068 1782 1601 +3 1068 1602 279 +3 2213 702 2089 +3 2213 872 278 +3 1258 1932 1599 +3 1258 1600 278 +3 2214 922 2107 +3 2214 874 303 +3 1104 1806 1651 +3 1104 1652 303 +3 2215 686 2073 +3 2215 876 302 +3 1311 1979 1649 +3 1311 1650 302 +3 2216 852 2063 +3 2216 878 283 +3 1074 1786 1609 +3 1074 1610 283 +3 2217 742 2129 +3 2217 880 282 +3 1267 1940 1607 +3 1267 1608 282 +3 2218 910 2111 +3 2218 882 269 +3 1053 1772 1581 +3 1053 1582 269 +3 2219 704 2091 +3 2219 884 340 +3 1396 2056 1733 +3 1396 1734 340 +3 2220 848 2065 +3 2220 886 287 +3 1080 1790 1617 +3 1080 1618 287 +3 2221 708 2095 +3 2221 888 286 +3 1276 1948 1615 +3 1276 1616 286 +3 2222 978 2115 +3 2222 890 267 +3 1050 1770 1577 +3 1050 1578 267 +3 2223 754 2141 +3 2223 892 336 +3 1388 2048 1725 +3 1388 1726 336 +3 2224 934 2067 +3 2224 894 271 +3 1056 1774 1585 +3 1056 1586 271 +3 2225 768 2155 +3 2225 896 308 +3 1324 1991 1661 +3 1324 1662 308 +3 2226 956 2119 +3 2226 898 321 +3 1131 1824 1689 +3 1131 1690 321 +3 2227 696 2083 +3 2227 900 320 +3 1350 2014 1687 +3 1350 1688 320 +3 2228 844 2069 +3 2228 902 295 +3 1092 1798 1633 +3 1092 1634 295 +3 2229 760 2147 +3 2229 904 294 +3 1293 1964 1631 +3 1293 1632 294 +3 2453 2452 1571 +3 2453 1572 2407 +3 2230 988 2071 +3 2230 906 297 +3 1095 1800 1639 +3 1095 1640 297 +3 2410 2432 1637 +3 2410 1638 2419 +3 2231 846 2125 +3 2231 908 337 +3 1159 1840 1727 +3 1159 1728 337 +3 2232 724 2111 +3 2232 910 270 +3 1241 1916 1583 +3 1241 1584 270 +3 2233 876 2073 +3 2233 912 301 +3 1101 1804 1647 +3 1101 1648 301 +3 2234 776 2163 +3 2234 914 300 +3 1307 1975 1645 +3 1307 1646 300 +3 2235 880 2129 +3 2235 916 281 +3 1071 1784 1605 +3 1071 1606 281 +3 2236 674 2061 +3 2236 918 280 +3 1262 1936 1603 +3 1262 1604 280 +3 2237 968 2075 +3 2237 920 305 +3 1107 1808 1655 +3 1107 1656 305 +3 2238 720 2107 +3 2238 922 304 +3 1315 1983 1653 +3 1315 1654 304 +3 2239 868 2133 +3 2239 924 329 +3 1143 1832 1705 +3 1143 1706 329 +3 2240 764 2151 +3 2240 926 328 +3 1367 2030 1703 +3 1367 1704 328 +3 2241 952 2077 +3 2241 928 291 +3 1086 1794 1625 +3 1086 1626 291 +3 2242 766 2153 +3 2242 930 326 +3 1363 2026 1699 +3 1363 1700 326 +3 2243 864 2137 +3 2243 932 273 +3 1059 1776 1589 +3 1059 1590 273 +3 2244 680 2067 +3 2244 934 272 +3 1245 1920 1587 +3 1245 1588 272 +3 2245 984 2079 +3 2245 936 313 +3 1119 1816 1671 +3 1119 1672 313 +3 2246 712 2099 +3 2246 938 312 +3 1332 1999 1669 +3 1332 1670 312 +3 2247 892 2141 +3 2247 940 335 +3 1156 1838 1723 +3 1156 1724 335 +3 2248 770 2157 +3 2248 942 334 +3 1384 2044 1721 +3 1384 1722 334 +3 2249 972 2081 +3 2249 944 317 +3 1125 1820 1679 +3 1125 1680 317 +3 2250 774 2161 +3 2250 946 316 +3 1341 2007 1677 +3 1341 1678 316 +3 2437 2449 1709 +3 2437 1710 2424 +3 2251 900 2083 +3 2251 948 319 +3 1128 1822 1685 +3 1128 1686 319 +3 2420 2425 1683 +3 2420 1684 2421 +3 2252 904 2147 +3 2252 950 293 +3 1089 1796 1629 +3 1089 1630 293 +3 2253 690 2077 +3 2253 952 292 +3 1288 1960 1627 +3 1288 1628 292 +3 2254 964 2085 +3 2254 954 323 +3 1134 1826 1693 +3 1134 1694 323 +3 2255 732 2119 +3 2255 956 322 +3 1354 2018 1691 +3 1354 1692 322 +3 2256 926 2151 +3 2256 958 327 +3 1140 1830 1701 +3 1140 1702 327 +3 2257 716 2103 +3 2257 960 264 +3 1228 1904 1569 +3 1228 1570 264 +3 2258 860 2087 +3 2258 962 309 +3 1113 1812 1663 +3 1113 1664 309 +3 2259 698 2085 +3 2259 964 324 +3 1359 2022 1695 +3 1359 1696 324 +3 2260 896 2155 +3 2260 966 307 +3 1110 1810 1659 +3 1110 1660 307 +3 2261 688 2075 +3 2261 968 306 +3 1320 1987 1657 +3 1320 1658 306 +3 2262 872 2089 +3 2262 970 277 +3 1065 1780 1597 +3 1065 1598 277 +3 2263 694 2081 +3 2263 972 318 +3 1345 2011 1681 +3 1345 1682 318 +3 2264 778 2165 +3 2264 974 266 +3 1234 1909 1575 +3 1234 1576 266 +3 2265 942 2157 +3 2265 976 333 +3 1153 1836 1719 +3 1153 1720 333 +3 2266 728 2115 +3 2266 978 268 +3 1237 1912 1579 +3 1237 1580 268 +3 2267 884 2091 +3 2267 980 339 +3 1162 1842 1731 +3 1162 1732 339 +3 2441 2429 1713 +3 2441 1714 2440 +3 2268 946 2161 +3 2268 982 315 +3 1122 1818 1675 +3 1122 1676 315 +3 2269 692 2079 +3 2269 984 314 +3 1337 2003 1673 +3 1337 1674 314 +3 2270 856 2093 +3 2270 986 289 +3 1083 1792 1621 +3 1083 1622 289 +3 2271 684 2071 +3 2271 988 298 +3 1302 1971 1641 +3 1302 1642 298 +3 2272 974 2165 +3 2272 990 265 +3 1047 1768 1573 +3 1047 1574 265 +3 2273 772 2159 +3 2273 992 332 +3 1381 2041 1717 +3 1381 1718 332 +3 2274 888 2095 +3 2274 994 285 +3 1077 1788 1613 +3 1077 1614 285 +3 2275 1041 2302 +3 2275 996 539 +3 1170 1849 1441 +3 1170 1930 539 +3 786 2170 2101 +3 786 2102 458 +3 713 1442 1441 +3 713 1849 458 +3 2276 1103 2305 +3 2276 999 547 +3 1174 1853 1445 +3 1174 1938 547 +3 790 2172 2105 +3 790 2106 462 +3 717 1446 1445 +3 717 1853 462 +3 2277 1052 2309 +3 2277 1002 555 +3 1178 1857 1449 +3 1178 1946 555 +3 794 2174 2109 +3 794 2110 466 +3 721 1450 1449 +3 721 1857 466 +3 2278 1049 2295 +3 2278 1005 563 +3 1182 1861 1453 +3 1182 1954 563 +3 798 2176 2113 +3 798 2114 470 +3 725 1454 1453 +3 725 1861 470 +3 2279 1115 2298 +3 2279 1008 531 +3 1166 1845 1437 +3 1166 1922 531 +3 782 2168 2097 +3 782 2098 454 +3 709 1438 1437 +3 709 1845 454 +3 2280 1044 2318 +3 2280 1011 578 +3 1191 1869 1461 +3 1191 1969 578 +3 806 2180 2121 +3 806 2122 478 +3 733 1462 1461 +3 733 1869 478 +3 2281 1158 2321 +3 2281 1014 583 +3 1195 1873 1463 +3 1195 1973 583 +3 810 2182 2123 +3 810 2124 482 +3 735 1464 1463 +3 735 1873 482 +3 2282 1070 2324 +3 2282 1017 591 +3 1199 1877 1467 +3 1199 1981 591 +3 814 2184 2127 +3 814 2128 486 +3 739 1468 1467 +3 739 1877 486 +3 2283 1142 2313 +3 2283 1020 599 +3 1203 1881 1471 +3 1203 1989 599 +3 818 2186 2131 +3 818 2132 490 +3 743 1472 1471 +3 743 1881 490 +3 2284 1130 2316 +3 2284 1023 571 +3 1187 1865 1457 +3 1187 1962 571 +3 802 2178 2117 +3 802 2118 474 +3 729 1458 1457 +3 729 1865 474 +3 2285 1155 2333 +3 2285 1026 615 +3 1212 1889 1479 +3 1212 2005 615 +3 826 2190 2139 +3 826 2140 498 +3 751 1480 1479 +3 751 1889 498 +3 2286 1145 2335 +3 2286 1029 622 +3 1216 1893 1483 +3 1216 2012 622 +3 830 2192 2143 +3 830 2144 502 +3 755 1484 1483 +3 755 1893 502 +3 2287 1088 2338 +3 2287 1032 627 +3 1220 1897 1485 +3 1220 2016 627 +3 834 2194 2145 +3 834 2146 506 +3 757 1486 1485 +3 757 1897 506 +3 2288 1139 2327 +3 2288 1035 635 +3 1224 1901 1489 +3 1224 2024 635 +3 838 2196 2149 +3 838 2150 510 +3 761 1490 1489 +3 761 1901 510 +3 2289 1058 2330 +3 2289 1038 607 +3 1208 1885 1475 +3 1208 1997 607 +3 822 2188 2135 +3 822 2136 494 +3 747 1476 1475 +3 747 1885 494 +3 2290 1067 2302 +3 2290 1041 543 +3 1255 1929 1443 +3 1255 1934 543 +3 866 2210 2103 +3 866 2104 538 +3 715 1444 1443 +3 715 1929 538 +3 2291 1094 2318 +3 2291 1044 580 +3 34 33 2422 +3 2422 2417 580 +3 2292 1076 2307 +3 2292 1046 670 +3 1393 2053 1505 +3 1393 2058 670 +3 990 2272 2165 +3 990 2166 665 +3 777 1506 1505 +3 777 2053 665 +3 2293 1055 2295 +3 2293 1049 567 +3 1281 1953 1455 +3 1281 1958 567 +3 890 2222 2115 +3 890 2116 562 +3 727 1456 1455 +3 727 1953 562 +3 2294 1079 2309 +3 2294 1052 559 +3 1272 1945 1451 +3 1272 1950 559 +3 882 2218 2111 +3 882 2112 554 +3 723 1452 1451 +3 723 1945 554 +3 2296 1005 2295 +3 2296 1055 471 +3 1285 1957 1407 +3 1285 1862 471 +3 894 2224 2067 +3 894 2068 566 +3 679 1408 1407 +3 679 1957 566 +3 2297 1118 2330 +3 2297 1058 611 +3 1329 1996 1477 +3 1329 2001 611 +3 932 2243 2137 +3 932 2138 606 +3 749 1478 1477 +3 749 1996 606 +3 2299 1008 2298 +3 2299 1061 455 +3 1251 1925 1399 +3 1251 1846 455 +3 862 2208 2059 +3 862 2060 534 +3 671 1400 1399 +3 671 1925 534 +3 2301 1136 2300 +3 2301 1064 515 +3 1372 2035 1429 +3 1372 1906 515 +3 970 2262 2089 +3 970 2090 646 +3 701 1430 1429 +3 701 2035 646 +3 2303 996 2302 +3 2303 1067 459 +3 1259 1933 1401 +3 1259 1850 459 +3 870 2212 2061 +3 870 2062 542 +3 673 1402 1401 +3 673 1933 542 +3 2304 1106 2324 +3 2304 1070 595 +3 1312 1980 1469 +3 1312 1985 595 +3 916 2235 2129 +3 916 2130 590 +3 741 1470 1469 +3 741 1980 590 +3 2306 999 2305 +3 2306 1073 463 +3 1268 1941 1403 +3 1268 1854 463 +3 878 2216 2063 +3 878 2064 550 +3 675 1404 1403 +3 675 1941 550 +3 2308 1097 2307 +3 2308 1076 527 +3 1397 2057 1435 +3 1397 1918 527 +3 994 2274 2095 +3 994 2096 669 +3 707 1436 1435 +3 707 2057 669 +3 2310 1002 2309 +3 2310 1079 467 +3 1277 1949 1405 +3 1277 1858 467 +3 886 2220 2065 +3 886 2066 558 +3 677 1406 1405 +3 677 1949 558 +3 2312 1149 2311 +3 2312 1082 523 +3 1389 2049 1433 +3 1389 1914 523 +3 986 2270 2093 +3 986 2094 661 +3 705 1434 1433 +3 705 2049 661 +3 2314 1020 2313 +3 2314 1085 491 +3 1325 1992 1417 +3 1325 1882 491 +3 928 2241 2077 +3 928 2078 602 +3 689 1418 1417 +3 689 1992 602 +3 2315 1133 2338 +3 2315 1088 631 +3 1351 2015 1487 +3 1351 2020 631 +3 950 2252 2147 +3 950 2148 626 +3 759 1488 1487 +3 759 2015 626 +3 2317 1023 2316 +3 2317 1091 475 +3 1294 1965 1409 +3 1294 1866 475 +3 902 2228 2069 +3 902 2070 574 +3 681 1410 1409 +3 681 1965 574 +3 2319 1011 2318 +3 2319 1094 479 +3 1300 1970 1411 +3 1300 1870 479 +3 906 2230 2071 +3 906 2072 579 +3 683 1412 1411 +3 683 1970 579 +3 2320 1046 2307 +3 2320 1097 666 +3 1242 1917 1503 +3 1242 2054 666 +3 854 2204 2163 +3 854 2164 526 +3 775 1504 1503 +3 775 1917 526 +3 2322 1014 2321 +3 2322 1100 483 +3 1308 1976 1413 +3 1308 1874 483 +3 912 2233 2073 +3 912 2074 586 +3 685 1414 1413 +3 685 1976 586 +3 2323 1073 2305 +3 2323 1103 551 +3 1263 1937 1447 +3 1263 1942 551 +3 874 2214 2107 +3 874 2108 546 +3 719 1448 1447 +3 719 1937 546 +3 2325 1017 2324 +3 2325 1106 487 +3 1316 1984 1415 +3 1316 1878 487 +3 920 2237 2075 +3 920 2076 594 +3 687 1416 1415 +3 687 1984 594 +3 2326 1064 2300 +3 2326 1109 647 +3 1368 2031 1495 +3 1368 2036 647 +3 966 2260 2155 +3 966 2156 642 +3 767 1496 1495 +3 767 2031 642 +3 2328 1035 2327 +3 2328 1112 511 +3 1364 2027 1427 +3 1364 1902 511 +3 962 2258 2087 +3 962 2088 638 +3 699 1428 1427 +3 699 2027 638 +3 2329 1061 2298 +3 2329 1115 535 +3 1246 1921 1439 +3 1246 1926 535 +3 858 2206 2099 +3 858 2100 530 +3 711 1440 1439 +3 711 1921 530 +3 2331 1038 2330 +3 2331 1118 495 +3 1333 2000 1419 +3 1333 1886 495 +3 936 2245 2079 +3 936 2080 610 +3 691 1420 1419 +3 691 2000 610 +3 2332 1082 2311 +3 2332 1121 662 +3 1385 2045 1501 +3 1385 2050 662 +3 982 2268 2161 +3 982 2162 657 +3 773 1502 1501 +3 773 2045 657 +3 2334 1026 2333 +3 2334 1124 499 +3 1342 2008 1421 +3 1342 1890 499 +3 944 2249 2081 +3 944 2082 618 +3 693 1422 1421 +3 693 2008 618 +3 2336 1029 2335 +3 2336 1127 503 +3 1349 2013 1423 +3 1349 1894 503 +3 948 2251 2083 +3 948 2084 623 +3 695 1424 1423 +3 695 2013 623 +3 2337 1091 2316 +3 2337 1130 575 +3 1289 1961 1459 +3 1289 1966 575 +3 898 2226 2119 +3 898 2120 570 +3 731 1460 1459 +3 731 1961 570 +3 2339 1032 2338 +3 2339 1133 507 +3 1355 2019 1425 +3 1355 1898 507 +3 954 2254 2085 +3 954 2086 630 +3 697 1426 1425 +3 697 2019 630 +3 2340 1109 2300 +3 2340 1136 643 +3 1229 1905 1493 +3 1229 2032 643 +3 842 2198 2153 +3 842 2154 514 +3 765 1494 1493 +3 765 1905 514 +3 2341 1112 2327 +3 2341 1139 639 +3 1360 2023 1491 +3 1360 2028 639 +3 958 2256 2151 +3 958 2152 634 +3 763 1492 1491 +3 763 2023 634 +3 2342 1085 2313 +3 2342 1142 603 +3 1321 1988 1473 +3 1321 1993 603 +3 924 2239 2133 +3 924 2134 598 +3 745 1474 1473 +3 745 1988 598 +3 2343 1127 2335 +3 2343 1145 624 +3 93 92 2418 +3 2418 2423 624 +3 2344 1152 2349 +3 2344 1147 651 +3 153 152 2438 +3 2438 2439 651 +3 2345 1121 2311 +3 2345 1149 658 +3 1238 1913 1499 +3 1238 2046 658 +3 850 2202 2159 +3 850 2160 522 +3 771 1500 1499 +3 771 1913 522 +3 2346 1161 2349 +3 2346 1152 655 +3 1378 2039 1497 +3 1378 2043 655 +3 976 2265 2157 +3 976 2158 650 +3 769 1498 1497 +3 769 2039 650 +3 2347 1124 2333 +3 2347 1155 619 +3 1338 2004 1481 +3 1338 2009 619 +3 940 2247 2141 +3 940 2142 614 +3 753 1482 1481 +3 753 2004 614 +3 2348 1100 2321 +3 2348 1158 587 +3 1303 1972 1465 +3 1303 1977 587 +3 908 2231 2125 +3 908 2126 582 +3 737 1466 1465 +3 737 1972 582 +3 2350 1147 2349 +3 2350 1161 519 +3 1382 2042 1431 +3 1382 1910 519 +3 980 2267 2091 +3 980 2092 654 +3 703 1432 1431 +3 703 2042 654 +3 2352 2353 2351 +3 2352 1164 457 +3 1180 1859 1513 +3 1180 1848 457 +3 796 2175 2101 +3 796 2170 468 +3 785 1514 1513 +3 785 1859 468 +3 1008 2279 2298 +3 1008 2299 350 +3 1060 1777 1523 +3 1060 1744 350 +3 714 2102 2101 +3 714 2175 384 +3 795 1524 1523 +3 795 1777 384 +3 2353 2354 2351 +3 2353 2352 461 +3 1163 1843 1517 +3 1163 1852 461 +3 780 2167 2105 +3 780 2172 452 +3 789 1518 1517 +3 789 1843 452 +3 996 2275 2302 +3 996 2303 342 +3 1066 1781 1507 +3 1066 1736 342 +3 718 2106 2105 +3 718 2167 388 +3 779 1508 1507 +3 779 1781 388 +3 2354 2355 2351 +3 2354 2353 465 +3 1168 1847 1521 +3 1168 1856 465 +3 784 2169 2109 +3 784 2174 456 +3 793 1522 1521 +3 793 1847 456 +3 999 2276 2305 +3 999 2306 344 +3 1072 1785 1511 +3 1072 1738 344 +3 722 2110 2109 +3 722 2169 392 +3 783 1512 1511 +3 783 1785 392 +3 2355 1164 2351 +3 2355 2354 469 +3 1172 1851 1525 +3 1172 1860 469 +3 788 2171 2113 +3 788 2176 460 +3 797 1526 1525 +3 797 1851 460 +3 1002 2277 2309 +3 1002 2310 346 +3 1078 1789 1515 +3 1078 1740 346 +3 726 2114 2113 +3 726 2171 396 +3 787 1516 1515 +3 787 1789 396 +3 1164 2352 2351 +3 1164 2355 453 +3 1176 1855 1509 +3 1176 1844 453 +3 792 2173 2097 +3 792 2168 464 +3 781 1510 1509 +3 781 1855 464 +3 1005 2278 2295 +3 1005 2296 348 +3 1054 1773 1519 +3 1054 1742 348 +3 710 2098 2097 +3 710 2173 380 +3 791 1520 1519 +3 791 1773 380 +3 2357 2358 2356 +3 2357 1185 477 +3 1201 1879 1533 +3 1201 1868 477 +3 816 2185 2121 +3 816 2180 488 +3 805 1534 1533 +3 805 1879 488 +3 1023 2284 2316 +3 1023 2317 360 +3 1090 1797 1543 +3 1090 1754 360 +3 734 2122 2121 +3 734 2185 404 +3 815 1544 1543 +3 815 1797 404 +3 2358 2359 2356 +3 2358 2357 481 +3 1184 1863 1537 +3 1184 1872 481 +3 800 2177 2123 +3 800 2182 472 +3 809 1538 1537 +3 809 1863 472 +3 1011 2280 2318 +3 1011 2319 352 +3 1093 1799 1527 +3 1093 1746 352 +3 736 2124 2123 +3 736 2177 406 +3 799 1528 1527 +3 799 1799 406 +3 2359 2360 2356 +3 2359 2358 485 +3 1189 1867 1541 +3 1189 1876 485 +3 804 2179 2127 +3 804 2184 476 +3 813 1542 1541 +3 813 1867 476 +3 1014 2281 2321 +3 1014 2322 354 +3 1099 1803 1531 +3 1099 1748 354 +3 740 2128 2127 +3 740 2179 410 +3 803 1532 1531 +3 803 1803 410 +3 2360 1185 2356 +3 2360 2359 489 +3 1193 1871 1545 +3 1193 1880 489 +3 808 2181 2131 +3 808 2186 480 +3 817 1546 1545 +3 817 1871 480 +3 1017 2282 2324 +3 1017 2325 356 +3 1105 1807 1535 +3 1105 1750 356 +3 744 2132 2131 +3 744 2181 414 +3 807 1536 1535 +3 807 1807 414 +3 1185 2357 2356 +3 1185 2360 473 +3 1197 1875 1529 +3 1197 1864 473 +3 812 2183 2117 +3 812 2178 484 +3 801 1530 1529 +3 801 1875 484 +3 1020 2283 2313 +3 1020 2314 358 +3 1084 1793 1539 +3 1084 1752 358 +3 730 2118 2117 +3 730 2183 400 +3 811 1540 1539 +3 811 1793 400 +3 2362 2363 2361 +3 2362 1206 497 +3 1222 1899 1553 +3 1222 1888 497 +3 836 2195 2139 +3 836 2190 508 +3 825 1554 1553 +3 825 1899 508 +3 1038 2289 2330 +3 1038 2331 370 +3 1117 1815 1563 +3 1117 1764 370 +3 752 2140 2139 +3 752 2195 422 +3 835 1564 1563 +3 835 1815 422 +3 2363 2364 2361 +3 2363 2362 501 +3 1205 1883 1557 +3 1205 1892 501 +3 820 2187 2143 +3 820 2192 492 +3 829 1558 1557 +3 829 1883 492 +3 1026 2285 2333 +3 1026 2334 362 +3 1123 1819 1547 +3 1123 1756 362 +3 756 2144 2143 +3 756 2187 426 +3 819 1548 1547 +3 819 1819 426 +3 2364 2365 2361 +3 2364 2363 505 +3 1210 1887 1561 +3 1210 1896 505 +3 824 2189 2145 +3 824 2194 496 +3 833 1562 1561 +3 833 1887 496 +3 1029 2286 2335 +3 1029 2336 364 +3 1126 1821 1551 +3 1126 1758 364 +3 758 2146 2145 +3 758 2189 428 +3 823 1552 1551 +3 823 1821 428 +3 2365 1206 2361 +3 2365 2364 509 +3 1214 1891 1565 +3 1214 1900 509 +3 828 2191 2149 +3 828 2196 500 +3 837 1566 1565 +3 837 1891 500 +3 1032 2287 2338 +3 1032 2339 366 +3 1132 1825 1555 +3 1132 1760 366 +3 762 2150 2149 +3 762 2191 432 +3 827 1556 1555 +3 827 1825 432 +3 1206 2362 2361 +3 1206 2365 493 +3 1218 1895 1549 +3 1218 1884 493 +3 832 2193 2135 +3 832 2188 504 +3 821 1550 1549 +3 821 1895 504 +3 1035 2288 2327 +3 1035 2328 368 +3 1111 1811 1559 +3 1111 1762 368 +3 748 2136 2135 +3 748 2193 418 +3 831 1560 1559 +3 831 1811 418 +3 2367 1249 2366 +3 2367 1227 537 +3 1362 2025 1595 +3 1362 1928 537 +3 960 2257 2103 +3 960 2210 636 +3 865 1596 1595 +3 865 2025 636 +3 1136 2340 2300 +3 1136 2301 435 +3 1063 1779 1697 +3 1063 1828 435 +3 716 2104 2103 +3 716 2257 386 +3 959 1698 1697 +3 959 1779 386 +3 2368 1292 2396 +3 2368 2397 577 +3 1347 2415 1635 +3 1347 1968 577 +3 2414 1636 1635 +3 2369 1301 2382 +3 2369 1233 664 +3 1375 2038 1729 +3 1375 2052 664 +3 974 2264 2165 +3 974 2272 649 +3 989 1730 1729 +3 989 2038 649 +3 1147 2344 2349 +3 1147 2350 441 +3 1160 1841 1711 +3 1160 2444 441 +3 778 2166 2165 +3 778 2264 450 +3 973 1712 1711 +3 973 1841 450 +3 2370 1275 2404 +3 2370 2405 561 +3 1379 2040 1619 +3 1379 1952 561 +3 978 2266 2115 +3 978 2222 652 +3 889 1620 1619 +3 889 2040 652 +3 1149 2345 2311 +3 1149 2312 443 +3 1081 1791 1715 +3 1081 1834 443 +3 728 2116 2115 +3 728 2266 398 +3 977 1716 1715 +3 977 1791 398 +3 2371 1266 2384 +3 2371 2385 553 +3 1305 1974 1611 +3 1305 1944 553 +3 910 2232 2111 +3 910 2218 584 +3 881 1612 1611 +3 881 1974 584 +3 1097 2320 2307 +3 1097 2308 409 +3 1075 1787 1643 +3 1075 1802 409 +3 724 2112 2111 +3 724 2232 394 +3 909 1644 1643 +3 909 1787 394 +3 2372 2378 2392 +3 2372 2391 565 +3 1331 1998 1623 +3 1331 1956 565 +3 934 2244 2067 +3 934 2224 608 +3 893 1624 1623 +3 893 1998 608 +3 1115 2329 2298 +3 1115 2279 421 +3 1007 1743 1667 +3 1007 1814 421 +3 680 2068 2067 +3 680 2244 349 +3 933 1668 1667 +3 933 1743 349 +3 2373 2390 2366 +3 2373 1249 605 +3 1253 1927 1665 +3 1253 1995 605 +3 864 2209 2137 +3 864 2243 536 +3 931 1666 1665 +3 931 1927 536 +3 1061 2299 2298 +3 1061 2329 385 +3 1114 1813 1593 +3 1114 1778 385 +3 750 2138 2137 +3 750 2209 420 +3 863 1594 1593 +3 863 1813 420 +3 1249 2373 2366 +3 1249 2367 533 +3 1226 1903 1591 +3 1226 1924 533 +3 840 2197 2059 +3 840 2208 512 +3 861 1592 1591 +3 861 1903 512 +3 1041 2290 2302 +3 1041 2275 372 +3 995 1735 1567 +3 995 1766 372 +3 672 2060 2059 +3 672 2197 341 +3 839 1568 1567 +3 839 1735 341 +3 2374 1319 2387 +3 2374 2375 645 +3 1261 1935 1707 +3 1261 2034 645 +3 872 2213 2089 +3 872 2262 544 +3 969 1708 1707 +3 969 1935 544 +3 1067 2303 2302 +3 1067 2290 389 +3 1040 1765 1601 +3 1040 1782 389 +3 702 2090 2089 +3 702 2213 371 +3 871 1602 1601 +3 871 1765 371 +3 2375 2374 2387 +3 2375 2386 541 +3 1314 1982 1599 +3 1314 1932 541 +3 918 2236 2061 +3 918 2212 592 +3 869 1600 1599 +3 869 1982 592 +3 1103 2323 2305 +3 1103 2276 413 +3 998 1737 1651 +3 998 1806 413 +3 674 2062 2061 +3 674 2236 343 +3 917 1652 1651 +3 917 1737 343 +3 2376 1306 2384 +3 2376 1266 589 +3 1270 1943 1649 +3 1270 1979 589 +3 880 2217 2129 +3 880 2235 552 +3 915 1650 1649 +3 915 1943 552 +3 1073 2306 2305 +3 1073 2323 393 +3 1102 1805 1609 +3 1102 1786 393 +3 742 2130 2129 +3 742 2217 412 +3 879 1610 1609 +3 879 1805 412 +3 1266 2376 2384 +3 1266 2371 549 +3 1240 1915 1607 +3 1240 1940 549 +3 852 2203 2063 +3 852 2216 524 +3 877 1608 1607 +3 877 1915 524 +3 1052 2294 2309 +3 1052 2277 379 +3 1001 1739 1581 +3 1001 1772 379 +3 676 2064 2063 +3 676 2203 345 +3 851 1582 1581 +3 851 1739 345 +3 2377 1380 2404 +3 2377 1275 668 +3 1279 1951 1733 +3 1279 2056 668 +3 888 2221 2095 +3 888 2274 560 +3 993 1734 1733 +3 993 1951 560 +3 1079 2310 2309 +3 1079 2294 397 +3 1051 1771 1617 +3 1051 1790 397 +3 708 2096 2095 +3 708 2221 378 +3 887 1618 1617 +3 887 1771 378 +3 1275 2377 2404 +3 1275 2370 557 +3 1236 1911 1615 +3 1236 1948 557 +3 848 2201 2065 +3 848 2220 520 +3 885 1616 1615 +3 885 1911 520 +3 1049 2293 2295 +3 1049 2278 377 +3 1004 1741 1577 +3 1004 1770 377 +3 678 2066 2065 +3 678 2201 347 +3 847 1578 1577 +3 847 1741 347 +3 2378 1336 2392 +3 2378 2372 660 +3 1244 1919 1725 +3 1244 2048 660 +3 856 2205 2093 +3 856 2270 528 +3 985 1726 1725 +3 985 1919 528 +3 1055 2296 2295 +3 1055 2293 381 +3 1048 1769 1585 +3 1048 1774 381 +3 706 2094 2093 +3 706 2205 376 +3 855 1586 1585 +3 855 1769 376 +3 2379 2389 2399 +3 2379 2398 601 +3 1353 2017 1661 +3 1353 1991 601 +3 952 2253 2077 +3 952 2241 628 +3 927 1662 1661 +3 927 2017 628 +3 1130 2337 2316 +3 1130 2284 431 +3 1022 1753 1689 +3 1022 1824 431 +3 690 2078 2077 +3 690 2253 359 +3 951 1690 1689 +3 951 1753 359 +3 2380 1348 2396 +3 2380 1292 625 +3 1296 1967 1687 +3 1296 2014 625 +3 904 2229 2147 +3 904 2252 576 +3 949 1688 1687 +3 949 1967 576 +3 1091 2317 2316 +3 1091 2337 405 +3 1129 1823 1633 +3 1129 1798 405 +3 760 2148 2147 +3 760 2229 430 +3 903 1634 1633 +3 903 1823 430 +3 1292 2380 2396 +3 1292 2368 573 +3 1231 1907 1631 +3 1231 1964 573 +3 844 2199 2069 +3 844 2228 516 +3 901 1632 1631 +3 901 1907 516 +3 1044 2291 2318 +3 1044 2280 373 +3 1010 1745 1571 +3 1010 2452 373 +3 682 2070 2069 +3 682 2199 351 +3 843 1572 1571 +3 843 1745 351 +3 2381 1233 2382 +3 2381 2383 2406 +3 2434 0 2406 +3 1094 2319 2318 +3 1094 2291 407 +3 1043 2427 1639 +3 1043 1800 407 +3 2448 1640 1639 +3 24 23 2427 +3 2383 2381 2382 +3 2383 1301 2433 +3 1391 2051 1637 +3 1391 2432 2433 +3 988 2271 2071 +3 988 2230 663 +3 905 1638 1637 +3 905 2051 663 +3 1158 2348 2321 +3 1158 2281 449 +3 1013 1747 1727 +3 1013 1840 449 +3 684 2072 2071 +3 684 2271 353 +3 987 1728 1727 +3 987 1747 353 +3 2385 2371 2384 +3 2385 1306 525 +3 1310 1978 1583 +3 1310 1916 525 +3 914 2234 2163 +3 914 2204 588 +3 853 1584 1583 +3 853 1978 588 +3 1100 2322 2321 +3 1100 2348 411 +3 1157 1839 1647 +3 1157 1804 411 +3 776 2164 2163 +3 776 2234 448 +3 913 1648 1647 +3 913 1839 448 +3 1306 2385 2384 +3 1306 2376 585 +3 1265 1939 1645 +3 1265 1975 585 +3 876 2215 2073 +3 876 2233 548 +3 911 1646 1645 +3 911 1939 548 +3 1070 2304 2324 +3 1070 2282 391 +3 1016 1749 1605 +3 1016 1784 391 +3 686 2074 2073 +3 686 2215 355 +3 875 1606 1605 +3 875 1749 355 +3 2386 2375 2387 +3 2386 2388 545 +3 1318 1986 1603 +3 1318 1936 545 +3 922 2238 2107 +3 922 2214 596 +3 873 1604 1603 +3 873 1986 596 +3 1106 2325 2324 +3 1106 2304 415 +3 1069 1783 1655 +3 1069 1808 415 +3 720 2108 2107 +3 720 2238 390 +3 921 1656 1655 +3 921 1783 390 +3 2388 2386 2387 +3 2388 1319 593 +3 1370 2033 1653 +3 1370 1983 593 +3 968 2261 2075 +3 968 2237 644 +3 919 1654 1653 +3 919 2033 644 +3 1142 2342 2313 +3 1142 2283 439 +3 1019 1751 1705 +3 1019 1832 439 +3 688 2076 2075 +3 688 2261 357 +3 967 1706 1705 +3 967 1751 357 +3 2389 1358 2399 +3 2389 2379 641 +3 1287 1959 1703 +3 1287 2030 641 +3 896 2225 2155 +3 896 2260 568 +3 965 1704 1703 +3 965 1959 568 +3 1085 2314 2313 +3 1085 2342 401 +3 1141 1831 1625 +3 1141 1794 401 +3 768 2156 2155 +3 768 2225 438 +3 895 1626 1625 +3 895 1831 438 +3 2390 1227 2366 +3 2390 2373 637 +3 1248 1923 1699 +3 1248 2026 637 +3 860 2207 2087 +3 860 2258 532 +3 961 1700 1699 +3 961 1923 532 +3 1058 2297 2330 +3 1058 2289 383 +3 1037 1763 1589 +3 1037 1776 383 +3 700 2088 2087 +3 700 2207 369 +3 859 1590 1589 +3 859 1763 369 +3 2391 2372 2392 +3 2391 2393 529 +3 1335 2002 1587 +3 1335 1920 529 +3 938 2246 2099 +3 938 2206 612 +3 857 1588 1587 +3 857 2002 612 +3 1118 2331 2330 +3 1118 2297 423 +3 1057 1775 1671 +3 1057 1816 423 +3 712 2100 2099 +3 712 2246 382 +3 937 1672 1671 +3 937 1775 382 +3 2393 2391 2392 +3 2393 1336 609 +3 1387 2047 1669 +3 1387 1999 609 +3 984 2269 2079 +3 984 2245 659 +3 935 1670 1669 +3 935 2047 659 +3 1155 2347 2333 +3 1155 2285 447 +3 1025 1755 1723 +3 1025 1838 447 +3 692 2080 2079 +3 692 2269 361 +3 983 1724 1723 +3 983 1755 361 +3 2394 1377 2402 +3 2394 2395 656 +3 1344 2010 1721 +3 1344 2044 656 +3 946 2250 2161 +3 946 2268 620 +3 981 1722 1721 +3 981 2010 620 +3 1124 2334 2333 +3 1124 2347 427 +3 1154 1837 1679 +3 1154 1820 427 +3 774 2162 2161 +3 774 2250 446 +3 945 1680 1679 +3 945 1837 446 +3 2395 2394 2402 +3 2395 2401 617 +3 1374 2037 1677 +3 1374 2007 617 +3 972 2263 2081 +3 972 2249 648 +3 943 1678 1677 +3 943 2037 648 +3 1145 2343 2335 +3 1145 2286 440 +3 1028 1757 1709 +3 1028 2449 440 +3 694 2082 2081 +3 694 2263 363 +3 971 1710 1709 +3 971 1757 363 +3 2397 2368 2396 +3 2397 1348 2411 +3 60 59 2411 +3 1127 2336 2335 +3 1127 2343 429 +3 1144 2446 1685 +3 1144 1822 429 +3 2445 1686 1685 +3 2446 83 82 +3 1348 2397 2396 +3 1348 2380 2426 +3 1291 1963 1683 +3 1291 2425 2426 +3 900 2227 2083 +3 900 2251 572 +3 947 1684 1683 +3 947 1963 572 +3 1088 2315 2338 +3 1088 2287 403 +3 1031 1759 1629 +3 1031 1796 403 +3 696 2084 2083 +3 696 2227 365 +3 899 1630 1629 +3 899 1759 365 +3 2398 2379 2399 +3 2398 2400 569 +3 1357 2021 1627 +3 1357 1960 569 +3 956 2255 2119 +3 956 2226 632 +3 897 1628 1627 +3 897 2021 632 +3 1133 2339 2338 +3 1133 2315 433 +3 1087 1795 1693 +3 1087 1826 433 +3 732 2120 2119 +3 732 2255 402 +3 955 1694 1693 +3 955 1795 402 +3 2400 2398 2399 +3 2400 1358 629 +3 1366 2029 1691 +3 1366 2018 629 +3 964 2259 2085 +3 964 2254 640 +3 953 1692 1691 +3 953 2029 640 +3 1139 2341 2327 +3 1139 2288 437 +3 1034 1761 1701 +3 1034 1830 437 +3 698 2086 2085 +3 698 2259 367 +3 963 1702 1701 +3 963 1761 367 +3 1227 2367 2366 +3 1227 2390 513 +3 1327 1994 1569 +3 1327 1904 513 +3 930 2242 2153 +3 930 2198 604 +3 841 1570 1569 +3 841 1994 604 +3 1112 2328 2327 +3 1112 2341 419 +3 1138 1829 1663 +3 1138 1812 419 +3 766 2154 2153 +3 766 2242 436 +3 929 1664 1663 +3 929 1829 436 +3 1358 2400 2399 +3 1358 2389 633 +3 1323 1990 1695 +3 1323 2022 633 +3 926 2240 2151 +3 926 2256 600 +3 957 1696 1695 +3 957 1990 600 +3 1109 2326 2300 +3 1109 2340 417 +3 1135 1827 1659 +3 1135 1810 417 +3 764 2152 2151 +3 764 2240 434 +3 925 1660 1659 +3 925 1827 434 +3 1319 2388 2387 +3 1319 2374 597 +3 1257 1931 1657 +3 1257 1987 597 +3 868 2211 2133 +3 868 2239 540 +3 923 1658 1657 +3 923 1931 540 +3 1064 2301 2300 +3 1064 2326 387 +3 1108 1809 1597 +3 1108 1780 387 +3 746 2134 2133 +3 746 2211 416 +3 867 1598 1597 +3 867 1809 416 +3 2401 2395 2402 +3 2401 2403 621 +3 1376 2413 1681 +3 1376 2011 621 +3 2412 1682 1681 +3 112 111 2412 +3 1233 2369 2382 +3 1233 2381 518 +3 1299 2436 1575 +3 1299 1909 518 +3 2435 1576 1575 +3 172 171 2435 +3 2403 2401 2402 +3 2403 1377 2430 +3 119 118 2430 +3 1152 2346 2349 +3 1152 2344 445 +3 1146 2451 1719 +3 1146 1836 445 +3 2447 1720 1719 +3 2451 143 142 +3 2405 2370 2404 +3 2405 1380 521 +3 1395 2055 1579 +3 1395 1912 521 +3 992 2273 2159 +3 992 2202 667 +3 849 1580 1579 +3 849 2055 667 +3 1161 2350 2349 +3 1161 2346 451 +3 1151 1835 1731 +3 1151 1842 451 +3 772 2160 2159 +3 772 2273 444 +3 991 1732 1731 +3 991 1835 444 +3 1377 2403 2402 +3 1377 2394 2428 +3 1340 2006 1713 +3 1340 2429 2428 +3 942 2248 2157 +3 942 2265 616 +3 975 1714 1713 +3 975 2006 616 +3 1121 2332 2311 +3 1121 2345 425 +3 1148 1833 1675 +3 1148 1818 425 +3 770 2158 2157 +3 770 2248 442 +3 941 1676 1675 +3 941 1833 442 +3 1336 2393 2392 +3 1336 2378 613 +3 1283 1955 1673 +3 1283 2003 613 +3 892 2223 2141 +3 892 2247 564 +3 939 1674 1673 +3 939 1955 564 +3 1082 2312 2311 +3 1082 2332 399 +3 1120 1817 1621 +3 1120 1792 399 +3 754 2142 2141 +3 754 2223 424 +3 891 1622 1621 +3 891 1817 424 +3 1301 2383 2382 +3 1301 2369 581 +3 1232 1908 1641 +3 1232 1971 581 +3 846 2200 2125 +3 846 2231 517 +3 907 1642 1641 +3 907 1908 517 +3 1046 2292 2307 +3 1046 2320 375 +3 1096 1801 1573 +3 1096 1768 375 +3 738 2126 2125 +3 738 2200 408 +3 845 1574 1573 +3 845 1801 408 +3 1380 2405 2404 +3 1380 2377 653 +3 1274 1947 1717 +3 1274 2041 653 +3 884 2219 2091 +3 884 2267 556 +3 979 1718 1717 +3 979 1947 556 +3 1076 2308 2307 +3 1076 2292 395 +3 1045 1767 1613 +3 1045 1788 395 +3 704 2092 2091 +3 704 2219 374 +3 883 1614 1613 +3 883 1767 374 +3 70 69 2425 +3 71 70 2425 +3 2420 71 2425 +3 2412 109 108 +3 2412 110 109 +3 2424 108 107 +3 2424 2412 108 +3 2453 45 44 +3 2453 43 42 +3 2453 44 43 +3 11 10 2432 +3 12 11 2432 +3 2410 12 2432 +3 2407 2414 49 +3 50 49 2414 +3 51 50 2414 +3 2411 2408 61 +3 61 60 2411 +3 1 178 2406 +3 0 1 2406 +3 2436 2406 176 +3 177 176 2406 +3 178 177 2406 +3 2407 47 46 +3 2407 48 47 +3 174 2436 175 +3 2409 36 35 +3 2409 37 36 +3 2412 111 110 +3 2438 2443 154 +3 154 153 2438 +3 61 2408 62 +3 2452 39 2409 +3 2409 39 38 +3 2452 40 39 +3 2452 41 40 +3 2418 2442 94 +3 94 93 2418 +3 15 14 2410 +3 2419 16 2410 +3 16 15 2410 +3 137 2440 138 +3 136 2440 137 +3 2434 2433 4 +3 6 5 2433 +3 2430 116 2413 +3 2430 118 117 +3 2413 116 115 +3 2430 117 116 +3 2428 123 2416 +3 2428 124 123 +3 2428 125 124 +3 2411 57 2415 +3 2411 59 58 +3 2415 57 56 +3 2411 58 57 +3 2421 77 76 +3 2421 78 77 +3 2442 97 96 +3 2412 2413 112 +3 113 112 2413 +3 114 113 2413 +3 2415 53 2414 +3 2414 53 52 +3 2415 54 53 +3 2415 55 54 +3 2426 63 2408 +3 2426 64 63 +3 2426 65 64 +3 26 2417 27 +3 26 25 2427 +3 2417 26 2427 +3 2445 80 79 +3 2445 81 80 +3 2445 82 81 +3 121 2416 122 +3 120 2416 121 +3 29 2417 30 +3 28 2417 29 +3 2418 89 2423 +3 2418 90 89 +3 2418 91 90 +3 2418 92 91 +3 2422 30 2417 +3 2422 31 30 +3 2422 32 31 +3 2422 33 32 +3 2419 18 17 +3 2419 19 18 +3 22 2448 23 +3 21 2448 22 +3 20 2448 21 +3 84 83 2446 +3 2423 85 2446 +3 85 84 2446 +3 2416 123 122 +3 74 73 2420 +3 2421 75 2420 +3 2420 75 74 +3 2421 76 75 +3 2442 2449 98 +3 99 98 2449 +3 100 99 2449 +3 2422 2409 35 +3 35 34 2422 +3 88 2423 89 +3 87 2423 88 +3 145 2439 146 +3 2439 145 2451 +3 145 144 2451 +3 166 2431 167 +3 165 2431 166 +3 106 2424 107 +3 105 2424 106 +3 67 2425 68 +3 67 66 2426 +3 2425 67 2426 +3 2448 2427 23 +3 163 2450 164 +3 161 2450 162 +3 162 2450 163 +3 127 2429 128 +3 127 126 2428 +3 2429 127 2428 +3 131 2441 132 +3 2441 131 2429 +3 131 130 2429 +3 2430 2416 120 +3 120 119 2430 +3 168 2435 169 +3 170 169 2435 +3 2435 168 2431 +3 7 6 2433 +3 8 7 2433 +3 2432 8 2433 +3 2437 2424 105 +3 2434 2 0 +3 2434 3 2 +3 2435 2436 172 +3 174 173 2436 +3 173 172 2436 +3 2444 2450 161 +3 2437 104 103 +3 2437 102 101 +3 2437 103 102 +3 155 2443 156 +3 154 2443 155 +3 2438 149 2439 +3 2438 152 151 +3 2438 150 149 +3 2438 151 150 +3 148 2439 149 +3 147 2439 148 +3 134 133 2441 +3 2440 135 2441 +3 135 134 2441 +3 2442 95 94 +3 2442 96 95 +3 2444 158 2443 +3 2444 160 159 +3 2443 158 157 +3 2444 159 158 +3 141 2447 142 +3 140 2447 141 +3 139 2447 140 +3 2445 78 2421 +3 2409 38 37 +3 156 2443 157 +3 2417 28 27 +3 2446 82 2445 +3 86 2423 87 +3 2440 2447 138 +3 55 2415 56 +3 170 2435 171 +3 2448 19 2419 +3 101 100 2449 +3 2410 14 13 +3 62 2408 63 +3 9 2432 10 +3 3 2434 4 +3 2420 73 72 +3 2429 129 128 +3 2450 2431 165 +3 146 2439 147 +3 2413 115 114 +3 2451 142 2447 +3 132 2441 133 +3 2452 2453 42 +3 2453 2407 46 +3 2414 52 51 +3 2425 69 68 + diff --git a/Data/data/meshes/polyhedral_complex_of_spheres/Sphere3.off b/Data/data/meshes/polyhedral_complex_of_spheres/Sphere3.off new file mode 100644 index 000000000000..640688f43296 --- /dev/null +++ b/Data/data/meshes/polyhedral_complex_of_spheres/Sphere3.off @@ -0,0 +1,6731 @@ +OFF +2329 4398 0 + +0.27219661039719134 -0.89987434907152952 0.34005641981910195 +0.27399725512977036 -0.89741802080743249 0.34558774394436154 +0.2679128793459149 -0.90549608434201145 0.32699007860623508 +0.26758089404998364 -0.90597288936521869 0.32585692434233743 +0.26660413751883816 -0.90759811547986069 0.32187126056253501 +0.25697201819559901 -0.92432848622760766 0.28050566540029309 +0.25313054028719528 -0.92991689161909552 0.26460466631117985 +0.25308933658097965 -0.92998804508785282 0.26439588316448515 +0.24930895838975131 -0.93567470552212895 0.24579255546759948 +0.24336599009814622 -0.94602936533555493 0.21094260961626568 +0.24152064540259124 -0.9485706826100101 0.20072208160320942 +0.2389405724498605 -0.95306848001363997 0.18186355091081885 +0.23440017510432309 -0.9594775020158709 0.15035899655759535 +0.23294949527472616 -0.96194916611186088 0.13775142693846476 +0.23259475183323847 -0.96237493457550005 0.13494008765512316 +0.23052646968895496 -0.96592607882051262 0.10986054425367281 +0.22988186145330614 -0.96732927410114633 0.099634331047451258 +0.22762677949308696 -0.97053761901938218 0.067701629511043929 +0.22743420727478347 -0.97114863140943242 0.060907607905721757 +0.22648000271342916 -0.97241808576487498 0.034988854233130681 +0.22628605152906522 -0.97313250261608553 0.01853460685588823 +0.22589145876869662 -0.97323020415808847 -0 +0.22628605152906522 -0.97313250261608553 -0.01853460685588823 +0.22648000271342922 -0.97241808576487498 -0.034988854233130834 +0.2274342072747835 -0.97114863140943242 -0.060907607905721785 +0.22762677949308691 -0.97053761901938207 -0.067701629511043929 +0.22988186145330608 -0.96732927410114655 -0.09963433104745123 +0.23052646968895496 -0.96592607882051251 -0.10986054425367295 +0.23259475183323847 -0.96237493457549972 -0.13494008765512314 +0.23294949527472619 -0.96194916611186088 -0.13775142693846473 +0.23440017510432298 -0.95947750201587068 -0.15035899655759499 +0.23894057244986044 -0.95306848001363997 -0.18186355091081888 +0.24152064540259116 -0.94857068261000999 -0.2007220816032094 +0.24336599009814619 -0.94602936533555493 -0.21094260961626565 +0.24930895838975131 -0.93567470552212884 -0.24579255546759954 +0.2530893365809796 -0.92998804508785282 -0.26439588316448515 +0.25313054028719528 -0.92991689161909541 -0.26460466631117996 +0.25697201819559901 -0.92432848622760766 -0.28050566540029298 +0.26660413751883794 -0.90759811547986147 -0.32187126056253368 +0.26758089404998375 -0.9059728893652188 -0.32585692434233748 +0.26791287934591512 -0.90549608434201145 -0.32699007860623563 +0.27219661039719123 -0.89987434907152986 -0.34005641981910134 +0.27399725512977041 -0.89741802080743249 -0.34558774394436126 +0.27461092234606044 -0.89644305776905853 -0.34753041451074085 +0.28617291708332143 -0.87638371280443894 -0.38483791504434917 +0.29057971437418995 -0.8695923485436825 -0.39708487175152696 +0.29401138453262826 -0.86471241548978539 -0.40567809407889899 +0.30362145533065937 -0.84916410602320314 -0.43023759412454321 +0.30729748704039861 -0.84278707285381271 -0.43974499787970978 +0.31474205002823552 -0.83109069623026088 -0.45671715648324696 +0.31682936237190801 -0.8280363774210906 -0.46105412139556579 +0.32993533901945349 -0.80654749644509327 -0.4886330537542477 +0.3395133710973568 -0.79211156275892003 -0.50664961250726259 +0.34177771381313393 -0.78887113359859207 -0.51061830246204121 +0.34243159318633287 -0.78789291377908466 -0.51176714118576783 +0.34288899659372696 -0.78713443636827329 -0.51257565524045923 +0.35314170479917451 -0.76928684914828649 -0.53075413092765567 +0.36517401588679066 -0.75 -0.5497573450331017 +0.36998650939197825 -0.74269333684247574 -0.5567855194421365 +0.37506412073313466 -0.73422479552976916 -0.56417193374348928 +0.39411849558532475 -0.7042679462719752 -0.58956860097969033 +0.39895802436542988 -0.69687753315555612 -0.5957410107715313 +0.40036321981550371 -0.69465247190942381 -0.5975302451883705 +0.40065939257699101 -0.69413734830776352 -0.5979056290568221 +0.40151480227572495 -0.69274920908571347 -0.59888293763788791 +0.40435813432554835 -0.6879005781223142 -0.60211592452938867 +0.42861413394522363 -0.64891100701386617 -0.62717432611494861 +0.4331208322019765 -0.64210794890239153 -0.63136143448574877 +0.44633019100468196 -0.62042776846682712 -0.64334361719230815 +0.4546732585899762 -0.60749293870920396 -0.65018159643527595 +0.45944041532897179 -0.59972505245462004 -0.65399889841309111 +0.46796403496887884 -0.58666916470964625 -0.66003296952840651 +0.4897853260968788 -0.55056521742650477 -0.67476755984413883 +0.49314081475211935 -0.54531814984023852 -0.67677227421098896 +0.5039242293873103 -0.52945918848859996 -0.68235511400187066 +0.50468001700647158 -0.52828837108788052 -0.68272481536695295 +0.50622685812276502 -0.52571510245600428 -0.68341702461536269 +0.50787822903713031 -0.52299793234814496 -0.68413337702600852 +0.52912853141459681 -0.48757002987147358 -0.69320320770179844 +0.53310523682898858 -0.48133611427487955 -0.69462568959831961 +0.54306000239317154 -0.46664565776233691 -0.69755165300174249 +0.5493198212532957 -0.45674068614295493 -0.69911600851089584 +0.56731181848165257 -0.42664579118104862 -0.70294074606773127 +0.57556494808430081 -0.41363385795819674 -0.70422028778974766 +0.58303192413334481 -0.40257317574481138 -0.70495163176324016 +0.59214384399202524 -0.38815954298187871 -0.70538094374692584 +0.6078561560079746 -0.36184045701812118 -0.70538094374692584 +0.61696807586665503 -0.34742682425518878 -0.70495163176324016 +0.62443505191569915 -0.33636614204180315 -0.70422028778974766 +0.63268818151834738 -0.32335420881895127 -0.70294074606773105 +0.65068017874670414 -0.29325931385704507 -0.69911600851089584 +0.6569399976068282 -0.28335434223766326 -0.69755165300174249 +0.66689476317101137 -0.26866388572512034 -0.69462568959831961 +0.67087146858540314 -0.2624299701285262 -0.69320320770179855 +0.69212177096286942 -0.22700206765185557 -0.68413337702600874 +0.69377314187723493 -0.22428489754399594 -0.68341702461536258 +0.69531998299352837 -0.2217116289121196 -0.68272481536695306 +0.69607577061268988 -0.22054081151140006 -0.68235511400187066 +0.70685918524788072 -0.20468185015976154 -0.67677227421098896 +0.71021467390312099 -0.19943478257349526 -0.67476755984413894 +0.73203596503112101 -0.16333083529035375 -0.66003296952840662 +0.74055958467102845 -0.15027494754537968 -0.65399889841309089 +0.74532674141002375 -0.14250706129079624 -0.65018159643527618 +0.75366980899531777 -0.12957223153317302 -0.64334361719230837 +0.76687916779802356 -0.10789205109760858 -0.63136143448574888 +0.77138586605477633 -0.1010889929861338 -0.62717432611494872 +0.79564186567445128 -0.06209942187768587 -0.60211592452938889 +0.79848519772427506 -0.057250790914286004 -0.59888293763788769 +0.79934060742300872 -0.055862651692236032 -0.59790562905682221 +0.79963678018449613 -0.055347528090576067 -0.59753024518837083 +0.80104197563456991 -0.053122466844444029 -0.59574101077153174 +0.80588150441467521 -0.045732053728024212 -0.58956860097968999 +0.82493587926686529 -0.015775204470230772 -0.56417193374348928 +0.83001349060802165 -0.0073066631575244411 -0.55678551944213672 +0.8348259841132093 -6.1457978060811826e-19 -0.5497573450331017 +0.84685829520082545 0.019286849148286479 -0.53075413092765555 +0.85711100340627278 0.037134436368273155 -0.51257565524045934 +0.85756840681366708 0.037892913779084561 -0.51176714118576794 +0.85822228618686602 0.038871133598591998 -0.51061830246204143 +0.86048662890264316 0.042111562758920099 -0.50664961250726259 +0.87006466098054647 0.056547496445093395 -0.48863305375424759 +0.88317063762809189 0.078036377421090597 -0.46105412139556579 +0.88525794997176432 0.081090696230260814 -0.45671715648324701 +0.89270251295960135 0.092787072853812741 -0.43974499787970978 +0.89637854466934042 0.099164106023202886 -0.43023759412454343 +0.90598861546737153 0.11471241548978532 -0.40567809407889888 +0.9094202856258099 0.11959234854368263 -0.39708487175152668 +0.91382708291667858 0.12638371280443889 -0.38483791504434905 +0.9253890776539393 0.14644305776905842 -0.34753041451074107 +0.92600274487022949 0.14741802080743258 -0.34558774394436131 +0.92780338960280884 0.14987434907153013 -0.34005641981910084 +0.93208712065408494 0.15549608434201162 -0.32699007860623541 +0.9324191059500162 0.15597288936521903 -0.32585692434233743 +0.93339586248116191 0.15759811547986141 -0.32187126056253423 +0.94302798180440084 0.17432848622760777 -0.2805056654002932 +0.94686945971280467 0.17991689161909563 -0.26460466631117985 +0.94691066341902053 0.17998804508785299 -0.26439588316448503 +0.95069104161024875 0.18567470552212903 -0.24579255546759926 +0.95663400990185365 0.19602936533555493 -0.21094260961626565 +0.95847935459740874 0.19857068261001024 -0.20072208160320937 +0.9610594275501394 0.20306848001363986 -0.18186355091081907 +0.96559982489567697 0.20947750201587081 -0.15035899655759494 +0.96705050472527398 0.21194916611186077 -0.13775142693846465 +0.96740524816676143 0.21237493457549977 -0.13494008765512311 +0.96947353031104488 0.21592607882051251 -0.10986054425367317 +0.97011813854669371 0.2173292741011463 -0.099634331047451508 +0.97237322050691288 0.2205376190193819 -0.067701629511043915 +0.97256579272521626 0.22114863140943242 -0.060907607905721556 +0.97351999728657068 0.22241808576487493 -0.034988854233130418 +0.97371394847093473 0.22313250261608547 -0.018534606855888307 +0.9741085412313033 0.22323020415808842 -0 +0.97371394847093473 0.22313250261608547 0.018534606855888314 +0.97351999728657068 0.22241808576487493 0.034988854233130445 +0.97256579272521648 0.22114863140943247 0.060907607905721736 +0.97237322050691288 0.22053761901938193 0.067701629511043915 +0.9701181385466936 0.21732927410114636 0.099634331047451369 +0.96947353031104511 0.21592607882051257 0.10986054425367309 +0.96740524816676143 0.21237493457549983 0.13494008765512311 +0.96705050472527376 0.21194916611186071 0.13775142693846484 +0.96559982489567697 0.20947750201587079 0.15035899655759488 +0.9610594275501394 0.20306848001363986 0.18186355091081891 +0.95847935459740885 0.19857068261001021 0.20072208160320931 +0.95663400990185365 0.1960293653355549 0.21094260961626565 +0.95069104161024875 0.185674705522129 0.24579255546759909 +0.94691066341902042 0.17998804508785277 0.2643958831644852 +0.94686945971280478 0.17991689161909552 0.26460466631117979 +0.94302798180440095 0.1743284862276076 0.2805056654002932 +0.93339586248116191 0.15759811547986138 0.32187126056253412 +0.93241910595001631 0.15597288936521894 0.32585692434233732 +0.93208712065408506 0.15549608434201159 0.3269900786062353 +0.92780338960280884 0.14987434907153008 0.34005641981910095 +0.92600274487022949 0.1474180208074326 0.34558774394436137 +0.92538907765393941 0.14644305776905847 0.34753041451074107 +0.91382708291667858 0.12638371280443894 0.38483791504434894 +0.9094202856258099 0.11959234854368264 0.39708487175152674 +0.90598861546737153 0.11471241548978531 0.40567809407889893 +0.89637854466934042 0.099164106023202803 0.43023759412454371 +0.89270251295960135 0.092787072853812713 0.43974499787970978 +0.88525794997176432 0.0810906962302608 0.4567171564832469 +0.88317063762809189 0.078036377421090528 0.46105412139556584 +0.87006466098054647 0.056547496445093395 0.48863305375424759 +0.86048662890264316 0.042111562758920092 0.50664961250726259 +0.85822228618686625 0.038871133598592303 0.51061830246204098 +0.85756840681366708 0.037892913779084658 0.51176714118576783 +0.85711100340627278 0.037134436368273058 0.51257565524045945 +0.84685829520082545 0.019286849148286413 0.53075413092765555 +0.83482598411320952 6.1457978060812172e-19 0.54975734503310147 +0.83001349060802176 -0.0073066631575244463 0.55678551944213661 +0.82493587926686529 -0.015775204470230869 0.56417193374348917 +0.80588150441467499 -0.045732053728024698 0.58956860097969011 +0.80104197563456947 -0.053122466844444688 0.59574101077153174 +0.79963678018449591 -0.05534752809057629 0.59753024518837039 +0.79934060742300872 -0.055862651692236226 0.5979056290568221 +0.79848519772427518 -0.05725079091428617 0.59888293763788758 +0.7956418656744515 -0.062099421877685829 0.60211592452938856 +0.77138586605477644 -0.10108899298613383 0.62717432611494861 +0.76687916779802356 -0.10789205109760849 0.63136143448574888 +0.75366980899531777 -0.12957223153317304 0.64334361719230837 +0.74532674141002397 -0.14250706129079604 0.65018159643527595 +0.74055958467102845 -0.15027494754537984 0.65399889841309089 +0.73203596503112123 -0.16333083529035369 0.66003296952840662 +0.71021467390312121 -0.19943478257349531 0.67476755984413883 +0.70685918524788072 -0.20468185015976154 0.67677227421098896 +0.69607577061268988 -0.22054081151139987 0.68235511400187043 +0.69531998299352837 -0.22171162891211948 0.68272481536695295 +0.69377314187723504 -0.22428489754399578 0.68341702461536258 +0.69212177096286909 -0.22700206765185593 0.68413337702600874 +0.67087146858540314 -0.2624299701285262 0.69320320770179844 +0.66689476317101137 -0.26866388572512034 0.69462568959831961 +0.65693999760682831 -0.28335434223766309 0.69755165300174227 +0.65068017874670425 -0.29325931385704501 0.69911600851089595 +0.63268818151834738 -0.32335420881895094 0.70294074606773105 +0.62443505191569892 -0.33636614204180326 0.70422028778974766 +0.61696807586665514 -0.34742682425518856 0.70495163176324005 +0.60785615600797449 -0.36184045701812129 0.70538094374692584 +0.59214384399202546 -0.3881595429818786 0.70538094374692573 +0.58303192413334481 -0.40257317574481138 0.70495163176324016 +0.57556494808430092 -0.41363385795819674 0.70422028778974766 +0.5673118184816528 -0.42664579118104884 0.70294074606773105 +0.5493198212532957 -0.45674068614295493 0.69911600851089584 +0.54306000239317154 -0.46664565776233696 0.69755165300174249 +0.53310523682898858 -0.4813361142748796 0.69462568959831961 +0.52912853141459681 -0.48757002987147369 0.69320320770179866 +0.50787822903712998 -0.52299793234814529 0.68413337702600852 +0.50622685812276469 -0.5257151024560045 0.68341702461536258 +0.50468001700647158 -0.52828837108788052 0.68272481536695295 +0.50392422938731019 -0.52945918848859996 0.68235511400187066 +0.49314081475211924 -0.54531814984023841 0.67677227421098896 +0.48978532609687886 -0.55056521742650477 0.67476755984413894 +0.46796403496887878 -0.58666916470964625 0.66003296952840662 +0.45944041532897167 -0.59972505245462004 0.65399889841309089 +0.45467325858997609 -0.60749293870920384 0.65018159643527607 +0.44633019100468213 -0.6204277684668269 0.64334361719230826 +0.4331208322019765 -0.64210794890239153 0.63136143448574877 +0.42861413394522363 -0.64891100701386595 0.62717432611494872 +0.40435813432554857 -0.6879005781223142 0.60211592452938856 +0.401514802275725 -0.69274920908571369 0.59888293763788769 +0.40065939257699124 -0.69413734830776352 0.5979056290568221 +0.40036321981550405 -0.6946524719094237 0.59753024518837061 +0.39895802436543049 -0.69687753315555545 0.59574101077153174 +0.39411849558532508 -0.7042679462719752 0.58956860097969033 +0.37506412073313489 -0.73422479552976916 0.5641719337434894 +0.36998650939197836 -0.74269333684247552 0.55678551944213661 +0.36517401588679066 -0.75 0.5497573450331017 +0.35314170479917451 -0.76928684914828649 0.53075413092765567 +0.34288899659372707 -0.78713443636827329 0.51257565524045945 +0.34243159318633287 -0.78789291377908466 0.51176714118576805 +0.34177771381313388 -0.78887113359859229 0.51061830246204121 +0.33951337109735685 -0.79211156275892003 0.50664961250726281 +0.32993533901945349 -0.80654749644509338 0.4886330537542477 +0.31682936237190812 -0.8280363774210906 0.46105412139556601 +0.31474205002823563 -0.83109069623026077 0.45671715648324707 +0.30729748704039872 -0.84278707285381294 0.43974499787970983 +0.30362145533065943 -0.84916410602320291 0.43023759412454349 +0.29401138453262832 -0.86471241548978517 0.4056780940788991 +0.29057971437419 -0.8695923485436825 0.39708487175152685 +0.28617291708332138 -0.87638371280443861 0.38483791504434917 +0.27461092234606033 -0.8964430577690583 0.34753041451074085 +1.645646500231599 -0.40873185103125675 0.82760814841975483 +1.4754246841105658 0.036914649200342042 0.55218346430918919 +0.92457531588943409 0.036914649200342042 0.5521834643091893 +0.75435349976840138 -0.40873185103125664 0.82760814841975505 +1.2000000000000002 -0.68415653514182251 0.99782996454078776 +1.2000000000000002 -0.68415653514182251 -0.99782996454078776 +0.75435349976840138 -0.40873185103125664 -0.82760814841975505 +0.92457531588943409 0.036914649200342042 -0.55218346430918919 +1.4754246841105658 0.036914649200342042 -0.5521834643091893 +1.645646500231599 -0.40873185103125675 -0.82760814841975483 +1.5412681489687439 -1.5776081484197546 0.44564650023159885 +1.2658434648581776 -1.7478299645407878 1.2310405966106296e-18 +1.5412681489687436 -1.5776081484197548 -0.44564650023159874 +1.986914649200342 -1.302183464309189 -0.27542468411056586 +1.9869146492003424 -1.3021834643091887 0.27542468411056575 +2.027608148419755 -0.30435349976840131 0.34126814896874336 +0.75435349976840138 -1.0912681489687435 -0.82760814841975505 +0.6478165356908111 -1.0254246841105663 0.78691464920034215 +1.2000000000000002 -0.81584346485817771 0.99782996454078776 +1.7521834643091894 -1.0254246841105661 0.78691464920034182 +1.7521834643091894 -0.47457531588943436 0.78691464920034182 +1.986914649200342 -0.19781653569081092 0.27542468411056586 +1.5412681489687436 0.077608148419754941 0.44564650023159863 +1.1341565351418224 0.24782996454078776 1.2310405966106292e-18 +0.64781653569081088 -0.47457531588943408 0.78691464920034226 +0.7543534997684016 -1.0912681489687439 0.82760814841975494 +1.7521834643091894 -0.47457531588943419 -0.78691464920034182 +1.645646500231599 -1.0912681489687435 -0.82760814841975483 +1.2000000000000002 -0.81584346485817771 -0.99782996454078776 +0.64781653569081088 -1.0254246841105659 -0.78691464920034226 +0.64781653569081088 -0.47457531588943419 -0.78691464920034226 +1.2658434648581776 0.24782996454078776 -1.2310405966106292e-18 +1.5412681489687436 0.077608148419754941 -0.44564650023159885 +2.027608148419755 -0.30435349976840137 -0.34126814896874336 +2.027608148419755 -1.1956465002315986 0.34126814896874302 +1.645646500231599 -1.0912681489687435 0.82760814841975483 +1.4754246841105663 -1.5369146492003418 0.55218346430918919 +0.85873185103125671 -1.5776081484197548 0.44564650023159885 +1.1341565351418224 -1.7478299645407878 -1.2310405966106296e-18 +0.92457531588943409 -1.536914649200342 -0.5521834643091893 +1.4754246841105658 -1.5369146492003423 -0.55218346430918908 +1.7521834643091894 -1.0254246841105659 -0.78691464920034182 +2.0276081484197555 -1.1956465002315984 -0.34126814896874325 +2.1978299645407877 -0.75 0.065843464858177464 +2.1978299645407877 -0.75 -0.065843464858177436 +1.986914649200342 -0.19781653569081104 -0.27542468411056586 +0.85873185103125671 -1.5776081484197548 -0.44564650023159907 +0.37239185158024513 -1.195646500231599 -0.34126814896874341 +0.41308535079965791 -1.3021834643091892 -0.27542468411056586 +0.3723918515802449 -1.1956465002315986 0.34126814896874336 +0.41308535079965802 -1.3021834643091892 0.27542468411056598 +0.92457531588943409 -1.5369146492003423 0.55218346430918908 +1.5036963168239361 -0.22706071813732454 0.79643145005237248 +1.4303366934291697 -0.41911870558671405 0.9151298141069959 +1.2689962820007255 0.0032759752918453122 0.65407554465688122 +1.461054269450115 -0.11542238876277822 0.7274351680516471 +0.93894573054988506 -0.11542238876277811 0.72743516805164721 +1.1310037179992745 0.0032759752918453122 0.65407554465688122 +0.96966330657083066 -0.41911870558671399 0.91512981410699601 +0.89630368317606424 -0.22706071813732454 0.79643145005237248 +1.3186983640546239 -0.48811498758743949 0.95777186148081694 +1.0813016359453766 -0.48811498758743949 0.95777186148081694 +1.0813016359453766 -0.48811498758743949 -0.95777186148081694 +1.3186983640546237 -0.48811498758743949 -0.95777186148081694 +0.89630368317606401 -0.22706071813732454 -0.79643145005237248 +0.96966330657083044 -0.41911870558671399 -0.91512981410699601 +1.1310037179992749 0.0032759752918453122 -0.65407554465688122 +0.93894573054988506 -0.11542238876277811 -0.72743516805164721 +1.461054269450115 -0.11542238876277822 -0.7274351680516471 +1.2689962820007261 0.0032759752918452012 -0.65407554465688111 +1.4303366934291701 -0.41911870558671405 -0.9151298141069959 +1.5036963168239366 -0.22706071813732454 -0.79643145005237237 +1.530881294413287 -1.6651298141069955 0.23033669342916985 +1.7229392818626763 -1.5464314500523719 0.30369631682393572 +1.4618850124125611 -1.7077718614808168 -0.1186983640546234 +1.4618850124125609 -1.7077718614808168 0.11869836405462342 +1.7229392818626761 -1.5464314500523721 -0.30369631682393577 +1.5308812944132866 -1.6651298141069957 -0.23033669342916982 +1.9532759752918458 -1.4040755446568807 -0.068996282000725426 +1.8345776112372223 -1.4774351680516467 -0.26105426945011484 +1.8345776112372221 -1.4774351680516467 0.26105426945011473 +1.9532759752918458 -1.4040755446568804 0.068996282000725453 +1.9964314500523725 -0.44630368317606428 0.52293928186267558 +2.1151298141069961 -0.51966330657083049 0.33088129441328584 +0.96966330657083044 -1.0808812944132864 -0.9151298141069959 +0.89630368317606424 -1.2729392818626755 -0.79643145005237259 +0.54592445534311906 -0.81899628200072527 0.75327597529184542 +0.47256483194835297 -1.0110542694501148 0.63457761123722212 +1.0813016359453769 -1.0118850124125609 0.95777186148081694 +1.3186983640546237 -1.0118850124125609 0.95777186148081683 +1.9274351680516475 -1.0110542694501148 0.63457761123722156 +1.8540755446568815 -0.81899628200072538 0.75327597529184498 +1.8540755446568815 -0.68100371799927473 0.75327597529184498 +1.9274351680516473 -0.48894573054988527 0.63457761123722167 +1.9532759752918456 -0.095924455343119219 0.068996282000725412 +1.8345776112372223 -0.022564831948353237 0.26105426945011484 +1.7229392818626761 0.046431450052372147 0.30369631682393577 +1.5308812944132866 0.16512981410699579 0.23033669342916971 +0.54592445534311906 -0.6810037179992745 0.75327597529184542 +0.89630368317606457 -1.2729392818626759 0.79643145005237248 +0.969663306570831 -1.0808812944132864 0.91512981410699601 +1.9274351680516475 -0.48894573054988527 -0.63457761123722156 +1.8540755446568815 -0.68100371799927462 -0.75327597529184498 +1.5036963168239361 -1.2729392818626759 -0.79643145005237226 +1.4303366934291697 -1.0808812944132864 -0.9151298141069959 +1.3186983640546237 -1.0118850124125607 -0.95777186148081683 +1.0813016359453766 -1.0118850124125607 -0.95777186148081683 +0.47256483194835297 -1.0110542694501148 -0.63457761123722201 +0.54592445534311906 -0.8189962820007255 -0.75327597529184531 +0.54592445534311895 -0.68100371799927473 -0.75327597529184542 +1.4618850124125611 0.20777186148081683 0.1186983640546234 +1.4618850124125609 0.20777186148081683 -0.11869836405462342 +1.5308812944132868 0.16512981410699579 -0.23033669342916979 +1.7229392818626761 0.046431450052372147 -0.30369631682393572 +2.1151298141069956 -0.51966330657083037 -0.3308812944132859 +1.9964314500523725 -0.44630368317606417 -0.52293928186267558 +2.1151298141069961 -0.98033669342916963 0.33088129441328579 +1.9964314500523728 -1.0536963168239355 0.52293928186267535 +1.4303366934291701 -1.0808812944132864 0.91512981410699579 +1.5036963168239363 -1.2729392818626759 0.79643145005237215 +1.4610542694501154 -1.3845776112372215 0.72743516805164721 +1.2689962820007261 -1.5032759752918452 0.65407554465688111 +0.67706071813732438 -1.5464314500523724 0.30369631682393589 +0.86911870558671378 -1.6651298141069959 0.23033669342916985 +0.93811498758743972 -1.7077718614808171 0.11869836405462342 +0.93811498758743939 -1.7077718614808171 -0.11869836405462345 +0.93894573054988506 -1.3845776112372217 -0.72743516805164732 +1.1310037179992742 -1.5032759752918454 -0.65407554465688122 +1.2689962820007255 -1.5032759752918454 -0.65407554465688122 +1.461054269450115 -1.3845776112372219 -0.72743516805164699 +1.8540755446568815 -0.81899628200072527 -0.75327597529184498 +1.9274351680516473 -1.0110542694501146 -0.63457761123722178 +1.9964314500523725 -1.0536963168239355 -0.52293928186267535 +2.1151298141069961 -0.98033669342916974 -0.33088129441328584 +2.1577718614808168 -0.63130163594537647 0.26188501241256051 +2.1577718614808168 -0.86869836405462331 0.26188501241256057 +2.1577718614808168 -0.86869836405462353 -0.26188501241256051 +2.1577718614808168 -0.63130163594537669 -0.26188501241256057 +1.8345776112372223 -0.022564831948353237 -0.2610542694501149 +1.9532759752918452 -0.095924455343118997 -0.068996282000725481 +0.86911870558671411 -1.6651298141069959 -0.23033669342916996 +0.67706071813732449 -1.5464314500523724 -0.30369631682393589 +0.40356854994762748 -1.0536963168239357 -0.52293928186267569 +0.56542238876277817 -1.4774351680516471 -0.26105426945011495 +0.44672402470815431 -1.4040755446568807 -0.068996282000725495 +0.40356854994762748 -1.0536963168239357 0.52293928186267569 +0.44672402470815431 -1.4040755446568807 0.068996282000725453 +0.56542238876277806 -1.4774351680516471 0.2610542694501149 +1.1310037179992749 -1.5032759752918454 0.65407554465688122 +0.93894573054988539 -1.3845776112372221 0.7274351680516471 +1.8370473838366879 -0.41456827261077828 0.69401454380114713 +1.7036911127293843 -0.22163878825453986 0.68346886752821701 +1.4724957718177856 0.14756031181852225 0.34659997257597425 +1.2699303480424986 0.13287877117884817 0.46436496618972251 +0.63787141557069948 -0.6107082358556537 0.81523570763863529 +0.84548244056661226 -0.61218022100605229 0.92483674698373319 +1.3212211638374884 -0.88320400767343932 0.98364735641266221 +1.441367879455516 -0.6821105690485505 0.96805607891910661 +1.0787788361625117 -0.88320400767343921 -0.98364735641266243 +0.9586321205444841 -0.6821105690485505 -0.96805607891910683 +1.130069651957502 0.13287877117884817 -0.46436496618972251 +1.6686357350626615 0.026339147981033872 -0.42151877198336163 +1.660471780794011 -0.10848910827666802 -0.61353851948571891 +1.7621285844293006 -0.6107082358556537 -0.81523570763863507 +1.5545175594333882 -0.61218022100605218 -0.92483674698373297 +1.3392917641443465 -1.5652357076386352 0.56212858442930091 +1.3378197789939481 -1.6748367469837331 0.35451755943338803 +1.0667959923265606 -1.7336473564126624 -0.12122116383748836 +1.2678894309514499 -1.7180560789191066 -0.24136787945551624 +1.535431727389222 -1.4440145438011469 -0.63704738383668813 +1.7283612117454605 -1.433468867528217 -0.50369111272938405 +2.0975603118185226 -1.0965999725759743 -0.27249577181778517 +2.0828787711788483 -1.214364966189722 -0.069930348042498189 +1.9763391479810346 -1.1715187719833613 0.46863573506266054 +1.8415108917233329 -1.3635385194857184 0.46047178079401052 +1.8940145438011475 -0.11295261616331242 0.33543172738922156 +1.8834688675282174 -0.24630888727061595 0.52836121174546036 +0.63787141557069948 -0.8892917641443463 -0.81523570763863529 +0.84548244056661226 -0.88781977899394804 -0.92483674698373319 +0.85340002742402632 -1.0224957718177858 0.89756031181852258 +0.73563503381027773 -0.8199303480424982 0.88287877117884828 +1.0787788361625121 -0.61679599232656102 0.98364735641266243 +0.9586321205444841 -0.81788943095144961 0.96805607891910683 +1.6215187719833617 -1.2186357350626613 0.77633914798103398 +1.8135385194857192 -1.2104717807940104 0.64151089172333176 +1.5465999725759745 -0.47750422818221472 0.89756031181852247 +1.6643649661897226 -0.6800696519575018 0.88287877117884805 +2.0975603118185226 -0.40340002742402592 0.27249577181778528 +2.0828787711788479 -0.28563503381027766 0.069930348042498217 +1.535431727389222 -0.05598545619885309 0.63704738383668813 +1.7283612117454608 -0.066531132471783327 0.50369111272938427 +1.3332040076734395 0.23364735641266221 -0.12122116383748827 +1.1321105690485507 0.21805607891910683 -0.24136787945551619 +1.0607082358556541 0.065235707638635065 0.56212858442930091 +1.062180221006052 0.17483674698373297 0.35451755943338792 +0.77848122801663822 -0.28136426493733913 0.77633914798103421 +0.56295261616331205 -1.085431727389222 0.69401454380114724 +0.69630888727061591 -1.2783612117454606 0.68346886752821701 +1.6215187719833619 -0.28136426493733918 -0.77633914798103409 +1.8135385194857194 -0.28952821920598959 -0.64151089172333187 +1.8370473838366879 -1.085431727389222 -0.69401454380114702 +1.7036911127293841 -1.2783612117454606 -0.68346886752821689 +1.3212211638374884 -0.61679599232656102 -0.98364735641266243 +1.441367879455516 -0.8178894309514495 -0.96805607891910661 +0.77848122801663822 -1.2186357350626609 -0.77633914798103421 +0.58646148051428115 -1.2104717807940109 -0.64151089172333209 +0.85340002742402576 -0.47750422818221466 -0.89756031181852258 +0.73563503381027773 -0.6800696519575018 -0.88287877117884828 +1.0667959923265609 0.23364735641266243 0.12122116383748828 +1.2678894309514495 0.21805607891910661 0.24136787945551616 +1.3392917641443458 0.065235707638635065 -0.56212858442930091 +1.3378197789939481 0.17483674698373297 -0.35451755943338792 +2.0152357076386354 -0.18787141557069953 -0.13929176414434619 +2.1248367469837333 -0.39548244056661219 -0.13781977899394779 +2.0152357076386354 -1.3121285844293002 0.13929176414434616 +2.1248367469837333 -1.1045175594333878 0.13781977899394765 +1.7621285844293006 -0.88929176414434641 0.81523570763863507 +1.5545175594333882 -0.88781977899394793 0.92483674698373297 +1.6686357350626613 -1.5263391479810342 0.42151877198336157 +1.6604717807940113 -1.3915108917233319 0.6135385194857188 +0.86456827261077818 -1.4440145438011469 0.63704738383668824 +0.67163878825453982 -1.4334688675282172 0.50369111272938427 +1.3332040076734395 -1.7336473564126622 0.12122116383748834 +1.1321105690485507 -1.7180560789191068 0.24136787945551627 +0.7313642649373393 -1.5263391479810342 -0.42151877198336168 +0.73952821920598932 -1.3915108917233323 -0.61353851948571902 +1.4724957718177856 -1.6475603118185225 -0.34659997257597425 +1.2699303480424979 -1.6328787711788482 -0.46436496618972256 +1.5465999725759745 -1.0224957718177854 -0.89756031181852247 +1.6643649661897224 -0.81993034804249787 -0.88287877117884817 +1.8940145438011475 -1.3870473838366877 -0.33543172738922156 +1.883468867528217 -1.2536911127293844 -0.52836121174546002 +2.1836473564126626 -0.62877883616251173 -0.13320400767343912 +2.1680560789191068 -0.50863212054448403 0.067889430951449614 +2.1836473564126626 -0.87122116383748816 0.13320400767343907 +2.1680560789191068 -0.99136787945551619 -0.067889430951449573 +1.9763391479810344 -0.32848122801663854 -0.46863573506266076 +1.8415108917233325 -0.13646148051428131 -0.46047178079401069 +1.0607082358556541 -1.5652357076386352 -0.56212858442930091 +1.0621802210060525 -1.6748367469837331 -0.35451755943338803 +0.38476429236136467 -1.3121285844293005 -0.13929176414434624 +0.27516325301626687 -1.104517559433388 -0.13781977899394784 +0.42366085201896575 -1.1715187719833617 -0.46863573506266099 +0.55848910827666798 -1.3635385194857188 -0.4604717807940108 +0.50598545619885293 -1.3870473838366881 0.33543172738922172 +0.51653113247178306 -1.2536911127293846 0.52836121174546025 +0.3024396881814776 -1.0965999725759743 0.27249577181778545 +0.31712122882115168 -1.2143649661897222 0.06993034804249823 +0.92750422818221478 -1.6475603118185225 0.3465999725759743 +1.130069651957502 -1.6328787711788482 0.46436496618972251 +1.3318385030170197 -0.083304877297165847 0.73357768674250456 +1.2997571655259812 -0.25474116197207625 0.86299895207436539 +1.3212211638374884 -0.6167959923265609 0.98364735641266221 +1.5545175594333884 -0.61218022100605229 0.92483674698373297 +1.0681614969829809 -0.083304877297165625 0.73357768674250445 +1.2616533189164061 -0.15498399644609528 0.80134563315795981 +1.6215187719833619 -0.28136426493733929 0.77633914798103421 +1.6604717807940104 -0.10848910827666802 0.61353851948571902 +0.98668082109255706 -0.29662405620460913 0.86541618975952428 +1.1383466810835945 -0.15498399644609528 0.8013456331579597 +1.3392917641443463 0.065235707638635065 0.56212858442930091 +1.130069651957502 0.13287877117884817 0.46436496618972245 +1.2000000000000002 -0.42846255922162907 0.94689686564994791 +1.1002428344740192 -0.25474116197207619 0.86299895207436539 +1.4133191789074442 -0.29662405620460919 0.86541618975952417 +1.2000000000000006 -0.31639448088848182 0.90110279868394094 +0.85340002742402565 -0.47750422818221461 0.89756031181852258 +0.9586321205444841 -0.6821105690485505 0.96805607891910683 +0.98668082109255639 -0.29662405620460919 -0.86541618975952417 +1.2 -0.31639448088848182 -0.90110279868394094 +1.5465999725759745 -0.47750422818221466 -0.89756031181852236 +1.4413678794555165 -0.6821105690485505 -0.96805607891910661 +1.0681614969829805 -0.083304877297165847 -0.73357768674250456 +1.1002428344740194 -0.25474116197207625 -0.86299895207436539 +1.0787788361625117 -0.6167959923265609 -0.98364735641266243 +0.84548244056661226 -0.61218022100605229 -0.92483674698373319 +1.3318385030170203 -0.083304877297165625 -0.73357768674250434 +1.1383466810835945 -0.15498399644609517 -0.80134563315795992 +0.77848122801663844 -0.28136426493733918 -0.77633914798103432 +1.4133191789074437 -0.29662405620460919 -0.86541618975952417 +1.2616533189164061 -0.15498399644609495 -0.80134563315795981 +1.0607082358556541 0.065235707638635065 -0.56212858442930091 +1.2699303480424986 0.13287877117884817 -0.46436496618972245 +1.2000000000000002 -0.42846255922162907 -0.94689686564994791 +1.2997571655259814 -0.25474116197207619 -0.86299895207436528 +1.535431727389222 -0.055985456198853201 -0.63704738383668802 +1.7036911127293846 -0.22163878825453975 -0.68346886752821689 +1.5215374407783711 -1.6968968656499479 1.2287154012371122e-18 +1.6952588380279243 -1.6129989520743651 0.099757165525981017 +1.8940145438011475 -1.3870473838366877 0.33543172738922156 +1.7283612117454608 -1.4334688675282168 0.50369111272938427 +1.6533759437953917 -1.6154161897595238 -0.21331917890744354 +1.6336055191115184 -1.6511027986839406 1.2262216765384848e-18 +1.472495771817786 -1.6475603118185222 0.3465999725759743 +1.2678894309514497 -1.7180560789191066 0.24136787945551616 +1.8666951227028346 -1.4835776867425041 -0.13183850301701966 +1.6952588380279243 -1.6129989520743651 -0.099757165525981017 +1.3332040076734395 -1.7336473564126622 -0.12122116383748834 +1.3378197789939481 -1.6748367469837331 -0.35451755943338797 +1.8666951227028352 -1.4835776867425037 0.13183850301701966 +1.7950160035539056 -1.5513456331579594 -0.061653318916405561 +1.6686357350626613 -1.5263391479810342 -0.42151877198336174 +1.8415108917233325 -1.3635385194857186 -0.46047178079401058 +1.6533759437953914 -1.6154161897595238 0.21331917890744345 +1.7950160035539053 -1.5513456331579594 0.06165331891640554 +2.0152357076386354 -1.3121285844293 -0.13929176414434613 +2.0828787711788483 -1.214364966189722 0.069930348042498189 +1.9335776867425047 -0.61816149698298051 0.66669512270283404 +2.0629989520743655 -0.6502428344740192 0.49525883802792375 +2.1836473564126626 -0.62877883616251184 0.13320400767343912 +2.1248367469837333 -0.39548244056661236 0.13781977899394779 +1.2 -1.0715374407783713 -0.94689686564994791 +1.1002428344740192 -1.2452588380279237 -0.86299895207436528 +0.86456827261077818 -1.4440145438011469 -0.63704738383668824 +0.69630888727061557 -1.2783612117454601 -0.68346886752821723 +0.30243968818147737 -1.0965999725759743 -0.27249577181778545 +0.39865436684204036 -0.81165331891640546 0.59501600355390505 +0.42366085201896597 -1.1715187719833617 0.46863573506266121 +0.58646148051428126 -1.2104717807940111 0.64151089172333209 +0.98668082109255706 -1.203375943795391 0.86541618975952428 +1.2000000000000002 -1.1836055191115182 0.90110279868394083 +1.5465999725759745 -1.0224957718177856 0.89756031181852236 +1.4413678794555167 -0.81788943095144961 0.9680560789191065 +2.0654161897595245 -0.96331917890744334 0.45337594379539059 +2.00134563315796 -0.81165331891640569 0.5950160035539046 +1.7621285844293011 -0.61070823585565404 0.81523570763863507 +1.6643649661897226 -0.8199303480424982 0.88287877117884805 +1.9335776867425047 -0.88183850301701949 0.66669512270283382 +2.00134563315796 -0.68834668108359442 0.5950160035539046 +1.9763391479810344 -0.32848122801663865 0.46863573506266099 +1.813538519485719 -0.28952821920598959 0.64151089172333209 +1.8666951227028346 -0.016422313257495769 -0.13183850301701974 +1.7950160035539053 0.051345633157959369 0.061653318916405554 +1.6686357350626613 0.026339147981034206 0.42151877198336174 +1.8415108917233325 -0.13646148051428153 0.46047178079401069 +1.8666951227028343 -0.016422313257495658 0.13183850301701971 +1.6952588380279245 0.11299895207436506 0.099757165525981045 +1.3332040076734395 0.23364735641266221 0.12122116383748827 +1.3378197789939481 0.17483674698373319 0.35451755943338797 +1.1321105690485505 0.21805607891910661 0.24136787945551616 +0.6378714155706996 -0.88929176414434641 0.8152357076386354 +0.73563503381027773 -0.6800696519575018 0.88287877117884839 +1.0681614969829809 -1.4166951227028342 0.73357768674250479 +1.1002428344740194 -1.2452588380279237 0.86299895207436539 +1.0787788361625121 -0.88320400767343932 0.98364735641266243 +0.84548244056661248 -0.88781977899394804 0.9248367469837333 +2.0654161897595245 -0.53668082109255666 -0.45337594379539081 +2.00134563315796 -0.68834668108359442 -0.59501600355390472 +1.7621285844293011 -0.8892917641443463 -0.81523570763863507 +1.6643649661897226 -0.68006965195750169 -0.88287877117884805 +1.3318385030170194 -1.4166951227028339 -0.73357768674250468 +1.2997571655259812 -1.2452588380279237 -0.86299895207436539 +1.3212211638374884 -0.88320400767343932 -0.98364735641266221 +1.5545175594333882 -0.88781977899394793 -0.92483674698373297 +1.4133191789074437 -1.203375943795391 -0.86541618975952417 +1.2 -1.1836055191115182 -0.90110279868394083 +0.85340002742402565 -1.0224957718177852 -0.89756031181852258 +0.9586321205444841 -0.81788943095144961 -0.96805607891910683 +0.33458381024047579 -0.96331917890744323 -0.45337594379539092 +0.39865436684204025 -0.8116533189164058 -0.59501600355390494 +0.63787141557069948 -0.61070823585565404 -0.81523570763863551 +0.73563503381027773 -0.81993034804249798 -0.88287877117884839 +0.46642231325749561 -0.88183850301701971 -0.66669512270283449 +1.0667959923265611 0.23364735641266243 -0.12122116383748828 +1.0621802210060525 0.17483674698373319 -0.35451755943338797 +1.6533759437953914 0.11541618975952384 0.21331917890744345 +1.6336055191115184 0.15110279868394072 -1.2262216765384848e-18 +1.4724957718177856 0.14756031181852225 -0.34659997257597425 +1.2678894309514497 0.21805607891910661 -0.24136787945551616 +1.5215374407783711 0.19689686564994791 -1.2287154012371122e-18 +1.6952588380279245 0.11299895207436506 -0.099757165525981045 +1.8940145438011473 -0.1129526161633122 -0.33543172738922167 +1.7283612117454608 -0.066531132471783216 -0.50369111272938416 +2.1468968656499481 -0.74999999999999989 -0.32153744077837088 +2.0629989520743655 -0.65024283447401887 -0.49525883802792381 +1.8370473838366883 -0.41456827261077839 -0.69401454380114669 +1.8834688675282174 -0.24630888727061584 -0.52836121174546025 +2.1468968656499481 -0.74999999999999989 0.32153744077837082 +2.0629989520743655 -0.84975716552598102 0.4952588380279237 +1.8370473838366883 -1.0854317273892216 0.69401454380114669 +1.8834688675282174 -1.2536911127293839 0.52836121174546025 +1.2000000000000002 -1.0715374407783713 0.94689686564994791 +1.2997571655259814 -1.2452588380279237 0.86299895207436528 +1.5354317273892222 -1.4440145438011467 0.63704738383668802 +1.7036911127293846 -1.2783612117454606 0.68346886752821678 +1.4133191789074437 -1.203375943795391 0.86541618975952417 +1.2616533189164061 -1.3450160035539047 0.80134563315795981 +1.0607082358556541 -1.5652357076386352 0.56212858442930091 +1.269930348042499 -1.6328787711788482 0.46436496618972256 +0.53330487729716558 -1.4835776867425046 0.13183850301701974 +0.70474116197207626 -1.6129989520743653 0.099757165525981073 +1.0667959923265609 -1.7336473564126624 0.12122116383748836 +1.0621802210060525 -1.6748367469837331 0.35451755943338797 +0.74662405620460892 -1.6154161897595241 0.21331917890744362 +0.76639448088848172 -1.6511027986839408 -1.226221676538485e-18 +0.92750422818221478 -1.6475603118185225 -0.34659997257597441 +1.1321105690485505 -1.7180560789191066 -0.24136787945551619 +0.98668082109255706 -1.203375943795391 -0.86541618975952428 +1.1383466810835943 -1.3450160035539047 -0.80134563315795981 +1.3392917641443463 -1.5652357076386352 -0.56212858442930091 +1.130069651957502 -1.6328787711788482 -0.46436496618972267 +1.0681614969829802 -1.4166951227028344 -0.73357768674250434 +1.2616533189164061 -1.3450160035539049 -0.80134563315795981 +1.6215187719833617 -1.2186357350626611 -0.77633914798103409 +1.6604717807940104 -1.3915108917233319 -0.61353851948571902 +1.9335776867425047 -0.61816149698298029 -0.66669512270283404 +2.00134563315796 -0.81165331891640546 -0.5950160035539046 +1.9763391479810344 -1.1715187719833615 -0.46863573506266087 +1.813538519485719 -1.2104717807940109 -0.64151089172333209 +1.9335776867425047 -0.88183850301701949 -0.66669512270283404 +2.0629989520743655 -0.84975716552598102 -0.49525883802792381 +2.1836473564126626 -0.87122116383748793 -0.13320400767343907 +2.1248367469837333 -1.1045175594333876 -0.13781977899394773 +2.0654161897595245 -0.53668082109255666 0.45337594379539081 +2.1011027986839408 -0.74999999999999989 0.43360551911151807 +2.0975603118185226 -1.0965999725759743 0.27249577181778517 +2.1680560789191068 -0.99136787945551619 0.067889430951449573 +2.065416189759524 -0.96331917890744345 -0.45337594379539076 +2.1011027986839408 -0.74999999999999989 -0.43360551911151807 +2.0975603118185226 -0.40340002742402592 -0.27249577181778528 +2.1680560789191068 -0.50863212054448415 -0.067889430951449614 +1.6533759437953914 0.11541618975952384 -0.2133191789074434 +1.7950160035539053 0.051345633157959369 -0.06165331891640554 +2.0152357076386354 -0.18787141557069942 0.13929176414434624 +2.0828787711788483 -0.28563503381027772 -0.069930348042498203 +0.87846255922162908 -1.6968968656499479 -1.2287154012371124e-18 +0.70474116197207626 -1.6129989520743653 -0.099757165525981073 +0.50598545619885282 -1.3870473838366881 -0.33543172738922172 +0.6716387882545396 -1.4334688675282168 -0.50369111272938449 +0.56295261616331194 -1.085431727389222 -0.69401454380114702 +0.51653113247178317 -1.2536911127293844 -0.52836121174546036 +0.74662405620460925 -1.6154161897595241 -0.21331917890744351 +0.60498399644609513 -1.5513456331579598 -0.061653318916405575 +0.38476429236136467 -1.3121285844293005 0.13929176414434624 +0.31712122882115168 -1.2143649661897222 -0.06993034804249823 +0.46642231325749572 -0.8818385030170196 0.66669512270283449 +0.27516325301626676 -1.104517559433388 0.13781977899394782 +0.53330487729716547 -1.4835776867425041 -0.13183850301701977 +0.60498399644609502 -1.5513456331579596 0.061653318916405589 +0.73136426493733908 -1.5263391479810342 0.42151877198336185 +0.55848910827666798 -1.3635385194857188 0.46047178079401091 +1.3318385030170203 -1.4166951227028344 0.73357768674250423 +1.1383466810835952 -1.3450160035539049 0.80134563315795981 +0.77848122801663866 -1.2186357350626613 0.77633914798103421 +0.73952821920598932 -1.3915108917233319 0.61353851948571902 +0.3345838102404759 -0.96331917890744334 0.45337594379539103 +1.7257938275259754 -0.54171259951203343 0.82471644201722449 +1.8144698341819119 -0.47712117915505492 0.74024588618561449 +1.6063294025426431 0.034371238373710589 0.46867704983435055 +1.5392409609172171 0.11230450765389333 0.37596077789543386 +0.61057431319105182 -0.54268760819673534 0.78076816785433145 +1.1186290539433099 -0.81638104563821712 0.9944708773603258 +1.2405222816687171 -0.88192856911395234 0.99043061207734606 +1.2813709460566907 -0.81638104563821712 -0.9944708773603258 +1.1594777183312832 -0.88192856911395234 -0.99043061207734606 +0.67420617247402481 -0.54171259951203332 -0.82471644201722483 +1.4746684461261839 0.11574218443040085 -0.41838703947458189 +1.6048073899588975 0.071782225985176584 -0.40100492526839776 +1.7760838378857442 -0.41005164309557424 -0.74334549596053434 +1.7894256868089482 -0.54268760819673534 -0.78076816785433145 +1.5399483569044261 -1.4933454959605343 0.57608383788574391 +1.4073123918032651 -1.5307681678543312 0.58942568680894813 +1.1336189543617827 -1.7444708773603259 0.081370946056690305 +1.0680714308860475 -1.7404306120773461 -0.040522281668716881 +1.4082874004879669 -1.5747164420172246 -0.52579382752597525 +1.4728788208449453 -1.4902458861856145 -0.61446983418191203 +1.9843712383737104 -1.2186770498343509 -0.40632940254264294 +2.0623045076538933 -1.1259607778954337 -0.33924096091721667 +2.0657421844304009 -1.1683870394745814 0.27466844612618369 +2.0217822259851768 -1.1510049252683978 0.40480738995889709 +2.0247164420172248 -0.22420617247402475 0.20828740048796671 +1.9402458861856147 -0.13553016581808797 0.27287882084494519 +0.62391616211425593 -1.0899483569044257 -0.74334549596053445 +0.61057431319105182 -0.95731239180326444 -0.78076816785433145 +0.73132295016564974 -1.1563294025426434 0.7843712383737107 +0.82403922210456648 -1.0892409609172171 0.86230450765389366 +1.2813709460566907 -0.68361895436178255 0.9944708773603258 +1.1594777183312834 -0.61807143088604777 0.99043061207734606 +1.6183870394745821 -1.0246684461261837 0.86574218443040063 +1.6010049252683982 -1.1548073899588975 0.82178222598517625 +1.6686770498343511 -0.34367059745735729 0.7843712383737107 +1.5759607778954343 -0.41075903908278349 0.86230450765389333 +1.9843712383737104 -0.28132295016564945 0.40632940254264299 +2.0623045076538933 -0.37403922210456625 0.33924096091721667 +1.4082874004879666 0.074716442017224605 0.52579382752597525 +1.4728788208449453 -0.0097541138143855122 0.61446983418191214 +1.2663810456382176 0.24447087736032569 0.081370946056690249 +1.3319285691139524 0.24043061207734606 -0.040522281668716874 +0.9926876081967354 0.030768167854331341 0.58942568680894825 +0.78161296052541807 -0.47533155387381615 0.86574218443040096 +0.79899507473160236 -0.34519261004110258 0.82178222598517658 +0.67420617247402481 -0.9582874004879669 0.82471644201722483 +0.58553016581808803 -1.0228788208449453 0.74024588618561449 +1.6183870394745821 -0.4753315538738162 -0.86574218443040063 +1.6010049252683982 -0.34519261004110269 -0.82178222598517636 +1.7257938275259754 -0.95828740048796668 -0.82471644201722449 +1.8144698341819119 -1.0228788208449451 -0.74024588618561449 +1.1186290539433099 -0.68361895436178255 -0.9944708773603258 +1.2405222816687171 -0.61807143088604777 -0.99043061207734606 +0.78161296052541807 -1.0246684461261839 -0.86574218443040096 +0.79899507473160225 -1.1548073899588973 -0.8217822259851767 +0.7313229501656493 -0.34367059745735723 -0.78437123837371081 +0.82403922210456626 -0.41075903908278338 -0.86230450765389366 +0.99171259951203328 0.074716442017224605 -0.52579382752597525 +0.92712117915505488 -0.0097541138143854011 -0.61446983418191226 +1.1336189543617827 0.24447087736032569 -0.081370946056690249 +1.0680714308860475 0.24043061207734606 0.040522281668716874 +1.5399483569044259 -0.0066545040394656585 -0.57608383788574391 +1.4073123918032642 0.030768167854331452 -0.58942568680894836 +1.9433454959605347 -0.17391616211425631 -0.33994835690442565 +1.9807681678543314 -0.16057431319105175 -0.2073123918032645 +1.9433454959605347 -1.3260838378857436 0.3399483569044256 +1.9807681678543316 -1.3394256868089478 0.20731239180326447 +1.7760838378857442 -1.0899483569044257 0.74334549596053434 +1.7894256868089482 -0.95731239180326466 0.78076816785433145 +1.4746684461261848 -1.6157421844304007 0.41838703947458178 +1.6048073899588982 -1.5717822259851764 0.40100492526839771 +0.99171259951203317 -1.5747164420172246 0.52579382752597525 +0.92712117915505499 -1.4902458861856145 0.61446983418191214 +1.2663810456382176 -1.7444708773603259 -0.081370946056690305 +1.3319285691139524 -1.7404306120773461 0.040522281668716881 +0.92533155387381627 -1.615742184430401 -0.41838703947458195 +0.79519261004110253 -1.5717822259851766 -0.40100492526839782 +1.6063294025426431 -1.5343712383737107 -0.46867704983435049 +1.5392409609172168 -1.6123045076538933 -0.37596077789543381 +1.6686770498343508 -1.1563294025426429 -0.78437123837371048 +1.5759607778954343 -1.0892409609172169 -0.86230450765389333 +2.0247164420172248 -1.2757938275259753 -0.20828740048796671 +1.9402458861856147 -1.3644698341819119 -0.27287882084494525 +2.1944708773603256 -0.83137094605669015 -0.066381045638217187 +2.1904306120773462 -0.70947771833128304 -0.13192856911395226 +2.1944708773603256 -0.66862905394330951 0.066381045638217215 +2.1904306120773462 -0.79052228166871696 0.13192856911395226 +2.0657421844304009 -0.33161296052541833 -0.27466844612618385 +2.0217822259851763 -0.34899507473160229 -0.40480738995889737 +0.86005164309557447 -1.4933454959605346 -0.57608383788574402 +0.9926876081967354 -1.5307681678543315 -0.58942568680894825 +0.45665450403946539 -1.3260838378857438 -0.33994835690442576 +0.4192318321456685 -1.339425686808948 -0.20731239180326452 +0.33425781556959899 -1.1683870394745817 -0.27466844612618391 +0.37821777401482348 -1.151004925268398 -0.40480738995889742 +0.37528355798277535 -1.2757938275259753 0.20828740048796671 +0.45975411381438525 -1.3644698341819119 0.27287882084494525 +0.41562876162628937 -1.2186770498343509 0.40632940254264294 +0.33769549234610641 -1.1259607778954337 0.33924096091721689 +0.79367059745735713 -1.5343712383737107 0.46867704983435055 +0.86075903908278317 -1.6123045076538935 0.37596077789543386 +1.5283955572053114 -0.10938546291290407 0.69409608332024086 +1.4001281403434436 -0.069819281493047614 0.70519707714513458 +1.2777044036438101 -0.42728941095227679 0.94330265629374277 +1.2802812773502414 -0.55260647397715412 0.97703158208487906 +1.1302598023666912 0.050472340674918903 0.59529852733606181 +1.0641637744730592 -0.030084692934636004 0.68063975088704354 +1.4345849586062216 -0.23428397075672924 0.82401873423925942 +1.5536293529417171 -0.28443495637683436 0.81129246939324062 +0.82850263027516902 -0.22222747306573265 0.76383628095354994 +0.91592045537741096 -0.28960691129913413 0.84103330267207566 +1.2672770740243227 -0.047722974677923635 0.70871769768752158 +1.3382736821873722 0.019577838502176204 0.62340222914316235 +1.0401421964121773 -0.55062303027104376 0.96679589706089264 +1.1602654114415887 -0.48973505164257786 0.96471929550963276 +1.0069945598044525 -0.12542737832173323 0.75674166021493716 +0.9318284823996803 -0.060703438848064839 0.67301878720586861 +1.4726998137406517 -0.48088283263773512 0.9236940845413727 +1.4595222183644985 -0.35389882611563678 0.88076789123048704 +1.0134390039211945 -0.36001233692795437 0.90172313788306924 +0.89598720512098962 -0.41433279178978172 0.89157374674348211 +0.9273001862593484 -0.48088283263773507 -0.92369408454137281 +0.94047778163550189 -0.35389882611563678 -0.88076789123048704 +1.3865609960788059 -0.36001233692795448 -0.90172313788306901 +1.5040127948790107 -0.41433279178978177 -0.891573746743482 +0.87160444279468874 -0.10938546291290407 -0.69409608332024098 +0.99987185965655645 -0.069819281493047614 -0.70519707714513458 +1.1222955963561905 -0.42728941095227674 -0.94330265629374299 +1.1197187226497587 -0.55260647397715412 -0.97703158208487906 +1.2697401976333089 0.050472340674918903 -0.59529852733606181 +1.3358362255269414 -0.030084692934636004 -0.68063975088704354 +0.96541504139377876 -0.23428397075672924 -0.82401873423925942 +0.84637064705828324 -0.28443495637683419 -0.81129246939324084 +1.5714973697248311 -0.22222747306573276 -0.76383628095354983 +1.4840795446225896 -0.28960691129913418 -0.84103330267207554 +1.1327229259756779 -0.047722974677923524 -0.70871769768752169 +1.0617263178126279 0.019577838502176315 -0.62340222914316246 +1.3598578035878233 -0.55062303027104387 -0.96679589706089242 +1.2397345885584119 -0.48973505164257786 -0.96471929550963276 +1.3930054401955481 -0.12542737832173323 -0.75674166021493716 +1.4681715176003201 -0.060703438848065061 -0.67301878720586839 +1.3993769697289566 -1.7167958970608925 0.15985780358782289 +1.4602649483574226 -1.7147192955096329 0.039734588558411603 +1.8245726216782669 -1.5067416602149368 0.19300544019554741 +1.889296561151935 -1.4230187872058684 0.2681715176003196 +1.4691171673622654 -1.6736940845413726 -0.27269981374065155 +1.5961011738843633 -1.630767891230487 -0.25952221836449829 +1.589987663072046 -1.651723137883069 0.18656099607880569 +1.5356672082102192 -1.6415737467434817 0.30401279487901056 +1.8406145370870961 -1.444096083320241 -0.32839555720531111 +1.8801807185069523 -1.4551970771451344 -0.20012814034344359 +1.5227105890477237 -1.6933026562937428 -0.077704403643809719 +1.3973935260228465 -1.7270315820848787 -0.080281277350241292 +2.0004723406749187 -1.3452985273360616 0.069740197633308881 +1.9199153070653643 -1.4306397508870434 0.135836225526941 +1.7157160292432709 -1.5740187342392593 -0.23458495860622131 +1.6655650436231657 -1.5612924693932406 -0.35362935294171666 +1.7277725269342676 -1.5138362809535497 0.37149736972483094 +1.660393088700866 -1.5910333026720753 0.28407954462258922 +1.9022770253220767 -1.4587176976875214 -0.067277074024322189 +1.9695778385021763 -1.3734022291431622 -0.13827368218737227 +1.8940960833202412 -0.42160444279468906 0.64061453708709593 +1.9051970771451345 -0.54987185965655661 0.68018071850695228 +2.1433026562937432 -0.67229559635619029 0.32271058904772337 +2.1770315820848789 -0.66971872264975862 0.19739352602284604 +1.0401421964121771 -0.94937696972895624 -0.96679589706089264 +1.1602654114415887 -1.0102649483574224 -0.96471929550963276 +1.0069945598044525 -1.3745726216782668 -0.75674166021493716 +0.93182848239968041 -1.439296561151935 -0.6730187872058685 +0.30842625325651785 -1.0540127948790103 -0.33566720821021845 +0.60470147266393859 -0.68025980236669126 0.80047234067491901 +0.51936024911295664 -0.61416377447305892 0.71991530706536411 +0.37598126576074054 -0.98458495860622119 0.51571602924327087 +0.38870753060675922 -1.1036293529417167 0.46556504362316592 +0.92730018625934885 -1.0191171673622652 0.92369408454137281 +0.94047778163550211 -1.1461011738843636 0.88076789123048704 +1.3865609960788059 -1.1399876630720458 0.90172313788306901 +1.5040127948790105 -1.0856672082102186 0.89157374674348189 +1.9638362809535499 -1.1214973697248305 0.52777252693426713 +2.0410333026720755 -1.034079544622589 0.46039308870086554 +1.9087176976875218 -0.68272292597567774 0.70227702532207648 +1.8234022291431624 -0.61172631781262787 0.7695778385021762 +1.7952985273360618 -0.81974019763330874 0.80047234067491868 +1.8806397508870436 -0.88583622552694086 0.71991530706536389 +2.0240187342392595 -0.51541504139377881 0.51571602924327065 +2.0112924693932408 -0.39637064705828329 0.46556504362316598 +2.0004723406749187 -0.15470147266393841 -0.069740197633308881 +1.9199153070653638 -0.069360249112956351 -0.135836225526941 +1.7157160292432707 0.074018734239259421 0.23458495860622128 +1.6655650436231659 0.061292469393240734 0.35362935294171677 +1.8406145370870961 -0.055903916679759136 0.32839555720531111 +1.8801807185069523 -0.044802922854865423 0.20012814034344364 +1.5227105890477235 0.19330265629374277 0.077704403643809677 +1.3973935260228463 0.22703158208487906 0.080281277350241251 +0.49128230231247838 -0.81727707402432204 0.7022770253220767 +0.57659777085683772 -0.88827368218737235 0.76957783850217654 +0.87160444279468918 -1.3906145370870964 0.69409608332024098 +0.99987185965655656 -1.4301807185069526 0.70519707714513435 +1.1222955963561905 -1.0727105890477233 0.94330265629374277 +1.1197187226497591 -0.94739352602284632 0.97703158208487906 +1.9638362809535499 -0.37850263027516906 -0.52777252693426713 +2.0410333026720755 -0.46592045537741078 -0.46039308870086587 +1.9087176976875218 -0.81727707402432193 -0.70227702532207648 +1.8234022291431624 -0.88827368218737224 -0.7695778385021762 +1.5283955572053114 -1.3906145370870959 -0.69409608332024075 +1.4001281403434434 -1.4301807185069526 -0.70519707714513435 +1.2777044036438097 -1.0727105890477233 -0.94330265629374277 +1.2802812773502414 -0.94739352602284621 -0.97703158208487884 +1.4726998137406517 -1.019117167362265 -0.9236940845413727 +1.459522218364498 -1.1461011738843632 -0.88076789123048704 +1.013439003921194 -1.1399876630720454 -0.90172313788306901 +0.89598720512098939 -1.0856672082102183 -0.89157374674348211 +0.43616371904645013 -1.1214973697248312 -0.52777252693426746 +0.35896669732792441 -1.0340795446225892 -0.46039308870086582 +0.49128230231247838 -0.68272292597567774 -0.70227702532207659 +0.57659777085683772 -0.61172631781262776 -0.76957783850217643 +0.60470147266393859 -0.81974019763330874 -0.80047234067491901 +0.51936024911295653 -0.88583622552694086 -0.719915307065364 +1.4691171673622654 0.17369408454137258 0.27269981374065155 +1.5961011738843633 0.13076789123048704 0.25952221836449818 +1.589987663072046 0.1517231378830689 -0.18656099607880569 +1.5356672082102183 0.141573746743482 -0.30401279487901056 +1.3993769697289566 0.21679589706089242 -0.15985780358782284 +1.4602649483574224 0.21471929550963276 -0.039734588558411575 +1.8245726216782669 0.0067416602149371618 -0.19300544019554747 +1.889296561151935 -0.076981212794131615 -0.26817151760031976 +2.1667958970608927 -0.59014219641217724 -0.19937696972895622 +2.1647192955096326 -0.71026541144158839 -0.26026494835742214 +1.9567416602149375 -0.55699455980445267 -0.62457262167826666 +1.8730187872058686 -0.48182848239968035 -0.68929656115193494 +2.1667958970608927 -0.90985780358782276 0.19937696972895622 +2.1647192955096326 -0.78973458855841161 0.26026494835742214 +1.9567416602149375 -0.94300544019554744 0.62457262167826655 +1.8730187872058686 -1.0181715176003194 0.68929656115193494 +1.3598578035878233 -0.94937696972895613 0.96679589706089242 +1.2397345885584119 -1.0102649483574224 0.96471929550963254 +1.3930054401955481 -1.3745726216782668 0.75674166021493705 +1.4681715176003203 -1.4392965611519348 0.67301878720586839 +1.5714973697248313 -1.2777725269342672 0.76383628095354972 +1.4840795446225896 -1.2103930887008656 0.84103330267207554 +1.1327229259756779 -1.4522770253220765 0.70871769768752158 +1.0617263178126279 -1.5195778385021765 0.62340222914316235 +0.55938546291290392 -1.444096083320241 0.32839555720531116 +0.51981928149304746 -1.4551970771451346 0.20012814034344362 +0.87728941095227664 -1.693302656293743 0.077704403643809719 +1.0026064739771541 -1.7270315820848792 0.080281277350241306 +0.93088283263773475 -1.6736940845413728 0.27269981374065155 +0.80389882611563657 -1.6307678912304873 0.25952221836449835 +0.81001233692795449 -1.6517231378830692 -0.18656099607880575 +0.86433279178978162 -1.6415737467434819 -0.30401279487901062 +0.82850263027516902 -1.277772526934267 -0.76383628095354994 +0.91592045537741096 -1.2103930887008658 -0.84103330267207566 +1.2672770740243218 -1.4522770253220765 -0.70871769768752158 +1.3382736821873722 -1.5195778385021765 -0.62340222914316235 +1.1302598023666912 -1.5504723406749188 -0.59529852733606148 +1.0641637744730592 -1.4699153070653641 -0.68063975088704365 +1.4345849586062212 -1.265716029243271 -0.82401873423925931 +1.5536293529417169 -1.2155650436231658 -0.81129246939324051 +1.7952985273360618 -0.68025980236669115 -0.80047234067491868 +1.8806397508870436 -0.61416377447305903 -0.71991530706536389 +2.0240187342392595 -0.98458495860622119 -0.51571602924327065 +2.0112924693932408 -1.1036293529417165 -0.4655650436231657 +1.8940960833202412 -1.078395557205311 -0.64061453708709593 +1.9051970771451345 -0.95012814034344339 -0.68018071850695228 +2.1433026562937432 -0.82770440364380959 -0.32271058904772343 +2.1770315820848789 -0.83028127735024104 -0.19739352602284604 +2.1236940845413725 -0.47730018625934845 0.26911716736226499 +2.0807678912304874 -0.49047778163550187 0.39610117388436322 +2.1017231378830692 -0.93656099607880539 0.38998766307204547 +2.0915737467434821 -1.0540127948790103 0.33566720821021817 +2.1236940845413725 -1.0226998137406516 -0.26911716736226488 +2.0807678912304874 -1.0095222183644981 -0.39610117388436322 +2.1017231378830692 -0.56343900392119417 -0.38998766307204574 +2.0915737467434821 -0.44598720512098944 -0.33566720821021834 +1.7277725269342676 0.013836280953549718 -0.37149736972483094 +1.660393088700866 0.091033302672075544 -0.28407954462258922 +1.9022770253220767 -0.041282302312478536 0.067277074024322203 +1.9695778385021763 -0.12659777085683765 0.13827368218737227 +1.0006230302710439 -1.7167958970608925 -0.15985780358782292 +0.93973505164257753 -1.7147192955096329 -0.039734588558411603 +0.57542737832173307 -1.5067416602149373 -0.19300544019554752 +0.51070343884806491 -1.4230187872058684 -0.26817151760031971 +0.44325833978506268 -0.94300544019554755 -0.62457262167826677 +0.52698121279413157 -1.0181715176003197 -0.68929656115193516 +0.67222747306573261 -1.5138362809535497 -0.37149736972483099 +0.73960691129913414 -1.5910333026720753 -0.28407954462258922 +0.49772297467792337 -1.4587176976875216 0.067277074024322203 +0.43042216149782375 -1.3734022291431622 0.13827368218737227 +0.50590391667975909 -1.0783955572053112 0.64061453708709626 +0.49480292285486549 -0.95012814034344351 0.6801807185069525 +0.39952765932508105 -1.3452985273360616 -0.069740197633308867 +0.48008469293463596 -1.4306397508870434 -0.135836225526941 +0.68428397075672898 -1.5740187342392593 0.23458495860622131 +0.7344349563768342 -1.5612924693932408 0.35362935294171671 +1.2697401976333094 -1.5504723406749188 0.59529852733606148 +1.3358362255269416 -1.4699153070653641 0.6806397508870432 +0.96541504139377909 -1.265716029243271 0.82401873423925931 +0.84637064705828369 -1.2155650436231662 0.81129246939324073 +0.27630591545862715 -1.0226998137406513 0.26911716736226515 +0.31923210876951291 -1.0095222183644981 0.39610117388436322 +1.8717091588743204 -0.29873333439274163 0.58750761901107262 +1.7666478495993445 -0.22627605216262514 0.63610018157997195 +1.5714973697248311 -0.22222747306573276 0.76383628095354983 +1.3362409534038142 0.2006072962094394 0.27889813733511909 +1.2694523319806277 0.1668554803037775 0.39313153246640248 +1.2697401976333089 0.050472340674918903 0.59529852733606159 +0.87160444279468885 -0.10938546291290407 0.69409608332024109 +0.70065936939781936 -0.75 0.86640575634619177 +0.80686846753359776 -0.68054766801937239 0.91685548030377773 +0.92730018625934885 -0.48088283263773507 0.92369408454137281 +1.4788981373351193 -0.88624095340381404 0.95060729620943918 +1.4807552987238062 -0.74999999999999989 0.95977938206574653 +1.3598578035878233 -0.55062303027104398 0.96679589706089242 +0.92110186266488103 -0.88624095340381381 -0.95060729620943951 +0.9192447012761944 -0.74999999999999989 -0.95977938206574664 +1.0401421964121771 -0.55062303027104398 -0.96679589706089264 +0.82850263027516891 -0.22222747306573276 -0.76383628095354983 +1.0637590465961864 0.20060729620943951 -0.27889813733511915 +1.1305476680193727 0.1668554803037775 -0.39313153246640248 +1.1302598023666912 0.050472340674918903 -0.59529852733606159 +1.7875076190110728 -0.078290841125679744 -0.45126666560725848 +1.7237239478373754 -0.11389981842002828 -0.56664784959934411 +1.528395557205311 -0.10938546291290407 -0.69409608332024109 +1.699340630602181 -0.74999999999999989 -0.86640575634619155 +1.5931315324664026 -0.68054766801937205 -0.91685548030377739 +1.4726998137406517 -0.48088283263773512 -0.9236940845413727 +1.2000000000000002 -1.6164057563461918 0.49934063060218076 +1.2694523319806277 -1.6668554803037776 0.39313153246640242 +1.4691171673622654 -1.6736940845413724 0.27269981374065155 +1.0637590465961859 -1.7006072962094394 -0.27889813733511915 +1.2 -1.7097793820657468 -0.28075529872380584 +1.3993769697289566 -1.7167958970608925 -0.15985780358782292 +1.6512666656072588 -1.3375076190110726 -0.67170915887432026 +1.7237239478373754 -1.3861001815799718 -0.56664784959934411 +1.7277725269342672 -1.5138362809535497 -0.37149736972483099 +2.1506072962094396 -1.0288981373351187 -0.13624095340381401 +2.1168554803037778 -1.143131532466402 -0.069452331980627571 +2.0004723406749192 -1.3452985273360611 -0.06974019763330884 +1.8717091588743204 -1.2012666656072584 0.58750761901107251 +1.836100181579972 -1.3166478495993439 0.52372394783737497 +1.8406145370870961 -1.4440960833202408 0.328395557205311 +1.7875076190110728 -0.078290841125679855 0.45126666560725853 +1.836100181579972 -0.183352150400656 0.52372394783737508 +1.9638362809535499 -0.37850263027516917 0.52777252693426735 +0.70065936939781936 -0.75 -0.86640575634619177 +0.80686846753359776 -0.81945233198062728 -0.91685548030377773 +0.92730018625934818 -1.019117167362265 -0.9236940845413727 +0.92110186266488114 -0.88624095340381404 0.9506072962094394 +0.80686846753359798 -0.81945233198062761 0.91685548030377773 +0.60470147266393859 -0.81974019763330874 0.80047234067491901 +0.92110186266488114 -0.61375904659618596 0.9506072962094394 +0.91924470127619462 -0.75 0.95977938206574676 +1.0401421964121773 -0.94937696972895624 0.96679589706089264 +1.6512666656072592 -1.3375076190110724 0.67170915887432014 +1.7666478495993445 -1.2737239478373752 0.63610018157997172 +1.8940960833202412 -1.0783955572053108 0.64061453708709593 +1.4788981373351193 -0.61375904659618596 0.95060729620943918 +1.5931315324664028 -0.68054766801937228 0.91685548030377739 +1.7952985273360618 -0.68025980236669126 0.80047234067491868 +2.1506072962094391 -0.47110186266488102 0.13624095340381404 +2.1168554803037778 -0.35686846753359769 0.069452331980627585 +2.0004723406749187 -0.15470147266393841 0.069740197633308867 +1.6512666656072588 -0.16249238098892749 0.67170915887432037 +1.7237239478373754 -0.11389981842002828 0.56664784959934422 +1.7277725269342672 0.013836280953549829 0.37149736972483099 +1.3362409534038142 0.2006072962094394 -0.27889813733511909 +1.2000000000000002 0.20977938206574664 -0.28075529872380572 +1.2 0.11640575634619166 0.49934063060218076 +1.1305476680193725 0.1668554803037775 0.39313153246640242 +0.5282908411256797 -1.2012666656072586 0.58750761901107262 +0.63335215040065596 -1.2737239478373756 0.63610018157997195 +0.82850263027516924 -1.2777725269342675 0.76383628095354994 +1.6512666656072588 -0.16249238098892749 -0.67170915887432026 +1.7666478495993445 -0.22627605216262503 -0.63610018157997172 +1.8940960833202412 -0.42160444279468895 -0.64061453708709593 +1.8717091588743204 -1.2012666656072586 -0.58750761901107251 +1.7666478495993443 -1.2737239478373752 -0.63610018157997172 +1.5714973697248311 -1.2777725269342675 -0.76383628095354983 +1.4788981373351193 -0.61375904659618596 -0.95060729620943918 +1.4807552987238062 -0.74999999999999989 -0.95977938206574653 +1.3598578035878233 -0.94937696972895602 -0.96679589706089242 +0.74873333439274137 -1.3375076190110722 -0.67170915887432059 +0.63335215040065551 -1.2737239478373747 -0.63610018157997217 +0.50590391667975909 -1.0783955572053112 -0.64061453708709593 +0.92110186266488114 -0.61375904659618596 -0.9506072962094394 +0.80686846753359776 -0.68054766801937217 -0.91685548030377773 +0.60470147266393859 -0.68025980236669126 -0.80047234067491901 +1.0637590465961857 0.2006072962094394 0.27889813733511909 +1.2 0.20977938206574664 0.28075529872380572 +1.3993769697289566 0.21679589706089242 0.15985780358782287 +1.2000000000000002 0.11640575634619166 -0.49934063060218076 +1.2694523319806277 0.1668554803037775 -0.39313153246640242 +1.4691171673622654 0.17369408454137247 -0.27269981374065155 +2.0664057563461915 -0.25065936939781941 0 +2.1168554803037778 -0.35686846753359769 -0.069452331980627585 +2.1236940845413725 -0.47730018625934845 -0.26911716736226499 +2.0664057563461915 -1.2493406306021804 0 +2.1168554803037778 -1.1431315324664022 0.069452331980627571 +2.1236940845413725 -1.0226998137406511 0.26911716736226499 +1.6993406306021812 -0.75 0.86640575634619155 +1.5931315324664026 -0.81945233198062728 0.9168554803037775 +1.4726998137406517 -1.019117167362265 0.9236940845413727 +1.7875076190110732 -1.4217091588743203 0.45126666560725837 +1.7237239478373758 -1.3861001815799714 0.56664784959934411 +1.5283955572053118 -1.3906145370870957 0.69409608332024086 +0.74873333439274148 -1.3375076190110726 0.67170915887432037 +0.67627605216262487 -1.3861001815799721 0.56664784959934433 +0.67222747306573261 -1.5138362809535497 0.37149736972483099 +1.3362409534038142 -1.7006072962094394 0.27889813733511915 +1.2000000000000002 -1.7097793820657468 0.28075529872380584 +1.0006230302710439 -1.7167958970608925 0.15985780358782295 +0.61249238098892722 -1.4217091588743203 -0.45126666560725853 +0.67627605216262476 -1.3861001815799718 -0.56664784959934444 +0.87160444279468885 -1.3906145370870959 -0.69409608332024109 +1.3362409534038142 -1.7006072962094394 -0.27889813733511915 +1.2694523319806275 -1.6668554803037776 -0.39313153246640242 +1.2697401976333087 -1.550472340674919 -0.59529852733606137 +1.4788981373351193 -0.88624095340381381 -0.95060729620943918 +1.5931315324664026 -0.81945233198062717 -0.9168554803037775 +1.7952985273360618 -0.81974019763330874 -0.80047234067491879 +1.7875076190110728 -1.4217091588743203 -0.45126666560725848 +1.836100181579972 -1.3166478495993443 -0.52372394783737497 +1.9638362809535499 -1.1214973697248309 -0.52777252693426713 +2.1506072962094391 -0.47110186266488108 -0.13624095340381398 +2.1597793820657469 -0.46924470127619466 0 +2.1667958970608927 -0.59014219641217724 0.19937696972895616 +2.1506072962094391 -1.0288981373351189 0.13624095340381398 +2.1597793820657469 -1.0307552987238053 0 +2.1667958970608927 -0.90985780358782276 -0.19937696972895616 +1.8717091588743204 -0.29873333439274152 -0.58750761901107251 +1.836100181579972 -0.18335215040065589 -0.52372394783737497 +1.8406145370870961 -0.055903916679759136 -0.32839555720531111 +1.2 -1.6164057563461918 -0.49934063060218087 +1.1305476680193722 -1.6668554803037776 -0.39313153246640242 +0.93088283263773519 -1.6736940845413728 -0.27269981374065166 +0.33359424365380819 -1.2493406306021806 0 +0.28314451969622234 -1.1431315324664022 -0.069452331980627627 +0.27630591545862715 -1.0226998137406511 -0.26911716736226515 +0.52829084112567948 -1.2012666656072586 -0.58750761901107273 +0.56389981842002801 -1.3166478495993443 -0.5237239478373753 +0.55938546291290392 -1.444096083320241 -0.32839555720531116 +0.61249238098892733 -1.4217091588743203 0.45126666560725864 +0.56389981842002823 -1.3166478495993443 0.52372394783737519 +0.43616371904645013 -1.1214973697248309 0.52777252693426724 +0.28314451969622234 -1.1431315324664022 0.069452331980627627 +0.39952765932508105 -1.3452985273360616 0.069740197633308854 +1.0637590465961864 -1.7006072962094394 0.27889813733511915 +1.1305476680193727 -1.6668554803037776 0.39313153246640242 +1.1302598023666912 -1.550472340674919 0.59529852733606137 +1.2000000000000002 -0.12421811130996729 0.77999809473327275 +1.2548571407136169 -0.20998203120107972 0.83986385056568236 +1.3865609960788059 -0.36001233692795459 0.90172313788306913 +1.4022655037944636 -0.75 0.97933072349169759 +1.6183870394745821 -0.4753315538738162 0.86574218443040085 +1.0837308646443482 -0.19607638880232214 0.82440895259656966 +1.3930054401955474 -0.12542737832173334 0.75674166021493716 +1.7521688397941486 -0.28373393338202185 0.69116244652106429 +1.5399483569044259 -0.0066545040394655475 0.57608383788574402 +1.1281417225076453 -0.31234552415797412 0.8962672300889245 +1.1327229259756779 -0.047722974677923413 0.70871769768752169 +1.3389936067269161 0.14342795031552757 0.42716188369754915 +0.99171259951203328 0.074716442017224605 0.52579382752597525 +1.271858277492355 -0.31234552415797412 0.8962672300889245 +0.96541504139377876 -0.23428397075672924 0.82401873423925942 +0.7313229501656493 -0.34367059745735706 0.78437123837371059 +1.3162691353556522 -0.19607638880232214 0.82440895259656966 +1.1222955963561905 -0.42728941095227674 0.94330265629374299 +0.77283811630245081 -0.61100639327308404 0.89342795031552769 +1.1186290539433099 -0.68361895436178266 0.9944708773603258 +1.0837308646443482 -0.19607638880232214 -0.82440895259656966 +1.1660964225133497 -0.26483917191469669 -0.87376742805233321 +1.2777044036438097 -0.42728941095227674 -0.94330265629374299 +1.6271618836975494 -0.61100639327308404 -0.89342795031552757 +1.2813709460566907 -0.68361895436178266 -0.9944708773603258 +1.2000000000000002 -0.12421811130996729 -0.77999809473327275 +1.013439003921194 -0.36001233692795459 -0.90172313788306913 +0.99773449620553689 -0.75 -0.9793307234916977 +0.78161296052541818 -0.47533155387381615 -0.86574218443040096 +1.3162691353556522 -0.19607638880232214 -0.82440895259656966 +1.0069945598044523 -0.12542737832173334 -0.75674166021493716 +1.271858277492355 -0.31234552415797412 -0.8962672300889245 +1.2672770740243227 -0.047722974677923524 -0.70871769768752158 +1.0610063932730844 0.14342795031552769 -0.42716188369754926 +1.4082874004879666 0.074716442017224605 -0.52579382752597525 +1.1281417225076453 -0.31234552415797412 -0.8962672300889245 +1.4345849586062216 -0.23428397075672924 -0.82401873423925942 +1.6662660666179787 -0.058837553478935933 -0.55216883979414821 +1.6686770498343511 -0.34367059745735712 -0.78437123837371048 +1.6376544758420264 -1.6462672300889243 -0.071858277492354988 +1.6851608280853034 -1.6237674280523331 0.033903577486650918 +1.7157160292432714 -1.5740187342392593 0.23458495860622122 +1.8911624465210648 -1.302168839794148 0.4662660666179782 +1.6063294025426436 -1.5343712383737103 0.46867704983435066 +1.7539236111976781 -1.5744089525965697 -0.11626913535565191 +1.5227105890477235 -1.6933026562937428 0.077704403643809691 +1.3389936067269161 -1.6434279503155274 0.42716188369754937 +1.2663810456382176 -1.7444708773603259 0.081370946056690305 +1.825781888690033 -1.5299980947332725 0 +1.589987663072046 -1.651723137883069 -0.18656099607880564 +1.2 -1.7293307234916977 -0.20226550379446348 +1.4746684461261841 -1.6157421844304007 -0.41838703947458189 +1.7539236111976781 -1.5744089525965697 0.11626913535565191 +1.8245726216782669 -1.5067416602149368 -0.19300544019554738 +1.6662660666179783 -1.4411624465210644 -0.55216883979414821 +1.9433454959605347 -1.3260838378857436 -0.33994835690442571 +1.6376544758420264 -1.6462672300889243 0.071858277492354988 +1.9022770253220767 -1.4587176976875214 0.067277074024322203 +2.0934279503155278 -1.1771618836975488 -0.13899360672691582 +2.0247164420172248 -1.275793827525975 0.20828740048796673 +1.9799980947332727 -0.75 0.62578188869003271 +2.0398638505656823 -0.6951428592863832 0.54001796879892017 +2.1017231378830692 -0.56343900392119428 0.38998766307204552 +2.1793307234916974 -0.54773449620553694 0 +2.0657421844304009 -0.33161296052541811 0.27466844612618396 +1.2718582774923548 -1.187654475842026 -0.8962672300889245 +0.96541504139377876 -1.2657160292432705 -0.82401873423925953 +0.73373393338202175 -1.4411624465210644 -0.55216883979414821 +0.7313229501656493 -1.1563294025426427 -0.78437123837371059 +0.30657204968447227 -1.1771618836975493 -0.13899360672691591 +0.44325833978506279 -0.94300544019554755 0.62457262167826699 +0.50883755347893578 -1.3021688397941484 0.46626606661797843 +0.62391616211425616 -1.0899483569044262 0.74334549596053456 +1.0837308646443482 -1.3039236111976777 0.82440895259656966 +1.2777044036438101 -1.0727105890477233 0.94330265629374277 +1.6271618836975499 -0.88899360672691596 0.89342795031552724 +1.2813709460566907 -0.81638104563821712 0.9944708773603258 +2.0962672300889245 -0.82185827749235496 0.43765447584202566 +2.0398638505656823 -0.8048571407136168 0.54001796879892006 +1.9087176976875218 -0.81727707402432193 0.70227702532207636 +1.6271618836975499 -0.61100639327308437 0.89342795031552724 +1.7257938275259752 -0.95828740048796668 0.8247164420172246 +2.0244089525965698 -0.86626913535565175 0.55392361119767775 +1.9567416602149375 -0.55699455980445256 0.62457262167826677 +1.8911624465210641 -0.19783116020585167 0.46626606661797843 +1.7760838378857438 -0.41005164309557446 0.74334549596053456 +1.7539236111976779 0.074408952596569544 -0.11626913535565189 +1.8245726216782669 0.0067416602149371618 0.19300544019554744 +1.6662660666179785 -0.058837553478935822 0.55216883979414844 +1.9433454959605347 -0.17391616211425609 0.33994835690442565 +1.8257818886900328 0.02999809473327264 0 +1.589987663072046 0.1517231378830689 0.18656099607880564 +1.2 0.22933072349169759 0.20226550379446331 +1.4746684461261839 0.11574218443040096 0.41838703947458178 +1.0610063932730838 0.14342795031552757 0.42716188369754932 +1.1336189543617827 0.24447087736032569 0.081370946056690249 +0.49128230231247827 -0.68272292597567774 0.70227702532207659 +0.77283811630245092 -0.88899360672691596 0.89342795031552769 +0.67420617247402481 -0.54171259951203321 0.82471644201722483 +1.2000000000000002 -1.3757818886900326 0.77999809473327286 +1.0134390039211947 -1.1399876630720456 0.90172313788306913 +0.99773449620553689 -0.74999999999999989 0.9793307234916977 +0.78161296052541851 -1.0246684461261841 0.86574218443040096 +2.0962672300889245 -0.67814172250764504 -0.43765447584202588 +1.9087176976875218 -0.68272292597567774 -0.70227702532207636 +1.6271618836975494 -0.88899360672691574 -0.89342795031552757 +1.7257938275259752 -0.54171259951203332 -0.8247164420172246 +1.2 -1.3757818886900326 -0.77999809473327286 +1.2548571407136171 -1.2900179687989204 -0.83986385056568236 +1.3865609960788055 -1.1399876630720456 -0.90172313788306913 +1.4022655037944636 -0.74999999999999989 -0.97933072349169759 +1.6183870394745821 -1.0246684461261837 -0.86574218443040085 +1.3162691353556519 -1.3039236111976777 -0.82440895259656966 +1.1222955963561905 -1.0727105890477233 -0.94330265629374277 +0.77283811630245081 -0.88899360672691596 -0.89342795031552769 +1.1186290539433099 -0.81638104563821712 -0.9944708773603258 +0.49128230231247827 -0.81727707402432204 -0.70227702532207659 +0.77283811630245081 -0.61100639327308426 -0.89342795031552769 +0.67420617247402481 -0.95828740048796679 -0.82471644201722483 +0.37559104740343041 -0.86626913535565175 -0.55392361119767775 +1.2000000000000002 0.22933072349169759 -0.20226550379446331 +1.7539236111976779 0.074408952596569544 0.11626913535565189 +1.5227105890477235 0.19330265629374277 -0.077704403643809677 +1.3389936067269161 0.14342795031552757 -0.42716188369754932 +1.2663810456382176 0.24447087736032569 -0.081370946056690249 +1.6376544758420262 0.14626723008892439 0.071858277492354961 +1.6851608280853034 0.12376742805233321 -0.033903577486650911 +1.7157160292432707 0.074018734239259421 -0.23458495860622128 +1.8911624465210641 -0.19783116020585167 -0.46626606661797843 +1.6063294025426431 0.034371238373710589 -0.46867704983435055 +2.0962672300889245 -0.82185827749235496 -0.43765447584202588 +2.0240187342392595 -0.51541504139377881 -0.51571602924327065 +1.7521688397941486 -0.28373393338202163 -0.69116244652106418 +1.9843712383737104 -0.28132295016564945 -0.40632940254264299 +2.0962672300889245 -0.67814172250764504 0.43765447584202566 +2.0240187342392595 -0.98458495860622119 0.51571602924327065 +1.7521688397941486 -1.2162660666179781 0.69116244652106418 +1.9843712383737109 -1.2186770498343504 0.4063294025426426 +1.1281417225076453 -1.187654475842026 0.8962672300889245 +1.4345849586062214 -1.265716029243271 0.82401873423925931 +1.6662660666179789 -1.441162446521064 0.55216883979414799 +1.6686770498343511 -1.1563294025426427 0.78437123837371048 +1.271858277492355 -1.187654475842026 0.8962672300889245 +1.2548571407136171 -1.2900179687989204 0.83986385056568236 +1.2672770740243227 -1.4522770253220765 0.70871769768752169 +1.0610063932730844 -1.6434279503155276 0.42716188369754937 +1.4082874004879673 -1.5747164420172246 0.52579382752597537 +0.57421811130996692 -1.5299980947332723 0 +0.81001233692795438 -1.651723137883069 0.18656099607880566 +1.2000000000000002 -1.7293307234916977 0.20226550379446345 +0.92533155387381616 -1.6157421844304007 0.41838703947458189 +0.6460763888023221 -1.5744089525965697 0.11626913535565191 +0.87728941095227653 -1.6933026562937428 -0.077704403643809691 +1.0610063932730844 -1.6434279503155276 -0.42716188369754948 +1.1336189543617827 -1.7444708773603259 -0.081370946056690305 +1.1281417225076453 -1.187654475842026 -0.8962672300889245 +1.1451428592863828 -1.2900179687989204 -0.83986385056568236 +1.1327229259756779 -1.4522770253220765 -0.70871769768752169 +1.3389936067269161 -1.6434279503155274 -0.42716188369754937 +0.99171259951203317 -1.5747164420172246 -0.52579382752597537 +1.0837308646443482 -1.3039236111976777 -0.82440895259656966 +1.3930054401955474 -1.3745726216782668 -0.75674166021493716 +1.7521688397941486 -1.2162660666179783 -0.69116244652106418 +1.5399483569044259 -1.4933454959605346 -0.57608383788574391 +2.0244089525965694 -0.63373086464434825 -0.55392361119767775 +1.9567416602149375 -0.94300544019554744 -0.62457262167826677 +1.8911624465210641 -1.3021688397941484 -0.46626606661797826 +1.7760838378857438 -1.0899483569044257 -0.74334549596053456 +1.9799980947332727 -0.75 -0.62578188869003293 +2.0398638505656823 -0.80485714071361691 -0.54001796879892028 +2.1017231378830692 -0.9365609960788055 -0.38998766307204552 +2.1793307234916974 -0.95226550379446329 0 +2.0657421844304009 -1.1683870394745819 -0.27466844612618391 +2.0244089525965694 -0.63373086464434825 0.55392361119767775 +2.1433026562937432 -0.82770440364380959 0.32271058904772337 +2.0934279503155278 -1.1771618836975488 0.1389936067269158 +2.1944708773603256 -0.83137094605669015 0.066381045638217215 +2.0244089525965694 -0.86626913535565175 -0.55392361119767775 +2.1433026562937432 -0.67229559635619018 -0.32271058904772343 +2.0934279503155278 -0.32283811630245074 -0.13899360672691588 +2.1944708773603256 -0.66862905394330985 -0.066381045638217215 +1.6376544758420262 0.14626723008892439 -0.071858277492354961 +1.9022770253220767 -0.041282302312478425 -0.067277074024322217 +2.0934279503155278 -0.32283811630245085 0.13899360672691591 +2.0247164420172248 -0.22420617247402475 -0.20828740048796671 +0.76234552415797396 -1.6462672300889245 0.071858277492355002 +0.68428397075672931 -1.5740187342392593 -0.23458495860622131 +0.50883755347893578 -1.3021688397941484 -0.46626606661797843 +0.79367059745735691 -1.5343712383737107 -0.46867704983435077 +0.37598126576074054 -0.98458495860622119 -0.51571602924327076 +0.64783116020585152 -1.2162660666179783 -0.69116244652106429 +0.41562876162628937 -1.2186770498343509 -0.40632940254264294 +0.76234552415797374 -1.6462672300889243 -0.071858277492354988 +0.65998203120107946 -1.5898638505656821 -0.054857140713616928 +0.49772297467792337 -1.4587176976875216 -0.067277074024322231 +0.30657204968447227 -1.1771618836975493 0.13899360672691594 +0.37528355798277513 -1.275793827525975 -0.20828740048796673 +0.3342578155695991 -1.1683870394745819 0.27466844612618396 +0.6460763888023221 -1.5744089525965697 -0.11626913535565191 +0.57542737832173307 -1.5067416602149373 0.19300544019554747 +0.73373393338202175 -1.4411624465210644 0.55216883979414821 +0.45665450403946539 -1.3260838378857438 0.33994835690442576 +1.3162691353556522 -1.3039236111976777 0.82440895259656966 +1.0069945598044532 -1.374572621678267 0.75674166021493738 +0.64783116020585174 -1.2162660666179785 0.6911624465210644 +0.86005164309557425 -1.4933454959605346 0.57608383788574391 +0.37559104740343063 -0.86626913535565186 0.55392361119767797 +1.6585335468418487 -0.54206325863390559 0.86400769557376289 +1.686966450462785 -0.47427145868032006 0.8287565671687902 +1.6054741487319151 -0.008077136227847892 0.53398612240605792 +1.5417901167060055 0.037928268229677653 0.51219972690999771 +0.99206325863390554 0.11400769557376311 0.45853354684184833 +0.68780027309000236 -0.40820988329399444 0.78792826822967776 +1.0779151681983894 -0.74999999999999989 0.9925196692479058 +1.159171701060888 -0.75 0.99916617737278246 +1.322084831801611 -0.74999999999999989 -0.9925196692479058 +1.2408282989391131 -0.75 -0.99916617737278246 +0.74146645315815185 -0.54206325863390548 -0.86400769557376322 +0.71303354953721532 -0.47427145868032 -0.82875656716879043 +1.4079367413660944 0.11400769557376311 -0.45853354684184833 +1.4757285413196803 0.078756567168790315 -0.48696645046278492 +1.7339861224060584 -0.34452585126808516 -0.741922863772152 +1.7121997269099978 -0.40820988329399444 -0.78792826822967765 +1.6054741487319153 -1.491922863772152 0.53398612240605781 +1.5417901167060062 -1.5379282682296775 0.5121997269099976 +1.2 -1.7425196692479057 0.12208483180161099 +1.2 -1.7491661773727825 0.040828298939112592 +1.4079367413660944 -1.614007695573763 -0.45853354684184833 +1.4757285413196803 -1.5787565671687904 -0.48696645046278475 +1.9419228637721524 -1.2839861224060574 -0.40547414873191495 +1.9879282682296777 -1.2621997269099974 -0.34179011670600551 +2.0640076955737636 -1.2085335468418477 0.20793674136609439 +2.0287565671687906 -1.2369664504627846 0.27572854131967994 +2.0640076955737632 -0.29146645315815217 0.20793674136609444 +2.0287565671687906 -0.26303354953721531 0.27572854131968005 +0.66601387759394248 -1.1554741487319151 -0.74192286377215233 +0.68780027309000236 -1.0917901167060053 -0.78792826822967776 +0.66601387759394248 -1.1554741487319153 0.74192286377215233 +0.68780027309000258 -1.0917901167060058 0.78792826822967776 +1.322084831801611 -0.74999999999999989 0.9925196692479058 +1.2408282989391131 -0.75 0.99916617737278246 +1.6585335468418487 -0.95793674136609475 0.86400769557376267 +1.6869664504627853 -1.0257285413196802 0.82875656716879009 +1.7339861224060584 -0.34452585126808544 0.741922863772152 +1.712199726909998 -0.40820988329399466 0.78792826822967765 +1.9419228637721524 -0.21601387759394264 0.40547414873191501 +1.9879282682296777 -0.23780027309000251 0.34179011670600551 +1.4079367413660944 0.11400769557376311 0.45853354684184816 +1.4757285413196803 0.078756567168790315 0.48696645046278475 +1.2 0.2425196692479058 0.12208483180161095 +1.2 0.24916617737278246 0.040828298939112578 +0.74146645315815196 -0.54206325863390559 0.86400769557376322 +0.71303354953721532 -0.47427145868031984 0.82875656716879031 +0.74146645315815207 -0.95793674136609486 0.86400769557376322 +0.71303354953721532 -1.0257285413196804 0.82875656716879031 +1.6585335468418489 -0.5420632586339057 -0.86400769557376278 +1.6869664504627853 -0.47427145868031989 -0.82875656716879009 +1.6585335468418487 -0.95793674136609452 -0.86400769557376267 +1.686966450462785 -1.0257285413196799 -0.8287565671687902 +1.0779151681983894 -0.74999999999999989 -0.9925196692479058 +1.159171701060888 -0.75 -0.99916617737278246 +0.74146645315815196 -0.95793674136609475 -0.86400769557376322 +0.71303354953721521 -1.0257285413196802 -0.82875656716879043 +0.68780027309000247 -0.4082098832939946 -0.78792826822967776 +0.99206325863390588 0.11400769557376322 -0.45853354684184827 +1.2 0.2425196692479058 -0.12208483180161095 +1.2 0.24916617737278246 -0.040828298939112578 +1.6054741487319153 -0.008077136227848003 -0.53398612240605781 +1.5417901167060057 0.037928268229677653 -0.5121997269099976 +1.9419228637721524 -0.21601387759394264 -0.40547414873191495 +1.9879282682296777 -0.23780027309000251 -0.3417901167060054 +1.9419228637721528 -1.2839861224060569 0.40547414873191484 +1.9879282682296779 -1.2621997269099974 0.34179011670600534 +1.7339861224060584 -1.1554741487319149 0.741922863772152 +1.7121997269099978 -1.0917901167060053 0.78792826822967765 +1.4079367413660953 -1.6140076955737628 0.45853354684184833 +1.4757285413196806 -1.57875656716879 0.48696645046278486 +0.99206325863390588 -1.614007695573763 0.45853354684184833 +0.92427145868032001 -1.5787565671687904 0.48696645046278475 +1.2 -1.7425196692479057 -0.12208483180161099 +1.2 -1.7491661773727825 -0.040828298939112592 +0.99206325863390588 -1.614007695573763 -0.45853354684184849 +0.92427145868032001 -1.5787565671687904 -0.48696645046278492 +1.6054741487319149 -1.4919228637721522 -0.53398612240605758 +1.5417901167060055 -1.5379282682296778 -0.5121997269099976 +1.7339861224060584 -1.1554741487319149 -0.741922863772152 +1.712199726909998 -1.0917901167060053 -0.78792826822967754 +2.0640076955737632 -1.2085335468418479 -0.20793674136609444 +2.0287565671687906 -1.2369664504627846 -0.27572854131968005 +2.1925196692479059 -0.87208483180161089 -2.4628875390745799e-18 +2.1991661773727822 -0.79082829893911255 0 +2.1925196692479059 -0.62791516819838922 2.4628875390745807e-18 +2.1991661773727822 -0.70917170106088734 0 +2.0640076955737632 -0.29146645315815212 -0.20793674136609447 +2.0287565671687906 -0.26303354953721531 -0.27572854131968005 +0.79452585126808528 -1.4919228637721522 -0.53398612240605792 +0.85820988329399461 -1.5379282682296775 -0.51219972690999771 +0.45807713622784751 -1.2839861224060574 -0.40547414873191506 +0.41207173177032219 -1.2621997269099976 -0.34179011670600545 +0.33599230442623673 -1.2085335468418481 -0.20793674136609458 +0.37124343283120964 -1.2369664504627851 -0.27572854131968011 +0.33599230442623684 -1.2085335468418481 0.20793674136609461 +0.37124343283120953 -1.2369664504627846 0.27572854131968016 +0.45807713622784763 -1.2839861224060576 0.40547414873191512 +0.4120717317703223 -1.2621997269099978 0.34179011670600562 +0.79452585126808539 -1.4919228637721524 0.53398612240605769 +0.85820988329399461 -1.537928268229678 0.51219972690999771 +1.5850500562448067 -0.16285875964110386 0.71204046096811657 +1.5180233001589554 -0.16663313718873862 0.74735820322637392 +1.3129504910198773 -0.36631165010094457 0.91652901576006229 +1.3549016200234227 -0.4242154556775744 0.93266817185682316 +1.2000000000000002 0.075115262488245294 0.56496442685265946 +1.2000000000000002 0.029916071523905408 0.62588411178006298 +1.3827577335161512 -0.18355391658479392 0.80357852474018532 +1.4506360861103191 -0.17357936956725528 0.77776655183340049 +0.81494994375519358 -0.16285875964110375 0.7120404609681168 +0.88197669984104476 -0.16663313718873862 0.74735820322637392 +1.2000000000000002 -0.0706034255649165 0.73377128224391142 +1.2000000000000002 -0.018677749543832611 0.68203208574650409 +0.96202597787065125 -0.54790881588591023 0.95001448309746594 +1.0034507912873563 -0.4846564373476937 0.94390741193901817 +1.0172422664838487 -0.18355391658479348 0.80357852474018532 +0.94936391388968078 -0.17357936956725528 0.77776655183340049 +1.4379740221293495 -0.54790881588591045 0.95001448309746583 +1.3965492087126441 -0.48465643734769376 0.94390741193901806 +1.0870495089801231 -0.36631165010094457 0.9165290157600624 +1.0450983799765776 -0.42421545567757435 0.93266817185682316 +0.96202597787065125 -0.54790881588591045 -0.95001448309746594 +1.0034507912873558 -0.48465643734769376 -0.94390741193901806 +1.3129504910198775 -0.36631165010094457 -0.9165290157600624 +1.3549016200234227 -0.42421545567757435 -0.93266817185682316 +0.81494994375519336 -0.16285875964110375 -0.71204046096811668 +0.88197669984104476 -0.16663313718873862 -0.74735820322637392 +1.0870495089801231 -0.36631165010094452 -0.9165290157600624 +1.0450983799765772 -0.4242154556775744 -0.93266817185682316 +1.2000000000000002 0.075115262488245294 -0.56496442685265946 +1.2000000000000002 0.029916071523905408 -0.62588411178006298 +1.017242266483849 -0.18355391658479381 -0.80357852474018554 +0.94936391388968078 -0.17357936956725528 -0.77776655183340049 +1.5850500562448067 -0.16285875964110386 -0.71204046096811668 +1.5180233001589554 -0.16663313718873862 -0.74735820322637392 +1.2000000000000002 -0.0706034255649165 -0.73377128224391142 +1.2000000000000002 -0.018677749543832611 -0.68203208574650409 +1.4379740221293495 -0.54790881588591023 -0.95001448309746561 +1.3965492087126441 -0.48465643734769376 -0.94390741193901806 +1.3827577335161514 -0.18355391658479359 -0.80357852474018521 +1.4506360861103194 -0.17357936956725528 -0.77776655183340049 +1.40209118411409 -1.7000144830974659 0.23797402212934909 +1.4653435626523068 -1.6939074119390178 0.19654920871264414 +1.7664460834152067 -1.553578524740185 0.18275773351615077 +1.776420630432745 -1.5277665518334003 0.25063608611031901 +1.4020911841140902 -1.7000144830974655 -0.23797402212934918 +1.4653435626523068 -1.6939074119390178 -0.19654920871264417 +1.5836883498990559 -1.6665290157600621 0.11295049101987709 +1.5257845443224263 -1.682668171856823 0.15490162002342267 +1.7871412403588964 -1.4620404609681166 -0.38505005624480632 +1.7833668628112616 -1.4973582032263737 -0.31802330015895508 +1.5836883498990559 -1.6665290157600623 -0.11295049101987707 +1.5257845443224263 -1.682668171856823 -0.15490162002342261 +2.0251152624882458 -1.3149644268526588 4.9279074600009303e-18 +1.9799160715239057 -1.3758841117800626 6.5652635294160463e-18 +1.7664460834152065 -1.553578524740185 -0.18275773351615091 +1.776420630432745 -1.5277665518334005 -0.25063608611031912 +1.7871412403588969 -1.4620404609681164 0.38505005624480626 +1.783366862811262 -1.4973582032263735 0.31802330015895508 +1.8793965744350842 -1.4837712822439109 3.6838438251301876e-18 +1.9313222504561676 -1.4320320857465036 6.5571195165482265e-18 +1.9120404609681168 -0.3649499437551938 0.58714124035889637 +1.9473582032263739 -0.43197669984104503 0.58336686281126138 +2.1165290157600625 -0.63704950898012302 0.38368834989905543 +2.1326681718568232 -0.59509837997657744 0.32578454432242576 +0.96202597787065103 -0.95209118411408988 -0.95001448309746583 +1.0034507912873558 -1.0153435626523062 -0.94390741193901806 +1.017242266483849 -1.3164460834152065 -0.80357852474018521 +0.94936391388968078 -1.3264206304327446 -0.77776655183340071 +0.63503557314734083 -0.75 0.82511526248824552 +0.57411588821993709 -0.75 0.77991607152390563 +0.39642147525981486 -0.93275773351615077 0.56644608341520686 +0.42223344816659947 -1.0006360861103192 0.57642063043274483 +0.96202597787065158 -0.95209118411408999 0.95001448309746594 +1.0034507912873563 -1.0153435626523062 0.94390741193901817 +1.3129504910198773 -1.1336883498990558 0.91652901576006229 +1.3549016200234227 -1.0757845443224259 0.93266817185682316 +1.9120404609681168 -1.135050056244806 0.58714124035889637 +1.9473582032263741 -1.068023300158955 0.58336686281126127 +1.9337712822439117 -0.75000000000000011 0.67939657443508328 +1.882032085746504 -0.75 0.73132225045616739 +1.7649644268526601 -0.75 0.82511526248824485 +1.825884111780063 -0.75 0.77991607152390541 +2.0035785247401852 -0.56724226648384923 0.56644608341520641 +1.9777665518334007 -0.49936391388968099 0.57642063043274483 +2.0251152624882454 -0.18503557314734087 -4.9279074600009318e-18 +1.9799160715239057 -0.12411588821993724 -6.5652635294160447e-18 +1.7664460834152065 0.053578524740185096 0.18275773351615091 +1.7764206304327446 0.027766551833400488 0.25063608611031907 +1.7871412403588964 -0.037959539031883538 0.38505005624480637 +1.7833668628112616 -0.0026417967736263037 0.31802330015895508 +1.5836883498990559 0.16652901576006207 0.11295049101987709 +1.5257845443224261 0.18266817185682305 0.15490162002342259 +0.46622871775608876 -0.75 0.67939657443508383 +0.51796791425349598 -0.75 0.73132225045616761 +0.8149499437551937 -1.3371412403588963 0.71204046096811668 +0.88197669984104521 -1.3333668628112616 0.74735820322637403 +1.0870495089801235 -1.1336883498990558 0.9165290157600624 +1.0450983799765778 -1.0757845443224259 0.93266817185682316 +1.9120404609681168 -0.36494994375519357 -0.58714124035889637 +1.9473582032263739 -0.43197669984104503 -0.58336686281126138 +1.9337712822439117 -0.75 -0.67939657443508328 +1.882032085746504 -0.75 -0.73132225045616739 +1.5850500562448067 -1.3371412403588963 -0.71204046096811657 +1.5180233001589554 -1.3333668628112614 -0.74735820322637381 +1.312950491019877 -1.1336883498990558 -0.91652901576006229 +1.3549016200234227 -1.0757845443224259 -0.93266817185682316 +1.4379740221293491 -0.95209118411408988 -0.95001448309746583 +1.3965492087126441 -1.0153435626523062 -0.94390741193901806 +1.0870495089801231 -1.1336883498990558 -0.91652901576006229 +1.0450983799765772 -1.0757845443224259 -0.93266817185682316 +0.48795953903188327 -1.1350500562448065 -0.58714124035889637 +0.45264179677362604 -1.068023300158955 -0.58336686281126149 +0.46622871775608876 -0.75000000000000011 -0.67939657443508383 +0.51796791425349598 -0.75 -0.7313222504561675 +0.63503557314734083 -0.75 -0.82511526248824552 +0.57411588821993709 -0.75 -0.77991607152390563 +1.40209118411409 0.20001448309746583 0.23797402212934918 +1.4653435626523068 0.19390741193901784 0.19654920871264411 +1.5836883498990559 0.16652901576006207 -0.11295049101987709 +1.5257845443224261 0.18266817185682305 -0.15490162002342259 +1.40209118411409 0.20001448309746583 -0.23797402212934915 +1.4653435626523068 0.19390741193901784 -0.19654920871264409 +1.7664460834152065 0.053578524740185096 -0.18275773351615085 +1.7764206304327446 0.027766551833400488 -0.25063608611031907 +2.1500144830974657 -0.51202597787065129 -0.2020911841140898 +2.143907411939018 -0.55345079128735586 -0.26534356265230641 +2.0035785247401852 -0.56724226648384934 -0.56644608341520641 +1.9777665518334007 -0.49936391388968093 -0.57642063043274461 +2.1500144830974657 -0.98797402212934915 0.20209118411408972 +2.143907411939018 -0.94654920871264403 0.2653435626523063 +2.0035785247401856 -0.93275773351615066 0.5664460834152063 +1.9777665518334007 -1.000636086110319 0.57642063043274461 +1.4379740221293495 -0.95209118411408999 0.95001448309746561 +1.3965492087126441 -1.0153435626523066 0.94390741193901784 +1.3827577335161514 -1.3164460834152065 0.80357852474018521 +1.4506360861103194 -1.3264206304327448 0.77776655183340038 +1.5850500562448071 -1.3371412403588963 0.71204046096811657 +1.5180233001589556 -1.3333668628112614 0.74735820322637381 +1.2000000000000002 -1.4293965744350836 0.73377128224391142 +1.2000000000000002 -1.4813222504561674 0.68203208574650398 +0.6128587596411037 -1.4620404609681166 0.38505005624480643 +0.61663313718873858 -1.4973582032263739 0.31802330015895514 +0.81631165010094464 -1.6665290157600627 0.1129504910198771 +0.87421545567757442 -1.682668171856823 0.15490162002342264 +0.99790881588591018 -1.7000144830974657 0.23797402212934921 +0.93465643734769377 -1.6939074119390181 0.19654920871264422 +0.81631165010094442 -1.6665290157600623 -0.11295049101987711 +0.87421545567757397 -1.682668171856823 -0.1549016200234227 +0.81494994375519347 -1.3371412403588963 -0.71204046096811691 +0.88197669984104465 -1.3333668628112609 -0.74735820322637414 +1.2 -1.4293965744350836 -0.73377128224391142 +1.2 -1.4813222504561674 -0.68203208574650398 +1.1999999999999997 -1.5751152624882452 -0.56496442685265946 +1.2 -1.5299160715239055 -0.62588411178006287 +1.3827577335161512 -1.3164460834152063 -0.80357852474018521 +1.4506360861103191 -1.3264206304327451 -0.77776655183340049 +1.7649644268526601 -0.75 -0.82511526248824485 +1.825884111780063 -0.75 -0.77991607152390541 +2.0035785247401852 -0.93275773351615077 -0.56644608341520641 +1.9777665518334007 -1.000636086110319 -0.57642063043274472 +1.9120404609681168 -1.1350500562448065 -0.58714124035889637 +1.9473582032263741 -1.068023300158955 -0.58336686281126127 +2.1165290157600625 -0.86295049101987698 -0.38368834989905543 +2.1326681718568232 -0.90490162002342256 -0.32578454432242576 +2.1500144830974657 -0.51202597787065107 0.2020911841140898 +2.143907411939018 -0.55345079128735586 0.26534356265230624 +2.1165290157600625 -0.86295049101987698 0.38368834989905543 +2.1326681718568232 -0.90490162002342245 0.3257845443224256 +2.1500144830974657 -0.98797402212934904 -0.2020911841140898 +2.143907411939018 -0.94654920871264403 -0.26534356265230624 +2.1165290157600625 -0.6370495089801228 -0.38368834989905554 +2.1326681718568228 -0.59509837997657722 -0.32578454432242587 +1.7871412403588964 -0.037959539031883538 -0.38505005624480637 +1.7833668628112611 -0.0026417967736259707 -0.31802330015895519 +1.8793965744350838 -0.016228717756088806 -3.6838438251301884e-18 +1.9313222504561676 -0.067967914253496131 -6.5571195165482257e-18 +0.99790881588591029 -1.7000144830974659 -0.23797402212934909 +0.93465643734769377 -1.6939074119390181 -0.19654920871264417 +0.63355391658479376 -1.5535785247401854 -0.18275773351615088 +0.62357936956725513 -1.5277665518334005 -0.25063608611031907 +0.39642147525981475 -0.93275773351615077 -0.56644608341520675 +0.42223344816659947 -1.0006360861103192 -0.57642063043274483 +0.61285875964110381 -1.4620404609681166 -0.38505005624480643 +0.61663313718873847 -1.4973582032263737 -0.31802330015895514 +0.52060342556491623 -1.4837712822439113 -3.6838438251301899e-18 +0.46867774954383223 -1.4320320857465039 -6.557119516548228e-18 +0.48795953903188338 -1.1350500562448065 0.58714124035889637 +0.45264179677362604 -1.068023300158955 0.58336686281126149 +0.37488473751175444 -1.3149644268526592 -4.9279074600009341e-18 +0.42008392847609421 -1.3758841117800626 -6.5652635294160471e-18 +0.63355391658479354 -1.5535785247401852 0.18275773351615093 +0.6235793695672549 -1.5277665518334005 0.25063608611031912 +1.2000000000000002 -1.5751152624882452 0.56496442685265946 +1.2000000000000002 -1.5299160715239055 0.62588411178006287 +1.0172422664838496 -1.3164460834152063 0.80357852474018554 +0.94936391388968122 -1.3264206304327451 0.77776655183340049 +1.8562122655612305 -0.35501511824236365 0.6429404371401003 +1.6382389584574513 -0.22030020581200926 0.72619883181352507 +1.4047014786826493 0.1770588370822882 0.31410064822087258 +1.2699865662522949 0.093800442408863538 0.53207395532465163 +0.66792604467534855 -0.68001343374770507 0.84380044240886365 +0.8858993517791276 -0.54529852131735079 0.9270588370822882 +1.4008600052687634 -0.88471491243035438 0.9703129137821026 +1.4008600052687634 -0.61528508756964562 0.9703129137821026 +0.99913999473123671 -0.88471491243035438 -0.97031291378210283 +0.99913999473123671 -0.61528508756964562 -0.97031291378210283 +0.76176104154254864 -0.22030020581200915 -0.72619883181352518 +1.130013433747705 0.093800442408863538 -0.53207395532465163 +1.7296997941879915 -0.023801168186475152 -0.43823895845745109 +1.5949848817576369 -0.10705956285989982 -0.65621226556123013 +1.732073955324652 -0.68001343374770495 -0.84380044240886309 +1.514100648220873 -0.54529852131735079 -0.92705883708228798 +1.2699865662522956 -1.5938004424088636 0.53207395532465152 +1.4047014786826499 -1.6770588370822881 0.31410064822087264 +1.0652850875696456 -1.7203129137821027 -0.20086000526876327 +1.3347149124303548 -1.7203129137821027 -0.20086000526876327 +1.5949848817576369 -1.3929404371401004 -0.65621226556122991 +1.729699794187991 -1.4761988318135251 -0.43823895845745126 +2.1270588370822883 -1.0641006482208724 -0.20470147868264912 +2.0438004424088634 -1.2820739553246514 -0.069986566252294838 +1.9261988318135255 -1.1882389584574506 0.52969979418799085 +1.8429404371401006 -1.4062122655612299 0.39498488175763641 +1.8429404371401004 -0.093787734438769865 0.39498488175763669 +1.926198831813525 -0.31176104154254897 0.52969979418799107 +0.66792604467534855 -0.81998656625229493 -0.84380044240886365 +0.88589935177912738 -0.95470147868264921 -0.9270588370822882 +0.88589935177912782 -0.95470147868264921 0.92705883708228842 +0.66792604467534844 -0.81998656625229493 0.84380044240886354 +0.99913999473123705 -0.61528508756964562 0.97031291378210283 +0.99913999473123705 -0.88471491243035438 0.97031291378210283 +1.6382389584574515 -1.2796997941879908 0.72619883181352474 +1.8562122655612305 -1.1449848817576362 0.6429404371401003 +1.514100648220873 -0.54529852131735101 0.92705883708228809 +1.732073955324652 -0.68001343374770518 0.84380044240886309 +2.1270588370822883 -0.43589935177912753 0.20470147868264921 +2.0438004424088634 -0.21792604467534848 0.069986566252294824 +1.5949848817576369 -0.10705956285989982 0.65621226556123013 +1.7296997941879908 -0.02380116818647493 0.4382389584574512 +1.3347149124303548 0.22031291378210283 -0.20086000526876321 +1.0652850875696458 0.22031291378210283 -0.20086000526876321 +1.130013433747705 0.093800442408863538 0.53207395532465163 +0.76176104154254864 -0.22030020581200915 0.72619883181352496 +0.54378773443876993 -1.1449848817576371 0.6429404371401003 +0.76176104154254898 -1.2796997941879913 0.72619883181352518 +1.6382389584574515 -0.22030020581200915 -0.72619883181352496 +1.8562122655612303 -0.35501511824236348 -0.64294043714010018 +1.8562122655612303 -1.1449848817576367 -0.64294043714010018 +1.6382389584574513 -1.2796997941879908 -0.72619883181352485 +1.4008600052687634 -0.61528508756964562 -0.9703129137821026 +1.4008600052687634 -0.88471491243035438 -0.9703129137821026 +0.76176104154254864 -1.2796997941879906 -0.72619883181352507 +0.54378773443876982 -1.1449848817576367 -0.64294043714010041 +0.8858993517791276 -0.5452985213173509 -0.92705883708228842 +0.66792604467534844 -0.68001343374770507 -0.84380044240886354 +1.0652850875696456 0.22031291378210283 0.20086000526876321 +1.3347149124303548 0.22031291378210283 0.20086000526876321 +1.2699865662522949 0.093800442408863538 -0.53207395532465163 +1.4047014786826493 0.1770588370822882 -0.31410064822087264 +2.0438004424088634 -0.21792604467534848 -0.069986566252294824 +2.1270588370822883 -0.43589935177912753 -0.20470147868264921 +2.0438004424088634 -1.2820739553246514 0.069986566252294838 +2.1270588370822883 -1.0641006482208724 0.20470147868264912 +1.732073955324652 -0.81998656625229482 0.84380044240886309 +1.514100648220873 -0.95470147868264921 0.92705883708228798 +1.7296997941879915 -1.4761988318135248 0.43823895845745114 +1.5949848817576373 -1.3929404371401 0.65621226556123013 +0.80501511824236371 -1.3929404371401006 0.65621226556123013 +0.67030020581200889 -1.4761988318135248 0.4382389584574512 +1.3347149124303548 -1.7203129137821027 0.20086000526876327 +1.0652850875696458 -1.7203129137821027 0.20086000526876327 +0.67030020581200889 -1.4761988318135248 -0.4382389584574512 +0.80501511824236327 -1.3929404371401002 -0.65621226556123036 +1.4047014786826493 -1.6770588370822881 -0.31410064822087269 +1.2699865662522944 -1.5938004424088634 -0.53207395532465185 +1.514100648220873 -0.95470147868264899 -0.92705883708228809 +1.732073955324652 -0.81998656625229471 -0.8438004424088632 +1.8429404371401004 -1.4062122655612304 -0.39498488175763669 +1.926198831813525 -1.1882389584574511 -0.52969979418799096 +2.1703129137821029 -0.54913999473123687 -0.13471491243035441 +2.1703129137821029 -0.54913999473123698 0.13471491243035433 +2.1703129137821029 -0.95086000526876302 0.13471491243035433 +2.1703129137821029 -0.9508600052687628 -0.13471491243035436 +1.926198831813525 -0.31176104154254891 -0.52969979418799096 +1.8429404371401004 -0.093787734438769865 -0.39498488175763657 +1.130013433747705 -1.5938004424088636 -0.53207395532465152 +0.99529852131735097 -1.6770588370822881 -0.31410064822087269 +0.35619955759113631 -1.2820739553246514 -0.069986566252294852 +0.27294116291771175 -1.0641006482208724 -0.20470147868264923 +0.473801168186475 -1.1882389584574511 -0.52969979418799107 +0.55705956285989966 -1.4062122655612304 -0.39498488175763657 +0.55705956285989966 -1.4062122655612304 0.39498488175763669 +0.473801168186475 -1.1882389584574511 0.52969979418799107 +0.27294116291771175 -1.0641006482208724 0.20470147868264923 +0.35619955759113631 -1.2820739553246514 0.069986566252294852 +0.99529852131735064 -1.6770588370822881 0.31410064822087264 +1.130013433747705 -1.5938004424088634 0.53207395532465174 +1.2650724998901954 -0.10056625699618549 0.75762878984770377 +1.3432414582888712 -0.30521524694909546 0.88410882140193769 +1.3620856567445476 -0.68282536162972496 0.984487586431394 +1.5878111467046643 -0.54331933670715005 0.89826812139385248 +1.0735199684457657 -0.13851819872979687 0.78108437977813105 +1.3264800315542344 -0.13851819872979687 0.78108437977813105 +1.6879855916616429 -0.28105923500562391 0.73618246464930537 +1.6017661266241014 -0.055333745045507365 0.59667643972673035 +1.0567585417111292 -0.30521524694909541 0.88410882140193769 +1.1349275001098049 -0.10056625699618549 0.75762878984770377 +1.3395060249225752 0.10675191169903997 0.49650199476975138 +1.0604939750774247 0.10675191169903997 0.49650199476975149 +1.2379519417336118 -0.37028774683929055 0.92432583806700219 +1.0333029517807015 -0.24380771528505651 0.84615687966832631 +1.3666970482192986 -0.24380771528505651 0.84615687966832631 +1.1620480582663888 -0.37028774683929055 0.92432583806700219 +0.8121888532953363 -0.54331933670715005 0.89826812139385281 +1.0379143432554527 -0.68282536162972518 0.98448758643139411 +1.0333029517807015 -0.24380771528505651 -0.84615687966832631 +1.2379519417336118 -0.37028774683929055 -0.92432583806700219 +1.5878111467046638 -0.54331933670715016 -0.89826812139385259 +1.3620856567445476 -0.68282536162972518 -0.984487586431394 +1.1349275001098049 -0.10056625699618549 -0.75762878984770377 +1.0567585417111292 -0.30521524694909541 -0.88410882140193792 +1.0379143432554527 -0.68282536162972496 -0.98448758643139411 +0.8121888532953363 -0.54331933670714994 -0.89826812139385281 +1.3264800315542344 -0.13851819872979687 -0.78108437977813105 +1.0735199684457657 -0.13851819872979687 -0.78108437977813105 +1.3432414582888714 -0.30521524694909541 -0.88410882140193769 +1.2650724998901954 -0.10056625699618538 -0.75762878984770354 +1.0604939750774252 0.10675191169903997 -0.49650199476975138 +1.3395060249225752 0.10675191169903997 -0.49650199476975149 +1.1620480582663888 -0.37028774683929055 -0.92432583806700219 +1.366697048219299 -0.24380771528505651 -0.8461568796683262 +1.6017661266241012 -0.055333745045507476 -0.59667643972673035 +1.6879855916616431 -0.28105923500562385 -0.73618246464930504 +1.5797122531607097 -1.6743258380670021 -0.037951941733611459 +1.7061922847149438 -1.5961568796683263 0.16669704821929854 +1.894666254954493 -1.3466764397267299 0.40176612662410111 +1.6689407649943768 -1.4861824646493051 0.48798559166164246 +1.7061922847149438 -1.5961568796683263 -0.16669704821929854 +1.5797122531607097 -1.6743258380670021 0.037951941733611459 +1.4066806632928506 -1.6482681213938526 0.38781114670466382 +1.2671746383702751 -1.734487586431394 0.16208565674454747 +1.8494337430038148 -1.5076287898477032 -0.065072499890195132 +1.644784753050905 -1.6341088214019375 -0.14324145828887103 +1.2671746383702751 -1.734487586431394 -0.1620856567445475 +1.4066806632928501 -1.6482681213938526 -0.38781114670466388 +1.8114818012702036 -1.5310843797781306 0.12648003155423412 +1.8114818012702032 -1.5310843797781311 -0.12648003155423404 +1.6689407649943762 -1.4861824646493054 -0.48798559166164257 +1.8946662549544926 -1.3466764397267301 -0.40176612662410144 +1.644784753050905 -1.6341088214019375 0.14324145828887103 +1.8494337430038148 -1.5076287898477032 0.065072499890195132 +2.05675191169904 -1.2465019947697511 -0.13950602492257502 +2.05675191169904 -1.2465019947697513 0.13950602492257499 +1.9576287898477038 -0.68492750010980474 0.64943374300381451 +2.0841088214019377 -0.60675854171112908 0.44478475305090454 +2.184487586431394 -0.58791434325545278 0.067174638370274917 +2.0982681213938523 -0.36218885329533629 0.20668066329284998 +1.2379519417336116 -1.1297122531607096 -0.92432583806700219 +1.0333029517807015 -1.2561922847149436 -0.84615687966832631 +0.79823387337589879 -1.4446662549544924 -0.59667643972673035 +0.71201440833835727 -1.2189407649943762 -0.73618246464930548 +0.30173187860614725 -1.1378111467046637 -0.20668066329285001 +0.4189156202218689 -0.87648003155423404 0.61148180127020324 +0.4638175353506947 -1.2379855916616427 0.46894076499437615 +0.60332356027326994 -1.1517661266241017 0.69466625495449275 +1.0333029517807018 -1.2561922847149436 0.84615687966832642 +1.2379519417336118 -1.1297122531607096 0.92432583806700219 +1.5878111467046638 -0.95668066329284995 0.89826812139385259 +1.3620856567445476 -0.81717463837027482 0.984487586431394 +2.0841088214019381 -0.8932414582888708 0.44478475305090431 +1.9576287898477038 -0.81507249989019503 0.64943374300381418 +1.6965019947697519 -0.61049397507742498 0.85675191169903975 +1.6965019947697517 -0.88950602492257513 0.85675191169903986 +1.9810843797781312 -0.87648003155423393 0.61148180127020291 +1.981084379778131 -0.62351996844576596 0.61148180127020324 +1.9361824646493055 -0.26201440833835754 0.46894076499437615 +1.7966764397267303 -0.34823387337589884 0.69466625495449263 +1.8114818012702028 0.031084379778131277 -0.12648003155423412 +1.8114818012702028 0.031084379778131277 0.1264800315542341 +1.6689407649943762 -0.013817535350694743 0.48798559166164268 +1.8946662549544926 -0.15332356027326977 0.40176612662410138 +1.8494337430038144 0.0076287898477036542 0.06507249989019516 +1.644784753050905 0.13410882140193758 0.14324145828887103 +1.2671746383702749 0.23448758643139411 0.16208565674454739 +1.4066806632928499 0.14826812139385259 0.38781114670466377 +0.99331933670715 0.14826812139385259 0.38781114670466377 +1.132825361629725 0.23448758643139411 0.16208565674454739 +0.70349800523024886 -0.88950602492257524 0.85675191169903997 +0.70349800523024875 -0.61049397507742498 0.85675191169904008 +1.1349275001098049 -1.3994337430038146 0.75762878984770365 +1.0567585417111292 -1.1947847530509048 0.88410882140193769 +1.0379143432554527 -0.81717463837027482 0.98448758643139411 +0.81218885329533652 -0.95668066329285006 0.89826812139385281 +2.0841088214019377 -0.60675854171112875 -0.4447847530509047 +1.9576287898477038 -0.68492750010980474 -0.64943374300381451 +1.6965019947697517 -0.88950602492257502 -0.85675191169903986 +1.6965019947697517 -0.61049397507742487 -0.85675191169903986 +1.2650724998901952 -1.3994337430038146 -0.75762878984770365 +1.343241458288871 -1.1947847530509048 -0.88410882140193769 +1.3620856567445476 -0.81717463837027482 -0.984487586431394 +1.5878111467046643 -0.95668066329284984 -0.89826812139385248 +1.3666970482192984 -1.2561922847149436 -0.84615687966832631 +1.1620480582663888 -1.1297122531607096 -0.92432583806700219 +0.8121888532953363 -0.95668066329284995 -0.89826812139385281 +1.0379143432554525 -0.81717463837027482 -0.984487586431394 +0.4423712101522963 -0.81507249989019515 -0.64943374300381473 +0.70349800523024875 -0.61049397507742498 -0.85675191169904008 +0.70349800523024875 -0.88950602492257502 -0.85675191169904008 +0.41891562022186868 -0.87648003155423404 -0.61148180127020324 +1.1328253616297255 0.23448758643139411 -0.16208565674454739 +0.99331933670714989 0.14826812139385259 -0.38781114670466377 +1.7061922847149438 0.096156879668326201 0.16669704821929851 +1.5797122531607097 0.17432583806700197 -0.037951941733611452 +1.4066806632928499 0.14826812139385259 -0.38781114670466377 +1.2671746383702751 0.234487586431394 -0.16208565674454736 +1.5797122531607097 0.17432583806700197 0.037951941733611452 +1.7061922847149438 0.096156879668326201 -0.16669704821929851 +1.8946662549544926 -0.15332356027326977 -0.40176612662410138 +1.6689407649943766 -0.013817535350694743 -0.48798559166164251 +2.1243258380670023 -0.78795194173361138 -0.37971225316070939 +2.0461568796683265 -0.58330295178070157 -0.50619228471494349 +1.7966764397267307 -0.34823387337589884 -0.6946662549544923 +1.9361824646493055 -0.26201440833835749 -0.46894076499437609 +2.1243258380670023 -0.71204805826638851 0.37971225316070928 +2.0461568796683265 -0.91669704821929832 0.50619228471494315 +1.7966764397267307 -1.1517661266241008 0.6946662549544923 +1.9361824646493058 -1.2379855916616425 0.46894076499437604 +1.1620480582663888 -1.1297122531607096 0.92432583806700219 +1.366697048219299 -1.2561922847149434 0.8461568796683262 +1.6017661266241021 -1.4446662549544924 0.59667643972673023 +1.6879855916616431 -1.2189407649943764 0.73618246464930504 +1.3432414582888712 -1.1947847530509048 0.88410882140193758 +1.2650724998901954 -1.3994337430038146 0.75762878984770343 +1.0604939750774252 -1.6067519116990399 0.49650199476975138 +1.3395060249225756 -1.6067519116990399 0.49650199476975138 +0.55056625699618522 -1.5076287898477037 0.06507249989019516 +0.75521524694909514 -1.6341088214019377 0.14324145828887108 +1.1328253616297252 -1.7344875864313942 0.1620856567445475 +0.99331933670714978 -1.6482681213938526 0.38781114670466388 +0.69380771528505625 -1.5961568796683263 0.16669704821929854 +0.8202877468392904 -1.6743258380670021 -0.037951941733611466 +0.99331933670715045 -1.648268121393853 -0.38781114670466399 +1.132825361629725 -1.7344875864313942 -0.16208565674454753 +1.0567585417111292 -1.1947847530509048 -0.88410882140193769 +1.1349275001098047 -1.3994337430038146 -0.75762878984770343 +1.3395060249225752 -1.6067519116990399 -0.49650199476975138 +1.0604939750774247 -1.6067519116990399 -0.49650199476975149 +1.0735199684457657 -1.361481801270203 -0.78108437977813105 +1.3264800315542338 -1.361481801270203 -0.78108437977813105 +1.6879855916616426 -1.2189407649943764 -0.73618246464930526 +1.6017661266241014 -1.4446662549544926 -0.59667643972673035 +1.981084379778131 -0.62351996844576596 -0.61148180127020324 +1.981084379778131 -0.87648003155423404 -0.61148180127020324 +1.9361824646493053 -1.2379855916616427 -0.46894076499437609 +1.7966764397267303 -1.1517661266241015 -0.69466625495449252 +1.9576287898477038 -0.81507249989019503 -0.64943374300381451 +2.0841088214019377 -0.89324145828887092 -0.4447847530509047 +2.184487586431394 -0.91208565674454722 -0.067174638370274917 +2.0982681213938528 -1.1378111467046637 -0.20668066329284984 +2.0461568796683265 -0.58330295178070157 0.50619228471494349 +2.1243258380670023 -0.78795194173361149 0.37971225316070928 +2.0982681213938528 -1.1378111467046632 0.20668066329284987 +2.184487586431394 -0.91208565674454722 0.067174638370274903 +2.0461568796683265 -0.91669704821929843 -0.50619228471494349 +2.1243258380670023 -0.71204805826638851 -0.37971225316070939 +2.0982681213938528 -0.36218885329533623 -0.20668066329284998 +2.184487586431394 -0.58791434325545255 -0.067174638370274903 +1.644784753050905 0.13410882140193758 -0.143241458288871 +1.8494337430038144 0.0076287898477036542 -0.06507249989019516 +2.05675191169904 -0.25349800523024879 0.13950602492257499 +2.05675191169904 -0.25349800523024862 -0.13950602492257505 +0.8202877468392904 -1.6743258380670021 0.037951941733611466 +0.69380771528505636 -1.5961568796683263 -0.16669704821929857 +0.50533374504550721 -1.3466764397267301 -0.40176612662410133 +0.73105923500562364 -1.4861824646493054 -0.48798559166164257 +0.35384312033167364 -0.91669704821929843 -0.50619228471494349 +0.60332356027326961 -1.151766126624101 -0.69466625495449275 +0.46381753535069448 -1.2379855916616425 -0.46894076499437626 +0.75521524694909514 -1.6341088214019377 -0.14324145828887105 +0.55056625699618522 -1.5076287898477037 -0.06507249989019516 +0.34324808830095987 -1.2465019947697513 0.13950602492257511 +0.3432480883009601 -1.2465019947697515 -0.13950602492257505 +0.44237121015229641 -0.81507249989019515 0.64943374300381473 +0.30173187860614725 -1.1378111467046637 0.20668066329285004 +0.5885181987297966 -1.5310843797781311 -0.12648003155423418 +0.58851819872979683 -1.5310843797781311 0.12648003155423407 +0.73105923500562386 -1.4861824646493056 0.48798559166164268 +0.50533374504550732 -1.3466764397267301 0.40176612662410144 +1.3264800315542344 -1.361481801270203 0.78108437977813105 +1.0735199684457661 -1.361481801270203 0.78108437977813105 +0.71201440833835772 -1.2189407649943766 0.73618246464930526 +0.79823387337589868 -1.4446662549544926 0.59667643972673035 +0.35384312033167364 -0.91669704821929843 0.5061922847149436 +1.849279861785744 -0.54530214016523193 0.73248511743144029 +1.7894256868089482 -0.54268760819673556 0.78076816785433145 +1.601277022794424 0.10397772162051178 0.33120809463701673 +1.6048073899588975 0.071782225985176584 0.40100492526839776 +1.2000000000000002 -0.94657916295965572 0.98048795642276054 +1.1594777183312834 -0.88192856911395234 0.99043061207734606 +1.2000000000000002 -0.94657916295965583 -0.98048795642276054 +1.2405222816687171 -0.88192856911395234 -0.99043061207734606 +0.61057431319105182 -0.54268760819673556 -0.78076816785433145 +1.601277022794424 0.10397772162051178 -0.33120809463701673 +1.5392409609172171 0.11230450765389333 -0.37596077789543397 +1.8492798617857438 -0.54530214016523182 -0.73248511743144007 +1.8144698341819121 -0.47712117915505486 -0.74024588618561449 +1.4046978598347688 -1.4824851174314402 0.64927986178574359 +1.4728788208449455 -1.4902458861856145 0.61446983418191214 +1.0034208370403446 -1.7304879564227607 0 +1.0680714308860475 -1.7404306120773461 0.040522281668716881 +1.4046978598347686 -1.4824851174314402 -0.64927986178574359 +1.4073123918032646 -1.5307681678543315 -0.58942568680894825 +2.053977721620512 -1.0812080946370168 -0.40127702279442357 +2.0217822259851768 -1.1510049252683974 -0.40480738995889748 +2.053977721620512 -1.0812080946370166 0.40127702279442351 +2.0623045076538937 -1.1259607778954335 0.33924096091721662 +1.9324851174314406 -0.10072013821425641 0.20469785983476813 +1.9807681678543314 -0.16057431319105187 0.20731239180326444 +0.55072013821425636 -0.95469785983476829 -0.73248511743144051 +0.58553016581808792 -1.0228788208449453 -0.7402458861856146 +0.86879190536298379 -1.151277022794424 0.85397772162051189 +0.79899507473160258 -1.1548073899588978 0.82178222598517658 +1.2000000000000002 -0.55342083704034473 0.98048795642276054 +1.2405222816687171 -0.61807143088604766 0.99043061207734606 +1.531208094637017 -1.151277022794424 0.85397772162051167 +1.5759607778954345 -1.0892409609172169 0.86230450765389322 +1.531208094637017 -0.34872297720557643 0.85397772162051189 +1.6010049252683982 -0.34519261004110269 0.82178222598517647 +2.053977721620512 -0.41879190536298327 0.40127702279442357 +2.0217822259851763 -0.34899507473160229 0.40480738995889742 +1.4046978598347686 -0.01751488256855982 0.64927986178574382 +1.4073123918032646 0.030768167854331341 0.58942568680894825 +1.3965791629596556 0.23048795642276054 0 +1.3319285691139524 0.24043061207734606 0.040522281668716874 +0.99530214016523222 -0.017514882568559709 0.64927986178574393 +0.92712117915505499 -0.0097541138143855122 0.61446983418191226 +0.86879190536298356 -0.34872297720557643 0.85397772162051211 +0.82403922210456626 -0.41075903908278316 0.86230450765389344 +0.55072013821425636 -0.95469785983476807 0.73248511743144062 +0.61057431319105182 -0.95731239180326477 0.78076816785433145 +1.531208094637017 -0.34872297720557655 -0.85397772162051189 +1.5759607778954345 -0.41075903908278322 -0.86230450765389333 +1.8492798617857438 -0.95469785983476796 -0.73248511743144029 +1.7894256868089482 -0.95731239180326444 -0.78076816785433145 +1.2 -0.55342083704034473 -0.98048795642276054 +1.1594777183312832 -0.61807143088604766 -0.99043061207734606 +0.86879190536298334 -1.1512770227944236 -0.853977721620512 +0.82403922210456604 -1.0892409609172167 -0.86230450765389355 +0.86879190536298345 -0.34872297720557638 -0.853977721620512 +0.79899507473160236 -0.34519261004110258 -0.82178222598517681 +0.99530214016523211 -0.017514882568559598 -0.64927986178574393 +0.9926876081967354 0.030768167854331341 -0.58942568680894825 +1.0680714308860475 0.24043061207734606 -0.040522281668716874 +1.4046978598347681 -0.017514882568559709 -0.64927986178574393 +1.4728788208449453 -0.0097541138143856232 -0.61446983418191214 +1.9324851174314406 -0.10072013821425641 -0.20469785983476813 +1.9402458861856144 -0.13553016581808797 -0.27287882084494514 +1.9324851174314408 -1.3992798617857432 0.20469785983476801 +1.9402458861856147 -1.3644698341819117 0.27287882084494514 +1.8492798617857442 -0.95469785983476818 0.73248511743143996 +1.8144698341819121 -1.0228788208449451 0.74024588618561449 +1.6012770227944242 -1.6039777216205118 0.33120809463701661 +1.5392409609172173 -1.6123045076538933 0.37596077789543392 +0.99530214016523222 -1.4824851174314406 0.64927986178574371 +0.9926876081967354 -1.5307681678543315 0.58942568680894825 +1.3965791629596556 -1.7304879564227607 0 +1.3319285691139524 -1.7404306120773461 -0.040522281668716881 +0.79872297720557672 -1.6039777216205122 -0.33120809463701678 +0.86075903908278328 -1.6123045076538935 -0.37596077789543397 +1.6012770227944237 -1.6039777216205118 -0.33120809463701673 +1.6048073899588975 -1.5717822259851766 -0.40100492526839776 +1.531208094637017 -1.151277022794424 -0.85397772162051178 +1.6010049252683982 -1.1548073899588973 -0.82178222598517647 +1.9324851174314406 -1.3992798617857436 -0.20469785983476813 +1.9807681678543316 -1.3394256868089478 -0.20731239180326447 +2.1804879564227604 -0.74999999999999989 -0.19657916295965536 +2.1904306120773462 -0.79052228166871663 -0.13192856911395226 +2.1804879564227604 -0.74999999999999989 0.19657916295965536 +2.1904306120773462 -0.70947771833128304 0.13192856911395226 +2.053977721620512 -0.41879190536298344 -0.40127702279442368 +2.0623045076538933 -0.37403922210456625 -0.33924096091721662 +0.99530214016523222 -1.4824851174314406 -0.64927986178574371 +0.92712117915505499 -1.4902458861856145 -0.61446983418191214 +0.46751488256855955 -1.3992798617857436 -0.20469785983476818 +0.45975411381438525 -1.3644698341819119 -0.27287882084494525 +0.34602227837948807 -1.0812080946370166 -0.40127702279442368 +0.33769549234610641 -1.1259607778954337 -0.33924096091721684 +0.46751488256855955 -1.3992798617857436 0.20469785983476818 +0.4192318321456685 -1.339425686808948 0.20731239180326452 +0.34602227837948807 -1.0812080946370168 0.40127702279442368 +0.37821777401482337 -1.1510049252683976 0.40480738995889759 +0.79872297720557661 -1.6039777216205122 0.33120809463701684 +0.79519261004110253 -1.5717822259851766 0.40100492526839782 +1.4681715176003196 -0.06070343884806495 0.6730187872058685 +1.2397345885584119 -0.48973505164257786 0.96471929550963276 +1.0617263178126279 0.019577838502176315 0.62340222914316246 +1.4840795446225896 -0.28960691129913418 0.84103330267207554 +0.84637064705828324 -0.28443495637683419 0.81129246939324073 +1.3358362255269414 -0.030084692934636004 0.68063975088704354 +1.1197187226497591 -0.55260647397715412 0.97703158208487906 +0.99987185965655678 -0.069819281493047503 0.70519707714513469 +1.5040127948790105 -0.41433279178978183 0.891573746743482 +0.94047778163550211 -0.35389882611563689 0.88076789123048715 +0.89598720512098939 -0.41433279178978183 -0.891573746743482 +1.4595222183644985 -0.35389882611563694 -0.88076789123048704 +0.93182848239968008 -0.06070343884806495 -0.6730187872058685 +1.1602654114415885 -0.48973505164257786 -0.96471929550963276 +1.3382736821873726 0.019577838502176204 -0.62340222914316235 +0.91592045537741074 -0.28960691129913418 -0.84103330267207554 +1.5536293529417171 -0.28443495637683425 -0.81129246939324062 +1.064163774473059 -0.030084692934636004 -0.68063975088704354 +1.2802812773502414 -0.55260647397715412 -0.97703158208487906 +1.4001281403434436 -0.069819281493047614 -0.70519707714513458 +1.3973935260228463 -1.7270315820848792 0.080281277350241251 +1.8801807185069523 -1.4551970771451344 0.20012814034344359 +1.5356672082102185 -1.6415737467434819 -0.30401279487901062 +1.596101173884364 -1.6307678912304868 0.25952221836449818 +1.889296561151935 -1.4230187872058684 -0.26817151760031971 +1.4602649483574226 -1.7147192955096329 -0.039734588558411603 +1.9695778385021763 -1.373402229143162 0.13827368218737229 +1.6603930887008658 -1.5910333026720753 -0.28407954462258939 +1.6655650436231662 -1.5612924693932406 0.35362935294171671 +1.9199153070653643 -1.4306397508870434 -0.135836225526941 +1.8730187872058686 -0.4818284823996804 0.68929656115193483 +2.1647192955096326 -0.71026541144158839 0.26026494835742214 +1.1197187226497587 -0.94739352602284621 -0.97703158208487906 +0.99987185965655645 -1.4301807185069524 -0.70519707714513469 +0.31923210876951291 -1.0095222183644981 -0.39610117388436322 +0.57659777085683772 -0.61172631781262765 0.76957783850217654 +0.35896669732792441 -1.0340795446225892 0.46039308870086582 +0.89598720512098984 -1.0856672082102186 0.89157374674348211 +1.4595222183644985 -1.1461011738843632 0.88076789123048704 +2.0112924693932408 -1.1036293529417165 0.46556504362316542 +1.8806397508870436 -0.61416377447305914 0.719915307065364 +1.8234022291431624 -0.88827368218737224 0.7695778385021762 +2.0410333026720755 -0.46592045537741078 0.46039308870086587 +1.9695778385021763 -0.12659777085683777 -0.13827368218737232 +1.6603930887008658 0.091033302672075656 0.28407954462258933 +1.889296561151935 -0.076981212794131615 0.26817151760031976 +1.4602649483574224 0.21471929550963276 0.039734588558411575 +0.51936024911295675 -0.88583622552694086 0.71991530706536422 +0.9318284823996803 -1.4392965611519353 0.6730187872058685 +1.1602654114415887 -1.0102649483574222 0.96471929550963276 +2.0112924693932408 -0.39637064705828318 -0.46556504362316581 +1.8806397508870436 -0.88583622552694086 -0.719915307065364 +1.4681715176003196 -1.4392965611519353 -0.6730187872058685 +1.2397345885584119 -1.0102649483574222 -0.96471929550963276 +1.5040127948790105 -1.0856672082102183 -0.89157374674348189 +0.94047778163550177 -1.1461011738843632 -0.88076789123048715 +0.38870753060675922 -1.1036293529417167 -0.46556504362316575 +0.51936024911295653 -0.61416377447305914 -0.71991530706536422 +0.57659777085683772 -0.88827368218737235 -0.76957783850217643 +1.5356672082102183 0.141573746743482 0.30401279487901056 +1.5961011738843633 0.13076789123048704 -0.25952221836449818 +1.3973935260228463 0.22703158208487906 -0.080281277350241251 +1.8801807185069523 -0.044802922854865423 -0.20012814034344364 +2.1770315820848789 -0.66971872264975862 -0.19739352602284604 +1.9051970771451348 -0.54987185965655638 -0.68018071850695228 +2.1770315820848789 -0.83028127735024138 0.19739352602284604 +1.9051970771451348 -0.95012814034344362 0.68018071850695228 +1.2802812773502414 -0.9473935260228461 0.97703158208487884 +1.4001281403434442 -1.4301807185069524 0.70519707714513435 +1.5536293529417171 -1.215565043623166 0.81129246939324051 +1.0641637744730592 -1.4699153070653641 0.68063975088704354 +0.51070343884806491 -1.4230187872058684 0.26817151760031971 +0.93973505164257753 -1.7147192955096329 0.039734588558411603 +0.86433279178978151 -1.6415737467434819 0.30401279487901062 +0.80389882611563679 -1.6307678912304873 -0.25952221836449835 +0.84637064705828324 -1.2155650436231658 -0.81129246939324073 +1.3358362255269407 -1.4699153070653641 -0.68063975088704354 +1.0617263178126279 -1.5195778385021765 -0.62340222914316235 +1.4840795446225892 -1.2103930887008656 -0.84103330267207554 +1.8234022291431624 -0.61172631781262776 -0.7695778385021762 +2.0410333026720755 -1.034079544622589 -0.46039308870086576 +1.8730187872058686 -1.0181715176003197 -0.68929656115193483 +2.1647192955096326 -0.78973458855841161 -0.26026494835742214 +2.0915737467434821 -0.44598720512098944 0.33566720821021828 +2.0807678912304874 -1.0095222183644981 0.39610117388436294 +2.0915737467434821 -1.0540127948790103 -0.33566720821021817 +2.080767891230487 -0.49047778163550182 -0.39610117388436328 +1.6655650436231659 0.061292469393240734 -0.35362935294171677 +1.9199153070653638 -0.069360249112956462 0.135836225526941 +1.0026064739771539 -1.7270315820848792 -0.080281277350241251 +0.51981928149304746 -1.4551970771451346 -0.20012814034344362 +0.49480292285486538 -0.95012814034344351 -0.6801807185069525 +0.7344349563768342 -1.5612924693932406 -0.35362935294171682 +0.48008469293463596 -1.4306397508870434 0.135836225526941 +0.52698121279413157 -1.0181715176003197 0.68929656115193516 +0.43042216149782375 -1.3734022291431622 -0.13827368218737232 +0.73960691129913392 -1.5910333026720753 0.28407954462258939 +1.3382736821873729 -1.5195778385021763 0.62340222914316223 +0.91592045537741118 -1.2103930887008665 0.84103330267207554 +0.30842625325651785 -1.0540127948790103 0.33566720821021839 +1.8267476188075715 -0.23443672020460982 0.58427898032160919 +1.2687157005262188 0.19538324907249438 0.31863563026492314 +0.77018003072289609 -0.74999999999999989 0.90291461058653244 +1.5186356302649235 -0.81871570052621878 0.94538324907249438 +0.88136436973507692 -0.81871570052621878 -0.9453832490724946 +1.1312842994737817 0.1953832490724946 -0.3186356302649232 +1.7842789803216093 -0.12325238119242887 -0.51556327979539018 +1.6298199692771045 -0.74999999999999956 -0.90291461058653211 +1.2000000000000002 -1.6529146105865324 0.42981996927710425 +1.1312842994737811 -1.6953832490724943 -0.31863563026492331 +1.7155632797953904 -1.3342789803216091 -0.62674761880757135 +2.1453832490724949 -1.0686356302649227 -0.06871570052621874 +1.8267476188075715 -1.26556327979539 0.58427898032160919 +1.7842789803216093 -0.12325238119242887 0.51556327979539029 +0.77018003072289609 -0.75 -0.90291461058653244 +0.88136436973507715 -0.81871570052621845 0.94538324907249471 +0.84317791022691035 -0.75 0.93417235896271589 +0.88136436973507692 -0.681284299473781 0.9453832490724946 +1.715563279795391 -1.3342789803216086 0.62674761880757113 +1.5568220897730902 -0.75 0.93417235896271555 +1.5186356302649235 -0.68128429947378122 0.94538324907249438 +2.1341723589627155 -0.39317791022691029 -6.1608256340360548e-19 +2.1453832490724944 -0.43136436973507697 0.068715700526218768 +1.7773502691896259 -0.17264973081037449 0.57735026918962595 +1.7155632797953904 -0.16572101967839103 0.62674761880757157 +1.2687157005262188 0.19538324907249438 -0.3186356302649232 +1.2 0.18417235896271567 0.35682208977308999 +1.2000000000000002 0.15291461058653233 0.4298199692771042 +0.62264973081037422 -1.3273502691896257 0.57735026918962595 +0.57325238119242883 -1.2655632797953908 0.58427898032160908 +1.7773502691896261 -0.17264973081037449 -0.57735026918962551 +1.7155632797953904 -0.16572101967839092 -0.62674761880757124 +1.8267476188075715 -1.2655632797953904 -0.58427898032160897 +1.55682208977309 -0.74999999999999989 -0.93417235896271567 +1.5186356302649235 -0.68128429947378111 -0.94538324907249438 +0.62264973081037422 -1.3273502691896257 -0.57735026918962584 +0.68443672020460955 -1.3342789803216091 -0.62674761880757146 +0.84317791022691035 -0.75 -0.93417235896271567 +0.88136436973507692 -0.68128429947378122 -0.9453832490724946 +1.1312842994737813 0.1953832490724946 0.31863563026492325 +1.2000000000000002 0.18417235896271567 -0.35682208977308999 +1.2000000000000002 0.15291461058653233 -0.4298199692771042 +2.1029146105865326 -0.32018003072289597 0 +2.134172358962716 -1.1068220897730896 1.2321651268072106e-18 +2.1029146105865326 -1.1798199692771036 0 +1.6298199692771045 -0.75 0.90291461058653211 +1.7773502691896264 -1.3273502691896253 0.57735026918962551 +1.7842789803216095 -1.3767476188075709 0.51556327979539029 +0.68443672020460988 -1.3342789803216091 0.62674761880757146 +1.2000000000000002 -1.6841723589627158 0.3568220897730901 +1.2687157005262188 -1.6953832490724943 0.31863563026492331 +0.61572101967839066 -1.3767476188075713 -0.51556327979539052 +1.2000000000000002 -1.6841723589627158 -0.3568220897730901 +1.2687157005262188 -1.6953832490724943 -0.31863563026492325 +1.5186356302649235 -0.81871570052621845 -0.94538324907249438 +1.7773502691896259 -1.3273502691896257 -0.57735026918962551 +1.7842789803216093 -1.3767476188075713 -0.51556327979539018 +2.1453832490724944 -0.43136436973507697 -0.068715700526218768 +2.1453832490724944 -1.0686356302649229 0.068715700526218726 +1.8267476188075715 -0.23443672020460971 -0.58427898032160908 +1.2 -1.6529146105865324 -0.42981996927710425 +0.29708538941346763 -1.1798199692771041 0 +0.57325238119242872 -1.2655632797953904 -0.5842789803216093 +0.61572101967839088 -1.3767476188075713 0.51556327979539029 +0.25461675092750535 -1.0686356302649229 0.068715700526218781 +1.1312842994737815 -1.6953832490724945 0.31863563026492331 +0.26582764103728429 -1.1068220897730898 1.2321651268072117e-18 +0.25461675092750535 -1.0686356302649229 -0.068715700526218781 +1.2000000000000002 -0.22426888788086641 0.85065080835203988 +1.2000000000000002 -0.17607845371442887 0.8189102873387164 +1.1451428592863835 -0.20998203120107972 0.83986385056568247 +1.1660964225133497 -0.26483917191469658 0.87376742805233332 +1.2339035774866509 -0.26483917191469664 0.87376742805233321 +1.2 -0.22426888788086652 -0.8506508083520401 +1.1451428592863835 -0.20998203120107972 -0.83986385056568247 +1.2000000000000002 -0.17607845371442887 -0.8189102873387164 +1.2548571407136169 -0.20998203120107972 -0.83986385056568236 +1.2339035774866509 -0.26483917191469664 -0.87376742805233321 +1.7257311121191339 -1.6006508083520399 -2.4513010918904203e-18 +1.6851608280853034 -1.6237674280523331 -0.033903577486650918 +1.7400179687989208 -1.5898638505656821 -0.054857140713616921 +1.7739215462855715 -1.5689102873387162 0 +1.7400179687989206 -1.5898638505656821 0.054857140713616921 +2.0506508083520396 -0.75000000000000011 0.52573111211913359 +2.0189102873387164 -0.75 0.57392154628557113 +1.2339035774866509 -1.2351608280853033 -0.87376742805233332 +1.1451428592863835 -1.2900179687989204 0.83986385056568236 +2.0737674280523333 -0.78390357748665085 0.48516082808530303 +1.7400179687989203 0.089863850565682246 -0.054857140713616907 +1.7739215462855711 0.068910287338716403 0 +1.2000000000000002 -1.3239215462855713 0.81891028733871629 +2.0737674280523333 -0.71609642251334893 -0.48516082808530336 +1.2 -1.3239215462855713 -0.81891028733871629 +1.7400179687989203 0.089863850565682246 0.054857140713616907 +1.7257311121191339 0.10065080835203966 2.4513010918904203e-18 +1.6851608280853034 0.12376742805233321 0.033903577486650911 +2.0737674280523333 -0.78390357748665085 -0.48516082808530336 +2.0737674280523333 -0.71609642251334915 0.48516082808530303 +1.1660964225133497 -1.2351608280853033 0.87376742805233332 +1.2000000000000002 -1.2757311121191335 0.85065080835203988 +1.2339035774866509 -1.2351608280853033 0.87376742805233332 +0.6260784537144285 -1.5689102873387162 0 +0.65998203120107946 -1.5898638505656821 0.054857140713616928 +1.2 -1.2757311121191335 -0.85065080835203988 +1.166096422513349 -1.2351608280853033 -0.87376742805233332 +2.0398638505656823 -0.69514285928638297 -0.54001796879892028 +2.0506508083520396 -0.75 -0.52573111211913359 +2.0189102873387164 -0.75 -0.57392154628557124 +0.71483917191469648 -1.6237674280523331 0.033903577486650918 +0.67426888788086625 -1.6006508083520399 1.2256505459452107e-18 +0.71483917191469648 -1.6237674280523331 -0.033903577486650918 +0.85820988329399439 0.037928268229677653 -0.51219972690999771 +0.46642231325749561 -0.61816149698298017 0.66669512270283449 +0.62391616211425605 -0.4100516430955744 -0.74334549596053467 +0.46642231325749572 -0.6181614969829804 -0.66669512270283449 +0.44237121015229641 -0.68492750010980474 -0.64943374300381462 +0.92750422818221478 0.14756031181852258 0.34659997257597436 +0.69630888727061568 -0.22163878825453975 -0.68346886752821712 +1.0026064739771539 0.22703158208487906 0.080281277350241251 +0.80501511824236338 -0.1070595628598997 -0.65621226556123025 +0.74873333439274126 -0.16249238098892738 -0.67170915887432048 +0.55072013821425636 -0.54530214016523204 -0.73248511743144062 +0.38108971266128355 -0.75 -0.57392154628557113 +0.4423712101522963 -0.68492750010980474 0.64943374300381473 +0.4200019052667272 -0.75 -0.62578188869003293 +0.74873333439274148 -0.16249238098892738 0.67170915887432037 +0.2560925880609819 -0.94654920871264381 -0.26534356265230646 +0.23194392108089312 -0.99136787945551608 0.067889430951449628 +0.92427145868032001 0.078756567168790315 -0.48696645046278475 +0.92750422818221478 0.14756031181852258 -0.34659997257597436 +0.92533155387381627 0.11574218443040096 -0.41838703947458178 +0.86005164309557414 -0.0066545040394655475 -0.57608383788574402 +1.0026064739771541 0.22703158208487906 -0.080281277350241251 +0.24998551690253423 -0.98797402212934882 0.20209118411408999 +0.42000190526672743 -0.75 0.62578188869003293 +0.38108971266128377 -0.75 0.57392154628557124 +0.3601361494343176 -0.80485714071361691 0.54001796879892039 +0.49480292285486538 -0.54987185965655638 0.6801807185069525 +0.92533155387381627 0.11574218443040096 0.41838703947458195 +0.92427145868032001 0.078756567168790315 0.48696645046278492 +0.80501511824236338 -0.1070595628598997 0.65621226556123025 +0.62391616211425593 -0.41005164309557418 0.74334549596053445 +0.6963088872706158 -0.22163878825453964 0.68346886752821701 +0.49480292285486549 -0.54987185965655649 -0.6801807185069525 +0.33700104792563468 -0.84975716552598102 -0.49525883802792392 +0.99529852131735064 0.1770588370822882 -0.31410064822087258 +1.0006230302710439 0.21679589706089264 -0.15985780358782289 +0.99790881588591029 0.20001448309746583 -0.23797402212934918 +0.24998551690253412 -0.98797402212934915 -0.20209118411408994 +0.86456827261077818 -0.05598545619885309 0.63704738383668813 +0.23194392108089312 -0.99136787945551608 -0.067889430951449628 +0.2402206179342532 -1.0307552987238056 0 +1.0034208370403446 0.23048795642276054 0 +1.0006230302710435 0.21679589706089242 0.15985780358782284 +0.99790881588590996 0.20001448309746583 0.23797402212934915 +0.99529852131735064 0.1770588370822882 0.31410064822087264 +0.2560925880609819 -0.94654920871264381 0.26534356265230635 +0.85820988329399461 0.037928268229677764 0.51219972690999771 +0.86005164309557447 -0.0066545040394655475 0.57608383788574402 +0.58553016581808792 -0.47712117915505486 -0.7402458861856146 +0.71201440833835727 -0.28105923500562391 -0.73618246464930537 +0.66601387759394226 -0.34452585126808516 -0.74192286377215244 +0.29827686211693072 -0.9365609960788055 0.38998766307204563 +0.31589117859806226 -0.89324145828887092 -0.44478475305090459 +0.33700104792563468 -0.84975716552598102 0.49525883802792398 +0.3601361494343176 -0.80485714071361691 -0.54001796879892028 +0.24939270379056044 -1.0288981373351189 0.13624095340381406 +0.31589117859806226 -0.89324145828887092 0.44478475305090459 +0.86456827261077818 -0.055985456198852979 -0.63704738383668824 +0.29827686211693072 -0.9365609960788055 -0.38998766307204569 +0.28487018589300406 -0.98033669342916963 -0.33088129441328618 +0.24939270379056055 -1.0288981373351189 -0.13624095340381406 +0.66601387759394237 -0.34452585126808494 0.74192286377215244 +0.28487018589300406 -0.98033669342916951 0.33088129441328606 +0.55072013821425636 -0.54530214016523193 0.73248511743144051 +0.58553016581808792 -0.47712117915505481 0.7402458861856146 +0.71201440833835739 -0.28105923500562369 0.73618246464930526 +3 1361 1397 258 +3 1363 1401 259 +3 2291 2309 260 +3 1365 1405 261 +3 1367 1393 262 +3 1369 1413 263 +3 1371 1416 264 +3 2263 2280 265 +3 1373 1421 266 +3 1375 1409 267 +3 1377 1429 268 +3 1379 1433 269 +3 1381 1437 270 +3 1383 1441 271 +3 1385 1425 272 +3 1387 1399 273 +3 1389 1415 274 +3 1391 1407 275 +3 1393 1367 276 +3 1395 1427 277 +3 1397 1361 278 +3 1399 1387 279 +3 1401 1363 280 +3 1403 1419 281 +3 181 182 2309 +3 1405 1365 282 +3 1407 1391 283 +3 1409 1375 284 +3 1411 1439 285 +3 1413 1369 286 +3 1415 1389 287 +3 1416 1371 288 +3 1419 1403 289 +3 1421 1373 290 +3 1423 1447 291 +3 1425 1385 292 +3 1427 1395 293 +3 1429 1377 294 +3 1431 1459 295 +3 1433 1379 296 +3 1435 1449 297 +3 1437 1381 298 +3 1439 1411 299 +3 1441 1383 300 +3 1443 1445 301 +3 1445 1443 302 +3 1447 1423 303 +3 1449 1435 304 +3 1451 1453 305 +3 1453 1451 306 +3 1455 1457 307 +3 1457 1455 308 +3 1459 1431 309 +3 1461 1467 310 +3 1463 1477 311 +3 1465 1471 312 +3 1467 1461 313 +3 1469 1475 314 +3 1471 1465 315 +3 1473 1479 316 +3 1475 1469 317 +3 1477 1463 318 +3 1479 1473 319 +3 1481 1487 320 +3 1483 1497 321 +3 1485 1491 322 +3 1487 1481 323 +3 1489 1495 324 +3 1491 1485 325 +3 1493 1499 326 +3 1495 1489 327 +3 1497 1483 328 +3 1499 1493 329 +3 1501 1507 330 +3 1503 1517 331 +3 1505 1511 332 +3 1507 1501 333 +3 1509 1515 334 +3 1511 1505 335 +3 1513 1519 336 +3 1515 1509 337 +3 1517 1503 338 +3 1519 1513 339 +3 1521 1543 340 +3 1523 1625 341 +3 1525 1569 342 +3 1527 1609 343 +3 1529 1553 344 +3 1531 1647 345 +3 1533 1557 346 +3 1535 1593 347 +3 1537 1591 348 +3 1539 1541 349 +3 1541 1539 350 +3 1543 1521 351 +3 1545 1635 352 +3 1547 1549 353 +3 1549 1547 354 +3 1551 1577 355 +3 1553 1529 356 +3 1555 1655 357 +3 1557 1533 358 +3 1559 1587 359 +3 1561 1617 360 +3 1563 1615 361 +3 1565 1567 362 +3 1567 1565 363 +3 1569 1525 364 +3 1571 1641 365 +3 1573 1575 366 +3 1575 1573 367 +3 1577 1551 368 +3 1579 1581 369 +3 1581 1579 370 +3 1583 1633 371 +3 1585 1631 372 +3 1587 1559 373 +3 1589 1627 374 +3 1591 1537 375 +3 1593 1535 376 +3 1595 1597 377 +3 1597 1595 378 +3 1599 1653 379 +3 1601 1651 380 +3 1603 1605 381 +3 1605 1603 382 +3 1607 1637 383 +3 1609 1527 384 +3 1611 1613 385 +3 1613 1611 386 +3 1615 1563 387 +3 1617 1561 388 +3 1619 1621 389 +3 1621 1619 390 +3 1623 1629 391 +3 1625 1523 392 +3 1627 1589 393 +3 1629 1623 394 +3 1631 1585 395 +3 1633 1583 396 +3 1635 1545 397 +3 1637 1607 398 +3 1639 1643 399 +3 2278 38 2322 +3 1641 1571 400 +3 1643 1639 401 +3 1645 1649 402 +3 1647 1531 403 +3 3 4 2325 +3 1649 1645 404 +3 1651 1601 405 +3 1653 1599 406 +3 1655 1555 407 +3 1656 1835 408 +3 1657 1762 409 +3 1658 1843 410 +3 1659 1766 411 +3 1660 1847 412 +3 1661 1772 413 +3 1662 1827 414 +3 1663 1758 415 +3 1664 1863 416 +3 1665 1780 417 +3 1666 2312 2269 +3 2297 1869 2281 +3 1667 1786 418 +3 1668 1877 419 +3 1669 1790 420 +3 1670 1855 421 +3 1671 1776 422 +3 1672 1893 423 +3 1673 1798 424 +3 1674 1901 425 +3 1675 1802 426 +3 1676 1909 427 +3 1677 1806 428 +3 1678 1917 429 +3 1679 1810 430 +3 1680 1885 431 +3 1681 1794 432 +3 1682 1839 433 +3 1683 1834 434 +3 1684 1866 435 +3 1685 1862 436 +3 1686 1851 437 +3 1687 1846 438 +3 1688 1773 439 +3 1689 1850 440 +3 1690 1889 441 +3 1691 1884 442 +3 1692 1759 443 +3 1693 1830 444 +3 1694 1815 445 +3 1695 1928 446 +3 1696 1763 447 +3 1697 1838 448 +3 1698 1873 449 +3 1699 1868 450 +3 1700 1767 451 +3 2307 1844 452 +3 1701 2328 453 +3 1702 1823 454 +3 1703 1949 455 +3 1704 1791 456 +3 1705 1880 457 +3 1706 1913 458 +3 1707 1908 459 +3 1708 1777 460 +3 1709 1858 461 +3 1710 1819 462 +3 1711 1935 463 +3 1712 1781 464 +3 1713 1865 465 +3 108 109 2320 +3 1714 1845 466 +3 1715 1842 467 +3 1716 1787 468 +3 1717 1872 469 +3 1718 1929 470 +3 1719 1924 471 +3 1720 1811 472 +3 1721 1920 473 +3 1722 1831 474 +3 1723 1826 475 +3 1724 1795 476 +3 1725 1888 477 +3 1726 1950 478 +3 1727 1945 479 +3 1728 1799 480 +3 1729 1896 481 +3 1730 1933 482 +3 1731 1818 483 +3 1732 1803 484 +3 1733 1904 485 +3 1734 1859 486 +3 1735 1854 487 +3 1736 1807 488 +3 1737 1912 489 +3 1738 1925 490 +3 1739 1814 491 +3 1740 1921 492 +3 1741 1916 493 +3 1742 1881 494 +3 1743 1876 495 +3 1744 1905 496 +3 1745 1900 497 +3 1746 1940 498 +3 1747 1820 499 +3 1748 1936 500 +3 1749 1932 501 +3 1750 1946 502 +3 1751 1822 503 +3 1752 1942 504 +3 1753 1939 505 +3 1754 1897 506 +3 1755 1892 507 +3 1756 1761 508 +3 1757 1770 509 +3 1758 1663 510 +3 1759 1692 511 +3 1760 1765 512 +3 1761 1756 513 +3 1762 1657 514 +3 1763 1696 515 +3 1764 1769 516 +3 1765 1760 517 +3 1766 1659 518 +3 1767 1700 519 +3 1768 1771 520 +3 1769 1764 521 +3 192 193 2301 +3 2328 1701 2294 +3 1770 1757 522 +3 1771 1768 523 +3 1772 1661 524 +3 1773 1688 525 +3 1774 1779 526 +3 1775 1788 527 +3 1776 1671 528 +3 1777 1708 529 +3 1778 1783 530 +3 1779 1774 531 +3 1780 1665 532 +3 1781 1712 533 +3 1782 1785 534 +3 1783 1778 535 +3 2312 1666 536 +3 1784 1789 537 +3 1785 1782 538 +3 1786 1667 539 +3 1787 1716 540 +3 1788 1775 541 +3 1789 1784 542 +3 1790 1669 543 +3 1791 1704 544 +3 1792 1797 545 +3 1793 1808 546 +3 1794 1681 547 +3 1795 1724 548 +3 1796 1801 549 +3 1797 1792 550 +3 1798 1673 551 +3 1799 1728 552 +3 1800 1805 553 +3 1801 1796 554 +3 1802 1675 555 +3 1803 1732 556 +3 1804 1809 557 +3 1805 1800 558 +3 1806 1677 559 +3 1807 1736 560 +3 1808 1793 561 +3 1809 1804 562 +3 1810 1679 563 +3 1811 1720 564 +3 1812 1833 565 +3 1813 1918 566 +3 1814 1739 567 +3 1815 1694 568 +3 1816 1861 569 +3 1817 1902 570 +3 1818 1731 571 +3 1819 1710 572 +3 1820 1747 573 +3 2264 232 2275 +3 1821 1941 574 +3 1822 1751 575 +3 1823 1702 576 +3 1824 1849 577 +3 1825 1886 578 +3 1826 1723 579 +3 1827 1662 580 +3 1828 1883 581 +3 1829 1832 582 +3 1830 1693 583 +3 1831 1722 584 +3 1832 1829 585 +3 1833 1812 586 +3 1834 1683 587 +3 1835 1656 588 +3 1836 1927 589 +3 1837 1840 590 +3 1838 1697 591 +3 1839 1682 592 +3 1840 1837 593 +3 1841 1870 594 +3 1842 1715 595 +3 1843 1658 596 +3 1844 2307 2268 +3 1845 1714 597 +3 1846 1687 598 +3 1847 1660 599 +3 1848 1948 600 +3 1849 1824 601 +3 1850 1689 602 +3 1851 1686 603 +3 1852 1879 604 +3 1853 1910 605 +3 1854 1735 606 +3 1855 1670 607 +3 1856 1907 608 +3 1857 1860 609 +3 1858 1709 610 +3 1859 1734 611 +3 1860 1857 612 +3 1861 1816 613 +3 1862 1685 614 +3 1863 1664 615 +3 2315 1934 616 +3 1864 1867 617 +3 1865 1713 618 +3 1866 1684 619 +3 1867 1864 620 +3 1868 1699 621 +3 1869 2297 622 +3 1870 1841 623 +3 1871 1874 624 +3 1872 1717 625 +3 1873 1698 626 +3 1874 1871 627 +3 1875 1926 628 +3 1876 1743 629 +3 1877 1668 630 +3 1878 1923 631 +3 1879 1852 632 +3 1880 1705 633 +3 1881 1742 634 +3 1882 1919 635 +3 1883 1828 636 +3 1884 1691 637 +3 1885 1680 638 +3 1886 1825 639 +3 1887 1890 640 +3 1888 1725 641 +3 1889 1690 642 +3 1890 1887 643 +3 1891 1947 644 +3 1892 1755 645 +3 1893 1672 646 +3 1894 1944 647 +3 1895 1898 648 +3 1896 1729 649 +3 1897 1754 650 +3 1898 1895 651 +3 1899 1930 652 +3 1900 1745 653 +3 1901 1674 654 +3 1902 1817 655 +3 1903 1906 656 +3 1904 1733 657 +3 1905 1744 658 +3 1906 1903 659 +3 1907 1856 660 +3 1908 1707 661 +3 1909 1676 662 +3 1910 1853 663 +3 1911 1914 664 +3 1912 1737 665 +3 1913 1706 666 +3 1914 1911 667 +3 1915 1922 668 +3 1916 1741 669 +3 1917 1678 670 +3 1918 1813 671 +3 1919 1882 672 +3 1920 1721 673 +3 1921 1740 674 +3 1922 1915 675 +3 1923 1878 676 +3 1924 1719 677 +3 1925 1738 678 +3 1926 1875 679 +3 1927 1836 680 +3 1928 1695 681 +3 1929 1718 682 +3 1930 1899 683 +3 1931 1937 684 +3 1932 1749 685 +3 1933 1730 686 +3 1934 2315 2296 +3 1935 1711 687 +3 1936 1748 688 +3 1937 1931 689 +3 1938 1943 690 +3 1939 1753 691 +3 1940 1746 692 +3 1941 1821 693 +3 2319 1951 2316 +3 1942 1752 694 +3 1943 1938 695 +3 1944 1894 696 +3 1945 1727 697 +3 1946 1750 698 +3 1947 1891 699 +3 1948 1848 700 +3 1949 1703 701 +3 1950 1726 702 +3 1951 2319 703 +3 1953 704 583 +3 1238 705 408 +3 1955 706 591 +3 1246 707 410 +3 174 175 2290 +3 2293 217 2327 +3 1251 708 412 +3 1957 709 602 +3 1229 710 414 +3 1959 711 610 +3 1268 712 416 +3 1960 713 618 +3 82 83 2311 +3 1962 714 625 +3 1282 715 419 +3 1964 716 633 +3 1259 717 421 +3 1966 718 641 +3 1299 719 423 +3 1968 720 649 +3 1307 721 425 +3 1970 722 657 +3 1316 723 427 +3 1972 724 665 +3 1325 725 429 +3 1974 726 673 +3 1290 727 431 +3 1976 728 681 +3 1242 729 433 +3 1978 730 687 +3 1271 731 435 +3 1980 732 701 +3 1255 733 437 +3 1982 734 510 +3 1172 735 439 +3 1984 736 579 +3 1294 737 441 +3 1986 738 514 +3 1157 739 443 +3 1988 740 587 +3 1217 741 445 +3 1990 742 518 +3 1161 743 447 +3 1992 744 595 +3 1277 745 449 +3 1994 2310 2301 +3 1165 746 451 +3 1996 747 524 +3 1168 748 453 +3 1998 749 598 +3 1225 750 454 +3 2000 751 528 +3 1191 752 456 +3 2002 753 606 +3 1320 754 458 +3 2004 755 532 +3 1177 756 460 +3 2006 757 614 +3 1221 758 462 +3 2008 759 536 +3 1181 760 464 +3 2010 761 539 +3 2283 762 2320 +3 2011 763 621 +3 1248 764 466 +3 2013 765 543 +3 1187 766 468 +3 2015 767 629 +3 1337 768 470 +3 2017 769 547 +3 1212 770 472 +3 2019 771 637 +3 1234 772 474 +3 2021 773 551 +3 1196 774 476 +3 2023 775 645 +3 1358 776 478 +3 2025 777 555 +3 1200 778 480 +3 2027 779 653 +3 1341 780 482 +3 2029 781 559 +3 1204 782 484 +3 2031 783 661 +3 1264 784 486 +3 2033 785 563 +3 1208 786 488 +3 2035 787 669 +3 1333 788 490 +3 2037 789 567 +3 1329 790 492 +3 2039 791 677 +3 1286 792 494 +3 2041 793 571 +3 1312 794 496 +3 2043 795 685 +3 1349 796 498 +3 2045 797 573 +3 1344 798 500 +3 2047 799 691 +3 1354 800 502 +3 2049 801 575 +3 1350 802 504 +3 2051 803 697 +3 1303 804 506 +3 2052 805 447 +3 1159 806 508 +3 2053 807 520 +3 1016 808 510 +3 2054 809 451 +3 1163 810 512 +3 2055 811 522 +3 1006 812 514 +3 2056 813 453 +3 1167 814 516 +3 2057 815 508 +3 1009 816 518 +3 2058 817 439 +3 1170 818 520 +3 2059 819 512 +3 1010 820 2301 +3 2060 821 443 +3 1155 822 522 +3 2061 823 516 +3 1013 824 524 +3 2062 825 464 +3 1179 826 526 +3 2063 827 537 +3 1029 828 528 +3 2064 829 2320 +3 1183 830 530 +3 2065 831 541 +3 1019 832 532 +3 2066 833 468 +3 1185 834 534 +3 2067 835 526 +3 1020 836 536 +3 2068 837 456 +3 1189 838 537 +3 2069 839 530 +3 1023 840 539 +3 2070 841 460 +3 1175 842 541 +3 2071 843 534 +3 1026 844 543 +3 2072 845 480 +3 1198 846 545 +3 2073 847 557 +3 1044 848 547 +3 2074 849 484 +3 1202 850 549 +3 2075 851 561 +3 1032 852 551 +3 2076 853 488 +3 1206 854 553 +3 2077 855 545 +3 1035 856 555 +3 2078 857 472 +3 1210 858 557 +3 2079 859 549 +3 1038 860 559 +3 2080 861 476 +3 1194 862 561 +3 2081 863 553 +3 1041 864 563 +3 2082 865 408 +3 1236 866 565 +3 2083 867 635 +3 1129 868 567 +3 2084 869 416 +3 1266 870 569 +3 2085 871 659 +3 1117 872 571 +3 2086 2321 616 +3 1141 873 573 +3 2087 874 412 +3 1249 875 2264 +3 2088 876 703 +3 1147 877 575 +3 2089 878 437 +3 1253 879 577 +3 2090 880 643 +3 1105 881 579 +3 2091 882 431 +3 1288 883 581 +3 2092 884 565 +3 1062 885 583 +3 2093 886 474 +3 1232 887 585 +3 2094 888 671 +3 1047 889 587 +3 2095 890 470 +3 1335 891 589 +3 2096 892 623 +3 1068 893 591 +3 2097 894 433 +3 1240 895 593 +3 2098 896 627 +3 1093 897 595 +3 2270 2305 466 +3 229 230 2264 +3 2099 898 693 +3 1053 899 598 +3 2100 900 478 +3 1356 901 600 +3 2101 902 639 +3 1056 903 602 +3 2102 904 494 +3 1284 905 604 +3 2103 906 667 +3 1123 907 606 +3 2104 908 427 +3 1314 909 608 +3 2105 910 569 +3 1084 911 610 +3 2106 912 486 +3 1262 913 612 +3 2107 914 655 +3 1050 915 614 +3 2108 916 500 +3 1342 917 616 +3 2109 918 2266 +3 1090 919 618 +3 2110 920 435 +3 1269 921 620 +3 2298 2284 621 +3 2111 922 410 +3 1244 923 623 +3 2112 924 679 +3 1096 925 625 +3 2113 926 449 +3 1275 927 627 +3 2114 928 589 +3 1135 929 629 +3 2115 930 490 +3 1331 931 631 +3 2116 932 663 +3 1078 933 633 +3 2117 934 492 +3 1327 935 635 +3 2118 936 585 +3 1059 937 637 +3 2119 938 414 +3 1227 939 639 +3 2120 940 699 +3 1108 941 641 +3 2121 942 441 +3 1292 943 643 +3 2122 944 600 +3 1152 945 645 +3 2123 946 502 +3 1352 947 647 +3 2124 948 683 +3 1114 949 649 +3 2125 950 506 +3 1301 951 651 +3 2126 952 689 +3 1138 953 653 +3 2127 954 462 +3 1219 955 655 +3 2128 956 608 +3 1120 957 657 +3 2129 958 496 +3 1310 959 659 +3 2130 960 612 +3 1081 961 661 +3 2131 962 421 +3 1257 963 663 +3 2132 964 675 +3 1126 965 665 +3 2133 966 458 +3 1318 967 667 +3 2134 968 631 +3 1132 969 669 +3 2135 970 445 +3 1215 971 671 +3 2136 972 581 +3 1102 973 673 +3 2137 974 429 +3 1323 975 675 +3 2138 976 604 +3 1099 977 677 +3 2139 978 419 +3 1280 979 679 +3 2140 980 593 +3 1065 981 681 +3 2141 982 425 +3 1305 983 683 +3 2142 984 695 +3 1144 985 685 +3 2143 986 620 +3 1087 987 687 +3 2144 988 482 +3 1339 989 689 +3 2145 990 647 +3 1149 991 691 +3 2146 992 454 +3 1223 993 693 +3 2147 994 498 +3 1347 995 695 +3 2148 996 651 +3 1111 997 697 +3 2149 998 423 +3 1297 999 699 +3 2150 1000 577 +3 1075 1001 701 +3 2151 1002 504 +3 2314 1003 703 +3 2152 1004 434 +3 1160 1005 409 +3 812 1006 310 +3 738 1986 258 +3 2153 1007 467 +3 1164 1008 411 +3 816 1009 312 +3 742 1990 259 +3 820 1010 314 +3 2310 1994 260 +3 2154 1011 438 +3 1171 1012 413 +3 824 1013 316 +3 747 1996 261 +3 2155 1014 475 +3 1156 1015 415 +3 808 1016 318 +3 734 1982 262 +3 2156 1017 436 +3 1180 1018 417 +3 832 1019 320 +3 755 2004 263 +3 836 1020 322 +3 759 2008 264 +3 2157 1021 450 +3 1186 1022 418 +3 840 1023 324 +3 761 2010 265 +3 2158 1024 495 +3 1190 1025 420 +3 844 1026 326 +3 765 2013 266 +3 2159 1027 487 +3 1176 1028 422 +3 828 1029 328 +3 751 2000 267 +3 2160 1030 507 +3 1199 1031 424 +3 852 1032 330 +3 773 2021 268 +3 2161 1033 497 +3 1203 1034 426 +3 856 1035 332 +3 777 2025 269 +3 2162 1036 459 +3 1207 1037 428 +3 860 1038 334 +3 781 2029 270 +3 2163 1039 493 +3 1211 1040 430 +3 864 1041 336 +3 785 2033 271 +3 2164 1042 442 +3 1195 1043 432 +3 848 1044 338 +3 769 2017 272 +3 2165 1045 448 +3 1237 1046 434 +3 889 1047 340 +3 740 1988 273 +3 2166 1048 465 +3 1267 1049 436 +3 915 1050 342 +3 757 2006 274 +3 2167 1051 440 +3 1250 1052 438 +3 899 1053 344 +3 749 1998 275 +3 2169 1054 413 +3 1254 1055 440 +3 903 1056 346 +3 709 1957 276 +3 2170 1057 477 +3 1289 1058 442 +3 937 1059 348 +3 771 2019 277 +3 2172 1060 415 +3 1233 1061 444 +3 885 1062 350 +3 704 1953 278 +3 2174 1063 491 +3 1336 1064 446 +3 981 1065 352 +3 728 1976 279 +3 2176 1066 409 +3 1241 1067 448 +3 893 1068 354 +3 706 1955 280 +3 2177 1069 469 +3 1273 1070 450 +3 763 2011 281 +3 2179 1071 411 +3 1247 1072 452 +3 2293 2327 282 +3 2181 1073 503 +3 1357 1074 455 +3 1001 1075 357 +3 732 1980 283 +3 2183 1076 420 +3 1285 1077 457 +3 933 1078 359 +3 716 1964 284 +3 2184 1079 489 +3 1315 1080 459 +3 961 1081 361 +3 783 2031 285 +3 2186 1082 422 +3 1263 1083 461 +3 911 1084 363 +3 711 1959 286 +3 2188 1085 483 +3 1343 1086 463 +3 987 1087 365 +3 730 1978 287 +3 2190 1088 417 +3 1270 1089 465 +3 919 1090 367 +3 713 1960 288 +3 99 100 2272 +3 2191 1091 452 +3 1245 1092 467 +3 897 1093 368 +3 744 1992 289 +3 2193 1094 418 +3 1276 1095 469 +3 925 1096 370 +3 714 1962 290 +3 2194 1097 446 +3 1332 1098 471 +3 977 1099 372 +3 791 2039 291 +3 2196 1100 430 +3 1328 1101 473 +3 973 1102 374 +3 726 1974 292 +3 2197 1103 444 +3 1228 1104 475 +3 881 1105 376 +3 736 1984 293 +3 2199 1106 432 +3 1293 1107 477 +3 941 1108 378 +3 718 1966 294 +3 2200 1109 455 +3 1353 1110 479 +3 997 1111 380 +3 803 2051 295 +3 2202 1112 424 +3 1302 1113 481 +3 949 1114 382 +3 720 1968 296 +3 2203 1115 501 +3 1220 1116 483 +3 872 1117 384 +3 793 2041 297 +3 2205 1118 426 +3 1311 1119 485 +3 957 1120 386 +3 722 1970 298 +3 2206 1121 461 +3 1258 1122 487 +3 907 1123 388 +3 753 2002 299 +3 2208 1124 428 +3 1319 1125 489 +3 965 1126 390 +3 724 1972 300 +3 2209 1127 471 +3 1216 1128 491 +3 868 1129 392 +3 789 2037 301 +3 2210 1130 473 +3 1324 1131 493 +3 969 1132 394 +3 787 2035 302 +3 2211 1133 457 +3 1281 1134 495 +3 929 1135 396 +3 767 2015 303 +3 2212 1136 485 +3 1306 1137 497 +3 953 1138 398 +3 779 2027 304 +3 2213 1139 505 +3 1222 1140 499 +3 873 1141 2322 +3 797 2045 305 +3 2214 1142 463 +3 1340 1143 501 +3 985 1144 401 +3 795 2043 306 +3 2215 1145 479 +3 1224 1146 503 +3 877 1147 403 +3 801 2049 307 +3 2216 2318 2279 +3 1348 1148 505 +3 991 1149 404 +3 799 2047 308 +3 2217 1150 481 +3 1298 1151 507 +3 945 1152 406 +3 775 2023 309 +3 2219 2323 499 +3 2279 19 2303 +3 2221 1153 517 +3 1169 1154 509 +3 822 1155 311 +3 811 2055 310 +3 1015 1156 580 +3 1060 2172 511 +3 739 1157 258 +3 821 2060 311 +3 2222 1158 521 +3 1153 2221 513 +3 806 1159 313 +3 815 2057 312 +3 1005 1160 588 +3 1066 2176 515 +3 743 1161 259 +3 805 2052 313 +3 2223 1162 523 +3 1158 2222 517 +3 810 1163 315 +3 819 2059 314 +3 1008 1164 596 +3 1071 2179 519 +3 746 1165 260 +3 809 2054 315 +3 2224 1166 509 +3 1162 2223 521 +3 814 1167 317 +3 823 2061 316 +3 202 203 2294 +3 748 1168 261 +3 813 2056 317 +3 1154 1169 513 +3 1166 2224 523 +3 818 1170 319 +3 807 2053 318 +3 1012 1171 599 +3 1054 2169 525 +3 735 1172 262 +3 817 2058 319 +3 2226 1173 535 +3 1188 1174 527 +3 842 1175 321 +3 831 2065 320 +3 1028 1176 607 +3 1082 2186 529 +3 756 1177 263 +3 841 2070 321 +3 2227 1178 538 +3 1173 2226 531 +3 826 1179 323 +3 835 2067 322 +3 1018 1180 615 +3 1088 2190 533 +3 760 1181 264 +3 825 2062 323 +3 2228 1182 542 +3 1178 2227 535 +3 830 1183 325 +3 839 2069 324 +3 762 2283 265 +3 829 2064 325 +3 2229 1184 527 +3 1182 2228 538 +3 834 1185 327 +3 843 2071 326 +3 1022 1186 622 +3 1094 2193 540 +3 766 1187 266 +3 833 2066 327 +3 1174 1188 531 +3 1184 2229 542 +3 838 1189 329 +3 827 2063 328 +3 1025 1190 630 +3 1076 2183 544 +3 752 1191 267 +3 837 2068 329 +3 2231 1192 554 +3 1209 1193 546 +3 862 1194 331 +3 851 2075 330 +3 1043 1195 638 +3 1106 2199 548 +3 774 1196 268 +3 861 2080 331 +3 2232 1197 558 +3 1192 2231 550 +3 846 1198 333 +3 855 2077 332 +3 1031 1199 646 +3 1112 2202 552 +3 778 1200 269 +3 845 2072 333 +3 2233 1201 562 +3 1197 2232 554 +3 850 1202 335 +3 859 2079 334 +3 1034 1203 654 +3 1118 2205 556 +3 782 1204 270 +3 849 2074 335 +3 2234 1205 546 +3 1201 2233 558 +3 854 1206 337 +3 863 2081 336 +3 1037 1207 662 +3 1124 2208 560 +3 786 1208 271 +3 853 2076 337 +3 1193 1209 550 +3 1205 2234 562 +3 858 1210 339 +3 847 2073 338 +3 1040 1211 670 +3 1100 2196 564 +3 770 1212 272 +3 857 2078 339 +3 2236 1213 582 +3 1326 1214 566 +3 971 1215 341 +3 888 2094 340 +3 1128 1216 678 +3 1063 2174 568 +3 741 1217 273 +3 970 2135 341 +3 2237 1218 609 +3 1308 2256 570 +3 955 1219 343 +3 914 2107 342 +3 1116 1220 686 +3 1085 2188 572 +3 758 1221 274 +3 954 2127 343 +3 1140 1222 692 +3 2323 2219 2302 +3 2286 2287 574 +3 993 1223 345 +3 898 2099 344 +3 1146 1224 698 +3 1073 2181 576 +3 750 1225 275 +3 992 2146 345 +3 2238 1226 700 +3 1291 2250 578 +3 939 1227 347 +3 902 2101 346 +3 1104 1228 584 +3 1014 2155 580 +3 710 1229 276 +3 938 2119 347 +3 2239 1230 672 +3 1235 1231 582 +3 887 1232 349 +3 936 2118 348 +3 1061 1233 511 +3 1103 2197 584 +3 772 1234 277 +3 886 2093 349 +3 1231 1235 636 +3 1213 2236 586 +3 866 1236 351 +3 884 2092 350 +3 1046 1237 592 +3 1004 2152 588 +3 705 1238 278 +3 865 2082 351 +3 2240 1239 628 +3 1243 2241 590 +3 895 1240 353 +3 980 2140 352 +3 1067 1241 515 +3 1045 2165 592 +3 729 1242 279 +3 894 2097 353 +3 2241 1243 680 +3 1274 2245 594 +3 923 1244 355 +3 892 2096 354 +3 1092 1245 597 +3 1007 2153 596 +3 707 1246 280 +3 922 2111 355 +3 1072 1247 519 +3 1091 2191 597 +3 764 1248 281 +3 157 158 2305 +3 875 1249 356 +3 1052 1250 603 +3 1011 2154 599 +3 708 1251 282 +3 874 2087 356 +3 2242 1252 644 +3 1226 2238 601 +3 879 1253 358 +3 1000 2150 357 +3 1055 1254 525 +3 1051 2167 603 +3 733 1255 283 +3 878 2089 358 +3 2243 1256 676 +3 1317 2257 605 +3 963 1257 360 +3 932 2116 359 +3 1122 1258 611 +3 1027 2159 607 +3 717 1259 284 +3 962 2131 360 +3 2244 1260 656 +3 1265 1261 609 +3 913 1262 362 +3 960 2130 361 +3 1083 1263 529 +3 1121 2206 611 +3 784 1264 285 +3 912 2106 362 +3 1261 1265 660 +3 1218 2237 613 +3 870 1266 364 +3 910 2105 363 +3 1049 1267 619 +3 1017 2156 615 +3 712 1268 286 +3 869 2084 364 +3 1272 2317 617 +3 921 1269 366 +3 986 2143 365 +3 1089 1270 533 +3 1048 2166 619 +3 731 1271 287 +3 920 2110 366 +3 2317 1272 2296 +3 2274 60 2276 +3 918 2109 367 +3 2311 2265 288 +3 1070 1273 626 +3 1021 2157 622 +3 2245 1274 590 +3 1278 2247 624 +3 927 1275 369 +3 896 2098 368 +3 1095 1276 540 +3 1069 2177 626 +3 745 1277 289 +3 926 2113 369 +3 2247 1278 594 +3 1334 1279 628 +3 979 1280 371 +3 924 2112 370 +3 1134 1281 634 +3 1024 2158 630 +3 715 1282 290 +3 978 2139 371 +3 2248 1283 668 +3 1256 2243 632 +3 905 1284 373 +3 976 2138 372 +3 1077 1285 544 +3 1133 2211 634 +3 792 1286 291 +3 904 2102 373 +3 2249 1287 566 +3 1230 2239 636 +3 883 1288 375 +3 972 2136 374 +3 1058 1289 642 +3 1042 2164 638 +3 727 1290 292 +3 882 2091 375 +3 2250 1291 601 +3 1295 2252 640 +3 943 1292 377 +3 880 2090 376 +3 1107 1293 548 +3 1057 2170 642 +3 737 1294 293 +3 942 2121 377 +3 2252 1295 578 +3 1355 1296 644 +3 999 1297 379 +3 940 2120 378 +3 1151 1298 650 +3 1030 2160 646 +3 719 1299 294 +3 998 2149 379 +3 2253 1300 690 +3 1304 2254 648 +3 951 1301 381 +3 996 2148 380 +3 1113 1302 552 +3 1150 2217 650 +3 804 1303 295 +3 950 2125 381 +3 2254 1304 696 +3 1338 2260 652 +3 983 1305 383 +3 948 2124 382 +3 1137 1306 658 +3 1033 2161 654 +3 721 1307 296 +3 982 2141 383 +3 2256 1308 613 +3 1313 1309 656 +3 959 1310 385 +3 871 2085 384 +3 1119 1311 556 +3 1136 2212 658 +3 794 1312 297 +3 958 2129 385 +3 1309 1313 570 +3 1260 2244 660 +3 909 1314 387 +3 956 2128 386 +3 1080 1315 666 +3 1036 2162 662 +3 723 1316 298 +3 908 2104 387 +3 2257 1317 632 +3 1321 2259 664 +3 967 1318 389 +3 906 2103 388 +3 1125 1319 560 +3 1079 2184 666 +3 754 1320 299 +3 966 2133 389 +3 2259 1321 605 +3 1330 1322 668 +3 975 1323 391 +3 964 2132 390 +3 1131 1324 674 +3 1039 2163 670 +3 725 1325 300 +3 974 2137 391 +3 1214 1326 586 +3 1287 2249 672 +3 935 1327 393 +3 867 2083 392 +3 1101 1328 564 +3 1130 2210 674 +3 790 1329 301 +3 934 2117 393 +3 1322 1330 664 +3 1283 2248 676 +3 931 1331 395 +3 968 2134 394 +3 1098 1332 682 +3 1127 2209 678 +3 788 1333 302 +3 930 2115 395 +3 1279 1334 624 +3 1239 2240 680 +3 891 1335 397 +3 928 2114 396 +3 1064 1336 568 +3 1097 2194 682 +3 768 1337 303 +3 890 2095 397 +3 2260 1338 648 +3 1345 2262 684 +3 989 1339 399 +3 952 2126 398 +3 1143 1340 688 +3 1115 2203 686 +3 780 1341 304 +3 988 2144 399 +3 917 1342 400 +3 2321 2086 2322 +3 1086 1343 572 +3 1142 2214 688 +3 798 1344 305 +3 916 2108 400 +3 2262 1345 652 +3 1351 1346 690 +3 995 1347 402 +3 984 2142 401 +3 1148 1348 694 +3 1139 2213 692 +3 796 1349 306 +3 994 2147 402 +3 1359 2288 2316 +3 1003 2314 2325 +3 876 2088 403 +3 22 23 2303 +3 2318 2216 694 +3 802 1350 307 +3 1002 2151 2325 +3 1346 1351 684 +3 1300 2253 696 +3 947 1352 405 +3 990 2145 404 +3 1110 1353 702 +3 1145 2215 698 +3 800 1354 308 +3 946 2123 405 +3 1296 1355 640 +3 1252 2242 700 +3 901 1356 407 +3 944 2122 406 +3 1074 1357 576 +3 1109 2200 702 +3 776 1358 309 +3 900 2100 407 +3 2274 2276 617 +3 2288 1359 574 +3 1361 1157 1360 +3 1361 704 278 +3 1363 1161 1362 +3 1363 706 280 +3 2291 1165 1364 +3 178 179 2291 +3 1365 1168 2324 +3 1365 2293 282 +3 1367 1172 1366 +3 1367 709 276 +3 1369 1177 1368 +3 1369 711 286 +3 1371 1181 1370 +3 1371 713 288 +3 1373 1187 1372 +3 1373 714 290 +3 1375 1191 1374 +3 1375 716 284 +3 1377 1196 1376 +3 1377 718 294 +3 1379 1200 1378 +3 1379 720 296 +3 1381 1204 1380 +3 1381 722 298 +3 1383 1208 1382 +3 1383 724 300 +3 1385 1212 1384 +3 1385 726 292 +3 1387 1217 1386 +3 1387 728 279 +3 1389 1221 1388 +3 1389 730 287 +3 1391 1225 1390 +3 1391 732 283 +3 1393 1229 1392 +3 1393 734 262 +3 1395 1234 1394 +3 1395 736 293 +3 1397 1238 1396 +3 1397 738 258 +3 1399 1242 1398 +3 1399 740 273 +3 1401 1246 1400 +3 1401 742 259 +3 1403 1248 1402 +3 1403 744 289 +3 2309 2310 260 +3 1405 1251 1404 +3 1405 747 261 +3 1407 1255 1406 +3 1407 749 275 +3 1409 1259 1408 +3 1409 751 267 +3 1411 1264 1410 +3 1411 753 299 +3 1413 1268 1412 +3 1413 755 263 +3 1415 1271 1414 +3 1415 757 274 +3 1416 2265 2313 +3 1416 759 264 +3 2280 2282 1417 +3 2280 761 265 +3 1419 1277 1418 +3 1419 763 281 +3 1421 1282 1420 +3 1421 765 266 +3 1423 1286 1422 +3 1423 767 303 +3 1425 1290 1424 +3 1425 769 272 +3 1427 1294 1426 +3 1427 771 277 +3 1429 1299 1428 +3 1429 773 268 +3 1431 1303 1430 +3 1431 775 309 +3 1433 1307 1432 +3 1433 777 269 +3 1435 1312 1434 +3 1435 779 304 +3 1437 1316 1436 +3 1437 781 270 +3 1439 1320 1438 +3 1439 783 285 +3 1441 1325 1440 +3 1441 785 271 +3 1443 1329 1442 +3 1443 787 302 +3 1445 1333 1444 +3 1445 789 301 +3 1447 1337 1446 +3 1447 791 291 +3 1449 1341 1448 +3 1449 793 297 +3 1451 1344 1450 +3 1451 795 306 +3 1453 1349 1452 +3 1453 797 305 +3 1455 1350 1454 +3 1455 799 308 +3 1457 1354 1456 +3 1457 801 307 +3 1459 1358 1458 +3 1459 803 295 +3 1461 1006 1460 +3 1461 805 313 +3 1463 1155 1462 +3 1463 807 318 +3 1465 1009 1464 +3 1465 809 315 +3 1467 1159 1466 +3 1467 811 310 +3 1469 1010 1468 +3 1469 813 317 +3 1471 1163 1470 +3 1471 815 312 +3 1473 1013 1472 +3 1473 817 319 +3 1475 1167 1474 +3 1475 819 314 +3 1477 1016 1476 +3 1477 821 311 +3 1479 1170 1478 +3 1479 823 316 +3 1481 1019 1480 +3 1481 825 323 +3 1483 1175 1482 +3 1483 827 328 +3 1485 1020 1484 +3 1485 829 325 +3 1487 1179 1486 +3 1487 831 320 +3 1489 1023 1488 +3 1489 833 327 +3 1491 1183 1490 +3 1491 835 322 +3 1493 1026 1492 +3 1493 837 329 +3 1495 1185 1494 +3 1495 839 324 +3 1497 1029 1496 +3 1497 841 321 +3 1499 1189 1498 +3 1499 843 326 +3 1501 1032 1500 +3 1501 845 333 +3 1503 1194 1502 +3 1503 847 338 +3 1505 1035 1504 +3 1505 849 335 +3 1507 1198 1506 +3 1507 851 330 +3 1509 1038 1508 +3 1509 853 337 +3 1511 1202 1510 +3 1511 855 332 +3 1513 1041 1512 +3 1513 857 339 +3 1515 1206 1514 +3 1515 859 334 +3 1517 1044 1516 +3 1517 861 331 +3 1519 1210 1518 +3 1519 863 336 +3 1521 1047 1520 +3 1521 865 351 +3 1523 1215 1522 +3 1523 867 392 +3 1525 1050 1524 +3 1525 869 364 +3 1527 1219 1526 +3 1527 871 384 +3 39 40 2322 +3 1529 1053 1528 +3 1529 874 356 +3 1531 1223 1530 +3 1531 876 403 +3 1533 1056 1532 +3 1533 878 358 +3 1535 1227 1534 +3 1535 880 376 +3 1537 1059 1536 +3 1537 882 375 +3 1539 1232 1538 +3 1539 884 350 +3 1541 1062 1540 +3 1541 886 349 +3 1543 1236 1542 +3 1543 888 340 +3 1545 1065 1544 +3 1545 890 397 +3 1547 1240 1546 +3 1547 892 354 +3 1549 1068 1548 +3 1549 894 353 +3 1551 1244 1550 +3 1551 896 368 +3 1553 1249 1552 +3 1553 898 344 +3 1555 1075 1554 +3 1555 900 407 +3 1557 1253 1556 +3 1557 902 346 +3 1559 1078 1558 +3 1559 904 373 +3 1561 1257 1560 +3 1561 906 388 +3 1563 1081 1562 +3 1563 908 387 +3 1565 1262 1564 +3 1565 910 363 +3 1567 1084 1566 +3 1567 912 362 +3 1569 1266 1568 +3 1569 914 342 +3 1571 1087 1570 +3 1571 916 400 +3 1573 1269 1572 +3 1573 918 367 +3 1575 1090 1574 +3 1575 920 366 +3 1577 1093 1576 +3 1577 922 355 +3 1579 1275 1578 +3 1579 924 370 +3 1581 1096 1580 +3 1581 926 369 +3 1583 1280 1582 +3 1583 928 396 +3 1585 1099 1584 +3 1585 930 395 +3 1587 1284 1586 +3 1587 932 359 +3 1589 1102 1588 +3 1589 934 393 +3 1591 1288 1590 +3 1591 936 348 +3 1593 1105 1592 +3 1593 938 347 +3 1595 1292 1594 +3 1595 940 378 +3 1597 1108 1596 +3 1597 942 377 +3 1599 1297 1598 +3 1599 944 406 +3 1601 1111 1600 +3 1601 946 405 +3 1603 1301 1602 +3 1603 948 382 +3 1605 1114 1604 +3 1605 950 381 +3 1607 1305 1606 +3 1607 952 398 +3 1609 1117 1608 +3 1609 954 343 +3 1611 1310 1610 +3 1611 956 386 +3 1613 1120 1612 +3 1613 958 385 +3 1615 1314 1614 +3 1615 960 361 +3 1617 1123 1616 +3 1617 962 360 +3 1619 1318 1618 +3 1619 964 390 +3 1621 1126 1620 +3 1621 966 389 +3 1623 1323 1622 +3 1623 968 394 +3 1625 1129 1624 +3 1625 970 341 +3 1627 1327 1626 +3 1627 972 374 +3 1629 1132 1628 +3 1629 974 391 +3 1631 1331 1630 +3 1631 976 372 +3 1633 1135 1632 +3 1633 978 371 +3 1635 1335 1634 +3 1635 980 352 +3 1637 1138 1636 +3 1637 982 383 +3 1639 1339 1638 +3 1639 984 401 +3 2278 1141 2300 +3 1641 1342 1640 +3 1641 986 365 +3 1643 1144 1642 +3 1643 988 399 +3 1645 1347 1644 +3 1645 990 404 +3 1647 1147 1646 +3 1647 992 345 +3 1649 1149 1648 +3 1649 994 402 +3 1651 1352 1650 +3 1651 996 380 +3 1653 1152 1652 +3 1653 998 379 +3 1655 1356 1654 +3 1655 1000 357 +3 9 10 2285 +3 2308 1002 2325 +3 1656 865 1520 +3 1656 1004 588 +3 1657 1066 1460 +3 1657 1006 514 +3 1658 922 1576 +3 1658 1007 596 +3 1659 1071 1464 +3 1659 1009 518 +3 2292 2277 1468 +3 2292 1010 2301 +3 1660 874 1528 +3 1660 1011 599 +3 1661 1054 1472 +3 1661 1013 524 +3 1662 938 1592 +3 1662 1014 580 +3 1663 1060 1476 +3 1663 1016 510 +3 1664 869 1524 +3 1664 1017 615 +3 1665 1088 1480 +3 1665 1019 532 +3 1666 2272 1484 +3 1666 1020 536 +3 135 136 2299 +3 2297 1021 622 +3 1667 1094 1488 +3 1667 1023 539 +3 1668 978 1632 +3 1668 1024 630 +3 1669 1076 1492 +3 1669 1026 543 +3 1670 962 1616 +3 1670 1027 607 +3 1671 1082 1496 +3 1671 1029 528 +3 1672 998 1652 +3 1672 1030 646 +3 1673 1112 1500 +3 1673 1032 551 +3 1674 982 1636 +3 1674 1033 654 +3 1675 1118 1504 +3 1675 1035 555 +3 1676 908 1562 +3 1676 1036 662 +3 1677 1124 1508 +3 1677 1038 559 +3 1678 974 1628 +3 1678 1039 670 +3 1679 1100 1512 +3 1679 1041 563 +3 1680 882 1536 +3 1680 1042 638 +3 1681 1106 1516 +3 1681 1044 547 +3 1682 894 1548 +3 1682 1045 592 +3 1683 1004 1520 +3 1683 1047 587 +3 1684 920 1574 +3 1684 1048 619 +3 1685 1017 1524 +3 1685 1050 614 +3 1686 878 1532 +3 1686 1051 603 +3 1687 1011 1528 +3 1687 1053 598 +3 1688 817 1472 +3 1688 1054 525 +3 1689 1051 1532 +3 1689 1056 602 +3 1690 942 1596 +3 1690 1057 642 +3 1691 1042 1536 +3 1691 1059 637 +3 1692 821 1476 +3 1692 1060 511 +3 1693 1103 1540 +3 1693 1062 583 +3 1694 970 1624 +3 1694 1063 568 +3 1695 1097 1544 +3 1695 1065 681 +3 1696 805 1460 +3 1696 1066 515 +3 1697 1045 1548 +3 1697 1068 591 +3 1698 926 1580 +3 1698 1069 626 +3 1699 1021 2299 +3 1699 2298 621 +3 1700 809 1464 +3 1700 1071 519 +3 2307 1091 2306 +3 169 170 2268 +3 1701 813 1468 +3 1701 2277 2294 +3 1702 992 1646 +3 1702 1073 576 +3 1703 1109 1554 +3 1703 1075 701 +3 1704 837 1492 +3 1704 1076 544 +3 1705 1133 1558 +3 1705 1078 633 +3 1706 966 1620 +3 1706 1079 666 +3 1707 1036 1562 +3 1707 1081 661 +3 1708 841 1496 +3 1708 1082 529 +3 1709 1121 1566 +3 1709 1084 610 +3 1710 954 1608 +3 1710 1085 572 +3 1711 1142 1570 +3 1711 1087 687 +3 1712 825 1480 +3 1712 1088 533 +3 1713 1048 1574 +3 1713 1090 618 +3 2271 829 1484 +3 103 104 2271 +3 1714 2305 2306 +3 1714 1091 597 +3 1715 1007 1576 +3 1715 1093 595 +3 1716 833 1488 +3 1716 1094 540 +3 1717 1069 1580 +3 1717 1096 625 +3 1718 890 1544 +3 1718 1097 682 +3 1719 1127 1584 +3 1719 1099 677 +3 1720 857 1512 +3 1720 1100 564 +3 1721 1130 1588 +3 1721 1102 673 +3 1722 886 1540 +3 1722 1103 584 +3 1723 1014 1592 +3 1723 1105 579 +3 1724 861 1516 +3 1724 1106 548 +3 1725 1057 1596 +3 1725 1108 641 +3 1726 900 1554 +3 1726 1109 702 +3 1727 1145 1600 +3 1727 1111 697 +3 1728 845 1500 +3 1728 1112 552 +3 1729 1150 1604 +3 1729 1114 649 +3 1730 988 1642 +3 1730 1115 686 +3 1731 1085 1608 +3 1731 1117 571 +3 1732 849 1504 +3 1732 1118 556 +3 1733 1136 1612 +3 1733 1120 657 +3 1734 912 1566 +3 1734 1121 611 +3 1735 1027 1616 +3 1735 1123 606 +3 1736 853 1508 +3 1736 1124 560 +3 1737 1079 1620 +3 1737 1126 665 +3 1738 930 1584 +3 1738 1127 678 +3 1739 1063 1624 +3 1739 1129 567 +3 1740 934 1588 +3 1740 1130 674 +3 1741 1039 1628 +3 1741 1132 669 +3 1742 904 1558 +3 1742 1133 634 +3 1743 1024 1632 +3 1743 1135 629 +3 1744 958 1612 +3 1744 1136 658 +3 1745 1033 1636 +3 1745 1138 653 +3 1746 994 1648 +3 1746 1139 692 +3 1747 2323 2300 +3 1747 1141 573 +3 1748 916 1570 +3 1748 1142 688 +3 1749 1115 1642 +3 1749 1144 685 +3 1750 946 1600 +3 1750 1145 698 +3 1751 1073 1646 +3 1751 1147 575 +3 1752 1002 2285 +3 1752 2318 694 +3 1753 1139 1648 +3 1753 1149 691 +3 1754 950 1604 +3 1754 1150 650 +3 1755 1030 1652 +3 1755 1152 645 +3 2302 27 2323 +3 2285 12 2318 +3 1756 815 1470 +3 1756 1153 513 +3 1757 1166 1462 +3 1757 1155 522 +3 1758 734 1392 +3 1758 1156 415 +3 1759 1233 1360 +3 1759 1157 443 +3 1760 819 1474 +3 1760 1158 517 +3 1761 1169 1466 +3 1761 1159 508 +3 1762 738 1396 +3 1762 1160 409 +3 1763 1241 1362 +3 1763 1161 447 +3 1764 823 1478 +3 1764 1162 521 +3 1765 1153 1470 +3 1765 1163 512 +3 1766 742 1400 +3 1766 1164 411 +3 1767 1247 1364 +3 1767 1165 451 +3 1768 807 1462 +3 1768 1166 523 +3 1769 1158 1474 +3 1769 1167 516 +3 209 210 2328 +3 2328 1168 453 +3 1770 811 1466 +3 1770 1169 509 +3 1771 1162 1478 +3 1771 1170 520 +3 1772 747 1404 +3 1772 1171 413 +3 1773 1254 1366 +3 1773 1172 439 +3 1774 835 1490 +3 1774 1173 531 +3 1775 1184 1482 +3 1775 1175 541 +3 1776 751 1408 +3 1776 1176 422 +3 1777 1263 1368 +3 1777 1177 460 +3 1778 839 1494 +3 1778 1178 535 +3 1779 1188 1486 +3 1779 1179 526 +3 1780 755 1412 +3 1780 1180 417 +3 1781 1270 1370 +3 1781 1181 464 +3 1782 843 1498 +3 1782 1182 538 +3 1783 1173 1490 +3 1783 1183 530 +3 2312 759 2313 +3 2320 109 110 +3 1784 827 1482 +3 1784 1184 542 +3 1785 1178 1494 +3 1785 1185 534 +3 1786 761 1417 +3 1786 1186 418 +3 1787 1276 1372 +3 1787 1187 468 +3 1788 831 1486 +3 1788 1188 527 +3 1789 1182 1498 +3 1789 1189 537 +3 1790 765 1420 +3 1790 1190 420 +3 1791 1285 1374 +3 1791 1191 456 +3 1792 855 1510 +3 1792 1192 550 +3 1793 1205 1502 +3 1793 1194 561 +3 1794 769 1424 +3 1794 1195 432 +3 1795 1293 1376 +3 1795 1196 476 +3 1796 859 1514 +3 1796 1197 554 +3 1797 1209 1506 +3 1797 1198 545 +3 1798 773 1428 +3 1798 1199 424 +3 1799 1302 1378 +3 1799 1200 480 +3 1800 863 1518 +3 1800 1201 558 +3 1801 1192 1510 +3 1801 1202 549 +3 1802 777 1432 +3 1802 1203 426 +3 1803 1311 1380 +3 1803 1204 484 +3 1804 847 1502 +3 1804 1205 562 +3 1805 1197 1514 +3 1805 1206 553 +3 1806 781 1436 +3 1806 1207 428 +3 1807 1319 1382 +3 1807 1208 488 +3 1808 851 1506 +3 1808 1209 546 +3 1809 1201 1518 +3 1809 1210 557 +3 1810 785 1440 +3 1810 1211 430 +3 1811 1328 1384 +3 1811 1212 472 +3 1812 884 1538 +3 1812 1213 586 +3 1813 1287 1522 +3 1813 1215 671 +3 1814 789 1444 +3 1814 1216 491 +3 1815 1336 1386 +3 1815 1217 445 +3 1816 910 1564 +3 1816 1218 613 +3 1817 1313 1526 +3 1817 1219 655 +3 1818 793 1448 +3 1818 1220 483 +3 1819 1343 1388 +3 1819 1221 462 +3 1820 797 1452 +3 1820 1222 499 +3 1821 1359 1530 +3 1821 1223 693 +3 1822 801 1456 +3 1822 1224 503 +3 1823 1357 1390 +3 1823 1225 454 +3 1824 1000 1654 +3 1824 1226 601 +3 1825 1295 1534 +3 1825 1227 639 +3 1826 736 1394 +3 1826 1228 475 +3 1827 1156 1392 +3 1827 1229 414 +3 1828 972 1626 +3 1828 1230 636 +3 1829 1213 1538 +3 1829 1232 585 +3 1830 704 1360 +3 1830 1233 444 +3 1831 1228 1394 +3 1831 1234 474 +3 1832 936 1590 +3 1832 1235 582 +3 1833 1326 1542 +3 1833 1236 565 +3 1834 740 1398 +3 1834 1237 434 +3 1835 1160 1396 +3 1835 1238 408 +3 1836 928 1582 +3 1836 1239 680 +3 1837 1274 1546 +3 1837 1240 593 +3 1838 706 1362 +3 1838 1241 448 +3 1839 1237 1398 +3 1839 1242 433 +3 1840 980 1634 +3 1840 1243 590 +3 1841 1278 1550 +3 1841 1244 623 +3 1842 744 1402 +3 1842 1245 467 +3 1843 1164 1400 +3 1843 1246 410 +3 1844 2290 1364 +3 1844 1247 452 +3 1845 1245 1402 +3 1845 1248 466 +3 213 214 2324 +3 2275 2286 1552 +3 2275 1249 2264 +3 1846 749 1406 +3 1846 1250 438 +3 1847 1171 1404 +3 1847 1251 412 +3 1848 944 1598 +3 1848 1252 700 +3 1849 1291 1556 +3 1849 1253 577 +3 1850 709 1366 +3 1850 1254 440 +3 1851 1250 1406 +3 1851 1255 437 +3 1852 976 1630 +3 1852 1256 632 +3 1853 1321 1560 +3 1853 1257 663 +3 1854 753 1410 +3 1854 1258 487 +3 1855 1176 1408 +3 1855 1259 421 +3 1856 956 1610 +3 1856 1260 660 +3 1857 1218 1564 +3 1857 1262 612 +3 1858 711 1368 +3 1858 1263 461 +3 1859 1258 1410 +3 1859 1264 486 +3 1860 960 1614 +3 1860 1265 609 +3 1861 1308 1568 +3 1861 1266 569 +3 1862 757 1414 +3 1862 1267 436 +3 1863 1180 1412 +3 1863 1268 416 +3 44 45 2321 +3 48 49 2315 +3 1864 2276 1572 +3 1864 1269 620 +3 1865 713 1370 +3 1865 1270 465 +3 1866 1267 1414 +3 1866 1271 435 +3 1867 986 1640 +3 1867 1272 617 +3 1868 763 1418 +3 1868 1273 450 +3 1869 1186 1417 +3 1869 2282 2281 +3 1870 892 1546 +3 1870 1274 594 +3 1871 1334 1578 +3 1871 1275 627 +3 1872 714 1372 +3 1872 1276 469 +3 1873 1273 1418 +3 1873 1277 449 +3 1874 896 1550 +3 1874 1278 624 +3 1875 1239 1582 +3 1875 1280 679 +3 1876 767 1422 +3 1876 1281 495 +3 1877 1190 1420 +3 1877 1282 419 +3 1878 968 1622 +3 1878 1283 676 +3 1879 1317 1586 +3 1879 1284 604 +3 1880 716 1374 +3 1880 1285 457 +3 1881 1281 1422 +3 1881 1286 494 +3 1882 867 1522 +3 1882 1287 672 +3 1883 1235 1590 +3 1883 1288 581 +3 1884 771 1426 +3 1884 1289 442 +3 1885 1195 1424 +3 1885 1290 431 +3 1886 902 1556 +3 1886 1291 578 +3 1887 1355 1594 +3 1887 1292 643 +3 1888 718 1376 +3 1888 1293 477 +3 1889 1289 1426 +3 1889 1294 441 +3 1890 880 1534 +3 1890 1295 640 +3 1891 1252 1598 +3 1891 1297 699 +3 1892 775 1430 +3 1892 1298 507 +3 1893 1199 1428 +3 1893 1299 423 +3 1894 990 1644 +3 1894 1300 696 +3 1895 1338 1602 +3 1895 1301 651 +3 1896 720 1378 +3 1896 1302 481 +3 1897 1298 1430 +3 1897 1303 506 +3 1898 996 1650 +3 1898 1304 648 +3 1899 1345 1606 +3 1899 1305 683 +3 1900 779 1434 +3 1900 1306 497 +3 1901 1203 1432 +3 1901 1307 425 +3 1902 914 1568 +3 1902 1308 570 +3 1903 1260 1610 +3 1903 1310 659 +3 1904 722 1380 +3 1904 1311 485 +3 1905 1306 1434 +3 1905 1312 496 +3 1906 871 1526 +3 1906 1313 656 +3 1907 1265 1614 +3 1907 1314 608 +3 1908 783 1438 +3 1908 1315 459 +3 1909 1207 1436 +3 1909 1316 427 +3 1910 932 1586 +3 1910 1317 605 +3 1911 1330 1618 +3 1911 1318 667 +3 1912 724 1382 +3 1912 1319 489 +3 1913 1315 1438 +3 1913 1320 458 +3 1914 906 1560 +3 1914 1321 664 +3 1915 1283 1622 +3 1915 1323 675 +3 1916 787 1442 +3 1916 1324 493 +3 1917 1211 1440 +3 1917 1325 429 +3 1918 888 1542 +3 1918 1326 566 +3 1919 1230 1626 +3 1919 1327 635 +3 1920 726 1384 +3 1920 1328 473 +3 1921 1324 1442 +3 1921 1329 492 +3 1922 964 1618 +3 1922 1330 668 +3 1923 1256 1630 +3 1923 1331 631 +3 1924 791 1446 +3 1924 1332 471 +3 1925 1216 1444 +3 1925 1333 490 +3 1926 924 1578 +3 1926 1334 628 +3 1927 1243 1634 +3 1927 1335 589 +3 1928 728 1386 +3 1928 1336 446 +3 1929 1332 1446 +3 1929 1337 470 +3 1930 948 1602 +3 1930 1338 652 +3 1931 1351 1638 +3 1931 1339 689 +3 1932 795 1450 +3 1932 1340 501 +3 1933 1220 1448 +3 1933 1341 482 +3 1934 1272 1640 +3 1934 1342 616 +3 1935 730 1388 +3 1935 1343 463 +3 1936 1340 1450 +3 1936 1344 500 +3 1937 952 1606 +3 1937 1345 684 +3 1938 1300 1644 +3 1938 1347 695 +3 1939 799 1454 +3 1939 1348 505 +3 1940 1222 1452 +3 1940 1349 498 +3 1941 898 1552 +3 1941 2286 574 +3 2319 2314 703 +3 1942 1348 1454 +3 1942 1350 504 +3 1943 984 1638 +3 1943 1351 690 +3 1944 1304 1650 +3 1944 1352 647 +3 1945 803 1458 +3 1945 1353 479 +3 1946 1224 1456 +3 1946 1354 502 +3 1947 940 1594 +3 1947 1355 644 +3 1948 1226 1654 +3 1948 1356 600 +3 1949 732 1390 +3 1949 1357 455 +3 1950 1353 1458 +3 1950 1358 478 +3 2267 918 1572 +3 1951 876 1530 +3 1951 1359 2316 +3 1953 885 1952 +3 1953 705 278 +3 1238 1835 1396 +3 1238 1397 278 +3 1955 893 1954 +3 1955 707 280 +3 1246 1843 1400 +3 1246 1401 280 +3 221 222 2326 +3 2327 708 282 +3 1251 1847 1404 +3 1251 1405 282 +3 1957 903 1956 +3 1957 710 276 +3 1229 1827 1392 +3 1229 1393 276 +3 1959 911 1958 +3 1959 712 286 +3 1268 1863 1412 +3 1268 1413 286 +3 1960 919 2273 +3 1960 2311 288 +3 2265 86 2313 +3 2265 1416 288 +3 2282 1869 1417 +3 123 124 2282 +3 1962 925 1961 +3 1962 715 290 +3 1282 1877 1420 +3 1282 1421 290 +3 1964 933 1963 +3 1964 717 284 +3 1259 1855 1408 +3 1259 1409 284 +3 1966 941 1965 +3 1966 719 294 +3 1299 1893 1428 +3 1299 1429 294 +3 1968 949 1967 +3 1968 721 296 +3 1307 1901 1432 +3 1307 1433 296 +3 1970 957 1969 +3 1970 723 298 +3 1316 1909 1436 +3 1316 1437 298 +3 1972 965 1971 +3 1972 725 300 +3 1325 1917 1440 +3 1325 1441 300 +3 1974 973 1973 +3 1974 727 292 +3 1290 1885 1424 +3 1290 1425 292 +3 1976 981 1975 +3 1976 729 279 +3 1242 1839 1398 +3 1242 1399 279 +3 1978 987 1977 +3 1978 731 287 +3 1271 1866 1414 +3 1271 1415 287 +3 1980 1001 1979 +3 1980 733 283 +3 1255 1851 1406 +3 1255 1407 283 +3 1982 808 1981 +3 1982 735 262 +3 1172 1773 1366 +3 1172 1367 262 +3 1984 881 1983 +3 1984 737 293 +3 1294 1889 1426 +3 1294 1427 293 +3 1986 812 1985 +3 1986 739 258 +3 1157 1759 1360 +3 1157 1361 258 +3 1988 889 1987 +3 1988 741 273 +3 1217 1815 1386 +3 1217 1387 273 +3 1990 816 1989 +3 1990 743 259 +3 1161 1763 1362 +3 1161 1363 259 +3 1992 897 1991 +3 1992 745 289 +3 1277 1873 1418 +3 1277 1419 289 +3 1994 820 1993 +3 1994 746 260 +3 1165 1767 1364 +3 1165 2291 260 +3 1996 824 1995 +3 1996 748 261 +3 1168 2328 2324 +3 1168 1365 261 +3 1998 899 1997 +3 1998 750 275 +3 1225 1823 1390 +3 1225 1391 275 +3 2000 828 1999 +3 2000 752 267 +3 1191 1791 1374 +3 1191 1375 267 +3 2002 907 2001 +3 2002 754 299 +3 1320 1913 1438 +3 1320 1439 299 +3 2004 832 2003 +3 2004 756 263 +3 1177 1777 1368 +3 1177 1369 263 +3 2006 915 2005 +3 2006 758 274 +3 1221 1819 1388 +3 1221 1389 274 +3 2008 836 2007 +3 2008 760 264 +3 1181 1781 1370 +3 1181 1371 264 +3 2010 840 2009 +3 2010 762 265 +3 2283 2263 265 +3 2011 2284 2304 +3 2011 764 281 +3 1248 1845 1402 +3 1248 1403 281 +3 2013 844 2012 +3 2013 766 266 +3 1187 1787 1372 +3 1187 1373 266 +3 2015 929 2014 +3 2015 768 303 +3 1337 1929 1446 +3 1337 1447 303 +3 2017 848 2016 +3 2017 770 272 +3 1212 1811 1384 +3 1212 1385 272 +3 2019 937 2018 +3 2019 772 277 +3 1234 1831 1394 +3 1234 1395 277 +3 2021 852 2020 +3 2021 774 268 +3 1196 1795 1376 +3 1196 1377 268 +3 2023 945 2022 +3 2023 776 309 +3 1358 1950 1458 +3 1358 1459 309 +3 2025 856 2024 +3 2025 778 269 +3 1200 1799 1378 +3 1200 1379 269 +3 2027 953 2026 +3 2027 780 304 +3 1341 1933 1448 +3 1341 1449 304 +3 2029 860 2028 +3 2029 782 270 +3 1204 1803 1380 +3 1204 1381 270 +3 2031 961 2030 +3 2031 784 285 +3 1264 1859 1410 +3 1264 1411 285 +3 2033 864 2032 +3 2033 786 271 +3 1208 1807 1382 +3 1208 1383 271 +3 2035 969 2034 +3 2035 788 302 +3 1333 1925 1444 +3 1333 1445 302 +3 2037 868 2036 +3 2037 790 301 +3 1329 1921 1442 +3 1329 1443 301 +3 2039 977 2038 +3 2039 792 291 +3 1286 1881 1422 +3 1286 1423 291 +3 2041 872 2040 +3 2041 794 297 +3 1312 1905 1434 +3 1312 1435 297 +3 2043 985 2042 +3 2043 796 306 +3 1349 1940 1452 +3 1349 1453 306 +3 2045 873 2044 +3 2045 798 305 +3 1344 1936 1450 +3 1344 1451 305 +3 2047 991 2046 +3 2047 800 308 +3 1354 1946 1456 +3 1354 1457 308 +3 2049 877 2048 +3 2049 802 307 +3 1350 1942 1454 +3 1350 1455 307 +3 2051 997 2050 +3 2051 804 295 +3 1303 1897 1430 +3 1303 1431 295 +3 2052 743 1989 +3 2052 806 313 +3 1159 1761 1466 +3 1159 1467 313 +3 2053 818 1981 +3 2053 808 318 +3 1016 1663 1476 +3 1016 1477 318 +3 2054 746 1993 +3 2054 810 315 +3 1163 1765 1470 +3 1163 1471 315 +3 2055 822 1985 +3 2055 812 310 +3 1006 1657 1460 +3 1006 1461 310 +3 2056 748 1995 +3 2056 814 317 +3 1167 1769 1474 +3 1167 1475 317 +3 2057 806 1989 +3 2057 816 312 +3 1009 1659 1464 +3 1009 1465 312 +3 2058 735 1981 +3 2058 818 319 +3 1170 1771 1478 +3 1170 1479 319 +3 2059 810 1993 +3 2059 820 314 +3 1010 2292 1468 +3 1010 1469 314 +3 2060 739 1985 +3 2060 822 311 +3 1155 1757 1462 +3 1155 1463 311 +3 2061 814 1995 +3 2061 824 316 +3 1013 1661 1472 +3 1013 1473 316 +3 2062 760 2007 +3 2062 826 323 +3 1179 1779 1486 +3 1179 1487 323 +3 2063 838 1999 +3 2063 828 328 +3 1029 1671 1496 +3 1029 1497 328 +3 2064 762 2009 +3 2064 830 325 +3 1183 1783 1490 +3 1183 1491 325 +3 2065 842 2003 +3 2065 832 320 +3 1019 1665 1480 +3 1019 1481 320 +3 2066 766 2012 +3 2066 834 327 +3 1185 1785 1494 +3 1185 1495 327 +3 2067 826 2007 +3 2067 836 322 +3 1020 1666 1484 +3 1020 1485 322 +3 2068 752 1999 +3 2068 838 329 +3 1189 1789 1498 +3 1189 1499 329 +3 2069 830 2009 +3 2069 840 324 +3 1023 1667 1488 +3 1023 1489 324 +3 2070 756 2003 +3 2070 842 321 +3 1175 1775 1482 +3 1175 1483 321 +3 2071 834 2012 +3 2071 844 326 +3 1026 1669 1492 +3 1026 1493 326 +3 2072 778 2024 +3 2072 846 333 +3 1198 1797 1506 +3 1198 1507 333 +3 2073 858 2016 +3 2073 848 338 +3 1044 1681 1516 +3 1044 1517 338 +3 2074 782 2028 +3 2074 850 335 +3 1202 1801 1510 +3 1202 1511 335 +3 2075 862 2020 +3 2075 852 330 +3 1032 1673 1500 +3 1032 1501 330 +3 2076 786 2032 +3 2076 854 337 +3 1206 1805 1514 +3 1206 1515 337 +3 2077 846 2024 +3 2077 856 332 +3 1035 1675 1504 +3 1035 1505 332 +3 2078 770 2016 +3 2078 858 339 +3 1210 1809 1518 +3 1210 1519 339 +3 2079 850 2028 +3 2079 860 334 +3 1038 1677 1508 +3 1038 1509 334 +3 2080 774 2020 +3 2080 862 331 +3 1194 1793 1502 +3 1194 1503 331 +3 2081 854 2032 +3 2081 864 336 +3 1041 1679 1512 +3 1041 1513 336 +3 2082 705 1952 +3 2082 866 351 +3 1236 1833 1542 +3 1236 1543 351 +3 2083 935 2036 +3 2083 868 392 +3 1129 1739 1624 +3 1129 1625 392 +3 2084 712 1958 +3 2084 870 364 +3 1266 1861 1568 +3 1266 1569 364 +3 2085 959 2040 +3 2085 872 384 +3 1117 1731 1608 +3 1117 1609 384 +3 2086 917 2044 +3 2086 873 2322 +3 1141 1747 2300 +3 1141 2278 2322 +3 2087 708 2326 +3 2087 875 356 +3 1249 2275 1552 +3 1249 1553 356 +3 2088 1003 2048 +3 2088 877 403 +3 1147 1751 1646 +3 1147 1647 403 +3 2089 733 1979 +3 2089 879 358 +3 1253 1849 1556 +3 1253 1557 358 +3 2090 943 1983 +3 2090 881 376 +3 1105 1723 1592 +3 1105 1593 376 +3 2091 727 1973 +3 2091 883 375 +3 1288 1883 1590 +3 1288 1591 375 +3 2092 866 1952 +3 2092 885 350 +3 1062 1693 1540 +3 1062 1541 350 +3 2093 772 2018 +3 2093 887 349 +3 1232 1829 1538 +3 1232 1539 349 +3 2094 971 1987 +3 2094 889 340 +3 1047 1683 1520 +3 1047 1521 340 +3 2095 768 2014 +3 2095 891 397 +3 1335 1927 1634 +3 1335 1635 397 +3 2096 923 1954 +3 2096 893 354 +3 1068 1697 1548 +3 1068 1549 354 +3 2097 729 1975 +3 2097 895 353 +3 1240 1837 1546 +3 1240 1547 353 +3 2098 927 1991 +3 2098 897 368 +3 1093 1715 1576 +3 1093 1577 368 +3 2306 164 165 +3 2270 764 2304 +3 2289 875 2326 +3 2099 993 1997 +3 2099 899 344 +3 1053 1687 1528 +3 1053 1529 344 +3 2100 776 2022 +3 2100 901 407 +3 1356 1948 1654 +3 1356 1655 407 +3 2101 939 1956 +3 2101 903 346 +3 1056 1689 1532 +3 1056 1533 346 +3 2102 792 2038 +3 2102 905 373 +3 1284 1879 1586 +3 1284 1587 373 +3 2103 967 2001 +3 2103 907 388 +3 1123 1735 1616 +3 1123 1617 388 +3 2104 723 1969 +3 2104 909 387 +3 1314 1907 1614 +3 1314 1615 387 +3 2105 870 1958 +3 2105 911 363 +3 1084 1709 1566 +3 1084 1567 363 +3 2106 784 2030 +3 2106 913 362 +3 1262 1857 1564 +3 1262 1565 362 +3 2107 955 2005 +3 2107 915 342 +3 1050 1685 1524 +3 1050 1525 342 +3 2108 798 2044 +3 2108 917 400 +3 1342 1934 1640 +3 1342 1641 400 +3 2109 2295 2273 +3 2109 919 367 +3 1090 1713 1574 +3 1090 1575 367 +3 2110 731 1977 +3 2110 921 366 +3 1269 1864 1572 +3 1269 1573 366 +3 2298 1699 2299 +3 2111 707 1954 +3 2111 923 355 +3 1244 1841 1550 +3 1244 1551 355 +3 2112 979 1961 +3 2112 925 370 +3 1096 1717 1580 +3 1096 1581 370 +3 2113 745 1991 +3 2113 927 369 +3 1275 1871 1578 +3 1275 1579 369 +3 2114 891 2014 +3 2114 929 396 +3 1135 1743 1632 +3 1135 1633 396 +3 2115 788 2034 +3 2115 931 395 +3 1331 1923 1630 +3 1331 1631 395 +3 2116 963 1963 +3 2116 933 359 +3 1078 1705 1558 +3 1078 1559 359 +3 2117 790 2036 +3 2117 935 393 +3 1327 1919 1626 +3 1327 1627 393 +3 2118 887 2018 +3 2118 937 348 +3 1059 1691 1536 +3 1059 1537 348 +3 2119 710 1956 +3 2119 939 347 +3 1227 1825 1534 +3 1227 1535 347 +3 2120 999 1965 +3 2120 941 378 +3 1108 1725 1596 +3 1108 1597 378 +3 2121 737 1983 +3 2121 943 377 +3 1292 1887 1594 +3 1292 1595 377 +3 2122 901 2022 +3 2122 945 406 +3 1152 1755 1652 +3 1152 1653 406 +3 2123 800 2046 +3 2123 947 405 +3 1352 1944 1650 +3 1352 1651 405 +3 2124 983 1967 +3 2124 949 382 +3 1114 1729 1604 +3 1114 1605 382 +3 2125 804 2050 +3 2125 951 381 +3 1301 1895 1602 +3 1301 1603 381 +3 2126 989 2026 +3 2126 953 398 +3 1138 1745 1636 +3 1138 1637 398 +3 2127 758 2005 +3 2127 955 343 +3 1219 1817 1526 +3 1219 1527 343 +3 2128 909 1969 +3 2128 957 386 +3 1120 1733 1612 +3 1120 1613 386 +3 2129 794 2040 +3 2129 959 385 +3 1310 1903 1610 +3 1310 1611 385 +3 2130 913 2030 +3 2130 961 361 +3 1081 1707 1562 +3 1081 1563 361 +3 2131 717 1963 +3 2131 963 360 +3 1257 1853 1560 +3 1257 1561 360 +3 2132 975 1971 +3 2132 965 390 +3 1126 1737 1620 +3 1126 1621 390 +3 2133 754 2001 +3 2133 967 389 +3 1318 1911 1618 +3 1318 1619 389 +3 2134 931 2034 +3 2134 969 394 +3 1132 1741 1628 +3 1132 1629 394 +3 2135 741 1987 +3 2135 971 341 +3 1215 1813 1522 +3 1215 1523 341 +3 2136 883 1973 +3 2136 973 374 +3 1102 1721 1588 +3 1102 1589 374 +3 2137 725 1971 +3 2137 975 391 +3 1323 1915 1622 +3 1323 1623 391 +3 2138 905 2038 +3 2138 977 372 +3 1099 1719 1584 +3 1099 1585 372 +3 2139 715 1961 +3 2139 979 371 +3 1280 1875 1582 +3 1280 1583 371 +3 2140 895 1975 +3 2140 981 352 +3 1065 1695 1544 +3 1065 1545 352 +3 2141 721 1967 +3 2141 983 383 +3 1305 1899 1606 +3 1305 1607 383 +3 2142 995 2042 +3 2142 985 401 +3 1144 1749 1642 +3 1144 1643 401 +3 2143 921 1977 +3 2143 987 365 +3 1087 1711 1570 +3 1087 1571 365 +3 2144 780 2026 +3 2144 989 399 +3 1339 1931 1638 +3 1339 1639 399 +3 2145 947 2046 +3 2145 991 404 +3 1149 1753 1648 +3 1149 1649 404 +3 2146 750 1997 +3 2146 993 345 +3 1223 1821 1530 +3 1223 1531 345 +3 2147 796 2042 +3 2147 995 402 +3 1347 1938 1644 +3 1347 1645 402 +3 2148 951 2050 +3 2148 997 380 +3 1111 1727 1600 +3 1111 1601 380 +3 2149 719 1965 +3 2149 999 379 +3 1297 1891 1598 +3 1297 1599 379 +3 2150 879 1979 +3 2150 1001 357 +3 1075 1703 1554 +3 1075 1555 357 +3 78 79 2273 +3 2151 802 2048 +3 2151 1003 2325 +3 255 256 2314 +3 2314 2 2325 +3 2152 1046 2175 +3 2152 1005 588 +3 1160 1762 1396 +3 1160 1835 588 +3 812 2055 1985 +3 812 1986 514 +3 738 1397 1396 +3 738 1762 514 +3 2153 1092 2178 +3 2153 1008 596 +3 1164 1766 1400 +3 1164 1843 596 +3 816 2057 1989 +3 816 1990 518 +3 742 1401 1400 +3 742 1766 518 +3 820 2059 1993 +3 820 1994 2301 +3 186 187 2310 +3 2310 190 2301 +3 2154 1052 2168 +3 2154 1012 599 +3 1171 1772 1404 +3 1171 1847 599 +3 824 2061 1995 +3 824 1996 524 +3 747 1405 1404 +3 747 1772 524 +3 2155 1104 2171 +3 2155 1015 580 +3 1156 1758 1392 +3 1156 1827 580 +3 808 2053 1981 +3 808 1982 510 +3 734 1393 1392 +3 734 1758 510 +3 2156 1049 2189 +3 2156 1018 615 +3 1180 1780 1412 +3 1180 1863 615 +3 832 2065 2003 +3 832 2004 532 +3 755 1413 1412 +3 755 1780 532 +3 2313 90 2312 +3 836 2067 2007 +3 836 2008 536 +3 759 1416 2313 +3 759 2312 536 +3 2157 1070 2192 +3 2157 1022 622 +3 1186 1786 1417 +3 1186 1869 622 +3 840 2069 2009 +3 840 2010 539 +3 761 2280 1417 +3 761 1786 539 +3 2158 1134 2182 +3 2158 1025 630 +3 1190 1790 1420 +3 1190 1877 630 +3 844 2071 2012 +3 844 2013 543 +3 765 1421 1420 +3 765 1790 543 +3 2159 1122 2185 +3 2159 1028 607 +3 1176 1776 1408 +3 1176 1855 607 +3 828 2063 1999 +3 828 2000 528 +3 751 1409 1408 +3 751 1776 528 +3 2160 1151 2201 +3 2160 1031 646 +3 1199 1798 1428 +3 1199 1893 646 +3 852 2075 2020 +3 852 2021 551 +3 773 1429 1428 +3 773 1798 551 +3 2161 1137 2204 +3 2161 1034 654 +3 1203 1802 1432 +3 1203 1901 654 +3 856 2077 2024 +3 856 2025 555 +3 777 1433 1432 +3 777 1802 555 +3 2162 1080 2207 +3 2162 1037 662 +3 1207 1806 1436 +3 1207 1909 662 +3 860 2079 2028 +3 860 2029 559 +3 781 1437 1436 +3 781 1806 559 +3 2163 1131 2195 +3 2163 1040 670 +3 1211 1810 1440 +3 1211 1917 670 +3 864 2081 2032 +3 864 2033 563 +3 785 1441 1440 +3 785 1810 563 +3 2164 1058 2198 +3 2164 1043 638 +3 1195 1794 1424 +3 1195 1885 638 +3 848 2073 2016 +3 848 2017 547 +3 769 1425 1424 +3 769 1794 547 +3 2165 1067 2175 +3 2165 1046 592 +3 1237 1834 1398 +3 1237 1839 592 +3 889 2094 1987 +3 889 1988 587 +3 740 1399 1398 +3 740 1834 587 +3 2166 1089 2189 +3 2166 1049 619 +3 1267 1862 1414 +3 1267 1866 619 +3 915 2107 2005 +3 915 2006 614 +3 757 1415 1414 +3 757 1862 614 +3 2167 1055 2168 +3 2167 1052 603 +3 1250 1846 1406 +3 1250 1851 603 +3 899 2099 1997 +3 899 1998 598 +3 749 1407 1406 +3 749 1846 598 +3 2169 1012 2168 +3 2169 1055 525 +3 1254 1850 1366 +3 1254 1773 525 +3 903 2101 1956 +3 903 1957 602 +3 709 1367 1366 +3 709 1850 602 +3 2170 1107 2198 +3 2170 1058 642 +3 1289 1884 1426 +3 1289 1889 642 +3 937 2118 2018 +3 937 2019 637 +3 771 1427 1426 +3 771 1884 637 +3 2172 1015 2171 +3 2172 1061 511 +3 1233 1830 1360 +3 1233 1759 511 +3 885 2092 1952 +3 885 1953 583 +3 704 1361 1360 +3 704 1830 583 +3 2174 1128 2173 +3 2174 1064 568 +3 1336 1928 1386 +3 1336 1815 568 +3 981 2140 1975 +3 981 1976 681 +3 728 1387 1386 +3 728 1928 681 +3 2176 1005 2175 +3 2176 1067 515 +3 1241 1838 1362 +3 1241 1763 515 +3 893 2096 1954 +3 893 1955 591 +3 706 1363 1362 +3 706 1838 591 +3 2177 1095 2192 +3 2177 1070 626 +3 1273 1868 1418 +3 1273 1873 626 +3 148 149 2304 +3 2284 2011 621 +3 763 1419 1418 +3 763 1868 621 +3 2179 1008 2178 +3 2179 1072 519 +3 1247 1844 1364 +3 1247 1767 519 +3 2290 2291 1364 +3 2290 1844 2268 +3 208 209 2328 +3 223 224 2326 +3 2293 1365 2324 +3 2181 1146 2180 +3 2181 1074 576 +3 1357 1949 1390 +3 1357 1823 576 +3 1001 2150 1979 +3 1001 1980 701 +3 732 1391 1390 +3 732 1949 701 +3 2183 1025 2182 +3 2183 1077 544 +3 1285 1880 1374 +3 1285 1791 544 +3 933 2116 1963 +3 933 1964 633 +3 716 1375 1374 +3 716 1880 633 +3 2184 1125 2207 +3 2184 1080 666 +3 1315 1908 1438 +3 1315 1913 666 +3 961 2130 2030 +3 961 2031 661 +3 783 1439 1438 +3 783 1908 661 +3 2186 1028 2185 +3 2186 1083 529 +3 1263 1858 1368 +3 1263 1777 529 +3 911 2105 1958 +3 911 1959 610 +3 711 1369 1368 +3 711 1858 610 +3 2188 1116 2187 +3 2188 1086 572 +3 1343 1935 1388 +3 1343 1819 572 +3 987 2143 1977 +3 987 1978 687 +3 730 1389 1388 +3 730 1935 687 +3 2190 1018 2189 +3 2190 1089 533 +3 1270 1865 1370 +3 1270 1781 533 +3 919 2109 2273 +3 919 1960 618 +3 713 1371 1370 +3 713 1865 618 +3 2191 1072 2178 +3 2191 1092 597 +3 1245 1842 1402 +3 1245 1845 597 +3 897 2098 1991 +3 897 1992 595 +3 744 1403 1402 +3 744 1842 595 +3 2193 1022 2192 +3 2193 1095 540 +3 1276 1872 1372 +3 1276 1787 540 +3 925 2112 1961 +3 925 1962 625 +3 714 1373 1372 +3 714 1872 625 +3 2194 1064 2173 +3 2194 1098 682 +3 1332 1924 1446 +3 1332 1929 682 +3 977 2138 2038 +3 977 2039 677 +3 791 1447 1446 +3 791 1924 677 +3 2196 1040 2195 +3 2196 1101 564 +3 1328 1920 1384 +3 1328 1811 564 +3 973 2136 1973 +3 973 1974 673 +3 726 1385 1384 +3 726 1920 673 +3 2197 1061 2171 +3 2197 1104 584 +3 1228 1826 1394 +3 1228 1831 584 +3 881 2090 1983 +3 881 1984 579 +3 736 1395 1394 +3 736 1826 579 +3 2199 1043 2198 +3 2199 1107 548 +3 1293 1888 1376 +3 1293 1795 548 +3 941 2120 1965 +3 941 1966 641 +3 718 1377 1376 +3 718 1888 641 +3 2200 1074 2180 +3 2200 1110 702 +3 1353 1945 1458 +3 1353 1950 702 +3 997 2148 2050 +3 997 2051 697 +3 803 1459 1458 +3 803 1945 697 +3 2202 1031 2201 +3 2202 1113 552 +3 1302 1896 1378 +3 1302 1799 552 +3 949 2124 1967 +3 949 1968 649 +3 720 1379 1378 +3 720 1896 649 +3 2203 1143 2187 +3 2203 1116 686 +3 1220 1818 1448 +3 1220 1933 686 +3 872 2085 2040 +3 872 2041 571 +3 793 1449 1448 +3 793 1818 571 +3 2205 1034 2204 +3 2205 1119 556 +3 1311 1904 1380 +3 1311 1803 556 +3 957 2128 1969 +3 957 1970 657 +3 722 1381 1380 +3 722 1904 657 +3 2206 1083 2185 +3 2206 1122 611 +3 1258 1854 1410 +3 1258 1859 611 +3 907 2103 2001 +3 907 2002 606 +3 753 1411 1410 +3 753 1854 606 +3 2208 1037 2207 +3 2208 1125 560 +3 1319 1912 1382 +3 1319 1807 560 +3 965 2132 1971 +3 965 1972 665 +3 724 1383 1382 +3 724 1912 665 +3 2209 1098 2173 +3 2209 1128 678 +3 1216 1814 1444 +3 1216 1925 678 +3 868 2083 2036 +3 868 2037 567 +3 789 1445 1444 +3 789 1814 567 +3 2210 1101 2195 +3 2210 1131 674 +3 1324 1916 1442 +3 1324 1921 674 +3 969 2134 2034 +3 969 2035 669 +3 787 1443 1442 +3 787 1916 669 +3 2211 1077 2182 +3 2211 1134 634 +3 1281 1876 1422 +3 1281 1881 634 +3 929 2114 2014 +3 929 2015 629 +3 767 1423 1422 +3 767 1876 629 +3 2212 1119 2204 +3 2212 1137 658 +3 1306 1900 1434 +3 1306 1905 658 +3 953 2126 2026 +3 953 2027 653 +3 779 1435 1434 +3 779 1900 653 +3 2213 1148 2218 +3 2213 1140 692 +3 1222 1820 1452 +3 1222 1940 692 +3 873 2086 2044 +3 873 2045 573 +3 797 1453 1452 +3 797 1820 573 +3 2214 1086 2187 +3 2214 1143 688 +3 1340 1932 1450 +3 1340 1936 688 +3 985 2142 2042 +3 985 2043 685 +3 795 1451 1450 +3 795 1932 685 +3 2215 1110 2180 +3 2215 1146 698 +3 1224 1822 1456 +3 1224 1946 698 +3 877 2088 2048 +3 877 2049 575 +3 801 1457 1456 +3 801 1822 575 +3 2216 2303 2218 +3 2216 1148 694 +3 1348 1939 1454 +3 1348 1942 694 +3 991 2145 2046 +3 991 2047 691 +3 799 1455 1454 +3 799 1939 691 +3 2217 1113 2201 +3 2217 1151 650 +3 1298 1892 1430 +3 1298 1897 650 +3 945 2122 2022 +3 945 2023 645 +3 775 1431 1430 +3 775 1892 645 +3 2219 1140 2218 +3 2219 2303 2302 +3 2221 2222 2220 +3 2221 1154 513 +3 1169 1770 1466 +3 1169 1761 513 +3 822 2060 1985 +3 822 2055 522 +3 811 1467 1466 +3 811 1770 522 +3 1015 2155 2171 +3 1015 2172 415 +3 1060 1692 1476 +3 1060 1663 415 +3 739 1986 1985 +3 739 2060 443 +3 821 1477 1476 +3 821 1692 443 +3 2222 2223 2220 +3 2222 2221 517 +3 1153 1756 1470 +3 1153 1765 517 +3 806 2052 1989 +3 806 2057 508 +3 815 1471 1470 +3 815 1756 508 +3 1005 2152 2175 +3 1005 2176 409 +3 1066 1696 1460 +3 1066 1657 409 +3 743 1990 1989 +3 743 2052 447 +3 805 1461 1460 +3 805 1696 447 +3 2223 2224 2220 +3 2223 2222 521 +3 1158 1760 1474 +3 1158 1769 521 +3 810 2054 1993 +3 810 2059 512 +3 819 1475 1474 +3 819 1760 512 +3 1008 2153 2178 +3 1008 2179 411 +3 1071 1700 1464 +3 1071 1659 411 +3 746 1994 1993 +3 746 2054 451 +3 809 1465 1464 +3 809 1700 451 +3 2224 1154 2220 +3 2224 2223 523 +3 1162 1764 1478 +3 1162 1771 523 +3 814 2056 1995 +3 814 2061 516 +3 823 1479 1478 +3 823 1764 516 +3 2277 1701 1468 +3 197 198 2277 +3 748 1996 1995 +3 748 2056 453 +3 813 1469 1468 +3 813 1701 453 +3 1154 2221 2220 +3 1154 2224 509 +3 1166 1768 1462 +3 1166 1757 509 +3 818 2058 1981 +3 818 2053 520 +3 807 1463 1462 +3 807 1768 520 +3 1012 2154 2168 +3 1012 2169 413 +3 1054 1688 1472 +3 1054 1661 413 +3 735 1982 1981 +3 735 2058 439 +3 817 1473 1472 +3 817 1688 439 +3 2226 2227 2225 +3 2226 1174 531 +3 1188 1788 1486 +3 1188 1779 531 +3 842 2070 2003 +3 842 2065 541 +3 831 1487 1486 +3 831 1788 541 +3 1028 2159 2185 +3 1028 2186 422 +3 1082 1708 1496 +3 1082 1671 422 +3 756 2004 2003 +3 756 2070 460 +3 841 1497 1496 +3 841 1708 460 +3 2227 2228 2225 +3 2227 2226 535 +3 1173 1774 1490 +3 1173 1783 535 +3 826 2062 2007 +3 826 2067 526 +3 835 1491 1490 +3 835 1774 526 +3 1018 2156 2189 +3 1018 2190 417 +3 1088 1712 1480 +3 1088 1665 417 +3 760 2008 2007 +3 760 2062 464 +3 825 1481 1480 +3 825 1712 464 +3 2228 2229 2225 +3 2228 2227 538 +3 1178 1778 1494 +3 1178 1785 538 +3 830 2064 2009 +3 830 2069 530 +3 839 1495 1494 +3 839 1778 530 +3 2272 2271 1484 +3 2272 1666 2269 +3 762 2010 2009 +3 762 2064 2320 +3 829 1485 1484 +3 829 2271 2320 +3 2229 1174 2225 +3 2229 2228 542 +3 1182 1782 1498 +3 1182 1789 542 +3 834 2066 2012 +3 834 2071 534 +3 843 1499 1498 +3 843 1782 534 +3 1022 2157 2192 +3 1022 2193 418 +3 1094 1716 1488 +3 1094 1667 418 +3 766 2013 2012 +3 766 2066 468 +3 833 1489 1488 +3 833 1716 468 +3 1174 2226 2225 +3 1174 2229 527 +3 1184 1784 1482 +3 1184 1775 527 +3 838 2068 1999 +3 838 2063 537 +3 827 1483 1482 +3 827 1784 537 +3 1025 2158 2182 +3 1025 2183 420 +3 1076 1704 1492 +3 1076 1669 420 +3 752 2000 1999 +3 752 2068 456 +3 837 1493 1492 +3 837 1704 456 +3 2231 2232 2230 +3 2231 1193 550 +3 1209 1808 1506 +3 1209 1797 550 +3 862 2080 2020 +3 862 2075 561 +3 851 1507 1506 +3 851 1808 561 +3 1043 2164 2198 +3 1043 2199 432 +3 1106 1724 1516 +3 1106 1681 432 +3 774 2021 2020 +3 774 2080 476 +3 861 1517 1516 +3 861 1724 476 +3 2232 2233 2230 +3 2232 2231 554 +3 1192 1792 1510 +3 1192 1801 554 +3 846 2072 2024 +3 846 2077 545 +3 855 1511 1510 +3 855 1792 545 +3 1031 2160 2201 +3 1031 2202 424 +3 1112 1728 1500 +3 1112 1673 424 +3 778 2025 2024 +3 778 2072 480 +3 845 1501 1500 +3 845 1728 480 +3 2233 2234 2230 +3 2233 2232 558 +3 1197 1796 1514 +3 1197 1805 558 +3 850 2074 2028 +3 850 2079 549 +3 859 1515 1514 +3 859 1796 549 +3 1034 2161 2204 +3 1034 2205 426 +3 1118 1732 1504 +3 1118 1675 426 +3 782 2029 2028 +3 782 2074 484 +3 849 1505 1504 +3 849 1732 484 +3 2234 1193 2230 +3 2234 2233 562 +3 1201 1800 1518 +3 1201 1809 562 +3 854 2076 2032 +3 854 2081 553 +3 863 1519 1518 +3 863 1800 553 +3 1037 2162 2207 +3 1037 2208 428 +3 1124 1736 1508 +3 1124 1677 428 +3 786 2033 2032 +3 786 2076 488 +3 853 1509 1508 +3 853 1736 488 +3 1193 2231 2230 +3 1193 2234 546 +3 1205 1804 1502 +3 1205 1793 546 +3 858 2078 2016 +3 858 2073 557 +3 847 1503 1502 +3 847 1804 557 +3 1040 2163 2195 +3 1040 2196 430 +3 1100 1720 1512 +3 1100 1679 430 +3 770 2017 2016 +3 770 2078 472 +3 857 1513 1512 +3 857 1720 472 +3 2236 1231 2235 +3 2236 1214 586 +3 1326 1918 1542 +3 1326 1833 586 +3 971 2135 1987 +3 971 2094 671 +3 888 1543 1542 +3 888 1918 671 +3 1128 2209 2173 +3 1128 2174 491 +3 1063 1694 1624 +3 1063 1739 491 +3 741 1988 1987 +3 741 2135 445 +3 970 1625 1624 +3 970 1694 445 +3 2237 1261 2255 +3 2237 2256 613 +3 1308 1902 1568 +3 1308 1861 613 +3 955 2127 2005 +3 955 2107 655 +3 914 1569 1568 +3 914 1902 655 +3 1116 2203 2187 +3 1116 2188 483 +3 1085 1710 1608 +3 1085 1731 483 +3 758 2006 2005 +3 758 2127 462 +3 954 1609 1608 +3 954 1710 462 +3 1140 2213 2218 +3 1140 2219 499 +3 29 30 2323 +3 2323 1747 499 +3 33 34 2300 +3 2286 1941 1552 +3 2275 235 2286 +3 993 2146 1997 +3 993 2099 693 +3 898 1553 1552 +3 898 1941 693 +3 1146 2215 2180 +3 1146 2181 503 +3 1073 1702 1646 +3 1073 1751 503 +3 750 1998 1997 +3 750 2146 454 +3 992 1647 1646 +3 992 1702 454 +3 2238 2242 2251 +3 2238 2250 601 +3 1291 1886 1556 +3 1291 1849 601 +3 939 2119 1956 +3 939 2101 639 +3 902 1557 1556 +3 902 1886 639 +3 1104 2197 2171 +3 1104 2155 475 +3 1014 1662 1592 +3 1014 1723 475 +3 710 1957 1956 +3 710 2119 414 +3 938 1593 1592 +3 938 1662 414 +3 2239 2249 2235 +3 2239 1231 636 +3 1235 1832 1590 +3 1235 1883 636 +3 887 2093 2018 +3 887 2118 585 +3 936 1591 1590 +3 936 1832 585 +3 1061 2172 2171 +3 1061 2197 444 +3 1103 1722 1540 +3 1103 1693 444 +3 772 2019 2018 +3 772 2093 474 +3 886 1541 1540 +3 886 1722 474 +3 1231 2239 2235 +3 1231 2236 582 +3 1213 1812 1538 +3 1213 1829 582 +3 866 2082 1952 +3 866 2092 565 +3 884 1539 1538 +3 884 1812 565 +3 1046 2165 2175 +3 1046 2152 434 +3 1004 1656 1520 +3 1004 1683 434 +3 705 1953 1952 +3 705 2082 408 +3 865 1521 1520 +3 865 1656 408 +3 2240 1279 2246 +3 2240 2241 680 +3 1243 1840 1634 +3 1243 1927 680 +3 895 2097 1975 +3 895 2140 593 +3 980 1635 1634 +3 980 1840 593 +3 1067 2176 2175 +3 1067 2165 448 +3 1045 1682 1548 +3 1045 1697 448 +3 729 1976 1975 +3 729 2097 433 +3 894 1549 1548 +3 894 1682 433 +3 2241 2240 2246 +3 2241 2245 590 +3 1274 1870 1546 +3 1274 1837 590 +3 923 2111 1954 +3 923 2096 623 +3 892 1547 1546 +3 892 1870 623 +3 1092 2191 2178 +3 1092 2153 467 +3 1007 1658 1576 +3 1007 1715 467 +3 707 1955 1954 +3 707 2111 410 +3 922 1577 1576 +3 922 1658 410 +3 152 153 2270 +3 1072 2179 2178 +3 1072 2191 452 +3 1091 1714 2306 +3 1091 2307 452 +3 764 2011 2304 +3 764 2270 466 +3 161 162 2306 +3 2305 1714 466 +3 875 2087 2326 +3 875 2289 2264 +3 1052 2167 2168 +3 1052 2154 438 +3 1011 1660 1528 +3 1011 1687 438 +3 708 2327 2326 +3 708 2087 412 +3 874 1529 1528 +3 874 1660 412 +3 2242 1296 2251 +3 2242 2238 700 +3 1226 1824 1654 +3 1226 1948 700 +3 879 2089 1979 +3 879 2150 577 +3 1000 1655 1654 +3 1000 1824 577 +3 1055 2169 2168 +3 1055 2167 440 +3 1051 1686 1532 +3 1051 1689 440 +3 733 1980 1979 +3 733 2089 437 +3 878 1533 1532 +3 878 1686 437 +3 2243 2248 2258 +3 2243 2257 632 +3 1317 1910 1586 +3 1317 1879 632 +3 963 2131 1963 +3 963 2116 663 +3 932 1587 1586 +3 932 1910 663 +3 1122 2206 2185 +3 1122 2159 487 +3 1027 1670 1616 +3 1027 1735 487 +3 717 1964 1963 +3 717 2131 421 +3 962 1617 1616 +3 962 1670 421 +3 2244 1309 2255 +3 2244 1261 660 +3 1265 1860 1614 +3 1265 1907 660 +3 913 2106 2030 +3 913 2130 612 +3 960 1615 1614 +3 960 1860 612 +3 1083 2186 2185 +3 1083 2206 461 +3 1121 1734 1566 +3 1121 1709 461 +3 784 2031 2030 +3 784 2106 486 +3 912 1567 1566 +3 912 1734 486 +3 1261 2244 2255 +3 1261 2237 609 +3 1218 1816 1564 +3 1218 1857 609 +3 870 2084 1958 +3 870 2105 569 +3 910 1565 1564 +3 910 1816 569 +3 1049 2166 2189 +3 1049 2156 436 +3 1017 1664 1524 +3 1017 1685 436 +3 712 1959 1958 +3 712 2084 416 +3 869 1525 1524 +3 869 1664 416 +3 51 52 2296 +3 1272 1867 1640 +3 1272 1934 2296 +3 921 2110 1977 +3 921 2143 620 +3 986 1641 1640 +3 986 1867 620 +3 1089 2190 2189 +3 1089 2166 465 +3 1048 1684 1574 +3 1048 1713 465 +3 731 1978 1977 +3 731 2110 435 +3 920 1575 1574 +3 920 1684 435 +3 2317 2274 617 +3 2276 2267 1572 +3 2276 1864 617 +3 2295 76 2273 +3 2295 2109 2266 +3 918 1573 1572 +3 918 2267 2266 +3 2311 1960 2273 +3 1070 2177 2192 +3 1070 2157 450 +3 1021 2297 2299 +3 1021 1699 450 +3 2281 130 131 +3 2245 2241 2246 +3 2245 2247 594 +3 1278 1874 1550 +3 1278 1841 594 +3 927 2113 1991 +3 927 2098 627 +3 896 1551 1550 +3 896 1874 627 +3 1095 2193 2192 +3 1095 2177 469 +3 1069 1698 1580 +3 1069 1717 469 +3 745 1992 1991 +3 745 2113 449 +3 926 1581 1580 +3 926 1698 449 +3 2247 2245 2246 +3 2247 1279 624 +3 1334 1926 1578 +3 1334 1871 624 +3 979 2139 1961 +3 979 2112 679 +3 924 1579 1578 +3 924 1926 679 +3 1134 2211 2182 +3 1134 2158 495 +3 1024 1668 1632 +3 1024 1743 495 +3 715 1962 1961 +3 715 2139 419 +3 978 1633 1632 +3 978 1668 419 +3 2248 1322 2258 +3 2248 2243 676 +3 1256 1852 1630 +3 1256 1923 676 +3 905 2102 2038 +3 905 2138 604 +3 976 1631 1630 +3 976 1852 604 +3 1077 2183 2182 +3 1077 2211 457 +3 1133 1742 1558 +3 1133 1705 457 +3 792 2039 2038 +3 792 2102 494 +3 904 1559 1558 +3 904 1742 494 +3 2249 1214 2235 +3 2249 2239 672 +3 1230 1828 1626 +3 1230 1919 672 +3 883 2091 1973 +3 883 2136 581 +3 972 1627 1626 +3 972 1828 581 +3 1058 2170 2198 +3 1058 2164 442 +3 1042 1680 1536 +3 1042 1691 442 +3 727 1974 1973 +3 727 2091 431 +3 882 1537 1536 +3 882 1680 431 +3 2250 2238 2251 +3 2250 2252 578 +3 1295 1890 1534 +3 1295 1825 578 +3 943 2121 1983 +3 943 2090 643 +3 880 1535 1534 +3 880 1890 643 +3 1107 2199 2198 +3 1107 2170 477 +3 1057 1690 1596 +3 1057 1725 477 +3 737 1984 1983 +3 737 2121 441 +3 942 1597 1596 +3 942 1690 441 +3 2252 2250 2251 +3 2252 1296 640 +3 1355 1947 1594 +3 1355 1887 640 +3 999 2149 1965 +3 999 2120 699 +3 940 1595 1594 +3 940 1947 699 +3 1151 2217 2201 +3 1151 2160 507 +3 1030 1672 1652 +3 1030 1755 507 +3 719 1966 1965 +3 719 2149 423 +3 998 1653 1652 +3 998 1672 423 +3 2253 1346 2261 +3 2253 2254 696 +3 1304 1898 1650 +3 1304 1944 696 +3 951 2125 2050 +3 951 2148 651 +3 996 1651 1650 +3 996 1898 651 +3 1113 2202 2201 +3 1113 2217 481 +3 1150 1754 1604 +3 1150 1729 481 +3 804 2051 2050 +3 804 2125 506 +3 950 1605 1604 +3 950 1754 506 +3 2254 2253 2261 +3 2254 2260 648 +3 1338 1930 1602 +3 1338 1895 648 +3 983 2141 1967 +3 983 2124 683 +3 948 1603 1602 +3 948 1930 683 +3 1137 2212 2204 +3 1137 2161 497 +3 1033 1674 1636 +3 1033 1745 497 +3 721 1968 1967 +3 721 2141 425 +3 982 1637 1636 +3 982 1674 425 +3 2256 2237 2255 +3 2256 1309 570 +3 1313 1906 1526 +3 1313 1817 570 +3 959 2129 2040 +3 959 2085 659 +3 871 1527 1526 +3 871 1906 659 +3 1119 2205 2204 +3 1119 2212 485 +3 1136 1744 1612 +3 1136 1733 485 +3 794 2041 2040 +3 794 2129 496 +3 958 1613 1612 +3 958 1744 496 +3 1309 2256 2255 +3 1309 2244 656 +3 1260 1856 1610 +3 1260 1903 656 +3 909 2104 1969 +3 909 2128 608 +3 956 1611 1610 +3 956 1856 608 +3 1080 2184 2207 +3 1080 2162 459 +3 1036 1676 1562 +3 1036 1707 459 +3 723 1970 1969 +3 723 2104 427 +3 908 1563 1562 +3 908 1676 427 +3 2257 2243 2258 +3 2257 2259 605 +3 1321 1914 1560 +3 1321 1853 605 +3 967 2133 2001 +3 967 2103 667 +3 906 1561 1560 +3 906 1914 667 +3 1125 2208 2207 +3 1125 2184 489 +3 1079 1706 1620 +3 1079 1737 489 +3 754 2002 2001 +3 754 2133 458 +3 966 1621 1620 +3 966 1706 458 +3 2259 2257 2258 +3 2259 1322 664 +3 1330 1922 1618 +3 1330 1911 664 +3 975 2137 1971 +3 975 2132 675 +3 964 1619 1618 +3 964 1922 675 +3 1131 2210 2195 +3 1131 2163 493 +3 1039 1678 1628 +3 1039 1741 493 +3 725 1972 1971 +3 725 2137 429 +3 974 1629 1628 +3 974 1678 429 +3 1214 2236 2235 +3 1214 2249 566 +3 1287 1882 1522 +3 1287 1813 566 +3 935 2117 2036 +3 935 2083 635 +3 867 1523 1522 +3 867 1882 635 +3 1101 2196 2195 +3 1101 2210 473 +3 1130 1740 1588 +3 1130 1721 473 +3 790 2037 2036 +3 790 2117 492 +3 934 1589 1588 +3 934 1740 492 +3 1322 2259 2258 +3 1322 2248 668 +3 1283 1878 1622 +3 1283 1915 668 +3 931 2115 2034 +3 931 2134 631 +3 968 1623 1622 +3 968 1878 631 +3 1098 2194 2173 +3 1098 2209 471 +3 1127 1738 1584 +3 1127 1719 471 +3 788 2035 2034 +3 788 2115 490 +3 930 1585 1584 +3 930 1738 490 +3 1279 2247 2246 +3 1279 2240 628 +3 1239 1836 1582 +3 1239 1875 628 +3 891 2095 2014 +3 891 2114 589 +3 928 1583 1582 +3 928 1836 589 +3 1064 2174 2173 +3 1064 2194 446 +3 1097 1718 1544 +3 1097 1695 446 +3 768 2015 2014 +3 768 2095 470 +3 890 1545 1544 +3 890 1718 470 +3 2260 2254 2261 +3 2260 2262 652 +3 1345 1937 1606 +3 1345 1899 652 +3 989 2144 2026 +3 989 2126 689 +3 952 1607 1606 +3 952 1937 689 +3 1143 2214 2187 +3 1143 2203 501 +3 1115 1730 1642 +3 1115 1749 501 +3 780 2027 2026 +3 780 2144 482 +3 988 1643 1642 +3 988 1730 482 +3 917 2108 2044 +3 917 2086 616 +3 2321 2315 616 +3 1086 2188 2187 +3 1086 2214 463 +3 1142 1748 1570 +3 1142 1711 463 +3 798 2045 2044 +3 798 2108 500 +3 916 1571 1570 +3 916 1748 500 +3 2262 2260 2261 +3 2262 1346 684 +3 1351 1943 1638 +3 1351 1931 684 +3 995 2147 2042 +3 995 2142 695 +3 984 1639 1638 +3 984 1943 695 +3 1148 2216 2218 +3 1148 2213 505 +3 1139 1746 1648 +3 1139 1753 505 +3 796 2043 2042 +3 796 2147 498 +3 994 1649 1648 +3 994 1746 498 +3 2287 2288 574 +3 1359 1951 1530 +3 1359 1821 574 +3 1003 2151 2048 +3 1003 2088 703 +3 876 1531 1530 +3 876 1951 703 +3 2303 2219 2218 +3 2303 2216 2279 +3 2318 1752 2285 +3 14 15 2318 +3 802 2049 2048 +3 802 2151 504 +3 1002 2308 2285 +3 1002 1752 504 +3 1346 2262 2261 +3 1346 2253 690 +3 1300 1894 1644 +3 1300 1938 690 +3 947 2123 2046 +3 947 2145 647 +3 990 1645 1644 +3 990 1894 647 +3 1110 2200 2180 +3 1110 2215 479 +3 1145 1750 1600 +3 1145 1727 479 +3 800 2047 2046 +3 800 2123 502 +3 946 1601 1600 +3 946 1750 502 +3 1296 2252 2251 +3 1296 2242 644 +3 1252 1848 1598 +3 1252 1891 644 +3 901 2100 2022 +3 901 2122 600 +3 944 1599 1598 +3 944 1848 600 +3 1074 2181 2180 +3 1074 2200 455 +3 1109 1726 1554 +3 1109 1703 455 +3 776 2023 2022 +3 776 2100 478 +3 900 1555 1554 +3 900 1726 478 +3 56 57 2317 +3 243 244 2288 +3 248 249 2316 +3 2316 251 2319 +3 229 2289 228 +3 2289 229 2264 +3 2313 89 90 +3 2313 88 89 +3 2313 87 88 +3 2283 115 2263 +3 2283 113 114 +3 2263 115 116 +3 2283 114 115 +3 13 14 2318 +3 12 13 2318 +3 2298 144 2284 +3 2284 144 145 +3 2298 143 144 +3 2298 142 143 +3 257 2314 256 +3 0 2314 1 +3 2 2314 0 +3 1 2314 257 +3 133 134 2297 +3 2281 131 2297 +3 132 133 2297 +3 131 132 2297 +3 105 2271 104 +3 107 2271 106 +3 106 2271 105 +3 152 2304 151 +3 2304 152 2270 +3 2279 18 19 +3 2279 17 18 +3 2312 94 2269 +3 2312 91 92 +3 2312 93 94 +3 2312 92 93 +3 80 2311 79 +3 82 2311 81 +3 81 2311 80 +3 2284 146 147 +3 2284 145 146 +3 35 2278 34 +3 36 2278 35 +3 120 121 2280 +3 2263 119 2280 +3 2280 119 120 +3 2263 118 119 +3 69 2266 68 +3 70 2266 69 +3 2264 231 232 +3 2264 230 231 +3 156 2270 155 +3 2270 156 2305 +3 156 157 2305 +3 84 2265 83 +3 85 2265 84 +3 86 2265 85 +3 2319 252 253 +3 2319 254 255 +3 2319 253 254 +3 202 2277 201 +3 200 201 2277 +3 2277 202 2294 +3 2266 71 2295 +3 2295 71 72 +3 2266 70 71 +3 2276 65 2267 +3 2276 64 65 +3 2276 63 64 +3 169 2307 168 +3 166 167 2307 +3 167 168 2307 +3 2307 169 2268 +3 98 2269 97 +3 2269 98 2272 +3 99 2272 98 +3 2267 68 2266 +3 2267 67 68 +3 2267 66 67 +3 188 2310 187 +3 190 2310 189 +3 189 2310 188 +3 2285 2308 8 +3 8 9 2285 +3 173 2268 172 +3 2268 173 2290 +3 173 174 2290 +3 77 78 2273 +3 76 77 2273 +3 46 2315 45 +3 48 2315 47 +3 47 2315 46 +3 2275 234 235 +3 95 2269 94 +3 96 2269 95 +3 154 2270 153 +3 155 2270 154 +3 103 2272 102 +3 2272 103 2271 +3 101 2272 100 +3 102 2272 101 +3 2300 2323 30 +3 28 29 2323 +3 2311 2273 79 +3 250 2316 249 +3 251 2316 250 +3 58 2274 57 +3 59 2274 58 +3 233 234 2275 +3 232 233 2275 +3 163 2306 162 +3 164 2306 163 +3 199 2277 198 +3 200 2277 199 +3 62 63 2276 +3 61 62 2276 +3 60 61 2276 +3 2277 2292 197 +3 196 197 2292 +3 24 2302 23 +3 25 2302 24 +3 2320 2271 107 +3 107 108 2320 +3 2278 37 38 +3 2278 36 37 +3 236 237 2286 +3 235 236 2286 +3 16 2279 15 +3 17 2279 16 +3 2308 2325 4 +3 2282 2280 123 +3 121 122 2280 +3 122 123 2280 +3 2281 127 128 +3 2282 125 126 +3 2282 127 2281 +3 2282 126 127 +3 2283 110 111 +3 2283 112 113 +3 2283 111 112 +3 2298 141 142 +3 2298 140 141 +3 41 2321 40 +3 42 2321 41 +3 44 2321 43 +3 43 2321 42 +3 2302 2303 23 +3 21 22 2303 +3 2309 2291 181 +3 180 181 2291 +3 179 180 2291 +3 2278 2300 34 +3 32 33 2300 +3 137 2299 136 +3 138 2299 137 +3 2304 2284 148 +3 147 148 2284 +3 11 2285 10 +3 12 2285 11 +3 2292 2301 193 +3 191 192 2301 +3 2308 7 8 +3 2308 6 7 +3 2286 240 2287 +3 2286 239 240 +3 2286 238 239 +3 2286 237 238 +3 242 2287 241 +3 243 2287 242 +3 2288 2287 243 +3 2288 244 245 +3 2288 247 248 +3 2288 246 247 +3 2288 245 246 +3 159 2305 158 +3 160 2305 159 +3 225 2289 224 +3 227 2289 226 +3 226 2289 225 +3 177 2290 176 +3 177 178 2291 +3 2290 177 2291 +3 2292 193 194 +3 2292 195 196 +3 2292 194 195 +3 2327 218 219 +3 2327 220 221 +3 2327 219 220 +3 215 2293 214 +3 216 2293 215 +3 217 2293 216 +3 205 2294 204 +3 206 2294 205 +3 2317 2296 52 +3 2295 73 74 +3 2295 75 76 +3 2295 74 75 +3 53 2317 52 +3 56 2317 55 +3 54 2317 53 +3 55 2317 54 +3 50 2296 49 +3 51 2296 50 +3 2299 2297 135 +3 134 135 2297 +3 2299 139 2298 +3 2298 139 140 +3 2299 138 139 +3 31 2300 30 +3 32 2300 31 +3 190 191 2301 +3 2302 26 27 +3 2302 25 26 +3 20 21 2303 +3 19 20 2303 +3 150 2304 149 +3 151 2304 150 +3 161 2305 160 +3 2305 161 2306 +3 165 166 2307 +3 2306 165 2307 +3 5 2308 4 +3 6 2308 5 +3 185 2309 184 +3 185 186 2310 +3 2309 185 2310 +3 2289 2326 224 +3 222 223 2326 +3 2324 212 213 +3 2324 211 212 +3 2324 210 211 +3 2328 2294 206 +3 207 208 2328 +3 206 207 2328 +3 2265 2311 83 +3 90 91 2312 +3 38 39 2322 +3 86 87 2313 +3 2314 2319 255 +3 97 2269 96 +3 2296 2315 49 +3 2267 65 66 +3 2316 2288 248 +3 2274 2317 57 +3 2279 2318 15 +3 251 252 2319 +3 2320 110 2283 +3 2281 129 130 +3 2274 59 60 +3 2268 170 171 +3 172 2268 171 +3 2315 2321 45 +3 125 2282 124 +3 2321 2322 40 +3 27 28 2323 +3 176 2290 175 +3 2293 2324 214 +3 184 2309 183 +3 2309 182 183 +3 241 2287 240 +3 2 3 2325 +3 2289 227 228 +3 204 2294 203 +3 73 2295 72 +3 118 2263 117 +3 2263 116 117 +3 129 2281 128 +3 2326 2327 221 +3 217 218 2327 +3 2324 2328 210 + diff --git a/Data/data/meshes/regular_tetrahedron.off b/Data/data/meshes/regular_tetrahedron.off new file mode 100644 index 000000000000..08a25ad43b38 --- /dev/null +++ b/Data/data/meshes/regular_tetrahedron.off @@ -0,0 +1,11 @@ +OFF +4 4 0 +-1 0 -0.707107 +1 0 -0.707107 +0 -1 0.707107 +0 1 0.707107 +3 0 1 2 +3 0 3 1 +3 0 2 3 +3 1 3 2 + diff --git a/Documentation/doc/CMakeLists.txt b/Documentation/doc/CMakeLists.txt index 481b1792c4fd..0e7ddd3b95af 100644 --- a/Documentation/doc/CMakeLists.txt +++ b/Documentation/doc/CMakeLists.txt @@ -263,7 +263,7 @@ set(CGAL_DOC_DXY_DIR "${CMAKE_BINARY_DIR}/doc_dxy") file(MAKE_DIRECTORY "${CGAL_DOC_DXY_DIR}") #Setting the resource directory depending on the version of doxygen -set(CGAL_DOC_RESOURCE_DIR_DEFAULT "${CMAKE_CURRENT_LIST_DIR}/resources/1.9.6") +set(CGAL_DOC_RESOURCE_DIR_DEFAULT "${CMAKE_CURRENT_LIST_DIR}/resources/1.10.0") # first look if resources for the specific doxygen version is available, fallback # on the default otherwise diff --git a/Documentation/doc/Documentation/Developer_manual/cmakelist_script.txt b/Documentation/doc/Documentation/Developer_manual/cmakelist_script.txt index 7b451bf81784..26c1f7c0ef4b 100644 --- a/Documentation/doc/Documentation/Developer_manual/cmakelist_script.txt +++ b/Documentation/doc/Documentation/Developer_manual/cmakelist_script.txt @@ -23,7 +23,7 @@ If the parameter is not given, the script creates one executable for each giv source file.
`-c com1:com2:...`
Lists components ("com1", "com2") of \cgal to which the executable(s) should be linked. Valid components are \cgal's -libraries (i.e.\ "Core", "ImageIO", and "Qt5"). An example is `-c Core`. +libraries (i.e.\ "Core", "ImageIO", and "Qt6"). An example is `-c Core`.
`-b boost1:boost2:...`
Lists components ("boost1", "boost2") of \boost to which the executable(s) should be diff --git a/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt b/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt index 02ff32da6bc3..d55f4c0819ba 100644 --- a/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt +++ b/Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt @@ -25,22 +25,22 @@ the section \subpage thirdparty. - `-frounding-math` with gcc - `/fp:strict /fp:except-` with MSVC -\section secexample Minimal Example Using Qt5 -This section describes a minimal example of a program that uses \cgal and Qt5 for some GUI features. +\section secexample Minimal Example Using Qt6 +This section describes a minimal example of a program that uses \cgal and Qt6 for some GUI features. \subsection subcmake CMakeLists.txt \dontinclude Surface_mesh/CMakeLists.txt \skip cmake_minimum_required \until project -\skip #CGAL_Qt5 is needed for the drawing. +\skip #CGAL_Qt6 is needed for the drawing. \until endif() \skip #create the executable of the application \until "draw_surface_mesh.cpp" -\skip if(CGAL_Qt5_FOUND) -\until target_link_libraries(draw_surface_mesh PUBLIC CGAL::CGAL_Qt5) +\skip if(CGAL_Qt6_FOUND) +\until target_link_libraries(draw_surface_mesh PUBLIC CGAL::CGAL_Qt6) \skip endif \until #end of the file diff --git a/Documentation/doc/Documentation/Third_party.txt b/Documentation/doc/Documentation/Third_party.txt index ebeb3de7f629..b50e062d61ce 100644 --- a/Documentation/doc/Documentation/Third_party.txt +++ b/Documentation/doc/Documentation/Third_party.txt @@ -77,7 +77,7 @@ we recommend that you define the environment variable \subsection thirdpartyMPFR GNU Multiple Precision Arithmetic (GMP) and GNU Multiple Precision Floating-Point Reliably (MPFR) Libraries GMP Version 4.2 or later, MPFR Version 2.2.1 or later -The components `libCGAL`, `libCGAL_Core`, and `libCGAL_Qt5` require +The components `libCGAL`, `libCGAL_Core`, and `libCGAL_Qt6` require \gmp and \mpfr which are libraries for multi precision integers and rational numbers, and for multi precision floating point numbers. @@ -102,19 +102,19 @@ version shipped with \cgal. The page \ref configurationvariables lists CMake and environment variables which can be used to specify the location of third-party software during configuration. -\subsection thirdpartyQt Qt5 -Version 5.9.0 or later +\subsection thirdpartyQt Qt6 +Version 6.4 or later Qt is a cross-platform application and UI framework. -The component libCGAL_Qt5 is essential to run the \cgal demos and basic viewers. -It requires \qt5 installed on your system. +The component libCGAL_Qt6 is essential to run the \cgal demos and basic viewers. +It requires \qt6 installed on your system. In case \qt is not yet installed on your system, you can download it from `https://www.qt-project.org/`. -The exhaustive list of \qt5 components used in demos is: -`Core`, `Gui`, `Help`, `OpenGL`, `Script`, `ScriptTools`, `Svg`, `Widgets`, -`qcollectiongenerator` (with `sqlite` driver plugin), and `Xml`. +The exhaustive list of \qt6 components used in demos is: +`Core`, `Gui`, `Help`, `OpenGL`, `OpenGLWidgets`, `Qml`, `Svg`, `Widgets`, +`WebSockets`, `Network`, and `qcollectiongenerator` (with `sqlite` driver plugin). \subsection thirdpartyEigen Eigen Version 3.3.4 or later diff --git a/Documentation/doc/Documentation/Usage.txt b/Documentation/doc/Documentation/Usage.txt index 1c02423cf496..68a3ae850018 100644 --- a/Documentation/doc/Documentation/Usage.txt +++ b/Documentation/doc/Documentation/Usage.txt @@ -97,11 +97,6 @@ distribution of the Core library version dealing with algebraic numbers. Note that \core is not part of \cgal and has its own license. -The directory `include/CGAL/OpenNL` contains a distribution of the -Open Numerical Library, -which provides solvers for sparse linear systems, especially designed for the Computer Graphics community. -\opennl is not part of \cgal and has its own license. - The only documentation shipped within \cgal sources is the present manual. The \cgal manual can also be accessed online at `https://doc.cgal.org` @@ -166,17 +161,17 @@ if no debugging is intended. Users should thus run: cd CGAL-\cgalReleaseNumber/examples/Triangulation_2 cmake -DCGAL_DIR=$HOME/CGAL-\cgalReleaseNumber -DCMAKE_BUILD_TYPE=Release . # we are here using a release tarball -The package Qt5 on brew is "keg-only", which means it is not "linked" with brew. -In order to link against Qt5, you need to run: +The package Qt6 on brew is "keg-only", which means it is not "linked" with brew. +In order to link against Qt6, you need to run: - brew link qt@5 + brew link qt@6 -After that, you will have to specify the Qt5_DIR by hand to cmake, using something like +After that, you will have to specify the Qt6_DIR by hand to cmake, using something like - -DQt5_DIR=/usr/local/opt/qt5/lib/cmake/Qt5 + -DQt6_DIR=/usr/local/opt/qt6/lib/cmake/Qt6 where `/usr/local/` is actually your current brew installation directory. Check this directory -to be sure where the Qt5 is placed on your machine. +to be sure where the Qt6 is placed on your machine. \subsection usage_configuring_cmake_gui Specifying Missing Dependencies diff --git a/Documentation/doc/Documentation/advanced/Configuration_variables.txt b/Documentation/doc/Documentation/advanced/Configuration_variables.txt index 8434b496014b..7c475f547766 100644 --- a/Documentation/doc/Documentation/advanced/Configuration_variables.txt +++ b/Documentation/doc/Documentation/advanced/Configuration_variables.txt @@ -27,7 +27,7 @@ configure and/or build. Their values can be ON or OFF. | `WITH_examples` | OFF | | `WITH_demos` | OFF | | `WITH_CGAL_Core` | ON | -| `WITH_CGAL_Qt5` | ON | +| `WITH_CGAL_Qt6` | ON | | `WITH_CGAL_ImageIO` | ON | \subsection installation_flags Compiler and Linker Flags @@ -85,7 +85,7 @@ and will serverly limit performances. | Variable | Description | Type | %Default Value | | :- | :- | :- | :- | | `CGAL_DIR` | Full-path to the binary directory where \cgal was configured |Either CMake or Environment | none | -| `Qt5_DIR` | Full-path to the Qt cmake directory |CMake| platform-dependent| +| `Qt6_DIR` | Full-path to the Qt cmake directory |CMake| platform-dependent| \subsection installation_variables_third_party Variables Providing Information About 3rd-Party Libraries @@ -178,11 +178,11 @@ Under Linux, the \gmpxx is also searched for, and you may specify the following -\subsection installation_qt5 Qt5 Library +\subsection installation_qt6 Qt6 Library -You must set the cmake or environment variable `Qt5_DIR` to point to the path -to the directory containing the file `Qt5Config.cmake` created by your \qt5 installation. If you are -using the open source edition it should be `/qt-everywhere-opensource-src-/qtbase/lib/cmake/Qt5`. +You must set the cmake or environment variable `Qt6_DIR` to point to the path +to the directory containing the file `Qt6Config.cmake` created by your \qt6 installation. If you are +using the open source edition it should be `/qt-everywhere-opensource-src-/qtbase/lib/cmake/Qt6`. \subsection installation_leda LEDA Library diff --git a/Documentation/doc/Documentation/advanced/Installation.txt b/Documentation/doc/Documentation/advanced/Installation.txt index 933565ad78fc..7bf4f0f98748 100644 --- a/Documentation/doc/Documentation/advanced/Installation.txt +++ b/Documentation/doc/Documentation/advanced/Installation.txt @@ -61,7 +61,7 @@ See the page | :-------- | :------------- | :------------ | :----------- | | \cgal | none | Main library | \gmp, \mpfr, \boost (headers) | | `CGAL_ImageIO` | `WITH_CGAL_ImageIO` | Utilities to read and write image files | \zlib, \vtk (optional) | -| `CGAL_Qt5` | `WITH_CGAL_Qt5` | `QGraphicsView` support for \qt5-based demos | \qt5 | +| `CGAL_Qt6` | `WITH_CGAL_Qt6` | `QGraphicsView` support for \qt6-based demos | \qt6 | \subsection installation_examples CGAL Examples and Demos diff --git a/Documentation/doc/Documentation/windows.txt b/Documentation/doc/Documentation/windows.txt index 620182b2af02..c7d613e5c3ae 100644 --- a/Documentation/doc/Documentation/windows.txt +++ b/Documentation/doc/Documentation/windows.txt @@ -114,11 +114,11 @@ not depend on `Qt`. However, one of the examples in the Triangulation_2 package for visualization purposes. If you already have `Qt` installed, you can simply fill in the requested CMake variables and paths. Otherwise, you can also install it using `vcpkg`: - C:\dev\vcpkg> .\vcpkg.exe install qt5 + C:\dev\vcpkg> .\vcpkg.exe install qt6 Remember to specify `--triplet` or the related environment variable in case you target 64-bit applications. -As Qt5 is modular and as the \cgal examples and demos use only some of these modules +As Qt6 is modular and as the \cgal examples and demos use only some of these modules you can save download and compilation time by specifying an *installation option*: C:\dev\vcpkg> .\vcpkg.exe install cgal[qt] @@ -234,11 +234,10 @@ A typical `Qt` installation would consist of the following steps:
  • Download and install the Qt library for open source development package for your Visual Studio version at -https://www.qt.io/download -(here is the direct link to the offline installers).
  • -
  • Add the environment variable `QTDIR` pointing to the place you installed Qt, e.g., `C:\dev\Qt\Qt5.13.1`, +https://www.qt.io/download-open-source#source.
  • +
  • Add the environment variable `QTDIR` pointing to the place you installed Qt, e.g., `C:\dev\Qt\Qt6.13.1`, as this will help `cmake` to find Qt.
  • -
  • Add the bin directory of Qt, e.g. add `C:\dev\Qt\Qt5.13.1\msvcXXXX_YY\bin` to `PATH`, where `XXXX_YY` is something like `vc2017_64`. +
  • Add the bin directory of Qt, e.g. add `C:\dev\Qt\Qt6.13.1\msvcXXXX_YY\bin` to `PATH`, where `XXXX_YY` is something like `vc2017_64`. To avoid any conflict with another dll with the same name from another folder, add this path as the first in the list.
diff --git a/Documentation/doc/biblio/cgal_manual.bib b/Documentation/doc/biblio/cgal_manual.bib index 371192f94238..51dfb1090046 100644 --- a/Documentation/doc/biblio/cgal_manual.bib +++ b/Documentation/doc/biblio/cgal_manual.bib @@ -100,7 +100,7 @@ @article{cgal:acyd-vtm-05 , pages = "617--625" , note = "SIGGRAPH '2005 Conference Proceedings" , volume = 24 -, url = "https://hal.inria.fr/inria-00226418" +, url = "https://inria.hal.science/inria-00226418" , geombib = "not yet" } @@ -157,7 +157,7 @@ @article{ cgal:bdpty-tc-02 @ARTICLE{cgal:bdt-hdcvd-14, AUTHOR = {Mikhail Bogdanov and Olivier Devillers and Monique Teillaud}, JOURNAL = {Journal of Computational Geometry}, - NOTE = {https://hal.inria.fr/hal-00961390}, + NOTE = {https://inria.hal.science/hal-00961390}, PAGES = {56--85}, TITLE = {Hyperbolic {Delaunay} complexes and {Voronoi} diagrams made practical}, VOLUME = {5}, @@ -243,7 +243,7 @@ @inproceedings{cgal:byb-mgmmi-09 Boissonnat} , title = {Mesh Generation from 3D Multi-material Images} , pages = {283--290} -, url = "https://hal.inria.fr/inria-00420228" +, url = "https://inria.hal.science/inria-00420228" , x-international-audience = "yes" , x-proceedings = "yes" } @@ -257,7 +257,7 @@ @article{cgal:-byb-fpdmgmmi-09 , pages = "1455-14645" , volume = 28 , year = 2009 -, url = "https://hal.inria.fr/inria-00413248" +, url = "https://inria.hal.science/inria-00413248" , x-international-audience = "yes" , x-editorial-board = "yes" } @@ -361,7 +361,7 @@ @INPROCEEDINGS{ cgal:btv-dtosl-16 TITLE = {Delaunay triangulations on orientable surfaces of low genus}, YEAR = {2016}, DOI = {10.4230/LIPIcs.SoCG.2016.20}, - URL = {https://hal.inria.fr/hal-01276386} + URL = {https://inria.hal.science/hal-01276386} } @@ -402,7 +402,7 @@ @phdthesis{ cgal:c-tpsos-10 ,school = "Universit\'e de {Nice-Sophia Antipolis}" ,address = "France" ,year = 2010 - ,url = "https://tel.archives-ouvertes.fr/tel-00552215/" + ,url = "https://theses.hal.science/tel-00552215/" } @inproceedings{cgal:ccplr-redtp-10, @@ -539,13 +539,13 @@ @inproceedings{ cgal:csm-rdtnc-03 @inproceedings{ cgal:ct-c3pt-09 , title = "Computing {3D} Periodic Triangulations" , author = "Manuel Caroli and Monique Teillaud" -, booktitle = "Proceedings 17th European Symposium on Algorithms" -, nickname = "ESA'09" +, booktitle = "Proceedings 17th European Symposium on Algorithms" +, nickname = "ESA'09" , series = "Lecture Notes in Computer Science" , year = 2009 , volume = 5757 , pages = "37--48" -, note = "Full version available as INRIA Research Report 6823 \url{https://hal.inria.fr/inria-00356871}" +, note = "Full version available as INRIA Research Report 6823 \url{https://inria.hal.science/inria-00356871}" } @inproceedings{cgal:pt-rs-14, @@ -729,7 +729,7 @@ @article{ cgal:dma-ipsm-02 @article{cgal:dmsl-ssmrp-11, author = {Digne, Julie and Morel, Jean-Michel and Souzani, Charyar-Mehdi and - Lartigue, Claire}, + Lartigue, Claire}, title = {Scale Space Meshing of Raw Data Point Sets}, journal = {Computer Graphics Forum}, year = {2011}, @@ -741,13 +741,13 @@ @article{cgal:dmsl-ssmrp-11 } @inproceedings{ cgal:dp-eegpd-03 - , author = "Olivier Devillers and Sylvain Pion" - , title = "Efficient Exact Geometric Predicates for {Delaunay} Triangulations" - , booktitle = "Proc. 5th Workshop Algorithm Eng. Exper." - , nickname = "ALENEX '03" - , year = 2003 - , pages = "37--44" - , url = "https://hal.inria.fr/inria-00344517/" + , author = "Olivier Devillers and Sylvain Pion" + , title = "Efficient Exact Geometric Predicates for {Delaunay} Triangulations" + , booktitle = "Proc. 5th Workshop Algorithm Eng. Exper." + , nickname = "ALENEX '03" + , year = 2003 + , pages = "37--44" + , url = "https://inria.hal.science/inria-00344517/" } @article{ cgal:dpt-wt-02 @@ -766,7 +766,7 @@ @inproceedings{ cgal:dt-pvr3d-03 , author = "Olivier Devillers and Monique Teillaud" , title = "Perturbations and Vertex Removal in a {3D Delaunay} Triangulation" , booktitle = "Proc. 14th ACM-SIAM Sympos. Discrete Algorithms (SODA)" - , url = "https://hal.inria.fr/inria-00166710/" + , url = "https://inria.hal.science/inria-00166710/" , year = 2003 , pages = "313-319" } @@ -778,7 +778,7 @@ @article{cgal:dt-pvrdr-06 , volume = 44 , year = 2011 , pages = "160--168" -, url = "https://hal.archives-ouvertes.fr/inria-00560388/" +, url = "https://hal.science/inria-00560388/" , doi = "10.1016/j.comgeo.2010.09.010" } @@ -845,7 +845,7 @@ @phdthesis{ cgal:f-csapc-03 ,school = "Universit\'e de {Nice-Sophia Antipolis}" ,address = "France" ,year = 2003 - ,url = "https://tel.archives-ouvertes.fr/tel-00832487/" + ,url = "https://theses.hal.science/tel-00832487/" } @@ -1230,7 +1230,7 @@ @INPROCEEDINGS{cgal:it-idtbs-17 TITLE = {{Implementing Delaunay triangulations of the Bolza surface}}, YEAR = {2017}, DOI = {10.4230/LIPIcs.SoCG.2017.44}, - URL = {https://hal.inria.fr/hal-01568002}, + URL = {https://inria.hal.science/hal-01568002}, } @inproceedings{cgal:j-lrsspp-19, @@ -1261,13 +1261,13 @@ @incollection{ cgal:k-dat-96 @InProceedings{ cgal:k-reisv-04, - author = {Menelaos I. Karavelas}, - title = {A robust and efficient implementation for the segment + author = {Menelaos I. Karavelas}, + title = {A robust and efficient implementation for the segment {V}oronoi diagram}, booktitle = {Proc. Internat. Symp. on Voronoi diagrams in Science and Engineering (VD2004)}, - pages = {51--62}, - year = {2004} + pages = {51--62}, + year = {2004} } @article{ cgal:k-rprnm-96 @@ -1341,6 +1341,29 @@ @article{cgal:lm-clscm-12 year = {2012}, } +@article{cgal:lrtc-iccmps-20, + author = {Jacques-Olivier Lachaud and Pascal Romon and Boris Thibert and David Coeurjolly}, + journal = {Computer Graphics Forum (Proceedings of Symposium on Geometry Processing)}, + number = {5}, + title = {Interpolated Corrected Curvature Measures for Polygonal Surfaces}, + volume = {39}, + month = aug, + year = {2020}, + url = {https://doi.org/10.1111/cgf.14067}, + doi = {10.1111/cgf.14067} +} + +@article{cgal:lrt-ccm-22, + author = {Jacques-Olivier Lachaud and Pascal Romon and Boris Thibert}, + journal = {Discrete & Computational Geometry}, + title = {Corrected Curvature Measures}, + volume = {68}, + pages = {477-524}, + month = jul, + year = {2022}, + url = {https://doi.org/10.1007/s00454-022-00399-4} +} + @inproceedings{ cgal:lt-fmeps-98, author = "Peter Lindstrom and Greg Turk", title = "Fast and memory efficient polygonal simplification", @@ -1599,12 +1622,12 @@ @article{cgal:mbrsh-raofw-11 } @article{cgal:ml-cfsg-00 -, author = "G. Medioni and M. Lee and C. Tang" -, title = "A Computational Framework for Segmentation and Grouping" -, journal = "Elsevier Science" -, year = 2000 -, pages = "" -, update = "12.13 afabri" +, author = "G. Medioni and M. Lee and C. Tang" +, title = "A Computational Framework for Segmentation and Grouping" +, journal = "Elsevier Science" +, year = 2000 +, pages = "" +, update = "12.13 afabri" } @book{ cgal:m-cst-93 @@ -1887,28 +1910,28 @@ @article{ cgal:p-smrqt-01 @article{cgal:btsag-asosr-16, TITLE = {{A Survey of Surface Reconstruction from Point Clouds}}, AUTHOR = {Berger, Matthew and Tagliasacchi, Andrea and Seversky, Lee and Alliez, Pierre and Guennebaud, Gael and Levine, Joshua and Sharf, Andrei and Silva, Claudio}, - URL = {https://hal.inria.fr/hal-01348404}, + URL = {https://inria.hal.science/hal-01348404}, JOURNAL = {{Computer Graphics Forum}}, PUBLISHER = {{Wiley}}, PAGES = {27}, YEAR = {2016}, DOI = {10.1111/cgf.12802}, - PDF = {https://hal.inria.fr/hal-01348404/file/survey-author.pdf}, + PDF = {https://inria.hal.science/hal-01348404/file/survey-author.pdf}, HAL_ID = {hal-01348404}, HAL_VERSION = {v2} } @TechReport{ cgal:pabl-cco-07, - author = {Poudret, M. and Arnould, A. and Bertrand, Y. and Lienhardt, P.}, - title = {Cartes Combinatoires Ouvertes.}, - institution = {Laboratoire SIC E.A. 4103}, - number = {2007-1}, - month = {October}, - year = {2007}, - address = {F-86962 Futuroscope Cedex, France}, - type = {Research Notes}, - keywords = {cartes combinatoires, demi-ar{\^e}te, ar{\^e}te radiale}, + author = {Poudret, M. and Arnould, A. and Bertrand, Y. and Lienhardt, P.}, + title = {Cartes Combinatoires Ouvertes.}, + institution = {Laboratoire SIC E.A. 4103}, + number = {2007-1}, + month = {October}, + year = {2007}, + address = {F-86962 Futuroscope Cedex, France}, + type = {Research Notes}, + keywords = {cartes combinatoires, demi-ar{\^e}te, ar{\^e}te radiale}, } @article{ cgal:pc-rdp-86 @@ -2293,7 +2316,7 @@ @article{cgal:twad-iropitmg-09 , pages = "75:1-75:9" , note = "SIGGRAPH '2009 Conference Proceedings" , volume = "28(3)" -, url = "https://hal.inria.fr/inria-00359288" +, url = "https://inria.hal.science/inria-00359288" , geombib = "not yet" , x-editorial-board = {yes} , x-proceedings = {yes} @@ -2332,7 +2355,7 @@ @article{ cgal:v-et-95 ,month = jun ,pages = {26--31} ,annote = {Inlining vector expressions and parameter passing - of expressions at compile time. Template Metaprograms.} + of expressions at compile time. Template Metaprograms.} ,update = "98.01 kettner" } @@ -2354,7 +2377,7 @@ @article{ cgal:v-tm-95 ,month = may ,pages = {36--43} ,annote = {Prime numbers at compiler time, C++ programs at - compile time, control structures, local variables.} + compile time, control structures, local variables.} ,update = "98.01 kettner" } @@ -2422,7 +2445,7 @@ @incollection{ cgal:w-fvt-90 @book{ cgal:w-impoo-94 ,author = {Josie Wernicke} ,title = {The Inventor Mentor: Programming Object-Oriented - 3D Graphics with Open Inventor, Release 2} + 3D Graphics with Open Inventor, Release 2} ,publisher = {Addison-Wesley} ,year = 1994 ,update = "97.04 kettner" @@ -2549,12 +2572,12 @@ @inproceedings{ cgal:ld-agrm-03 } @InProceedings{cgal:k-vdc-06, - author = {Menelaos I. Karavelas}, - title = {Voronoi diagrams in {\sc Cgal}}, + author = {Menelaos I. Karavelas}, + title = {Voronoi diagrams in {\sc Cgal}}, booktitle = {22nd European Symposium on Computational Geometry}, - pages = {229--232}, - year = {2006}, - address = {Delphi, Greece}, + pages = {229--232}, + year = {2006}, + address = {Delphi, Greece}, } @incollection{cgal:fhktww-a-07, @@ -2607,27 +2630,27 @@ @misc{ cgal:asprs-lasf-13 } @article{cgal:as-solri-92 -, author = "F. Aurenhammer and O. Schwarzkopf" -, title = "A simple on-line randomized incremental algorithm for computing higher order {Voronoi} diagrams" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, year = 1992 -, pages = "363--381" -, keywords = "Voronoi diagrams, geometric transforms, dynamization" -, succeeds = "as-solri-91" -, update = "93.09 aurenhammer, 93.05 schwarzkopf" +, author = "F. Aurenhammer and O. Schwarzkopf" +, title = "A simple on-line randomized incremental algorithm for computing higher order {Voronoi} diagrams" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, year = 1992 +, pages = "363--381" +, keywords = "Voronoi diagrams, geometric transforms, dynamization" +, succeeds = "as-solri-91" +, update = "93.09 aurenhammer, 93.05 schwarzkopf" } @inproceedings{cgal:fy-okvd-01 -, author = "Julia Fl{\"o}totto and Mariette Yvinec" -, title = "Order-$k$ {Voronoi} Diagrams" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "109--112" -, update = "01.04 icking" +, author = "Julia Fl{\"o}totto and Mariette Yvinec" +, title = "Order-$k$ {Voronoi} Diagrams" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "109--112" +, update = "01.04 icking" } @proceedings{cgal:jlm-isgp-98, @@ -2768,7 +2791,7 @@ @article{cgta-kmpsy-08 , volume = "40" , number = "1" , pages = "61-78" -, url = "https://hal.inria.fr/inria-00344310/" +, url = "https://inria.hal.science/inria-00344310/" , doi = "10.1016/j.comgeo.2007.06.003" , x-international-audience = "yes" , x-editorial-board = "yes" @@ -2788,7 +2811,7 @@ @inproceedings{geometrica-5986i , title = "Complexity of {Delaunay} triangulation for points on lower-dimensional polyhedra" , booktitle = "Proc. 18th ACM-SIAM Sympos. Discrete Algorithms" , nickname = "SODA" -, url = "https://hal.inria.fr/inria-00182835/" +, url = "https://inria.hal.science/inria-00182835/" , year = 2007 , pages = "1106--1113" } @@ -2856,14 +2879,14 @@ @PHDTHESIS{kerber-phd-09 } @InCollection{grlr-sturm-habicht-98, - author = {L.~Gonzalez-Vega and T.~Recio and H.~Lombardi and M.-F.~Roy}, - title = {Sturm-Habicht Sequences, Determinants and Real Roots of Univariate Polynomials}, - booktitle = {Quantifier Elimination and Cylindrical Algebraic Decomposition}, - pages = {300--316}, - publisher = {Springer}, - year = 1998, - editor = {B.F.~Caviness and J.R.~Johnson}, - series = {Texts and Monographs in Symbolic Computation} + author = {L.~Gonzalez-Vega and T.~Recio and H.~Lombardi and M.-F.~Roy}, + title = {Sturm-Habicht Sequences, Determinants and Real Roots of Univariate Polynomials}, + booktitle = {Quantifier Elimination and Cylindrical Algebraic Decomposition}, + pages = {300--316}, + publisher = {Springer}, + year = 1998, + editor = {B.F.~Caviness and J.R.~Johnson}, + series = {Texts and Monographs in Symbolic Computation} } @inproceedings{Sorkine2007AsRigidAs, @@ -3083,6 +3106,16 @@ @article{ecvp-bhhhk-14 bibsource = {dblp computer science bibliography, https://dblp.org/} } +@inproceedings {dunyach2013curvRemesh, + booktitle = {Eurographics 2013 - Short Papers}, + title = {{Adaptive Remeshing for Real-Time Mesh Deformation}}, + author = {Dunyach, Marion and Vanderhaeghe, David and Barthe, LoĂŻc and Botsch, Mario}, + year = {2013}, + publisher = {The Eurographics Association}, + ISSN = {1017-4656}, + DOI = {10.2312/conf/EG2013/short/029-032} +} + @book{botsch2010PMP, title={Polygon mesh processing}, author={M. Botsch and L. Kobbelt and M. Pauly and P. Alliez and B. L{\'e}vy}, @@ -3213,14 +3246,14 @@ @article{karypis1998fast @techreport{frey:inria-00069921, TITLE = {{MEDIT : An interactive Mesh visualization Software}}, AUTHOR = {Frey, Pascal}, - URL = {https://hal.inria.fr/inria-00069921}, + URL = {https://inria.hal.science/inria-00069921}, NUMBER = {RT-0253}, PAGES = {41}, INSTITUTION = {{INRIA}}, YEAR = {2001}, MONTH = Dec, KEYWORDS = {MESH ; VISUALIZATION ; POST-PROCESSING}, - PDF = {https://hal.inria.fr/inria-00069921/file/RT-0253.pdf}, + PDF = {https://inria.hal.science/inria-00069921/file/RT-0253.pdf}, HAL_ID = {inria-00069921}, HAL_VERSION = {v1} } diff --git a/Documentation/doc/biblio/geom.bib b/Documentation/doc/biblio/geom.bib index 969a1a79b5ba..28b9dae88623 100644 --- a/Documentation/doc/biblio/geom.bib +++ b/Documentation/doc/biblio/geom.bib @@ -7,886 +7,886 @@ % @article{-eera-57 -, author = "??" -, title = "ERA. {An} electronic reading automaton" -, journal = "Electronic Engineering" -, volume = "??" -, month = apr -, year = 1957 -, pages = "189--190" -, update = "98.07 bibrelex" +, author = "??" +, title = "ERA. {An} electronic reading automaton" +, journal = "Electronic Engineering" +, volume = "??" +, month = apr +, year = 1957 +, pages = "189--190" +, update = "98.07 bibrelex" } @incollection{-akg-87 -, title = "Algorithmen in der kombinatorischen {Geometrie}" -, booktitle = "Tagungsber. Math. Forschungsinst. Oberwolfach" -, number = 5 -, year = 1987 -, pages = "1--14a" -, note = "seminar abstracts" -, update = "97.11 icking, 95.05 korneenko" +, title = "Algorithmen in der kombinatorischen {Geometrie}" +, booktitle = "Tagungsber. Math. Forschungsinst. Oberwolfach" +, number = 5 +, year = 1987 +, pages = "1--14a" +, note = "seminar abstracts" +, update = "97.11 icking, 95.05 korneenko" } @manual{-arm-92 -, title = "AutoCAD Reference Manual" -, organization = "Autodesk, Inc." -, year = 1992 -, update = "98.03 bibrelex" +, title = "AutoCAD Reference Manual" +, organization = "Autodesk, Inc." +, year = 1992 +, update = "98.03 bibrelex" } @incollection{-dg-87 -, title = "Diskrete {Geometrie}" -, booktitle = "Tagungsber. Math. Forschungsinst. Oberwolfach" -, number = 25 -, year = 1987 -, pages = "1--18" -, note = "seminar abstracts" -, update = "97.11 icking, 95.05 korneenko" +, title = "Diskrete {Geometrie}" +, booktitle = "Tagungsber. Math. Forschungsinst. Oberwolfach" +, number = 25 +, year = 1987 +, pages = "1--18" +, note = "seminar abstracts" +, update = "97.11 icking, 95.05 korneenko" } @article{-fcp-91 -, title = "Fast convex polygons" -, journal = "Doctor Dobbs J." -, volume = 16 -, number = 3 -, year = 1991 -, pages = "129--147" -, keywords = "convex polygon, rendering, computer graphics, implementation" -, update = "95.05 korneenko" +, title = "Fast convex polygons" +, journal = "Doctor Dobbs J." +, volume = 16 +, number = 3 +, year = 1991 +, pages = "129--147" +, keywords = "convex polygon, rendering, computer graphics, implementation" +, update = "95.05 korneenko" } @techreport{-gchpc-92 -, title = "Grand challenges: {High} performance computing and communications" -, type = "Report" -, institution = "Committee in Physical, Mathematical, and Engineering Sciences. Federal Council for Science, Engineering, and Technology" -, year = 1992 -, note = "The FY 1992 U.S. Research and Development Program" -, update = "99.03 bibrelex, 98.07 bibrelex, 98.03 bibrelex" +, title = "Grand challenges: {High} performance computing and communications" +, type = "Report" +, institution = "Committee in Physical, Mathematical, and Engineering Sciences. Federal Council for Science, Engineering, and Technology" +, year = 1992 +, note = "The FY 1992 U.S. Research and Development Program" +, update = "99.03 bibrelex, 98.07 bibrelex, 98.03 bibrelex" } @manual{-isbfp-85 -, title = "IEEE Standard for binary floating point arithmetic, {ANSI}/{IEEE} Std $754-1985$" -, publisher = "IEEE Computer Society" -, address = "New York, NY" -, year = 1985 -, note = "Reprinted in SIGPLAN Notices, 22(2):9--25, 1987" -, update = "99.11 devillers, 98.07 bibrelex" -, key = "IEEE754" +, title = "IEEE Standard for binary floating point arithmetic, {ANSI}/{IEEE} Std $754-1985$" +, publisher = "IEEE Computer Society" +, address = "New York, NY" +, year = 1985 +, note = "Reprinted in SIGPLAN Notices, 22(2):9--25, 1987" +, update = "99.11 devillers, 98.07 bibrelex" +, key = "IEEE754" } @manual{-i6um-96 -, title = "IRIT $6.0$ User's Manual" -, organization = "Technion" -, year = 1996 -, url = "https://www.cs.technion.ac.il/~irit" -, update = "98.07 bibrelex" +, title = "IRIT $6.0$ User's Manual" +, organization = "Technion" +, year = 1996 +, url = "https://www.cs.technion.ac.il/~irit" +, update = "98.07 bibrelex" } @manual{-mrm-83 -, title = "{MACSYMA} Reference Manual" -, organization = "Lab. Comput. Sci., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1983 -, update = "98.03 bibrelex" +, title = "{MACSYMA} Reference Manual" +, organization = "Lab. Comput. Sci., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1983 +, update = "98.03 bibrelex" } @manual{-m4rm-85 -, title = "Maple $4.0$ Reference Manual" -, organization = "Symbolic Computation Group, Univ. Waterloo" -, address = "Waterloo, Canada" -, year = 1985 -, update = "98.03 bibrelex" +, title = "Maple $4.0$ Reference Manual" +, organization = "Symbolic Computation Group, Univ. Waterloo" +, address = "Waterloo, Canada" +, year = 1985 +, update = "98.03 bibrelex" } @manual{-mrg-92 -, title = "{MATLAB} Reference Guide" -, organization = "The MathWorks, Inc." -, address = "Natick, MA" -, year = 1992 -, update = "98.03 bibrelex" +, title = "{MATLAB} Reference Guide" +, organization = "The MathWorks, Inc." +, address = "Natick, MA" +, year = 1992 +, update = "98.03 bibrelex" } @manual{-nwp-91 -, title = "NURBS White Paper" -, organization = "Automotive Industry Action Group" -, address = "Southfield, MI" -, year = 1991 -, update = "98.07 bibrelex" +, title = "NURBS White Paper" +, organization = "Automotive Industry Action Group" +, address = "Southfield, MI" +, year = 1991 +, update = "98.07 bibrelex" } @manual{-pltc-85 -, title = "POSTSCRIPT Language Tutorial and Cookbook" -, organization = "Adobe Systems Incorporated" -, year = 1985 -, update = "98.03 bibrelex" +, title = "POSTSCRIPT Language Tutorial and Cookbook" +, organization = "Adobe Systems Incorporated" +, year = 1985 +, update = "98.03 bibrelex" } @manual{-rurcp-88 -, title = "Robface: {The} universal {Rob}-{Cad} programming interface" -, organization = "Technomatics, N. V." -, year = 1988 -, update = "98.07 bibrelex" +, title = "Robface: {The} universal {Rob}-{Cad} programming interface" +, organization = "Technomatics, N. V." +, year = 1988 +, update = "98.07 bibrelex" } @manual{-rpmv4-82 -, title = "Romulus Programmers Manual: Version 4" -, organization = "Shape Data Ltd." -, address = "Cambridge, UK" -, year = 1982 -, update = "97.11 bibrelex" +, title = "Romulus Programmers Manual: Version 4" +, organization = "Shape Data Ltd." +, address = "Cambridge, UK" +, year = 1982 +, update = "97.11 bibrelex" } @article{-sicp-90 -, title = "Special issue: {Cutting} and packing" -, journal = "European J. Oper. Res." -, volume = 44 -, number = 2 -, year = 1990 -, pages = "134--299" -, keywords = "packing cutting" -, update = "95.05 korneenko" +, title = "Special issue: {Cutting} and packing" +, journal = "European J. Oper. Res." +, volume = 44 +, number = 2 +, year = 1990 +, pages = "134--299" +, keywords = "packing cutting" +, update = "95.05 korneenko" } @article{-sill-84 -, title = "Special issue on legged locomotion" -, journal = "Internat. J. Robot. Res." -, volume = 3 -, number = 2 -, year = 1984 -, update = "97.11 bibrelex" +, title = "Special issue on legged locomotion" +, journal = "Internat. J. Robot. Res." +, volume = 3 +, number = 2 +, year = 1984 +, update = "97.11 bibrelex" } @article{-sill-90 -, title = "Special issue on legged locomotion" -, journal = "Internat. J. Robot. Res." -, volume = 9 -, number = 2 -, year = 1990 -, update = "97.11 bibrelex" +, title = "Special issue on legged locomotion" +, journal = "Internat. J. Robot. Res." +, volume = 9 +, number = 2 +, year = 1990 +, update = "97.11 bibrelex" } @misc{-sp- -, title = "STEP on a page" -, url = "http://www.nist.gov/sc5/soap/" -, update = "98.07 bibrelex" +, title = "STEP on a page" +, url = "http://www.nist.gov/sc5/soap/" +, update = "98.07 bibrelex" } @manual{-sis-89 -, title = "Stereolithography interface specification" -, organization = "3D Systems, Inc." -, address = "Valencia, CA" -, year = 1989 -, note = "p/n 50065-S01-00" -, update = "98.07 bibrelex" +, title = "Stereolithography interface specification" +, organization = "3D Systems, Inc." +, address = "Valencia, CA" +, year = 1989 +, note = "p/n 50065-S01-00" +, update = "98.07 bibrelex" } @manual{-t1-78 -, title = "TIPS-1" -, organization = "Inst. Precision Engg., Hokkaido Univ." -, address = "Sapporo, Japan" -, year = 1978 -, update = "97.11 bibrelex" +, title = "TIPS-1" +, organization = "Inst. Precision Engg., Hokkaido Univ." +, address = "Sapporo, Japan" +, year = 1978 +, update = "97.11 bibrelex" } @techreport{a-am3sa-91 -, author = "C. Aarmstrong" -, title = "Abstraction and meshing of 3d stress analysis models" -, type = "Progress Report" -, institution = "SERC Directorate" -, address = "UK" -, year = 1991 -, update = "98.11 bibrelex" +, author = "C. Aarmstrong" +, title = "Abstraction and meshing of 3d stress analysis models" +, type = "Progress Report" +, institution = "SERC Directorate" +, address = "UK" +, year = 1991 +, update = "98.11 bibrelex" } @article{a-srcg-74 -, author = "H. L. Abbott" -, title = "Some results in combinatorial geometry" -, journal = "Discrete Math." -, volume = 9 -, year = 1974 -, pages = "199--204" -, update = "97.11 bibrelex" +, author = "H. L. Abbott" +, title = "Some results in combinatorial geometry" +, journal = "Discrete Math." +, volume = 9 +, year = 1974 +, pages = "199--204" +, update = "97.11 bibrelex" } @inproceedings{a-bigj-91 -, author = "A. Abdullah" -, title = "Bottleneck identification in general junctions" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "26--28" -, cites = "ahu-dsa-83, aaghi-vdp-86, c-tsplt-90i, cw-oaimd-83, gm-osacv-87, ghlst-ltavs-87, h-ovgat-89, kkt-ptots-90i, l-prp-78, mz-lubgj-88, mt-fmvdb-83, ps-cgi-85, s-fmdbt-81, w-cvgnl-85, mz-rgj-89, p-orrc-81, ZZZ" -, update = "01.04 icking, 98.07 bibrelex" +, author = "A. Abdullah" +, title = "Bottleneck identification in general junctions" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "26--28" +, cites = "ahu-dsa-83, aaghi-vdp-86, c-tsplt-90i, cw-oaimd-83, gm-osacv-87, ghlst-ltavs-87, h-ovgat-89, kkt-ptots-90i, l-prp-78, mz-lubgj-88, mt-fmvdb-83, ps-cgi-85, s-fmdbt-81, w-cvgnl-85, mz-rgj-89, p-orrc-81, ZZZ" +, update = "01.04 icking, 98.07 bibrelex" } @incollection{aitt-pacvd-87 -, author = "T. Abe and K. Inoue and J. Takanami and H. Taniguchi" -, title = "A parallel algorithm for the construction of {Voronoi} diagrams" -, booktitle = "Meet. Techn. Group on Automata and Languages, IECE Japan" -, year = 1987 -, keywords = "Voronoi diagram, parallel computation" -, update = "95.05 korneenko" +, author = "T. Abe and K. Inoue and J. Takanami and H. Taniguchi" +, title = "A parallel algorithm for the construction of {Voronoi} diagrams" +, booktitle = "Meet. Techn. Group on Automata and Languages, IECE Japan" +, year = 1987 +, keywords = "Voronoi diagram, parallel computation" +, update = "95.05 korneenko" } @article{am-castd-90 -, author = "D. J. Abel and D. M. Mark" -, title = "A comparative analysis of some two-dimensional orderings" -, journal = "Intl. J. Geographic Information Systems" -, volume = 4 -, year = 1990 -, pages = "21--31" -, update = "97.07 agarwal" +, author = "D. J. Abel and D. M. Mark" +, title = "A comparative analysis of some two-dimensional orderings" +, journal = "Intl. J. Geographic Information Systems" +, volume = 4 +, year = 1990 +, pages = "21--31" +, update = "97.07 agarwal" } @article{as-dsabl-83 -, author = "D. J. Abel and J. L. Smith" -, title = "A data structure and algorithm based on linear key for a rectangle retrieval problem" -, journal = "Comput. Vision Graph. Image Process." -, volume = 24 -, number = 1 -, year = 1983 -, pages = "1--13" -, keywords = "searching, rectangle retrieval, orthogon, data structuring" -, update = "95.05 korneenko" +, author = "D. J. Abel and J. L. Smith" +, title = "A data structure and algorithm based on linear key for a rectangle retrieval problem" +, journal = "Comput. Vision Graph. Image Process." +, volume = 24 +, number = 1 +, year = 1983 +, pages = "1--13" +, keywords = "searching, rectangle retrieval, orthogon, data structuring" +, update = "95.05 korneenko" } @inproceedings{a-dgpg-99 -, author = "Manuel Abellanas" -, title = "{Delaunay} Graphs on a Prescribed Graph" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "101--103" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Manuel Abellanas" +, title = "{Delaunay} Graphs on a Prescribed Graph" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "101--103" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{aghhs-op-92 -, author = "M. Abellanas and J. Garc{\'\i}a and G. Hern{\'a}ndez and F. Hurtado and O. Serra" -, title = "Onion polygonizations" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "127--131" -, cites = "acns-cfs-82, c-clps-85, ds-ppsp-88, h-lbocf-87, h-rsr-72, mr-ulbnm-90, nm-ocfhc-80, obw-cdnh-87, ps-cgi-85, t-cm-88, t-nrcgr-86, ZZZ" -, update = "98.07 bibrelex, 93.05 jones" +, author = "M. Abellanas and J. Garc{\'\i}a and G. Hern{\'a}ndez and F. Hurtado and O. Serra" +, title = "Onion polygonizations" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "127--131" +, cites = "acns-cfs-82, c-clps-85, ds-ppsp-88, h-lbocf-87, h-rsr-72, mr-ulbnm-90, nm-ocfhc-80, obw-cdnh-87, ps-cgi-85, t-cm-88, t-nrcgr-86, ZZZ" +, update = "98.07 bibrelex, 93.05 jones" } @article{aghhsu-up-93 -, author = "M. Abellanas and J. Garc{\'\i}a and G. Hern{\'a}ndez and F. Hurtado and O. Serra and J. Urrutia" -, title = "Updating Polygonizations" -, journal = "Comput. Graph. Forum" -, volume = 12 -, number = 3 -, year = 1993 -, pages = "143--152" -, update = "98.11 bibrelex" +, author = "M. Abellanas and J. Garc{\'\i}a and G. Hern{\'a}ndez and F. Hurtado and O. Serra and J. Urrutia" +, title = "Updating Polygonizations" +, journal = "Comput. Graph. Forum" +, volume = 12 +, number = 3 +, year = 1993 +, pages = "143--152" +, update = "98.11 bibrelex" } @inproceedings{agh-cg-94 -, author = "M. Abellanas and J. Garc{\'\i}a-L{\'o}pez and F. Hurtado" -, title = "Consecutive Guards" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "393--398" -, cites = "o-agta-87, c-ctpg-75, f-spcwt-78, s-rrag-92, ll-ccagp-86, h-ragp-90, hkk-agtph-91, jl-agtls-93, ZZZ" -, update = "98.11 bibrelex, 97.11 icking, 94.09 jones" +, author = "M. Abellanas and J. Garc{\'\i}a-L{\'o}pez and F. Hurtado" +, title = "Consecutive Guards" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "393--398" +, cites = "o-agta-87, c-ctpg-75, f-spcwt-78, s-rrag-92, ll-ccagp-86, h-ragp-90, hkk-agtph-91, jl-agtls-93, ZZZ" +, update = "98.11 bibrelex, 97.11 icking, 94.09 jones" } @inproceedings{agrh-tsgs-94 -, author = "Manuel Abellanas and Francisco G{\'o}mez and Ferran Hurtado and Pedro Ramos" -, title = "On the Tolerance of Some Geometric Structures" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "64--67" -, update = "00.11 smid, 00.07 icking" +, author = "Manuel Abellanas and Francisco G{\'o}mez and Ferran Hurtado and Pedro Ramos" +, title = "On the Tolerance of Some Geometric Structures" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "64--67" +, update = "00.11 smid, 00.07 icking" } @techreport{aghr-stdt- -, author = "M. Abellanas and F. G{\'o}mez and F. Hurtado and P. Ramos" -, title = "Structural Tolerance and {Delaunay} Triangulation" -, type = "Technical Report" -, number = "MA2-IR-93-11" -, institution = "Dept. Mat. Aplicada II, Univesitat Polit{\`e}cnica de Catalunya" -, update = "98.11 bibrelex" +, author = "M. Abellanas and F. G{\'o}mez and F. Hurtado and P. Ramos" +, title = "Structural Tolerance and {Delaunay} Triangulation" +, type = "Technical Report" +, number = "MA2-IR-93-11" +, institution = "Dept. Mat. Aplicada II, Univesitat Polit{\`e}cnica de Catalunya" +, update = "98.11 bibrelex" } @techreport{ahknu-cpcs-95 -, author = "Manuel Abellanas and G. Hernandes and Rolf Klein and V. Neumann-Lara and Jorge Urrutia" -, title = "A Combinatorial Property of Convex Sets" -, number = 176 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1995 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr176.pdf" -, precedes = "ahknu-cpcs-97" -, update = "01.04 icking, 99.07 bibrelex, 98.11 bibrelex" +, author = "Manuel Abellanas and G. Hernandes and Rolf Klein and V. Neumann-Lara and Jorge Urrutia" +, title = "A Combinatorial Property of Convex Sets" +, number = 176 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1995 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr176.pdf" +, precedes = "ahknu-cpcs-97" +, update = "01.04 icking, 99.07 bibrelex, 98.11 bibrelex" } @article{ahknu-cpcs-97 -, author = "Manuel Abellanas and G. Hernandes and Rolf Klein and V. Neumann-Lara and Jorge Urrutia" -, title = "A Combinatorial Property of Convex Sets" -, journal = "Discrete Comput. Geom." -, volume = 17 -, number = 3 -, year = 1997 -, pages = "307--318" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr176.pdf" -, succeeds = "ahknu-cpcs-95" -, update = "01.04 icking, 99.07 bibrelex, 98.11 bibrelex" +, author = "Manuel Abellanas and G. Hernandes and Rolf Klein and V. Neumann-Lara and Jorge Urrutia" +, title = "A Combinatorial Property of Convex Sets" +, journal = "Discrete Comput. Geom." +, volume = 17 +, number = 3 +, year = 1997 +, pages = "307--318" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr176.pdf" +, succeeds = "ahknu-cpcs-95" +, update = "01.04 icking, 99.07 bibrelex, 98.11 bibrelex" } @techreport{ahknu-vdcfc-95t -, author = "Manuel Abellanas and G. Hernandes and Rolf Klein and V. Neumann-Lara and Jorge Urrutia" -, title = "Voronoi-Diagrams and Containment of Families of Convex Sets on the Plane" -, number = 173 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1995 -, precedes = "ahknu-vdcfc-95" -, update = "99.07 bibrelex, 98.11 bibrelex" +, author = "Manuel Abellanas and G. Hernandes and Rolf Klein and V. Neumann-Lara and Jorge Urrutia" +, title = "Voronoi-Diagrams and Containment of Families of Convex Sets on the Plane" +, number = 173 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1995 +, precedes = "ahknu-vdcfc-95" +, update = "99.07 bibrelex, 98.11 bibrelex" } @inproceedings{ahknu-vdcfc-95 -, author = "Manuel Abellanas and G. Hernandez and Rolf Klein and V. Neumann-Lara and Jorge Urrutia" -, title = "Voronoi Diagrams and Containment of Families of Convex Sets on the Plane" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "71--78" -, keywords = "convex distance functions" -, succeeds = "ahknu-vdcfc-95t" -, cites = "bl-cppe-90, bssu-crapb-89, cd-vdbcd-85, ehs-cttpt-88, f-ioco-88, hrw-sercc-89, h-nccp-89, iklm-cdf3s-93, kmm-ricav-93a, l-cnp-94, l-artcn-94, nu-crpcp-88, ssu-congo-88, u-poeg-89, ZZZ" -, update = "99.07 bibrelex, 98.11 bibrelex, 98.03 bibrelex, 95.09 mitchell" +, author = "Manuel Abellanas and G. Hernandez and Rolf Klein and V. Neumann-Lara and Jorge Urrutia" +, title = "Voronoi Diagrams and Containment of Families of Convex Sets on the Plane" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "71--78" +, keywords = "convex distance functions" +, succeeds = "ahknu-vdcfc-95t" +, cites = "bl-cppe-90, bssu-crapb-89, cd-vdbcd-85, ehs-cttpt-88, f-ioco-88, hrw-sercc-89, h-nccp-89, iklm-cdf3s-93, kmm-ricav-93a, l-cnp-94, l-artcn-94, nu-crpcp-88, ssu-congo-88, u-poeg-89, ZZZ" +, update = "99.07 bibrelex, 98.11 bibrelex, 98.03 bibrelex, 95.09 mitchell" } @techreport{ahiklmps-scso-01t -, author = "Manuel Abellanas and Ferran Hurtado and Christian Icking and Rolf Klein and Elmar Langetepe and Lihong Ma and Bel{\'e}n Palop and Vera Sacrist{\'a}n" -, title = "Smallest Color-Spanning Objects" -, number = 283 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 2001 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr283.pdf" -, precedes = "ahiklmps-scso-01" -, cites = "aesw-emstb-91, aiks-fkpmd-91, dlss-sdakp-95, ddg-fsp-83, esz-cskec-94, ee-innfm-94, eorw-fmakg-92, es-blbda-95, go-copcg-95, gh-appcp-93, hks-uevsi-93, m-gofvc-94, m-ekpc-95, m-gspno-00, mnsw-cnnsq-00, ol-mcp-81, ps-cgi-85, sk-ekpsa-98, sa-dsstg-95, s-fkpse-92, ZZZ" -, update = "01.07 icking, 01.04 icking" +, author = "Manuel Abellanas and Ferran Hurtado and Christian Icking and Rolf Klein and Elmar Langetepe and Lihong Ma and Bel{\'e}n Palop and Vera Sacrist{\'a}n" +, title = "Smallest Color-Spanning Objects" +, number = 283 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 2001 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr283.pdf" +, precedes = "ahiklmps-scso-01" +, cites = "aesw-emstb-91, aiks-fkpmd-91, dlss-sdakp-95, ddg-fsp-83, esz-cskec-94, ee-innfm-94, eorw-fmakg-92, es-blbda-95, go-copcg-95, gh-appcp-93, hks-uevsi-93, m-gofvc-94, m-ekpc-95, m-gspno-00, mnsw-cnnsq-00, ol-mcp-81, ps-cgi-85, sk-ekpsa-98, sa-dsstg-95, s-fkpse-92, ZZZ" +, update = "01.07 icking, 01.04 icking" } @inproceedings{ahiklmps-scso-01 -, author = "Manuel Abellanas and Ferran Hurtado and Christian Icking and Rolf Klein and Elmar Langetepe and Lihong Ma and Bel{\'e}n Palop and Vera Sacrist{\'a}n" -, title = "Smallest Color-Spanning Objects" -, booktitle = "Proc. 9th Annu. European Sympos. Algorithms" -, nickname = "ESA 2001" -, series = "Lecture Notes Comput. Sci." -, volume = 2161 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "278--289" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr283.pdf" -, succeeds = "ahiklmps-scso-01t" -, update = "02.03 icking, 01.07 icking" +, author = "Manuel Abellanas and Ferran Hurtado and Christian Icking and Rolf Klein and Elmar Langetepe and Lihong Ma and Bel{\'e}n Palop and Vera Sacrist{\'a}n" +, title = "Smallest Color-Spanning Objects" +, booktitle = "Proc. 9th Annu. European Sympos. Algorithms" +, nickname = "ESA 2001" +, series = "Lecture Notes Comput. Sci." +, volume = 2161 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "278--289" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr283.pdf" +, succeeds = "ahiklmps-scso-01t" +, update = "02.03 icking, 01.07 icking" } @inproceedings{ahiklmps-fcvdr-01 -, author = "Manuel Abellanas and Ferran Hurtado and Christian Icking and Rolf Klein and Elmar Langetepe and Lihong Ma and Bel{\'e}n Palop and Vera Sacrist{\'a}n" -, title = "The Farthest Color {Voronoi} Diagram and Related Problems" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "113--116" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ahiklmps-fcvdr-01.pdf" -, cites = "aesw-emstb-91, aiks-fkpmd-91, ak-vd-00, dlss-sdakp-95, ddg-fsp-83, ee-innfm-94, go-copcg-95, gh-appcp-93, hks-uevsi-93, m-lpltw-84, m-gspno-00, mnsw-cnnsq-00, ol-mcp-81, ps-cgi-85, sa-dsstg-95, w-sedbe-91a, ZZZ" -, update = "01.04 icking" +, author = "Manuel Abellanas and Ferran Hurtado and Christian Icking and Rolf Klein and Elmar Langetepe and Lihong Ma and Bel{\'e}n Palop and Vera Sacrist{\'a}n" +, title = "The Farthest Color {Voronoi} Diagram and Related Problems" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "113--116" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ahiklmps-fcvdr-01.pdf" +, cites = "aesw-emstb-91, aiks-fkpmd-91, ak-vd-00, dlss-sdakp-95, ddg-fsp-83, ee-innfm-94, go-copcg-95, gh-appcp-93, hks-uevsi-93, m-lpltw-84, m-gspno-00, mnsw-cnnsq-00, ol-mcp-81, ps-cgi-85, sa-dsstg-95, w-sedbe-91a, ZZZ" +, update = "01.04 icking" } @inproceedings{ahr-tgs-94 -, author = "M. Abellanas and F. Hurtado and P. Ramos" -, title = "Tolerance of Geometric Structures" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "250--255" -, cites = "aghhsu-up-93, aghr-stdt-, a-sdcgp-85, abmmrss-tsp-93, gss-egbra-89, gss-cscah-93, l-cbagd, lm-cschu-90, ms-tgmst-91, r-tegc, cegs-ablsp-89, ms-rcibt-88, lmr-pvdcb-93, v-plcpt-, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "M. Abellanas and F. Hurtado and P. Ramos" +, title = "Tolerance of Geometric Structures" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "250--255" +, cites = "aghhsu-up-93, aghr-stdt-, a-sdcgp-85, abmmrss-tsp-93, gss-egbra-89, gss-cscah-93, l-cbagd, lm-cschu-90, ms-tgmst-91, r-tegc, cegs-ablsp-89, ms-rcibt-88, lmr-pvdcb-93, v-plcpt-, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{ahr-rgwgt-95 -, author = "M. Abellanas and F. Hurtado and P. A. Ramos" -, title = "Redrawing a Graph within a Geometric Tolerance" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "246--253" -, keywords = "graph drawing, Delaunay triangulation" -, update = "95.01 tamassia" +, author = "M. Abellanas and F. Hurtado and P. A. Ramos" +, title = "Redrawing a Graph within a Geometric Tolerance" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "246--253" +, keywords = "graph drawing, Delaunay triangulation" +, update = "95.01 tamassia" } @inproceedings{ar-vdisg-95 -, author = "Manuel Abellanas and Eugenio Roanes-Lozano" -, title = "{Voronoi} Diagrams for Infinite Sets Generated by Consecutive Stretches" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "13--16" -, update = "00.03 bibrelex" +, author = "Manuel Abellanas and Eugenio Roanes-Lozano" +, title = "{Voronoi} Diagrams for Infinite Sets Generated by Consecutive Stretches" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "13--16" +, update = "00.03 bibrelex" } @techreport{ae-vgspu-91 -, author = "J. Abello and {\"O}. E{\~g}ecio{\~g}lu" -, title = "Visibility graphs of staircase polygons with uniform step length" -, type = "Manuscript" -, institution = "??" -, year = 1991 -, precedes = "ae-vgspu-93" -, update = "98.07 bibrelex" +, author = "J. Abello and {\"O}. E{\~g}ecio{\~g}lu" +, title = "Visibility graphs of staircase polygons with uniform step length" +, type = "Manuscript" +, institution = "??" +, year = 1991 +, precedes = "ae-vgspu-93" +, update = "98.07 bibrelex" } @article{ae-vgspu-93 -, author = "J. Abello and {\"O}. E{\~g}ecio{\~g}lu" -, title = "Visibility graphs of staircase polygons with uniform step length" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "27--37" -, keywords = "visibility graph, staircase polygon, orthogonal convex fan, uniform step length" -, succeeds = "ae-vgspu-91" -, update = "98.07 bibrelex, 96.09 devillers" +, author = "J. Abello and {\"O}. E{\~g}ecio{\~g}lu" +, title = "Visibility graphs of staircase polygons with uniform step length" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "27--37" +, keywords = "visibility graph, staircase polygon, orthogonal convex fan, uniform step length" +, succeeds = "ae-vgspu-91" +, update = "98.07 bibrelex, 96.09 devillers" } @techreport{aek-rvgsp-91 -, author = "J. Abello and {\"O}. E{\~g}ecio{\~g}lu and K. Kumar" -, title = "Recognizing visibility graphs of staircase polygons" -, type = "Manuscript" -, institution = "??" -, year = 1991 -, update = "98.07 bibrelex" +, author = "J. Abello and {\"O}. E{\~g}ecio{\~g}lu and K. Kumar" +, title = "Recognizing visibility graphs of staircase polygons" +, type = "Manuscript" +, institution = "??" +, year = 1991 +, update = "98.07 bibrelex" } @article{aesu-iopof-98 -, author = "James Abello and Vladimir Estivill-Castro and Thomas Shermer and Jorge Urrutia" -, title = "Illumination of Orthogonal Polygons with Orthogonal Floodlights" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "25--38" -, succeeds = "aesu-iof-95" -, update = "98.11 devillers" +, author = "James Abello and Vladimir Estivill-Castro and Thomas Shermer and Jorge Urrutia" +, title = "Illumination of Orthogonal Polygons with Orthogonal Floodlights" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "25--38" +, succeeds = "aesu-iof-95" +, update = "98.11 devillers" } @inproceedings{aesu-iof-95 -, author = "James Abello and Vladimir Estivill-Castro and Thomas Shermer and Jorge Urrutia" -, title = "Illumination with Orthogonal Floodlights" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "362--371" -, precedes = "aesu-iopof-98" -, update = "98.11 devillers, 98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "James Abello and Vladimir Estivill-Castro and Thomas Shermer and Jorge Urrutia" +, title = "Illumination with Orthogonal Floodlights" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "362--371" +, precedes = "aesu-iopof-98" +, update = "98.11 devillers, 98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @inproceedings{ak-vgom-95 -, author = "J. Abello and K. Kumar" -, title = "Visibility Graphs and Oriented Matroids" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "147--158" -, keywords = "graph drawing, visibility" -, update = "95.01 tamassia" +, author = "J. Abello and K. Kumar" +, title = "Visibility Graphs and Oriented Matroids" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "147--158" +, keywords = "graph drawing, visibility" +, update = "95.01 tamassia" } @article{alp-vgsp-92 -, author = "J. Abello and H. Lin and S. Pisupati" -, title = "On visibility graphs of simple polygons" -, journal = "Congr. Numer." -, volume = 90 -, year = 1992 -, pages = "119--128" -, update = "98.11 bibrelex" +, author = "J. Abello and H. Lin and S. Pisupati" +, title = "On visibility graphs of simple polygons" +, journal = "Congr. Numer." +, volume = 90 +, year = 1992 +, pages = "119--128" +, update = "98.11 bibrelex" } @book{ad-tg-80 -, author = "H. Abelson and A. A. diSessa" -, title = "Turtle Geometry" -, publisher = "MIT Press" -, address = "Cambridge" -, year = 1980 -, update = "97.03 icking" +, author = "H. Abelson and A. A. diSessa" +, title = "Turtle Geometry" +, publisher = "MIT Press" +, address = "Cambridge" +, year = 1980 +, update = "97.03 icking" } @book{a-ca-80 -, author = "O. Aberth" -, title = "Computable analysis" -, publisher = "McGraw-Hill" -, address = "New York" -, year = 1980 -, update = "98.11 bibrelex" +, author = "O. Aberth" +, title = "Computable analysis" +, publisher = "McGraw-Hill" +, address = "New York" +, year = 1980 +, update = "98.11 bibrelex" } @article{a-gph-88 -, author = "S. Abhyankar" -, title = "Good Points of a Hypersurface" -, journal = "Adv. Math." -, volume = 68 -, number = 2 -, year = 1988 -, pages = "87--256" -, update = "97.11 bibrelex" +, author = "S. Abhyankar" +, title = "Good Points of a Hypersurface" +, journal = "Adv. Math." +, volume = 68 +, number = 2 +, year = 1988 +, pages = "87--256" +, update = "97.11 bibrelex" } @article{a-hragr-76 -, author = "S. Abhyankar" -, title = "Historical Ramblings in Algebraic Geometry and Related Algebra" -, journal = "Amer. Math. Monthly" -, volume = 83 -, number = 6 -, year = 1976 -, pages = "409--448" -, update = "98.03 bibrelex" +, author = "S. Abhyankar" +, title = "Historical Ramblings in Algebraic Geometry and Related Algebra" +, journal = "Amer. Math. Monthly" +, volume = 83 +, number = 6 +, year = 1976 +, pages = "409--448" +, update = "98.03 bibrelex" } @article{ab-arpcs2-87 -, author = "S. Abhyankar and C. Bajaj" -, title = "Automatic Rational Parameterization of Curves and Surfaces {II}: Cubics and Cubicoids" -, journal = "Comput. Aided Design" -, volume = 19 -, number = 2 -, year = 1987 -, pages = "499--502" -, update = "97.11 bibrelex" +, author = "S. Abhyankar and C. Bajaj" +, title = "Automatic Rational Parameterization of Curves and Surfaces {II}: Cubics and Cubicoids" +, journal = "Comput. Aided Design" +, volume = 19 +, number = 2 +, year = 1987 +, pages = "499--502" +, update = "97.11 bibrelex" } @inproceedings{ab-cac-89 -, author = "S. Abhyankar and C. Bajaj" -, title = "Computations with Algebraic Curves" -, booktitle = "Proc. Internat. Sympos. on Symbolic and Algebraic Computation" -, series = "Lecture Notes Comput. Sci." -, volume = 358 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "279--284" -, update = "97.11 bibrelex" +, author = "S. Abhyankar and C. Bajaj" +, title = "Computations with Algebraic Curves" +, booktitle = "Proc. Internat. Sympos. on Symbolic and Algebraic Computation" +, series = "Lecture Notes Comput. Sci." +, volume = 358 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "279--284" +, update = "97.11 bibrelex" } @techreport{ab-arpcs3-86 -, author = "S. Abhyankar and C. Bajal" -, title = "Automatic Rational Parameterization of Curves and Surfaces {III}: {Algebraic} Plane Curves" -, type = "Technical {Report}" -, number = "CSD-TR-619" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1986 -, update = "98.03 bibrelex" +, author = "S. Abhyankar and C. Bajal" +, title = "Automatic Rational Parameterization of Curves and Surfaces {III}: {Algebraic} Plane Curves" +, type = "Technical {Report}" +, number = "CSD-TR-619" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1986 +, update = "98.03 bibrelex" } @article{a-asc-70 -, author = "S. S. Abhyankar" -, title = "Algebraic space curves" -, journal = "Montreal Lecture Notes" -, volume = "??" -, year = 1970 -, update = "98.03 bibrelex" +, author = "S. S. Abhyankar" +, title = "Algebraic space curves" +, journal = "Montreal Lecture Notes" +, volume = "??" +, year = 1970 +, update = "98.03 bibrelex" } @article{ab-arpcs-87 -, author = "S. S. Abhyankar and C. Bajaj" -, title = "Automatic rational parameterization of curves and surfaces {I}: conics and conicoids" -, journal = "Comput. Aided Design" -, volume = 19 -, year = 1987 -, pages = "11--14" -, keywords = "algebraic geometry, design of algorithms, computer graphics, CAD" +, author = "S. S. Abhyankar and C. Bajaj" +, title = "Automatic rational parameterization of curves and surfaces {I}: conics and conicoids" +, journal = "Comput. Aided Design" +, volume = 19 +, year = 1987 +, pages = "11--14" +, keywords = "algebraic geometry, design of algorithms, computer graphics, CAD" } @inproceedings{ac-iiac-89 -, author = "S. S. Abhyankar and S. Chandrasekar" -, title = "Improper intersection of algebraic curves" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 10 +, author = "S. S. Abhyankar and S. Chandrasekar" +, title = "Improper intersection of algebraic curves" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 10 } @inproceedings{acc-dcbia-89 -, author = "S. S. Abhyankar and S. Chandrasekar and V. Chandru" -, title = "Degree complexity bounds on the intersection of algebraic curves" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "88--93" -, cites = "a-asc-70, acc-iasc-88, acc-iiac-88, d-icds-86, g-mrtii-85, h-ac-85, as-tsbac-88, e-acg-87, cegsw-ccbac-88, sr-iag-49, ZZZ" -, update = "98.03 bibrelex" +, author = "S. S. Abhyankar and S. Chandrasekar and V. Chandru" +, title = "Degree complexity bounds on the intersection of algebraic curves" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "88--93" +, cites = "a-asc-70, acc-iasc-88, acc-iiac-88, d-icds-86, g-mrtii-85, h-ac-85, as-tsbac-88, e-acg-87, cegsw-ccbac-88, sr-iag-49, ZZZ" +, update = "98.03 bibrelex" } @techreport{acc-iiac-88 -, author = "S. S. Abhyankar and S. Chandrasekar and V. Chandru" -, title = "Improper intersection of algebraic curves" -, number = "CC-88-24" -, institution = "Purdue University" -, month = sep -, year = 1988 -, update = "98.03 bibrelex" +, author = "S. S. Abhyankar and S. Chandrasekar and V. Chandru" +, title = "Improper intersection of algebraic curves" +, number = "CC-88-24" +, institution = "Purdue University" +, month = sep +, year = 1988 +, update = "98.03 bibrelex" } @techreport{acc-iasc-88 -, author = "S. S. Abhyankar and S. Chandrasekar and V. Chandru" -, title = "Intersection of algebraic space curves" -, type = "Technical {Report}" -, number = "CC-88-13" -, institution = "Dept. Math., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1988 -, precedes = "acc-iasc-91" -, update = "95.05 korneenko" +, author = "S. S. Abhyankar and S. Chandrasekar and V. Chandru" +, title = "Intersection of algebraic space curves" +, type = "Technical {Report}" +, number = "CC-88-13" +, institution = "Dept. Math., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1988 +, precedes = "acc-iasc-91" +, update = "95.05 korneenko" } @article{acc-iasc-91 -, author = "S. S. Abhyankar and S. Chandrasekar and V. Chandru" -, title = "Intersection of algebraic space curves" -, journal = "Discrete Appl. Math." -, volume = 31 -, number = 2 -, year = 1991 -, pages = "81--96" -, keywords = "algebraic curves, intersection" -, succeeds = "acc-iasc-88" -, update = "95.05 korneenko" +, author = "S. S. Abhyankar and S. Chandrasekar and V. Chandru" +, title = "Intersection of algebraic space curves" +, journal = "Discrete Appl. Math." +, volume = 31 +, number = 2 +, year = 1991 +, pages = "81--96" +, keywords = "algebraic curves, intersection" +, succeeds = "acc-iasc-88" +, update = "95.05 korneenko" } @article{a-pthlh-86 -, author = "S. S. Abi-Ezzi" -, title = "The priority tree: {A} hidden-line / hidden-surface approach to ``{PHIGS}''" -, journal = "Comput. Graph. Forum" -, volume = 5 -, number = 4 -, year = 1986 -, pages = "283--289" -, keywords = "hidden line/surface elimination, priority tree" -, update = "95.05 korneenko" +, author = "S. S. Abi-Ezzi" +, title = "The priority tree: {A} hidden-line / hidden-surface approach to ``{PHIGS}''" +, journal = "Comput. Graph. Forum" +, volume = 5 +, number = 4 +, year = 1986 +, pages = "283--289" +, keywords = "hidden line/surface elimination, priority tree" +, update = "95.05 korneenko" } @inproceedings{as-tcshv-91 -, author = "S. S. Abi-Ezzi and L. A. Shirman" -, title = "Tessellation of Curved Surfaces under Highly Varying Transformations" -, editor = "F. H. Post and W. Barth" -, booktitle = "Proc. Eurographics '91" -, publisher = "Elsevier Science" -, address = "Vienna, Austria" -, month = sep -, year = 1991 -, pages = "385--397" -, update = "93.09 held" +, author = "S. S. Abi-Ezzi and L. A. Shirman" +, title = "Tessellation of Curved Surfaces under Highly Varying Transformations" +, editor = "F. H. Post and W. Barth" +, booktitle = "Proc. Eurographics '91" +, publisher = "Elsevier Science" +, address = "Vienna, Austria" +, month = sep +, year = 1991 +, pages = "385--397" +, update = "93.09 held" } @incollection{abbkw-pdb-87 -, author = "E. E. Abola and F. C. Bernstein and S. H. Bryant and T. F. Koetzle and J. Weng" -, title = "Protein data bank" -, editor = "F. H. Allen and G. Bergerhoff and R. Seivers" -, booktitle = "Crystallographic Databases: Information Content, Software Systems, Scientific Applications" -, publisher = "Data Comission of the International Union of Crystallography" -, address = "Bonn/Cambridge/Chester" -, year = 1987 -, update = "98.03 bibrelex" +, author = "E. E. Abola and F. C. Bernstein and S. H. Bryant and T. F. Koetzle and J. Weng" +, title = "Protein data bank" +, editor = "F. H. Allen and G. Bergerhoff and R. Seivers" +, booktitle = "Crystallographic Databases: Information Content, Software Systems, Scientific Applications" +, publisher = "Data Comission of the International Union of Crystallography" +, address = "Bonn/Cambridge/Chester" +, year = 1987 +, update = "98.03 bibrelex" } @article{a-mcp-90 -, author = "Karl Abrahamson" -, title = "On the Modality of Convex Polygons" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "409--419" -, annote = "Random convex polygon defined by hull of $n$ points - from (1) uniform on disc and (2) 2d normal - distribution. Expected modality shown to be - $\Theta(\log h/\log\log h)$, where $h$ is expected - number of hull vertices." +, author = "Karl Abrahamson" +, title = "On the Modality of Convex Polygons" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "409--419" +, annote = "Random convex polygon defined by hull of $n$ points + from (1) uniform on disc and (2) 2d normal + distribution. Expected modality shown to be + $\Theta(\log h/\log\log h)$, where $h$ is expected + number of hull vertices." } @article{adkp-sptca-89 -, author = "K. Abrahamson and N. Dadoun and D. G. Kirkpatrick and T. Przytycka" -, title = "A Simple Parallel Tree Contraction Algorithm" -, journal = "J. Algorithms" -, volume = 10 -, year = 1989 -, pages = "287--302" -, update = "96.09 orourke" +, author = "K. Abrahamson and N. Dadoun and D. G. Kirkpatrick and T. Przytycka" +, title = "A Simple Parallel Tree Contraction Algorithm" +, journal = "J. Algorithms" +, volume = 10 +, year = 1989 +, pages = "287--302" +, update = "96.09 orourke" } @inproceedings{a-cano-88 -, author = "S. Abramowski" -, title = "Collision avoidance for nonrigid objects" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "168--179" -, keywords = "motion planning" -, update = "00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "S. Abramowski" +, title = "Collision avoidance for nonrigid objects" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "168--179" +, keywords = "motion planning" +, update = "00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @incollection{alm-mrkgp-89 -, author = "S. Abramowski and B. Lang and H. M{\"u}ller" -, title = "Moving regular $k$-gons in contact" -, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '88" -, series = "Lecture Notes Comput. Sci." -, volume = 344 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "229--242" -, keywords = "motion planning, contact, regular polygon" -, update = "98.07 smid, 97.11 bibrelex, 95.05 korneenko" +, author = "S. Abramowski and B. Lang and H. M{\"u}ller" +, title = "Moving regular $k$-gons in contact" +, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '88" +, series = "Lecture Notes Comput. Sci." +, volume = 344 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "229--242" +, keywords = "motion planning, contact, regular polygon" +, update = "98.07 smid, 97.11 bibrelex, 95.05 korneenko" } @techreport{am-1dq3d-85 -, author = "S. Abramowski and H. M{\"u}ller" -, title = "$1$-d queries in $3$-d space" -, type = "Report" -, number = "09/85" -, institution = "Fakult{\"a}t Inform., Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1985 -, update = "97.11 bibrelex" +, author = "S. Abramowski and H. M{\"u}ller" +, title = "$1$-d queries in $3$-d space" +, type = "Report" +, number = "09/85" +, institution = "Fakult{\"a}t Inform., Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1985 +, update = "97.11 bibrelex" } @article{am-cano-84 -, author = "S. Abramowski and H. M{\"u}ller" -, title = "Collision Avoidance for Nonrigid Objects" -, journal = "Oper. Res." -, volume = 32 -, year = 1984 -, pages = "165--186" -, update = "93.09 milone+mitchell" +, author = "S. Abramowski and H. M{\"u}ller" +, title = "Collision Avoidance for Nonrigid Objects" +, journal = "Oper. Res." +, volume = 32 +, year = 1984 +, pages = "165--186" +, update = "93.09 milone+mitchell" } @book{am-gm-91 -, author = "S. Abramowski and H. M{\"u}ller" -, title = "{Geometrisches} {Modellieren}" -, publisher = "BI-Wissenschaftsverlag" -, address = "Mannheim" -, year = 1991 -, update = "97.03 icking" +, author = "S. Abramowski and H. M{\"u}ller" +, title = "{Geometrisches} {Modellieren}" +, publisher = "BI-Wissenschaftsverlag" +, address = "Mannheim" +, year = 1991 +, update = "97.03 icking" } @incollection{am-sccvl-87 -, author = "S. Abramowski and H. M{\"u}ller" -, title = "Searching connected components in very large grid graphs" -, booktitle = "Proc. 12th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '86" -, series = "Lecture Notes Comput. Sci." -, volume = 246 -, year = 1987 -, pages = "118--130" -, keywords = "grid graph, motion planning, connected component" -, update = "97.11 bibrelex, 95.05 korneenko" +, author = "S. Abramowski and H. M{\"u}ller" +, title = "Searching connected components in very large grid graphs" +, booktitle = "Proc. 12th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '86" +, series = "Lecture Notes Comput. Sci." +, volume = 246 +, year = 1987 +, pages = "118--130" +, keywords = "grid graph, motion planning, connected component" +, update = "97.11 bibrelex, 95.05 korneenko" } @article{ag-ftfcf-02 -, author = "Aaron Abrams and Robert Shrist" -, title = "Finding Topology in a Factory: {Configuration} Spaces" -, journal = "Amer. Math. Monthly" -, volume = 109 -, number = 2 -, year = 2002 -, pages = "140--150" -, comments = "Several robots" -, update = "02.03 orourke" +, author = "Aaron Abrams and Robert Shrist" +, title = "Finding Topology in a Factory: {Configuration} Spaces" +, journal = "Amer. Math. Monthly" +, volume = 109 +, number = 2 +, year = 2002 +, pages = "140--150" +, comments = "Several robots" +, update = "02.03 orourke" } @article{abcptwz-gmisp-95 -, author = "S. L. Abrams and L. Bardis and C. Chryssostomidis and N. M. Patrikalakis and S. T. Tuohy and F.-E. Wolter and J. Zhou" -, title = "The Geometric Modeling and Interrogation System Praxiteles" -, journal = "Journal of Ship Production" -, volume = 11 -, number = 2 -, year = 1995 -, pages = "116--131" -, update = "95.05 abrams" +, author = "S. L. Abrams and L. Bardis and C. Chryssostomidis and N. M. Patrikalakis and S. T. Tuohy and F.-E. Wolter and J. Zhou" +, title = "The Geometric Modeling and Interrogation System Praxiteles" +, journal = "Journal of Ship Production" +, volume = 11 +, number = 2 +, year = 1995 +, pages = "116--131" +, update = "95.05 abrams" } @article{a-zhadr-28 -, author = "W. Ackermann" -, title = "Zum {Hilbertschen} {Aufbau} der reellen {Zahlen}" -, journal = "Mathematical Annals" -, volume = 99 -, year = 1928 -, pages = "118--133" -, keywords = "Ackermann function" -, update = "95.05 agarwal" +, author = "W. Ackermann" +, title = "Zum {Hilbertschen} {Aufbau} der reellen {Zahlen}" +, journal = "Mathematical Annals" +, volume = 99 +, year = 1928 +, pages = "118--133" +, keywords = "Ackermann function" +, update = "95.05 agarwal" } @article{ahs-itcp-89 -, author = "D. M. Acketa and V. Hauk and D. Surla" -, title = "On the intersection of two convex polygons" -, journal = "Informatica" -, volume = 13 -, number = 4 -, year = 1989 -, pages = "52--57" -, keywords = "intersection, convex polygon" -, update = "95.05 korneenko" +, author = "D. M. Acketa and V. Hauk and D. Surla" +, title = "On the intersection of two convex polygons" +, journal = "Informatica" +, volume = 13 +, number = 4 +, year = 1989 +, pages = "52--57" +, keywords = "intersection, convex polygon" +, update = "95.05 korneenko" } @article{vk-mnecd-82a -, author = "D. M. Acketa and J. {\v Z}uni{\'c}" -, title = "On the maximal number of edges of convex digital polygons included into a square grid" -, journal = "Pocitace a umela inteligencia" -, volume = 1 -, number = 6 -, month = dec -, year = 1982 -, pages = "549--558" -, update = "98.07 bibrelex" +, author = "D. M. Acketa and J. {\v Z}uni{\'c}" +, title = "On the maximal number of edges of convex digital polygons included into a square grid" +, journal = "Pocitace a umela inteligencia" +, volume = 1 +, number = 6 +, month = dec +, year = 1982 +, pages = "549--558" +, update = "98.07 bibrelex" } @inproceedings{az-mnecd-91 -, author = "D. M. Acketa and J. {\v Z}uni{\'c}" -, title = "On the maximal number of edges of convex digital polygons included into a square grid" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "215--218" -, cites = "bl-ndsls-88, hw-itn-68, vk-mnecd-82a, ZZZ" -, update = "98.07 bibrelex" +, author = "D. M. Acketa and J. {\v Z}uni{\'c}" +, title = "On the maximal number of edges of convex digital polygons included into a square grid" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "215--218" +, cites = "bl-ndsls-88, hw-itn-68, vk-mnecd-82a, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{akss-icsac-97 -, author = "Bruno Adam and Pierre Kauffmann and Dominique Schmitt and Jean-Claude Spehner" -, title = "An Increasing--Circle Sweep--Algorithm to Construct the {D}elaunay Diagram in the Plane" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "268--273" -, update = "97.11 jones" +, author = "Bruno Adam and Pierre Kauffmann and Dominique Schmitt and Jean-Claude Spehner" +, title = "An Increasing--Circle Sweep--Algorithm to Construct the {D}elaunay Diagram in the Plane" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "268--273" +, update = "97.11 jones" } -%, number = 4 +%, number = 4 @article{a-vlplc-96 -, author = "Andrew Adamatzky" -, title = "Voronoi-Like Partition of a Lattice in Cellular Automata" -, journal = "Mathematical and Computer Modelling" -, volume = 23 -, year = 1996 -, pages = "" -, keywords = "image processing, Voronoi diagram, cellular automata" -, update = "96.01 jones" -, abstract = "In this paper, we discuss an automata model for parallel +, author = "Andrew Adamatzky" +, title = "Voronoi-Like Partition of a Lattice in Cellular Automata" +, journal = "Mathematical and Computer Modelling" +, volume = 23 +, year = 1996 +, pages = "" +, keywords = "image processing, Voronoi diagram, cellular automata" +, update = "96.01 jones" +, abstract = "In this paper, we discuss an automata model for parallel approximation of the discrete Voronoi diagram. Given a subset of the $n$ labeled nodes of a two-dimensional lattice of $m \times m$ nodes, we wish to construct a Voronoi cell for every given node, i.e., mark such nodes that form @@ -902,90 +902,90 @@ @article{a-vlplc-96 } @article{akv-gdssl-92 -, author = "R. Adamec and M. Klazar and P. Valtr" -, title = "Generalized {Davenport}-{Schinzel} sequences with linear upper bound" -, journal = "Discrete Math." -, volume = 108 -, year = 1992 -, pages = "219--229" -, update = "95.05 agarwal" +, author = "R. Adamec and M. Klazar and P. Valtr" +, title = "Generalized {Davenport}-{Schinzel} sequences with linear upper bound" +, journal = "Discrete Math." +, volume = 108 +, year = 1992 +, pages = "219--229" +, update = "95.05 agarwal" } @article{aa-ntsrm-76 -, author = "M. Adamowich and A. Albano" -, title = "Nesting twodimensional shapes in rectangular modules" -, journal = "Comput. Aided Design" -, volume = 2 -, number = 1 -, year = 1976 -, pages = "27--33" -, keywords = "packing" -, update = "95.05 korneenko" +, author = "M. Adamowich and A. Albano" +, title = "Nesting twodimensional shapes in rectangular modules" +, journal = "Comput. Aided Design" +, volume = 2 +, number = 1 +, year = 1976 +, pages = "27--33" +, keywords = "packing" +, update = "95.05 korneenko" } @article{as-mith3-91 -, author = "C. Adams and W. Sherman" -, title = "Minimum ideal triangulations of hyperbolic $3$-manifolds" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "135--153" +, author = "C. Adams and W. Sherman" +, title = "Minimum ideal triangulations of hyperbolic $3$-manifolds" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "135--153" } @book{a-kb-94 -, author = "C. C. Adams" -, title = "The Knot Book" -, publisher = "W. H. Freeman" -, address = "New York" -, year = 1994 -, update = "98.07 orourke, 97.11 bibrelex" +, author = "C. C. Adams" +, title = "The Knot Book" +, publisher = "W. H. Freeman" +, address = "New York" +, year = 1994 +, update = "98.07 orourke, 97.11 bibrelex" } @article{ab-cdcg-86 -, author = "J. A. Adams and L. M. Billow" -, title = "Combining descriptive and computational geometry" -, journal = "CIME" -, volume = 4 -, number = 6 -, year = 1986 -, pages = "69--76" -, keywords = "descriptive geometry, three-dimensional" -, update = "95.05 korneenko" +, author = "J. A. Adams and L. M. Billow" +, title = "Combining descriptive and computational geometry" +, journal = "CIME" +, volume = 4 +, number = 6 +, year = 1986 +, pages = "69--76" +, keywords = "descriptive geometry, three-dimensional" +, update = "95.05 korneenko" } @inproceedings{agj-lcsr-00 -, author = "Udo Adamy and Joachim Giesen and Matthias John" -, title = "The {$\lambda$}-Complex and Surface Reconstruction" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "14--17" -, update = "00.03 bibrelex" +, author = "Udo Adamy and Joachim Giesen and Matthias John" +, title = "The {$\lambda$}-Complex and Surface Reconstruction" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "14--17" +, update = "00.03 bibrelex" } @inproceedings{as-ewcqc-98 -, author = "Udo Adamy and Raimund Seidel" -, title = "On the Exact Worst Case Query Complexity of Planar Point Location" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "609--618" -, update = "99.07 bibrelex, 98.07 mitchell" +, author = "Udo Adamy and Raimund Seidel" +, title = "On the Exact Worst Case Query Complexity of Planar Point Location" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "609--618" +, update = "99.07 bibrelex, 98.07 mitchell" } @article{aos-mlcps-94 -, author = "John Adegeest and Mark Overmars and Jack Snoeyink" -, title = "Minimum-link $C$-oriented paths: {Single}-source queries" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, number = 1 -, year = 1994 -, pages = "39--51" -, keywords = "shortest path, link distance, rectilinear link distance" -, update = "98.03 mitchell, 96.09 devillers, 96.05 mitchell" -, annote = "They consider a set of obstacles given by $n$ line +, author = "John Adegeest and Mark Overmars and Jack Snoeyink" +, title = "Minimum-link $C$-oriented paths: {Single}-source queries" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, number = 1 +, year = 1994 +, pages = "39--51" +, keywords = "shortest path, link distance, rectilinear link distance" +, update = "98.03 mitchell, 96.09 devillers, 96.05 mitchell" +, annote = "They consider a set of obstacles given by $n$ line segments having disjoint interiors, and being at $c$ different fixed orientations. For a fixed source point, they build a data structure (SPM) of size @@ -999,758 +999,758 @@ @article{aos-mlcps-94 } @phdthesis{a-ap-71 -, author = "I. Adler" -, title = "Abstract Polytopes" -, school = "Dept. Operations Research, Stanford University" -, year = 1971 -, keywords = "doctoral thesis" -, update = "97.03 gaertner+salinger" +, author = "I. Adler" +, title = "Abstract Polytopes" +, school = "Dept. Operations Research, Stanford University" +, year = 1971 +, keywords = "doctoral thesis" +, update = "97.03 gaertner+salinger" } @inproceedings{ab-palpa-92 -, author = "I. Adler and P. A. Beling" -, title = "Polynomial algorithms for linear programming over the algebraic numbers" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "483--494" +, author = "I. Adler and P. A. Beling" +, title = "Polynomial algorithms for linear programming over the algebraic numbers" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "483--494" } @article{ad-mdap-74 -, author = "I. Adler and G. B. Dantzig" -, title = "Maximum diameter of abstract polytopes" -, journal = "Math. Programming Studies" -, volume = 1 -, year = 1974 -, pages = "20--40" -, update = "97.03 gaertner+salinger" +, author = "I. Adler and G. B. Dantzig" +, title = "Maximum diameter of abstract polytopes" +, journal = "Math. Programming Studies" +, volume = 1 +, year = 1974 +, pages = "20--40" +, update = "97.03 gaertner+salinger" } @article{adm-eaaap-74 -, author = "I. Adler and G. B. Dantzig and K. Murty" -, title = "Existence of A-avoiding a-paths in abstract polytopes" -, journal = "Math. Programming Studies" -, volume = 1 -, year = 1974 -, pages = "41--42" -, update = "97.03 gaertner+salinger" +, author = "I. Adler and G. B. Dantzig and K. Murty" +, title = "Existence of A-avoiding a-paths in abstract polytopes" +, journal = "Math. Programming Studies" +, volume = 1 +, year = 1974 +, pages = "41--42" +, update = "97.03 gaertner+salinger" } @techreport{aks-svsml-83 -, author = "I. Adler and R. Karp and R. Shamir" -, title = "A simplex variant solving an $m \times d$ linear program in {$O(\min(m^{2},d^{2}))$} expected number of pivot steps" -, type = "Report" -, number = "UCB/CSD 83/158" -, institution = "Comput. Sci. Div., Univ. California" -, address = "Berkeley, CA" -, year = 1983 +, author = "I. Adler and R. Karp and R. Shamir" +, title = "A simplex variant solving an $m \times d$ linear program in {$O(\min(m^{2},d^{2}))$} expected number of pivot steps" +, type = "Report" +, number = "UCB/CSD 83/158" +, institution = "Comput. Sci. Div., Univ. California" +, address = "Berkeley, CA" +, year = 1983 } @inproceedings{am-sawan-84 -, author = "I. Adler and N. Megiddo" -, title = "A simplex algorithm whose average number of steps is bounded between two quadratic functions of the smaller dimension" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "312--323" -, precedes = "am-sawan-85" +, author = "I. Adler and N. Megiddo" +, title = "A simplex algorithm whose average number of steps is bounded between two quadratic functions of the smaller dimension" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "312--323" +, precedes = "am-sawan-85" } @article{am-sawan-85 -, author = "I. Adler and N. Megiddo" -, title = "A simplex algorithm whose average number of steps is bounded between two quadratic functions of the smaller dimension" -, journal = "J. ACM" -, volume = 32 -, year = 1985 -, pages = "871--895" -, keywords = "average-case analysis, linear programming" -, succeeds = "am-sawan-84" +, author = "I. Adler and N. Megiddo" +, title = "A simplex algorithm whose average number of steps is bounded between two quadratic functions of the smaller dimension" +, journal = "J. ACM" +, volume = 32 +, year = 1985 +, pages = "871--895" +, keywords = "average-case analysis, linear programming" +, succeeds = "am-sawan-84" } @article{amt-nrbsa-84 -, author = "I. Adler and N. Megiddo and M. J. Todd" -, title = "New results on the behavior of simplex algorithms" -, journal = "Bull. Amer. Math. Soc." -, volume = 11 -, year = 1984 -, pages = "378--382" -, keywords = "average-case analysis, linear programming" +, author = "I. Adler and N. Megiddo and M. J. Todd" +, title = "New results on the behavior of simplex algorithms" +, journal = "Bull. Amer. Math. Soc." +, volume = 11 +, year = 1984 +, pages = "378--382" +, keywords = "average-case analysis, linear programming" } @article{as-lmpap-76 -, author = "I. Adler and R. Saigal" -, title = "Long monotone paths in abstract polytopes" -, journal = "Math. Oper. Res." -, volume = 1 -, number = 1 -, year = 1976 -, pages = "89--95" -, update = "97.03 gaertner+salinger" +, author = "I. Adler and R. Saigal" +, title = "Long monotone paths in abstract polytopes" +, journal = "Math. Oper. Res." +, volume = 1 +, number = 1 +, year = 1976 +, pages = "89--95" +, update = "97.03 gaertner+salinger" } @techreport{as-rssua-90 -, author = "I. Adler and R. Shamir" -, title = "A randomization scheme for speeding up algorithms for linear and convex quadratic programming problems with a high constraints-to-variables ratio" -, type = "Technical {Report}" -, number = "21-90" -, institution = "Rutgers Univ." -, address = "New Brunswick, NJ" -, month = may -, year = 1990 -, update = "98.03 bibrelex" +, author = "I. Adler and R. Shamir" +, title = "A randomization scheme for speeding up algorithms for linear and convex quadratic programming problems with a high constraints-to-variables ratio" +, type = "Technical {Report}" +, number = "21-90" +, institution = "Rutgers Univ." +, address = "New Brunswick, NJ" +, month = may +, year = 1990 +, update = "98.03 bibrelex" } @article{as-rssua-93 -, author = "I. Adler and R. Shamir" -, title = "A randomization scheme for speeding up algorithms for linear and convex quadratic programming problems with a high constraints-to-variables ratio" -, journal = "Math. Prog." -, volume = 61 -, year = 1993 -, pages = "39--52" -, update = "97.03 clarkson" +, author = "I. Adler and R. Shamir" +, title = "A randomization scheme for speeding up algorithms for linear and convex quadratic programming problems with a high constraints-to-variables ratio" +, journal = "Math. Prog." +, volume = 61 +, year = 1993 +, pages = "39--52" +, update = "97.03 clarkson" } @inproceedings{abk-pslb-95 -, author = "M. Adler and J. W. Byers and R. M. Karp" -, title = "Parallel sorting with limited bandwidth" -, booktitle = "Proc. 7th ACM Sympos. Parallel Algorithms Architect." -, year = 1995 -, pages = "129--136" -, update = "96.09 orourke" +, author = "M. Adler and J. W. Byers and R. M. Karp" +, title = "Parallel sorting with limited bandwidth" +, booktitle = "Proc. 7th ACM Sympos. Parallel Algorithms Architect." +, year = 1995 +, pages = "129--136" +, update = "96.09 orourke" } @article{as-rprs-92 -, author = "F. Affentranger and R. Schneider" -, title = "Random projections of regular simplices" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "219--226" +, author = "F. Affentranger and R. Schneider" +, title = "Random projections of regular simplices" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "219--226" } @article{aw-churp-91 -, author = "F. Affentranger and J. A. Wieacker" -, title = "On the convex hull of uniform random points in a simple $d$-polytope" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "291--305" +, author = "F. Affentranger and J. A. Wieacker" +, title = "On the convex hull of uniform random points in a simple $d$-polytope" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "291--305" } @inproceedings{asw-emstb-90 -, author = "Pankaj Agarwal and Otfried Schwarzkopf and Emo Welzl" -, title = "Euclidean Minimum Spanning Trees and Bichromatic Closest Pairs" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 3 -, precedes = "aesw-emstb-90" -, update = "01.04 icking, 00.03 bibrelex" +, author = "Pankaj Agarwal and Otfried Schwarzkopf and Emo Welzl" +, title = "Euclidean Minimum Spanning Trees and Bichromatic Closest Pairs" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 3 +, precedes = "aesw-emstb-90" +, update = "01.04 icking, 00.03 bibrelex" } @inproceedings{a-dapal-89 -, author = "Pankaj K. Agarwal" -, title = "A deterministic algorithm for partitioning arrangements of lines and its applications" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "11--22" -, cites = "a-pal1e-90, a-pal2a-90, a-rsoas-89, as-rbida-88, aks-scps-83, aegs-ibcmf-89, c-rcsi-86, c-prsig-87, c-tbsns-88, ce-oails-88, cf-dvrsi-88, cw-rsvdc-88, c-sdsno-84, c-narsc-87, c-arscg-88, cegsw-ccbac-88, cs-adpch-88, ctv-flvat-88i, csss-oss-88, e-acg-87, eghsssw-irals-89, egs-cmfal-88, egs-oplms-86, eos-calha-86, ew-cbtda-86, gos-ilsrs-88, hw-ensrq-86, ms-rcibt-88, m-cen-89, m-splcn-91, m-apcad-83, m-fppa1-88, ps-cgi-85, st-pplup-86, st-epdg-83, w-mksfs-86, w-pttco-88, w-enh-88, ZZZ" -, update = "98.03 bibrelex, 96.05 agarwal" +, author = "Pankaj K. Agarwal" +, title = "A deterministic algorithm for partitioning arrangements of lines and its applications" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "11--22" +, cites = "a-pal1e-90, a-pal2a-90, a-rsoas-89, as-rbida-88, aks-scps-83, aegs-ibcmf-89, c-rcsi-86, c-prsig-87, c-tbsns-88, ce-oails-88, cf-dvrsi-88, cw-rsvdc-88, c-sdsno-84, c-narsc-87, c-arscg-88, cegsw-ccbac-88, cs-adpch-88, ctv-flvat-88i, csss-oss-88, e-acg-87, eghsssw-irals-89, egs-cmfal-88, egs-oplms-86, eos-calha-86, ew-cbtda-86, gos-ilsrs-88, hw-ensrq-86, ms-rcibt-88, m-cen-89, m-splcn-91, m-apcad-83, m-fppa1-88, ps-cgi-85, st-pplup-86, st-epdg-83, w-mksfs-86, w-pttco-88, w-enh-88, ZZZ" +, update = "98.03 bibrelex, 96.05 agarwal" } @inproceedings{a-anspt-91 -, author = "Pankaj K. Agarwal" -, title = "Applications of a new space partition technique" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, nickname = "WADS '91" -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, year = 1991 -, pages = "379--392" -, keywords = "$d$-dimensional, ray tracing, hidden line/surface elimination, minimal spanning tree, space partition" -, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 agarwal, 95.09 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal" +, title = "Applications of a new space partition technique" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, nickname = "WADS '91" +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, year = 1991 +, pages = "379--392" +, keywords = "$d$-dimensional, ray tracing, hidden line/surface elimination, minimal spanning tree, space partition" +, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 agarwal, 95.09 agarwal, 95.05 korneenko" } @mastersthesis{a-ga-85 -, author = "Pankaj K. Agarwal" -, title = "Geometric algorithms" -, type = "M.{Sc}. Thesis" -, school = "Dept. Comput. Sci., Univ. California" -, address = "Santa Barbara, CA" -, year = 1985 -, note = "Report TRCS 85-17" -, keywords = "master thesis" -, update = "96.05 agarwal, 93.05 jones" +, author = "Pankaj K. Agarwal" +, title = "Geometric algorithms" +, type = "M.{Sc}. Thesis" +, school = "Dept. Comput. Sci., Univ. California" +, address = "Santa Barbara, CA" +, year = 1985 +, note = "Report TRCS 85-17" +, keywords = "master thesis" +, update = "96.05 agarwal, 93.05 jones" } @techreport{a-gpia-91t -, author = "Pankaj K. Agarwal" -, title = "Geometric partitioning and its applications" -, type = "Report" -, number = "CS-1991-27" -, institution = "Dept. Comput. Sci., Duke Univ." -, address = "Durham, NC" -, year = 1991 -, keywords = "random sampling, partition, arrangement, point location" -, precedes = "a-gpia-91i" -, update = "98.11 bibrelex, 96.05 agarwal, 94.01 smid" +, author = "Pankaj K. Agarwal" +, title = "Geometric partitioning and its applications" +, type = "Report" +, number = "CS-1991-27" +, institution = "Dept. Comput. Sci., Duke Univ." +, address = "Durham, NC" +, year = 1991 +, keywords = "random sampling, partition, arrangement, point location" +, precedes = "a-gpia-91i" +, update = "98.11 bibrelex, 96.05 agarwal, 94.01 smid" } @incollection{a-gpia-91i -, author = "Pankaj K. Agarwal" -, title = "Geometric partitioning and its applications" -, editor = "J. E. Goodman and R. Pollack and W. Steiger" -, booktitle = "Computational Geometry: Papers from the DIMACS Special Year" -, publisher = "American Mathematical Society" -, year = 1991 -, keywords = "random sampling, partition, arrangement, point location" -, comments = "survey paper --- cuttings, range search" -, succeeds = "a-gpia-91t" -, update = "98.11 bibrelex, 98.07 agarwal, 96.05 agarwal, 93.09 matousek" +, author = "Pankaj K. Agarwal" +, title = "Geometric partitioning and its applications" +, editor = "J. E. Goodman and R. Pollack and W. Steiger" +, booktitle = "Computational Geometry: Papers from the DIMACS Special Year" +, publisher = "American Mathematical Society" +, year = 1991 +, keywords = "random sampling, partition, arrangement, point location" +, comments = "survey paper --- cuttings, range search" +, succeeds = "a-gpia-91t" +, update = "98.11 bibrelex, 98.07 agarwal, 96.05 agarwal, 93.09 matousek" } @phdthesis{a-idaac-89 -, author = "Pankaj K. Agarwal" -, title = "Intersection and decomposition algorithms for arrangements of curves in the plane" -, school = "Dept. Comput. Sci., New York Univ." -, month = aug -, year = 1989 -, keywords = "doctoral thesis" -, update = "98.07 agarwal, 98.03 mitchell, 97.11 bibrelex" +, author = "Pankaj K. Agarwal" +, title = "Intersection and decomposition algorithms for arrangements of curves in the plane" +, school = "Dept. Comput. Sci., New York Univ." +, month = aug +, year = 1989 +, keywords = "doctoral thesis" +, update = "98.07 agarwal, 98.03 mitchell, 97.11 bibrelex" } @book{a-idapa-91 -, author = "Pankaj K. Agarwal" -, title = "Intersection and decomposition algorithms for planar arrangements" -, publisher = "Cambridge University Press" -, address = "New York, NY" -, year = 1991 -, keywords = "arrangement, partition, Davenport-Schinzel sequences" -, update = "96.05 agarwal" +, author = "Pankaj K. Agarwal" +, title = "Intersection and decomposition algorithms for planar arrangements" +, publisher = "Cambridge University Press" +, address = "New York, NY" +, year = 1991 +, keywords = "arrangement, partition, Davenport-Schinzel sequences" +, update = "96.05 agarwal" } @techreport{a-slp3d-93 -, author = "Pankaj K. Agarwal" -, title = "On stabbing lines for polyhedra in $3$d" -, type = "Technical Report" -, number = "CS-1993-09" -, institution = "Department Computer Science, Duke University" -, year = 1993 -, update = "96.05 agarwal, 94.01 matousek" +, author = "Pankaj K. Agarwal" +, title = "On stabbing lines for polyhedra in $3$d" +, type = "Technical Report" +, number = "CS-1993-09" +, institution = "Department Computer Science, Duke University" +, year = 1993 +, update = "96.05 agarwal, 94.01 matousek" } @article{a-slp3d-94 -, author = "P. K. Agarwal" -, title = "On stabbing lines for polyhedra in $3$d" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "177--189" -, update = "96.09 devillers, 96.05 agarwal" +, author = "P. K. Agarwal" +, title = "On stabbing lines for polyhedra in $3$d" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "177--189" +, update = "96.09 devillers, 96.05 agarwal" } @article{a-pal1e-90 -, author = "Pankaj K. Agarwal" -, title = "Partitioning arrangements of lines: {I}. {An} efficient deterministic algorithm" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "449--483" -, keywords = "deterministic partitioning, random sampling, arrangements of lines" -, update = "96.05 agarwal" +, author = "Pankaj K. Agarwal" +, title = "Partitioning arrangements of lines: {I}. {An} efficient deterministic algorithm" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "449--483" +, keywords = "deterministic partitioning, random sampling, arrangements of lines" +, update = "96.05 agarwal" } @article{a-pal2a-90 -, author = "Pankaj K. Agarwal" -, title = "Partitioning arrangements of lines: {II}. {Applications}" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "533--573" -, keywords = "random sampling, arrangements, divide-and-conquer" -, update = "96.05 agarwal" +, author = "Pankaj K. Agarwal" +, title = "Partitioning arrangements of lines: {II}. {Applications}" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "533--573" +, keywords = "random sampling, arrangements, divide-and-conquer" +, update = "96.05 agarwal" } @techreport{a-rs-96 -, author = "Pankaj K. Agarwal" -, title = "Range searching" -, type = "Report" -, number = "CS-1996-05" -, institution = "Dept. Comput. Sci., Duke Univ." -, address = "Durham, NC" -, year = 1996 -, update = "96.09 agarwal" +, author = "Pankaj K. Agarwal" +, title = "Range searching" +, type = "Report" +, number = "CS-1996-05" +, institution = "Dept. Comput. Sci., Duke Univ." +, address = "Durham, NC" +, year = 1996 +, update = "96.09 agarwal" } @incollection{a-rs-97 -, author = "Pankaj K. Agarwal" -, title = "Range searching" -, chapter = 31 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "575--598" -, update = "98.07 agarwal, 98.03 mitchell, 97.11 orourke" +, author = "Pankaj K. Agarwal" +, title = "Range searching" +, chapter = 31 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "575--598" +, update = "98.07 agarwal, 98.03 mitchell, 97.11 orourke" } @inproceedings{a-rsoas-89 -, author = "Pankaj K. Agarwal" -, title = "Ray shooting and other applications of spanning trees with low stabbing number" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "315--325" -, precedes = "a-rsoas-92" -, cites = "a-dapal-89, a-pal1e-90, a-pal2a-90, a-rsoas-92, cw-rsvdc-88, c-tbsns-88, c-prsig-87, cg-vippg-85, cg-fc1ds-86, cg-fc2a-86, c-narsc-87, cegsw-ccbac-88, c-sssl-86, d-qbhle-86, de-ssio-87, dsst-mdsp-89, eg-tsa-89, egppss-acptc-88, eghsssw-irals-88, egs-cmfal-88, egs-oplms-86, eos-calha-86, ew-hrsls-86, ghlst-ltavs-87, gos-ilsrs-88t, gss-gmppt-88, gy-tsr-83, hw-ensrq-87, k-osps-83, m-wcohs-87, m-cen-89, m-splcn-91, pss-stsps-88, so-wcoac-86, st-pplup-86, w-pttco-88, ZZZ" -, update = "98.03 bibrelex, 96.05 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal" +, title = "Ray shooting and other applications of spanning trees with low stabbing number" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "315--325" +, precedes = "a-rsoas-92" +, cites = "a-dapal-89, a-pal1e-90, a-pal2a-90, a-rsoas-92, cw-rsvdc-88, c-tbsns-88, c-prsig-87, cg-vippg-85, cg-fc1ds-86, cg-fc2a-86, c-narsc-87, cegsw-ccbac-88, c-sssl-86, d-qbhle-86, de-ssio-87, dsst-mdsp-89, eg-tsa-89, egppss-acptc-88, eghsssw-irals-88, egs-cmfal-88, egs-oplms-86, eos-calha-86, ew-hrsls-86, ghlst-ltavs-87, gos-ilsrs-88t, gss-gmppt-88, gy-tsr-83, hw-ensrq-87, k-osps-83, m-wcohs-87, m-cen-89, m-splcn-91, pss-stsps-88, so-wcoac-86, st-pplup-86, w-pttco-88, ZZZ" +, update = "98.03 bibrelex, 96.05 agarwal, 95.05 korneenko" } @article{a-rsoas-92 -, author = "Pankaj K. Agarwal" -, title = "Ray shooting and other applications of spanning trees with low stabbing number" -, journal = "SIAM J. Comput." -, volume = 21 -, year = 1992 -, pages = "540--570" -, keywords = "ray shooting, visibility, spanning trees, partition trees" -, succeeds = "a-rsoas-89" -, update = "96.05 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal" +, title = "Ray shooting and other applications of spanning trees with low stabbing number" +, journal = "SIAM J. Comput." +, volume = 21 +, year = 1992 +, pages = "540--570" +, keywords = "ray shooting, visibility, spanning trees, partition trees" +, succeeds = "a-rsoas-89" +, update = "96.05 agarwal, 95.05 korneenko" } % yes, "farthest" @inproceedings{aaakss-cefns-89 -, author = "Pankaj K. Agarwal and A. Aggarwal and B. Aronov and S. R. Kosaraju and B. Schieber and Subhash Suri" -, title = "Computing external-farthest neighbors for a simple polygon" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 45 -, keywords = "furthest neighbors, geodesic distance, simple polygon, diameter" -, precedes = "aaakss-cefns-91" -, update = "98.03 mitchell, 96.05 agarwal" +, author = "Pankaj K. Agarwal and A. Aggarwal and B. Aronov and S. R. Kosaraju and B. Schieber and Subhash Suri" +, title = "Computing external-farthest neighbors for a simple polygon" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 45 +, keywords = "furthest neighbors, geodesic distance, simple polygon, diameter" +, precedes = "aaakss-cefns-91" +, update = "98.03 mitchell, 96.05 agarwal" } % yes, "farthest" @article{aaakss-cefns-91 -, author = "Pankaj K. Agarwal and A. Aggarwal and B. Aronov and S. R. Kosaraju and B. Schieber and Subhash Suri" -, title = "Computing external farthest neighbors for a simple polygon" -, journal = "Discrete Appl. Math." -, volume = 31 -, number = 2 -, year = 1991 -, pages = "97--111" -, keywords = "furthest neighbors, geodesic distance, simple polygon, diameter" -, succeeds = "aaakss-cefns-89" -, update = "98.03 mitchell, 96.05 agarwal" +, author = "Pankaj K. Agarwal and A. Aggarwal and B. Aronov and S. R. Kosaraju and B. Schieber and Subhash Suri" +, title = "Computing external farthest neighbors for a simple polygon" +, journal = "Discrete Appl. Math." +, volume = 31 +, number = 2 +, year = 1991 +, pages = "97--111" +, keywords = "furthest neighbors, geodesic distance, simple polygon, diameter" +, succeeds = "aaakss-cefns-89" +, update = "98.03 mitchell, 96.05 agarwal" } @inproceedings{aaas-cvgbr-93 -, author = "Pankaj K. Agarwal and N. Alon and B. Aronov and Subhash Suri" -, title = "Can visibility graphs be represented compactly?" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "338--347" -, cites = "ast-apsgo-94, as-pm-92, as-cldsp-90, c-tpca-82, c-lbors2-90, c-lbcpr-89, cegs-ablsp-94, cg-vippg-89, cr-ccpso-91, et-psant-41, f-lbcor-81, gm-osacv-91, hw-itn-79, ks-pgt-67, s-tfpgs-38, t-cgcbs-84, w-cvgnl-85, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex+mitchell, 96.05 agarwal, 93.09 jones" +, author = "Pankaj K. Agarwal and N. Alon and B. Aronov and Subhash Suri" +, title = "Can visibility graphs be represented compactly?" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "338--347" +, cites = "ast-apsgo-94, as-pm-92, as-cldsp-90, c-tpca-82, c-lbors2-90, c-lbcpr-89, cegs-ablsp-94, cg-vippg-89, cr-ccpso-91, et-psant-41, f-lbcor-81, gm-osacv-91, hw-itn-79, ks-pgt-67, s-tfpgs-38, t-cgcbs-84, w-cvgnl-85, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex+mitchell, 96.05 agarwal, 93.09 jones" } @article{aaas-cvgbr-94 -, author = "Pankaj K. Agarwal and N. Alon and B. Aronov and Subhash Suri" -, title = "Can visibility graphs be represented compactly?" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "347--365" -, update = "98.03 mitchell, 96.05 agarwal, 95.01 smid" +, author = "Pankaj K. Agarwal and N. Alon and B. Aronov and Subhash Suri" +, title = "Can visibility graphs be represented compactly?" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "347--365" +, update = "98.03 mitchell, 96.05 agarwal, 95.01 smid" } @inproceedings{aaas-lpmpc-97 -, author = "Pankaj K. Agarwal and Nina Amenta and Boris Aronov and Micha Sharir" -, title = "Largest placements and motion planning of a convex polygon" -, editor = "Jean-Paul Laumond and Mark Overmars" -, booktitle = "Algorithms for Robotic Motion and Manipulation" -, nickname = "WAFR '96" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1997 -, pages = "143--154" -, precedes = "aas-mpcpp-97" -, update = "01.04 icking, 98.11 bibrelex, 98.07 agarwal, 97.11 aronov" -, annote = "Proc. 1996 Workshop on the Algorithmic Foundations of Robotics" +, author = "Pankaj K. Agarwal and Nina Amenta and Boris Aronov and Micha Sharir" +, title = "Largest placements and motion planning of a convex polygon" +, editor = "Jean-Paul Laumond and Mark Overmars" +, booktitle = "Algorithms for Robotic Motion and Manipulation" +, nickname = "WAFR '96" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1997 +, pages = "143--154" +, precedes = "aas-mpcpp-97" +, update = "01.04 icking, 98.11 bibrelex, 98.07 agarwal, 97.11 aronov" +, annote = "Proc. 1996 Workshop on the Algorithmic Foundations of Robotics" } @article{aas-lpocp-98 -, author = "Pankaj K. Agarwal and Nina Amenta and Micha Sharir" -, title = "Largest Placement of One Convex Polygon Inside Another" -, journal = "Discrete Comput. Geom." -, succeeds = "aas-mpcpp-97" -, update = "01.04 icking, 98.11 bibrelex, 97.11 bibrelex" +, author = "Pankaj K. Agarwal and Nina Amenta and Micha Sharir" +, title = "Largest Placement of One Convex Polygon Inside Another" +, journal = "Discrete Comput. Geom." +, succeeds = "aas-mpcpp-97" +, update = "01.04 icking, 98.11 bibrelex, 97.11 bibrelex" } @techreport{aas-pocpi-95 -, author = "P. K. Agarwal and N. Amenta and Micha Sharir" -, title = "Placement of one convex polygon inside another" -, type = "Tech. {Report}" -, number = "CS-1995-29" -, institution = "Duke University" -, year = 1995 -, keywords = "collision detection, motion planning" -, update = "98.03 mitchell, 96.05 agarwal" +, author = "P. K. Agarwal and N. Amenta and Micha Sharir" +, title = "Placement of one convex polygon inside another" +, type = "Tech. {Report}" +, number = "CS-1995-29" +, institution = "Duke University" +, year = 1995 +, keywords = "collision detection, motion planning" +, update = "98.03 mitchell, 96.05 agarwal" } @article{aas-pocpi-98 -, author = "P. K. Agarwal and N. Amenta and M. Sharir" -, title = "Placement of one convex polygon inside another" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "95--104" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "P. K. Agarwal and N. Amenta and M. Sharir" +, title = "Placement of one convex polygon inside another" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "95--104" +, update = "98.07 agarwal, 98.03 agarwal" } @inproceedings{aabv-iedpl-99 -, author = "Pankaj K. Agarwal and Lars Arge and G. Brodal and Jeffrey S. Vitter" -, title = "I/O-efficient dynamic point location in monotone subdivisions" -, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1999 -, pages = "11--20" -, update = "99.03 agarwal" +, author = "Pankaj K. Agarwal and Lars Arge and G. Brodal and Jeffrey S. Vitter" +, title = "I/O-efficient dynamic point location in monotone subdivisions" +, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1999 +, pages = "11--20" +, update = "99.03 agarwal" } @inproceedings{aae-imp-00 -, author = "P. K. Agarwal and L. Arge and J. Erickson" -, title = "Indexing moving points" -, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." -, year = 2000 -, note = "175--186" -, update = "00.11 smid, 00.07 agarwal" +, author = "P. K. Agarwal and L. Arge and J. Erickson" +, title = "Indexing moving points" +, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." +, year = 2000 +, note = "175--186" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{aaefv-eslc-98 -, author = "P. K. Agarwal and L. Arge and J. Erickson and P. G. Franciosa and J. S. Vitter" -, title = "Efficient Searching with Linear Constraints" -, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." -, year = 1998 -, note = "to appear" -, update = "98.03 agarwal" +, author = "P. K. Agarwal and L. Arge and J. Erickson and P. G. Franciosa and J. S. Vitter" +, title = "Efficient Searching with Linear Constraints" +, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." +, year = 1998 +, note = "to appear" +, update = "98.03 agarwal" } @inproceedings{aamvv-ieacl-98 -, author = "Pankaj K. Agarwal and Lars Arge and T. M. Murali and Kasturi R. Varadarajan and Jeffrey S. Vitter" -, title = "{I/O}-Efficient Algorithms for Contour-Line Extraction and Planar Graph Blocking" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "117--126" -, update = "99.07 bibrelex, 98.07 mitchell" +, author = "Pankaj K. Agarwal and Lars Arge and T. M. Murali and Kasturi R. Varadarajan and Jeffrey S. Vitter" +, title = "{I/O}-Efficient Algorithms for Contour-Line Extraction and Planar Graph Blocking" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "117--126" +, update = "99.07 bibrelex, 98.07 mitchell" } @techreport{aa-cfi-89 -, author = "Pankaj K. Agarwal and B. Aronov" -, title = "Counting facets and incidences" -, type = "Report" -, number = "90-38" -, institution = "DIMACS, Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1989 -, keywords = "combinatorial geometry, combinatorial complexity, hyperplane arrangements, triangle arrangements" -, precedes = "aa-cfi-92" -, update = "96.05 agarwal" +, author = "Pankaj K. Agarwal and B. Aronov" +, title = "Counting facets and incidences" +, type = "Report" +, number = "90-38" +, institution = "DIMACS, Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1989 +, keywords = "combinatorial geometry, combinatorial complexity, hyperplane arrangements, triangle arrangements" +, precedes = "aa-cfi-92" +, update = "96.05 agarwal" } @article{aa-cfi-92 -, author = "Pankaj K. Agarwal and B. Aronov" -, title = "Counting facets and incidences" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "359--369" -, keywords = "combinatorial geometry, combinatorial complexity, hyperplane arrangements, triangle arrangements" -, succeeds = "aa-cfi-89" -, update = "96.05 agarwal" +, author = "Pankaj K. Agarwal and B. Aronov" +, title = "Counting facets and incidences" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "359--369" +, keywords = "combinatorial geometry, combinatorial complexity, hyperplane arrangements, triangle arrangements" +, succeeds = "aa-cfi-89" +, update = "96.05 agarwal" } @article{aacs-lalsp-98 -, author = "P. K. Agarwal and B. Aronov and T. M. Chan and M. Sharir" -, title = "On Levels in Arrangements of Lines, Segments, Planes, and Triangles" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "315--331" -, update = "98.07 agarwal+smid, 98.03 agarwal" +, author = "P. K. Agarwal and B. Aronov and T. M. Chan and M. Sharir" +, title = "On Levels in Arrangements of Lines, Segments, Planes, and Triangles" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "315--331" +, update = "98.07 agarwal+smid, 98.03 agarwal" } @inproceedings{aahs-aeamw-99 -, author = "Pankaj K. Agarwal and Boris Aronov and Sariel Har-Peled and Micha Sharir" -, title = "Approximation and Exact Algorithms for Minimum-Width Annuli and Shells" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "380--389" -, update = "99.07 devillers" +, author = "Pankaj K. Agarwal and Boris Aronov and Sariel Har-Peled and Micha Sharir" +, title = "Approximation and Exact Algorithms for Minimum-Width Annuli and Shells" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "380--389" +, update = "99.07 devillers" } @inproceedings{aaos-supa-90 -, author = "Pankaj K. Agarwal and B. Aronov and J. O'Rourke and C. Schevon" -, title = "Star unfolding of a polytope with applications" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "251--263" -, keywords = "motion planning, shortest paths, polytopes, diameter, edge sequences, unfolding of polytopes" -, precedes = "aaos-supa-93" -, update = "98.03 orourke, 96.05 agarwal" +, author = "Pankaj K. Agarwal and B. Aronov and J. O'Rourke and C. Schevon" +, title = "Star unfolding of a polytope with applications" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "251--263" +, keywords = "motion planning, shortest paths, polytopes, diameter, edge sequences, unfolding of polytopes" +, precedes = "aaos-supa-93" +, update = "98.03 orourke, 96.05 agarwal" } @techreport{aaos-supa-93 -, author = "Pankaj K. Agarwal and B. Aronov and J. O'Rourke and C. Schevon" -, title = "Star unfolding of a polytope with applications" -, type = "Technical {Report}" -, number = 031 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = jul -, year = 1993 -, keywords = "motion planning, shortest paths, polytopes, diameter, edge sequences, unfolding of polytopes" -, succeeds = "aaos-supa-90" -, precedes = "aaos-supa-97" -, update = "98.03 orourke, 96.05 agarwal, 95.01 smid, 94.01 orourke" +, author = "Pankaj K. Agarwal and B. Aronov and J. O'Rourke and C. Schevon" +, title = "Star unfolding of a polytope with applications" +, type = "Technical {Report}" +, number = 031 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = jul +, year = 1993 +, keywords = "motion planning, shortest paths, polytopes, diameter, edge sequences, unfolding of polytopes" +, succeeds = "aaos-supa-90" +, precedes = "aaos-supa-97" +, update = "98.03 orourke, 96.05 agarwal, 95.01 smid, 94.01 orourke" } % number = 6 % month = dec @article{aaos-supa-97 -, author = "Pankaj K. Agarwal and Boris Aronov and Joseph O'Rourke and Catherine A. Schevon" -, title = "Star Unfolding of a Polytope with Applications" -, journal = "SIAM J. Comput." -, volume = 26 -, year = 1997 -, pages = "1689--1713" -, keywords = "motion planning, shortest paths, polytopes, diameter, edge sequences, unfolding of polytopes" -, succeeds = "aaos-supa-93" -, update = "98.03 smid, 97.11 agarwal+orourke, 97.03 agarwal+orourke, 96.05 orourke" +, author = "Pankaj K. Agarwal and Boris Aronov and Joseph O'Rourke and Catherine A. Schevon" +, title = "Star Unfolding of a Polytope with Applications" +, journal = "SIAM J. Comput." +, volume = 26 +, year = 1997 +, pages = "1689--1713" +, keywords = "motion planning, shortest paths, polytopes, diameter, edge sequences, unfolding of polytopes" +, succeeds = "aaos-supa-93" +, update = "98.03 smid, 97.11 agarwal+orourke, 97.03 agarwal+orourke, 96.05 orourke" } @techreport{aapps-qpghl-95 -, author = "Pankaj K. Agarwal and Boris Aronov and Janos Pach and Richard Pollack and Micha Sharir" -, title = "Quasi-planar graphs have a linear number of edges" -, type = "Report" -, number = "CS-1995-30" -, institution = "Dept. Comput. Sci., Duke Univ." -, address = "Durham, NC" -, year = 1996 -, precedes = "aapps-qpghl-96" -, update = "98.11 bibrelex, 96.09 agarwal" +, author = "Pankaj K. Agarwal and Boris Aronov and Janos Pach and Richard Pollack and Micha Sharir" +, title = "Quasi-planar graphs have a linear number of edges" +, type = "Report" +, number = "CS-1995-30" +, institution = "Dept. Comput. Sci., Duke Univ." +, address = "Durham, NC" +, year = 1996 +, precedes = "aapps-qpghl-96" +, update = "98.11 bibrelex, 96.09 agarwal" } @inproceedings{aapps-qpghl-96 -, author = "Pankaj K. Agarwal and Boris Aronov and Janos Pach and Richard Pollack and Micha Sharir" -, title = "Quasi-planar graphs have a linear number of edges" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "1--7" -, succeeds = "aapps-qpghl-95" -, precedes = "aapps-qpghl-97" -, update = "98.11 bibrelex, 97.11 aronov" +, author = "Pankaj K. Agarwal and Boris Aronov and Janos Pach and Richard Pollack and Micha Sharir" +, title = "Quasi-planar graphs have a linear number of edges" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "1--7" +, succeeds = "aapps-qpghl-95" +, precedes = "aapps-qpghl-97" +, update = "98.11 bibrelex, 97.11 aronov" } @article{aapps-qpghl-97 -, author = "Pankaj K. Agarwal and Boris Aronov and Janos Pach and Richard Pollack and Micha Sharir" -, title = "Quasi-planar graphs have a linear number of edges" -, journal = "Combinatorica" -, volume = 17 -, year = 1997 -, pages = "1--9" -, succeeds = "aapps-qpghl-96" -, update = "97.11 aronov" +, author = "Pankaj K. Agarwal and Boris Aronov and Janos Pach and Richard Pollack and Micha Sharir" +, title = "Quasi-planar graphs have a linear number of edges" +, journal = "Combinatorica" +, volume = 17 +, year = 1997 +, pages = "1--9" +, succeeds = "aapps-qpghl-96" +, update = "97.11 aronov" } @inproceedings{aas-cefda-94 -, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" -, title = "Computing Envelopes in Four Dimensions with Applications" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "348--358" -, precedes = "aas-cefda-97" -, cites = "am-rsps-93, am-rsss-92, ass-oleia-93, ast-apsgo-94, agps-rss-92, as-nvpt-93, as-tsbac-90, bdsty-arsol-92, bd-olrcu-93, cegs-ablsp-94, cegs-dwclp-93, cegss-cfals-93, cs-agpli-90, cksw-vdl3s-, cs-arscg-89, bds-lric-94, efnn-rauvd-89, es-vda-86, hs-nblet-93, hw-ensrq-87, ht-cws-85, m-apcad-83, ms-rsast-93, m-fppa-90, m-fppa2-91, pt-eplcs-92, hrr-araga-91, s-atubl-93, sa-dsstg-95, ZZZ" -, update = "98.03 bibrelex, 97.11 aronov, 96.05 agarwal, 94.09 jones, 94.01 jones" +, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" +, title = "Computing Envelopes in Four Dimensions with Applications" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "348--358" +, precedes = "aas-cefda-97" +, cites = "am-rsps-93, am-rsss-92, ass-oleia-93, ast-apsgo-94, agps-rss-92, as-nvpt-93, as-tsbac-90, bdsty-arsol-92, bd-olrcu-93, cegs-ablsp-94, cegs-dwclp-93, cegss-cfals-93, cs-agpli-90, cksw-vdl3s-, cs-arscg-89, bds-lric-94, efnn-rauvd-89, es-vda-86, hs-nblet-93, hw-ensrq-87, ht-cws-85, m-apcad-83, ms-rsast-93, m-fppa-90, m-fppa2-91, pt-eplcs-92, hrr-araga-91, s-atubl-93, sa-dsstg-95, ZZZ" +, update = "98.03 bibrelex, 97.11 aronov, 96.05 agarwal, 94.09 jones, 94.01 jones" } % number = 6 % month = dec @article{aas-cefda-97 -, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" -, title = "Computing Envelopes in Four Dimensions with Applications" -, journal = "SIAM J. Comput." -, volume = 26 -, year = 1997 -, pages = "1714--1732" -, succeeds = "aas-cefda-94" -, update = "98.03 bibrelex, 97.11 aronov, 97.03 agarwal+orourke, 96.05 orourke" +, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" +, title = "Computing Envelopes in Four Dimensions with Applications" +, journal = "SIAM J. Comput." +, volume = 26 +, year = 1997 +, pages = "1714--1732" +, succeeds = "aas-cefda-94" +, update = "98.03 bibrelex, 97.11 aronov, 97.03 agarwal+orourke, 96.05 orourke" } @inproceedings{aas-eaamw-00 -, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" -, title = "Exact and approximation algorithms for minimum-width cylindrical shells" -, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA" -, year = 2000 -, pages = "510--517" -, update = "00.03 agarwal+devillers" +, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" +, title = "Exact and approximation algorithms for minimum-width cylindrical shells" +, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA" +, year = 2000 +, pages = "510--517" +, update = "00.03 agarwal+devillers" } @article{aas-eaamw-01 -, author = "P. K. Agarwal and B. Aronov and M. Sharir" -, title = "Exact and approximation algorithms for minimum-width cylindrical shells" -, journal = "Discrete Comput. Geom." -, volume = 26 -, year = 2001 -, pages = "307--320" -, update = "01.11 smid" +, author = "P. K. Agarwal and B. Aronov and M. Sharir" +, title = "Exact and approximation algorithms for minimum-width cylindrical shells" +, journal = "Discrete Comput. Geom." +, volume = 26 +, year = 2001 +, pages = "307--320" +, update = "01.11 smid" } @inproceedings{aas-ltbse-97 -, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" -, title = "Line Traversals of Balls and Smallest Enclosing Cylinders in Three Dimensions" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "483--492" -, precedes = "aas-ltbse-99" -, update = "01.11 devillers+smid, 97.07 aronov, 97.03 agarwal+held, 96.09 agarwal, 96.05 agarwal" +, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" +, title = "Line Traversals of Balls and Smallest Enclosing Cylinders in Three Dimensions" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "483--492" +, precedes = "aas-ltbse-99" +, update = "01.11 devillers+smid, 97.07 aronov, 97.03 agarwal+held, 96.09 agarwal, 96.05 agarwal" } @article{aas-ltbse-99 -, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" -, title = "Line Traversals of Balls and Smallest Enclosing Cylinders in Three Dimensions" -, journal = "Discrete Comput. Geom." -, volume = 21 -, year = 1999 -, pages = "373--388" -, succeeds = "aas-ltbse-97" -, update = "01.11 devillers" +, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" +, title = "Line Traversals of Balls and Smallest Enclosing Cylinders in Three Dimensions" +, journal = "Discrete Comput. Geom." +, volume = 21 +, year = 1999 +, pages = "373--388" +, succeeds = "aas-ltbse-97" +, update = "01.11 devillers" } @techreport{aas-mpcpp-97 -, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" -, title = "Motion planning for a convex polygon in a polygonal environment" -, type = "Tech. Report" -, number = "CS-1997-17" -, institution = "Department of Computer Science" -, address = "Duke University" -, year = 1997 -, succeeds = "aaas-lpmpc-97" -, precedes = "aas-lpocp-98" -, update = "01.04 icking, 98.11 bibrelex, 98.03 agarwal" -, annote = "Corrects and supersedes parts of \cite{aaas-lpmpc-97}" +, author = "Pankaj K. Agarwal and Boris Aronov and Micha Sharir" +, title = "Motion planning for a convex polygon in a polygonal environment" +, type = "Tech. Report" +, number = "CS-1997-17" +, institution = "Department of Computer Science" +, address = "Duke University" +, year = 1997 +, succeeds = "aaas-lpmpc-97" +, precedes = "aas-lpocp-98" +, update = "01.04 icking, 98.11 bibrelex, 98.03 agarwal" +, annote = "Corrects and supersedes parts of \cite{aaas-lpmpc-97}" } @article{aas-mpcpp-99 -, author = "P. K. Agarwal and B. Aronov and M. Sharir" -, title = "Motion planning for a convex polygon in a polygonal environment" -, journal = "Discrete Comput. Geom." -, volume = 22 -, year = 1999 -, pages = "201--221" -, update = "01.11 smid, 98.11 aronov" +, author = "P. K. Agarwal and B. Aronov and M. Sharir" +, title = "Motion planning for a convex polygon in a polygonal environment" +, journal = "Discrete Comput. Geom." +, volume = 22 +, year = 1999 +, pages = "201--221" +, update = "01.11 smid, 98.11 aronov" } @inproceedings{aass-sdp-90 -, author = "Pankaj K. Agarwal and B. Aronov and Micha Sharir and Subhash Suri" -, title = "Selecting distances in the plane" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "321--331" -, keywords = "selection problems, parametric search" -, precedes = "aass-sdp-93" -, cites = "bo-arcgi-79, bfprt-tbs-73, c-ntcos-85, cl-cpp-86, cegsw-ccbac-90, cs-arscg-89, c-sdsno-87, cv-dctao-86, e-acg-87, egppss-acptc-88, egs-oplms-86, lf-ppc-80, hs-ndssg-86, m-cha-90i, m-apcad-83, m-ptlp-85, ps-cgi-85, s-spcg-87, spp-fm-76, sv-fmmsp-81, tv-epba-85, tv-opatc-89t, v-pcp-75, v-spcs-83, y-cmstk-82, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 96.05 agarwal, 95.05 smid" +, author = "Pankaj K. Agarwal and B. Aronov and Micha Sharir and Subhash Suri" +, title = "Selecting distances in the plane" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "321--331" +, keywords = "selection problems, parametric search" +, precedes = "aass-sdp-93" +, cites = "bo-arcgi-79, bfprt-tbs-73, c-ntcos-85, cl-cpp-86, cegsw-ccbac-90, cs-arscg-89, c-sdsno-87, cv-dctao-86, e-acg-87, egppss-acptc-88, egs-oplms-86, lf-ppc-80, hs-ndssg-86, m-cha-90i, m-apcad-83, m-ptlp-85, ps-cgi-85, s-spcg-87, spp-fm-76, sv-fmmsp-81, tv-epba-85, tv-opatc-89t, v-pcp-75, v-spcs-83, y-cmstk-82, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 96.05 agarwal, 95.05 smid" } @article{aass-sdp-93 -, author = "Pankaj K. Agarwal and B. Aronov and Micha Sharir and Subhash Suri" -, title = "Selecting distances in the plane" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "495--514" -, succeeds = "aass-sdp-90" -, update = "98.03 mitchell, 96.05 agarwal, 94.01 matousek" +, author = "Pankaj K. Agarwal and B. Aronov and Micha Sharir and Subhash Suri" +, title = "Selecting distances in the plane" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "495--514" +, succeeds = "aass-sdp-90" +, update = "98.03 mitchell, 96.05 agarwal, 94.01 matousek" } @inproceedings{aas-stl3d-95 -, author = "Pankaj K. Agarwal and Boris Aronov and Subhash Suri" -, title = "Stabbing Triangulations by Lines in $3$D" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, publisher = "ACM Press" -, address = "New York, NY, USA" -, month = jun -, year = 1995 -, pages = "267--276" -, issn = "0-89791-724-3" -, keywords = "ray shooting, contrained triangulation, tetrahedra" -, cites = "am-stl3s-95, as-tsbac-90, be-mgot-92i, b-ct-93, c-cpplb-84, ceg-ccc-89, cp-tncp-90, cs-bst-94, cw-qorss-89, dk-fdpi-82, dk-ladsc-85, e-t-91, hs-parss-95, m-ept-92, mms-qsrs-94, o-agta-87, rs-dt3dn-89, w-stlcn-92t, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex, 95.09 mitchell" +, author = "Pankaj K. Agarwal and Boris Aronov and Subhash Suri" +, title = "Stabbing Triangulations by Lines in $3$D" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, publisher = "ACM Press" +, address = "New York, NY, USA" +, month = jun +, year = 1995 +, pages = "267--276" +, issn = "0-89791-724-3" +, keywords = "ray shooting, contrained triangulation, tetrahedra" +, cites = "am-stl3s-95, as-tsbac-90, be-mgot-92i, b-ct-93, c-cpplb-84, ceg-ccc-89, cp-tncp-90, cs-bst-94, cw-qorss-89, dk-fdpi-82, dk-ladsc-85, e-t-91, hs-parss-95, m-ept-92, mms-qsrs-94, o-agta-87, rs-dt3dn-89, w-stlcn-92t, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex, 95.09 mitchell" } @inproceedings{abghz-dfstk-00 -, author = "Pankaj K. Agarwal and J. Basch and L. J. Guibas and J. Hershberger and L. Zhang" -, title = "Deformable free space tiling for kinetic collision detection" -, booktitle = "Proc. 4th Workshop Algorithmic Found. Robot." -, year = 2000 -, note = "To appear" -, update = "00.03 agarwal" +, author = "Pankaj K. Agarwal and J. Basch and L. J. Guibas and J. Hershberger and L. Zhang" +, title = "Deformable free space tiling for kinetic collision detection" +, booktitle = "Proc. 4th Workshop Algorithmic Found. Robot." +, year = 2000 +, note = "To appear" +, update = "00.03 agarwal" } @inproceedings{abhs-egkda-96 -, author = "P. K. Agarwal and M. de Berg and D. Halperin and Micha Sharir" -, title = "Efficient generation of {$k$}-directional assembly sequences" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "122--131" -, keywords = "depth order, translational motion, rotational motion, assembly planning, stack products, upper envelope searching, maximality" -, update = "98.03 mitchell, 96.09 agarwal+orourke, 96.01 mitchell" +, author = "P. K. Agarwal and M. de Berg and D. Halperin and Micha Sharir" +, title = "Efficient generation of {$k$}-directional assembly sequences" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "122--131" +, keywords = "depth order, translational motion, rotational motion, assembly planning, stack products, upper envelope searching, maximality" +, update = "98.03 mitchell, 96.09 agarwal+orourke, 96.01 mitchell" } @inproceedings{abms-claho-94 -, author = "Pankaj K. Agarwal and M. de Berg and J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Constructing Levels in Arrangements and Higher Order {Voronoi} Diagrams" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "67--75" -, cites = "as-solri-92, as-pm-92, ass-sulbl-89, bdt-schov-93, ce-iacko-87, c-narsc-87, c-racpq-88, cs-arscg-89, csy-khrp-87, bds-lric-94, e-acg-87, erk-oalla-93, hw-ensrq-87, m-fppa2-91, m-lavd-91, m-cgitr-93, pss-ubnpk-92, s-ksacs-91, ZZZ" -, update = "98.11 bibrelex, 98.03 agarwal+bibrelex, 96.09 agarwal, 96.05 agarwal, 95.09 agarwal, 94.09 jones, 94.05 schwarzkopf, 94.01 jones" +, author = "Pankaj K. Agarwal and M. de Berg and J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Constructing Levels in Arrangements and Higher Order {Voronoi} Diagrams" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "67--75" +, cites = "as-solri-92, as-pm-92, ass-sulbl-89, bdt-schov-93, ce-iacko-87, c-narsc-87, c-racpq-88, cs-arscg-89, csy-khrp-87, bds-lric-94, e-acg-87, erk-oalla-93, hw-ensrq-87, m-fppa2-91, m-lavd-91, m-cgitr-93, pss-ubnpk-92, s-ksacs-91, ZZZ" +, update = "98.11 bibrelex, 98.03 agarwal+bibrelex, 96.09 agarwal, 96.05 agarwal, 95.09 agarwal, 94.09 jones, 94.05 schwarzkopf, 94.01 jones" } @article{abms-claho-98 -, author = "P. K. Agarwal and M. de Berg and J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Constructing Levels in Arrangements and Higher Order {Voronoi} Diagrams" -, journal = "SIAM J. Comput." -, volume = 27 -, year = 1998 -, pages = "654--667" -, update = "98.07 smid, 98.03 agarwal" +, author = "P. K. Agarwal and M. de Berg and J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Constructing Levels in Arrangements and Higher Order {Voronoi} Diagrams" +, journal = "SIAM J. Comput." +, volume = 27 +, year = 1998 +, pages = "654--667" +, update = "98.07 smid, 98.03 agarwal" } @inproceedings{abs-osaup-99 -, author = "Pankaj K. Agarwal and Binay K. Bhattacharya and Sandeep Sen" -, title = "Output-Sensitive Algorithms for Uniform Partitions of Points" -, booktitle = "Proc. 10th Intl. Sympos. Algorithms and Computation" -, year = 1999 -, pages = "??" -, update = "00.11 smid, 00.07 agarwal" +, author = "Pankaj K. Agarwal and Binay K. Bhattacharya and Sandeep Sen" +, title = "Output-Sensitive Algorithms for Uniform Partitions of Points" +, booktitle = "Proc. 10th Intl. Sympos. Algorithms and Computation" +, year = 1999 +, pages = "??" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{ablrsw-ccspc-98 -, author = "Pankaj K. Agarwal and Therese Biedl and Sylvain Lazard and Steve Robbins and Subhash Suri and Sue Whitesides" -, title = "Curvature-Constrained Shortest Paths in a Convex Polygon" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "to appear" -, update = "98.03 mitchell" +, author = "Pankaj K. Agarwal and Therese Biedl and Sylvain Lazard and Steve Robbins and Subhash Suri and Sue Whitesides" +, title = "Curvature-Constrained Shortest Paths in a Convex Polygon" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "to appear" +, update = "98.03 mitchell" } @inproceedings{acr-icb-03 @@ -1762,79 +1762,79 @@ @inproceedings{acr-icb-03 } @inproceedings{ad-aats-97 -, author = "Pankaj K. Agarwal and Pavan K. Desikan" -, title = "An efficient algorithm for terrain simplification" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "139--147" -, update = "01.04 smid, 97.03 agarwal, 96.09 agarwal" +, author = "Pankaj K. Agarwal and Pavan K. Desikan" +, title = "An efficient algorithm for terrain simplification" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "139--147" +, update = "01.04 smid, 97.03 agarwal, 96.09 agarwal" } @inproceedings{ad-aalm-00 -, author = "Pankaj K. Agarwal and P. K. Desikan" -, title = "Approximation algorithms for layered manufacturing" -, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" -, year = 2000 -, pages = "528--537" -, update = "00.03 agarwal" +, author = "Pankaj K. Agarwal and P. K. Desikan" +, title = "Approximation algorithms for layered manufacturing" +, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" +, year = 2000 +, pages = "528--537" +, update = "00.03 agarwal" } @inproceedings{aesw-emstb-90 -, author = "Pankaj K. Agarwal and H. Edelsbrunner and O. Schwarzkopf and Emo Welzl" -, title = "Euclidean minimum spanning trees and bichromatic closest pairs" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "203--210" -, succeeds = "asw-emstb-90" -, precedes = "aesw-emstb-91" -, cites = "c-fetaa-84, cegsw-ccbac-90, cs-arscg-89, e-acg-87, egs-oplms-86, es-hipac-90, gbt-srtgp-84, ps-cgi-85, pt-espl-89, s-chaop-81, st-pplup-86, s-lpchm-90, sh-cpp-75, v-famst-84, y-cmstk-82, ZZZ" -, update = "01.04 icking, 98.03 mitchell, 97.11 bibrelex, 96.05 agarwal" +, author = "Pankaj K. Agarwal and H. Edelsbrunner and O. Schwarzkopf and Emo Welzl" +, title = "Euclidean minimum spanning trees and bichromatic closest pairs" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "203--210" +, succeeds = "asw-emstb-90" +, precedes = "aesw-emstb-91" +, cites = "c-fetaa-84, cegsw-ccbac-90, cs-arscg-89, e-acg-87, egs-oplms-86, es-hipac-90, gbt-srtgp-84, ps-cgi-85, pt-espl-89, s-chaop-81, st-pplup-86, s-lpchm-90, sh-cpp-75, v-famst-84, y-cmstk-82, ZZZ" +, update = "01.04 icking, 98.03 mitchell, 97.11 bibrelex, 96.05 agarwal" } @article{aesw-emstb-91 -, author = "Pankaj K. Agarwal and H. Edelsbrunner and O. Schwarzkopf and Emo Welzl" -, title = "Euclidean minimum spanning trees and bichromatic closest pairs" -, journal = "Discrete Comput. Geom." -, volume = 6 -, number = 5 -, year = 1991 -, pages = "407--422" -, keywords = "proximity, minimum spanning trees, random sampling, geometric graphs, Voronoi diagrams, three-dimensional, closest pairs, red-blue" -, succeeds = "aesw-emstb-90" -, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko, 93.05 schwarzkopf" +, author = "Pankaj K. Agarwal and H. Edelsbrunner and O. Schwarzkopf and Emo Welzl" +, title = "Euclidean minimum spanning trees and bichromatic closest pairs" +, journal = "Discrete Comput. Geom." +, volume = 6 +, number = 5 +, year = 1991 +, pages = "407--422" +, keywords = "proximity, minimum spanning trees, random sampling, geometric graphs, Voronoi diagrams, three-dimensional, closest pairs, red-blue" +, succeeds = "aesw-emstb-90" +, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko, 93.05 schwarzkopf" } @inproceedings{aes-vdsl3-95 -, author = "Pankaj K. Agarwal and Alon Efrat and Micha Sharir" -, title = "Vertical Decomposition of Shallow Levels in $3$-Dimensional Arrangements and Its Applications" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "39--50" -, keywords = "curved surfaces, range searching, nearest neighbor, segment center, bipartite matching, smallest stabbing disk, parametric search, convex distance functions" -, cites = "abms-claho-94, aest-cscpp-93, am-dhsrr-95, am-rsps-93, am-rsss-94, ass-oletd-95, ass-sulbl-89, abkks-emcmu-92, bcm-prsss-93, by-lotmc-94, cegs-sessr-89, c-narsc-87, cs-arscg-89, bgh-vdt3s-94, e-acg-87, es-vda-86, es-nlaps-96, e-demst-95, g-pvc-56, hs-nblet-94, hs-ndssg-86, hw-ensrq-87, ily-sccp-92, ls-pptmc-87, k-hmap-55, l-conm-76, l-tdvdl-80, ld-gvdp-81, ms-fmapp-91, m-aogdc-91, m-rph-92, ms-rscp-93, m-apcad-83, m-cgitr-93, s-atubl-94, sa-dsstg-95, t-mnlcf-92, v-ghm-89, v-pcp-75, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Pankaj K. Agarwal and Alon Efrat and Micha Sharir" +, title = "Vertical Decomposition of Shallow Levels in $3$-Dimensional Arrangements and Its Applications" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "39--50" +, keywords = "curved surfaces, range searching, nearest neighbor, segment center, bipartite matching, smallest stabbing disk, parametric search, convex distance functions" +, cites = "abms-claho-94, aest-cscpp-93, am-dhsrr-95, am-rsps-93, am-rsss-94, ass-oletd-95, ass-sulbl-89, abkks-emcmu-92, bcm-prsss-93, by-lotmc-94, cegs-sessr-89, c-narsc-87, cs-arscg-89, bgh-vdt3s-94, e-acg-87, es-vda-86, es-nlaps-96, e-demst-95, g-pvc-56, hs-nblet-94, hs-ndssg-86, hw-ensrq-87, ily-sccp-92, ls-pptmc-87, k-hmap-55, l-conm-76, l-tdvdl-80, ld-gvdp-81, ms-fmapp-91, m-aogdc-91, m-rph-92, ms-rscp-93, m-apcad-83, m-cgitr-93, s-atubl-94, sa-dsstg-95, t-mnlcf-92, v-ghm-89, v-pcp-75, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{aes-vdsl3-99 -, author = "P. K. Agarwal and A. Efrat and M. Sharir" -, title = "Vertical decomposition of shallow levels in $3$-dimensional arrangements and its applications" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 1999 -, pages = "912--953" -, update = "00.11 smid, 00.07 smid" +, author = "P. K. Agarwal and A. Efrat and M. Sharir" +, title = "Vertical decomposition of shallow levels in $3$-dimensional arrangements and its applications" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 1999 +, pages = "912--953" +, update = "00.11 smid, 00.07 smid" } @techreport{aest-cscpp-91 -, author = "P. K. Agarwal and A. Efrat and Micha Sharir and S. Toledo" -, title = "Computing a segment center for a planar point set" -, type = "Manuscript" -, number = "DUKE--TR--1991--33" -, institution = "Department of Computer Science, Duke University" -, year = 1991 -, url = "ftp://ftp.cs.duke.edu/dist/techreport/1991/1991-33.ps.Z" -, update = "98.03 bibrelex+mitchell, 97.11 bibrelex" -, abstract = "\indent Given a set $S$ of $n$ points in the plane and +, author = "P. K. Agarwal and A. Efrat and Micha Sharir and S. Toledo" +, title = "Computing a segment center for a planar point set" +, type = "Manuscript" +, number = "DUKE--TR--1991--33" +, institution = "Department of Computer Science, Duke University" +, year = 1991 +, url = "ftp://ftp.cs.duke.edu/dist/techreport/1991/1991-33.ps.Z" +, update = "98.03 bibrelex+mitchell, 97.11 bibrelex" +, abstract = "\indent Given a set $S$ of $n$ points in the plane and a segment $e$, a {\em center placement} of $e$ is a placement (allowing translation and rotation) that minimizes the maximum distance from $e$ to the points @@ -1846,4528 +1846,4528 @@ @techreport{aest-cscpp-91 } @article{aest-cscpp-93 -, author = "Pankaj K. Agarwal and A. Efrat and Micha Sharir and S. Toledo" -, title = "Computing a Segment Center for a Planar Point Set" -, journal = "J. Algorithms" -, volume = 15 -, number = 2 -, year = 1993 -, pages = "314--323" -, keywords = "points, center, placement" -, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko, 93.09 efrat" +, author = "Pankaj K. Agarwal and A. Efrat and Micha Sharir and S. Toledo" +, title = "Computing a Segment Center for a Planar Point Set" +, journal = "J. Algorithms" +, volume = 15 +, number = 2 +, year = 1993 +, pages = "314--323" +, keywords = "points, center, placement" +, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko, 93.09 efrat" } @inproceedings{aegm-pkmst-98 -, author = "Pankaj K. Agarwal and D. Eppstein and L. J. Guibas and M. Henzinger" -, title = "Parametric and kinetic minimum spanning trees" -, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1998 -, pages = "596--605" -, update = "99.03 agarwal" +, author = "Pankaj K. Agarwal and D. Eppstein and L. J. Guibas and M. Henzinger" +, title = "Parametric and kinetic minimum spanning trees" +, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1998 +, pages = "596--605" +, update = "99.03 agarwal" } @inproceedings{aem-dhsrg-92 -, author = "Pankaj K. Agarwal and D. Eppstein and J. Matou{\v s}ek" -, title = "Dynamic half-space reporting, geometric optimization, and minimum spanning trees" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "80--89" -, succeeds = "am-dhsrr-91" -, update = "96.09 agarwal, 96.05 agarwal, 93.09 erickson" +, author = "Pankaj K. Agarwal and D. Eppstein and J. Matou{\v s}ek" +, title = "Dynamic half-space reporting, geometric optimization, and minimum spanning trees" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "80--89" +, succeeds = "am-dhsrr-91" +, update = "96.09 agarwal, 96.05 agarwal, 93.09 erickson" } @techreport{ae-rsir-97 -, author = "Pankaj K. Agarwal and Jeff Erickson" -, title = "Geometric range searching and its relatives" -, type = "Tech.\ Report" -, number = "CS-1997-11" -, institution = "Department of Computer Science" -, address = "Duke University" -, year = 1997 -, update = "98.03 agarwal" +, author = "Pankaj K. Agarwal and Jeff Erickson" +, title = "Geometric range searching and its relatives" +, type = "Tech.\ Report" +, number = "CS-1997-11" +, institution = "Department of Computer Science" +, address = "Duke University" +, year = 1997 +, update = "98.03 agarwal" } @incollection{ae-rsir-99 -, author = "Pankaj K. Agarwal and Jeff Erickson" -, title = "Geometric range searching and its relatives" -, editor = "B. Chazelle and J. E. Goodman and R. Pollack" -, booktitle = "Advances in Discrete and Computational Geometry" -, series = "Contemporary Mathematics" -, volume = 223 -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1999 -, pages = "1--56" -, update = "00.03 smid, 98.07 agarwal" +, author = "Pankaj K. Agarwal and Jeff Erickson" +, title = "Geometric range searching and its relatives" +, editor = "B. Chazelle and J. E. Goodman and R. Pollack" +, booktitle = "Advances in Discrete and Computational Geometry" +, series = "Contemporary Mathematics" +, volume = 223 +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1999 +, pages = "1--56" +, update = "00.03 smid, 98.07 agarwal" } @unpublished{aeg-kbspr-97 -, author = "P. K. Agarwal and J. Erickson and L. J. Guibas" -, title = "Kinetic binary space partitions in {$R^{3}$}" -, year = 1997 -, note = "In preparation" -, update = "98.07 bibrelex+mitchell" +, author = "P. K. Agarwal and J. Erickson and L. J. Guibas" +, title = "Kinetic binary space partitions in {$R^{3}$}" +, year = 1997 +, note = "In preparation" +, update = "98.07 bibrelex+mitchell" } @inproceedings{aeg-kbisd-98 -, author = "Pankaj K. Agarwal and Jeff Erickson and Leonidas J. Guibas" -, title = "Kinetic {BSP}s for Intersecting Segments and Disjoint Triangles" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "107--116" -, update = "98.07 bibrelex, 98.03 agarwal" +, author = "Pankaj K. Agarwal and Jeff Erickson and Leonidas J. Guibas" +, title = "Kinetic {BSP}s for Intersecting Segments and Disjoint Triangles" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "107--116" +, update = "98.07 bibrelex, 98.03 agarwal" } @techreport{agkptv-argc-95 -, author = "P. K. Agarwal and M. T. Goodrich and S. R. Kosaraju and F. P. Preparata and R. Tamassia and J. S. Vitter" -, title = "Applicable and Robust Geometric Computing" -, type = "Project Proposal (U. S. Army Research Office grant DAAH04-96-1-0013)" -, institution = "Center for Geometric Computing" -, year = 1995 -, url = "https://www.cs.brown.edu/cgc/" -, update = "98.07 bibrelex, 97.03 tamassia" +, author = "P. K. Agarwal and M. T. Goodrich and S. R. Kosaraju and F. P. Preparata and R. Tamassia and J. S. Vitter" +, title = "Applicable and Robust Geometric Computing" +, type = "Project Proposal (U. S. Army Research Office grant DAAH04-96-1-0013)" +, institution = "Center for Geometric Computing" +, year = 1995 +, url = "https://www.cs.brown.edu/cgc/" +, update = "98.07 bibrelex, 97.03 tamassia" } @inproceedings{agmv-bspfr-96 -, author = "P. K. Agarwal and E. F. Grove and T. M. Murali and J. S. Vitter" -, title = "Binary Space Partitions for Fat Rectangles" -, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." -, site = "Burlington, VT" -, month = oct -, year = 1996 -, pages = "482--491" -, update = "98.07 bibrelex, 98.03 agarwal, 97.07 smid, 97.03 murali" +, author = "P. K. Agarwal and E. F. Grove and T. M. Murali and J. S. Vitter" +, title = "Binary Space Partitions for Fat Rectangles" +, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." +, site = "Burlington, VT" +, month = oct +, year = 1996 +, pages = "482--491" +, update = "98.07 bibrelex, 98.03 agarwal, 97.07 smid, 97.03 murali" } @article{agmv-bspfr-00 -, author = "P. K. Agarwal and E. F. Grove and T. M. Murali and J. S. Vitter" -, title = "Binary Space Partitions for Fat Rectangles" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "1422--1448" -, update = "00.11 smid" +, author = "P. K. Agarwal and E. F. Grove and T. M. Murali and J. S. Vitter" +, title = "Binary Space Partitions for Fat Rectangles" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "1422--1448" +, update = "00.11 smid" } @techreport{agps-rss-92 -, author = "P. K. Agarwal and L. Guibas and M. Pellegrini and M. Sharir" -, title = "Ray shooting among spheres" -, type = "Manuscript" -, institution = "??" -, year = 1992 -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "P. K. Agarwal and L. Guibas and M. Pellegrini and M. Sharir" +, title = "Ray shooting among spheres" +, type = "Manuscript" +, institution = "??" +, year = 1992 +, update = "98.07 agarwal, 98.03 bibrelex" } @inproceedings{aghrs-cpdtc-00 -, author = "Pankaj K. Agarwal and L. J. Guibas and S. Har-Peled and A. Rabinovitch and M. Sharir" -, title = "Computing the Penetration Depth of Two Convex Polytopes in 3D" -, booktitle = "Proc. 7th Scandanavian Workshop on Algorithmic Theory" -, year = 2000 -, pages = "??" -, update = "00.11 smid, 00.07 agarwal" +, author = "Pankaj K. Agarwal and L. J. Guibas and S. Har-Peled and A. Rabinovitch and M. Sharir" +, title = "Computing the Penetration Depth of Two Convex Polytopes in 3D" +, booktitle = "Proc. 7th Scandanavian Workshop on Algorithmic Theory" +, year = 2000 +, pages = "??" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{aghv-memps-97 -, author = "Pankaj K. Agarwal and Leonidas J. Guibas and John Hershberger and Eric Veach" -, title = "Maintaining the extent of a moving point set" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "31--44" -, update = "99.07 bibrelex, 98.03 agarwal" +, author = "Pankaj K. Agarwal and Leonidas J. Guibas and John Hershberger and Eric Veach" +, title = "Maintaining the extent of a moving point set" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "31--44" +, update = "99.07 bibrelex, 98.03 agarwal" } @inproceedings{agmv-cskbs-97 -, author = "Pankaj K. Agarwal and Leonidas J. Guibas and T. M. Murali and Jeffrey Scott Vitter" -, title = "Cylindrical Static and Kinetic Binary Space Partitions" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "39--48" -, cites = "aeg-kbspr-97, agmv-bspfr-96, as-sagp-94, a-iurbw-90, b-mpbsp-93, bgh-dsmd-97, c-mgdii-91, csm-nocpt-95, cgl-pgd-85, cf-nrtsg-89, cf-fopsg-92, c-sc3di-96, cs-arscg-89, b-lsbsp-95, e-acg-87, fkn-vsgpt-80, hw-ensrq-87, mm-aagtn-95, mf-csbra-97, nat-mbtyp-90, nt-abtrt-86, n-sismt-90, n-isgpt-92, py-ebsph-90, py-obspo-92, sbgs-sacgi-69, s-barga-93, t-vcdop-92, tn-sopub-87, t-obspa-90, ZZZ" -, update = "98.07 bibrelex, 97.07 agarwal+efrat" +, author = "Pankaj K. Agarwal and Leonidas J. Guibas and T. M. Murali and Jeffrey Scott Vitter" +, title = "Cylindrical Static and Kinetic Binary Space Partitions" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "39--48" +, cites = "aeg-kbspr-97, agmv-bspfr-96, as-sagp-94, a-iurbw-90, b-mpbsp-93, bgh-dsmd-97, c-mgdii-91, csm-nocpt-95, cgl-pgd-85, cf-nrtsg-89, cf-fopsg-92, c-sc3di-96, cs-arscg-89, b-lsbsp-95, e-acg-87, fkn-vsgpt-80, hw-ensrq-87, mm-aagtn-95, mf-csbra-97, nat-mbtyp-90, nt-abtrt-86, n-sismt-90, n-isgpt-92, py-ebsph-90, py-obspo-92, sbgs-sacgi-69, s-barga-93, t-vcdop-92, tn-sopub-87, t-obspa-90, ZZZ" +, update = "98.07 bibrelex, 97.07 agarwal+efrat" } @inproceedings{ahk-caspc-00 -, author = "Pankaj K. Agarwal and S. Har-Peled and M. Karia" -, title = "Computing approximate shortest paths on convex polytopes" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "270--279" -, update = "00.11 smid, 00.07 agarwal" +, author = "Pankaj K. Agarwal and S. Har-Peled and M. Karia" +, title = "Computing approximate shortest paths on convex polytopes" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "270--279" +, update = "00.11 smid, 00.07 agarwal" } @techreport{ahsv-aspcp-96 -, author = "Pankaj K. Agarwal and Sariel Har-Peled and Micha Sharir and Kasturi R. Varadarajan" -, title = "Approximate Shortest Paths on a Convex Polytope in Three Dimensions" -, type = "Report" -, number = "CS-1996-12" -, institution = "Dept. Comput. Sci., Duke Univ." -, address = "Durham, NC" -, year = 1996 -, precedes = "ahsv-aspcp-97" -, update = "98.03 mitchell, 96.09 agarwal" +, author = "Pankaj K. Agarwal and Sariel Har-Peled and Micha Sharir and Kasturi R. Varadarajan" +, title = "Approximate Shortest Paths on a Convex Polytope in Three Dimensions" +, type = "Report" +, number = "CS-1996-12" +, institution = "Dept. Comput. Sci., Duke Univ." +, address = "Durham, NC" +, year = 1996 +, precedes = "ahsv-aspcp-97" +, update = "98.03 mitchell, 96.09 agarwal" } @article{ahsv-aspcp-97 -, author = "P. K. Agarwal and S. Har-Peled and M. Sharir and K. R. Varadarajan" -, title = "Approximate Shortest Paths on a Convex Polytope in Three Dimensions" -, journal = "J. ACM" -, volume = 44 -, year = 1997 -, pages = "567--584" -, succeeds = "ahsv-aspcp-96" -, update = "98.03 mitchell" +, author = "P. K. Agarwal and S. Har-Peled and M. Sharir and K. R. Varadarajan" +, title = "Approximate Shortest Paths on a Convex Polytope in Three Dimensions" +, journal = "J. ACM" +, volume = 44 +, year = 1997 +, pages = "567--584" +, succeeds = "ahsv-aspcp-96" +, update = "98.03 mitchell" } @article{aks-cdofo-95 -, author = "Pankaj K. Agarwal and M. Katz and Micha Sharir" -, title = "Computing depth orders for fat objects and related problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "187--206" -, succeeds = "aks-cdorp-94" -, update = "98.07 agarwal, 98.03 mitchell, 96.09 devillers" +, author = "Pankaj K. Agarwal and M. Katz and Micha Sharir" +, title = "Computing depth orders for fat objects and related problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "187--206" +, succeeds = "aks-cdorp-94" +, update = "98.07 agarwal, 98.03 mitchell, 96.09 devillers" } @inproceedings{aks-cdorp-94 -, author = "Pankaj K. Agarwal and M. J. Katz and Micha Sharir" -, title = "Computing depth orders and related problems" -, booktitle = "Proc. 4th Scand. Workshop Algorithm Theory" -, year = 1994 -, pages = "1--12" -, precedes = "aks-cdorp-95" -, update = "98.03 mitchell, 97.11 katz, 96.09 devillers, 96.05 agarwal, 95.09 agarwal" +, author = "Pankaj K. Agarwal and M. J. Katz and Micha Sharir" +, title = "Computing depth orders and related problems" +, booktitle = "Proc. 4th Scand. Workshop Algorithm Theory" +, year = 1994 +, pages = "1--12" +, precedes = "aks-cdorp-95" +, update = "98.03 mitchell, 97.11 katz, 96.09 devillers, 96.05 agarwal, 95.09 agarwal" } @article{aks-cdorp-95 -, author = "Pankaj K. Agarwal and M. J. Katz and Micha Sharir" -, title = "Computing depth orders and related problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "187--206" -, succeeds = "aks-cdorp-94" -, update = "98.03 mitchell, 97.11 katz, 97.03 agarwal" +, author = "Pankaj K. Agarwal and M. J. Katz and Micha Sharir" +, title = "Computing depth orders and related problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "187--206" +, succeeds = "aks-cdorp-94" +, update = "98.03 mitchell, 97.11 katz, 97.03 agarwal" } @book{akm-rap-98 -, title = "Robotics: The Algorithmic Perspective" -, editor = "Pankaj K. Agarwal and L. E. Kavraki and M. T. Mason" -, publisher = "A. K. Peters" -, address = "Wellesley" -, year = 1998 -, update = "99.03 agarwal" +, title = "Robotics: The Algorithmic Perspective" +, editor = "Pankaj K. Agarwal and L. E. Kavraki and M. T. Mason" +, publisher = "A. K. Peters" +, address = "Wellesley" +, year = 1998 +, update = "99.03 agarwal" } @inproceedings{akksw-seahq-99 -, author = "Pankaj K. Agarwal and Lars Knipping and Marc van Kreveld and Tycho Strijk and Alexander Wolf" -, title = "A Simple and Efficient Algorithm for High-Quality Line Labeling" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "93--96" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Pankaj K. Agarwal and Lars Knipping and Marc van Kreveld and Tycho Strijk and Alexander Wolf" +, title = "A Simple and Efficient Algorithm for High-Quality Line Labeling" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "93--96" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{ak-ccspi-93 -, author = "Pankaj K. Agarwal and Marc van Kreveld" -, title = "Connected Component and Simple Polygon Intersection Searching" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "36--47" -, update = "93.09 milone+mitchell+smid, 93.05 jones" +, author = "Pankaj K. Agarwal and Marc van Kreveld" +, title = "Connected Component and Simple Polygon Intersection Searching" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "36--47" +, update = "93.09 milone+mitchell+smid, 93.05 jones" } @techreport{ak-iplal-92t -, author = "Pankaj K. Agarwal and M. van Kreveld" -, title = "Implicit point location in arrangements of line segments, with an application to motion planning" -, type = "Report" -, number = "RUU-CS-92-15" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1992 -, precedes = "ak-iplal-92i" -, update = "98.11 bibrelex, 96.05 agarwal, 94.05 schwarzkopf" +, author = "Pankaj K. Agarwal and M. van Kreveld" +, title = "Implicit point location in arrangements of line segments, with an application to motion planning" +, type = "Report" +, number = "RUU-CS-92-15" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1992 +, precedes = "ak-iplal-92i" +, update = "98.11 bibrelex, 96.05 agarwal, 94.05 schwarzkopf" } @inproceedings{ak-iplal-92i -, author = "Pankaj K. Agarwal and M. van Kreveld" -, title = "Implicit Point Location in Arrangements of Line Segments, with an Application to Motion Planning" -, booktitle = "Proc. 12th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "New Delhi, India" -, year = 1992 -, succeeds = "ak-iplal-92t" -, update = "98.11 bibrelex, 96.05 agarwal, 93.09 milone+mitchell" +, author = "Pankaj K. Agarwal and M. van Kreveld" +, title = "Implicit Point Location in Arrangements of Line Segments, with an Application to Motion Planning" +, booktitle = "Proc. 12th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "New Delhi, India" +, year = 1992 +, succeeds = "ak-iplal-92t" +, update = "98.11 bibrelex, 96.05 agarwal, 93.09 milone+mitchell" } @article{ak-iplal-94 -, author = "Pankaj K. Agarwal and M. van Kreveld" -, title = "Implicit Point Location in Arrangements of Line Segments, with an Application to Motion Planning" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "369--383" -, keywords = "point location, motion planning, arrangements" -, update = "97.03 schwarzkopf, 96.05 agarwal, 95.05 agarwal" +, author = "Pankaj K. Agarwal and M. van Kreveld" +, title = "Implicit Point Location in Arrangements of Line Segments, with an Application to Motion Planning" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "369--383" +, keywords = "point location, motion planning, arrangements" +, update = "97.03 schwarzkopf, 96.05 agarwal, 95.05 agarwal" } @article{ak-pccis-96 -, author = "Pankaj K. Agarwal and Marc van Kreveld" -, title = "Polygon and connected component intersection searching" -, journal = "Algorithmica" -, volume = 15 -, year = 1996 -, pages = "626--660" -, update = "97.07 agarwal+smid" +, author = "Pankaj K. Agarwal and Marc van Kreveld" +, title = "Polygon and connected component intersection searching" +, journal = "Algorithmica" +, volume = 15 +, year = 1996 +, pages = "626--660" +, update = "97.07 agarwal+smid" } @techreport{ako-iqco-90 -, author = "Pankaj K. Agarwal and M. van Kreveld and M. Overmars" -, title = "Intersection queries for curved objects" -, type = "Manuscript" -, year = 1990 -, update = "97.11 bibrelex" +, author = "Pankaj K. Agarwal and M. van Kreveld and M. Overmars" +, title = "Intersection queries for curved objects" +, type = "Manuscript" +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{ako-iqco-91 -, author = "Pankaj K. Agarwal and M. van Kreveld and M. Overmars" -, title = "Intersection queries for curved objects" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "41--50" -, keywords = "range searching, partition trees, intersection" -, precedes = "ako-iqco-93" -, cites = "a-rsoas-89, a-dapal-89, ako-iqco-90, ass-sulbl-89, ahl-sqrpc-90, c-fsnaq-86, ceggss-rspug-90, cg-fc1ds-86, cg-fc2a-86, csw-qoubs-90, cw-qorss-89, de-ssio-87, dsst-mdsp-89, e-acg-87, ew-hrsls-86, gos-rsipl-89, hw-ensrq-87, koa-iqsd-90i, m-mcast-90, mw-gscpt-89, oss-slspt-90, s-ksacs-91, w-pr-82, ydep-psrq-89, ZZZ" -, update = "97.11 bibrelex, 96.05 agarwal, 95.05 korneenko, 94.05 devillers" +, author = "Pankaj K. Agarwal and M. van Kreveld and M. Overmars" +, title = "Intersection queries for curved objects" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "41--50" +, keywords = "range searching, partition trees, intersection" +, precedes = "ako-iqco-93" +, cites = "a-rsoas-89, a-dapal-89, ako-iqco-90, ass-sulbl-89, ahl-sqrpc-90, c-fsnaq-86, ceggss-rspug-90, cg-fc1ds-86, cg-fc2a-86, csw-qoubs-90, cw-qorss-89, de-ssio-87, dsst-mdsp-89, e-acg-87, ew-hrsls-86, gos-rsipl-89, hw-ensrq-87, koa-iqsd-90i, m-mcast-90, mw-gscpt-89, oss-slspt-90, s-ksacs-91, w-pr-82, ydep-psrq-89, ZZZ" +, update = "97.11 bibrelex, 96.05 agarwal, 95.05 korneenko, 94.05 devillers" } @article{ako-iqco-93 -, author = "Pankaj K. Agarwal and M. van Kreveld and M. Overmars" -, title = "Intersection queries in curved objects" -, journal = "J. Algorithms" -, volume = 15 -, number = 2 -, year = 1993 -, pages = "229--266" -, keywords = "intersection, searching, curvilinear, ray shooting, partition trees, geometric transformations" -, succeeds = "ako-iqco-91" -, update = "96.05 agarwal, 95.05 korneenko, 94.01 smid" +, author = "Pankaj K. Agarwal and M. van Kreveld and M. Overmars" +, title = "Intersection queries in curved objects" +, journal = "J. Algorithms" +, volume = 15 +, number = 2 +, year = 1993 +, pages = "229--266" +, keywords = "intersection, searching, curvilinear, ray shooting, partition trees, geometric transformations" +, succeeds = "ako-iqco-91" +, update = "96.05 agarwal, 95.05 korneenko, 94.01 smid" } @inproceedings{aks-lpmis-97 -, author = "Pankaj K. Agarwal and Mark van Kreveld and Subhash Suri" -, title = "Label Placement by Maximum Independent Set in Rectangles" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "233--238" -, update = "97.11 jones" +, author = "Pankaj K. Agarwal and Mark van Kreveld and Subhash Suri" +, title = "Label Placement by Maximum Independent Set in Rectangles" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "233--238" +, update = "97.11 jones" } @inproceedings{almr-npppd-97 -, author = "P. K. Agarwal and J.-C. Latombe and R. Motwani and P. Raghavan" -, title = "Nonholonomic path planning for pushing a disk among obstacles" -, booktitle = "Intl. Conf. Robotics and Auto." -, year = 1997 -, update = "97.03 agarwal" +, author = "P. K. Agarwal and J.-C. Latombe and R. Motwani and P. Raghavan" +, title = "Nonholonomic path planning for pushing a disk among obstacles" +, booktitle = "Intl. Conf. Robotics and Auto." +, year = 1997 +, update = "97.03 agarwal" } @techreport{am-dhsrr-91 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" -, title = "Dynamic Half-Space Range Reporting and Its Applications" -, type = "Tech. {Report}" -, number = "CS-1991-43" -, institution = "Duke University" -, year = 1991 -, precedes = "aem-dhsrg-92" -, update = "98.07 bibrelex, 96.05 agarwal, 93.09 erickson" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" +, title = "Dynamic Half-Space Range Reporting and Its Applications" +, type = "Tech. {Report}" +, number = "CS-1991-43" +, institution = "Duke University" +, year = 1991 +, precedes = "aem-dhsrg-92" +, update = "98.07 bibrelex, 96.05 agarwal, 93.09 erickson" } @article{am-dhsrr-95 -, author = "P. K. Agarwal and J. Matou{\v s}ek" -, title = "Dynamic Half-Space Range Reporting and Its Applications" -, journal = "Algorithmica" -, volume = 13 -, year = 1995 -, pages = "325--345" -, keywords = "arrangements, cuttings, range-searching, dynamization" -, update = "96.09 agarwal, 96.05 pascucci" +, author = "P. K. Agarwal and J. Matou{\v s}ek" +, title = "Dynamic Half-Space Range Reporting and Its Applications" +, journal = "Algorithmica" +, volume = 13 +, year = 1995 +, pages = "325--345" +, keywords = "arrangements, cuttings, range-searching, dynamization" +, update = "96.09 agarwal, 96.05 pascucci" } @inproceedings{am-rsss-92 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" -, title = "On range searching with semialgebraic sets" -, booktitle = "Proc. 17th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 629 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "1--13" -, keywords = "range search, partition tree, cutting, algebraic surface, semialgebraic set, Tarski cell" -, precedes = "am-rsss-94" -, update = "96.05 agarwal, 95.05 smid, 93.09 matousek" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" +, title = "On range searching with semialgebraic sets" +, booktitle = "Proc. 17th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 629 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "1--13" +, keywords = "range search, partition tree, cutting, algebraic surface, semialgebraic set, Tarski cell" +, precedes = "am-rsss-94" +, update = "96.05 agarwal, 95.05 smid, 93.09 matousek" } @article{am-rsss-94 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" -, title = "On range searching with semialgebraic sets" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "393--418" -, succeeds = "am-rsss-92" -, update = "96.05 agarwal, 95.01 matousek" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" +, title = "On range searching with semialgebraic sets" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "393--418" +, succeeds = "am-rsss-92" +, update = "96.05 agarwal, 95.01 matousek" } @techreport{am-rsps-91 -, author = "P. K. Agarwal and J. Matou{\v s}ek" -, title = "Ray shooting and parametric search" -, type = "Technical {Report}" -, number = "CS-1991-22" -, institution = "Dept. Comput. Sci., Duke Univ." -, address = "Durham, NC" -, year = 1991 -, update = "97.11 bibrelex" +, author = "P. K. Agarwal and J. Matou{\v s}ek" +, title = "Ray shooting and parametric search" +, type = "Technical {Report}" +, number = "CS-1991-22" +, institution = "Dept. Comput. Sci., Duke Univ." +, address = "Durham, NC" +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{am-rsps-92 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" -, title = "Ray shooting and parametric search" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "517--526" -, keywords = "ray tracing, range search, intersection, partition trees" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" +, title = "Ray shooting and parametric search" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "517--526" +, keywords = "ray tracing, range search, intersection, partition trees" +, update = "96.09 agarwal, 96.05 agarwal" } @article{am-rsps-93 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" -, title = "Ray shooting and parametric search" -, journal = "SIAM J. Comput." -, volume = 22 -, number = 4 -, year = 1993 -, pages = "794--806" -, succeeds = "am-rsps-92" -, update = "97.11 bibrelex" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" +, title = "Ray shooting and parametric search" +, journal = "SIAM J. Comput." +, volume = 22 +, number = 4 +, year = 1993 +, pages = "794--806" +, succeeds = "am-rsps-92" +, update = "97.11 bibrelex" } @techreport{am-rng3d-91 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" -, title = "Relative neighborhood graphs in $3$-d" -, type = "Report" -, number = "CS-1991-19" -, institution = "Dept. Comput. Sci., Duke Univ." -, address = "Durham, NC" -, year = 1991 -, keywords = "pattern recognition, geometric graphs" -, precedes = "am-rngtd-92i" -, update = "96.09 agarwal, 96.05 agarwal, 95.01 smid" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" +, title = "Relative neighborhood graphs in $3$-d" +, type = "Report" +, number = "CS-1991-19" +, institution = "Dept. Comput. Sci., Duke Univ." +, address = "Durham, NC" +, year = 1991 +, keywords = "pattern recognition, geometric graphs" +, precedes = "am-rngtd-92i" +, update = "96.09 agarwal, 96.05 agarwal, 95.01 smid" } @inproceedings{am-rngtd-92i -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" -, title = "Relative neighborhood graphs in three dimensions" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "58--65" -, keywords = "pattern recognition, geometric graphs" -, succeeds = "am-rng3d-91" -, precedes = "am-rngtd-92a" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" +, title = "Relative neighborhood graphs in three dimensions" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "58--65" +, keywords = "pattern recognition, geometric graphs" +, succeeds = "am-rng3d-91" +, precedes = "am-rngtd-92a" +, update = "96.09 agarwal, 96.05 agarwal" } @article{am-rngtd-92a -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" -, title = "Relative neighborhood graphs in three dimensions" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 1 -, year = 1992 -, pages = "1--14" -, keywords = "pattern matching, geometric graphs, arrangements, random sampling, closest pairs" -, succeeds = "am-rngtd-92i" -, update = "96.09 agarwal, 96.05 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek" +, title = "Relative neighborhood graphs in three dimensions" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 1 +, year = 1992 +, pages = "1--14" +, keywords = "pattern matching, geometric graphs, arrangements, random sampling, closest pairs" +, succeeds = "am-rngtd-92i" +, update = "96.09 agarwal, 96.05 agarwal, 95.05 korneenko" } @inproceedings{ams-cmfal-94 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Computing Many Faces in Arrangements of Lines and Segments" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "76--84" -, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-39.ps.gz" -, precedes = "ams-cmfal-98" -, cites = "a-pal2a-90, aegs-nemfl-92, bds-lric-94, c-talp-69, cegghss-rspug-91, cegss-cfals-93, cf-dvrsi-90, c-csfas-90, cegsw-ccbac-90, cs-arscg-89, e-acg-87, egs-ccmfa-90, ew-mnemf-86, gs-caa-93, hs-parss-93, hw-ensrq-87, m-mdscg-84, m-fppa-90, m-fppa2-91, st-epdg-83, ZZZ" -, update = "98.07 mitchell, 98.03 bibrelex, 96.09 agarwal, 96.05 agarwal, 95.09 agarwal, 94.09 jones, 94.01 jones" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Computing Many Faces in Arrangements of Lines and Segments" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "76--84" +, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-39.ps.gz" +, precedes = "ams-cmfal-98" +, cites = "a-pal2a-90, aegs-nemfl-92, bds-lric-94, c-talp-69, cegghss-rspug-91, cegss-cfals-93, cf-dvrsi-90, c-csfas-90, cegsw-ccbac-90, cs-arscg-89, e-acg-87, egs-ccmfa-90, ew-mnemf-86, gs-caa-93, hs-parss-93, hw-ensrq-87, m-mdscg-84, m-fppa-90, m-fppa2-91, st-epdg-83, ZZZ" +, update = "98.07 mitchell, 98.03 bibrelex, 96.09 agarwal, 96.05 agarwal, 95.09 agarwal, 94.09 jones, 94.01 jones" } @article{ams-cmfal-98 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Computing Many Faces in Arrangements of Lines and Segments" -, journal = "SIAM J. Comput." -, volume = 27 -, number = 2 -, year = 1998 -, pages = "491--505" -, succeeds = "ams-cmfal-94" -, update = "98.07 bibrelex+mitchell, 98.03 agarwal" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Computing Many Faces in Arrangements of Lines and Segments" +, journal = "SIAM J. Comput." +, volume = 27 +, number = 2 +, year = 1998 +, pages = "491--505" +, succeeds = "ams-cmfal-94" +, update = "98.07 bibrelex+mitchell, 98.03 agarwal" } @inproceedings{ams-fnmst-91 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek and Subhash Suri" -, title = "Farthest neighbors, maximum spanning trees and related problems in higher dimensions" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "105--116" -, precedes = "ams-fnmst-92" -, update = "98.03 mitchell, 96.09 agarwal, 96.05 agarwal" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek and Subhash Suri" +, title = "Farthest neighbors, maximum spanning trees and related problems in higher dimensions" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "105--116" +, precedes = "ams-fnmst-92" +, update = "98.03 mitchell, 96.09 agarwal, 96.05 agarwal" } @article{ams-fnmst-92 -, author = "Pankaj K. Agarwal and J. Matou{\v s}ek and Subhash Suri" -, title = "Farthest neighbors, maximum spanning trees and related problems in higher dimensions" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 4 -, year = 1992 -, pages = "189--201" -, keywords = "proximity, partition, maximal spanning tree, minimal spanning tree, $d$-dimensional, furthest neighbors, approximation, bichromatic" -, succeeds = "ams-fnmst-91" -, update = "98.03 mitchell, 96.09 agarwal, 96.05 agarwal+pascucci, 95.05 korneenko" +, author = "Pankaj K. Agarwal and J. Matou{\v s}ek and Subhash Suri" +, title = "Farthest neighbors, maximum spanning trees and related problems in higher dimensions" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 4 +, year = 1992 +, pages = "189--201" +, keywords = "proximity, partition, maximal spanning tree, minimal spanning tree, $d$-dimensional, furthest neighbors, approximation, bichromatic" +, succeeds = "ams-fnmst-91" +, update = "98.03 mitchell, 96.09 agarwal, 96.05 agarwal+pascucci, 95.05 korneenko" } @inproceedings{amv-nacbs-98 -, author = "Pankaj K. Agarwal and T. Murali and J. Vitter" -, title = "A new algorithm for constructing binary space partitions for orthogonal rectangles" -, booktitle = "Proc. European Sympos. Algortihms" -, year = 1998 -, update = "99.03 agarwal" +, author = "Pankaj K. Agarwal and T. Murali and J. Vitter" +, title = "A new algorithm for constructing binary space partitions for orthogonal rectangles" +, booktitle = "Proc. European Sympos. Algortihms" +, year = 1998 +, update = "99.03 agarwal" } @inproceedings{amv-ptcbs-97 -, author = "Pankaj K. Agarwal and T. Murali and J. Vitter" -, title = "Practical techniques for constructing binary space partitions for orthogonal rectangles" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "382--384" -, cites = "agmv-bspfr-96, a-iurbw-90, fkn-vsgpt-80, py-obspo-92, sbgs-sacgi-69, t-vcdop-92, tn-sopub-87, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "Pankaj K. Agarwal and T. Murali and J. Vitter" +, title = "Practical techniques for constructing binary space partitions for orthogonal rectangles" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "382--384" +, cites = "agmv-bspfr-96, a-iurbw-90, fkn-vsgpt-80, py-obspo-92, sbgs-sacgi-69, t-vcdop-92, tn-sopub-87, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @article{aps-ccai-93 -, author = "Pankaj K. Agarwal and M. Pellegrini and Micha Sharir" -, title = "Counting circular arc intersections" -, journal = "SIAM J. Comput." -, volume = 22 -, number = 4 -, year = 1993 -, pages = "778--793" -, keywords = "intersection, counting, circles, circular arc arrangement, point location, random sampling, partition trees, geometric transformations" -, succeeds = "as-ccai-91" -, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko, 94.01 matousek" +, author = "Pankaj K. Agarwal and M. Pellegrini and Micha Sharir" +, title = "Counting circular arc intersections" +, journal = "SIAM J. Comput." +, volume = 22 +, number = 4 +, year = 1993 +, pages = "778--793" +, keywords = "intersection, counting, circles, circular arc arrangement, point location, random sampling, partition trees, geometric transformations" +, succeeds = "as-ccai-91" +, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko, 94.01 matousek" } @inproceedings{ap-aapc-00 -, author = "Pankaj K. Agarwal and Cecilia M. Procopiuc" -, title = "Approximation Algorithms for Projective Clustering" -, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" -, year = 2000 -, pages = "538--547" -, update = "00.03 agarwal" +, author = "Pankaj K. Agarwal and Cecilia M. Procopiuc" +, title = "Approximation Algorithms for Projective Clustering" +, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" +, year = 2000 +, pages = "538--547" +, update = "00.03 agarwal" } @inproceedings{ap-eaac-98 -, author = "Pankaj K. Agarwal and Cecilia M. Procopiuc" -, title = "Exact and Approximation Algorithms for Clustering" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "658--667" -, update = "99.07 bibrelex, 98.07 mitchell, 98.03 agarwal" +, author = "Pankaj K. Agarwal and Cecilia M. Procopiuc" +, title = "Exact and Approximation Algorithms for Clustering" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "658--667" +, update = "99.07 bibrelex, 98.07 mitchell, 98.03 agarwal" } @inproceedings{art-mpscr-95 -, author = "Pankaj K. Agarwal and P. Raghavan and H. Tamaki" -, title = "Motion planning for a steering-constrained robot through moderate obstacles" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, year = 1995 -, pages = "343--352" -, update = "96.05 agarwal, 95.09 agarwal+smid, 95.05 agarwal" +, author = "Pankaj K. Agarwal and P. Raghavan and H. Tamaki" +, title = "Motion planning for a steering-constrained robot through moderate obstacles" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, year = 1995 +, pages = "343--352" +, update = "96.05 agarwal, 95.09 agarwal+smid, 95.05 agarwal" } @techreport{ass-oleia-93 -, author = "P. K. Agarwal and O. Schwarzkopf and M. Sharir" -, title = "The overlay of lower envelopes and its applications" -, type = "Manuscript" -, institution = "??" -, year = 1993 -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "P. K. Agarwal and O. Schwarzkopf and M. Sharir" +, title = "The overlay of lower envelopes and its applications" +, type = "Manuscript" +, institution = "??" +, year = 1993 +, update = "98.07 agarwal, 98.03 bibrelex" } @article{ass-oleia-96 -, author = "P. K. Agarwal and O. Schwarzkopf and Micha Sharir" -, title = "The overlay of lower envelopes and its applications" -, journal = "Discrete Comput. Geom." -, volume = 15 -, year = 1996 -, pages = "1--13" -, update = "98.03 mitchell, 96.05 smid" +, author = "P. K. Agarwal and O. Schwarzkopf and Micha Sharir" +, title = "The overlay of lower envelopes and its applications" +, journal = "Discrete Comput. Geom." +, volume = 15 +, year = 1996 +, pages = "1--13" +, update = "98.03 mitchell, 96.05 smid" } @techreport{ass-oletd-94 -, author = "P. K. Agarwal and O. Schwarzkopf and M. Sharir" -, title = "The overlay of lower envelopes in three dimensions and its applications" -, type = "Manuscript" -, institution = "??" -, year = 1994 -, update = "98.03 bibrelex" +, author = "P. K. Agarwal and O. Schwarzkopf and M. Sharir" +, title = "The overlay of lower envelopes in three dimensions and its applications" +, type = "Manuscript" +, institution = "??" +, year = 1994 +, update = "98.03 bibrelex" } @inproceedings{ass-oletd-95 -, author = "Pankaj K. Agarwal and Otfried Schwarzkopf and Micha Sharir" -, title = "The Overlay of Lower Envelopes in Three Dimensions and its Applications" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "182--189" -, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-40.ps.gz" -, keywords = "curved surfaces" -, cites = "as-erasg-95, ass-sulbl-89, a-sdcgp-85, bd-olrcu-93, cgppsw-ctct-94, cegs-sessr-89, cs-arscg-89, bds-lric-94, e-acg-87, egs-ueplf-89, es-mnwsn-90, gpw-gtt-93, gpw-bngpi-94, hs-nblet-94, hs-atubs-95, hs-ndssg-86, hrr-araga-91, s-atubl-94, sa-dsstg-95, ZZZ" -, update = "98.03 bibrelex, 96.05 agarwal, 95.09 mitchell+schwarzkopf, 95.05 agarwal" +, author = "Pankaj K. Agarwal and Otfried Schwarzkopf and Micha Sharir" +, title = "The Overlay of Lower Envelopes in Three Dimensions and its Applications" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "182--189" +, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-40.ps.gz" +, keywords = "curved surfaces" +, cites = "as-erasg-95, ass-sulbl-89, a-sdcgp-85, bd-olrcu-93, cgppsw-ctct-94, cegs-sessr-89, cs-arscg-89, bds-lric-94, e-acg-87, egs-ueplf-89, es-mnwsn-90, gpw-gtt-93, gpw-bngpi-94, hs-nblet-94, hs-atubs-95, hs-ndssg-86, hrr-araga-91, s-atubl-94, sa-dsstg-95, ZZZ" +, update = "98.03 bibrelex, 96.05 agarwal, 95.09 mitchell+schwarzkopf, 95.05 agarwal" } @article{as-smmck-96 -, author = "Pankaj K. Agarwal and Sandeep Sen" -, title = "Selection in monotone matrices and computing $k$-th nearest neighbors" -, journal = "J. Algorithms" -, volume = 20 -, year = 1996 -, pages = "581--601" -, update = "96.09 agarwal" +, author = "Pankaj K. Agarwal and Sandeep Sen" +, title = "Selection in monotone matrices and computing $k$-th nearest neighbors" +, journal = "J. Algorithms" +, volume = 20 +, year = 1996 +, pages = "581--601" +, update = "96.09 agarwal" } @incollection{as-atgo-95 -, author = "P. K. Agarwal and Micha Sharir" -, title = "Algorithmic techniques for geometric optimization" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 1000 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "234--253" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "P. K. Agarwal and Micha Sharir" +, title = "Algorithmic techniques for geometric optimization" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 1000 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "234--253" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{as-anps-91 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Applications of a new partitioning scheme" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "379--391" -, keywords = "random sampling, range searching, ray tracing, hidden line/surface elimination" -, precedes = "as-anspt-93" -, update = "98.03 mitchell, 97.11 bibrelex, 96.05 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Applications of a new partitioning scheme" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "379--391" +, keywords = "random sampling, range searching, ray tracing, hidden line/surface elimination" +, precedes = "as-anspt-93" +, update = "98.03 mitchell, 97.11 bibrelex, 96.05 agarwal, 95.05 korneenko" } @techreport{as-anspt-91 -, author = "P. K. Agarwal and Micha Sharir" -, title = "Applications of a New Space Partition Technique" -, type = "Manuscript" -, year = 1991 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "P. K. Agarwal and Micha Sharir" +, title = "Applications of a New Space Partition Technique" +, type = "Manuscript" +, year = 1991 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{as-anspt-93 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Applications of a new space-partitioning technique" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "11--38" -, keywords = "random sampling, range searching, ray tracing, hidden line/surface elimination, partition trees" -, succeeds = "as-anps-91" -, update = "98.03 mitchell, 97.11 bibrelex, 97.07 agarwal, 96.05 agarwal, 95.05 korneenko, 94.01 matousek" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Applications of a new space-partitioning technique" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "11--38" +, keywords = "random sampling, range searching, ray tracing, hidden line/surface elimination, partition trees" +, succeeds = "as-anps-91" +, update = "98.03 mitchell, 97.11 bibrelex, 97.07 agarwal, 96.05 agarwal, 95.05 korneenko, 94.01 matousek" } @incollection{as-aa-00, - author = {Pankaj K. Agarwal and Micha Sharir}, - title = {Arrangements and Their Applications}, - editor = {J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia}, - booktitle = {Handbook of Computational Geometry}, - publisher = {Elsevier Science Publishers B.V. North-Holland}, - address = {Amsterdam}, - year = {2000} - pages = {49--119}, - update = {00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell}, - annote = {Chapter 2 of su-hcg-00} + author = {Pankaj K. Agarwal and Micha Sharir}, + title = {Arrangements and Their Applications}, + editor = {J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia}, + booktitle = {Handbook of Computational Geometry}, + publisher = {Elsevier Science Publishers B.V. North-Holland}, + address = {Amsterdam}, + year = {2000} + pages = {49--119}, + update = {00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell}, + annote = {Chapter 2 of su-hcg-00} } @techreport{as-cssp-90 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Circle shooting in a simple polygon" -, type = "Technical {Report}" -, number = "90-56" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, update = "98.03 mitchell, 96.05 agarwal, 95.01 smid, 93.09 milone+mitchell" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Circle shooting in a simple polygon" +, type = "Technical {Report}" +, number = "90-56" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, update = "98.03 mitchell, 96.05 agarwal, 95.01 smid, 93.09 milone+mitchell" } @article{as-cssp-93 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Circle shooting in a simple polygon" -, journal = "J. Algorithms" -, volume = 14 -, year = 1993 -, pages = "69--87" -, succeeds = "as-cssp-90" -, update = "98.03 mitchell, 96.05 agarwal, 95.01 smid, 94.05 matousek" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Circle shooting in a simple polygon" +, journal = "J. Algorithms" +, volume = 14 +, year = 1993 +, pages = "69--87" +, succeeds = "as-cssp-90" +, update = "98.03 mitchell, 96.05 agarwal, 95.01 smid, 94.05 matousek" } @article{as-cvspf-93 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Circular visibility of a simple polygon from a fixed point" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, month = mar -, year = 1993 -, pages = "1--25" -, keywords = "visibility, simple polygon" -, succeeds = "as-cvspp-90" -, update = "98.11 bibrelex, 98.03 mitchell, 96.05 agarwal, 95.05 korneenko, 94.05 sharir" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Circular visibility of a simple polygon from a fixed point" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, month = mar +, year = 1993 +, pages = "1--25" +, keywords = "visibility, simple polygon" +, succeeds = "as-cvspp-90" +, update = "98.11 bibrelex, 98.03 mitchell, 96.05 agarwal, 95.05 korneenko, 94.05 sharir" } @techreport{as-cvspp-90 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Circular visibility of a simple polygon from a point" -, type = "Report" -, number = "90-61" -, institution = "DIMACS, Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1990 -, keywords = "visibility, simple polygon" -, precedes = "as-cvspf-93" -, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Circular visibility of a simple polygon from a point" +, type = "Report" +, number = "90-61" +, institution = "DIMACS, Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1990 +, keywords = "visibility, simple polygon" +, precedes = "as-cvspf-93" +, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko" } @techreport{as-cci-91 -, author = "P. K. Agarwal and Micha Sharir" -, title = "Counting circular arc intersections" -, type = "Technical {Report}" -, number = "CS-1991-04" -, institution = "Dept. Comput. Sci., Duke Univ." -, address = "Durham, NC" -, month = jan -, year = 1991 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "P. K. Agarwal and Micha Sharir" +, title = "Counting circular arc intersections" +, type = "Technical {Report}" +, number = "CS-1991-04" +, institution = "Dept. Comput. Sci., Duke Univ." +, address = "Durham, NC" +, month = jan +, year = 1991 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{as-ccai-91 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Counting circular arc intersections" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "10--20" -, keywords = "intersection, circles, random sampling" -, cites = "a-pal1e-90, a-pal2a-90, aass-sdp-90, as-cci-91, bo-arcgi-79, c-rcsi-86, ce-oails-88, cegs-sessr-89, cegs-ablsp-89, cs-agpli-90, csw-qoubs-90, c-narsc-87, cegsw-ccbac-90, cs-arscg-89, e-acg-87, egs-oplms-86, gos-crial-89, hw-ensrq-87, m-cen-90, m-cha-90i, m-fppa1-88, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 96.05 agarwal" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Counting circular arc intersections" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "10--20" +, keywords = "intersection, circles, random sampling" +, cites = "a-pal1e-90, a-pal2a-90, aass-sdp-90, as-cci-91, bo-arcgi-79, c-rcsi-86, ce-oails-88, cegs-sessr-89, cegs-ablsp-89, cs-agpli-90, csw-qoubs-90, c-narsc-87, cegsw-ccbac-90, cs-arscg-89, e-acg-87, egs-oplms-86, gos-crial-89, hw-ensrq-87, m-cen-90, m-cha-90i, m-fppa1-88, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 96.05 agarwal" } @incollection{as-dssga-00 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "{Davenport-Schinzel} Sequences and Their Geometric Applications" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "1--47" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell" -, annote = "Chapter 1 of su-hcg-00" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "{Davenport-Schinzel} Sequences and Their Geometric Applications" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "1--47" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell" +, annote = "Chapter 1 of su-hcg-00" } @techreport{as-eago-96 -, author = "P. K. Agarwal and M. Sharir" -, title = "Efficient Algorithms for Geometric Optimization" -, number = "CS-1996-19" -, institution = "Dept. Computer Science, Duke University" -, year = 1996 -, update = "99.03 forrest, 98.11 bibrelex, 98.07 agarwal" +, author = "P. K. Agarwal and M. Sharir" +, title = "Efficient Algorithms for Geometric Optimization" +, number = "CS-1996-19" +, institution = "Dept. Computer Science, Duke University" +, year = 1996 +, update = "99.03 forrest, 98.11 bibrelex, 98.07 agarwal" } @article{as-eago-98 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Efficient algorithms for geometric optimization" -, journal = "ACM Comput. Surv." -, volume = 30 -, year = 1998 -, pages = "412--458" -, update = "00.11 smid, 00.07 agarwal" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Efficient algorithms for geometric optimization" +, journal = "ACM Comput. Surv." +, volume = 30 +, year = 1998 +, pages = "412--458" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{as-erasg-95 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Efficient Randomized Algorithms for Some Geometric Optimization Problems" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "326--335" -, keywords = "vertical decompositions, width of point sets, minimum-width annulus, biggest stick problem" -, cites = "aas-cefda-94, ass-oletd-95, ast-apsgo-94, as-cldsp-90, bc-ossc-94, cegs-dwclp-93, cegs-sessr-89, cs-agpli-90, cegsw-ccbac-90, cs-arscg-89, dmn-rass-92, bds-lric-94, bgh-vdt3s-94, efnn-rauvd-89, hs-nblet-94, hw-ensrq-87, ht-cws-88, ks-osse-93, ks-ebago-93, m-roass-91, m-apcad-83, s-atubl-94, sa-dsstg-95, sj-wrspp-94, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Efficient Randomized Algorithms for Some Geometric Optimization Problems" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "326--335" +, keywords = "vertical decompositions, width of point sets, minimum-width annulus, biggest stick problem" +, cites = "aas-cefda-94, ass-oletd-95, ast-apsgo-94, as-cldsp-90, bc-ossc-94, cegs-dwclp-93, cegs-sessr-89, cs-agpli-90, cegsw-ccbac-90, cs-arscg-89, dmn-rass-92, bds-lric-94, bgh-vdt3s-94, efnn-rauvd-89, hs-nblet-94, hw-ensrq-87, ht-cws-88, ks-osse-93, ks-ebago-93, m-roass-91, m-apcad-83, s-atubl-94, sa-dsstg-95, sj-wrspp-94, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{as-erasg-96 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Efficient Randomized Algorithms for Some Geometric Optimization Problems" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "317--337" -, update = "97.03 agarwal" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Efficient Randomized Algorithms for Some Geometric Optimization Problems" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "317--337" +, update = "97.03 agarwal" } @inproceedings{as-mpbpo-99 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Motion planning of a ball amid polyhedral obstacles in three dimensions" -, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1999 -, pages = "21--30" -, update = "99.03 agarwal" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Motion planning of a ball amid polyhedral obstacles in three dimensions" +, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1999 +, pages = "21--30" +, update = "99.03 agarwal" } @unpublished{as-mpbas-98 -, author = "P. K. Agarwal and M. Sharir" -, title = "Motion Planning of a Ball Amidst Segments in Three Dimensions" -, year = 1998 -, note = "unpublished manuscript" -, update = "98.03 agarwal" +, author = "P. K. Agarwal and M. Sharir" +, title = "Motion Planning of a Ball Amidst Segments in Three Dimensions" +, year = 1998 +, note = "unpublished manuscript" +, update = "98.03 agarwal" } @techreport{as-oldmw-90 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Off-line dynamic maintenance of the width of a planar point set" -, type = "Report" -, number = "90-64" -, institution = "DIMACS, Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1990 -, precedes = "as-oldmw-91" -, update = "98.03 mitchell, 96.05 agarwal, 93.09 jones" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Off-line dynamic maintenance of the width of a planar point set" +, type = "Report" +, number = "90-64" +, institution = "DIMACS, Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1990 +, precedes = "as-oldmw-91" +, update = "98.03 mitchell, 96.05 agarwal, 93.09 jones" } @article{as-oldmw-91 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Off-line dynamic maintenance of the width of a planar point set" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, year = 1991 -, pages = "65--78" -, keywords = "off-line problem, dynamization, width, convex hull" -, succeeds = "as-oldmw-90" -, update = "98.03 mitchell, 96.05 agarwal, 93.09 jones" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Off-line dynamic maintenance of the width of a planar point set" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, year = 1991 +, pages = "65--78" +, keywords = "off-line problem, dynamization, width, convex hull" +, succeeds = "as-oldmw-90" +, update = "98.03 mitchell, 96.05 agarwal, 93.09 jones" } @inproceedings{as-nvpt-93 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "On the number of views of polyhedral terrains" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "55--60" -, cites = "bhok-sanvp-91, bd-agisr-90, cf-cvbtd-82, cs-vppt-89, c-agrv-85, gcs-ecrag-91, hs-nblet-93, kd-svm-76, pd-acag-86, pd-voag-90, s-atubl-93, s-nvapo-91, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 96.05 agarwal, 95.09 agarwal, 93.09 milone+mitchell" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "On the number of views of polyhedral terrains" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "55--60" +, cites = "bhok-sanvp-91, bd-agisr-90, cf-cvbtd-82, cs-vppt-89, c-agrv-85, gcs-ecrag-91, hs-nblet-93, kd-svm-76, pd-acag-86, pd-voag-90, s-atubl-93, s-nvapo-91, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 96.05 agarwal, 95.09 agarwal, 93.09 milone+mitchell" } @article{as-nvpt-94 -, author = "P. K. Agarwal and Micha Sharir" -, title = "On the number of views of polyhedral terrains" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "177--182" -, update = "98.03 mitchell, 96.05 pocchiola, 95.09 agarwal, 93.09 milone+mitchell" +, author = "P. K. Agarwal and Micha Sharir" +, title = "On the number of views of polyhedral terrains" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "177--182" +, update = "98.03 mitchell, 96.05 pocchiola, 95.09 agarwal, 93.09 milone+mitchell" } @inproceedings{as-pckum-99 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Pipes, cigars, and kreplach: The union of {M}inkowski sums in three dimensions" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "143--153" -, update = "00.03 agarwal" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Pipes, cigars, and kreplach: The union of {M}inkowski sums in three dimensions" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "143--153" +, update = "00.03 agarwal" } @article{as-pckum-00 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Pipes, cigars, and kreplach: The union of {M}inkowski sums in three dimensions" -, journal = "Discrete Comput. Geom." -, volume = 24 -, number = 4 -, year = 2000 -, pages = "645--685" -, update = "01.07 orourke" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Pipes, cigars, and kreplach: The union of {M}inkowski sums in three dimensions" +, journal = "Discrete Comput. Geom." +, volume = 24 +, number = 4 +, year = 2000 +, pages = "645--685" +, update = "01.07 orourke" } @techreport{as-pglp-90 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Planar geometric location problems" -, type = "Report" -, number = "90-58" -, institution = "DIMACS, Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1990 -, precedes = "as-pglpm-91" -, update = "98.03 mitchell, 96.05 agarwal, 93.09 jones" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Planar geometric location problems" +, type = "Report" +, number = "90-58" +, institution = "DIMACS, Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1990 +, precedes = "as-pglpm-91" +, update = "98.03 mitchell, 96.05 agarwal, 93.09 jones" } @article{as-pglp-94 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Planar geometric location problems" -, journal = "Algorithmica" -, volume = 11 -, year = 1994 -, pages = "185--195" -, keywords = "location problems, arrangements, width, parametric search techniques" -, succeeds = "as-pglpm-91" -, update = "98.03 mitchell, 97.03 devillers, 96.05 agarwal, 94.05 sharir" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Planar geometric location problems" +, journal = "Algorithmica" +, volume = 11 +, year = 1994 +, pages = "185--195" +, keywords = "location problems, arrangements, width, parametric search techniques" +, succeeds = "as-pglpm-91" +, update = "98.03 mitchell, 97.03 devillers, 96.05 agarwal, 94.05 sharir" } @inproceedings{as-pglpm-91 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Planar geometric location problems and maintaining the width of a planar set" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "449--458" -, keywords = "location problems, arrangements, width, parametric search techniques" -, succeeds = "as-pglp-90" -, update = "98.03 mitchell, 96.05 agarwal, 93.09 jones" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Planar geometric location problems and maintaining the width of a planar set" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "449--458" +, keywords = "location problems, arrangements, width, parametric search techniques" +, succeeds = "as-pglp-90" +, update = "98.03 mitchell, 96.05 agarwal, 93.09 jones" } @article{as-rsacp-96i -, author = "P. K. Agarwal and Micha Sharir" -, title = "Ray shooting amidst convex polygons in {2D}" -, journal = "J. Algorithms" -, volume = 21 -, year = 1996 -, pages = "508--519" -, update = "98.03 mitchell, 97.03 agarwal+pocchiola+smid, 96.09 agarwal, 96.05 agarwal" +, author = "P. K. Agarwal and Micha Sharir" +, title = "Ray shooting amidst convex polygons in {2D}" +, journal = "J. Algorithms" +, volume = 21 +, year = 1996 +, pages = "508--519" +, update = "98.03 mitchell, 97.03 agarwal+pocchiola+smid, 96.09 agarwal, 96.05 agarwal" } @article{as-rsacp-96ii -, author = "P. K. Agarwal and Micha Sharir" -, title = "Ray shooting amidst convex polyhedra and polyhedral terrains in three dimensions" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "100--116" -, succeeds = "as-rsacp-93" -, update = "98.03 mitchell, 96.05 smid" +, author = "P. K. Agarwal and Micha Sharir" +, title = "Ray shooting amidst convex polyhedra and polyhedral terrains in three dimensions" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "100--116" +, succeeds = "as-rsacp-93" +, update = "98.03 mitchell, 96.05 smid" } @inproceedings{as-rsacp-93 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Ray Shooting Amidst Convex Polytopes in Three Dimensions" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "260--270" -, precedes = "as-rsacp-96ii" -, update = "98.03 mitchell, 96.05 smid, 93.05 smid" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Ray Shooting Amidst Convex Polytopes in Three Dimensions" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "260--270" +, precedes = "as-rsacp-96ii" +, update = "98.03 mitchell, 96.05 smid, 93.05 smid" } @techreport{as-rbida-88t -, author = "P. K. Agarwal and M. Sharir" -, title = "Red-blue intersection detection algorithms, with applications to motion planning and collision detection" -, type = "Manuscript" -, institution = "??" -, year = 1988 -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "P. K. Agarwal and M. Sharir" +, title = "Red-blue intersection detection algorithms, with applications to motion planning and collision detection" +, type = "Manuscript" +, institution = "??" +, year = 1988 +, update = "98.07 agarwal, 98.03 bibrelex" } @inproceedings{as-rbida-88 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Red-blue intersection detection algorithms, with applications to motion planning and collision detection" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "70--80" -, keywords = "motion planning, red-blue intersection" -, precedes = "as-rbida-90" -, cites = "as-rbida-88t, ass-sulbl-87, a-sdcgp-85, bo-arcgi-79, bk-cmpgm-87, c-fsram-85, cg-vippg-85, c-narsc-87, cegsw-ccbac-88t, c-dic-36, eghsssw-irals-88, egs-cmfal-88, ghlst-ltavs-87, gss-gmppt-88, hs-ndssg-86, hw-ensrq-87, klps-ujrcf-86, l-bc-61, my-mpacc-86, ZZZ" -, update = "98.03 bibrelex+mitchell, 96.05 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Red-blue intersection detection algorithms, with applications to motion planning and collision detection" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "70--80" +, keywords = "motion planning, red-blue intersection" +, precedes = "as-rbida-90" +, cites = "as-rbida-88t, ass-sulbl-87, a-sdcgp-85, bo-arcgi-79, bk-cmpgm-87, c-fsram-85, cg-vippg-85, c-narsc-87, cegsw-ccbac-88t, c-dic-36, eghsssw-irals-88, egs-cmfal-88, ghlst-ltavs-87, gss-gmppt-88, hs-ndssg-86, hw-ensrq-87, klps-ujrcf-86, l-bc-61, my-mpacc-86, ZZZ" +, update = "98.03 bibrelex+mitchell, 96.05 agarwal, 95.05 korneenko" } @article{as-rbida-90 -, author = "Pankaj K. Agarwal and Micha Sharir" -, title = "Red-blue intersection detection algorithms, with applications to motion planning and collision detection" -, journal = "SIAM J. Comput." -, volume = 19 -, number = 2 -, year = 1990 -, pages = "297--321" -, keywords = "intersection, motion planning, {Davenport}-{Schinzel} sequences, sweeping, red-blue, random sampling, ray shooting, curve arrangements" -, succeeds = "as-rbida-88" -, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal and Micha Sharir" +, title = "Red-blue intersection detection algorithms, with applications to motion planning and collision detection" +, journal = "SIAM J. Comput." +, volume = 19 +, number = 2 +, year = 1990 +, pages = "297--321" +, keywords = "intersection, motion planning, {Davenport}-{Schinzel} sequences, sweeping, red-blue, random sampling, ray shooting, curve arrangements" +, succeeds = "as-rbida-88" +, update = "98.03 mitchell, 96.05 agarwal, 95.05 korneenko" } @techreport{ass-sulbl-87 -, author = "P. K. Agarwal and M. Sharir and P. W. Shor" -, title = "Sharp upper and lower bounds on the length of general {Davenport}-{Schinzel} sequences" -, number = 332 -, institution = "Department of Computer Science, New York University" -, year = 1987 -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "P. K. Agarwal and M. Sharir and P. W. Shor" +, title = "Sharp upper and lower bounds on the length of general {Davenport}-{Schinzel} sequences" +, number = 332 +, institution = "Department of Computer Science, New York University" +, year = 1987 +, update = "98.07 agarwal, 98.03 bibrelex" } @techreport{ast-emst-93 -, author = "P. K. Agarwal and Micha Sharir and S. Toledo" -, title = "An efficient multi-dimensional searching technique and its applications" -, type = "Tech. Report" -, number = "CS-1993-20" -, institution = "Dept. Comp. Sci." -, address = "Duke University" -, year = 1993 -, update = "98.03 mitchell, 96.05 agarwal" +, author = "P. K. Agarwal and Micha Sharir and S. Toledo" +, title = "An efficient multi-dimensional searching technique and its applications" +, type = "Tech. Report" +, number = "CS-1993-20" +, institution = "Dept. Comp. Sci." +, address = "Duke University" +, year = 1993 +, update = "98.03 mitchell, 96.05 agarwal" } @inproceedings{ast-apsgo-92 -, author = "Pankaj K. Agarwal and Micha Sharir and Sivan Toledo" -, title = "Applications of parametric searching in geometric optimization" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "72--82" -, keywords = "parametric search" -, precedes = "ast-apsgo-94" -, update = "96.01 aronov, 95.05 korneenko" +, author = "Pankaj K. Agarwal and Micha Sharir and Sivan Toledo" +, title = "Applications of parametric searching in geometric optimization" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "72--82" +, keywords = "parametric search" +, precedes = "ast-apsgo-94" +, update = "96.01 aronov, 95.05 korneenko" } @article{ast-apsgo-94 -, author = "Pankaj K. Agarwal and Micha Sharir and S. Toledo" -, title = "Applications of parametric searching in geometric optimization" -, journal = "J. Algorithms" -, volume = 17 -, year = 1994 -, pages = "292--318" -, keywords = "parametric search" -, succeeds = "ast-apsgo-92" -, update = "98.03 mitchell, 96.05 agarwal, 96.01 aronov, 95.05 korneenko, 95.01 smid" +, author = "Pankaj K. Agarwal and Micha Sharir and S. Toledo" +, title = "Applications of parametric searching in geometric optimization" +, journal = "J. Algorithms" +, volume = 17 +, year = 1994 +, pages = "292--318" +, keywords = "parametric search" +, succeeds = "ast-apsgo-92" +, update = "98.03 mitchell, 96.05 agarwal, 96.01 aronov, 95.05 korneenko, 95.01 smid" } @inproceedings{asw-d2cp-97 -, author = "Pankaj K. Agarwal and Micha Sharir and Emo Welzl" -, title = "The Discrete $2$-Center Problem" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "147--155" -, cites = "a-slp3d-94, aass-sdp-93, as-pglp-94, cegsw-ccbac-90, cs-arscg-89, e-fcptc-97, hs-ftp-91, jk-eaetc-94, ks-ebago-93, klps-ujrcf-86, m-apcad-83, ms-cscgl-84, r-dcikc-88a, s-nlap2-97, t-icbcl-88, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "Pankaj K. Agarwal and Micha Sharir and Emo Welzl" +, title = "The Discrete $2$-Center Problem" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "147--155" +, cites = "a-slp3d-94, aass-sdp-93, as-pglp-94, cegsw-ccbac-90, cs-arscg-89, e-fcptc-97, hs-ftp-91, jk-eaetc-94, ks-ebago-93, klps-ujrcf-86, m-apcad-83, ms-cscgl-84, r-dcikc-88a, s-nlap2-97, t-icbcl-88, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @article{ass-sulbl-89 -, author = "Pankaj K. Agarwal and Micha Sharir and P. W.Shor" -, title = "Sharp upper and lower bounds on the length of general {Davenport}-{Schinzel} sequences" -, journal = "J. Combin. Theory Ser. A" -, volume = 52 -, number = 2 -, year = 1989 -, pages = "228--274" -, keywords = "Davenport-Schinzel sequences, Ackermann's function, combinatorial geometry" -, update = "98.07 agarwal, 98.03 mitchell, 96.05 agarwal, 95.05 korneenko" +, author = "Pankaj K. Agarwal and Micha Sharir and P. W.Shor" +, title = "Sharp upper and lower bounds on the length of general {Davenport}-{Schinzel} sequences" +, journal = "J. Combin. Theory Ser. A" +, volume = 52 +, number = 2 +, year = 1989 +, pages = "228--274" +, keywords = "Davenport-Schinzel sequences, Ackermann's function, combinatorial geometry" +, update = "98.07 agarwal, 98.03 mitchell, 96.05 agarwal, 95.05 korneenko" } @article{as-escrs-90 -, author = "Pankaj K. Agarwal and M.-T. Shing" -, title = "Efficient special cases of rectilinear {Steiner} trees: Points on the boundary of a rectilinear rectangle" -, journal = "Networks" -, volume = 20 -, year = 1990 -, pages = "453--485" -, keywords = "Steiner trees" -, update = "98.11 bibrelex, 96.05 agarwal" +, author = "Pankaj K. Agarwal and M.-T. Shing" +, title = "Efficient special cases of rectilinear {Steiner} trees: Points on the boundary of a rectilinear rectangle" +, journal = "Networks" +, volume = 20 +, year = 1990 +, pages = "453--485" +, keywords = "Steiner trees" +, update = "98.11 bibrelex, 96.05 agarwal" } @inproceedings{as-sagp-94 -, author = "Pankaj K. Agarwal and Subhash Suri" -, title = "Surface Approximation and Geometric Partitions" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "24--33" -, keywords = "triangulation, ray shooting" -, update = "95.01 mitchell" +, author = "Pankaj K. Agarwal and Subhash Suri" +, title = "Surface Approximation and Geometric Partitions" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "24--33" +, keywords = "triangulation, ray shooting" +, update = "95.01 mitchell" } @article{as-sagp-98 -, author = "P. K. Agarwal and S. Suri" -, title = "Surface Approximation and Geometric Partitions" -, journal = "SIAM J. Comput." -, volume = 27 -, year = 1998 -, pages = "1016--1035" -, update = "01.04 smid" +, author = "P. K. Agarwal and S. Suri" +, title = "Surface Approximation and Geometric Partitions" +, journal = "SIAM J. Comput." +, volume = 27 +, year = 1998 +, pages = "1016--1035" +, update = "01.04 smid" } @article{av-eaapc-00 -, author = "P. K. Agarwal and Kasturi R. Varadarajan" -, title = "Efficient algorithms for approximating polygonal chains" -, journal = "Discrete Comput. Geom." -, volume = 23 -, year = 2000 -, pages = "273--291" -, update = "01.11 smid, 00.03 agarwal" +, author = "P. K. Agarwal and Kasturi R. Varadarajan" +, title = "Efficient algorithms for approximating polygonal chains" +, journal = "Discrete Comput. Geom." +, volume = 23 +, year = 2000 +, pages = "273--291" +, update = "01.11 smid, 00.03 agarwal" } @article{af-wmsia-96 -, author = "R. Agarwala and D. Fern\'{a}ndez-Baca" -, title = "Weighted multidimensional search and its applications to convex optimization" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "83--99" -, update = "96.05 agarwal" +, author = "R. Agarwala and D. Fern\'{a}ndez-Baca" +, title = "Weighted multidimensional search and its applications to convex optimization" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "83--99" +, update = "96.05 agarwal" } @article{a-lncg-88 -, author = "A. Aggarwal" -, title = "Lecture Notes in Computational Geometry" -, journal = "MIT Reserch Seminar Series MIT/LCS/RSS" -, volume = 3 -, month = aug -, year = 1988 -, update = "97.11 bibrelex" +, author = "A. Aggarwal" +, title = "Lecture Notes in Computational Geometry" +, journal = "MIT Reserch Seminar Series MIT/LCS/RSS" +, volume = 3 +, month = aug +, year = 1988 +, update = "97.11 bibrelex" } @article{a-obfma-86 -, author = "A. Aggarwal" -, title = "Optimal bounds for finding maximum on array of processors with {$k$} global buses" -, journal = "IEEE Trans. Comput." -, volume = "C-35" -, year = 1986 -, pages = "62--64" -, update = "98.07 bibrelex" +, author = "A. Aggarwal" +, title = "Optimal bounds for finding maximum on array of processors with {$k$} global buses" +, journal = "IEEE Trans. Comput." +, volume = "C-35" +, year = 1986 +, pages = "62--64" +, update = "98.07 bibrelex" } @article{a-rtcg-89 -, author = "A. Aggarwal" -, title = "Research topics in computational geometry" -, journal = "Bull. EATCS" -, volume = 39 -, year = 1989 -, pages = "388--408" -, keywords = "problem collection" -, update = "95.05 korneenko" +, author = "A. Aggarwal" +, title = "Research topics in computational geometry" +, journal = "Bull. EATCS" +, volume = 39 +, year = 1989 +, pages = "388--408" +, keywords = "problem collection" +, update = "95.05 korneenko" } @phdthesis{a-agpiv-84 -, author = "Alok Aggarwal" -, title = "The art gallery problem: {Its} variations, applications, and algorithmic aspects" -, school = "Dept. of Comput. Sci., Johns Hopkins University" -, address = "Baltimore, MD" -, year = 1984 -, keywords = "visibility" -, update = "98.11 bibrelex, 98.03 smid, 97.11 orourke" +, author = "Alok Aggarwal" +, title = "The art gallery problem: {Its} variations, applications, and algorithmic aspects" +, school = "Dept. of Comput. Sci., Johns Hopkins University" +, address = "Baltimore, MD" +, year = 1984 +, keywords = "visibility" +, update = "98.11 bibrelex, 98.03 smid, 97.11 orourke" } @inproceedings{aacs-mhm-87 -, author = "A. Aggarwal and B. Alpern and A. K. Chandra and M. Snir" -, title = "A model for hierarchical memory" -, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '87" -, year = 1987 -, pages = "305--313" -, update = "98.07 bibrelex, 97.03 agarwal, 94.05 franciosa" +, author = "A. Aggarwal and B. Alpern and A. K. Chandra and M. Snir" +, title = "A model for hierarchical memory" +, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '87" +, year = 1987 +, pages = "305--313" +, update = "98.07 bibrelex, 97.03 agarwal, 94.05 franciosa" } @inproceedings{abkks-emcmu-92 -, author = "A. Aggarwal and A. Bar-Noy and S. Khuller and D. Kravets and B. Schieber" -, title = "Efficient minimum cost matching using quadrangle inequality" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "583--592" -, update = "98.03 bibrelex" +, author = "A. Aggarwal and A. Bar-Noy and S. Khuller and D. Kravets and B. Schieber" +, title = "Efficient minimum cost matching using quadrangle inequality" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "583--592" +, update = "98.03 bibrelex" } @inproceedings{abosy-fmcnp-85 -, author = "A. Aggarwal and H. Booth and J. O'Rourke and Subhash Suri and C. K. Yap" -, title = "Finding minimal convex nested polygons" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "296--304" -, keywords = "packing, visibility" -, precedes = "abosy-fmcnp-89" -, cites = "cy-psppo-84, da-frkec-84, db-ccppf-83, kl-fstcg-85, o-fmeb-84, so-fmnp-85t, t-sgprc-83, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "A. Aggarwal and H. Booth and J. O'Rourke and Subhash Suri and C. K. Yap" +, title = "Finding minimal convex nested polygons" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "296--304" +, keywords = "packing, visibility" +, precedes = "abosy-fmcnp-89" +, cites = "cy-psppo-84, da-frkec-84, db-ccppf-83, kl-fstcg-85, o-fmeb-84, so-fmnp-85t, t-sgprc-83, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{abosy-fmcnp-89 -, author = "A. Aggarwal and H. Booth and J. O'Rourke and Subhash Suri and C. K. Yap" -, title = "Finding minimal convex nested polygons" -, journal = "Inform. Comput." -, volume = 83 -, number = 1 -, month = oct -, year = 1989 -, pages = "98--110" -, keywords = "packing, visibility, convex polygons, extremal figures" -, succeeds = "abosy-fmcnp-85" -, update = "98.03 mitchell, 95.05 korneenko" +, author = "A. Aggarwal and H. Booth and J. O'Rourke and Subhash Suri and C. K. Yap" +, title = "Finding minimal convex nested polygons" +, journal = "Inform. Comput." +, volume = 83 +, number = 1 +, month = oct +, year = 1989 +, pages = "98--110" +, keywords = "packing, visibility, convex polygons, extremal figures" +, succeeds = "abosy-fmcnp-85" +, update = "98.03 mitchell, 95.05 korneenko" } @inproceedings{ac-vma-88 -, author = "A. Aggarwal and A. K. Chandra" -, title = "Virtual memory algorithms" -, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." -, year = 1988 -, pages = "173--185" -, update = "94.05 franciosa" +, author = "A. Aggarwal and A. K. Chandra" +, title = "Virtual memory algorithms" +, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." +, year = 1988 +, pages = "173--185" +, update = "94.05 franciosa" } @article{acs-ccp-90 -, author = "A. Aggarwal and A. K. Chandra and M. Snir" -, title = "Communication Complexity of {PRAM}s" -, journal = "Theoret. Comput. Sci." -, volume = 71 -, year = 1990 -, pages = "3--28" -, update = "96.09 orourke" +, author = "A. Aggarwal and A. K. Chandra and M. Snir" +, title = "Communication Complexity of {PRAM}s" +, journal = "Theoret. Comput. Sci." +, volume = 71 +, year = 1990 +, pages = "3--28" +, update = "96.09 orourke" } @inproceedings{acs-hmbt-87 -, author = "A. Aggarwal and A. K. Chandra and M. Snir" -, title = "Hierarchical memory with block transfer" -, booktitle = "Proc. 28rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "204--216" -, update = "94.05 franciosa" +, author = "A. Aggarwal and A. K. Chandra and M. Snir" +, title = "Hierarchical memory with block transfer" +, booktitle = "Proc. 28rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "204--216" +, update = "94.05 franciosa" } @article{acy-macp-85 -, author = "A. Aggarwal and J. S. Chang and C. K. Yap" -, title = "Minimum area circumscribing polygons" -, journal = "Visual Comput." -, volume = 1 -, year = 1985 -, pages = "112--117" -, keywords = "extremal figures, polygons" -, update = "95.05 korneenko" +, author = "A. Aggarwal and J. S. Chang and C. K. Yap" +, title = "Minimum area circumscribing polygons" +, journal = "Visual Comput." +, volume = 1 +, year = 1985 +, pages = "112--117" +, keywords = "extremal figures, polygons" +, update = "95.05 korneenko" } @techreport{ac-eapps-84 -, author = "A. Aggarwal and Bernard Chazelle" -, title = "Efficient algorithm for partitioning a polygon into star-shaped polygons" -, type = "Report" -, number = "??" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1984 -, update = "98.03 mitchell" +, author = "A. Aggarwal and Bernard Chazelle" +, title = "Efficient algorithm for partitioning a polygon into star-shaped polygons" +, type = "Report" +, number = "??" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1984 +, update = "98.03 mitchell" } @article{acgoy-pcg-88 -, author = "A. Aggarwal and Bernard Chazelle and Leonidas J. Guibas and C. {\'O}'D{\'u}nlaing and C. Yap" -, title = "Parallel computational geometry" -, journal = "Algorithmica" -, volume = 3 -, year = 1988 -, pages = "293--327" -, succeeds = "acgoy-pcg-85" -, update = "98.03 mitchell" +, author = "A. Aggarwal and Bernard Chazelle and Leonidas J. Guibas and C. {\'O}'D{\'u}nlaing and C. Yap" +, title = "Parallel computational geometry" +, journal = "Algorithmica" +, volume = 3 +, year = 1988 +, pages = "293--327" +, succeeds = "acgoy-pcg-85" +, update = "98.03 mitchell" } @inproceedings{acgoy-pcg-85 -, author = "A. Aggarwal and Bernard Chazelle and Leonidas J. Guibas and C. {\'O}'D{\'u}nlaing and C. K. Yap" -, title = "Parallel computational geometry" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "468--477" -, precedes = "acgoy-pcg-88" -, update = "98.03 mitchell" +, author = "A. Aggarwal and Bernard Chazelle and Leonidas J. Guibas and C. {\'O}'D{\'u}nlaing and C. K. Yap" +, title = "Parallel computational geometry" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "468--477" +, precedes = "acgoy-pcg-88" +, update = "98.03 mitchell" } @inproceedings{ackms-amtsp-97 -, author = "Alok Aggarwal and Don Coppersmith and Sanjeev Khanna and Rajeev Motwani and Baruch Schieber" -, title = "The Angular-Metric Traveling Salesman Problem" -, booktitle = "Proceedings of the Eighth Annual ACM-SIAM Symposium on Discrete Algorithms" -, site = "New Orleans, Louisiana" -, month = jan -, year = 1997 -, pages = "221--229" -, update = "98.03 mitchell" -, annote = "An earlier version, titled 'The Angle-TSP Problem and the +, author = "Alok Aggarwal and Don Coppersmith and Sanjeev Khanna and Rajeev Motwani and Baruch Schieber" +, title = "The Angular-Metric Traveling Salesman Problem" +, booktitle = "Proceedings of the Eighth Annual ACM-SIAM Symposium on Discrete Algorithms" +, site = "New Orleans, Louisiana" +, month = jan +, year = 1997 +, pages = "221--229" +, update = "98.03 mitchell" +, annote = "An earlier version, titled 'The Angle-TSP Problem and the Weighted Linear Matroid Parity Problem' was accepted to STOC96, but apparently was withdrawn, as it never appeared there" } @article{ackms-amtsp-99 -, author = "A. Aggarwal and D. Coppersmith and S. Khanna and R. Motwani and B. Schieber" -, title = "The angular-metric traveling salesman problem" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 1999 -, pages = "697--711" -, update = "00.11 smid, 00.07 smid" +, author = "A. Aggarwal and D. Coppersmith and S. Khanna and R. Motwani and B. Schieber" +, title = "The angular-metric traveling salesman problem" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 1999 +, pages = "697--711" +, update = "00.11 smid, 00.07 smid" } @article{aert-otbsp-92 -, author = "A. Aggarwal and H. Edelsbrunner and P. Raghavan and P. Tiwari" -, title = "Optimal Time Bounds for Some Proximity Problems in the Plane" -, journal = "Inform. Process. Lett." -, volume = 42 -, number = 1 -, year = 1992 -, pages = "55--60" -, keywords = "proximity, lower bounds" -, update = "95.05 korneenko, 93.09 held" +, author = "A. Aggarwal and H. Edelsbrunner and P. Raghavan and P. Tiwari" +, title = "Optimal Time Bounds for Some Proximity Problems in the Plane" +, journal = "Inform. Process. Lett." +, volume = 42 +, number = 1 +, year = 1992 +, pages = "55--60" +, keywords = "proximity, lower bounds" +, update = "95.05 korneenko, 93.09 held" } @incollection{ags-ccrpd-88 -, author = "A. Aggarwal and S. K. Ghosh and R. K. Shyamasundar" -, title = "Computational complexity of restricted polygon decompositions" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "1--11" -, keywords = "polygons, decomposition, watchman problem" -, update = "95.05 korneenko" +, author = "A. Aggarwal and S. K. Ghosh and R. K. Shyamasundar" +, title = "Computational complexity of restricted polygon decompositions" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "1--11" +, keywords = "polygons, decomposition, watchman problem" +, update = "95.05 korneenko" } @inproceedings{agss-ltacv-87 -, author = "A. Aggarwal and L. J. Guibas and J. Saxe and P. W. Shor" -, title = "A linear time algorithm for computing the {Voronoi} diagram of a convex polygon" -, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." -, year = 1987 -, pages = "39--45" -, precedes = "agss-ltacv-89" -, update = "01.07 devillers, 98.07 agarwal, 98.03 mitchell" +, author = "A. Aggarwal and L. J. Guibas and J. Saxe and P. W. Shor" +, title = "A linear time algorithm for computing the {Voronoi} diagram of a convex polygon" +, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." +, year = 1987 +, pages = "39--45" +, precedes = "agss-ltacv-89" +, update = "01.07 devillers, 98.07 agarwal, 98.03 mitchell" } @article{agss-ltacv-89 -, author = "A. Aggarwal and L. J. Guibas and J. Saxe and P. W. Shor" -, title = "A linear-time algorithm for computing the {Voronoi} diagram of a convex polygon" -, journal = "Discrete Comput. Geom." -, volume = 4 -, number = 6 -, year = 1989 -, pages = "591--604" -, keywords = "convex polygons, Voronoi diagram" -, succeeds = "agss-ltacv-87" -, update = "01.07 devillers, 98.03 mitchell, 95.05 korneenko" +, author = "A. Aggarwal and L. J. Guibas and J. Saxe and P. W. Shor" +, title = "A linear-time algorithm for computing the {Voronoi} diagram of a convex polygon" +, journal = "Discrete Comput. Geom." +, volume = 4 +, number = 6 +, year = 1989 +, pages = "591--604" +, keywords = "convex polygons, Voronoi diagram" +, succeeds = "agss-ltacv-87" +, update = "01.07 devillers, 98.03 mitchell, 95.05 korneenko" } @inproceedings{ahl-sqrpc-90 -, author = "A. Aggarwal and M. Hansen and T. Leighton" -, title = "Solving query-retrieval problems by compacting {Voronoi} diagrams" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "331--340" -, keywords = "Voronoi diagram, searching, separator, filtering search, probabilistic geometry" -, comments = "Submitted to J. ACM" -, update = "95.05 korneenko" +, author = "A. Aggarwal and M. Hansen and T. Leighton" +, title = "Solving query-retrieval problems by compacting {Voronoi} diagrams" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "331--340" +, keywords = "Voronoi diagram, searching, separator, filtering search, probabilistic geometry" +, comments = "Submitted to J. ACM" +, update = "95.05 korneenko" } @article{ah-ccbpc-89 -, author = "A. Aggarwal and M. Hawrylycz" -, title = "On computing the closest boundary point on the convex hull" -, journal = "Inform. Process. Lett." -, volume = 31 -, year = 1989 -, pages = "311--314" -, keywords = "proximity, points, convex hull, lower bound" -, update = "95.05 korneenko" +, author = "A. Aggarwal and M. Hawrylycz" +, title = "On computing the closest boundary point on the convex hull" +, journal = "Inform. Process. Lett." +, volume = 31 +, year = 1989 +, pages = "311--314" +, keywords = "proximity, points, convex hull, lower bound" +, update = "95.05 korneenko" } @inproceedings{aiks-fkpmd-89 -, author = "A. Aggarwal and H. Imai and N. Katoh and Subhash Suri" -, title = "Finding $k$ points with minimum diameter and related problems" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "283--291" -, precedes = "aiks-fkpmd-91" -, cites = "agss-ltacv-87, as-facle-87, a-imtpr-72, abky-cabmm-88, ddg-fsp-83, h-ca-75, hs-ftp-89, ia-eaggs-86, l-knnvd-82, mos-fmrio-85, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "A. Aggarwal and H. Imai and N. Katoh and Subhash Suri" +, title = "Finding $k$ points with minimum diameter and related problems" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "283--291" +, precedes = "aiks-fkpmd-91" +, cites = "agss-ltacv-87, as-facle-87, a-imtpr-72, abky-cabmm-88, ddg-fsp-83, h-ca-75, hs-ftp-89, ia-eaggs-86, l-knnvd-82, mos-fmrio-85, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{aiks-fkpmd-91 -, author = "A. Aggarwal and H. Imai and N. Katoh and Subhash Suri" -, title = "Finding $k$ points with minimum diameter and related problems" -, journal = "J. Algorithms" -, volume = 12 -, year = 1991 -, pages = "38--56" -, succeeds = "aiks-fkpmd-89" -, update = "98.03 mitchell" +, author = "A. Aggarwal and H. Imai and N. Katoh and Subhash Suri" +, title = "Finding $k$ points with minimum diameter and related problems" +, journal = "J. Algorithms" +, volume = 12 +, year = 1991 +, pages = "38--56" +, succeeds = "aiks-fkpmd-89" +, update = "98.03 mitchell" } @article{ak-agmsg-87 -, author = "A. Aggarwal and M. M. Klawe" -, title = "Applications of generalized matrix searching to geometric algorithms" -, journal = "Discrete Appl. Math." -, volume = 27 -, year = 1987 -, pages = "3--23" -, keywords = "monotone matrix, proximity, polygons" -, update = "96.09 agarwal, 95.05 korneenko" +, author = "A. Aggarwal and M. M. Klawe" +, title = "Applications of generalized matrix searching to geometric algorithms" +, journal = "Discrete Appl. Math." +, volume = 27 +, year = 1987 +, pages = "3--23" +, keywords = "monotone matrix, proximity, polygons" +, update = "96.09 agarwal, 95.05 korneenko" } @article{akllw-lbapl-91 -, author = "A. Aggarwal and M. M. Klawe and D. Lichtenstein and N. Linial and A. Wigderson" -, title = "A lower bound on the area of permutation layouts" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "241--255" -, succeeds = "akllw-mlge-85" -, update = "96.09 agarwal" +, author = "A. Aggarwal and M. M. Klawe and D. Lichtenstein and N. Linial and A. Wigderson" +, title = "A lower bound on the area of permutation layouts" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "241--255" +, succeeds = "akllw-mlge-85" +, update = "96.09 agarwal" } @inproceedings{akllw-mlge-85 -, author = "A. Aggarwal and M. M. Klawe and D. Lichtenstein and N. Linial and A. Wigderson" -, title = "Multi-layer grid embeddings" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "186--196" -, precedes = "akllw-lbapl-91" -, update = "96.09 agarwal" +, author = "A. Aggarwal and M. M. Klawe and D. Lichtenstein and N. Linial and A. Wigderson" +, title = "Multi-layer grid embeddings" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "186--196" +, precedes = "akllw-lbapl-91" +, update = "96.09 agarwal" } @inproceedings{akmsw-gamsa-86 -, author = "A. Aggarwal and M. M. Klawe and S. Moran and P. W. Shor and R. Wilber" -, title = "Geometric applications of a matrix searching algorithm" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "285--292" -, precedes = "akmsw-gamsa-87" -, cites = "acy-macp-85, am-fcmp-86, atb-mdcp-82, bddg-fep-85, dkssu-owbr-81, lp-annpc-78, mos-fmrio-85, p-scg-77, sd-sgslw-81, s-gc-75, sh-cpp-75, t-ccu-84, t-safnp-83, tb-gaufn-81, ZZZ" -, update = "98.07 agarwal, 98.03 bibrelex, 96.09 agarwal, 96.05 agarwal" +, author = "A. Aggarwal and M. M. Klawe and S. Moran and P. W. Shor and R. Wilber" +, title = "Geometric applications of a matrix searching algorithm" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "285--292" +, precedes = "akmsw-gamsa-87" +, cites = "acy-macp-85, am-fcmp-86, atb-mdcp-82, bddg-fep-85, dkssu-owbr-81, lp-annpc-78, mos-fmrio-85, p-scg-77, sd-sgslw-81, s-gc-75, sh-cpp-75, t-ccu-84, t-safnp-83, tb-gaufn-81, ZZZ" +, update = "98.07 agarwal, 98.03 bibrelex, 96.09 agarwal, 96.05 agarwal" } @article{akmsw-gamsa-87 -, author = "A. Aggarwal and M. M. Klawe and S. Moran and P. W. Shor and R. Wilber" -, title = "Geometric applications of a matrix-searching algorithm" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "195--208" -, keywords = "polygons, furthest neighbors, convex polygons, routing" -, succeeds = "akmsw-gamsa-86" -, update = "98.07 agarwal, 96.09 agarwal, 96.05 agarwal, 95.05 korneenko" +, author = "A. Aggarwal and M. M. Klawe and S. Moran and P. W. Shor and R. Wilber" +, title = "Geometric applications of a matrix-searching algorithm" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "195--208" +, keywords = "polygons, furthest neighbors, convex polygons, routing" +, succeeds = "akmsw-gamsa-86" +, update = "98.07 agarwal, 96.09 agarwal, 96.05 agarwal, 95.05 korneenko" } @article{ak-ltafa-89 -, author = "A. Aggarwal and D. Kravets" -, title = "A linear time algorithm for finding all farthest neighbors in a convex polygon" -, journal = "Inform. Process. Lett." -, volume = 31 -, number = 1 -, year = 1989 -, pages = "17--20" -, keywords = "convex polygons, furthest neighbors" -, update = "95.05 korneenko" +, author = "A. Aggarwal and D. Kravets" +, title = "A linear time algorithm for finding all farthest neighbors in a convex polygon" +, journal = "Inform. Process. Lett." +, volume = 31 +, number = 1 +, year = 1989 +, pages = "17--20" +, keywords = "convex polygons, furthest neighbors" +, update = "95.05 korneenko" } @inproceedings{akps-psgma-90 -, author = "A. Aggarwal and D. Kravets and J. K. Park and S. Sen" -, title = "Parallel Searching in Generalized {Monge} Arrays with Applications" -, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "259--268" -, update = "96.09 orourke" +, author = "A. Aggarwal and D. Kravets and J. K. Park and S. Sen" +, title = "Parallel Searching in Generalized {Monge} Arrays with Applications" +, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "259--268" +, update = "96.09 orourke" } @article{am-fcmp-86 -, author = "A. Aggarwal and R. Melville" -, title = "Fast computation of the modality of polygons" -, journal = "J. Algorithms" -, volume = 7 -, number = 3 -, year = 1986 -, pages = "369--381" -, keywords = "polygons, modality" -, update = "95.05 korneenko" +, author = "A. Aggarwal and R. Melville" +, title = "Fast computation of the modality of polygons" +, journal = "J. Algorithms" +, volume = 7 +, number = 3 +, year = 1986 +, pages = "369--381" +, keywords = "polygons, modality" +, update = "95.05 korneenko" } @inproceedings{amss-cmvvd-89 -, author = "A. Aggarwal and S. Moran and P. W. Shor and Subhash Suri" -, title = "Computing the minimum visible vertex distance between two polygons" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "115--134" -, keywords = "proximity, visibility, polygons" -, update = "98.03 mitchell, 95.05 korneenko" +, author = "A. Aggarwal and S. Moran and P. W. Shor and Subhash Suri" +, title = "Computing the minimum visible vertex distance between two polygons" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "115--134" +, keywords = "proximity, visibility, polygons" +, update = "98.03 mitchell, 95.05 korneenko" } @inproceedings{ap-nsmma-88 -, author = "A. Aggarwal and J. K. Park" -, title = "Notes on searching in multidimensional monotone arrays" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "497--512" -, comments = "To appear in J. Algorithms as two papers" -, update = "98.07 agarwal" +, author = "A. Aggarwal and J. K. Park" +, title = "Notes on searching in multidimensional monotone arrays" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "497--512" +, comments = "To appear in J. Algorithms as two papers" +, update = "98.07 agarwal" } @techreport{ap-psmma-89 -, author = "A. Aggarwal and J. K. Park" -, title = "Parallel searching in Multidimensional Monotone Arrays" -, type = "Manuscript" -, institution = "??" -, year = 1989 -, update = "97.11 bibrelex" +, author = "A. Aggarwal and J. K. Park" +, title = "Parallel searching in Multidimensional Monotone Arrays" +, type = "Manuscript" +, institution = "??" +, year = 1989 +, update = "97.11 bibrelex" } @techreport{ap-ssmma-89 -, author = "A. Aggarwal and J. K. Park" -, title = "Sequential searching multidimensional monotone arrays" -, institution = "" -, month = jun -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "A. Aggarwal and J. K. Park" +, title = "Sequential searching multidimensional monotone arrays" +, institution = "" +, month = jun +, year = 1989 +, update = "93.09 milone+mitchell" } @inproceedings{ap-opsml-94 -, author = "A. Aggarwal and C. G. Plaxton" -, title = "Optimal Parallel Sorting in Multi-Level Storage" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "659--668" -, update = "99.07 smid, 96.09 orourke" +, author = "A. Aggarwal and C. G. Plaxton" +, title = "Optimal Parallel Sorting in Multi-Level Storage" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "659--668" +, update = "99.07 smid, 96.09 orourke" } @techreport{art-lbcpr-87 -, author = "A. Aggarwal and P. Raghavan and P. Tiwari" -, title = "Lower Bounds for Closest Pair and Related Problems in Simple Polygons" -, number = "" -, institution = "IBM Thomas J. Watson Research Center" -, address = "Yorktown Heights, NY" -, year = 1987 -, update = "93.09 held" +, author = "A. Aggarwal and P. Raghavan and P. Tiwari" +, title = "Lower Bounds for Closest Pair and Related Problems in Simple Polygons" +, number = "" +, institution = "IBM Thomas J. Watson Research Center" +, address = "Yorktown Heights, NY" +, year = 1987 +, update = "93.09 held" } @article{ar-ddsnn-91 -, author = "A. Aggarwal and P. Raghawan" -, title = "Deferred data structures for the nearest-neighbor problem" -, journal = "Inform. Process. Lett." -, volume = 40 -, number = 3 -, year = 1991 -, pages = "119--122" -, keywords = "convex hull, Voronoi diagram, proximity, nearest neighbor, furthest neighbor, deferred data structures" -, update = "95.05 korneenko" +, author = "A. Aggarwal and P. Raghawan" +, title = "Deferred data structures for the nearest-neighbor problem" +, journal = "Inform. Process. Lett." +, volume = 40 +, number = 3 +, year = 1991 +, pages = "119--122" +, keywords = "convex hull, Voronoi diagram, proximity, nearest neighbor, furthest neighbor, deferred data structures" +, update = "95.05 korneenko" } @inproceedings{ast-fmwkl-93 -, author = "A. Aggarwal and B. Schieber and T. Tokuyama" -, title = "Finding a minimum weight $k$-link path in graphs with {Monge} property and applications" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "189--197" -, precedes = "ast-fmwkl-94" -, cites = "akmsw-gamsa-87, ap-nsmma-88, at-ciqdp-93, a-dpi-91, blp-despp-92, bddg-fep-85, cegs-dwclp-92, c-sdsno-87, cl-flwsf-90, f-oatp-91, k-sltac-89, kk-altag-88, lh-llc-90, lp-pctow-91, ls-oldpa-91, m-apcad-83, v-pcp-75, w-oqms-91, ZZZ" -, update = "98.03 bibrelex, 95.05 korneenko, 93.09 jones" +, author = "A. Aggarwal and B. Schieber and T. Tokuyama" +, title = "Finding a minimum weight $k$-link path in graphs with {Monge} property and applications" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "189--197" +, precedes = "ast-fmwkl-94" +, cites = "akmsw-gamsa-87, ap-nsmma-88, at-ciqdp-93, a-dpi-91, blp-despp-92, bddg-fep-85, cegs-dwclp-92, c-sdsno-87, cl-flwsf-90, f-oatp-91, k-sltac-89, kk-altag-88, lh-llc-90, lp-pctow-91, ls-oldpa-91, m-apcad-83, v-pcp-75, w-oqms-91, ZZZ" +, update = "98.03 bibrelex, 95.05 korneenko, 93.09 jones" } @article{ast-fmwkl-94 -, author = "A. Aggarwal and B. Schieber and T. Tokuyama" -, title = "Finding a minimum-weight $k$-link path in graphs with the concave {Monge} property and applications" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "263--280" -, succeeds = "ast-fmwkl-93" -, update = "95.05 korneenko, 95.01 smid" +, author = "A. Aggarwal and B. Schieber and T. Tokuyama" +, title = "Finding a minimum-weight $k$-link path in graphs with the concave {Monge} property and applications" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "263--280" +, succeeds = "ast-fmwkl-93" +, update = "95.05 korneenko, 95.01 smid" } @techreport{as-cldsp-89 -, author = "A. Aggarwal and S. Suri" -, title = "Computing the longest diagonal of a simple polygon" -, type = "Research {Report}" -, number = "14775 (\#66232)" -, institution = "IBM" -, month = jul -, year = 1989 -, update = "98.07 bibrelex" +, author = "A. Aggarwal and S. Suri" +, title = "Computing the longest diagonal of a simple polygon" +, type = "Research {Report}" +, number = "14775 (\#66232)" +, institution = "IBM" +, month = jul +, year = 1989 +, update = "98.07 bibrelex" } @article{as-cldsp-90 -, author = "A. Aggarwal and Subhash Suri" -, title = "Computing the longest diagonal of a simple polygon" -, journal = "Inform. Process. Lett." -, volume = 35 -, number = 1 -, year = 1990 -, pages = "13--18" -, keywords = "polygon, diagonal" -, update = "98.03 mitchell, 95.05 korneenko, 95.01 smid" +, author = "A. Aggarwal and Subhash Suri" +, title = "Computing the longest diagonal of a simple polygon" +, journal = "Inform. Process. Lett." +, volume = 35 +, number = 1 +, year = 1990 +, pages = "13--18" +, keywords = "polygon, diagonal" +, update = "98.03 mitchell, 95.05 korneenko, 95.01 smid" } @inproceedings{as-facle-87 -, author = "A. Aggarwal and Subhash Suri" -, title = "Fast algorithms for computing the largest empty rectangle" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "278--290" -, keywords = "orthogon, extremal figures, empty rectangle" -, cites = "akmsw-gamsa-86, af-nfmer-86, cdl-cler-86, mos-fmrio-85, nhl-merp-84, ZZZ" -, update = "98.03 bibrelex+mitchell, 95.05 korneenko" +, author = "A. Aggarwal and Subhash Suri" +, title = "Fast algorithms for computing the largest empty rectangle" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "278--290" +, keywords = "orthogon, extremal figures, empty rectangle" +, cites = "akmsw-gamsa-86, af-nfmer-86, cdl-cler-86, mos-fmrio-85, nhl-merp-84, ZZZ" +, update = "98.03 bibrelex+mitchell, 95.05 korneenko" } @inproceedings{at-iatp-93 -, author = "Alok Aggarwal and Takeshi Tokuyama" -, title = "An Improved Algorithm for the Traveler's Problem" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "476--485" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Alok Aggarwal and Takeshi Tokuyama" +, title = "An Improved Algorithm for the Traveler's Problem" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "476--485" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @inproceedings{at-ciqdp-93 -, author = "Alok Aggarwal and Takeshi Tokuyama" -, title = "Consecutive Interval Query and Dynamic Programming on Intervals" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "466--475" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Alok Aggarwal and Takeshi Tokuyama" +, title = "Consecutive Interval Query and Dynamic Programming on Intervals" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "466--475" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @article{av-iocsr-88 -, author = "A. Aggarwal and J. S. Vitter" -, title = "The input/output complexity of sorting and related problems" -, journal = "Commun. ACM" -, volume = 31 -, year = 1988 -, pages = "1116--1127" -, update = "94.05 devillers+franciosa, 93.09 milone+mitchell" +, author = "A. Aggarwal and J. S. Vitter" +, title = "The input/output complexity of sorting and related problems" +, journal = "Commun. ACM" +, volume = 31 +, year = 1988 +, pages = "1116--1127" +, update = "94.05 devillers+franciosa, 93.09 milone+mitchell" } @techreport{aw-cg-88 -, author = "A. Aggarwal and J. Wein" -, title = "Computational geometry" -, type = "Report" -, number = "RSS-3" -, institution = "Lab. Comput. Sci., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1988 -, keywords = "lecture notes" -, annote = "lecture notes for course 18.409" +, author = "A. Aggarwal and J. Wein" +, title = "Computational geometry" +, type = "Report" +, number = "RSS-3" +, institution = "Lab. Comput. Sci., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1988 +, keywords = "lecture notes" +, annote = "lecture notes for course 18.409" } @article{am-ssrsd-91 -, author = "Michael E. Agishtein and Alexander A. Migdal" -, title = "Smooth Surface Reconstruction From Scattered Data Points" -, journal = "Comput. Graph. (UK)" -, volume = 15 -, number = 1 -, year = 1991 -, pages = "29--39" -, keywords = "triangulation, rational interpolation, surface smoothing, surface reconstruction" -, update = "96.09 devillers" -, annote = "Uses incremental flip algorithm. Extra point at - infinity. Points are ordered by a plane filling fractal - to speed point location. Extra points are added at cc - centres until tris are small enough." -, abstract = "We describe here a new technique and a package for - rapid reconstruction of smooth surfaces from scattered - data points. This method is based on a fast recurrent - algorithm for the Delaunay triangulation followed by - rational interpolation inside triangles. Preprocessing - of data includes sorting and takes N log(N) time. - Afterwards the computational cost is a linear function - of the amount of data. This technique enables a user to - construct a surface of any class of smoothness and - degree of convergence. Our package reconstructs - surfaces that can be uniquely projected either on a - plane or a plane or on a sphere. The graphical section - of this package includes three dimensional - transformations, shading, hidden surface removal, - interactive adding points into triangulation by mouse, - etc. The graphics has been implemented on Iris-4D, - SUN-4 and IBM-5080. (Author abstract) 17 Refs." +, author = "Michael E. Agishtein and Alexander A. Migdal" +, title = "Smooth Surface Reconstruction From Scattered Data Points" +, journal = "Comput. Graph. (UK)" +, volume = 15 +, number = 1 +, year = 1991 +, pages = "29--39" +, keywords = "triangulation, rational interpolation, surface smoothing, surface reconstruction" +, update = "96.09 devillers" +, annote = "Uses incremental flip algorithm. Extra point at + infinity. Points are ordered by a plane filling fractal + to speed point location. Extra points are added at cc + centres until tris are small enough." +, abstract = "We describe here a new technique and a package for + rapid reconstruction of smooth surfaces from scattered + data points. This method is based on a fast recurrent + algorithm for the Delaunay triangulation followed by + rational interpolation inside triangles. Preprocessing + of data includes sorting and takes N log(N) time. + Afterwards the computational cost is a linear function + of the amount of data. This technique enables a user to + construct a surface of any class of smoothness and + degree of convergence. Our package reconstructs + surfaces that can be uniquely projected either on a + plane or a plane or on a sphere. The graphical section + of this package includes three dimensional + transformations, shading, hidden surface removal, + interactive adding points into triangulation by mouse, + etc. The graphics has been implemented on Iris-4D, + SUN-4 and IBM-5080. (Author abstract) 17 Refs." } @article{a-rmli-54 -, author = "S. Agmon" -, title = "The Relaxation Method for Linear Inequalities" -, journal = "Canad. J. Math." -, volume = 6 -, year = 1954 -, pages = "382--392" -, update = "97.11 bibrelex" +, author = "S. Agmon" +, title = "The Relaxation Method for Linear Inequalities" +, journal = "Canad. J. Math." +, volume = 6 +, year = 1954 +, pages = "382--392" +, update = "97.11 bibrelex" } @book{a-atfc-76 -, author = "M. Agoston" -, title = "Algebraic Topology: A First Course" -, series = "Lecture Notes in Pure and Applied Mathematics" -, publisher = "Marcel Dekker" -, address = "New York, NY" -, year = 1976 -, update = "98.07 bibrelex" +, author = "M. Agoston" +, title = "Algebraic Topology: A First Course" +, series = "Lecture Notes in Pure and Applied Mathematics" +, publisher = "Marcel Dekker" +, address = "New York, NY" +, year = 1976 +, update = "98.07 bibrelex" } @book{a-at-76 -, author = "M. K. Agoston" -, title = "Algebraic Topology" -, publisher = "Marcel Dekker Inc" -, address = "New York, NY" -, year = 1976 -, update = "98.07 bibrelex" +, author = "M. K. Agoston" +, title = "Algebraic Topology" +, publisher = "Marcel Dekker Inc" +, address = "New York, NY" +, year = 1976 +, update = "98.07 bibrelex" } @article{ar-prdag-94 -, author = "Amitabh Agrawal and Aristides A. G. Requicha" -, title = "A paradigm for the robust design of algorithms for geometric modelling" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 3 -, year = 1994 -, pages = "33--44" -, note = "Proc. EUROGRAPHICS '94" -, keywords = "geometric modeling, robustness, interval arithmetic, constructive solid geometry" -, update = "95.09 korneenko" +, author = "Amitabh Agrawal and Aristides A. G. Requicha" +, title = "A paradigm for the robust design of algorithms for geometric modelling" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 3 +, year = 1994 +, pages = "33--44" +, note = "Proc. EUROGRAPHICS '94" +, keywords = "geometric modeling, robustness, interval arithmetic, constructive solid geometry" +, update = "95.09 korneenko" } @inproceedings{afs-esssd-93 -, author = "R. Agrawal and C. Faloutsos and A. Swami" -, title = "Efficient similarity search in sequence databases" -, booktitle = "Proc. 4th Internat. Conf. Foundations of Data Organization and Algorithms" -, nickname = "FODO '93" -, year = 1993 -, update = "98.07 bibrelex" +, author = "R. Agrawal and C. Faloutsos and A. Swami" +, title = "Efficient similarity search in sequence databases" +, booktitle = "Proc. 4th Internat. Conf. Foundations of Data Organization and Algorithms" +, nickname = "FODO '93" +, year = 1993 +, update = "98.07 bibrelex" } @inproceedings{aggr-aschd-98 -, author = "R. Agrawal and J. Gehrke and D. Gunopulos and P. Raghavan" -, title = "Automatic subspace clustering of high dimensional data for data mining applications" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1998 -, pages = "94--105" -, update = "98.07 agarwal" +, author = "R. Agrawal and J. Gehrke and D. Gunopulos and P. Raghavan" +, title = "Automatic subspace clustering of high dimensional data for data mining applications" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1998 +, pages = "94--105" +, update = "98.07 agarwal" } @inproceedings{ag-icdma-92 -, author = "R. Agrawal and A. Ghosh and T. Imielinski and B. Iyer and A. Swami" -, title = "An Interval Classifier for Database Mining Applications" -, booktitle = "Proceedings of the 18th Conference on Very Large Databases" -, publisher = "Morgan Kauffman" -, month = aug -, year = 1992 -, pages = "560--573" -, update = "98.07 agarwal" -, annote = "marketing example; creates decision rules; compared +, author = "R. Agrawal and A. Ghosh and T. Imielinski and B. Iyer and A. Swami" +, title = "An Interval Classifier for Database Mining Applications" +, booktitle = "Proceedings of the 18th Conference on Very Large Databases" +, publisher = "Morgan Kauffman" +, month = aug +, year = 1992 +, pages = "560--573" +, update = "98.07 agarwal" +, annote = "marketing example; creates decision rules; compared with CART and ID3; splits continuous values into weak and strong intervals" } @inproceedings{alss-fsspn-95 -, author = "R. Agrawal and K.-I. Lin and H. S. Sawhney and S. Shim" -, title = "Fast similarity search in the presence of noise, scaling and translation in time-series databases" -, booktitle = "Proc. 21st VLDB Conference" -, year = 1995 -, pages = "490--501" -, update = "98.07 bibrelex" +, author = "R. Agrawal and K.-I. Lin and H. S. Sawhney and S. Shim" +, title = "Fast similarity search in the presence of noise, scaling and translation in time-series databases" +, booktitle = "Proc. 21st VLDB Conference" +, year = 1995 +, pages = "490--501" +, update = "98.07 bibrelex" } @inproceedings{ael-dlptr-85 -, author = "R. Aharoni and P. Erd{\H o}s and N. Linial" -, title = "Dual linear programs and the relationship between their optima" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "476--482" -, precedes = "ael-dlptr-88" +, author = "R. Aharoni and P. Erd{\H o}s and N. Linial" +, title = "Dual linear programs and the relationship between their optima" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "476--482" +, precedes = "ael-dlptr-88" } @article{ael-dlptr-88 -, author = "R. Aharoni and P. Erd{\H o}s and N. Linial" -, title = "Dual linear programs and the relationship between their optima" -, journal = "Combinatorica" -, volume = 8 -, year = 1988 -, pages = "13--20" -, succeeds = "ael-dlptr-85" +, author = "R. Aharoni and P. Erd{\H o}s and N. Linial" +, title = "Dual linear programs and the relationship between their optima" +, journal = "Combinatorica" +, volume = 8 +, year = 1988 +, pages = "13--20" +, succeeds = "ael-dlptr-85" } @incollection{ah-azube-89 -, author = "U. Ahlfeld and H.-D. Hecker" -, title = "Algorithmen zur {Unimodalit\"at} {Bestimmung} einfacher {Polygone}" -, booktitle = "Wiss. Beitr{\"a}ge Martin-Luther-Univ. Halle-Wittenberg" -, volume = 55 -, publisher = "??" -, address = "Germany" -, year = 1989 -, pages = "139--146" -, keywords = "polygon, unimodal" -, update = "95.05 korneenko" +, author = "U. Ahlfeld and H.-D. Hecker" +, title = "Algorithmen zur {Unimodalit\"at} {Bestimmung} einfacher {Polygone}" +, booktitle = "Wiss. Beitr{\"a}ge Martin-Luther-Univ. Halle-Wittenberg" +, volume = 55 +, publisher = "??" +, address = "Germany" +, year = 1989 +, pages = "139--146" +, keywords = "polygon, unimodal" +, update = "95.05 korneenko" } @incollection{ah-ehep-91 -, author = "U. Ahlfeld and H.-D. Hecker" -, title = "Eine {Hierarchie} einfacher {Polygone}" -, booktitle = "Wiss. Beitr{\"a}ge Martin-Luther-Univ. Halle-Wittenberg" -, volume = 60 -, publisher = "??" -, address = "Germany" -, year = 1991 -, pages = "45--56" -, keywords = "simple polygons, taxonomy" -, update = "95.05 korneenko" +, author = "U. Ahlfeld and H.-D. Hecker" +, title = "Eine {Hierarchie} einfacher {Polygone}" +, booktitle = "Wiss. Beitr{\"a}ge Martin-Luther-Univ. Halle-Wittenberg" +, volume = 60 +, publisher = "??" +, address = "Germany" +, year = 1991 +, pages = "45--56" +, keywords = "simple polygons, taxonomy" +, update = "95.05 korneenko" } @article{ah-mwgp-91 -, author = "U. Ahlfeld and H.-D. Hecker" -, title = "Minimal watchman graphs in polygons" -, journal = "Research in Informatics" -, volume = 4 -, publisher = "Akademie-Verlag" -, address = "Berlin, Germany" -, year = 1991 -, pages = "126--130" -, note = "Geobild '91" -, keywords = "watchman problem, polygons, visibility" -, update = "95.05 korneenko" +, author = "U. Ahlfeld and H.-D. Hecker" +, title = "Minimal watchman graphs in polygons" +, journal = "Research in Informatics" +, volume = 4 +, publisher = "Akademie-Verlag" +, address = "Berlin, Germany" +, year = 1991 +, pages = "126--130" +, note = "Geobild '91" +, keywords = "watchman problem, polygons, visibility" +, update = "95.05 korneenko" } @article{ahh-suusm-88 -, author = "U. Ahlfeld and H.-D. Hecker" -, title = "Strenge {Unimodalit\"at} und strenge monotonie einfacher {Polygone}" -, journal = "Wiss. Z. P{\"a}dagog. Hochschule ``K. W. F. Wander'', Dresden. Math. Naturwiss. R." -, volume = 22 -, year = 1988 -, pages = "29--33" -, keywords = "polygon, monotone, unimodal" -, update = "98.07 bibrelex, 95.05 korneenko" +, author = "U. Ahlfeld and H.-D. Hecker" +, title = "Strenge {Unimodalit\"at} und strenge monotonie einfacher {Polygone}" +, journal = "Wiss. Z. P{\"a}dagog. Hochschule ``K. W. F. Wander'', Dresden. Math. Naturwiss. R." +, volume = 22 +, year = 1988 +, pages = "29--33" +, keywords = "polygon, monotone, unimodal" +, update = "98.07 bibrelex, 95.05 korneenko" } @article{ah-ccsgs-92 -, author = "U. Ahlfeld and H.-D. Hecker" -, title = "The computational complexity of some guard sets in polygons" -, journal = "J. Information Processing and Cybernetics" -, volume = 28 -, number = 6 -, year = 1992 -, pages = "331--342" -, keywords = "watchman problem, NP-completeness, polygons" -, update = "95.05 korneenko" +, author = "U. Ahlfeld and H.-D. Hecker" +, title = "The computational complexity of some guard sets in polygons" +, journal = "J. Information Processing and Cybernetics" +, volume = 28 +, number = 6 +, year = 1992 +, pages = "331--342" +, keywords = "watchman problem, NP-completeness, polygons" +, update = "95.05 korneenko" } @book{a-ca-66 -, author = "L. V. Ahlfors" -, title = "Complex Analysis" -, publisher = "McGraw-Hill" -, year = 1966 -, update = "98.03 bibrelex" +, author = "L. V. Ahlfors" +, title = "Complex Analysis" +, publisher = "McGraw-Hill" +, year = 1966 +, update = "98.03 bibrelex" } @inproceedings{abbchms-soc-97 -, author = "H.-K. Ahn and M. de Berg and P. Bose and S.-W. Cheng and D. Halperin and J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Separating an Object from its Cast" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "221--230" -, cites = "abbgotwz-fds-93, b-gcamp-95, bbk-dcsp-94, bkt-fpm-93, bt-gcamp-94, ccw-pdmdd-93, e-cit-88, fm-gaim-93, g-oppws-93, gs-pmgsc-85, h-cgpm-91, h-gamp-97, ht-mdsoh-92, k-caplp-92, mgj-cfufp-96, m-ept-92, ms-tdctd-93, orsw-ipaw-95, ps-cgi-85, p-mrisf-87, rr-mcp-92, t-mss-85, wo-ich-81, wl-grama-94, ZZZ" -, update = "98.07 agarwal+bibrelex, 97.07 efrat" +, author = "H.-K. Ahn and M. de Berg and P. Bose and S.-W. Cheng and D. Halperin and J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Separating an Object from its Cast" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "221--230" +, cites = "abbgotwz-fds-93, b-gcamp-95, bbk-dcsp-94, bkt-fpm-93, bt-gcamp-94, ccw-pdmdd-93, e-cit-88, fm-gaim-93, g-oppws-93, gs-pmgsc-85, h-cgpm-91, h-gamp-97, ht-mdsoh-92, k-caplp-92, mgj-cfufp-96, m-ept-92, ms-tdctd-93, orsw-ipaw-95, ps-cgi-85, p-mrisf-87, rr-mcp-92, t-mss-85, wo-ich-81, wl-grama-94, ZZZ" +, update = "98.07 agarwal+bibrelex, 97.07 efrat" } @inproceedings{acc-csed-98 -, author = "H.-K. Ahn and S.-W. Cheng and O. Cheong" -, title = "Casting with skewed ejection direction" -, booktitle = "Proc. 9th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '98" -, series = "Lecture Notes Comput. Sci." -, volume = 1533 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "139--148" -, update = "00.03 smid" +, author = "H.-K. Ahn and S.-W. Cheng and O. Cheong" +, title = "Casting with skewed ejection direction" +, booktitle = "Proc. 9th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '98" +, series = "Lecture Notes Comput. Sci." +, volume = 1533 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "139--148" +, update = "00.03 smid" } @inproceedings{acmv-rpbcc-00 -, author = "Hee-Kap Ahn and Otfried Cheong and Ji{\v r}{\'i} Matou{\v s}ek and Antoine Vigneron" -, title = "Reachability by Paths of Bounded Curvature in Convex Polygons" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "251--259" -, update = "00.11 jones" +, author = "Hee-Kap Ahn and Otfried Cheong and Ji{\v r}{\'i} Matou{\v s}ek and Antoine Vigneron" +, title = "Reachability by Paths of Bounded Curvature in Convex Polygons" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "251--259" +, update = "00.11 jones" } @inproceedings{acs-bcrrp-01 -, author = "Hee-Kap Ahn and Otfried Cheong and Chan-Su Shin" -, title = "Bridging Convex Regions and Related Problems" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "53--56" -, update = "01.04 icking" +, author = "Hee-Kap Ahn and Otfried Cheong and Chan-Su Shin" +, title = "Bridging Convex Regions and Related Problems" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "53--56" +, update = "01.04 icking" } @article{af-panp-84 -, author = "J. Ahn and H. Freeman" -, title = "A program for automatic name placement" -, journal = "Cartographica" -, volume = 21 -, number = "2--3" -, year = 1984 -, pages = "101--109" -, update = "97.07 agarwal" +, author = "J. Ahn and H. Freeman" +, title = "A program for automatic name placement" +, journal = "Cartographica" +, volume = 21 +, number = "2--3" +, year = 1984 +, pages = "101--109" +, update = "97.07 agarwal" } @incollection{a-afps-90 -, author = "A. V. Aho" -, title = "Algorithms for finding patterns in strings" -, booktitle = "Algorithms and Complexity" -, series = "Handbook of Theoretical Computer Science" -, volume = "A" -, publisher = "Elsevier" -, year = 1990 -, pages = "255--400" -, update = "98.07 bibrelex" +, author = "A. V. Aho" +, title = "Algorithms for finding patterns in strings" +, booktitle = "Algorithms and Complexity" +, series = "Handbook of Theoretical Computer Science" +, volume = "A" +, publisher = "Elsevier" +, year = 1990 +, pages = "255--400" +, update = "98.07 bibrelex" } @article{agh-rstes-77 -, author = "A. V. Aho and M. R. Garey and F. K. Hwang" -, title = "Rectilinear {Steiner} trees: efficient special case algorithms" -, journal = "Networks" -, volume = 7 -, year = 1977 -, pages = "37--58" -, keywords = "Steiner trees, $L_{1}$-metric" -, update = "95.05 korneenko" +, author = "A. V. Aho and M. R. Garey and F. K. Hwang" +, title = "Rectilinear {Steiner} trees: efficient special case algorithms" +, journal = "Networks" +, volume = 7 +, year = 1977 +, pages = "37--58" +, keywords = "Steiner trees, $L_{1}$-metric" +, update = "95.05 korneenko" } @book{ahu-dsa-83 -, author = "A. V. Aho and J. E. Hopcroft and J. D. Ullman" -, title = "Data Structures and Algorithms" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1983 +, author = "A. V. Aho and J. E. Hopcroft and J. D. Ullman" +, title = "Data Structures and Algorithms" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1983 } @book{ahu-daca-74 -, author = "A. V. Aho and J. E. Hopcroft and J. D. Ullman" -, title = "The Design and Analysis of Computer Algorithms" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1974 +, author = "A. V. Aho and J. E. Hopcroft and J. D. Ullman" +, title = "The Design and Analysis of Computer Algorithms" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1974 } @article{au-opmrw-79 -, author = "A. V. Aho and J. D. Ullman" -, title = "Optimal partial-match retrieval when fields are independently specified" -, journal = "ACM Trans. Database Syst." -, volume = 4 -, year = 1979 -, pages = "168--179" +, author = "A. V. Aho and J. D. Ullman" +, title = "Optimal partial-match retrieval when fields are independently specified" +, journal = "ACM Trans. Database Syst." +, volume = 4 +, year = 1979 +, pages = "168--179" } @article{an-ormo-84 -, author = "A. Ahuja and C. Nash" -, title = "Octree representation of moving objects" -, journal = "Comput. Vision Graph. Image Process." -, volume = 26 -, year = 1984 -, pages = "207--216" -, keywords = "data structuring, octree" -, update = "95.05 korneenko" +, author = "A. Ahuja and C. Nash" +, title = "Octree representation of moving objects" +, journal = "Comput. Vision Graph. Image Process." +, volume = 26 +, year = 1984 +, pages = "207--216" +, keywords = "data structuring, octree" +, update = "95.05 korneenko" } @article{ac-gcd-68 -, author = "D. V. Ahuja and S. A. Coons" -, title = "Geometry for construction and display" -, journal = "IBM Syst. J." -, volume = 7 -, year = 1968 -, pages = "188--205" +, author = "D. V. Ahuja and S. A. Coons" +, title = "Geometry for construction and display" +, journal = "IBM Syst. J." +, volume = 7 +, year = 1968 +, pages = "188--205" } @inproceedings{a-dppuv-80 -, author = "N. Ahuja" -, title = "Dot pattern processing using {Voronoi} polygons as neighborhoods" -, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." -, site = "Miami Beach, FL" -, year = 1980 -, pages = "1122--1127" -, precedes = "a-dppuv-82" +, author = "N. Ahuja" +, title = "Dot pattern processing using {Voronoi} polygons as neighborhoods" +, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." +, site = "Miami Beach, FL" +, year = 1980 +, pages = "1122--1127" +, precedes = "a-dppuv-82" } @article{a-dppuv-82 -, author = "N. Ahuja" -, title = "Dot pattern processing using {Voronoi} polygons as neighborhoods" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 4 -, year = 1982 -, pages = "336--343" -, succeeds = "a-dppuv-80" +, author = "N. Ahuja" +, title = "Dot pattern processing using {Voronoi} polygons as neighborhoods" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 4 +, year = 1982 +, pages = "336--343" +, succeeds = "a-dppuv-80" } @article{aas-iruvt-85 -, author = "N. Ahuja and B. An and B. Schachter" -, title = "Image Representation Using {Voronoi} Tessellation" -, journal = "Comput. Vision Graph. Image Process." -, volume = 29 -, year = 1985 -, pages = "286--295" -, annote = "Suggests using Voronoi cells as primitives to - represent an image." +, author = "N. Ahuja and B. An and B. Schachter" +, title = "Image Representation Using {Voronoi} Tessellation" +, journal = "Comput. Vision Graph. Image Process." +, volume = 29 +, year = 1985 +, pages = "286--295" +, annote = "Suggests using Voronoi cells as primitives to + represent an image." } @inproceedings{acyb-idcat-80 -, author = "N. Ahuja and R. T. Chien and R. Yen and N. Birdwell" -, title = "Interference detection and collision avoidance among three dimensional objects" -, booktitle = "Proc. 1st Nat. Conf. Artificial Intell." -, site = "Palo Alto, CA" -, year = 1980 -, pages = "44--48" +, author = "N. Ahuja and R. T. Chien and R. Yen and N. Birdwell" +, title = "Interference detection and collision avoidance among three dimensional objects" +, booktitle = "Proc. 1st Nat. Conf. Artificial Intell." +, site = "Palo Alto, CA" +, year = 1980 +, pages = "44--48" } @inproceedings{ah-amat-84 -, author = "N. Ahuja and W. Hoff" -, title = "Augmented Medial Axis Transform" -, booktitle = "Proceedings of Workshop on Computer Vision, Representation and Control" -, year = 1984 -, pages = "251--256" -, annote = "Representation of 2D shape by MAT (overlapping - blocks). AMAT adds adjacency info for blocks. Build - from DT of block centres." +, author = "N. Ahuja and W. Hoff" +, title = "Augmented Medial Axis Transform" +, booktitle = "Proceedings of Workshop on Computer Vision, Representation and Control" +, year = 1984 +, pages = "251--256" +, annote = "Representation of 2D shape by MAT (overlapping + blocks). AMAT adds adjacency info for blocks. Build + from DT of block centres." } @article{as-mpabu-84 -, author = "N. Ahuja and S. Swamy" -, title = "Multiprocessor pyramid architectures for bottom-up image analysis" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-6" -, year = 1984 -, pages = "463--474" -, update = "97.11 bibrelex" +, author = "N. Ahuja and S. Swamy" +, title = "Multiprocessor pyramid architectures for bottom-up image analysis" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-6" +, year = 1984 +, pages = "463--474" +, update = "97.11 bibrelex" } @article{av-gooso-89 -, author = "N. Ahuja and J. Veenstra" -, title = "Generating Octrees from Object Silhouettes in orthographic views" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 11 -, year = 1989 -, pages = "137--149" -, update = "98.11 bibrelex" +, author = "N. Ahuja and J. Veenstra" +, title = "Generating Octrees from Object Silhouettes in orthographic views" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 11 +, year = 1989 +, pages = "137--149" +, update = "98.11 bibrelex" } @incollection{amo-nf-90 -, author = "R. K. Ahuja and T. L. Magnanti and J. B. Orlin" -, title = "Network Flows" -, editor = "G. L. Nemhauser and A. H. G. {Rinnooy Kan} and M. J. Todd" -, booktitle = "Optimization" -, series = "Handbooks in Operations Research and Management" -, volume = 1 -, publisher = "North-Holland" -, year = 1990 -, pages = "211--360" -, update = "97.11 bibrelex" +, author = "R. K. Ahuja and T. L. Magnanti and J. B. Orlin" +, title = "Network Flows" +, editor = "G. L. Nemhauser and A. H. G. {Rinnooy Kan} and M. J. Todd" +, booktitle = "Optimization" +, series = "Handbooks in Operations Research and Management" +, volume = 1 +, publisher = "North-Holland" +, year = 1990 +, pages = "211--360" +, update = "97.11 bibrelex" } @book{amo-nftaa-93 -, author = "R. K. Ahuja and T. L. Magnanti and J. B. Orlin" -, title = "Network Flows: Theory, Algorithms, and Applications" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1993 -, update = "96.09 tamassia, 96.04 garg" +, author = "R. K. Ahuja and T. L. Magnanti and J. B. Orlin" +, title = "Network Flows: Theory, Algorithms, and Applications" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1993 +, update = "96.09 tamassia, 96.04 garg" } @inproceedings{a-e01ss-98 -, author = "Oswin Aichholzer" -, title = "Efficient \{0,1\}-String Searching Based on Pre-Clustering" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "11--13" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Oswin Aichholzer" +, title = "Efficient \{0,1\}-String Searching Based on Pre-Clustering" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "11--13" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{a-lpt-95 -, author = "Oswin Aichholzer" -, title = "Local Properties of Triangulations" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "33--36" -, update = "00.03 bibrelex" +, author = "Oswin Aichholzer" +, title = "Local Properties of Triangulations" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "33--36" +, update = "00.03 bibrelex" } @inproceedings{a-pt-97 -, author = "Oswin Aichholzer" -, title = "The Path of a Triangulation" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "1--3" -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Oswin Aichholzer" +, title = "The Path of a Triangulation" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "1--3" +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{a-pt-99 -, author = "Oswin Aichholzer" -, title = "The Path of a Triangulation" -, booktitle = "Proc. 15th Ann. Sympos. Comput. Geom." -, nickname = "SCG'99" -, year = 1999 -, pages = "14--23" -, update = "02.03 pocchiola" +, author = "Oswin Aichholzer" +, title = "The Path of a Triangulation" +, booktitle = "Proc. 15th Ann. Sympos. Comput. Geom." +, nickname = "SCG'99" +, year = 1999 +, pages = "14--23" +, update = "02.03 pocchiola" } @article{aaag-ntsp-95 -, author = "O. Aichholzer and D. Alberts and F. Aurenhammer and B. G{\"a}rtner" -, title = "A Novel Type of Skeleton for Polygons" -, journal = "J. Universal Comput. Sci." -, volume = 1 -, number = 12 -, year = 1995 -, pages = "752--761" -, update = "97.03 gaertner+salinger" +, author = "O. Aichholzer and D. Alberts and F. Aurenhammer and B. G{\"a}rtner" +, title = "A Novel Type of Skeleton for Polygons" +, journal = "J. Universal Comput. Sci." +, volume = 1 +, number = 12 +, year = 1995 +, pages = "752--761" +, update = "97.03 gaertner+salinger" } @inproceedings{aah-fps-01 -, author = "Oswin Aichholzer and Lyuba S. Alboul and Ferran Hurtado" -, title = "On Flips in Polyhedral Surfaces" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "27--30" -, update = "01.04 icking" +, author = "Oswin Aichholzer and Lyuba S. Alboul and Ferran Hurtado" +, title = "On Flips in Polyhedral Surfaces" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "27--30" +, update = "01.04 icking" } @inproceedings{aa-chh-94 -, author = "Oswin Aichholzer and Franz Aurenhammer" -, title = "Classifying Hyperplanes in Hypercubes" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "53--57" -, update = "00.11 smid, 00.07 icking" +, author = "Oswin Aichholzer and Franz Aurenhammer" +, title = "Classifying Hyperplanes in Hypercubes" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "53--57" +, update = "00.11 smid, 00.07 icking" } @techreport{aa-skfgpf-95 -, author = "O. Aichholzer and F. Aurenhammer" -, title = "Straight skeletons for general polygonal figures" -, number = 432 -, institution = "Inst. for Theor. Comput. Sci., Graz Univ. of Technology, Graz, Austria" -, year = 1995 -, precedes = "aa-ssgpf-96" -, update = "00.03 bibrelex" +, author = "O. Aichholzer and F. Aurenhammer" +, title = "Straight skeletons for general polygonal figures" +, number = 432 +, institution = "Inst. for Theor. Comput. Sci., Graz Univ. of Technology, Graz, Austria" +, year = 1995 +, precedes = "aa-ssgpf-96" +, update = "00.03 bibrelex" } @inproceedings{aa-ssgpf-96 -, author = "Oswin Aichholzer and Franz Aurenhammer" -, title = "Straight skeletons for general polygonal figures in the plane" -, booktitle = "Proc. 2nd Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '96" -, site = "Hong Kong" -, series = "Lecture Notes Comput. Sci." -, volume = 1090 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "117--126" -, succeeds = "aa-skfgpf-95" -, update = "00.11 smid, 00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" +, author = "Oswin Aichholzer and Franz Aurenhammer" +, title = "Straight skeletons for general polygonal figures in the plane" +, booktitle = "Proc. 2nd Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '96" +, site = "Hong Kong" +, series = "Lecture Notes Comput. Sci." +, volume = 1090 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "117--126" +, succeeds = "aa-skfgpf-95" +, update = "00.11 smid, 00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" } @incollection{aa-ssgpf-98 -, author = "O. Aichholzer and F. Aurenhammer" -, title = "Straight skeletons for general polygonal figures in the plane" -, editor = "P. Engel and H. Syta" -, booktitle = "Voronoi's Impact on Modern Science, Book 2" -, publisher = "Institute of Mathematics of the National Academy of Sciences of Ukraine" -, address = "Kyiv" -, year = 1998 -, pages = "7--21" -, succeeds = "aa-ssgpf-96" -, update = "00.11 smid" +, author = "O. Aichholzer and F. Aurenhammer" +, title = "Straight skeletons for general polygonal figures in the plane" +, editor = "P. Engel and H. Syta" +, booktitle = "Voronoi's Impact on Modern Science, Book 2" +, publisher = "Institute of Mathematics of the National Academy of Sciences of Ukraine" +, address = "Kyiv" +, year = 1998 +, pages = "7--21" +, succeeds = "aa-ssgpf-96" +, update = "00.11 smid" } @inproceedings{aaclmp-vddsd-97 -, author = "O. Aichholzer and F. Aurenhammer and D. Chen and D. Lee and A. Mukhopadhyay and E. Papadopoulou" -, title = "Voronoi Diagrams for Direction-Sensitive Distances" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "418--420" -, cites = "ak-eama-87, cd-vdbcd-85, f-savd-87, ks-ossaf-85, k-cavd-89, ld-gvdp-81, mmp-dgp-87, mp-wrpfs-91, s-icpps-85, s-vdr-92, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "O. Aichholzer and F. Aurenhammer and D. Chen and D. Lee and A. Mukhopadhyay and E. Papadopoulou" +, title = "Voronoi Diagrams for Direction-Sensitive Distances" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "418--420" +, cites = "ak-eama-87, cd-vdbcd-85, f-savd-87, ks-ossaf-85, k-cavd-89, ld-gvdp-81, mmp-dgp-87, mp-wrpfs-91, s-icpps-85, s-vdr-92, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{aacktrx-tin-96 -, author = "Oswin Aichholzer and Franz Aurenhammer and Siu-Wing Cheng and Naoki Katoh and Michael Taschwer and G{\"u}nter Rote and Yin-Feng Xu" -, title = "Triangulations Intersect Nicely" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "339--359" -, keywords = "matching, minimum weight triangulation, greedy triangulation" -, succeeds = "aatr-tin-95, cx-cistp-95" -, update = "01.07 devillers, 97.03 rote" -, abstract = "We show that there is a matching between the edges of any two - triangulations of a planar point set such that an edge of one - triangulation is matched either to the identical edge in the other - triangulation or to an edge that crosses it. This theorem also - holds for the triangles of the triangulations and in general - independence systems. As an application we give some lower - bounds for the minimum weight triangulation which can be - computed in polynomial time by matching and network flow - techniques. We exhibit an easy-to-recognize class of point sets - for which the minimum-weight triangulation coincides with the - greedy triangulation." +, author = "Oswin Aichholzer and Franz Aurenhammer and Siu-Wing Cheng and Naoki Katoh and Michael Taschwer and G{\"u}nter Rote and Yin-Feng Xu" +, title = "Triangulations Intersect Nicely" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "339--359" +, keywords = "matching, minimum weight triangulation, greedy triangulation" +, succeeds = "aatr-tin-95, cx-cistp-95" +, update = "01.07 devillers, 97.03 rote" +, abstract = "We show that there is a matching between the edges of any two + triangulations of a planar point set such that an edge of one + triangulation is matched either to the identical edge in the other + triangulation or to an edge that crosses it. This theorem also + holds for the triangles of the triangulations and in general + independence systems. As an application we give some lower + bounds for the minimum weight triangulation which can be + computed in polynomial time by matching and network flow + techniques. We exhibit an easy-to-recognize class of point sets + for which the minimum-weight triangulation coincides with the + greedy triangulation." } @article{aahk-tct-02 -, author = "Oswin Aichholzer and Franz Aurenhammer and Ferran Hurtado and Hannes Krasser" -, title = "Towards compatible triangulations" -, journal = "Theoret. Comput. Sci." -, volume = "??" -, year = 2002 -, pages = "??--??" -, url = "http://www.cis.TUGraz.at/igi/oaich/publications.html" -, succeeds = "aak-ctps-01" -, update = "02.03 orourke" +, author = "Oswin Aichholzer and Franz Aurenhammer and Ferran Hurtado and Hannes Krasser" +, title = "Towards compatible triangulations" +, journal = "Theoret. Comput. Sci." +, volume = "??" +, year = 2002 +, pages = "??--??" +, url = "http://www.cis.TUGraz.at/igi/oaich/publications.html" +, succeeds = "aak-ctps-01" +, update = "02.03 orourke" } @techreport{aaiklr-psac-97 -, author = "Oswin Aichholzer and Franz Aurenhammer and Christian Icking and Rolf Klein and Elmar Langetepe and G{\"u}nter Rote" -, title = "$\varphi$-Self-Approaching Curves" -, number = 226 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1997 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr226.pdf" -, precedes = "aaiklr-gsac-98" -, update = "99.03 bibrelex, 98.07 icking" +, author = "Oswin Aichholzer and Franz Aurenhammer and Christian Icking and Rolf Klein and Elmar Langetepe and G{\"u}nter Rote" +, title = "$\varphi$-Self-Approaching Curves" +, number = 226 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1997 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr226.pdf" +, precedes = "aaiklr-gsac-98" +, update = "99.03 bibrelex, 98.07 icking" } @inproceedings{aaiklr-gsac-98 -, author = "Oswin Aichholzer and Franz Aurenhammer and Christian Icking and Rolf Klein and Elmar Langetepe and G{\"u}nter Rote" -, title = "Generalized Self-Approaching Curves" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "15--17" -, succeeds = "aaiklr-psac-97" -, precedes = "aaiklr-gsac-98p" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 bibrelex" +, author = "Oswin Aichholzer and Franz Aurenhammer and Christian Icking and Rolf Klein and Elmar Langetepe and G{\"u}nter Rote" +, title = "Generalized Self-Approaching Curves" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "15--17" +, succeeds = "aaiklr-psac-97" +, precedes = "aaiklr-gsac-98p" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 bibrelex" } @inproceedings{aaiklr-gsac-98p -, author = "Oswin Aichholzer and Franz Aurenhammer and Christian Icking and Rolf Klein and Elmar Langetepe and G{\"u}nter Rote" -, title = "Generalized Self-Approaching Curves" -, booktitle = "Proc. 9th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '98" -, site = "Taejon" -, series = "Lecture Notes Comput. Sci." -, volume = 1533 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "317--326" -, succeeds = "aaiklr-gsac-98" -, precedes = "aaiklr-gsac-01" -, update = "01.04 icking, 99.03 bibrelex" +, author = "Oswin Aichholzer and Franz Aurenhammer and Christian Icking and Rolf Klein and Elmar Langetepe and G{\"u}nter Rote" +, title = "Generalized Self-Approaching Curves" +, booktitle = "Proc. 9th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '98" +, site = "Taejon" +, series = "Lecture Notes Comput. Sci." +, volume = 1533 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "317--326" +, succeeds = "aaiklr-gsac-98" +, precedes = "aaiklr-gsac-01" +, update = "01.04 icking, 99.03 bibrelex" } @article{aaiklr-gsac-01 -, author = "Oswin Aichholzer and Franz Aurenhammer and Christian Icking and Rolf Klein and Elmar Langetepe and G{\"u}nter Rote" -, title = "Generalized Self-Approaching Curves" -, journal = "Discrete Appl. Math." -, volume = 109 -, year = 2001 -, pages = "3--24" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr226.pdf" -, succeeds = "aaiklr-gsac-98p" -, cites = "admss-esstl-95, cfg-upg-90, ik-skpcs-95, ikl-sac-99, lc-tasso-99, lsksc-ncssu-97, ls-pinos-97, r-cic-94, rs-addce-91, ZZZ" -, update = "01.04 icking" +, author = "Oswin Aichholzer and Franz Aurenhammer and Christian Icking and Rolf Klein and Elmar Langetepe and G{\"u}nter Rote" +, title = "Generalized Self-Approaching Curves" +, journal = "Discrete Appl. Math." +, volume = 109 +, year = 2001 +, pages = "3--24" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr226.pdf" +, succeeds = "aaiklr-gsac-98p" +, cites = "admss-esstl-95, cfg-upg-90, ik-skpcs-95, ikl-sac-99, lc-tasso-99, lsksc-ncssu-97, ls-pinos-97, r-cic-94, rs-addce-91, ZZZ" +, update = "01.04 icking" } @inproceedings{aak-eotsp-01 -, author = "Oswin Aichholzer and Franz Aurenhammer and Hannes Krasser" -, title = "Enumerating order types for small point sets with applications" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "11--18" -, update = "01.11 pocchiola" +, author = "Oswin Aichholzer and Franz Aurenhammer and Hannes Krasser" +, title = "Enumerating order types for small point sets with applications" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "11--18" +, update = "01.11 pocchiola" } @inproceedings{aak-ctps-01 -, author = "Oswin Aichholzer and Franz Aurenhammer and Hannes Krasser" -, title = "On Compatible Triangulations of Point Sets" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "23--26" -, update = "01.04 icking" +, author = "Oswin Aichholzer and Franz Aurenhammer and Hannes Krasser" +, title = "On Compatible Triangulations of Point Sets" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "23--26" +, update = "01.04 icking" } @inproceedings{aarx-clgta-96 -, author = "Oswin Aichholzer and Franz Aurenhammer and G{\"u}nter Rote and Yin-Feng Xu" -, title = "Constant-level greedy triangulations approximate the MWT well" -, editor = "Ding-Zhu Du and Xiang-Sun Zhang and Kan Cheng" -, booktitle = "Proc. Second Internat. Symp. Operations Research and its Applications, Guilin, China, December 11--13, 1996" -, series = "Lecture Notes in Operations Research" -, volume = 2 -, publisher = "World Publishing Corp." -, address = "Beijing" -, year = 1996 -, pages = "309--318" -, precedes = "aarx-clgta-97" -, update = "97.11 bibrelex, 97.03 rote" +, author = "Oswin Aichholzer and Franz Aurenhammer and G{\"u}nter Rote and Yin-Feng Xu" +, title = "Constant-level greedy triangulations approximate the MWT well" +, editor = "Ding-Zhu Du and Xiang-Sun Zhang and Kan Cheng" +, booktitle = "Proc. Second Internat. Symp. Operations Research and its Applications, Guilin, China, December 11--13, 1996" +, series = "Lecture Notes in Operations Research" +, volume = 2 +, publisher = "World Publishing Corp." +, address = "Beijing" +, year = 1996 +, pages = "309--318" +, precedes = "aarx-clgta-97" +, update = "97.11 bibrelex, 97.03 rote" } @inproceedings{aarx-clgta-97 -, author = "Oswin Aichholzer and Franz Aurenhammer and G{\"u}nter Rote and Yin-Feng Xu" -, title = "Constant-level greedy triangulations approximate the {MWT} well" -, booktitle = "??" -, journal = "Journal of Combinatorial Optimization" -, volume = "2?" -, year = "1998?" -, pages = "??--??" -, note = "to appear" -, succeeds = "aarx-clgta-96" -, update = "98.07 rote, 98.03 mitchell, 97.03 rote" -, abstract = "Exploiting the concept of so-called light edges, we introduce - a new way of defining the greedy triangulation GT(S) of a point - set S. It provides a decomposition of - GT(S) into levels, and the number of levels allows us to - bound the total edge length of GT(S). In particular, we show - |GT(S)| <= $3 \times 2^{k+1}$ |MWT(S)|, where k is the number of - levels and MWT(S) is the minimum-weight triangulation - of S. This constitutes the first non-trivial upper bound on - |GT(S)| for general points sets S." +, author = "Oswin Aichholzer and Franz Aurenhammer and G{\"u}nter Rote and Yin-Feng Xu" +, title = "Constant-level greedy triangulations approximate the {MWT} well" +, booktitle = "??" +, journal = "Journal of Combinatorial Optimization" +, volume = "2?" +, year = "1998?" +, pages = "??--??" +, note = "to appear" +, succeeds = "aarx-clgta-96" +, update = "98.07 rote, 98.03 mitchell, 97.03 rote" +, abstract = "Exploiting the concept of so-called light edges, we introduce + a new way of defining the greedy triangulation GT(S) of a point + set S. It provides a decomposition of + GT(S) into levels, and the number of levels allows us to + bound the total edge length of GT(S). In particular, we show + |GT(S)| <= $3 \times 2^{k+1}$ |MWT(S)|, where k is the number of + levels and MWT(S) is the minimum-weight triangulation + of S. This constitutes the first non-trivial upper bound on + |GT(S)| for general points sets S." } @inproceedings{aatr-tin-95 -, author = "Oswin Aichholzer and Franz Aurenhammer and Michael Taschwer and G{\"u}nter Rote" -, title = "Triangulations Intersect Nicely" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "220--229" -, keywords = "matching, minimum weight triangulation, greedy triangulation" -, precedes = "aacktrx-tin-96" -, cites = "b-gtic-79, cx-cistp-95, dfpn-stdt-88, ddmw-fgta-94, dds-saeid-92, dra-sltgt-95, e-atccd-90, gj-cigtn-79, g-segta-89, hk-nammb-73, k-csmwt-94, ll-fagt-92, l-esta-94, l-conm-76, l-scsi-77, t-dsna-83, w-eucdt-93, x-mwtpp-92, yxy-cdapp-94, ZZZ" -, update = "98.03 bibrelex, 97.03 rote, 95.09 mitchell" +, author = "Oswin Aichholzer and Franz Aurenhammer and Michael Taschwer and G{\"u}nter Rote" +, title = "Triangulations Intersect Nicely" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "220--229" +, keywords = "matching, minimum weight triangulation, greedy triangulation" +, precedes = "aacktrx-tin-96" +, cites = "b-gtic-79, cx-cistp-95, dfpn-stdt-88, ddmw-fgta-94, dds-saeid-92, dra-sltgt-95, e-atccd-90, gj-cigtn-79, g-segta-89, hk-nammb-73, k-csmwt-94, ll-fagt-92, l-esta-94, l-conm-76, l-scsi-77, t-dsna-83, w-eucdt-93, x-mwtpp-92, yxy-cdapp-94, ZZZ" +, update = "98.03 bibrelex, 97.03 rote, 95.09 mitchell" } @inproceedings{abdmss-lpuof-01 -, author = "Oswin Aichholzer and David Bremner and Erik D. Demaine and Henk Meijer and Vera Sacrist{\'a}n and Michael Soss" -, title = "Long Proteins with Unique Optimal Foldings in the {H-P} Model" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "59--62" -, update = "01.04 icking" +, author = "Oswin Aichholzer and David Bremner and Erik D. Demaine and Henk Meijer and Vera Sacrist{\'a}n and Michael Soss" +, title = "Long Proteins with Unique Optimal Foldings in the {H-P} Model" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "59--62" +, update = "01.04 icking" } @inproceedings{acddemoprt-fp-00 -, author = "Oswin Aichholzer and Carmen Cort{\'e}s and Erik D. Demaine and Vida Dujmovi{\'c} and Jeff Erickson and Henk Meijer and Mark Overmars and Bel\'en Palop and Suneeta Ramaswami and Godfried T. Toussaint" -, title = "Flipturning Polygons" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom." -, site = "Tokyo, Japan" -, series = "Lecture Notes Comput. Sci." -, month = nov -, year = 2000 -, note = "To appear in \emph{Discrete Comput. Geom.}." -, update = "02.03 orourke" +, author = "Oswin Aichholzer and Carmen Cort{\'e}s and Erik D. Demaine and Vida Dujmovi{\'c} and Jeff Erickson and Henk Meijer and Mark Overmars and Bel\'en Palop and Suneeta Ramaswami and Godfried T. Toussaint" +, title = "Flipturning Polygons" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom." +, site = "Tokyo, Japan" +, series = "Lecture Notes Comput. Sci." +, month = nov +, year = 2000 +, note = "To appear in \emph{Discrete Comput. Geom.}." +, update = "02.03 orourke" } @article{adehost-rcp-01 -, author = "O. Aichholzer and E. D. Demaine and J. Erickson and F. Hurtado and M. Overmars and M. Soss and G. T. Toussaint" -, title = "Reconfiguring convex polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "85--95" -, update = "01.11 smid" +, author = "O. Aichholzer and E. D. Demaine and J. Erickson and F. Hurtado and M. Overmars and M. Soss and G. T. Toussaint" +, title = "Reconfiguring convex polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "85--95" +, update = "01.11 smid" } @inproceedings{ah-eoncs-00 -, author = "Oswin Aichholzer and Ferran Hurtado" -, title = "Edge Operations on Non-Crossing Spanning Trees" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "121--125" -, update = "00.03 bibrelex" +, author = "Oswin Aichholzer and Ferran Hurtado" +, title = "Edge Operations on Non-Crossing Spanning Trees" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "121--125" +, update = "00.03 bibrelex" } @inproceedings{ar-ngta-96v -, author = "Oswin Aichholzer and G{\"u}nter Rote" -, title = "New Greedy Triangulation Algorithms" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "11--14" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Oswin Aichholzer and G{\"u}nter Rote" +, title = "New Greedy Triangulation Algorithms" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "11--14" +, update = "00.03 bibrelex, 99.03 bibrelex" } @book{az-pftb-98 -, author = "M. Aigner and G. M. Ziegler" -, title = "Proofs from {THE} {BOOK}" -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1998 -, update = "98.11 smid" +, author = "M. Aigner and G. M. Ziegler" +, title = "Proofs from {THE} {BOOK}" +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1998 +, update = "98.11 smid" } @phdthesis{a-iurbw-90 -, author = "John Milligan Airey" -, title = "Increasing Update Rates in the Building Walkthrough System with Automatic Model-space Subdivision and Potentially Visible Set Calculations" -, school = "Dept. of Computer Science, University of North Carolina, Chapel Hill" -, year = 1990 -, keywords = "doctoral thesis" -, update = "97.07 agarwal" +, author = "John Milligan Airey" +, title = "Increasing Update Rates in the Building Walkthrough System with Automatic Model-space Subdivision and Potentially Visible Set Calculations" +, school = "Dept. of Computer Science, University of North Carolina, Chapel Hill" +, year = 1990 +, keywords = "doctoral thesis" +, update = "97.07 agarwal" } @article{arb-tiriu-90 -, author = "J. M. Airey and J. H. Rohlf and F. P. {Brooks, Jr.}" -, title = "Towards Image Realism with Interactive Update Rates in Complex Virtual Building Environments" -, journal = "ACM Siggraph Special Issue on 1990 Symposium on Interactive 3D Graphics" -, volume = 24 -, number = 2 -, year = 1990 -, pages = "41--50" -, update = "97.11 bibrelex" +, author = "J. M. Airey and J. H. Rohlf and F. P. {Brooks, Jr.}" +, title = "Towards Image Realism with Interactive Update Rates in Complex Virtual Building Environments" +, journal = "ACM Siggraph Special Issue on 1990 Symposium on Interactive 3D Graphics" +, volume = 24 +, number = 2 +, year = 1990 +, pages = "41--50" +, update = "97.11 bibrelex" } @article{ap-dpesa-88 -, author = "V. G. Ajjanagadde and L. M. Patniak" -, title = "Design and performance evaluation of a systolic architecture for hidden surface removal" -, journal = "Comput. Graph. (UK)" -, volume = 12 -, number = 1 -, year = 1988 -, pages = "71--74" -, keywords = "hidden line/surface elimination, parallel computation" -, update = "95.05 korneenko" +, author = "V. G. Ajjanagadde and L. M. Patniak" +, title = "Design and performance evaluation of a systolic architecture for hidden surface removal" +, journal = "Comput. Graph. (UK)" +, volume = 12 +, number = 1 +, year = 1988 +, pages = "71--74" +, keywords = "hidden line/surface elimination, parallel computation" +, update = "95.05 korneenko" } @article{a-lbfpy-88 -, author = "M. Ajtai" -, title = "A lower bound for finding predecessors in {Yao}'s cell probe model" -, journal = "Combinatorica" -, volume = 8 -, number = 3 -, year = 1988 -, pages = "235--247" -, update = "95.05 korneenko" +, author = "M. Ajtai" +, title = "A lower bound for finding predecessors in {Yao}'s cell probe model" +, journal = "Combinatorica" +, volume = 8 +, number = 3 +, year = 1988 +, pages = "235--247" +, update = "95.05 korneenko" } @article{acns-cfs-82 -, author = "M. Ajtai and V. Chv{\'a}tal and M. Newborn and E. Szemer{\'e}di" -, title = "Crossing-free subgraphs" -, journal = "Ann. Discrete Math." -, volume = 12 -, year = 1982 -, pages = "9--12" -, update = "98.03 agarwal+bibrelex" +, author = "M. Ajtai and V. Chv{\'a}tal and M. Newborn and E. Szemer{\'e}di" +, title = "Crossing-free subgraphs" +, journal = "Ann. Discrete Math." +, volume = 12 +, year = 1982 +, pages = "9--12" +, update = "98.03 agarwal+bibrelex" } @inproceedings{akss-dsot-86 -, author = "M. Ajtai and J. Koml{\'o}s and W. Steiger and E. Szemer{\'e}di" -, title = "Deterministic selection in {$O( \log \log n)$} time" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "188--195" -, update = "98.03 bibrelex" +, author = "M. Ajtai and J. Koml{\'o}s and W. Steiger and E. Szemer{\'e}di" +, title = "Deterministic selection in {$O( \log \log n)$} time" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "188--195" +, update = "98.03 bibrelex" } @article{akss-opshc-89 -, author = "M. Ajtai and J. Komlos and W. L. Steiger and E. Szemeredi" -, title = "Optimal parallel selection has complexity $o(\log \log n)$" -, journal = "J. Comput. Syst. Sci." -, volume = 38 -, number = 1 -, year = 1989 -, pages = "125--133" -, keywords = "parallel computation, selection, lower bound" -, update = "95.05 korneenko" +, author = "M. Ajtai and J. Komlos and W. L. Steiger and E. Szemeredi" +, title = "Optimal parallel selection has complexity $o(\log \log n)$" +, journal = "J. Comput. Syst. Sci." +, volume = 38 +, number = 1 +, year = 1989 +, pages = "125--133" +, keywords = "parallel computation, selection, lower bound" +, update = "95.05 korneenko" } @inproceedings{aks-osn-83 -, author = "M. Ajtai and J. Koml{\'o}s and E. Szemer{\'e}di" -, title = "An {$O(n \log n)$} Sorting Network" -, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." -, year = 1983 -, pages = "1--9" -, update = "98.03 bibrelex" +, author = "M. Ajtai and J. Koml{\'o}s and E. Szemer{\'e}di" +, title = "An {$O(n \log n)$} Sorting Network" +, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." +, year = 1983 +, pages = "1--9" +, update = "98.03 bibrelex" } @article{aks-scps-83 -, author = "M. Ajtai and J. Koml{\'o}s and E. Szemer{\'e}di" -, title = "Sorting in $c\log n$ parallel steps" -, journal = "Combinatorica" -, volume = 3 -, year = 1983 -, pages = "1--19" -, update = "93.09 rote" +, author = "M. Ajtai and J. Koml{\'o}s and E. Szemer{\'e}di" +, title = "Sorting in $c\log n$ parallel steps" +, journal = "Combinatorica" +, volume = 3 +, year = 1983 +, pages = "1--19" +, update = "93.09 rote" } @article{akt-om-84 -, author = "M. Ajtai and J. Koml{\'o}s and G. Tusn{\'a}dy" -, title = "On optimal matchings" -, journal = "Combinatorica" -, volume = 4 -, year = 1984 -, pages = "259--264" -, update = "98.03 bibrelex" +, author = "M. Ajtai and J. Koml{\'o}s and G. Tusn{\'a}dy" +, title = "On optimal matchings" +, journal = "Combinatorica" +, volume = 4 +, year = 1984 +, pages = "259--264" +, update = "98.03 bibrelex" } @article{am-dptnp-96 -, author = "M. Ajtai and N. Megiddo" -, title = "A Deterministic $Poly(\log \log N)$-Time $N$-Processor Algorithm for Linear Programming in Fixed Dimension" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "1171--1195" -, update = "97.03 agarwal+smid" +, author = "M. Ajtai and N. Megiddo" +, title = "A Deterministic $Poly(\log \log N)$-Time $N$-Processor Algorithm for Linear Programming in Fixed Dimension" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "1171--1195" +, update = "97.03 agarwal+smid" } @inproceedings{am-dptnp-92 -, author = "M. Ajtai and N. Megiddo" -, title = "A Deterministic $Poly(\log \log N)$-Time $N$-Processor Algorithm for Linear Programming in Fixed Dimensions" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "327--338" -, update = "97.03 agarwal, 94.01 matousek, 93.09 milone+mitchell" +, author = "M. Ajtai and N. Megiddo" +, title = "A Deterministic $Poly(\log \log N)$-Time $N$-Processor Algorithm for Linear Programming in Fixed Dimensions" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "327--338" +, update = "97.03 agarwal, 94.01 matousek, 93.09 milone+mitchell" } @inproceedings{a-reg-93 -, author = "Kurt Akeley" -, title = "Reality Engine Graphics" -, booktitle = "Proc. SIGGRAPH '93" -, series = "In {\em Comput. Graph.\/} Proceedings, Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "Addison-Wesley" -, year = 1993 -, pages = "109--116" -, update = "98.03 agarwal" +, author = "Kurt Akeley" +, title = "Reality Engine Graphics" +, booktitle = "Proc. SIGGRAPH '93" +, series = "In {\em Comput. Graph.\/} Proceedings, Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "Addison-Wesley" +, year = 1993 +, pages = "109--116" +, update = "98.03 agarwal" } @incollection{ahlm-spfoj-96 -, author = "S. Akella and W. Huang and K. M. Lynch and M. T. Mason" -, title = "Sensorless parts feeding with a one joint robot" -, editor = "J.-P. Laumond and M. H. Overmars" -, booktitle = "Algorithms for Robotic Motion and Manipulation" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1996 -, update = "98.07 bibrelex" +, author = "S. Akella and W. Huang and K. M. Lynch and M. T. Mason" +, title = "Sensorless parts feeding with a one joint robot" +, editor = "J.-P. Laumond and M. H. Overmars" +, booktitle = "Algorithms for Robotic Motion and Manipulation" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1996 +, update = "98.07 bibrelex" } @inproceedings{am-ppopp-92 -, author = "S. Akella and M. T. Mason" -, title = "Posing polygonal objects in the plane by pushing" -, booktitle = "Proc. 9th IEEE Internat. Conf. Robot. Autom." -, year = 1992 -, pages = "2255--2268" -, update = "98.07 bibrelex" +, author = "S. Akella and M. T. Mason" +, title = "Posing polygonal objects in the plane by pushing" +, booktitle = "Proc. 9th IEEE Internat. Conf. Robot. Autom." +, year = 1992 +, pages = "2255--2268" +, update = "98.07 bibrelex" } @inproceedings{ahk-sgaan-87 -, author = "S. B. Akers and D. Harel and B. Krishnamurthy" -, title = "The Star Graph: An Attractive Alternative to the {$n$}-cube" -, booktitle = "Proc. Int. Conf. on Parrallel Processing" -, year = 1987 -, pages = "393--400" -, update = "98.07 bibrelex" +, author = "S. B. Akers and D. Harel and B. Krishnamurthy" +, title = "The Star Graph: An Attractive Alternative to the {$n$}-cube" +, booktitle = "Proc. Int. Conf. on Parrallel Processing" +, year = 1987 +, pages = "393--400" +, update = "98.07 bibrelex" } @inproceedings{ak-gtmsi-86 -, author = "S. B. Akers and B. Krishnamurthy" -, title = "A group theoretic model for symmetric interconnection networks" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1986 -, pages = "216--223" -, update = "98.07 bibrelex" +, author = "S. B. Akers and B. Krishnamurthy" +, title = "A group theoretic model for symmetric interconnection networks" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1986 +, pages = "216--223" +, update = "98.07 bibrelex" } @article{ak-gtmsi-38 -, author = "S. B. Akers and B. Krishnamurthy" -, title = "A Group Theoretic Model for Symmetric Interconnection Networks" -, journal = "IEEE Trans. Comput." -, volume = 38 -, number = 4 -, year = 1989 -, pages = "555--566" -, update = "98.07 bibrelex" +, author = "S. B. Akers and B. Krishnamurthy" +, title = "A Group Theoretic Model for Symmetric Interconnection Networks" +, journal = "IEEE Trans. Comput." +, volume = 38 +, number = 4 +, year = 1989 +, pages = "555--566" +, update = "98.07 bibrelex" } @inproceedings{ak-ftsg-87 -, author = "S. B. Akers and B. Krishnamurthy" -, title = "The fault tolerance of star graphs" -, booktitle = "Proc. 2nd International Conference on Supercomputing" -, site = "San Francisco, CA" -, year = 1987 -, update = "98.07 bibrelex" +, author = "S. B. Akers and B. Krishnamurthy" +, title = "The fault tolerance of star graphs" +, booktitle = "Proc. 2nd International Conference on Supercomputing" +, site = "San Francisco, CA" +, year = 1987 +, update = "98.07 bibrelex" } @article{a-mbiss-78 -, author = "H. Akima" -, title = "A Method of Bivariate Interpolation on Smooth Surface Fitting for Irregularly Distributed Data Points" -, journal = "ACM Trans. Math. Softw." -, volume = 4 -, year = 1978 -, pages = "148--159" -, precedes = "a-a526b-78" -, update = "98.03 bibrelex" -, annote = "Fits a 5th degree polynomial in each triangle. Uses - DT. Incremental algorithm---adds points outside the - convex hull." +, author = "H. Akima" +, title = "A Method of Bivariate Interpolation on Smooth Surface Fitting for Irregularly Distributed Data Points" +, journal = "ACM Trans. Math. Softw." +, volume = 4 +, year = 1978 +, pages = "148--159" +, precedes = "a-a526b-78" +, update = "98.03 bibrelex" +, annote = "Fits a 5th degree polynomial in each triangle. Uses + DT. Incremental algorithm---adds points outside the + convex hull." } @article{a-a526b-78 -, author = "H. Akima" -, title = "Algorithm 526: {Bivariate} interpolation and smooth surface fitting for irregularly distributed data points" -, journal = "ACM Trans. Math. Softw." -, volume = 4 -, number = 2 -, year = 1978 -, pages = "160--164" -, succeeds = "a-mbiss-78" -, update = "98.03 bibrelex" +, author = "H. Akima" +, title = "Algorithm 526: {Bivariate} interpolation and smooth surface fitting for irregularly distributed data points" +, journal = "ACM Trans. Math. Softw." +, volume = 4 +, number = 2 +, year = 1978 +, pages = "160--164" +, succeeds = "a-mbiss-78" +, update = "98.03 bibrelex" } @article{a-epdbi-84 -, author = "H. Akima" -, title = "On estimating partial derivatives for bivariate interpolation of scattered data" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "41--52" +, author = "H. Akima" +, title = "On estimating partial derivatives for bivariate interpolation of scattered data" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "41--52" } @article{aa-wvp-88 -, author = "I. Ya. Akimova and A. P. Akimov" -, title = "Weighted {Voronoi} Partitions" -, journal = "Soviet Journal of Computer and Systems Sciences (English translation of Tekhnicheskaya Kibernetika)" -, volume = 26 -, number = 6 -, month = nov -, year = 1988 -, pages = "75--80" -, keywords = "weighted euclidean metric, Voronoi partitions, Voronoi diagrams, geometrical problems, point set" -, update = "93.05 schwarzkopf" -, annote = "Multiplicative weights in $n$ dimensions. Incremental - algorithm" -, abstract = "Weighted Voronoi partitions are proposed in this paper - as a generalization of the Voronoi partition. - Properties of such partitions are obtained, and an - algorithm developed for their construction. Certain - applied problems whose solution would benefit from the - use of Voronoi diagrams are indicated. (Author - abstract) 13 Refs." +, author = "I. Ya. Akimova and A. P. Akimov" +, title = "Weighted {Voronoi} Partitions" +, journal = "Soviet Journal of Computer and Systems Sciences (English translation of Tekhnicheskaya Kibernetika)" +, volume = 26 +, number = 6 +, month = nov +, year = 1988 +, pages = "75--80" +, keywords = "weighted euclidean metric, Voronoi partitions, Voronoi diagrams, geometrical problems, point set" +, update = "93.05 schwarzkopf" +, annote = "Multiplicative weights in $n$ dimensions. Incremental + algorithm" +, abstract = "Weighted Voronoi partitions are proposed in this paper + as a generalization of the Voronoi partition. + Properties of such partitions are obtained, and an + algorithm developed for their construction. Certain + applied problems whose solution would benefit from the + use of Voronoi diagrams are indicated. (Author + abstract) 13 Refs." } @inproceedings{a-wtcdg-97 -, author = "Jin Akiyama" -, title = "Why {Taro} Can Do Geometry" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = 112 -, update = "97.11 jones" +, author = "Jin Akiyama" +, title = "Why {Taro} Can Do Geometry" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = 112 +, update = "97.11 jones" } @inproceedings{aa-dsgh-89 -, author = "J. Akiyama and N. Alon" -, title = "Disjoint simplices and geometric hypergraphs" -, editor = "G. S. Blum and R. L. Graham and J. Malkevitch" -, booktitle = "Combinatorial Mathematics; Proc. of the Third International Conference (New York, 1985)" -, volume = 555 -, publisher = "Annals of the New York Academy of Sciences" -, year = 1989 -, pages = "1--3" -, update = "97.03 schwarzkopf, 95.05 korneenko, 95.01 mitchell" +, author = "J. Akiyama and N. Alon" +, title = "Disjoint simplices and geometric hypergraphs" +, editor = "G. S. Blum and R. L. Graham and J. Malkevitch" +, booktitle = "Combinatorial Mathematics; Proc. of the Third International Conference (New York, 1985)" +, volume = 555 +, publisher = "Annals of the New York Academy of Sciences" +, year = 1989 +, pages = "1--3" +, update = "97.03 schwarzkopf, 95.05 korneenko, 95.01 mitchell" } @article{au-nbclp-90 -, author = "J. Akiyama and J. Urrutia" -, title = "A note on balanced colouring of lattice points" -, journal = "Discrete Math." -, volume = 83 -, number = 1 -, year = 1990 -, pages = "123--126" -, update = "95.05 korneenko" +, author = "J. Akiyama and J. Urrutia" +, title = "A note on balanced colouring of lattice points" +, journal = "Discrete Math." +, volume = 83 +, number = 1 +, year = 1990 +, pages = "123--126" +, update = "95.05 korneenko" } @article{au-sapp-90 -, author = "J. Akiyama and J. Urrutia" -, title = "Simple alternating path problem" -, journal = "Discrete Math." -, volume = 84 -, number = 1 -, year = 1990 -, pages = "101--103" -, keywords = "points, convex polygons, connect-the-dots problem" -, update = "95.05 korneenko" +, author = "J. Akiyama and J. Urrutia" +, title = "Simple alternating path problem" +, journal = "Discrete Math." +, volume = 84 +, number = 1 +, year = 1990 +, pages = "101--103" +, keywords = "points, convex polygons, connect-the-dots problem" +, update = "95.05 korneenko" } @article{ans-nchcp-80 -, author = "T. Akiyama and T. Nishizeki and N. Saito" -, title = "{NP}-completeness of the {Hamiltonian} cycle problem for bipartite graphs" -, journal = "J. Inform. Process." -, volume = 3 -, year = 1980 -, pages = "73--76" -, update = "98.11 bibrelex" +, author = "T. Akiyama and T. Nishizeki and N. Saito" +, title = "{NP}-completeness of the {Hamiltonian} cycle problem for bipartite graphs" +, journal = "J. Inform. Process." +, volume = 3 +, year = 1980 +, pages = "73--76" +, update = "98.11 bibrelex" } @proceedings{adss-p4wad-95 -, title = "Proc. 4th Workshop Algorithms Data Struct." -, editor = "S. Akl and F. Dehne and J.-R. Sack and N. Santoro" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, update = "98.07 bibrelex, 97.11 sack" +, title = "Proc. 4th Workshop Algorithms Data Struct." +, editor = "S. Akl and F. Dehne and J.-R. Sack and N. Santoro" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, update = "98.07 bibrelex, 97.11 sack" } @techreport{amr-pgg-88 -, author = "S. Akl and H. Meijer and D. Rappaport" -, title = "Parallel geometry on a grid" -, number = "cisc 88--238" -, institution = "Dept. Computer Inf. Sci. Queen's Univ." -, address = "Kingston, Ontario, Canada" -, year = 1988 -, keywords = "parallel computations" -, update = "98.07 bibrelex, 95.05 korneenko" +, author = "S. Akl and H. Meijer and D. Rappaport" +, title = "Parallel geometry on a grid" +, number = "cisc 88--238" +, institution = "Dept. Computer Inf. Sci. Queen's Univ." +, address = "Kingston, Ontario, Canada" +, year = 1988 +, keywords = "parallel computations" +, update = "98.07 bibrelex, 95.05 korneenko" } @article{a-ctpac-82 -, author = "S. G. Akl" -, title = "A Constant-time Parallel Algorithm for Computing Convex Hulls" -, journal = "BIT" -, volume = 22 -, year = 1982 -, pages = "130--134" -, keywords = "parallel computations, convex hull" -, update = "95.05 korneenko, 93.09 held" +, author = "S. G. Akl" +, title = "A Constant-time Parallel Algorithm for Computing Convex Hulls" +, journal = "BIT" +, volume = 22 +, year = 1982 +, pages = "130--134" +, keywords = "parallel computations, convex hull" +, update = "95.05 korneenko, 93.09 held" } @article{a-nemts-83 -, author = "S. G. Akl" -, title = "A note on {Euclidean} matchings, triangulations, and spanning trees" -, journal = "Journal of Combinatorics, Information and System Sciences" -, volume = 8 -, number = 3 -, year = 1983 -, pages = "169--174" -, keywords = "geometric graphs, triangulation, minimal spanning tree, matching" -, update = "95.05 korneenko, 95.01 mitchell, 95.01 mitchell" +, author = "S. G. Akl" +, title = "A note on {Euclidean} matchings, triangulations, and spanning trees" +, journal = "Journal of Combinatorics, Information and System Sciences" +, volume = 8 +, number = 3 +, year = 1983 +, pages = "169--174" +, keywords = "geometric graphs, triangulation, minimal spanning tree, matching" +, update = "95.05 korneenko, 95.01 mitchell, 95.01 mitchell" } @phdthesis{a-avats-78 -, author = "S. G. Akl" -, title = "An analysis of various aspects of the traveling salesman problem" -, type = "Ph.{D}. Thesis" -, school = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1978 -, keywords = "doctoral thesis" +, author = "S. G. Akl" +, title = "An analysis of various aspects of the traveling salesman problem" +, type = "Ph.{D}. Thesis" +, school = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1978 +, keywords = "doctoral thesis" } @article{a-cgmap-78 -, author = "S. G. Akl" -, title = "Comments on: {G}. {Manacher}, an application of pattern matching to a problem in geometrical complexity" -, journal = "Inform. Process. Lett." -, volume = 7 -, number = 2 -, year = 1978 -, pages = 86 -, keywords = "polygon similarity, affine maps" -, succeeds = "m-apmpg-76" +, author = "S. G. Akl" +, title = "Comments on: {G}. {Manacher}, an application of pattern matching to a problem in geometrical complexity" +, journal = "Inform. Process. Lett." +, volume = 7 +, number = 2 +, year = 1978 +, pages = 86 +, keywords = "polygon similarity, affine maps" +, succeeds = "m-apmpg-76" } @article{a-ccha-80 -, author = "S. G. Akl" -, title = "Corrigendum on convex hull algorithms" -, journal = "Inform. Process. Lett." -, volume = 10 -, number = 3 -, year = 1980 -, pages = 168 +, author = "S. G. Akl" +, title = "Corrigendum on convex hull algorithms" +, journal = "Inform. Process. Lett." +, volume = 10 +, number = 3 +, year = 1980 +, pages = 168 } @techreport{a-mtodh-78 -, author = "S. G. Akl" -, title = "On maximal triangulations, optimal drawings and {Hamilton} cycles" -, type = "Report" -, number = "78-67" -, institution = "Dept. Comput. Inform. Sci., Queen's Univ." -, address = "Kingston, ON" -, year = 1978 +, author = "S. G. Akl" +, title = "On maximal triangulations, optimal drawings and {Hamilton} cycles" +, type = "Report" +, number = "78-67" +, institution = "Dept. Comput. Inform. Sci., Queen's Univ." +, address = "Kingston, ON" +, year = 1978 } @article{a-enono-81 -, author = "S. G. Akl" -, title = "On the expected number of optimal and near-optimal solutions to the {Euclidean} travelling salesman problem" -, journal = "J. Comp. Math. Appl." -, volume = 7 -, number = 4 -, year = 1981 -, pages = "287--288" -, update = "95.05 korneenko" +, author = "S. G. Akl" +, title = "On the expected number of optimal and near-optimal solutions to the {Euclidean} travelling salesman problem" +, journal = "J. Comp. Math. Appl." +, volume = 7 +, number = 4 +, year = 1981 +, pages = "287--288" +, update = "95.05 korneenko" } @article{a-oacch-84 -, author = "S. G. Akl" -, title = "Optimal algorithms for computing convex hulls and for sorting" -, journal = "Computing" -, volume = 33 -, year = 1984 -, pages = "1--11" +, author = "S. G. Akl" +, title = "Optimal algorithms for computing convex hulls and for sorting" +, journal = "Computing" +, volume = 33 +, year = 1984 +, pages = "1--11" } @incollection{a-opass-85 -, author = "S. G. Akl" -, title = "Optimal parallel algorithms for selection, sorting and computing convex hulls" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "1--22" +, author = "S. G. Akl" +, title = "Optimal parallel algorithms for selection, sorting and computing convex hulls" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "1--22" } @book{a-psa-85 -, author = "S. G. Akl" -, title = "Parallel Sorting Algorithms" -, publisher = "Academic Press" -, address = "Orlando, Florida" -, year = 1985 -, isbn = "0-12-047680-0" -, update = "98.07 bibrelex, 95.05 korneenko" +, author = "S. G. Akl" +, title = "Parallel Sorting Algorithms" +, publisher = "Academic Press" +, address = "Orlando, Florida" +, year = 1985 +, isbn = "0-12-047680-0" +, update = "98.07 bibrelex, 95.05 korneenko" } @book{a-dapa-89 -, author = "S. G. Akl" -, title = "The Design and Analysis of Parallel Algorithms" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1989 -, update = "96.09 orourke" +, author = "S. G. Akl" +, title = "The Design and Analysis of Parallel Algorithms" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1989 +, update = "96.09 orourke" } @article{a-trcha-79 -, author = "S. G. Akl" -, title = "Two remarks on a convex hull algorithm" -, journal = "Inform. Process. Lett." -, volume = 8 -, number = 2 -, year = 1979 -, pages = "108--109" -, keywords = "convex hull, counterclockwise test, angle test, geometrical primitives" +, author = "S. G. Akl" +, title = "Two remarks on a convex hull algorithm" +, journal = "Inform. Process. Lett." +, volume = 8 +, number = 2 +, year = 1979 +, pages = "108--109" +, keywords = "convex hull, counterclockwise test, angle test, geometrical primitives" } @book{al-pcg-93 -, author = "S. G. Akl and K. A. Lyons" -, title = "Parallel Computational Geometry" -, publisher = "Prentice Hall" -, year = 1993 -, update = "97.03 schwarzkopf, 93.09 held" +, author = "S. G. Akl and K. A. Lyons" +, title = "Parallel Computational Geometry" +, publisher = "Prentice Hall" +, year = 1993 +, update = "97.03 schwarzkopf, 93.09 held" } @incollection{am-acba-81 -, author = "S. G. Akl and H. Meijer" -, title = "On the average-case of ``bucketing'' algorithms" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1981 -, pages = "381--388" -, precedes = "am-acba-82" -, update = "95.05 korneenko" +, author = "S. G. Akl and H. Meijer" +, title = "On the average-case of ``bucketing'' algorithms" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1981 +, pages = "381--388" +, precedes = "am-acba-82" +, update = "95.05 korneenko" } @article{am-acba-82 -, author = "S. G. Akl and H. Meijer" -, title = "On the average-case of ``bucketing'' algorithms" -, journal = "J. Algorithms" -, volume = 3 -, number = 1 -, year = 1982 -, pages = "9--13" -, keywords = "average-case analysis, bucketing" -, succeeds = "am-acba-81" -, update = "95.05 korneenko" +, author = "S. G. Akl and H. Meijer" +, title = "On the average-case of ``bucketing'' algorithms" +, journal = "J. Algorithms" +, volume = 3 +, number = 1 +, year = 1982 +, pages = "9--13" +, keywords = "average-case analysis, bucketing" +, succeeds = "am-acba-81" +, update = "95.05 korneenko" } @article{am-pbs-90 -, author = "S. G. Akl and J. Meijer" -, title = "Parallel binary search" -, journal = "IEEE Trans. Parallel Distrib. Syst." -, volume = 1 -, year = 1990 -, pages = "247--250" -, update = "98.07 bibrelex" +, author = "S. G. Akl and J. Meijer" +, title = "Parallel binary search" +, journal = "IEEE Trans. Parallel Distrib. Syst." +, volume = 1 +, year = 1990 +, pages = "247--250" +, update = "98.07 bibrelex" } @inproceedings{aqs-cvdsp-92 -, author = "S. G. Akl and K. Qiu and I. Stojmenovi{\'c}" -, title = "Computing the {Voronoi} diagram on the star and pancake interconnection networks" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "353--358" -, cites = "ak-gtmsi-38, ahk-sgaan-87, ak-ftsg-87, jl-pgamc-90, lp-lppsi-77, ms-esasg-90, ps-cgi-85, aqs-dccgs-91t, l-cvdmc-85, qma-prspn-91, s-cgh-88, ZZZ" -, update = "98.07 bibrelex" +, author = "S. G. Akl and K. Qiu and I. Stojmenovi{\'c}" +, title = "Computing the {Voronoi} diagram on the star and pancake interconnection networks" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "353--358" +, cites = "ak-gtmsi-38, ahk-sgaan-87, ak-ftsg-87, jl-pgamc-90, lp-lppsi-77, ms-esasg-90, ps-cgi-85, aqs-dccgs-91t, l-cvdmc-85, qma-prspn-91, s-cgh-88, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{aqs-cgspn-91i -, author = "S. G. Akl and K. Qui and I. Stojmenovi{\'c}" -, title = "Computational geometry on the star and pancake networks" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "252--255" -, update = "98.07 bibrelex" +, author = "S. G. Akl and K. Qui and I. Stojmenovi{\'c}" +, title = "Computational geometry on the star and pancake networks" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "252--255" +, update = "98.07 bibrelex" } @techreport{aqs-dccgs-91t -, author = "S. G. Akl and K. Qui and I. Stojmenovic" -, title = "Data Communication and Computational Geometry on the Star and Pancake Interconnection Networks" -, type = "Technical Report" -, number = "91-301" -, institution = "Dept. Comp and Info Sci, Queens's University" -, month = apr -, year = 1991 -, precedes = "aqs-cgspn-91i" -, update = "98.07 bibrelex" +, author = "S. G. Akl and K. Qui and I. Stojmenovic" +, title = "Data Communication and Computational Geometry on the Star and Pancake Interconnection Networks" +, type = "Technical Report" +, number = "91-301" +, institution = "Dept. Comp and Info Sci, Queens's University" +, month = apr +, year = 1991 +, precedes = "aqs-cgspn-91i" +, update = "98.07 bibrelex" } @article{at-fcha-78 -, author = "S. G. Akl and G. T. Toussaint" -, title = "A fast convex hull algorithm" -, journal = "Inform. Process. Lett." -, volume = 7 -, number = 5 -, year = 1978 -, pages = "219--222" +, author = "S. G. Akl and G. T. Toussaint" +, title = "A fast convex hull algorithm" +, journal = "Inform. Process. Lett." +, volume = 7 +, number = 5 +, year = 1978 +, pages = "219--222" } @article{at-aiacp-79 -, author = "S. G. Akl and G. T. Toussaint" -, title = "Addendum to ``{An} improved algorithm to check for polygon similarity''" -, journal = "Inform. Process. Lett." -, volume = 8 -, number = 3 -, year = 1979 -, pages = "157--158" -, succeeds = "at-iacps-78" +, author = "S. G. Akl and G. T. Toussaint" +, title = "Addendum to ``{An} improved algorithm to check for polygon similarity''" +, journal = "Inform. Process. Lett." +, volume = 8 +, number = 3 +, year = 1979 +, pages = "157--158" +, succeeds = "at-iacps-78" } @article{at-iacps-78 -, author = "S. G. Akl and G. T. Toussaint" -, title = "An improved algorithm to check for polygon similarity" -, journal = "Inform. Process. Lett." -, volume = 7 -, year = 1978 -, pages = "127--128" -, precedes = "at-aiacp-79" +, author = "S. G. Akl and G. T. Toussaint" +, title = "An improved algorithm to check for polygon similarity" +, journal = "Inform. Process. Lett." +, volume = 7 +, year = 1978 +, pages = "127--128" +, precedes = "at-aiacp-79" } @inproceedings{at-echap-78 -, author = "S. G. Akl and G. T. Toussaint" -, title = "Efficient convex hull algorithms for pattern recognition applications" -, booktitle = "Proc. 4th IEEE Internat. Conf. Pattern Recogn." -, site = "Kyoto, Japan" -, year = 1978 -, pages = "483--487" -, keywords = "convex hull, simple polygon, average-case analysis, average size of convex hull, empirical analysis, Graham's scan" +, author = "S. G. Akl and G. T. Toussaint" +, title = "Efficient convex hull algorithms for pattern recognition applications" +, booktitle = "Proc. 4th IEEE Internat. Conf. Pattern Recogn." +, site = "Kyoto, Japan" +, year = 1978 +, pages = "483--487" +, keywords = "convex hull, simple polygon, average-case analysis, average size of convex hull, empirical analysis, Graham's scan" } @article{a-adomf-87 -, author = "V. Akman" -, title = "An algorithm for determining an opaque minimal forest of a convex polygon" -, journal = "Inform. Process. Lett." -, volume = 24 -, number = 3 -, year = 1987 -, pages = "193--198" -, keywords = "triangulation, Steiner trees, minimum spanning trees, visibility, convex polygon" -, update = "95.05 korneenko" +, author = "V. Akman" +, title = "An algorithm for determining an opaque minimal forest of a convex polygon" +, journal = "Inform. Process. Lett." +, volume = 24 +, number = 3 +, year = 1987 +, pages = "193--198" +, keywords = "triangulation, Steiner trees, minimum spanning trees, visibility, convex polygon" +, update = "95.05 korneenko" } @incollection{a-ggar-88 -, author = "V. Akman" -, title = "Geometry and graphics applied to robotics" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1988 -, pages = "619--638" -, update = "99.11 bibrelex" +, author = "V. Akman" +, title = "Geometry and graphics applied to robotics" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1988 +, pages = "619--638" +, update = "99.11 bibrelex" } @phdthesis{a-spapo-85 -, author = "V. Akman" -, title = "Shortest Paths Avoiding Polyhedral Obstacles In 3-Dimensional {Euclidean} Space" -, school = "Computer and Systems Engineering, Rensselaer Polytechnic Institute" -, address = "Troy, NY" -, year = 1985 -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "V. Akman" +, title = "Shortest Paths Avoiding Polyhedral Obstacles In 3-Dimensional {Euclidean} Space" +, school = "Computer and Systems Engineering, Rensselaer Polytechnic Institute" +, address = "Troy, NY" +, year = 1985 +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @article{a-sp825-83 -, author = "V. Akman" -, title = "Solution to ``problem 82-5''" -, journal = "J. Algorithms" -, volume = 4 -, year = 1983 -, pages = "184--187" -, keywords = "triangulation, subdivision" -, update = "95.05 korneenko" +, author = "V. Akman" +, title = "Solution to ``problem 82-5''" +, journal = "J. Algorithms" +, volume = 4 +, year = 1983 +, pages = "184--187" +, keywords = "triangulation, subdivision" +, update = "95.05 korneenko" } @book{a-usppe-87 -, author = "V. Akman" -, title = "Unobstructed Shortest Paths in Polyhedral Environments" -, series = "Lecture Notes Comput. Sci." -, volume = 251 -, publisher = "Springer-Verlag" -, year = 1987 -, keywords = "book, polyhedra, motion planning" -, update = "93.09 franklin" +, author = "V. Akman" +, title = "Unobstructed Shortest Paths in Polyhedral Environments" +, series = "Lecture Notes Comput. Sci." +, volume = 251 +, publisher = "Springer-Verlag" +, year = 1987 +, keywords = "book, polyhedra, motion planning" +, update = "93.09 franklin" } @article{af-qis-86 -, author = "Varol Akman and Wm. Randolph Franklin" -, title = "On the Question `Is $\sum_1^n \sqrt{a_i}\le L ?$'" -, journal = "Bull. EATCS" -, volume = 28 -, month = feb -, year = 1986 -, pages = "16--20" -, keywords = "motion planning, complexity theory" -, update = "95.05 korneenko, 93.09 franklin" +, author = "Varol Akman and Wm. Randolph Franklin" +, title = "On the Question `Is $\sum_1^n \sqrt{a_i}\le L ?$'" +, journal = "Bull. EATCS" +, volume = 28 +, month = feb +, year = 1986 +, pages = "16--20" +, keywords = "motion planning, complexity theory" +, update = "95.05 korneenko, 93.09 franklin" } @article{af-rrkdt-89 -, author = "Varol Akman and Wm. Randolph Franklin" -, title = "Ray Representation for K-d Trees" -, journal = "Pattern Recogn. Lett." -, volume = "??" -, month = nov -, year = 1989 -, pages = "315--320" -, keywords = "oct trees, measure, rays" -, update = "93.09 franklin" +, author = "Varol Akman and Wm. Randolph Franklin" +, title = "Ray Representation for K-d Trees" +, journal = "Pattern Recogn. Lett." +, volume = "??" +, month = nov +, year = 1989 +, pages = "315--320" +, keywords = "oct trees, measure, rays" +, update = "93.09 franklin" } @article{af-rorhp-89 -, author = "Varol Akman and Wm. Randolph Franklin" -, title = "Representing Objects as Rays, or How to Pile up an Octree?" -, journal = "Computers and Graphics" -, volume = 13 -, number = 3 -, year = 1989 -, pages = "373--379" -, keywords = "oct trees, measure, polyhedra, rays" -, update = "93.09 franklin" +, author = "Varol Akman and Wm. Randolph Franklin" +, title = "Representing Objects as Rays, or How to Pile up an Octree?" +, journal = "Computers and Graphics" +, volume = 13 +, number = 3 +, year = 1989 +, pages = "373--379" +, keywords = "oct trees, measure, polyhedra, rays" +, update = "93.09 franklin" } @article{afkn-gcugd-89 -, author = "V. Akman and Wm. Randolph Franklin and Mohan Kankanhalli and Chandrasekhar Narayanaswami" -, title = "Geometric Computing and the Uniform Grid Data Technique" -, journal = "Comput. Aided Design" -, volume = 21 -, number = 7 -, year = 1989 -, pages = "410--420" -, keywords = "intersection, CAD, grids" -, update = "94.05 akman, 93.09 franklin" +, author = "V. Akman and Wm. Randolph Franklin and Mohan Kankanhalli and Chandrasekhar Narayanaswami" +, title = "Geometric Computing and the Uniform Grid Data Technique" +, journal = "Comput. Aided Design" +, volume = 21 +, number = 7 +, year = 1989 +, pages = "410--420" +, keywords = "intersection, CAD, grids" +, update = "94.05 akman, 93.09 franklin" } @inproceedings{a-adgct-92 -, author = "T. Akutsu" -, title = "Algorithms for Determining the Geometrical Congruity in Two and Three Dimensions" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "279--288" -, update = "94.09 smid, 93.09 milone+mitchell" +, author = "T. Akutsu" +, title = "Algorithms for Determining the Geometrical Congruity in Two and Three Dimensions" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "279--288" +, update = "94.09 smid, 93.09 milone+mitchell" } @article{a-dcpsd-98 -, author = "Tatsuya Akutsu" -, title = "On Determining the Congruence of Point Sets in {$d$} Dimensions" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, number = 4 -, year = 1998 -, pages = "247--256" -, succeeds = "a-dcpsh-94" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Tatsuya Akutsu" +, title = "On Determining the Congruence of Point Sets in {$d$} Dimensions" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, number = 4 +, year = 1998 +, pages = "247--256" +, succeeds = "a-dcpsh-94" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{a-dcpsh-94 -, author = "Tatsuya Akutsu" -, title = "On Determining the Congruity of Point Sets in Higher Dimensions" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "38--46" -, precedes = "a-dcpsd-98" -, update = "99.11 bibrelex, 98.03 mitchell, 97.11 bibrelex, 96.05 mitchell" +, author = "Tatsuya Akutsu" +, title = "On Determining the Congruity of Point Sets in Higher Dimensions" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "38--46" +, precedes = "a-dcpsd-98" +, update = "99.11 bibrelex, 98.03 mitchell, 97.11 bibrelex, 96.05 mitchell" } @inproceedings{a-ssaat-94 -, author = "T. Akutsu" -, title = "Substructures search and alignment algorithms for three-dimensional protein structures" -, booktitle = "Proc. SIGAL-41" -, year = 1994 -, pages = "1--8" -, update = "98.07 bibrelex" +, author = "T. Akutsu" +, title = "Substructures search and alignment algorithms for three-dimensional protein structures" +, booktitle = "Proc. SIGAL-41" +, year = 1994 +, pages = "1--8" +, update = "98.07 bibrelex" } @inproceedings{aahit-ssede-91 -, author = "Tatsuya Akutsu and Yasukazu Aoki and Susumi Hasegawa and Hiroshi Imai and Takeshi Tokuyama" -, title = "The sum of smaller endpoint degree over edges of graphs and its. applications to geometric problems" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "145--148" -, cites = "ce-oails-88, cn-asla-85, e-acg-87, egppss-acptc-88, i-nfalt-83, m-fppa2-89, os-nrdca, ZZZ" -, update = "98.07 bibrelex" +, author = "Tatsuya Akutsu and Yasukazu Aoki and Susumi Hasegawa and Hiroshi Imai and Takeshi Tokuyama" +, title = "The sum of smaller endpoint degree over edges of graphs and its. applications to geometric problems" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "145--148" +, cites = "ce-oails-88, cn-asla-85, e-acg-87, egppss-acptc-88, i-nfalt-83, m-fppa2-89, os-nrdca, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{ah-alcsl-94 -, author = "T. Akutsu and M. M. Halldorsson" -, title = "On the Approximation of Largest Common Subtrees and Largest Common Point Sets" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "405--413" -, update = "99.11 bibrelex, 97.03 aronov, 96.05 mitchell" +, author = "T. Akutsu and M. M. Halldorsson" +, title = "On the Approximation of Largest Common Subtrees and Largest Common Point Sets" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "405--413" +, update = "99.11 bibrelex, 97.03 aronov, 96.05 mitchell" } @inproceedings{att-ddtps-97 -, author = "T. Akutsu and H. Tamaki and T. Tokuyama" -, title = "Distribution of Distances and Triangles in a Point Set and Algorithms for Computing the Largest Common Point Set" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "314--323" -, cites = "aass-sdp-93, a-ssaat-94, a-dcpsh-94, amww-cssgo-88, a-oagc-87, b-ghtda-81, cghkkk-gpmem-93, cegsw-ccbac-90, ee-scpg-94, e-sdnp-46, e-sdnpe-60, ep-sepg-71, gmo-pmagp-94, h-gaaps-93, hh-gicv-92, ir-cerrp-96, keb-pht-91, m-cag-, m-dddnp-52, mp-rdcg-93, m-hmcs-96, pa-cg-95, pt-gdfcp-96, s-nadcp-84, st-epdg-83, s-cnhep-97, vs-dctds-91, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "T. Akutsu and H. Tamaki and T. Tokuyama" +, title = "Distribution of Distances and Triangles in a Point Set and Algorithms for Computing the Largest Common Point Set" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "314--323" +, cites = "aass-sdp-93, a-ssaat-94, a-dcpsh-94, amww-cssgo-88, a-oagc-87, b-ghtda-81, cghkkk-gpmem-93, cegsw-ccbac-90, ee-scpg-94, e-sdnp-46, e-sdnpe-60, ep-sepg-71, gmo-pmagp-94, h-gaaps-93, hh-gicv-92, ir-cerrp-96, keb-pht-91, m-cag-, m-dddnp-52, mp-rdcg-93, m-hmcs-96, pa-cg-95, pt-gdfcp-96, s-nadcp-84, st-epdg-83, s-cnhep-97, vs-dctds-91, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{aaa-apcbv-88 -, author = "A. J. {Al-Khalili} and D. {Al-Khalili} and K. Ammar" -, title = "An algorithm for polygon conversion to boxes for {VLSI} layouts" -, journal = "Integration" -, volume = 6 -, year = 1988 -, pages = "291--308" -, keywords = "polygon, decomposition, orthogon" -, update = "95.05 korneenko" +, author = "A. J. {Al-Khalili} and D. {Al-Khalili} and K. Ammar" +, title = "An algorithm for polygon conversion to boxes for {VLSI} layouts" +, journal = "Integration" +, volume = 6 +, year = 1988 +, pages = "291--308" +, keywords = "polygon, decomposition, orthogon" +, update = "95.05 korneenko" } @article{apru-mptdp-91 -, author = "F. {Al-Thukair} and A. Pelc and I. Rival and J. Urrutia" -, title = "Motion planning, two-directional point representations, and ordered sets" -, journal = "SIAM J. Discrete Math." -, volume = 4 -, number = 2 -, year = 1991 -, pages = "151--163" -, keywords = "motion planning" -, update = "95.05 korneenko" +, author = "F. {Al-Thukair} and A. Pelc and I. Rival and J. Urrutia" +, title = "Motion planning, two-directional point representations, and ordered sets" +, journal = "SIAM J. Discrete Math." +, volume = 4 +, number = 2 +, year = 1991 +, pages = "151--163" +, keywords = "motion planning" +, update = "95.05 korneenko" } @article{n-loviu-92 -, author = "V. B. Nitya el al." -, title = "Linear octree by volume intersection using perspective silhouettes" -, journal = "Pattern Recogn. Lett." -, volume = "??" -, year = 1992 -, pages = "781--788" -, update = "98.11 bibrelex" +, author = "V. B. Nitya el al." +, title = "Linear octree by volume intersection using perspective silhouettes" +, journal = "Pattern Recogn. Lett." +, volume = "??" +, year = 1992 +, pages = "781--788" +, update = "98.11 bibrelex" } @article{a-dmbds-91 -, author = "S. R. Ala" -, title = "Design methodology of boundary data structures" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 3 -, year = 1991 -, pages = "207--226" -, keywords = "boundary data structures, optimization, symmetric data structure, winged edge, storage and access time" +, author = "S. R. Ala" +, title = "Design methodology of boundary data structures" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 3 +, year = 1991 +, pages = "207--226" +, keywords = "boundary data structures, optimization, symmetric data structure, winged edge, storage and access time" } @article{a-pabds-92 -, author = "S. R. Ala" -, title = "Performance anomalies in boundary data structures" -, journal = "IEEE Comput. Graph. Appl." -, volume = 12 -, number = 2 -, year = 1992 -, pages = "49--58" -, update = "95.05 korneenko" +, author = "S. R. Ala" +, title = "Performance anomalies in boundary data structures" +, journal = "IEEE Comput. Graph. Appl." +, volume = 12 +, number = 2 +, year = 1992 +, pages = "49--58" +, update = "95.05 korneenko" } @phdthesis{a-tddvd-91 -, author = "G. Albers" -, title = "Three-Dimensional Dynamic {Voronoi} Diagrams" -, school = "University of W{\"u}rzburg" -, month = jul -, year = 1991 -, note = "in German" -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "G. Albers" +, title = "Three-Dimensional Dynamic {Voronoi} Diagrams" +, school = "University of W{\"u}rzburg" +, month = jul +, year = 1991 +, note = "in German" +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @article{agmr-vdmp-98 -, author = "G. Albers and Leonidas J. Guibas and Joseph S. B. Mitchell and T. Roos" -, title = "Voronoi Diagrams of Moving Points" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "365--380" -, keywords = "Voronoi diagrams, Davenport-Schinzel sequences" -, succeeds = "gmr-vdmpp-92, ar-vdmph-92, gmr-vdmpp-91t" -, update = "99.11 bibrelex, 98.11 bibrelex+devillers, 98.03 mitchell" +, author = "G. Albers and Leonidas J. Guibas and Joseph S. B. Mitchell and T. Roos" +, title = "Voronoi Diagrams of Moving Points" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "365--380" +, keywords = "Voronoi diagrams, Davenport-Schinzel sequences" +, succeeds = "gmr-vdmpp-92, ar-vdmph-92, gmr-vdmpp-91t" +, update = "99.11 bibrelex, 98.11 bibrelex+devillers, 98.03 mitchell" } @inproceedings{ar-vdmph-92 -, author = "G. Albers and T. Roos" -, title = "Voronoi diagrams of moving points in higher dimensional spaces" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, nickname = "SWAT '92" -, site = "Helsinki, Finland" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "399--409" -, keywords = "Voronoi diagrams, Davenport-Schinzel sequences" -, precedes = "agmr-vdmp-98" -, update = "99.07 bibrelex, 98.11 bibrelex+devillers, 98.03 mitchell" +, author = "G. Albers and T. Roos" +, title = "Voronoi diagrams of moving points in higher dimensional spaces" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, nickname = "SWAT '92" +, site = "Helsinki, Finland" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "399--409" +, keywords = "Voronoi diagrams, Davenport-Schinzel sequences" +, precedes = "agmr-vdmp-98" +, update = "99.07 bibrelex, 98.11 bibrelex+devillers, 98.03 mitchell" } @inproceedings{aks-eueo-99 -, author = "Susanne Albers and Klaus Kursawe and Sven Schuierer" -, title = "Exploring Unknown Environments with Obstacles" -, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '99" -, site = "Baltimore" -, year = 1999 -, pages = "842--843" -, update = "99.07 bibrelex, 99.03 bibrelex" +, author = "Susanne Albers and Klaus Kursawe and Sven Schuierer" +, title = "Exploring Unknown Environments with Obstacles" +, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '99" +, site = "Baltimore" +, year = 1999 +, pages = "842--843" +, update = "99.07 bibrelex, 99.03 bibrelex" } @inproceedings{agmn-allag-97 -, author = "D. Alberts and C. Gutwenger and P. Mutzel and S. N{\"a}her" -, title = "{AGD-Library}: {A} Library of Algorithms for Graph Drawing" -, booktitle = "Proc. Workshop on Algorithm Engineering" -, nickname = "WAE '97" -, site = "Venice" -, month = sep -, year = 1997 -, pages = "112--123" -, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap12.ps.gz" -, update = "00.11 smid, 00.07 icking, 98.07 bibrelex+smid+vismara+vahrenhold, 98.03 mitchell" +, author = "D. Alberts and C. Gutwenger and P. Mutzel and S. N{\"a}her" +, title = "{AGD-Library}: {A} Library of Algorithms for Graph Drawing" +, booktitle = "Proc. Workshop on Algorithm Engineering" +, nickname = "WAE '97" +, site = "Venice" +, month = sep +, year = 1997 +, pages = "112--123" +, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap12.ps.gz" +, update = "00.11 smid, 00.07 icking, 98.07 bibrelex+smid+vismara+vahrenhold, 98.03 mitchell" } @inproceedings{ah-acadg-95 -, author = "D. Alberts and M. R. Henzinger" -, title = "Average Case Analysis of Dynamic Graph Algorithms" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "312--321" -, update = "97.03 gaertner+salinger" +, author = "D. Alberts and M. R. Henzinger" +, title = "Average Case Analysis of Dynamic Graph Algorithms" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "312--321" +, update = "97.03 gaertner+salinger" } @techreport{aho-srcp-90 -, author = "M. Albertson and R. Haas and J. O'Rourke" -, title = "Some results on clamping a polygon" -, number = 003 -, institution = "Dept. Comput. Sci., Smith College" -, year = 1990 -, keywords = "robotics, gripping, clamping" -, precedes = "aho-srcp-95" -, update = "96.05 orourke, 94.01 orourke" +, author = "M. Albertson and R. Haas and J. O'Rourke" +, title = "Some results on clamping a polygon" +, number = 003 +, institution = "Dept. Comput. Sci., Smith College" +, year = 1990 +, keywords = "robotics, gripping, clamping" +, precedes = "aho-srcp-95" +, update = "96.05 orourke, 94.01 orourke" } @article{aho-srcp-95 -, author = "M. Albertson and R. Haas and J. O'Rourke" -, title = "Some results on clamping a polygon" -, journal = "Congr. Numer." -, volume = 109 -, year = 1995 -, pages = "33--50" -, keywords = "robotics, gripping, clamping" -, succeeds = "aho-srcp-90" -, update = "96.05 orourke" +, author = "M. Albertson and R. Haas and J. O'Rourke" +, title = "Some results on clamping a polygon" +, journal = "Congr. Numer." +, volume = 109 +, year = 1995 +, pages = "33--50" +, keywords = "robotics, gripping, clamping" +, succeeds = "aho-srcp-90" +, update = "96.05 orourke" } @article{ao-crs-81 -, author = "M. Albertson and C. J. O'Keefe" -, title = "Covering regions by squares" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 2 -, number = 3 -, year = 1981 -, pages = "240--243" -, keywords = "covering, orthogon" -, update = "95.05 korneenko" +, author = "M. Albertson and C. J. O'Keefe" +, title = "Covering regions by squares" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 2 +, number = 3 +, year = 1981 +, pages = "240--243" +, keywords = "covering, orthogon" +, update = "95.05 korneenko" } @book{ah-dma-88 -, author = "M. O. Albertson and J. P. Hutchinson" -, title = "Discrete Mathematics with Algorithms" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1988 +, author = "M. O. Albertson and J. P. Hutchinson" +, title = "Discrete Mathematics with Algorithms" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1988 } @inproceedings{a-hagcp-86 -, author = "A. Albrecht" -, title = "On hardware algorithms for geometric computation problems" -, booktitle = "Proc. IFIP 10th World Comput. Congr., Dublin 1986, Amsterdam" -, year = 1986 -, pages = "989--994" -, keywords = "parallel computations, Delaunay triangulation, point location, diameter relative neighborhood graph" -, update = "95.05 korneenko" +, author = "A. Albrecht" +, title = "On hardware algorithms for geometric computation problems" +, booktitle = "Proc. IFIP 10th World Comput. Congr., Dublin 1986, Amsterdam" +, year = 1986 +, pages = "989--994" +, keywords = "parallel computations, Delaunay triangulation, point location, diameter relative neighborhood graph" +, update = "95.05 korneenko" } @inproceedings{a-ccpo-84 -, author = "A. Albrecht" -, title = "On the circuit complexity of planar objects" -, booktitle = "Proc. 7th IEEE Internat. Conf. Pattern Recogn." -, site = "Montreal, PQ" -, year = 1984 -, pages = "468--470" +, author = "A. Albrecht" +, title = "On the circuit complexity of planar objects" +, booktitle = "Proc. 7th IEEE Internat. Conf. Pattern Recogn." +, site = "Montreal, PQ" +, year = 1984 +, pages = "468--470" } @techreport{a-vcsgc-84 -, author = "A. Albrecht" -, title = "On the {VLSI} complexity of some geometrical computation problems" -, type = "Report" -, number = 86 -, institution = "Sektion Math., Humboldt Univ." -, address = "Berlin, West Germany" -, year = 1984 +, author = "A. Albrecht" +, title = "On the {VLSI} complexity of some geometrical computation problems" +, type = "Report" +, number = 86 +, institution = "Sektion Math., Humboldt Univ." +, address = "Berlin, West Germany" +, year = 1984 } @book{az-igs-67 -, author = "A. D. Aleksandrov and U. A. Zalgaller" -, title = "Intrinsic Geometry of Surfaces" -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1967 -, update = "98.07 orourke" +, author = "A. D. Aleksandrov and U. A. Zalgaller" +, title = "Intrinsic Geometry of Surfaces" +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1967 +, update = "98.07 orourke" } @inproceedings{alms-eaaws-98 -, author = "Lyudmil Aleksandrov and Mark Lanthier and Anil Maheshwari and J{\"o}rg-R{\"u}diger Sack" -, title = "An {$\epsilon$}-Approximation Algorithm for Weighted Shortest Path Queries on Polyhedral Surfaces" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "19--21" -, update = "00.03 bibrelex, 98.07 bibrelex+mitchell, 98.03 mitchell" +, author = "Lyudmil Aleksandrov and Mark Lanthier and Anil Maheshwari and J{\"o}rg-R{\"u}diger Sack" +, title = "An {$\epsilon$}-Approximation Algorithm for Weighted Shortest Path Queries on Polyhedral Surfaces" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "19--21" +, update = "00.03 bibrelex, 98.07 bibrelex+mitchell, 98.03 mitchell" } @inproceedings{alms-eaaws-98b -, author = "L. Aleksandrov and M. Lanthier and A. Maheshwari and J.-R. Sack" -, title = "An {$\epsilon$}-Approximation Algorithm for Weighted Shortest Paths on Polyhedral Surfaces" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "11--22" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "L. Aleksandrov and M. Lanthier and A. Maheshwari and J.-R. Sack" +, title = "An {$\epsilon$}-Approximation Algorithm for Weighted Shortest Paths on Polyhedral Surfaces" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "11--22" +, update = "99.03 bibrelex, 98.07 mitchell" } @inproceedings{akllr-rwuts-79 -, author = "R. Aleliunas and R. M. Karp and R. J. Lipton and L. Lov{\'a}sz and C. Rackoff" -, title = "Random walks, universal traversal sequences, and the complexity of maze problems" -, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1979 -, pages = "218--223" +, author = "R. Aleliunas and R. M. Karp and R. J. Lipton and L. Lov{\'a}sz and C. Rackoff" +, title = "Random walks, universal traversal sequences, and the complexity of maze problems" +, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1979 +, pages = "218--223" } @phdthesis{a-adral-88 -, author = "Panagiotis Alevizos" -, title = "Arrangements de rayons: application {\`a} la reconstruction de formes planes" -, type = "Th{\`e}se de Doctorat en Sciences" -, school = "Uni\-ver\-sit{\'e} Paris-Sud" -, address = "Orsay, France" -, year = 1988 -, keywords = "doctoral thesis" -, update = "99.07 devillers, 93.09 rote, 93.05 jones" +, author = "Panagiotis Alevizos" +, title = "Arrangements de rayons: application {\`a} la reconstruction de formes planes" +, type = "Th{\`e}se de Doctorat en Sciences" +, school = "Uni\-ver\-sit{\'e} Paris-Sud" +, address = "Orsay, France" +, year = 1988 +, keywords = "doctoral thesis" +, update = "99.07 devillers, 93.09 rote, 93.05 jones" } @techreport{abst-oaccs-90 -, author = "Panagiotis Alevizos and V. Bistiolas and D. Sofotassios and A. Tsakalidis" -, title = "An Optimal Algorithm for Computing the Closure of a Set of Planar Rectangles and Locked-Transaction Systems" -, type = "Technical {Report}" -, number = "90.11.33" -, institution = "Univ. of Patras" -, address = "Greece" -, year = 1990 -, update = "99.07 devillers, 93.09 milone+mitchell" +, author = "Panagiotis Alevizos and V. Bistiolas and D. Sofotassios and A. Tsakalidis" +, title = "An Optimal Algorithm for Computing the Closure of a Set of Planar Rectangles and Locked-Transaction Systems" +, type = "Technical {Report}" +, number = "90.11.33" +, institution = "Univ. of Patras" +, address = "Greece" +, year = 1990 +, update = "99.07 devillers, 93.09 milone+mitchell" } @incollection{abp-oabcu-89 -, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and Franco P. Preparata" -, title = "An optimal algorithm for the boundary of a cell in a union of rays" -, booktitle = "Geometry and Robotics" -, series = "Lecture Notes Comput. Sci." -, volume = 391 -, year = 1989 -, pages = "247--274" -, update = "99.07 devillers, 97.11 bibrelex, 95.05 korneenko" +, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and Franco P. Preparata" +, title = "An optimal algorithm for the boundary of a cell in a union of rays" +, booktitle = "Geometry and Robotics" +, series = "Lecture Notes Comput. Sci." +, volume = 391 +, year = 1989 +, pages = "247--274" +, update = "99.07 devillers, 97.11 bibrelex, 95.05 korneenko" } @article{abp-oabcu-90 -, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and Franco P. Preparata" -, title = "An optimal algorithm for the boundary of a cell in a union of rays" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "573--590" -, succeeds = "abp-oabcu-89" -, precedes = "abp-oabcu-91" -, update = "99.07 devillers, 95.05 korneenko" +, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and Franco P. Preparata" +, title = "An optimal algorithm for the boundary of a cell in a union of rays" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "573--590" +, succeeds = "abp-oabcu-89" +, precedes = "abp-oabcu-91" +, update = "99.07 devillers, 95.05 korneenko" } @article{abp-oabcu-91 -, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and Franco P. Preparata" -, title = "An optimal algorithm for the boundary of a cell in a union of rays: {C}orrigendum" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "292--293" -, succeeds = "abp-oabcu-90" -, update = "99.07 devillers, 95.09 agarwal" +, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and Franco P. Preparata" +, title = "An optimal algorithm for the boundary of a cell in a union of rays: {C}orrigendum" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "292--293" +, succeeds = "abp-oabcu-90" +, update = "99.07 devillers, 95.09 agarwal" } @inproceedings{abp-bur-89 -, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and F. P. Preparata" -, title = "On the boundary of a union of rays" -, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 349 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "72--83" -, update = "99.07 devillers" +, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and F. P. Preparata" +, title = "On the boundary of a union of rays" +, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 349 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "72--83" +, update = "99.07 devillers" } @techreport{aby-oisra-89 -, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and Mariette Yvinec" -, title = "On the order induced by a set of rays, with application to the probing of non-convex polygons" -, type = "Manuscript" -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1989 -, keywords = "robotics, probing, shape, worst-case analysis, rays, polygons, two-dimensional" -, update = "99.07 devillers" +, author = "Panagiotis Alevizos and Jean-Daniel Boissonnat and Mariette Yvinec" +, title = "On the order induced by a set of rays, with application to the probing of non-convex polygons" +, type = "Manuscript" +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1989 +, keywords = "robotics, probing, shape, worst-case analysis, rays, polygons, two-dimensional" +, update = "99.07 devillers" } @inproceedings{a-aorsd-98 -, author = "Panagiotis D. Alevizos" -, title = "An Algorithm for Orthogonal Range Search in {$d\ge3$} Dimensions" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "23--25" -, cites = "cg-fc2a-86, ht-fafnc-84, ps-cgi-85, ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Panagiotis D. Alevizos" +, title = "An Algorithm for Orthogonal Range Search in {$d\ge3$} Dimensions" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "23--25" +, cites = "cg-fc2a-86, ht-fafnc-84, ps-cgi-85, ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{aby-ooacr-87 -, author = "Panagiotis D. Alevizos and Jean-Daniel Boissonnat and Mariette Yvinec" -, title = "An optimal {$O(n \log n)$} algorithm for contour reconstruction from rays" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "162--170" -, precedes = "aby-nccr-90" -, cites = "aes-solac-85, b-gstds-84, b-dscns-84, c-clps-85, cg-vippg-85, cy-sp-83, cr-tgsps-85, k-ss-73, l-egimv-85, o-uocd-86, ps-cgi-85, r-cscsl-87, rit-cscsl-86," -, update = "99.07 devillers, 98.03 bibrelex, 93.09 milone+mitchell" +, author = "Panagiotis D. Alevizos and Jean-Daniel Boissonnat and Mariette Yvinec" +, title = "An optimal {$O(n \log n)$} algorithm for contour reconstruction from rays" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "162--170" +, precedes = "aby-nccr-90" +, cites = "aes-solac-85, b-gstds-84, b-dscns-84, c-clps-85, cg-vippg-85, cy-sp-83, cr-tgsps-85, k-ss-73, l-egimv-85, o-uocd-86, ps-cgi-85, r-cscsl-87, rit-cscsl-86," +, update = "99.07 devillers, 98.03 bibrelex, 93.09 milone+mitchell" } @article{aby-nccr-90 -, author = "Panagiotis D. Alevizos and Jean-Daniel Boissonnat and Mariette Yvinec" -, title = "Non-convex contour reconstruction" -, journal = "J. Symbolic Comput." -, volume = 10 -, year = 1990 -, pages = "225--252" -, keywords = "reconstruction, shape, polygon, probing" -, succeeds = "aby-ooacr-87" -, update = "99.07 devillers, 95.05 korneenko, 93.09 milone+mitchell" +, author = "Panagiotis D. Alevizos and Jean-Daniel Boissonnat and Mariette Yvinec" +, title = "Non-convex contour reconstruction" +, journal = "J. Symbolic Comput." +, volume = 10 +, year = 1990 +, pages = "225--252" +, keywords = "reconstruction, shape, polygon, probing" +, succeeds = "aby-ooacr-87" +, update = "99.07 devillers, 95.05 korneenko, 93.09 milone+mitchell" } @inproceedings{aby-pncp-89 -, author = "Panagiotis D. Alevizos and Jean-Daniel Boissonnat and Mariette Yvinec" -, title = "Probing non-convex polygons" -, booktitle = "Proc. 6th IEEE Internat. Conf. Robot. Autom." -, year = 1989 -, pages = "202--208" -, update = "99.07 devillers" +, author = "Panagiotis D. Alevizos and Jean-Daniel Boissonnat and Mariette Yvinec" +, title = "Probing non-convex polygons" +, booktitle = "Proc. 6th IEEE Internat. Conf. Robot. Autom." +, year = 1989 +, pages = "202--208" +, update = "99.07 devillers" } @incollection{abc-gdtud-97 -, author = "J. R. Alexander and J. Beck and W. W. L. Chen" -, title = "Geometric discrepancy theory and uniform distribution" -, chapter = 10 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "185--208" -, update = "97.11 orourke" +, author = "J. R. Alexander and J. Beck and W. W. L. Chen" +, title = "Geometric discrepancy theory and uniform distribution" +, chapter = 10 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "185--208" +, update = "97.11 orourke" } @phdthesis{a-copmh-89 -, author = "R. Alexander" -, title = "Construction of Optimal-Path Maps for Homogeneous-Cost-Region Path-Planning Problems" -, type = "Ph.{D}. Thesis" -, school = "Computer Science, U.S. Naval Postgraduate School" -, address = "Monterey, CA" -, year = 1989 -, keywords = "doctoral thesis" +, author = "R. Alexander" +, title = "Construction of Optimal-Path Maps for Homogeneous-Cost-Region Path-Planning Problems" +, type = "Ph.{D}. Thesis" +, school = "Computer Science, U.S. Naval Postgraduate School" +, address = "Monterey, CA" +, year = 1989 +, keywords = "doctoral thesis" } @article{a-gmtud-90 -, author = "R. Alexander" -, title = "Geometric methods in the theory of uniform distribution" -, journal = "Combinatorica" -, volume = 10 -, number = 2 -, year = 1990 -, pages = "115--136" -, update = "93.09 matousek" +, author = "R. Alexander" +, title = "Geometric methods in the theory of uniform distribution" +, journal = "Combinatorica" +, volume = 10 +, number = 2 +, year = 1990 +, pages = "115--136" +, update = "93.09 matousek" } @article{a-lmtmc-85 -, author = "R. Alexander" -, title = "Lipschitzian mappings and total mean curvature of polyhedral surfaces I" -, journal = "Trans. Amer. Math. Soc." -, volume = 288 -, number = 2 -, year = 1985 -, pages = "661--678" -, update = "98.07 bibrelex" +, author = "R. Alexander" +, title = "Lipschitzian mappings and total mean curvature of polyhedral surfaces I" +, journal = "Trans. Amer. Math. Soc." +, volume = 288 +, number = 2 +, year = 1985 +, pages = "661--678" +, update = "98.07 bibrelex" } @article{a-pnmsi-91 -, author = "R. Alexander" -, title = "Principles of a new method in the study of irregularities of distribution" -, journal = "Invent. Math." -, volume = 103 -, year = 1991 -, pages = "279--296" -, update = "94.05 matousek" +, author = "R. Alexander" +, title = "Principles of a new method in the study of irregularities of distribution" +, journal = "Invent. Math." +, volume = 103 +, year = 1991 +, pages = "279--296" +, update = "94.05 matousek" } @techreport{ar-gpppo-89 -, author = "R. Alexander and N. Rowe" -, title = "Geometrical Principles for Path Planning by Optimal-Path-Map Construction for Linear and Polygonal Homogeneous-Region Terrain" -, institution = "Computer Science, U.S. Naval Postgraduate School" -, address = "Monterey, CA" -, year = 1989 +, author = "R. Alexander and N. Rowe" +, title = "Geometrical Principles for Path Planning by Optimal-Path-Map Construction for Linear and Polygonal Homogeneous-Region Terrain" +, institution = "Computer Science, U.S. Naval Postgraduate School" +, address = "Monterey, CA" +, year = 1989 } @inproceedings{ar-ppopm-90 -, author = "R. Alexander and N. Rowe" -, title = "Path Planning by Optimal-Path-Map Construction for Homogeneous-Cost Two-Dimensional Regions" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1990 +, author = "R. Alexander and N. Rowe" +, title = "Path Planning by Optimal-Path-Map Construction for Homogeneous-Cost Two-Dimensional Regions" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1990 } @article{aw-aps-81 -, author = "G. L. Alexanderson and J. E. Wetzel" -, title = "Arrangements of planes in space" -, journal = "Discrete Math." -, volume = 34 -, year = 1981 -, pages = "219--240" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "G. L. Alexanderson and J. E. Wetzel" +, title = "Arrangements of planes in space" +, journal = "Discrete Math." +, volume = 34 +, year = 1981 +, pages = "219--240" +, update = "98.07 agarwal, 98.03 agarwal" } @article{aw-dpo-77 -, author = "G. L. Alexanderson and J. E. Wetzel" -, title = "Dissections of a plane oval" -, journal = "Amer. Math. Monthly" -, volume = 84 -, year = 1977 -, pages = "442--449" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "G. L. Alexanderson and J. E. Wetzel" +, title = "Dissections of a plane oval" +, journal = "Amer. Math. Monthly" +, volume = 84 +, year = 1977 +, pages = "442--449" +, update = "98.07 agarwal, 98.03 agarwal" } @article{aw-sps-78 -, author = "G. L. Alexanderson and J. E. Wetzel" -, title = "Simple partitions of space" -, journal = "Math. Mag." -, volume = 51 -, year = 1978 -, pages = "220--225" -, update = "98.07 agarwal, 98.03 mitchell" +, author = "G. L. Alexanderson and J. E. Wetzel" +, title = "Simple partitions of space" +, journal = "Math. Mag." +, volume = 51 +, year = 1978 +, pages = "220--225" +, update = "98.07 agarwal, 98.03 mitchell" } @article{at-eserh-87 -, author = "N. A. Alexandridis and P. D. Tsanakas" -, title = "An encoding scheme for the efficient representation of hierarchical image structures" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "199--206" +, author = "N. A. Alexandridis and P. D. Tsanakas" +, title = "An encoding scheme for the efficient representation of hierarchical image structures" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "199--206" } @book{ah-t1-35 -, author = "P. Alexandroff and H. Hopf" -, title = "Topologie {I}" -, series = "Grundlehren der math" -, volume = 45 -, publisher = "Julius Springer" -, address = "Berlin, Germany" -, year = 1935 +, author = "P. Alexandroff and H. Hopf" +, title = "Topologie {I}" +, series = "Grundlehren der math" +, volume = 45 +, publisher = "Julius Springer" +, address = "Berlin, Germany" +, year = 1935 } @book{a-digdk-55 -, author = "A. D. Alexandrov" -, title = "Die innere Geometrie der konvexen Fl{\"a}chen" -, publisher = "Akademie-Verlag" -, address = "Berlin, Germany" -, year = 1955 -, update = "97.11 bibrelex" +, author = "A. D. Alexandrov" +, title = "Die innere Geometrie der konvexen Fl{\"a}chen" +, publisher = "Akademie-Verlag" +, address = "Berlin, Germany" +, year = 1955 +, update = "97.11 bibrelex" } @book{a-kp-58 -, author = "A. D. Alexandrov" -, title = "Konvexe Polyeder" -, publisher = "Akademie-Verlag" -, address = "Berlin, West Germany" -, year = 1958 +, author = "A. D. Alexandrov" +, title = "Konvexe Polyeder" +, publisher = "Akademie-Verlag" +, address = "Berlin, West Germany" +, year = 1958 } @techreport{abfhz-csbp-90 -, author = "M. Alfaro and J. Brock and J. Foisy and N. Hodges and J. Zimba" -, title = "Compound soap bubbles in the plane" -, type = "SMALL {Geometry} {Group} {Report}" -, institution = "Williams College" -, year = 1990 -, update = "97.11 bibrelex" +, author = "M. Alfaro and J. Brock and J. Foisy and N. Hodges and J. Zimba" +, title = "Compound soap bubbles in the plane" +, type = "SMALL {Geometry} {Group} {Report}" +, institution = "Williams College" +, year = 1990 +, update = "97.11 bibrelex" } @article{achlkkmh-scmfe-90 -, author = "M. Alfaro and M. Conger and K. Hodges and A. Levy and R. Kochar and L. Kuklinski and Z. Mahmood and K. von Haam" -, title = "Segments can meet in fours in energy-minimizing networks" -, journal = "J. Und. Math." -, volume = "??" -, year = 1990 -, pages = "9--20" -, update = "97.11 bibrelex" +, author = "M. Alfaro and M. Conger and K. Hodges and A. Levy and R. Kochar and L. Kuklinski and Z. Mahmood and K. von Haam" +, title = "Segments can meet in fours in energy-minimizing networks" +, journal = "J. Und. Math." +, volume = "??" +, year = 1990 +, pages = "9--20" +, update = "97.11 bibrelex" } @article{achlkkmh-sspmn-91 -, author = "M. Alfaro and M. Conger and K. Hodges and A. Levy and R. Kochar and L. Kuklinski and Z. Mahmood and K. von Haam" -, title = "The structure of singularities in {$\Phi$}-minimizing networks in {$R^{2}$}" -, journal = "Pacific J. Math." -, volume = "??" -, year = 1991 -, note = "To appear" -, update = "97.11 bibrelex" +, author = "M. Alfaro and M. Conger and K. Hodges and A. Levy and R. Kochar and L. Kuklinski and Z. Mahmood and K. von Haam" +, title = "The structure of singularities in {$\Phi$}-minimizing networks in {$R^{2}$}" +, journal = "Pacific J. Math." +, volume = "??" +, year = 1991 +, note = "To appear" +, update = "97.11 bibrelex" } @incollection{a-csmpp-87 -, author = "P. Alfeld" -, title = "A case study of multivariate piecewise polynomials" -, editor = "G. Farin" -, booktitle = "Geometric Modeling: Algorithms and New Trends" -, publisher = "SIAM Publications" -, year = 1987 -, pages = "149--160" -, update = "98.07 bibrelex" +, author = "P. Alfeld" +, title = "A case study of multivariate piecewise polynomials" +, editor = "G. Farin" +, booktitle = "Geometric Modeling: Algorithms and New Trends" +, publisher = "SIAM Publications" +, year = 1987 +, pages = "149--160" +, update = "98.07 bibrelex" } @article{a-dcitd-84 -, author = "P. Alfeld" -, title = "A discrete {$C^{1}$} interpolant for tetrahedral data" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, year = 1984 -, pages = "5--16" +, author = "P. Alfeld" +, title = "A discrete {$C^{1}$} interpolant for tetrahedral data" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, year = 1984 +, pages = "5--16" } @article{ab-tcit-84 -, author = "P. Alfeld and R. E. Barnhill" -, title = "A transfinite {$C^{2}$} interpolant over triangles" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "17--39" +, author = "P. Alfeld and R. E. Barnhill" +, title = "A transfinite {$C^{2}$} interpolant over triangles" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "17--39" } @article{as-sru3d-96 -, author = "M.-E. Algorri and F. Schmitt" -, title = "Surface Reconstruction from Unstructured 3D Data" -, journal = "Comput. Graph. Forum" -, volume = 15 -, number = 1 -, month = mar -, year = 1996 -, pages = "47--60" -, update = "96.05 held" +, author = "M.-E. Algorri and F. Schmitt" +, title = "Surface Reconstruction from Unstructured 3D Data" +, journal = "Comput. Graph. Forum" +, volume = 15 +, number = 1 +, month = mar +, year = 1996 +, pages = "47--60" +, update = "96.05 held" } @inproceedings{aknw-pmccp-93 -, author = "F. Alizadeh and R. M. Karp and L. A. Newberg and D. K. Weisser" -, title = "Physical Mapping of Chromosomes: {A} Combinatorial Problem in Molecular Biology" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "371--381" -, update = "93.05 smid" +, author = "F. Alizadeh and R. M. Karp and L. A. Newberg and D. K. Weisser" +, title = "Physical Mapping of Chromosomes: {A} Combinatorial Problem in Molecular Biology" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "371--381" +, update = "93.05 smid" } @article{ad-dessl-95 -, author = "S. Allen and D. Dutta" -, title = "Determination and evaluation of support structures in layered manufacturing" -, journal = "Journal of Design and Manufacturing" -, volume = 5 -, year = 1995 -, pages = "153--162" -, update = "97.11 smid" +, author = "S. Allen and D. Dutta" +, title = "Determination and evaluation of support structures in layered manufacturing" +, journal = "Journal of Design and Manufacturing" +, volume = 5 +, year = 1995 +, pages = "153--162" +, update = "97.11 smid" } @inproceedings{ad-wtclm-97 -, author = "S. Allen and D. Dutta" -, title = "Wall thickness control in layered manufacturing" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "240--247" -, cites = "ad-dessl-95, kd-asplm-96, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "S. Allen and D. Dutta" +, title = "Wall thickness control in layered manufacturing" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "240--247" +, cites = "ad-dessl-95, kd-asplm-96, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{ad-wtclm-98 -, author = "Seth Allen and Debasish Dutta" -, title = "Wall thickness control in layered manufacturing for surfaces with closed slices" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "223--238" -, succeeds = "ad-wtclm-97" -, update = "98.11 devillers" +, author = "Seth Allen and Debasish Dutta" +, title = "Wall thickness control in layered manufacturing for surfaces with closed slices" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "223--238" +, succeeds = "ad-wtclm-97" +, update = "98.11 devillers" } @article{a-ssag-46 -, author = "C. B. Allendoerfer" -, title = "``{Slope}'' in solid analytic geometry" -, journal = "Amer. Math. Monthly" -, volume = 53 -, year = 1946 -, pages = "241--247" +, author = "C. B. Allendoerfer" +, title = "``{Slope}'' in solid analytic geometry" +, journal = "Amer. Math. Monthly" +, volume = 53 +, year = 1946 +, pages = "241--247" } @article{ag-aplai-87 -, author = "E. Allgower and S. Gnutzmann" -, title = "An algorithm for piecewise linear approximation of an implicitly defined two-dimensional surfaces" -, journal = "SIAM J. Numer. Anal." -, volume = 24 -, year = 1987 -, pages = "452--469" -, keywords = "surface-approximation" -, update = "95.05 agarwal" +, author = "E. Allgower and S. Gnutzmann" +, title = "An algorithm for piecewise linear approximation of an implicitly defined two-dimensional surfaces" +, journal = "SIAM J. Numer. Anal." +, volume = 24 +, year = 1987 +, pages = "452--469" +, keywords = "surface-approximation" +, update = "95.05 agarwal" } @article{as-cvp-86 -, author = "F. L. Allgower and P. H. Schmidt" -, title = "Computing volumes of polyhedra" -, journal = "Math. Comput." -, volume = 46 -, number = 173 -, year = 1986 -, pages = "171--174" -, keywords = "volume" -, update = "95.05 korneenko" +, author = "F. L. Allgower and P. H. Schmidt" +, title = "Computing volumes of polyhedra" +, journal = "Math. Comput." +, volume = 46 +, number = 173 +, year = 1986 +, pages = "171--174" +, keywords = "volume" +, update = "95.05 korneenko" } @inproceedings{ad-pcltt-01 -, author = "Pierre Alliez and Mathieu Desbrun" -, title = "Progressive Compression for Lossless Transmission of Triangles Meshes" -, booktitle = "Siggraph 2001" -, year = 2001 -, update = "01.07 devillers" +, author = "Pierre Alliez and Mathieu Desbrun" +, title = "Progressive Compression for Lossless Transmission of Triangles Meshes" +, booktitle = "Siggraph 2001" +, year = 2001 +, update = "01.07 devillers" } @inproceedings{ads-rdppw-98 -, author = "Pierre Alliez and Olivier Devillers and Jack Snoeyink" -, title = "Removing Degeneracies by Perturbing the Problem or the World" -, booktitle = "Proc. 10th Canad. Conf. Comput. Geom." -, year = 1998 -, url = "http://cgm.cs.mcgill.ca/cccg98/proceedings/cccg98-alliez-removing.ps.gz" -, precedes = "ads-rdppw-00" -, cites = "ecs-ephgd-97, em-sstcd-90, kmm-ricav-93a, ms-getcc-88, y-gctsp-90, ZZZ" -, update = "00.03 devillers, 99.11 bibrelex, 99.07 devillers, 98.11 devillers" -, annote = "extended abstract" +, author = "Pierre Alliez and Olivier Devillers and Jack Snoeyink" +, title = "Removing Degeneracies by Perturbing the Problem or the World" +, booktitle = "Proc. 10th Canad. Conf. Comput. Geom." +, year = 1998 +, url = "http://cgm.cs.mcgill.ca/cccg98/proceedings/cccg98-alliez-removing.ps.gz" +, precedes = "ads-rdppw-00" +, cites = "ecs-ephgd-97, em-sstcd-90, kmm-ricav-93a, ms-getcc-88, y-gctsp-90, ZZZ" +, update = "00.03 devillers, 99.11 bibrelex, 99.07 devillers, 98.11 devillers" +, annote = "extended abstract" } @article{ads-rdppw-00 -, author = "Pierre Alliez and Olivier Devillers and Jack Snoeyink" -, title = "Removing Degeneracies by Perturbing the Problem or the World" -, journal = "Reliable Computing" -, volume = 6 -, year = 2000 -, pages = "61--79" -, note = "Special Issue on Computational Geometry, to appear" -, url = "https://hal.inria.fr/inria-00338566" -, succeeds = "ads-rdppw-98" -, update = "00.03 devillers" -, abstract = "We describe two problem-specific approaches to remove geometric degeneracies that we call {\it perturbing the problem} and {\it perturbing the world}. Using as our primary examples 2-d and 3-d Delaunay triangulation with Euclidean and polygonal metrics, we show that these approaches lead to relatively simple and efficient perturbations of the points that do not depend on a fixed ordering or index. Thus, they produce canonical output, which is important for producing test suites and verifiers for randomized or dynamic geometric algorithms." +, author = "Pierre Alliez and Olivier Devillers and Jack Snoeyink" +, title = "Removing Degeneracies by Perturbing the Problem or the World" +, journal = "Reliable Computing" +, volume = 6 +, year = 2000 +, pages = "61--79" +, note = "Special Issue on Computational Geometry, to appear" +, url = "https://inria.hal.science/inria-00338566" +, succeeds = "ads-rdppw-98" +, update = "00.03 devillers" +, abstract = "We describe two problem-specific approaches to remove geometric degeneracies that we call {\it perturbing the problem} and {\it perturbing the world}. Using as our primary examples 2-d and 3-d Delaunay triangulation with Euclidean and polygonal metrics, we show that these approaches lead to relatively simple and efficient perturbations of the points that do not depend on a fixed ordering or index. Thus, they produce canonical output, which is important for producing test suites and verifiers for randomized or dynamic geometric algorithms." } @article{an-cchsp-87 -, author = "D. C. S. Allison and M. T. Noga" -, title = "Computing the convex hull of a set of points" -, journal = "Computer Physics Commun." -, volume = 43 -, number = 3 -, year = 1987 -, pages = "381--386" -, keywords = "convex hull, points" -, update = "95.05 korneenko" +, author = "D. C. S. Allison and M. T. Noga" +, title = "Computing the convex hull of a set of points" +, journal = "Computer Physics Commun." +, volume = 43 +, number = 3 +, year = 1987 +, pages = "381--386" +, keywords = "convex hull, points" +, update = "95.05 korneenko" } @article{an-sptch-84 -, author = "D. C. S. Allison and M. T. Noga" -, title = "Some performance tests of convex hull algorithms" -, journal = "BIT" -, volume = 24 -, year = 1984 -, pages = "2--13" +, author = "D. C. S. Allison and M. T. Noga" +, title = "Some performance tests of convex hull algorithms" +, journal = "BIT" +, volume = 24 +, year = 1984 +, pages = "2--13" } @article{an-ltsp-84 -, author = "D. C. S. Allison and M. T. Noga" -, title = "The {$L_{1}$} {Traveling} {Salesman} {Problem}" -, journal = "Inform. Process. Lett." -, volume = 18 -, number = 4 -, year = 1984 -, pages = "195--199" -, update = "95.05 korneenko" +, author = "D. C. S. Allison and M. T. Noga" +, title = "The {$L_{1}$} {Traveling} {Salesman} {Problem}" +, journal = "Inform. Process. Lett." +, volume = 18 +, number = 4 +, year = 1984 +, pages = "195--199" +, update = "95.05 korneenko" } @book{ag-hpc-90 -, author = "G. S. Almasi and A. Gottlieb" -, title = "Highly parallel computing" -, publisher = "Benjamin/Cummings" -, address = "Redwood City, California" -, year = 1990 -, update = "98.07 bibrelex" +, author = "G. S. Almasi and A. Gottlieb" +, title = "Highly parallel computing" +, publisher = "Benjamin/Cummings" +, address = "Redwood City, California" +, year = 1990 +, update = "98.07 bibrelex" } @article{apk-evaag-89 -, author = "H. M. Alnuweiri and V. K. {Prasanna Kumar}" -, title = "An efficient {VLSI} architecture with applications to geometric problems" -, journal = "Parallel Comput." -, volume = 12 -, number = 1 -, year = 1989 -, pages = "71--94" -, keywords = "parallel computations, convex hull, intersection, diameter, proximity" -, update = "95.05 korneenko" +, author = "H. M. Alnuweiri and V. K. {Prasanna Kumar}" +, title = "An efficient {VLSI} architecture with applications to geometric problems" +, journal = "Parallel Comput." +, volume = 12 +, number = 1 +, year = 1989 +, pages = "71--94" +, keywords = "parallel computations, convex hull, intersection, diameter, proximity" +, update = "95.05 korneenko" } @inproceedings{apk-ogafs-88 -, author = "H. M. Alnuweiri and V. K. {Prasanna Kumar}" -, title = "Optimal geometric algorithms on fixed-size linear arrays and scan-line ..." -, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." -, year = 1988 -, pages = "931--936" -, keywords = "parallel computations, intersection, distance" -, update = "95.05 korneenko" +, author = "H. M. Alnuweiri and V. K. {Prasanna Kumar}" +, title = "Optimal geometric algorithms on fixed-size linear arrays and scan-line ..." +, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." +, year = 1988 +, pages = "931--936" +, keywords = "parallel computations, intersection, distance" +, update = "95.05 korneenko" } @article{awb-av-88 -, author = "J. Aloimonos and I. Weiss and A. Bandyopadhyay" -, title = "Active vision" -, journal = "Internat. J. Comput. Vision" -, volume = 2 -, year = 1988 -, pages = "333--356" -, update = "98.07 bibrelex" +, author = "J. Aloimonos and I. Weiss and A. Bandyopadhyay" +, title = "Active vision" +, journal = "Internat. J. Comput. Vision" +, volume = 2 +, year = 1988 +, pages = "333--356" +, update = "98.07 bibrelex" } @article{a-egesr-86 -, author = "N. Alon" -, title = "Eigenvalues, geometric expanders, sorting in rounds and {Ramsey} theory" -, journal = "Combinatorica" -, volume = 6 -, year = 1986 -, pages = "207--219" -, update = "98.03 bibrelex" +, author = "N. Alon" +, title = "Eigenvalues, geometric expanders, sorting in rounds and {Ramsey} theory" +, journal = "Combinatorica" +, volume = 6 +, year = 1986 +, pages = "207--219" +, update = "98.03 bibrelex" } @inproceedings{a-esrsl-85 -, author = "N. Alon" -, title = "Expanders, sorting in rounds and superconcentrators of limited depth" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "98--102" -, update = "98.03 bibrelex" +, author = "N. Alon" +, title = "Expanders, sorting in rounds and superconcentrators of limited depth" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "98--102" +, update = "98.03 bibrelex" } @incollection{a-tha-95 -, author = "N. Alon" -, title = "Tools from Higher Algebra" -, editor = "R. L. Graham and M. Gr{\" o}tschel and L. Lov{\' a}sz" -, booktitle = "Handbook of Combinatorics" -, publisher = "Elsevier" -, address = "Amsterdam" -, year = 1995 -, pages = "1749--1783" -, update = "98.03 agarwal" +, author = "N. Alon" +, title = "Tools from Higher Algebra" +, editor = "R. L. Graham and M. Gr{\" o}tschel and L. Lov{\' a}sz" +, booktitle = "Handbook of Combinatorics" +, publisher = "Elsevier" +, address = "Amsterdam" +, year = 1995 +, pages = "1749--1783" +, update = "98.03 agarwal" } @inproceedings{aa-csstm-92 -, author = "N. Alon and Y. Azar" -, title = "Comparison-sorting and selecting in totally monotone matrices" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "403--408" +, author = "N. Alon and Y. Azar" +, title = "Comparison-sorting and selecting in totally monotone matrices" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "403--408" } @article{aa-fam-89 -, author = "N. Alon and Y. Azar" -, title = "Finding the approximate maximum" -, journal = "SIAM J. Comput." -, volume = 18 -, number = 2 -, year = 1989 -, pages = "258--267" -, update = "95.05 korneenko" +, author = "N. Alon and Y. Azar" +, title = "Finding the approximate maximum" +, journal = "SIAM J. Comput." +, volume = 18 +, number = 2 +, year = 1989 +, pages = "258--267" +, update = "95.05 korneenko" } @inproceedings{aa-olste-92 -, author = "N. Alon and Y. Azar" -, title = "On-line {Steiner} trees in the {Euclidean} plane" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "337--343" -, keywords = "Steiner tree, points, on-line algorithms, competitive algorithms" -, precedes = "aa-olste-93" -, cites = "bm-tspkd-, bs-athet-80, cv-crcns-91, iw-dstp-91, gj-cigtn-79, m-gpinn-87, n-ps-82, rsl-ashts-77, st-aelup-85, w-spns-87, y-pctum-77, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 95.05 korneenko" +, author = "N. Alon and Y. Azar" +, title = "On-line {Steiner} trees in the {Euclidean} plane" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "337--343" +, keywords = "Steiner tree, points, on-line algorithms, competitive algorithms" +, precedes = "aa-olste-93" +, cites = "bm-tspkd-, bs-athet-80, cv-crcns-91, iw-dstp-91, gj-cigtn-79, m-gpinn-87, n-ps-82, rsl-ashts-77, st-aelup-85, w-spns-87, y-pctum-77, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 95.05 korneenko" } @article{aa-olste-93 -, author = "N. Alon and Y. Azar" -, title = "On-line {Steiner} trees in the {Euclidean} plane" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "113--121" -, keywords = "Steiner tree, points, on-line algorithms, competitive algorithms" -, succeeds = "aa-olste-92" -, cites = "bm-tspkd-, bs-athet-80, cv-crcns-91, iw-dstp-91, gj-cigtn-79, m-gpinn-87, n-ps-82, rsl-ashts-77, st-aelup-85, w-spns-87, y-pctum-77, ZZZ" -, update = "98.03 mitchell" +, author = "N. Alon and Y. Azar" +, title = "On-line {Steiner} trees in the {Euclidean} plane" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "113--121" +, keywords = "Steiner tree, points, on-line algorithms, competitive algorithms" +, succeeds = "aa-olste-92" +, cites = "bm-tspkd-, bs-athet-80, cv-crcns-91, iw-dstp-91, gj-cigtn-79, m-gpinn-87, n-ps-82, rsl-ashts-77, st-aelup-85, w-spns-87, y-pctum-77, ZZZ" +, update = "98.03 mitchell" } @inproceedings{aa-pcaap-88 -, author = "N. Alon and Y. Azar" -, title = "Parallel Comparison Algorithms for Approximation Problems" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "194--203" -, update = "98.03 bibrelex" +, author = "N. Alon and Y. Azar" +, title = "Parallel Comparison Algorithms for Approximation Problems" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "194--203" +, update = "98.03 bibrelex" } @article{abfk-pswen-92 -, author = "N. Alon and I. B{\'a}r{\'a}ny and Z. F{\"u}redi and D. Kleitman" -, title = "Point selections and weak $\varepsilon$-nets for convex hulls" -, journal = "Combin., Probab. Comput." -, volume = 1 -, number = 3 -, year = 1992 -, pages = "189--200" -, update = "94.05 matousek" +, author = "N. Alon and I. B{\'a}r{\'a}ny and Z. F{\"u}redi and D. Kleitman" +, title = "Point selections and weak $\varepsilon$-nets for convex hulls" +, journal = "Combin., Probab. Comput." +, volume = 1 +, number = 3 +, year = 1992 +, pages = "189--200" +, update = "94.05 matousek" } @techreport{abfk-pswen-91 -, author = "N. Alon and I. B{\'a}r{\'a}ny and Z. F{\"u}redi and D. J. Kleitman" -, title = "Point selections and weak $\varepsilon$-nets for convex hulls" -, type = "Manuscript" -, institution = "??" -, year = 1991 -, update = "98.03 bibrelex" +, author = "N. Alon and I. B{\'a}r{\'a}ny and Z. F{\"u}redi and D. J. Kleitman" +, title = "Point selections and weak $\varepsilon$-nets for convex hulls" +, type = "Manuscript" +, institution = "??" +, year = 1991 +, update = "98.03 bibrelex" } @article{ae-degg-89 -, author = "N. Alon and P. Erd{\H o}s" -, title = "Disjoint edges in geometric graphs" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "287--290" +, author = "N. Alon and P. Erd{\H o}s" +, title = "Disjoint edges in geometric graphs" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "287--290" } @article{afk-sppsb-85 -, author = "N. Alon and Z. F{\"u}redi and M. Katchalski" -, title = "Separating pairs of points by standard boxes" -, journal = "European J. Combin." -, volume = 6 -, number = 3 -, year = 1985 -, pages = "205--210" -, update = "95.05 korneenko" +, author = "N. Alon and Z. F{\"u}redi and M. Katchalski" +, title = "Separating pairs of points by standard boxes" +, journal = "European J. Combin." +, volume = 6 +, number = 3 +, year = 1985 +, pages = "205--210" +, update = "95.05 korneenko" } @article{aghp-scakw-92 -, author = "N. Alon and O. Goldreich and J. H{\aa}stad and R. Peralta" -, title = "Simple construction of almost $k$-wise independent random variables" -, journal = "Random Structures and Algorithms" -, volume = 3 -, year = 1992 -, pages = "289--304" -, update = "95.01 matousek" +, author = "N. Alon and O. Goldreich and J. H{\aa}stad and R. Peralta" +, title = "Simple construction of almost $k$-wise independent random variables" +, journal = "Random Structures and Algorithms" +, volume = 3 +, year = 1992 +, pages = "289--304" +, update = "95.01 matousek" } @article{ag-nssfs-86 -, author = "N. Alon and E. Gy{\H o}ri" -, title = "The number of small semispaces of a finite set of points in the plane" -, journal = "J. Combin. Theory Ser. A" -, volume = 41 -, year = 1986 -, pages = "154--157" -, update = "95.09 agarwal, 94.09 bernal" +, author = "N. Alon and E. Gy{\H o}ri" +, title = "The number of small semispaces of a finite set of points in the plane" +, journal = "J. Combin. Theory Ser. A" +, volume = 41 +, year = 1986 +, pages = "154--157" +, update = "95.09 agarwal, 94.09 bernal" } @inproceedings{ahw-pgers-87 -, author = "N. Alon and D. Haussler and Emo Welzl" -, title = "Partitioning and geometric embedding of range spaces of finite {Vapnik}-{Chervonenkis} dimension" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "331--340" -, cites = "a-esrsl-85, a-egesr-86, f-lbcso-81, h-ct-67, hw-ensrq-87, l-cpe-79, s-dfs-72, vc-ucrfe-71, w-pr-82, yy-gaddg-85, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "N. Alon and D. Haussler and Emo Welzl" +, title = "Partitioning and geometric embedding of range spaces of finite {Vapnik}-{Chervonenkis} dimension" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "331--340" +, cites = "a-esrsl-85, a-egesr-86, f-lbcso-81, h-ct-67, hw-ensrq-87, l-cpe-79, s-dfs-72, vc-ucrfe-71, w-pr-82, yy-gaddg-85, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{ak-spubt-85 -, author = "N. Alon and G. Kalai" -, title = "A simple proof of the upper bound theorem" -, journal = "European J. Combin." -, volume = 6 -, year = 1985 -, pages = "211--214" -, update = "97.11 bibrelex" +, author = "N. Alon and G. Kalai" +, title = "A simple proof of the upper bound theorem" +, journal = "European J. Combin." +, volume = 6 +, year = 1985 +, pages = "211--214" +, update = "97.11 bibrelex" } @article{ak-bpn-95 -, author = "N. Alon and G. Kalai" -, title = "Bounding the piercing number" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "245--256" -, update = "95.09 wenger" +, author = "N. Alon and G. Kalai" +, title = "Bounding the piercing number" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "245--256" +, update = "95.09 wenger" } @article{akp-cddsl-89 -, author = "N. Alon and M. Katchalski and W. R. Pulleyblank" -, title = "Cutting disjoint disks by straight lines" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "239--243" +, author = "N. Alon and M. Katchalski and W. R. Pulleyblank" +, title = "Cutting disjoint disks by straight lines" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "239--243" } @article{akp-mscpr-89 -, author = "N. Alon and M. Katchalski and W. R. Pulleyblank" -, title = "The maximum size of a convex polygon in a restricted set of points in the plane" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "245--251" +, author = "N. Alon and M. Katchalski and W. R. Pulleyblank" +, title = "The maximum size of a convex polygon in a restricted set of points in the plane" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "245--251" } @article{ak-pcs-92a -, author = "N. Alon and D. Kleitman" -, title = "Piercing convex sets and the {Hadwiger}--{Debrunner} $(p,q)$-problem" -, journal = "Adv. Math." -, volume = 96 -, number = 1 -, year = 1992 -, pages = "103--112" -, succeeds = "ak-pcs-92i" -, update = "95.09 wenger" +, author = "N. Alon and D. Kleitman" +, title = "Piercing convex sets and the {Hadwiger}--{Debrunner} $(p,q)$-problem" +, journal = "Adv. Math." +, volume = 96 +, number = 1 +, year = 1992 +, pages = "103--112" +, succeeds = "ak-pcs-92i" +, update = "95.09 wenger" } @article{ak-csspr-86 -, author = "N. Alon and D. J. Kleitman" -, title = "Covering a square by small perimeter rectangles" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "1--7" +, author = "N. Alon and D. J. Kleitman" +, title = "Covering a square by small perimeter rectangles" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "1--7" } @inproceedings{ak-pcs-92i -, author = "N. Alon and D. J. Kleitman" -, title = "Piercing convex sets" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "157--160" -, cites = "abfk-pswen-92, ak-spubt-85, b-gct-82, dgk-htir-63, d-cp-72, e-ubtfc-85, e-hrctt-93, f-ipcfc-74, g-iss-59, g-lcg-74, hd-uevzh-57, hdk-cgp-64, h-umkkm-23, kl-pgr-79, k-ipcs-84, s-tlip-86, t-grt-66, w-uekgf-65, w-dcnfc-75, w-uhgs-85, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "N. Alon and D. J. Kleitman" +, title = "Piercing convex sets" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "157--160" +, cites = "abfk-pswen-92, ak-spubt-85, b-gct-82, dgk-htir-63, d-cp-72, e-ubtfc-85, e-hrctt-93, f-ipcfc-74, g-iss-59, g-lcg-74, hd-uevzh-57, hdk-cgp-64, h-umkkm-23, kl-pgr-79, k-ipcs-84, s-tlip-86, t-grt-66, w-uekgf-65, w-dcnfc-75, w-uhgs-85, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex" } @inproceedings{am-plpfd-90 -, author = "N. Alon and N. Megiddo" -, title = "Parallel linear programming in fixed dimension almost surely in constant time" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "574--582" +, author = "N. Alon and N. Megiddo" +, title = "Parallel linear programming in fixed dimension almost surely in constant time" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "574--582" } @article{ap-ieggs-86 -, author = "N. Alon and M. A. Perles" -, title = "On the intersection of edges of a geometric graph by straight lines" -, journal = "Discrete Math." -, volume = 60 -, year = 1986 -, pages = "75--90" -, keywords = "intersection, geometric graphs" -, update = "95.05 korneenko" +, author = "N. Alon and M. A. Perles" +, title = "On the intersection of edges of a geometric graph by straight lines" +, journal = "Discrete Math." +, volume = 60 +, year = 1986 +, pages = "75--90" +, keywords = "intersection, geometric graphs" +, update = "95.05 korneenko" } @inproceedings{ars-lnccp-93 -, author = "N. Alon and S. Rajagopalan and Subhash Suri" -, title = "Long non-crossing configurations in the plane" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "257--263" -, cites = "aa-dsgh-89, gj-cigtn-79, hs-asdch-92, kln-ncstl-91, l-pstp-83, llrs-tsp-85, pss-ubnpk-89, p-etspi-77, r-cscsl-87," -, update = "98.03 bibrelex+mitchell, 93.09 jones" +, author = "N. Alon and S. Rajagopalan and Subhash Suri" +, title = "Long non-crossing configurations in the plane" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "257--263" +, cites = "aa-dsgh-89, gj-cigtn-79, hs-asdch-92, kln-ncstl-91, l-pstp-83, llrs-tsp-85, pss-ubnpk-89, p-etspi-77, r-cscsl-87," +, update = "98.03 bibrelex+mitchell, 93.09 jones" } @techreport{as-opaol-87 -, author = "N. Alon and B. Schieber" -, title = "Optimal preprocessing for answering on-line product queries" -, number = "TR 71/87" -, institution = "The Moise and Frida Eskenasy Institute of Computer Science, Tel Aviv University" -, year = 1987 -, update = "98.03 bibrelex" +, author = "N. Alon and B. Schieber" +, title = "Optimal preprocessing for answering on-line product queries" +, number = "TR 71/87" +, institution = "The Moise and Frida Eskenasy Institute of Computer Science, Tel Aviv University" +, year = 1987 +, update = "98.03 bibrelex" } @article{ast-ps-94 -, author = "N. Alon and P. Seymour and R. Thomas" -, title = "Planar separators" -, journal = "SIAM J. Discrete Math." -, volume = 2 -, number = 7 -, year = 1994 -, pages = "184--193" -, update = "97.11 bibrelex" +, author = "N. Alon and P. Seymour and R. Thomas" +, title = "Planar separators" +, journal = "SIAM J. Discrete Math." +, volume = 2 +, number = 7 +, year = 1994 +, pages = "184--193" +, update = "97.11 bibrelex" } @book{as-pm-92 -, author = "N. Alon and J. Spencer" -, title = "The {P}robabilistic {M}ethod" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1992 -, update = "99.11 bibrelex, 98.11 bibrelex, 97.03 agarwal, 94.01 matousek, 93.09 matousek" +, author = "N. Alon and J. Spencer" +, title = "The {P}robabilistic {M}ethod" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1992 +, update = "99.11 bibrelex, 98.11 bibrelex, 97.03 agarwal, 94.01 matousek, 93.09 matousek" } @article{agr-lmulb-92 -, author = "Laurent Alonso and Arthur S. Goldstein and Edward M. Reingold" -, title = "'Lion and Man': Upper and Lower Bounds" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "447--452" -, update = "98.03 mitchell" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "Laurent Alonso and Arthur S. Goldstein and Edward M. Reingold" +, title = "'Lion and Man': Upper and Lower Bounds" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "447--452" +, update = "98.03 mitchell" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @inproceedings{aht-dismr-89 -, author = "P. G. Alourdas and G. R. Hottel and S. T. Tuohy" -, title = "A Design and Interrogation System for Modeling with Rational Splines" -, booktitle = "Proc. 9th International Symposium on Offshore Mechanics and Arctic Engineering" -, year = 1990 -, pages = "555--565" -, update = "95.09 mitchell, 95.05 abrams" +, author = "P. G. Alourdas and G. R. Hottel and S. T. Tuohy" +, title = "A Design and Interrogation System for Modeling with Rational Splines" +, booktitle = "Proc. 9th International Symposium on Offshore Mechanics and Arctic Engineering" +, year = 1990 +, pages = "555--565" +, update = "95.09 mitchell, 95.05 abrams" } @inproceedings{acf-umh-90 -, author = "B. Alpern and L. Carter and E. Feig" -, title = "Uniform Memory Hierarchies" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "600--608" -, update = "96.09 orourke" +, author = "B. Alpern and L. Carter and E. Feig" +, title = "Uniform Memory Hierarchies" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "600--608" +, update = "96.09 orourke" } @inproceedings{ahrsz-iecc-90 -, author = "B. Alpern and R. Hoover and B. Rosen and P. Sweeney and F. K. Zadeck" -, title = "Incremental Evaluation of Computational Circuits" -, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "32--42" -, keywords = "dynamic algorithm" -, update = "96.01 tamassia" +, author = "B. Alpern and R. Hoover and B. Rosen and P. Sweeney and F. K. Zadeck" +, title = "Incremental Evaluation of Computational Circuits" +, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "32--42" +, keywords = "dynamic algorithm" +, update = "96.01 tamassia" } @book{a-aac-78 -, title = "Algorithmic Aspects of Combinatorics" -, editor = "Brian Alspach" -, series = "Ann. Discrete Math." -, volume = 2 -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 1978 -, update = "01.04 icking, 97.11 bibrelex" +, title = "Algorithmic Aspects of Combinatorics" +, editor = "Brian Alspach" +, series = "Ann. Discrete Math." +, volume = 2 +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 1978 +, update = "01.04 icking, 97.11 bibrelex" } @article{a-fshpi-96 -, author = "M. H. Alsuwaiyel" -, title = "Finding a shortest {Hamiltonian} path inside a simple polygon" -, journal = "Inform. Process. Lett." -, volume = 59 -, year = 1996 -, pages = "207--210" -, update = "98.11 devillers, 97.03 smid" +, author = "M. H. Alsuwaiyel" +, title = "Finding a shortest {Hamiltonian} path inside a simple polygon" +, journal = "Inform. Process. Lett." +, volume = 59 +, year = 1996 +, pages = "207--210" +, update = "98.11 devillers, 97.03 smid" } @article{a-tasdp-97 -, author = "M. H. Alsuwaiyel" -, title = "Two Algorithms for the Sum of Diameters Problem and a Related Problem" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "493--508" -, update = "98.11 devillers" +, author = "M. H. Alsuwaiyel" +, title = "Two Algorithms for the Sum of Diameters Problem and a Related Problem" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "493--508" +, update = "98.11 devillers" } @article{al-famlv-95 -, author = "M. H. Alsuwaiyel and D. T. Lee" -, title = "Finding an approximate minimum-link visibility path inside a simple polygon" -, journal = "Inform. Process. Lett." -, volume = 55 -, number = 2 -, year = 1995 -, pages = "75--79" -, keywords = "simple polygon, link distance, watchman routes, visibility, approximation, set cover" -, update = "95.09 mitchell" -, annote = "gives a correction to an approximation result claimed in al-mlvpi-93" +, author = "M. H. Alsuwaiyel and D. T. Lee" +, title = "Finding an approximate minimum-link visibility path inside a simple polygon" +, journal = "Inform. Process. Lett." +, volume = 55 +, number = 2 +, year = 1995 +, pages = "75--79" +, keywords = "simple polygon, link distance, watchman routes, visibility, approximation, set cover" +, update = "95.09 mitchell" +, annote = "gives a correction to an approximation result claimed in al-mlvpi-93" } @article{al-mlvpi-93 -, author = "M. H. Alsuwaiyel and D. T. Lee" -, title = "Minimal link visibility paths inside a simple polygon" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, number = 1 -, year = 1993 -, pages = "1--25" -, keywords = "simple polygon, link distance, watchman route, NP-hardness, approximation, set cover" -, update = "95.09 mitchell, 95.05 korneenko" -, annote = "see al-famlv-95 for correction to the approximation algorithm result" +, author = "M. H. Alsuwaiyel and D. T. Lee" +, title = "Minimal link visibility paths inside a simple polygon" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, number = 1 +, year = 1993 +, pages = "1--25" +, keywords = "simple polygon, link distance, watchman route, NP-hardness, approximation, set cover" +, update = "95.09 mitchell, 95.05 korneenko" +, annote = "see al-famlv-95 for correction to the approximation algorithm result" } @article{a-dprm-62 -, author = "F. L. Alt" -, title = "Digital pattern recognition by moments" -, journal = "J. ACM" -, volume = 9 -, year = 1962 -, pages = "240--258" +, author = "F. L. Alt" +, title = "Digital pattern recognition by moments" +, journal = "J. ACM" +, volume = 9 +, year = 1962 +, pages = "240--258" } @article{a-cccaf-88 -, author = "H. Alt" -, title = "Comparing the combinational complexities of arithmetic functions" -, journal = "J. ACM" -, volume = 35 -, year = 1988 -, pages = "447--460" -, update = "97.03 gaertner+salinger" +, author = "H. Alt" +, title = "Comparing the combinational complexities of arithmetic functions" +, journal = "J. ACM" +, volume = 35 +, year = 1988 +, pages = "447--460" +, update = "97.03 gaertner+salinger" } @inproceedings{a-gmpsm-97 -, author = "Helmut Alt" -, title = "Geometric Methods in Pattern and Shape Matching" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 42 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Helmut Alt" +, title = "Geometric Methods in Pattern and Shape Matching" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 42 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{aar-msrp-94 -, author = "H. Alt and O. Aichholzer and G{\"u}nter Rote" -, title = "Matching Shapes with a Reference Point" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "85--92" -, succeeds = "aar-msrp-94c" -, precedes = "aar-msrp-97" -, cites = "abb-amps-91, ag-chdhd-, ast-apsgo-92, b-azede-90, cghkkk-gpmem-93, cks-ocpad-94t, g-cp-67, h-gaaps-93, hs-adaps-92, hk-cmhdp-90, hks-uevsi-93, hkr-ciuhd-93, s-spcp-66, s-kkk-72, ZZZ" -, update = "00.11 smid, 00.07 icking, 98.03 bibrelex+mitchell, 97.03 rote, 94.09 jones, 94.01 jones" +, author = "H. Alt and O. Aichholzer and G{\"u}nter Rote" +, title = "Matching Shapes with a Reference Point" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "85--92" +, succeeds = "aar-msrp-94c" +, precedes = "aar-msrp-97" +, cites = "abb-amps-91, ag-chdhd-, ast-apsgo-92, b-azede-90, cghkkk-gpmem-93, cks-ocpad-94t, g-cp-67, h-gaaps-93, hs-adaps-92, hk-cmhdp-90, hks-uevsi-93, hkr-ciuhd-93, s-spcp-66, s-kkk-72, ZZZ" +, update = "00.11 smid, 00.07 icking, 98.03 bibrelex+mitchell, 97.03 rote, 94.09 jones, 94.01 jones" } @inproceedings{aar-msrp-94c -, author = "Helmut Alt and Oswin Aichholzer and G{\"u}nter Rote" -, title = "Matching Shapes with a Reference Point" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "81--84" -, precedes = "aar-msrp-94" -, update = "00.11 smid, 00.07 icking" +, author = "Helmut Alt and Oswin Aichholzer and G{\"u}nter Rote" +, title = "Matching Shapes with a Reference Point" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "81--84" +, precedes = "aar-msrp-94" +, update = "00.11 smid, 00.07 icking" } @article{aar-msrp-97 -, author = "H. Alt and O. Aichholzer and G{\"u}nter Rote" -, title = "Matching Shapes with a Reference Point" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "349--363" -, keywords = "shape matching, Steiner point" -, succeeds = "aar-msrp-94" -, update = "98.07 rote, 98.03 mitchell, 97.03 rote" -, abstract = "For two given point sets, we present a very simple - (almost trivial) algorithm to translate one set so that the - Hausdorff distance between the two sets is not larger than a constant - factor times the minimum Hausdorff - distance which can be achieved in this way. The algorithm just matches - the so-called Steiner points of the two sets. - The focus of our paper is the general study of reference points (like - the Steiner point) and their properties with - respect to shape matching." +, author = "H. Alt and O. Aichholzer and G{\"u}nter Rote" +, title = "Matching Shapes with a Reference Point" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "349--363" +, keywords = "shape matching, Steiner point" +, succeeds = "aar-msrp-94" +, update = "98.07 rote, 98.03 mitchell, 97.03 rote" +, abstract = "For two given point sets, we present a very simple + (almost trivial) algorithm to translate one set so that the + Hausdorff distance between the two sets is not larger than a constant + factor times the minimum Hausdorff + distance which can be achieved in this way. The algorithm just matches + the so-called Steiner points of the two sets. + The focus of our paper is the general study of reference points (like + the Steiner point) and their properties with + respect to shape matching." } @inproceedings{ab-akp-90 -, author = "Helmut Alt and Bernd Behrends" -, title = "{Approximative} {Kongruenz} von {Polygonen}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 4 -, update = "00.03 bibrelex" +, author = "Helmut Alt and Bernd Behrends" +, title = "{Approximative} {Kongruenz} von {Polygonen}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 4 +, update = "00.03 bibrelex" } @inproceedings{abb-amps-91 -, author = "H. Alt and B. Behrends and J. Bl{\"o}mer" -, title = "Approximate matching of polygonal shapes" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "186--193" -, keywords = "matching, polygons, approximation" -, precedes = "abb-amps-95" -, cites = "abgw-acp-90, akmsw-mpnrc-91, amww-cssgo-88, ass-sulbl-89, a-ltahd-83, a-dcg-83, epss-lebfi-87, f-savd-87, g-nmccd-91, hk-cmhdp-90, m-tgis-82, s-udbde-88, y-oavds-87, ZZZ" -, update = "97.11 bibrelex, 95.09 mitchell" +, author = "H. Alt and B. Behrends and J. Bl{\"o}mer" +, title = "Approximate matching of polygonal shapes" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "186--193" +, keywords = "matching, polygons, approximation" +, precedes = "abb-amps-95" +, cites = "abgw-acp-90, akmsw-mpnrc-91, amww-cssgo-88, ass-sulbl-89, a-ltahd-83, a-dcg-83, epss-lebfi-87, f-savd-87, g-nmccd-91, hk-cmhdp-90, m-tgis-82, s-udbde-88, y-oavds-87, ZZZ" +, update = "97.11 bibrelex, 95.09 mitchell" } @article{abb-amps-95 -, author = "H. Alt and B. Behrends and J. Bl{\"o}mer" -, title = "Approximate matching of polygonal shapes" -, editor = "Janos Csirik and Horst Bunke" -, journal = "Ann. Math. Artif. Intell." -, volume = 13 -, year = 1995 -, pages = "251--266" -, keywords = "matching, shape recognition, vision" -, succeeds = "abb-amps-91" -, update = "97.03 agarwal+smid, 95.09 mitchell" +, author = "H. Alt and B. Behrends and J. Bl{\"o}mer" +, title = "Approximate matching of polygonal shapes" +, editor = "Janos Csirik and Horst Bunke" +, journal = "Ann. Math. Artif. Intell." +, volume = 13 +, year = 1995 +, pages = "251--266" +, keywords = "matching, shape recognition, vision" +, succeeds = "abb-amps-91" +, update = "97.03 agarwal+smid, 95.09 mitchell" } @techreport{abgw-acp- -, author = "H. Alt and J. Bl{\"o}mer and M. Godau and H. Wagener" -, title = "Approximation of convex polygons" -, institution = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" -, address = "Berlin" -, precedes = "abgw-acp-90" -, update = "94.05 franciosa, 93.09 milone+mitchell" +, author = "H. Alt and J. Bl{\"o}mer and M. Godau and H. Wagener" +, title = "Approximation of convex polygons" +, institution = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" +, address = "Berlin" +, precedes = "abgw-acp-90" +, update = "94.05 franciosa, 93.09 milone+mitchell" } @inproceedings{abgw-acp-90 -, author = "H. Alt and J. Bl{\"o}mer and M. Godau and H. Wagener" -, title = "Approximation of convex polygons" -, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 443 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "703--716" -, succeeds = "abgw-acp-" -, update = "94.05 franciosa" +, author = "H. Alt and J. Bl{\"o}mer and M. Godau and H. Wagener" +, title = "Approximation of convex polygons" +, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 443 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "703--716" +, succeeds = "abgw-acp-" +, update = "94.05 franciosa" } @article{abm-cmcmb-91 -, author = "H. Alt and N. Blum and K. Mehlhorn" -, title = "Computing a Maximum Cardinality Matching of a Bipartite Graph in Time ${O}(n^{1.5} \sqrt{m/\log n})$" -, journal = "Inform. Process. Lett." -, volume = 37 -, year = 1991 -, pages = "237--240" -, update = "97.03 gaertner+salinger" +, author = "H. Alt and N. Blum and K. Mehlhorn" +, title = "Computing a Maximum Cardinality Matching of a Bipartite Graph in Time ${O}(n^{1.5} \sqrt{m/\log n})$" +, journal = "Inform. Process. Lett." +, volume = 37 +, year = 1991 +, pages = "237--240" +, update = "97.03 gaertner+salinger" } @book{acs-cg-95 -, title = "Computational Geometry" -, editor = "Helmut Alt and Bernard Chazelle and Raimund Seidel" -, series = "Dagstuhl-Seminar-Report" -, volume = 109 -, publisher = "Internat. Begegnungs- und Forschungszentrum f{\"u}r Informatik" -, address = "Schloss Dagstuhl, Germany" -, year = 1995 -, url = "http://www.dagstuhl.de/DATA/Participants/9511.html" -, update = "01.04 icking" +, title = "Computational Geometry" +, editor = "Helmut Alt and Bernard Chazelle and Raimund Seidel" +, series = "Dagstuhl-Seminar-Report" +, volume = 109 +, publisher = "Internat. Begegnungs- und Forschungszentrum f{\"u}r Informatik" +, address = "Schloss Dagstuhl, Germany" +, year = 1995 +, url = "http://www.dagstuhl.de/DATA/Participants/9511.html" +, update = "01.04 icking" } @book{acw-cg-93 -, title = "Computational Geometry" -, editor = "Helmut Alt and Bernard Chazelle and Emo Welzl" -, series = "Dagstuhl-Seminar-Report" -, volume = 59 -, publisher = "Internat. Begegnungs- und Forschungszentrum f{\"u}r Informatik" -, address = "Schloss Dagstuhl, Germany" -, year = 1993 -, url = "http://www.dagstuhl.de/DATA/Seminars/93/" -, update = "01.07 icking" +, title = "Computational Geometry" +, editor = "Helmut Alt and Bernard Chazelle and Emo Welzl" +, series = "Dagstuhl-Seminar-Report" +, volume = 59 +, publisher = "Internat. Begegnungs- und Forschungszentrum f{\"u}r Informatik" +, address = "Schloss Dagstuhl, Germany" +, year = 1993 +, url = "http://www.dagstuhl.de/DATA/Seminars/93/" +, update = "01.07 icking" } @inproceedings{afhn-psfks-98 -, author = "Helmut Alt and Stefan Felsner and Ferran Hurtado and Marc Noy" -, title = "Point-Sets with few {$k$}-Sets" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "27--28" -, note = "To appear in Proc. 14th ACM Sympos. Comput. Geom." -, update = "00.03 bibrelex, 98.07 agarwal+bibrelex, 98.03 agarwal" +, author = "Helmut Alt and Stefan Felsner and Ferran Hurtado and Marc Noy" +, title = "Point-Sets with few {$k$}-Sets" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "27--28" +, note = "To appear in Proc. 14th ACM Sympos. Comput. Geom." +, update = "00.03 bibrelex, 98.07 agarwal+bibrelex, 98.03 agarwal" } @inproceedings{afkmnsu-ampcb-90 -, author = "H. Alt and R. Fleischer and M. Kaufmann and K. Mehlhorn and S. N{\"a}her and S. Schirra and C. Uhrig" -, title = "Approximate motion planning and the complexity of the boundary of the union of simple geometric figures" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "281--289" -, cites = "egs-oplms-86, gss-gmppt-88, klps-ujrcf-86, ks-eapcf-85, ks-ampsc-88, lw-apcfp-79, ls-ipjc-85, ls-pptmc-87, s-dsstg-88, ZZZ" -, update = "97.11 bibrelex" +, author = "H. Alt and R. Fleischer and M. Kaufmann and K. Mehlhorn and S. N{\"a}her and S. Schirra and C. Uhrig" +, title = "Approximate motion planning and the complexity of the boundary of the union of simple geometric figures" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "281--289" +, cites = "egs-oplms-86, gss-gmppt-88, klps-ujrcf-86, ks-eapcf-85, ks-ampsc-88, lw-apcfp-79, ls-ipjc-85, ls-pptmc-87, s-dsstg-88, ZZZ" +, update = "97.11 bibrelex" } @article{afkmnsu-ampcb-92 -, author = "H. Alt and R. Fleischer and M. Kaufmann and K. Mehlhorn and S. N{\"a}her and S. Schirra and C. Uhrig" -, title = "Approximate motion planning and the complexity of the boundary of the union of simple geometric figures" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "391--406" -, update = "95.05 agarwal" +, author = "H. Alt and R. Fleischer and M. Kaufmann and K. Mehlhorn and S. N{\"a}her and S. Schirra and C. Uhrig" +, title = "Approximate motion planning and the complexity of the boundary of the union of simple geometric figures" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "391--406" +, update = "95.05 agarwal" } @inproceedings{afrw-mcsrs-96 -, author = "H. Alt and U. Fuchs and G{\"u}nter Rote and G. Weber" -, title = "Matching convex shapes with respect to the symmetric difference" -, booktitle = "Algorithms --- Proc. 4th Annu. European Sympos. Algorithms" -, nickname = "ESA'96" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "320--333" -, precedes = "afrw-mcsrs-98" -, update = "98.07 rote" +, author = "H. Alt and U. Fuchs and G{\"u}nter Rote and G. Weber" +, title = "Matching convex shapes with respect to the symmetric difference" +, booktitle = "Algorithms --- Proc. 4th Annu. European Sympos. Algorithms" +, nickname = "ESA'96" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "320--333" +, precedes = "afrw-mcsrs-98" +, update = "98.07 rote" } @article{afrw-mcsrs-98 -, author = "H. Alt and U. Fuchs and G. Rote and G. Weber" -, title = "Matching convex shapes with respect to the symmetric difference" -, journal = "Algorithmica" -, volume = 21 -, year = 1998 -, pages = "89--103" -, succeeds = "afrw-mcsrs-96" -, cites = "bdkst-cmotc-96" -, update = "98.07 rote" -, abstract = "This paper deals with questions from convex geometry related +, author = "H. Alt and U. Fuchs and G. Rote and G. Weber" +, title = "Matching convex shapes with respect to the symmetric difference" +, journal = "Algorithmica" +, volume = 21 +, year = 1998 +, pages = "89--103" +, succeeds = "afrw-mcsrs-96" +, cites = "bdkst-cmotc-96" +, update = "98.07 rote" +, abstract = "This paper deals with questions from convex geometry related to shape matching. In particular, we consider the problem of moving one convex figure over another, minimizing the area of their symmetric difference. We show that if we just let the @@ -6378,2059 +6378,2059 @@ @article{afrw-mcsrs-98 } @inproceedings{afrw-rpsm-96 -, author = "Helmut Alt and Ulrich Fuchs and G{\"u}nter Rote and Gerald Weber" -, title = "Reference Points for Shape Matching" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "73--74" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Helmut Alt and Ulrich Fuchs and G{\"u}nter Rote and Gerald Weber" +, title = "Reference Points for Shape Matching" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "73--74" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{agm-nscrc-92 -, author = "H. Alt and V. Geffert and K. Mehlhorn" -, title = "Nondeterministic Space Complexity for the Recognition of Context-Free Languages" -, journal = "Inform. Process. Lett." -, volume = 42 -, year = 1992 -, pages = "25--27" -, update = "97.03 gaertner+salinger" +, author = "H. Alt and V. Geffert and K. Mehlhorn" +, title = "Nondeterministic Space Complexity for the Recognition of Context-Free Languages" +, journal = "Inform. Process. Lett." +, volume = 42 +, year = 1992 +, pages = "25--27" +, update = "97.03 gaertner+salinger" } @article{ag-cfdbt-95 -, author = "H. Alt and M. Godau" -, title = "Computing the {Fr\'echet} distance between two polygonal curves" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "75--91" -, keywords = "Frechet distance, shape analysis, resemblance of curves, computational morphology" -, succeeds = "ag-mrpc-92" -, update = "96.09 devillers" +, author = "H. Alt and M. Godau" +, title = "Computing the {Fr\'echet} distance between two polygonal curves" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "75--91" +, keywords = "Frechet distance, shape analysis, resemblance of curves, computational morphology" +, succeeds = "ag-mrpc-92" +, update = "96.09 devillers" } @unpublished{ag-chdhd- -, author = "H. Alt and M. Godau" -, title = "Computing the {Hausdorff}-distance in higher dimensions" -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "H. Alt and M. Godau" +, title = "Computing the {Hausdorff}-distance in higher dimensions" +, note = "In preparation" +, update = "98.03 bibrelex" } @inproceedings{ag-mrpc-92 -, author = "H. Alt and M. Godau" -, title = "Measuring the resemblance of polygonal curves" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "102--109" -, precedes = "ag-cfdbt-95" -, cites = "abb-amps-91, abgw-acp-90, c-pms-88, clr-ia-90, e-cva-85, f-sqpdc-06, g-nmccd-91, g-fmpaa-91, gpy-mclmr-89, m-apcad-83, n-ccpwl-91, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "H. Alt and M. Godau" +, title = "Measuring the resemblance of polygonal curves" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "102--109" +, precedes = "ag-cfdbt-95" +, cites = "abb-amps-91, abgw-acp-90, c-pms-88, clr-ia-90, e-cva-85, f-sqpdc-06, g-nmccd-91, g-fmpaa-91, gpy-mclmr-89, m-apcad-83, n-ccpwl-91, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers" } @inproceedings{ag-mamrc-91 -, author = "H. Alt and M. Godau" -, title = "Metrics and Algorithms for Measuring the Resemblance of Curves" -, booktitle = "Proc. 13th IMACS World Congress on Computation and Applied Mathematics" -, year = 1991 -, pages = "135--136" -, update = "97.03 gaertner+salinger" +, author = "H. Alt and M. Godau" +, title = "Metrics and Algorithms for Measuring the Resemblance of Curves" +, booktitle = "Proc. 13th IMACS World Congress on Computation and Applied Mathematics" +, year = 1991 +, pages = "135--136" +, update = "97.03 gaertner+salinger" } @inproceedings{agw-u3dvr-96 -, author = "H. Alt and M. Godau and S. Whitesides" -, title = "Universal 3-Dimensional Visibility Representations for Graphs" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "8--19" -, keywords = "graph drawing, visibility, 3D" -, precedes = "agw-u3dvr-98" -, update = "99.11 bibrelex, 98.11 devillers+patrignani, 96.09 tamassia" +, author = "H. Alt and M. Godau and S. Whitesides" +, title = "Universal 3-Dimensional Visibility Representations for Graphs" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "8--19" +, keywords = "graph drawing, visibility, 3D" +, precedes = "agw-u3dvr-98" +, update = "99.11 bibrelex, 98.11 devillers+patrignani, 96.09 tamassia" } @article{agw-u3dvr-98 -, author = "Helmut Alt and Michael Godau and Sue Whitesides" -, title = "Universal $3$-Dimensional Visibility Representations for Graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, year = 1998 -, pages = "111--125" -, note = "(special issue on Graph Drawing, edited by G.~{Di Battista} and R.~Tamassia)" -, keywords = "graph drawing, visibility, 3D" -, succeeds = "agw-u3dvr-96" -, update = "99.11 bibrelex, 98.11 devillers+patrignani" +, author = "Helmut Alt and Michael Godau and Sue Whitesides" +, title = "Universal $3$-Dimensional Visibility Representations for Graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, year = 1998 +, pages = "111--125" +, note = "(special issue on Graph Drawing, edited by G.~{Di Battista} and R.~Tamassia)" +, keywords = "graph drawing, visibility, 3D" +, succeeds = "agw-u3dvr-96" +, update = "99.11 bibrelex, 98.11 devillers+patrignani" } @incollection{ag-dgsmi-00 -, author = "Helmut Alt and Leonidas J. Guibas" -, title = "Discrete Geometric Shapes: {Matching}, Interpolation, and Approximation" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "121--153" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell, 96.09 orourke" -, annote = "Chapter 3 of su-hcg-00" +, author = "Helmut Alt and Leonidas J. Guibas" +, title = "Discrete Geometric Shapes: {Matching}, Interpolation, and Approximation" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "121--153" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell, 96.09 orourke" +, annote = "Chapter 3 of su-hcg-00" } @inproceedings{ah-elnns-99 -, author = "Helmut Alt and Ulrich Hoffmann" -, title = "Exact {$L_\infty$} Nearest Neighbor Search in High Dimensions" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "91--92" -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Helmut Alt and Ulrich Hoffmann" +, title = "Exact {$L_\infty$} Nearest Neighbor Search in High Dimensions" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "91--92" +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{ahs-cliir-95 -, author = "Helmut Alt and David Hsu and Jack Snoeyink" -, title = "Computing the Largest Inscribed Isothetic Rectangle" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "67--72" -, update = "95.09 jones" +, author = "Helmut Alt and David Hsu and Jack Snoeyink" +, title = "Computing the Largest Inscribed Isothetic Rectangle" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "67--72" +, update = "95.09 jones" } @inproceedings{ak-msrsd -, author = "Helmut Alt and Christian Knauer" -, title = "Matching Shape with Respect to the Symmetric Difference" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "195--197" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Helmut Alt and Christian Knauer" +, title = "Matching Shape with Respect to the Symmetric Difference" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "195--197" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{akw-bfdhd-01 -, author = "Helmut Alt and Christian Knauer and Carola Wenk" -, title = "Bounding the {Fr{\'e}chet} Distance by the {Hausdorff} Distance" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "166--169" -, update = "01.04 icking" +, author = "Helmut Alt and Christian Knauer and Carola Wenk" +, title = "Bounding the {Fr{\'e}chet} Distance by the {Hausdorff} Distance" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "166--169" +, update = "01.04 icking" } @article{am-sst-85 -, author = "H. Alt and K. Mehlhorn" -, title = "Searching semisorted tables" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "840--848" +, author = "H. Alt and K. Mehlhorn" +, title = "Searching semisorted tables" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "840--848" } @article{amm-cpmr-81 -, author = "H. Alt and K. Mehlhorn and J. I. Munro" -, title = "On the complexity of partial match retrieval" -, journal = "Mathematical Foundations of Computer Science" -, volume = "??" -, year = 1981 -, pages = "156--161" -, update = "97.11 bibrelex" +, author = "H. Alt and K. Mehlhorn and J. I. Munro" +, title = "On the complexity of partial match retrieval" +, journal = "Mathematical Foundations of Computer Science" +, volume = "??" +, year = 1981 +, pages = "156--161" +, update = "97.11 bibrelex" } @article{amm-pmrid-84 -, author = "H. Alt and K. Mehlhorn and J. I. Munro" -, title = "Partial match retrieval in implicit data structures" -, journal = "Inform. Process. Lett." -, volume = 19 -, year = 1984 -, pages = "61--65" +, author = "H. Alt and K. Mehlhorn and J. I. Munro" +, title = "Partial match retrieval in implicit data structures" +, journal = "Inform. Process. Lett." +, volume = 19 +, year = 1984 +, pages = "61--65" } @inproceedings{amww-cssgo-87 -, author = "H. Alt and K. Mehlhorn and H. Wagener and Emo Welzl" -, title = "Congruence, similarity and symmetries of geometric objects" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "308--315" -, precedes = "amww-cssgo-88" -, cites = "ahu-daca-74, a-cspf-84, a-sd-85, a-oagc-83, h-oafsp-86, m-dsa-84, m-tgis-82, m-ltalp-83, ps-cgi-85, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "H. Alt and K. Mehlhorn and H. Wagener and Emo Welzl" +, title = "Congruence, similarity and symmetries of geometric objects" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "308--315" +, precedes = "amww-cssgo-88" +, cites = "ahu-daca-74, a-cspf-84, a-sd-85, a-oagc-83, h-oafsp-86, m-dsa-84, m-tgis-82, m-ltalp-83, ps-cgi-85, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{amww-cssgo-88 -, author = "H. Alt and K. Mehlhorn and H. Wagener and Emo Welzl" -, title = "Congruence, similarity and symmetries of geometric objects" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "237--256" -, succeeds = "amww-cssgo-87" -, update = "98.03 mitchell" +, author = "H. Alt and K. Mehlhorn and H. Wagener and Emo Welzl" +, title = "Congruence, similarity and symmetries of geometric objects" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "237--256" +, succeeds = "amww-cssgo-87" +, update = "98.03 mitchell" } @inproceedings{as-vdco-95 -, author = "Helmut Alt and Otfried Schwarzkopf" -, title = "The {Voronoi} diagram of curved objects" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "89--97" -, url = "http://www.cs.uu.nl/~otfried/ps/as-vdco-95.ps.gz" -, keywords = "randomized incremental algorithm" -, cites = "a-vdsfg-91, bdsty-arsol-92, c-bvdcp-86, cs-arscg-89, k-avdta-88, k-cavd-89, kmm-ricav-93a, kw-vdbgm-88, ls-pptmc-87, mp-fitcp-78, m-fppa1-88, oy-rmpmd-85, obs-stcav-92, ps-cgi-85, s-barga-93, s-dg-69, y-oavds-87, ya-mpce-89, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell+schwarzkopf" +, author = "Helmut Alt and Otfried Schwarzkopf" +, title = "The {Voronoi} diagram of curved objects" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "89--97" +, url = "http://www.cs.uu.nl/~otfried/ps/as-vdco-95.ps.gz" +, keywords = "randomized incremental algorithm" +, cites = "a-vdsfg-91, bdsty-arsol-92, c-bvdcp-86, cs-arscg-89, k-avdta-88, k-cavd-89, kmm-ricav-93a, kw-vdbgm-88, ls-pptmc-87, mp-fitcp-78, m-fppa1-88, oy-rmpmd-85, obs-stcav-92, ps-cgi-85, s-barga-93, s-dg-69, y-oavds-87, ya-mpce-89, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell+schwarzkopf" } @article{aw-vgoas-88 -, author = "H. Alt and Emo Welzl" -, title = "Visibility graphs and obstacle-avoiding shortest paths" -, journal = "Zeitschrift f{\"u}r Operations Research" -, volume = 32 -, year = 1988 -, pages = "145--164" -, update = "98.03 mitchell" +, author = "H. Alt and Emo Welzl" +, title = "Visibility graphs and obstacle-avoiding shortest paths" +, journal = "Zeitschrift f{\"u}r Operations Research" +, volume = 32 +, year = 1988 +, pages = "145--164" +, update = "98.03 mitchell" } @inproceedings{aww-plabc-97 -, author = "H. Alt and E. Welzl and B. Wolfers" -, title = "Piecewise Linear Approximation of B{\'e}zier-Curves" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "433--435" -, cites = "ag-cfdbt-95, b-pgs-78, f-cscag-93, fdfh-cgpp-90, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "H. Alt and E. Welzl and B. Wolfers" +, title = "Piecewise Linear Approximation of B{\'e}zier-Curves" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "433--435" +, cites = "ag-cfdbt-95, b-pgs-78, f-cscag-93, fdfh-cgpp-90, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @article{ay-aampt1-90 -, author = "H. Alt and C. K. Yap" -, title = "Algorithmic aspect of motion planning: a tutorial, part 1" -, journal = "Algorithms Rev." -, volume = 1 -, number = 1 -, year = 1990 -, pages = "43--60" -, keywords = "motion planning, robotics, computational geometry, Voronoi diagrams, computational algebra" -, update = "93.09 jones" +, author = "H. Alt and C. K. Yap" +, title = "Algorithmic aspect of motion planning: a tutorial, part 1" +, journal = "Algorithms Rev." +, volume = 1 +, number = 1 +, year = 1990 +, pages = "43--60" +, keywords = "motion planning, robotics, computational geometry, Voronoi diagrams, computational algebra" +, update = "93.09 jones" } @article{ay-aampt2-90 -, author = "H. Alt and C. K. Yap" -, title = "Algorithmic aspect of motion planning: a tutorial, part 2" -, journal = "Algorithms Rev." -, volume = 1 -, number = 2 -, year = 1990 -, pages = "61--77" -, keywords = "motion planning, robotics, computational geometry, Voronoi diagrams, computational algebra" -, update = "93.09 jones" +, author = "H. Alt and C. K. Yap" +, title = "Algorithmic aspect of motion planning: a tutorial, part 2" +, journal = "Algorithms Rev." +, volume = 1 +, number = 2 +, year = 1990 +, pages = "61--77" +, keywords = "motion planning, robotics, computational geometry, Voronoi diagrams, computational algebra" +, update = "93.09 jones" } @inproceedings{ay-aart-89 -, author = "H. Alt and C. K. Yap" -, title = "Algorithmic Aspects of Robotics: a Tutorial" -, booktitle = "Proceedings SOFSEM `89" -, year = 1989 -, pages = "7--40" -, update = "97.03 gaertner+salinger" +, author = "H. Alt and C. K. Yap" +, title = "Algorithmic Aspects of Robotics: a Tutorial" +, booktitle = "Proceedings SOFSEM `89" +, year = 1989 +, pages = "7--40" +, update = "97.03 gaertner+salinger" } @inproceedings{am-pttbc-00 -, author = "E. Althaus and K. Mehlhorn" -, title = "Polynomial time {TSP}-based curve reconstruction" -, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '00" -, month = jan -, year = 2000 -, pages = "686--695" -, update = "00.03 orourke" +, author = "E. Althaus and K. Mehlhorn" +, title = "Polynomial time {TSP}-based curve reconstruction" +, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '00" +, month = jan +, year = 2000 +, pages = "686--695" +, update = "00.03 orourke" } @inproceedings{amns-ecr-00 -, author = "E. Althaus and K. Mehlhorn and S. N{\"a}her and S. Schirra" -, title = "Experiments on curve reconstruction" -, booktitle = "Proc. 2nd Workshop Algorithm Eng. Exper." -, nickname = "ALENEX '00" -, month = jan -, year = 2000 -, pages = "103--114" -, update = "00.03 orourke" +, author = "E. Althaus and K. Mehlhorn and S. N{\"a}her and S. Schirra" +, title = "Experiments on curve reconstruction" +, booktitle = "Proc. 2nd Workshop Algorithm Eng. Exper." +, nickname = "ALENEX '00" +, month = jan +, year = 2000 +, pages = "103--114" +, update = "00.03 orourke" } @article{a-aevcp-75 -, author = "W. Altherr" -, title = "An algorithm for enumerating the vertices of a convex polyhedron" -, journal = "Computing" -, volume = 15 -, year = 1975 -, pages = "181--193" +, author = "W. Altherr" +, title = "An algorithm for enumerating the vertices of a convex polyhedron" +, journal = "Computing" +, volume = 15 +, year = 1975 +, pages = "181--193" } @article{a-orfms-88 -, author = "I. Alth{\"o}fer" -, title = "On optimal realizations of finite metric spaces by graphs" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "103--122" +, author = "I. Alth{\"o}fer" +, title = "On optimal realizations of finite metric spaces by graphs" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "103--122" } @inproceedings{addj-gsswg-90 -, author = "I. Alth{\"o}fer and G. Das and D. Dobkin and D. Joseph" -, title = "Generating Sparse Spanners for Weighted Graphs" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, year = 1990 -, pages = "26--37" -, update = "98.03 smid, 97.11 bibrelex" +, author = "I. Alth{\"o}fer and G. Das and D. Dobkin and D. Joseph" +, title = "Generating Sparse Spanners for Weighted Graphs" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, year = 1990 +, pages = "26--37" +, update = "98.03 smid, 97.11 bibrelex" } @article{addjs-sswg-93 -, author = "I. Alth{\"o}fer and G. Das and D. P. Dobkin and D. Joseph and J. Soares" -, title = "On sparse spanners of weighted graphs" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "81--100" -, update = "94.05 smid" +, author = "I. Alth{\"o}fer and G. Das and D. P. Dobkin and D. Joseph and J. Soares" +, title = "On sparse spanners of weighted graphs" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "81--100" +, update = "94.05 smid" } @incollection{achllstu-mairp-81 -, author = "M. D. Altschuler and Y. Censor and G. T. Hermann and A. Lent and R. M. Lewitt and S. N. Srihari and H. Tuy and J. K. Udupa" -, title = "Mathematical aspects of image reconstruction from projections" -, editor = "L. N. Kanal and A. Rosenfeld" -, booktitle = "Progress in pattern recognition" -, volume = 1 -, publisher = "North-Holland" -, address = "New-York, NY" -, year = 1981 -, pages = "323--375" -, update = "97.11 bibrelex" +, author = "M. D. Altschuler and Y. Censor and G. T. Hermann and A. Lent and R. M. Lewitt and S. N. Srihari and H. Tuy and J. K. Udupa" +, title = "Mathematical aspects of image reconstruction from projections" +, editor = "L. N. Kanal and A. Rosenfeld" +, booktitle = "Progress in pattern recognition" +, volume = 1 +, publisher = "North-Holland" +, address = "New-York, NY" +, year = 1981 +, pages = "323--375" +, update = "97.11 bibrelex" } @article{ab-wnpm2-86 -, author = "A. Altshuler and U. Brehm" -, title = "The weakly neighborly polyhedral maps on the $2$-manifold with {Euler} characteristic $-1$" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "355--369" +, author = "A. Altshuler and U. Brehm" +, title = "The weakly neighborly polyhedral maps on the $2$-manifold with {Euler} characteristic $-1$" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "355--369" } @inproceedings{as-dchan-99 -, author = "S. Aluru and F. E. Sevilgen" -, title = "Dynamic compressed hyperoctrees with application to the {N}-body problem" -, booktitle = "Proc. 19th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1738 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "21--33" -, update = "00.03 smid" +, author = "S. Aluru and F. E. Sevilgen" +, title = "Dynamic compressed hyperoctrees with application to the {N}-body problem" +, booktitle = "Proc. 19th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1738 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "21--33" +, update = "00.03 smid" } @article{a-rtc-84 -, author = "J. Amanatides" -, title = "Ray Tracing with Cones" -, journal = "Comput. Graph." -, volume = 18 -, number = 3 -, year = 1984 -, pages = "129--135" -, note = "Proc. SIGGRAPH '84" -, update = "97.11 bibrelex" +, author = "J. Amanatides" +, title = "Ray Tracing with Cones" +, journal = "Comput. Graph." +, volume = 18 +, number = 3 +, year = 1984 +, pages = "129--135" +, note = "Proc. SIGGRAPH '84" +, update = "97.11 bibrelex" } @book{a-dgms-85 -, author = "S. Amari" -, title = "Differential Geometrical Methods in Statistics" -, series = "Lecture Notes in Statistics" -, volume = 28 -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1985 -, update = "98.07 bibrelex" +, author = "S. Amari" +, title = "Differential Geometrical Methods in Statistics" +, series = "Lecture Notes in Statistics" +, volume = 28 +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1985 +, update = "98.07 bibrelex" } @article{a-dssp-94 -, author = "N. Amato" -, title = "Determining the separation of simple polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "457--474" -, keywords = "separation, simple polygon, parallel algorithm, sequential algorithm" -, succeeds = "a-oafss-93" -, update = "96.09 devillers" +, author = "N. Amato" +, title = "Determining the separation of simple polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "457--474" +, keywords = "separation, simple polygon, parallel algorithm, sequential algorithm" +, succeeds = "a-oafss-93" +, update = "96.09 devillers" } @incollection{abdjv-oobp3-98 -, author = "N. Amato and O. B. Bayazit and L. K. Dale and C. Jones and D. Vallejo" -, title = "{OBPRM}: An obstacle-based {PRM} for {3D} workspaces" -, editor = "P. K. Agarwal and L. E. Kavraki and M. Mason" -, booktitle = "Proc. Workshop Algorithmic Found. Robot." -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1998 -, note = "To appear" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "N. Amato and O. B. Bayazit and L. K. Dale and C. Jones and D. Vallejo" +, title = "{OBPRM}: An obstacle-based {PRM} for {3D} workspaces" +, editor = "P. K. Agarwal and L. E. Kavraki and M. Mason" +, booktitle = "Proc. Workshop Algorithmic Found. Robot." +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1998 +, note = "To appear" +, update = "98.07 agarwal, 98.03 agarwal" } @inproceedings{a-oafss-93 -, author = "Nancy M. Amato" -, title = "An Optimal Algorithm for Finding the Separation of Simple Polygons" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "48--59" -, precedes = "a-dssp-94" -, update = "96.09 devillers, 93.09 milone+mitchell+smid, 93.05 jones" +, author = "Nancy M. Amato" +, title = "An Optimal Algorithm for Finding the Separation of Simple Polygons" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "48--59" +, precedes = "a-dssp-94" +, update = "96.09 devillers, 93.09 milone+mitchell+smid, 93.05 jones" } @article{agr-ratsp-01 -, author = "Nancy M. Amato and Michael T. Goodrich and Edgar A. Ramos" -, title = "A Randomized Algorithm for Triangulating a Simple Polygon in Linear Time" -, journal = "Discrete Comput. Geom." -, volume = 26 -, number = 2 -, year = 2001 -, pages = "245--265" -, update = "01.11 pocchiola+smid" +, author = "Nancy M. Amato and Michael T. Goodrich and Edgar A. Ramos" +, title = "A Randomized Algorithm for Triangulating a Simple Polygon in Linear Time" +, journal = "Discrete Comput. Geom." +, volume = 26 +, number = 2 +, year = 2001 +, pages = "245--265" +, update = "01.11 pocchiola+smid" } @inproceedings{agr-cfssa-95 -, author = "N. M. Amato and M. T. Goodrich and E. A. Ramos" -, title = "Computing faces in segment and simplex arrangements" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, year = 1995 -, pages = "672--682" -, update = "95.09 agarwal+smid" +, author = "N. M. Amato and M. T. Goodrich and E. A. Ramos" +, title = "Computing faces in segment and simplex arrangements" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, year = 1995 +, pages = "672--682" +, update = "95.09 agarwal+smid" } @inproceedings{agr-cacsd-00 -, author = "N. M. Amato and M. T. Goodrich and E. A. Ramos" -, title = "Computing the arrangement of curve segments: divide-and-conquer algorithms via sampling" -, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '00" -, year = 2000 -, pages = "705--706" -, update = "00.11 smid" +, author = "N. M. Amato and M. T. Goodrich and E. A. Ramos" +, title = "Computing the arrangement of curve segments: divide-and-conquer algorithms via sampling" +, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '00" +, year = 2000 +, pages = "705--706" +, update = "00.11 smid" } @inproceedings{agr-lttsp-00 -, author = "Nancy M. Amato and Michael T. Goodrich and Edgar A. Ramos" -, title = "Linear-Time Triangulation of a Simple Polygon Made Easier via Randomization" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "201--212" -, update = "00.11 jones" +, author = "Nancy M. Amato and Michael T. Goodrich and Edgar A. Ramos" +, title = "Linear-Time Triangulation of a Simple Polygon Made Easier via Randomization" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "201--212" +, update = "00.11 jones" } @inproceedings{agr-pahdc-94 -, author = "N. M. Amato and M. T. Goodrich and E. A. Ramos" -, title = "Parallel algorithms for higher-dimensional convex hulls" -, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1994 -, pages = "683--694" -, update = "95.01 smid" +, author = "N. M. Amato and M. T. Goodrich and E. A. Ramos" +, title = "Parallel algorithms for higher-dimensional convex hulls" +, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1994 +, pages = "683--694" +, update = "95.01 smid" } @inproceedings{ap-np3dc-93 -, author = "N. M. Amato and F. P. Preparata" -, title = "An {NC}$^1$ Parallel 3{D} convex hull algorithm" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "289--297" -, cites = "acgoy-pcg-88, ap-p3dch-92, c-pms-88, cz-opabd-90, c-pagp-80, dk-pcsh-89, dk-dsppu-90, kr-pasmm-90, pdw-npach-92, ph-chfsp-77, ps-cgi-85, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" +, author = "N. M. Amato and F. P. Preparata" +, title = "An {NC}$^1$ Parallel 3{D} convex hull algorithm" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "289--297" +, cites = "acgoy-pcg-88, ap-p3dch-92, c-pms-88, cz-opabd-90, c-pagp-80, dk-pcsh-89, dk-dsppu-90, kr-pasmm-90, pdw-npach-92, ph-chfsp-77, ps-cgi-85, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" } @article{ap-p3dch-92 -, author = "N. M. Amato and F. P. Preparata" -, title = "The parallel 3{D} convex hull problem revisited" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "163--173" -, keywords = "convex hull, parallel computation, PRAM, hierarchical representation" +, author = "N. M. Amato and F. P. Preparata" +, title = "The parallel 3{D} convex hull problem revisited" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "163--173" +, keywords = "convex hull, parallel computation, PRAM, hierarchical representation" } @inproceedings{ar-cvddp-96 -, author = "Nancy M. Amato and Edgar A. Ramos" -, title = "On Computing {Voronoi} Diagrams by Divide-Prune-and-Conquer" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "166--175" -, cites = "as-vdco-95, agr-pahdc-94, agr-cfssa-95, a-pdpaa-87, bcm-prsss-93, c-osrch-95, csy-oscpf-95, csy-pddpo-97, c-chdc-93, c-ochaa-93, cf-dvrsi-90, cs-arscg-89, dk-fdpi-83, e-acg-87, em-sstcd-90, es-itfwr-92, es-otatd-91, g-gpmee-93, goy-cvdsl-93, ks-upcha-86, k-cavd-89, m-aogdc-91, m-cha-91, m-ept-92, m-loq-93, m-lpltw-84, rs-oprat-92, s-chdch-86, s-sdlpc-91, sa-dsstg-95, s-fchff-85, y-gctsp-90, ZZZ" -, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 efrat" +, author = "Nancy M. Amato and Edgar A. Ramos" +, title = "On Computing {Voronoi} Diagrams by Divide-Prune-and-Conquer" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "166--175" +, cites = "as-vdco-95, agr-pahdc-94, agr-cfssa-95, a-pdpaa-87, bcm-prsss-93, c-osrch-95, csy-oscpf-95, csy-pddpo-97, c-chdc-93, c-ochaa-93, cf-dvrsi-90, cs-arscg-89, dk-fdpi-83, e-acg-87, em-sstcd-90, es-itfwr-92, es-otatd-91, g-gpmee-93, goy-cvdsl-93, ks-upcha-86, k-cavd-89, m-aogdc-91, m-cha-91, m-ept-92, m-loq-93, m-lpltw-84, rs-oprat-92, s-chdch-86, s-sdlpc-91, sa-dsstg-95, s-fchff-85, y-gctsp-90, ZZZ" +, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 efrat" } @article{a-cspcp-66 -, author = "R. V. Ambarcumjam" -, title = "Convex subclusters of point clusters in the plane" -, journal = "Dokl. Acad. Nauk Armjan. SSR" -, volume = 43 -, year = 1966 -, pages = "12--14" -, update = "02.03 devillers" +, author = "R. V. Ambarcumjam" +, title = "Convex subclusters of point clusters in the plane" +, journal = "Dokl. Acad. Nauk Armjan. SSR" +, volume = 43 +, year = 1966 +, pages = "12--14" +, update = "02.03 devillers" } @inproceedings{a-bbhdn-94 -, author = "N. Amenta" -, title = "Bounded Boxes, {Hausdorff} Distance, and a New Proof of an Interesting {Helly} Theorem" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "340--347" -, cites = "a-htglp-93, a-htglp-93t, abb-amps-91, ak-srtat-89, a-ltahd-83, cghkkk-gpmem-93, c-lvalp-88, dmr-fmaap-93, dgk-htir-63, e-hrctt-93, gm-csfs-61, hks-uevsi-91, l-htpuc-68, m-gofvc-94, msw-sblp-92, m-tphpu-73, s-lpchm-90, sw-cblpr-92, w-sedbe-91, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "N. Amenta" +, title = "Bounded Boxes, {Hausdorff} Distance, and a New Proof of an Interesting {Helly} Theorem" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "340--347" +, cites = "a-htglp-93, a-htglp-93t, abb-amps-91, ak-srtat-89, a-ltahd-83, cghkkk-gpmem-93, c-lvalp-88, dmr-fmaap-93, dgk-htir-63, e-hrctt-93, gm-csfs-61, hks-uevsi-91, l-htpuc-68, m-gofvc-94, msw-sblp-92, m-tphpu-73, s-lpchm-90, sw-cblpr-92, w-sedbe-91, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @incollection{a-cgs-97 -, author = "N. Amenta" -, title = "Computational geometry software" -, chapter = 52 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "951--960" -, update = "97.11 orourke" +, author = "N. Amenta" +, title = "Computational geometry software" +, chapter = 52 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "951--960" +, update = "97.11 orourke" } @misc{a-dcgs- -, author = "Nina Amenta" -, title = "Directory of Computational Geometry Software" -, url = "https://www.geom.uiuc.edu/software/cglist/" -, update = "97.03 tamassia" +, author = "Nina Amenta" +, title = "Directory of Computational Geometry Software" +, url = "https://www.geom.uiuc.edu/software/cglist/" +, update = "97.03 tamassia" } @inproceedings{a-fltao-92 -, author = "N. Amenta" -, title = "Finding a line transversal of axial objects in three dimensions" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "66--71" +, author = "N. Amenta" +, title = "Finding a line transversal of axial objects in three dimensions" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "66--71" } @inproceedings{a-fpf-96 -, author = "Nina Amenta" -, title = "Four-polytopes and a funeral" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V1--V2" -, cites = "az-ssp-96, almp-gsgv-95, km-hgisa-72, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Nina Amenta" +, title = "Four-polytopes and a funeral" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V1--V2" +, cites = "az-ssp-96, almp-gsgv-95, km-hgisa-72, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @phdthesis{a-htglp-93t -, author = "N. Amenta" -, title = "Helly Theorems and Generalized Linear Programming" -, school = "Geometry Center" -, address = "Minneapolis, MN" -, year = 1993 -, note = "Technical Report GCG61" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "N. Amenta" +, title = "Helly Theorems and Generalized Linear Programming" +, school = "Geometry Center" +, address = "Minneapolis, MN" +, year = 1993 +, note = "Technical Report GCG61" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{a-htglp-93 -, author = "N. Amenta" -, title = "Helly theorems and generalized linear programming" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "63--72" -, cites = "a-fltao-92, ad-ahdsp-90, ah-cahti-91, agpw-tinhn-, cm-ltdao-93, c-lvalp-88, dgk-htir-63, d-cdnsm-92, d-mstia-86, d-ccpac-92, e-hrctt-93, ew-spdtl-89, gpw-gtt-93, gm-csfs-61, h-bchn-79, km-accvd-91, msw-sblp-92, m-ltalp-83, m-bsb-89, pr-rn-92, r-lie-89, s-lpchm-90, sw-cblpr-92, t-pgcct-89, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "N. Amenta" +, title = "Helly theorems and generalized linear programming" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "63--72" +, cites = "a-fltao-92, ad-ahdsp-90, ah-cahti-91, agpw-tinhn-, cm-ltdao-93, c-lvalp-88, dgk-htir-63, d-cdnsm-92, d-mstia-86, d-ccpac-92, e-hrctt-93, ew-spdtl-89, gpw-gtt-93, gm-csfs-61, h-bchn-79, km-accvd-91, msw-sblp-92, m-ltalp-83, m-bsb-89, pr-rn-92, r-lie-89, s-lpchm-90, sw-cblpr-92, t-pgcct-89, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{a-httgl-94 -, author = "N. Amenta" -, title = "Helly-type theorems and generalized linear programming" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "241--261" -, succeeds = "a-htglp-93" -, update = "95.01 matousek+smid" +, author = "N. Amenta" +, title = "Helly-type theorems and generalized linear programming" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "241--261" +, succeeds = "a-htglp-93" +, update = "95.01 matousek+smid" } @inproceedings{a-ktpcs-96 -, author = "N. Amenta" -, title = "$k$-{Transversals} of parallel convex sets" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "80--86" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "N. Amenta" +, title = "$k$-{Transversals} of parallel convex sets" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "80--86" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{ab-srvf-98 -, author = "Nina Amenta and Marshall Bern" -, title = "Surface reconsruction by {Voronoi} filtering" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, site = "Minneapolis" -, year = 1998 -, pages = "39--48" -, precedes = "ab-srvf-99" -, update = "00.03 devillers" +, author = "Nina Amenta and Marshall Bern" +, title = "Surface reconsruction by {Voronoi} filtering" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, site = "Minneapolis" +, year = 1998 +, pages = "39--48" +, precedes = "ab-srvf-99" +, update = "00.03 devillers" } @article{ab-srvf-99 -, author = "Nina Amenta and Marshall Bern" -, title = "Surface Reconstruction by {Voronoi} Filtering" -, journal = "Discrete Comput. Geom." -, volume = 22 -, number = 4 -, year = 1999 -, pages = "481--504" -, succeeds = "ab-srvf-98" -, update = "00.03 devillers, 99.11 held" +, author = "Nina Amenta and Marshall Bern" +, title = "Surface Reconstruction by {Voronoi} Filtering" +, journal = "Discrete Comput. Geom." +, volume = 22 +, number = 4 +, year = 1999 +, pages = "481--504" +, succeeds = "ab-srvf-98" +, update = "00.03 devillers, 99.11 held" } @inproceedings{abe-oppms-97 -, author = "N. Amenta and M. Bern and D. Eppstein" -, title = "Optimal Point Placement for Mesh Smoothing" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1997 -, pages = "528--537" -, update = "97.03 held" +, author = "N. Amenta and M. Bern and D. Eppstein" +, title = "Optimal Point Placement for Mesh Smoothing" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1997 +, pages = "528--537" +, update = "97.03 held" } @techreport{abe-cbscc-97 -, author = "N. Amenta and M. Bern and D. Eppstein" -, title = "The Crust and the $\beta$-Skeleton: Combinatorial Curve Reconst ruction" -, type = "Research {Report}" -, institution = "Xerox PARC" -, year = 1997 -, precedes = "abe-cbscc-98" -, update = "00.03 devillers, 98.03 devillers" +, author = "N. Amenta and M. Bern and D. Eppstein" +, title = "The Crust and the $\beta$-Skeleton: Combinatorial Curve Reconst ruction" +, type = "Research {Report}" +, institution = "Xerox PARC" +, year = 1997 +, precedes = "abe-cbscc-98" +, update = "00.03 devillers, 98.03 devillers" } @article{abe-cbscc-98 -, author = "Nina Amenta and Marshall Bern and David Eppstein" -, title = "The Crust and the $\beta$-Skeleton: Combinatorial Curve Reconstruction" -, journal = "Graphical Models and Image Processing" -, volume = 60 -, year = 1998 -, pages = "125--135" -, url = "http://www.geom.umn.edu/~nina/papers/crust.ps.gz" -, comments = "\url{http://www.geom.umn.edu/~nina/papers/crust.ps.gz}" -, succeeds = "abe-cbscc-97" -, update = "02.03 wenger, 00.03 devillers+orourke" +, author = "Nina Amenta and Marshall Bern and David Eppstein" +, title = "The Crust and the $\beta$-Skeleton: Combinatorial Curve Reconstruction" +, journal = "Graphical Models and Image Processing" +, volume = 60 +, year = 1998 +, pages = "125--135" +, url = "http://www.geom.umn.edu/~nina/papers/crust.ps.gz" +, comments = "\url{http://www.geom.umn.edu/~nina/papers/crust.ps.gz}" +, succeeds = "abe-cbscc-97" +, update = "02.03 wenger, 00.03 devillers+orourke" } @article{abet-rdcp-00 -, author = "N. Amenta and M. Bern and D. Eppstein and S.-H. Teng" -, title = "Regression Depth and Center Points" -, journal = "Discrete Comput. Geom." -, volume = 23 -, year = 2000 -, pages = "305--323" -, update = "01.11 smid" +, author = "N. Amenta and M. Bern and D. Eppstein and S.-H. Teng" +, title = "Regression Depth and Center Points" +, journal = "Discrete Comput. Geom." +, volume = 23 +, year = 2000 +, pages = "305--323" +, update = "01.11 smid" } @inproceedings{abk-nvbsr-98 -, author = "N. Amenta and M. Bern and M. Kamvysselis" -, title = "A New {Voronoi}-Based Surface Reconstruction Algorithm" -, booktitle = "Proc. SIGGRAPH '98" -, site = "Orlando, FL" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, month = jul -, year = 1998 -, pages = "415--412" -, update = "00.03 orourke, 98.11 held" +, author = "N. Amenta and M. Bern and M. Kamvysselis" +, title = "A New {Voronoi}-Based Surface Reconstruction Algorithm" +, booktitle = "Proc. SIGGRAPH '98" +, site = "Orlando, FL" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, month = jul +, year = 1998 +, pages = "415--412" +, update = "00.03 orourke, 98.11 held" } @unpublished{ac-opdfh-99 -, author = "N. Amenta and S. Choi" -, title = "One-pass {Delaunay} filtering for homeomorphic {3D} surface reconstruction" -, year = 1999 -, note = "Manuscript" -, update = "00.03 orourke" +, author = "N. Amenta and S. Choi" +, title = "One-pass {Delaunay} filtering for homeomorphic {3D} surface reconstruction" +, year = 1999 +, note = "Manuscript" +, update = "00.03 orourke" } % title page uses initials only @inproceedings{acdl-sahsr-00 -, author = "N. Amenta and S. Choi and T. K. Dey and N. Leekha" -, title = "A Simple Algorithm for Homeomorphic Surface Reconstruction" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "213--222" -, update = "00.11 jones" +, author = "N. Amenta and S. Choi and T. K. Dey and N. Leekha" +, title = "A Simple Algorithm for Homeomorphic Surface Reconstruction" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "213--222" +, update = "00.11 jones" } @article{ack-pcubm-01 -, author = "N. Amenta and S. Choi and R. K. Kolluri" -, title = "The power crust, unions of balls, and the medial axis transform" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "127--153" -, update = "01.11 smid" +, author = "N. Amenta and S. Choi and R. K. Kolluri" +, title = "The power crust, unions of balls, and the medial axis transform" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "127--153" +, update = "01.11 smid" } @inproceedings{ak-aeub-00 -, author = "Nina Amenta and Ravi Krishna Kolluri" -, title = "Accurate and Efficient Unions of Balls" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "119--128" -, update = "00.11 jones" +, author = "Nina Amenta and Ravi Krishna Kolluri" +, title = "Accurate and Efficient Unions of Balls" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "119--128" +, update = "00.11 jones" } @article{ak-maub-01 -, author = "N. Amenta and R. K. Kolluri" -, title = "The medial axis of a union of balls" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "25--37" -, update = "01.11 smid" +, author = "N. Amenta and R. K. Kolluri" +, title = "The medial axis of a union of balls" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "25--37" +, update = "01.11 smid" } @inproceedings{almp-gsgv-95 -, author = "N. Amenta and S. Levy and T. Munzner and M. Philips" -, title = "Geomview: A System for Geometric Visualization" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C12--C13" -, keywords = "software, visualization" -, cites = "ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex, 95.09 mitchell" +, author = "N. Amenta and S. Levy and T. Munzner and M. Philips" +, title = "Geomview: A System for Geometric Visualization" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C12--C13" +, keywords = "software, visualization" +, cites = "ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex, 95.09 mitchell" } @inproceedings{az-ssp-96 -, author = "Nina Amenta and G{\"u}nter Ziegler" -, title = "Shadows and Slices of Polytopes" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "10--19" -, cites = "aaas-lpmpc-97, af-pachv-92, b-smpa-87, c-osrch-95, ceg-ccc-89, gz-rsakm-94, gs-capof-55, g-wccsv-83, g-csa-94, km-hgisa-72, m-loq-93, m-ccplp-80, pf-ctffc-95, pssbm-cffef-96, s-chdch-86, s-cpdoc-87, z-lp-94, ZZZ" -, update = "01.04 icking, 97.11 bibrelex, 96.05 efrat" +, author = "Nina Amenta and G{\"u}nter Ziegler" +, title = "Shadows and Slices of Polytopes" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "10--19" +, cites = "aaas-lpmpc-97, af-pachv-92, b-smpa-87, c-osrch-95, ceg-ccc-89, gz-rsakm-94, gs-capof-55, g-wccsv-83, g-csa-94, km-hgisa-72, m-loq-93, m-ccplp-80, pf-ctffc-95, pssbm-cffef-96, s-chdch-86, s-cpdoc-87, z-lp-94, ZZZ" +, update = "01.04 icking, 97.11 bibrelex, 96.05 efrat" } @inproceedings{ab-tdpia-92 -, author = "A. Amir and G. Benson" -, title = "Two-dimensional periodicity and its applications" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "440--452" +, author = "A. Amir and G. Benson" +, title = "Two-dimensional periodicity and its applications" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "440--452" } @inproceedings{af-e2dam-91 -, author = "A. Amir and M. Farach" -, title = "Efficient $2$-dimensional approximate matching of non-rectangular figures" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "212--223" +, author = "A. Amir and M. Farach" +, title = "Efficient $2$-dimensional approximate matching of non-rectangular figures" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "212--223" } @article{a-afccf-90 -, author = "I. Amir" -, title = "Algorithms for finding the center of circular fiducials" -, journal = "Comput. Vision Graph. Image Process." -, volume = 49 -, year = 1990 -, pages = "398--406" -, update = "98.11 bibrelex" +, author = "I. Amir" +, title = "Algorithms for finding the center of circular fiducials" +, journal = "Comput. Vision Graph. Image Process." +, volume = 49 +, year = 1990 +, pages = "398--406" +, update = "98.11 bibrelex" } @techreport{a-pmwt-90 -, author = "Efthymios Anagnostou" -, title = "Progress in Minimum Weight Triangulation" -, type = "Technical Report 232/90" -, institution = "Department of Computer Science, University of Toronto" -, year = 1990 -, update = "98.07 bibrelex" +, author = "Efthymios Anagnostou" +, title = "Progress in Minimum Weight Triangulation" +, type = "Technical Report 232/90" +, institution = "Department of Computer Science, University of Toronto" +, year = 1990 +, update = "98.07 bibrelex" } @article{ac-ptimw-93 -, author = "E. Anagnostou and D. Corneil" -, title = "Polynomial time instances of the minimum weight triangulation problem" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "247--259" -, update = "96.09 devillers" +, author = "E. Anagnostou and D. Corneil" +, title = "Polynomial time instances of the minimum weight triangulation problem" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "247--259" +, update = "96.09 devillers" } @inproceedings{agp-tstd-90 -, author = "E. G. Anagnostou and Leonidas J. Guibas and V. G. Polimenis" -, title = "Topological sweeping in three dimensions" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "310--317" -, keywords = "topological sweep, three-dimensional" -, update = "98.03 mitchell" +, author = "E. G. Anagnostou and Leonidas J. Guibas and V. G. Polimenis" +, title = "Topological sweeping in three dimensions" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "310--317" +, keywords = "topological sweep, three-dimensional" +, update = "98.03 mitchell" } @inproceedings{arrms-dgbb2-97 -, author = "Brad Andalman and Kathy Ryall and Wheeler Ruml and Joe Marks and Stuart Shieber" -, title = "Design Gallery Browsers Based on {2D} and {3D} Graph Drawing" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "322--329" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Brad Andalman and Kathy Ryall and Wheeler Ruml and Joe Marks and Stuart Shieber" +, title = "Design Gallery Browsers Based on {2D} and {3D} Graph Drawing" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "322--329" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @book{a-caa-73 -, author = "M. R. Anderberg" -, title = "Cluster Analysis for Applications" -, publisher = "Academic Press" -, address = "New York" -, year = 1973 -, comments = "Unchecked reference from PRNN" -, update = "98.07 agarwal" +, author = "M. R. Anderberg" +, title = "Cluster Analysis for Applications" +, publisher = "Academic Press" +, address = "New York" +, year = 1973 +, comments = "Unchecked reference from PRNN" +, update = "98.07 agarwal" } @article{a-readc-78 -, author = "K. R. Anderson" -, title = "A reevaluation of an efficient algorithm for determining the convex hull of a finite planar set" -, journal = "Inform. Process. Lett." -, volume = 7 -, number = 1 -, year = 1978 -, pages = "53--55" -, update = "97.11 bibrelex, 95.05 korneenko" +, author = "K. R. Anderson" +, title = "A reevaluation of an efficient algorithm for determining the convex hull of a finite planar set" +, journal = "Inform. Process. Lett." +, volume = 7 +, number = 1 +, year = 1978 +, pages = "53--55" +, update = "97.11 bibrelex, 95.05 korneenko" } @article{aw-omht-96 -, author = "L. Anderson and R. Wenger" -, title = "Oriented Matroids and Hyperplane Transversals" -, journal = "Adv. Math." -, volume = 119 -, year = 1996 -, pages = "117--125" -, update = "01.07 wenger" +, author = "L. Anderson and R. Wenger" +, title = "Oriented Matroids and Hyperplane Transversals" +, journal = "Adv. Math." +, volume = 119 +, year = 1996 +, pages = "117--125" +, update = "01.07 wenger" } @incollection{abb-paa-90 -, author = "R. Anderson and P. Beame and E. Brisson" -, title = "Parallel algorithms for arrangements" -, booktitle = "ACM Sympos. Paral. Algorithms and Architectures" -, year = 1990 -, pages = "298--306" -, keywords = "parallel computations, arrangement" -, update = "95.09 agarwal+korneenko, 95.05 korneenko" +, author = "R. Anderson and P. Beame and E. Brisson" +, title = "Parallel algorithms for arrangements" +, booktitle = "ACM Sympos. Paral. Algorithms and Architectures" +, year = 1990 +, pages = "298--306" +, keywords = "parallel computations, arrangement" +, update = "95.09 agarwal+korneenko, 95.05 korneenko" } @article{abb-paa-96 -, author = "Richard Anderson and Paul Beame and Erik Brisson" -, title = "Parallel Algorithms for Arrangements" -, journal = "Algorithmica" -, volume = 15 -, year = 1996 -, pages = "104--125" -, update = "98.03 agarwal" +, author = "Richard Anderson and Paul Beame and Erik Brisson" +, title = "Parallel Algorithms for Arrangements" +, journal = "Algorithmica" +, volume = 15 +, year = 1996 +, pages = "104--125" +, update = "98.03 agarwal" } @inproceedings{aks-oa1dt-90 -, author = "R. Anderson and S. Kahan and M. Schlag" -, title = "An {$O(n \log n)$} algorithm for $1$-d tile compaction" -, editor = "M. Nagl" -, booktitle = "Graph-Theoretic Concepts in Computer Science" -, series = "Lecture Notes Comput. Sci." -, volume = 411 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "287--301" -, update = "98.03 bibrelex" +, author = "R. Anderson and S. Kahan and M. Schlag" +, title = "An {$O(n \log n)$} algorithm for $1$-d tile compaction" +, editor = "M. Nagl" +, booktitle = "Graph-Theoretic Concepts in Computer Science" +, series = "Lecture Notes Comput. Sci." +, volume = 411 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "287--301" +, update = "98.03 bibrelex" } @inproceedings{am-dplr-88 -, author = "R. Anderson and G. Miller" -, title = "Deterministic parallel list ranking" -, booktitle = "Proc. 3rd Aegean Workshop Computing" -, series = "Lecture Notes Comput. Sci." -, volume = 319 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "81--90" -, update = "97.11 bibrelex" +, author = "R. Anderson and G. Miller" +, title = "Deterministic parallel list ranking" +, booktitle = "Proc. 3rd Aegean Workshop Computing" +, series = "Lecture Notes Comput. Sci." +, volume = 319 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "81--90" +, update = "97.11 bibrelex" } @inproceedings{a-palc-92 -, author = "R. J. Anderson" -, title = "Primitives for asynchronous list compression" -, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." -, year = 1992 -, pages = "199--208" -, update = "96.09 orourke" +, author = "R. J. Anderson" +, title = "Primitives for asynchronous list compression" +, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." +, year = 1992 +, pages = "199--208" +, update = "96.09 orourke" } @article{amw-paabp-89 -, author = "R. J. Anderson and E. W. Mayr and M. K. Warmuth" -, title = "Parallel approximation algorithms for bin packing" -, journal = "Inform. Comput." -, volume = 82 -, year = 1989 -, pages = "262--277" -, update = "96.09 orourke" +, author = "R. J. Anderson and E. W. Mayr and M. K. Warmuth" +, title = "Parallel approximation algorithms for bin packing" +, journal = "Inform. Comput." +, volume = 82 +, year = 1989 +, pages = "262--277" +, update = "96.09 orourke" } @article{am-dplr-91 -, author = "R. J. Anderson and G. L. Miller" -, title = "An optimal algorithm for intersecting line segments in the plane" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "859--868" -, update = "98.07 bibrelex" +, author = "R. J. Anderson and G. L. Miller" +, title = "An optimal algorithm for intersecting line segments in the plane" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "859--868" +, update = "98.07 bibrelex" } @inproceedings{aw-wfpau-91 -, author = "R. J. Anderson and H. Woll" -, title = "Wait-free parallel algorithms for the union-find problem" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "370--380" -, update = "96.09 orourke" +, author = "R. J. Anderson and H. Woll" +, title = "Wait-free parallel algorithms for the union-find problem" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "370--380" +, update = "96.09 orourke" } @article{ahnr-slt-98 -, author = "Andersson and Hagerup and Nilsson and Raman" -, title = "Sorting in linear time?" -, journal = "J. Comput. Syst. Sci." -, volume = 57 -, year = 1998 -, pages = "74--93" -, keywords = "" -, update = "98.11 pocchiola" +, author = "Andersson and Hagerup and Nilsson and Raman" +, title = "Sorting in linear time?" +, journal = "J. Comput. Syst. Sci." +, volume = 57 +, year = 1998 +, pages = "74--93" +, keywords = "" +, update = "98.11 pocchiola" } @inproceedings{ahhp-fms-94 -, author = "Arne Andersson and Torben Hagerup and Johan H{\.a}astad and Ola Petersson" -, title = "Faster Multidimensional Searching" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "" -, update = "94.01 jones" +, author = "Arne Andersson and Torben Hagerup and Johan H{\.a}astad and Ola Petersson" +, title = "Faster Multidimensional Searching" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "" +, update = "94.01 jones" } @article{aiko-bstao-90 -, author = "Arne Andersson and Christian Icking and Rolf Klein and Thomas Ottmann" -, title = "Binary Search Trees of Almost Optimal Height" -, journal = "Acta Inform." -, volume = 28 -, year = 1990 -, pages = "165--178" -, update = "98.11 bibrelex" +, author = "Arne Andersson and Christian Icking and Rolf Klein and Thomas Ottmann" +, title = "Binary Search Trees of Almost Optimal Height" +, journal = "Acta Inform." +, volume = 28 +, year = 1990 +, pages = "165--178" +, update = "98.11 bibrelex" } @inproceedings{amrt-sdarq-96 -, author = "Arne Andersson and Peter Bro Miltersen and S{\o}ren Riis and Mikkel Thorup" -, title = "Static Dictionaries on {$\mathit{AC}^0$} {RAMs}: Query Time {$\Theta(\sqrt(\log n/\log \log n))$} is Necessary and Sufficient" -, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1996 -, pages = "441--450" -, update = "00.11 smid, 00.07 agarwal" +, author = "Arne Andersson and Peter Bro Miltersen and S{\o}ren Riis and Mikkel Thorup" +, title = "Static Dictionaries on {$\mathit{AC}^0$} {RAMs}: Query Time {$\Theta(\sqrt(\log n/\log \log n))$} is Necessary and Sufficient" +, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1996 +, pages = "441--450" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{as-drs-95 -, author = "Arne Andersson and Kurt Swanson" -, title = "On the Difficulty of Range Searching" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "473--481" -, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" +, author = "Arne Andersson and Kurt Swanson" +, title = "On the Difficulty of Range Searching" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "473--481" +, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" } @article{as-drs-97 -, author = "A. Andersson and K. Swanson" -, title = "On the Difficulty of Range Searching" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "115--122" -, update = "98.03 smid" +, author = "A. Andersson and K. Swanson" +, title = "On the Difficulty of Range Searching" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "115--122" +, update = "98.03 smid" } @article{adps-pptpt-95 -, author = "L.-E. Andersson and S. M. Dorney and T. J. Peters and N. F. Stewart" -, title = "Polyhedral Perturbations that Preserve Topological Form" -, journal = "Comput. Aided Geom. Design" -, volume = 12 -, number = 8 -, month = dec -, year = 1995 -, pages = "785--799" -, update = "99.11 bibrelex, 97.07 held" +, author = "L.-E. Andersson and S. M. Dorney and T. J. Peters and N. F. Stewart" +, title = "Polyhedral Perturbations that Preserve Topological Form" +, journal = "Comput. Aided Geom. Design" +, volume = 12 +, number = 8 +, month = dec +, year = 1995 +, pages = "785--799" +, update = "99.11 bibrelex, 97.07 held" } @article{as-eacs-01 -, author = "M. V. A. Andrade and J. Stolfi" -, title = "Exact algorithms for circles on the sphere" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "267--290" -, update = "01.07 smid" +, author = "M. V. A. Andrade and J. Stolfi" +, title = "Exact algorithms for circles on the sphere" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "267--290" +, update = "01.07 smid" } @unpublished{a-srvg-89 -, author = "T. Andrae" -, title = "Some results on visibility graphs" -, year = 1989 -, note = "Preprint" -, precedes = "a-srvg-92" -, update = "98.07 bibrelex" +, author = "T. Andrae" +, title = "Some results on visibility graphs" +, year = 1989 +, note = "Preprint" +, precedes = "a-srvg-92" +, update = "98.07 bibrelex" } @article{a-srvg-92 -, author = "T. Andreae" -, title = "Some Results on Visibility Graphs" -, journal = "Discrete Appl. Math." -, volume = 40 -, year = 1992 -, pages = "5--17" -, keywords = "graph drawing" -, succeeds = "a-srvg-89" -, update = "98.07 bibrelex, 94.01 tamassia" +, author = "T. Andreae" +, title = "Some Results on Visibility Graphs" +, journal = "Discrete Appl. Math." +, volume = 40 +, year = 1992 +, pages = "5--17" +, keywords = "graph drawing" +, succeeds = "a-srvg-89" +, update = "98.07 bibrelex, 94.01 tamassia" } @article{a-cpls-70 -, author = "E. M. Andreev" -, title = "On convex polyhedra in {Lobacevskii} space" -, journal = "Math. USSR Sbornik" -, volume = 10 -, number = 3 -, year = 1970 -, pages = "413--440" -, update = "97.11 bibrelex" +, author = "E. M. Andreev" +, title = "On convex polyhedra in {Lobacevskii} space" +, journal = "Math. USSR Sbornik" +, volume = 10 +, number = 3 +, year = 1970 +, pages = "413--440" +, update = "97.11 bibrelex" } @article{a-cpfvl-70 -, author = "E. M. Andreev" -, title = "On convex polyhedra of finite volume in {Lobacevskii} space" -, journal = "Math. USSR Sbornik" -, volume = 12 -, number = 2 -, year = 1970 -, pages = "259--270" -, update = "97.11 bibrelex" +, author = "E. M. Andreev" +, title = "On convex polyhedra of finite volume in {Lobacevskii} space" +, journal = "Math. USSR Sbornik" +, volume = 12 +, number = 2 +, year = 1970 +, pages = "259--270" +, update = "97.11 bibrelex" } @article{a-acap-89 -, author = "R. D. Andreev" -, title = "Algorithm for clipping arbitrary polygons" -, journal = "Comput. Graph. Forum" -, volume = 8 -, number = 3 -, year = 1989 -, pages = "183--191" -, keywords = "polygon, clipping" -, update = "95.05 korneenko" +, author = "R. D. Andreev" +, title = "Algorithm for clipping arbitrary polygons" +, journal = "Comput. Graph. Forum" +, volume = 8 +, number = 3 +, year = 1989 +, pages = "183--191" +, keywords = "polygon, clipping" +, update = "95.05 korneenko" } @article{a-aeach-79 -, author = "A. M. Andrew" -, title = "Another efficient algorithm for convex hulls in two dimensions" -, journal = "Inform. Process. Lett." -, volume = 9 -, number = 5 -, year = 1979 -, pages = "216--219" -, keywords = "designing algorithms, convex hull, two-dimensional" +, author = "A. M. Andrew" +, title = "Another efficient algorithm for convex hulls in two dimensions" +, journal = "Inform. Process. Lett." +, volume = 9 +, number = 5 +, year = 1979 +, pages = "216--219" +, keywords = "designing algorithms, convex hull, two-dimensional" } @inproceedings{a-fcagi-94 -, author = "D. S. Andrews" -, title = "Further comparison of algorithms for geometric intersection problems" -, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" -, site = "Edinburgh, UK" -, year = 1994 -, pages = "709--724" -, update = "98.03 bibrelex" +, author = "D. S. Andrews" +, title = "Further comparison of algorithms for geometric intersection problems" +, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" +, site = "Edinburgh, UK" +, year = 1994 +, pages = "709--724" +, update = "98.03 bibrelex" } @inproceedings{as-gginc-95 -, author = "D. Scott Andrews and Jack Snoeyink" -, title = "Geometry in {GIS} is not Combinatorial: {Segment} Intersection for Polygon Overlay" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C24--C25" -, keywords = "" -, cites = "a-fcagi-94, bo-arcgi-79, c-stsar-94, f-eicld-89, fkn-vsgpt-80, o-tcg-93, ps-crrbs-94, p-csarg-90, s-dasds-90, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "D. Scott Andrews and Jack Snoeyink" +, title = "Geometry in {GIS} is not Combinatorial: {Segment} Intersection for Polygon Overlay" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C24--C25" +, keywords = "" +, cites = "a-fcagi-94, bo-arcgi-79, c-stsar-94, f-eicld-89, fkn-vsgpt-80, o-tcg-93, ps-crrbs-94, p-csarg-90, s-dasds-90, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{a-lbvsc-63 -, author = "G. E. Andrews" -, title = "A lower bound for the volume of strictly convex bodies with many boundary lattice points" -, journal = "Trans. Amer. Math. Soc." -, volume = 106 -, year = 1963 -, pages = "270--279" -, keywords = "volume" -, update = "95.05 korneenko" +, author = "G. E. Andrews" +, title = "A lower bound for the volume of strictly convex bodies with many boundary lattice points" +, journal = "Trans. Amer. Math. Soc." +, volume = 106 +, year = 1963 +, pages = "270--279" +, keywords = "volume" +, update = "95.05 korneenko" } @book{a-imtpr-72 -, author = "H. C. Andrews" -, title = "Introduction to Mathematical Techniques in Pattern Recognition" -, publisher = "Wiley-Interscience" -, address = "New York" -, year = 1972 -, update = "98.03 bibrelex" +, author = "H. C. Andrews" +, title = "Introduction to Mathematical Techniques in Pattern Recognition" +, publisher = "Wiley-Interscience" +, address = "New York" +, year = 1972 +, update = "98.03 bibrelex" } @article{al-pacag-95 -, author = "M. Andrews and D. T. Lee" -, title = "Parallel algorithms on circular-arc graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "117--141" -, update = "96.09 devillers" +, author = "M. Andrews and D. T. Lee" +, title = "Parallel algorithms on circular-arc graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "117--141" +, update = "96.09 devillers" } @unpublished{aahsw-rksjf-98 -, author = "Artur Andrzejak and Boris Aronov and Sariel Har-Peled and Raimund Seidel and Emo Welzl" -, title = "Results on $k$-sets and $j$-facets via continuous motion arguments" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "192--199" -, update = "98.11 aronov, 98.03 agarwal" +, author = "Artur Andrzejak and Boris Aronov and Sariel Har-Peled and Raimund Seidel and Emo Welzl" +, title = "Results on $k$-sets and $j$-facets via continuous motion arguments" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "192--199" +, update = "98.11 aronov, 98.03 agarwal" } @article{as-fqna-94 -, author = "C. H. Ang and H. Samet" -, title = "A Fast Quadtree Normalization Algorithm" -, journal = "Pattern Recogn. Lett." -, volume = 15 -, month = jan -, year = 1994 -, pages = "57--63" -, update = "96.05 efrat" +, author = "C. H. Ang and H. Samet" +, title = "A Fast Quadtree Normalization Algorithm" +, journal = "Pattern Recogn. Lett." +, volume = 15 +, month = jan +, year = 1994 +, pages = "57--63" +, update = "96.05 efrat" } @incollection{as-ndpq-90 -, author = "C. H. Ang and H. Samet" -, title = "Node distribution in a {PR} quadtree" -, editor = "A. Buchmann and O. G{\"u}nther and T. R. Smith and Y.-F. Wang" -, booktitle = "Design and Implementation of Large Spatial Databases" -, series = "Lecture Notes Comput. Sci." -, volume = 409 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "223--252" -, update = "99.11 bibrelex, 96.09 agarwal, 96.05 efrat" +, author = "C. H. Ang and H. Samet" +, title = "Node distribution in a {PR} quadtree" +, editor = "A. Buchmann and O. G{\"u}nther and T. R. Smith and Y.-F. Wang" +, booktitle = "Design and Implementation of Large Spatial Databases" +, series = "Lecture Notes Comput. Sci." +, volume = 409 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "223--252" +, update = "99.11 bibrelex, 96.09 agarwal, 96.05 efrat" } @article{ass-nreq-90 -, author = "C. H. Ang and H. Samet and C. A. Shaffer" -, title = "A new region expansion for quadtrees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 12 -, number = 7 -, month = jul -, year = 1990 -, pages = "682--686" -, note = "(also Proceedings of the Third International - Symposium on Spatial Data Handling, Sydney, - Australia, August 1988, 19--37)" -, update = "96.05 efrat" +, author = "C. H. Ang and H. Samet and C. A. Shaffer" +, title = "A new region expansion for quadtrees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 12 +, number = 7 +, month = jul +, year = 1990 +, pages = "682--686" +, note = "(also Proceedings of the Third International + Symposium on Spatial Data Handling, Sydney, + Australia, August 1988, 19--37)" +, update = "96.05 efrat" } @inproceedings{ap-sstvc-01 -, author = "P. Angelier and M. Pocchiola" -, title = "A sum of squares theorem for visibility complexes" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "302--311" -, note = "" -, update = "01.11 pocchiola" +, author = "P. Angelier and M. Pocchiola" +, title = "A sum of squares theorem for visibility complexes" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "302--311" +, note = "" +, update = "01.11 pocchiola" } @inproceedings{ap-ctvg-00 -, author = "Pierre Angelier and Michel Pocchiola" -, title = "On Computing Tangent Visibility Graphs" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "108--111" -, update = "00.03 bibrelex" +, author = "Pierre Angelier and Michel Pocchiola" +, title = "On Computing Tangent Visibility Graphs" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "108--111" +, update = "00.03 bibrelex" } @inproceedings{apr-tsm-99 -, author = "Pierre Angelier and Michel Pocchiola and St{\'e}phane Rivi{\`e}re" -, title = "On the Topological Sweep Method" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = 179 -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Pierre Angelier and Michel Pocchiola and St{\'e}phane Rivi{\`e}re" +, title = "On the Topological Sweep Method" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = 179 +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{am-qtad2-86 -, author = "Ian O. Angell and Richard E. M. Moore" -, title = "Quad-Tree Algorithm For Displaying a 2-Dimensional Slice Of An $n$-Dimensional Weighted {Voronoi} Tessellation" -, booktitle = "EUROGRAPHICS '86: Proceedings of the European Computer Graphics Conference and Exhibition --- The Computer Interface." -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1986 -, pages = "19--27" -, keywords = "Voronoi tessellation, computational geometry" -, annote = "Multiplicative weights. Quadtree Method: find closest - (weighted) point to square centre, then construct - bisectors of this point with all others to see if any - intersect square and subdivide if necessary." -, abstract = "A tessellation exists in N-dimensional Euclidean space - which is best known either in purely 2-dimensional - contexts or in the purely 3-dimensional --- often workers - familiar with the one paying no regard to the other --- - though the utility of this tessellation in 2-, 3- and - even higher dimensions is vast. In 2-dimensions - applications exist in fields as disparate as - archaeology, astronomy, biology, economics, forestry, - geography, metallurgy and virology, and in many other - fields too. In 3-dimensions applications are equally - varied: for example in anatomy, astronomy, botany, - chemistry, crystallography, and stereology. It has - major importance in the investigation of the structure - of liquids, and in other aspects of physics. - Applications in dimensions higher than three, although - comparatively rare, do exist --- and might be greater if - such tessellations were easier to calculate. 10 refs." +, author = "Ian O. Angell and Richard E. M. Moore" +, title = "Quad-Tree Algorithm For Displaying a 2-Dimensional Slice Of An $n$-Dimensional Weighted {Voronoi} Tessellation" +, booktitle = "EUROGRAPHICS '86: Proceedings of the European Computer Graphics Conference and Exhibition --- The Computer Interface." +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1986 +, pages = "19--27" +, keywords = "Voronoi tessellation, computational geometry" +, annote = "Multiplicative weights. Quadtree Method: find closest + (weighted) point to square centre, then construct + bisectors of this point with all others to see if any + intersect square and subdivide if necessary." +, abstract = "A tessellation exists in N-dimensional Euclidean space + which is best known either in purely 2-dimensional + contexts or in the purely 3-dimensional --- often workers + familiar with the one paying no regard to the other --- + though the utility of this tessellation in 2-, 3- and + even higher dimensions is vast. In 2-dimensions + applications exist in fields as disparate as + archaeology, astronomy, biology, economics, forestry, + geography, metallurgy and virology, and in many other + fields too. In 3-dimensions applications are equally + varied: for example in anatomy, astronomy, botany, + chemistry, crystallography, and stereology. It has + major importance in the investigation of the structure + of liquids, and in other aspects of physics. + Applications in dimensions higher than three, although + comparatively rare, do exist --- and might be greater if + such tessellations were easier to calculate. 10 refs." } @article{am-pdp-89 -, author = "T. A. Angelov and I. S. Manoach" -, title = "A point-in-domain program" -, journal = "Adv. Eng. Softw." -, volume = 11 -, number = 2 -, year = 1989 -, pages = "99--106" -, keywords = "point location, implementation" -, update = "96.09 devillers, 95.05 korneenko" +, author = "T. A. Angelov and I. S. Manoach" +, title = "A point-in-domain program" +, journal = "Adv. Eng. Softw." +, volume = 11 +, number = 2 +, year = 1989 +, pages = "99--106" +, keywords = "point location, implementation" +, update = "96.09 devillers, 95.05 korneenko" } @article{av-fpahc-79 -, author = "D. Angluin and L. G. Valiant" -, title = "Fast Probabilistic Algorithms for {Hamiltonian} Circuits and Matchings" -, journal = "J. Comput. Syst. Sci." -, volume = 18 -, year = 1979 -, pages = "155--193" -, update = "98.03 bibrelex" +, author = "D. Angluin and L. G. Valiant" +, title = "Fast Probabilistic Algorithms for {Hamiltonian} Circuits and Matchings" +, journal = "J. Comput. Syst. Sci." +, volume = 18 +, year = 1979 +, pages = "155--193" +, update = "98.03 bibrelex" } @inproceedings{awz-rnrq-96 -, author = "Dana Angluin and Jeffery Westbrook and Wenhong Zhu" -, title = "Robot Navigation with Range Queries" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '96" -, site = "Philadelphia, PA" -, month = may -, year = 1996 -, pages = "469--478" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "Dana Angluin and Jeffery Westbrook and Wenhong Zhu" +, title = "Robot Navigation with Range Queries" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '96" +, site = "Philadelphia, PA" +, month = may +, year = 1996 +, pages = "469--478" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @inproceedings{adf-efgrs-84 -, author = "S. Ansaldi and L. {De Floriani} and B. Falcidieno" -, title = "Edge-face graph representation of solid objects" -, booktitle = "Poceedings of Workshop on Computer Vision, Representation and Control" -, site = "Annapolis, MD" -, year = 1984 -, pages = "164--169" -, update = "98.03 bibrelex" +, author = "S. Ansaldi and L. {De Floriani} and B. Falcidieno" +, title = "Edge-face graph representation of solid objects" +, booktitle = "Poceedings of Workshop on Computer Vision, Representation and Control" +, site = "Annapolis, MD" +, year = 1984 +, pages = "164--169" +, update = "98.03 bibrelex" } @article{adf-gmsou-85 -, author = "S. Ansaldi and L. {De Floriani} and B. Falcidieno" -, title = "Geometric modeling of solid objects by using a face adjacency graph representation" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, year = 1985 -, pages = "131--139" -, note = "Proc. SIGGRAPH '85" +, author = "S. Ansaldi and L. {De Floriani} and B. Falcidieno" +, title = "Geometric modeling of solid objects by using a face adjacency graph representation" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, year = 1985 +, pages = "131--139" +, note = "Proc. SIGGRAPH '85" } @book{ab-clt-92 -, author = "M. Anthony and N. Biggs" -, title = "Computational Learning Theory" -, publisher = "Cambridge University Press" -, address = "Cambridge" -, year = 1992 -, update = "95.05 agarwal" +, author = "M. Anthony and N. Biggs" +, title = "Computational Learning Theory" +, publisher = "Cambridge University Press" +, address = "Cambridge" +, year = 1992 +, update = "95.05 agarwal" } @article{a-slddf-21 -, author = "L. Antoine" -, title = "Sur l'homeomorphisme de deux figures et de leurs voisinages" -, journal = "J. Math., Ser. 8" -, volume = 4 -, year = 1921 -, pages = "221--235" -, update = "98.07 bibrelex" +, author = "L. Antoine" +, title = "Sur l'homeomorphisme de deux figures et de leurs voisinages" +, journal = "J. Math., Ser. 8" +, volume = 4 +, year = 1921 +, pages = "221--235" +, update = "98.07 bibrelex" } @inproceedings{ag-iad5v-97 -, author = "Fran{\c c}ois Anton and Christopher Gold" -, title = "An Iterative Algorithm for the Determination of {V}oronoi Vertices in Polygonal and Non--Polygonal Domains" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "257--262" -, update = "00.03 bibrelex, 97.11 jones" +, author = "Fran{\c c}ois Anton and Christopher Gold" +, title = "An Iterative Algorithm for the Determination of {V}oronoi Vertices in Polygonal and Non--Polygonal Domains" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "257--262" +, update = "00.03 bibrelex, 97.11 jones" } @inproceedings{am-dldme-00 -, author = "Fran{\c c}ois Anton and Darka Mioc" -, title = "Dynamic {Laguerre} Diagrams Made Easy" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "10--13" -, update = "00.03 bibrelex" +, author = "Fran{\c c}ois Anton and Darka Mioc" +, title = "Dynamic {Laguerre} Diagrams Made Easy" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "10--13" +, update = "00.03 bibrelex" } @inproceedings{asg-iadvv -, author = "Fran{\c c}ois Anton and Jack Snoeyink and Christopher Gold" -, title = "An Iterative Algorithm for the Determination of {Voronoi} Vertices in Polygonal and Non-Polygonal Domains on the Plane and the Sphere" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "33--35" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Fran{\c c}ois Anton and Jack Snoeyink and Christopher Gold" +, title = "An Iterative Algorithm for the Determination of {Voronoi} Vertices in Polygonal and Non-Polygonal Domains on the Plane and the Sphere" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "33--35" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{a-edsau-89 -, author = "J.-I. Aoe" -, title = "An efficient digital search algorithm by using a double-array structure" -, journal = "IEEE Trans. Softw. Eng." -, volume = 15 -, number = 9 -, year = 1989 -, pages = "1066--1077" -, update = "95.05 korneenko" +, author = "J.-I. Aoe" +, title = "An efficient digital search algorithm by using a double-array structure" +, journal = "IEEE Trans. Softw. Eng." +, volume = 15 +, number = 9 +, year = 1989 +, pages = "1066--1077" +, update = "95.05 korneenko" } @inproceedings{a-pah-92 -, author = "Y. Aoki" -, title = "Probing the arrangement of hyperplanes" -, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" -, site = "Kyoto, Japan" -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Y. Aoki" +, title = "Probing the arrangement of hyperplanes" +, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" +, site = "Kyoto, Japan" +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @phdthesis{a-ccra-93 -, author = "Y. Aoki" -, title = "The combinatorial complexity of reconstructing arrangements" -, school = "Department of Information Science, University of Tokyo" -, year = 1993 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "Y. Aoki" +, title = "The combinatorial complexity of reconstructing arrangements" +, school = "Department of Information Science, University of Tokyo" +, year = 1993 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @inproceedings{aiir-pshlr-93 -, author = "Yasukazu Aoki and Hiroshi Imai and Keiko Imai and David Rappaport" -, title = "Probing a Set of Hyperplanes by Lines and Related Problems" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "72--82" -, update = "93.09 milone+mitchell+smid, 93.05 jones" +, author = "Yasukazu Aoki and Hiroshi Imai and Keiko Imai and David Rappaport" +, title = "Probing a Set of Hyperplanes by Lines and Related Problems" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "72--82" +, update = "93.09 milone+mitchell+smid, 93.05 jones" } @inproceedings{aiit-mlcop-90 -, author = "H. Aonuma and H. Imai and K. Imai and T. Tokuyama" -, title = "Maximin location of convex objects in a polygon and related dynamic {Voronoi} diagrams" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "225--234" -, cites = "ass-sulbl-89, aik-vspca-89, a-sdcgp-85, ab-pptr-88, c-pcp-83, ck-plscc-89, f-fapct-85, f-savd-87, i-vdmp-89, isi-mgftc-89, ls-pptmc-87, s-pds-74, t-dmvdt-88, ZZZ" -, update = "97.11 bibrelex" +, author = "H. Aonuma and H. Imai and K. Imai and T. Tokuyama" +, title = "Maximin location of convex objects in a polygon and related dynamic {Voronoi} diagrams" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "225--234" +, cites = "ass-sulbl-89, aik-vspca-89, a-sdcgp-85, ab-pptr-88, c-pcp-83, ck-plscc-89, f-fapct-85, f-savd-87, i-vdmp-89, isi-mgftc-89, ls-pptmc-87, s-pds-74, t-dmvdt-88, ZZZ" +, update = "97.11 bibrelex" } @article{aiit-mpcpr-90 -, author = "H. Aonuma and H. Imai and K. Imai and T. Tokuyama" -, title = "Maximin polygon containment problems and related dynamic {Voronoi} diagrams" -, journal = "Surikaisekikenkyosho Kokyuroku" -, volume = 731 -, year = 1990 -, pages = "177--186" -, note = "Proc. Sympos. Algorithms and Comput. Complexity" -, keywords = "on-line algorithms, convex, location, Voronoi diagram" -, update = "98.07 bibrelex, 95.09 agarwal, 95.05 korneenko" +, author = "H. Aonuma and H. Imai and K. Imai and T. Tokuyama" +, title = "Maximin polygon containment problems and related dynamic {Voronoi} diagrams" +, journal = "Surikaisekikenkyosho Kokyuroku" +, volume = 731 +, year = 1990 +, pages = "177--186" +, note = "Proc. Sympos. Algorithms and Comput. Complexity" +, keywords = "on-line algorithms, convex, location, Voronoi diagram" +, update = "98.07 bibrelex, 95.09 agarwal, 95.05 korneenko" } @inproceedings{aik-vspca-89 -, author = "H. Aonuma and H. Imai and Y. Kambayashi" -, title = "A Visual System of Placing Characters Appropriately in Multimedia Map Databases" -, booktitle = "Visual Database Systems" -, publisher = "North-Holland" -, year = 1989 -, pages = "525--546" -, note = "Proc. IFIP TC2/WG2.6 Working Conf. Visual Database Syst." -, update = "97.11 bibrelex" +, author = "H. Aonuma and H. Imai and Y. Kambayashi" +, title = "A Visual System of Placing Characters Appropriately in Multimedia Map Databases" +, booktitle = "Visual Database Systems" +, publisher = "North-Holland" +, year = 1989 +, pages = "525--546" +, note = "Proc. IFIP TC2/WG2.6 Working Conf. Visual Database Syst." +, update = "97.11 bibrelex" } @article{als-caged-86 -, author = "F. Aoudja and M. Laborie and A. Saint-Paul" -, title = "{CASE}: Automatic Generation of Electrical Diagrams" -, journal = "Comput. Aided Design" -, volume = 18 -, number = 7 -, year = 1986 -, pages = "356--360" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "F. Aoudja and M. Laborie and A. Saint-Paul" +, title = "{CASE}: Automatic Generation of Electrical Diagrams" +, journal = "Comput. Aided Design" +, volume = 18 +, number = 7 +, year = 1986 +, pages = "356--360" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{a-iant-76 -, author = "T. M. Apostol" -, title = "Introduction to Analytic Number Theory" -, publisher = "Springer-Verlag" -, year = 1976 -, update = "97.11 bibrelex" +, author = "T. M. Apostol" +, title = "Introduction to Analytic Number Theory" +, publisher = "Springer-Verlag" +, year = 1976 +, update = "97.11 bibrelex" } @article{aalm-epase-90 -, author = "A. Apostolico and M. J. Atallah and L. L. Larmore and H. S. McFaddin" -, title = "Efficient parallel algorithms for string editing and related problems" -, journal = "SIAM J. Comput." -, volume = 19 -, number = 5 -, year = 1990 -, pages = "968--988" -, update = "98.11 bibrelex" +, author = "A. Apostolico and M. J. Atallah and L. L. Larmore and H. S. McFaddin" +, title = "Efficient parallel algorithms for string editing and related problems" +, journal = "SIAM J. Comput." +, volume = 19 +, number = 5 +, year = 1990 +, pages = "968--988" +, update = "98.11 bibrelex" } @article{ah-fmcca-88 -, author = "A. Apostolico and S. E. Hambrusch" -, title = "Finding maximal cliques of circular-arc graphs" -, journal = "Inform. Process. Lett." -, volume = 26 -, number = 4 -, year = 1988 -, pages = "209--215" -, keywords = "circular-arc graph, geometric graphs, clique" -, update = "95.05 korneenko" +, author = "A. Apostolico and S. E. Hambrusch" +, title = "Finding maximal cliques of circular-arc graphs" +, journal = "Inform. Process. Lett." +, volume = 26 +, number = 4 +, year = 1988 +, pages = "209--215" +, keywords = "circular-arc graph, geometric graphs, clique" +, update = "95.05 korneenko" } @article{as-lce-73 -, author = "G. Appa and C. Smith" -, title = "On {$L_{1}$} and {Chebyshev} estimation" -, journal = "Math. Program." -, volume = 5 -, year = 1973 -, pages = "73--87" -, update = "98.03 bibrelex" +, author = "G. Appa and C. Smith" +, title = "On {$L_{1}$} and {Chebyshev} estimation" +, journal = "Math. Program." +, volume = 5 +, year = 1973 +, pages = "73--87" +, update = "98.03 bibrelex" } @inproceedings{a-nqimr-67 -, author = "A. Appel" -, title = "The notion of quantitative invisibility and the machine rendering of solids" -, booktitle = "Proc. ACM National Conference" -, year = 1967 -, pages = "367--393" -, update = "98.03 bibrelex" +, author = "A. Appel" +, title = "The notion of quantitative invisibility and the machine rendering of solids" +, booktitle = "Proc. ACM National Conference" +, year = 1967 +, pages = "367--393" +, update = "98.03 bibrelex" } @article{aw-dtdch-76 -, author = "A. Appel and P. M. Will" -, title = "Determining the three-dimensional convex hull of a polyhedron" -, journal = "IBM J. Res. Develop." -, volume = 20 -, year = 1976 -, pages = "590--611" +, author = "A. Appel and P. M. Will" +, title = "Determining the three-dimensional convex hull of a polyhedron" +, journal = "IBM J. Res. Develop." +, volume = 20 +, year = 1976 +, pages = "590--611" } @article{ah-epmfc-77 -, author = "K. Appel and W. Haken" -, title = "Every planar map is four colourable, Part {I}: discharging" -, journal = "Illinois J. Math." -, volume = 21 -, year = 1977 -, pages = "429--490" -, update = "98.11 bibrelex" +, author = "K. Appel and W. Haken" +, title = "Every planar map is four colourable, Part {I}: discharging" +, journal = "Illinois J. Math." +, volume = 21 +, year = 1977 +, pages = "429--490" +, update = "98.11 bibrelex" } @book{a-tdmrt-41 -, author = "P. Appell" -, title = "Trait{\'e} de M{\'e}canique Rationelle, Tome {I}: Statique, Dynamique du Point" -, edition = "6th" -, publisher = "Gauthier-Villars" -, year = 1941 -, update = "98.07 bibrelex" +, author = "P. Appell" +, title = "Trait{\'e} de M{\'e}canique Rationelle, Tome {I}: Statique, Dynamique du Point" +, edition = "6th" +, publisher = "Gauthier-Villars" +, year = 1941 +, update = "98.07 bibrelex" } @inproceedings{ak-levtg-91 -, author = "D. Applegate and R. Kannan" -, title = "Local expansion of vertex-transitive graphs and random generation in finite groups" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "164--174" -, keywords = "approximation, volume, convex" +, author = "D. Applegate and R. Kannan" +, title = "Local expansion of vertex-transitive graphs and random generation in finite groups" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "164--174" +, keywords = "approximation, volume, convex" } @inproceedings{at-qdbt-00 -, author = "Sigal Ar and Ayellet Tal" -, title = "Query Driven {BSP} Trees" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "81--84" -, update = "00.03 bibrelex" +, author = "Sigal Ar and Ayellet Tal" +, title = "Query Driven {BSP} Trees" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "81--84" +, update = "00.03 bibrelex" } @inproceedings{as-rst-89 -, author = "C. Aragon and R. Seidel" -, title = "Randomized search trees" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "540--545" +, author = "C. Aragon and R. Seidel" +, title = "Randomized search trees" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "540--545" } @article{ac-r1mp-83 -, author = "J. Ar{\'a}oz and W. H. Cunningham" -, title = "Reductions to $1$-matching polyhedra" -, journal = "Networks" -, volume = 13 -, year = 1983 -, pages = "455--473" +, author = "J. Ar{\'a}oz and W. H. Cunningham" +, title = "Reductions to $1$-matching polyhedra" +, journal = "Networks" +, volume = 13 +, year = 1983 +, pages = "455--473" } @article{ac-cpdia-74 -, author = "C. Arcelli and L. Cordella" -, title = "Concavity point detection by iterative arrays" -, journal = "Comput. Graph. Image Process." -, volume = 3 -, year = 1974 -, pages = "34--47" +, author = "C. Arcelli and L. Cordella" +, title = "Concavity point detection by iterative arrays" +, journal = "Comput. Graph. Image Process." +, volume = 3 +, year = 1974 +, pages = "34--47" } @article{al-cepp-71 -, author = "C. Arcelli and S. Levialdi" -, title = "Concavity extraction by parallel processing" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-1" -, year = 1971 -, pages = "394--396" +, author = "C. Arcelli and S. Levialdi" +, title = "Concavity extraction by parallel processing" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-1" +, year = 1971 +, pages = "394--396" } @article{asdb-cvddp-86 -, author = "C. Arcelli and G. {Sanniti di Baja}" -, title = "Computing {Voronoi} diagrams in digital pictures" -, journal = "Pattern Recogn. Lett." -, volume = 4 -, number = 5 -, year = 1986 -, pages = "383--389" -, keywords = "Voronoi diagram, digital geometry" -, update = "95.05 korneenko" +, author = "C. Arcelli and G. {Sanniti di Baja}" +, title = "Computing {Voronoi} diagrams in digital pictures" +, journal = "Pattern Recogn. Lett." +, volume = 4 +, number = 5 +, year = 1986 +, pages = "383--389" +, keywords = "Voronoi diagram, digital geometry" +, update = "95.05 korneenko" } @inproceedings{as-pcctb-78 -, author = "C. Arcelli and G. {Sanniti di Baja}" -, title = "Polygonal covering and concavity tree of binary digital pictures" -, editor = "M. H. Hamza and S. G. Tzafestas" -, booktitle = "Proc. Internat. Sympos. Measurement \& Control" -, nickname = "MECO '78" -, publisher = "Panhellenic Society of Mechanical \& Electrical Engineers" -, address = "Athens" -, year = 1978 -, pages = "292--297" -, update = "95.05 korneenko" +, author = "C. Arcelli and G. {Sanniti di Baja}" +, title = "Polygonal covering and concavity tree of binary digital pictures" +, editor = "M. H. Hamza and S. G. Tzafestas" +, booktitle = "Proc. Internat. Sympos. Measurement \& Control" +, nickname = "MECO '78" +, publisher = "Panhellenic Society of Mechanical \& Electrical Engineers" +, address = "Athens" +, year = 1978 +, pages = "292--297" +, update = "95.05 korneenko" } @inproceedings{a-iacs-95 -, author = "Eugen Ardeleanu" -, title = "Intersection Algorithms: A Comparative Study" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "43--46" -, update = "00.03 bibrelex" +, author = "Eugen Ardeleanu" +, title = "Intersection Algorithms: A Comparative Study" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "43--46" +, update = "00.03 bibrelex" } @inproceedings{as-cmqou-94 -, author = "W. G. Aref and H. Samet" -, title = "A Cost Model for Query Optimization Using R-Trees" -, booktitle = "Proceedings of the Second ACM Workshop on Geographic Information Systems" -, site = "Gaithersburg, Maryland" -, month = dec -, year = 1994 -, pages = "60--67" -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "A Cost Model for Query Optimization Using R-Trees" +, booktitle = "Proceedings of the Second ACM Workshop on Geographic Information Systems" +, site = "Gaithersburg, Maryland" +, month = dec +, year = 1994 +, pages = "60--67" +, update = "96.05 efrat" } @inproceedings{as-wrasd-95 -, author = "W. G. Aref and H. Samet" -, title = "A Window Retrieval Algorithm for Spatial Databases Using Quadtrees" -, booktitle = "Proceedings of the Third ACM Workshop on Geographic Information Systems" -, site = "Baltimore" -, month = dec -, year = 1995 -, pages = "69--76" -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "A Window Retrieval Algorithm for Spatial Databases Using Quadtrees" +, booktitle = "Proceedings of the Third ACM Workshop on Geographic Information Systems" +, site = "Baltimore" +, month = dec +, year = 1995 +, pages = "69--76" +, update = "96.05 efrat" } @inproceedings{as-aimga-90 -, author = "W. G. Aref and H. Samet" -, title = "An Approach to Information Management in Geographical Applications" -, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" -, site = "Zurich" -, month = jul -, year = 1990 -, pages = "589--598" -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "An Approach to Information Management in Geographical Applications" +, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" +, site = "Zurich" +, month = jul +, year = 1990 +, pages = "589--598" +, update = "96.05 efrat" } @techreport{as-ewras-92 -, author = "W. G. Aref and H. Samet" -, title = "An efficient window retrieval algorithm for spatial query processing" -, type = "Computer Science Department" -, number = "TR-2866" -, institution = "UMD" -, address = "College Park, MD" -, month = mar -, year = 1992 -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "An efficient window retrieval algorithm for spatial query processing" +, type = "Computer Science Department" +, number = "TR-2866" +, institution = "UMD" +, address = "College Park, MD" +, month = mar +, year = 1992 +, update = "96.05 efrat" } @article{as-dwmqb-93 -, author = "W. G. Aref and H. Samet" -, title = "Decomposing a window into maximal quadtree blocks" -, journal = "Acta Inform." -, volume = "??" -, year = 1993 -, note = "(also University of Maryland Computer Science +, author = "W. G. Aref and H. Samet" +, title = "Decomposing a window into maximal quadtree blocks" +, journal = "Acta Inform." +, volume = "??" +, year = 1993 +, note = "(also University of Maryland Computer Science TR-2771)" -, update = "96.05 efrat" +, update = "96.05 efrat" } @techreport{as-deups-93 -, author = "W. G. Aref and H. Samet" -, title = "Duplicate Elimination using Proximity in Spatial Databases" -, number = "CS-3067" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = may -, year = 1993 -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "Duplicate Elimination using Proximity in Spatial Databases" +, number = "CS-3067" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = may +, year = 1993 +, update = "96.05 efrat" } @inproceedings{as-epwqp-90 -, author = "W. G. Aref and H. Samet" -, title = "Efficient processing of window queries in the pyramid data structure" -, booktitle = "Proceedings of the 9th ACM SIGACT-SIGMOD-SIGART Symposium on Principles of Database Systems" -, nickname = "PODS" -, site = "Nashville Tennessee" -, month = apr -, year = 1990 -, pages = "265--272" -, note = "(also in Proceedings of the Fifth Brazilian - Symposium on Databases, Rio de Janeiro, Brazil, - April 1990, 15--26)" -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "Efficient processing of window queries in the pyramid data structure" +, booktitle = "Proceedings of the 9th ACM SIGACT-SIGMOD-SIGART Symposium on Principles of Database Systems" +, nickname = "PODS" +, site = "Nashville Tennessee" +, month = apr +, year = 1990 +, pages = "265--272" +, note = "(also in Proceedings of the Fifth Brazilian + Symposium on Databases, Rio de Janeiro, Brazil, + April 1990, 15--26)" +, update = "96.05 efrat" } @inproceedings{as-esfso-93 -, author = "W. G. Aref and H. Samet" -, title = "Estimating Selectivity Factors of Spatial Operations" -, booktitle = "Optimization in Databases - 5th Int'l Workshop on Foundations of Models and Languages for Data and Objects" -, site = "Aigen, Austria" -, month = sep -, year = 1993 -, pages = "31--40" -, note = "(also tech report: Informatik-Bericht 93/9 +, author = "W. G. Aref and H. Samet" +, title = "Estimating Selectivity Factors of Spatial Operations" +, booktitle = "Optimization in Databases - 5th Int'l Workshop on Foundations of Models and Languages for Data and Objects" +, site = "Aigen, Austria" +, month = sep +, year = 1993 +, pages = "31--40" +, note = "(also tech report: Informatik-Bericht 93/9 Technische Universitat Clausthal, Clausthal - Zellerfeld)" -, update = "96.05 efrat" +, update = "96.05 efrat" } @inproceedings{as-edso-91 -, author = "W. G. Aref and H. Samet" -, title = "Extending a {DBMS} with spatial operations" -, editor = "O. G{\"u}nther and H. J. Schek" -, booktitle = "Proc. 2nd Sympos. Advances in Spatial Databases" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1991 -, pages = "299--318" -, note = "(also Lecture Notes in Computer Science 525)" -, update = "96.09 agarwal, 96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "Extending a {DBMS} with spatial operations" +, editor = "O. G{\"u}nther and H. J. Schek" +, booktitle = "Proc. 2nd Sympos. Advances in Spatial Databases" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1991 +, pages = "299--318" +, note = "(also Lecture Notes in Computer Science 525)" +, update = "96.09 agarwal, 96.05 efrat" } @inproceedings{as-hppds-94 -, author = "W. G. Aref and H. Samet" -, title = "Hashing by Proximity to Process Duplicates in Spatial Databases" -, booktitle = "Proceedings of the Third International Conference on Information and Knowledge Management" -, publisher = "ACM Press" -, address = "Gaithersburg, Maryland" -, month = dec -, year = 1994 -, pages = "347--354" -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "Hashing by Proximity to Process Duplicates in Spatial Databases" +, booktitle = "Proceedings of the Third International Conference on Information and Knowledge Management" +, publisher = "ACM Press" +, address = "Gaithersburg, Maryland" +, month = dec +, year = 1994 +, pages = "347--354" +, update = "96.05 efrat" } @incollection{as-lsfip-92 -, author = "W. G. Aref and H. Samet" -, title = "Loading spatial features into the incomplete pyramid data structure" -, editor = "G. Gambosi and M. Scholl and H.-W. Six" -, booktitle = "?" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1992 -, pages = "138--160" -, update = "96.09 agarwal, 96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "Loading spatial features into the incomplete pyramid data structure" +, editor = "G. Gambosi and M. Scholl and H.-W. Six" +, booktitle = "?" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1992 +, pages = "138--160" +, update = "96.09 agarwal, 96.05 efrat" } @inproceedings{as-ossqp-91 -, author = "W. G. Aref and H. Samet" -, title = "Optimization strategies for spatial query processing" -, editor = "G. Lohman" -, booktitle = "Proceedings of the Seventeenth International Conference on Very Large Data Bases" -, site = "Barcelona" -, month = sep -, year = 1991 -, pages = "81--90" -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "Optimization strategies for spatial query processing" +, editor = "G. Lohman" +, booktitle = "Proceedings of the Seventeenth International Conference on Very Large Data Bases" +, site = "Barcelona" +, month = sep +, year = 1991 +, pages = "81--90" +, update = "96.05 efrat" } @article{as-pvoro-95 -, author = "W. G. Aref and H. Samet" -, title = "Perspective viewing of objects Represented by Octrees" -, journal = "Comput. Graph. Forum" -, volume = 14 -, number = 1 -, month = mar -, year = 1995 -, pages = "59--66" -, note = "also University of Maryland Computer Science +, author = "W. G. Aref and H. Samet" +, title = "Perspective viewing of objects Represented by Octrees" +, journal = "Comput. Graph. Forum" +, volume = 14 +, number = 1 +, month = mar +, year = 1995 +, pages = "59--66" +, note = "also University of Maryland Computer Science TR-2757" -, update = "96.05 efrat" +, update = "96.05 efrat" } @techreport{as-qsesj-93 -, author = "W. G. Aref and Hanan Samet" -, title = "Query size estimation of spatial join" -, number = "MITL-TR 79-93" -, institution = "Matsushita Information Technology Laboratory" -, address = "2 Research Way, Princeton, NJ 08540-6628" -, month = dec -, year = 1993 -, update = "96.05 efrat" +, author = "W. G. Aref and Hanan Samet" +, title = "Query size estimation of spatial join" +, number = "MITL-TR 79-93" +, institution = "Matsushita Information Technology Laboratory" +, address = "2 Research Way, Princeton, NJ 08540-6628" +, month = dec +, year = 1993 +, update = "96.05 efrat" } @inproceedings{as-sfr-94 -, author = "W. G. Aref and H. Samet" -, title = "The Spatial Filter Revisited" -, editor = "T. C. Waugh and R. G. Healey" -, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" -, site = "Edinburgh, Scotland" -, organization = "International Geographical Union Comission on Geographic Information Systems, Association for Geographical Information" -, month = sep -, year = 1994 -, pages = "190--208" -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "The Spatial Filter Revisited" +, editor = "T. C. Waugh and R. G. Healey" +, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" +, site = "Edinburgh, Scotland" +, organization = "International Geographical Union Comission on Geographic Information Systems, Association for Geographical Information" +, month = sep +, year = 1994 +, pages = "190--208" +, update = "96.05 efrat" } @inproceedings{as-ursoy-92 -, author = "W. G. Aref and H. Samet" -, title = "Uniquely reporting spatial objects: yet another operation for comparing spatial data structures" -, booktitle = "Proceedings of the fifth international symposium on spatial data handling" -, site = "Charleston, South Carolina" -, month = aug -, year = 1992 -, pages = "178--189" -, update = "96.05 efrat" +, author = "W. G. Aref and H. Samet" +, title = "Uniquely reporting spatial objects: yet another operation for comparing spatial data structures" +, booktitle = "Proceedings of the fifth international symposium on spatial data handling" +, site = "Charleston, South Carolina" +, month = aug +, year = 1992 +, pages = "178--189" +, update = "96.05 efrat" } @techreport{a-esdsp-94 -, author = "L. Arge" -, title = "External-storage data structures for plane-sweep algorithms" -, type = "Technical {Report}" -, number = "RS-94-16" -, institution = "BRICS" -, address = "Aarhus Univ., Denmark" -, year = 1994 -, update = "95.01 devillers" +, author = "L. Arge" +, title = "External-storage data structures for plane-sweep algorithms" +, type = "Technical {Report}" +, number = "RS-94-16" +, institution = "BRICS" +, address = "Aarhus Univ., Denmark" +, year = 1994 +, update = "95.01 devillers" } @inproceedings{a-btnto-95 -, author = "L. Arge" -, title = "The {Buffer} {Tree}: A New Technique for Optimal {I/O}-Algorithms" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, number = 955 -, year = 1995 -, pages = "334--345" -, keywords = "external memory algorithms, data structures" -, update = "99.07 bibrelex, 96.09 kreveld" +, author = "L. Arge" +, title = "The {Buffer} {Tree}: A New Technique for Optimal {I/O}-Algorithms" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, number = 955 +, year = 1995 +, pages = "334--345" +, keywords = "external memory algorithms, data structures" +, update = "99.07 bibrelex, 96.09 kreveld" } @inproceedings{aprsv-tpiea-98 -, author = "Lars Arge and Octavian Procopiuc and Sridhar Ramaswamy and Torsten Suel and Jeffrey Scott Vitter" -, title = "Theory and Practice of {I/O}-Efficient Algorithms for Multidimensional Batched Searching Problems" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "685--694" -, update = "99.07 bibrelex, 98.07 mitchell, 98.03 agarwal" +, author = "Lars Arge and Octavian Procopiuc and Sridhar Ramaswamy and Torsten Suel and Jeffrey Scott Vitter" +, title = "Theory and Practice of {I/O}-Efficient Algorithms for Multidimensional Batched Searching Problems" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "685--694" +, update = "99.07 bibrelex, 98.07 mitchell, 98.03 agarwal" } @inproceedings{av-ioedp-00 -, author = "Lars Arge and Jan Vahrenhold" -, title = "{I/O}-Efficient Dynamic Planar Point Location" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "191--200" -, update = "00.11 jones" +, author = "Lars Arge and Jan Vahrenhold" +, title = "{I/O}-Efficient Dynamic Planar Point Location" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "191--200" +, update = "00.11 jones" } @inproceedings{avv-emapl-96 -, author = "Lars Arge and Darren Erik Vengroff and Jeffrey Scott Vitter" -, title = "External-Memory Algorithms for Processing Line Segments in Georgraphic Information Systems" -, booktitle = "Algorithmica" -, year = "to appear" -, note = "special issue on cartography and geographic - information systems. A shortened version appears in Proceedings of the - 3rd Annual European Symposium on Algorithms - (ESA~'95), September~1995, published in Lecture - Notes in Computer Science, Springer-Verlag, Berlin, 295--310" -, update = "97.03 murali" +, author = "Lars Arge and Darren Erik Vengroff and Jeffrey Scott Vitter" +, title = "External-Memory Algorithms for Processing Line Segments in Georgraphic Information Systems" +, booktitle = "Algorithmica" +, year = "to appear" +, note = "special issue on cartography and geographic + information systems. A shortened version appears in Proceedings of the + 3rd Annual European Symposium on Algorithms + (ESA~'95), September~1995, published in Lecture + Notes in Computer Science, Springer-Verlag, Berlin, 295--310" +, update = "97.03 murali" } @inproceedings{av-oimem-96 -, author = "L. Arge and J. S. Vitter" -, title = "Optimal Interval Management in External Memory" -, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." -, site = "Burlington, VT" -, month = oct -, year = 1996 -, pages = "560--569" -, update = "97.07 agarwal, 97.03 murali" +, author = "L. Arge and J. S. Vitter" +, title = "Optimal Interval Management in External Memory" +, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." +, site = "Burlington, VT" +, month = oct +, year = 1996 +, pages = "560--569" +, update = "97.07 agarwal, 97.03 murali" } @inproceedings{amz-sbme-94 -, author = "S. Arikati and A. Maheshwari and C. Zaroliagis" -, title = "Saving Bits Made Easy" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "140--146" -, cites = "e-mpmis-65, fhkr-owpas-92, if-umtor-81, ir-mtard-84, knr-irg-88, ly-grp-82, nsv-rpamu-92, o-agta-87, n-edstf-61, s-epgg-90, l-ga-90, j-ipa-92, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "S. Arikati and A. Maheshwari and C. Zaroliagis" +, title = "Saving Bits Made Easy" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "140--146" +, cites = "e-mpmis-65, fhkr-owpas-92, if-umtor-81, ir-mtard-84, knr-irg-88, ly-grp-82, nsv-rpamu-92, o-agta-87, n-edstf-61, s-epgg-90, l-ga-90, j-ipa-92, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{accdsz-psasp-96 -, author = "Srinivasa Rao Arikati and Danny Z. Chen and L. Paul Chew and Gautam Das and Michiel Smid and Christos D. Zaroliagis" -, title = "Planar Spanners and Approximate Shortest Path Queries among Obstacles in the Plane" -, editor = "Josep D{\'\i}az and Maria Serna" -, booktitle = "Algorithms---ESA~'96, Fourth Annual European Symposium" -, site = "Barcelona, Spain" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "514--528" -, issn = "3-540-61680-2" -, keywords = "two-point shortest path queries, fixed orientations, geodesics" -, update = "00.03 smid, 99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell, 97.03 smid" +, author = "Srinivasa Rao Arikati and Danny Z. Chen and L. Paul Chew and Gautam Das and Michiel Smid and Christos D. Zaroliagis" +, title = "Planar Spanners and Approximate Shortest Path Queries among Obstacles in the Plane" +, editor = "Josep D{\'\i}az and Maria Serna" +, booktitle = "Algorithms---ESA~'96, Fourth Annual European Symposium" +, site = "Barcelona, Spain" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "514--528" +, issn = "3-540-61680-2" +, keywords = "two-point shortest path queries, fixed orientations, geodesics" +, update = "00.03 smid, 99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell, 97.03 smid" } @techreport{am-accgp-90 -, author = "E. Arkin and J. Mitchell" -, title = "Applications of combinatorics and computational geometry to pattern recognition" -, type = "Technical {Report}" -, institution = "Cornell Univ." -, address = "Ithaca, NY" -, year = 1990 -, update = "98.03 bibrelex" +, author = "E. Arkin and J. Mitchell" +, title = "Applications of combinatorics and computational geometry to pattern recognition" +, type = "Technical {Report}" +, institution = "Cornell Univ." +, address = "Ithaca, NY" +, year = 1990 +, update = "98.03 bibrelex" } @techreport{a-bih-88 -, author = "Esther M. Arkin" -, title = "Beautification is hard" -, type = "Technical {Report}" -, number = 818 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1988 -, keywords = "clustering" -, update = "98.03 mitchell" +, author = "Esther M. Arkin" +, title = "Beautification is hard" +, type = "Technical {Report}" +, number = 818 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1988 +, keywords = "clustering" +, update = "98.03 mitchell" } @techreport{abmmrss-tsp-93t -, author = "Esther M. Arkin and P. Belleville and Joseph S. B. Mitchell and D. M. Mount and K. Romanik and S. Salzberg and D. Souvaine" -, title = "Testing simple polygons" -, number = "TR-93-14" -, institution = "DIMACS" -, month = apr -, year = 1993 -, precedes = "abmmrss-tsp-93, abmmrss-tsp-97" -, update = "98.11 bibrelex" +, author = "Esther M. Arkin and P. Belleville and Joseph S. B. Mitchell and D. M. Mount and K. Romanik and S. Salzberg and D. Souvaine" +, title = "Testing simple polygons" +, number = "TR-93-14" +, institution = "DIMACS" +, month = apr +, year = 1993 +, precedes = "abmmrss-tsp-93, abmmrss-tsp-97" +, update = "98.11 bibrelex" } @inproceedings{abmmrss-tsp-93 -, author = "Esther M. Arkin and P. Belleville and Joseph S. B. Mitchell and D. M. Mount and K. Romanik and S. Salzberg and D. Souvaine" -, title = "Testing simple polygons" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "387--392" -, keywords = "probing, point probes, testing, simple polygons" -, succeeds = "abmmrss-tsp-93t" -, precedes = "abmmrss-tsp-97" -, cites = "abmmrss-tsp-93t, bs-ppmih-93, cy-sp-87, k-rop-91, lr-eaiou-89t, m-acvpp-90, r-att-92, rs-tgo-90i, rs-tos-92, s-gp-88, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 96.09 romanik, 95.09 agarwal, 95.01 mitchell, 93.09 milone+mitchell" +, author = "Esther M. Arkin and P. Belleville and Joseph S. B. Mitchell and D. M. Mount and K. Romanik and S. Salzberg and D. Souvaine" +, title = "Testing simple polygons" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "387--392" +, keywords = "probing, point probes, testing, simple polygons" +, succeeds = "abmmrss-tsp-93t" +, precedes = "abmmrss-tsp-97" +, cites = "abmmrss-tsp-93t, bs-ppmih-93, cy-sp-87, k-rop-91, lr-eaiou-89t, m-acvpp-90, r-att-92, rs-tgo-90i, rs-tos-92, s-gp-88, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 96.09 romanik, 95.09 agarwal, 95.01 mitchell, 93.09 milone+mitchell" } @article{abmmrss-tsp-97 -, author = "Esther M. Arkin and P. Belleville and Joseph S. B. Mitchell and D. M. Mount and K. Romanik and S. Salzberg and D. Souvaine" -, title = "Testing simple polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "97--114" -, keywords = "probing, point probes, testing, simple polygons" -, succeeds = "abmmrss-tsp-93t, abmmrss-tsp-93" -, update = "98.11 bibrelex" +, author = "Esther M. Arkin and P. Belleville and Joseph S. B. Mitchell and D. M. Mount and K. Romanik and S. Salzberg and D. Souvaine" +, title = "Testing simple polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "97--114" +, keywords = "probing, point probes, testing, simple polygons" +, succeeds = "abmmrss-tsp-93t, abmmrss-tsp-93" +, update = "98.11 bibrelex" } @inproceedings{abfms-ftphwusr-01 -, author = "E. M. Arkin and M. A. Bender and S. P. Fekete and J. S. B. Mitchell and M. Skutella" -, title = "The Freeze-Tag Problem: How to Wake Up a Swarm of Robots" -, booktitle = "Proc. 13th ACM-SIAM Sympos. Discrete Algorithms" -, year = 2002 -, note = "To appear" -, update = "02.03 orourke" +, author = "E. M. Arkin and M. A. Bender and S. P. Fekete and J. S. B. Mitchell and M. Skutella" +, title = "The Freeze-Tag Problem: How to Wake Up a Swarm of Robots" +, booktitle = "Proc. 13th ACM-SIAM Sympos. Discrete Algorithms" +, year = 2002 +, note = "To appear" +, update = "02.03 orourke" } @techreport{achkm-ecmcp-89 -, author = "E. M. Arkin and L. P. Chew and D. P. Huttenlocher and K. Kedem and J. S. B. Mitchell" -, title = "An efficiently computable metric for comparing polygonal shapes" -, type = "Technical {Report}" -, number = "TR 89-1007" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = may -, year = 1989 -, update = "98.07 bibrelex" +, author = "E. M. Arkin and L. P. Chew and D. P. Huttenlocher and K. Kedem and J. S. B. Mitchell" +, title = "An efficiently computable metric for comparing polygonal shapes" +, type = "Technical {Report}" +, number = "TR 89-1007" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = may +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{achkm-ecmcp-90 -, author = "Esther M. Arkin and L. P. Chew and D. P. Huttenlocher and K. Kedem and Joseph S. B. Mitchell" -, title = "An efficiently computable metric for comparing polygonal shapes" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "129--137" -, keywords = "matching, shape, polygons" -, update = "98.03 mitchell" +, author = "Esther M. Arkin and L. P. Chew and D. P. Huttenlocher and K. Kedem and Joseph S. B. Mitchell" +, title = "An efficiently computable metric for comparing polygonal shapes" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "129--137" +, keywords = "matching, shape, polygons" +, update = "98.03 mitchell" } @article{achkm-ecmcp-91 -, author = "Esther M. Arkin and L. P. Chew and D. P. Huttenlocher and K. Kedem and Joseph S. B. Mitchell" -, title = "An efficiently computable metric for comparing polygonal shapes" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 13 -, number = 3 -, year = 1991 -, pages = "209--216" -, keywords = "polygon, distance, shape, similarity" -, update = "98.03 mitchell, 95.05 korneenko" +, author = "Esther M. Arkin and L. P. Chew and D. P. Huttenlocher and K. Kedem and Joseph S. B. Mitchell" +, title = "An efficiently computable metric for comparing polygonal shapes" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 13 +, number = 3 +, year = 1991 +, pages = "209--216" +, keywords = "polygon, distance, shape, similarity" +, update = "98.03 mitchell, 95.05 korneenko" } @inproceedings{achmssy-omah-96 -, author = "Esther M. Arkin and Y.-J. Chiang and Martin Held and Joseph S. B. Mitchell and V. Sacristan and Steven S. Skiena and T.-C. Yang" -, title = "On minimum-area hulls" -, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "334--348" -, precedes = "achmssy-omah-98" -, update = "98.03 mitchell" +, author = "Esther M. Arkin and Y.-J. Chiang and Martin Held and Joseph S. B. Mitchell and V. Sacristan and Steven S. Skiena and T.-C. Yang" +, title = "On minimum-area hulls" +, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "334--348" +, precedes = "achmssy-omah-98" +, update = "98.03 mitchell" } @article{achmssy-omah-98 -, author = "Esther M. Arkin and Y.-J. Chiang and Martin Held and Joseph S. B. Mitchell and V. Sacristan and Steven S. Skiena and T.-C. Yang" -, title = "On minimum-area hulls" -, journal = "Algorithmica" -, volume = 21 -, year = 1998 -, pages = "119--136" -, succeeds = "achmssy-omah-96" -, update = "01.07 devillers, 98.03 mitchell" +, author = "Esther M. Arkin and Y.-J. Chiang and Martin Held and Joseph S. B. Mitchell and V. Sacristan and Steven S. Skiena and T.-C. Yang" +, title = "On minimum-area hulls" +, journal = "Algorithmica" +, volume = 21 +, year = 1998 +, pages = "119--136" +, succeeds = "achmssy-omah-96" +, update = "01.07 devillers, 98.03 mitchell" } @inproceedings{acmsy-mst-97 -, author = "Esther M. Arkin and Y.-J. Chiang and Joseph S. B. Mitchell and Steven S. Skiena and T. Yang" -, title = "On the Maximum Scatter {TSP}" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '97" -, year = 1997 -, pages = "211--220" -, keywords = "TSP, MAX TSP, bottleneck TSP, approximation algorithms" -, update = "98.03 mitchell" +, author = "Esther M. Arkin and Y.-J. Chiang and Joseph S. B. Mitchell and Steven S. Skiena and T. Yang" +, title = "On the Maximum Scatter {TSP}" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '97" +, year = 1997 +, pages = "211--220" +, keywords = "TSP, MAX TSP, bottleneck TSP, approximation algorithms" +, update = "98.03 mitchell" } @inproceedings{acm-mpoap-89 -, author = "Esther M. Arkin and R. Connelly and Joseph S. B. Mitchell" -, title = "On monotone paths among obstacles, with applications to planning assemblies" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "334--343" -, keywords = "path planning, monotonicity, assembly, visibility, separability" -, cites = "cr-nlbtr-87, gm-osacv-87t, gh-ospqs-87, gy-tsr-80, ps-tspm-81, t-mss-85, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Esther M. Arkin and R. Connelly and Joseph S. B. Mitchell" +, title = "On monotone paths among obstacles, with applications to planning assemblies" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "334--343" +, keywords = "path planning, monotonicity, assembly, visibility, separability" +, cites = "cr-nlbtr-87, gm-osacv-87t, gh-ospqs-87, gy-tsr-80, ps-tspm-81, t-mss-85, ZZZ" +, update = "98.03 bibrelex+mitchell" } @techreport{afm-aalmm-97 -, author = "Esther M. Arkin and S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" -, title = "Approximation Algorithms for Lawn Mowing and Milling" -, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" -, year = 1997 -, url = "ftp://ftp.zpr.uni-koeln.de/pub/paper/zpr97-255.ps.gz" -, keywords = "NC machining, covering, TSP, TSP with neighborhoods, approximation algorithms, NP-completeness, traveling salesman problem, shortest paths, watchman routes, lawn mowing, milling, NC machines; 68Q25, 68U05, 90C27, 90C28, 90C35" -, succeeds = "afm-lp-93,afm-aalm-95" -, update = "01.04 smid, 98.03 mitchell" -, abstract = "We study the problem of finding shortest tours/paths for ``lawn +, author = "Esther M. Arkin and S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" +, title = "Approximation Algorithms for Lawn Mowing and Milling" +, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" +, year = 1997 +, url = "ftp://ftp.zpr.uni-koeln.de/pub/paper/zpr97-255.ps.gz" +, keywords = "NC machining, covering, TSP, TSP with neighborhoods, approximation algorithms, NP-completeness, traveling salesman problem, shortest paths, watchman routes, lawn mowing, milling, NC machines; 68Q25, 68U05, 90C27, 90C28, 90C35" +, succeeds = "afm-lp-93,afm-aalm-95" +, update = "01.04 smid, 98.03 mitchell" +, abstract = "We study the problem of finding shortest tours/paths for ``lawn mowing'' and ``milling'' problems: Given a region in the plane, and given the shape of a ``cutter'' (typically, a circle or a square), find a shortest tour/path for the cutter such that every point within the @@ -8452,663 +8452,663 @@ @techreport{afm-aalmm-97 } @article{afm-aalmm-00 -, author = "E. M. Arkin and S. P. Fekete and J. S. B. Mitchell" -, title = "Approximation algorithms for lawn mowing and milling" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "25--50" -, update = "01.04 smid" +, author = "E. M. Arkin and S. P. Fekete and J. S. B. Mitchell" +, title = "Approximation algorithms for lawn mowing and milling" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "25--50" +, update = "01.04 smid" } @techreport{afm-aalm-95 -, author = "Esther M. Arkin and S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" -, title = "Approximation algorithms for lawnmowing and milling" -, type = "Report" -, institution = "University at Stony Brook" -, year = 1995 -, keywords = "NC machining, covering, TSP, TSP with neighborhoods" -, succeeds = "afm-lp-93" -, precedes = "afm-aalmm-97" -, update = "98.03 mitchell, 97.11 bibrelex, 96.01 mitchell" +, author = "Esther M. Arkin and S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" +, title = "Approximation algorithms for lawnmowing and milling" +, type = "Report" +, institution = "University at Stony Brook" +, year = 1995 +, keywords = "NC machining, covering, TSP, TSP with neighborhoods" +, succeeds = "afm-lp-93" +, precedes = "afm-aalmm-97" +, update = "98.03 mitchell, 97.11 bibrelex, 96.01 mitchell" } @inproceedings{afm-lp-93 -, author = "Esther M. Arkin and S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" -, title = "The lawnmower problem" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "461--466" -, precedes = "afm-aalm-95,afm-aalmm-97" -, cites = "ah-aagcs-91, c-tsplt-91a, e-hpnrg-86, f-gtsp-92, f-ldead-72, h-cgpm-91, ips-hpgg-82, jp-cctsp-85, n-wrlv-92, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 96.01 mitchell" +, author = "Esther M. Arkin and S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" +, title = "The lawnmower problem" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "461--466" +, precedes = "afm-aalm-95,afm-aalmm-97" +, cites = "ah-aagcs-91, c-tsplt-91a, e-hpnrg-86, f-gtsp-92, f-ldead-72, h-cgpm-91, ips-hpgg-82, jp-cctsp-85, n-wrlv-92, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 96.01 mitchell" } @inproceedings{afms-mpsms-01 -, author = "Esther M. Arkin and S{\'a}ndor P. Fekete and Joseph S. B. Mitchell and Steven S. Skiena" -, title = "On the Manufacturability of Paperclips and Sheet Metal Structures" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "187--190" -, update = "01.04 icking" +, author = "Esther M. Arkin and S{\'a}ndor P. Fekete and Joseph S. B. Mitchell and Steven S. Skiena" +, title = "On the Manufacturability of Paperclips and Sheet Metal Structures" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "187--190" +, update = "01.04 icking" } @inproceedings{agmmps-ppdtg-93 -, author = "Esther M. Arkin and Michael T. Goodrich and Joseph S. B. Mitchell and David Mount and Christine D. Piatko and Steven S. Skiena" -, title = "Point Probe Decision Trees for Geometric Concept Classes" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "95--106" -, update = "94.09 piatko, 93.09 milone+mitchell+smid, 93.05 jones" +, author = "Esther M. Arkin and Michael T. Goodrich and Joseph S. B. Mitchell and David Mount and Christine D. Piatko and Steven S. Skiena" +, title = "Point Probe Decision Trees for Geometric Concept Classes" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "95--106" +, update = "94.09 piatko, 93.09 milone+mitchell+smid, 93.05 jones" } @inproceedings{ahkmn-astse-91 -, author = "Esther M. Arkin and D. Halperin and K. Kedem and Joseph S. B. Mitchell and N. Naor" -, title = "Arrangements of segments that share endpoints: {Single} face results" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "324--333" -, keywords = "arrangements, segments, Davenport-Schinzel sequences, zone theorems" -, comments = "The proof of the Exposure Lemma, which results in bound of $O(h\alpha(h))$ on the - single cell complexity, is in error. A corrected proof is given in - \cite{ahkmn-astse-94}, where the upper bound of $O(h \log h)$ is proved. - There remains a gap between this and the lower bound of $\Omega(h\alpha(h))$." -, precedes = "ahkmn-astse-94" -, cites = "abp-oabcu-90, cegss-cfals-91, egs-ccmfa-90, gss-gmppt-89, l-cpe-79, m-csfal-90, mrw-mlpop-90, pss-stsps-88, ws-prnds-88, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 96.05 efrat, 95.01 mitchell, 95.01 mitchell" +, author = "Esther M. Arkin and D. Halperin and K. Kedem and Joseph S. B. Mitchell and N. Naor" +, title = "Arrangements of segments that share endpoints: {Single} face results" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "324--333" +, keywords = "arrangements, segments, Davenport-Schinzel sequences, zone theorems" +, comments = "The proof of the Exposure Lemma, which results in bound of $O(h\alpha(h))$ on the + single cell complexity, is in error. A corrected proof is given in + \cite{ahkmn-astse-94}, where the upper bound of $O(h \log h)$ is proved. + There remains a gap between this and the lower bound of $\Omega(h\alpha(h))$." +, precedes = "ahkmn-astse-94" +, cites = "abp-oabcu-90, cegss-cfals-91, egs-ccmfa-90, gss-gmppt-89, l-cpe-79, m-csfal-90, mrw-mlpop-90, pss-stsps-88, ws-prnds-88, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 96.05 efrat, 95.01 mitchell, 95.01 mitchell" } @techreport{ahkmn-astse-94 -, author = "Esther M. Arkin and D. Halperin and K. Kedem and Joseph S. B. Mitchell and N. Naor" -, title = "Arrangements of segments that share endpoints: {Single} face results" -, institution = "SUNY Stony Brook" -, year = 1994 -, keywords = "arrangements, segments, Davenport-Schinzel sequences, zone theorems" -, succeeds = "ahkmn-astse-91" -, update = "98.03 mitchell, 95.01 mitchell, 95.01 mitchell" +, author = "Esther M. Arkin and D. Halperin and K. Kedem and Joseph S. B. Mitchell and N. Naor" +, title = "Arrangements of segments that share endpoints: {Single} face results" +, institution = "SUNY Stony Brook" +, year = 1994 +, keywords = "arrangements, segments, Davenport-Schinzel sequences, zone theorems" +, succeeds = "ahkmn-astse-91" +, update = "98.03 mitchell, 95.01 mitchell, 95.01 mitchell" } @article{ahkmn-astse-95 -, author = "Esther M. Arkin and D. Halperin and K. Kedem and Joseph S. B. Mitchell and N. Naor" -, title = "Arrangements of segments that share endpoints: {Single} face results" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "257--270" -, succeeds = "ahkmn-astse-94" -, update = "98.03 mitchell, 95.09 agarwal" +, author = "Esther M. Arkin and D. Halperin and K. Kedem and Joseph S. B. Mitchell and N. Naor" +, title = "Arrangements of segments that share endpoints: {Single} face results" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "257--270" +, succeeds = "ahkmn-astse-94" +, update = "98.03 mitchell, 95.09 agarwal" } @techreport{ah-aagcs-91 -, author = "Esther M. Arkin and R. Hassin" -, title = "Approximation Algorithms for the Geometric Covering Salesman Problem" -, type = "Technical Report" -, number = 968 -, institution = "School of Operations Research and Industrial Engineering, Cornell University" -, month = jul -, year = 1991 -, precedes = "ah-aagcs-94" -, update = "98.11 bibrelex" +, author = "Esther M. Arkin and R. Hassin" +, title = "Approximation Algorithms for the Geometric Covering Salesman Problem" +, type = "Technical Report" +, number = 968 +, institution = "School of Operations Research and Industrial Engineering, Cornell University" +, month = jul +, year = 1991 +, precedes = "ah-aagcs-94" +, update = "98.11 bibrelex" } @article{ah-aagcs-94 -, author = "Esther M. Arkin and R. Hassin" -, title = "Approximation Algorithms for the Geometric Covering Salesman Problem" -, journal = "Discrete Appl. Math." -, volume = 55 -, year = 1994 -, pages = "197--218" -, succeeds = "ah-aagcs-91" -, update = "98.11 bibrelex, 98.03 mitchell, 96.09 devillers, 95.09 mitchell" +, author = "Esther M. Arkin and R. Hassin" +, title = "Approximation Algorithms for the Geometric Covering Salesman Problem" +, journal = "Discrete Appl. Math." +, volume = 55 +, year = 1994 +, pages = "197--218" +, succeeds = "ah-aagcs-91" +, update = "98.11 bibrelex, 98.03 mitchell, 96.09 devillers, 95.09 mitchell" } @unpublished{ahk-rdpn-94 -, author = "Esther M. Arkin and R. Hassin and L. Klein" -, title = "Restricted Delivery Problems on a Network" -, year = 1994 -, note = "Manuscript" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "Esther M. Arkin and R. Hassin and L. Klein" +, title = "Restricted Delivery Problems on a Network" +, year = 1994 +, note = "Manuscript" +, update = "98.03 mitchell, 95.01 mitchell" } @inproceedings{ahm-madcg-95 -, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell" -, title = "Manufacturing: {A}n application domain for computational geometry" -, booktitle = "First Regional Symposium on Manufacturing Science and Technology" -, site = "Stony Brook, NY" -, month = oct -, year = 1995 -, pages = "29--36" -, update = "00.11 smid, 00.07 icking, 98.03 mitchell, 96.01 mitchell" +, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell" +, title = "Manufacturing: {A}n application domain for computational geometry" +, booktitle = "First Regional Symposium on Manufacturing Science and Technology" +, site = "Stony Brook, NY" +, month = oct +, year = 1995 +, pages = "29--36" +, update = "00.11 smid, 00.07 icking, 98.03 mitchell, 96.01 mitchell" } @inproceedings{ahms-htfr-94 -, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell and Steven S. Skiena" -, title = "Hamiltonian Triangulations for Fast Rendering" -, editor = "J. van Leeuwen" -, booktitle = "Algorithms -- ESA'94" -, site = "Utrecht, NL" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, month = sep -, year = 1994 -, pages = "36--47" -, keywords = "triangulation, tri-strips, mesh generation, rendering, sequential triangulation, ribbons" -, update = "98.03 mitchell, 96.05 agarwal, 95.01 held" +, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell and Steven S. Skiena" +, title = "Hamiltonian Triangulations for Fast Rendering" +, editor = "J. van Leeuwen" +, booktitle = "Algorithms -- ESA'94" +, site = "Utrecht, NL" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, month = sep +, year = 1994 +, pages = "36--47" +, keywords = "triangulation, tri-strips, mesh generation, rendering, sequential triangulation, ribbons" +, update = "98.03 mitchell, 96.05 agarwal, 95.01 held" } @article{ahms-htfr-96 -, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell and Steven S. Skiena" -, title = "Hamiltonian Triangulations for Fast Rendering" -, journal = "Visual Comput." -, volume = 12 -, number = 9 -, year = 1996 -, pages = "429--444" -, keywords = "triangulation, tri-strips, mesh generation, rendering, sequential triangulation, ribbons" -, succeeds = "ahms-htfr-94" -, update = "98.03 mitchell, 97.11 held" +, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell and Steven S. Skiena" +, title = "Hamiltonian Triangulations for Fast Rendering" +, journal = "Visual Comput." +, volume = 12 +, number = 9 +, year = 1996 +, pages = "429--444" +, keywords = "triangulation, tri-strips, mesh generation, rendering, sequential triangulation, ribbons" +, succeeds = "ahms-htfr-94" +, update = "98.03 mitchell, 97.11 held" } @inproceedings{ahms-rppwm-95 -, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell and Steven S. Skiena" -, title = "Recognizing Polygonal Parts from Width Measurements" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "199--204" -, precedes = "ahms-rppwm-98" -, update = "98.03 mitchell, 95.09 jones" +, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell and Steven S. Skiena" +, title = "Recognizing Polygonal Parts from Width Measurements" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "199--204" +, precedes = "ahms-rppwm-98" +, update = "98.03 mitchell, 95.09 jones" } @article{ahms-rppwm-98 -, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell and Steven S. Skiena" -, title = "Recognizing Polygonal Parts from Width Measurements" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, number = 4 -, year = 1998 -, pages = "237--246" -, succeeds = "ahms-rppwm-95" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Esther M. Arkin and Martin Held and Joseph S. B. Mitchell and Steven S. Skiena" +, title = "Recognizing Polygonal Parts from Width Measurements" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, number = 4 +, year = 1998 +, pages = "237--246" +, succeeds = "ahms-rppwm-95" +, update = "98.07 bibrelex, 98.03 mitchell" } @techreport{ahs-oprzp-95 -, author = "Esther M. Arkin and Martin Held and C. L. Smith" -, title = "Optimization problems related to zigzag pocket machining" -, type = "Manuscript" -, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" -, year = 1995 -, update = "98.03 mitchell, 95.09 mitchell" +, author = "Esther M. Arkin and Martin Held and C. L. Smith" +, title = "Optimization problems related to zigzag pocket machining" +, type = "Manuscript" +, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" +, year = 1995 +, update = "98.03 mitchell, 95.09 mitchell" } @inproceedings{ahs-oprzp-96 -, author = "Esther M. Arkin and Martin Held and Christopher L. Smith" -, title = "Optimization problems related to zigzag pocket machining" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "419--428" -, keywords = "CAD, NC-machining, milling, lawnmower problem, retractions, approximation, NP-hardness" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Esther M. Arkin and Martin Held and Christopher L. Smith" +, title = "Optimization problems related to zigzag pocket machining" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "419--428" +, keywords = "CAD, NC-machining, milling, lawnmower problem, retractions, approximation, NP-hardness" +, update = "96.09 agarwal, 96.01 mitchell" } @inproceedings{ahs-oprzp-96c -, author = "Esther M. Arkin and Martin Held and Christopher L. Smith" -, title = "Optimization Problems Related to Zigzag Pocket Machining" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "109--111" -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Esther M. Arkin and Martin Held and Christopher L. Smith" +, title = "Optimization Problems Related to Zigzag Pocket Machining" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "109--111" +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{ahs-oprzp-00 -, author = "E. M. Arkin and M. Held and C. L. Smith" -, title = "Optimization Problems Related to Zigzag Pocket Machining" -, journal = "Algorithmica" -, volume = 26 -, number = 2 -, year = 2000 -, pages = "197--236" -, update = "00.03 held" +, author = "E. M. Arkin and M. Held and C. L. Smith" +, title = "Optimization Problems Related to Zigzag Pocket Machining" +, journal = "Algorithmica" +, volume = 26 +, number = 2 +, year = 2000 +, pages = "197--236" +, update = "00.03 held" } @inproceedings{ahmss-00 -, author = "E. M. Arkin and F. Hurtado and J. S. B. Mitchell and C. Seara and S. S. Skiena" -, title = "Some Separability Problems in the Plane" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "51--54" -, update = "00.03 bibrelex" +, author = "E. M. Arkin and F. Hurtado and J. S. B. Mitchell and C. Seara and S. S. Skiena" +, title = "Some Separability Problems in the Plane" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "51--54" +, update = "00.03 bibrelex" } @inproceedings{akmsw-mpnrc-91 -, author = "Esther M. Arkin and K. Kedem and Joseph S. B. Mitchell and J. Sprinzak and M. Werman" -, title = "Matching points into noise regions: combinatorial bounds and algorithms" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "42--51" -, keywords = "matching, similarity" -, precedes = "akmsw-mppdn-92" -, update = "98.03 mitchell" +, author = "Esther M. Arkin and K. Kedem and Joseph S. B. Mitchell and J. Sprinzak and M. Werman" +, title = "Matching points into noise regions: combinatorial bounds and algorithms" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "42--51" +, keywords = "matching, similarity" +, precedes = "akmsw-mppdn-92" +, update = "98.03 mitchell" } @article{akmsw-mppdn-92 -, author = "Esther M. Arkin and K. Kedem and Joseph S. B. Mitchell and J. Sprinzak and M. Werman" -, title = "Matching points into pairwise-disjoint noise regions: combinatorial bounds and algorithms" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "375--386" -, keywords = "matching, similarity" -, succeeds = "akmsw-mpnrc-91" -, update = "98.03 mitchell" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "Esther M. Arkin and K. Kedem and Joseph S. B. Mitchell and J. Sprinzak and M. Werman" +, title = "Matching points into pairwise-disjoint noise regions: combinatorial bounds and algorithms" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "375--386" +, keywords = "matching, similarity" +, succeeds = "akmsw-mpnrc-91" +, update = "98.03 mitchell" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @inproceedings{akm-gkp-91 -, author = "Esther M. Arkin and S. Khuller and Joseph S. B. Mitchell" -, title = "Geometric knapsack problems" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "165--176" -, precedes = "akm-gkp-93" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "Esther M. Arkin and S. Khuller and Joseph S. B. Mitchell" +, title = "Geometric knapsack problems" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "165--176" +, precedes = "akm-gkp-93" +, update = "98.03 mitchell, 95.01 mitchell" } @article{akm-gkp-93 -, author = "Esther M. Arkin and S. Khuller and Joseph S. B. Mitchell" -, title = "Geometric knapsack problems" -, journal = "Algorithmica" -, volume = 10 -, year = 1993 -, pages = "399--427" -, succeeds = "akm-gkp-91" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "Esther M. Arkin and S. Khuller and Joseph S. B. Mitchell" +, title = "Geometric knapsack problems" +, journal = "Algorithmica" +, volume = 10 +, year = 1993 +, pages = "399--427" +, succeeds = "akm-gkp-91" +, update = "98.03 mitchell, 95.01 mitchell" } @inproceedings{akm-oep-89 -, author = "Esther M. Arkin and S. Khuller and Joseph S. B. Mitchell" -, title = "Optimal enclosure problems" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 36 -, keywords = "partitioning, enclosure, knapsack, optimization" -, precedes = "akm-gkp-93" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "Esther M. Arkin and S. Khuller and Joseph S. B. Mitchell" +, title = "Optimal enclosure problems" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 36 +, keywords = "partitioning, enclosure, knapsack, optimization" +, precedes = "akm-gkp-93" +, update = "98.03 mitchell, 95.01 mitchell" } @inproceedings{ammrs-dtgm-93 -, author = "Esther M. Arkin and H. Meijer and Joseph S. B. Mitchell and D. Rappaport and S. S. Skiena" -, title = "Decision trees for geometric models" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "369--378" -, precedes = "ammrs-dtgm-98" -, cites = "am-accgp-90, bs-ppmh-91, b-dscns-86, bgg-raor-88, bggm-p2trd-90, ce-oails-92, cd-mbrrv-86, fpp-hdpgg-90, e-acg-87, fs-hfb-89, fpt-opcpa-81, fntv-sltjs-90, g-obip-72, gl-trluo-84, g-agtpg-80, g-clcmb-86, gl-lopsi-87, hmrt-sjslt-86, hr-cobdt-76, j-aacp-74, js-mbpsc-92, l-pftu-82, lr-eaiou-94, m-dtd-82, p-cpav-91, s-irgp-92, ZZZ" -, update = "98.11 devillers, 98.07 devillers, 98.03 bibrelex+mitchell, 93.09 jones" +, author = "Esther M. Arkin and H. Meijer and Joseph S. B. Mitchell and D. Rappaport and S. S. Skiena" +, title = "Decision trees for geometric models" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "369--378" +, precedes = "ammrs-dtgm-98" +, cites = "am-accgp-90, bs-ppmh-91, b-dscns-86, bgg-raor-88, bggm-p2trd-90, ce-oails-92, cd-mbrrv-86, fpp-hdpgg-90, e-acg-87, fs-hfb-89, fpt-opcpa-81, fntv-sltjs-90, g-obip-72, gl-trluo-84, g-agtpg-80, g-clcmb-86, gl-lopsi-87, hmrt-sjslt-86, hr-cobdt-76, j-aacp-74, js-mbpsc-92, l-pftu-82, lr-eaiou-94, m-dtd-82, p-cpav-91, s-irgp-92, ZZZ" +, update = "98.11 devillers, 98.07 devillers, 98.03 bibrelex+mitchell, 93.09 jones" } @article{ammrs-dtgm-98 -, author = "Esther M. Arkin and H. Meijer and Joseph S. B. Mitchell and D. Rappaport and S. S. Skiena" -, title = "Decision trees for geometric models" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "343--364" -, succeeds = "ammrs-dtgm-93" -, update = "98.11 devillers" +, author = "Esther M. Arkin and H. Meijer and Joseph S. B. Mitchell and D. Rappaport and S. S. Skiena" +, title = "Decision trees for geometric models" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "343--364" +, succeeds = "ammrs-dtgm-93" +, update = "98.11 devillers" } @techreport{am-ovasp-87 -, author = "Esther M. Arkin and Joseph S. B. Mitchell" -, title = "An optimal visibility algorithm for a simple polygon with star-shaped holes" -, type = "Technical {Report}" -, number = 746 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1987 -, keywords = "visibility, hidden line/surface elimination, plane-sweep" -, update = "98.03 mitchell" +, author = "Esther M. Arkin and Joseph S. B. Mitchell" +, title = "An optimal visibility algorithm for a simple polygon with star-shaped holes" +, type = "Technical {Report}" +, number = 746 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1987 +, keywords = "visibility, hidden line/surface elimination, plane-sweep" +, update = "98.03 mitchell" } @inproceedings{amn-rcgno-98 -, author = "Esther M. Arkin and Joseph S. B. Mitchell and Giri Narasimhan" -, title = "Resource-Constrained Geometric Network Optimization" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "307--316" -, keywords = "orienteering, generalized TSP, bank robber problem, approximation algorithms, guillotine subdivisions" -, update = "01.11 smid, 98.03 mitchell" +, author = "Esther M. Arkin and Joseph S. B. Mitchell and Giri Narasimhan" +, title = "Resource-Constrained Geometric Network Optimization" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "307--316" +, keywords = "orienteering, generalized TSP, bank robber problem, approximation algorithms, guillotine subdivisions" +, update = "01.11 smid, 98.03 mitchell" } @techreport{amp-mlwt-94 -, author = "Esther M. Arkin and Joseph S. B. Mitchell and C. Piatko" -, title = "Minimum-link watchman tours" -, type = "Report" -, institution = "University at Stony Brook" -, year = 1994 -, update = "98.03 mitchell, 96.05 mitchell" +, author = "Esther M. Arkin and Joseph S. B. Mitchell and C. Piatko" +, title = "Minimum-link watchman tours" +, type = "Report" +, institution = "University at Stony Brook" +, year = 1994 +, update = "98.03 mitchell, 96.05 mitchell" } @inproceedings{amp-bsppp-91 -, author = "Esther M. Arkin and Joseph S. B. Mitchell and C. D. Piatko" -, title = "Bicriteria shortest path problems in the plane" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "153--156" -, succeeds = "amp-gbpp-90" -, cites = "aw-vgoas-88, amp-gbpp-90, cdrx-ckp-88, gj-cigtn-79, gm-osacv-87, h-bpp-80, l-conm-76, m-aaorp-90, mp-wrpfs-91, mrw-mlpop-90, s-ltaml-86, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Esther M. Arkin and Joseph S. B. Mitchell and C. D. Piatko" +, title = "Bicriteria shortest path problems in the plane" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "153--156" +, succeeds = "amp-gbpp-90" +, cites = "aw-vgoas-88, amp-gbpp-90, cdrx-ckp-88, gj-cigtn-79, gm-osacv-87, h-bpp-80, l-conm-76, m-aaorp-90, mp-wrpfs-91, mrw-mlpop-90, s-ltaml-86, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @unpublished{amp-gbpp-90 -, author = "E. M. Arkin and J. S. B. Mitchell and C. D. Piatko" -, title = "Geometric Bicriteria Path Problems" -, year = 1990 -, note = "Manuscript in Preparation" -, precedes = "amp-bsppp-91" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "E. M. Arkin and J. S. B. Mitchell and C. D. Piatko" +, title = "Geometric Bicriteria Path Problems" +, year = 1990 +, note = "Manuscript in Preparation" +, precedes = "amp-bsppp-91" +, update = "98.11 bibrelex, 98.07 bibrelex" } @article{ams-ltlpq-95 -, author = "Esther M. Arkin and Joseph S. B. Mitchell and Subhash Suri" -, title = "Logarithmic-time link path queries in a simple polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, number = 4 -, year = 1995 -, pages = "369--395" -, keywords = "link distance, shortest paths, geodesic paths" -, succeeds = "ams-olpqs-92" -, update = "98.03 mitchell, 96.01 mitchell" +, author = "Esther M. Arkin and Joseph S. B. Mitchell and Subhash Suri" +, title = "Logarithmic-time link path queries in a simple polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, number = 4 +, year = 1995 +, pages = "369--395" +, keywords = "link distance, shortest paths, geodesic paths" +, succeeds = "ams-olpqs-92" +, update = "98.03 mitchell, 96.01 mitchell" } @inproceedings{ams-olpqs-92 -, author = "Esther M. Arkin and Joseph S. B. Mitchell and Subhash Suri" -, title = "Optimal link path queries in a simple polygon" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "269--279" -, precedes = "ams-ltlpq-95" -, update = "98.03 mitchell, 96.01 mitchell" +, author = "Esther M. Arkin and Joseph S. B. Mitchell and Subhash Suri" +, title = "Optimal link path queries in a simple polygon" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "269--279" +, precedes = "ams-ltlpq-95" +, update = "98.03 mitchell, 96.01 mitchell" } @techreport{amz-apmp-89 -, author = "Esther M. Arkin and Joseph S. B. Mitchell and K. Zikan" -, title = "Algorithms for point matching problems" -, type = "Manuscript" -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1989 -, keywords = "matching, computer vision" -, update = "98.03 mitchell" +, author = "Esther M. Arkin and Joseph S. B. Mitchell and K. Zikan" +, title = "Algorithms for point matching problems" +, type = "Manuscript" +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1989 +, keywords = "matching, computer vision" +, update = "98.03 mitchell" } @article{am-anme-90 -, author = "R. Arkin and R. R. Murphy" -, title = "Autonomous Navigation in a manufacturing environment" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, number = 4 -, year = 1990 -, pages = "445--454" -, update = "93.09 milone+mitchell" +, author = "R. Arkin and R. R. Murphy" +, title = "Autonomous Navigation in a manufacturing environment" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, number = 4 +, year = 1990 +, pages = "445--454" +, update = "93.09 milone+mitchell" } @article{ate-plcsl-89 -, author = "D. Armitage and J. I. Thakara and W. D. Eades" -, title = "Photoaddressed liquid crystal spatial light modulators" -, journal = "Appl. Optics" -, volume = 28 -, number = 22 -, year = 1989 -, pages = "4763--4771" -, update = "97.11 bibrelex" +, author = "D. Armitage and J. I. Thakara and W. D. Eades" +, title = "Photoaddressed liquid crystal spatial light modulators" +, journal = "Appl. Optics" +, volume = 28 +, number = 22 +, year = 1989 +, pages = "4763--4771" +, update = "97.11 bibrelex" } @inproceedings{ar-dsa-93 -, author = "D. Armon and John Reif" -, title = "A Dynamic Separator Algorithm" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "107--118" -, update = "93.09 milone+mitchell" +, author = "D. Armon and John Reif" +, title = "A Dynamic Separator Algorithm" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "107--118" +, update = "93.09 milone+mitchell" } @inproceedings{armldm-mmm-95 -, author = "C. G. Armstrong and D. J. Robinson and R. M. McKeag and T. S. Li and S. J. Bridgett and R. J. Donaghy and C. A. McGleenan" -, title = "Medials for Meshing and More" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "277--289" -, update = "96.01 samitchell" +, author = "C. G. Armstrong and D. J. Robinson and R. M. McKeag and T. S. Li and S. J. Bridgett and R. J. Donaghy and C. A. McGleenan" +, title = "Medials for Meshing and More" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "277--289" +, update = "96.01 samitchell" } @phdthesis{a-sagni-82 -, author = "G. T. Armstrong" -, title = "A Study of Automatic Generation of Non-Invasive Machine Paths from Geometric Models" -, school = "Univ. Leeds" -, address = "Leeds, UK" -, month = oct -, year = 1982 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "G. T. Armstrong" +, title = "A Study of Automatic Generation of Non-Invasive Machine Paths from Geometric Models" +, school = "Univ. Leeds" +, address = "Leeds, UK" +, month = oct +, year = 1982 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @incollection{acp-ncggm-84 -, author = "G. T. Armstrong and G. C. Carey and A. de Pennington" -, title = "Numerical Code Generation from a Geometric Modeling System" -, editor = "M. S. Pickett and J. W. Boyse" -, booktitle = "Solid Modeling by Computers: {From} Theory to Applications" -, publisher = "Plenum Press" -, address = "Ne York, NY" -, year = 1984 -, update = "98.03 bibrelex" +, author = "G. T. Armstrong and G. C. Carey and A. de Pennington" +, title = "Numerical Code Generation from a Geometric Modeling System" +, editor = "M. S. Pickett and J. W. Boyse" +, booktitle = "Solid Modeling by Computers: {From} Theory to Applications" +, publisher = "Plenum Press" +, address = "Ne York, NY" +, year = 1984 +, update = "98.03 bibrelex" } @book{a-bt-79 -, author = "M. A. Armstrong" -, title = "Basic Topology" -, publisher = "McGraw-Hill" -, address = "London, UK" -, year = 1979 -, update = "97.11 bibrelex" +, author = "M. A. Armstrong" +, title = "Basic Topology" +, publisher = "McGraw-Hill" +, address = "London, UK" +, year = 1979 +, update = "97.11 bibrelex" } @article{acp-cfekt-87 -, author = "S. Arnborg and D. G. Corneil and A. Proskurowski" -, title = "Complexity of finding embeddings in a $k$-tree" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 8 -, year = 1987 -, pages = "277--284" -, update = "97.11 bibrelex" +, author = "S. Arnborg and D. G. Corneil and A. Proskurowski" +, title = "Complexity of finding embeddings in a $k$-tree" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 8 +, year = 1987 +, pages = "277--284" +, update = "97.11 bibrelex" } @article{af-adrc-88 -, author = "S. Arnborg and H. Feng" -, title = "Algebraic decomposition of regular curves" -, journal = "J. Symbolic Comput." -, volume = 15 -, number = 1 -, year = 1988 -, pages = "131--140" -, keywords = "polygons, algebraic geometry, curvilinear" -, update = "95.05 korneenko" +, author = "S. Arnborg and H. Feng" +, title = "Algebraic decomposition of regular curves" +, journal = "J. Symbolic Comput." +, volume = 15 +, number = 1 +, year = 1988 +, pages = "131--140" +, keywords = "polygons, algebraic geometry, curvilinear" +, update = "95.05 korneenko" } @article{ap-crp3t-86 -, author = "S. Arnborg and A. Proskurowski" -, title = "Characterization and recognition of partial $3$-trees" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 7 -, year = 1986 -, pages = "305--314" -, update = "97.11 bibrelex" +, author = "S. Arnborg and A. Proskurowski" +, title = "Characterization and recognition of partial $3$-trees" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 7 +, year = 1986 +, pages = "305--314" +, update = "97.11 bibrelex" } @article{am-uvtps-84 -, author = "D. B. Arnold and W. J. Milne" -, title = "The use of {Voronoi} tessellations in processing soil survey results" -, journal = "IEEE Comput. Graph. Appl." -, volume = 4 -, year = 1984 -, pages = "22--28" -, keywords = "application, Voronoi diagrams, subdivision" +, author = "D. B. Arnold and W. J. Milne" +, title = "The use of {Voronoi} tessellations in processing soil survey results" +, journal = "IEEE Comput. Graph. Appl." +, volume = 4 +, year = 1984 +, pages = "22--28" +, keywords = "application, Voronoi diagrams, subdivision" } @book{ag-jpl-96 -, author = "K. Arnold and J. Gosling" -, title = "The Java Programming Language" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1996 -, update = "98.07 tamassia" +, author = "K. Arnold and J. Gosling" +, title = "The Java Programming Language" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1996 +, update = "98.07 tamassia" } @article{a-sicp-80 -, author = "V. I. Arnold" -, title = "Statistics of integral convex polytopes" -, journal = "Functional Anal. Appl." -, volume = 14 -, year = 1980 -, pages = "1--3" -, update = "97.11 bibrelex" +, author = "V. I. Arnold" +, title = "Statistics of integral convex polytopes" +, journal = "Functional Anal. Appl." +, volume = 14 +, year = 1980 +, pages = "1--3" +, update = "97.11 bibrelex" } @article{a-bqera-88 -, author = "D. Arnon" -, title = "A bibliography of quantifier elimination for real algebraic fields" -, journal = "J. Symbolic Comput." -, volume = 5 -, year = 1988 -, pages = "267--274" -, keywords = "algebraic geometry, bibliography" -, update = "95.05 korneenko" +, author = "D. Arnon" +, title = "A bibliography of quantifier elimination for real algebraic fields" +, journal = "J. Symbolic Comput." +, volume = 5 +, year = 1988 +, pages = "267--274" +, keywords = "algebraic geometry, bibliography" +, update = "95.05 korneenko" } @article{a-grla-88 -, author = "D. Arnon" -, title = "Geometric reasoning with logic and algebra" -, journal = "Artif. Intell." -, volume = 37 -, number = 1 -, year = 1988 -, pages = "37--60" -, keywords = "algebraic geometry, geometric reasoning" -, update = "96.09 devillers, 95.05 korneenko" +, author = "D. Arnon" +, title = "Geometric reasoning with logic and algebra" +, journal = "Artif. Intell." +, volume = 37 +, number = 1 +, year = 1988 +, pages = "37--60" +, keywords = "algebraic geometry, geometric reasoning" +, update = "96.09 devillers, 95.05 korneenko" } @book{ab-arag-88 -, title = "Algorithms in Real Algebraic Geometry" -, editor = "D. S. Arnon and B. Buchberger" -, volume = "5/1, 2" -, publisher = "??" -, year = 1988 -, note = "Special issue of the Journal of Symbolic Computation" -, update = "98.03 bibrelex" +, title = "Algorithms in Real Algebraic Geometry" +, editor = "D. S. Arnon and B. Buchberger" +, volume = "5/1, 2" +, publisher = "??" +, year = 1988 +, note = "Special issue of the Journal of Symbolic Computation" +, update = "98.03 bibrelex" } @article{acm-aacad-88 -, author = "D. S. Arnon and G. E. Collins and S. {McCallum}" -, title = "An adjacency algorithm for cylindrical algebraic decomposition in three-dimensional space" -, journal = "J. Symbolic Comput." -, volume = 5 -, number = "1--2" -, year = 1988 -, pages = "163--187" -, keywords = "algebraic geometry, motion planning" -, update = "95.05 korneenko" +, author = "D. S. Arnon and G. E. Collins and S. {McCallum}" +, title = "An adjacency algorithm for cylindrical algebraic decomposition in three-dimensional space" +, journal = "J. Symbolic Comput." +, volume = 5 +, number = "1--2" +, year = 1988 +, pages = "163--187" +, keywords = "algebraic geometry, motion planning" +, update = "95.05 korneenko" } @article{acm-cad1b-84 -, author = "D. S. Arnon and G. E. Collins and S. {McCallum}" -, title = "Cylindrical algebraic decomposition {I}: {The} basic algorithm" -, journal = "SIAM J. Comput." -, volume = 13 -, number = 4 -, year = 1984 -, pages = "865--877" -, keywords = "algebraic geometry, motion planning" -, update = "96.05 agarwal, 95.05 korneenko" +, author = "D. S. Arnon and G. E. Collins and S. {McCallum}" +, title = "Cylindrical algebraic decomposition {I}: {The} basic algorithm" +, journal = "SIAM J. Comput." +, volume = 13 +, number = 4 +, year = 1984 +, pages = "865--877" +, keywords = "algebraic geometry, motion planning" +, update = "96.05 agarwal, 95.05 korneenko" } @article{acm-cad2a-84 -, author = "D. S. Arnon and G. E. Collins and S. {McCallum}" -, title = "Cylindrical algebraic decomposition {II}: {The} adjacency algorithm for the plane" -, journal = "SIAM J. Comput." -, volume = 13 -, number = 4 -, year = 1984 -, pages = "878--889" -, keywords = "algebraic geometry, motion planning" -, update = "97.03 agarwal, 95.05 korneenko" +, author = "D. S. Arnon and G. E. Collins and S. {McCallum}" +, title = "Cylindrical algebraic decomposition {II}: {The} adjacency algorithm for the plane" +, journal = "SIAM J. Comput." +, volume = 13 +, number = 4 +, year = 1984 +, pages = "878--889" +, keywords = "algebraic geometry, motion planning" +, update = "97.03 agarwal, 95.05 korneenko" } @unpublished{a-lbvdc-98 -, author = "B. Aronov" -, title = "A lower bound on {Voronoi} diagram complexity" -, year = 1998 -, note = "unpublished manuscript" -, update = "98.03 agarwal" +, author = "B. Aronov" +, title = "A lower bound on {Voronoi} diagram complexity" +, year = 1998 +, note = "unpublished manuscript" +, update = "98.03 agarwal" } @phdthesis{a-caasd-89 -, author = "B. Aronov" -, title = "Combinatorial and algorithmic analysis of space decomposition problems" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, month = feb -, year = 1989 -, keywords = "doctoral thesis" +, author = "B. Aronov" +, title = "Combinatorial and algorithmic analysis of space decomposition problems" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, month = feb +, year = 1989 +, keywords = "doctoral thesis" } @inproceedings{a-gvdps-87 -, author = "B. Aronov" -, title = "On the geodesic {Voronoi} diagram of point sites in a simple polygon" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "39--49" -, keywords = "geodesic distance, Voronoi diagram, simple polygon, shortest path" -, precedes = "a-gvdps-89" -, cites = "a-pdpaa-83, aa-vdpsp-, ae-oacwv-84, sb-spbtc-85, c-tpca-82, cd-vdbcd-85, f-savd-86, ghlst-ltavs-86t, gjpt-tsp-78, gs-dfbt-78, iim-vdlgi-85, k-eccs-79, l-prp-78, l-tdvdl-80, lpsssstwy-clcsp-87, lp-esppr-84, ls-ippvd-87, lw-vdllm-80, osy-rnamp-83, ps-cgcsp-86, ps-cgi-85, sh-cpp-75, s-cldsp-86, s-cgdsp-86, t-oacrc-86, tv-otats-86, y-oavds-84, ZZZ" -, update = "98.03 bibrelex, 95.01 aronov" +, author = "B. Aronov" +, title = "On the geodesic {Voronoi} diagram of point sites in a simple polygon" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "39--49" +, keywords = "geodesic distance, Voronoi diagram, simple polygon, shortest path" +, precedes = "a-gvdps-89" +, cites = "a-pdpaa-83, aa-vdpsp-, ae-oacwv-84, sb-spbtc-85, c-tpca-82, cd-vdbcd-85, f-savd-86, ghlst-ltavs-86t, gjpt-tsp-78, gs-dfbt-78, iim-vdlgi-85, k-eccs-79, l-prp-78, l-tdvdl-80, lpsssstwy-clcsp-87, lp-esppr-84, ls-ippvd-87, lw-vdllm-80, osy-rnamp-83, ps-cgcsp-86, ps-cgi-85, sh-cpp-75, s-cldsp-86, s-cgdsp-86, t-oacrc-86, tv-otats-86, y-oavds-84, ZZZ" +, update = "98.03 bibrelex, 95.01 aronov" } @article{a-gvdps-89 -, author = "Boris Aronov" -, title = "On the geodesic {Voronoi} diagram of point sites in a simple polygon" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "109--140" -, keywords = "geodesic distance, Voronoi diagram, simple polygon, shortest path" -, succeeds = "a-gvdps-87" -, update = "96.05 efrat, 95.01 aronov" -, abstract = "Given a simple polygon with $n$ sides in the plane +, author = "Boris Aronov" +, title = "On the geodesic {Voronoi} diagram of point sites in a simple polygon" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "109--140" +, keywords = "geodesic distance, Voronoi diagram, simple polygon, shortest path" +, succeeds = "a-gvdps-87" +, update = "96.05 efrat, 95.01 aronov" +, abstract = "Given a simple polygon with $n$ sides in the plane and a set of $k$ point ``sites'' in its interior or on the boundary, compute the Voronoi diagram of the set of sites using the internal ``geodesic'' distance inside the polygon as the metric. We describe an @@ -9118,87 +9118,87 @@ @article{a-gvdps-89 } @inproceedings{aas-lalsp-97 -, author = "B. Aronov and P. Agarwal and M. Sharir" -, title = "On Levels in Arrangements of Lines, Segments, Planes, and Triangles" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "30--38" -, precedes = "aacs-lalsp-98" -, cites = "ag-nssfs-86, acegsw-ptphp-91, bfl-nhp-90, bs-enks-94, ceghss-shcp-94, c-blmat-93, cs-arscg-89, de-ctchp-94, e-acg-87, evw-cdpsh-94, elss-dgpps-73, gp-asotd-93, g-saco-80, g-bpstp-79, hs-dccap-91, hs-cdcca-94, hs-cpmfl-92, l-nhl-71, pa-cg-95, pss-ubnpk-92, s-ksacs-91, tt-hcpps-95, w-mksfs-86, ws-prnds-88, vz-ctpci-92, ZZZ" -, update = "98.07 bibrelex+smid, 98.03 mitchell, 97.07 efrat, 97.03 agarwal, 96.09 agarwal" +, author = "B. Aronov and P. Agarwal and M. Sharir" +, title = "On Levels in Arrangements of Lines, Segments, Planes, and Triangles" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "30--38" +, precedes = "aacs-lalsp-98" +, cites = "ag-nssfs-86, acegsw-ptphp-91, bfl-nhp-90, bs-enks-94, ceghss-shcp-94, c-blmat-93, cs-arscg-89, de-ctchp-94, e-acg-87, evw-cdpsh-94, elss-dgpps-73, gp-asotd-93, g-saco-80, g-bpstp-79, hs-dccap-91, hs-cdcca-94, hs-cpmfl-92, l-nhl-71, pa-cg-95, pss-ubnpk-92, s-ksacs-91, tt-hcpps-95, w-mksfs-86, ws-prnds-88, vz-ctpci-92, ZZZ" +, update = "98.07 bibrelex+smid, 98.03 mitchell, 97.07 efrat, 97.03 agarwal, 96.09 agarwal" } @inproceedings{abssv-mpmr-98 -, author = "B. Aronov and M. de Berg and A. F. van der Stappen and O. \v{S}vestka and J. Vleugels" -, title = "Motion planning for multiple robots" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "374--382" -, update = "00.03 agarwal" +, author = "B. Aronov and M. de Berg and A. F. van der Stappen and O. \v{S}vestka and J. Vleugels" +, title = "Motion planning for multiple robots" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "374--382" +, update = "00.03 agarwal" } @article{advsv-mpmr-99 -, author = "B. Aronov and M. de Berg and A. F. van der Stappen and P. {\v S}vestka and J. Vleugels" -, title = "Motion Planning for Multiple Robots" -, journal = "Discrete Comput. Geom." -, volume = 22 -, number = 4 -, year = 1999 -, pages = "505--525" -, update = "00.03 bibrelex, 99.11 held" +, author = "B. Aronov and M. de Berg and A. F. van der Stappen and P. {\v S}vestka and J. Vleugels" +, title = "Motion Planning for Multiple Robots" +, journal = "Discrete Comput. Geom." +, volume = 22 +, number = 4 +, year = 1999 +, pages = "505--525" +, update = "00.03 bibrelex, 99.11 held" } @unpublished{abe-acp-95 -, author = "B. Aronov and M. Bern and D. Eppstein" -, title = "Arrangements of convex polytopes" -, year = 1995 -, note = "unpublished manuscript" -, update = "98.03 agarwal" +, author = "B. Aronov and M. Bern and D. Eppstein" +, title = "Arrangements of convex polytopes" +, year = 1995 +, note = "unpublished manuscript" +, update = "98.03 agarwal" } %, number = 1 @article{abe-nm1st-94 -, author = "B. Aronov and M. Bern and D. Eppstein" -, title = "On the Number of Minimal {1-Steiner} Trees" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "29--34" -, update = "98.03 aronov" +, author = "B. Aronov and M. Bern and D. Eppstein" +, title = "On the Number of Minimal {1-Steiner} Trees" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "29--34" +, update = "98.03 aronov" } @techreport{abe-ap1sp-91 -, author = "B. Aronov and M. Bern and D. Epstein" -, title = "Arrangement of polytopes and the $1$-{Steiner} problem" -, type = "Preprint" -, institution = "??" -, year = 1991 -, update = "98.07 bibrelex" +, author = "B. Aronov and M. Bern and D. Epstein" +, title = "Arrangement of polytopes and the $1$-{Steiner} problem" +, type = "Preprint" +, institution = "??" +, year = 1991 +, update = "98.07 bibrelex" } @inproceedings{acegsw-ptphp-90 -, author = "B. Aronov and Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and R. Wenger" -, title = "Points and triangles in the plane and halving planes in space" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "112--115" -, keywords = "combinatorial geometry, halving sets, $k$-sets" -, precedes = "acegsw-ptphp-91" -, cites = "ag-nssfs-86, a-pdpaa-87, b-gct-82, bfl-nhp-89, bf-ntccn-84, ceghss-sdash-90, cs-arscg-89, e-acg-87, ew-nlsfs-85, elss-dgpps-73, gp-nkssn-84, l-nhl-71, pss-ubnpk-89, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 95.01 aronov" +, author = "B. Aronov and Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and R. Wenger" +, title = "Points and triangles in the plane and halving planes in space" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "112--115" +, keywords = "combinatorial geometry, halving sets, $k$-sets" +, precedes = "acegsw-ptphp-91" +, cites = "ag-nssfs-86, a-pdpaa-87, b-gct-82, bfl-nhp-89, bf-ntccn-84, ceghss-sdash-90, cs-arscg-89, e-acg-87, ew-nlsfs-85, elss-dgpps-73, gp-nkssn-84, l-nhl-71, pss-ubnpk-89, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 95.01 aronov" } @article{acegsw-ptphp-91 -, author = "Boris Aronov and Bernard Chazelle and Herbert Edelsbrunner and Leonidas J. Guibas and Micha Sharir and Rephael Wenger" -, title = "Points and triangles in the plane and halving planes in space" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "435--442" -, keywords = "combinatorial geometry, halving sets, $k$-sets" -, succeeds = "acegsw-ptphp-90" -, update = "95.01 aronov" -, abstract = "We prove that for any set $S$ of $n$ points in the plane and +, author = "Boris Aronov and Bernard Chazelle and Herbert Edelsbrunner and Leonidas J. Guibas and Micha Sharir and Rephael Wenger" +, title = "Points and triangles in the plane and halving planes in space" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "435--442" +, keywords = "combinatorial geometry, halving sets, $k$-sets" +, succeeds = "acegsw-ptphp-90" +, update = "95.01 aronov" +, abstract = "We prove that for any set $S$ of $n$ points in the plane and $n^{3-\alpha}$ triangles spanned by the points in $S$ there exists a point (not necessarily in $S$) contained in at least $n^{3-3\alpha} \over c \log^5n$ of the triangles. @@ -9207,1871 +9207,1871 @@ @article{acegsw-ptphp-91 } @inproceedings{addpp-vmr-96 -, author = "Boris Aronov and Alan R. Davis and Tamal K. Dey and Sudebkumar P. Pal and D. Chithra Prasad" -, title = "Visibility with Multiple Reflections" -, booktitle = "Proc. 5th Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 1097 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "284--295" -, precedes = "addpp-vmr-98" -, update = "99.11 bibrelex, 98.11 aronov, 96.09 aronov" +, author = "Boris Aronov and Alan R. Davis and Tamal K. Dey and Sudebkumar P. Pal and D. Chithra Prasad" +, title = "Visibility with Multiple Reflections" +, booktitle = "Proc. 5th Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 1097 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "284--295" +, precedes = "addpp-vmr-98" +, update = "99.11 bibrelex, 98.11 aronov, 96.09 aronov" } %% Edited this from addpp-vmr in old version of geombib--was completely wrong! %% Yes, the names are abbreviated like that in DCG version. --BA @article{addpp-vmr-98 -, author = "B. Aronov and A. R. Davis and T. K. Dey and S. P. Pal and D. C. Prasad" -, title = "Visibility with Multiple Reflections" -, journal = "Discrete Comput. Geom." -, volume = 20 -, year = 1998 -, pages = "61--78" -, succeeds = "addpp-vmr-96" -, update = "98.11 aronov, 98.03 agarwal+bibrelex, 97.11 aronov" +, author = "B. Aronov and A. R. Davis and T. K. Dey and S. P. Pal and D. C. Prasad" +, title = "Visibility with Multiple Reflections" +, journal = "Discrete Comput. Geom." +, volume = 20 +, year = 1998 +, pages = "61--78" +, succeeds = "addpp-vmr-96" +, update = "98.11 aronov, 98.03 agarwal+bibrelex, 97.11 aronov" } @article{addpp-vor-98 -, author = "B. Aronov and A. R. Davis and T. K. Dey and S. P. Pal and D. C. Prasad" -, title = "Visibility with One Reflection" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "553--574" -, succeeds = "addpp-vr-95" -, update = "98.11 aronov+held, 97.11 aronov" +, author = "B. Aronov and A. R. Davis and T. K. Dey and S. P. Pal and D. C. Prasad" +, title = "Visibility with One Reflection" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "553--574" +, succeeds = "addpp-vr-95" +, update = "98.11 aronov+held, 97.11 aronov" } @inproceedings{addpp-vr-95 -, author = "Boris Aronov and Alan R. Davis and Tamal K. Dey and Sudebkumar P. Pal and D. Chithra Prasad" -, title = "Visibility with Reflection" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "316--325" -, keywords = "mirrors" -, precedes = "addpp-vor-98" -, cites = "addpp-vmr-96, ak-frtrc-87, bo-arcgi-79, dpp-agpvr-95, ea-lacvp-81, fkn-vsgpt-80, ghlst-ltavs-87, g-bp-86, hv-splsp-49, k-ealdp-89, kw-onupp-91, l-vsp-83, ll-ccagp-86, lpsssstwy-clcsp-88, o-agta-87, rty-ccrt-94, s-rrag-92, s-mlppr-87, s-sldps-90, ZZZ" -, update = "99.11 bibrelex, 98.11 aronov, 98.03 bibrelex, 95.09 mitchell" +, author = "Boris Aronov and Alan R. Davis and Tamal K. Dey and Sudebkumar P. Pal and D. Chithra Prasad" +, title = "Visibility with Reflection" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "316--325" +, keywords = "mirrors" +, precedes = "addpp-vor-98" +, cites = "addpp-vmr-96, ak-frtrc-87, bo-arcgi-79, dpp-agpvr-95, ea-lacvp-81, fkn-vsgpt-80, ghlst-ltavs-87, g-bp-86, hv-splsp-49, k-ealdp-89, kw-onupp-91, l-vsp-83, ll-ccagp-86, lpsssstwy-clcsp-88, o-agta-87, rty-ccrt-94, s-rrag-92, s-mlppr-87, s-sldps-90, ZZZ" +, update = "99.11 bibrelex, 98.11 aronov, 98.03 bibrelex, 95.09 mitchell" } @techreport{aegs-ibcmf-89 -, author = "B. Aronov and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "Improved bounds on the complexity of many faces in arrangements of segments" -, type = "Report" -, number = 459 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, month = jul -, year = 1989 -, keywords = "combinatorial geometry, combinatorial complexity, arrangements, complexity of faces, random sampling" -, precedes = "aegs-nemfl-90" -, update = "98.03 mitchell" +, author = "B. Aronov and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "Improved bounds on the complexity of many faces in arrangements of segments" +, type = "Report" +, number = 459 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, month = jul +, year = 1989 +, keywords = "combinatorial geometry, combinatorial complexity, arrangements, complexity of faces, random sampling" +, precedes = "aegs-nemfl-90" +, update = "98.03 mitchell" } @article{aegs-nemfl-92 -, author = "B. Aronov and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "The number of edges of many faces in a line segment arrangement" -, journal = "Combinatorica" -, volume = 12 -, number = 3 -, year = 1992 -, pages = "261--274" -, keywords = "combinatorial geometry, combinatorial complexity, arrangements, complexity of faces, random sampling" -, succeeds = "aegs-nemfl-90" -, update = "98.03 mitchell, 97.11 aronov, 93.09 matousek" +, author = "B. Aronov and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "The number of edges of many faces in a line segment arrangement" +, journal = "Combinatorica" +, volume = 12 +, number = 3 +, year = 1992 +, pages = "261--274" +, keywords = "combinatorial geometry, combinatorial complexity, arrangements, complexity of faces, random sampling" +, succeeds = "aegs-nemfl-90" +, update = "98.03 mitchell, 97.11 aronov, 93.09 matousek" } @techreport{aegs-nemfl-90 -, author = "B. Aronov and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "The number of edges of many faces in line segment arrangements" -, type = "Report" -, number = "90-46" -, institution = "DIMACS, Rutgers Univ." -, address = "New Brunswick, NJ" -, month = jun -, year = 1990 -, keywords = "combinatorial geometry, combinatorial complexity, arrangements, complexity of faces, random sampling" -, succeeds = "aegs-ibcmf-89" -, precedes = "aegs-nemfl-92" -, update = "98.03 mitchell, 97.11 aronov" +, author = "B. Aronov and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "The number of edges of many faces in line segment arrangements" +, type = "Report" +, number = "90-46" +, institution = "DIMACS, Rutgers Univ." +, address = "New Brunswick, NJ" +, month = jun +, year = 1990 +, keywords = "combinatorial geometry, combinatorial complexity, arrangements, complexity of faces, random sampling" +, succeeds = "aegs-ibcmf-89" +, precedes = "aegs-nemfl-92" +, update = "98.03 mitchell, 97.11 aronov" } @inproceedings{aehs-nrvuj-98 -, author = "Boris Aronov and Alon Efrat and Dan Halperin and Micha Sharir" -, title = "On the Number of Regular Vertices of the Union of {Jordan} Regions" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "322--334" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "Boris Aronov and Alon Efrat and Dan Halperin and Micha Sharir" +, title = "On the Number of Regular Vertices of the Union of {Jordan} Regions" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "322--334" +, update = "99.03 bibrelex, 98.07 mitchell" } @techreport{aes-sbnrv-97 -, author = "Boris Aronov and Alon Efrat and Micha Sharir" -, title = "A Subquadratic Bound on the Number of Regular Vertices of the Union of {Jordan} Regions" -, type = "Manuscript" -, institution = "Tel Aviv University" -, year = 1997 -, update = "98.03 mitchell" +, author = "Boris Aronov and Alon Efrat and Micha Sharir" +, title = "A Subquadratic Bound on the Number of Regular Vertices of the Union of {Jordan} Regions" +, type = "Manuscript" +, institution = "Tel Aviv University" +, year = 1997 +, update = "98.03 mitchell" } @inproceedings{aegkkps-cf-91 -, author = "B. Aronov and P. Erd{\H o}s and W. Goddard and D. J. Kleitman and M. Klugerman and J. Pach and L. J. Schulman" -, title = "Crossing families" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "351--356" -, keywords = "partition" -, cites = "ae-degg-89, cp-tttcc-90, e-acg-87, es-cpg-35, m-ept-91, r-ng-83, ZZZ" -, update = "97.11 bibrelex" +, author = "B. Aronov and P. Erd{\H o}s and W. Goddard and D. J. Kleitman and M. Klugerman and J. Pach and L. J. Schulman" +, title = "Crossing families" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "351--356" +, keywords = "partition" +, cites = "ae-degg-89, cp-tttcc-90, e-acg-87, es-cpg-35, m-ept-91, r-ng-83, ZZZ" +, update = "97.11 bibrelex" } @article{aegkkps-cf-94 -, author = "B. Aronov and P. Erd{\H o}s and W. Goddard and D. J. Kleitman and M. Klugerman and J. Pach and L. J. Schulman" -, title = "Crossing families" -, journal = "Combinatorica" -, volume = 14 -, year = 1994 -, pages = "127--134" -, keywords = "partition" -, update = "97.11 bibrelex" +, author = "B. Aronov and P. Erd{\H o}s and W. Goddard and D. J. Kleitman and M. Klugerman and J. Pach and L. J. Schulman" +, title = "Crossing families" +, journal = "Combinatorica" +, volume = 14 +, year = 1994 +, pages = "127--134" +, keywords = "partition" +, update = "97.11 bibrelex" } @inproceedings{af-acrsm-97 -, author = "B. Aronov and S. Fortune" -, title = "Average-Case Ray Shooting and Minimum Weight Triangulations" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "203--211" -, cites = "a-rs-97, aas-stl3d-95, am-rsss-94, as-anspt-93, be-aagp-97, c-aapts-91, e-acg-87, e-amwst-94, f-btapi-96, hs-parss-93, mms-qsrs-94, m-smga-92, o-cgc-94, s-ipgp-79, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "B. Aronov and S. Fortune" +, title = "Average-Case Ray Shooting and Minimum Weight Triangulations" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "203--211" +, cites = "a-rs-97, aas-stl3d-95, am-rsss-94, as-anspt-93, be-aagp-97, c-aapts-91, e-acg-87, e-amwst-94, f-btapi-96, hs-parss-93, mms-qsrs-94, m-smga-92, o-cgc-94, s-ipgp-79, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @unpublished{afw-msm-87 -, author = "B. Aronov and S. Fortune and G. Wilfong" -, title = "Minimum speed motion" -, year = 1987 -, note = "??" -, update = "98.03 bibrelex" +, author = "B. Aronov and S. Fortune and G. Wilfong" +, title = "Minimum speed motion" +, year = 1987 +, note = "??" +, update = "98.03 bibrelex" } @article{afw-fsgvd-93 -, author = "B. Aronov and S. J. Fortune and G. Wilfong" -, title = "Furthest-Site Geodesic {Voronoi} Diagram" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "217--255" -, keywords = "geodesic distance, simple polygon, Voronoi diagram" -, succeeds = "afw-fsgvd-88" -, update = "94.05 aronov" -, abstract = "We present an $O((n+k)\log(n+k))$ time, $O(n+k)$ space +, author = "B. Aronov and S. J. Fortune and G. Wilfong" +, title = "Furthest-Site Geodesic {Voronoi} Diagram" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "217--255" +, keywords = "geodesic distance, simple polygon, Voronoi diagram" +, succeeds = "afw-fsgvd-88" +, update = "94.05 aronov" +, abstract = "We present an $O((n+k)\log(n+k))$ time, $O(n+k)$ space algorithm for computing the furthest-site Voronoi diagram of $k$ point sites with respect to the geodesic metric within a simple $n$-sided polygon." } @inproceedings{afw-fsgvd-88 -, author = "B. Aronov and S. J. Fortune and G. Wilfong" -, title = "The furthest-site geodesic {Voronoi} diagram" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "229--240" -, keywords = "geodesic distance, simple polygon, Voronoi diagram" -, precedes = "afw-fsgvd-93" -, cites = "a-gvdps-87, at-cgcsp-87, ghlst-ltavs-86, gjpt-tsp-78, lp-esppr-84, psr-cgcsp-89, ps-cgi-85, s-agfnp-87, t-oacrc-86, ZZZ" -, update = "98.03 bibrelex, 94.05 aronov" +, author = "B. Aronov and S. J. Fortune and G. Wilfong" +, title = "The furthest-site geodesic {Voronoi} diagram" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "229--240" +, keywords = "geodesic distance, simple polygon, Voronoi diagram" +, precedes = "afw-fsgvd-93" +, cites = "a-gvdps-87, at-cgcsp-87, ghlst-ltavs-86, gjpt-tsp-78, lp-esppr-84, psr-cgcsp-89, ps-cgi-85, s-agfnp-87, t-oacrc-86, ZZZ" +, update = "98.03 bibrelex, 94.05 aronov" } @unpublished{agpw-tinhn- -, author = "B. Aronov and J. E. Goodman and R. Pollack" -, title = "There is no {Hadwiger} number for line traversals in higher dimensions" -, note = "Unpublished Manuscript" -, update = "98.03 bibrelex" +, author = "B. Aronov and J. E. Goodman and R. Pollack" +, title = "There is no {Hadwiger} number for line traversals in higher dimensions" +, note = "Unpublished Manuscript" +, update = "98.03 bibrelex" } @inproceedings{agpw-httht-00 -, author = "Boris Aronov and Jacob E. Goodman and Richard Pollack and Rephael Wenger" -, title = "A {Helly}-Type Theorem for Hyperplane Transversals to Well-Separated Convex Sets" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "57--63" -, update = "00.11 jones" +, author = "Boris Aronov and Jacob E. Goodman and Richard Pollack and Rephael Wenger" +, title = "A {Helly}-Type Theorem for Hyperplane Transversals to Well-Separated Convex Sets" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "57--63" +, update = "00.11 jones" } % issue number 1 @article{am-stl3s-95 -, author = "B. Aronov and J. Matou{\v s}ek" -, title = "On stabbing triangles by lines in 3-space" -, journal = "Comment. Math. Univ. Carolinae" -, volume = 36 -, year = 1995 -, pages = "109--113" -, update = "98.03 bibrelex, 97.11 aronov" +, author = "B. Aronov and J. Matou{\v s}ek" +, title = "On stabbing triangles by lines in 3-space" +, journal = "Comment. Math. Univ. Carolinae" +, volume = 36 +, year = 1995 +, pages = "109--113" +, update = "98.03 bibrelex, 97.11 aronov" } @inproceedings{ams-sscch-91 -, author = "B. Aronov and J. Matou{\v s}ek and Micha Sharir" -, title = "On the sum of squares of cell complexities in hyperplane arrangements" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "307--313" -, keywords = "combinatorial geometry, combinatorial complexity, arrangements, polytopes, hyperplanes" -, comments = "To appear in {\em Journal Combin. Theory Ser. A}" -, cites = "aa-cfi-89, as-tsbac-90, as-zasha-91, as-cscas-, cf-plh-91, cegsw-ccbac-90, cs-arscg-89, e-acg-87, egs-cmcap-90, ess-npzta-, p-caasv-91, p-nrrsi-91, s-ksacs-91, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 96.09 agarwal" +, author = "B. Aronov and J. Matou{\v s}ek and Micha Sharir" +, title = "On the sum of squares of cell complexities in hyperplane arrangements" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "307--313" +, keywords = "combinatorial geometry, combinatorial complexity, arrangements, polytopes, hyperplanes" +, comments = "To appear in {\em Journal Combin. Theory Ser. A}" +, cites = "aa-cfi-89, as-tsbac-90, as-zasha-91, as-cscas-, cf-plh-91, cegsw-ccbac-90, cs-arscg-89, e-acg-87, egs-cmcap-90, ess-npzta-, p-caasv-91, p-nrrsi-91, s-ksacs-91, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 96.09 agarwal" } @article{ams-sscch-94 -, author = "B. Aronov and J. Matou{\v s}ek and Micha Sharir" -, title = "On the sum of squares of cell complexities in hyperplane arrangements" -, journal = "J. Combin. Theory Ser. A" -, volume = 65 -, year = 1994 -, pages = "311--321" -, update = "98.03 mitchell, 97.11 bibrelex, 94.05 matousek" +, author = "B. Aronov and J. Matou{\v s}ek and Micha Sharir" +, title = "On the sum of squares of cell complexities in hyperplane arrangements" +, journal = "J. Combin. Theory Ser. A" +, volume = 65 +, year = 1994 +, pages = "311--321" +, update = "98.03 mitchell, 97.11 bibrelex, 94.05 matousek" } @article{anps-ipbah-93 -, author = "B. Aronov and D. Q. Naiman and J. Pach and Micha Sharir" -, title = "An invariant property of balls in arrangements of hyperplanes" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "421--425" -, update = "98.03 mitchell, 97.11 bibrelex, 94.05 aronov+sharir" +, author = "B. Aronov and D. Q. Naiman and J. Pach and Micha Sharir" +, title = "An invariant property of balls in arrangements of hyperplanes" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "421--425" +, update = "98.03 mitchell, 97.11 bibrelex, 94.05 aronov+sharir" } @techreport{ao-ampps-87 -, author = "B. Aronov and C. {\'O}'D{\'u}nlaing" -, title = "Analysis of the motion-planning problem for a simple two-link planar arm" -, type = "Report" -, number = 314 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, month = aug -, year = 1987 -, keywords = "motion planning, configuration space" +, author = "B. Aronov and C. {\'O}'D{\'u}nlaing" +, title = "Analysis of the motion-planning problem for a simple two-link planar arm" +, type = "Report" +, number = 314 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, month = aug +, year = 1987 +, keywords = "motion planning, configuration space" } @techreport{ao-nsu-91t -, author = "B. Aronov and J. O'Rourke" -, title = "Nonoverlap of the star unfolding" -, type = "Technical {Report}" -, number = 002 -, institution = "Smith College" -, address = "Northampton, MA" -, month = mar -, year = 1991 -, update = "97.11 bibrelex" +, author = "B. Aronov and J. O'Rourke" +, title = "Nonoverlap of the star unfolding" +, type = "Technical {Report}" +, number = 002 +, institution = "Smith College" +, address = "Northampton, MA" +, month = mar +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{ao-nsu-91 -, author = "B. Aronov and J. O'Rourke" -, title = "Nonoverlap of the star unfolding" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "105--114" -, keywords = "polytopes, shortest paths, Voronoi diagrams, edge sequences" -, cites = "ao-nsu-91t, aaos-supa-90, aaos-supa-93, a-digdk-55, a-kp-58, b-cs-58, ch-spp-90, k-ccl-67, p-egcs-73, ss-spps-86, ZZZ" -, update = "97.11 bibrelex, 93.05 orourke" +, author = "B. Aronov and J. O'Rourke" +, title = "Nonoverlap of the star unfolding" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "105--114" +, keywords = "polytopes, shortest paths, Voronoi diagrams, edge sequences" +, cites = "ao-nsu-91t, aaos-supa-90, aaos-supa-93, a-digdk-55, a-kp-58, b-cs-58, ch-spp-90, k-ccl-67, p-egcs-73, ss-spps-86, ZZZ" +, update = "97.11 bibrelex, 93.05 orourke" } @article{ao-nsu-92 -, author = "B. Aronov and J. O'Rourke" -, title = "Nonoverlap of the star unfolding" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "219--250" -, keywords = "polytopes, shortest paths, Voronoi diagrams, edge sequences" -, update = "93.05 orourke" +, author = "B. Aronov and J. O'Rourke" +, title = "Nonoverlap of the star unfolding" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "219--250" +, keywords = "polytopes, shortest paths, Voronoi diagrams, edge sequences" +, update = "93.05 orourke" } @article{aps-zsha-93 -, author = "B. Aronov and M. Pellegrini and Micha Sharir" -, title = "On the zone of a surface in a hyperplane arrangement" -, journal = "Discrete Comput. Geom." -, volume = 9 -, number = 2 -, year = 1993 -, pages = "177--186" -, comments = "zone of k-dim bounded degree algebraic variety in arrangement of n hyperplanes in d-space has roughly $n^{\lfloor (k+d)/2\rfloor}$ complexity (plus some extra logs)" -, succeeds = "as-zsha-91, p-zcdps-91" -, update = "98.03 mitchell, 95.09 aronov, 93.09 matousek" +, author = "B. Aronov and M. Pellegrini and Micha Sharir" +, title = "On the zone of a surface in a hyperplane arrangement" +, journal = "Discrete Comput. Geom." +, volume = 9 +, number = 2 +, year = 1993 +, pages = "177--186" +, comments = "zone of k-dim bounded degree algebraic variety in arrangement of n hyperplanes in d-space has roughly $n^{\lfloor (k+d)/2\rfloor}$ complexity (plus some extra logs)" +, succeeds = "as-zsha-91, p-zcdps-91" +, update = "98.03 mitchell, 95.09 aronov, 93.09 matousek" } @article{ass-ctsp-93 -, author = "B. Aronov and R. Seidel and D. Souvaine" -, title = "On compatible triangulations of simple polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, number = 1 -, year = 1993 -, pages = "27--35" -, keywords = "polygon, triagulation" -, update = "95.05 korneenko" +, author = "B. Aronov and R. Seidel and D. Souvaine" +, title = "On compatible triangulations of simple polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, number = 1 +, year = 1993 +, pages = "27--35" +, keywords = "polygon, triagulation" +, update = "95.05 korneenko" } @inproceedings{as-car-92 -, author = "B. Aronov and Micha Sharir" -, title = "Castles in the air revisited" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "146--156" -, keywords = "combinatorial geometry, combinatorial complexity, simplex arrangements, popularity, excess" -, precedes = "as-car-94" -, cites = "aa-cfi-89, ams-sscch-91, as-tsbac-90, as-zsha-91, cs-arscg-89, e-acg-87, egppss-acptc-92, egs-ccmfa-90, egs-cmcap-90, ess-ztha-93, gss-gmppt-89, h-cscca-91, hks-uevsi-91, ps-ueplf-89, ss-pmp2g-83, ss-tddsp-90, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 95.01 aronov, 93.05 smid" -} - -%, number = 2 -%, month = sep +, author = "B. Aronov and Micha Sharir" +, title = "Castles in the air revisited" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "146--156" +, keywords = "combinatorial geometry, combinatorial complexity, simplex arrangements, popularity, excess" +, precedes = "as-car-94" +, cites = "aa-cfi-89, ams-sscch-91, as-tsbac-90, as-zsha-91, cs-arscg-89, e-acg-87, egppss-acptc-92, egs-ccmfa-90, egs-cmcap-90, ess-ztha-93, gss-gmppt-89, h-cscca-91, hks-uevsi-91, ps-ueplf-89, ss-pmp2g-83, ss-tddsp-90, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 95.01 aronov, 93.05 smid" +} + +%, number = 2 +%, month = sep @article{as-car-94 -, author = "B. Aronov and Micha Sharir" -, title = "Castles in the air revisited" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "119--150" -, keywords = "combinatorial geometry, combinatorial complexity, simplex arrangements, popularity, excess" -, succeeds = "as-car-92" -, update = "98.03 mitchell, 97.11 aronov, 95.01 aronov" +, author = "B. Aronov and Micha Sharir" +, title = "Castles in the air revisited" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "119--150" +, keywords = "combinatorial geometry, combinatorial complexity, simplex arrangements, popularity, excess" +, succeeds = "as-car-92" +, update = "98.03 mitchell, 97.11 aronov, 95.01 aronov" } @inproceedings{as-ccpsi-01 -, author = "Boris Aronov and Micha Sharir" -, title = "Cutting Circles into Pseudo-Segments and Improved Bounds for Incidences" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "66--69" -, update = "01.04 icking" +, author = "Boris Aronov and Micha Sharir" +, title = "Cutting Circles into Pseudo-Segments and Improved Bounds for Incidences" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "66--69" +, update = "01.04 icking" } @unpublished{as-cscas- -, author = "B. Aronov and Micha Sharir" -, title = "On the complexity of a single cell in an arrangement of simplices in $d$-space" -, note = "In preparation" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "B. Aronov and Micha Sharir" +, title = "On the complexity of a single cell in an arrangement of simplices in $d$-space" +, note = "In preparation" +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{as-cocat-91 -, author = "B. Aronov and Micha Sharir" -, title = "On the complexity of one cell in an arrangement of triangles" -, type = "Manuscript" -, year = 1991 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "B. Aronov and Micha Sharir" +, title = "On the complexity of one cell in an arrangement of triangles" +, type = "Manuscript" +, year = 1991 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{as-zsha-91 -, author = "B. Aronov and Micha Sharir" -, title = "On the zone of a surface in a hyperplane arrangement" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "13--19" -, keywords = "arrangements, hyperplanes" -, precedes = "aps-zsha-93" -, update = "98.03 mitchell, 95.09 aronov" +, author = "B. Aronov and Micha Sharir" +, title = "On the zone of a surface in a hyperplane arrangement" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "13--19" +, keywords = "arrangements, hyperplanes" +, precedes = "aps-zsha-93" +, update = "98.03 mitchell, 95.09 aronov" } @techreport{as-zasha-91 -, author = "B. Aronov and Micha Sharir" -, title = "On the Zone of an Algebraic Surface in a Hyperplane Arrangement" -, type = "Manuscript" -, year = 1991 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "B. Aronov and Micha Sharir" +, title = "On the Zone of an Algebraic Surface in a Hyperplane Arrangement" +, type = "Manuscript" +, year = 1991 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{as-tmp3s-94 -, author = "Boris Aronov and Micha Sharir" -, title = "On Translational Motion Planning in $3$-Space" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "21--30" -, precedes = "as-tmpcp-97" -, cites = "as-cecpp-94, as-tsbac-90, as-car-92, as-ucptd-93, bms-plpco-93, c-oaitd-92, cegss-cfals-93, cs-arscg-89, e-acg-87, egs-ueplf-89, gh-atfc-81, gks-ricdv-92, gs-ccrs-87, hy-cctbp-93, hs-actbn-93, klps-ujrcf-86, ms-eracu-91, m-mt-63, ps-ueplf-89, s-eappt-87, v-htiat-73, ZZZ" -, update = "98.03 bibrelex, 97.11 aronov, 94.09 jones, 94.01 jones" +, author = "Boris Aronov and Micha Sharir" +, title = "On Translational Motion Planning in $3$-Space" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "21--30" +, precedes = "as-tmpcp-97" +, cites = "as-cecpp-94, as-tsbac-90, as-car-92, as-ucptd-93, bms-plpco-93, c-oaitd-92, cegss-cfals-93, cs-arscg-89, e-acg-87, egs-ueplf-89, gh-atfc-81, gks-ricdv-92, gs-ccrs-87, hy-cctbp-93, hs-actbn-93, klps-ujrcf-86, ms-eracu-91, m-mt-63, ps-ueplf-89, s-eappt-87, v-htiat-73, ZZZ" +, update = "98.03 bibrelex, 97.11 aronov, 94.09 jones, 94.01 jones" } % number = 6 % month = dec @article{as-tmpcp-97 -, author = "Boris Aronov and Micha Sharir" -, title = "On Translational Motion Planning of a Convex Polyhedron in $3$-Space" -, journal = "SIAM J. Comput." -, volume = 26 -, year = 1997 -, pages = "1785--1803" -, succeeds = "as-tmp3s-94" -, update = "97.11 aronov" +, author = "Boris Aronov and Micha Sharir" +, title = "On Translational Motion Planning of a Convex Polyhedron in $3$-Space" +, journal = "SIAM J. Comput." +, volume = 26 +, year = 1997 +, pages = "1785--1803" +, succeeds = "as-tmp3s-94" +, update = "97.11 aronov" } @techreport{as-cecpp-94 -, author = "B. Aronov and M. Sharir" -, title = "The common exterior of convex polygons in the plane" -, type = "Manuscript" -, institution = "??" -, year = 1994 -, update = "98.03 bibrelex" +, author = "B. Aronov and M. Sharir" +, title = "The common exterior of convex polygons in the plane" +, type = "Manuscript" +, institution = "??" +, year = 1994 +, update = "98.03 bibrelex" } @article{as-cecpp-97 -, author = "Boris Aronov and Micha Sharir" -, title = "The common exterior of convex polygons in the plane" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "139--149" -, update = "97.11 aronov" +, author = "Boris Aronov and Micha Sharir" +, title = "The common exterior of convex polygons in the plane" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "139--149" +, update = "97.11 aronov" } @inproceedings{as-ucptd-93 -, author = "Boris Aronov and Micha Sharir" -, title = "The Union of Convex Polyhedra in Three Dimensions" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "518--527" -, precedes = "ast-ucptd-97" -, update = "98.07 bibrelex, 97.11 aronov, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Boris Aronov and Micha Sharir" +, title = "The Union of Convex Polyhedra in Three Dimensions" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "518--527" +, precedes = "ast-ucptd-97" +, update = "98.07 bibrelex, 97.11 aronov, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @techreport{as-tsbac-87 -, author = "B. Aronov and M. Sharir" -, title = "Triangles in space, or building and analyzing castles in the air" -, type = "Manuscript" -, institution = "??" -, year = 1987 -, update = "98.03 bibrelex" +, author = "B. Aronov and M. Sharir" +, title = "Triangles in space, or building and analyzing castles in the air" +, type = "Manuscript" +, institution = "??" +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{as-tsbac-88 -, author = "B. Aronov and Micha Sharir" -, title = "Triangles in space or building (and analyzing) castles in the air" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "381--391" -, keywords = "three-dimensional, triangle arrangements" -, precedes = "as-tsbac-90" -, cites = "cgl-pgd-85, c-narsc-87, e-acg-87, egppss-acptc-88, egs-ueplf-87, egs-cmfal-88, egs-cmcap-88, eos-calha-86, ew-mnemf-86, hs-ndssg-86, hw-ensrq-87, ps-ueplf-87, pss-stsps-88, ss-cmpti-88, st-pplup-86, ws-prnds-88, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "B. Aronov and Micha Sharir" +, title = "Triangles in space or building (and analyzing) castles in the air" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "381--391" +, keywords = "three-dimensional, triangle arrangements" +, precedes = "as-tsbac-90" +, cites = "cgl-pgd-85, c-narsc-87, e-acg-87, egppss-acptc-88, egs-ueplf-87, egs-cmfal-88, egs-cmcap-88, eos-calha-86, ew-mnemf-86, hs-ndssg-86, hw-ensrq-87, ps-ueplf-87, pss-stsps-88, ss-cmpti-88, st-pplup-86, ws-prnds-88, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{as-tsbac-90 -, author = "B. Aronov and Micha Sharir" -, title = "Triangles in space or building (and analyzing) castles in the air" -, journal = "Combinatorica" -, volume = 10 -, number = 2 -, year = 1990 -, pages = "137--173" -, keywords = "three-dimensional, triangle arrangements" -, succeeds = "as-tsbac-88" -, update = "98.03 mitchell" +, author = "B. Aronov and Micha Sharir" +, title = "Triangles in space or building (and analyzing) castles in the air" +, journal = "Combinatorica" +, volume = 10 +, number = 2 +, year = 1990 +, pages = "137--173" +, keywords = "three-dimensional, triangle arrangements" +, succeeds = "as-tsbac-88" +, update = "98.03 mitchell" } % number = 6 % month = dec @article{ast-ucptd-97 -, author = "Boris Aronov and Micha Sharir and Boaz Tagansky" -, title = "The Union of Convex Polyhedra in Three Dimensions" -, journal = "SIAM J. Comput." -, volume = 26 -, year = 1997 -, pages = "1670--1688" -, succeeds = "as-ucptd-93" -, update = "97.11 aronov" +, author = "Boris Aronov and Micha Sharir and Boaz Tagansky" +, title = "The Union of Convex Polyhedra in Three Dimensions" +, journal = "SIAM J. Comput." +, volume = 26 +, year = 1997 +, pages = "1670--1688" +, succeeds = "as-ucptd-93" +, update = "97.11 aronov" } @article{a-efslc-67 -, author = "G. Aronsson" -, title = "Extensions of functions satisfying {Lipschitz} conditions" -, journal = "Arkiv f{\"o}r Matematik" -, volume = 28 -, year = 1967 -, pages = "551--561" -, update = "98.07 bibrelex" +, author = "G. Aronsson" +, title = "Extensions of functions satisfying {Lipschitz} conditions" +, journal = "Arkiv f{\"o}r Matematik" +, volume = 28 +, year = 1967 +, pages = "551--561" +, update = "98.07 bibrelex" } @techreport{a-phfcd-94 -, author = "Gunnar Aronsson" -, title = "On $p$-harmonic functions, convex duality and an asymptotic formula for injection mold filling" -, type = "Technical {Report}" -, number = "LiTH-MAT-R-94-27" -, institution = "Link{\"o}ping University" -, month = jun -, year = 1994 -, keywords = "injection molding, continuous Dijkstra, shortest paths, wavefront propagation" -, update = "96.05 mitchell" +, author = "Gunnar Aronsson" +, title = "On $p$-harmonic functions, convex duality and an asymptotic formula for injection mold filling" +, type = "Technical {Report}" +, number = "LiTH-MAT-R-94-27" +, institution = "Link{\"o}ping University" +, month = jun +, year = 1994 +, keywords = "injection molding, continuous Dijkstra, shortest paths, wavefront propagation" +, update = "96.05 mitchell" } @techreport{a-spdfc-95 -, author = "Gunnar Aronsson" -, title = "On some properties of a distance function and a connection to injection molding" -, type = "Technical {Report}" -, number = "LiTH-MAT-R-95-03" -, institution = "Link{\"o}ping University" -, month = jan -, year = 1995 -, keywords = "injection molding, continuous Dijkstra, geodesic metric, shortest paths, wavefront propagation" -, update = "96.05 mitchell" +, author = "Gunnar Aronsson" +, title = "On some properties of a distance function and a connection to injection molding" +, type = "Technical {Report}" +, number = "LiTH-MAT-R-95-03" +, institution = "Link{\"o}ping University" +, month = jan +, year = 1995 +, keywords = "injection molding, continuous Dijkstra, geodesic metric, shortest paths, wavefront propagation" +, update = "96.05 mitchell" } @inproceedings{a-nltas-97 -, author = "S. Arora" -, title = "Nearly Linear Time Approximation Schemes for {Euclidean} {TSP} and Other Geometric Problems" -, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '97" -, year = 1997 -, pages = "554--563" -, update = "98.07 bibrelex, 98.03 agarwal+mitchell" +, author = "S. Arora" +, title = "Nearly Linear Time Approximation Schemes for {Euclidean} {TSP} and Other Geometric Problems" +, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '97" +, year = 1997 +, pages = "554--563" +, update = "98.07 bibrelex, 98.03 agarwal+mitchell" } @article{a-ptase-98 -, author = "Sanjeev Arora" -, title = "Polynomial time approximation schemes for {Euclidean} traveling salesman and other geometric problems" -, journal = "J. ACM" -, volume = 45 -, number = 5 -, year = 1998 -, pages = "753--782" -, update = "01.04 icking, 00.11 smid, 00.07 agarwal" +, author = "Sanjeev Arora" +, title = "Polynomial time approximation schemes for {Euclidean} traveling salesman and other geometric problems" +, journal = "J. ACM" +, volume = 45 +, number = 5 +, year = 1998 +, pages = "753--782" +, update = "01.04 icking, 00.11 smid, 00.07 agarwal" } @inproceedings{a-ptase-96 -, author = "Sanjeev Arora" -, title = "Polynomial time approximation schemes for {Euclidean} {TSP} and other geometric problems" -, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1996 -, pages = "2--11" -, update = "01.04 icking, 97.03 agarwal, 96.05 agarwal" +, author = "Sanjeev Arora" +, title = "Polynomial time approximation schemes for {Euclidean} {TSP} and other geometric problems" +, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1996 +, pages = "2--11" +, update = "01.04 icking, 97.03 agarwal, 96.05 agarwal" } @inproceedings{abss-haolc-93 -, author = "Sanjeev Arora and L. Babai and J. Stern and Z. Sweedyk" -, title = "The Hardness of Approximate Optima in Lattices, Codes, and Systems of Linear Equations" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "724--733" -, update = "01.04 icking, 98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Sanjeev Arora and L. Babai and J. Stern and Z. Sweedyk" +, title = "The Hardness of Approximate Optima in Lattices, Codes, and Systems of Linear Equations" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "724--733" +, update = "01.04 icking, 98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @inproceedings{agkkw-ptasw-98 -, author = "Sanjeev Arora and Michelangelo Grigni and David Karger and Philip Klein and Andrzej Woloszyn" -, title = "A Polynomial-Time Approximation Scheme for Weighted Planar Graph {TSP}" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "33--41" -, comments = "running time {$n^{O(1/\epsilon^2)}$}" -, update = "99.07 bibrelex, 98.07 mitchell" +, author = "Sanjeev Arora and Michelangelo Grigni and David Karger and Philip Klein and Andrzej Woloszyn" +, title = "A Polynomial-Time Approximation Scheme for Weighted Planar Graph {TSP}" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "33--41" +, comments = "running time {$n^{O(1/\epsilon^2)}$}" +, update = "99.07 bibrelex, 98.07 mitchell" } @incollection{al-ha-97 -, author = "Sanjeev Arora and Carsten Lund" -, title = "Hardness of approximations" -, editor = "D. S. Hochbaum" -, booktitle = "Approximation Algorithms for NP-Hard Problems" -, publisher = "PWS Publishing Company" -, address = "Boston, MA" -, year = 1997 -, pages = "399--446" -, update = "97.07 smid, 97.03 agarwal, 96.09 agarwal" +, author = "Sanjeev Arora and Carsten Lund" +, title = "Hardness of approximations" +, editor = "D. S. Hochbaum" +, booktitle = "Approximation Algorithms for NP-Hard Problems" +, publisher = "PWS Publishing Company" +, address = "Boston, MA" +, year = 1997 +, pages = "399--446" +, update = "97.07 smid, 97.03 agarwal, 96.09 agarwal" } @techreport{almss-iap-92 -, author = "S. Arora and C. Lund and R. Motwani and M. Sudan and M. Szegedy" -, title = "On the Intractability of Approximation Problems" -, type = "Manuscript" -, institution = "??" -, year = 1992 -, update = "98.07 bibrelex" +, author = "S. Arora and C. Lund and R. Motwani and M. Sudan and M. Szegedy" +, title = "On the Intractability of Approximation Problems" +, type = "Manuscript" +, institution = "??" +, year = 1992 +, update = "98.07 bibrelex" } @inproceedings{arr-asekm-98 -, author = "Sanjeev Arora and Prabhakar Raghavan and Satish Rao" -, title = "Approximation schemes for {Euclidean} $k$-median and related problems" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, year = 1998 -, pages = "106--113" -, update = "01.04 icking, 98.07 agarwal" +, author = "Sanjeev Arora and Prabhakar Raghavan and Satish Rao" +, title = "Approximation schemes for {Euclidean} $k$-median and related problems" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, year = 1998 +, pages = "106--113" +, update = "01.04 icking, 98.07 agarwal" } @inproceedings{arr-ptase-98 -, author = "S. Arora and P. Raghavan and S. Rao" -, title = "Polynomial time approximation schemes for the {Euclidean} {$k$}-medians problem" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, year = 1998 -, pages = "to appear" -, update = "98.03 mitchell" +, author = "S. Arora and P. Raghavan and S. Rao" +, title = "Polynomial time approximation schemes for the {Euclidean} {$k$}-medians problem" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, year = 1998 +, pages = "to appear" +, update = "98.03 mitchell" } @inproceedings{ak-mdspl-89 -, author = "D. Arqu{\`e}s and P. Koch" -, title = "Mod{\'e}lisation de solides par les pavages" -, booktitle = "Proc. of Pixim '89" -, site = "Paris, France" -, month = sep -, year = 1989 -, pages = "47--61" -, update = "98.07 bibrelex" +, author = "D. Arqu{\`e}s and P. Koch" +, title = "Mod{\'e}lisation de solides par les pavages" +, booktitle = "Proc. of Pixim '89" +, site = "Paris, France" +, month = sep +, year = 1989 +, pages = "47--61" +, update = "98.07 bibrelex" } @book{a-ocds-89 -, title = "Optical Computing: Digital and Symbolic" -, editor = "R. Arrathoon" -, publisher = "Marcel Dekker, Inc." -, year = 1989 -, keywords = "angular resolution" -, update = "94.05 tamassia" +, title = "Optical Computing: Digital and Symbolic" +, editor = "R. Arrathoon" +, publisher = "Marcel Dekker, Inc." +, year = 1989 +, keywords = "angular resolution" +, update = "94.05 tamassia" } @book{as-dsdem-92 -, author = "D. K. Arrowsmith and C. M. Smith" -, title = "Dynamical Systems. Differential Equations, Maps, and Chaotic Behavior" -, publisher = "Chapman and Hall" -, address = "London" -, year = 1992 -, update = "98.11 bibrelex" +, author = "D. K. Arrowsmith and C. M. Smith" +, title = "Dynamical Systems. Differential Equations, Maps, and Chaotic Behavior" +, publisher = "Chapman and Hall" +, address = "London" +, year = 1992 +, update = "98.11 bibrelex" } @article{afh-tdie3-81 -, author = "E. Artzy and G. Frieder and G. T. Herman" -, title = "The theory, design, implementation, and evaluation of $3$-d surface detection algorithms" -, journal = "Comput. Graph. Image Process." -, volume = 15 -, year = 1981 -, pages = "1--24" +, author = "E. Artzy and G. Frieder and G. T. Herman" +, title = "The theory, design, implementation, and evaluation of $3$-d surface detection algorithms" +, journal = "Comput. Graph. Image Process." +, volume = 15 +, year = 1981 +, pages = "1--24" } @article{ahb-lsft3-87 -, author = "K. S. Arun and T. S. Huang and S. D. Blostein" -, title = "Least squares fitting of two $3$-d point sets" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-9" -, number = 5 -, month = sep -, year = 1987 -, update = "98.07 bibrelex" +, author = "K. S. Arun and T. S. Huang and S. D. Blostein" +, title = "Least squares fitting of two $3$-d point sets" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-9" +, number = 5 +, month = sep +, year = 1987 +, update = "98.07 bibrelex" } @inproceedings{akm-hrsss-93 -, author = "V. Arvind and J. Kobler and M. Mundhenk" -, title = "Hausdorff reduction to sparse sets and to sets of high information content" -, booktitle = "Proc. 18th Internat. Sympos. Math. Found. Comput. Sci." -, nickname = "MFCS '93" -, year = 1993 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "V. Arvind and J. Kobler and M. Mundhenk" +, title = "Hausdorff reduction to sparse sets and to sets of high information content" +, booktitle = "Proc. 18th Internat. Sympos. Math. Found. Comput. Sci." +, nickname = "MFCS '93" +, year = 1993 +, pages = "??" +, update = "93.09 milone+mitchell" } @book{a-gg2-91 -, title = "Graphics Gems {II}" -, editor = "James Arvo" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1991 -, update = "98.07 tamassia+vismara" +, title = "Graphics Gems {II}" +, editor = "James Arvo" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1991 +, update = "98.07 tamassia+vismara" } @incollection{a-rrm-91 -, author = "J. Arvo" -, title = "Random rotation matrics" -, editor = "J. Arvo" -, booktitle = "Graphics Gems II" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1991 -, pages = "355--356" -, update = "97.07 orourke" +, author = "J. Arvo" +, title = "Random rotation matrics" +, editor = "J. Arvo" +, booktitle = "Graphics Gems II" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1991 +, pages = "355--356" +, update = "97.07 orourke" } @article{a-ijpop-94 -, author = "J. Arvo" -, title = "The irradiance {Jacobian} for partially occluded polyhedral sources" -, journal = "Comput. Graph." -, volume = "??" -, year = 1994 -, pages = "343--350" -, note = "Proc. SIGGRAPH '94" -, update = "98.03 bibrelex" +, author = "J. Arvo" +, title = "The irradiance {Jacobian} for partially occluded polyhedral sources" +, journal = "Comput. Graph." +, volume = "??" +, year = 1994 +, pages = "343--350" +, note = "Proc. SIGGRAPH '94" +, update = "98.03 bibrelex" } @inproceedings{ak-frtrc-87 -, author = "J. Arvo and D. Kirk" -, title = "Fast ray tracing by ray classification" -, editor = "M. C. Stone" -, booktitle = "Proc. SIGGRAPH '87" -, year = 1987 -, pages = "55--63" -, update = "97.11 bibrelex" +, author = "J. Arvo and D. Kirk" +, title = "Fast ray tracing by ray classification" +, editor = "M. C. Stone" +, booktitle = "Proc. SIGGRAPH '87" +, year = 1987 +, pages = "55--63" +, update = "97.11 bibrelex" } @inproceedings{aksm-agdss-85 -, author = "A. Arya and A. Kumar and V. Swaminathan and A. Misra" -, title = "Automatic Generation of Digital System Schematic Diagrams" -, booktitle = "Proc. 22nd Design Autom. Conf." -, year = 1985 -, pages = "388--395" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "A. Arya and A. Kumar and V. Swaminathan and A. Misra" +, title = "Automatic Generation of Digital System Schematic Diagrams" +, booktitle = "Proc. 22nd Design Autom. Conf." +, year = 1985 +, pages = "388--395" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{acm-aamtm-98 -, author = "Sunil Arya and Siu-Wing Cheng and David Mount" -, title = "Approximation Algorithms for Multiple-Tool Milling" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "to appear" -, update = "98.03 mitchell" +, author = "Sunil Arya and Siu-Wing Cheng and David Mount" +, title = "Approximation Algorithms for Multiple-Tool Milling" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "to appear" +, update = "98.03 mitchell" } @article{acm-aamtm-01 -, author = "S. Arya and S.-W. Cheng and D. M. Mount" -, title = "Approximation Algorithm for Multiple-Tool Milling" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "339--372" -, update = "01.07 smid" +, author = "S. Arya and S.-W. Cheng and D. M. Mount" +, title = "Approximation Algorithm for Multiple-Tool Milling" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "339--372" +, update = "01.07 smid" } @inproceedings{admss-esstl-95 -, author = "S. Arya and G. Das and D. M. Mount and J. S. Salowe and M. Smid" -, title = "Euclidean spanners: short, thin, and lanky" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '95" -, year = 1995 -, pages = "489--498" -, update = "98.07 bibrelex, 97.03 agarwal, 95.09 smid" +, author = "S. Arya and G. Das and D. M. Mount and J. S. Salowe and M. Smid" +, title = "Euclidean spanners: short, thin, and lanky" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '95" +, year = 1995 +, pages = "489--498" +, update = "98.07 bibrelex, 97.03 agarwal, 95.09 smid" } @inproceedings{amn-abenn-95 -, author = "S. Arya and D. Mount and O. Narayan" -, title = "Accounting for Boundary Effects in Nearest Neighbor Searching" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "336--344" -, keywords = "" -, cites = "am-annqf-93, am-afvq-93, amnsw-oaann-94, bo-ammse-78, b-mbstu-75, c-aacpq-94, c-aafnn-79, fbf-afbml-77, gg-vqsc-91, gt-smmp-60, r-oeapb-74, s-rnns-91, w-bires-71, ZZZ" -, update = "98.03 bibrelex, 96.05 agarwal, 95.09 mitchell" +, author = "S. Arya and D. Mount and O. Narayan" +, title = "Accounting for Boundary Effects in Nearest Neighbor Searching" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "336--344" +, keywords = "" +, cites = "am-annqf-93, am-afvq-93, amnsw-oaann-94, bo-ammse-78, b-mbstu-75, c-aacpq-94, c-aafnn-79, fbf-afbml-77, gg-vqsc-91, gt-smmp-60, r-oeapb-74, s-rnns-91, w-bires-71, ZZZ" +, update = "98.03 bibrelex, 96.05 agarwal, 95.09 mitchell" } @inproceedings{am-afvq-93 -, author = "S. Arya and D. M. Mount" -, title = "Algorithms for Fast Vector Quantization" -, booktitle = "Data Compression Conference" -, nickname = "DCC '93" -, publisher = "IEEE Press" -, year = 1993 -, pages = "381--390" -, update = "95.09 agarwal, 94.05 smid, 93.09 milone+mitchell" +, author = "S. Arya and D. M. Mount" +, title = "Algorithms for Fast Vector Quantization" +, booktitle = "Data Compression Conference" +, nickname = "DCC '93" +, publisher = "IEEE Press" +, year = 1993 +, pages = "381--390" +, update = "95.09 agarwal, 94.05 smid, 93.09 milone+mitchell" } @inproceedings{am-annqf-93 -, author = "S. Arya and D. M. Mount" -, title = "Approximate Nearest Neighbor Queries in Fixed Dimensions" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "271--280" -, update = "93.05 smid" +, author = "S. Arya and D. M. Mount" +, title = "Approximate Nearest Neighbor Queries in Fixed Dimensions" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "271--280" +, update = "93.05 smid" } @inproceedings{am-ars-95 -, author = "Sunil Arya and David M. Mount" -, title = "Approximate Range Searching" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "172--181" -, keywords = "quadtrees, box decomposition trees" -, cites = "amnsw-oaann-94, b-kdtsp-90, bcp-hhihr-93, ck-dmdps-92, ck-adcpn-95, c-lbcpr-89, cw-qorss-89, c-faann-83, fm-rpdsa-85, m-rsehc-93, o-plfs-92, ps-cgi-85, s-dasds-90, v-oaann-89, ZZZ" -, update = "98.03 bibrelex, 96.05 agarwal, 95.09 mitchell" +, author = "Sunil Arya and David M. Mount" +, title = "Approximate Range Searching" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "172--181" +, keywords = "quadtrees, box decomposition trees" +, cites = "amnsw-oaann-94, b-kdtsp-90, bcp-hhihr-93, ck-dmdps-92, ck-adcpn-95, c-lbcpr-89, cw-qorss-89, c-faann-83, fm-rpdsa-85, m-rsehc-93, o-plfs-92, ps-cgi-85, s-dasds-90, v-oaann-89, ZZZ" +, update = "98.03 bibrelex, 96.05 agarwal, 95.09 mitchell" } @article{am-ars-00 -, author = "S. Arya and D. M. Mount" -, title = "Approximate range searching" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "135--152" -, update = "01.04 smid" +, author = "S. Arya and D. M. Mount" +, title = "Approximate range searching" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "135--152" +, update = "01.04 smid" } @techreport{amn-abenn-94 -, author = "S. Arya and D. M. Mount and O. Narayan" -, title = "Accounting for boundary effects in nearest neighbor searching" -, type = "Report" -, number = "MPI-I-94-159" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "95.01 smid" +, author = "S. Arya and D. M. Mount and O. Narayan" +, title = "Accounting for boundary effects in nearest neighbor searching" +, type = "Report" +, number = "MPI-I-94-159" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "95.01 smid" } @article{amn-abenn-96 -, author = "S. Arya and D. M. Mount and O. Narayan" -, title = "Accounting for boundary effects in nearest-neighbor searching" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "155--176" -, update = "97.03 smid" +, author = "S. Arya and D. M. Mount and O. Narayan" +, title = "Accounting for boundary effects in nearest-neighbor searching" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "155--176" +, update = "97.03 smid" } @inproceedings{amnsw-oaann-94 -, author = "S. Arya and D. M. Mount and N. S. Netanyahu and R. Silverman and A. Wu" -, title = "An optimal algorithm for approximate nearest neighbor searching" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "573--582" -, update = "94.05 smid" +, author = "S. Arya and D. M. Mount and N. S. Netanyahu and R. Silverman and A. Wu" +, title = "An optimal algorithm for approximate nearest neighbor searching" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "573--582" +, update = "94.05 smid" } @article{amnsw-oaann-98 -, author = "S. Arya and D. M. Mount and N. S. Netanyahu and R. Silverman and A. Wu" -, title = "An optimal algorithm for approximate nearest neighbor searching in fixed dimensions" -, journal = "J. ACM" -, volume = 45 -, year = 1998 -, pages = "891--923" -, update = "00.11 smid, 00.07 agarwal" +, author = "S. Arya and D. M. Mount and N. S. Netanyahu and R. Silverman and A. Wu" +, title = "An optimal algorithm for approximate nearest neighbor searching in fixed dimensions" +, journal = "J. ACM" +, volume = 45 +, year = 1998 +, pages = "891--923" +, update = "00.11 smid, 00.07 agarwal" } @techreport{ams-dagss-94 -, author = "S. Arya and D. M. Mount and M. Smid" -, title = "Dynamic algorithms for geometric spanners of small diameter: randomized solutions" -, type = "Report" -, number = "MPI-I-94-156" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "95.01 smid" +, author = "S. Arya and D. M. Mount and M. Smid" +, title = "Dynamic algorithms for geometric spanners of small diameter: randomized solutions" +, type = "Report" +, number = "MPI-I-94-156" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "95.01 smid" } @article{ams-dagss-99 -, author = "S. Arya and D. M. Mount and M. Smid" -, title = "Dynamic algorithms for geometric spanners of small diameter: {Randomized} solutions" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "91--107" -, update = "99.11 smid" +, author = "S. Arya and D. M. Mount and M. Smid" +, title = "Dynamic algorithms for geometric spanners of small diameter: {Randomized} solutions" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "91--107" +, update = "99.11 smid" } @inproceedings{ams-rdags-94 -, author = "S. Arya and D. M. Mount and M. Smid" -, title = "Randomized and deterministic algorithms for geometric spanners of small diameter" -, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1994 -, pages = "703--712" -, update = "95.01 smid" +, author = "S. Arya and D. M. Mount and M. Smid" +, title = "Randomized and deterministic algorithms for geometric spanners of small diameter" +, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1994 +, pages = "703--712" +, update = "95.01 smid" } @techreport{as-ecbds-94t -, author = "S. Arya and M. Smid" -, title = "Efficient construction of a bounded degree spanner with low weight" -, type = "Report" -, number = "MPI-I-94-115" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "95.01 smid, 94.05 smid" +, author = "S. Arya and M. Smid" +, title = "Efficient construction of a bounded degree spanner with low weight" +, type = "Report" +, number = "MPI-I-94-115" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "95.01 smid, 94.05 smid" } @inproceedings{as-ecbds-94i -, author = "S. Arya and M. Smid" -, title = "Efficient construction of a bounded degree spanner with low weight" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, nickname = "ESA '94" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "48--59" -, precedes = "as-ecbds-97" -, update = "97.03 smid, 95.01 smid" +, author = "S. Arya and M. Smid" +, title = "Efficient construction of a bounded degree spanner with low weight" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, nickname = "ESA '94" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "48--59" +, precedes = "as-ecbds-97" +, update = "97.03 smid, 95.01 smid" } @article{as-ecbds-97 -, author = "S. Arya and M. Smid" -, title = "Efficient construction of a bounded-degree spanner with low weight" -, journal = "Algorithmica" -, volume = 17 -, year = 1997 -, pages = "33--54" -, succeeds = "as-ecbds-94i" -, update = "97.03 smid" +, author = "S. Arya and M. Smid" +, title = "Efficient construction of a bounded-degree spanner with low weight" +, journal = "Algorithmica" +, volume = 17 +, year = 1997 +, pages = "33--54" +, succeeds = "as-ecbds-94i" +, update = "97.03 smid" } @article{ab-kawff-85 -, author = "H. Asada and A. B. By" -, title = "Kinematic analysis of workpart fixturing for flexible assembly with automatically reconfigurable fixtures" -, journal = "Internat. J. Robot. Autom." -, volume = "RA-1" -, number = 2 -, month = jun -, year = 1985 -, update = "98.03 bibrelex" +, author = "H. Asada and A. B. By" +, title = "Kinematic analysis of workpart fixturing for flexible assembly with automatically reconfigurable fixtures" +, journal = "Internat. J. Robot. Autom." +, volume = "RA-1" +, number = 2 +, month = jun +, year = 1985 +, update = "98.03 bibrelex" } @book{as-rac-86 -, author = "H. Asada and J.-J. E. Slotine" -, title = "Robot Analysis and Control" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1986 -, update = "99.11 bibrelex, 97.11 bibrelex" +, author = "H. Asada and J.-J. E. Slotine" +, title = "Robot Analysis and Control" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1986 +, update = "99.11 bibrelex, 97.11 bibrelex" } @techreport{a-fafmw-90 -, author = "T. Asano" -, title = "A faster algorithm for finding a maximum weight clique of a circular-arc graph" -, number = "90624--OR" -, institution = "??" -, address = "Bonn" -, year = 1990 -, keywords = "circular-arc graph" -, update = "98.07 bibrelex, 95.05 korneenko" +, author = "T. Asano" +, title = "A faster algorithm for finding a maximum weight clique of a circular-arc graph" +, number = "90624--OR" +, institution = "??" +, address = "Bonn" +, year = 1990 +, keywords = "circular-arc graph" +, update = "98.07 bibrelex, 95.05 korneenko" } @techreport{a-oafmc-89 -, author = "T. Asano" -, title = "An optimal algorithm for finding a minimal clique covering of a circular-arc graph" -, number = "89619--OR" -, institution = "??" -, address = "Bonn" -, year = 1989 -, keywords = "circular-arc graph" -, update = "98.07 bibrelex, 95.05 korneenko" +, author = "T. Asano" +, title = "An optimal algorithm for finding a minimal clique covering of a circular-arc graph" +, number = "89619--OR" +, institution = "??" +, address = "Bonn" +, year = 1989 +, keywords = "circular-arc graph" +, update = "98.07 bibrelex, 95.05 korneenko" } @article{a-cg-87 -, author = "T. Asano" -, title = "Computational geometry" -, journal = "J. Soc. Instrum. Control Eng." -, volume = 26 -, number = 11 -, year = 1987 -, pages = "985--994" -, keywords = "tutorial" -, update = "95.05 korneenko" +, author = "T. Asano" +, title = "Computational geometry" +, journal = "J. Soc. Instrum. Control Eng." +, volume = 26 +, number = 11 +, year = 1987 +, pages = "985--994" +, keywords = "tutorial" +, update = "95.05 korneenko" } @unpublished{a-eafvp -, author = "T. Asano" -, title = "Efficient algorithms for finding the visibility polygon for a polygonal region with holes" -, note = "Manuscript, University of California at Berkeley" -, precedes = "a-eafvp-85" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "T. Asano" +, title = "Efficient algorithms for finding the visibility polygon for a polygonal region with holes" +, note = "Manuscript, University of California at Berkeley" +, precedes = "a-eafvp-85" +, update = "98.11 bibrelex, 97.11 bibrelex" } @inproceedings{a-rcilw-94 -, author = "T. Asano" -, title = "Reporting and Counting Intersections of Lines within a Polygon" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "652--659" -, update = "99.11 bibrelex, 97.03 aronov, 96.05 mitchell" +, author = "T. Asano" +, title = "Reporting and Counting Intersections of Lines within a Polygon" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "652--659" +, update = "99.11 bibrelex, 97.03 aronov, 96.05 mitchell" } @article{ackt-eaobi-01 -, author = "T. Asano and D. Z. Chen and N. Katoh and T. Tokuyama" -, title = "Efficient algorithms for optimization-based image segmentation" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "145--166" -, update = "01.07 smid" +, author = "T. Asano and D. Z. Chen and N. Katoh and T. Tokuyama" +, title = "Efficient algorithms for optimization-based image segmentation" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "145--166" +, update = "01.07 smid" } @inproceedings{ak-nthld-93 -, author = "T. Asano and N. Katoh" -, title = "Number theory helps line detection in digital images" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "313--322" -, update = "97.11 bibrelex" +, author = "T. Asano and N. Katoh" +, title = "Number theory helps line detection in digital images" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "313--322" +, update = "97.11 bibrelex" } @article{ak-vhtld-96 -, author = "T. Asano and N. Katoh" -, title = "Variants for the {Hough} transform for line direction" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "231--252" -, update = "96.09 devillers" +, author = "T. Asano and N. Katoh" +, title = "Variants for the {Hough} transform for line direction" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "231--252" +, update = "96.09 devillers" } @article{akt-usdfc-94 -, author = "T. Asano and N. Katoh and T. Tokuyama" -, title = "A Unified Scheme for Detecting Fundamental Curves in Binary Edge Images" -, journal = "SIGAL Technical Report of Inform Process. Soc. Japan" -, volume = "AL38-7" -, year = 1994 -, pages = "49--56" -, update = "98.11 bibrelex" +, author = "T. Asano and N. Katoh and T. Tokuyama" +, title = "A Unified Scheme for Detecting Fundamental Curves in Binary Edge Images" +, journal = "SIGAL Technical Report of Inform Process. Soc. Japan" +, volume = "AL38-7" +, year = 1994 +, pages = "49--56" +, update = "98.11 bibrelex" } @article{akt-usdfc-01 -, author = "T. Asano and N. Katoh and T. Tokuyama" -, title = "A Unified Scheme for Detecting Fundamental Curves in Binary Edge Images" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "73--93" -, update = "01.07 smid" +, author = "T. Asano and N. Katoh and T. Tokuyama" +, title = "A Unified Scheme for Detecting Fundamental Curves in Binary Edge Images" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "73--93" +, update = "01.07 smid" } @inproceedings{arww-sfctu-95 -, author = "T. Asano and T. Roos and P. Widmayer and Emo Welzl" -, title = "Space Filling Curves and Their Use in the Design of Geometric Data Structures" -, booktitle = "Proc. 2nd Latin Amer. Sympos. Theoret. Informatics" -, series = "Lecture Notes Comput. Sci." -, volume = 911 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "36--48" -, update = "98.03 mitchell, 97.03 gaertner+salinger" +, author = "T. Asano and T. Roos and P. Widmayer and Emo Welzl" +, title = "Space Filling Curves and Their Use in the Design of Geometric Data Structures" +, booktitle = "Proc. 2nd Latin Amer. Sympos. Theoret. Informatics" +, series = "Lecture Notes Comput. Sci." +, volume = 911 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "36--48" +, update = "98.03 mitchell, 97.03 gaertner+salinger" } @incollection{at-cpabg-93 -, author = "T. Asano and T. Tokuyama" -, title = "Circuit Partitioning Algorithm Based on Geometry Model" -, editor = "M. Sarrafzadeh and D. T. Lee" -, booktitle = "Algorithmic Aspects of VLSI Layout" -, series = "Lecture Notes Series on Computing" -, volume = 2 -, publisher = "World Scientific" -, year = 1993 -, pages = "199--212" -, update = "98.11 bibrelex" +, author = "T. Asano and T. Tokuyama" +, title = "Circuit Partitioning Algorithm Based on Geometry Model" +, editor = "M. Sarrafzadeh and D. T. Lee" +, booktitle = "Algorithmic Aspects of VLSI Layout" +, series = "Lecture Notes Series on Computing" +, volume = 2 +, publisher = "World Scientific" +, year = 1993 +, pages = "199--212" +, update = "98.11 bibrelex" } @article{at-pcala-94 -, author = "T. Asano and T. Tokuyama" -, title = "Partial construction of an arrangement of lines and its applications to optimal partitioning of bicromatic point set" -, journal = "Trans. (E) of IEICE of Japan" -, volume = "E77--A" -, number = 4 -, month = apr -, year = 1994 -, update = "97.03 pocchiola" +, author = "T. Asano and T. Tokuyama" +, title = "Partial construction of an arrangement of lines and its applications to optimal partitioning of bicromatic point set" +, journal = "Trans. (E) of IEICE of Japan" +, volume = "E77--A" +, number = 4 +, month = apr +, year = 1994 +, update = "97.03 pocchiola" } @inproceedings{at-twr-94 -, author = "T. Asano and T. Tokuyama" -, title = "Topological Walk Revisited" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "1--6" -, cites = "akt-usdfc-94, at-pcala-94, at-appgm-93, at-cpabg-93, eg-tsa-89, m-ltalp-83, e-acg-87, agt-wat-94, erk-oalla-93, m-ltalp-83, bms-dgc-94, ykii-avoll-88, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "T. Asano and T. Tokuyama" +, title = "Topological Walk Revisited" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "1--6" +, cites = "akt-usdfc-94, at-pcala-94, at-appgm-93, at-cpabg-93, eg-tsa-89, m-ltalp-83, e-acg-87, agt-wat-94, erk-oalla-93, m-ltalp-83, bms-dgc-94, ykii-avoll-88, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{a-dpi-91 -, author = "Ta. Asano" -, title = "Dynamic Programming on Intervals" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "199--207" -, precedes = "a-dpi-93" -, update = "96.09 devillers, 96.05 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Ta. Asano" +, title = "Dynamic Programming on Intervals" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "199--207" +, precedes = "a-dpi-93" +, update = "96.09 devillers, 96.05 agarwal, 94.01 smid, 93.09 milone+mitchell" } @article{a-dpi-93 -, author = "Ta. Asano" -, title = "Dynamic Programming on Intervals" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "323--330" -, keywords = "Circular-arc graph, clique, dynamic programming, interval graph, segment tree, sequential partition" -, succeeds = "a-dpi-91" -, update = "96.09 devillers" +, author = "Ta. Asano" +, title = "Dynamic Programming on Intervals" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "323--330" +, keywords = "Circular-arc graph, clique, dynamic programming, interval graph, segment tree, sequential partition" +, succeeds = "a-dpi-91" +, update = "96.09 devillers" } @inproceedings{aa-mpprt-83 -, author = "Ta. Asano and Te. Asano" -, title = "Minimum partition of polygonal regions into trapezoids" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "233--241" -, precedes = "aai-pprt-86" +, author = "Ta. Asano and Te. Asano" +, title = "Minimum partition of polygonal regions into trapezoids" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "233--241" +, precedes = "aai-pprt-86" } @inproceedings{aa-vdpsp-87 -, author = "Ta. Asano and Te. Asano" -, title = "{Voronoi} diagram for points in a simple polygon" -, editor = "D. S. Johnson" -, booktitle = "Discrete Algorithms and Complexity" -, series = "Perspectives in Computing" -, publisher = "Academic Press" -, year = 1987 -, pages = "51--64" -, update = "98.03 mitchell, 97.11 bibrelex, 96.05 agarwal" -, abstract = "[For the entire collection see Zbl. 636.00011.] The - authors present an algorithm for constructing the - Voronoi diagram (Voronoi triangulation) for a set of n - points in a simple polygon of m vertices. The - complexity of the algorithm is O(mn + m log log m + n - log n) time and O(m + n) space. This algorithm is based - on the recent results of triangulating a simple polygon - [see R. E. Tarjan and C. J. Van Wyk, Proc. 18th Annu. - ACM Sympos. Theory of Computing, Berkeley, California, 380 - - 388 (1986); cf. SIAM J. Comput. 17, 143 - 178 (1988; - Zbl. 637.68044)] and of finding shortest paths from a - point to all the vertices of a simple polygon [see L. - Guibas, J. Hershberger, D. Leven, Micha Sharir and R. E. - Tarjan, Proc. 2nd ACM Sympos. Computational Geometry, - Yorktown Heights, New York, 1 - 13 (1986)]. Some - problems which can be efficiently solved with this - algorithm are also specified" +, author = "Ta. Asano and Te. Asano" +, title = "{Voronoi} diagram for points in a simple polygon" +, editor = "D. S. Johnson" +, booktitle = "Discrete Algorithms and Complexity" +, series = "Perspectives in Computing" +, publisher = "Academic Press" +, year = 1987 +, pages = "51--64" +, update = "98.03 mitchell, 97.11 bibrelex, 96.05 agarwal" +, abstract = "[For the entire collection see Zbl. 636.00011.] The + authors present an algorithm for constructing the + Voronoi diagram (Voronoi triangulation) for a set of n + points in a simple polygon of m vertices. The + complexity of the algorithm is O(mn + m log log m + n + log n) time and O(m + n) space. This algorithm is based + on the recent results of triangulating a simple polygon + [see R. E. Tarjan and C. J. Van Wyk, Proc. 18th Annu. + ACM Sympos. Theory of Computing, Berkeley, California, 380 + - 388 (1986); cf. SIAM J. Comput. 17, 143 - 178 (1988; + Zbl. 637.68044)] and of finding shortest paths from a + point to all the vertices of a simple polygon [see L. + Guibas, J. Hershberger, D. Leven, Micha Sharir and R. E. + Tarjan, Proc. 2nd ACM Sympos. Computational Geometry, + Yorktown Heights, New York, 1 - 13 (1986)]. Some + problems which can be efficiently solved with this + algorithm are also specified" } @article{aaghi-vdp-86 -, author = "Ta. Asano and Te. Asano and Leonidas J. Guibas and J. Hershberger and H. Imai" -, title = "Visibility of disjoint polygons" -, journal = "Algorithmica" -, volume = 1 -, year = 1986 -, pages = "49--63" -, keywords = "design of algorithms, data structuring, visibility, path planning, geometric transformations, arrangements" -, succeeds = "aaghi-vpses-85" -, update = "98.03 mitchell" +, author = "Ta. Asano and Te. Asano and Leonidas J. Guibas and J. Hershberger and H. Imai" +, title = "Visibility of disjoint polygons" +, journal = "Algorithmica" +, volume = 1 +, year = 1986 +, pages = "49--63" +, keywords = "design of algorithms, data structuring, visibility, path planning, geometric transformations, arrangements" +, succeeds = "aaghi-vpses-85" +, update = "98.03 mitchell" } @inproceedings{aaghi-vpses-85 -, author = "Ta. Asano and Te. Asano and Leonidas J. Guibas and J. Hershberger and H. Imai" -, title = "Visibility-polygon search and {Euclidean} shortest paths" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "155--164" -, precedes = "aaghi-vdp-86" -, update = "98.03 mitchell" -, annote = "$O(n^2)$ time and space algorithm builds visibility - graph of polygonal set. Hence $O(n^2)$ shortest path - algorithm." +, author = "Ta. Asano and Te. Asano and Leonidas J. Guibas and J. Hershberger and H. Imai" +, title = "Visibility-polygon search and {Euclidean} shortest paths" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "155--164" +, precedes = "aaghi-vdp-86" +, update = "98.03 mitchell" +, annote = "$O(n^2)$ time and space algorithm builds visibility + graph of polygonal set. Hence $O(n^2)$ shortest path + algorithm." } @article{aai-pprt-86 -, author = "Ta. Asano and Te. Asano and H. Imai" -, title = "Partitioning a Polygonal Region into Trapezoids" -, journal = "J. ACM" -, volume = 33 -, year = 1986 -, pages = "290--312" -, keywords = "decomposition, approximation, dynamic programming, polygon triangulation" -, succeeds = "aa-mpprt-83" -, update = "93.09 held" +, author = "Ta. Asano and Te. Asano and H. Imai" +, title = "Partitioning a Polygonal Region into Trapezoids" +, journal = "J. ACM" +, volume = 33 +, year = 1986 +, pages = "290--312" +, keywords = "decomposition, approximation, dynamic programming, polygon triangulation" +, succeeds = "aa-mpprt-83" +, update = "93.09 held" } @article{aai-spbts-87 -, author = "Ta. Asano and Te. Asano and H. Imai" -, title = "Shortest path between two simple polygons" -, journal = "Inform. Process. Lett." -, volume = 24 -, year = 1987 -, pages = "285--288" -, keywords = "design of algorithms, path planning, geometric transformations, visibility, arrangements" +, author = "Ta. Asano and Te. Asano and H. Imai" +, title = "Shortest path between two simple polygons" +, journal = "Inform. Process. Lett." +, volume = 24 +, year = 1987 +, pages = "285--288" +, keywords = "design of algorithms, path planning, geometric transformations, visibility, arrangements" } @article{aap-ptem-86 -, author = "Ta. Asano and Te. Asano and R. Y. Pinter" -, title = "Polygon Triangulation: Efficiency and Minimality" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "221--231" -, keywords = "lower bounds, design of algorithms, triangulation" -, update = "93.09 held" -, annote = "Proves lower bound of $\Theta(n\log n)$ for - triangulation of polygons with holes. Dynamic - programming algorithm for minimum number triangulation - where there is a fixed number of holes." +, author = "Ta. Asano and Te. Asano and R. Y. Pinter" +, title = "Polygon Triangulation: Efficiency and Minimality" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "221--231" +, keywords = "lower bounds, design of algorithms, triangulation" +, update = "93.09 held" +, annote = "Proves lower bound of $\Theta(n\log n)$ for + triangulation of polygons with holes. Dynamic + programming algorithm for minimum number triangulation + where there is a fixed number of holes." } @incollection{aeiim-pubtc-85 -, author = "Ta. Asano and M. Edahiro and H. Imai and M. Iri and K. Murota" -, title = "Practical use of bucketing techniques in computational geometry" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "153--195" -, keywords = "survey paper, implementing algorithms, optimization, bucketing, matchings, Voronoi diagrams, range search, point location, shortest paths, quad trees" +, author = "Ta. Asano and M. Edahiro and H. Imai and M. Iri and K. Murota" +, title = "Practical use of bucketing techniques in computational geometry" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "153--195" +, keywords = "survey paper, implementing algorithms, optimization, bucketing, matchings, Voronoi diagrams, range search, point location, shortest paths, quad trees" } @article{ah-ecp-83 -, author = "Ta. Asano and T. Hirata" -, title = "Edge-contraction problems" -, journal = "J. Comput. Syst. Sci." -, volume = 26 -, year = 1983 -, pages = "197--208" -, keywords = "NP-completeness, graph theory" +, author = "Ta. Asano and T. Hirata" +, title = "Edge-contraction problems" +, journal = "J. Comput. Syst. Sci." +, volume = 26 +, year = 1983 +, pages = "197--208" +, keywords = "NP-completeness, graph theory" } @incollection{aso-cga-86 -, author = "Ta. Asano and M. Sato and T. Ohtsuki" -, title = "Computational geometry algorithms" -, editor = "T. Ohtsuki" -, booktitle = "Layout Design and Verification" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1986 -, pages = "295--347" -, keywords = "VLSI design, priority search trees, intersection, rectangles" +, author = "Ta. Asano and M. Sato and T. Ohtsuki" +, title = "Computational geometry algorithms" +, editor = "T. Ohtsuki" +, booktitle = "Layout Design and Verification" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1986 +, pages = "295--347" +, keywords = "VLSI design, priority search trees, intersection, rectangles" } @techreport{a-ncabb-86 -, author = "Te. Asano" -, title = "A new compaction algorithm for building block {LSI} using block packing technique" -, type = "Technical {Report}" -, number = "CAS85-158" -, institution = "IECE of Japan" -, year = 1986 +, author = "Te. Asano" +, title = "A new compaction algorithm for building block {LSI} using block packing technique" +, type = "Technical {Report}" +, number = "CAS85-158" +, institution = "IECE of Japan" +, year = 1986 } @techreport{a-adild-86 -, author = "Te. Asano" -, title = "Accuracy of digital images of lines and disks" -, type = "Technical {Report}" -, number = "COMP86-6" -, institution = "IECE of Japan" -, year = 1986 -, keywords = "design of algorithms, discrete geometry, convex hull, worst-case analysis" +, author = "Te. Asano" +, title = "Accuracy of digital images of lines and disks" +, type = "Technical {Report}" +, number = "COMP86-6" +, institution = "IECE of Japan" +, year = 1986 +, keywords = "design of algorithms, discrete geometry, convex hull, worst-case analysis" } @article{a-aceam-86 -, author = "Te. Asano" -, title = "An algorithm for computing every angle of movable separability of two polygons" -, journal = "Trans. IECE Japan" -, volume = "J69-A" -, year = 1986 -, pages = "1162--1165" -, keywords = "design of algorithms, visibility, convex hull, path planning" -, comments = "in Japanese" +, author = "Te. Asano" +, title = "An algorithm for computing every angle of movable separability of two polygons" +, journal = "Trans. IECE Japan" +, volume = "J69-A" +, year = 1986 +, pages = "1162--1165" +, keywords = "design of algorithms, visibility, convex hull, path planning" +, comments = "in Japanese" } @article{a-eackr-85 -, author = "Te. Asano" -, title = "An efficient algorithm for computing the $k$-reachability region from a point" -, journal = "Trans. IECE Japan" -, volume = "E68" -, year = 1985 -, pages = "560--562" -, keywords = "design of algorithms, VLSI design, visibility, plane-sweep" +, author = "Te. Asano" +, title = "An efficient algorithm for computing the $k$-reachability region from a point" +, journal = "Trans. IECE Japan" +, volume = "E68" +, year = 1985 +, pages = "560--562" +, keywords = "design of algorithms, VLSI design, visibility, plane-sweep" } @inproceedings{a-eacrp-85 -, author = "Te. Asano" -, title = "An efficient algorithm for computing the reachability polygon from a point: rectilinear case" -, booktitle = "Proc. ISCAS" -, year = 1985 -, pages = "1293--1296" +, author = "Te. Asano" +, title = "An efficient algorithm for computing the reachability polygon from a point: rectilinear case" +, booktitle = "Proc. ISCAS" +, year = 1985 +, pages = "1293--1296" } @article{a-eafrr-85 -, author = "Te. Asano" -, title = "An efficient algorithm for finding the region reachable within $k$ bends" -, journal = "Trans. IECE Japan" -, volume = "E68" -, year = 1985 -, pages = "831--835" -, keywords = "design of algorithms, VLSI design, worst-case analysis, visibility" +, author = "Te. Asano" +, title = "An efficient algorithm for finding the region reachable within $k$ bends" +, journal = "Trans. IECE Japan" +, volume = "E68" +, year = 1985 +, pages = "831--835" +, keywords = "design of algorithms, VLSI design, worst-case analysis, visibility" } % also claimed pages = "557--559" % independent refce to 557--559. N.K. @article{a-eafvp-85 -, author = "Te. Asano" -, title = "An efficient algorithm for finding the visibility polygon for a polygonal region with holes" -, journal = "Trans. IECE Japan" -, volume = "E68" -, number = 9 -, year = 1985 -, pages = "560--562" -, keywords = "design of algorithms, computer graphics, reporting, visibility, hidden line/surface elimination, plane-sweep" -, succeeds = "a-eafvp" -, update = "98.11 bibrelex, 95.05 korneenko" +, author = "Te. Asano" +, title = "An efficient algorithm for finding the visibility polygon for a polygonal region with holes" +, journal = "Trans. IECE Japan" +, volume = "E68" +, number = 9 +, year = 1985 +, pages = "560--562" +, keywords = "design of algorithms, computer graphics, reporting, visibility, hidden line/surface elimination, plane-sweep" +, succeeds = "a-eafvp" +, update = "98.11 bibrelex, 95.05 korneenko" } @article{a-dsptt-86 -, author = "Te. Asano" -, title = "Dividing a simple polygon into two territories" -, journal = "Trans. IECE Japan" -, volume = "E69" -, year = 1986 -, pages = "521--523" -, keywords = "design of algorithms, visibility, decomposition, operations research" +, author = "Te. Asano" +, title = "Dividing a simple polygon into two territories" +, journal = "Trans. IECE Japan" +, volume = "E69" +, year = 1986 +, pages = "521--523" +, keywords = "design of algorithms, visibility, decomposition, operations research" } @article{a-gmpaa-88 -, author = "Tetsuo Asano" -, title = "Generalized {Manhattan} path algorithm with applications" -, journal = "Comput. Aided Design" -, volume = 7 -, number = 7 -, month = jul -, year = 1988 -, pages = "797--804" +, author = "Tetsuo Asano" +, title = "Generalized {Manhattan} path algorithm with applications" +, journal = "Comput. Aided Design" +, volume = 7 +, number = 7 +, month = jul +, year = 1988 +, pages = "797--804" } @article{a-gcvpr-86 -, author = "Te. Asano" -, title = "Generating and counting valid patterns in routes between two points" -, journal = "Graphs Combin." -, volume = 2 -, year = 1986 -, pages = "9--13" -, keywords = "counting, VLSI design, path planning" +, author = "Te. Asano" +, title = "Generating and counting valid patterns in routes between two points" +, journal = "Graphs Combin." +, volume = 2 +, year = 1986 +, pages = "9--13" +, keywords = "counting, VLSI design, path planning" } @article{a-mwprb-85 -, author = "Te. Asano" -, title = "On minimum width packing of rectilinear blocks" -, journal = "Trans. IECE Japan" -, volume = "E68" -, year = 1985 -, pages = "647--649" -, keywords = "design of algorithms, plane-sweep, graph theory, VLSI design, packing" +, author = "Te. Asano" +, title = "On minimum width packing of rectilinear blocks" +, journal = "Trans. IECE Japan" +, volume = "E68" +, year = 1985 +, pages = "647--649" +, keywords = "design of algorithms, plane-sweep, graph theory, VLSI design, packing" } @article{a-pgr-82 -, author = "Te. Asano" -, title = "Parallel global route" -, journal = "Japanese Journal" -, volume = 23 -, year = 1982 -, pages = "443--450" +, author = "Te. Asano" +, title = "Parallel global route" +, journal = "Japanese Journal" +, volume = 23 +, year = 1982 +, pages = "443--450" } @article{a-rsprs-86 -, author = "Te. Asano" -, title = "Rectilinear shortest paths in a rectilinear simple polygon" -, journal = "Trans. IECE Japan" -, volume = "E69" -, number = 6 -, year = 1986 -, pages = "750--758" -, keywords = "design of algorithms, minimum spanning trees, decomposition, point location" +, author = "Te. Asano" +, title = "Rectilinear shortest paths in a rectilinear simple polygon" +, journal = "Trans. IECE Japan" +, volume = "E69" +, number = 6 +, year = 1986 +, pages = "750--758" +, keywords = "design of algorithms, minimum spanning trees, decomposition, point location" } @article{a-rbtp-82 -, author = "Te. Asano" -, title = "Routes between two points" -, journal = "Japanese Journal" -, volume = 23 -, year = 1982 -, pages = "576--578" +, author = "Te. Asano" +, title = "Routes between two points" +, journal = "Japanese Journal" +, volume = 23 +, year = 1982 +, pages = "576--578" } @techreport{a-tlrpl-87 -, author = "Te. Asano" -, title = "Two layer routing problem with large vias" -, type = "Technical {Report}" -, number = "CAS86-198" -, institution = "IECE of Japan" -, year = 1987 -, keywords = "design of algorithms, VLSI design, path planning, decomposition, plane-sweep, priority search trees, reporting, point location" +, author = "Te. Asano" +, title = "Two layer routing problem with large vias" +, type = "Technical {Report}" +, number = "CAS86-198" +, institution = "IECE of Japan" +, year = 1987 +, keywords = "design of algorithms, VLSI design, path planning, decomposition, plane-sweep, priority search trees, reporting, point location" } @article{aao-pprmn-84 -, author = "Te. Asano and Ta. Asano and Y. Ohsuga" -, title = "Partitioning a polygonal region into a minimum number of triangles" -, journal = "Trans. IECE Japan" -, volume = "E67" -, number = 4 -, year = 1984 -, pages = "232--233" -, keywords = "approximation, dynamic programming, triangulation" +, author = "Te. Asano and Ta. Asano and Y. Ohsuga" +, title = "Partitioning a polygonal region into a minimum number of triangles" +, journal = "Trans. IECE Japan" +, volume = "E67" +, number = 4 +, year = 1984 +, pages = "232--233" +, keywords = "approximation, dynamic programming, triangulation" } @inproceedings{abky-cabmm-88 -, author = "Te. Asano and B. K. Bhattacharya and J. M. Keil and F. Yao" -, title = "Clustering algorithms based on minimum and maximum spanning trees" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "252--257" -, keywords = "cluster analysis, minimum spanning trees, diameter, partition" -, cites = "ahu-daca-74, a-dp-86, b-ccp-77, emprww-sls-82, g-asrp-75, h-ca-75, j-nccog-82, mt-pnadt-82, mpsy-cemst-88, ps-cgi-85, ZZZ" -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "Te. Asano and B. K. Bhattacharya and J. M. Keil and F. Yao" +, title = "Clustering algorithms based on minimum and maximum spanning trees" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "252--257" +, keywords = "cluster analysis, minimum spanning trees, diameter, partition" +, cites = "ahu-daca-74, a-dp-86, b-ccp-77, emprww-sls-82, g-asrp-75, h-ca-75, j-nccog-82, mt-pnadt-82, mpsy-cemst-88, ps-cgi-85, ZZZ" +, update = "98.07 agarwal, 98.03 bibrelex" } @inproceedings{ackt-ptsis-96 -, author = "Tetsuo Asano and Danny Z. Chen and Naoki Katoh and Takeshi Tokuyama" -, title = "Polynomial-time solutions to image segmentation" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "104--113" -, keywords = "separation, monotone chains, dynamic programming, probing, computer vision" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Tetsuo Asano and Danny Z. Chen and Naoki Katoh and Takeshi Tokuyama" +, title = "Polynomial-time solutions to image segmentation" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "104--113" +, keywords = "separation, monotone chains, dynamic programming, probing, computer vision" +, update = "96.09 agarwal, 96.01 mitchell" } @incollection{ags-vp-00 -, author = "Tetsuo Asano and Subis K. Ghosh and Thomas C. Shermer" -, title = "Visibility in the Plane" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "829--876" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 19 of su-hcg-00" +, author = "Tetsuo Asano and Subis K. Ghosh and Thomas C. Shermer" +, title = "Visibility in the Plane" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "829--876" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 19 of su-hcg-00" } @inproceedings{agt-wat-91 -, author = "Te. Asano and Leonidas J. Guibas and T. Tokuyama" -, title = "Walking on an arrangement topologically" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "297--306" -, keywords = "arrangements, lines" -, cites = "at-appgm-90, ce-oails-88, e-acg-87, eg-tsa-89, h-gt-72, m-ltalp-83, ow-nmcvg-88, ykii-avoll-88, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Te. Asano and Leonidas J. Guibas and T. Tokuyama" +, title = "Walking on an arrangement topologically" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "297--306" +, keywords = "arrangements, lines" +, cites = "at-appgm-90, ce-oails-88, e-acg-87, eg-tsa-89, h-gt-72, m-ltalp-83, ow-nmcvg-88, ykii-avoll-88, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{agt-wat-94 -, author = "Te. Asano and Leonidas J. Guibas and T. Tokuyama" -, title = "Walking on an arrangement topologically" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "123--151" -, keywords = "arrangements, lines" -, succeeds = "agt-wat-91" -, update = "98.03 mitchell, 96.05 pocchiola" +, author = "Te. Asano and Leonidas J. Guibas and T. Tokuyama" +, title = "Walking on an arrangement topologically" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "123--151" +, keywords = "arrangements, lines" +, succeeds = "agt-wat-91" +, update = "98.03 mitchell, 96.05 pocchiola" } @inproceedings{ahpsss-sbcpp-90 -, author = "Te. Asano and J. Hershberger and J. Pach and E. Sontag and D. Souvaine and S. Suri" -, title = "Separating bi-chromatic points by parallel lines" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "46--49" -, cites = "ahu-daca-74, b-cmp-88, bh-wsngv-89, b-lgc-74, s-sdbh-89, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Te. Asano and J. Hershberger and J. Pach and E. Sontag and D. Souvaine and S. Suri" +, title = "Separating bi-chromatic points by parallel lines" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "46--49" +, cites = "ahu-daca-74, b-cmp-88, bh-wsngv-89, b-lgc-74, s-sdbh-89, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{ahii-ulsag-90 -, author = "Te. Asano and M. E. Houle and H. Imai and K. Imai" -, title = "A unified linear-space approach to geometric minimax problems" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "20--23" -, cites = "co-gpah-82, hk-cmhdp-90, ZZZ" -, update = "98.07 bibrelex" +, author = "Te. Asano and M. E. Houle and H. Imai and K. Imai" +, title = "A unified linear-space approach to geometric minimax problems" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "20--23" +, cites = "co-gpah-82, hk-cmhdp-90, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{aii-chppm-89 -, author = "Te. Asano and H. Imai and K. Imai" -, title = "Clustering/hashing points in the plane with maxmin criteria" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 15 +, author = "Te. Asano and H. Imai and K. Imai" +, title = "Clustering/hashing points in the plane with maxmin criteria" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 15 } @inproceedings{aklr-oamcg-95 -, author = "Tetsuo Asano and Naoki Katoh and Elena Lodi and Thomas Roos" -, title = "Optimal Approximation of Monotone Curves on a Grid" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "37--42" -, update = "95.09 jones" +, author = "Tetsuo Asano and Naoki Katoh and Elena Lodi and Thomas Roos" +, title = "Optimal Approximation of Monotone Curves on a Grid" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "37--42" +, update = "95.09 jones" } @inproceedings{aktt-cppkt-97 -, author = "Te. Asano and N. Katoh and H. Tamaki and T. Tokuyama" -, title = "Covering points in the plane by $k$-tours: towards a polynomial time approximation scheme for general $k$" -, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '97" -, year = 1997 -, pages = "275--283" -, update = "00.11 smid, 00.07 smid, 98.07 bibrelex, 98.03 smid" +, author = "Te. Asano and N. Katoh and H. Tamaki and T. Tokuyama" +, title = "Covering points in the plane by $k$-tours: towards a polynomial time approximation scheme for general $k$" +, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '97" +, year = 1997 +, pages = "275--283" +, update = "00.11 smid, 00.07 smid, 98.07 bibrelex, 98.03 smid" } @inproceedings{aky-domr-96 -, author = "Tetsuo Asano and David Kirkpatrick and Chee K. Yap" -, title = "$d_1$-Optimal Motion for a Rod" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "252--263" -, cites = "b-kpso-28, cr-nlbtr-87, csy-aesp3-94, irwy-spls-92, o-fslps-87, ps-oplmo-87, rty-ccrt-94, ss-pmp1c-83, s-npsap-89t, osy-gvdl-86, osy-gvdl-87, u-pmm-64, y-amp-87, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Tetsuo Asano and David Kirkpatrick and Chee K. Yap" +, title = "$d_1$-Optimal Motion for a Rod" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "252--263" +, cites = "b-kpso-28, cr-nlbtr-87, csy-aesp3-94, irwy-spls-92, o-fslps-87, ps-oplmo-87, rty-ccrt-94, ss-pmp1c-83, s-npsap-89t, osy-gvdl-86, osy-gvdl-87, u-pmm-64, y-amp-87, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{arrww-sfcdg-97 -, author = "Tetsuo Asano and Desh Ranjan and Thomas Roos and Emo Welzl and Peter Widmayer" -, title = "Space-Filling Curves and Their Use in the Design of Geometric Data Structures" -, journal = "Theoret. Comput. Sci." -, volume = 181 -, number = 1 -, month = jul -, year = 1997 -, pages = "3--15" -, update = "98.03 mitchell" +, author = "Tetsuo Asano and Desh Ranjan and Thomas Roos and Emo Welzl and Peter Widmayer" +, title = "Space-Filling Curves and Their Use in the Design of Geometric Data Structures" +, journal = "Theoret. Comput. Sci." +, volume = 181 +, number = 1 +, month = jul +, year = 1997 +, pages = "3--15" +, update = "98.03 mitchell" } @inproceedings{at-appgm-90 -, author = "Te. Asano and T. Tokuyama" -, title = "Algorithms for projecting points to give the most uniform distribution with application to hashing" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "300--309" +, author = "Te. Asano and T. Tokuyama" +, title = "Algorithms for projecting points to give the most uniform distribution with application to hashing" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "300--309" } @article{at-appgm-93 -, author = "Te. Asano and T. Tokuyama" -, title = "Algorithms for projecting points to give the most uniform distribution with application to hashing" -, journal = "Algorithmica" -, volume = "??" -, year = 1993 -, pages = "572--590" -, update = "98.11 bibrelex" +, author = "Te. Asano and T. Tokuyama" +, title = "Algorithms for projecting points to give the most uniform distribution with application to hashing" +, journal = "Algorithmica" +, volume = "??" +, year = 1993 +, pages = "572--590" +, update = "98.11 bibrelex" } @inproceedings{at-cpagm-91 -, author = "Te. Asano and T. Tokuyama" -, title = "Circuit partitioning algorithms: graph model versus geometry model" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "94--103" +, author = "Te. Asano and T. Tokuyama" +, title = "Circuit partitioning algorithms: graph model versus geometry model" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "94--103" } @incollection{at-cgcsp-87 -, author = "Te. Asano and G. Toussaint" -, title = "Computing the Geodesic Center of a Simple Polygon" -, editor = "D. S. Johnson" -, booktitle = "Discrete Algorithms and Complexity" -, series = "Perspectives in Computing" -, publisher = "Academic Press" -, year = 1987 -, pages = "65--79" -, update = "97.11 bibrelex, 95.05 korneenko, 93.09 held" +, author = "Te. Asano and G. Toussaint" +, title = "Computing the Geodesic Center of a Simple Polygon" +, editor = "D. S. Johnson" +, booktitle = "Discrete Algorithms and Complexity" +, series = "Perspectives in Computing" +, publisher = "Academic Press" +, year = 1987 +, pages = "65--79" +, update = "97.11 bibrelex, 95.05 korneenko, 93.09 held" } @techreport{at-cgcsp-86 -, author = "Te. Asano and G. T. Toussaint" -, title = "Computing the geodesic center of a simple polygon" -, type = "Technical {Report}" -, number = "COMP86-24" -, institution = "IECE of Japan" -, year = 1986 +, author = "Te. Asano and G. T. Toussaint" +, title = "Computing the geodesic center of a simple polygon" +, type = "Technical {Report}" +, number = "COMP86-24" +, institution = "IECE of Japan" +, year = 1986 } @techreport{au-sacvp-86 -, author = "Te. Asano and H. Umeo" -, title = "Systolic algorithms for computing the visibility polygon and triangulation of a polygonal region" -, type = "Technical {Report}" -, number = "COMP86-7" -, institution = "IECE of Japan" -, year = 1986 -, keywords = "parallel computation, design of algorithms, visibility, triangulation" -, precedes = "au-sacvp-88" +, author = "Te. Asano and H. Umeo" +, title = "Systolic algorithms for computing the visibility polygon and triangulation of a polygonal region" +, type = "Technical {Report}" +, number = "COMP86-7" +, institution = "IECE of Japan" +, year = 1986 +, keywords = "parallel computation, design of algorithms, visibility, triangulation" +, precedes = "au-sacvp-88" } @inproceedings{au-sacvp-87 -, author = "Te. Asano and H. Umeo" -, title = "Systolic Algorithms for Computing the Visibility Polygon and Triangulation of a Polygonal Region" -, editor = "A. Albrecht and H. Jung and K. Mehlhorn" -, booktitle = "Parallel Algorithms and Architectures" -, publisher = "Akademie-Verlag Berlin" -, month = may -, year = 1987 -, pages = "77--85" -, update = "93.09 held" +, author = "Te. Asano and H. Umeo" +, title = "Systolic Algorithms for Computing the Visibility Polygon and Triangulation of a Polygonal Region" +, editor = "A. Albrecht and H. Jung and K. Mehlhorn" +, booktitle = "Parallel Algorithms and Architectures" +, publisher = "Akademie-Verlag Berlin" +, month = may +, year = 1987 +, pages = "77--85" +, update = "93.09 held" } @article{au-sacvp-88 -, author = "Te. Asano and H. Umeo" -, title = "Systolic algorithms for computing the visibility polygon and triangulation of a polygonal region" -, journal = "Parallel Comput." -, volume = 6 -, number = 2 -, year = 1988 -, pages = "209--216" -, succeeds = "au-sacvp-86" -, abstract = "Many geometrical problems have been shown to require - at least O(n log n) computer time in the worst case. A - problem of this kind is the following: Given a - polygonal domain with (polygonal) holes and a point q - in its interior, find the vertices of the boundary that - are visible from q. Since the problem is almost solved - when the rays from q to the vertices are sorted - according to their direction, it follows that one has - the n log n-asymptotics. Now the computer time can be - reduced to const. n, if O(n) processors are organized - as a one-dimensional systolic array. Each processor - cell needs only to communicate with its two neighbours. - The communication links with the outside are located at - the ends of the array. The essential step is the - following. In each processor only an amount of - information which is independent of n is needed. Also - each vertex ``who is sent through the systolic array'' - may carry an amount of information which does not - depend on n. It is described how this is possible. - Another problem which fits into this framework is often - encountered in CAD. Which part of a polygonal body is - visible? A subdivision of a polygonal domain into a - minimal set of triangles is also treated" +, author = "Te. Asano and H. Umeo" +, title = "Systolic algorithms for computing the visibility polygon and triangulation of a polygonal region" +, journal = "Parallel Comput." +, volume = 6 +, number = 2 +, year = 1988 +, pages = "209--216" +, succeeds = "au-sacvp-86" +, abstract = "Many geometrical problems have been shown to require + at least O(n log n) computer time in the worst case. A + problem of this kind is the following: Given a + polygonal domain with (polygonal) holes and a point q + in its interior, find the vertices of the boundary that + are visible from q. Since the problem is almost solved + when the rays from q to the vertices are sorted + according to their direction, it follows that one has + the n log n-asymptotics. Now the computer time can be + reduced to const. n, if O(n) processors are organized + as a one-dimensional systolic array. Each processor + cell needs only to communicate with its two neighbours. + The communication links with the outside are located at + the ends of the array. The essential step is the + following. In each processor only an amount of + information which is independent of n is needed. Also + each vertex ``who is sent through the systolic array'' + may carry an amount of information which does not + depend on n. It is described how this is possible. + Another problem which fits into this framework is often + encountered in CAD. Which part of a polygonal body is + visible? A subdivision of a polygonal domain into a + minimal set of triangles is also treated" } @incollection{abbgotwz-fds-93 -, author = "B. Asberg and G. Blanco and P. Bose and J. Garcia-Lopez and M. Overmars and G. Toussaint and G. Wilfong and B. Zhu" -, title = "Feasibility of Design in Stereolithography" -, booktitle = "Proc. 13th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 761 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "228--237" -, update = "97.11 smid" +, author = "B. Asberg and G. Blanco and P. Bose and J. Garcia-Lopez and M. Overmars and G. Toussaint and G. Wilfong and B. Zhu" +, title = "Feasibility of Design in Stereolithography" +, booktitle = "Proc. 13th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 761 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "228--237" +, update = "97.11 smid" } @article{abbgotwz-fds-97 -, author = "B. Asberg and G. Blanco and P. Bose and J. Garcia-Lopez and M. Overmars and G. Toussaint and G. Wilfong and B. Zhu" -, title = "Feasibility of Design in Stereolithography" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "61--83" -, update = "97.07 held" +, author = "B. Asberg and G. Blanco and P. Bose and J. Garcia-Lopez and M. Overmars and G. Toussaint and G. Wilfong and B. Zhu" +, title = "Feasibility of Design in Stereolithography" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "61--83" +, update = "97.07 held" } @incollection{am-iw81c-82 -, author = "F. Aschim and B. M. Mostue" -, title = "{IFIP} {WG} 8.1 Case Solved Using {SYSDOC} and {SYSTEMATOR}" -, editor = "T. W. Olle and H. G. Sol and A. A. Verrijn-Stuart" -, booktitle = "Information Systems Design Methodologies: A Comparative Review" -, publisher = "North-Holland" -, address = "New York, NY" -, year = 1982 -, pages = "15--40" -, keywords = "graph drawing" -, update = "97.11 bibrelex, 93.09 tamassia" +, author = "F. Aschim and B. M. Mostue" +, title = "{IFIP} {WG} 8.1 Case Solved Using {SYSDOC} and {SYSTEMATOR}" +, editor = "T. W. Olle and H. G. Sol and A. A. Verrijn-Stuart" +, booktitle = "Information Systems Design Methodologies: A Comparative Review" +, publisher = "North-Holland" +, address = "New York, NY" +, year = 1982 +, pages = "15--40" +, keywords = "graph drawing" +, update = "97.11 bibrelex, 93.09 tamassia" } @incollection{abcw-cpdts-88 -, author = "Peter Ash and Ethan Bolker and Henry Crapo and Walter Whiteley" -, title = "Convex Polyhedra, {Dirichlet} Tessellations, and Spider Webs" -, chapter = 17 -, editor = "Marjorie Senechal and George Fleck" -, booktitle = "Shaping Space: A Polyhedral Approach" -, publisher = "Birkh{\"a}user" -, address = "Boston, MA" -, year = 1988 -, pages = "231--250" -, update = "93.09 rote" -, annote = "Plane pictures of 3d convex polyhedra, plane sections - of 3d Vds and flat spider webs under tension are all - the same." +, author = "Peter Ash and Ethan Bolker and Henry Crapo and Walter Whiteley" +, title = "Convex Polyhedra, {Dirichlet} Tessellations, and Spider Webs" +, chapter = 17 +, editor = "Marjorie Senechal and George Fleck" +, booktitle = "Shaping Space: A Polyhedral Approach" +, publisher = "Birkh{\"a}user" +, address = "Boston, MA" +, year = 1988 +, pages = "231--250" +, update = "93.09 rote" +, annote = "Plane pictures of 3d convex polyhedra, plane sections + of 3d Vds and flat spider webs under tension are all + the same." } @article{ab-gdt-86 -, author = "Peter F. Ash and Ethan D. Bolker" -, title = "Generalized {Dirichlet} Tessellations" -, journal = "Geom. Dedicata" -, volume = 20 -, year = 1986 -, pages = "209--243" -, update = "93.09 rote" -, annote = "Gives conditions for a planar tessellations to be a - generalized Voronoi diagram. Generalized distance from - a site is $\phi(|X-P|)+w(P)$ where $\phi$ is increasing." +, author = "Peter F. Ash and Ethan D. Bolker" +, title = "Generalized {Dirichlet} Tessellations" +, journal = "Geom. Dedicata" +, volume = 20 +, year = 1986 +, pages = "209--243" +, update = "93.09 rote" +, annote = "Gives conditions for a planar tessellations to be a + generalized Voronoi diagram. Generalized distance from + a site is $\phi(|X-P|)+w(P)$ where $\phi$ is increasing." } @article{ab-rdt-85 -, author = "Peter F. Ash and Ethan D. Bolker" -, title = "Recognizing {Dirichlet} Tessellations" -, journal = "Geom. Dedicata" -, volume = 19 -, year = 1985 -, pages = "175--206" -, keywords = "Voronoi diagrams" -, annote = "Gives conditions for a planar tessellation to be a - Voronoi diagram" +, author = "Peter F. Ash and Ethan D. Bolker" +, title = "Recognizing {Dirichlet} Tessellations" +, journal = "Geom. Dedicata" +, volume = 19 +, year = 1985 +, pages = "175--206" +, keywords = "Voronoi diagrams" +, annote = "Gives conditions for a planar tessellation to be a + Voronoi diagram" } @techreport{a-brep-96 -, author = "Ian Ashdown" -, title = "{B-REP96.TXT}" -, institution = "Ledalite Architectural Products" -, address = "Vancouver, BC" -, month = jan -, year = 1996 -, url = "http://www.ledalite.com/library/cgis.html" -, keywords = "bibliography, computer graphics, winged edge, edge-based boundary representations" -, comments = "A comprehensive bibliography of edge-based boundary +, author = "Ian Ashdown" +, title = "{B-REP96.TXT}" +, institution = "Ledalite Architectural Products" +, address = "Vancouver, BC" +, month = jan +, year = 1996 +, url = "http://www.ledalite.com/library/cgis.html" +, keywords = "bibliography, computer graphics, winged edge, edge-based boundary representations" +, comments = "A comprehensive bibliography of edge-based boundary representation (e.g., winged edge) papers, theses, articles, and books. 39 references." -, update = "96.01 ashdown" +, update = "96.01 ashdown" } @techreport{a-cquan-96 -, author = "Ian Ashdown" -, title = "{CQUANT96.TXT}" -, institution = "Ledalite Architectural Products" -, address = "Vancouver, BC" -, month = jan -, year = 1996 -, url = "http://www.ledalite.com/library/cgis.html" -, keywords = "bibliography, computer graphics, color quantization, dynamic palettes" -, comments = "A comprehensive bibliography of color quantization +, author = "Ian Ashdown" +, title = "{CQUANT96.TXT}" +, institution = "Ledalite Architectural Products" +, address = "Vancouver, BC" +, month = jan +, year = 1996 +, url = "http://www.ledalite.com/library/cgis.html" +, keywords = "bibliography, computer graphics, color quantization, dynamic palettes" +, comments = "A comprehensive bibliography of color quantization algorithms. 91 references." -, update = "96.01 ashdown" +, update = "96.01 ashdown" } @techreport{a-radbi-96 -, author = "Ian Ashdown" -, title = "{RADBIB96.TXT}" -, institution = "Ledalite Architectural Products" -, address = "Vancouver, BC" -, month = jan -, year = 1996 -, url = "http://www.ledalite.com/library/rrt.html" -, keywords = "bibliography, computer graphics, radiosity, global illumination, form factors" -, comments = "A comprehensive bibliography of radiosity and related +, author = "Ian Ashdown" +, title = "{RADBIB96.TXT}" +, institution = "Ledalite Architectural Products" +, address = "Vancouver, BC" +, month = jan +, year = 1996 +, url = "http://www.ledalite.com/library/rrt.html" +, keywords = "bibliography, computer graphics, radiosity, global illumination, form factors" +, comments = "A comprehensive bibliography of radiosity and related global illumination papers, theses, articles, and books. 904 references." -, update = "96.05 jones, 96.01 ashdown" +, update = "96.05 jones, 96.01 ashdown" } @incollection{ah-afopb-87 -, author = "J. Ashton and D. Hoang" -, title = "An algorithm for finding optimal paths between points while avoiding polyhedral obstacles" -, booktitle = "Towards 3 Generation Robotics. Proc. 3rd Internat. Conf. Adv. Robotics" -, publisher = "Springer" -, address = "France" -, year = 1987 -, pages = "307--312" -, keywords = "motion planning, polyhedra, three-dimensional" -, update = "95.05 korneenko" +, author = "J. Ashton and D. Hoang" +, title = "An algorithm for finding optimal paths between points while avoiding polyhedral obstacles" +, booktitle = "Towards 3 Generation Robotics. Proc. 3rd Internat. Conf. Adv. Robotics" +, publisher = "Springer" +, address = "France" +, year = 1987 +, pages = "307--312" +, keywords = "motion planning, polyhedra, three-dimensional" +, update = "95.05 korneenko" } @article{a-gttvmd-85 -, author = "D. Asimov" -, title = "The {Grand Tour}: {A} tool for viewing multidimensional data" -, journal = "SIAM J. Sci. Statist. Comput." -, volume = 6 -, year = 1985 -, pages = "128--143" -, update = "97.07 orourke" +, author = "D. Asimov" +, title = "The {Grand Tour}: {A} tool for viewing multidimensional data" +, journal = "SIAM J. Sci. Statist. Comput." +, volume = 6 +, year = 1985 +, pages = "128--143" +, update = "97.07 orourke" } @article{ar-rg-78 -, author = "L. Asimov and B. Roth" -, title = "The rigidity of graphs" -, journal = "Trans. Amer. Math. Soc." -, volume = 245 -, year = 1978 -, pages = "279--289" -, keywords = "rigidity" -, update = "95.05 korneenko" +, author = "L. Asimov and B. Roth" +, title = "The rigidity of graphs" +, journal = "Trans. Amer. Math. Soc." +, volume = 245 +, year = 1978 +, pages = "279--289" +, keywords = "rigidity" +, update = "95.05 korneenko" } @article{ar-rg2-79 -, author = "L. Asimov and B. Roth" -, title = "The rigidity of graphs, 2" -, journal = "J. Math. Anal. Appl." -, volume = 68 -, year = 1979 -, pages = "171--190" -, keywords = "rigidity" -, update = "95.05 korneenko" +, author = "L. Asimov and B. Roth" +, title = "The rigidity of graphs, 2" +, journal = "J. Math. Anal. Appl." +, volume = 68 +, year = 1979 +, pages = "171--190" +, keywords = "rigidity" +, update = "95.05 korneenko" } @inproceedings{ah-wfdsa-90 -, author = "J. Aspnes and M. Herlihy" -, title = "Wait-free data structures in the asynchronous {PRAM} model" -, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "340--349" -, update = "96.09 orourke" +, author = "J. Aspnes and M. Herlihy" +, title = "Wait-free data structures in the asynchronous {PRAM} model" +, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "340--349" +, update = "96.09 orourke" } @inproceedings{as-ptass-79 -, author = "B. Aspvall and Y. Shiloac" -, title = "A polynomial time algorithm for solving systems of linear inequalities with two variables per inequality" -, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1979 -, update = "97.11 bibrelex" +, author = "B. Aspvall and Y. Shiloac" +, title = "A polynomial time algorithm for solving systems of linear inequalities with two variables per inequality" +, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1979 +, update = "97.11 bibrelex" } @techreport{aa-vdpsp- -, author = "T. Assano and T. Assano" -, title = "Voronoi diagram for points in a simple polygon" -, type = "Manuscript" -, institution = "??" -, year = "??" -, update = "98.03 bibrelex" +, author = "T. Assano and T. Assano" +, title = "Voronoi diagram for points in a simple polygon" +, type = "Manuscript" +, institution = "??" +, year = "??" +, update = "98.03 bibrelex" } @article{a-ded-83 -, author = "P. Assouad" -, title = "Densit\'e et dimension" -, journal = "Ann. Inst. Fourier, Grenoble" -, volume = 3 -, year = 1983 -, pages = "232--282" -, update = "96.09 orourke" +, author = "P. Assouad" +, title = "Densit\'e et dimension" +, journal = "Ann. Inst. Fourier, Grenoble" +, volume = 3 +, year = 1983 +, pages = "232--282" +, update = "96.09 orourke" } @inproceedings{ac-proap-93i -, author = "M. Atallah and D. Chen" -, title = "On parallel rectilinear obstacle-avoiding paths" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "210--215" -, precedes = "ac-proap-93a" -, cites = "ap-nsmma-88, aalm-epase-90, ac-prspr-91, acg-cdctd-89, ak-eparm-91, b-pegae-74, c-pms-88, rlw-rsppr-89, em-osrqa-91, nllw-xchsx-83, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 96.09 devillers, 93.09 milone+mitchell" +, author = "M. Atallah and D. Chen" +, title = "On parallel rectilinear obstacle-avoiding paths" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "210--215" +, precedes = "ac-proap-93a" +, cites = "ap-nsmma-88, aalm-epase-90, ac-prspr-91, acg-cdctd-89, ak-eparm-91, b-pegae-74, c-pms-88, rlw-rsppr-89, em-osrqa-91, nllw-xchsx-83, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 96.09 devillers, 93.09 milone+mitchell" } @article{ac-proap-93a -, author = "M. Atallah and D. Chen" -, title = "On parallel rectilinear obstacle-avoiding paths" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "307--313" -, succeeds = "ac-proap-93i" -, update = "98.03 mitchell, 97.11 bibrelex, 96.09 devillers" -, annote = "They improve the results of \cite{ac-prspr-91}, to give +, author = "M. Atallah and D. Chen" +, title = "On parallel rectilinear obstacle-avoiding paths" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "307--313" +, succeeds = "ac-proap-93i" +, update = "98.03 mitchell, 97.11 bibrelex, 96.09 devillers" +, annote = "They improve the results of \cite{ac-prspr-91}, to give a CREW algorithm using $O(n^2/\log n)$ processors (versus earlier bound of $O(n^2)$), $O(\log^2 n)$ time, and $O(n^2)$ space (versus earlier bound of $O(n^2\log^2 n)$). @@ -11081,1771 +11081,1771 @@ @article{ac-proap-93a } @incollection{a-fpams-90 -, author = "M. J. Atallah" -, title = "A faster parallel algorithm for a matrix searching problem" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, year = 1990 -, pages = "192--200" -, keywords = "matrix searching, parallel computation" -, update = "95.05 korneenko" +, author = "M. J. Atallah" +, title = "A faster parallel algorithm for a matrix searching problem" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, year = 1990 +, pages = "192--200" +, keywords = "matrix searching, parallel computation" +, update = "95.05 korneenko" } @article{a-ltahd-83 -, author = "M. J. Atallah" -, title = "A linear time algorithm for the {Hausdorff} distance between convex polygons" -, journal = "Inform. Process. Lett." -, volume = 17 -, year = 1983 -, pages = "207--209" +, author = "M. J. Atallah" +, title = "A linear time algorithm for the {Hausdorff} distance between convex polygons" +, journal = "Inform. Process. Lett." +, volume = 17 +, year = 1983 +, pages = "207--209" } @article{a-mpp-85 -, author = "M. J. Atallah" -, title = "A matching problem in the plane" -, journal = "J. Comput. Syst. Sci." -, volume = 31 -, year = 1985 -, pages = "63--70" +, author = "M. J. Atallah" +, title = "A matching problem in the plane" +, journal = "J. Comput. Syst. Sci." +, volume = 31 +, year = 1985 +, pages = "63--70" } @article{a-cspf-84 -, author = "M. J. Atallah" -, title = "Checking similarity of planar figures" -, journal = "Internat. J. Comput. Inform. Sci." -, volume = 13 -, year = 1984 -, pages = "279--290" +, author = "M. J. Atallah" +, title = "Checking similarity of planar figures" +, journal = "Internat. J. Comput. Inform. Sci." +, volume = 13 +, year = 1984 +, pages = "279--290" } @article{a-cchli-86 -, author = "M. J. Atallah" -, title = "Computing the convex hull of line intersections" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "285--288" +, author = "M. J. Atallah" +, title = "Computing the convex hull of line intersections" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "285--288" } @inproceedings{a-dcg-83 -, author = "M. J. Atallah" -, title = "Dynamic computational geometry" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "92--99" -, precedes = "a-sdcgp-85" +, author = "M. J. Atallah" +, title = "Dynamic computational geometry" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "92--99" +, precedes = "a-sdcgp-85" } @article{a-sd-85 -, author = "M. J. Atallah" -, title = "On symmetry detection" -, journal = "IEEE Trans. Comput." -, volume = "C-34" -, year = 1985 -, pages = "663--666" +, author = "M. J. Atallah" +, title = "On symmetry detection" +, journal = "IEEE Trans. Comput." +, volume = "C-34" +, year = 1985 +, pages = "663--666" } @article{a-ptcg-92 -, author = "M. J. Atallah" -, title = "Parallel techniques for computational geometry" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1435--1448" -, keywords = "survey paper" +, author = "M. J. Atallah" +, title = "Parallel techniques for computational geometry" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1435--1448" +, keywords = "survey paper" } @article{a-sdcgp-85 -, author = "M. J. Atallah" -, title = "Some dynamic computational geometry problems" -, journal = "Comput. Math. Appl." -, volume = 11 -, number = 12 -, year = 1985 -, pages = "1171--1181" -, succeeds = "a-dcg-83" -, update = "98.11 bibrelex" +, author = "M. J. Atallah" +, title = "Some dynamic computational geometry problems" +, journal = "Comput. Math. Appl." +, volume = 11 +, number = 12 +, year = 1985 +, pages = "1171--1181" +, succeeds = "a-dcg-83" +, update = "98.11 bibrelex" } @article{ab-eact-87 -, author = "M. J. Atallah and C. Bajaj" -, title = "Efficient algorithms for common transversals" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "87--91" +, author = "M. J. Atallah and C. Bajaj" +, title = "Efficient algorithms for common transversals" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "87--91" } @inproceedings{acg-pcgp-90 -, author = "M. J. Atallah and P. Callahan and M. T. Goodrich" -, title = "{$P$}-complete geometric problems" -, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "317--326" -, precedes = "acg-pcgp-93" -, update = "96.09 devillers" +, author = "M. J. Atallah and P. Callahan and M. T. Goodrich" +, title = "{$P$}-complete geometric problems" +, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "317--326" +, precedes = "acg-pcgp-93" +, update = "96.09 devillers" } @article{acg-pcgp-93 -, author = "M. J. Atallah and P. Callahan and M. T. Goodrich" -, title = "{$P$}-complete geometric problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "443--462" -, keywords = "computational geometry, complexity, P-completeness, parallel algorithms" -, succeeds = "acg-pcgp-90" -, update = "96.09 devillers" +, author = "M. J. Atallah and P. Callahan and M. T. Goodrich" +, title = "{$P$}-complete geometric problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "443--462" +, keywords = "computational geometry, complexity, P-completeness, parallel algorithms" +, succeeds = "acg-pcgp-90" +, update = "96.09 devillers" } @article{ac-opamc-89 -, author = "M. J. Atallah and D. Z. Chen" -, title = "An optimal parallel algorithm for the minimum circle-cover problem" -, journal = "Inform. Process. Lett." -, volume = 34 -, number = 4 -, year = 1989 -, pages = "159--165" -, update = "96.09 orourke" +, author = "M. J. Atallah and D. Z. Chen" +, title = "An optimal parallel algorithm for the minimum circle-cover problem" +, journal = "Inform. Process. Lett." +, volume = 34 +, number = 4 +, year = 1989 +, pages = "159--165" +, update = "96.09 orourke" } @article{ac-caplc-95 -, author = "M. J. Atallah and D. Z. Chen" -, title = "Computing the all-pairs longest chains in the plane" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "257--271" -, keywords = "computational geometry, CREW PRAM, increasing chains, longest paths, Monge matrices, parallel algorithms, sequential algorithms" -, update = "96.09 devillers" +, author = "M. J. Atallah and D. Z. Chen" +, title = "Computing the all-pairs longest chains in the plane" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "257--271" +, keywords = "computational geometry, CREW PRAM, increasing chains, longest paths, Monge matrices, parallel algorithms, sequential algorithms" +, update = "96.09 devillers" } @incollection{ac-dpcg-00 -, author = "Mikhail J. Atallah and Danny Z. Chen" -, title = "Deterministic Parallel Computational Geometry" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "155--200" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 4 of su-hcg-00" +, author = "Mikhail J. Atallah and Danny Z. Chen" +, title = "Deterministic Parallel Computational Geometry" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "155--200" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 4 of su-hcg-00" } @article{ac-crbrp-01 -, author = "M. J. Atallah and D. Z. Chen" -, title = "On connecting red and blue rectilinear polygonal obstacles with nonintersecting monotone rectilinear paths" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "373--400" -, update = "01.11 smid" +, author = "M. J. Atallah and D. Z. Chen" +, title = "On connecting red and blue rectilinear polygonal obstacles with nonintersecting monotone rectilinear paths" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "373--400" +, update = "01.11 smid" } @inproceedings{ac-opavs-89 -, author = "M. J. Atallah and D. Z. Chen" -, title = "Optimal parallel algorithm for visibility of a simple polygon from a p oint" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "114--123" -, precedes = "acw-opavs-91" -, cites = "acg-cdctd-87, ahu-daca-74, c-pms-88, cd-icott-87, ds-ehlec-85, ea-lacvp-81, g-fchsp-87, hs-et-55, krs-ppp-85a, l-vsp-83, lf-ppc-80, ps-cgi-85, w-opach-85, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex" +, author = "M. J. Atallah and D. Z. Chen" +, title = "Optimal parallel algorithm for visibility of a simple polygon from a p oint" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "114--123" +, precedes = "acw-opavs-91" +, cites = "acg-cdctd-87, ahu-daca-74, c-pms-88, cd-icott-87, ds-ehlec-85, ea-lacvp-81, g-fchsp-87, hs-et-55, krs-ppp-85a, l-vsp-83, lf-ppc-80, ps-cgi-85, w-opach-85, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex" } @incollection{ac-pcg-94 -, author = "M. J. Atallah and D. Z. Chen" -, title = "Parallel Computational Geometry" -, editor = "A. Y. Zomaya" -, booktitle = "Parallel Computations: Paradigms and Applications" -, publisher = "World Scientific Publishing" -, year = 1994 -, pages = "" -, update = "96.09 orourke" +, author = "M. J. Atallah and D. Z. Chen" +, title = "Parallel Computational Geometry" +, editor = "A. Y. Zomaya" +, booktitle = "Parallel Computations: Paradigms and Applications" +, publisher = "World Scientific Publishing" +, year = 1994 +, pages = "" +, update = "96.09 orourke" } @article{ac-prspr-91 -, author = "M. J. Atallah and D. Z. Chen" -, title = "Parallel rectilinear shortest paths with rectangular obstacles" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 2 -, year = 1991 -, pages = "79--113" -, comments = "They preprocess a set of $n$ disjoint axis-aligned rectangles (obstacles), - within a rectilinearly convex polygon $P$, - for 2-point shortest path queries (rectilinear shortest paths). - The query time is $O(\log n)$, on one processor. - The sequential preprocessing time is $O(n^2)$ (no space - bounds seem to be stated explicitly). - Their parallel (CREW) algorithms take time $O(\log^2 n)$, - on either $O(n^2/\log^2 n)$, $O(n^2/\log n)$, or $O(n^2)$ processors, - depending on whether 2, 1, or 0 of the points $\{s,t\}$ lie - on the boundary of $P$." -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "M. J. Atallah and D. Z. Chen" +, title = "Parallel rectilinear shortest paths with rectangular obstacles" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 2 +, year = 1991 +, pages = "79--113" +, comments = "They preprocess a set of $n$ disjoint axis-aligned rectangles (obstacles), + within a rectilinearly convex polygon $P$, + for 2-point shortest path queries (rectilinear shortest paths). + The query time is $O(\log n)$, on one processor. + The sequential preprocessing time is $O(n^2)$ (no space + bounds seem to be stated explicitly). + Their parallel (CREW) algorithms take time $O(\log^2 n)$, + on either $O(n^2/\log^2 n)$, $O(n^2/\log n)$, or $O(n^2)$ processors, + depending on whether 2, 1, or 0 of the points $\{s,t\}$ lie + on the boundary of $P$." +, update = "98.11 bibrelex, 98.03 mitchell" } @inproceedings{ack-palic-97 -, author = "Mikhail J. Atallah and Danny Z. Chen and Kevin S. Klenk" -, title = "Parallel Algorithms for Longest Increasing Chains in the Plane and Related Problems" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "59--64" -, update = "97.11 jones" +, author = "Mikhail J. Atallah and Danny Z. Chen and Kevin S. Klenk" +, title = "Parallel Algorithms for Longest Increasing Chains in the Plane and Related Problems" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "59--64" +, update = "97.11 jones" } @article{acw-opavs-91 -, author = "M. J. Atallah and D. Z. Chen and H. Wagener" -, title = "Optimal parallel algorithm for visibility of a simple polygon from a point" -, journal = "J. ACM" -, volume = 38 -, year = 1991 -, pages = "516--553" -, succeeds = "ac-opavs-89" +, author = "M. J. Atallah and D. Z. Chen and H. Wagener" +, title = "Optimal parallel algorithm for visibility of a simple polygon from a point" +, journal = "J. ACM" +, volume = 38 +, year = 1991 +, pages = "516--553" +, succeeds = "ac-opavs-89" } @inproceedings{acg-cdctd-87 -, author = "M. J. Atallah and R. Cole and M. T. Goodrich" -, title = "Cascading divide-and-conquer: {A} technique for designing parallel algorithms" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "151--160" -, keywords = "cascading divide-and-conquer algorithm, parallel algorithms, concurrent-read- exclusive-write, parallel random-access machine" -, precedes = "acg-cdctd-89" -, annote = "Triangulation of a polygon using $O(\log n)$ time and - $O(n)$ processors." -, abstract = "Techniques are presented for parallel - divide-and-conquer, resulting in improved parallel - algorithms for a number of problems, including - intersection detection, trapezoidal decomposition - (hence, polygon triangulation), and planar point - location (hence, Voronoi diagram construction). - Efficient parallel algorithms are also given for - fractional cascading, three-dimensional maxima, two-set - dominance counting, and visibility from a point. All of - the algorithms run in O(log n) time with either a - linear or sublinear number of processors in the - concurrent-read- exclusive-write parallel random-access - machine model. 20 refs." +, author = "M. J. Atallah and R. Cole and M. T. Goodrich" +, title = "Cascading divide-and-conquer: {A} technique for designing parallel algorithms" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "151--160" +, keywords = "cascading divide-and-conquer algorithm, parallel algorithms, concurrent-read- exclusive-write, parallel random-access machine" +, precedes = "acg-cdctd-89" +, annote = "Triangulation of a polygon using $O(\log n)$ time and + $O(n)$ processors." +, abstract = "Techniques are presented for parallel + divide-and-conquer, resulting in improved parallel + algorithms for a number of problems, including + intersection detection, trapezoidal decomposition + (hence, polygon triangulation), and planar point + location (hence, Voronoi diagram construction). + Efficient parallel algorithms are also given for + fractional cascading, three-dimensional maxima, two-set + dominance counting, and visibility from a point. All of + the algorithms run in O(log n) time with either a + linear or sublinear number of processors in the + concurrent-read- exclusive-write parallel random-access + machine model. 20 refs." } @article{acg-cdctd-89 -, author = "M. J. Atallah and R. Cole and M. T. Goodrich" -, title = "Cascading divide-and-conquer: {A} technique for designing parallel algorithms" -, journal = "SIAM J. Comput." -, volume = 18 -, number = 3 -, year = 1989 -, pages = "499--532" -, keywords = "parallel computation, decomposition, range search, point location, visibility, domination, points, lines, divide-and-conquer, two-dimensional" -, succeeds = "acg-cdctd-87, ag-epsp-86i, ag-epsp-86t" -, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 milone+mitchell" +, author = "M. J. Atallah and R. Cole and M. T. Goodrich" +, title = "Cascading divide-and-conquer: {A} technique for designing parallel algorithms" +, journal = "SIAM J. Comput." +, volume = 18 +, number = 3 +, year = 1989 +, pages = "499--532" +, keywords = "parallel computation, decomposition, range search, point location, visibility, domination, points, lines, divide-and-conquer, two-dimensional" +, succeeds = "acg-cdctd-87, ag-epsp-86i, ag-epsp-86t" +, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 milone+mitchell" } @techreport{acg-dctdp-87 -, author = "M. J. Atallah and R. Cole and M. T. Goodrich" -, title = "Divide-and-Conquer: {A} Technique for Designing Parallel Algorithms" -, type = "Technical {Report}" -, number = 665 -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1987 -, update = "98.03 bibrelex" +, author = "M. J. Atallah and R. Cole and M. T. Goodrich" +, title = "Divide-and-Conquer: {A} Technique for Designing Parallel Algorithms" +, type = "Technical {Report}" +, number = 665 +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{admrt-mtids-91 -, author = "M. J. Atallah and F. Dehne and R. Miller and A. Rau-Chaplin and J.-J. Tsay" -, title = "Multisearch techniques for implementing data structures on a mesh-connected computer" -, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." -, nickname = "SPAA" -, year = 1991 -, pages = "204--214" -, update = "94.01 dehne" +, author = "M. J. Atallah and F. Dehne and R. Miller and A. Rau-Chaplin and J.-J. Tsay" +, title = "Multisearch techniques for implementing data structures on a mesh-connected computer" +, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." +, nickname = "SPAA" +, year = 1991 +, pages = "204--214" +, update = "94.01 dehne" } @article{admrt-mtids-94 -, author = "M. J. Atallah and F. Dehne and R. Miller and A. Rau-Chaplin and J.-J. Tsay" -, title = "Multisearch techniques for implementing data structures on a mesh-connected computer" -, journal = "J. Parallel Distrib. Comput." -, volume = "??" -, year = "1993/94" -, comments = "to appear" -, update = "94.01 dehne" +, author = "M. J. Atallah and F. Dehne and R. Miller and A. Rau-Chaplin and J.-J. Tsay" +, title = "Multisearch techniques for implementing data structures on a mesh-connected computer" +, journal = "J. Parallel Distrib. Comput." +, volume = "??" +, year = "1993/94" +, comments = "to appear" +, update = "94.01 dehne" } @techreport{af-mph-93 -, author = "M. J. Atallah and A. Fabri" -, title = "On the Multisearching Problem for Hypercubes" -, type = "Research {Report}" -, number = 1990 -, institution = "INRIA" -, address = "BP93, 06902 Sophia-Antipolis, France" -, month = jun -, year = 1993 -, url = "https://hal.inria.fr/inria-00074682" -, keywords = "parallel algorithms, hypercube, multisearching, point location" -, update = "95.09 devillers, 95.01 devillers, 93.09 devillers+milone+mitchell" +, author = "M. J. Atallah and A. Fabri" +, title = "On the Multisearching Problem for Hypercubes" +, type = "Research {Report}" +, number = 1990 +, institution = "INRIA" +, address = "BP93, 06902 Sophia-Antipolis, France" +, month = jun +, year = 1993 +, url = "https://inria.hal.science/inria-00074682" +, keywords = "parallel algorithms, hypercube, multisearching, point location" +, update = "95.09 devillers, 95.01 devillers, 93.09 devillers+milone+mitchell" } @article{af-mph-96 -, author = "M. J. Atallah and A. Fabri" -, title = "On the multisearching problem for hypercubes" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1996 -, pages = "293--302" -, update = "96.05 smid" +, author = "M. J. Atallah and A. Fabri" +, title = "On the multisearching problem for hypercubes" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1996 +, pages = "293--302" +, update = "96.05 smid" } @article{af-nfmer-86 -, author = "M. J. Atallah and G. N. Frederickson" -, title = "A note on finding a maximum empty rectangle" -, journal = "Discrete Appl. Math." -, volume = 13 -, number = 1 -, year = 1986 -, pages = "87--91" -, keywords = "orthogon, empty rectangle, extremal figures" -, update = "97.03 smid, 95.05 korneenko" +, author = "M. J. Atallah and G. N. Frederickson" +, title = "A note on finding a maximum empty rectangle" +, journal = "Discrete Appl. Math." +, volume = 13 +, number = 1 +, year = 1986 +, pages = "87--91" +, keywords = "orthogon, empty rectangle, extremal figures" +, update = "97.03 smid, 95.05 korneenko" } @article{afk-seusp-88 -, author = "M. J. Atallah and G. N. Frederickson and S. R. Kosaraju" -, title = "Sorting with efficient use of special-purpose sorters" -, journal = "ILP" -, volume = "??" -, year = 1988 -, pages = "13--15" -, update = "98.03 bibrelex" +, author = "M. J. Atallah and G. N. Frederickson and S. R. Kosaraju" +, title = "Sorting with efficient use of special-purpose sorters" +, journal = "ILP" +, volume = "??" +, year = 1988 +, pages = "13--15" +, update = "98.03 bibrelex" } @incollection{ag-dpcg-93 -, author = "M. J. Atallah and M. T. Goodrich" -, title = "Deterministic Parallel Computational Geometry" -, editor = "J. H. Reif" -, booktitle = "Synthesis of Parallel Algorithms" -, publisher = "Morgan Kaufmann Publishers" -, year = 1993 -, pages = "497--536" -, update = "96.09 orourke" +, author = "M. J. Atallah and M. T. Goodrich" +, title = "Deterministic Parallel Computational Geometry" +, editor = "J. H. Reif" +, booktitle = "Synthesis of Parallel Algorithms" +, publisher = "Morgan Kaufmann Publishers" +, year = 1993 +, pages = "497--536" +, update = "96.09 orourke" } @inproceedings{ag-epsgp-85 -, author = "M. J. Atallah and M. T. Goodrich" -, title = "Efficient Parallel Solutions to Geometric Problems" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1985 -, pages = "411--417" -, update = "93.09 held" +, author = "M. J. Atallah and M. T. Goodrich" +, title = "Efficient Parallel Solutions to Geometric Problems" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1985 +, pages = "411--417" +, update = "93.09 held" } @article{ag-epssg-86 -, author = "M. J. Atallah and M. T. Goodrich" -, title = "Efficient parallel solutions to some geometric problems" -, journal = "J. Parallel Distrib. Comput." -, volume = 3 -, year = 1986 -, pages = "492--507" -, keywords = "parallel computation, convex hull, proximity, divide-and-conquer, points, two-dimensional" +, author = "M. J. Atallah and M. T. Goodrich" +, title = "Efficient parallel solutions to some geometric problems" +, journal = "J. Parallel Distrib. Comput." +, volume = 3 +, year = 1986 +, pages = "492--507" +, keywords = "parallel computation, convex hull, proximity, divide-and-conquer, points, two-dimensional" } @techreport{ag-epsp-86t -, author = "M. J. Atallah and M. T. Goodrich" -, title = "Efficient plane sweeping in parallel" -, number = "CSD-TR-563" -, institution = "Prude University, Computer Science" -, year = 1986 -, update = "98.03 bibrelex" +, author = "M. J. Atallah and M. T. Goodrich" +, title = "Efficient plane sweeping in parallel" +, number = "CSD-TR-563" +, institution = "Prude University, Computer Science" +, year = 1986 +, update = "98.03 bibrelex" } @inproceedings{ag-epsp-86i -, author = "M. J. Atallah and M. T. Goodrich" -, title = "Efficient plane sweeping in parallel" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "216--225" -, keywords = "parallel computation, decomposition, range search, point location, triangulation, visibility, domination, points, lines, two-dimensional" -, precedes = "acg-cdctd-89" -, cites = "acgoy-pcg-85, ag-epsgp-85, ag-epsp-86t, aks-scps-83, bh-rmspm-85, ci-tpdc-83, c-iies-84, cg-fc1ds-86, c-pagp-80, eo-esrp-82, ea-lacvp-81, g-opaan-85, k-osps-83, krs-ppp-85, klp-fmsv-75, lp-cgs-84, lw-dsdrq-82, ol-mcp-81, sh-gip-76, v-pcp-75, ZZZ" -, update = "98.03 bibrelex, 93.09 milone+mitchell" +, author = "M. J. Atallah and M. T. Goodrich" +, title = "Efficient plane sweeping in parallel" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "216--225" +, keywords = "parallel computation, decomposition, range search, point location, triangulation, visibility, domination, points, lines, two-dimensional" +, precedes = "acg-cdctd-89" +, cites = "acgoy-pcg-85, ag-epsgp-85, ag-epsp-86t, aks-scps-83, bh-rmspm-85, ci-tpdc-83, c-iies-84, cg-fc1ds-86, c-pagp-80, eo-esrp-82, ea-lacvp-81, g-opaan-85, k-osps-83, krs-ppp-85, klp-fmsv-75, lp-cgs-84, lw-dsdrq-82, ol-mcp-81, sh-gip-76, v-pcp-75, ZZZ" +, update = "98.03 bibrelex, 93.09 milone+mitchell" } @inproceedings{ag-pasft-86 -, author = "M. J. Atallah and M. T. Goodrich" -, title = "Parallel algorithms for some functions of two convex polygons" -, booktitle = "Proc. 24th Allerton Conf. Commun. Control Comput." -, year = 1986 -, pages = "758--767" -, keywords = "parallel computation, convex hull, distance, polygons, convex, two-dimensional" -, precedes = "ag-pasft-88" +, author = "M. J. Atallah and M. T. Goodrich" +, title = "Parallel algorithms for some functions of two convex polygons" +, booktitle = "Proc. 24th Allerton Conf. Commun. Control Comput." +, year = 1986 +, pages = "758--767" +, keywords = "parallel computation, convex hull, distance, polygons, convex, two-dimensional" +, precedes = "ag-pasft-88" } @article{ag-pasft-88 -, author = "M. J. Atallah and M. T. Goodrich" -, title = "Parallel algorithms for some functions of two convex polygons" -, journal = "Algorithmica" -, volume = 3 -, year = 1988 -, pages = "535--548" -, keywords = "parallel computation, convex hull, distance, polygons, convex, two-dimensional" -, succeeds = "ag-pasft-86" +, author = "M. J. Atallah and M. T. Goodrich" +, title = "Parallel algorithms for some functions of two convex polygons" +, journal = "Algorithmica" +, volume = 3 +, year = 1988 +, pages = "535--548" +, keywords = "parallel computation, convex hull, distance, polygons, convex, two-dimensional" +, succeeds = "ag-pasft-86" } @inproceedings{agr-bfttd-94 -, author = "M. J. Atallah and M. T. Goodrich and K. Ramaiyer" -, title = "Biased Finger Trees and Three-Dimensional Layers of Maxima" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "150--159" -, cites = "ap-nsmma-88, ahu-dsa-83, bjm-dplgs-92i, bst-bst-85, bm-anrow-80, c-clps-85, ct-dtmpp-91, ct-dacg-92, cpt-uadpl-93, cj-nrdpl-90, ct-detta-91, c-sssl-86, clr-ia-90, e-acg-87, egs-oplms-86, eittwy-mmsfd-92, gt-dtdpl-91, gt-drssp-93, gmpr-nrll-77, gs-dfbt-78, hm-ndsrs-82, k-osps-83, k-ss-73, k-lssl-81, k-oricm-94, klp-fmsv-75, lp-lppsi-77, lp-cgs-84, m-ss-84, m-mdscg-84, mn-dfc-90, nr-bstbb-73, o-ddds-83, p-nappl-81, ps-cgi-85, pt-fdplm-89, pt-dpplo-90, st-pplup-86, st-dsdt-83, t-dsna-83, t-acc-85, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "M. J. Atallah and M. T. Goodrich and K. Ramaiyer" +, title = "Biased Finger Trees and Three-Dimensional Layers of Maxima" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "150--159" +, cites = "ap-nsmma-88, ahu-dsa-83, bjm-dplgs-92i, bst-bst-85, bm-anrow-80, c-clps-85, ct-dtmpp-91, ct-dacg-92, cpt-uadpl-93, cj-nrdpl-90, ct-detta-91, c-sssl-86, clr-ia-90, e-acg-87, egs-oplms-86, eittwy-mmsfd-92, gt-dtdpl-91, gt-drssp-93, gmpr-nrll-77, gs-dfbt-78, hm-ndsrs-82, k-osps-83, k-ss-73, k-lssl-81, k-oricm-94, klp-fmsv-75, lp-lppsi-77, lp-cgs-84, m-ss-84, m-mdscg-84, mn-dfc-90, nr-bstbb-73, o-ddds-83, p-nappl-81, ps-cgi-85, pt-fdplm-89, pt-dpplo-90, st-pplup-86, st-dsdt-83, t-dsna-83, t-acc-85, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @article{ah-aaaic-86 -, author = "M. J. Atallah and S. Hambrusch" -, title = "An assignment algorithm with applications to integrated circuit layout" -, journal = "Discrete Appl. Math." -, volume = 13 -, number = 1 -, year = 1986 -, pages = "9--22" -, keywords = "geometric graphs" -, update = "95.05 korneenko" +, author = "M. J. Atallah and S. Hambrusch" +, title = "An assignment algorithm with applications to integrated circuit layout" +, journal = "Discrete Appl. Math." +, volume = 13 +, number = 1 +, year = 1986 +, pages = "9--22" +, keywords = "geometric graphs" +, update = "95.05 korneenko" } @article{ah-bmmd-87 -, author = "M. J. Atallah and S. E. Hambrusch" -, title = "On bipartite matching of minimum density" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "480--502" -, keywords = "geometric graphs" -, update = "95.05 korneenko" +, author = "M. J. Atallah and S. E. Hambrusch" +, title = "On bipartite matching of minimum density" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "480--502" +, keywords = "geometric graphs" +, update = "95.05 korneenko" } @article{ak-gdmv-85 -, author = "M. J. Atallah and S. R. Kosaraju" -, title = "A generalized dictionary machine for {VLSI}" -, journal = "IEEE Trans. Comput." -, volume = "C-34" -, year = 1985 -, pages = "151--155" +, author = "M. J. Atallah and S. R. Kosaraju" +, title = "A generalized dictionary machine for {VLSI}" +, journal = "IEEE Trans. Comput." +, volume = "C-34" +, year = 1985 +, pages = "151--155" } @techreport{ak-eama-87 -, author = "M. J. Atallah and S. R. Kosaraju" -, title = "An efficient algorithm for maxdominance, with applications" -, type = "Report" -, number = "CSD-TR-641" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1987 -, precedes = "ak-eama-89" -, update = "95.05 korneenko" +, author = "M. J. Atallah and S. R. Kosaraju" +, title = "An efficient algorithm for maxdominance, with applications" +, type = "Report" +, number = "CSD-TR-641" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1987 +, precedes = "ak-eama-89" +, update = "95.05 korneenko" } @article{ak-eama-89 -, author = "M. J. Atallah and S. R. Kosaraju" -, title = "An efficient algorithm for maxdominance, with applications" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "221--236" -, keywords = "dominance maxdominance" -, succeeds = "ak-eama-87" -, update = "95.05 korneenko" +, author = "M. J. Atallah and S. R. Kosaraju" +, title = "An efficient algorithm for maxdominance, with applications" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "221--236" +, keywords = "dominance maxdominance" +, succeeds = "ak-eama-87" +, update = "95.05 korneenko" } @inproceedings{ak-eparm-91 -, author = "M. J. Atallah and S. R. Kosaraju" -, title = "An efficient parallel algorithm for the row minima of a totally monotone matrix" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, site = "San Francisco, California" -, year = 1991 -, pages = "394--403" -, note = "accepted for publication in J. of Algorithms" -, update = "98.11 bibrelex" -, annote = "$O(\log n)$ time, $O(n)$ processors, EREW-PRAM model" +, author = "M. J. Atallah and S. R. Kosaraju" +, title = "An efficient parallel algorithm for the row minima of a totally monotone matrix" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, site = "San Francisco, California" +, year = 1991 +, pages = "394--403" +, note = "accepted for publication in J. of Algorithms" +, update = "98.11 bibrelex" +, annote = "$O(\log n)$ time, $O(n)$ processors, EREW-PRAM model" } @inproceedings{ak-essmp-87 -, author = "M. J. Atallah and S. R. Kosaraju" -, title = "Efficient solutions to some maxdominance problems" -, booktitle = "Proc. 1st Ann. Conf. Inform. Sci. Systems" -, year = 1987 -, pages = "600--610" +, author = "M. J. Atallah and S. R. Kosaraju" +, title = "Efficient solutions to some maxdominance problems" +, booktitle = "Proc. 1st Ann. Conf. Inform. Sci. Systems" +, year = 1987 +, pages = "600--610" } @article{ak-esstp-88 -, author = "M. J. Atallah and S. R. Kosaraju" -, title = "Efficient solutions to some transportation problems with application to minimizing robot arm travel" -, journal = "SIAM J. Comput." -, volume = 17 -, number = 5 -, year = 1988 -, pages = "849--869" -, keywords = "motion planning" -, succeeds = "ak-mrat-??" -, update = "95.05 korneenko" +, author = "M. J. Atallah and S. R. Kosaraju" +, title = "Efficient solutions to some transportation problems with application to minimizing robot arm travel" +, journal = "SIAM J. Comput." +, volume = 17 +, number = 5 +, year = 1988 +, pages = "849--869" +, keywords = "motion planning" +, succeeds = "ak-mrat-??" +, update = "95.05 korneenko" } @techreport{ak-mrat-?? -, author = "M. J. Atallah and S. R. Kosaraju" -, title = "Minimizing robot arm travel" -, type = "Technical {Report}" -, number = "??" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = "??" -, precedes = "ak-esstp-88" -, update = "95.05 korneenko" +, author = "M. J. Atallah and S. R. Kosaraju" +, title = "Minimizing robot arm travel" +, type = "Technical {Report}" +, number = "??" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = "??" +, precedes = "ak-esstp-88" +, update = "95.05 korneenko" } @misc{am-fddse-88 -, author = "M. J. Atallah and J. Manning" -, title = "Fast Detection and Display of Symmetry in Embedded Planar Graphs" -, institution = "Department of Computer Science, Purdue University" -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. J. Atallah and J. Manning" +, title = "Fast Detection and Display of Symmetry in Embedded Planar Graphs" +, institution = "Department of Computer Science, Purdue University" +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{arl-ltacs-91 -, author = "M. J. Atallah and C. C. Ribeiro and S. Lifschitz" -, title = "A linear time algorithm for the computation of some distance functions between convex polygons" -, journal = "Rech. Oper." -, volume = 25 -, number = 4 -, year = 1991 -, pages = "413--424" -, keywords = "convex polygon, proximity, Hausdorf distance" -, update = "95.05 korneenko" +, author = "M. J. Atallah and C. C. Ribeiro and S. Lifschitz" +, title = "A linear time algorithm for the computation of some distance functions between convex polygons" +, journal = "Rech. Oper." +, volume = 25 +, number = 4 +, year = 1991 +, pages = "413--424" +, keywords = "convex polygon, proximity, Hausdorf distance" +, update = "95.05 korneenko" } @article{arl-csdfb-91 -, author = "M. J. Atallah and C. C. Ribeiro and S. Lifschitz" -, title = "Computing some distance functions between polygons" -, journal = "Pattern Recogn." -, volume = 24 -, number = 8 -, year = 1991 -, pages = "775--782" -, keywords = "parallel computation, polygon, proximity, Hausdorf distance" -, update = "95.05 korneenko" +, author = "M. J. Atallah and C. C. Ribeiro and S. Lifschitz" +, title = "Computing some distance functions between polygons" +, journal = "Pattern Recogn." +, volume = 24 +, number = 8 +, year = 1991 +, pages = "775--782" +, keywords = "parallel computation, polygon, proximity, Hausdorf distance" +, update = "95.05 korneenko" } @inproceedings{at-pdgp-89 -, author = "M. J. Atallah and J.-J. Tsay" -, title = "On the parallel-decomposability of geometric problems" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "104--113" -, cites = "av-iocsr-88, afk-seusp-88, bg-sos-87, b-mdc-80, c-cgsc-84, fj-csrxm-82, g-eptcg-87, g-odccm-84, jl-pgamc-90, ka-osbmc-88, lcw-occss-81, lp-cgs-84, mc-ivs-80, ms-mcacg-86, m-snuls-87, ps-cgi-85, scl-saeap-87, ZZZ" -, update = "98.03 bibrelex" +, author = "M. J. Atallah and J.-J. Tsay" +, title = "On the parallel-decomposability of geometric problems" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "104--113" +, cites = "av-iocsr-88, afk-seusp-88, bg-sos-87, b-mdc-80, c-cgsc-84, fj-csrxm-82, g-eptcg-87, g-odccm-84, jl-pgamc-90, ka-osbmc-88, lcw-occss-81, lp-cgs-84, mc-ivs-80, ms-mcacg-86, m-snuls-87, ps-cgi-85, scl-saeap-87, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{a-vgsls-96 -, author = "Y. Atassi" -, title = "Visibility graph of a set of line sements: {A} dynamic sequential algorithm and its parallel version" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "246--251" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "Y. Atassi" +, title = "Visibility graph of a set of line sements: {A} dynamic sequential algorithm and its parallel version" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "246--251" +, update = "97.03 agarwal, 96.09 mitchell" } @techreport{am-otibe-85 -, author = "A. Athavale and D. M. Mount" -, title = "Order type and isomyphism based on enclosing circles" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Maryland College Park" -, address = "College Park, MD" -, year = 1985 +, author = "A. Athavale and D. M. Mount" +, title = "Order type and isomyphism based on enclosing circles" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Maryland College Park" +, address = "College Park, MD" +, year = 1985 } @article{awg-psg-78 -, author = "P. Atherton and K. Weiler and D. P. Greenberg" -, title = "Polygon shadow generation" -, journal = "Comput. Graph." -, volume = 12 -, number = 3 -, year = 1978 -, pages = "275--281" -, note = "Proc. SIGGRAPH '78" +, author = "P. Atherton and K. Weiler and D. P. Greenberg" +, title = "Polygon shadow generation" +, journal = "Comput. Graph." +, volume = 12 +, number = 3 +, year = 1978 +, pages = "275--281" +, note = "Proc. SIGGRAPH '78" } @book{an-bp-72 -, author = "K. B. Athreya and P. E. Ney" -, title = "Branching processes" -, publisher = "Springer-Verlag" -, year = 1972 -, update = "97.11 bibrelex" +, author = "K. B. Athreya and P. E. Ney" +, title = "Branching processes" +, publisher = "Springer-Verlag" +, year = 1972 +, update = "97.11 bibrelex" } @article{agw-crhtn-85 -, author = "H. H. Atkinson and I. Gargantini and T. R. S. Walsch" -, title = "Counting regions, holes and their nesting level in time proportional to the border" -, journal = "Comput. Vision Graph. Image Process." -, volume = 29 -, year = 1985 -, pages = "196--215" -, update = "95.05 korneenko" +, author = "H. H. Atkinson and I. Gargantini and T. R. S. Walsch" +, title = "Counting regions, holes and their nesting level in time proportional to the border" +, journal = "Comput. Vision Graph. Image Process." +, volume = 29 +, year = 1985 +, pages = "196--215" +, update = "95.05 korneenko" } @article{agw-fqo-86 -, author = "H. H. Atkinson and I. Gargantini and T. R. S. Walsh" -, title = "Filling by quadrants or octants" -, journal = "Comput. Graph. Image Process." -, volume = 33 -, year = 1986 -, pages = "138--155" -, update = "98.07 bibrelex" +, author = "H. H. Atkinson and I. Gargantini and T. R. S. Walsh" +, title = "Filling by quadrants or octants" +, journal = "Comput. Graph. Image Process." +, volume = 33 +, year = 1986 +, pages = "138--155" +, update = "98.07 bibrelex" } @techreport{a-oagc-83 -, author = "M. D. Atkinson" -, title = "An Optimal Algorithm for Geometric Congruence" -, type = "Technical {Report}" -, number = "SCS-TR-31" -, institution = "Carleton Univ." -, address = "Ottawa, ON" -, year = 1983 -, update = "98.03 bibrelex" +, author = "M. D. Atkinson" +, title = "An Optimal Algorithm for Geometric Congruence" +, type = "Technical {Report}" +, number = "SCS-TR-31" +, institution = "Carleton Univ." +, address = "Ottawa, ON" +, year = 1983 +, update = "98.03 bibrelex" } @article{a-oagc-87 -, author = "M. D. Atkinson" -, title = "An optimal algorithm for geometrical congruence" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "159--172" +, author = "M. D. Atkinson" +, title = "An optimal algorithm for geometrical congruence" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "159--172" } @article{as-gbtr-92 -, author = "M. D. Atkinson and J.-R. Sack" -, title = "Generating Binary Trees at Random" -, journal = "Inform. Process. Lett." -, volume = 41 -, year = 1992 -, pages = "21--23" -, update = "97.11 sack" +, author = "M. D. Atkinson and J.-R. Sack" +, title = "Generating Binary Trees at Random" +, journal = "Inform. Process. Lett." +, volume = 41 +, year = 1992 +, pages = "21--23" +, update = "97.11 sack" } @article{as-ugbtp-94 -, author = "M. D. Atkinson and J.-R. Sack" -, title = "Uniform Generation of Binary Trees in Parallel" -, journal = "J. Parallel Distrib. Comput." -, volume = 23 -, year = 1994 -, pages = "101--103" -, keywords = "combinatorial objects; CREW-PRAM; generator; parallel algorithms; random-access storage; trees; unbiased random; uniform generation of binary trees" -, update = "98.03 bibrelex, 96.01 held" +, author = "M. D. Atkinson and J.-R. Sack" +, title = "Uniform Generation of Binary Trees in Parallel" +, journal = "J. Parallel Distrib. Comput." +, volume = 23 +, year = 1994 +, pages = "101--103" +, keywords = "combinatorial objects; CREW-PRAM; generator; parallel algorithms; random-access storage; trees; unbiased random; uniform generation of binary trees" +, update = "98.03 bibrelex, 96.01 held" } @article{as-ugfrh-94 -, author = "M. D. Atkinson and J.-R. Sack" -, title = "Uniform Generation of Forests of Restricted Height" -, journal = "Inform. Process. Lett." -, volume = 50 -, year = 1994 -, pages = "323--327" -, update = "96.01 held" +, author = "M. D. Atkinson and J.-R. Sack" +, title = "Uniform Generation of Forests of Restricted Height" +, journal = "Inform. Process. Lett." +, volume = 50 +, year = 1994 +, pages = "323--327" +, update = "96.01 held" } @techreport{asss-moacp-85 -, author = "M. D. Atkinson and J.-R. Sack and N. Santoro and Th. Strothotte" -, title = "Minmaxheaps, orderstatisticstrees and their application to the coursmarks problem" -, institution = "School of Computer Science, Carleton University" -, year = 1985 -, update = "97.11 bibrelex" +, author = "M. D. Atkinson and J.-R. Sack and N. Santoro and Th. Strothotte" +, title = "Minmaxheaps, orderstatisticstrees and their application to the coursmarks problem" +, institution = "School of Computer Science, Carleton University" +, year = 1985 +, update = "97.11 bibrelex" } @inproceedings{a-rrsru-97 -, author = "D. Attali" -, title = "$R$-regular shape reconstruction from unorganized points" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "248--253" -, cites = "hddms-srup-92, o-pma3d-81, b-gstds-84, f-sdpvd-83, obw-cdnh-87, crg-uasgl-92, eks-sspp-83, em-tdas-94, r-mrpdt-90, s-iamm-82, ba-cscvd-92, b-cccda-94, a-segdv-95, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "D. Attali" +, title = "$R$-regular shape reconstruction from unorganized points" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "248--253" +, cites = "hddms-srup-92, o-pma3d-81, b-gstds-84, f-sdpvd-83, obw-cdnh-87, crg-uasgl-92, eks-sspp-83, em-tdas-94, r-mrpdt-90, s-iamm-82, ba-cscvd-92, b-cccda-94, a-segdv-95, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{a-rrsru-98 -, author = "D. Attali" -, title = "$r$-regular shape reconstruction from unorganized points" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "239--247" -, succeeds = "a-rrsru-97" -, update = "98.11 devillers" +, author = "D. Attali" +, title = "$r$-regular shape reconstruction from unorganized points" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "239--247" +, succeeds = "a-rrsru-97" +, update = "98.11 devillers" } @phdthesis{a-segdv-95 -, author = "D. Attali" -, title = "Squelettes et graphes de {Vorono{\"{\i}}} $2$-d et $3$-d" -, school = "Univ. Joseph Fourier" -, address = "Grenoble" -, month = oct -, year = 1995 -, keywords = "doctoral thesis" -, update = "98.11 devillers, 98.07 bibrelex" +, author = "D. Attali" +, title = "Squelettes et graphes de {Vorono{\"{\i}}} $2$-d et $3$-d" +, school = "Univ. Joseph Fourier" +, address = "Grenoble" +, month = oct +, year = 1995 +, keywords = "doctoral thesis" +, update = "98.11 devillers, 98.07 bibrelex" } @inproceedings{ab-lbcdt-02 -, author = "Dominique Attali and Jean-Daniel Boissonnat" -, title = "Complexity of the {Delaunay} Triangulation of Points on Polyhedral Surfaces" -, booktitle = "Proc. 7th ACM Symposium on Solid Modeling and Applications" -, year = 2002 -, pages = "" -, update = "02.03 devillers" +, author = "Dominique Attali and Jean-Daniel Boissonnat" +, title = "Complexity of the {Delaunay} Triangulation of Points on Polyhedral Surfaces" +, booktitle = "Proc. 7th ACM Symposium on Solid Modeling and Applications" +, year = 2002 +, pages = "" +, update = "02.03 devillers" } @article{al-dciss-01 -, author = "D. Attali and J.-O. Lachaud" -, title = "Delaunay conforming iso-surface, skeleton extraction and noise removal" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "175--189" -, update = "01.11 smid" +, author = "D. Attali and J.-O. Lachaud" +, title = "Delaunay conforming iso-surface, skeleton extraction and noise removal" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "175--189" +, update = "01.11 smid" } @inproceedings{abwwy-sptt-96 -, author = "J. W. Atwood and M. M. Burnett and R. A. Walpole and E. M. Wilcox and S. Yang" -, title = "Steering Programs via Time Travel" -, booktitle = "Proc. IEEE Symp. on Visual Languages" -, year = 1996 -, update = "97.03 tamassia" +, author = "J. W. Atwood and M. M. Burnett and R. A. Walpole and E. M. Wilcox and S. Yang" +, title = "Steering Programs via Time Travel" +, booktitle = "Proc. IEEE Symp. on Visual Languages" +, year = 1996 +, update = "97.03 tamassia" } @inproceedings{a-ollrn-93 -, author = "Peter Auer" -, title = "On-line Learning of Rectangles in Noisy Environments" -, booktitle = "Proc. 6th ACM Conf. Comput. Learning Theory" -, nickname = "COLT '93" -, month = jul -, year = 1993 -, pages = "??" -, update = "98.07 bibrelex, 93.09 milone+mitchell" +, author = "Peter Auer" +, title = "On-line Learning of Rectangles in Noisy Environments" +, booktitle = "Proc. 6th ACM Conf. Comput. Learning Theory" +, nickname = "COLT '93" +, month = jul +, year = 1993 +, pages = "??" +, update = "98.07 bibrelex, 93.09 milone+mitchell" } @inproceedings{ah-hgrp-96 -, author = "T. Auer and Martin Held" -, title = "Heuristics for the Generation of Random Polygons" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "38--43" -, url = "http://www.cosy.sbg.ac.at/~held/papers/cccg96.ps.gz" -, update = "98.11 bibrelex, 98.03 mitchell, 97.03 agarwal, 96.09 held+mitchell" +, author = "T. Auer and Martin Held" +, title = "Heuristics for the Generation of Random Polygons" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "38--43" +, url = "http://www.cosy.sbg.ac.at/~held/papers/cccg96.ps.gz" +, update = "98.11 bibrelex, 98.03 mitchell, 97.03 agarwal, 96.09 held+mitchell" } @article{as-srrgd-90 -, author = "S. Auerbach and H. Schaeben" -, title = "Surface Representations Reproducing Given Digitized Contour Lines" -, journal = "Mathematical Geology" -, volume = 22 -, number = 6 -, year = 1990 -, pages = "723--742" -, annote = "Computes CDT of contour lines, with extra constraint - that no triangle can have three vertices on same - contour. (Extra constraint is done manually!)" +, author = "S. Auerbach and H. Schaeben" +, title = "Surface Representations Reproducing Given Digitized Contour Lines" +, journal = "Mathematical Geology" +, volume = 22 +, number = 6 +, year = 1990 +, pages = "723--742" +, annote = "Computes CDT of contour lines, with extra constraint + that no triangle can have three vertices on same + contour. (Extra constraint is done manually!)" } @article{ap-cvms-85 -, author = "J. M. Augenbaum and C. S. Peskin" -, title = "On the Construction of the {Voronoi} Mesh on a Sphere" -, journal = "J. Comput. Phys." -, volume = 59 -, year = 1985 -, pages = "177--192" -, annote = "Joe iterative algorithm. Use for problems where mesh - changes with time (but presumably not much)." +, author = "J. M. Augenbaum and C. S. Peskin" +, title = "On the Construction of the {Voronoi} Mesh on a Sphere" +, journal = "J. Comput. Phys." +, volume = 59 +, year = 1985 +, pages = "177--192" +, annote = "Joe iterative algorithm. Use for problems where mesh + changes with time (but presumably not much)." } @inproceedings{app-anaop-96 -, author = "V. Auletta and D. Parente and P. Persiano" -, title = "A new approach to optimal planning of robot motion on a tree with obstacles" -, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "529--545" -, update = "97.03 smid" +, author = "V. Auletta and D. Parente and P. Persiano" +, title = "A new approach to optimal planning of robot motion on a tree with obstacles" +, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "529--545" +, update = "97.03 smid" } @book{as-cg-93 -, author = "G{\"u}nter Aumann and Klaus Spitzm{\"u}ller" -, title = "Computerorientierte Geometrie" -, publisher = "BI-Wissenschaftsverlag" -, address = "Mannheim" -, year = 1993 -, update = "97.03 icking" +, author = "G{\"u}nter Aumann and Klaus Spitzm{\"u}ller" +, title = "Computerorientierte Geometrie" +, publisher = "BI-Wissenschaftsverlag" +, address = "Mannheim" +, year = 1993 +, update = "97.03 icking" } @inproceedings{akpr-heael-93 -, author = "Y. Aumann and Z. M. Kedem and K. V. Palem and M. O. Rabin" -, title = "Highly efficient asynchronous execution of large-grained parallel programs" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1993 -, pages = "" -, update = "96.09 orourke" +, author = "Y. Aumann and Z. M. Kedem and K. V. Palem and M. O. Rabin" +, title = "Highly efficient asynchronous execution of large-grained parallel programs" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1993 +, pages = "" +, update = "96.09 orourke" } @techreport{a-acps-88 -, author = "L. J. Aupperle" -, title = "An algorithm for covering polygons with squares" -, type = "Draft" -, institution = "Dept. Comput. Sci., Princeton Univ." -, month = oct -, year = 1988 -, update = "98.07 bibrelex" +, author = "L. J. Aupperle" +, title = "An algorithm for covering polygons with squares" +, type = "Draft" +, institution = "Dept. Comput. Sci., Princeton Univ." +, month = oct +, year = 1988 +, update = "98.07 bibrelex" } @inproceedings{acko-cops-88 -, author = "L. J. Aupperle and H. E. Conn and J. M. Keil and J. O'Rourke" -, title = "Covering orthogonal polygons with squares" -, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." -, month = oct -, year = 1988 -, pages = "97--106" -, keywords = "covering, decomposition, polygons, NP-completeness, image processing, graph theory, squares, medial axis" +, author = "L. J. Aupperle and H. E. Conn and J. M. Keil and J. O'Rourke" +, title = "Covering orthogonal polygons with squares" +, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." +, month = oct +, year = 1988 +, pages = "97--106" +, keywords = "covering, decomposition, polygons, NP-completeness, image processing, graph theory, squares, medial axis" } @article{ak-parep-89 -, author = "L. J. Aupperle and J. M. Keil" -, title = "Polynomial algorithms for restricted {Euclidean} $p$-centre problems" -, journal = "Discrete Appl. Math." -, volume = 23 -, year = 1989 -, pages = "25--31" -, keywords = "lines, cluster analysis, dynamic programming, circles, optimization, operations research, facility location" -, update = "95.05 korneenko" +, author = "L. J. Aupperle and J. M. Keil" +, title = "Polynomial algorithms for restricted {Euclidean} $p$-centre problems" +, journal = "Discrete Appl. Math." +, volume = 23 +, year = 1989 +, pages = "25--31" +, keywords = "lines, cluster analysis, dynamic programming, circles, optimization, operations research, facility location" +, update = "95.05 korneenko" } @article{a-caecc-87 -, author = "F. Aurenhammer" -, title = "A criterion for the affine equality of cell complexes in {$R^{d}$} and convex polyhedra in {$R^{d+1}$}" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "49--64" -, keywords = "discrete geometry, cell complexes, power diagrams, reciprocal figure, $d$-dimensional" -, update = "93.09 aurenhammer" +, author = "F. Aurenhammer" +, title = "A criterion for the affine equality of cell complexes in {$R^{d}$} and convex polyhedra in {$R^{d+1}$}" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "49--64" +, keywords = "discrete geometry, cell complexes, power diagrams, reciprocal figure, $d$-dimensional" +, update = "93.09 aurenhammer" } @inproceedings{a-ndrcv-86 -, author = "F. Aurenhammer" -, title = "A new duality result concerning {Voronoi} diagrams" -, booktitle = "Proc. 13th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 226 -, publisher = "Springer-Verlag" -, year = 1986 -, pages = "21--30" -, keywords = "design of algorithms, discrete geometry, duality, Voronoi diagrams, convex hull, worst-case analysis" -, precedes = "a-ndrcv-90" +, author = "F. Aurenhammer" +, title = "A new duality result concerning {Voronoi} diagrams" +, booktitle = "Proc. 13th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 226 +, publisher = "Springer-Verlag" +, year = 1986 +, pages = "21--30" +, keywords = "design of algorithms, discrete geometry, duality, Voronoi diagrams, convex hull, worst-case analysis" +, precedes = "a-ndrcv-90" } @article{a-ndrcv-90 -, author = "F. Aurenhammer" -, title = "A new duality result concerning {Voronoi} diagrams" -, journal = "Discrete Comput. Geom." -, volume = 5 -, number = 3 -, year = 1990 -, pages = "243--254" -, keywords = "design of algorithms, discrete geometry, duality, Voronoi diagr ams, convex hull, worst-case analysis" -, succeeds = "a-ndrcv-86" -, update = "98.07 bibrelex" +, author = "F. Aurenhammer" +, title = "A new duality result concerning {Voronoi} diagrams" +, journal = "Discrete Comput. Geom." +, volume = 5 +, number = 3 +, year = 1990 +, pages = "243--254" +, keywords = "design of algorithms, discrete geometry, duality, Voronoi diagr ams, convex hull, worst-case analysis" +, succeeds = "a-ndrcv-86" +, update = "98.07 bibrelex" } @article{a-rbgtv-90 -, author = "F. Aurenhammer" -, title = "A relationship between {Gale} transforms and {Voronoi} diagrams" -, journal = "Discrete Appl. Math." -, volume = 28 -, year = 1990 -, pages = "83--91" -, update = "97.11 bibrelex, 95.05 korneenko" +, author = "F. Aurenhammer" +, title = "A relationship between {Gale} transforms and {Voronoi} diagrams" +, journal = "Discrete Appl. Math." +, volume = 28 +, year = 1990 +, pages = "83--91" +, update = "97.11 bibrelex, 95.05 korneenko" } @inproceedings{a-pvd-89 -, author = "Franz Aurenhammer" -, title = "{Das} {Peeper's} {Voronoi}-{Diagramm}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "Franz Aurenhammer" +, title = "{Das} {Peeper's} {Voronoi}-{Diagramm}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @phdthesis{a-gvdgd-84 -, author = "F. Aurenhammer" -, title = "Gewichtete {Voronoi} {Diagramme}: {Geometrische} {Deutung} und {Konstruktions}-{Algorithmen}" -, type = "Ph.{D}. Thesis" -, school = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1984 -, note = "Report B53" -, keywords = "doctoral thesis, discrete geometry, design of algorithms, geometric transformations, Voronoi diagrams, weighted, $d$-dimensional" -, update = "93.05 jones" +, author = "F. Aurenhammer" +, title = "Gewichtete {Voronoi} {Diagramme}: {Geometrische} {Deutung} und {Konstruktions}-{Algorithmen}" +, type = "Ph.{D}. Thesis" +, school = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1984 +, note = "Report B53" +, keywords = "doctoral thesis, discrete geometry, design of algorithms, geometric transformations, Voronoi diagrams, weighted, $d$-dimensional" +, update = "93.05 jones" } @article{a-iadbu-88 -, author = "F. Aurenhammer" -, title = "Improved algorithms for discs and balls using power diagrams" -, journal = "J. Algorithms" -, volume = 9 -, year = 1988 -, pages = "151--161" -, keywords = "design of algorithms, computer graphics, robotics, intersection, volume, Voronoi diagrams, disks, balls" +, author = "F. Aurenhammer" +, title = "Improved algorithms for discs and balls using power diagrams" +, journal = "J. Algorithms" +, volume = 9 +, year = 1988 +, pages = "151--161" +, keywords = "design of algorithms, computer graphics, robotics, intersection, volume, Voronoi diagrams, disks, balls" } @inproceedings{a-jschc-87 -, author = "F. Aurenhammer" -, title = "Jordan sorting via convex hulls of certain non-simple polygons" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "21--29" -, keywords = "design of algorithms, sorting, convex hull, non-simple polygons, trees, worst-case analysis" -, cites = "f-hgiit-76, r-ppdti-84, hmrt-sjslt-86, e-agc-, ZZZ" -, update = "98.03 bibrelex" +, author = "F. Aurenhammer" +, title = "Jordan sorting via convex hulls of certain non-simple polygons" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "21--29" +, keywords = "design of algorithms, sorting, convex hull, non-simple polygons, trees, worst-case analysis" +, cites = "f-hgiit-76, r-ppdti-84, hmrt-sjslt-86, e-agc-, ZZZ" +, update = "98.03 bibrelex" } @article{a-lcpd-88 -, author = "F. Aurenhammer" -, title = "Linear combinations from power domains" -, journal = "Geom. Dedicata" -, volume = 28 -, year = 1988 -, pages = "45--52" -, keywords = "power diagrams, convex combinations, $d$-dimensional" -, update = "93.09 aurenhammer" +, author = "F. Aurenhammer" +, title = "Linear combinations from power domains" +, journal = "Geom. Dedicata" +, volume = 28 +, year = 1988 +, pages = "45--52" +, keywords = "power diagrams, convex combinations, $d$-dimensional" +, update = "93.09 aurenhammer" } @article{a-olsts-88 -, author = "F. Aurenhammer" -, title = "On-line sorting of twisted sequences in linear time" -, journal = "BIT" -, volume = 28 -, year = 1988 -, pages = "194--204" -, keywords = "design of algorithms, sorting, convex hull, arrangements, incrementation, worst-case analysis, lower bounds" -, update = "93.09 aurenhammer" +, author = "F. Aurenhammer" +, title = "On-line sorting of twisted sequences in linear time" +, journal = "BIT" +, volume = 28 +, year = 1988 +, pages = "194--204" +, keywords = "design of algorithms, sorting, convex hull, arrangements, incrementation, worst-case analysis, lower bounds" +, update = "93.09 aurenhammer" } @techreport{a-pdpaa-83 -, author = "F. Aurenhammer" -, title = "Power Diagrams: {Properties}, Algorithms and Applications" -, number = "F120" -, institution = "Techn. Univ. Graz" -, address = "Graz, Austria" -, year = 1983 -, update = "97.11 bibrelex" +, author = "F. Aurenhammer" +, title = "Power Diagrams: {Properties}, Algorithms and Applications" +, number = "F120" +, institution = "Techn. Univ. Graz" +, address = "Graz, Austria" +, year = 1983 +, update = "97.11 bibrelex" } @article{a-pdpaa-87 -, author = "F. Aurenhammer" -, title = "Power diagrams: properties, algorithms and applications" -, journal = "SIAM J. Comput." -, volume = 16 -, year = 1987 -, pages = "78--96" -, keywords = "discrete geometry, design of algorithms, geometric transformations, duality, Voronoi diagrams, convex hull, arrangements, $d$-dimensional, distance, weighted" +, author = "F. Aurenhammer" +, title = "Power diagrams: properties, algorithms and applications" +, journal = "SIAM J. Comput." +, volume = 16 +, year = 1987 +, pages = "78--96" +, keywords = "discrete geometry, design of algorithms, geometric transformations, duality, Voronoi diagrams, convex hull, arrangements, $d$-dimensional, distance, weighted" } @article{a-rpccc-87 -, author = "F. Aurenhammer" -, title = "Recognising polytopical cell complexes and constructing projection polyhedra" -, journal = "J. Symbolic Comput." -, volume = 3 -, year = 1987 -, pages = "249--255" -, keywords = "design of algorithms, cell complexes, Voronoi diagrams, reciprocal figure, image processing, pattern recognition" -, update = "93.09 aurenhammer" +, author = "F. Aurenhammer" +, title = "Recognising polytopical cell complexes and constructing projection polyhedra" +, journal = "J. Symbolic Comput." +, volume = 3 +, year = 1987 +, pages = "249--255" +, keywords = "design of algorithms, cell complexes, Voronoi diagrams, reciprocal figure, image processing, pattern recognition" +, update = "93.09 aurenhammer" } @techreport{a-odwvd-83 -, author = "F. Aurenhammer" -, title = "The one-dimensional weighted {Voronoi} diagram" -, type = "Report" -, number = "F 110, IIG" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1983 -, precedes = "a-odwvd-86" +, author = "F. Aurenhammer" +, title = "The one-dimensional weighted {Voronoi} diagram" +, type = "Report" +, number = "F 110, IIG" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1983 +, precedes = "a-odwvd-86" } @article{a-odwvd-86 -, author = "F. Aurenhammer" -, title = "The one-dimensional weighted {Voronoi} diagram" -, journal = "Inform. Process. Lett." -, volume = 22 -, year = 1986 -, pages = "119--123" -, keywords = "design of algorithms, divide-and-conquer, plane-sweep, upper envelope, Voronoi diagrams, weighted" -, succeeds = "a-odwvd-83" -, update = "93.09 aurenhammer" +, author = "F. Aurenhammer" +, title = "The one-dimensional weighted {Voronoi} diagram" +, journal = "Inform. Process. Lett." +, volume = 22 +, year = 1986 +, pages = "119--123" +, keywords = "design of algorithms, divide-and-conquer, plane-sweep, upper envelope, Voronoi diagrams, weighted" +, succeeds = "a-odwvd-83" +, update = "93.09 aurenhammer" } @inproceedings{a-ugtcg-88 -, author = "F. Aurenhammer" -, title = "Using {Gale} transforms in computational geometry" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "202--216" -, keywords = "geometric transform, convex hulls, scene analysis, $d$-dimensional" -, precedes = "a-ugtcg-91" -, update = "00.03 bibrelex, 99.11 bibrelex, 98.11 bibrelex, 98.07 bibrelex, 95.05 korneenko, 93.09 aurenhammer" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "F. Aurenhammer" +, title = "Using {Gale} transforms in computational geometry" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "202--216" +, keywords = "geometric transform, convex hulls, scene analysis, $d$-dimensional" +, precedes = "a-ugtcg-91" +, update = "00.03 bibrelex, 99.11 bibrelex, 98.11 bibrelex, 98.07 bibrelex, 95.05 korneenko, 93.09 aurenhammer" +, annote = "4th Intern. Workshop Comput. Geom." } @article{a-ugtcg-91 -, author = "F. Aurenhammer" -, title = "Using {Gale} transforms in computational geometry" -, journal = "Math. Program." -, volume = "B 52" -, year = 1991 -, pages = "179--190" -, keywords = "geometric transform, convex hulls, scene analysis, $d$-dimensional" -, succeeds = "a-ugtcg-88" -, update = "95.05 korneenko, 93.09 aurenhammer" +, author = "F. Aurenhammer" +, title = "Using {Gale} transforms in computational geometry" +, journal = "Math. Program." +, volume = "B 52" +, year = 1991 +, pages = "179--190" +, keywords = "geometric transform, convex hulls, scene analysis, $d$-dimensional" +, succeeds = "a-ugtcg-88" +, update = "95.05 korneenko, 93.09 aurenhammer" } @techreport{a-vds-88 -, author = "F. Aurenhammer" -, title = "{Voronoi} diagrams: a survey" -, institution = "Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1988 -, update = "97.11 bibrelex" +, author = "F. Aurenhammer" +, title = "{Voronoi} diagrams: a survey" +, institution = "Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1988 +, update = "97.11 bibrelex" } @techreport{a-vdsfg-90 -, author = "F. Aurenhammer" -, title = "Voronoi diagrams: a survey of a fundamental geometric data structure" -, type = "Report" -, number = "B-90-09" -, institution = "Fachber. Math., Free Univ. Berlin" -, address = "Berlin, West Germany" -, year = 1990 -, keywords = "survey paper, Voronoi diagrams, Delaunay triangulations, arrangements, hyperplanes, plane sweep, divide-and-conquer, parallel computation, minimum spanning trees, cluster analysis, motion planning" -, succeeds = "a-vds-88" -, precedes = "a-vdsfg-91" -, update = "93.09 aurenhammer" +, author = "F. Aurenhammer" +, title = "Voronoi diagrams: a survey of a fundamental geometric data structure" +, type = "Report" +, number = "B-90-09" +, institution = "Fachber. Math., Free Univ. Berlin" +, address = "Berlin, West Germany" +, year = 1990 +, keywords = "survey paper, Voronoi diagrams, Delaunay triangulations, arrangements, hyperplanes, plane sweep, divide-and-conquer, parallel computation, minimum spanning trees, cluster analysis, motion planning" +, succeeds = "a-vds-88" +, precedes = "a-vdsfg-91" +, update = "93.09 aurenhammer" } @article{a-vdsfg-91 -, author = "F. Aurenhammer" -, title = "Voronoi diagrams: A survey of a fundamental geometric data structure" -, journal = "ACM Comput. Surv." -, volume = 23 -, number = 3 -, month = sep -, year = 1991 -, pages = "345--405" -, keywords = "survey paper, Voronoi diagrams, Delaunay triangulations, arrangements, hyperplanes, plane sweep, divide-and-conquer, parallel computation, minimum spanning trees, cluster analysis, motion planning" -, succeeds = "a-vdsfg-90" -, update = "98.11 bibrelex, 95.09 agarwal" +, author = "F. Aurenhammer" +, title = "Voronoi diagrams: A survey of a fundamental geometric data structure" +, journal = "ACM Comput. Surv." +, volume = 23 +, number = 3 +, month = sep +, year = 1991 +, pages = "345--405" +, keywords = "survey paper, Voronoi diagrams, Delaunay triangulations, arrangements, hyperplanes, plane sweep, divide-and-conquer, parallel computation, minimum spanning trees, cluster analysis, motion planning" +, succeeds = "a-vdsfg-90" +, update = "98.11 bibrelex, 95.09 agarwal" } @article{ae-oacwv-84 -, author = "F. Aurenhammer and H. Edelsbrunner" -, title = "An optimal algorithm for constructing the weighted {Voronoi} diagram in the plane" -, journal = "Pattern Recogn." -, volume = 17 -, year = 1984 -, pages = "251--257" -, keywords = "combinatorial geometry, design of algorithms, construction, incrementation, geometric transformations, worst-case analysis, Voronoi diagrams, two-dimensional, three-dimensional, weighted" -, annote = "$O(n^2)$ algorithm (worst case optimal). Uses - inversion to transform problem to constructing - polyhedra in 3D. ``Add a point'' algorithm." +, author = "F. Aurenhammer and H. Edelsbrunner" +, title = "An optimal algorithm for constructing the weighted {Voronoi} diagram in the plane" +, journal = "Pattern Recogn." +, volume = 17 +, year = 1984 +, pages = "251--257" +, keywords = "combinatorial geometry, design of algorithms, construction, incrementation, geometric transformations, worst-case analysis, Voronoi diagrams, two-dimensional, three-dimensional, weighted" +, annote = "$O(n^2)$ algorithm (worst case optimal). Uses + inversion to transform problem to constructing + polyhedra in 3D. ``Add a point'' algorithm." } @article{afisw-fiepc-94 -, author = "F. Aurenhammer and M. Formann and R. M. Idury and A. A. Sch{\"a}ffer and F. Wagner" -, title = "Faster Isometric Embedding in Products of Complete Graphs" -, journal = "Discrete Appl. Math." -, volume = 17 -, year = 1994 -, pages = "321--340" -, update = "97.03 gaertner+salinger" +, author = "F. Aurenhammer and M. Formann and R. M. Idury and A. A. Sch{\"a}ffer and F. Wagner" +, title = "Faster Isometric Embedding in Products of Complete Graphs" +, journal = "Discrete Appl. Math." +, volume = 17 +, year = 1994 +, pages = "321--340" +, update = "97.03 gaertner+salinger" } @inproceedings{ahi-fcpgl-90 -, author = "F. Aurenhammer and J. Hagauer and W. Imrich" -, title = "Factoring Cartesian-product graphs at logarithmic cost per edge" -, booktitle = "Proc. MPC Conf. Integer Programming and Combinatorial Optimization" -, site = "Waterloo, ON" -, year = 1990 -, pages = "29--44" -, update = "97.03 gaertner+salinger" +, author = "F. Aurenhammer and J. Hagauer and W. Imrich" +, title = "Factoring Cartesian-product graphs at logarithmic cost per edge" +, booktitle = "Proc. MPC Conf. Integer Programming and Combinatorial Optimization" +, site = "Waterloo, ON" +, year = 1990 +, pages = "29--44" +, update = "97.03 gaertner+salinger" } @inproceedings{aha-lsp-92 -, author = "Franz Aurenhammer and Friedrich Hoffmann and Boris Aronov" -, title = "Least-Squares Partitioning" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "55--57" -, update = "00.03 bibrelex" +, author = "Franz Aurenhammer and Friedrich Hoffmann and Boris Aronov" +, title = "Least-Squares Partitioning" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "55--57" +, update = "00.03 bibrelex" } @article{aha-mttlsc-98 -, author = "Franz Aurenhammer and Friedrich Hoffmann and Boris Aronov" -, title = "Minkowski-type theorems and least-squares clustering" -, journal = "Algorithmica" -, volume = 20 -, year = 1998 -, pages = "61--76" -, succeeds = "aha-mttls-92" -, update = "98.03 aronov, 97.11 aronov" +, author = "Franz Aurenhammer and Friedrich Hoffmann and Boris Aronov" +, title = "Minkowski-type theorems and least-squares clustering" +, journal = "Algorithmica" +, volume = 20 +, year = 1998 +, pages = "61--76" +, succeeds = "aha-mttls-92" +, update = "98.03 aronov, 97.11 aronov" } @inproceedings{aha-mttls-92 -, author = "F. Aurenhammer and F. Hoffmann and B. Aronov" -, title = "Minkowski-type theorems and least-squares partitioning" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "350--357" -, keywords = "optimization, least squares, power diagram, matching" -, precedes = "aha-mttlsc-98" -, cites = "am-dhsrr-91, a-vdsfg-91, a-caecc-87, b-colmm-82, e-fdmem-92, ft-fhtui-87, g-cp-67, l-conm-76, l-egimv-85, ol-mcp-81, t-dsna-83, tn-gamca-91, v-ghm-89, ZZZ" -, update = "98.07 bibrelex, 97.11 aronov+bibrelex" +, author = "F. Aurenhammer and F. Hoffmann and B. Aronov" +, title = "Minkowski-type theorems and least-squares partitioning" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "350--357" +, keywords = "optimization, least squares, power diagram, matching" +, precedes = "aha-mttlsc-98" +, cites = "am-dhsrr-91, a-vdsfg-91, a-caecc-87, b-colmm-82, e-fdmem-92, ft-fhtui-87, g-cp-67, l-conm-76, l-egimv-85, ol-mcp-81, t-dsna-83, tn-gamca-91, v-ghm-89, ZZZ" +, update = "98.07 bibrelex, 97.11 aronov+bibrelex" } @techreport{ai-grvd-86 -, author = "F. Aurenhammer and H. Imai" -, title = "Geometric relations among {Voronoi} diagrams" -, type = "Technical {Report}" -, number = 228 -, institution = "Inst. Informationsverarb., Techn. Univ. Graz" -, address = "Graz, Autria" -, year = 1986 -, update = "98.03 bibrelex" +, author = "F. Aurenhammer and H. Imai" +, title = "Geometric relations among {Voronoi} diagrams" +, type = "Technical {Report}" +, number = 228 +, institution = "Inst. Informationsverarb., Techn. Univ. Graz" +, address = "Graz, Autria" +, year = 1986 +, update = "98.03 bibrelex" } @inproceedings{ai-grvd-87 -, author = "F. Aurenhammer and H. Imai" -, title = "Geometric relations among {Voronoi} diagrams" -, booktitle = "Proc. 4th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 247 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "53--65" -, keywords = "design of algorithms, discrete geometry, Voronoi diagrams, distance, weighted" -, precedes = "ai-grvd-88" +, author = "F. Aurenhammer and H. Imai" +, title = "Geometric relations among {Voronoi} diagrams" +, booktitle = "Proc. 4th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 247 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "53--65" +, keywords = "design of algorithms, discrete geometry, Voronoi diagrams, distance, weighted" +, precedes = "ai-grvd-88" } @article{ai-grvd-88 -, author = "F. Aurenhammer and H. Imai" -, title = "Geometric relations among {Voronoi} diagrams" -, journal = "Geom. Dedicata" -, volume = 27 -, year = 1988 -, pages = "65--75" -, keywords = "design of algorithms, discrete geometry, Voronoi diagrams, distance, weighted" -, succeeds = "ai-grvd-87" -, update = "93.09 aurenhammer" +, author = "F. Aurenhammer and H. Imai" +, title = "Geometric relations among {Voronoi} diagrams" +, journal = "Geom. Dedicata" +, volume = 27 +, year = 1988 +, pages = "65--75" +, keywords = "design of algorithms, discrete geometry, Voronoi diagrams, distance, weighted" +, succeeds = "ai-grvd-87" +, update = "93.09 aurenhammer" } @techreport{ak-vd-96 -, author = "Franz Aurenhammer and Rolf Klein" -, title = "Voronoi Diagrams" -, number = 198 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1996 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr198.pdf" -, precedes = "ak-vd-00" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex" +, author = "Franz Aurenhammer and Rolf Klein" +, title = "Voronoi Diagrams" +, number = 198 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1996 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr198.pdf" +, precedes = "ak-vd-00" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex" } @incollection{ak-vd-00 -, author = "Franz Aurenhammer and Rolf Klein" -, title = "Voronoi Diagrams" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "201--290" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr198.pdf" -, succeeds = "ak-vd-96" -, cites = "ahknu-vdcfc-95, abms-claho-94, aesw-emstb-91, agss-ltacv-89, ahl-sqrpc-90, aiks-fkpmd-91, a-dppuv-82, aaag-ntsp-95, aa-skfgpf-95, aacktrx-tin-96, a-nemts-83, as-vdco-95, ay-aampt1-90, ay-aampt2-90, ar-cvddp-96, a-gvdps-89, a-lbvdc-98, abky-cabmm-88, abcw-cpdts-88, ab-rdt-85, a-sdcgp-85, a-pdpaa-87, a-rpccc-87, a-iadbu-88, a-lcpd-88, a-ndrcv-90, a-vdsfg-91, ae-oacwv-84, aha-mttls-92, ai-grvd-88, as-solri-92, abi-cvus-88, br-rasas-90, bo-arcgi-79, bs-dcms-76, bwy-oetac-80, be-mgot-92i, beg-pgmg-94, b-bnvd, bt-gatuf-85, bmt-dppbp-96, bcdt-osc3d-91i, bdsty-arsol-92, bg-tdrcs-93, bsty-vdhdc-95, bt-rcdt-93, bh-cpcoe-88, b-rgsdd-89, b-vdch-79, b-gtfga-80, bms-hcvdl-94, b-gog-55, c-vmpmp-85, cd-svd-88, crw-gc-91, csy-oscpf-95, cdns-nsrgs-95, c-ochaa-93, ce-iacko-87, cgt-ecabs-95, cx-alesw-96, c-bvdcp-86, c-cdt-89, c-tapga-89, c-gqmgc-93, - cd-vdbcd-85, ckstw-vdl3s-95, csw-fmasp-95, c-wcanh-76, cms-mfdca-94, c-narsc-87, c-agmst-89, cms-frric-93, cs-arscg-89, cmrs-tspvd-93, cw-pspp-86, dj-wtacg-89, ds-oiti-89, bms-plpco-93, dfnp-stdt-91, d-eaclm-77, dk-savd-87, dk-bspwa-97, dn-cgacp-85, d-slsv-34, d-pp-44, d-rysoa-92, dv-cprac-77, dds-saeid-92, de-apphd-96, d-nhndt-87, d-tdt-90, d-fhcdt-92, d-udrdp-50, dl-cvdrp-91, ddg-fsp-83, dfs-dgaag-90, dl-pmtds-89, dl-msp-76, d-ec-83, d-fdcac-87, d-hdvdl-91, e-acg-87, e-atccd-90, e-ubids-95, egs-ueplf-89, egs-oplms-86, eks-sspp-83, em-tdas-94, eos-calha-86, es-vda-86, ess-ztha-93, es-itfwr-96, es-otatd-91, et-qtaml-93, et-ubcdt-93, etw-otama-92, ei-drmwc-79, f-sodt-90, f-iwatd-86, f-nsa2d-92, f-vddt-92, f-savd-87, gs-nsagv-69, gj-cigtn-79, g-3dmud-95, g-agt-85, grr-vdlsm-95, grss-sracp-95, - goy-cvdsl-93, gs-cdtp-78, gks-ricdv-92, gmr-vdmpp-92, gs-pmgsc-85, h-ca-75, h-rvdlp-92, h-gbitp-91, hkp-itnc-91, hn-sc-89, hns-psscp-88, h-pcprn-91, hks-uevsi-93, h-oarms-79, iklm-cdf3s-93, iki-awvdr-94, iss-nriac-92, j-3dtlt-89, j-ctddt-91, j-gspgm-91, jrz-ccdt-91, km-accvd-91, km-icdmc-92, kk-cdtmb-88, kg-cgwac-92, k-csmwt-94, ks-tpscv-93, k-eccs-79, k-ndot-80, k-osps-83, kr-fcm-85, k-cddvd-80, k-cavd-89, kl-ltrab-93, kl-fsc-95, kl-mpsp-95, kmm-ricav-93a, kw-vdbgm-88, k-sssgt-56, kl-fsacl-95, l-dtmmi-94, l-esta-94, l-scsi-77, l-vdlmh-94, l-ricsa-95, l-tdvdl-80, l-matps-82, l-knnvd-82, ld-gvdp-81, ll-gdtpg-86, lw-vdllm-80, lk-qgtam-96, l-ltcrn-94, msw-sblp-92, ms-pggrg-80, m-dtchn-84, mr-vdcdg-90, mks-cplvd-96, m-tdird-76, m-mnfcp-70, m-lpltw-84, mmo-cavd-91, m-zkav-93, - m-uuam-28, m-rcvdp-93, m-spop-93, mmp-dgp-87, ms-getcc-88, mp-fitcp-78, m-osclv-90, m-lavd-91, osy-gvdl-86, osy-gvdl-87, oy-rmpmd-85, oim-iimvd-84, obs-stcav-92, p-etspi-77, pl-ecgvd-95, p-kpudz-82, p-mrpdt-92, ps-cgi-85, p-scnsg-57, r-odtr-91, rr-oprav-94, r-aiv-94, r-mrpdt-90, r-tbvdm-93, rsl-ashts-77, st-pwvt-88, s-cvdhd-82, s-mplbc-85, s-chdch-86, s-nfhdv-87, s-cdtvd-88, s-sdlpc-91, s-barga-93, s-cg-78, sh-cpp-75, s-icpps-85, s-atubl-94, s-let-78, s-vidt-80, s-sagdt-91, s-facdt-87, s-mmdpsl-91a, sd-csdta-95, s-smane-92, si-cvdom-92, soi-toari-90, s-rngam-83, si-atpvd-86, t-otdt-93, too-natdv-83, t-gcvdm-86, t-rngfp-80, v-mstkd-88, v-sgagc-91, v-dmrsl-09, v-nadpc-08, w-eucdt-93, ws-oacdt-87, w-cnddt-81, w-sedbe-91a, www-sdpfo-87, y-cmstk-82, y-amp-87, y-oavds-87, zm-sdnah-91, ZZZ" -, update = "00.11 smid, 00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell, 98.03 bibrelex, 97.03 icking" -, annote = "Chapter 5 of su-hcg-00" +, author = "Franz Aurenhammer and Rolf Klein" +, title = "Voronoi Diagrams" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "201--290" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr198.pdf" +, succeeds = "ak-vd-96" +, cites = "ahknu-vdcfc-95, abms-claho-94, aesw-emstb-91, agss-ltacv-89, ahl-sqrpc-90, aiks-fkpmd-91, a-dppuv-82, aaag-ntsp-95, aa-skfgpf-95, aacktrx-tin-96, a-nemts-83, as-vdco-95, ay-aampt1-90, ay-aampt2-90, ar-cvddp-96, a-gvdps-89, a-lbvdc-98, abky-cabmm-88, abcw-cpdts-88, ab-rdt-85, a-sdcgp-85, a-pdpaa-87, a-rpccc-87, a-iadbu-88, a-lcpd-88, a-ndrcv-90, a-vdsfg-91, ae-oacwv-84, aha-mttls-92, ai-grvd-88, as-solri-92, abi-cvus-88, br-rasas-90, bo-arcgi-79, bs-dcms-76, bwy-oetac-80, be-mgot-92i, beg-pgmg-94, b-bnvd, bt-gatuf-85, bmt-dppbp-96, bcdt-osc3d-91i, bdsty-arsol-92, bg-tdrcs-93, bsty-vdhdc-95, bt-rcdt-93, bh-cpcoe-88, b-rgsdd-89, b-vdch-79, b-gtfga-80, bms-hcvdl-94, b-gog-55, c-vmpmp-85, cd-svd-88, crw-gc-91, csy-oscpf-95, cdns-nsrgs-95, c-ochaa-93, ce-iacko-87, cgt-ecabs-95, cx-alesw-96, c-bvdcp-86, c-cdt-89, c-tapga-89, c-gqmgc-93, + cd-vdbcd-85, ckstw-vdl3s-95, csw-fmasp-95, c-wcanh-76, cms-mfdca-94, c-narsc-87, c-agmst-89, cms-frric-93, cs-arscg-89, cmrs-tspvd-93, cw-pspp-86, dj-wtacg-89, ds-oiti-89, bms-plpco-93, dfnp-stdt-91, d-eaclm-77, dk-savd-87, dk-bspwa-97, dn-cgacp-85, d-slsv-34, d-pp-44, d-rysoa-92, dv-cprac-77, dds-saeid-92, de-apphd-96, d-nhndt-87, d-tdt-90, d-fhcdt-92, d-udrdp-50, dl-cvdrp-91, ddg-fsp-83, dfs-dgaag-90, dl-pmtds-89, dl-msp-76, d-ec-83, d-fdcac-87, d-hdvdl-91, e-acg-87, e-atccd-90, e-ubids-95, egs-ueplf-89, egs-oplms-86, eks-sspp-83, em-tdas-94, eos-calha-86, es-vda-86, ess-ztha-93, es-itfwr-96, es-otatd-91, et-qtaml-93, et-ubcdt-93, etw-otama-92, ei-drmwc-79, f-sodt-90, f-iwatd-86, f-nsa2d-92, f-vddt-92, f-savd-87, gs-nsagv-69, gj-cigtn-79, g-3dmud-95, g-agt-85, grr-vdlsm-95, grss-sracp-95, + goy-cvdsl-93, gs-cdtp-78, gks-ricdv-92, gmr-vdmpp-92, gs-pmgsc-85, h-ca-75, h-rvdlp-92, h-gbitp-91, hkp-itnc-91, hn-sc-89, hns-psscp-88, h-pcprn-91, hks-uevsi-93, h-oarms-79, iklm-cdf3s-93, iki-awvdr-94, iss-nriac-92, j-3dtlt-89, j-ctddt-91, j-gspgm-91, jrz-ccdt-91, km-accvd-91, km-icdmc-92, kk-cdtmb-88, kg-cgwac-92, k-csmwt-94, ks-tpscv-93, k-eccs-79, k-ndot-80, k-osps-83, kr-fcm-85, k-cddvd-80, k-cavd-89, kl-ltrab-93, kl-fsc-95, kl-mpsp-95, kmm-ricav-93a, kw-vdbgm-88, k-sssgt-56, kl-fsacl-95, l-dtmmi-94, l-esta-94, l-scsi-77, l-vdlmh-94, l-ricsa-95, l-tdvdl-80, l-matps-82, l-knnvd-82, ld-gvdp-81, ll-gdtpg-86, lw-vdllm-80, lk-qgtam-96, l-ltcrn-94, msw-sblp-92, ms-pggrg-80, m-dtchn-84, mr-vdcdg-90, mks-cplvd-96, m-tdird-76, m-mnfcp-70, m-lpltw-84, mmo-cavd-91, m-zkav-93, + m-uuam-28, m-rcvdp-93, m-spop-93, mmp-dgp-87, ms-getcc-88, mp-fitcp-78, m-osclv-90, m-lavd-91, osy-gvdl-86, osy-gvdl-87, oy-rmpmd-85, oim-iimvd-84, obs-stcav-92, p-etspi-77, pl-ecgvd-95, p-kpudz-82, p-mrpdt-92, ps-cgi-85, p-scnsg-57, r-odtr-91, rr-oprav-94, r-aiv-94, r-mrpdt-90, r-tbvdm-93, rsl-ashts-77, st-pwvt-88, s-cvdhd-82, s-mplbc-85, s-chdch-86, s-nfhdv-87, s-cdtvd-88, s-sdlpc-91, s-barga-93, s-cg-78, sh-cpp-75, s-icpps-85, s-atubl-94, s-let-78, s-vidt-80, s-sagdt-91, s-facdt-87, s-mmdpsl-91a, sd-csdta-95, s-smane-92, si-cvdom-92, soi-toari-90, s-rngam-83, si-atpvd-86, t-otdt-93, too-natdv-83, t-gcvdm-86, t-rngfp-80, v-mstkd-88, v-sgagc-91, v-dmrsl-09, v-nadpc-08, w-eucdt-93, ws-oacdt-87, w-cnddt-81, w-sedbe-91a, www-sdpfo-87, y-cmstk-82, y-amp-87, y-oavds-87, zm-sdnah-91, ZZZ" +, update = "00.11 smid, 00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell, 98.03 bibrelex, 97.03 icking" +, annote = "Chapter 5 of su-hcg-00" } @techreport{as-solri-91t -, author = "F. Aurenhammer and O. Schwarzkopf" -, title = "A Simple On-line Randomized Incremental Algorithm for Computing Higher Order {Voronoi} Diagrams" -, type = "Technical {Report}" -, institution = "Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, year = 1991 -, precedes = "as-solri-91" -, update = "00.03 bibrelex, 97.11 bibrelex" +, author = "F. Aurenhammer and O. Schwarzkopf" +, title = "A Simple On-line Randomized Incremental Algorithm for Computing Higher Order {Voronoi} Diagrams" +, type = "Technical {Report}" +, institution = "Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, year = 1991 +, precedes = "as-solri-91" +, update = "00.03 bibrelex, 97.11 bibrelex" } @inproceedings{as-solri-91 -, author = "F. Aurenhammer and O. Schwarzkopf" -, title = "A simple on-line randomized incremental algorithm for computing higher order {Voronoi} diagrams" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "142--151" -, keywords = "Voronoi diagrams, geometric transforms, dynamization" -, succeeds = "as-solri-91t" -, precedes = "as-solri-92" -, cites = "aesw-emstb-90, agss-ltacv-89, a-ndrcv-90, a-pdpaa-87, as-solri-91t, bdsty-arsol-90, bdt-riach-, cegss-cfals-91, c-narsc-87, cs-arscg-89, dsst-mdsp-89, e-acg-87, gks-ricdv-90, l-knnvd-82, mmo-cavd-91, m-lavd-91, s-riads-91, s-lpchm-90, s-sfira-90, w-csedb-91, ZZZ" -, update = "00.03 bibrelex, 97.11 bibrelex, 93.09 aurenhammer" +, author = "F. Aurenhammer and O. Schwarzkopf" +, title = "A simple on-line randomized incremental algorithm for computing higher order {Voronoi} diagrams" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "142--151" +, keywords = "Voronoi diagrams, geometric transforms, dynamization" +, succeeds = "as-solri-91t" +, precedes = "as-solri-92" +, cites = "aesw-emstb-90, agss-ltacv-89, a-ndrcv-90, a-pdpaa-87, as-solri-91t, bdsty-arsol-90, bdt-riach-, cegss-cfals-91, c-narsc-87, cs-arscg-89, dsst-mdsp-89, e-acg-87, gks-ricdv-90, l-knnvd-82, mmo-cavd-91, m-lavd-91, s-riads-91, s-lpchm-90, s-sfira-90, w-csedb-91, ZZZ" +, update = "00.03 bibrelex, 97.11 bibrelex, 93.09 aurenhammer" } @article{as-solri-92 -, author = "F. Aurenhammer and O. Schwarzkopf" -, title = "A simple on-line randomized incremental algorithm for computing higher order {Voronoi} diagrams" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, year = 1992 -, pages = "363--381" -, keywords = "Voronoi diagrams, geometric transforms, dynamization" -, succeeds = "as-solri-91" -, update = "93.09 aurenhammer, 93.05 schwarzkopf" +, author = "F. Aurenhammer and O. Schwarzkopf" +, title = "A simple on-line randomized incremental algorithm for computing higher order {Voronoi} diagrams" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, year = 1992 +, pages = "363--381" +, keywords = "Voronoi diagrams, geometric transforms, dynamization" +, succeeds = "as-solri-91" +, update = "93.09 aurenhammer, 93.05 schwarzkopf" } @article{as-pvd-91 -, author = "F. Aurenhammer and G. St{\"o}ckl" -, title = "On the peeper's {Voronoi} diagram" -, journal = "SIGACT News" -, volume = 22 -, number = 4 -, year = 1991 -, pages = "50--59" -, keywords = "Voronoi diagrams, visibility, lower envelope" -, update = "93.09 aurenhammer" +, author = "F. Aurenhammer and G. St{\"o}ckl" +, title = "On the peeper's {Voronoi} diagram" +, journal = "SIGACT News" +, volume = 22 +, number = 4 +, year = 1991 +, pages = "50--59" +, keywords = "Voronoi diagrams, visibility, lower envelope" +, update = "93.09 aurenhammer" } @article{as-sslro-92 -, author = "F. Aurenhammer and G. St{\"o}ckl" -, title = "Searching for segments with largest relative overlap" -, journal = "Inform. Process. Lett." -, volume = 41 -, year = 1992 -, pages = "103--108" -, keywords = "line segments, search structure, one-dimensional, two-dimensional" -, update = "93.09 aurenhammer+jones" +, author = "F. Aurenhammer and G. St{\"o}ckl" +, title = "Searching for segments with largest relative overlap" +, journal = "Inform. Process. Lett." +, volume = 41 +, year = 1992 +, pages = "103--108" +, keywords = "line segments, search structure, one-dimensional, two-dimensional" +, update = "93.09 aurenhammer+jones" } @inproceedings{asw-popfp-91 -, author = "Franz Aurenhammer and Gerd St{\"o}ckl and Emo Welzl" -, title = "The post office problem for fuzzy point sets" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "1--11" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Franz Aurenhammer and Gerd St{\"o}ckl and Emo Welzl" +, title = "The post office problem for fuzzy point sets" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "1--11" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{aflst-caolt-95 -, author = "Giorgio Ausiello and Esteban Feuerstein and Stefano Leonardi and Leen Stougie and Maurizio Talamo" -, title = "Competitive Algorithms for the On-line Traveling Salesman" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "206--217" -, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" +, author = "Giorgio Ausiello and Esteban Feuerstein and Stefano Leonardi and Leen Stougie and Maurizio Talamo" +, title = "Competitive Algorithms for the On-line Traveling Salesman" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "206--217" +, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" } @inproceedings{aimn-iamlp-90 -, author = "G. Ausiello and G. F. Italiano and A. Marchetti-Spac\-camela and U. Nanni" -, title = "Incremental Algorithms for Minimal Length Paths" -, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "12--21" -, update = "94.01 tamassia" +, author = "G. Ausiello and G. F. Italiano and A. Marchetti-Spac\-camela and U. Nanni" +, title = "Incremental Algorithms for Minimal Length Paths" +, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "12--21" +, update = "94.01 tamassia" } @article{ajd-cdans-97 -, author = "S. P. Austin and R. B. Jerard and R. L. Drysdale" -, title = "Comparison of Discretization Algorithms for NURBS Surfaces With Application to Numerically Controlled Machining" -, journal = "Comput. Aided Design" -, volume = 29 -, number = 1 -, month = jan -, year = 1997 -, pages = "71--83" -, update = "97.11 held" +, author = "S. P. Austin and R. B. Jerard and R. L. Drysdale" +, title = "Comparison of Discretization Algorithms for NURBS Surfaces With Application to Numerically Controlled Machining" +, journal = "Comput. Aided Design" +, volume = 29 +, number = 1 +, month = jan +, year = 1997 +, pages = "71--83" +, update = "97.11 held" } @article{as-vswma-93 -, author = "S. V. Avgustinovich and S. V. Sevast{\'\j}anov" -, title = "Vector Summation within Minimal Angle" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 5 -, month = mar -, year = 1993 -, pages = "235--239" -, update = "93.09 held+milone+mitchell" +, author = "S. V. Avgustinovich and S. V. Sevast{\'\j}anov" +, title = "Vector Summation within Minimal Angle" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 5 +, month = mar +, year = 1993 +, pages = "235--239" +, update = "93.09 held+milone+mitchell" } @inproceedings{as-ddsrs-81 -, author = "Z. Aviad and E. Shamir" -, title = "A direct dynamic solution to range search and related problems for product regions" -, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1981 -, pages = "123--126" -, keywords = "orthogonal range queries, integer coordinates, multidimensional search" +, author = "Z. Aviad and E. Shamir" +, title = "A direct dynamic solution to range search and related problems for product regions" +, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1981 +, pages = "123--126" +, keywords = "orthogonal range queries, integer coordinates, multidimensional search" } @article{a-shwmp-83 -, author = "D. Avis" -, title = "A survey of heuristics for the weighted matching problem" -, journal = "Networks" -, volume = 13 -, year = 1983 -, pages = "475--493" -, keywords = "heuristics, worst-case analysis, average-case analysis" +, author = "D. Avis" +, title = "A survey of heuristics for the weighted matching problem" +, journal = "Networks" +, volume = 13 +, year = 1983 +, pages = "475--493" +, keywords = "heuristics, worst-case analysis, average-case analysis" } @article{a-clbch-80 -, author = "D. Avis" -, title = "Comments on a lower bound for convex hull determination" -, journal = "Inform. Process. Lett." -, volume = 11 -, year = 1980 -, pages = 126 -, keywords = "convex hull, lower bounds, linear decision trees" +, author = "D. Avis" +, title = "Comments on a lower bound for convex hull determination" +, journal = "Inform. Process. Lett." +, volume = 11 +, year = 1980 +, pages = 126 +, keywords = "convex hull, lower bounds, linear decision trees" } @article{a-dp-86 -, author = "D. Avis" -, title = "Diameter partitioning" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "265--276" -, keywords = "planar point sets, partition, diameter" +, author = "D. Avis" +, title = "Diameter partitioning" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "265--276" +, keywords = "planar point sets, partition, diameter" } @article{a-grtwr-96 -, author = "D. Avis" -, title = "Generating rooted triangulations without repetitions" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "618--632" -, update = "97.03 smid" +, author = "D. Avis" +, title = "Generating rooted triangulations without repetitions" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "618--632" +, update = "97.03 smid" } @inproceedings{a-lbgp-80 -, author = "D. Avis" -, title = "Lower bounds for geometric problems" -, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." -, year = 1980 -, pages = "35--40" -, keywords = "lower bounds, linear decision trees, quadratic decision trees" +, author = "D. Avis" +, title = "Lower bounds for geometric problems" +, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." +, year = 1980 +, pages = "35--40" +, keywords = "lower bounds, linear decision trees, quadratic decision trees" } @article{a-npps-84 -, author = "D. Avis" -, title = "Non-partitionable point sets" -, journal = "Inform. Process. Lett." -, volume = 19 -, year = 1984 -, pages = "125--129" -, keywords = "discrete geometry, decomposition, range search" +, author = "D. Avis" +, title = "Non-partitionable point sets" +, journal = "Inform. Process. Lett." +, volume = 19 +, year = 1984 +, pages = "125--129" +, keywords = "discrete geometry, decomposition, range search" } @article{a-cfchs-82 -, author = "D. Avis" -, title = "On the complexity of finding the convex hull of a set of points" -, journal = "Discrete Appl. Math." -, volume = 4 -, year = 1982 -, pages = "81--86" -, keywords = "convex hull, lower bounds, linear decision trees" +, author = "D. Avis" +, title = "On the complexity of finding the convex hull of a set of points" +, journal = "Discrete Appl. Math." +, volume = 4 +, year = 1982 +, pages = "81--86" +, keywords = "convex hull, lower bounds, linear decision trees" } @inproceedings{a-ppss-85 -, author = "D. Avis" -, title = "On the partitionability of point sets in space" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "116--120" -, keywords = "point sets, partition, half spaces" -, comments = "some results appeared in a-spiag-85" -, cites = "k-ss-73, w-pr-82, y-3spia-83, de-ssio-84, a-npps-84, yb-cf-61, m-it-62, g-ncp-63, g-gcpnc-58, yy-gaddg-85, ZZZ" -, update = "97.11 bibrelex, 93.09 milone+mitchell" +, author = "D. Avis" +, title = "On the partitionability of point sets in space" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "116--120" +, keywords = "point sets, partition, half spaces" +, comments = "some results appeared in a-spiag-85" +, cites = "k-ss-73, w-pr-82, y-3spia-83, de-ssio-84, a-npps-84, yb-cf-61, m-it-62, g-ncp-63, g-gcpnc-58, yy-gaddg-85, ZZZ" +, update = "97.11 bibrelex, 93.09 milone+mitchell" } % ### alias "a-spiag-87" @inproceedings{a-spiag-85 -, author = "D. Avis" -, title = "Space partitioning and its application to generalized retrieval problems" -, booktitle = "Proc. Internat. Conf. Found. Data Organization" -, site = "Kyoto, Japan" -, year = 1985 -, pages = "154--162" -, keywords = "searching, point sets, partition, half spaces" -, update = "95.05 korneenko" +, author = "D. Avis" +, title = "Space partitioning and its application to generalized retrieval problems" +, booktitle = "Proc. Internat. Conf. Found. Data Organization" +, site = "Kyoto, Japan" +, year = 1985 +, pages = "154--162" +, keywords = "searching, point sets, partition, half spaces" +, update = "95.05 korneenko" } % == "a-spiag-85" @inproceedings{a-spiag-87 -, author = "D. Avis" -, title = "Space partitioning and its application to generalized retrieval problems" -, booktitle = "Proc. Internat. Conf. Found. Data Organization, 1985" -, publisher = "Plenum Press" -, address = "Kyoto, Japan" -, year = 1987 -, pages = "237--248" -, keywords = "searching, point sets, partition, half spaces" -, update = "95.05 korneenko" +, author = "D. Avis" +, title = "Space partitioning and its application to generalized retrieval problems" +, booktitle = "Proc. Internat. Conf. Found. Data Organization, 1985" +, publisher = "Plenum Press" +, address = "Kyoto, Japan" +, year = 1987 +, pages = "237--248" +, keywords = "searching, point sets, partition, half spaces" +, update = "95.05 korneenko" } @article{a-nfnfp-84 -, author = "D. Avis" -, title = "The number of furthest neighbors of a finite planar set" -, journal = "Amer. Math. Monthly" -, volume = 91 -, year = 1984 -, pages = "417--420" -, keywords = "combinatorial geometry, proximity" +, author = "D. Avis" +, title = "The number of furthest neighbors of a finite planar set" +, journal = "Amer. Math. Monthly" +, volume = 91 +, year = 1984 +, pages = "417--420" +, keywords = "combinatorial geometry, proximity" } @article{a-wcbem-81 -, author = "D. Avis" -, title = "Worst case bounds for the {Euclidean} matching problem" -, journal = "Comput. Math. Appl." -, volume = 7 -, year = 1981 -, pages = "251--257" -, keywords = "heuristics, worst-case analysis" +, author = "D. Avis" +, title = "Worst case bounds for the {Euclidean} matching problem" +, journal = "Comput. Math. Appl." +, volume = 7 +, year = 1981 +, pages = "251--257" +, keywords = "heuristics, worst-case analysis" } @inproceedings{abdeghz-umpca-93 -, author = "D. Avis and B. Beresford-Smith and L. Devroye and H. ElGindy and E. Gu{\'e}vremont and F. Hurtado and B. Zhu" -, title = "Unoriented {$\Theta$}-Maxima in the Plane" -, booktitle = "Proc. of the 16th Australian Conf. in Comp. Science" -, site = "Brisbane" -, year = 1993 -, update = "98.11 bibrelex" +, author = "D. Avis and B. Beresford-Smith and L. Devroye and H. ElGindy and E. Gu{\'e}vremont and F. Hurtado and B. Zhu" +, title = "Unoriented {$\Theta$}-Maxima in the Plane" +, booktitle = "Proc. of the 16th Australian Conf. in Comp. Science" +, site = "Brisbane" +, year = 1993 +, update = "98.11 bibrelex" } @article{abdeghz-utmp-98 -, author = "D. Avis and B. Beresford-Smith and L. Devroye and H. ElGindy and E. Gu{\'e}vremont and F. Hurtado and B. Zhu" -, title = "Unoriented {$\Theta$}-Maxima in the Plane: {Complexity} and Algorithms" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1998 -, pages = "278--296" -, update = "99.07 smid" +, author = "D. Avis and B. Beresford-Smith and L. Devroye and H. ElGindy and E. Gu{\'e}vremont and F. Hurtado and B. Zhu" +, title = "Unoriented {$\Theta$}-Maxima in the Plane: {Complexity} and Algorithms" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1998 +, pages = "278--296" +, update = "99.07 smid" } @unpublished{abdeghz-ump2 -, author = "D. Avis and B. Beresford-Smith and L. Devroye and H. ElGindy and E. Gu{\'e}vremont and F. Hurtado and B. Zhu" -, title = "Unoriented {$\Theta$}-Maxima in the Plane {II}" -, note = "in preparation" -, update = "98.11 bibrelex" +, author = "D. Avis and B. Beresford-Smith and L. Devroye and H. ElGindy and E. Gu{\'e}vremont and F. Hurtado and B. Zhu" +, title = "Unoriented {$\Theta$}-Maxima in the Plane {II}" +, note = "in preparation" +, update = "98.11 bibrelex" } @incollection{ab-acddv-83 -, author = "David Avis and Binay K. Bhattacharya" -, title = "Algorithms for Computing $d$-dimensional {Voronoi} Diagrams and their Duals" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "159--180" -, keywords = "Voronoi diagrams, $d$-dimensional, linear programming" -, update = "01.04 icking" +, author = "David Avis and Binay K. Bhattacharya" +, title = "Algorithms for Computing $d$-dimensional {Voronoi} Diagrams and their Duals" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "159--180" +, keywords = "Voronoi diagrams, $d$-dimensional, linear programming" +, update = "01.04 icking" } @techreport{abi-cvus-87 -, author = "D. Avis and B. K. Bhattacharya and H. Imai" -, title = "Computing the volume of the union of spheres" -, type = "Technical {Report}" -, number = "SOCS 87.3" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1987 -, precedes = "abi-cvus-88" +, author = "D. Avis and B. K. Bhattacharya and H. Imai" +, title = "Computing the volume of the union of spheres" +, type = "Technical {Report}" +, number = "SOCS 87.3" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1987 +, precedes = "abi-cvus-88" } @article{abi-cvus-88 -, author = "D. Avis and B. K. Bhattacharya and H. Imai" -, title = "Computing the volume of the union of spheres" -, journal = "Visual Comput." -, volume = 3 -, year = 1988 -, pages = "323--328" -, keywords = "volume, spheres, Voronoi diagrams" -, succeeds = "abi-cvus-87" +, author = "D. Avis and B. K. Bhattacharya and H. Imai" +, title = "Computing the volume of the union of spheres" +, journal = "Visual Comput." +, volume = 3 +, year = 1988 +, pages = "323--328" +, keywords = "volume, spheres, Voronoi diagrams" +, succeeds = "abi-cvus-87" } @inproceedings{absstz-sacp-96 -, author = "D. Avis and P. Bose and T. Shermer and J. Snoeyink and G. Toussaint and B. Zhu" -, title = "On the Sectional Area of Convex Polytopes" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C11--C12" -, cites = "c-oaitd-92, cd-icott-87, bdkst-cmotc-96, dj-cccsp-73, k-cpvc-93, s-mv-93, s-labp-92, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "D. Avis and P. Bose and T. Shermer and J. Snoeyink and G. Toussaint and B. Zhu" +, title = "On the Sectional Area of Convex Polytopes" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C11--C12" +, cites = "c-oaitd-92, cd-icott-87, bdkst-cmotc-96, dj-cccsp-73, k-cpvc-93, s-mv-93, s-labp-92, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{ab-hgach-95 -, author = "David Avis and David Bremner" -, title = "How Good are Convex Hull Algorithms?" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "20--28" -, keywords = "vertex enumeration, pivoting" -, cites = "af-pachv-92, bdh-qach-93, bl-cacp-93, b-icp-83, cgaf-gstlm-94, ck-acp-70, c-ochaa-93, c-lp-83, cs-adpch-88, d-cvem-83, f-crmv0-, gkz-drmd-94, h-sretn-91, k-pptrl-74, km-hgisa-72, l-epcrn-88, lt-sptcc-91, l-rtp-91, mrtt-ddm-53, s-chaop-81, s-chdch-86, y-stgd-90, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "David Avis and David Bremner" +, title = "How Good are Convex Hull Algorithms?" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "20--28" +, keywords = "vertex enumeration, pivoting" +, cites = "af-pachv-92, bdh-qach-93, bl-cacp-93, b-icp-83, cgaf-gstlm-94, ck-acp-70, c-ochaa-93, c-lp-83, cs-adpch-88, d-cvem-83, f-crmv0-, gkz-drmd-94, h-sretn-91, k-pptrl-74, km-hgisa-72, l-epcrn-88, lt-sptcc-91, l-rtp-91, mrtt-ddm-53, s-chaop-81, s-chdch-86, y-stgd-90, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{abs-hgach-97 -, author = "D. Avis and D. Bremner and R. Seidel" -, title = "How good are convex hull algorithms?" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "265--302" -, update = "97.07 devillers" +, author = "D. Avis and D. Bremner and R. Seidel" +, title = "How good are convex hull algorithms?" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "265--302" +, update = "97.07 devillers" } @article{ac-nbpr-78 -, author = "D. Avis and V. Chv{\'a}tal" -, title = "Notes on {Bland's} pivoting rule" -, journal = "Math. Programming Study" -, volume = 8 -, year = 1978 -, pages = "24--34" -, update = "97.03 gaertner+salinger" +, author = "D. Avis and V. Chv{\'a}tal" +, title = "Notes on {Bland's} pivoting rule" +, journal = "Math. Programming Study" +, volume = 8 +, year = 1978 +, pages = "24--34" +, update = "97.03 gaertner+salinger" } @article{ads-paghe-88 -, author = "D. Avis and B. Davis and J. M. Steele" -, title = "Probabilistic analysis of a greedy heuristic for {Euclidean} matching" -, journal = "Probab. Engin. Inform. Sci." -, volume = 2 -, year = 1988 -, pages = "143--156" -, update = "93.09 rote" +, author = "D. Avis and B. Davis and J. M. Steele" +, title = "Probabilistic analysis of a greedy heuristic for {Euclidean} matching" +, journal = "Probab. Engin. Inform. Sci." +, volume = 2 +, year = 1988 +, pages = "143--156" +, update = "93.09 rote" } @inproceedings{ad-lecmf-89 -, author = "D. Avis and M. Deza" -, title = "{$L_{1}$} embeddability, complexity, and multicommodity flows" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 30 +, author = "D. Avis and M. Deza" +, title = "{$L_{1}$} embeddability, complexity, and multicommodity flows" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 30 } @techreport{ad-ahdsp-87 -, author = "D. Avis and M. Doskas" -, title = "Algorithms for high dimensional stabbing problems" -, type = "Technical {Report}" -, number = "SOCS 87.2" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1987 -, precedes = "ad-ahdsp-88" +, author = "D. Avis and M. Doskas" +, title = "Algorithms for high dimensional stabbing problems" +, type = "Technical {Report}" +, number = "SOCS 87.2" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1987 +, precedes = "ad-ahdsp-88" } @incollection{ad-ahdsp-88 -, author = "D. Avis and M. Doskas" -, title = "Algorithms for high dimensional stabbing problems" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "199--210" -, keywords = "transversals, hyperplanes, stabbing, polyhedra, linear programming" -, succeeds = "ad-ahdsp-87" -, update = "99.11 bibrelex" +, author = "D. Avis and M. Doskas" +, title = "Algorithms for high dimensional stabbing problems" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "199--210" +, keywords = "transversals, hyperplanes, stabbing, polyhedra, linear programming" +, succeeds = "ad-ahdsp-87" +, update = "99.11 bibrelex" } @article{ad-ahdsp-90 -, author = "D. Avis and M. Doskas" -, title = "Algorithms for high dimensional stabbing problems" -, journal = "Discrete Appl. Math." -, volume = 27 -, year = 1990 -, pages = "59--62" -, update = "97.11 bibrelex" +, author = "D. Avis and M. Doskas" +, title = "Algorithms for high dimensional stabbing problems" +, journal = "Discrete Appl. Math." +, volume = 27 +, year = 1990 +, pages = "59--62" +, update = "97.11 bibrelex" } @article{ae-caps-83 -, author = "D. Avis and H. ElGindy" -, title = "A combinatorial approach to polygon similarity" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-2" -, year = 1983 -, pages = "148--150" -, keywords = "polygons, similarity, pattern matching, visibility graphs" +, author = "D. Avis and H. ElGindy" +, title = "A combinatorial approach to polygon similarity" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-2" +, year = 1983 +, pages = "148--150" +, keywords = "polygons, similarity, pattern matching, visibility graphs" } @article{ae-tpss-87 -, author = "D. Avis and H. ElGindy" -, title = "Triangulating point sets in space" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "99--111" -, keywords = "triangulation, decomposition, three-dimensional, $d$-dimensional, point sets" -, succeeds = "ae-tspss-86" +, author = "D. Avis and H. ElGindy" +, title = "Triangulating point sets in space" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "99--111" +, keywords = "triangulation, decomposition, three-dimensional, $d$-dimensional, point sets" +, succeeds = "ae-tspss-86" } @inproceedings{ae-tspss-86 -, author = "D. Avis and H. ElGindy" -, title = "Triangulating simplicial point sets in space" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "133--141" -, keywords = "triangulation, decomposition, three-dimensional, $d$-dimensional, point sets" -, precedes = "ae-tpss-87" -, cites = "g-cp-67, ps-cgi-85, rs-tchnp-85, ph-chfsp-77, k-osps-83, ZZZ" -, update = "97.11 bibrelex" +, author = "D. Avis and H. ElGindy" +, title = "Triangulating simplicial point sets in space" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "133--141" +, keywords = "triangulation, decomposition, three-dimensional, $d$-dimensional, point sets" +, precedes = "ae-tpss-87" +, cites = "g-cp-67, ps-cgi-85, rs-tchnp-85, ph-chfsp-77, k-osps-83, ZZZ" +, update = "97.11 bibrelex" } @incollection{aes-solac-85 -, author = "D. Avis and H. ElGindy and R. Seidel" -, title = "Simple on-line algorithms for convex polygons" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "23--42" -, keywords = "convex hull, on-line, planar point sets, intersection, polygons" -, annote = "Maintains convex hull of $n$ points in $O(\log n)$ - time per insertion" +, author = "D. Avis and H. ElGindy and R. Seidel" +, title = "Simple on-line algorithms for convex polygons" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "23--42" +, keywords = "convex hull, on-line, planar point sets, intersection, polygons" +, annote = "Maintains convex hull of $n$ points in $O(\log n)$ + time per insertion" } @article{aep-dddsp-91 -, author = "D. Avis and P. Erd{\H o}s and J. Pach" -, title = "Distinct distances determined by subsets of a point set in space" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, year = 1991 -, pages = "1--11" +, author = "D. Avis and P. Erd{\H o}s and J. Pach" +, title = "Distinct distances determined by subsets of a point set in space" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, year = 1991 +, pages = "1--11" } @article{aep-rds-88 -, author = "D. Avis and P. Erd{\H o}s and J. Pach" -, title = "Repeated distances in the space" -, journal = "Graphs Combin." -, volume = 4 -, year = 1988 -, pages = "207--217" -, keywords = "combinatorial geometry, proximity" +, author = "D. Avis and P. Erd{\H o}s and J. Pach" +, title = "Repeated distances in the space" +, journal = "Graphs Combin." +, volume = 4 +, year = 1988 +, pages = "207--217" +, keywords = "combinatorial geometry, proximity" } @article{af-beals-91 -, author = "D. Avis and K. Fukuda" -, title = "A basis enumeration algorithm for linear systems with geometric applications" -, journal = "Appl. Math. Lett." -, volume = 4 -, number = 5 -, year = 1991 -, pages = "39--42" -, keywords = "linear programing, convex hull, oriented matroid" -, update = "95.05 korneenko" +, author = "D. Avis and K. Fukuda" +, title = "A basis enumeration algorithm for linear systems with geometric applications" +, journal = "Appl. Math. Lett." +, volume = 4 +, number = 5 +, year = 1991 +, pages = "39--42" +, keywords = "linear programing, convex hull, oriented matroid" +, update = "95.05 korneenko" } @techreport{af-pachv-90 -, author = "D. Avis and K. Fukuda" -, title = "A Pivoting Algorithm for Convex Hulls and Vertex Enumeration of Arrangements and Polyhedra" -, type = "Technical {Report}" -, number = "B-237" -, institution = "Dept. of Information Science, Tokyo Institute of Technology" -, address = "Tokyo, Japan" -, month = nov -, year = 1990 -, update = "97.11 bibrelex" +, author = "D. Avis and K. Fukuda" +, title = "A Pivoting Algorithm for Convex Hulls and Vertex Enumeration of Arrangements and Polyhedra" +, type = "Technical {Report}" +, number = "B-237" +, institution = "Dept. of Information Science, Tokyo Institute of Technology" +, address = "Tokyo, Japan" +, month = nov +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{af-pachv-91 -, author = "D. Avis and K. Fukuda" -, title = "A pivoting algorithm for convex hulls and vertex enumeration of arrangements and polyhedra" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "98--104" -, precedes = "af-pachv-92" -, cites = "af-pachv-90, b-calp-77, ck-acp-70, c-lp-83, d-cvem-83, eos-calha-86, e-acg-87, eg-tsa-89, f-omp-82, fm-fccm-91, hiiry-owlll-90, mr-scmfa-80, mrtt-ddm-53, s-chdch-86, s-chaop-81, t-cccm-85, t-fccmo-87, t-lqpom-85, w-cefao-87, ZZZ" -, update = "97.11 bibrelex, 93.09 rote" +, author = "D. Avis and K. Fukuda" +, title = "A pivoting algorithm for convex hulls and vertex enumeration of arrangements and polyhedra" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "98--104" +, precedes = "af-pachv-92" +, cites = "af-pachv-90, b-calp-77, ck-acp-70, c-lp-83, d-cvem-83, eos-calha-86, e-acg-87, eg-tsa-89, f-omp-82, fm-fccm-91, hiiry-owlll-90, mr-scmfa-80, mrtt-ddm-53, s-chdch-86, s-chaop-81, t-cccm-85, t-fccmo-87, t-lqpom-85, w-cefao-87, ZZZ" +, update = "97.11 bibrelex, 93.09 rote" } @article{af-pachv-92 -, author = "D. Avis and K. Fukuda" -, title = "A pivoting algorithm for convex hulls and vertex enumeration of arrangements and polyhedra" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "295--313" -, succeeds = "af-pachv-91" -, update = "97.11 bibrelex" +, author = "D. Avis and K. Fukuda" +, title = "A pivoting algorithm for convex hulls and vertex enumeration of arrangements and polyhedra" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "295--313" +, succeeds = "af-pachv-91" +, update = "97.11 bibrelex" } @techreport{af-rse-92 -, author = "D. Avis and K. Fukuda" -, title = "Reverse Search for Enumeration" -, number = "No.~92-5" -, institution = "Tsukuba University, Graduate School of Systems Management, Tokyo, Japan" -, month = apr -, year = 1992 -, comments = "generates all enumerations of triangulations, spanning trees, etc." -, update = "95.01 held" +, author = "D. Avis and K. Fukuda" +, title = "Reverse Search for Enumeration" +, number = "No.~92-5" +, institution = "Tsukuba University, Graduate School of Systems Management, Tokyo, Japan" +, month = apr +, year = 1992 +, comments = "generates all enumerations of triangulations, spanning trees, etc." +, update = "95.01 held" } @article{af-rse-96 -, author = "D. Avis and K. Fukuda" -, title = "Reverse search for enumeration" -, journal = "Discrete Appl. Math." -, volume = 65 -, year = 1996 -, pages = "21--46" -, url = "http://www.ifor.math.ethz.ch/staff/fukuda/fukuda.html" -, update = "98.03 houle, 97.03 pocchiola, 96.05 fukuda" -, annote = "Reverse search is a general exhaustive search technique +, author = "D. Avis and K. Fukuda" +, title = "Reverse search for enumeration" +, journal = "Discrete Appl. Math." +, volume = 65 +, year = 1996 +, pages = "21--46" +, url = "http://www.ifor.math.ethz.ch/staff/fukuda/fukuda.html" +, update = "98.03 houle, 97.03 pocchiola, 96.05 fukuda" +, annote = "Reverse search is a general exhaustive search technique which came out of the new convex hull algorithm by the authors. This technique can be applied to many enumeration problems in computer science, operations research and geometry. @@ -12853,266 +12853,266 @@ @article{af-rse-96 } @article{ag-bkgfh-93 -, author = "D. Avis and V. P. Grishukhin" -, title = "A Bound on the $k$-gonality of Facets of the Hypermetric Cone and Related Complexity Problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 5 -, month = mar -, year = 1993 -, pages = "241--254" -, update = "93.09 held+milone+mitchell" +, author = "D. Avis and V. P. Grishukhin" +, title = "A Bound on the $k$-gonality of Facets of the Hypermetric Cone and Related Complexity Problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 5 +, month = mar +, year = 1993 +, pages = "241--254" +, update = "93.09 held+milone+mitchell" } @article{agt-vbtes-86 -, author = "D. Avis and T. Gum and G. Toussaint" -, title = "Visibility between two edges of a simple polygon" -, journal = "Visual Comput." -, volume = 2 -, number = 6 -, month = dec -, year = 1986 -, pages = "342--357" -, keywords = "weak edge visibility, polygons, convex hull, hidden line problems, Jordan sorting, geometric complexity" +, author = "D. Avis and T. Gum and G. Toussaint" +, title = "Visibility between two edges of a simple polygon" +, journal = "Visual Comput." +, volume = 2 +, number = 6 +, month = dec +, year = 1986 +, pages = "342--357" +, keywords = "weak edge visibility, polygons, convex hull, hidden line problems, Jordan sorting, geometric complexity" } @article{ah-rsig-82 -, author = "D. Avis and J. Horton" -, title = "Remarks on the sphere of influence graphs" -, journal = "Ann. New York Acad. Sci." -, volume = 440 -, year = 1982 -, pages = "323--327" -, keywords = "proximity, geometric graphs" -, update = "95.05 korneenko" +, author = "D. Avis and J. Horton" +, title = "Remarks on the sphere of influence graphs" +, journal = "Ann. New York Acad. Sci." +, volume = 440 +, year = 1982 +, pages = "323--327" +, keywords = "proximity, geometric graphs" +, update = "95.05 korneenko" } @inproceedings{ah-cahti-91 -, author = "D. Avis and M. E. Houle" -, title = "Computational aspects of {Helly}'s theorem and its relatives" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "11--14" -, precedes = "ah-cahti-95" -, cites = "dgk-htir-63, h-umkkm-23, h-tess-91, k-cscb-53, r-mkkde-21, v-etrec-39, ZZZ" -, update = "98.07 bibrelex, 96.09 devillers" +, author = "D. Avis and M. E. Houle" +, title = "Computational aspects of {Helly}'s theorem and its relatives" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "11--14" +, precedes = "ah-cahti-95" +, cites = "dgk-htir-63, h-umkkm-23, h-tess-91, k-cscb-53, r-mkkde-21, v-etrec-39, ZZZ" +, update = "98.07 bibrelex, 96.09 devillers" } @article{ah-cahti-95 -, author = "D. Avis and M. E. Houle" -, title = "Computational aspects of {Helly}'s theorem and its relatives" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "357--367" -, keywords = "computational geometry, convexity, intersection, separation" -, succeeds = "ah-cahti-91" -, update = "96.09 devillers" +, author = "D. Avis and M. E. Houle" +, title = "Computational aspects of {Helly}'s theorem and its relatives" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "357--367" +, keywords = "computational geometry, convexity, intersection, separation" +, succeeds = "ah-cahti-91" +, update = "96.09 devillers" } @article{ai-lram-90 -, author = "D. Avis and H. Imai" -, title = "Locating a robot with angle measurements" -, journal = "J. Symbolic Comput." -, volume = 10 -, number = "3--4" -, year = 1990 -, pages = "311--326" -, update = "95.05 korneenko" +, author = "D. Avis and H. Imai" +, title = "Locating a robot with angle measurements" +, journal = "J. Symbolic Comput." +, volume = 10 +, number = "3--4" +, year = 1990 +, pages = "311--326" +, update = "95.05 korneenko" } @inproceedings{ak-grtmd-96 -, author = "D. Avis and C. M. Kong" -, title = "Generating rooted triangulations with minimum degree four" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "56--61" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "D. Avis and C. M. Kong" +, title = "Generating rooted triangulations with minimum degree four" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "56--61" +, update = "97.03 agarwal, 96.09 mitchell" } @incollection{ar-cmscp-88 -, author = "D. Avis and D. Rappaport" -, title = "Computing monotone simple circuits in the plane" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "13--23" +, author = "D. Avis and D. Rappaport" +, title = "Computing monotone simple circuits in the plane" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "13--23" } @inproceedings{ar-clecs-85 -, author = "D. Avis and D. Rappaport" -, title = "Computing the largest empty convex subset of a set of points" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "161--167" -, keywords = "planar point sets, convex subsets, discrete geometry" -, precedes = "deo-secp-88, deo-secp-90" -, cites = "ck-flcs-80, ea-lacvp-81, es-cpg-35, es-sepeg-60, e-peac-73, gp-gs-82, h-kfiep-78, h-snec7-83, m-rpdg-81, rt-slhla-83, s-pcg-77, ZZZ" -, update = "97.11 bibrelex, 93.09 milone+mitchell" +, author = "D. Avis and D. Rappaport" +, title = "Computing the largest empty convex subset of a set of points" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "161--167" +, keywords = "planar point sets, convex subsets, discrete geometry" +, precedes = "deo-secp-88, deo-secp-90" +, cites = "ck-flcs-80, ea-lacvp-81, es-cpg-35, es-sepeg-60, e-peac-73, gp-gs-82, h-kfiep-78, h-snec7-83, m-rpdg-81, rt-slhla-83, s-pcg-77, ZZZ" +, update = "97.11 bibrelex, 93.09 milone+mitchell" } @article{arw-lbls-89 -, author = "D. Avis and J.-M. Robert and R. Wenger" -, title = "Lower bounds for line stabbing" -, journal = "Inform. Process. Lett." -, volume = 33 -, year = 1989 -, pages = "59--62" +, author = "D. Avis and J.-M. Robert and R. Wenger" +, title = "Lower bounds for line stabbing" +, journal = "Inform. Process. Lett." +, volume = 33 +, year = 1989 +, pages = "59--62" } @article{at-eadps-81 -, author = "D. Avis and G. T. Toussaint" -, title = "An efficient algorithm for decomposing a polygon into star-shaped polygons" -, journal = "Pattern Recogn." -, volume = 13 -, year = 1981 -, pages = "395--398" -, keywords = "decomposition, polygons, star-shaped, coloring" -, annote = "Uses Fisk's constructive proof of Chvatal's theorem: - for every $n$-gon there is a decomposition into - $\lfloor n/3 \rfloor$ star shaped pieces. Proceeds by - colouring a triangulation with three colours." +, author = "D. Avis and G. T. Toussaint" +, title = "An efficient algorithm for decomposing a polygon into star-shaped polygons" +, journal = "Pattern Recogn." +, volume = 13 +, year = 1981 +, pages = "395--398" +, keywords = "decomposition, polygons, star-shaped, coloring" +, annote = "Uses Fisk's constructive proof of Chvatal's theorem: + for every $n$-gon there is a decomposition into + $\lfloor n/3 \rfloor$ star shaped pieces. Proceeds by + colouring a triangulation with three colours." } @article{at-oadvp-81 -, author = "D. Avis and G. T. Toussaint" -, title = "An optimal algorithm for determining the visibility of a polygon from an edge" -, journal = "IEEE Trans. Comput." -, volume = "C-30" -, number = 12 -, year = 1981 -, pages = "910--1014" -, keywords = "combinatorial geometry, design of algorithms, construction, incrementation, geometric transformations, worst-case analysis, Voronoi diagrams, two-dimensional, three-dimensional, weighted" -, update = "98.07 bibrelex" +, author = "D. Avis and G. T. Toussaint" +, title = "An optimal algorithm for determining the visibility of a polygon from an edge" +, journal = "IEEE Trans. Comput." +, volume = "C-30" +, number = 12 +, year = 1981 +, pages = "910--1014" +, keywords = "combinatorial geometry, design of algorithms, construction, incrementation, geometric transformations, worst-case analysis, Voronoi diagrams, two-dimensional, three-dimensional, weighted" +, update = "98.07 bibrelex" } @article{atb-mdcp-82 -, author = "D. Avis and G. T. Toussaint and B. K. Bhattacharya" -, title = "On the multimodality of distances in convex polygons" -, journal = "Comput. Math. Appl." -, volume = 8 -, year = 1982 -, pages = "153--156" -, keywords = "discrete geometry, diameter, planar point sets" +, author = "D. Avis and G. T. Toussaint and B. K. Bhattacharya" +, title = "On the multimodality of distances in convex polygons" +, journal = "Comput. Math. Appl." +, volume = 8 +, year = 1982 +, pages = "153--156" +, keywords = "discrete geometry, diameter, planar point sets" } @inproceedings{aw-alts-87 -, author = "D. Avis and R. Wenger" -, title = "Algorithms for line transversals in space" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "300--307" -, precedes = "aw-plts-88" -, cites = "a-dp-86, ad-ahdsp-87, b-mag-69, dgk-htir-63, es-mnwsn-87, e-ftssg-85, emprww-sls-82, et-eaide-85, gp-htthd-86, hdk-cgp-64, klz-gpcs-85, k-tsct-80, ps-cgi-85, w-ublo-86, ZZZ" -, update = "98.03 bibrelex" +, author = "D. Avis and R. Wenger" +, title = "Algorithms for line transversals in space" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "300--307" +, precedes = "aw-plts-88" +, cites = "a-dp-86, ad-ahdsp-87, b-mag-69, dgk-htir-63, es-mnwsn-87, e-ftssg-85, emprww-sls-82, et-eaide-85, gp-htthd-86, hdk-cgp-64, klz-gpcs-85, k-tsct-80, ps-cgi-85, w-ublo-86, ZZZ" +, update = "98.03 bibrelex" } @article{aw-plts-88 -, author = "D. Avis and R. Wenger" -, title = "Polyhedral line transversals in space" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "257--265" -, succeeds = "aw-alts-87" +, author = "D. Avis and R. Wenger" +, title = "Polyhedral line transversals in space" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "257--265" +, succeeds = "aw-alts-87" } @article{aw-plts-89 -, author = "D. Avis and R. Wenger" -, title = "Polyhedral line traversals in space" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, update = "98.11 bibrelex" +, author = "D. Avis and R. Wenger" +, title = "Polyhedral line traversals in space" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, update = "98.11 bibrelex" } @article{ah-g-66 -, author = "S. Avital and H. Hanani" -, title = "Graphs" -, journal = "Gilyonot Lematematika" -, volume = 3 -, year = 1966 -, pages = "2--8" -, note = "In Hebrew" -, update = "98.03 bibrelex" +, author = "S. Avital and H. Hanani" +, title = "Graphs" +, journal = "Gilyonot Lematematika" +, volume = 3 +, year = 1966 +, pages = "2--8" +, note = "In Hebrew" +, update = "98.03 bibrelex" } @phdthesis{a-peddf-89 -, author = "Francis Avnaim" -, title = "Placement et d{\'e}placement de formes rigides ou articul{\'e}es" -, type = "Th{\`e}se de Doctorat en Sciences" -, school = "Uni\-ver\-sit{\'e} de Franche-Comt{\'e}" -, address = "Besan\c{c}on, France" -, year = 1989 -, keywords = "doctoral thesis" -, update = "99.07 devillers, 93.09 rote, 93.05 jones" +, author = "Francis Avnaim" +, title = "Placement et d{\'e}placement de formes rigides ou articul{\'e}es" +, type = "Th{\`e}se de Doctorat en Sciences" +, school = "Uni\-ver\-sit{\'e} de Franche-Comt{\'e}" +, address = "Besan\c{c}on, France" +, year = 1989 +, keywords = "doctoral thesis" +, update = "99.07 devillers, 93.09 rote, 93.05 jones" } @incollection{ab-pptr-88 -, author = "Francis Avnaim and Jean-Daniel Boissonnat" -, title = "Polygon placement under translation and rotation" -, booktitle = "Proc. 5th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 294 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "322--333" -, update = "99.07 devillers" +, author = "Francis Avnaim and Jean-Daniel Boissonnat" +, title = "Polygon placement under translation and rotation" +, booktitle = "Proc. 5th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 294 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "322--333" +, update = "99.07 devillers" } @article{ab-pptr-89 -, author = "Francis Avnaim and Jean-Daniel Boissonnat" -, title = "Polygon placement under translation and rotation" -, journal = "RAIRO Inform. Theor." -, volume = 23 -, year = 1989 -, pages = "5--28" -, update = "99.07 devillers, 98.07 bibrelex, 95.05 korneenko, 95.01 devillers" +, author = "Francis Avnaim and Jean-Daniel Boissonnat" +, title = "Polygon placement under translation and rotation" +, journal = "RAIRO Inform. Theor." +, volume = 23 +, year = 1989 +, pages = "5--28" +, update = "99.07 devillers, 98.07 bibrelex, 95.05 korneenko, 95.01 devillers" } @inproceedings{ab-pempc-89 -, author = "Francis Avnaim and Jean-Daniel Boissonnat" -, title = "Practical exact motion planning of a class of robots with three degrees of freedom" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 19 -, update = "99.07 devillers" +, author = "Francis Avnaim and Jean-Daniel Boissonnat" +, title = "Practical exact motion planning of a class of robots with three degrees of freedom" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 19 +, update = "99.07 devillers" } @inproceedings{ab-scsp-87 -, author = "Francis Avnaim and Jean-Daniel Boissonnat" -, title = "Simultaneous containment of several polygons" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "242--250" -, cites = "b-srpcs-86, bfm-ipc-84, c-pcp-83, f-fapct-85, grs-kfcg-83, gs-ccrs-86, hm-ftprs-85, hmmn-sssic-84, ks-eapcf-85, oww-fabmo-85, ps-cgi-85, ss-pmp3c-82, ww-tsoab-86, y-cmsd-84, ZZZ" -, update = "99.07 devillers, 98.03 bibrelex" +, author = "Francis Avnaim and Jean-Daniel Boissonnat" +, title = "Simultaneous containment of several polygons" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "242--250" +, cites = "b-srpcs-86, bfm-ipc-84, c-pcp-83, f-fapct-85, grs-kfcg-83, gs-ccrs-86, hm-ftprs-85, hmmn-sssic-84, ks-eapcf-85, oww-fabmo-85, ps-cgi-85, ss-pmp3c-82, ww-tsoab-86, y-cmsd-84, ZZZ" +, update = "99.07 devillers, 98.03 bibrelex" } @techreport{ab-pcp1s-87 -, author = "Francis Avnaim and Jean-Daniel Boissonnat" -, title = "The polygon containment problem: 1. Simultaneous containment under translation" -, type = "Technical {Report}" -, number = 689 -, institution = "INRIA Sophia-Antipolis" -, month = jun -, year = 1987 -, update = "99.07 devillers, 97.11 bibrelex" +, author = "Francis Avnaim and Jean-Daniel Boissonnat" +, title = "The polygon containment problem: 1. Simultaneous containment under translation" +, type = "Technical {Report}" +, number = 689 +, institution = "INRIA Sophia-Antipolis" +, month = jun +, year = 1987 +, update = "99.07 devillers, 97.11 bibrelex" } @techreport{abdpy-esdus-94 -, author = "Francis Avnaim and Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata and Mariette Yvinec" -, title = "Evaluating signs of determinants using single-precision arithmetic" -, type = "Research {Report}" -, number = 2306 -, institution = "INRIA" -, address = "BP93, 06902 Sophia-Antipolis, France" -, year = 1994 -, precedes = "abdpy-esdus-97" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" -, abstract = "We propose a method to evaluate signs of $2\times 2$ and +, author = "Francis Avnaim and Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata and Mariette Yvinec" +, title = "Evaluating signs of determinants using single-precision arithmetic" +, type = "Research {Report}" +, number = 2306 +, institution = "INRIA" +, address = "BP93, 06902 Sophia-Antipolis, France" +, year = 1994 +, precedes = "abdpy-esdus-97" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, abstract = "We propose a method to evaluate signs of $2\times 2$ and $3\times 3$ determinants with $b$-bit integer entries using only $b$ and $(b+1)$-bit arithmetic respectively. This algorithm has numerous applications in geometric computation and provides a general and practical @@ -13122,231 +13122,231 @@ @techreport{abdpy-esdus-94 } @article{abdpy-esdus-97 -, author = "Francis Avnaim and Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata and Mariette Yvinec" -, title = "Evaluating signs of determinants using single-precision arithmetic" -, journal = "Algorithmica" -, volume = 17 -, number = 2 -, year = 1997 -, pages = "111--132" -, url = "https://hal.inria.fr/inria-00090613" -, succeeds = "abdpy-esdus-94, abdpy-enmcs-95" -, cites = "bjmm-lsicg-93, c-sede-92, fm-nsala-91, f-nsa2d-92, f-smpst-89, fv-eeacg-93, gss-egbra-89, gy-frcg-86, hhk-rsops-89, kln-edtur-91, m-dpggt-89, m-vigau-88a, ps-cgi-85, si-gafpa-88, v-cca-79" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.07 tamassia, 97.11 bibrelex, 97.03 devillers" -, abstract = "We propose a method to evaluate signs of $2\times 2$ and $3\times 3$ determinants with $b$-bit integer entries using only $b$ and $(b+1)$-bit arithmetic respectively. This algorithm has numerous applications in geometric computation and provides a general and practical approach to robustness. The algorithm has been implemented and compared with other exact computation methods." +, author = "Francis Avnaim and Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata and Mariette Yvinec" +, title = "Evaluating signs of determinants using single-precision arithmetic" +, journal = "Algorithmica" +, volume = 17 +, number = 2 +, year = 1997 +, pages = "111--132" +, url = "https://inria.hal.science/inria-00090613" +, succeeds = "abdpy-esdus-94, abdpy-enmcs-95" +, cites = "bjmm-lsicg-93, c-sede-92, fm-nsala-91, f-nsa2d-92, f-smpst-89, fv-eeacg-93, gss-egbra-89, gy-frcg-86, hhk-rsops-89, kln-edtur-91, m-dpggt-89, m-vigau-88a, ps-cgi-85, si-gafpa-88, v-cca-79" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.07 tamassia, 97.11 bibrelex, 97.03 devillers" +, abstract = "We propose a method to evaluate signs of $2\times 2$ and $3\times 3$ determinants with $b$-bit integer entries using only $b$ and $(b+1)$-bit arithmetic respectively. This algorithm has numerous applications in geometric computation and provides a general and practical approach to robustness. The algorithm has been implemented and compared with other exact computation methods." } @inproceedings{abdpy-enmcs-95 -, author = "Francis Avnaim and Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata and Mariette Yvinec" -, title = "Evaluation of a new method to compute signs of determinants" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C16--C17" -, url = "https://hal.inria.fr/inria-00090613" -, precedes = "abdpy-esdus-97" -, cites = "ZZZ" -, update = "99.11 bibrelex, 99.07 devillers, 98.03 bibrelex, 97.03 devillers, 96.01 devillers, 95.05 devillers" +, author = "Francis Avnaim and Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata and Mariette Yvinec" +, title = "Evaluation of a new method to compute signs of determinants" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C16--C17" +, url = "https://inria.hal.science/inria-00090613" +, precedes = "abdpy-esdus-97" +, cites = "ZZZ" +, update = "99.11 bibrelex, 99.07 devillers, 98.03 bibrelex, 97.03 devillers, 96.01 devillers, 95.05 devillers" } @inproceedings{abf-pempa-88 -, author = "Francis Avnaim and Jean-Daniel Boissonnat and Bernard Faverjon" -, title = "A practical exact motion planning algorithm for polygonal objects amidst polygonal obstacles" -, booktitle = "Proc. 5th IEEE Internat. Conf. Robot. Autom." -, year = 1988 -, pages = "1656--1661" -, update = "99.07 devillers" +, author = "Francis Avnaim and Jean-Daniel Boissonnat and Bernard Faverjon" +, title = "A practical exact motion planning algorithm for polygonal objects amidst polygonal obstacles" +, booktitle = "Proc. 5th IEEE Internat. Conf. Robot. Autom." +, year = 1988 +, pages = "1656--1661" +, update = "99.07 devillers" } @incollection{abf-pempa-89 -, author = "Francis Avnaim and Jean-Daniel Boissonnat and Bernard Faverjon" -, title = "A practical exact motion planning algorithm for polygonal objects amidst polygonal obstacles" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 391 -, year = 1989 -, pages = "67--86" -, keywords = "motion planning" -, update = "99.07 devillers, 95.05 korneenko" +, author = "Francis Avnaim and Jean-Daniel Boissonnat and Bernard Faverjon" +, title = "A practical exact motion planning algorithm for polygonal objects amidst polygonal obstacles" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 391 +, year = 1989 +, pages = "67--86" +, keywords = "motion planning" +, update = "99.07 devillers, 95.05 korneenko" } @incollection{ak-srtat-89 -, author = "J. Avro and D. Kirk" -, title = "A survey of ray tracing acceleration techniques" -, editor = "A. Glassner" -, booktitle = "An Introduction to Ray Tracing" -, publisher = "Academic Press" -, address = "San Diego, CA" -, year = 1989 -, pages = "201--262" -, isbn = "0-12-286160-4" -, update = "98.11 bibrelex, 98.03 bibrelex+mitchell" +, author = "J. Avro and D. Kirk" +, title = "A survey of ray tracing acceleration techniques" +, editor = "A. Glassner" +, booktitle = "An Introduction to Ray Tracing" +, publisher = "Academic Press" +, address = "San Diego, CA" +, year = 1989 +, pages = "201--262" +, isbn = "0-12-286160-4" +, update = "98.11 bibrelex, 98.03 bibrelex+mitchell" } @article{a-cns-85 -, author = "B. Awerbuch" -, title = "Complexity of network synchronization" -, journal = "J. ACM" -, volume = "??" -, year = 1985 -, pages = "804--823" -, update = "97.11 bibrelex" +, author = "B. Awerbuch" +, title = "Complexity of network synchronization" +, journal = "J. ACM" +, volume = "??" +, year = 1985 +, pages = "804--823" +, update = "97.11 bibrelex" } @techreport{aabv-iagmw-94 -, author = "B. Awerbuch and Y. Azar and A. Blum and S. Vempala" -, title = "Improved approximation guarantees for minimum-weight $k$-trees and prize-collecting salesmen" -, number = "CMU-CS-94-173" -, institution = "Dept. Computer Science, Carnegie-Mellon University" -, address = "Pittsburgh, PA, 15213" -, month = aug -, year = 1994 -, update = "95.01 mitchell" +, author = "B. Awerbuch and Y. Azar and A. Blum and S. Vempala" +, title = "Improved approximation guarantees for minimum-weight $k$-trees and prize-collecting salesmen" +, number = "CMU-CS-94-173" +, institution = "Dept. Computer Science, Carnegie-Mellon University" +, address = "Pittsburgh, PA, 15213" +, month = aug +, year = 1994 +, update = "95.01 mitchell" } @inproceedings{aabv-iagmw-95 -, author = "B. Awerbuch and Y. Azar and A. Blum and S. Vempala" -, title = "Improved approximation guarantees for minimum-weight $k$-trees and prize-collecting salesmen" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC 95" -, year = 1995 -, pages = "277--283" -, succeeds = "aabv-iagmw-94" -, update = "99.07 smid, 98.07 mitchell, 98.03 bibrelex" +, author = "B. Awerbuch and Y. Azar and A. Blum and S. Vempala" +, title = "Improved approximation guarantees for minimum-weight $k$-trees and prize-collecting salesmen" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC 95" +, year = 1995 +, pages = "277--283" +, succeeds = "aabv-iagmw-94" +, update = "99.07 smid, 98.07 mitchell, 98.03 bibrelex" } @article{aabv-nagmw-98 -, author = "B. Awerbuch and Y. Azar and A. Blum and S. Vempala" -, title = "New approximation guarantees for minimum-weight $k$-trees and prize-collecting salesmen" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1998 -, pages = "254--262" -, update = "99.07 smid" +, author = "B. Awerbuch and Y. Azar and A. Blum and S. Vempala" +, title = "New approximation guarantees for minimum-weight $k$-trees and prize-collecting salesmen" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1998 +, pages = "254--262" +, update = "99.07 smid" } @article{abcp-nltcs-98 -, author = "B. Awerbuch and B. Berger and L. Cowen and D. Peleg" -, title = "Near-linear time construction of sparse neighborhood covers" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1998 -, pages = "263--277" -, update = "99.07 smid" +, author = "B. Awerbuch and B. Berger and L. Cowen and D. Peleg" +, title = "Near-linear time construction of sparse neighborhood covers" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1998 +, pages = "263--277" +, update = "99.07 smid" } @inproceedings{ap-sp-90 -, author = "B. Awerbuch and D. Peleg" -, title = "Sparse partitions" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "503--513" -, update = "97.11 bibrelex" +, author = "B. Awerbuch and D. Peleg" +, title = "Sparse partitions" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "503--513" +, update = "97.11 bibrelex" } @book{a-avmrs-91 -, author = "N. Ayache" -, title = "Artificial Vision for Mobile Robots: Stereo Vision and Multisensory Perception" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1991 -, update = "97.11 bibrelex" +, author = "N. Ayache" +, title = "Artificial Vision for Mobile Robots: Stereo Vision and Multisensory Perception" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1991 +, update = "97.11 bibrelex" } @incollection{abcglms-stai3-90 -, author = "N. Ayache and J. D. Boissonnat and L. Cohen and B. Geiger and J. Levy-Vehel and O. Monga and P. Sander" -, title = "Steps toward the automatic interpretation of 3{D} images" -, editor = "K. H. H{\"o}hne and H. Fuchs and S. M. Pizer" -, booktitle = "3D Imaging in Medicine" -, series = "NATO ASI" -, volume = "F60" -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "107--120" -, update = "93.09 devillers+rote" +, author = "N. Ayache and J. D. Boissonnat and L. Cohen and B. Geiger and J. Levy-Vehel and O. Monga and P. Sander" +, title = "Steps toward the automatic interpretation of 3{D} images" +, editor = "K. H. H{\"o}hne and H. Fuchs and S. M. Pizer" +, booktitle = "3D Imaging in Medicine" +, series = "NATO ASI" +, volume = "F60" +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "107--120" +, update = "93.09 devillers+rote" } @article{af-ersmg-87 -, author = "N. Ayache and B. Faverjon" -, title = "Efficient registration of stereo by matching graph descriptors of edge segments" -, journal = "Internat. J. Comput Vision" -, volume = "??" -, year = 1987 -, pages = "107--131" -, update = "97.11 bibrelex" +, author = "N. Ayache and B. Faverjon" +, title = "Efficient registration of stereo by matching graph descriptors of edge segments" +, journal = "Internat. J. Comput Vision" +, volume = "??" +, year = 1987 +, pages = "107--131" +, update = "97.11 bibrelex" } @article{abjn-ormnd-85 -, author = "D. Ayala and P. Brunet and R. Juan and I. Navazo" -, title = "Object representation by means of nominal division quadtrees" -, journal = "ACM Trans. Graph." -, volume = 4 -, number = 1 -, year = 1985 -, pages = "41--59" +, author = "D. Ayala and P. Brunet and R. Juan and I. Navazo" +, title = "Object representation by means of nominal division quadtrees" +, journal = "ACM Trans. Graph." +, volume = 4 +, number = 1 +, year = 1985 +, pages = "41--59" } @inproceedings{adfqr-ndstd-94 -, author = "R. Ayala and E. Dom{\'\i}nguez and A. R. Franc{\'e}s and A. Quintero and J. Rubio" -, title = "{$N$}-Dimensional Separation Theorems in Digital Topology" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "29--32" -, update = "00.11 smid, 00.07 icking" +, author = "R. Ayala and E. Dom{\'\i}nguez and A. R. Franc{\'e}s and A. Quintero and J. Rubio" +, title = "{$N$}-Dimensional Separation Theorems in Digital Topology" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "29--32" +, update = "00.11 smid, 00.07 icking" } @inproceedings{ai-patgt-97 -, author = "Cavit Aydin and Doug Ierardi" -, title = "Partitioning Algorithms for Transportation Graphs and their Applications to Routing" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "245--250" -, update = "97.11 jones" +, author = "Cavit Aydin and Doug Ierardi" +, title = "Partitioning Algorithms for Transportation Graphs and their Applications to Routing" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "245--250" +, update = "97.11 jones" } @article{a-lbimt-94 -, author = "Yossi Azar" -, title = "Lower Bounds for Insertion Methods for {TSP}" -, journal = "Combinatorics, Probability and Computing" -, volume = 3 -, year = 1994 -, pages = "285--292" -, update = "98.03 mitchell" -, annote = "See also \cite{bkp-naimy-94}; Bafna et al independently +, author = "Yossi Azar" +, title = "Lower Bounds for Insertion Methods for {TSP}" +, journal = "Combinatorics, Probability and Computing" +, volume = 3 +, year = 1994 +, pages = "285--292" +, update = "98.03 mitchell" +, annote = "See also \cite{bkp-naimy-94}; Bafna et al independently discovered the same result." } @article{ae-tdp-97 -, author = "Yossi Azar and Leah Epstein" -, title = "On Two Dimensional Packing" -, journal = "J. Algorithms" -, volume = 25 -, number = 2 -, month = nov -, year = 1997 -, pages = "290--310" -, keywords = "bin packing, rectangles, boxes, approximation algorithm" -, update = "98.03 mitchell" +, author = "Yossi Azar and Leah Epstein" +, title = "On Two Dimensional Packing" +, journal = "J. Algorithms" +, volume = 25 +, number = 2 +, month = nov +, year = 1997 +, pages = "290--310" +, keywords = "bin packing, rectangles, boxes, approximation algorithm" +, update = "98.03 mitchell" } @article{amm-cgcap-93 -, author = "A. S. Azarenok and V. N. Martynchik and N. N. Metel'skii" -, title = "Computation of generalized convex approximations of planar geometric objects" -, journal = "Comp. Maths Math. Phys. (English translation of Zhurnal Vychislitelnoi Matematiki i Matematicheskoi Fiziki)" -, volume = 33 -, number = 12 -, year = 1993 -, pages = "1641--1651" -, keywords = "shape approximation, generalized convexity, visibility, isothetic domain, $S-$convex hull, $S-$convex approximation" -, update = "98.07 bibrelex, 95.01 korneenko" -, annote = "The author's notion of $S-$convex hull for an isothetic +, author = "A. S. Azarenok and V. N. Martynchik and N. N. Metel'skii" +, title = "Computation of generalized convex approximations of planar geometric objects" +, journal = "Comp. Maths Math. Phys. (English translation of Zhurnal Vychislitelnoi Matematiki i Matematicheskoi Fiziki)" +, volume = 33 +, number = 12 +, year = 1993 +, pages = "1641--1651" +, keywords = "shape approximation, generalized convexity, visibility, isothetic domain, $S-$convex hull, $S-$convex approximation" +, update = "98.07 bibrelex, 95.01 korneenko" +, annote = "The author's notion of $S-$convex hull for an isothetic domain is in other words the minimal externally isothetically visible hull. An $O(rn^3)$ time $O(rn^2)$ space algorithm for $r-$vertex $S-$convex approximation of miminal area of an $n-$vertex isothetic domain is given." -, abstract = "Using generalizations of the concept of convexity, +, abstract = "Using generalizations of the concept of convexity, a technique is described for approximating polygonal domains by simplifying their geometric shape. An algorithm of polynomial complexity is obtained for computing a generalized-convex @@ -13358,831 +13358,831 @@ @article{amm-cgcap-93 } @inproceedings{bw-acmrs-92 -, author = "J. H. B{\/o}hn and M. J. Wozny" -, title = "Automatic {CAD}-model repair: {Shell}-closure" -, booktitle = "Proc. Sympos. on Solid Freeform Fabrication" -, site = "Austin, TX" -, organization = "Dept. Mech. Eng., Univ. Texas Austin" -, year = 1992 -, pages = "86--94" -, update = "98.07 bibrelex" +, author = "J. H. B{\/o}hn and M. J. Wozny" +, title = "Automatic {CAD}-model repair: {Shell}-closure" +, booktitle = "Proc. Sympos. on Solid Freeform Fabrication" +, site = "Austin, TX" +, organization = "Dept. Mech. Eng., Univ. Texas Austin" +, year = 1992 +, pages = "86--94" +, update = "98.07 bibrelex" } @techreport{bf-lamcp-88 -, author = "L. Babai and P. Frankl" -, title = "Linear Algebra Methods in Combinatorics, Part {I}" -, type = "Technical {Report}" -, institution = "Univ. Chicago" -, address = "Chicago, IL" -, year = 1988 -, update = "98.03 bibrelex" +, author = "L. Babai and P. Frankl" +, title = "Linear Algebra Methods in Combinatorics, Part {I}" +, type = "Technical {Report}" +, institution = "Univ. Chicago" +, address = "Chicago, IL" +, year = 1988 +, update = "98.03 bibrelex" } @article{bjmadh-lcff-88 -, author = "L. Babai and B. Just and F. {Meyer auf der Heide}" -, title = "On the limits of computations with the floor function" -, journal = "Inform. Comput." -, volume = 78 -, number = 2 -, year = 1988 -, pages = "99--108" -, keywords = "lower bounds, computational complexity" -, update = "95.05 korneenko" +, author = "L. Babai and B. Just and F. {Meyer auf der Heide}" +, title = "On the limits of computations with the floor function" +, journal = "Inform. Comput." +, volume = 78 +, number = 2 +, year = 1988 +, pages = "99--108" +, keywords = "lower bounds, computational complexity" +, update = "95.05 korneenko" } @inproceedings{bsw-cplhp-97 -, author = "Mark Babikov and Diane Souvaine and Rephael Wenger" -, title = "Constructing Piecewise Linear Homeomorphisms of Polygons with Holes" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "6--10" -, update = "97.11 jones" +, author = "Mark Babikov and Diane Souvaine and Rephael Wenger" +, title = "Constructing Piecewise Linear Homeomorphisms of Polygons with Holes" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "6--10" +, update = "97.11 jones" } @article{ba-acfem-76 -, author = "I. Babuska and A. K. Aziz" -, title = "On the angle condition in the finite element method" -, journal = "SIAM J. Numer. Anal." -, volume = 13 -, year = 1976 -, pages = "214--227" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "I. Babuska and A. K. Aziz" +, title = "On the angle condition in the finite element method" +, journal = "SIAM J. Numer. Anal." +, volume = 13 +, year = 1976 +, pages = "214--227" +, update = "98.11 bibrelex, 97.11 bibrelex" } @article{bb-3drcg-78 -, author = "N. Badler and R. Bajcsy" -, title = "$3$-d representation for computer graphics and computer vision" -, journal = "Comput. Graph. Image Process." -, volume = 12 -, year = 1978 -, pages = "153--160" +, author = "N. Badler and R. Bajcsy" +, title = "$3$-d representation for computer graphics and computer vision" +, journal = "Comput. Graph. Image Process." +, volume = 12 +, year = 1978 +, pages = "153--160" } @article{bsc-ctsv-99 -, author = "N. Baek and S.-Y. Shin and K.-Y. Chwa" -, title = "On Computing Translational Swept Volumes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, number = 3 -, month = jun -, year = 1999 -, pages = "293--317" -, update = "99.07 held" +, author = "N. Baek and S.-Y. Shin and K.-Y. Chwa" +, title = "On Computing Translational Swept Volumes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, number = 3 +, month = jun +, year = 1999 +, pages = "293--317" +, update = "99.07 held" } @article{bsc-tdtsc-00 -, author = "N. Baek and S.-Y. Shin and K.-Y. Chwa" -, title = "Three-dimensional topological sweep for computing rotational swept volumes of polyhedral objects" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "131--156" -, update = "00.11 smid, 00.07 smid" +, author = "N. Baek and S.-Y. Shin and K.-Y. Chwa" +, title = "Three-dimensional topological sweep for computing rotational swept volumes of polyhedral objects" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "131--156" +, update = "00.11 smid, 00.07 smid" } @article{beh-gms-79 -, author = "A. Baer and C. Eastman and M. Henrion" -, title = "Geometric Modeling: {A} Survey" -, journal = "CAD" -, volume = 11 -, number = 5 -, month = sep -, year = 1979 -, pages = "253--272" -, update = "97.11 bibrelex" +, author = "A. Baer and C. Eastman and M. Henrion" +, title = "Geometric Modeling: {A} Survey" +, journal = "CAD" +, volume = 11 +, number = 5 +, month = sep +, year = 1979 +, pages = "253--272" +, update = "97.11 bibrelex" } @incollection{b-ssar-89 -, author = "R. {Baeza-Yates}" -, title = "String searching algorthms revisited" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, year = 1989 -, pages = "75--96" -, keywords = "searching, string matching" -, update = "95.05 korneenko" +, author = "R. {Baeza-Yates}" +, title = "String searching algorthms revisited" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, year = 1989 +, pages = "75--96" +, keywords = "searching, string matching" +, update = "95.05 korneenko" } @article{bcr-sp-93 -, author = "R. Baeza-Yates and J. Culberson and G. Rawlins" -, title = "Searching in the plane" -, journal = "Inform. Comput." -, volume = 106 -, year = 1993 -, pages = "234--252" -, update = "97.03 icking" +, author = "R. Baeza-Yates and J. Culberson and G. Rawlins" +, title = "Searching in the plane" +, journal = "Inform. Comput." +, volume = 106 +, year = 1993 +, pages = "234--252" +, update = "97.03 icking" } @incollection{br-fatdm-90 -, author = "R. {Baeza-Yates} and M. Regnier" -, title = "Fast algorithms for two-dimensional and multiple pattern matching" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, year = 1990 -, pages = "332--247" -, keywords = "searching, pattern matching" -, update = "95.05 korneenko" +, author = "R. {Baeza-Yates} and M. Regnier" +, title = "Fast algorithms for two-dimensional and multiple pattern matching" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, year = 1990 +, pages = "332--247" +, keywords = "searching, pattern matching" +, update = "95.05 korneenko" } @article{bs-psp-95 -, author = "R. {Baeza-Yates} and R. Schott" -, title = "Parallel searching in the plane" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "143--154" -, update = "96.09 devillers" +, author = "R. {Baeza-Yates} and R. Schott" +, title = "Parallel searching in the plane" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "143--154" +, update = "96.09 devillers" } @article{bkp-naimy-94 -, author = "Vineet Bafna and Bala Kalyanasundaram and Kirk Pruhs" -, title = "Not All Insertion Methods Yield Constant Approximate Tours in the {Euclidean} Plane" -, journal = "Theoret. Comput. Sci." -, volume = 125 -, year = 1994 -, pages = "345--353" -, update = "98.03 mitchell" -, annote = "See also \cite{a-lbimt-94}; Azar independently +, author = "Vineet Bafna and Bala Kalyanasundaram and Kirk Pruhs" +, title = "Not All Insertion Methods Yield Constant Approximate Tours in the {Euclidean} Plane" +, journal = "Theoret. Comput. Sci." +, volume = 125 +, year = 1994 +, pages = "345--353" +, update = "98.03 mitchell" +, annote = "See also \cite{a-lbimt-94}; Azar independently discovered the same result." } @article{b-bdce-86 -, author = "V. Bagatelj" -, title = "On the balanced divide-and-conquer equation" -, journal = "Internat. J. Comput. Math." -, volume = 19 -, number = "3--4" -, year = 1986 -, pages = "259--266" -, keywords = "divide and conquer" -, update = "95.05 korneenko" +, author = "V. Bagatelj" +, title = "On the balanced divide-and-conquer equation" +, journal = "Internat. J. Comput. Math." +, volume = 19 +, number = "3--4" +, year = 1986 +, pages = "259--266" +, keywords = "divide and conquer" +, update = "95.05 korneenko" } @techreport{b-ip-?? -, author = "F. Bagemihl" -, title = "On indecomposable polyhedra" -, type = "Report" -, number = "??" -, institution = "Univ. Rochester" -, address = "Rochester, NY" -, year = "??" -, precedes = "b-ip-48a" -, update = "98.11 bibrelex" +, author = "F. Bagemihl" +, title = "On indecomposable polyhedra" +, type = "Report" +, number = "??" +, institution = "Univ. Rochester" +, address = "Rochester, NY" +, year = "??" +, precedes = "b-ip-48a" +, update = "98.11 bibrelex" } @article{b-ip-48a -, author = "F. Bagemihl" -, title = "On indecomposable polyhedra" -, journal = "Amer. Math. Monthly" -, volume = "??" -, month = sep -, year = 1948 -, pages = "411--413" -, succeeds = "b-ip-??" -, update = "98.11 bibrelex" +, author = "F. Bagemihl" +, title = "On indecomposable polyhedra" +, journal = "Amer. Math. Monthly" +, volume = "??" +, month = sep +, year = 1948 +, pages = "411--413" +, succeeds = "b-ip-??" +, update = "98.11 bibrelex" } @inproceedings{bdegm-cvgls-97 -, author = "J. Bagga and S. Dey and J. Emert and L. Gewali and J. McGrew" -, title = "Contracted Visibility Graphs of Line Segments" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "82--86" -, update = "97.11 jones" +, author = "J. Bagga and S. Dey and J. Emert and L. Gewali and J. McGrew" +, title = "Contracted Visibility Graphs of Line Segments" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "82--86" +, update = "97.11 jones" } @inproceedings{bgg-cipaf-96 -, author = "J. Bagga and L. Gewali and D. Glasser" -, title = "The complexity of illuminating polygons by {$\alpha$}-flood-lights" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "337--342" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "J. Bagga and L. Gewali and D. Glasser" +, title = "The complexity of illuminating polygons by {$\alpha$}-flood-lights" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "337--342" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{bgn-vemeu-97 -, author = "Jay Bagga and Laxmi Gewali and Simeon Ntafos" -, title = "Visibility Edges, Mixed Edges, and Unique Triangulation" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 11 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Jay Bagga and Laxmi Gewali and Simeon Ntafos" +, title = "Visibility Edges, Mixed Edges, and Unique Triangulation" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 11 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @techreport{b-phpmp-93 -, author = "D. H. Bailey" -, title = "A Portable High Performance Multiprecision Package" -, number = "RNR-90-022" -, institution = "NASA Ames Res. Center" -, month = may -, year = 1993 -, update = "97.11 bibrelex" +, author = "D. H. Bailey" +, title = "A Portable High Performance Multiprecision Package" +, number = "RNR-90-022" +, institution = "NASA Ames Res. Center" +, month = may +, year = 1993 +, update = "97.11 bibrelex" } @article{bc-chit-87 -, author = "T. Bailey and J. Cowles" -, title = "A convex hull inclusion test" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 9 -, number = 2 -, year = 1987 -, pages = "312--316" -, keywords = "convex hull, point location" -, update = "95.05 korneenko" +, author = "T. Bailey and J. Cowles" +, title = "A convex hull inclusion test" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 9 +, number = 2 +, year = 1987 +, pages = "312--316" +, keywords = "convex hull, point location" +, update = "95.05 korneenko" } @techreport{bbdmrs-mqr-90 -, author = "J. Baillieul and R. Brockett and B. Donald and R. Murray and M. Raghavan and S. Sastry" -, title = "Mathematical questions in robotics" -, type = "Technical {Report}" -, number = "TR~90-1097" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = feb -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "J. Baillieul and R. Brockett and B. Donald and R. Murray and M. Raghavan and S. Sastry" +, title = "Mathematical questions in robotics" +, type = "Technical {Report}" +, number = "TR~90-1097" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = feb +, year = 1990 +, update = "93.09 milone+mitchell" } @inproceedings{b-bsdi-92 -, author = "H. S. Baird" -, title = "Background structure in document images" -, booktitle = "Proc. of the IAPR 1992 Workshop on Syntactic and Structural Pattern Recognition" -, year = 1992 -, pages = "??" -, keywords = "maximal empty rectangles, OCR, optical character recognition" -, update = "95.01 mitchell" +, author = "H. S. Baird" +, title = "Background structure in document images" +, booktitle = "Proc. of the IAPR 1992 Workshop on Syntactic and Structural Pattern Recognition" +, year = 1992 +, pages = "??" +, keywords = "maximal empty rectangles, OCR, optical character recognition" +, update = "95.01 mitchell" } @inproceedings{b-falaa-77 -, author = "H. S. Baird" -, title = "Fast algorithms for {LSI} artwork analysis" -, booktitle = "Proc. Design Autom. Conf." -, year = 1977 -, pages = "303--311" -, precedes = "b-falaa-78" -, update = "95.05 korneenko" +, author = "H. S. Baird" +, title = "Fast algorithms for {LSI} artwork analysis" +, booktitle = "Proc. Design Autom. Conf." +, year = 1977 +, pages = "303--311" +, precedes = "b-falaa-78" +, update = "95.05 korneenko" } @article{b-falaa-78 -, author = "H. S. Baird" -, title = "Fast algorithms for {LSI} artwork analysis" -, journal = "J. Design Autom. Fault-Tolerant Comput." -, volume = 2 -, number = 2 -, year = 1978 -, pages = "179--209" -, keywords = ", VLSI design, polygons, Boolean operations, isothetic" -, succeeds = "b-falaa-77" -, update = "95.05 korneenko" +, author = "H. S. Baird" +, title = "Fast algorithms for {LSI} artwork analysis" +, journal = "J. Design Autom. Fault-Tolerant Comput." +, volume = 2 +, number = 2 +, year = 1978 +, pages = "179--209" +, keywords = ", VLSI design, polygons, Boolean operations, isothetic" +, succeeds = "b-falaa-77" +, update = "95.05 korneenko" } @book{b-mbimu-84 -, author = "H. S. Baird" -, title = "Model-Based Image Matching Using Location" -, series = "Distinguished Dissertation Series" -, publisher = "MIT Press" -, year = 1984 +, author = "H. S. Baird" +, title = "Model-Based Image Matching Using Location" +, series = "Distinguished Dissertation Series" +, publisher = "MIT Press" +, year = 1984 } @inproceedings{bjf-issdc-90 -, author = "H. S. Baird and S. E. Jones and S. J. Fortune" -, title = "Image segmentation by shape-directed covers" -, booktitle = "Proc. of the Tenth International Conference on Pattern Recognition" -, publisher = "IEEE Computer Society" -, year = 1990 -, pages = "820--825" -, keywords = "maximal empty rectangles, OCR, optical character recognition" -, update = "95.01 mitchell" +, author = "H. S. Baird and S. E. Jones and S. J. Fortune" +, title = "Image segmentation by shape-directed covers" +, booktitle = "Proc. of the Tenth International Conference on Pattern Recognition" +, publisher = "IEEE Computer Society" +, year = 1990 +, pages = "820--825" +, keywords = "maximal empty rectangles, OCR, optical character recognition" +, update = "95.01 mitchell" } @inproceedings{br-tdarp-94 -, author = "B. Bajaj and A. Royappa" -, title = "Triangulation and display of arbitrary rational parametric surfaces" -, editor = "R. Bergeron and A. Kaufman" -, booktitle = "IEEE Visualiuation '94 Conference" -, publisher = "IEEE" -, year = 1994 -, update = "98.07 bibrelex" +, author = "B. Bajaj and A. Royappa" +, title = "Triangulation and display of arbitrary rational parametric surfaces" +, editor = "R. Bergeron and A. Kaufman" +, booktitle = "IEEE Visualiuation '94 Conference" +, publisher = "IEEE" +, year = 1994 +, update = "98.07 bibrelex" } @inproceedings{b-epses-86 -, author = "C. Bajaj" -, title = "An efficient parallel solution for {Euclidean} shortest paths in three dimensions" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "San Francisco, CA" -, year = 1986 -, pages = "1897--1900" -, keywords = "motion planning, elementary geometry, parallel computation, geodesic distance, numerical analysis, CAD, robotics" +, author = "C. Bajaj" +, title = "An efficient parallel solution for {Euclidean} shortest paths in three dimensions" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "San Francisco, CA" +, year = 1986 +, pages = "1897--1900" +, keywords = "motion planning, elementary geometry, parallel computation, geodesic distance, numerical analysis, CAD, robotics" } @inproceedings{b-agtam-85 -, author = "C. Bajaj" -, title = "Applying {Galois} Theoretic Algebraic Methods to Geometric Optimization problems" -, booktitle = "SIAM Conf. on Geometric Modeling and Robotics" -, site = "Albany, NY" -, month = jul -, year = 1985 -, update = "93.09 milone+mitchell" +, author = "C. Bajaj" +, title = "Applying {Galois} Theoretic Algebraic Methods to Geometric Optimization problems" +, booktitle = "SIAM Conf. on Geometric Modeling and Robotics" +, site = "Albany, NY" +, month = jul +, year = 1985 +, update = "93.09 milone+mitchell" } @inproceedings{b-cgiv-96 -, author = "C. Bajaj" -, title = "Computational geometry for interrogative visualization" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "99--100" -, update = "97.03 agarwal, 96.09 mitchell" -, annote = "Invited Lecture by C. Bajaj" +, author = "C. Bajaj" +, title = "Computational geometry for interrogative visualization" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "99--100" +, update = "97.03 agarwal, 96.09 mitchell" +, annote = "Invited Lecture by C. Bajaj" } @incollection{b-gmas-89 -, author = "C. Bajaj" -, title = "Geometric Modeling with Algebraic Surfaces" -, editor = "D. Handscomb" -, booktitle = "The Mathematics of Surfaces III" -, publisher = "Oxford University Press" -, year = 1989 -, pages = "3--48" -, update = "97.11 bibrelex" +, author = "C. Bajaj" +, title = "Geometric Modeling with Algebraic Surfaces" +, editor = "D. Handscomb" +, booktitle = "The Mathematics of Surfaces III" +, publisher = "Oxford University Press" +, year = 1989 +, pages = "3--48" +, update = "97.11 bibrelex" } @techreport{b-gocc-84 -, author = "C. Bajaj" -, title = "Geometric optimization and computational complexity" -, type = "Technical {Report}" -, number = "TR~84-629" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1984 +, author = "C. Bajaj" +, title = "Geometric optimization and computational complexity" +, type = "Technical {Report}" +, number = "TR~84-629" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1984 } @inproceedings{b-goph-85 -, author = "C. Bajaj" -, title = "Geometric Optimization and the Polynomial Hierarchy" -, booktitle = "Proc. 5th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "New Delhi, India" -, series = "Lecture Notes Comput. Sci." -, volume = 206 -, publisher = "Springer-Verlag" -, month = dec -, year = 1985 -, pages = "176--195" -, precedes = "b-goph-87" -, update = "99.11 bibrelex, 96.05 pascucci, 95.05 korneenko, 93.09 milone+mitchell" +, author = "C. Bajaj" +, title = "Geometric Optimization and the Polynomial Hierarchy" +, booktitle = "Proc. 5th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "New Delhi, India" +, series = "Lecture Notes Comput. Sci." +, volume = 206 +, publisher = "Springer-Verlag" +, month = dec +, year = 1985 +, pages = "176--195" +, precedes = "b-goph-87" +, update = "99.11 bibrelex, 96.05 pascucci, 95.05 korneenko, 93.09 milone+mitchell" } @article{b-goph-87 -, author = "C. Bajaj" -, title = "Geometric optimization and the polynomial hierarchy" -, journal = "Theoret. Comput. Sci." -, volume = 54 -, number = 1 -, year = 1987 -, pages = "87--102" -, keywords = "optimization, facility location, computational complexity" -, succeeds = "b-goph-85" -, update = "95.05 korneenko" +, author = "C. Bajaj" +, title = "Geometric optimization and the polynomial hierarchy" +, journal = "Theoret. Comput. Sci." +, volume = 54 +, number = 1 +, year = 1987 +, pages = "87--102" +, keywords = "optimization, facility location, computational complexity" +, succeeds = "b-goph-85" +, update = "95.05 korneenko" } @inproceedings{b-lasgm-86 -, author = "C. Bajaj" -, title = "Limitations to algorithm solvability: {Galois} methods and models of computation" -, booktitle = "Proc. ACM Sympos. Symbolic and Algebraic Computation" -, year = 1986 -, pages = "71--76" -, keywords = "discrete geometry, algebra, complexity theory, two-dimensional, three-dimensional, CAD, robotics" +, author = "C. Bajaj" +, title = "Limitations to algorithm solvability: {Galois} methods and models of computation" +, booktitle = "Proc. ACM Sympos. Symbolic and Algebraic Computation" +, year = 1986 +, pages = "71--76" +, keywords = "discrete geometry, algebra, complexity theory, two-dimensional, three-dimensional, CAD, robotics" } @techreport{b-lpiir-89 -, author = "C. Bajaj" -, title = "Local Parameterization, Implicitazion and Inversion of Real Algebraic Curves" -, type = "Technical {Report}" -, number = "CSD-TR-863" -, institution = "Purdue Univ." -, address = "West Lafayette, IN" -, year = 1989 -, note = "Also CAPO-89-9, Proc. AAECC-7 Conf." -, update = "97.11 bibrelex" +, author = "C. Bajaj" +, title = "Local Parameterization, Implicitazion and Inversion of Real Algebraic Curves" +, type = "Technical {Report}" +, number = "CSD-TR-863" +, institution = "Purdue Univ." +, address = "West Lafayette, IN" +, year = 1989 +, note = "Also CAPO-89-9, Proc. AAECC-7 Conf." +, update = "97.11 bibrelex" } @techreport{b-mgopa-84 -, author = "C. Bajaj" -, title = "{MINSUM} geometric optimization problems are {$\delta_{2}^{P}$}-proper" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1984 -, comments = "Updated invited version in \cite{b-goph-87}" -, precedes = "b-goph-87" -, update = "96.05 pascucci, 93.05 jones" +, author = "C. Bajaj" +, title = "{MINSUM} geometric optimization problems are {$\delta_{2}^{P}$}-proper" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1984 +, comments = "Updated invited version in \cite{b-goph-87}" +, precedes = "b-goph-87" +, update = "96.05 pascucci, 93.05 jones" } @article{b-pgans-86 -, author = "C. Bajaj" -, title = "Proving geometric algorithm non-solvability: {An} application of factoring polynomials" -, journal = "J. Symbolic Comput." -, volume = 2 -, year = 1986 -, pages = "99--102" -, keywords = "discrete geometry, algebra, complexity theory, two-dimensional, three-dimensional, CAD, robotics" +, author = "C. Bajaj" +, title = "Proving geometric algorithm non-solvability: {An} application of factoring polynomials" +, journal = "J. Symbolic Comput." +, volume = 2 +, year = 1986 +, pages = "99--102" +, keywords = "discrete geometry, algebra, complexity theory, two-dimensional, three-dimensional, CAD, robotics" } @inproceedings{b-rhd-90 -, author = "C. Bajaj" -, title = "Rational Hypersurface Display" -, booktitle = "Proc. 1990 Sympos. Interactive 3D Graphics" -, site = "Snowbird, UT" -, year = 1990 -, update = "97.11 bibrelex" +, author = "C. Bajaj" +, title = "Rational Hypersurface Display" +, booktitle = "Proc. 1990 Sympos. Interactive 3D Graphics" +, site = "Snowbird, UT" +, year = 1990 +, update = "97.11 bibrelex" } @techreport{b-rglao-84 -, author = "C. Bajaj" -, title = "Reducibility among geometric location-allocation optimization problems" -, type = "Technical {Report}" -, number = "TR~84-607" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1984 -, keywords = "discrete geometry, complexity theory, optimization, two-dimensional, three-dimensional, robotics" +, author = "C. Bajaj" +, title = "Reducibility among geometric location-allocation optimization problems" +, type = "Technical {Report}" +, number = "TR~84-607" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1984 +, keywords = "discrete geometry, complexity theory, optimization, two-dimensional, three-dimensional, robotics" } @inproceedings{b-acspp-85 -, author = "C. Bajaj" -, title = "The algebraic complexity of shortest paths in polyhedral spaces" -, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." -, year = 1985 -, pages = "510--517" -, keywords = "motion planning, geometry, algebra, complexity theory, three-dimensional, CAD, robotics" +, author = "C. Bajaj" +, title = "The algebraic complexity of shortest paths in polyhedral spaces" +, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." +, year = 1985 +, pages = "510--517" +, keywords = "motion planning, geometry, algebra, complexity theory, three-dimensional, CAD, robotics" } @article{b-adgop-88 -, author = "C. Bajaj" -, title = "The algebraic degree of geometric optimization problems" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "177--191" -, keywords = "discrete geometry, algebra, complexity theory, optimization, two-dimensional, three-dimensional, CAD, robotics" +, author = "C. Bajaj" +, title = "The algebraic degree of geometric optimization problems" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "177--191" +, keywords = "discrete geometry, algebra, complexity theory, optimization, two-dimensional, three-dimensional, CAD, robotics" } @incollection{b-eacsg-93 -, author = "C. Bajaj" -, title = "The Emergence of Algebraic Curves and Surfaces in Geometric Design" -, editor = "R. Martin" -, booktitle = "Directions in Geometric Computing" -, publisher = "Information Geometers Press" -, year = 1993 -, pages = "1--29" -, update = "96.05 pascucci" +, author = "C. Bajaj" +, title = "The Emergence of Algebraic Curves and Surfaces in Geometric Design" +, editor = "R. Martin" +, booktitle = "Directions in Geometric Computing" +, publisher = "Information Geometers Press" +, year = 1993 +, pages = "1--29" +, update = "96.05 pascucci" } @techreport{ba-aprcs-86 -, author = "C. Bajaj and S. Abhyankar" -, title = "Automatic parameterization of rational curves and surfaces {II}: {Cubics} and cubicoids" -, type = "Report" -, number = "CSD-TR-592" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1986 -, keywords = "algebraic geometry, design of algorithms, computer graphics, CAD" -, update = "93.05 jones" +, author = "C. Bajaj and S. Abhyankar" +, title = "Automatic parameterization of rational curves and surfaces {II}: {Cubics} and cubicoids" +, type = "Report" +, number = "CSD-TR-592" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1986 +, keywords = "algebraic geometry, design of algorithms, computer graphics, CAD" +, update = "93.05 jones" } @incollection{bas-cpdp-95 -, author = "C. Bajaj and V. Anupam and D. Schikore" -, title = "Custom Prosthesis Design and Prototyping" -, chapter = 3 -, editor = "Roy Rada and Claude Ghaoui" -, booktitle = "Multimedia Medical Education" -, publisher = "Intellect Books" -, address = "Oxford, England" -, year = 1995 -, pages = "39--47" -, update = "96.05 pascucci" +, author = "C. Bajaj and V. Anupam and D. Schikore" +, title = "Custom Prosthesis Design and Prototyping" +, chapter = 3 +, editor = "Roy Rada and Claude Ghaoui" +, booktitle = "Multimedia Medical Education" +, publisher = "Intellect Books" +, address = "Oxford, England" +, year = 1995 +, pages = "39--47" +, update = "96.05 pascucci" } @article{bbx-arssf-95 -, author = "C. Bajaj and F. Bernardini and G. Xu" -, title = "Automatic reconstruction of surface and scalar fields from $3$d scans" -, journal = "Comput. Graph." -, volume = "??" -, year = 1995 -, pages = "109--118" -, note = "Proc. SIGGRAPH'95" -, update = "98.07 bibrelex" +, author = "C. Bajaj and F. Bernardini and G. Xu" +, title = "Automatic reconstruction of surface and scalar fields from $3$d scans" +, journal = "Comput. Graph." +, volume = "??" +, year = 1995 +, pages = "109--118" +, note = "Proc. SIGGRAPH'95" +, update = "98.07 bibrelex" } @inproceedings{bcgw-frpc-89 -, author = "C. Bajaj and J. Canny and T. Garrity and J. Warren" -, title = "Factoring Rational Polynomials over the Complexes" -, booktitle = "Proc. Internat. Sympos. on Symbolic and Algebraic Computation" -, year = 1989 -, pages = "81--90" -, update = "97.11 bibrelex" +, author = "C. Bajaj and J. Canny and T. Garrity and J. Warren" +, title = "Factoring Rational Polynomials over the Complexes" +, booktitle = "Proc. Internat. Sympos. on Symbolic and Algebraic Computation" +, year = 1989 +, pages = "81--90" +, update = "97.11 bibrelex" } @article{bcx-mcap-95 -, author = "C. Bajaj and J. Chen and G. Xu" -, title = "Modeling with cubic {A}-patches" -, journal = "ACM Trans. Graph." -, volume = 14 -, number = 2 -, year = 1995 -, pages = "103--133" -, update = "98.07 bibrelex" +, author = "C. Bajaj and J. Chen and G. Xu" +, title = "Modeling with cubic {A}-patches" +, journal = "ACM Trans. Graph." +, volume = 14 +, number = 2 +, year = 1995 +, pages = "103--133" +, update = "98.07 bibrelex" } @techreport{bd-cdpr-90 -, author = "C. Bajaj and T. Dey" -, title = "Convex Decomposition of Polyhedra and Robustness" -, type = "Technical {Report}" -, number = "CSD-TR-990" -, institution = "Dept. Comput. Sci., Purdue Univ." -, year = 1990 -, update = "97.11 bibrelex" +, author = "C. Bajaj and T. Dey" +, title = "Convex Decomposition of Polyhedra and Robustness" +, type = "Technical {Report}" +, number = "CSD-TR-990" +, institution = "Dept. Comput. Sci., Purdue Univ." +, year = 1990 +, update = "97.11 bibrelex" } @techreport{bd-cdsp-89 -, author = "C. Bajaj and T. Dey" -, title = "Convex Decomposition of Simple Polyhedra" -, number = "CSD-TR-833" -, institution = "Dept. Comput. Sci., Purdue Univ." -, year = 1989 -, update = "98.03 bibrelex" +, author = "C. Bajaj and T. Dey" +, title = "Convex Decomposition of Simple Polyhedra" +, number = "CSD-TR-833" +, institution = "Dept. Comput. Sci., Purdue Univ." +, year = 1989 +, update = "98.03 bibrelex" } @article{bd-cdpr-92 -, author = "C. Bajaj and T. K. Dey" -, title = "Convex decomposition of polyhedra and robustness" -, journal = "SIAM J. Comput." -, volume = 21 -, year = 1992 -, pages = "339--364" +, author = "C. Bajaj and T. K. Dey" +, title = "Convex decomposition of polyhedra and robustness" +, journal = "SIAM J. Comput." +, volume = 21 +, year = 1992 +, pages = "339--364" } @inproceedings{bd-pnr-89 -, author = "C. Bajaj and T. K. Dey" -, title = "Polygon nesting and robustness" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "33--40" -, keywords = "containment" -, precedes = "bd-pnr-90" -, update = "95.09 mitchell" +, author = "C. Bajaj and T. K. Dey" +, title = "Polygon nesting and robustness" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "33--40" +, keywords = "containment" +, precedes = "bd-pnr-90" +, update = "95.09 mitchell" } @article{bd-pnr-90 -, author = "C. Bajaj and T. K. Dey" -, title = "Polygon nesting and robustness" -, journal = "Inform. Process. Lett." -, volume = 35 -, year = 1990 -, pages = "23--32" -, keywords = "containment" -, succeeds = "bd-pnr-89" -, update = "95.09 mitchell, 93.09 dey" +, author = "C. Bajaj and T. K. Dey" +, title = "Polygon nesting and robustness" +, journal = "Inform. Process. Lett." +, volume = 35 +, year = 1990 +, pages = "23--32" +, keywords = "containment" +, succeeds = "bd-pnr-89" +, update = "95.09 mitchell, 93.09 dey" } @techreport{bgw-amer-88 -, author = "C. Bajaj and T. Garrity and J. Warren" -, title = "Applications of multi-equational resultants" -, type = "Technical {Report}" -, number = 826 -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1988 -, update = "98.07 bibrelex" +, author = "C. Bajaj and T. Garrity and J. Warren" +, title = "Applications of multi-equational resultants" +, type = "Technical {Report}" +, number = 826 +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1988 +, update = "98.07 bibrelex" } @techreport{bhhl-tsi-87 -, author = "C. Bajaj and C. M. Hoffmann and J. E. Hopcroft and R. E. Lynch" -, title = "Tracing surface intersections" -, type = "Report" -, number = "CSD-TR-728" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1987 +, author = "C. Bajaj and C. M. Hoffmann and J. E. Hopcroft and R. E. Lynch" +, title = "Tracing surface intersections" +, type = "Report" +, number = "CSD-TR-728" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1987 } @article{bi-cspia-92 -, author = "C. Bajaj and I. Ihm" -, title = "$C^1$ Smoothing of Polyhedra with Implicit Algebraic Splines" -, journal = "Comput. Graph." -, volume = 26 -, number = 2 -, year = 1992 -, pages = "79--88" -, note = "Proc. SIGGRAPH '92" -, update = "96.09 devillers, 96.05 pascucci" +, author = "C. Bajaj and I. Ihm" +, title = "$C^1$ Smoothing of Polyhedra with Implicit Algebraic Splines" +, journal = "Comput. Graph." +, volume = 26 +, number = 2 +, year = 1992 +, pages = "79--88" +, note = "Proc. SIGGRAPH '92" +, update = "96.09 devillers, 96.05 pascucci" } @inproceedings{bk-gcso3-87 -, author = "C. Bajaj and M. Kim" -, title = "Generation of Configuration Space Obstacles {III}: {The} Case of Moving Algebraic Curves" -, booktitle = "Proc. 4th IEEE Internat. Conf. Robot. Autom." -, year = 1987 -, update = "98.03 bibrelex" +, author = "C. Bajaj and M. Kim" +, title = "Generation of Configuration Space Obstacles {III}: {The} Case of Moving Algebraic Curves" +, booktitle = "Proc. 4th IEEE Internat. Conf. Robot. Autom." +, year = 1987 +, update = "98.03 bibrelex" } @incollection{bkm-apgm-88 -, author = "C. Bajaj and M.-S. Kim" -, title = "Algorithms for planar geometric models" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 317 -, year = 1988 -, pages = "67--81" -, keywords = "curvilinear, convex hull, decomposition, motion planning" -, update = "95.05 korneenko" +, author = "C. Bajaj and M.-S. Kim" +, title = "Algorithms for planar geometric models" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 317 +, year = 1988 +, pages = "67--81" +, keywords = "curvilinear, convex hull, decomposition, motion planning" +, update = "95.05 korneenko" } @inproceedings{bk-cmpgm-87 -, author = "C. Bajaj and M.-S. Kim" -, title = "Compliant motion planning with geometric models" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "171--180" -, keywords = "motion planning, algebraic geometry, design of algorithms, three-dimensional, CAD, robotics" -, comments = "full version appeared as Generation of configuration space obstacles:{II} The moving of algebraic surfaces, the internation journal of robotics research 9:1, feb 1990, 92-112" -, cites = "a-hragr-76, ab-arpcs-87, ba-aprcs-86, ab-arpcs3-86, aa-ntsrm-76, bk-gcso2-86, bk-gcso3-87, bfh-sam-86, bcl-casac-82, c-cdmp-84, c-cpplb-84, c-cmpr-71, d-etqti-08, c-dgcs-76, d-mpsdf-84, fa-spbsg-84, f-past-75, grs-kfcg-83, gs-ccrs-86, hh-gabr-86, hk-crcs-85, h-rv-86, kw-gcsmm-79, l-spcsa-83, lw-apcfp-79, lmt-asfms-84, mmp-dgp-85, m-fspcp-85, osb-spps-85, p-mmp-78, r-rrso-80, rv-smcsr-83, ss-pmp2g-83, ss-spps-84, th-otdp-84, u-cdacc-77, w-ac-78, y-amp-85, ZZZ" -, update = "98.03 bibrelex, 93.09 milone+mitchell" +, author = "C. Bajaj and M.-S. Kim" +, title = "Compliant motion planning with geometric models" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "171--180" +, keywords = "motion planning, algebraic geometry, design of algorithms, three-dimensional, CAD, robotics" +, comments = "full version appeared as Generation of configuration space obstacles:{II} The moving of algebraic surfaces, the internation journal of robotics research 9:1, feb 1990, 92-112" +, cites = "a-hragr-76, ab-arpcs-87, ba-aprcs-86, ab-arpcs3-86, aa-ntsrm-76, bk-gcso2-86, bk-gcso3-87, bfh-sam-86, bcl-casac-82, c-cdmp-84, c-cpplb-84, c-cmpr-71, d-etqti-08, c-dgcs-76, d-mpsdf-84, fa-spbsg-84, f-past-75, grs-kfcg-83, gs-ccrs-86, hh-gabr-86, hk-crcs-85, h-rv-86, kw-gcsmm-79, l-spcsa-83, lw-apcfp-79, lmt-asfms-84, mmp-dgp-85, m-fspcp-85, osb-spps-85, p-mmp-78, r-rrso-80, rv-smcsr-83, ss-pmp2g-83, ss-spps-84, th-otdp-84, u-cdacc-77, w-ac-78, y-amp-85, ZZZ" +, update = "98.03 bibrelex, 93.09 milone+mitchell" } @techreport{bk-choba-87 -, author = "C. Bajaj and M. S. Kim" -, title = "Convex hull of objects bounded by algebraic curves" -, type = "Report" -, number = "CSD-TR-697" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1987 -, precedes = "bk-choba-91" +, author = "C. Bajaj and M. S. Kim" +, title = "Convex hull of objects bounded by algebraic curves" +, type = "Report" +, number = "CSD-TR-697" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1987 +, precedes = "bk-choba-91" } @article{bk-choba-91 -, author = "C. Bajaj and M. S. Kim" -, title = "Convex hull of objects bounded by algebraic curves" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "533--553" -, succeeds = "bk-choba-87" +, author = "C. Bajaj and M. S. Kim" +, title = "Convex hull of objects bounded by algebraic curves" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "533--553" +, succeeds = "bk-choba-87" } @techreport{bk-gcso1-85 -, author = "C. Bajaj and M.-S. Kim" -, title = "Generation of configuration space obstacles {I}: the case of a moving sphere" -, type = "Report" -, number = "CSD-TR-565" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1985 -, keywords = "motion planning, algebraic geometry, design of algorithms, three-dimensional, CAD, robotics" -, precedes = "bkm-gcsoc-88" -, update = "95.05 korneenko" +, author = "C. Bajaj and M.-S. Kim" +, title = "Generation of configuration space obstacles {I}: the case of a moving sphere" +, type = "Report" +, number = "CSD-TR-565" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1985 +, keywords = "motion planning, algebraic geometry, design of algorithms, three-dimensional, CAD, robotics" +, precedes = "bkm-gcsoc-88" +, update = "95.05 korneenko" } @techreport{bk-gcso2-86 -, author = "C. Bajaj and M. S. Kim" -, title = "Generation of configuration space obstacles {II}: the case of moving algebraic surfaces" -, type = "Report" -, number = "CSD-TR-586" -, institution = "Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1986 -, keywords = "motion planning, algebraic geometry, design of algorithms, three-dimensional, CAD, robotics" -, precedes = "bk-gcsoc-89" +, author = "C. Bajaj and M. S. Kim" +, title = "Generation of configuration space obstacles {II}: the case of moving algebraic surfaces" +, type = "Report" +, number = "CSD-TR-586" +, institution = "Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1986 +, keywords = "motion planning, algebraic geometry, design of algorithms, three-dimensional, CAD, robotics" +, precedes = "bk-gcsoc-89" } @article{bk-gcsoc-89 -, author = "C. Bajaj and M.-S. Kim" -, title = "Generation of configuration space obstacles: the case of moving algebraic surfaces" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "155--172" -, succeeds = "bk-gcso2-86" +, author = "C. Bajaj and M.-S. Kim" +, title = "Generation of configuration space obstacles: the case of moving algebraic surfaces" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "155--172" +, succeeds = "bk-gcso2-86" } @article{bkm-gcsoc-88 -, author = "C. Bajaj and M.-S. Kim" -, title = "Generation of configuration-space obstacles: {The} case of moving sphere" -, journal = "Internat. J. Robot. Autom." -, volume = 4 -, number = 1 -, year = 1988 -, pages = "94--99" -, keywords = "motion planning" -, precedes = "bk-gcso1-85" -, update = "95.05 korneenko" +, author = "C. Bajaj and M.-S. Kim" +, title = "Generation of configuration-space obstacles: {The} case of moving sphere" +, journal = "Internat. J. Robot. Autom." +, volume = 4 +, number = 1 +, year = 1988 +, pages = "94--99" +, keywords = "motion planning" +, precedes = "bk-gcso1-85" +, update = "95.05 korneenko" } @article{bl-godc-89 -, author = "C. Bajaj and M. Li" -, title = "Geometric optimization and {$D^P$}-completeness" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "3--13" +, author = "C. Bajaj and M. Li" +, title = "Geometric optimization and {$D^P$}-completeness" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "3--13" } @inproceedings{bl-dicp-83 -, author = "C. Bajaj and M. Li" -, title = "On the duality of intersections and closest points" -, booktitle = "Proc. 21st Allerton Conf. Commun. Control Comput." -, year = 1983 -, pages = "459--461" -, keywords = "discrete geometry, design of algorithms, geometric transformations, computer graphics, CAD" +, author = "C. Bajaj and M. Li" +, title = "On the duality of intersections and closest points" +, booktitle = "Proc. 21st Allerton Conf. Commun. Control Comput." +, year = 1983 +, pages = "459--461" +, keywords = "discrete geometry, design of algorithms, geometric transformations, computer graphics, CAD" } @article{bm-gusp-88 -, author = "C. Bajaj and T. T. Moh" -, title = "Generalized unfoldings for shortest paths" -, journal = "Internat. J. Robot. Res." -, volume = 7 -, year = 1988 -, pages = "71--76" -, keywords = "motion planning, elementary geometry, design of algorithms, geodesic distance, CAD, robotics" -, succeeds = "bm-guspe-85" -, update = "97.11 bibrelex" +, author = "C. Bajaj and T. T. Moh" +, title = "Generalized unfoldings for shortest paths" +, journal = "Internat. J. Robot. Res." +, volume = 7 +, year = 1988 +, pages = "71--76" +, keywords = "motion planning, elementary geometry, design of algorithms, geodesic distance, CAD, robotics" +, succeeds = "bm-guspe-85" +, update = "97.11 bibrelex" } @techreport{bm-guspe-85 -, author = "C. Bajaj and T. T. Moh" -, title = "Generalized Unfoldings for Shortest Paths in {Euclidean} 3-Space" -, type = "Technical {Report}" -, number = "CSD-TR-526" -, institution = "Department of Computer Science, Purdue University" -, year = 1985 -, precedes = "bm-gusp-88" -, update = "98.07 bibrelex, 93.09 milone+mitchell" +, author = "C. Bajaj and T. T. Moh" +, title = "Generalized Unfoldings for Shortest Paths in {Euclidean} 3-Space" +, type = "Technical {Report}" +, number = "CSD-TR-526" +, institution = "Department of Computer Science, Purdue University" +, year = 1985 +, precedes = "bm-gusp-88" +, update = "98.07 bibrelex, 93.09 milone+mitchell" } @article{br-frrpc-95 -, author = "C. Bajaj and A. Royappa" -, title = "Finite representations of real parametric curves and surfaces" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "313--326" -, keywords = "real parametric curves and surfaces, varieties, computer graphics, projective domain transformations" -, update = "96.09 devillers" +, author = "C. Bajaj and A. Royappa" +, title = "Finite representations of real parametric curves and surfaces" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "313--326" +, keywords = "real parametric curves and surfaces, varieties, computer graphics, projective domain transformations" +, update = "96.09 devillers" } @techreport{br-gagt-90 -, author = "C. Bajaj and A. Royappa" -, title = "The {GANITH} Algebraic Geometry Toolkit" -, type = "Technical {Report}" -, number = 914 -, institution = "Purdue Univ." -, address = "West Lafayette, IN" -, year = 1990 -, note = "CAPO Report No. CER-89-21, Also to appear in DISCO 90" -, update = "97.11 bibrelex" +, author = "C. Bajaj and A. Royappa" +, title = "The {GANITH} Algebraic Geometry Toolkit" +, type = "Technical {Report}" +, number = 914 +, institution = "Purdue Univ." +, address = "West Lafayette, IN" +, year = 1990 +, note = "CAPO Report No. CER-89-21, Also to appear in DISCO 90" +, update = "97.11 bibrelex" } @inproceedings{bs-ebrtm-96 -, author = "C. Bajaj and D. Schikore" -, title = "Error-bounded reduction of triangle meshes with multivariate data" -, booktitle = "Proc. SPIE Sympos. Visual Data Exploration and Analysis III" -, month = jan -, year = 1996 -, pages = "34--45" -, update = "98.07 bibrelex" +, author = "C. Bajaj and D. Schikore" +, title = "Error-bounded reduction of triangle meshes with multivariate data" +, booktitle = "Proc. SPIE Sympos. Visual Data Exploration and Analysis III" +, month = jan +, year = 1996 +, pages = "34--45" +, update = "98.07 bibrelex" } @article{bs-tpdse-98 -, author = "C. Bajaj and D. Schikore" -, title = "Topology preserving data simplification with error bounds" -, journal = "Computers \& Graphics" -, volume = 22 -, number = 1 -, year = 1998 -, pages = "3--12" -, update = "02.03 wenger" +, author = "C. Bajaj and D. Schikore" +, title = "Topology preserving data simplification with error bounds" +, journal = "Computers \& Graphics" +, volume = 22 +, number = 1 +, year = 1998 +, pages = "3--12" +, update = "02.03 wenger" } @incollection{bx-crcsr-94 -, author = "Chandrajit Bajaj and Guoliang Xu" -, title = "Converting a Rational Curve to a Standard Rational {Bernstein}-{B{\'e}zier} Representation" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "256--260" -, keywords = "Bezier curve, rational curve, NURB" -, update = "94.09 heckbert" -, annote = "Discusses a low-level operation on curves: conversion of a +, author = "Chandrajit Bajaj and Guoliang Xu" +, title = "Converting a Rational Curve to a Standard Rational {Bernstein}-{B{\'e}zier} Representation" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "256--260" +, keywords = "Bezier curve, rational curve, NURB" +, update = "94.09 heckbert" +, annote = "Discusses a low-level operation on curves: conversion of a rational piecewise polynomial curve into rational Bernstein-Bezier form, a commonly used type of non-uniform rational B-spline (NURB). Rational splines are useful because they allow conic curves to be represented exactly, @@ -14190,1204 +14190,1204 @@ @incollection{bx-crcsr-94 } @booklet{b-cmst-95 -, author = "C. L. Bajaj" -, title = "Collaborative Multimedia \& Scientific Toolkits" -, howpublished = "Course Notes, Dept. Comp. Sci., Purdue Univ." -, address = "West Lafayette, Indiana" -, year = 1996 -, update = "98.07 tamassia" +, author = "C. L. Bajaj" +, title = "Collaborative Multimedia \& Scientific Toolkits" +, howpublished = "Course Notes, Dept. Comp. Sci., Purdue Univ." +, address = "West Lafayette, Indiana" +, year = 1996 +, update = "98.07 tamassia" } @inproceedings{b-gcavb-90 -, author = "C. L. Bajaj" -, title = "Geometric computations with algebraic varieties of bounded degree" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "148--156" -, cites = "a-gph-88, ab-arpcs-87, ab-arpcs2-87, ab-cac-89, b-gmas-89, b-lpiir-89, b-rhd-90, bcgw-frpc-89, bhhl-tsi-87, br-gagt-90, b-gbamp-85, c-sagcp-88, c-gcp-88, ckl-sspef-89, c-te-48, cg-stssa-83, d-cag-79, f-it-84, gw-cipas-87, g-seppi-84, h-ag-77, h-tdaz-08, hy-prsts-87, hk-crcs-85i, jb-spaac-90, k-eidat-03, k-geatd-82, k-eukav-52, k-eukav-59, l-mmdiq-79, l-gbger-83, l-gprs-83, m-sfe-02, mm-cwpcs-82, mm-chf-83, oss-picpu-87, r-ccgfo-89, s-limha-85, sr-iag-49, s-fpavp-80, ss-pmp2g-83, ss-pcas-87, w-tbcav-87, zs-ca1-58, zs-ca2-58, ZZZ" -, update = "97.11 bibrelex" +, author = "C. L. Bajaj" +, title = "Geometric computations with algebraic varieties of bounded degree" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "148--156" +, cites = "a-gph-88, ab-arpcs-87, ab-arpcs2-87, ab-cac-89, b-gmas-89, b-lpiir-89, b-rhd-90, bcgw-frpc-89, bhhl-tsi-87, br-gagt-90, b-gbamp-85, c-sagcp-88, c-gcp-88, ckl-sspef-89, c-te-48, cg-stssa-83, d-cag-79, f-it-84, gw-cipas-87, g-seppi-84, h-ag-77, h-tdaz-08, hy-prsts-87, hk-crcs-85i, jb-spaac-90, k-eidat-03, k-geatd-82, k-eukav-52, k-eukav-59, l-mmdiq-79, l-gbger-83, l-gprs-83, m-sfe-02, mm-cwpcs-82, mm-chf-83, oss-picpu-87, r-ccgfo-89, s-limha-85, sr-iag-49, s-fpavp-80, ss-pmp2g-83, ss-pcas-87, w-tbcav-87, zs-ca1-58, zs-ca2-58, ZZZ" +, update = "97.11 bibrelex" } @article{bbx-rsfsu-97 -, author = "C. L. Bajaj and F. Bernadini and G. Xu" -, title = "Reconstructing Surfaces and Functions on Surfaces from Unorganized Three-Dimensional Data" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "243--261" -, update = "97.07 held" +, author = "C. L. Bajaj and F. Bernadini and G. Xu" +, title = "Reconstructing Surfaces and Functions on Surfaces from Unorganized Three-Dimensional Data" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "243--261" +, update = "97.07 held" } @inproceedings{bb-dvddt-90 -, author = "C. L. Bajaj and W. J. Bouma" -, title = "Dynamic {Voronoi} diagrams and {Delaunay} triangulations" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "273--277" -, cites = "a-sdcgp-85, b-gmas-89, bgw-amer-88, c-fsram-84, e-acg-87, ow-dsp-84t, ps-cgi-85, rs-mppmo-85t, s-acvd-92, ZZZ" -, update = "98.07 bibrelex" +, author = "C. L. Bajaj and W. J. Bouma" +, title = "Dynamic {Voronoi} diagrams and {Delaunay} triangulations" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "273--277" +, cites = "a-sdcgp-85, b-gmas-89, bgw-amer-88, c-fsram-84, e-acg-87, ow-dsp-84t, ps-cgi-85, rs-mppmo-85t, s-acvd-92, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{bcl-b3dtm-96 -, author = "Chandrajit L. Bajaj and Edward J. Coyle and Kwun-Nan Lin" -, title = "Boundary and 3D triangular meshes from planar cross sections" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "169--178" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Chandrajit L. Bajaj and Edward J. Coyle and Kwun-Nan Lin" +, title = "Boundary and 3D triangular meshes from planar cross sections" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "169--178" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @incollection{bd-rdp-89 -, author = "C. L. Bajaj and T. K. Dey" -, title = "Robust decompositions of polyhedra" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 405 -, year = 1989 -, pages = "267--279" -, keywords = "polyhedron decomposition robust" -, update = "95.05 korneenko" +, author = "C. L. Bajaj and T. K. Dey" +, title = "Robust decompositions of polyhedra" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 405 +, year = 1989 +, pages = "267--279" +, keywords = "polyhedron decomposition robust" +, update = "95.05 korneenko" } @incollection{be-sgm-97 -, author = "C. L. Bajaj and S. Evans" -, title = "Splines and geometric modeling" -, chapter = 45 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "833--850" -, update = "97.11 orourke" +, author = "C. L. Bajaj and S. Evans" +, title = "Splines and geometric modeling" +, chapter = 45 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "833--850" +, update = "97.11 orourke" } @article{bhlh-tsi-88 -, author = "C. L. Bajaj and C. M. Hoffman and R. E. Lynch and J. E. Hopcroft" -, title = "Tracing surface intersections" -, journal = "Comput. Aided Geom. Design" -, volume = 5 -, year = 1988 -, pages = "285--307" -, update = "97.11 bibrelex" +, author = "C. L. Bajaj and C. M. Hoffman and R. E. Lynch and J. E. Hopcroft" +, title = "Tracing surface intersections" +, journal = "Comput. Aided Geom. Design" +, volume = 5 +, year = 1988 +, pages = "285--307" +, update = "97.11 bibrelex" } @inproceedings{bi-hiura-89 -, author = "C. L. Bajaj and I. Ihm" -, title = "Hermite interpolation using real algebraic surfaces" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "94--103" -, cites = "b-gmas-89, bhhl-tsi-87, d-pimcc-85, f-spm-86, hh-qbs-86, m-essle-73, ms-bsstv-85a, p-dlsfas-87, rr-crbsm-84, s-igubc-87, s-pasp-85, w-bqsqc-87, w-asmgc-86, w-bgm-87, ZZZ" -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "C. L. Bajaj and I. Ihm" +, title = "Hermite interpolation using real algebraic surfaces" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "94--103" +, cites = "b-gmas-89, bhhl-tsi-87, d-pimcc-85, f-spm-86, hh-qbs-86, m-essle-73, ms-bsstv-85a, p-dlsfas-87, rr-crbsm-84, s-igubc-87, s-pasp-85, w-bqsqc-87, w-asmgc-86, w-bgm-87, ZZZ" +, update = "99.11 bibrelex, 98.03 bibrelex" } @inproceedings{bp-sccpa-96 -, author = "Chandrajit L. Bajaj and Valerio Pascucci" -, title = "Splitting a Complex of Convex Polytopes in any Dimension" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "88--97" -, cites = "am-dhsrr-95, am-rsss-94, b-rgsdd-93, bd-cdpr-92, be-mgot-92i, c-oaitd-92, cd-icott-87, dk-fdpi-83, e-acg-87, em-sstcd-90, fm-nsala-91, g-cp-67, hk-prga-92, k-opcbf-95, l-ndgcm-94, lc-mchr3-87, lm-cschu-90, m-cgitr-93, m-rpm-93, m-rsehc-93, mhc-avcev-90, n-cgpt-93, nat-mbtyp-90, pbcf-dimsc-93, pfp-diccb-95, py-ebsph-90, s-lrapi-94, s-rcaic-94, t-cpos-92, tn-sopub-87, v-bimsp-91, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Chandrajit L. Bajaj and Valerio Pascucci" +, title = "Splitting a Complex of Convex Polytopes in any Dimension" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "88--97" +, cites = "am-dhsrr-95, am-rsss-94, b-rgsdd-93, bd-cdpr-92, be-mgot-92i, c-oaitd-92, cd-icott-87, dk-fdpi-83, e-acg-87, em-sstcd-90, fm-nsala-91, g-cp-67, hk-prga-92, k-opcbf-95, l-ndgcm-94, lc-mchr3-87, lm-cschu-90, m-cgitr-93, m-rpm-93, m-rsehc-93, mhc-avcev-90, n-cgpt-93, nat-mbtyp-90, pbcf-dimsc-93, pfp-diccb-95, py-ebsph-90, s-lrapi-94, s-rcaic-94, t-cpos-92, tn-sopub-87, v-bimsp-91, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{bps-fiii-96 -, author = "C. L. Bajaj and V. Pascucci and D. R. Schikore" -, title = "Fast isocontouring for improved interactivity" -, booktitle = "Proc. 1996 IEEE Symposium on Volume Visualization" -, site = "San Francisco, CA" -, month = oct -, year = 1996 -, pages = "39--46" -, update = "98.07 bibrelex" +, author = "C. L. Bajaj and V. Pascucci and D. R. Schikore" +, title = "Fast isocontouring for improved interactivity" +, booktitle = "Proc. 1996 IEEE Symposium on Volume Visualization" +, site = "San Francisco, CA" +, month = oct +, year = 1996 +, pages = "39--46" +, update = "98.07 bibrelex" } @article{a-pfp-00 -, author = "C. L. Bajaj and A. V. Royappa" -, title = "Parameterization in Finite Precision" -, journal = "Algorithmica" -, volume = 27 -, number = 1 -, year = 2000 -, pages = "100--114" -, update = "00.11 smid, 00.07 held" +, author = "C. L. Bajaj and A. V. Royappa" +, title = "Parameterization in Finite Precision" +, journal = "Algorithmica" +, volume = 27 +, number = 1 +, year = 2000 +, pages = "100--114" +, update = "00.11 smid, 00.07 held" } @article{b-ap-88 -, author = "R. Bajcsy" -, title = "Active perception" -, journal = "Proc. IEEE" -, volume = 76 -, number = 8 -, year = 1988 -, pages = "996--1005" -, update = "98.07 bibrelex" +, author = "R. Bajcsy" +, title = "Active perception" +, journal = "Proc. IEEE" +, volume = 76 +, number = 8 +, year = 1988 +, pages = "996--1005" +, update = "98.07 bibrelex" } @article{bck-ccmdo-85 -, author = "J. Bajon and M. Catto{\"e}n and S. D. Kim" -, title = "A concavity characterization method for digital objects" -, journal = "Signal Process." -, volume = 9 -, year = 1985 -, pages = "151--161" +, author = "J. Bajon and M. Catto{\"e}n and S. D. Kim" +, title = "A concavity characterization method for digital objects" +, journal = "Signal Process." +, volume = 9 +, year = 1985 +, pages = "151--161" } @inproceedings{b-spucp-85 -, author = "B. Baker" -, title = "Shortest Paths With Unit Clearance Among Polygonal Obstacles" -, booktitle = "SIAM Conference on Geometric Modeling and Robotics" -, site = "Albany, NY" -, month = jul -, year = 1985 -, update = "93.09 milone+mitchell" +, author = "B. Baker" +, title = "Shortest Paths With Unit Clearance Among Polygonal Obstacles" +, booktitle = "SIAM Conference on Geometric Modeling and Robotics" +, site = "Albany, NY" +, month = jul +, year = 1985 +, update = "93.09 milone+mitchell" } @inproceedings{bfg-spmfh-85 -, author = "B. Baker and S. Fortune and E. Grosse" -, title = "Stable prehension with a multi-fingered hand" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "St. Louis, Missouri" -, year = 1985 -, update = "98.11 bibrelex" +, author = "B. Baker and S. Fortune and E. Grosse" +, title = "Stable prehension with a multi-fingered hand" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "St. Louis, Missouri" +, year = 1985 +, update = "98.11 bibrelex" } @inproceedings{b-aancp-83 -, author = "B. S. Baker" -, title = "Approximation algorithms for {NP}-complete problems on planar graphs" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, update = "97.11 bibrelex" +, author = "B. S. Baker" +, title = "Approximation algorithms for {NP}-complete problems on planar graphs" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, update = "97.11 bibrelex" } @article{b-aancp-94 -, author = "B. S. Baker" -, title = "Approximation algorithms for {NP}-complete problems on planar graphs" -, journal = "J. ACM" -, volume = 41 -, year = 1994 -, pages = "153--180" -, update = "97.07 agarwal" +, author = "B. S. Baker" +, title = "Approximation algorithms for {NP}-complete problems on planar graphs" +, journal = "J. ACM" +, volume = 41 +, year = 1994 +, pages = "153--180" +, update = "97.07 agarwal" } @article{bbk-5atdp-81 -, author = "B. S. Baker and D. J. Brown and H. P. Katseff" -, title = "A $5/4$ algorithm for two-dimensional packing" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "348--368" +, author = "B. S. Baker and D. J. Brown and H. P. Katseff" +, title = "A $5/4$ algorithm for two-dimensional packing" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "348--368" } @article{bcr-optd-80 -, author = "B. S. Baker and E. G. {Coffman, Jr.} and R. L. Rivest" -, title = "Orthogonal packings in two dimensions" -, journal = "SIAM J. Comput." -, volume = 9 -, year = 1980 -, pages = "846--855" +, author = "B. S. Baker and E. G. {Coffman, Jr.} and R. L. Rivest" +, title = "Orthogonal packings in two dimensions" +, journal = "SIAM J. Comput." +, volume = 9 +, year = 1980 +, pages = "846--855" } @inproceedings{bfg-sptf-85 -, author = "B. S. Baker and S. J. Fortune and E. Grosse" -, title = "Stable prehension with three fingers" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "114--120" +, author = "B. S. Baker and S. J. Fortune and E. Grosse" +, title = "Stable prehension with three fingers" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "114--120" } @inproceedings{bfm-ipc-84 -, author = "B. S. Baker and S. J. Fortune and S. R. Mahaney" -, title = "Inspection by polygon containment" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1984 -, pages = "91--100" -, keywords = "polygons, containment" -, update = "95.05 korneenko" +, author = "B. S. Baker and S. J. Fortune and S. R. Mahaney" +, title = "Inspection by polygon containment" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1984 +, pages = "91--100" +, keywords = "polygons, containment" +, update = "95.05 korneenko" } @article{bfm-pct-86 -, author = "B. S. Baker and S. J. Fortune and S. R. Mahaney" -, title = "Polygon containment under translation" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "532--548" -, keywords = "motion planning, polygons" +, author = "B. S. Baker and S. J. Fortune and S. R. Mahaney" +, title = "Polygon containment under translation" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "532--548" +, keywords = "motion planning, polygons" } @article{bgr-ntp-88 -, author = "B. S. Baker and E. Grosse and C. S. Rafferty" -, title = "Nonobtuse triangulation of polygons" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "147--168" +, author = "B. S. Baker and E. Grosse and C. S. Rafferty" +, title = "Nonobtuse triangulation of polygons" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "147--168" } @article{bs-satdp-83 -, author = "B. S. Baker and J. S. Schwarz" -, title = "Shelf algorithms for two-dimensional packing problems" -, journal = "SIAM J. Comput." -, volume = 12 -, year = 1983 -, pages = "508--525" +, author = "B. S. Baker and J. S. Schwarz" +, title = "Shelf algorithms for two-dimensional packing problems" +, journal = "SIAM J. Comput." +, volume = 12 +, year = 1983 +, pages = "508--525" } @article{b-cialc-94 -, author = "Henry G. Baker" -, title = "Corrigenda: {Intersection} algorithms for lines and circles" -, journal = "ACM Trans. Graph." -, volume = 13 -, number = 3 -, year = 1994 -, pages = "308--310" -, keywords = "intersection, lines, circles" -, comments = "Correction to mst-ialc-89" -, update = "95.09 korneenko" +, author = "Henry G. Baker" +, title = "Corrigenda: {Intersection} algorithms for lines and circles" +, journal = "ACM Trans. Graph." +, volume = 13 +, number = 3 +, year = 1994 +, pages = "308--310" +, keywords = "intersection, lines, circles" +, comments = "Correction to mst-ialc-89" +, update = "95.09 korneenko" } @inproceedings{bb-deibs-81 -, author = "H. H. Baker and T. O. Binford" -, title = "Depth from Edge and Intensity Bases Stereo" -, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." -, site = "Vancouver" -, year = 1981 -, pages = "631--636" -, update = "97.11 bibrelex" +, author = "H. H. Baker and T. O. Binford" +, title = "Depth from Edge and Intensity Bases Stereo" +, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." +, site = "Vancouver" +, year = 1981 +, pages = "631--636" +, update = "97.11 bibrelex" } @article{bclt-nmaaw-95 -, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia" -, title = "A New Model for Algorithm Animation Over the {WWW}" -, journal = "ACM Comput. Surv." -, volume = 27 -, number = 4 -, year = 1995 -, pages = "568--572" -, url = "https://www.cs.brown.edu/cgc/papers/bclt-nmaaw-95.ps.gz" -, keywords = "algorithm animation, Java, Web, WWW, graph drawing, CGC, Brown" -, update = "97.03 tamassia, 96.09 tamassia" +, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia" +, title = "A New Model for Algorithm Animation Over the {WWW}" +, journal = "ACM Comput. Surv." +, volume = 27 +, number = 4 +, year = 1995 +, pages = "568--572" +, url = "https://www.cs.brown.edu/cgc/papers/bclt-nmaaw-95.ps.gz" +, keywords = "algorithm animation, Java, Web, WWW, graph drawing, CGC, Brown" +, update = "97.03 tamassia, 96.09 tamassia" } @inproceedings{bclt-aawww-96 -, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia" -, title = "Algorithm Animation Over the {World Wide Web}" -, booktitle = "Proc. Int. Workshop on Advanced Visual Interfaces" -, nickname = "AVI '96" -, year = 1996 -, pages = "203--212" -, url = "https://www.cs.brown.edu/cgc/papers/bclt-aawww-96.ps.gz" -, keywords = "algorithm animation, Java, Web, WWW, CGC, Brown" -, update = "97.03 tamassia, 96.09 tamassia" +, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia" +, title = "Algorithm Animation Over the {World Wide Web}" +, booktitle = "Proc. Int. Workshop on Advanced Visual Interfaces" +, nickname = "AVI '96" +, year = 1996 +, pages = "203--212" +, url = "https://www.cs.brown.edu/cgc/papers/bclt-aawww-96.ps.gz" +, keywords = "algorithm animation, Java, Web, WWW, CGC, Brown" +, update = "97.03 tamassia, 96.09 tamassia" } @inproceedings{bclt-agaow-96 -, author = "James E. Baker and Isabel F. Cruz and Giuseppe Liotta and Roberto Tamassia" -, title = "Animating Geometric Algorithms over the {Web}" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C3--C4" -, url = "https://www.cs.brown.edu/cgc/papers/bclt-agaow-96.ps.gz" -, keywords = "algorithm animation, Java, Web, WWW, CGC, Brown" -, cites = "bclt-nmaaw-95, ZZZ" -, update = "97.11 bibrelex, 97.03 tamassia, 96.09 tamassia, 96.05 efrat" +, author = "James E. Baker and Isabel F. Cruz and Giuseppe Liotta and Roberto Tamassia" +, title = "Animating Geometric Algorithms over the {Web}" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C3--C4" +, url = "https://www.cs.brown.edu/cgc/papers/bclt-agaow-96.ps.gz" +, keywords = "algorithm animation, Java, Web, WWW, CGC, Brown" +, cites = "bclt-nmaaw-95, ZZZ" +, update = "97.11 bibrelex, 97.03 tamassia, 96.09 tamassia, 96.05 efrat" } @inproceedings{bclt-maas-96 -, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia" -, title = "The {Mocha} Algorithm Animation System" -, booktitle = "Proc. Int. Workshop on Advanced Visual Interfaces" -, nickname = "AVI '96" -, year = 1996 -, pages = "248--250" -, url = "https://www.cs.brown.edu/cgc/papers/bclt-maas-96.ps.gz" -, keywords = "algorithm animation, Java, Web, WWW, CGC, Brown" -, update = "97.03 tamassia, 96.09 tamassia" +, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia" +, title = "The {Mocha} Algorithm Animation System" +, booktitle = "Proc. Int. Workshop on Advanced Visual Interfaces" +, nickname = "AVI '96" +, year = 1996 +, pages = "248--250" +, url = "https://www.cs.brown.edu/cgc/papers/bclt-maas-96.ps.gz" +, keywords = "algorithm animation, Java, Web, WWW, CGC, Brown" +, update = "97.03 tamassia, 96.09 tamassia" } @article{bclt-vga- -, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia" -, title = "Visualizing Geometric Algorithms over the Web" -, journal = "Comput. Geom. Theory Appl." -, note = "to appear" -, update = "98.11 tamassia" +, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia" +, title = "Visualizing Geometric Algorithms over the Web" +, journal = "Comput. Geom. Theory Appl." +, note = "to appear" +, update = "98.11 tamassia" } @article{bfr-pod2-71 -, author = "K. A. Baker and P. Fishburn and F. S. Roberts" -, title = "Partial orders of dimension 2" -, journal = "Networks" -, volume = 2 -, year = 1971 -, pages = "11--28" -, keywords = "graph drawing, planar, upward" -, update = "95.05 tamassia" +, author = "K. A. Baker and P. Fishburn and F. S. Roberts" +, title = "Partial orders of dimension 2" +, journal = "Networks" +, volume = 2 +, year = 1971 +, pages = "11--28" +, keywords = "graph drawing, planar, upward" +, update = "95.05 tamassia" } @inproceedings{b-tdmgt-87 -, author = "T. Baker" -, title = "Three dimensional mesh generation by triangulation of arbitrary point sets" -, booktitle = "Proc. AIAA 8th Comput. Fluid Dynamics Conf." -, year = 1987 -, pages = "255--271" -, keywords = "triangulation, three-dimensional" -, update = "95.05 korneenko" +, author = "T. Baker" +, title = "Three dimensional mesh generation by triangulation of arbitrary point sets" +, booktitle = "Proc. AIAA 8th Comput. Fluid Dynamics Conf." +, year = 1987 +, pages = "255--271" +, keywords = "triangulation, three-dimensional" +, update = "95.05 korneenko" } @article{b-amgct-89 -, author = "Timothy J. Baker" -, title = "Automatic Mesh Generation For Complex Three-Dimensional Regions Using a Constrained {Delaunay} Triangulation" -, journal = "Engineering with Computers (USA)" -, volume = 5 -, number = "3--4" -, year = 1989 -, pages = "161--175" -, keywords = "mesh generation, Delaunay triangulation" -, update = "00.11 smid, 00.07 icking, 96.09 devillers" -, annote = "Bowyer's algorithm. Constraints by fixing triangles. - Uses octrees for point location in $O(\log n)$. Yet - another proof that Bowyer's works. Uses $a/r$ for tetra - quality." -, abstract = "This paper describes a method for generating - tetrahedral meshes. The algorithm, based on the - Delaunay triangulation, can treat objects of - essentially arbitrary complexity. In order to preserve - the surface triangulation of solid objects, it is - necessary to override the Delaunay property and - redefine the triangulation when points are introduced - that are close to solid boundaries. Details of this - constrained Delaunay algorithm are presented and an - efficient implementation of the triangulation method is - described. Techniques for controlling the distribution - of mesh points and tetrahedron quality are also - discussed. (Author abstract) 25 Refs." +, author = "Timothy J. Baker" +, title = "Automatic Mesh Generation For Complex Three-Dimensional Regions Using a Constrained {Delaunay} Triangulation" +, journal = "Engineering with Computers (USA)" +, volume = 5 +, number = "3--4" +, year = 1989 +, pages = "161--175" +, keywords = "mesh generation, Delaunay triangulation" +, update = "00.11 smid, 00.07 icking, 96.09 devillers" +, annote = "Bowyer's algorithm. Constraints by fixing triangles. + Uses octrees for point location in $O(\log n)$. Yet + another proof that Bowyer's works. Uses $a/r$ for tetra + quality." +, abstract = "This paper describes a method for generating + tetrahedral meshes. The algorithm, based on the + Delaunay triangulation, can treat objects of + essentially arbitrary complexity. In order to preserve + the surface triangulation of solid objects, it is + necessary to override the Delaunay property and + redefine the triangulation when points are introduced + that are close to solid boundaries. Details of this + constrained Delaunay algorithm are presented and an + efficient implementation of the triangulation method is + described. Techniques for controlling the distribution + of mesh points and tetrahedron quality are also + discussed. (Author abstract) 25 Refs." } @article{b-srvmc-91 -, author = "Timothy J. Baker" -, title = "Shape Reconstruction And Volume Meshing For Complex Solids" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 32 -, number = 4 -, month = sep -, year = 1991 -, pages = "665--675" -, keywords = "shape reconstruction, volume meshing" -, annote = "An interior point is generated for each section - vertex. This is placed on the line bisecting the corner - $ABC$, at a distance $\min(AB,BC,d/3)$, where $d$ is - the length of the segment from $B$ to where it first - leaves the polygon. Dt of these points is constructed - and the surface is the boundary between tetras - containing only section vertices and the other - tetras." -, abstract = "The reconstruction of a solid surface from a series of - cross-sections and the generation of a volume mesh that - conforms with a prescribed surface are issues that - arise in numerous applications. We describe an approach - to both these problems that is based on the generation - of a tetrahedral mesh which automatically captures a - triangulation of the surface points. A simple algorithm - for introducing a set of interior points permits a - simple partition of the volume mesh into two disjoint - sets of tetrahedra such that one set determines the - interior of the solid while the second determines the - exterior. (Author abstract) 10 Refs." +, author = "Timothy J. Baker" +, title = "Shape Reconstruction And Volume Meshing For Complex Solids" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 32 +, number = 4 +, month = sep +, year = 1991 +, pages = "665--675" +, keywords = "shape reconstruction, volume meshing" +, annote = "An interior point is generated for each section + vertex. This is placed on the line bisecting the corner + $ABC$, at a distance $\min(AB,BC,d/3)$, where $d$ is + the length of the segment from $B$ to where it first + leaves the polygon. Dt of these points is constructed + and the surface is the boundary between tetras + containing only section vertices and the other + tetras." +, abstract = "The reconstruction of a solid surface from a series of + cross-sections and the generation of a volume mesh that + conforms with a prescribed surface are issues that + arise in numerous applications. We describe an approach + to both these problems that is based on the generation + of a tetrahedral mesh which automatically captures a + triangulation of the surface points. A simple algorithm + for introducing a set of interior points permits a + simple partition of the volume mesh into two disjoint + sets of tetrahedra such that one set determines the + interior of the solid while the second determines the + exterior. (Author abstract) 10 Refs." } @article{blt-lir-91 -, author = "E. Bakker and J. van Leeuwen and R. Tan" -, title = "Linear interval routing" -, journal = "Algorithms Rev." -, volume = 2 -, number = 2 -, year = 1991 -, pages = "45--61" +, author = "E. Bakker and J. van Leeuwen and R. Tan" +, title = "Linear interval routing" +, journal = "Algorithms Rev." +, volume = 2 +, number = 2 +, year = 1991 +, pages = "45--61" } @inproceedings{b-oafsi-95 -, author = "Ivan J. Balaban" -, title = "An Optimal Algorithm for Finding Segment Intersections" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "211--219" -, keywords = "" -, cites = "b-lbact-83, bo-arcgi-79, c-fsnaq-86, c-rcsi-86, ce-oails-92, cs-arscg-89, egs-oplms-86, l-dsorq-78, m-fppa1-88, ps-cgi-85, w-pr-82, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Ivan J. Balaban" +, title = "An Optimal Algorithm for Finding Segment Intersections" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "211--219" +, keywords = "" +, cites = "b-lbact-83, bo-arcgi-79, c-fsnaq-86, c-rcsi-86, ce-oails-92, cs-arscg-89, egs-oplms-86, l-dsorq-78, m-fppa1-88, ps-cgi-85, w-pr-82, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{bf-mp-93 -, author = "E. Balas and M. Fischetti" -, title = "On the Monotonization of Polyhedra" -, booktitle = "Proc. 3rd IPCO Conference Integer Programming and Combinatorial Optimization" -, site = "Erice, Italy" -, year = 1993 -, pages = "??" -, update = "98.07 bibrelex, 93.09 milone+mitchell" +, author = "E. Balas and M. Fischetti" +, title = "On the Monotonization of Polyhedra" +, booktitle = "Proc. 3rd IPCO Conference Integer Programming and Combinatorial Optimization" +, site = "Erice, Italy" +, year = 1993 +, pages = "??" +, update = "98.07 bibrelex, 93.09 milone+mitchell" } @article{bp-pmspb-83 -, author = "E. Balas and W. Pulleyblank" -, title = "The perfectly matchable subgraph polytope of a bipartite graph" -, journal = "Networks" -, volume = 13 -, year = 1983 -, pages = "495--516" +, author = "E. Balas and W. Pulleyblank" +, title = "The perfectly matchable subgraph polytope of a bipartite graph" +, journal = "Networks" +, volume = 13 +, year = 1983 +, pages = "495--516" } @phdthesis{b-gmhsr-01 -, author = "Sophie Balaven" -, title = "G\'en\'eration de maillages hybrides pour la simulation de r\'eservoirs p\'etroliers" -, type = "Th\`{e}se de doctorat en sciences" -, school = "Ecole des Mines, Paris" -, address = "France" -, year = 2001 -, keywords = "doctoral thesis" -, update = "02.03 devillers" +, author = "Sophie Balaven" +, title = "G\'en\'eration de maillages hybrides pour la simulation de r\'eservoirs p\'etroliers" +, type = "Th\`{e}se de doctorat en sciences" +, school = "Ecole des Mines, Paris" +, address = "France" +, year = 2001 +, keywords = "doctoral thesis" +, update = "02.03 devillers" } @incollection{bmb-pmmca-94 -, author = "L. Balbes and S. Mascarella and D. Boyd" -, title = "A perspective of modern methods in computer-aided drug design" -, editor = "K. Lipkowitz and D. B. Boyd" -, booktitle = "Reviews in Computational Chemistry" -, volume = 5 -, publisher = "VCH Publishers" -, year = 1994 -, pages = "337--370" -, update = "98.07 bibrelex" +, author = "L. Balbes and S. Mascarella and D. Boyd" +, title = "A perspective of modern methods in computer-aided drug design" +, editor = "K. Lipkowitz and D. B. Boyd" +, booktitle = "Reviews in Computational Chemistry" +, volume = 5 +, publisher = "VCH Publishers" +, year = 1994 +, pages = "337--370" +, update = "98.07 bibrelex" } @article{bs-rmcso-91 -, author = "R. Balbes and J. Siegel" -, title = "A Robust Method for Calculating the Simplicity and Orientation of Planar Polygons" -, journal = "Comput. Aided Geom. Design" -, volume = 8 -, number = 4 -, month = oct -, year = 1991 -, pages = "327--335" -, keywords = "polygons" -, update = "95.05 held+korneenko" +, author = "R. Balbes and J. Siegel" +, title = "A Robust Method for Calculating the Simplicity and Orientation of Planar Polygons" +, journal = "Comput. Aided Geom. Design" +, volume = 8 +, number = 4 +, month = oct +, year = 1991 +, pages = "327--335" +, keywords = "polygons" +, update = "95.05 held+korneenko" } @article{blt-capsi-92 -, author = "J. Balc{\'a}zar and A. Lozano and J. Tor{\'a}n" -, title = "The complexity of algorithmic problems on succinct instances" -, journal = "Algorithms Rev." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "113--137" +, author = "J. Balc{\'a}zar and A. Lozano and J. Tor{\'a}n" +, title = "The complexity of algorithmic problems on succinct instances" +, journal = "Algorithms Rev." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "113--137" } @mastersthesis{b-amstg-90 -, author = "D. F. Baldwin" -, title = "Algorithmic methods and software tools for the generation of mechanical assembly sequences" -, type = "M.{Sc}. Thesis" -, school = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1990 -, keywords = "master thesis" +, author = "D. F. Baldwin" +, title = "Algorithmic methods and software tools for the generation of mechanical assembly sequences" +, type = "M.{Sc}. Thesis" +, school = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1990 +, keywords = "master thesis" } @article{b-afavc-61 -, author = "M. L. Balinsky" -, title = "An algorithm for finding all vertices of convex polyhedral sets" -, journal = "SIAM J. Appl. Math." -, volume = 9 -, year = 1961 -, pages = "72--88" +, author = "M. L. Balinsky" +, title = "An algorithm for finding all vertices of convex polyhedral sets" +, journal = "SIAM J. Appl. Math." +, volume = 9 +, year = 1961 +, pages = "72--88" } @article{b-ghtda-81 -, author = "D. H. Ballard" -, title = "Generalizing the {Hough} transform to detect arbitrary shapes" -, journal = "Pattern Recogn." -, volume = 13 -, year = 1981 -, pages = "111--112" -, update = "96.09 orourke" +, author = "D. H. Ballard" +, title = "Generalizing the {Hough} transform to detect arbitrary shapes" +, journal = "Pattern Recogn." +, volume = 13 +, year = 1981 +, pages = "111--112" +, update = "96.09 orourke" } @article{b-sthrc-81 -, author = "D. H. Ballard" -, title = "Strip trees: {A} hierarchical representation for curves" -, journal = "Commun. ACM" -, volume = 24 -, number = 5 -, year = 1981 -, pages = "310--321" -, update = "97.07 agarwal" +, author = "D. H. Ballard" +, title = "Strip trees: {A} hierarchical representation for curves" +, journal = "Commun. ACM" +, volume = 24 +, number = 5 +, year = 1981 +, pages = "310--321" +, update = "97.07 agarwal" } @book{bb-cv-82 -, author = "D. H. Ballard and C. M. Brown" -, title = "Computer Vision" -, publisher = "Prentice Hall" -, year = 1982 -, update = "98.07 bibrelex" +, author = "D. H. Ballard and C. M. Brown" +, title = "Computer Vision" +, publisher = "Prentice Hall" +, year = 1982 +, update = "98.07 bibrelex" } @techreport{b-mpbsp-93 -, author = "C. Ballieux" -, title = "Motion planning using binary space partitions" -, number = "Inf/src/93-25" -, institution = "Utrecht University" -, year = 1993 -, update = "98.07 bibrelex, 97.03 schwarzkopf" +, author = "C. Ballieux" +, title = "Motion planning using binary space partitions" +, number = "Inf/src/93-25" +, institution = "Utrecht University" +, year = 1993 +, update = "98.07 bibrelex, 97.03 schwarzkopf" } @inproceedings{bb-chipd-91 -, author = "A. Balog and I. B{\'a}r{\'a}ny" -, title = "On the convex hull of the integer points in a disc" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "162--165" -, keywords = "convex hull, grid" -, cites = "a-lbvsc-63, a-sicp-80, bhl-ipplb-92, c-lpc-63, chkm-ipp-92, c-vdabt-22, f-eidg-82, h-eslp-90, j-ugukk-25, ks-envci-84, s-racs-88, s-ipcs-85, s-nlpcc-74, v-nips-63, w-gimk-57, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "A. Balog and I. B{\'a}r{\'a}ny" +, title = "On the convex hull of the integer points in a disc" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "162--165" +, keywords = "convex hull, grid" +, cites = "a-lbvsc-63, a-sicp-80, bhl-ipplb-92, c-lpc-63, chkm-ipp-92, c-vdabt-22, f-eidg-82, h-eslp-90, j-ugukk-25, ks-envci-84, s-racs-88, s-ipcs-85, s-nlpcc-74, v-nips-63, w-gimk-57, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{bs-spbtc-88 -, author = "A. Baltsan and Micha Sharir" -, title = "On the shortest paths between two convex polyhedra" -, journal = "J. ACM" -, volume = 35 -, year = 1988 -, pages = "267--287" -, keywords = "shortest paths, polyhedra, convex, $3$-dimensional" -, succeeds = "sb-spbtc-85" -, update = "98.03 mitchell" +, author = "A. Baltsan and Micha Sharir" +, title = "On the shortest paths between two convex polyhedra" +, journal = "J. ACM" +, volume = 35 +, year = 1988 +, pages = "267--287" +, keywords = "shortest paths, polyhedra, convex, $3$-dimensional" +, succeeds = "sb-spbtc-85" +, update = "98.03 mitchell" } @inproceedings{b-pichc-99 -, author = "Helymar Balza-Gomez" -, title = "The Periodicity of Integral Convex Hulls for Conics in {$E^2$}" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "47--49" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Helymar Balza-Gomez" +, title = "The Periodicity of Integral Convex Hulls for Conics in {$E^2$}" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "47--49" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{b-cpcep-67 -, author = "T. F. Banchoff" -, title = "Critical points and curvature for embedded polyhedra" -, journal = "J. Diff. Geom." -, volume = 1 -, year = 1967 -, pages = "245--256" -, update = "98.07 bibrelex" +, author = "T. F. Banchoff" +, title = "Critical points and curvature for embedded polyhedra" +, journal = "J. Diff. Geom." +, volume = 1 +, year = 1967 +, pages = "245--256" +, update = "98.07 bibrelex" } @article{bt-hftcp-75 -, author = "T. F. Banchoff and F. Takens" -, title = "Height functions with three critical points" -, journal = "Illinois J. Math." -, volume = 76 -, year = 1975 -, pages = "326--335" -, update = "98.07 bibrelex" +, author = "T. F. Banchoff and F. Takens" +, title = "Height functions with three critical points" +, journal = "Illinois J. Math." +, volume = 76 +, year = 1975 +, pages = "326--335" +, update = "98.07 bibrelex" } @article{b-gmsa-74 -, author = "F. Bancilhon" -, title = "A geometric model for stochastic automata" -, journal = "IEEE Trans. Comput." -, volume = 23 -, number = 12 -, year = 1974 -, pages = "1290--1299" -, update = "93.09 milone+mitchell" +, author = "F. Bancilhon" +, title = "A geometric model for stochastic automata" +, journal = "IEEE Trans. Comput." +, volume = 23 +, number = 12 +, year = 1974 +, pages = "1290--1299" +, update = "93.09 milone+mitchell" } @article{bmr-pcnds-91 -, author = "Saibal Banerjee and David Mount and Azriel Rosenfeld" -, title = "Pyramid Computation Of Neighbor Distance Statistics In Dot Patterns" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 53 -, number = 4 -, month = jul -, year = 1991 -, pages = "373--381" -, keywords = "Voronoi neighbors" -, abstract = "This paper describes an algorithm for computing - statistics of Voronoi neighbor distances in a dot - pattern, using a cellular pyramid computer, in a - logarithmic number of computational steps. Given a set - of dots in a square region of the digital plane, the - algorithm determines with high probability the Voronoi - neighbors of the dots in the interior of the region and - then computes statistics of the neighbor distances. An - algorithm of this type may account for the ability of - humans to perceive at a glance whether the dots in a - pattern are randomly or regularly spaced, i.e., their - neighbor distances have high or low variance. (Author - abstract)" +, author = "Saibal Banerjee and David Mount and Azriel Rosenfeld" +, title = "Pyramid Computation Of Neighbor Distance Statistics In Dot Patterns" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 53 +, number = 4 +, month = jul +, year = 1991 +, pages = "373--381" +, keywords = "Voronoi neighbors" +, abstract = "This paper describes an algorithm for computing + statistics of Voronoi neighbor distances in a dot + pattern, using a cellular pyramid computer, in a + logarithmic number of computational steps. Given a set + of dots in a square region of the digital plane, the + algorithm determines with high probability the Voronoi + neighbors of the dots in the interior of the region and + then computes statistics of the neighbor distances. An + algorithm of this type may account for the ability of + humans to perceive at a glance whether the dots in a + pattern are randomly or regularly spaced, i.e., their + neighbor distances have high or low variance. (Author + abstract)" } @manual{b-pug-90 -, author = "R. E. Bank" -, title = "{PLTMG} User's Guide" -, organization = "SIAM" -, year = 1990 -, update = "97.11 bibrelex" +, author = "R. E. Bank" +, title = "{PLTMG} User's Guide" +, organization = "SIAM" +, year = 1990 +, update = "97.11 bibrelex" } @article{br-qslg-89 -, author = "P. G. Bao and J. G. Rokne" -, title = "Quadruple-step line generation" -, journal = "Computers and Graphics" -, volume = 13 -, year = 1989 -, pages = "461--469" -, keywords = "digital geometry, computer graphics, design of algorithms, approximation, incrementation, lines, two-dimensional, average-case analysis" +, author = "P. G. Bao and J. G. Rokne" +, title = "Quadruple-step line generation" +, journal = "Computers and Graphics" +, volume = 13 +, year = 1989 +, pages = "461--469" +, keywords = "digital geometry, computer graphics, design of algorithms, approximation, incrementation, lines, two-dimensional, average-case analysis" } @inproceedings{bbfy-olnr-92 -, author = "E. Bar-Eli and P. Berman and A. Fiat and P. Yan" -, title = "On-line Navigation in a Room" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "237--249" +, author = "E. Bar-Eli and P. Berman and A. Fiat and P. Yan" +, title = "On-line Navigation in a Room" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "237--249" } @article{bbfy-olnr-94 -, author = "E. Bar-Eli and P. Berman and A. Fiat and P. Yan" -, title = "Online Navigation in a Room" -, journal = "J. Algorithms" -, volume = 17 -, year = 1994 -, pages = "319--341" -, update = "95.01 smid" +, author = "E. Bar-Eli and P. Berman and A. Fiat and P. Yan" +, title = "Online Navigation in a Room" +, journal = "J. Algorithms" +, volume = 17 +, year = 1994 +, pages = "319--341" +, update = "95.01 smid" } @incollection{b-lotdp-90 -, author = "G. Bar" -, title = "On the level-oriented two-dimensional packing with rotation of rectangles" -, editor = "R. Bodendiek and R. Henn" -, booktitle = "??" -, publisher = "Physica-Verlag" -, address = "Geidelberg" -, year = 1990 -, pages = "73--78" -, keywords = "packing, isothetic" -, update = "98.07 bibrelex, 95.05 korneenko" +, author = "G. Bar" +, title = "On the level-oriented two-dimensional packing with rotation of rectangles" +, editor = "R. Bodendiek and R. Henn" +, booktitle = "??" +, publisher = "Physica-Verlag" +, address = "Geidelberg" +, year = 1990 +, pages = "73--78" +, keywords = "packing, isothetic" +, update = "98.07 bibrelex, 95.05 korneenko" } @inproceedings{bi-rppt-93 -, author = "G. B{\"a}r and C. Iturriaga" -, title = "Rectangle packing in polynomial time" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "455--460" -, cites = "cgjt-pblot-80, o-efo-83, wkc-fpgl-88, h-prf-88, dcl-cfdfb-89, wkc-oarbb-89, vt-ftcr-90, gj-cigtn-79, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "G. B{\"a}r and C. Iturriaga" +, title = "Rectangle packing in polynomial time" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "455--460" +, cites = "cgjt-pblot-80, o-efo-83, wkc-fpgl-88, h-prf-88, dcl-cfdfb-89, wkc-oarbb-89, vt-ftcr-90, gj-cigtn-79, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{bkp-hanc-93 -, author = "J. Bar-Ilan and G. Kortsarz and D. Peleg" -, title = "How to allocate network centers" -, journal = "J. Algorithms" -, volume = 15 -, number = 3 -, year = 1993 -, pages = "385--415" -, update = "97.03 agarwal" +, author = "J. Bar-Ilan and G. Kortsarz and D. Peleg" +, title = "How to allocate network centers" +, journal = "J. Algorithms" +, volume = 15 +, number = 3 +, year = 1993 +, pages = "385--415" +, update = "97.03 agarwal" } @article{bb-ltacs-96 -, author = "R. Bar-YeHuda and E. Ben-Hanoch" -, title = "A linear time algorithm for covering simple polygons with similar rectangles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "79--102" -, update = "96.09 devillers" +, author = "R. Bar-YeHuda and E. Ben-Hanoch" +, title = "A linear time algorithm for covering simple polygons with similar rectangles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "79--102" +, update = "96.09 devillers" } @inproceedings{bb-otacs-90 -, author = "R. Bar-YeHuda and E. Ben-Hanoch" -, title = "An ${O}(n \log^{*}n)$ time algorithm for covering simple polygons with squares" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "186--190" -, keywords = "polygons, covering" -, cites = "a-acps-88, acko-cops-88, ao-crs-81, be-lrtaw-85, c-ept-90, g-amcmc-72, hs-oiuqt-79, m-fmcbi-91, nt-vpspa-75, rk-dpp-82, si-ttids-86, sl-qcia-87, wbr-cgpma-86, ZZZ" -, update = "98.07 bibrelex, 96.09 devillers, 95.05 korneenko" +, author = "R. Bar-YeHuda and E. Ben-Hanoch" +, title = "An ${O}(n \log^{*}n)$ time algorithm for covering simple polygons with squares" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "186--190" +, keywords = "polygons, covering" +, cites = "a-acps-88, acko-cops-88, ao-crs-81, be-lrtaw-85, c-ept-90, g-amcmc-72, hs-oiuqt-79, m-fmcbi-91, nt-vpspa-75, rk-dpp-82, si-ttids-86, sl-qcia-87, wbr-cgpma-86, ZZZ" +, update = "98.07 bibrelex, 96.09 devillers, 95.05 korneenko" } @article{bc-tdjc-94 -, author = "R. Bar-Yehuda and Bernard Chazelle" -, title = "Triangulating disjoint {Jordan} chains" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, number = 4 -, year = 1994 -, pages = "475--481" -, keywords = "triangulation, polygons with holes, merging holes" -, succeeds = "cb-tsnis-92" -, update = "98.03 mitchell, 95.09 mitchell" +, author = "R. Bar-Yehuda and Bernard Chazelle" +, title = "Triangulating disjoint {Jordan} chains" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, number = 4 +, year = 1994 +, pages = "475--481" +, keywords = "triangulation, polygons with holes, merging holes" +, succeeds = "cb-tsnis-92" +, update = "98.03 mitchell, 95.09 mitchell" } @inproceedings{bei-samcp-93 -, author = "R. Bar-Yehuda and A. Efrat and A. Itai" -, title = "A simple algorithm for maintaining the center of a planar point-set" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "252--257" -, succeeds = "e-samcp-93" -, cites = "as-pglpm-91, bs-dsp1s-80, e-dtdlp-91, ks-tpscv-93, msw-sblp-92, m-ltalp-82, m-apcad-83, m-ss-84, ol-ddspy-81, ps-cgi-85, st-pplup-86, s-sacse-91, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "R. Bar-Yehuda and A. Efrat and A. Itai" +, title = "A simple algorithm for maintaining the center of a planar point-set" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "252--257" +, succeeds = "e-samcp-93" +, cites = "as-pglpm-91, bs-dsp1s-80, e-dtdlp-91, ks-tpscv-93, msw-sblp-92, m-ltalp-82, m-apcad-83, m-ss-84, ol-ddspy-81, ps-cgi-85, st-pplup-86, s-sacse-91, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{be-lrtaw-85 -, author = "R. Bar-Yehuda and S. Even" -, title = "A local ratio theorem for approximating the weighted vertex cover problem" -, journal = "Ann. Discrete Math." -, volume = 25 -, year = 1985 -, pages = "27--46" -, update = "98.07 bibrelex" +, author = "R. Bar-Yehuda and S. Even" +, title = "A local ratio theorem for approximating the weighted vertex cover problem" +, journal = "Ann. Discrete Math." +, volume = 25 +, year = 1985 +, pages = "27--46" +, update = "98.07 bibrelex" } @inproceedings{be-avcpg-82 -, author = "R. Bar-Yehuda and S. Even" -, title = "On Approximating a Vertex Cover for Planar Graphs" -, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." -, month = may -, year = 1982 -, pages = "303--309" -, update = "98.07 bibrelex" +, author = "R. Bar-Yehuda and S. Even" +, title = "On Approximating a Vertex Cover for Planar Graphs" +, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." +, month = may +, year = 1982 +, pages = "303--309" +, update = "98.07 bibrelex" } @techreport{bfk-esrrt-?? -, author = "R. Bar-Yehuda and J. A. Feldman and R. Kay" -, title = "Efficient 2-{SAT} related routing technique" -, type = "Report" -, number = 830 -, institution = "Dept. Comput. Sci., Technion ITT" -, address = "Haifa, Israel" -, year = "??" -, keywords = "wire routing, link distance" -, comments = "Given in Eilat Workshop, March 1995; submitted to Algorithmica" -, update = "95.09 mitchell" +, author = "R. Bar-Yehuda and J. A. Feldman and R. Kay" +, title = "Efficient 2-{SAT} related routing technique" +, type = "Report" +, number = 830 +, institution = "Dept. Comput. Sci., Technion ITT" +, address = "Haifa, Israel" +, year = "??" +, keywords = "wire routing, link distance" +, comments = "Given in Eilat Workshop, March 1995; submitted to Algorithmica" +, update = "95.09 mitchell" } @unpublished{bf-bcnag-90 -, author = "R. Bar-Yehuda and S. Fogel" -, title = "Better constructions and new applications of good splitters" -, year = 1990 -, note = "In preparation" -, update = "98.07 bibrelex" +, author = "R. Bar-Yehuda and S. Fogel" +, title = "Better constructions and new applications of good splitters" +, year = 1990 +, note = "In preparation" +, update = "98.07 bibrelex" } @inproceedings{bf-gsars-90 -, author = "R. Bar-Yehuda and S. Fogel" -, title = "Good splitters with applications to ray shooting" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "81--84" -, keywords = "ray tracing, arrangements" -, cites = "a-dapal-89, a-rsoas-89, bf-bcnag-90, c-prsig-87, cg-vippg-89, cw-qorss-89, e-acg-87, eghsssw-irals-89, ew-hrsls-86, hw-ensrq-87, mw-gscpt-89, ZZZ" -, update = "98.07 bibrelex" +, author = "R. Bar-Yehuda and S. Fogel" +, title = "Good splitters with applications to ray shooting" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "81--84" +, keywords = "ray tracing, arrangements" +, cites = "a-dapal-89, a-rsoas-89, bf-bcnag-90, c-prsig-87, cg-vippg-89, cw-qorss-89, e-acg-87, eghsssw-irals-89, ew-hrsls-86, hw-ensrq-87, mw-gscpt-89, ZZZ" +, update = "98.07 bibrelex" } @techreport{bf-mskis-89 -, author = "R. Bar-Yehuda and S. Fogel" -, title = "Maximal Sets of $k$-Increasing Subsequences with Applications to Counting Points in Triangles" -, type = "Technical {Report}" -, institution = "Technion IIT" -, address = "Haifa, Israel" -, year = 1989 -, update = "95.01 smid, 93.09 milone+mitchell" +, author = "R. Bar-Yehuda and S. Fogel" +, title = "Maximal Sets of $k$-Increasing Subsequences with Applications to Counting Points in Triangles" +, type = "Technical {Report}" +, institution = "Technion IIT" +, address = "Haifa, Israel" +, year = 1989 +, update = "95.01 smid, 93.09 milone+mitchell" } @techreport{bf-psfms-90 -, author = "R. Bar-Yehuda and S. Fogel" -, title = "Partitioning a sequence into few monotone subsequences" -, type = "Technical {Report}" -, number = 640 -, institution = "Technion IIT" -, address = "Haifa, Israel" -, year = 1990 -, update = "95.01 smid" +, author = "R. Bar-Yehuda and S. Fogel" +, title = "Partitioning a sequence into few monotone subsequences" +, type = "Technical {Report}" +, number = 640 +, institution = "Technion IIT" +, address = "Haifa, Israel" +, year = 1990 +, update = "95.01 smid" } @techreport{bf-vrs-90 -, author = "R. Bar-Yehuda and S. Fogel" -, title = "Variations on Ray Shooting" -, type = "Technical {Report}" -, number = 639 -, institution = "Technion IIT" -, address = "Haifa, Israel" -, year = 1990 -, keywords = "sheaf, ES-trees" -, update = "95.01 smid, 93.09 milone+mitchell" +, author = "R. Bar-Yehuda and S. Fogel" +, title = "Variations on Ray Shooting" +, type = "Technical {Report}" +, number = 639 +, institution = "Technion IIT" +, address = "Haifa, Israel" +, year = 1990 +, keywords = "sheaf, ES-trees" +, update = "95.01 smid, 93.09 milone+mitchell" } @article{bf-vrs-94 -, author = "R. Bar-Yehuda and S. Fogel" -, title = "Variations on Ray Shooting" -, journal = "Algorithmica" -, volume = 11 -, year = 1994 -, pages = "133--145" -, succeeds = "bf-vrs-90" -, update = "95.01 smid, 94.05 matousek" +, author = "R. Bar-Yehuda and S. Fogel" +, title = "Variations on Ray Shooting" +, journal = "Algorithmica" +, volume = 11 +, year = 1994 +, pages = "133--145" +, succeeds = "bf-vrs-90" +, update = "95.01 smid, 94.05 matousek" } @techreport{bg-tstpm-95 -, author = "R. Bar-Yehuda and C. Gotsman" -, title = "Time/{Space} tradeoffs for polygon mesh rendering" -, type = "CIS Report" -, number = 9515 -, institution = "Dept. Comput. Sci., Technion ITT" -, address = "Haifa, Israel" -, year = 1995 -, keywords = "Hamiltonian triangulation, planar separator theorem, mesh generation" -, precedes = "bg-tstpm-96" -, update = "96.05 mitchell" +, author = "R. Bar-Yehuda and C. Gotsman" +, title = "Time/{Space} tradeoffs for polygon mesh rendering" +, type = "CIS Report" +, number = 9515 +, institution = "Dept. Comput. Sci., Technion ITT" +, address = "Haifa, Israel" +, year = 1995 +, keywords = "Hamiltonian triangulation, planar separator theorem, mesh generation" +, precedes = "bg-tstpm-96" +, update = "96.05 mitchell" } @article{bg-tstpm-96 -, author = "R. Bar-Yehuda and C. Gotsman" -, title = "Time/{Space} tradeoffs for polygon mesh rendering" -, journal = "ACM Trans. Graph." -, volume = 15 -, number = 2 -, year = 1996 -, pages = "141--152" -, keywords = "Hamiltonian triangulation, planar separator theorem, mesh generation" -, succeeds = "bg-tstpm-95" -, update = "96.05 mitchell" +, author = "R. Bar-Yehuda and C. Gotsman" +, title = "Time/{Space} tradeoffs for polygon mesh rendering" +, journal = "ACM Trans. Graph." +, volume = 15 +, number = 2 +, year = 1996 +, pages = "141--152" +, keywords = "Hamiltonian triangulation, planar separator theorem, mesh generation" +, succeeds = "bg-tstpm-95" +, update = "96.05 mitchell" } @techreport{bg-otamh-90 -, author = "R. Bar-Yehuda and R. Grinwald" -, title = "An {$O(n+h^{1+\epsilon})$}-time algorithm to merge $h$ simple polygons" -, institution = "Technion IIT" -, address = "Haifa, Israel" -, year = 1990 -, update = "95.01 smid, 94.09 jones, 93.09 milone+mitchell" +, author = "R. Bar-Yehuda and R. Grinwald" +, title = "An {$O(n+h^{1+\epsilon})$}-time algorithm to merge $h$ simple polygons" +, institution = "Technion IIT" +, address = "Haifa, Israel" +, year = 1990 +, update = "95.01 smid, 94.09 jones, 93.09 milone+mitchell" } @inproceedings{bg-tph-90 -, author = "R. Bar-Yehuda and R. Grinwald" -, title = "Triangulating polygons with holes" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "112--115" -, cites = "c-ept-90, ci-tsc-84, ctv-flvat-88i, fm-tspep-84, gjpt-tsp-78, k-osps-83, tv-otats-88, ZZZ" -, update = "98.07 bibrelex" +, author = "R. Bar-Yehuda and R. Grinwald" +, title = "Triangulating polygons with holes" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "112--115" +, cites = "c-ept-90, ci-tsc-84, ctv-flvat-88i, fm-tspep-84, gjpt-tsp-78, k-osps-83, tv-otats-88, ZZZ" +, update = "98.07 bibrelex" } @article{b-j-79 -, author = "J. Baracs" -, title = "Juxtapositions" -, journal = "Structural Topology" -, volume = 1 -, year = 1979 -, pages = "59--72" -, update = "97.11 bibrelex" +, author = "J. Baracs" +, title = "Juxtapositions" +, journal = "Structural Topology" +, volume = 1 +, year = 1979 +, pages = "59--72" +, update = "97.11 bibrelex" } @article{b-amdsn-89 -, author = "D. Baraff" -, title = "Analytical methods for dynamic simulation of non-penetrating rigid bodies" -, journal = "Comput. Graph" -, volume = 23 -, number = 3 -, year = 1989 -, pages = "223--232" -, note = "Proc. SIGGRAPH '89" -, update = "98.03 bibrelex" +, author = "D. Baraff" +, title = "Analytical methods for dynamic simulation of non-penetrating rigid bodies" +, journal = "Comput. Graph" +, volume = 23 +, number = 3 +, year = 1989 +, pages = "223--232" +, note = "Proc. SIGGRAPH '89" +, update = "98.03 bibrelex" } @article{b-cscnp-90 -, author = "D. Baraff" -, title = "Curved surfaces and coherence for non-penetrating rigid body simulation" -, journal = "Comput. Graph." -, volume = 24 -, number = 4 -, year = 1990 -, pages = "19--28" -, update = "98.07 bibrelex" +, author = "D. Baraff" +, title = "Curved surfaces and coherence for non-penetrating rigid body simulation" +, journal = "Comput. Graph." +, volume = 24 +, number = 4 +, year = 1990 +, pages = "19--28" +, update = "98.07 bibrelex" } @article{b-issrb-95 -, author = "D. Baraff" -, title = "Interactive Simulation of Solid Rigid Bodies" -, journal = "CGA" -, volume = 15 -, number = 3 -, month = may -, year = 1995 -, pages = "63--75" -, update = "96.05 mitchell" +, author = "D. Baraff" +, title = "Interactive Simulation of Solid Rigid Bodies" +, journal = "CGA" +, volume = 15 +, number = 3 +, month = may +, year = 1995 +, pages = "63--75" +, update = "96.05 mitchell" } @article{bmk-mffac-97 -, author = "D. Baraff and R. Matikalli and P. Khosla" -, title = "Minimal Fixturing of Frictionless Assemblies: Complexity and Algorithms" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "4--39" -, update = "97.07 held" +, author = "D. Baraff and R. Matikalli and P. Khosla" +, title = "Minimal Fixturing of Frictionless Assemblies: Complexity and Algorithms" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "4--39" +, update = "97.07 held" } @article{br-lbceo-87 -, author = "R. Barakat and J. Reif" -, title = "Lower bounds on the computational efficiency of optical computing systems" -, journal = "Appl. Optics" -, volume = 26 -, number = 6 -, year = 1987 -, pages = "1015--1018" -, update = "97.11 bibrelex" +, author = "R. Barakat and J. Reif" +, title = "Lower bounds on the computational efficiency of optical computing systems" +, journal = "Appl. Optics" +, volume = 26 +, number = 6 +, year = 1987 +, pages = "1015--1018" +, update = "97.11 bibrelex" } @article{br-pcamm-87 -, author = "R. Barakat and J. Reif" -, title = "Polynomial convolution algorithm for matrix multiplication with application for optical computing" -, journal = "Appl. Optics" -, volume = 26 -, number = 14 -, year = 1987 -, pages = "2707--2711" -, update = "97.11 bibrelex" +, author = "R. Barakat and J. Reif" +, title = "Polynomial convolution algorithm for matrix multiplication with application for optical computing" +, journal = "Appl. Optics" +, volume = 26 +, number = 14 +, year = 1987 +, pages = "2707--2711" +, update = "97.11 bibrelex" } @article{bv-nclp-92 -, author = "I. B{\'a}r{\'a}nav and A. M. Vershik" -, title = "On the number of convex lattice polytopes" -, journal = "Geometric and Functional Analysis" -, volume = 2 -, year = 1992 -, pages = "381--393" -, update = "97.11 bibrelex" +, author = "I. B{\'a}r{\'a}nav and A. M. Vershik" +, title = "On the number of convex lattice polytopes" +, journal = "Geometric and Functional Analysis" +, volume = 2 +, year = 1992 +, pages = "381--393" +, update = "97.11 bibrelex" } @article{b-gct-82 -, author = "I. B{\'a}r{\'a}ny" -, title = "A generalization of {Carath{\'e}odory}'s theorem" -, journal = "Discrete Math." -, volume = 40 -, year = 1982 -, pages = "141--152" -, update = "97.11 bibrelex" +, author = "I. B{\'a}r{\'a}ny" +, title = "A generalization of {Carath{\'e}odory}'s theorem" +, journal = "Discrete Math." +, volume = 40 +, year = 1982 +, pages = "141--152" +, update = "97.11 bibrelex" } @incollection{b-gcabt-93 -, author = "I. B{\'a}r{\'a}ny" -, title = "Geometric and Combinatorial Applications of {Borsuk's} Theorem" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "235--249" -, keywords = "survey paper, discrete geometry, Borsuk's theorem, covering, ham-sandwich cuts" -, update = "93.09 erickson" +, author = "I. B{\'a}r{\'a}ny" +, title = "Geometric and Combinatorial Applications of {Borsuk's} Theorem" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "235--249" +, keywords = "survey paper, discrete geometry, Borsuk's theorem, covering, ham-sandwich cuts" +, update = "93.09 erickson" } @inproceedings{bf-cvid-86 -, author = "I. B{\'a}r{\'a}ny and Z. F{\"u}redi" -, title = "Computing the volume is difficult" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "442--447" -, precedes = "bf-cvid-87" +, author = "I. B{\'a}r{\'a}ny and Z. F{\"u}redi" +, title = "Computing the volume is difficult" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "442--447" +, precedes = "bf-cvid-87" } @article{bf-cvid-87 -, author = "I. B{\'a}r{\'a}ny and Z. F{\"u}redi" -, title = "Computing the volume is difficult" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "319--326" -, keywords = "approximation, volume, convex" -, succeeds = "bf-cvid-86" +, author = "I. B{\'a}r{\'a}ny and Z. F{\"u}redi" +, title = "Computing the volume is difficult" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "319--326" +, keywords = "approximation, volume, convex" +, succeeds = "bf-cvid-86" } @techreport{bf-eses-86 -, author = "I. Barany and Z. Furedi" -, title = "Empty simplices in {Euclidean} space" -, type = "Technical {Report}" -, number = 689 -, institution = "Cornell Univ." -, address = "Ithaca, New York" -, month = mar -, year = 1986 -, update = "93.09 milone+mitchell" +, author = "I. Barany and Z. Furedi" +, title = "Empty simplices in {Euclidean} space" +, type = "Technical {Report}" +, number = 689 +, institution = "Cornell Univ." +, address = "Ithaca, New York" +, month = mar +, year = 1986 +, update = "93.09 milone+mitchell" } @article{bf-eses-87 -, author = "I. B{\'a}r{\'a}ny and Z. Furedi" -, title = "Empty simplices in {Euclidean} space" -, journal = "Canad. Math. Bull." -, volume = 30 -, year = 1987 -, pages = "436--445" -, succeeds = "bf-eses-86" -, update = "02.03 devillers" +, author = "I. B{\'a}r{\'a}ny and Z. Furedi" +, title = "Empty simplices in {Euclidean} space" +, journal = "Canad. Math. Bull." +, volume = 30 +, year = 1987 +, pages = "436--445" +, succeeds = "bf-eses-86" +, update = "02.03 devillers" } @inproceedings{bfl-nhp-89 -, author = "I. B{\'a}r{\'a}ny and Z. F{\"u}redi and L. Lov{\'a}sz" -, title = "On the number of halving planes" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "140--144" -, cites = "b-gct-82, bf-eses-86, bf-ntccn-84, e-acg-87, e-epggg-64, elss-dgpps-73, es-sgh-83, fr-hdnj-84, km-etdpp-88, r-ert-68, t-grt-66, ZZZ" -, update = "98.03 bibrelex" +, author = "I. B{\'a}r{\'a}ny and Z. F{\"u}redi and L. Lov{\'a}sz" +, title = "On the number of halving planes" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "140--144" +, cites = "b-gct-82, bf-eses-86, bf-ntccn-84, e-acg-87, e-epggg-64, elss-dgpps-73, es-sgh-83, fr-hdnj-84, km-etdpp-88, r-ert-68, t-grt-66, ZZZ" +, update = "98.03 bibrelex" } @article{bfl-nhp-90 -, author = "I. B{\'a}r{\'a}ny and Z. F{\"u}redi and L. Lov{\'a}sz" -, title = "On the number of halving planes" -, journal = "Combinatorica" -, volume = 10 -, year = 1990 -, pages = "175--183" -, succeeds = "bfl-nhp-89" -, update = "95.05 agarwal" +, author = "I. B{\'a}r{\'a}ny and Z. F{\"u}redi and L. Lov{\'a}sz" +, title = "On the number of halving planes" +, journal = "Combinatorica" +, volume = 10 +, year = 1990 +, pages = "175--183" +, succeeds = "bfl-nhp-89" +, update = "95.05 agarwal" } @article{bhl-ipplb-92 -, author = "I. B{\'a}r{\'a}ny and R. Howe and L. Lov{\'a}sz" -, title = "On integer points in polyhedra: A lower bound" -, journal = "Combinatorica" -, volume = 12 -, year = 1992 -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "I. B{\'a}r{\'a}ny and R. Howe and L. Lov{\'a}sz" +, title = "On integer points in polyhedra: A lower bound" +, journal = "Combinatorica" +, volume = 12 +, year = 1992 +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{bl-cppe-90 -, author = "I. B{\'a}r{\'a}ny and D. G. Larman" -, title = "A combinatorial property of points and ellipsoids" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "375--382" +, author = "I. B{\'a}r{\'a}ny and D. G. Larman" +, title = "A combinatorial property of points and ellipsoids" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "375--382" } @article{bl-ceb-87 -, author = "I. B{\'a}r{\'a}ny and J. Lehel" -, title = "Covering with {Euclidean} boxes" -, journal = "European J. Combin." -, volume = 8 -, year = 1987 -, pages = "113--119" -, keywords = "points, covering, isothetic" -, update = "96.09 devillers, 95.05 korneenko" +, author = "I. B{\'a}r{\'a}ny and J. Lehel" +, title = "Covering with {Euclidean} boxes" +, journal = "European J. Combin." +, volume = 8 +, year = 1987 +, pages = "113--119" +, keywords = "points, covering, isothetic" +, update = "96.09 devillers, 95.05 korneenko" } @article{bssu-crapb-89 -, author = "I. B{\'a}r{\'a}ny and J. H. Schmerl and S. J. Sidney and J. Urrutia" -, title = "A combinatorial results abouts points and balls in {Euclidean} space" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "259--262" +, author = "I. B{\'a}r{\'a}ny and J. H. Schmerl and S. J. Sidney and J. Urrutia" +, title = "A combinatorial results abouts points and balls in {Euclidean} space" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "259--262" } @inproceedings{bs-enks-90 -, author = "I. B{\'a}r{\'a}ny and W. Steiger" -, title = "On the expected number of $k$-sets" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "55--59" -, cites = "ag-nssfs-86, acegsw-ptphp-90, bfl-nhp-89, cp-hrsaa-86, c-narsc-87, cs-arscg-89, csy-khrp-87, e-acg-87, ew-nlsfs-85, elss-dgpps-73, gp-nkssn-84, l-nhl-71, pss-ubnpk-92, w-mksfs-86, ZZZ" -, update = "98.07 bibrelex" +, author = "I. B{\'a}r{\'a}ny and W. Steiger" +, title = "On the expected number of $k$-sets" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "55--59" +, cites = "ag-nssfs-86, acegsw-ptphp-90, bfl-nhp-89, cp-hrsaa-86, c-narsc-87, cs-arscg-89, csy-khrp-87, e-acg-87, ew-nlsfs-85, elss-dgpps-73, gp-nkssn-84, l-nhl-71, pss-ubnpk-92, w-mksfs-86, ZZZ" +, update = "98.07 bibrelex" } @article{bs-enks-94 -, author = "I. B{\'a}r{\'a}ny and W. Steiger" -, title = "On the expected number of $k$-sets" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "243--263" -, update = "98.07 agarwal+bibrelex" +, author = "I. B{\'a}r{\'a}ny and W. Steiger" +, title = "On the expected number of $k$-sets" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "243--263" +, update = "98.07 agarwal+bibrelex" } @article{bv-pfest-98 -, author = "I. B{\'a}r{\'a}ny and P. Valtr" -, title = "A positive fraction {Erd{\H{o}}s-Szekeres} theorem" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "335--342" -, update = "02.03 devillers" +, author = "I. B{\'a}r{\'a}ny and P. Valtr" +, title = "A positive fraction {Erd{\H{o}}s-Szekeres} theorem" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "335--342" +, update = "02.03 devillers" } @article{bh-eshmp-95 -, author = "M. Barbehenn and S. Hutchinson" -, title = "Efficient Search and Hierarchical Motion Planning by Dynamically Maintaining Single-Source Shortest Paths Trees" -, journal = "IEEE Trans. Robot. Autom." -, volume = 11 -, number = 2 -, month = apr -, year = 1995 -, pages = "198--214" -, update = "96.01 held" +, author = "M. Barbehenn and S. Hutchinson" +, title = "Efficient Search and Hierarchical Motion Planning by Dynamically Maintaining Single-Source Shortest Paths Trees" +, journal = "IEEE Trans. Robot. Autom." +, volume = 11 +, number = 2 +, month = apr +, year = 1995 +, pages = "198--214" +, update = "96.01 held" } @inproceedings{bh-rapp-93 -, author = "B. Barber and M. Hirsch" -, title = "A robust algorithm for point in polyhedron" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "479--484" -, cites = "bh-ppida-92, cw-pi-90, gss-egbra-89, h-srsia-89, hhk-tirgc-88, ht-tdscp-89, k-cplp-66, lmr-eppa-84, m-maia-79, m-eat-84, t-smcua-80, f-pcg-93, k-dscpg-82, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "B. Barber and M. Hirsch" +, title = "A robust algorithm for point in polyhedron" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "479--484" +, cites = "bh-ppida-92, cw-pi-90, gss-egbra-89, h-srsia-89, hhk-tirgc-88, ht-tdscp-89, k-cplp-66, lmr-eppa-84, m-maia-79, m-eat-84, t-smcua-80, f-pcg-93, k-dscpg-82, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @phdthesis{b-cgida-93 -, author = "C. B. Barber" -, title = "Computational geometry with imprecise data and arithmetic" -, school = "Princeton Univ." -, address = "Princeton, NJ" -, year = 1993 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "C. B. Barber" +, title = "Computational geometry with imprecise data and arithmetic" +, school = "Princeton Univ." +, address = "Princeton, NJ" +, year = 1993 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @techreport{bdh-qach-93 -, author = "C. B. Barber and D. P. Dobkin and H. Huhdanpaa" -, title = "The {Quickhull} algorithm for convex hull" -, type = "Technical Report" -, number = "GCG53" -, institution = "Geometry Center, Univ. of Minnesota" -, month = jul -, year = 1993 -, comments = "code available from \url{ftp://geom.umn.edu/pub/qhull.tar.Z}; +, author = "C. B. Barber and D. P. Dobkin and H. Huhdanpaa" +, title = "The {Quickhull} algorithm for convex hull" +, type = "Technical Report" +, number = "GCG53" +, institution = "Geometry Center, Univ. of Minnesota" +, month = jul +, year = 1993 +, comments = "code available from \url{ftp://geom.umn.edu/pub/qhull.tar.Z}; view results in $3$-d or $4$-d with \url{ftp://geom.umn.edu/pub/geomview/geomview-sgi.tar.Z} or \url{ftp://geom.umn.edu/pub/geomview/geomview-next.tar.Z}" -, precedes = "bdh-qach-96" -, update = "98.03 icking, 94.01 jones, 93.09 jones" -, abstract = "The convex hull of a set of points is the smallest convex +, precedes = "bdh-qach-96" +, update = "98.03 icking, 94.01 jones, 93.09 jones" +, abstract = "The convex hull of a set of points is the smallest convex set that contains the points. This paper presents a convex hull algorithm that combines the $2$-d Quickhull algorithm with the general dimension Beneath-beyond algorithm. It is similar to the randomized, incremental @@ -15399,2193 +15399,2193 @@ @techreport{bdh-qach-93 } @article{bdh-qach-96 -, author = "C. Bradford Barber and David P. Dobkin and Hannu Huhdanpaa" -, title = "The {Quickhull} Algorithm for Convex Hulls" -, journal = "ACM Trans. Math. Softw." -, volume = 22 -, number = 4 -, month = dec -, year = 1996 -, pages = "469--483" -, succeeds = "bdh-qach-93" -, update = "01.04 icking, 98.03 icking" +, author = "C. Bradford Barber and David P. Dobkin and Hannu Huhdanpaa" +, title = "The {Quickhull} Algorithm for Convex Hulls" +, journal = "ACM Trans. Math. Softw." +, volume = 22 +, number = 4 +, month = dec +, year = 1996 +, pages = "469--483" +, succeeds = "bdh-qach-93" +, update = "01.04 icking, 98.03 icking" } @techreport{bh-ppida-92 -, author = "C. B. Barber and M. D. Hirsch" -, title = "Point in polyhedron with imprecise data and arithmetic" -, type = "Technical Report" -, number = "GCG46" -, institution = "The Geometry Center" -, year = 1992 -, update = "98.11 bibrelex" +, author = "C. B. Barber and M. D. Hirsch" +, title = "Point in polyhedron with imprecise data and arithmetic" +, type = "Technical Report" +, number = "GCG46" +, institution = "The Geometry Center" +, year = 1992 +, update = "98.11 bibrelex" } @article{bjp-laics-92 -, author = "L. Bardis and R. A. Jinkerson and N. M. Patrikalakis" -, title = "Localization for Automated Inspection of Curved Surfaces" -, journal = "International Journal of Offshore and Polar Engineering" -, volume = 1 -, number = 3 -, year = 1992 -, pages = "228--234" -, update = "95.05 abrams" +, author = "L. Bardis and R. A. Jinkerson and N. M. Patrikalakis" +, title = "Localization for Automated Inspection of Curved Surfaces" +, journal = "International Journal of Offshore and Polar Engineering" +, volume = 1 +, number = 3 +, year = 1992 +, pages = "228--234" +, update = "95.05 abrams" } @article{bp-acrbp-89 -, author = "L. Bardis and N. M. Patrikalakis" -, title = "Approximate Conversion of Rational {B}-Spline Patches" -, journal = "Comput. Aided Geom. Design" -, volume = 6 -, number = 3 -, year = 1989 -, pages = "189--204" -, update = "95.05 abrams" +, author = "L. Bardis and N. M. Patrikalakis" +, title = "Approximate Conversion of Rational {B}-Spline Patches" +, journal = "Comput. Aided Geom. Design" +, volume = 6 +, number = 3 +, year = 1989 +, pages = "189--204" +, update = "95.05 abrams" } @inproceedings{bp-brbs-89 -, author = "L. Bardis and N. M. Patrikalakis" -, title = "Blending Rational {B}-Spline Surfaces" -, booktitle = "Proc. Eurographics '89" -, year = 1989 -, pages = "453--462" -, update = "95.05 abrams" +, author = "L. Bardis and N. M. Patrikalakis" +, title = "Blending Rational {B}-Spline Surfaces" +, booktitle = "Proc. Eurographics '89" +, year = 1989 +, pages = "453--462" +, update = "95.05 abrams" } @article{bp-sarb90 -, author = "L. Bardis and N. M. Patrikalakis" -, title = "Surface Approximation with Rational {B}-Splines" -, journal = "Engineering with Computers" -, volume = 6 -, number = 4 -, year = 1990 -, pages = "223--235" -, update = "95.05 abrams" +, author = "L. Bardis and N. M. Patrikalakis" +, title = "Surface Approximation with Rational {B}-Splines" +, journal = "Engineering with Computers" +, volume = 6 +, number = 4 +, year = 1990 +, pages = "223--235" +, update = "95.05 abrams" } @article{b-csmpi-72 -, author = "E. H. Bareiss" -, title = "Computational solution of matrix problems over an integral domain" -, journal = "J. Inst. Maths Applics" -, volume = 10 -, year = 1972 -, pages = "68--104" -, update = "98.03 bibrelex" +, author = "E. H. Bareiss" +, title = "Computational solution of matrix problems over an integral domain" +, journal = "J. Inst. Maths Applics" +, volume = 10 +, year = 1972 +, pages = "68--104" +, update = "98.03 bibrelex" } @techreport{b-dapd-97 -, author = "G. Barequet" -, title = "{DCEL}: {A} Polyhedral Database" -, type = "Research {Report}, under submission to {\it IJCGA}" -, institution = "Center for Geometric Computing" -, address = "Johns Hopkins Univ." -, year = 1997 -, precedes = "b-dpdpe-98" -, update = "98.11 devillers, 97.03 tamassia" +, author = "G. Barequet" +, title = "{DCEL}: {A} Polyhedral Database" +, type = "Research {Report}, under submission to {\it IJCGA}" +, institution = "Center for Geometric Computing" +, address = "Johns Hopkins Univ." +, year = 1997 +, precedes = "b-dpdpe-98" +, update = "98.11 devillers, 97.03 tamassia" } @article{b-dpdpe-98 -, author = "G. Barequet" -, title = "{DCEL}: A Polyhedral Database and Programming Environment" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "619--636" -, succeeds = "b-dapd-97" -, update = "98.11 devillers" +, author = "G. Barequet" +, title = "{DCEL}: A Polyhedral Database and Programming Environment" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "619--636" +, succeeds = "b-dapd-97" +, update = "98.11 devillers" } @article{b-ughrc-97 -, author = "G. Barequet" -, title = "Using Geometric Hashing to Repair CAD Objects" -, journal = "IEEE Comput. Sci. \& Eng." -, volume = 4 -, number = 4 -, month = oct -, year = 1997 -, pages = "22--28" -, update = "98.07 held" +, author = "G. Barequet" +, title = "Using Geometric Hashing to Repair CAD Objects" +, journal = "IEEE Comput. Sci. \& Eng." +, volume = 4 +, number = 4 +, month = oct +, year = 1997 +, pages = "22--28" +, update = "98.07 held" } @inproceedings{bbdgt-ccgg-97 -, author = "Gill Barequet and Stina S. Bridgeman and Christian A. Duncan and Michael T. Goodrich and Roberto Tamassia" -, title = "Classical Computational Geometry in {GeomNet}" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "412--414" -, keywords = "internet computing, format conversion, client-server, CGC, Brown" -, cites = "abdpy-enmcs-95, bclt-nmaaw-95, bclt-aawww-96, bclt-agaow-96, bclt-maas-96, bkmnsu-egcl-95, em-sstcd-90, fgkss-ckbgc-96, f-nsa2d-95, fm-nsala-91, gy-frcg-86, gm-rad-95, gss-egbra-89, hd-mgvia-00, hhk-tirgc-88, lpt-rpqiv-96, mn-lpcgc-95, m-dpggt-89, almp-gsgv-95, o-dcgal-96, y-gctsp-90, ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 bibrelex, 97.07 efrat, 97.03 tamassia" +, author = "Gill Barequet and Stina S. Bridgeman and Christian A. Duncan and Michael T. Goodrich and Roberto Tamassia" +, title = "Classical Computational Geometry in {GeomNet}" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "412--414" +, keywords = "internet computing, format conversion, client-server, CGC, Brown" +, cites = "abdpy-enmcs-95, bclt-nmaaw-95, bclt-aawww-96, bclt-agaow-96, bclt-maas-96, bkmnsu-egcl-95, em-sstcd-90, fgkss-ckbgc-96, f-nsa2d-95, fm-nsala-91, gy-frcg-86, gm-rad-95, gss-egbra-89, hd-mgvia-00, hhk-tirgc-88, lpt-rpqiv-96, mn-lpcgc-95, m-dpggt-89, almp-gsgv-95, o-dcgal-96, y-gctsp-90, ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 bibrelex, 97.07 efrat, 97.03 tamassia" } @article{bbdgt-ggcoi-99 -, author = "Gill Barequet and Stina S. Bridgeman and Christian A. Duncan and Michael T. Goodrich and Roberto Tamassia" -, title = "{GeomNet:} Geometric Computing Over the Internet" -, journal = "IEEE Internet Computing" -, volume = 3 -, number = 2 -, year = 1999 -, pages = "21--29" -, keywords = "internet computing, format conversion, client-server, CGC, Brown" -, update = "01.11 smid, 98.11 tamassia" +, author = "Gill Barequet and Stina S. Bridgeman and Christian A. Duncan and Michael T. Goodrich and Roberto Tamassia" +, title = "{GeomNet:} Geometric Computing Over the Internet" +, journal = "IEEE Internet Computing" +, volume = 3 +, number = 2 +, year = 1999 +, pages = "21--29" +, keywords = "internet computing, format conversion, client-server, CGC, Brown" +, update = "01.11 smid, 98.11 tamassia" } @inproceedings{bbddg-aopdf-97 -, author = "G. Barequet and A. Briggs and M. Dickerson and C. Dima and M. Goodrich" -, title = "Animating the Offset Polygon Distance Function" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "479--480" -, keywords = "video review" -, cites = "aaag-ntsp-95, aa-ssgpf-96, bbdg-opapp-, bdg-vdpod-, kn-lts-76, obs-stcav-92, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "G. Barequet and A. Briggs and M. Dickerson and C. Dima and M. Goodrich" +, title = "Animating the Offset Polygon Distance Function" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "479--480" +, keywords = "video review" +, cites = "aaag-ntsp-95, aa-ssgpf-96, bbdg-opapp-, bdg-vdpod-, kn-lts-76, obs-stcav-92, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{bbdg-opapp- -, author = "G. Barequet and A. Briggs and M. Dickerson and M. Goodrich" -, title = "Offset polygon annulus placement problems" -, type = "Manuscript" -, institution = "??" -, year = "??" -, update = "98.07 bibrelex" +, author = "G. Barequet and A. Briggs and M. Dickerson and M. Goodrich" +, title = "Offset polygon annulus placement problems" +, type = "Manuscript" +, institution = "??" +, year = "??" +, update = "98.07 bibrelex" } @article{bcgmt-bhrs3-96 -, author = "G. Barequet and B. Chazelle and L. Guibas and J. Mitchell and A. Tal" -, title = "{BOXTREE}: {A} Hierarchical Representation for Surfaces in {3D}" -, journal = "Comput. Graph. Forum" -, volume = 15 -, number = 3 -, month = sep -, year = 1996 -, pages = "C387--C396, C484" -, note = "Proc.\ Eurographics'96" -, keywords = "Boxtree, Collision detection, Computational geometry, Data structures, Hierarchical systems, Octrees, Piecewise linear techniques, Ray shooting, Ray tracing, Surfaces, Three dimensional computer graphics" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "G. Barequet and B. Chazelle and L. Guibas and J. Mitchell and A. Tal" +, title = "{BOXTREE}: {A} Hierarchical Representation for Surfaces in {3D}" +, journal = "Comput. Graph. Forum" +, volume = 15 +, number = 3 +, month = sep +, year = 1996 +, pages = "C387--C396, C484" +, note = "Proc.\ Eurographics'96" +, keywords = "Boxtree, Collision detection, Computational geometry, Data structures, Hierarchical systems, Octrees, Piecewise linear techniques, Ray shooting, Ray tracing, Surfaces, Three dimensional computer graphics" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @inproceedings{bde-ttdp-96 -, author = "Gill Barequet and Matthew Dickerson and David Eppstein" -, title = "On Triangulating Three-Dimensional Polygons" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "38--47" -, cites = "a-kb-94, be-mgot-92i, bs-fgbp-95, bs-plibp-96, c-tsplt-91a, e-t-91, eg-tsa-89, f-pc6ck-89, go-copcg-95, k-mtpd-80, rs-dttdn-92, s-tkwsd-90, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Gill Barequet and Matthew Dickerson and David Eppstein" +, title = "On Triangulating Three-Dimensional Polygons" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "38--47" +, cites = "a-kb-94, be-mgot-92i, bs-fgbp-95, bs-plibp-96, c-tsplt-91a, e-t-91, eg-tsa-89, f-pc6ck-89, go-copcg-95, k-mtpd-80, rs-dttdn-92, s-tkwsd-90, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{bde-ttdp-98 -, author = "G. Barequet and M. Dickerson and D. Eppstein" -, title = "On Triangulating Three-dimensional Polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, number = 3 -, year = 1998 -, pages = "155--170" -, update = "98.07 held" +, author = "G. Barequet and M. Dickerson and D. Eppstein" +, title = "On Triangulating Three-dimensional Polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, number = 3 +, year = 1998 +, pages = "155--170" +, update = "98.07 held" } @techreport{bdg-vdpod- -, author = "G. Barequet and M. Dickerson and M. Goodrich" -, title = "Voronoi diagrams for polygon-offset distance functions" -, type = "Manuscript" -, institution = "??" -, year = "??" -, update = "98.07 bibrelex" +, author = "G. Barequet and M. Dickerson and M. Goodrich" +, title = "Voronoi diagrams for polygon-offset distance functions" +, type = "Manuscript" +, institution = "??" +, year = "??" +, update = "98.07 bibrelex" } @inproceedings{bdp-tcpcm-95 -, author = "Gill Barequet and Matthew Dickerson and Petru Pau" -, title = "Translating a Convex Polygon to Contain a Maximum Number of Points" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "61--66" -, precedes = "bdp-tcpcm-97" -, update = "98.03 mitchell, 95.09 jones" +, author = "Gill Barequet and Matthew Dickerson and Petru Pau" +, title = "Translating a Convex Polygon to Contain a Maximum Number of Points" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "61--66" +, precedes = "bdp-tcpcm-97" +, update = "98.03 mitchell, 95.09 jones" } @article{bdp-tcpcm-97 -, author = "Gill Barequet and Matthew Dickerson and Petru Pau" -, title = "Translating a convex polygon to contain a maximum number of points" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, number = 4 -, year = 1997 -, pages = "167--179" -, succeeds = "bdp-tcpcm-95" -, update = "98.03 mitchell" +, author = "Gill Barequet and Matthew Dickerson and Petru Pau" +, title = "Translating a convex polygon to contain a maximum number of points" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, number = 4 +, year = 1997 +, pages = "167--179" +, succeeds = "bdp-tcpcm-95" +, update = "98.03 mitchell" } @article{bdk-rgtcr-98 -, author = "G. Barequet and C. A. Duncan and S. Kumar" -, title = "RSVP: A Geometric Toolkit for Controlled Repair of Solid Models" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 4 -, number = 2 -, month = apr -, year = 1998 -, pages = "162--177" -, update = "98.11 held" +, author = "G. Barequet and C. A. Duncan and S. Kumar" +, title = "RSVP: A Geometric Toolkit for Controlled Repair of Solid Models" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 4 +, number = 2 +, month = apr +, year = 1998 +, pages = "162--177" +, update = "98.11 held" } @inproceedings{be-asrv-00b -, author = "Gill Barequet and Gershon Elber" -, title = "{$\alpha$}-Sectors of Rational Varieties" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "35--39" -, update = "00.03 bibrelex" +, author = "Gill Barequet and Gershon Elber" +, title = "{$\alpha$}-Sectors of Rational Varieties" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "35--39" +, update = "00.03 bibrelex" } @article{bh-pctmh-01 -, author = "G. Barequet and S. Har-Peled" -, title = "Polygon containment and translational min-{Hausdorff}-distance between segment sets are {3SUM}-hard" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "465--474" -, update = "01.11 smid" +, author = "G. Barequet and S. Har-Peled" +, title = "Polygon containment and translational min-{Hausdorff}-distance between segment sets are {3SUM}-hard" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "465--474" +, update = "01.11 smid" } @inproceedings{bk-dfelm-97 -, author = "G. Barequet and Y. Kaplan" -, title = "A data front end for layered manufacturing" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "231--239" -, cites = "-sis-89, b-dapd-97, bs-fgbp-95, bs-plibp-96, bw-acmrs-92, dm-otps-91, fd-ficg-82, g-cm-80, k-mtpd-80, ksl-pcdcv-97, md-sepct-93, mf-iicsf-96, sw-hdsac1-88, sh-ttsps-92, st-tsms-91, t-dsna-83, -rurcp-88, w-sve-96, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "G. Barequet and Y. Kaplan" +, title = "A data front end for layered manufacturing" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "231--239" +, cites = "-sis-89, b-dapd-97, bs-fgbp-95, bs-plibp-96, bw-acmrs-92, dm-otps-91, fd-ficg-82, g-cm-80, k-mtpd-80, ksl-pcdcv-97, md-sepct-93, mf-iicsf-96, sw-hdsac1-88, sh-ttsps-92, st-tsms-91, t-dsna-83, -rurcp-88, w-sve-96, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{bk-dfelm-98 -, author = "G. Barequet and Y. Kaplan" -, title = "A Data Front-End for Layered Manufacturing" -, journal = "Comput. Aided Design" -, volume = 30 -, number = 4 -, month = apr -, year = 1998 -, pages = "231--243" -, update = "98.07 held" +, author = "G. Barequet and Y. Kaplan" +, title = "A Data Front-End for Layered Manufacturing" +, journal = "Comput. Aided Design" +, volume = 30 +, number = 4 +, month = apr +, year = 1998 +, pages = "231--243" +, update = "98.07 held" } @inproceedings{bk-rcm-97 -, author = "G. Barequet and S. Kumar" -, title = "Repairing {CAD} Models" -, booktitle = "Proc. IEEE Visualization" -, site = "Phoenix, AZ" -, year = 1997 -, pages = "363--370" -, update = "98.03 mitchell" +, author = "G. Barequet and S. Kumar" +, title = "Repairing {CAD} Models" +, booktitle = "Proc. IEEE Visualization" +, site = "Phoenix, AZ" +, year = 1997 +, pages = "363--370" +, update = "98.03 mitchell" } @techreport{bs-fgbp-93 -, author = "G. Barequet and M. Sharir" -, title = "Filling gaps in the boundary of a polyhedron" -, type = "Technical {Report}" -, number = "277/93" -, institution = "Dept. Comput. Sci., Tel Aviv Univ." -, address = "Tel Aviv, Israel" -, year = 1993 -, update = "98.03 bibrelex" +, author = "G. Barequet and M. Sharir" +, title = "Filling gaps in the boundary of a polyhedron" +, type = "Technical {Report}" +, number = "277/93" +, institution = "Dept. Comput. Sci., Tel Aviv Univ." +, address = "Tel Aviv, Israel" +, year = 1993 +, update = "98.03 bibrelex" } @article{bs-fgbp-95 -, author = "G. Barequet and Micha Sharir" -, title = "Filling Gaps in the Boundary of a Polyhedron" -, journal = "Comput. Aided Geom. Design" -, volume = 12 -, year = 1995 -, pages = "207--229" -, update = "98.03 mitchell, 97.11 bibrelex+held" +, author = "G. Barequet and Micha Sharir" +, title = "Filling Gaps in the Boundary of a Polyhedron" +, journal = "Comput. Aided Geom. Design" +, volume = 12 +, year = 1995 +, pages = "207--229" +, update = "98.03 mitchell, 97.11 bibrelex+held" } @inproceedings{bs-psvmt-94 -, author = "G. Barequet and Micha Sharir" -, title = "Partial surface and volume matching in three dimensions" -, booktitle = "Proc. 12th Annu. IAPR/IEEE Internat. Conf. Pattern Recogn." -, site = "Jerusalem, Israel" -, volume = 2 -, year = 1994 -, pages = "610--614" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "G. Barequet and Micha Sharir" +, title = "Partial surface and volume matching in three dimensions" +, booktitle = "Proc. 12th Annu. IAPR/IEEE Internat. Conf. Pattern Recogn." +, site = "Jerusalem, Israel" +, volume = 2 +, year = 1994 +, pages = "610--614" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{bs-psmud-96 -, author = "Gill Barequet and Micha Sharir" -, title = "Partial Surface Matching by Using Directed Footprints" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C9--C10" -, cites = "bj-tdor-85, bs-psvmt-94, cd-mbrrv-86, ksss-tdmbb-86, ss-ipoot-87, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Gill Barequet and Micha Sharir" +, title = "Partial Surface Matching by Using Directed Footprints" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C9--C10" +, cites = "bj-tdor-85, bs-psvmt-94, cd-mbrrv-86, ksss-tdmbb-86, ss-ipoot-87, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{bs-plibp-94 -, author = "G. Barequet and Micha Sharir" -, title = "Piecewise-Linear Interpolation between Polygonal Slices" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "93--102" -, cites = "bs-fgbp-93, bpccd-tdcrs-81, b-srpcs-88, bg-tdrcs-92, cs-cccld-78, cllct-tatdr-88, cclbwfodbt-avebp-80, epo-taasm-91, fku-osrpc-77, gd-ngtmp-82, g-tdmho-93, gos-rpps-93, gs-pmgsc-85, hmn-fsv-93, hw-imbmm-88, ksss-tdmbb-86, kf-fsr3d-88, ksf-sstsr-88, k-acstc-75, khw-3dcmu-91, k-mtpd-80, mss-sccbp-91, s-r3doc-89, ss-ipoot-87, s-sdbcd-81, sh-srsd-81, sp-cstir-87, sp-pgmbo-88, wa-srr3d-86, ww-srbsp-93, w-cm-90, zjh-scpc-87, ZZZ" -, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" +, author = "G. Barequet and Micha Sharir" +, title = "Piecewise-Linear Interpolation between Polygonal Slices" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "93--102" +, cites = "bs-fgbp-93, bpccd-tdcrs-81, b-srpcs-88, bg-tdrcs-92, cs-cccld-78, cllct-tatdr-88, cclbwfodbt-avebp-80, epo-taasm-91, fku-osrpc-77, gd-ngtmp-82, g-tdmho-93, gos-rpps-93, gs-pmgsc-85, hmn-fsv-93, hw-imbmm-88, ksss-tdmbb-86, kf-fsr3d-88, ksf-sstsr-88, k-acstc-75, khw-3dcmu-91, k-mtpd-80, mss-sccbp-91, s-r3doc-89, ss-ipoot-87, s-sdbcd-81, sh-srsd-81, sp-cstir-87, sp-pgmbo-88, wa-srr3d-86, ww-srbsp-93, w-cm-90, zjh-scpc-87, ZZZ" +, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" } @article{bs-plibp-96 -, author = "G. Barequet and Micha Sharir" -, title = "Piecewise-linear interpolation between polygonal slices" -, journal = "Comput. Vision Graph. Image Process." -, volume = 63 -, year = 1996 -, note = "in press." -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "G. Barequet and Micha Sharir" +, title = "Piecewise-linear interpolation between polygonal slices" +, journal = "Comput. Vision Graph. Image Process." +, volume = 63 +, year = 1996 +, note = "in press." +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{bw-ocbtp-96 -, author = "G. Barequet and B. Wolfers" -, title = "Optimizing a corridor between two polygons with an application to polyhedral interpolation" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "32--37" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "G. Barequet and B. Wolfers" +, title = "Optimizing a corridor between two polygons with an application to polyhedral interpolation" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "32--37" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{bml-ggpj-97 -, author = "Naser S. Barghouti and John Mocenigo and Wenke Lee" -, title = "{\em Grappa}: A {GRAPh} {PAckage} in {Java}" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "336--343" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Naser S. Barghouti and John Mocenigo and Wenke Lee" +, title = "{\em Grappa}: A {GRAPh} {PAckage} in {Java}" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "336--343" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{bbr-ecit-85 -, author = "M. Barnabei and A. Brini and G.-C. Rota" -, title = "On the exterior calculus of invariant theory" -, journal = "J. Algebra" -, volume = 96 -, number = 1 -, year = 1985 -, pages = "120--160" -, update = "98.03 bibrelex" +, author = "M. Barnabei and A. Brini and G.-C. Rota" +, title = "On the exterior calculus of invariant theory" +, journal = "J. Algebra" +, volume = 96 +, number = 1 +, year = 1985 +, pages = "120--160" +, update = "98.03 bibrelex" } @article{bs-dnapv-66 -, author = "O. Barndorff-Nielsen and M. Sobel" -, title = "On the distribution of the number of admissible points in a vector sample" -, journal = "Theory Probab. Appl." -, volume = "XI" -, number = 2 -, year = 1966 -, pages = "249--269" +, author = "O. Barndorff-Nielsen and M. Sobel" +, title = "On the distribution of the number of admissible points in a vector sample" +, journal = "Theory Probab. Appl." +, volume = "XI" +, number = 2 +, year = 1966 +, pages = "249--269" } @book{bf-a2-83 -, author = "M. Barner and F. Flohr" -, title = "Analysis II" -, publisher = "Walter de Gruyter" -, address = "Berlin" -, year = 1983 -, update = "00.03 bibrelex" +, author = "M. Barner and F. Flohr" +, title = "Analysis II" +, publisher = "Walter de Gruyter" +, address = "Berlin" +, year = 1983 +, update = "00.03 bibrelex" } @article{bh-hofca-86 -, author = "J. Barnes and P. Hut" -, title = "A hierarchical {$O(n \log n)$} force-calculation algorithm" -, journal = "Nature" -, volume = 324 -, number = 4 -, month = dec -, year = 1986 -, pages = "446--449" -, update = "98.03 bibrelex" +, author = "J. Barnes and P. Hut" +, title = "A hierarchical {$O(n \log n)$} force-calculation algorithm" +, journal = "Nature" +, volume = 324 +, number = 4 +, month = dec +, year = 1986 +, pages = "446--449" +, update = "98.03 bibrelex" } @article{b-gc2ce-87 -, author = "D. W. Barnette" -, title = "Generating closed $2$-cell embeddings in the torus and the projective plane" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "233--247" +, author = "D. W. Barnette" +, title = "Generating closed $2$-cell embeddings in the torus and the projective plane" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "233--247" } @article{b-pspcp-86 -, author = "D. W. Barnette" -, title = "Preassigning the shape of projections of convex polytopes" -, journal = "J. Combin. Theory Ser. A" -, volume = 42 -, year = 1986 -, pages = "293--295" -, keywords = "three-dimensional, polytope, projection" -, update = "95.05 korneenko" +, author = "D. W. Barnette" +, title = "Preassigning the shape of projections of convex polytopes" +, journal = "J. Combin. Theory Ser. A" +, volume = 42 +, year = 1986 +, pages = "293--295" +, keywords = "three-dimensional, polytope, projection" +, update = "95.05 korneenko" } @article{b-wpt-90 -, author = "D. W. Barnette" -, title = "{$W_V$} paths on the torus" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "603--608" +, author = "D. W. Barnette" +, title = "{$W_V$} paths on the torus" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "603--608" } @incollection{b-casrd-83 -, author = "R. Barnhill" -, title = "Computer aided surface representation and design" -, editor = "R. Barnhill and W. Boehm" -, booktitle = "Surfaces in Computer-Aided Geometric Design" -, publisher = "North-Holland" -, year = 1983 -, pages = "1--24" -, update = "97.11 bibrelex" +, author = "R. Barnhill" +, title = "Computer aided surface representation and design" +, editor = "R. Barnhill and W. Boehm" +, booktitle = "Surfaces in Computer-Aided Geometric Design" +, publisher = "North-Holland" +, year = 1983 +, pages = "1--24" +, update = "97.11 bibrelex" } @article{b-srds-83 -, author = "R. E. Barnhill" -, title = "A Survey of the Representation and Design of Surfaces" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, month = oct -, year = 1983 -, pages = "9--16" -, annote = "Suggests triangulation for basis of interpolation, - using Little's minmax, rather than Delaunay - Triangulation." +, author = "R. E. Barnhill" +, title = "A Survey of the Representation and Design of Surfaces" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, month = oct +, year = 1983 +, pages = "9--16" +, annote = "Suggests triangulation for basis of interpolation, + using Little's minmax, rather than Delaunay + Triangulation." } @incollection{b-ras-77 -, author = "R. E. Barnhill" -, title = "Representation and approximation of surfaces" -, editor = "J. R. Rice" -, booktitle = "Math. Software III" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1977 -, pages = "69--120" +, author = "R. E. Barnhill" +, title = "Representation and approximation of surfaces" +, editor = "J. R. Rice" +, booktitle = "Math. Software III" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1977 +, pages = "69--120" } @article{bbl-ntc-78 -, author = "R. E. Barnhill and J. H. Brown and I. M. Lucewicz" -, title = "A new twist in CAGD" -, journal = "Comput. Graph. Image Process." -, volume = 8 -, year = 1978 -, pages = "78--79" -, update = "98.03 bibrelex" +, author = "R. E. Barnhill and J. H. Brown and I. M. Lucewicz" +, title = "A new twist in CAGD" +, journal = "Comput. Graph. Image Process." +, volume = 8 +, year = 1978 +, pages = "78--79" +, update = "98.03 bibrelex" } @article{bfjp-ssi-87 -, author = "R. E. Barnhill and G. Farin and M. Jordan and B. R. Piper" -, title = "Surface/surface intersection" -, journal = "Comput. Aided Geom. Design" -, volume = 4 -, year = 1987 -, pages = "3--16" -, update = "97.11 bibrelex" +, author = "R. E. Barnhill and G. Farin and M. Jordan and B. R. Piper" +, title = "Surface/surface intersection" +, journal = "Comput. Aided Geom. Design" +, volume = 4 +, year = 1987 +, pages = "3--16" +, update = "97.11 bibrelex" } @article{bl-atc-84 -, author = "R. E. Barnhill and F. F. Little" -, title = "Adaptive triangular cubatures" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "53--75" +, author = "R. E. Barnhill and F. F. Little" +, title = "Adaptive triangular cubatures" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "53--75" } @article{bl-tfds-84 -, author = "R. E. Barnhill and F. F. Little" -, title = "Three- and four-dimensional surfaces" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, year = 1984 -, pages = "77--102" +, author = "R. E. Barnhill and F. F. Little" +, title = "Three- and four-dimensional surfaces" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, year = 1984 +, pages = "77--102" } @article{bo-sds-90 -, author = "R. E. Barnhill and H. S. Ou" -, title = "Surfaces Defined on Surfaces" -, journal = "Comput. Aided Geom. Design" -, volume = 7 -, year = 1990 -, pages = "323--336" -, annote = "Defines triangulation of a convex surface to be the - same as the convex hull. Hull algorithm is gift - wrapping." +, author = "R. E. Barnhill and H. S. Ou" +, title = "Surfaces Defined on Surfaces" +, journal = "Comput. Aided Geom. Design" +, volume = 7 +, year = 1990 +, pages = "323--336" +, annote = "Defines triangulation of a convex surface to be the + same as the convex hull. Hull algorithm is gift + wrapping." } @book{br-cagd-74 -, author = "R. E. Barnhill and R. F. Riesenfeld" -, title = "Computer aided geometric design" -, publisher = "Academic Press" -, address = "New York" -, year = 1974 -, update = "98.03 bibrelex" +, author = "R. E. Barnhill and R. F. Riesenfeld" +, title = "Computer aided geometric design" +, publisher = "Academic Press" +, address = "New York" +, year = 1974 +, update = "98.03 bibrelex" } @article{bgss-icfcm-96 -, author = "D. Barnum and J. Greene and A. Smellie and P. Sprague" -, title = "Identification of common functional components among molecules" -, journal = "J. Chem. Inf. Comput. Sci." -, volume = "??" -, year = 1996 -, note = "To appear" -, update = "98.07 bibrelex" +, author = "D. Barnum and J. Greene and A. Smellie and P. Sprague" +, title = "Identification of common functional components among molecules" +, journal = "J. Chem. Inf. Comput. Sci." +, volume = "??" +, year = 1996 +, note = "To appear" +, update = "98.07 bibrelex" } @inproceedings{bjz-adrc-99 -, author = "Ala Eddine Barouni and Ali Jaoua and Nejib Zaguia" -, title = "An Algorithm for Drawing a Ring Cover" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "157--159" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Ala Eddine Barouni and Ali Jaoua and Nejib Zaguia" +, title = "An Algorithm for Drawing a Ring Cover" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "157--159" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{bgs-apcme-80 -, author = "R. C. Barr and T. M. Gallie and M. S. Spach" -, title = "Automated Production of Contour Maps for Electrophysiology" -, journal = "Computers in Biomedical Research" -, volume = 13 -, year = 1980 -, pages = "142--191" -, annote = "Constructs triangulation. Uses McLains circle - criterion for $O(n^2)$ DT." +, author = "R. C. Barr and T. M. Gallie and M. S. Spach" +, title = "Automated Production of Contour Maps for Electrophysiology" +, journal = "Computers in Biomedical Research" +, volume = 13 +, year = 1980 +, pages = "142--191" +, annote = "Constructs triangulation. Uses McLains circle + criterion for $O(n^2)$ DT." } @article{bkllmr-rsfpp-?? -, author = "J. Barraquand and L. E. Kavraki and J.-C. Latombe and T.-Y. Li and R. Motwani and P. Raghavan" -, title = "A Random Sampling Framework for Path Planning in Large-Dimensional Configuration Spaces" -, journal = "Internat. J. Robot. Res." -, volume = "??" -, year = "??" -, pages = "to appear" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "J. Barraquand and L. E. Kavraki and J.-C. Latombe and T.-Y. Li and R. Motwani and P. Raghavan" +, title = "A Random Sampling Framework for Path Planning in Large-Dimensional Configuration Spaces" +, journal = "Internat. J. Robot. Res." +, volume = "??" +, year = "??" +, pages = "to appear" +, update = "99.11 bibrelex, 98.03 mitchell" } @inproceedings{bl-mcapp-90 -, author = "J. Barraquand and J.-C. Latombe" -, title = "A Monte-Carlo Algorithm for Path Planning with Many Degrees of Freedom" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, month = may -, year = 1990 -, pages = "1712--1717" -, location = "Cincinnati, Ohio" -, update = "02.03 orourke" +, author = "J. Barraquand and J.-C. Latombe" +, title = "A Monte-Carlo Algorithm for Path Planning with Many Degrees of Freedom" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, month = may +, year = 1990 +, pages = "1712--1717" +, location = "Cincinnati, Ohio" +, update = "02.03 orourke" } @article{bl-nmrom-89 -, author = "J. Barraquand and J.-C. Latombe" -, title = "Nonholonomic mobile robots and optimal maneuvering" -, journal = "Revue d'Intelligence artificielle" -, volume = 3 -, year = 1989 -, pages = "77--103" -, update = "97.11 bibrelex" +, author = "J. Barraquand and J.-C. Latombe" +, title = "Nonholonomic mobile robots and optimal maneuvering" +, journal = "Revue d'Intelligence artificielle" +, volume = 3 +, year = 1989 +, pages = "77--103" +, update = "97.11 bibrelex" } @article{bl-nmbmr-93 -, author = "J. Barraquand and J.-C. Latombe" -, title = "Nonholonomic multi-body mobile robots: controllability and motion planning in the presence of obstacles" -, journal = "Algorithmica" -, volume = 10 -, year = 1993 -, pages = "121--155" -, update = "97.11 bibrelex" +, author = "J. Barraquand and J.-C. Latombe" +, title = "Nonholonomic multi-body mobile robots: controllability and motion planning in the presence of obstacles" +, journal = "Algorithmica" +, volume = 10 +, year = 1993 +, pages = "121--155" +, update = "97.11 bibrelex" } @article{bl-rmpdr-91 -, author = "J. Barraquand and J.-C. Latombe" -, title = "Robot Motion Planning: A Distributed Representation Approach" -, journal = "Internat. J. Robot. Res." -, volume = 10 -, year = 1991 -, pages = "628--649" -, update = "97.03 schwarzkopf" +, author = "J. Barraquand and J.-C. Latombe" +, title = "Robot Motion Planning: A Distributed Representation Approach" +, journal = "Internat. J. Robot. Res." +, volume = 10 +, year = 1991 +, pages = "628--649" +, update = "97.03 schwarzkopf" } @inproceedings{b-cmsmp-96 -, author = "Antonio Hern{\'a}ndez Barrera" -, title = "Computing the {Minkowski} Sum of Monotone Polygons" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "113--116" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Antonio Hern{\'a}ndez Barrera" +, title = "Computing the {Minkowski} Sum of Monotone Polygons" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "113--116" +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{bv-hmrr-84 -, author = "R. Barrera and A. M. Vazques" -, title = "A Hierarchical Method for Representing Relief" -, booktitle = "Proc. Pecora IX Symposium in Spatial Information Technologies for Remote Sensing Today and Tomorrow" -, site = "Sioux Falls, South Dakota" -, month = oct -, year = 1984 -, pages = "87--92" -, update = "98.11 bibrelex" +, author = "R. Barrera and A. M. Vazques" +, title = "A Hierarchical Method for Representing Relief" +, booktitle = "Proc. Pecora IX Symposium in Spatial Information Technologies for Remote Sensing Today and Tomorrow" +, site = "Sioux Falls, South Dakota" +, month = oct +, year = 1984 +, pages = "87--92" +, update = "98.11 bibrelex" } @inproceedings{bgmrz-tsees-93 -, author = "T. Barrera and J. Griffith and S. A. McKee and G. Robins and T. Zhang" -, title = "Toward a {Steiner} engine: {Enhanced} serial and parallel implementations of the iterated $1$-{Steiner} algorithm" -, booktitle = "Proc. Great Lakes Sympos. VLSI" -, site = "Kalamazoo, MI" -, month = mar -, year = 1993 -, pages = "90--94" -, update = "98.03 bibrelex" +, author = "T. Barrera and J. Griffith and S. A. McKee and G. Robins and T. Zhang" +, title = "Toward a {Steiner} engine: {Enhanced} serial and parallel implementations of the iterated $1$-{Steiner} algorithm" +, booktitle = "Proc. Great Lakes Sympos. VLSI" +, site = "Kalamazoo, MI" +, month = mar +, year = 1993 +, pages = "90--94" +, update = "98.03 bibrelex" } @inproceedings{bgrz-ngnos-93 -, author = "T. Barrera and J. Griffith and G. Robins and T. Zhang" -, title = "Narrowing the gap: {Near}-optimal {Steiner} trees in polynomial time" -, booktitle = "Proc. IEEE Internat. ASIC Conf." -, site = "Rochester, NY" -, month = sep -, year = 1993 -, pages = "87--90" -, update = "98.03 bibrelex" +, author = "T. Barrera and J. Griffith and G. Robins and T. Zhang" +, title = "Narrowing the gap: {Near}-optimal {Steiner} trees in polynomial time" +, booktitle = "Proc. IEEE Internat. ASIC Conf." +, site = "Rochester, NY" +, month = sep +, year = 1993 +, pages = "87--90" +, update = "98.03 bibrelex" } @incollection{bg-kiufd-94 -, author = "Phillip Barry and Ron Goldman" -, title = "Knot Insertion Using Forward Differences" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "251--255" -, keywords = "curve subdivision" -, update = "94.09 heckbert" -, annote = "Describes a fast technique for subdivision of B-spline +, author = "Phillip Barry and Ron Goldman" +, title = "Knot Insertion Using Forward Differences" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "251--255" +, keywords = "curve subdivision" +, update = "94.09 heckbert" +, annote = "Describes a fast technique for subdivision of B-spline curves and surfaces. Subdivision is a fundamental operation in modeling and rendering. Contains pseudocode." } @article{bd-gcpct-89 -, author = "B. A. Barsky and A. D. DeRose" -, title = "Geometric Continuity of Parametric Curves: Three Equivalent Characterizations" -, journal = "IEEE Comput. Graph. Appl." -, volume = 9 -, number = 6 -, month = nov -, year = 1989 -, pages = "60--68" -, update = "93.09 held" +, author = "B. A. Barsky and A. D. DeRose" +, title = "Geometric Continuity of Parametric Curves: Three Equivalent Characterizations" +, journal = "IEEE Comput. Graph. Appl." +, volume = 9 +, number = 6 +, month = nov +, year = 1989 +, pages = "60--68" +, update = "93.09 held" } @inproceedings{b-aamtm-98 -, author = "Yair Bartal" -, title = "On Approximating Arbitrary Metrics by Tree Metrics" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, year = 1998 -, pages = "to appear" -, update = "98.03 mitchell" +, author = "Yair Bartal" +, title = "On Approximating Arbitrary Metrics by Tree Metrics" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, year = 1998 +, pages = "to appear" +, update = "98.03 mitchell" } @inproceedings{b-pamsi-96 -, author = "Y. Bartal" -, title = "Probabilistic approximation of metric spaces and its algorithmic applications" -, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1996 -, pages = "184--193" -, update = "00.11 smid, 00.07 agarwal" +, author = "Y. Bartal" +, title = "Probabilistic approximation of metric spaces and its algorithmic applications" +, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1996 +, pages = "184--193" +, update = "00.11 smid, 00.07 agarwal" } @book{bbb-isucg-87 -, author = "R. H. Bartels and J. C. Beatty and B. A. Barsky" -, title = "An introduction to splines for use in computer graphics and geometric modeling" -, publisher = "Morgan Kaufman" -, address = "Los Altos, CA" -, year = 1987 -, update = "97.11 bibrelex" +, author = "R. H. Bartels and J. C. Beatty and B. A. Barsky" +, title = "An introduction to splines for use in computer graphics and geometric modeling" +, publisher = "Morgan Kaufman" +, address = "Los Altos, CA" +, year = 1987 +, update = "97.11 bibrelex" } @inproceedings{b-nacvh-91 -, author = "Timothy J. Barth" -, title = "Numerical aspects of computing viscous high reynolds number flows on unstructured meshes" -, booktitle = "AIAA 29th Aerospace Sciences Meeting" -, month = jan -, year = 1991 -, update = "98.07 bibrelex" +, author = "Timothy J. Barth" +, title = "Numerical aspects of computing viscous high reynolds number flows on unstructured meshes" +, booktitle = "AIAA 29th Aerospace Sciences Meeting" +, month = jan +, year = 1991 +, update = "98.07 bibrelex" } @inproceedings{bh-ctbvg-99 -, author = "Wilhelm Barth and Ernst Huber" -, title = "Computations with Tight Bounding Volumes for General Parametric Surfaces" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "123--127" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Wilhelm Barth and Ernst Huber" +, title = "Computations with Tight Bounding Volumes for General Parametric Surfaces" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "123--127" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{bp-fhbsc-83 -, author = "J. J. {Bartholdi, III} and L. K. Platzman" -, title = "A fast heuristic based on spacefilling curves for minimum-weight matching in the plane" -, journal = "Inform. Process. Lett." -, volume = 17 -, year = 1983 -, pages = "177--180" +, author = "J. J. {Bartholdi, III} and L. K. Platzman" +, title = "A fast heuristic based on spacefilling curves for minimum-weight matching in the plane" +, journal = "Inform. Process. Lett." +, volume = 17 +, year = 1983 +, pages = "177--180" } @article{bp-optsh-82 -, author = "J. J. {Bartholdi, III} and L. K. Platzman" -, title = "An {$O(n \log n)$} planar travelling salesman heuristic based on spacefilling curves" -, journal = "Oper. Res. Lett." -, volume = 1 -, number = 4 -, year = 1982 -, pages = "121--125" -, keywords = "travelling salesman problem, heuristic, routing, spacefilling curve, geometric graphs, optimization" -, update = "95.05 korneenko" +, author = "J. J. {Bartholdi, III} and L. K. Platzman" +, title = "An {$O(n \log n)$} planar travelling salesman heuristic based on spacefilling curves" +, journal = "Oper. Res. Lett." +, volume = 1 +, number = 4 +, year = 1982 +, pages = "121--125" +, keywords = "travelling salesman problem, heuristic, routing, spacefilling curve, geometric graphs, optimization" +, update = "95.05 korneenko" } @techreport{bp-hbscc-84 -, author = "J. J. {Bartholdi, III} and L. K. Platzman" -, title = "Heuristics based on spacefilling curves for combinatorial problems in the plane" -, type = "Report" -, number = "PDRC 84-08" -, institution = "School Indust. Syst. Engrg., Georgia Inst. Tech." -, address = "Atlanta, GA" -, year = 1984 -, keywords = "heuristics" +, author = "J. J. {Bartholdi, III} and L. K. Platzman" +, title = "Heuristics based on spacefilling curves for combinatorial problems in the plane" +, type = "Report" +, number = "PDRC 84-08" +, institution = "School Indust. Syst. Engrg., Georgia Inst. Tech." +, address = "Atlanta, GA" +, year = 1984 +, keywords = "heuristics" } @article{bpcw-mtrsm-83 -, author = "J. J. {Bartholdi, III} and L. K. Platzman and R. L. Collins and W. H. {Warden, III}" -, title = "A minimal technology routing system for meals on wheels" -, journal = "Interfaces" -, volume = 13 -, number = 3 -, year = 1983 -, pages = "1--8" +, author = "J. J. {Bartholdi, III} and L. K. Platzman and R. L. Collins and W. H. {Warden, III}" +, title = "A minimal technology routing system for meals on wheels" +, journal = "Interfaces" +, volume = 13 +, number = 3 +, year = 1983 +, pages = "1--8" } @techreport{bh-psafc-91 -, author = "F. Bartling and K. Hinrichs" -, title = "A plane-sweep algorithm for finding a closest pair among convex planar objects" -, type = "Report" -, number = "91-03" -, institution = "Dept. Comput. Sci., Univ. Siegen" -, address = "Siegen, Germany" -, year = 1991 -, precedes = "bh-psafc-92" +, author = "F. Bartling and K. Hinrichs" +, title = "A plane-sweep algorithm for finding a closest pair among convex planar objects" +, type = "Report" +, number = "91-03" +, institution = "Dept. Comput. Sci., Univ. Siegen" +, address = "Siegen, Germany" +, year = 1991 +, precedes = "bh-psafc-92" } @inproceedings{bh-psafc-92 -, author = "F. Bartling and K. Hinrichs" -, title = "A plane-sweep algorithm for finding a closest pair among convex planar objects" -, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 577 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "221--232" -, succeeds = "bh-psafc-91" +, author = "F. Bartling and K. Hinrichs" +, title = "A plane-sweep algorithm for finding a closest pair among convex planar objects" +, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 577 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "221--232" +, succeeds = "bh-psafc-91" } @inproceedings{bh-psafc-92c -, author = "Frank Bartling and Klaus Hinrichs" -, title = "A Plane-Sweep Algorithm for Finding a Closest Pair Among Convex Planar Objects" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = 91 -, update = "00.03 bibrelex" +, author = "Frank Bartling and Klaus Hinrichs" +, title = "A Plane-Sweep Algorithm for Finding a Closest Pair Among Convex Planar Objects" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = 91 +, update = "00.03 bibrelex" } @techreport{bh-paask-90 -, author = "F. Bartling and K. Hinrichs" -, title = "Probabilistic analysis of an algorithm for solving the $k$-dimensional all-nearest-neighbors problem by projection" -, type = "Report" -, number = "90-02" -, institution = "Dept. Comput. Sci., Univ. Siegen" -, address = "Siegen, West Germany" -, year = 1990 +, author = "F. Bartling and K. Hinrichs" +, title = "Probabilistic analysis of an algorithm for solving the $k$-dimensional all-nearest-neighbors problem by projection" +, type = "Report" +, number = "90-02" +, institution = "Dept. Comput. Sci., Univ. Siegen" +, address = "Siegen, West Germany" +, year = 1990 } @article{bh-paask-91 -, author = "F. Bartling and K. Hinrichs" -, title = "Probabilistic analysis of an algorithm for solving the $k$-dimensional all-nearest-neighbors problem by projection" -, journal = "BIT" -, volume = 31 -, year = 1991 -, pages = "558--565" -, update = "97.11 smid" +, author = "F. Bartling and K. Hinrichs" +, title = "Probabilistic analysis of an algorithm for solving the $k$-dimensional all-nearest-neighbors problem by projection" +, journal = "BIT" +, volume = 31 +, year = 1991 +, pages = "558--565" +, update = "97.11 smid" } @article{bp-hbscc-88 -, author = "J. J. Bartoldi and L. K. Platzman" -, title = "Heuristics based on spacefilling curves for combinatorial problems in {Euclidean} space" -, journal = "Manage. Sci." -, volume = 34 -, number = 3 -, year = 1988 -, pages = "291--305" -, keywords = "optimization" -, update = "95.05 korneenko" +, author = "J. J. Bartoldi and L. K. Platzman" +, title = "Heuristics based on spacefilling curves for combinatorial problems in {Euclidean} space" +, journal = "Manage. Sci." +, volume = 34 +, number = 3 +, year = 1988 +, pages = "291--305" +, keywords = "optimization" +, update = "95.05 korneenko" } @article{bb-pp-80 -, author = "E. E. Barton and I. Buchanan" -, title = "The polygon package" -, journal = "Comput. Aided Design" -, volume = 12 -, year = 1980 -, pages = "3--11" +, author = "E. E. Barton and I. Buchanan" +, title = "The polygon package" +, journal = "Comput. Aided Design" +, volume = 12 +, year = 1980 +, pages = "3--11" } @inproceedings{bmn-reisl-97 -, author = "U. Bartuschka and K. Mehlhorn and S. N{\"a}her" -, title = "A Robust and Efficient Implementation of a Sweep Line Algorithm for the Straight Line Segment Intersection Problem" -, booktitle = "Proc. Workshop on Algorithm Engineering" -, nickname = "WAE '97" -, site = "Venice" -, month = sep -, year = 1997 -, pages = "124--135" -, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap13.ps.gz" -, update = "00.11 smid, 00.07 icking, 98.11 smid, 98.07 bibrelex+smid+vahrenhold+vismara, 98.03 mitchell" +, author = "U. Bartuschka and K. Mehlhorn and S. N{\"a}her" +, title = "A Robust and Efficient Implementation of a Sweep Line Algorithm for the Straight Line Segment Intersection Problem" +, booktitle = "Proc. Workshop on Algorithm Engineering" +, nickname = "WAE '97" +, site = "Venice" +, month = sep +, year = 1997 +, pages = "124--135" +, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap13.ps.gz" +, update = "00.11 smid, 00.07 icking, 98.11 smid, 98.07 bibrelex+smid+vahrenhold+vismara, 98.03 mitchell" } @article{bmh-oaocl-99 -, author = "D. Bartz and M. Mei{\ss}ner and T. H{\"u}ttner" -, title = "OpenGL-assisted Occlusion Culling for Large Polygonal Models" -, journal = "Comput. \& Graphics" -, volume = 23 -, number = 5 -, month = oct -, year = 1999 -, pages = "667--679" -, update = "00.03 held" +, author = "D. Bartz and M. Mei{\ss}ner and T. H{\"u}ttner" +, title = "OpenGL-assisted Occlusion Culling for Large Polygonal Models" +, journal = "Comput. \& Graphics" +, volume = 23 +, number = 5 +, month = oct +, year = 1999 +, pages = "667--679" +, update = "00.03 held" } @article{bgv-srmpd-97 -, author = "Rakesh D. Barve and Edward F. Grove and Jeffrey Scott Vitter" -, title = "Simple Randomized Mergesort on Parallel Disks" -, journal = "Parallel Comput." -, volume = 23 -, number = 4 -, year = 1997 -, note = "Special issue on parallel I/O. An earlier version - appears in Proc. of the 8th Annual - ACM Symposium on Parallel Algorithms and - Architectures (SPAA~'96), Padua, Italy, June 1996, 109--118" -, update = "97.03 murali" +, author = "Rakesh D. Barve and Edward F. Grove and Jeffrey Scott Vitter" +, title = "Simple Randomized Mergesort on Parallel Disks" +, journal = "Parallel Comput." +, volume = 23 +, number = 4 +, year = 1997 +, note = "Special issue on parallel I/O. An earlier version + appears in Proc. of the 8th Annual + ACM Symposium on Parallel Algorithms and + Architectures (SPAA~'96), Padua, Italy, June 1996, 109--118" +, update = "97.03 murali" } @inproceedings{bjww-ptamp-98 -, author = "Alexander Barvinok and David S. Johnson and Gerhard J. Woeginger and Russell Woodroofe" -, title = "Polynomial Time Algorithms for Maximization Problems in Spaces with Polyhedral Norms" -, booktitle = "Sixth Conference on Integer Programming and Combinatorial Optimization" -, nickname = "IPCO Houston '98" -, site = "Rice University, Houston, TX" -, month = jun -, year = 1998 -, pages = "to appear" -, update = "98.03 mitchell" +, author = "Alexander Barvinok and David S. Johnson and Gerhard J. Woeginger and Russell Woodroofe" +, title = "Polynomial Time Algorithms for Maximization Problems in Spaces with Polyhedral Norms" +, booktitle = "Sixth Conference on Integer Programming and Combinatorial Optimization" +, nickname = "IPCO Houston '98" +, site = "Rice University, Houston, TX" +, month = jun +, year = 1998 +, pages = "to appear" +, update = "98.03 mitchell" } @inproceedings{b-ptaci-93 -, author = "Alexander I. Barvinok" -, title = "A Polynomial Time Algorithm for Counting Integral Points in Polyhedra when the dimension is fixed" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "566--572" -, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Alexander I. Barvinok" +, title = "A Polynomial Time Algorithm for Counting Integral Points in Polyhedra when the dimension is fixed" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "566--572" +, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @article{b-cei-91 -, author = "Alexander I. Barvinok" -, title = "Computation of exponential integrals" -, journal = "Zap. Nauchn. Sem. LOMI" -, volume = 192 -, number = 5 -, year = 1991 -, pages = "149--163" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Alexander I. Barvinok" +, title = "Computation of exponential integrals" +, journal = "Zap. Nauchn. Sem. LOMI" +, volume = 192 +, number = 5 +, year = 1991 +, pages = "149--163" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{b-cvcip-92 -, author = "Alexander I. Barvinok" -, title = "Computing the volume, counting integral points and exponential sums" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "161--170" -, cites = "b-cei-91, b-pedlp-88, gls-gaco-88, kb-ptacs-79, l-pvc-91, p-smfsp-80, s-ec-86, v-ctdah-87, vg-hfch-87, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Alexander I. Barvinok" +, title = "Computing the volume, counting integral points and exponential sums" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "161--170" +, cites = "b-cei-91, b-pedlp-88, gls-gaco-88, kb-ptacs-79, l-pvc-91, p-smfsp-80, s-ec-86, v-ctdah-87, vg-hfch-87, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{b-ighdp-95 -, author = "Alexander I. Barvinok" -, title = "Integral geometry of higher-dimensional polytopes and the average case in combinatorial optimization" -, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '95" -, year = 1995 -, pages = "To appear" -, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 95.09 mitchell" +, author = "Alexander I. Barvinok" +, title = "Integral geometry of higher-dimensional polytopes and the average case in combinatorial optimization" +, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '95" +, year = 1995 +, pages = "To appear" +, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 95.09 mitchell" } @incollection{b-lplp-97 -, author = "Alexander I. Barvinok" -, title = "Lattice points and lattice polytopes" -, chapter = 7 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "133--152" -, update = "98.03 mitchell, 97.11 orourke" +, author = "Alexander I. Barvinok" +, title = "Lattice points and lattice polytopes" +, chapter = 7 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "133--152" +, update = "98.03 mitchell, 97.11 orourke" } @article{b-tarts-96 -, author = "Alexander I. Barvinok" -, title = "Two Algorithmic Results for the {TSP}" -, journal = "Math. Oper. Res." -, volume = 21 -, year = 1996 -, pages = "65--84" -, keywords = "MAX TSP, longest cycle, PTAS, approximation scheme" -, update = "98.03 mitchell" +, author = "Alexander I. Barvinok" +, title = "Two Algorithmic Results for the {TSP}" +, journal = "Math. Oper. Res." +, volume = 21 +, year = 1996 +, pages = "65--84" +, keywords = "MAX TSP, longest cycle, PTAS, approximation scheme" +, update = "98.03 mitchell" } @article{bb-msbdc-88 -, author = "R. Barzel and A. H. Barr" -, title = "A modeling system based on dynamics constraints" -, journal = "Comput. Graph." -, volume = 22 -, number = 4 -, year = 1988 -, pages = "179--187" -, note = "Proc. SIGGRAPH '88" -, update = "98.03 bibrelex" +, author = "R. Barzel and A. H. Barr" +, title = "A modeling system based on dynamics constraints" +, journal = "Comput. Graph." +, volume = 22 +, number = 4 +, year = 1988 +, pages = "179--187" +, note = "Proc. SIGGRAPH '88" +, update = "98.03 bibrelex" } @inproceedings{bdiz-pacfm-97 -, author = "J. Basch and H. Devarajan and P. Indyk and L. Zhang" -, title = "Probabilistic Analysis for Combinatorial Functions of Moving Points" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "442--444" -, cites = "a-sdcgp-85, bcl-fleta-90, bgh-dsmd-97, bgsz-pekds-97, cd-vdbcd-85, d-mirvc-83, d-kgaca-90, d-hdvdl-91, e-chrsp-65, gmr-vdmpp-92, kgs-fcdmm-97, kti-mmstl-95, ow-dsp-84, r-slcdn-70, rs-udkhv-63, s-chdch-86, ZZZ" -, update = "99.11 bibrelex, 98.07 bibrelex, 97.07 efrat" +, author = "J. Basch and H. Devarajan and P. Indyk and L. Zhang" +, title = "Probabilistic Analysis for Combinatorial Functions of Moving Points" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "442--444" +, cites = "a-sdcgp-85, bcl-fleta-90, bgh-dsmd-97, bgsz-pekds-97, cd-vdbcd-85, d-mirvc-83, d-kgaca-90, d-hdvdl-91, e-chrsp-65, gmr-vdmpp-92, kgs-fcdmm-97, kti-mmstl-95, ow-dsp-84, r-slcdn-70, rs-udkhv-63, s-chdch-86, ZZZ" +, update = "99.11 bibrelex, 98.07 bibrelex, 97.07 efrat" } @inproceedings{bgh-dsmd-97 -, author = "J. Basch and Leonidas J. Guibas and J. Hershberger" -, title = "Data Structures for Mobile Data" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "747--756" -, update = "98.03 mitchell, 97.07 agarwal, 97.03 held" +, author = "J. Basch and Leonidas J. Guibas and J. Hershberger" +, title = "Data Structures for Mobile Data" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "747--756" +, update = "98.03 mitchell, 97.07 agarwal, 97.03 held" } @inproceedings{bgr-sllsh-97 -, author = "J. Basch and L. J. Guibas and G. Ramkumar" -, title = "Sweeping Lines and Line Segments with a Heap" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "469--472" -, cites = "bgh-dsmd-97, bgr-rrbit-96, bo-arcgi-79, elss-dgpps-73, ew-nlsfs-85, g-bpstp-79, h-fuenl-89, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "J. Basch and L. J. Guibas and G. Ramkumar" +, title = "Sweeping Lines and Line Segments with a Heap" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "469--472" +, cites = "bgh-dsmd-97, bgr-rrbit-96, bo-arcgi-79, elss-dgpps-73, ew-nlsfs-85, g-bpstp-79, h-fuenl-89, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @inproceedings{bgr-rrbit-96 -, author = "J. Basch and Leonidas J. Guibas and G. D. Ramkumar" -, title = "Reporting red-blue intersections between two sets of connected line segments" -, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "302--319" -, update = "98.03 mitchell, 97.03 smid" +, author = "J. Basch and Leonidas J. Guibas and G. D. Ramkumar" +, title = "Reporting red-blue intersections between two sets of connected line segments" +, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "302--319" +, update = "98.03 mitchell, 97.03 smid" } @unpublished{bgrr-pttc- -, author = "J. Basch and Leonidas J. Guibas and G. D. Ramkumar and L. Ramshaw" -, title = "Polyhedral tracings and their convolution" -, note = "Submitted" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "J. Basch and Leonidas J. Guibas and G. D. Ramkumar and L. Ramshaw" +, title = "Polyhedral tracings and their convolution" +, note = "Submitted" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{bgsz-pekds-97 -, author = "J. Basch and L. J. Guibas and C. Silverstein and L. Zhang" -, title = "A practical evaluation of kinetic data structures" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "388--390" -, cites = "bdiz-pacfm-97, bgh-dsmd-97, gmr-vdmpp-92, ZZZ" -, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "J. Basch and L. J. Guibas and C. Silverstein and L. Zhang" +, title = "A practical evaluation of kinetic data structures" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "388--390" +, cites = "bdiz-pacfm-97, bgh-dsmd-97, gmr-vdmpp-92, ZZZ" +, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @inproceedings{bgz-ppmp-97 -, author = "J. Basch and L. J. Guibas and L. Zhang" -, title = "Proximity Problems on Moving Points" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "344--351" -, cites = "ams-fnmst-92, as-rst-89, bdiz-pacfm-97, bgh-dsmd-97, bs-dsp1s-80, ggst-eamst-86, kgs-fcdmm-97, kkt-rltaf-95, kti-mmstl-95, m-mdscg-84, m-cgitr-93, o-ddds-83, s-mmdpsp-92a, st-dsdt-83, v-famst-84, wl-arrcd-85, y-cmstk-82, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "J. Basch and L. J. Guibas and L. Zhang" +, title = "Proximity Problems on Moving Points" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "344--351" +, cites = "ams-fnmst-92, as-rst-89, bdiz-pacfm-97, bgh-dsmd-97, bs-dsp1s-80, ggst-eamst-86, kgs-fcdmm-97, kkt-rltaf-95, kti-mmstl-95, m-mdscg-84, m-cgitr-93, o-ddds-83, s-mmdpsp-92a, st-dsdt-83, v-famst-84, wl-arrcd-85, y-cmstk-82, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @incollection{bd-cp-94 -, author = "Gerard Bashein and Paul R. Detmer" -, title = "Centroid of a Polygon" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "3--6" -, keywords = "polygon area, polygon centroid" -, update = "94.09 heckbert" -, annote = "Gives formulas and code to find the centroid (center of +, author = "Gerard Bashein and Paul R. Detmer" +, title = "Centroid of a Polygon" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "3--6" +, keywords = "polygon area, polygon centroid" +, update = "94.09 heckbert" +, annote = "Gives formulas and code to find the centroid (center of mass) of a polygon. This is useful when simulating Newtonian dynamics. Contains C code." } @article{bs-fdmrc-67 -, author = "L. J. Bass and S. R. Schubert" -, title = "On finding the disc of minimum radius containing a given set of points" -, journal = "Math. Comput." -, volume = 12 -, year = 1967 -, pages = "712--714" +, author = "L. J. Bass and S. R. Schubert" +, title = "On finding the disc of minimum radius containing a given set of points" +, journal = "Math. Comput." +, volume = 12 +, year = 1967 +, pages = "712--714" } @techreport{bh-fpsae-93 -, author = "H. Bast and T. Hagerup" -, title = "Fast parallel space allocation, estimation and integer sorting" -, type = "Report" -, number = "MPI-I-93-123" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, update = "97.11 bibrelex, 93.09 smid" +, author = "H. Bast and T. Hagerup" +, title = "Fast parallel space allocation, estimation and integer sorting" +, type = "Report" +, number = "MPI-I-93-123" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, update = "97.11 bibrelex, 93.09 smid" } @article{bsss-or3dc-86 -, author = "C. M. Bastuscheck and E. Schonberg and J. T. Schwartz and Micha Sharir" -, title = "Object recognition by $3$-dimensional curve matching" -, journal = "Internat. J. Intell. Syst." -, volume = 1 -, year = 1986 -, pages = "105--132" -, keywords = "computer vision, curves, matchings, three-dimensional" -, update = "98.03 mitchell" +, author = "C. M. Bastuscheck and E. Schonberg and J. T. Schwartz and Micha Sharir" +, title = "Object recognition by $3$-dimensional curve matching" +, journal = "Internat. J. Intell. Syst." +, volume = 1 +, year = 1986 +, pages = "105--132" +, keywords = "computer vision, curves, matchings, three-dimensional" +, update = "98.03 mitchell" } @inproceedings{b-sgtfp-88 -, author = "M. Bastuscheck" -, title = "On the stability of grasping: three fingers and a planar polygon" -, booktitle = "Proc. 5th IEEE Internat. Conf. Robot. Autom." -, year = 1988 -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "M. Bastuscheck" +, title = "On the stability of grasping: three fingers and a planar polygon" +, booktitle = "Proc. 5th IEEE Internat. Conf. Robot. Autom." +, year = 1988 +, update = "98.11 bibrelex, 98.07 bibrelex" } @inproceedings{b-bbnce-96 -, author = "Saugata Basu" -, title = "On Bounding the {Betti} Numbers and Computing the {Euler} Characteristic of Semi-Algebraic Sets" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '96" -, site = "Philadelphia, PA" -, month = may -, year = 1996 -, pages = "408--417" -, update = "00.03 smid, 98.07 bibrelex, 98.03 mitchell" +, author = "Saugata Basu" +, title = "On Bounding the {Betti} Numbers and Computing the {Euler} Characteristic of Semi-Algebraic Sets" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '96" +, site = "Philadelphia, PA" +, month = may +, year = 1996 +, pages = "408--417" +, update = "00.03 smid, 98.07 bibrelex, 98.03 mitchell" } @unpublished{b-ctcsc-98 -, author = "S. Basu" -, title = "On the combinatorial and topological complexity of a single cell" -, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1998 -, pages = "606--616" -, update = "98.11 aronov, 98.07 agarwal" +, author = "S. Basu" +, title = "On the combinatorial and topological complexity of a single cell" +, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1998 +, pages = "606--616" +, update = "98.11 aronov, 98.07 agarwal" } @unpublished{bpr-ccsad-98 -, author = "S. Basu and R. Pollack and M.-F. Roy" -, title = "Complexity of computing semi-algebraic descriptions of the connected components of a semi-algebraic set" -, year = 1998 -, note = "unpublished manuscript" -, update = "98.07 agarwal" +, author = "S. Basu and R. Pollack and M.-F. Roy" +, title = "Complexity of computing semi-algebraic descriptions of the connected components of a semi-algebraic set" +, year = 1998 +, note = "unpublished manuscript" +, update = "98.07 agarwal" } -% , month = may +% , month = may @inproceedings{bpr-crsas-96 -, author = "Saugata Basu and Richard Pollack and Marie-Fran{\c{c}}oise Roy" -, title = "Computing Roadmaps of Semi-Algebraic Sets" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '96" -, site = "Philadelphia, PA" -, year = 1996 -, pages = "168--173" -, update = "98.07 bibrelex, 98.03 agarwal+mitchell" +, author = "Saugata Basu and Richard Pollack and Marie-Fran{\c{c}}oise Roy" +, title = "Computing Roadmaps of Semi-Algebraic Sets" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '96" +, site = "Philadelphia, PA" +, year = 1996 +, pages = "168--173" +, update = "98.07 bibrelex, 98.03 agarwal+mitchell" } @article{bpr-ocspm-97 -, author = "S. Basu and R. Pollack and M.-F. Roy" -, title = "On Computing a Set of Points meeting every Semi-algebraically Connected Component of a Family of Polynomials on a Variety" -, journal = "J. Complexity" -, volume = 13 -, year = 1997 -, pages = "28--37" -, update = "98.03 agarwal" +, author = "S. Basu and R. Pollack and M.-F. Roy" +, title = "On Computing a Set of Points meeting every Semi-algebraically Connected Component of a Family of Polynomials on a Variety" +, journal = "J. Complexity" +, volume = 13 +, year = 1997 +, pages = "28--37" +, update = "98.03 agarwal" } @article{bpr-oncdf-94 -, author = "S. Basu and R. Pollack and M.-F. Roy" -, title = "On the number of cells defined by a family of polynomials on a variety" -, journal = "Mathematika" -, volume = 43 -, year = 1994 -, pages = "120--126" -, update = "98.03 agarwal" +, author = "S. Basu and R. Pollack and M.-F. Roy" +, title = "On the number of cells defined by a family of polynomials on a variety" +, journal = "Mathematika" +, volume = 43 +, year = 1994 +, pages = "120--126" +, update = "98.03 agarwal" } @incollection{bpr-ncdfp-95 -, author = "S. Basu and R. Pollack and M.-F. Roy" -, title = "On the number of cells defined by a family of polynomials on a variety" -, editor = "K. Y. Goldberg and D. Halperin and J.-C. Latombe and R. H. Wilson" -, booktitle = "Algorithmic Foundations of Robotics" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1995 -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "S. Basu and R. Pollack and M.-F. Roy" +, title = "On the number of cells defined by a family of polynomials on a variety" +, editor = "K. Y. Goldberg and D. Halperin and J.-C. Latombe and R. H. Wilson" +, booktitle = "Algorithmic Foundations of Robotics" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1995 +, update = "98.07 agarwal, 98.03 bibrelex" } @article{b-hsdbu-80 -, author = "B. G. Batchelor" -, title = "Hierarchial shape description based upon convex hulls of concavities" -, journal = "J. Cybern." -, volume = 10 -, year = 1980 -, pages = "205--210" +, author = "B. G. Batchelor" +, title = "Hierarchial shape description based upon convex hulls of concavities" +, journal = "J. Cybern." +, volume = 10 +, year = 1980 +, pages = "205--210" } @inproceedings{b-sduct-78 -, author = "B. G. Batchelor" -, title = "Shape description using concavity trees" -, editor = "M. H. Hamza and S. G. Tzafestas" -, booktitle = "Proc. Internat. Sympos. Measurement \& Control" -, nickname = "MECO '78" -, publisher = "Panhellenic Society of Mechanical \& Electrical Engineers" -, address = "Athens" -, year = 1978 -, pages = "385--390" +, author = "B. G. Batchelor" +, title = "Shape description using concavity trees" +, editor = "M. H. Hamza and S. G. Tzafestas" +, booktitle = "Proc. Internat. Sympos. Measurement \& Control" +, nickname = "MECO '78" +, publisher = "Panhellenic Society of Mechanical \& Electrical Engineers" +, address = "Athens" +, year = 1978 +, pages = "385--390" } @article{b-sdlct-80 -, author = "B. G. Batchelor" -, title = "Shape descriptors for labeling concavity trees" -, journal = "J. Cybern." -, volume = 10 -, year = 1980 -, pages = "233--237" +, author = "B. G. Batchelor" +, title = "Shape descriptors for labeling concavity trees" +, journal = "J. Cybern." +, volume = 10 +, year = 1980 +, pages = "233--237" } @article{b-tmfch-80 -, author = "B. G. Batchelor" -, title = "Two methods for finding convex hulls of planar figures" -, journal = "Cybernet. Systems" -, volume = 11 -, year = 1980 -, pages = "105--113" +, author = "B. G. Batchelor" +, title = "Two methods for finding convex hulls of planar figures" +, journal = "Cybernet. Systems" +, volume = 11 +, year = 1980 +, pages = "105--113" } @article{b-uctsd-79 -, author = "B. G. Batchelor" -, title = "Using concavity trees for shape description" -, journal = "IEEE J. Comput. Digital Techniques" -, volume = 2 -, year = 1979 -, pages = "157--168" +, author = "B. G. Batchelor" +, title = "Using concavity trees for shape description" +, journal = "IEEE J. Comput. Digital Techniques" +, volume = 2 +, year = 1979 +, pages = "157--168" } @inproceedings{b-snta-68 -, author = "K. E. Batcher" -, title = "Sorting Networks and Their Applications" -, booktitle = "Proc. 1968 Spring Joint Computer Conf." -, publisher = "AFIPS Press" -, address = "Reston, VA" -, year = 1968 -, pages = "307--314" -, update = "96.09 orourke" +, author = "K. E. Batcher" +, title = "Sorting Networks and Their Applications" +, booktitle = "Proc. 1968 Spring Joint Computer Conf." +, publisher = "AFIPS Press" +, address = "Reston, VA" +, year = 1968 +, pages = "307--314" +, update = "96.09 orourke" } @inproceedings{bhrz-pgrtc-97 -, author = "C. Douglass Bateman and C. S. Helvig and Gabriel Robins and Alexander Zelikovsky" -, title = "Provably Good Routing Tree Construction with Multi-Port Terminals" -, booktitle = "Proc. ACM/SIGDA International Symposium on Physical Design" -, site = "Napa Valley, CA" -, month = apr -, year = 1997 -, pages = "??" -, keywords = "one-of-a-set TSP, group TSP, approximation algorithms" -, update = "98.03 mitchell" +, author = "C. Douglass Bateman and C. S. Helvig and Gabriel Robins and Alexander Zelikovsky" +, title = "Provably Good Routing Tree Construction with Multi-Port Terminals" +, booktitle = "Proc. ACM/SIGDA International Symposium on Physical Design" +, site = "Napa Valley, CA" +, month = apr +, year = 1997 +, pages = "??" +, keywords = "one-of-a-set TSP, group TSP, approximation algorithms" +, update = "98.03 mitchell" } @article{b-nccp-49 -, author = "P. T. Bateman" -, title = "Note on the coefficients of the cyclotomic polynomial" -, journal = "Bull. Amer. Math. Soc." -, volume = 55 -, year = 1949 -, pages = "1180--1181" -, update = "97.11 bibrelex" +, author = "P. T. Bateman" +, title = "Note on the coefficients of the cyclotomic polynomial" +, journal = "Bull. Amer. Math. Soc." +, volume = 55 +, year = 1949 +, pages = "1180--1181" +, update = "97.11 bibrelex" } @inproceedings{bbdnnrt-alfia-86 -, author = "C. Batini and P. Brunetti and G. {Di Battista} and P. Naggar and E. Nardelli and G. Richelli and R. Tamassia" -, title = "An Automatic Layout Facility and its Applications" -, booktitle = "Proc. Internat. Workshop on Software Engineering Environment" -, publisher = "China Academic Publishers" -, address = "Beijing, China" -, year = 1986 -, pages = "139--157" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "C. Batini and P. Brunetti and G. {Di Battista} and P. Naggar and E. Nardelli and G. Richelli and R. Tamassia" +, title = "An Automatic Layout Facility and its Applications" +, booktitle = "Proc. Internat. Workshop on Software Engineering Environment" +, publisher = "China Academic Publishers" +, address = "Beijing, China" +, year = 1986 +, pages = "139--157" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{bcn-cdder-92 -, author = "C. Batini and S. Ceri and S. B. Navathe" -, title = "Conceptual Database Design, an Entity-Relationship Approach" -, publisher = "Benjamin Cummings" -, year = 1992 -, update = "95.01 tamassia" +, author = "C. Batini and S. Ceri and S. B. Navathe" +, title = "Conceptual Database Design, an Entity-Relationship Approach" +, publisher = "Benjamin Cummings" +, year = 1992 +, update = "95.01 tamassia" } @book{bf-mpbds-86 -, author = "C. Batini and E. Fortunato" -, title = "Metodi per la Progettazione di Basi di Dati Statistici" -, publisher = "ISTAT" -, year = 1986 -, update = "95.01 tamassia" +, author = "C. Batini and E. Fortunato" +, title = "Metodi per la Progettazione di Basi di Dati Statistici" +, publisher = "ISTAT" +, year = 1986 +, update = "95.01 tamassia" } @inproceedings{bfn-wigdp-85 -, author = "C. Batini and L. Furlani and E. Nardelli" -, title = "What is a Good Diagram? {A} Pragmatic Approach" -, booktitle = "Proc. 4th Internat. Conf. on the Entity-Relationship Approach" -, year = 1985 -, pages = "312--319" -, keywords = "graph drawing" -, update = "98.07 vismara, 93.09 tamassia" +, author = "C. Batini and L. Furlani and E. Nardelli" +, title = "What is a Good Diagram? {A} Pragmatic Approach" +, booktitle = "Proc. 4th Internat. Conf. on the Entity-Relationship Approach" +, year = 1985 +, pages = "312--319" +, keywords = "graph drawing" +, update = "98.07 vismara, 93.09 tamassia" } @inproceedings{bntt-gtaal-84 -, author = "C. Batini and E. Nardelli and M. Talamo and R. Tamassia" -, title = "A Graph Theoretic Approach to Aesthetic Layout of Information Systems Diagrams" -, booktitle = "Proc. 10th Internat. Workshop Graph-Theoret. Concepts Comput. Sci. (Berlin June 1984)" -, publisher = "Trauner Verlag" -, address = "Linz, Austria" -, year = 1984 -, pages = "9--18" -, keywords = "graph drawing" -, update = "94.05 smid, 93.09 tamassia" +, author = "C. Batini and E. Nardelli and M. Talamo and R. Tamassia" +, title = "A Graph Theoretic Approach to Aesthetic Layout of Information Systems Diagrams" +, booktitle = "Proc. 10th Internat. Workshop Graph-Theoret. Concepts Comput. Sci. (Berlin June 1984)" +, publisher = "Trauner Verlag" +, address = "Linz, Austria" +, year = 1984 +, pages = "9--18" +, keywords = "graph drawing" +, update = "94.05 smid, 93.09 tamassia" } @incollection{bntt-ggtcd-85 -, author = "C. Batini and E. Nardelli and M. Talamo and R. Tamassia" -, title = "{GINCOD}: a Graphical Tool for Conceptual Design of Data Base Applications" -, editor = "A. Albano and V. De Antonellis and A. Di Leva" -, booktitle = "Computer Aided Data Base Design" -, publisher = "North-Holland" -, address = "New York, NY" -, year = 1985 -, pages = "33--51" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "C. Batini and E. Nardelli and M. Talamo and R. Tamassia" +, title = "{GINCOD}: a Graphical Tool for Conceptual Design of Data Base Applications" +, editor = "A. Albano and V. De Antonellis and A. Di Leva" +, booktitle = "Computer Aided Data Base Design" +, publisher = "North-Holland" +, address = "New York, NY" +, year = 1985 +, pages = "33--51" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{bnt-ladfd-86 -, author = "C. Batini and E. Nardelli and R. Tamassia" -, title = "A Layout Algorithm for Data Flow Diagrams" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-12" -, number = 4 -, year = 1986 -, pages = "538--546" -, keywords = "graph drawing" -, update = "98.07 vismara, 93.09 tamassia" +, author = "C. Batini and E. Nardelli and R. Tamassia" +, title = "A Layout Algorithm for Data Flow Diagrams" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-12" +, number = 4 +, year = 1986 +, pages = "538--546" +, keywords = "graph drawing" +, update = "98.07 vismara, 93.09 tamassia" } @article{btt-caler-84 -, author = "C. Batini and M. Talamo and R. Tamassia" -, title = "Computer Aided Layout of Entity-Relationship Diagrams" -, journal = "Journal of Systems and Software" -, volume = 4 -, year = 1984 -, pages = "163--173" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "C. Batini and M. Talamo and R. Tamassia" +, title = "Computer Aided Layout of Entity-Relationship Diagrams" +, journal = "Journal of Systems and Software" +, volume = 4 +, year = 1984 +, pages = "163--173" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{bpccd-tdcrs-81 -, author = "S. Batnitzky and H. I. Price and P. N. Cook and L. T. Cook and S. J. {Dwyer, III}" -, title = "Three-dimensional computer reconstruction from surface contours for head {CT} examinations" -, journal = "J. Comput. Assisted Tomography" -, volume = 5 -, year = 1981 -, pages = "60--67" -, update = "98.03 bibrelex" +, author = "S. Batnitzky and H. I. Price and P. N. Cook and L. T. Cook and S. J. {Dwyer, III}" +, title = "Three-dimensional computer reconstruction from surface contours for head {CT} examinations" +, journal = "J. Comput. Assisted Tomography" +, volume = 5 +, year = 1981 +, pages = "60--67" +, update = "98.03 bibrelex" } @article{bgp-lfmma-89 -, author = "R. Batta and A. Ghose and U. S. Palekar" -, title = "Locating facilities on the {Manhattan} metrics with arbitrary shaped barriers and convex forbidden regions" -, journal = "Transp. Sci." -, volume = 23 -, number = 1 -, year = 1989 -, pages = "26--36" -, keywords = "facility location, $L_1$-metrics" -, update = "95.05 korneenko" +, author = "R. Batta and A. Ghose and U. S. Palekar" +, title = "Locating facilities on the {Manhattan} metrics with arbitrary shaped barriers and convex forbidden regions" +, journal = "Transp. Sci." +, volume = 23 +, number = 1 +, year = 1989 +, pages = "26--36" +, keywords = "facility location, $L_1$-metrics" +, update = "95.05 korneenko" } @article{bl-adpsp-88 -, author = "R. Batta and L. A. Leifer" -, title = "On the accuracy of demand point solutions to the planar {Manhattan} metric p-median problem with and without barriers to travel" -, journal = "Comput. Oper. Res." -, volume = 15 -, number = 3 -, year = 1988 -, pages = "253--262" -, keywords = "facility location, $L_1$-metrics" -, update = "95.05 korneenko" +, author = "R. Batta and L. A. Leifer" +, title = "On the accuracy of demand point solutions to the planar {Manhattan} metric p-median problem with and without barriers to travel" +, journal = "Comput. Oper. Res." +, volume = 15 +, number = 3 +, year = 1988 +, pages = "253--262" +, keywords = "facility location, $L_1$-metrics" +, update = "95.05 korneenko" } @article{b-solq-85 -, author = "M. A. Bauer" -, title = "Set operations on linear quadtrees" -, journal = "Comput. Vision Graph. Image Process." -, volume = 29 -, year = 1985 -, pages = "248--258" +, author = "M. A. Bauer" +, title = "Set operations on linear quadtrees" +, journal = "Comput. Vision Graph. Image Process." +, volume = 29 +, year = 1985 +, pages = "248--258" } @inproceedings{bkkmnsu-osca-95 -, author = "F. Bauern{\"o}ppel and E. Kranankis and D. Krizanc and A. Maheshwari and M. Noy and J.-R. Sack and J. Urrutia" -, title = "Optimal shooting: characterizations and applications" -, booktitle = "Proc. 22nd ICALP" -, site = "Szeged, Hungary" -, series = "Lecture Notes Comput. Sci." -, volume = 944 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "220--231" -, update = "99.11 bibrelex, 97.11 sack" +, author = "F. Bauern{\"o}ppel and E. Kranankis and D. Krizanc and A. Maheshwari and M. Noy and J.-R. Sack and J. Urrutia" +, title = "Optimal shooting: characterizations and applications" +, booktitle = "Proc. 22nd ICALP" +, site = "Szeged, Hungary" +, series = "Lecture Notes Comput. Sci." +, volume = 944 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "220--231" +, update = "99.11 bibrelex, 97.11 sack" } @article{bkkmsu-psgca-97 -, author = "F. Bauern{\"o}ppel and E. Kranankis and D. Krizanc and A. Maheshwari and J.-R. Sack and J. Urrutia" -, title = "Planar stage graphs: characterization and applications" -, journal = "Theoret. Comput. Sci." -, volume = 175 -, month = apr -, year = 1997 -, update = "97.11 sack" +, author = "F. Bauern{\"o}ppel and E. Kranankis and D. Krizanc and A. Maheshwari and J.-R. Sack and J. Urrutia" +, title = "Planar stage graphs: characterization and applications" +, journal = "Theoret. Comput. Sci." +, volume = 175 +, month = apr +, year = 1997 +, update = "97.11 sack" } @article{bmsw-mruap-91 -, author = "D. R. Baum and S. Mann and K. P. Smith and J. M. Winget" -, title = "Making Radiosity Usable: {Automatic} Preprocessing and Meshing Techniques for the Generation of Accurate Radiosity Solutions" -, journal = "Comput. Graph." -, volume = 25 -, number = 4 -, year = 1991 -, pages = "51--60" -, note = "Proc. SIGGRAPH '91" -, keywords = "triangulation, computer graphics" -, update = "95.05 korneenko" +, author = "D. R. Baum and S. Mann and K. P. Smith and J. M. Winget" +, title = "Making Radiosity Usable: {Automatic} Preprocessing and Meshing Techniques for the Generation of Accurate Radiosity Solutions" +, journal = "Comput. Graph." +, volume = 25 +, number = 4 +, year = 1991 +, pages = "51--60" +, note = "Proc. SIGGRAPH '91" +, keywords = "triangulation, computer graphics" +, update = "95.05 korneenko" } @article{b-luhs-90 -, author = "E. B. Baum" -, title = "On learning a union of half spaces" -, journal = "J. Complexity" -, volume = 6 -, number = 1 -, year = 1990 -, pages = "67--101" -, keywords = "$d$-dimensional, halfspaces" -, update = "95.05 korneenko" +, author = "E. B. Baum" +, title = "On learning a union of half spaces" +, journal = "J. Complexity" +, volume = 6 +, number = 1 +, year = 1990 +, pages = "67--101" +, keywords = "$d$-dimensional, halfspaces" +, update = "95.05 korneenko" } @article{b-cmp-88 -, author = "E. B. Baum" -, title = "On the capabilities of multilayer perceptrons" -, journal = "J. Complexity" -, volume = 4 -, year = 1988 -, pages = "19--25" -, update = "98.07 bibrelex" +, author = "E. B. Baum" +, title = "On the capabilities of multilayer perceptrons" +, journal = "J. Complexity" +, volume = 4 +, year = 1988 +, pages = "19--25" +, update = "98.07 bibrelex" } @article{bh-wsngv-89 -, author = "E. B. Baum and D. Haussler" -, title = "What size net gives valid generalization?" -, journal = "Neural Computation" -, volume = 1 -, year = 1989 -, pages = "151--160" -, update = "98.07 bibrelex" +, author = "E. B. Baum and D. Haussler" +, title = "What size net gives valid generalization?" +, journal = "Neural Computation" +, volume = 1 +, year = 1989 +, pages = "151--160" +, update = "98.07 bibrelex" } @inproceedings{b-prcv-75 -, author = "B. G. Baumgart" -, title = "A polyhedron representation for computer vision" -, booktitle = "Proc. AFIPS Natl. Comput. Conf." -, volume = 44 -, publisher = "AFIPS Press, Alrington, Va." -, year = 1975 -, pages = "589--596" -, update = "98.07 bibrelex" +, author = "B. G. Baumgart" +, title = "A polyhedron representation for computer vision" +, booktitle = "Proc. AFIPS Natl. Comput. Conf." +, volume = 44 +, publisher = "AFIPS Press, Alrington, Va." +, year = 1975 +, pages = "589--596" +, update = "98.07 bibrelex" } @techreport{b-gmcv-74 -, author = "B. G. Baumgart" -, title = "Geometric Modeling for Computer Vision" -, number = "STAN-CS-74463" -, institution = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, month = oct -, year = 1974 -, update = "97.11 bibrelex" +, author = "B. G. Baumgart" +, title = "Geometric Modeling for Computer Vision" +, number = "STAN-CS-74463" +, institution = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, month = oct +, year = 1974 +, update = "97.11 bibrelex" } @techreport{bjm-dplgs-92t -, author = "H. Baumgarten and H. Jung and K. Mehlhorn" -, title = "Dynamic point location in general subdivisions" -, number = "MPI-I-92-126" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 -, update = "93.05 schwarzkopf" +, author = "H. Baumgarten and H. Jung and K. Mehlhorn" +, title = "Dynamic point location in general subdivisions" +, number = "MPI-I-92-126" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 +, update = "93.05 schwarzkopf" } @inproceedings{bjm-dplgs-92 -, author = "Hanna Baumgarten and Hermann Jung and Kurt Mehlhorn" -, title = "Dynamic Point Location in General Subdivisions" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "81--83" -, update = "00.03 bibrelex" +, author = "Hanna Baumgarten and Hermann Jung and Kurt Mehlhorn" +, title = "Dynamic Point Location in General Subdivisions" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "81--83" +, update = "00.03 bibrelex" } @inproceedings{bjm-dplgs-92i -, author = "H. Baumgarten and H. Jung and K. Mehlhorn" -, title = "Dynamic point location in general subdivisions" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "250--258" -, update = "93.05 schwarzkopf" +, author = "H. Baumgarten and H. Jung and K. Mehlhorn" +, title = "Dynamic point location in general subdivisions" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "250--258" +, update = "93.05 schwarzkopf" } @article{bjm-dplgs-94 -, author = "H. Baumgarten and H. Jung and K. Mehlhorn" -, title = "Dynamic point location in general subdivisions" -, journal = "J. Algorithms" -, volume = 17 -, year = 1994 -, pages = "342--380" -, update = "95.01 smid" +, author = "H. Baumgarten and H. Jung and K. Mehlhorn" +, title = "Dynamic point location in general subdivisions" +, journal = "J. Algorithms" +, volume = 17 +, year = 1994 +, pages = "342--380" +, update = "95.01 smid" } @inproceedings{bdm-tepa1-95 -, author = "A. B{\"a}umker and W. Dittrich and F. {Meyer auf der Heide}" -, title = "Truly efficient parallel algorithms: $1$-optimal multisearch for an extension of the {BSP} model" -, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" -, nickname = "ESA" -, year = 1995 -, pages = "17--30" -, update = "96.09 orourke" +, author = "A. B{\"a}umker and W. Dittrich and F. {Meyer auf der Heide}" +, title = "Truly efficient parallel algorithms: $1$-optimal multisearch for an extension of the {BSP} model" +, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" +, nickname = "ESA" +, year = 1995 +, pages = "17--30" +, update = "96.09 orourke" } @inproceedings{bdp-dcpm-96 -, author = "A. B{\"a}umker and W. Dittrich and A. Pietracaprina" -, title = "The deterministic complexity of parallel multisearch" -, booktitle = "Proc. 1996 Scadanavian Workshop on Algorithmic Theory" -, year = 1996 -, pages = "to appear" -, update = "96.09 orourke" +, author = "A. B{\"a}umker and W. Dittrich and A. Pietracaprina" +, title = "The deterministic complexity of parallel multisearch" +, booktitle = "Proc. 1996 Scadanavian Workshop on Algorithmic Theory" +, year = 1996 +, pages = "to appear" +, update = "96.09 orourke" } @inproceedings{by-kmafr-90 -, author = "J. J. Bausch and K. Youcef-Toumi" -, title = "Kinematic methods for automated fixture reconfiguration planning" -, booktitle = "Proc. 7th IEEE Internat. Conf. Robot. Autom." -, month = may -, year = 1990 -, update = "98.03 bibrelex" +, author = "J. J. Bausch and K. Youcef-Toumi" +, title = "Kinematic methods for automated fixture reconfiguration planning" +, booktitle = "Proc. 7th IEEE Internat. Conf. Robot. Autom." +, month = may +, year = 1990 +, update = "98.03 bibrelex" } @incollection{bl-cacp-93 -, author = "M. Bayer and C. Lee" -, title = "Combinatorial aspects of convex polytopes" -, chapter = "2.3" -, editor = "P. Gruber and J. Wills" -, booktitle = "Handbook of Convex Geometry" -, publisher = "North-Holland" -, address = "New York, NY" -, year = 1993 -, pages = "485--534" -, update = "98.03 bibrelex" +, author = "M. Bayer and C. Lee" +, title = "Combinatorial aspects of convex polytopes" +, chapter = "2.3" +, editor = "P. Gruber and J. Wills" +, booktitle = "Handbook of Convex Geometry" +, publisher = "North-Holland" +, address = "New York, NY" +, year = 1993 +, pages = "485--534" +, update = "98.03 bibrelex" } @article{bk-nip-91 -, author = "M. M. Bayer and A. Klapper" -, title = "An new index for polytopes" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "33--47" +, author = "M. M. Bayer and A. Klapper" +, title = "An new index for polytopes" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "33--47" } @article{b-sbbtd-72 -, author = "R. Bayer" -, title = "Symmetric binary B-trees: data structure and maintenace algorithms" -, journal = "Acta Inform." -, volume = 1 -, year = 1972 -, pages = "290--306" -, update = "97.11 bibrelex" +, author = "R. Bayer" +, title = "Symmetric binary B-trees: data structure and maintenace algorithms" +, journal = "Acta Inform." +, volume = 1 +, year = 1972 +, pages = "290--306" +, update = "97.11 bibrelex" } @article{bm-oloi-72 -, author = "R. Bayer and {McCreight}" -, title = "Organization of large ordered indexes" -, journal = "Acta Inform." -, volume = 1 -, year = 1972 -, pages = "173--189" -, keywords = "data structuring" -, update = "95.05 korneenko" +, author = "R. Bayer and {McCreight}" +, title = "Organization of large ordered indexes" +, journal = "Acta Inform." +, volume = 1 +, year = 1972 +, pages = "173--189" +, keywords = "data structuring" +, update = "95.05 korneenko" } @incollection{btrv-svtbu-98 -, author = "J. Bazik and R. Tamassia and S. P. Reiss and A. van Dam" -, title = "Software Visualization in Teaching at {Brown University}" -, editor = "J. Stasko and J. Domingue and M. H. Brown and B. A. Price" -, booktitle = "Software Visualization: Programming as a Multimedia Experience" -, publisher = "MIT Press" -, year = 1998 -, pages = "383--398" -, keywords = "software visualization, algorithm animation" -, update = "98.07 tamassia, 97.03 tamassia" +, author = "J. Bazik and R. Tamassia and S. P. Reiss and A. van Dam" +, title = "Software Visualization in Teaching at {Brown University}" +, editor = "J. Stasko and J. Domingue and M. H. Brown and B. A. Price" +, booktitle = "Software Visualization: Programming as a Multimedia Experience" +, publisher = "MIT Press" +, year = 1998 +, pages = "383--398" +, keywords = "software visualization, algorithm animation" +, update = "98.07 tamassia, 97.03 tamassia" } @inproceedings{bh-obdpc-87 -, author = "P. Beame and J. Hastad" -, title = "Optimal bounds for decision problems on the {CRCW} {PRAM}" -, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." -, year = 1987 -, pages = "83--93" -, update = "98.03 bibrelex" +, author = "P. Beame and J. Hastad" +, title = "Optimal bounds for decision problems on the {CRCW} {PRAM}" +, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." +, year = 1987 +, pages = "83--93" +, update = "98.03 bibrelex" } @article{bh-obdpc-89 -, author = "P. Beame and J. Hastad" -, title = "Optimal Bounds for Decision Problems on the {CRCW} {PRAM}" -, journal = "J. ACM" -, volume = 36 -, number = 3 -, year = 1989 -, pages = "643--670" -, update = "96.09 orourke" +, author = "P. Beame and J. Hastad" +, title = "Optimal Bounds for Decision Problems on the {CRCW} {PRAM}" +, journal = "J. ACM" +, volume = 36 +, number = 3 +, year = 1989 +, pages = "643--670" +, update = "96.09 orourke" } @book{b-gdg-83 -, author = "A. F. Beardon" -, title = "The Geometry of Discrete Groups" -, series = "Graduate Texts in Mathematics" -, publisher = "Springer-Verlag" -, year = 1983 +, author = "A. F. Beardon" +, title = "The Geometry of Discrete Groups" +, series = "Graduate Texts in Mathematics" +, publisher = "Springer-Verlag" +, year = 1983 } @article{bhh-sptmp-59 -, author = "J. Beardwood and J. H. Halton and J. M. Hammersley" -, title = "The shortest path through many points" -, journal = "Math. Proc. Camb. Phil. Soc." -, volume = 55 -, year = 1959 -, pages = "299--327" -, update = "97.11 bibrelex" +, author = "J. Beardwood and J. H. Halton and J. M. Hammersley" +, title = "The shortest path through many points" +, journal = "Math. Proc. Camb. Phil. Soc." +, volume = 55 +, year = 1959 +, pages = "299--327" +, update = "97.11 bibrelex" } @article{b-aspg-84 -, author = "J. E. Beasley" -, title = "An algorithm for the {Steiner} problem in graphs" -, journal = "Networks" -, volume = 14 -, year = 1984 -, pages = "147--159" +, author = "J. E. Beasley" +, title = "An algorithm for the {Steiner} problem in graphs" +, journal = "Networks" +, volume = 14 +, year = 1984 +, pages = "147--159" } @article{bn-toptp-91 -, author = "D. Beauquier and M. Nivat" -, title = "On translating one polyomino to tile the plane" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "575--592" -, succeeds = "gn-tpot-90" +, author = "D. Beauquier and M. Nivat" +, title = "On translating one polyomino to tile the plane" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "575--592" +, succeeds = "gn-tpot-90" } @article{bnrr-tfptb-94 -, author = "D. Beauquier and M. Nivat and E. Remila and M. Robson" -, title = "Tiling figures of the plane with two bars" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "1--25" -, update = "96.09 devillers" +, author = "D. Beauquier and M. Nivat and E. Remila and M. Robson" +, title = "Tiling figures of the plane with two bars" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "1--25" +, update = "96.09 devillers" } @inproceedings{bbdl-tealf-91 -, author = "M. Beccaria and P. Bertolazzi and G. {Di Battista} and G. Liotta" -, title = "A Tailorable and Extensible Automatic Layout Facility" -, booktitle = "Proc. IEEE Workshop on Visual Languages" -, nickname = "VL '91" -, year = 1991 -, pages = "68--73" -, keywords = "graph drawing" -, update = "98.07 bibrelex, 93.09 tamassia" +, author = "M. Beccaria and P. Bertolazzi and G. {Di Battista} and G. Liotta" +, title = "A Tailorable and Extensible Automatic Layout Facility" +, booktitle = "Proc. IEEE Workshop on Visual Languages" +, nickname = "VL '91" +, year = 1991 +, pages = "68--73" +, keywords = "graph drawing" +, update = "98.07 bibrelex, 93.09 tamassia" } @article{b-gisne-90 -, author = "A. Beck" -, title = "Greed is (sometimes) not enough" -, journal = "Amer. Math. Monthly" -, volume = 97 -, number = 4 -, year = 1990 -, pages = "289--294" -, keywords = "optimization, covering" -, update = "95.05 korneenko" +, author = "A. Beck" +, title = "Greed is (sometimes) not enough" +, journal = "Amer. Math. Monthly" +, volume = 97 +, number = 4 +, year = 1990 +, pages = "289--294" +, keywords = "optimization, covering" +, update = "95.05 korneenko" } @article{b-srnpt-83 -, author = "J. Beck" -, title = "On size {Ramsey} number of paths, trees, and circuits, {I}." -, journal = "J. Graph Theory" -, volume = 7 -, year = 1983 -, pages = "115--129" -, update = "97.11 bibrelex" +, author = "J. Beck" +, title = "On size {Ramsey} number of paths, trees, and circuits, {I}." +, journal = "J. Graph Theory" +, volume = 7 +, year = 1983 +, pages = "115--129" +, update = "97.11 bibrelex" } @article{b-lppsp-83 -, author = "J. Beck" -, title = "On the lattice property of the plane and some problems of {Dirac,} {Motzkin} and {Erd\H os} in combinatorial geometry" -, journal = "Combinatorica" -, volume = 3 -, number = "3--4" -, year = 1983 -, pages = "281--297" -, keywords = "discrete geometry, points, arrangements" -, update = "95.05 korneenko" +, author = "J. Beck" +, title = "On the lattice property of the plane and some problems of {Dirac,} {Motzkin} and {Erd\H os} in combinatorial geometry" +, journal = "Combinatorica" +, volume = 3 +, number = "3--4" +, year = 1983 +, pages = "281--297" +, keywords = "discrete geometry, points, arrangements" +, update = "95.05 korneenko" } @article{b-redis-81 -, author = "J. Beck" -, title = "Roth's estimate on the discrepancy of integer sequences is nearly sharp" -, journal = "Combinatorica" -, volume = 1 -, number = 4 -, year = 1981 -, pages = "319--325" -, update = "94.05 matousek" +, author = "J. Beck" +, title = "Roth's estimate on the discrepancy of integer sequences is nearly sharp" +, journal = "Combinatorica" +, volume = 1 +, number = 4 +, year = 1981 +, pages = "319--325" +, update = "94.05 matousek" } @book{bc-id-87 -, author = "J. Beck and W. Chen" -, title = "Irregularities of distribution" -, publisher = "Cambridge University Press" -, year = 1987 -, update = "93.09 matousek" +, author = "J. Beck and W. Chen" +, title = "Irregularities of distribution" +, publisher = "Cambridge University Press" +, year = 1987 +, update = "93.09 matousek" } @article{bfh-sam-86 -, author = "J. Beck and R. Farouki and J. Hinds" -, title = "Surface Analysis Methods" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, year = 1986 -, pages = "18--36" -, update = "98.03 bibrelex" +, author = "J. Beck and R. Farouki and J. Hinds" +, title = "Surface Analysis Methods" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, year = 1986 +, pages = "18--36" +, update = "98.03 bibrelex" } @misc{bs-dt- -, author = "J. Beck and V. {S\'os}" -, title = "Discrepancy theory" -, note = "Chapter for {\em Handbook of Combinatorics}, to be +, author = "J. Beck and V. {S\'os}" +, title = "Discrepancy theory" +, note = "Chapter for {\em Handbook of Combinatorics}, to be published by North-Holland" -, update = "94.05 matousek" +, update = "94.05 matousek" } @techreport{bfglow-asotm-92 -, author = "B. Becker and P. G. Franciosa and S. Gschwind and S. Leonardi and T. Ohler and P. Widmayer" -, title = "Approximating a set of objects by two minimum area rectangles" -, type = "Technical {Report}" -, number = "21.92" -, institution = "Dept. Inform. Sistem., Univ. Roma La Sapienza" -, address = "Rome, Italy" -, year = 1992 -, update = "97.03 smid, 95.05 franciosa, 94.09 franciosa, 93.05 smid" +, author = "B. Becker and P. G. Franciosa and S. Gschwind and S. Leonardi and T. Ohler and P. Widmayer" +, title = "Approximating a set of objects by two minimum area rectangles" +, type = "Technical {Report}" +, number = "21.92" +, institution = "Dept. Inform. Sistem., Univ. Roma La Sapienza" +, address = "Rome, Italy" +, year = 1992 +, update = "97.03 smid, 95.05 franciosa, 94.09 franciosa, 93.05 smid" } @article{bfglow-esotm-96 -, author = "B. Becker and P. G. Franciosa and S. Gschwind and S. Leonardi and T. Ohler and P. Widmayer" -, title = "Enclosing a set of objects by two minimum area rectangles" -, journal = "J. Algorithms" -, volume = 21 -, year = 1996 -, pages = "520--541" -, update = "97.03 smid" +, author = "B. Becker and P. G. Franciosa and S. Gschwind and S. Leonardi and T. Ohler and P. Widmayer" +, title = "Enclosing a set of objects by two minimum area rectangles" +, journal = "J. Algorithms" +, volume = 21 +, year = 1996 +, pages = "520--541" +, update = "97.03 smid" } @techreport{bfgotw-oaasr-91t -, author = "B. Becker and P. G. Franciosa and S. Gschwind and T. Ohler and G. Thiemt and P. Widmayer" -, title = "An optimal algorithm for approximating a set of rectangles by two minimum area rectangles" -, type = "Technical {Report}" -, number = 35 -, institution = "Inst. Inform., Univ. Freiburg" -, address = "Freiburg, Germany" -, year = 1991 -, update = "93.05 smid" +, author = "B. Becker and P. G. Franciosa and S. Gschwind and T. Ohler and G. Thiemt and P. Widmayer" +, title = "An optimal algorithm for approximating a set of rectangles by two minimum area rectangles" +, type = "Technical {Report}" +, number = 35 +, institution = "Inst. Inform., Univ. Freiburg" +, address = "Freiburg, Germany" +, year = 1991 +, update = "93.05 smid" } @inproceedings{bfgotw-oaasr-91i -, author = "Bruno Becker and Paolo Giulio Franciosa and Stephan Gschwind and Thomas Ohler and Gerald Thiemt and Peter Widmayer" -, title = "An optimal algorithm for approximating a set of rectangles by two minimum area rectangles" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "13--25" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Bruno Becker and Paolo Giulio Franciosa and Stephan Gschwind and Thomas Ohler and Gerald Thiemt and Peter Widmayer" +, title = "An optimal algorithm for approximating a set of rectangles by two minimum area rectangles" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "13--25" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{bfgotw-embop-92 -, author = "B. Becker and P. G. Franciosa and S. Gschwind and T. Ohler and G. Thiemt and P. Widmayer" -, title = "Enclosing many boxes by an optimal pair of boxes" -, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 577 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "475--486" +, author = "B. Becker and P. G. Franciosa and S. Gschwind and T. Ohler and G. Thiemt and P. Widmayer" +, title = "Enclosing many boxes by an optimal pair of boxes" +, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 577 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "475--486" } @techreport{bh-olpg-83 -, author = "B. Becker and G. Hotz" -, title = "On the optimal layout of planar graphs" -, type = "Report" -, number = "SFB 124 B1" -, institution = "Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1983 +, author = "B. Becker and G. Hotz" +, title = "On the optimal layout of planar graphs" +, type = "Report" +, number = "SFB 124 B1" +, institution = "Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1983 } @article{bh-olpgf-87 -, author = "B. Becker and G. Hotz" -, title = "On The Optimal Layout of Planar Graphs with Fixed Boundary" -, journal = "SIAM J. Comput." -, volume = 16 -, number = 5 -, year = 1987 -, pages = "946--972" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "B. Becker and G. Hotz" +, title = "On The Optimal Layout of Planar Graphs with Fixed Boundary" +, journal = "SIAM J. Comput." +, volume = 16 +, number = 5 +, year = 1987 +, pages = "946--972" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{bo-lwbl-87 -, author = "B. Becker and H. G. Osthof" -, title = "Layout with Wires of Balanced Length" -, journal = "Inform. Comput." -, volume = 73 -, year = 1987 -, pages = "45--58" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "B. Becker and H. G. Osthof" +, title = "Layout with Wires of Balanced Length" +, journal = "Inform. Comput." +, volume = 73 +, year = 1987 +, pages = "45--58" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{bo-lwbl-84 -, author = "B. Becker and H. G. Osthof" -, title = "Layouts with wires of balanced length" -, type = "Report" -, number = "??" -, institution = "Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1984 +, author = "B. Becker and H. G. Osthof" +, title = "Layouts with wires of balanced length" +, type = "Report" +, number = "??" +, institution = "Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1984 } @inproceedings{bsw-spsat-91 -, author = "B. Becker and H. W. Six and P. Widmayer" -, title = "Spatial priority search: {An} access technique for scaleless maps" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1991 -, pages = "128--138" -, update = "97.07 agarwal" +, author = "B. Becker and H. W. Six and P. Widmayer" +, title = "Spatial priority search: {An} access technique for scaleless maps" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1991 +, pages = "128--138" +, update = "97.07 agarwal" } @inproceedings{bw-mvl-90 -, author = "Bruno Becker and Peter Widmayer" -, title = "{Ma{\ss}stabsunabh{\"a}ngige} {Verwaltung} von {Landkarten}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 5 -, update = "00.03 bibrelex" +, author = "Bruno Becker and Peter Widmayer" +, title = "{Ma{\ss}stabsunabh{\"a}ngige} {Verwaltung} von {Landkarten}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 5 +, update = "00.03 bibrelex" } @inproceedings{bkss-rtera-90 -, author = "N. Beckmann and H.-P. Kriegel and R. Schneider and B. Seeger" -, title = "The {R$^*$}-tree: {An} efficient and robust access method for points and rectangles" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1990 -, pages = "322--331" -, update = "97.07 agarwal, 95.01 mitchell" +, author = "N. Beckmann and H.-P. Kriegel and R. Schneider and B. Seeger" +, title = "The {R$^*$}-tree: {An} efficient and robust access method for points and rectangles" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1990 +, pages = "322--331" +, update = "97.07 agarwal, 95.01 mitchell" } @phdthesis{b-msvav-92 -, author = "B. B. Bederson" -, title = "A miniature space-variant active vision system: {Cortex}-{I}" -, school = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "B. B. Bederson" +, title = "A miniature space-variant active vision system: {Cortex}-{I}" +, school = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @book{bbf-fmg-86 -, author = "Behnke and Bachmann and Fladt" -, title = "Fundamentals of mathematics, geometry" -, volume = 1 -, publisher = "MIT Press" -, year = 1986 -, update = "97.11 bibrelex" +, author = "Behnke and Bachmann and Fladt" +, title = "Fundamentals of mathematics, geometry" +, volume = 1 +, publisher = "MIT Press" +, year = 1986 +, update = "97.11 bibrelex" } @article{b-udkuu-38 -, author = "F. Behrend" -, title = "{\"U}ber die kleinste umbeschriebene und die gr{\"o}{\ss}te einbeschriebene {Ellipse} eines konvexen {Bereiches}" -, journal = "Math. Ann." -, volume = 115 -, year = 1938 -, pages = "379--411" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "F. Behrend" +, title = "{\"U}ber die kleinste umbeschriebene und die gr{\"o}{\ss}te einbeschriebene {Ellipse} eines konvexen {Bereiches}" +, journal = "Math. Ann." +, volume = 115 +, year = 1938 +, pages = "379--411" +, update = "98.11 bibrelex, 97.11 bibrelex" } @mastersthesis{b-azede-90 -, author = "B. Behrends" -, title = "Algorithmen zur {Erkennung} der $\epsilon$-{Kongruenz} von {Punktmengen} und {Polygonen}" -, school = "Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, year = 1990 -, note = "Diploma Thesis" -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "B. Behrends" +, title = "Algorithmen zur {Erkennung} der $\epsilon$-{Kongruenz} von {Punktmengen} und {Polygonen}" +, school = "Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, year = 1990 +, note = "Diploma Thesis" +, keywords = "master thesis" +, update = "97.11 bibrelex" } @incollection{b-fs-94 -, author = "Uwe Behrens" -, title = "Fence Shading" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "404--409" -, keywords = "Gouraud shading, Phong shading" -, update = "94.09 heckbert" -, annote = "Proposes an approach halfway between Gouraud shading and +, author = "Uwe Behrens" +, title = "Fence Shading" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "404--409" +, keywords = "Gouraud shading, Phong shading" +, update = "94.09 heckbert" +, annote = "Proposes an approach halfway between Gouraud shading and Phong shading: shade along the edges of the polygon, but interpolate across the interior. Contains pseudocode." } @inproceedings{bs-rptsa-90 -, author = "I. Beichl and F. Sullivan" -, title = "A robust parallel triangulation and shelling algorithm" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "107--111" -, cites = "bm-sdcs-71, dk-rtdpm-78, s-chdch-86, s-imc-73, ygkm-mdidq-, ZZZ" -, update = "98.07 bibrelex" +, author = "I. Beichl and F. Sullivan" +, title = "A robust parallel triangulation and shelling algorithm" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "107--111" +, cites = "bm-sdcs-71, dk-rtdpm-78, s-chdch-86, s-imc-73, ygkm-mdidq-, ZZZ" +, update = "98.07 bibrelex" } @techreport{bg-sos-87 -, author = "R. Beigel and J. Gill" -, title = "Sorting $n$ Objects with a $k$-sorter" -, institution = "The John Hopkins University" -, year = 1987 -, update = "98.03 bibrelex" +, author = "R. Beigel and J. Gill" +, title = "Sorting $n$ Objects with a $k$-sorter" +, institution = "The John Hopkins University" +, year = 1987 +, update = "98.03 bibrelex" } @article{b-onasc-89 -, author = "W. Bein" -, title = "An ${O}(n\log n)$ algorithm for a special class of linear programs" -, journal = "Computing" -, volume = 42 -, year = 1989 -, pages = "309--313" -, keywords = "linear programming" -, update = "95.05 korneenko" +, author = "W. Bein" +, title = "An ${O}(n\log n)$ algorithm for a special class of linear programs" +, journal = "Computing" +, volume = 42 +, year = 1989 +, pages = "309--313" +, keywords = "linear programming" +, update = "95.05 korneenko" } @misc{blp-despp-92 -, author = "W. Bein and L. Larmore and J. Park" -, title = "The $d$-edge shortest-path problem for a {Monge} graph" -, year = 1992 -, note = "Preprint" -, update = "98.03 bibrelex" +, author = "W. Bein and L. Larmore and J. Park" +, title = "The $d$-edge shortest-path problem for a {Monge} graph" +, year = 1992 +, note = "Preprint" +, update = "98.03 bibrelex" } @inproceedings{bs-ilmth-98 -, author = "Ronald Beirouti and Jack Snoeyink" -, title = "Implementations of the LMT Heuristic for Minimum Weight Triangulations" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "96--105" -, update = "01.11 pocchiola" +, author = "Ronald Beirouti and Jack Snoeyink" +, title = "Implementations of the LMT Heuristic for Minimum Weight Triangulations" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "96--105" +, update = "01.11 pocchiola" } @article{b-tcil-77 -, author = "D. E. Bell" -, title = "A theorem concerning integer lattice" -, journal = "Studies Appl. Math." -, volume = 56 -, number = 2 -, year = 1977 -, pages = "187--188" -, keywords = "discrete geometry, linear programming" -, update = "95.05 korneenko" +, author = "D. E. Bell" +, title = "A theorem concerning integer lattice" +, journal = "Studies Appl. Math." +, volume = 56 +, number = 2 +, year = 1977 +, pages = "187--188" +, keywords = "discrete geometry, linear programming" +, update = "95.05 korneenko" } @article{bhm-dghp-89 -, author = "S. B. M. Bell and F. C. Hobroyd and D. C. Masa" -, title = "A digital geometry of hexagonal pixels" -, journal = "Image Vision Comput." -, volume = 7 -, number = 3 -, year = 1989 -, pages = "194--204" -, keywords = "digital geometry" -, update = "95.05 korneenko" +, author = "S. B. M. Bell and F. C. Hobroyd and D. C. Masa" +, title = "A digital geometry of hexagonal pixels" +, journal = "Image Vision Comput." +, volume = 7 +, number = 3 +, year = 1989 +, pages = "194--204" +, keywords = "digital geometry" +, update = "95.05 korneenko" } @inproceedings{bglr-epcpa-93 -, author = "M. Bellare and S. Goldwasser and C. Lund and A. Russel" -, title = "Efficient probabilistically checkable proofs and applications to approximation" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "294--304" -, update = "97.11 bibrelex" +, author = "M. Bellare and S. Goldwasser and C. Lund and A. Russel" +, title = "Efficient probabilistically checkable proofs and applications to approximation" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "294--304" +, update = "97.11 bibrelex" } @inproceedings{bs-inar-94 -, author = "M. Bellare and M. Sudan" -, title = "Improved non-approximability results" -, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "184--193" -, update = "97.07 agarwal" +, author = "M. Bellare and M. Sudan" +, title = "Improved non-approximability results" +, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "184--193" +, update = "97.07 agarwal" } @mastersthesis{b-ctcsp-91 -, author = "Patrice Belleville" -, title = "Computing two-covers of simple polygons" -, school = "School of Computer Science, McGill University" -, year = 1991 -, keywords = "master thesis" +, author = "Patrice Belleville" +, title = "Computing two-covers of simple polygons" +, school = "School of Computer Science, McGill University" +, year = 1991 +, keywords = "master thesis" } @inproceedings{b-cchd-95 -, author = "Patrice Belleville" -, title = "Convex Covers in Higher Dimensions" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "145--150" -, update = "95.09 jones" +, author = "Patrice Belleville" +, title = "Convex Covers in Higher Dimensions" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "145--150" +, update = "95.09 jones" } @inproceedings{b-rbcct-93 -, author = "P. Belleville" -, title = "On restricted boundary covers and convex three-covers" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "467--472" -, cites = "ghlst-ltavs-87, h-fvgsp-87, o-agta-87, s-rutcp-93, cr-cpih-88, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "P. Belleville" +, title = "On restricted boundary covers and convex three-covers" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "467--472" +, cites = "ghlst-ltavs-87, h-fvgsp-87, o-agta-87, s-rutcp-93, cr-cpih-88, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{b-ppmih-91 -, author = "P. Belleville" -, title = "Probing polygons minimally is hard" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "50--53" -, cites = "gj-cigtn-79, l-aiorp-88, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Belleville" +, title = "Probing polygons minimally is hard" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "50--53" +, cites = "gj-cigtn-79, l-aiorp-88, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{b-tgsp-92 -, author = "P. Belleville" -, title = "Two-guarding simple polygons" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "103--108" -, cites = "b-ctcsp-91, ghlst-ltavs-87, h-fuenl-89, o-agta-87, s-rutcp-93, s-rrag-92, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Belleville" +, title = "Two-guarding simple polygons" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "103--108" +, cites = "b-ctcsp-91, ghlst-ltavs-87, h-fuenl-89, o-agta-87, s-rutcp-93, s-rrag-92, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{bbcuz-kgpp-94 -, author = "P. Belleville and P. Bose and J. Czyzowicz and J. Urrutia and J. Zaks" -, title = "$k$-Guarding Polygons on the Plane" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "381--386" -, cites = "bglosu-fp-93, c-ctpg-75, cruz-grag, cru-ofipt-93, f-icd-77, f-spcwt-78, o-agta-87, fru-lsoso-92, h-mg-76, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "P. Belleville and P. Bose and J. Czyzowicz and J. Urrutia and J. Zaks" +, title = "$k$-Guarding Polygons on the Plane" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "381--386" +, cites = "bglosu-fp-93, c-ctpg-75, cruz-grag, cru-ofipt-93, f-icd-77, f-spcwt-78, o-agta-87, fru-lsoso-92, h-mg-76, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{bkms-cetaa-96 -, author = "Patrice Belleville and Mark Keil and Michael McAllister and Jack Snoeyink" -, title = "On computing edges that are in all minimum-weight triangulations" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V7--V8" -, cites = "aatr-tin-95, bde-danmw-96t, dm-ucsmw-96, k-mtpd-80, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Patrice Belleville and Mark Keil and Michael McAllister and Jack Snoeyink" +, title = "On computing edges that are in all minimum-weight triangulations" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V7--V8" +, cites = "aatr-tin-95, bde-danmw-96t, dm-ucsmw-96, k-mtpd-80, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @techreport{bs-ppmh-91 -, author = "P. Belleville and T. Shermer" -, title = "Probing polygons minimially is hard" -, type = "Technical {Report}" -, number = "91-12" -, institution = "Dept. Comput. Sci., Simon Fraser Univ." -, address = "Burnaby, BC" -, month = dec -, year = 1991 -, update = "98.03 bibrelex" +, author = "P. Belleville and T. Shermer" +, title = "Probing polygons minimially is hard" +, type = "Technical {Report}" +, number = "91-12" +, institution = "Dept. Comput. Sci., Simon Fraser Univ." +, address = "Burnaby, BC" +, month = dec +, year = 1991 +, update = "98.03 bibrelex" } @article{bs-ppmih-93 -, author = "P. Belleville and T. C. Shermer" -, title = "Probing Polygons Minimally is Hard" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 5 -, month = mar -, year = 1993 -, pages = "255--265" -, update = "93.09 held+milone+mitchell" +, author = "P. Belleville and T. C. Shermer" +, title = "Probing Polygons Minimally is Hard" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 5 +, month = mar +, year = 1993 +, pages = "255--265" +, update = "93.09 held+milone+mitchell" } @book{b-dp-87 -, author = "R. E. Bellman" -, title = "Dynamic Programming" -, publisher = "Princeton University Press" -, address = "Princeton, NJ" -, year = 1987 +, author = "R. E. Bellman" +, title = "Dynamic Programming" +, publisher = "Princeton University Press" +, address = "Princeton, NJ" +, year = 1987 } @article{br-cfssl-69 -, author = "R. E. Bellman and R. S. Roth" -, title = "Curve fitting by segmented straight lines" -, journal = "American Statistical Association Journal" -, volume = 64 -, year = 1969 -, pages = "1079--1084" -, update = "96.09 orourke" +, author = "R. E. Bellman and R. S. Roth" +, title = "Curve fitting by segmented straight lines" +, journal = "American Statistical Association Journal" +, volume = 64 +, year = 1969 +, pages = "1079--1084" +, update = "96.09 orourke" } @book{br-matmm-86 -, author = "R. E. Bellman and R. S. Roth" -, title = "Methods in Approximation: Techniques for Mathematical Modelling" -, publisher = "D.~Reidel Publishing Co." -, address = "Boston" -, year = 1986 -, update = "96.09 orourke" +, author = "R. E. Bellman and R. S. Roth" +, title = "Methods in Approximation: Techniques for Mathematical Modelling" +, publisher = "D.~Reidel Publishing Co." +, address = "Boston" +, year = 1986 +, update = "96.09 orourke" } @article{bbdr-msdtc-00 -, author = "A. Below and U. Brehm and J. A. {De Loera} and J. Richter-Gebert" -, title = "Minimal simplicial dissections and triangulations of convex 3-polytopes" -, journal = "Discrete Comput. Geom." -, volume = 24 -, year = 2000 -, pages = "35--48" -, update = "01.04 orourke" +, author = "A. Below and U. Brehm and J. A. {De Loera} and J. Richter-Gebert" +, title = "Minimal simplicial dissections and triangulations of convex 3-polytopes" +, journal = "Discrete Comput. Geom." +, volume = 24 +, year = 2000 +, pages = "35--48" +, update = "01.04 orourke" } @unpublished{bdr-cfst-00 -, author = "A. Below and J. A. {De Loera} and J. Richter-Gebert" -, title = "The complexity of finding small triangulations of convex 3-polytopes" -, year = 2000 -, note = "Manuscript. \url{http://www.inf.ethz.ch/personal/richter/}" -, update = "01.04 orourke" +, author = "A. Below and J. A. {De Loera} and J. Richter-Gebert" +, title = "The complexity of finding small triangulations of convex 3-polytopes" +, year = 2000 +, note = "Manuscript. \url{http://www.inf.ethz.ch/personal/richter/}" +, update = "01.04 orourke" } @article{bft-crup-01 -, author = "A. Bemporad and K. Fukuda and F. D. Torrisi" -, title = "Convexity recognition of the union of polyhedra" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "141--154" -, update = "01.07 smid" +, author = "A. Bemporad and K. Fukuda and F. D. Torrisi" +, title = "Convexity recognition of the union of polyhedra" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "141--154" +, update = "01.07 smid" } @inproceedings{b-lbara-95 -, author = "Amir M. Ben-Amram" -, title = "Lower Bounds on Algebraic Random Access Machines" -, booktitle = "Proc. 22nd Internat. Colloq. Automata Lang. Prog." -, nickname = "ICALP '95" -, series = "Lecture Notes Comput. Sci." -, volume = 944 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "360--371" -, update = "97.07 agarwal" -, abstract = "The method of proving lower bounds for decision +, author = "Amir M. Ben-Amram" +, title = "Lower Bounds on Algebraic Random Access Machines" +, booktitle = "Proc. 22nd Internat. Colloq. Automata Lang. Prog." +, nickname = "ICALP '95" +, series = "Lecture Notes Comput. Sci." +, volume = 944 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "360--371" +, update = "97.07 agarwal" +, abstract = "The method of proving lower bounds for decision problems by topological component counting, previously used with respect to algebraic computation trees, is extended in this work to random access @@ -17594,1363 +17594,1363 @@ @inproceedings{b-lbara-95 } @article{b-wipm-95 -, author = "Amir M. Ben-Amram" -, title = "What is a ``Pointer Machine''?" -, journal = "SIGACT News" -, volume = 26 -, year = 1995 -, pages = "88--95" -, update = "97.07 agarwal" +, author = "Amir M. Ben-Amram" +, title = "What is a ``Pointer Machine''?" +, journal = "SIGACT News" +, volume = 26 +, year = 1995 +, pages = "88--95" +, update = "97.07 agarwal" } @inproceedings{bbktw-prola-90 -, author = "S. Ben-David and A. Borodin and R. Karp and G. Tardos and A. Wigderson" -, title = "On the Power of Randomization in On-Line Algorithms" -, booktitle = "Proc. 22th Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "379--386" -, update = "94.05 franciosa" +, author = "S. Ben-David and A. Borodin and R. Karp and G. Tardos and A. Wigderson" +, title = "On the Power of Randomization in On-Line Algorithms" +, booktitle = "Proc. 22th Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "379--386" +, update = "94.05 franciosa" } @inproceedings{bk-adspp-01 -, author = "Boaz Ben-Moshe and Matthew J. Katz" -, title = "Approximating the Diameter of a Set of Points in the Presence of Rectangular Obstacles" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "154--157" -, update = "01.04 icking" +, author = "Boaz Ben-Moshe and Matthew J. Katz" +, title = "Approximating the Diameter of a Set of Points in the Presence of Rectangular Obstacles" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "154--157" +, update = "01.04 icking" } @article{bks-oflcs-00 -, author = "B. Ben-Moshe and M. J. Katz and M. Segal" -, title = "Obnoxious facility location: complete service with minimal harm" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "581--592" -, update = "01.04 smid" +, author = "B. Ben-Moshe and M. J. Katz and M. Segal" +, title = "Obnoxious facility location: complete service with minimal harm" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "581--592" +, update = "01.04 smid" } @inproceedings{b-actcp-94 -, author = "Michael Ben-Or" -, title = "Algebraic Computation Trees in Characteristic {$p>0$}" -, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1994 -, pages = "534--539" -, update = "97.03 agarwal" +, author = "Michael Ben-Or" +, title = "Algebraic Computation Trees in Characteristic {$p>0$}" +, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1994 +, pages = "534--539" +, update = "97.03 agarwal" } @inproceedings{b-lbact-83 -, author = "M. Ben-Or" -, title = "Lower bounds for algebraic computation trees" -, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." -, year = 1983 -, pages = "80--86" +, author = "M. Ben-Or" +, title = "Lower bounds for algebraic computation trees" +, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." +, year = 1983 +, pages = "80--86" } @article{bkr-ceag-86 -, author = "M. Ben-Or and D. Kozen and J. H. Reif" -, title = "The complexity of elementary algebra and geometry" -, journal = "J. Comput. Syst. Sci." -, volume = 32 -, year = 1986 -, pages = "251--264" +, author = "M. Ben-Or and D. Kozen and J. H. Reif" +, title = "The complexity of elementary algebra and geometry" +, journal = "J. Comput. Syst. Sci." +, volume = 32 +, year = 1986 +, pages = "251--264" } @article{bs-cht-90 -, author = "Ben-Tzvi and D. and M. B. Sandler" -, title = "A Combinatorial Hough Transform" -, journal = "Pattern Recogn. Lett." -, volume = "??" -, number = 11 -, year = 1990 -, pages = "167--174" -, update = "98.07 bibrelex" +, author = "Ben-Tzvi and D. and M. B. Sandler" +, title = "A Combinatorial Hough Transform" +, journal = "Pattern Recogn. Lett." +, volume = "??" +, number = 11 +, year = 1990 +, pages = "167--174" +, update = "98.07 bibrelex" } @article{bd-rstod-86 -, author = "H. Bendelt and A. Dress" -, title = "Reconstructing the shape of a tree from observed dissimilarity data" -, journal = "Adv. Appl. Math." -, volume = 7 -, year = 1986 -, pages = "309--343" -, update = "97.11 bibrelex" +, author = "H. Bendelt and A. Dress" +, title = "Reconstructing the shape of a tree from observed dissimilarity data" +, journal = "Adv. Appl. Math." +, volume = 7 +, year = 1986 +, pages = "309--343" +, update = "97.11 bibrelex" } @book{bo-ammse-78 -, author = "C. M. Bender and S. A. Orszag" -, title = "Advanced mathematical methods for scientists and engineers" -, series = "International Series in Pure and Applied Mathematics" -, publisher = "McGraw-Hill" -, year = 1978 -, update = "98.03 bibrelex" +, author = "C. M. Bender and S. A. Orszag" +, title = "Advanced mathematical methods for scientists and engineers" +, series = "International Series in Pure and Applied Mathematics" +, publisher = "McGraw-Hill" +, year = 1978 +, update = "98.03 bibrelex" } @article{b-ame-74 -, author = "E. A. Bender" -, title = "Asymptotic methods in enumeration" -, journal = "SIAM Rev." -, volume = 16 -, number = 4 -, month = oct -, year = 1974 -, pages = "485--515" -, update = "97.11 bibrelex" +, author = "E. A. Bender" +, title = "Asymptotic methods in enumeration" +, journal = "SIAM Rev." +, volume = 16 +, number = 4 +, month = oct +, year = 1974 +, pages = "485--515" +, update = "97.11 bibrelex" } @article{bcm-anlcg-90 -, author = "E. A. Bender and E. R. Candfield and B. D. McKay" -, title = "The asymptotic number of labeled connected graphs with a given number of vertices and edges" -, journal = "Random Structures and Algorithms" -, volume = 1 -, number = 2 -, year = 1990 -, pages = "127--169" -, update = "97.11 bibrelex" +, author = "E. A. Bender and E. R. Candfield and B. D. McKay" +, title = "The asymptotic number of labeled connected graphs with a given number of vertices and edges" +, journal = "Random Structures and Algorithms" +, volume = 1 +, number = 2 +, year = 1990 +, pages = "127--169" +, update = "97.11 bibrelex" } @inproceedings{bf-lpr-00 -, author = "M. A. Bender and M. Farach-Colton" -, title = "The {LCA} problem revisited" -, booktitle = "Proceedings of the 4th Latin American Symposium on Theoretical Informatics" -, series = "Lecture Notes Comput. Sci." -, volume = 1776 -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 2000 -, pages = "88--94" -, update = "01.11 smid" +, author = "M. A. Bender and M. Farach-Colton" +, title = "The {LCA} problem revisited" +, booktitle = "Proceedings of the 4th Latin American Symposium on Theoretical Informatics" +, series = "Lecture Notes Comput. Sci." +, volume = 1776 +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 2000 +, pages = "88--94" +, update = "01.11 smid" } @article{blr-bnccr-91 -, author = "R. Benedetti and F. Loeser and J. J. Risler" -, title = "Bounding the number of connected components of a real algebraic set" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "191--209" +, author = "R. Benedetti and F. Loeser and J. J. Risler" +, title = "Bounding the number of connected components of a real algebraic set" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "191--209" } @book{br-rasas-90 -, author = "R. Benedetti and J.-J. Risler" -, title = "Real algebraic and semi-algebraic sets" -, series = "Actualit{\'e}s math{\'e}matiques" -, publisher = "Hermann" -, address = "Paris" -, year = 1990 -, update = "00.03 bibrelex" +, author = "R. Benedetti and J.-J. Risler" +, title = "Real algebraic and semi-algebraic sets" +, series = "Actualit{\'e}s math{\'e}matiques" +, publisher = "Hermann" +, address = "Paris" +, year = 1990 +, update = "00.03 bibrelex" } @article{bh-ospp-95 -, author = "M. Benelli and R. Hassin" -, title = "Optimal separable partitioning in the plane" -, journal = "Discrete Appl. Math." -, volume = 59 -, year = 1995 -, pages = "215--224" -, keywords = "bipartition, clustering, separation, optimization, diameter, Weber problem, convex hull" -, update = "95.09 mitchell" +, author = "M. Benelli and R. Hassin" +, title = "Optimal separable partitioning in the plane" +, journal = "Discrete Appl. Math." +, volume = 59 +, year = 1995 +, pages = "215--224" +, keywords = "bipartition, clustering, separation, optimization, diameter, Weber problem, convex hull" +, update = "95.09 mitchell" } @article{bn-ciimc-64 -, author = "B.-E. Bengtsson and S. Norbeck" -, title = "Construction of isarithms and isarithmic maps by computers" -, journal = "BIT" -, volume = 4 -, year = 1964 -, pages = "87--105" +, author = "B.-E. Bengtsson and S. Norbeck" +, title = "Construction of isarithms and isarithmic maps by computers" +, journal = "BIT" +, volume = 4 +, year = 1964 +, pages = "87--105" } @inproceedings{b-rbasv-90 -, author = "Daniel Benninger" -, title = "{R-B{\"a}ume} und {Abfragen} auf skalarwertigen {Vektorkarten}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 6 -, update = "00.03 bibrelex" +, author = "Daniel Benninger" +, title = "{R-B{\"a}ume} und {Abfragen} auf skalarwertigen {Vektorkarten}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 6 +, update = "00.03 bibrelex" } @inproceedings{bc-arstp-92 -, author = "I. Bennour and J. Cloutier" -, title = "Approximation of the rectilinear {Steiner} tree problem with neural networks" -, booktitle = "Canadian Conf. on VLSI" -, site = "Halifax" -, month = oct -, year = 1992 -, update = "98.11 bibrelex" +, author = "I. Bennour and J. Cloutier" +, title = "Approximation of the rectilinear {Steiner} tree problem with neural networks" +, booktitle = "Canadian Conf. on VLSI" +, site = "Halifax" +, month = oct +, year = 1992 +, update = "98.11 bibrelex" } @inproceedings{bjmm-lsicg-93 -, author = "M. Benouamer and P. Jaillon and D. Michelucci and J.-M. Moreau" -, title = "A lazy solution to imprecision in computational geometry" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "73--78" -, cites = "bo-arcgi-79, c-fadsi-88, d-reidt-92, em-sstcd-88, fv-eeacg-93, gy-frcg-86, gss-egbra-89, si-cvd10-89, j-leair-93, k-sa-81, m-rfqcd-87, m-vigau-88p, m-dpggt-89, ml-csche-89, m-ia-66, m-fhrsg-90, otu-nsga-87, ps-cgi-85, ss-ccsm-85, ce-oails-88t, hns-saann-88, k-rmrs-89, kln-edtur-89, m-mdscg-84, y-gctsp-88, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "M. Benouamer and P. Jaillon and D. Michelucci and J.-M. Moreau" +, title = "A lazy solution to imprecision in computational geometry" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "73--78" +, cites = "bo-arcgi-79, c-fadsi-88, d-reidt-92, em-sstcd-88, fv-eeacg-93, gy-frcg-86, gss-egbra-89, si-cvd10-89, j-leair-93, k-sa-81, m-rfqcd-87, m-vigau-88p, m-dpggt-89, ml-csche-89, m-ia-66, m-fhrsg-90, otu-nsga-87, ps-cgi-85, ss-ccsm-85, ce-oails-88t, hns-saann-88, k-rmrs-89, kln-edtur-89, m-mdscg-84, y-gctsp-88, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @incollection{bllr-achmd-86 -, author = "M. Benson and R. Larntz and M. Lavine and R. Regal" -, title = "The application of convex hulls in multiple dimensions" -, booktitle = "Computer Sci. and Statistics: Proc. 18th Sympos. on the Interface" -, year = 1986 -, pages = "297--301" -, keywords = "convex hull" -, update = "95.09 agarwal, 95.05 korneenko" +, author = "M. Benson and R. Larntz and M. Lavine and R. Regal" +, title = "The application of convex hulls in multiple dimensions" +, booktitle = "Computer Sci. and Statistics: Proc. 18th Sympos. on the Interface" +, year = 1986 +, pages = "297--301" +, keywords = "convex hull" +, update = "95.09 agarwal, 95.05 korneenko" } @book{b-egc-66 -, author = "R. V. Benson" -, title = "Euclidean Geometry and Convexity" -, publisher = "McGraw-Hill" -, address = "New York, NY" -, year = 1966 -, update = "97.03 schwarzkopf" +, author = "R. V. Benson" +, title = "Euclidean Geometry and Convexity" +, publisher = "McGraw-Hill" +, address = "New York, NY" +, year = 1966 +, update = "97.03 schwarzkopf" } @article{bst-bst-85 -, author = "S. W. Bent and D. D. Sleator and R. E. Tarjan" -, title = "Biased Search Trees" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "545--568" -, update = "96.01 tamassia" +, author = "S. W. Bent and D. D. Sleator and R. E. Tarjan" +, title = "Biased Search Trees" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "545--568" +, update = "96.01 tamassia" } @unpublished{b-akrp-77 -, author = "J. Bentley" -, title = "Algorithms for {Klee's} rectangle problems" -, year = 1977 -, note = "unpublished manuscript, Dept. of Computer Science, Carnegie-Mellon University" -, update = "98.11 bibrelex" +, author = "J. Bentley" +, title = "Algorithms for {Klee's} rectangle problems" +, year = 1977 +, note = "unpublished manuscript, Dept. of Computer Science, Carnegie-Mellon University" +, update = "98.11 bibrelex" } @article{b-csaad-84 -, author = "J. L. Bentley" -, title = "A case study in applied algorithm design" -, journal = "Computer" -, volume = 17 -, year = 1984 -, pages = "75--88" +, author = "J. L. Bentley" +, title = "A case study in applied algorithm design" +, journal = "Computer" +, volume = 17 +, year = 1984 +, pages = "75--88" } @techreport{b-stfrn-75 -, author = "J. L. Bentley" -, title = "A survey of techniques for fixed radius near neighbor searching" -, type = "Report" -, number = "STAN-CS-78-513" -, institution = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, year = 1975 +, author = "J. L. Bentley" +, title = "A survey of techniques for fixed radius near neighbor searching" +, type = "Report" +, number = "STAN-CS-78-513" +, institution = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, year = 1975 } @techreport{b-amn-78 -, author = "J. L. Bentley" -, title = "Algorithms for multivariate nonparametrics" -, type = "Report" -, number = "CMU-CS-78-147" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1978 +, author = "J. L. Bentley" +, title = "Algorithms for multivariate nonparametrics" +, type = "Report" +, number = "CMU-CS-78-147" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1978 } @article{b-dsp-79 -, author = "J. L. Bentley" -, title = "Decomposable searching problems" -, journal = "Inform. Process. Lett." -, volume = 8 -, year = 1979 -, pages = "244--251" +, author = "J. L. Bentley" +, title = "Decomposable searching problems" +, journal = "Inform. Process. Lett." +, volume = 8 +, year = 1979 +, pages = "244--251" } @phdthesis{b-dcacp-76 -, author = "J. L. Bentley" -, title = "Divide-and-conquer algorithms for closest point problems in multidimensional space" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, year = 1976 -, note = "Report TR-76-103" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "J. L. Bentley" +, title = "Divide-and-conquer algorithms for closest point problems in multidimensional space" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, year = 1976 +, note = "Report TR-76-103" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @inproceedings{b-etsh-90 -, author = "J. L. Bentley" -, title = "Experiments on traveling salesman heuristics" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, site = "San Francisco, CA" -, month = jan -, year = 1990 -, pages = "91--99" -, update = "98.07 bibrelex" +, author = "J. L. Bentley" +, title = "Experiments on traveling salesman heuristics" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, site = "San Francisco, CA" +, month = jan +, year = 1990 +, pages = "91--99" +, update = "98.07 bibrelex" } @article{b-fagts-92 -, author = "Jon Louis Bentley" -, title = "Fast Algorithms for Geometric Traveling Salesman Problems" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "387--411" -, update = "98.03 mitchell" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "Jon Louis Bentley" +, title = "Fast Algorithms for Geometric Traveling Salesman Problems" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "387--411" +, update = "98.03 mitchell" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @inproceedings{b-kdtsp-90 -, author = "J. L. Bentley" -, title = "{$K$}-d trees for semidynamic point sets" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "187--197" -, cites = "ahu-daca-74, b-mbstu-75, b-etsh-90, b-fagts-92, bs-dcms-76, bwy-oetac-80, fr-etbs-75, fbf-afbml-77, lw-wcarp-77, m-mdscg-84, pb-wcann-80t, ps-cgi-85, s-a-88, s-rnnsk-88, s-cpl-86, z-tcg-78, ZZZ" -, update = "97.11 bibrelex" +, author = "J. L. Bentley" +, title = "{$K$}-d trees for semidynamic point sets" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "187--197" +, cites = "ahu-daca-74, b-mbstu-75, b-etsh-90, b-fagts-92, bs-dcms-76, bwy-oetac-80, fr-etbs-75, fbf-afbml-77, lw-wcarp-77, m-mdscg-84, pb-wcann-80t, ps-cgi-85, s-a-88, s-rnnsk-88, s-cpl-86, z-tcg-78, ZZZ" +, update = "97.11 bibrelex" } @article{b-mbstd-79 -, author = "J. L. Bentley" -, title = "Multidimensional binary search trees in database applications" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-5" -, year = 1979 -, pages = "333--340" +, author = "J. L. Bentley" +, title = "Multidimensional binary search trees in database applications" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-5" +, year = 1979 +, pages = "333--340" } @article{b-mbstu-75 -, author = "J. L. Bentley" -, title = "Multidimensional binary search trees used for associative searching" -, journal = "Commun. ACM" -, volume = 18 -, number = 9 -, month = sep -, year = 1975 -, pages = "509--517" -, update = "98.11 bibrelex" +, author = "J. L. Bentley" +, title = "Multidimensional binary search trees used for associative searching" +, journal = "Commun. ACM" +, volume = 18 +, number = 9 +, month = sep +, year = 1975 +, pages = "509--517" +, update = "98.11 bibrelex" } @article{b-mdc-80 -, author = "J. L. Bentley" -, title = "Multidimensional divide-and-conquer" -, journal = "Commun. ACM" -, volume = 23 -, number = 4 -, year = 1980 -, pages = "214--229" -, succeeds = "bs-dcms-76" +, author = "J. L. Bentley" +, title = "Multidimensional divide-and-conquer" +, journal = "Commun. ACM" +, volume = 23 +, number = 4 +, year = 1980 +, pages = "214--229" +, succeeds = "bs-dcms-76" } @article{b-pqrr-79 -, author = "J. L. Bentley" -, title = "Priority queues with range restriction" -, journal = "Bull. EATCS" -, volume = 9 -, year = 1979 -, pages = "7--8" +, author = "J. L. Bentley" +, title = "Priority queues with range restriction" +, journal = "Bull. EATCS" +, volume = 9 +, year = 1979 +, pages = "7--8" } @book{b-pp-85 -, author = "J. L. Bentley" -, title = "Programming Pearls" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1985 -, update = "00.03 bibrelex" +, author = "J. L. Bentley" +, title = "Programming Pearls" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1985 +, update = "00.03 bibrelex" } @techreport{b-skrp-77 -, author = "J. L. Bentley" -, title = "Solutions to {Klee}'s rectangle problems" -, type = "Technical Report" -, institution = "Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1977 -, update = "97.03 schwarzkopf" +, author = "J. L. Bentley" +, title = "Solutions to {Klee}'s rectangle problems" +, type = "Technical Report" +, institution = "Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1977 +, update = "97.03 schwarzkopf" } @inproceedings{b-scfga-81 -, author = "J. L. Bentley" -, title = "Squeezing constant factors of geometric algorithms" -, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." -, year = 1981 -, pages = "11--20" +, author = "J. L. Bentley" +, title = "Squeezing constant factors of geometric algorithms" +, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." +, year = 1981 +, pages = "11--20" } @article{bb-hpmrd-76 -, author = "J. L. Bentley and W. A. Burkhard" -, title = "Heuristics for partial-match retrieval data base design" -, journal = "Inform. Process. Lett." -, volume = 4 -, year = 1976 -, pages = "132--135" +, author = "J. L. Bentley and W. A. Burkhard" +, title = "Heuristics for partial-match retrieval data base design" +, journal = "Inform. Process. Lett." +, volume = 4 +, year = 1976 +, pages = "132--135" } @inproceedings{bc-atipp-80 -, author = "J. L. Bentley and W. Carruthers" -, title = "Algorithms for testing the inclusion of points in polygons" -, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." -, year = 1980 -, pages = "11--19" +, author = "J. L. Bentley and W. Carruthers" +, title = "Algorithms for testing the inclusion of points in polygons" +, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." +, year = 1980 +, pages = "11--19" } @inproceedings{bcl-fleta-90 -, author = "J. L. Bentley and K. L. Clarkson and D. B. Levine" -, title = "Fast linear expected-time algorithms for computing maxima and convex hulls" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "179--187" +, author = "J. L. Bentley and K. L. Clarkson and D. B. Levine" +, title = "Fast linear expected-time algorithms for computing maxima and convex hulls" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "179--187" } @techreport{bfpp-tpcg-80 -, author = "J. L. Bentley and G. M. Faust and C. H. Papadimitriou and F. P. Preparata" -, title = "Two papers on computational geometry" -, type = "Report" -, number = "CMU-CS-80-109" -, institution = "Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1980 +, author = "J. L. Bentley and G. M. Faust and C. H. Papadimitriou and F. P. Preparata" +, title = "Two papers on computational geometry" +, type = "Report" +, number = "CMU-CS-80-109" +, institution = "Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1980 } @article{bfp-aach-82 -, author = "J. L. Bentley and G. M. Faust and F. P. Preparata" -, title = "Approximation algorithms for convex hulls" -, journal = "Commun. ACM" -, volume = 25 -, year = 1982 -, pages = "64--68" -, keywords = "designing algorithms, convex hull, approximation, two-dimensional, worst-case analysis" -, annote = "$O(n)$ time" +, author = "J. L. Bentley and G. M. Faust and F. P. Preparata" +, title = "Approximation algorithms for convex hulls" +, journal = "Commun. ACM" +, volume = 25 +, year = 1982 +, pages = "64--68" +, keywords = "designing algorithms, convex hull, approximation, two-dimensional, worst-case analysis" +, annote = "$O(n)$ time" } @article{bf-dsrs-79 -, author = "J. L. Bentley and J. H. Friedman" -, title = "Data structures for range searching" -, journal = "ACM Comput. Surv." -, volume = 11 -, year = 1979 -, pages = "397--409" +, author = "J. L. Bentley and J. H. Friedman" +, title = "Data structures for range searching" +, journal = "ACM Comput. Surv." +, volume = 11 +, year = 1979 +, pages = "397--409" } @article{bf-facms-78 -, author = "J. L. Bentley and J. H. Friedman" -, title = "Fast algorithms for constructing minimal spanning trees in coordinate spaces" -, journal = "IEEE Trans. Comput." -, volume = "C-27" -, year = 1978 -, pages = "97--105" +, author = "J. L. Bentley and J. H. Friedman" +, title = "Fast algorithms for constructing minimal spanning trees in coordinate spaces" +, journal = "IEEE Trans. Comput." +, volume = "C-27" +, year = 1978 +, pages = "97--105" } @inproceedings{bhh-fgavt-81 -, author = "J. L. Bentley and D. Haken and R. W. Hon" -, title = "Fast geometric algorithms for {VLSI} tasks" -, booktitle = "Proc. Comput. Conf." -, year = 1981 -, pages = "88--92" +, author = "J. L. Bentley and D. Haken and R. W. Hon" +, title = "Fast geometric algorithms for {VLSI} tasks" +, booktitle = "Proc. Comput. Conf." +, year = 1981 +, pages = "88--92" } @article{bkv-eccm-91 -, author = "J. L. Bentley and B. Kernigham and C. {Van Wyk}" -, title = "An elementary {C} cost model" -, journal = "UNIX Review" -, volume = 9 -, number = 2 -, year = 1991 -, pages = "38--48" -, update = "98.03 bibrelex" +, author = "J. L. Bentley and B. Kernigham and C. {Van Wyk}" +, title = "An elementary {C} cost model" +, journal = "UNIX Review" +, volume = 9 +, number = 2 +, year = 1991 +, pages = "38--48" +, update = "98.03 bibrelex" } @article{bkst-anmsv-78 -, author = "J. L. Bentley and H. T. Kung and M. Schkolnick and C. D. Thompson" -, title = "On the average number of maxima in a set of vectors and applications" -, journal = "J. ACM" -, volume = 25 -, year = 1978 -, pages = "536--543" +, author = "J. L. Bentley and H. T. Kung and M. Schkolnick and C. D. Thompson" +, title = "On the average number of maxima in a set of vectors and applications" +, journal = "J. ACM" +, volume = 25 +, year = 1978 +, pages = "536--543" } @article{bm-nenns-79 -, author = "J. L. Bentley and H. A. Maurer" -, title = "A note on {Euclidean} near neighbor searching in the plane" -, journal = "Inform. Process. Lett." -, volume = 8 -, year = 1979 -, pages = "133--136" +, author = "J. L. Bentley and H. A. Maurer" +, title = "A note on {Euclidean} near neighbor searching in the plane" +, journal = "Inform. Process. Lett." +, volume = 8 +, year = 1979 +, pages = "133--136" } @article{bm-ewcds-80 -, author = "J. L. Bentley and H. A. Maurer" -, title = "Efficient worst-case data structures for range searching" -, journal = "Acta Inform." -, volume = 13 -, year = 1980 -, pages = "155--168" +, author = "J. L. Bentley and H. A. Maurer" +, title = "Efficient worst-case data structures for range searching" +, journal = "Acta Inform." +, volume = 13 +, year = 1980 +, pages = "155--168" } @incollection{bow-cmhds-83 -, author = "Jon Louis Bentley and Thomas Ottmann and Peter Widmayer" -, title = "The Complexity of Manipulating Hierarchically Defined Sets of Rectangles" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "127--158" -, keywords = "isothetic, rectangles, data structuring" -, succeeds = "bo-cmhds-82" -, update = "01.04 icking, 95.05 korneenko" +, author = "Jon Louis Bentley and Thomas Ottmann and Peter Widmayer" +, title = "The Complexity of Manipulating Hierarchically Defined Sets of Rectangles" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "127--158" +, keywords = "isothetic, rectangles, data structuring" +, succeeds = "bo-cmhds-82" +, update = "01.04 icking, 95.05 korneenko" } @article{bo-arcgi-79 -, author = "J. L. Bentley and T. A. Ottmann" -, title = "Algorithms for reporting and counting geometric intersections" -, journal = "IEEE Trans. Comput." -, volume = "C-28" -, number = 9 -, month = sep -, year = 1979 -, pages = "643--647" -, precedes = "b-carcg-81" -, update = "98.11 bibrelex" +, author = "J. L. Bentley and T. A. Ottmann" +, title = "Algorithms for reporting and counting geometric intersections" +, journal = "IEEE Trans. Comput." +, volume = "C-28" +, number = 9 +, month = sep +, year = 1979 +, pages = "643--647" +, precedes = "b-carcg-81" +, update = "98.11 bibrelex" } @inproceedings{bo-cmhds-82 -, author = "J. L. Bentley and T. A. Ottmann" -, title = "The complexity of manipulating hierarchically defined sets of rectangles" -, booktitle = "Proc. 10th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 118 -, publisher = "Springer-Verlag" -, year = 1982 -, pages = "1--15" -, precedes = "bow-cmhds-83" -, update = "95.05 korneenko" +, author = "J. L. Bentley and T. A. Ottmann" +, title = "The complexity of manipulating hierarchically defined sets of rectangles" +, booktitle = "Proc. 10th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 118 +, publisher = "Springer-Verlag" +, year = 1982 +, pages = "1--15" +, precedes = "bow-cmhds-83" +, update = "95.05 korneenko" } @article{bs-avs-79 -, author = "J. L. Bentley and J. B. Saxe" -, title = "Algorithms on vector sets" -, journal = "SIGACT News" -, volume = 11 -, year = 1979 -, pages = "36--39" +, author = "J. L. Bentley and J. B. Saxe" +, title = "Algorithms on vector sets" +, journal = "SIGACT News" +, volume = 11 +, year = 1979 +, pages = "36--39" } @inproceedings{bs-athet-80 -, author = "J. L. Bentley and J. B. Saxe" -, title = "An analysis of two heuristics for the {Euclidean} traveling salesman problem" -, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." -, year = 1980 -, pages = "41--49" +, author = "J. L. Bentley and J. B. Saxe" +, title = "An analysis of two heuristics for the {Euclidean} traveling salesman problem" +, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." +, year = 1980 +, pages = "41--49" } @article{bs-dsp1s-80 -, author = "J. L. Bentley and J. B. Saxe" -, title = "Decomposable searching problems {I}: {S}tatic-to-dynamic transformations" -, journal = "J. Algorithms" -, volume = 1 -, year = 1980 -, pages = "301--358" -, succeeds = "sb-tsdsd-79" -, update = "00.11 smid, 96.05 agarwal" +, author = "J. L. Bentley and J. B. Saxe" +, title = "Decomposable searching problems {I}: {S}tatic-to-dynamic transformations" +, journal = "J. Algorithms" +, volume = 1 +, year = 1980 +, pages = "301--358" +, succeeds = "sb-tsdsd-79" +, update = "00.11 smid, 96.05 agarwal" } @inproceedings{bs-pmsad-77 -, author = "J. L. Bentley and M. I. Shamos" -, title = "A problem in multivariate statistics: algorithm, data structure, and applications" -, booktitle = "Proc. 15th Allerton Conf. Commun. Control Comput." -, year = 1977 -, pages = "193--201" +, author = "J. L. Bentley and M. I. Shamos" +, title = "A problem in multivariate statistics: algorithm, data structure, and applications" +, booktitle = "Proc. 15th Allerton Conf. Commun. Control Comput." +, year = 1977 +, pages = "193--201" } @article{bs-dclet-78 -, author = "J. L. Bentley and M. I. Shamos" -, title = "Divide-and-conquer for linear expected time" -, journal = "Inform. Process. Lett." -, volume = 7 -, year = 1978 -, pages = "87--91" +, author = "J. L. Bentley and M. I. Shamos" +, title = "Divide-and-conquer for linear expected time" +, journal = "Inform. Process. Lett." +, volume = 7 +, year = 1978 +, pages = "87--91" } @inproceedings{bs-dcms-76 -, author = "J. L. Bentley and M. I. Shamos" -, title = "Divide-and-conquer in multidimensional space" -, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." -, year = 1976 -, pages = "220--230" -, precedes = "b-mdc-80" +, author = "J. L. Bentley and M. I. Shamos" +, title = "Divide-and-conquer in multidimensional space" +, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." +, year = 1976 +, pages = "220--230" +, precedes = "b-mdc-80" } @article{bs-arsqt-75 -, author = "J. L. Bentley and D. F. Stanat" -, title = "Analysis of range searches in quad trees" -, journal = "Inform. Process. Lett." -, volume = 3 -, year = 1975 -, pages = "170--173" +, author = "J. L. Bentley and D. F. Stanat" +, title = "Analysis of range searches in quad trees" +, journal = "Inform. Process. Lett." +, volume = 3 +, year = 1975 +, pages = "170--173" } @article{bsw-cffrn-77 -, author = "J. L. Bentley and D. F. Stanat and E. H. {William, Jr.}" -, title = "The complexity of finding fixed-radius near neighbors" -, journal = "Inform. Process. Lett." -, volume = 6 -, year = 1977 -, pages = "209--212" +, author = "J. L. Bentley and D. F. Stanat and E. H. {William, Jr.}" +, title = "The complexity of finding fixed-radius near neighbors" +, journal = "Inform. Process. Lett." +, volume = 6 +, year = 1977 +, pages = "209--212" } @article{bwy-oetac-80 -, author = "J. L. Bentley and B. W. Weide and A. C. Yao" -, title = "Optimal expected-time algorithms for closest-point problems" -, journal = "ACM Trans. Math. Softw." -, volume = 6 -, year = 1980 -, pages = "563--580" +, author = "J. L. Bentley and B. W. Weide and A. C. Yao" +, title = "Optimal expected-time algorithms for closest-point problems" +, journal = "ACM Trans. Math. Softw." +, volume = 6 +, year = 1980 +, pages = "563--580" } @article{bw-owcar-80 -, author = "J. L. Bentley and D. Wood" -, title = "An optimal worst case algorithm for reporting intersections of rectangles" -, journal = "IEEE Trans. Comput." -, volume = "C-29" -, year = 1980 -, pages = "571--577" +, author = "J. L. Bentley and D. Wood" +, title = "An optimal worst case algorithm for reporting intersections of rectangles" +, journal = "IEEE Trans. Comput." +, volume = "C-29" +, year = 1980 +, pages = "571--577" } @inproceedings{bbmmt-hmgd-95 -, author = "Steven Benzley and Ted D. Blacker and Scott A. Mitchell and Peter Murdoch and Timothy J. Tautges" -, title = "Hexahedral Mesh Generation via the Dual" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C4--C5" -, cites = "rt-gcphg-84, mbbm-cbmrc-, tmb-cbmrc-, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex, 95.09 mitchell" +, author = "Steven Benzley and Ted D. Blacker and Scott A. Mitchell and Peter Murdoch and Timothy J. Tautges" +, title = "Hexahedral Mesh Generation via the Dual" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C4--C5" +, cites = "rt-gcphg-84, mbbm-cbmrc-, tmb-cbmrc-, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex, 95.09 mitchell" } @inproceedings{bpmcs-cahat-95 -, author = "Steven E. Benzley and Ernest Perry and Karl Merkley and Brett Clark and Gregory D. Sjaardema" -, title = "A Comparison of All Hexagonal and All Tetrahedral Finite Element Meshes for Elastic and Elasto-plastic Analysis" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "179--192" -, update = "96.01 samitchell" +, author = "Steven E. Benzley and Ernest Perry and Karl Merkley and Brett Clark and Gregory D. Sjaardema" +, title = "A Comparison of All Hexagonal and All Tetrahedral Finite Element Meshes for Elastic and Elasto-plastic Analysis" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "179--192" +, update = "96.01 samitchell" } @inproceedings{bbbkk-fpssm-97 -, author = "S. Berchtold and C. B{\"o}hm and B. Barunm{\"u}ller and D. A. Keim and H.-P. Kriegel" -, title = "Fast parallel similarity search in multimedia databases" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1997 -, pages = "1--12" -, update = "97.07 agarwal" +, author = "S. Berchtold and C. B{\"o}hm and B. Barunm{\"u}ller and D. A. Keim and H.-P. Kriegel" +, title = "Fast parallel similarity search in multimedia databases" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1997 +, pages = "1--12" +, update = "97.07 agarwal" } @inproceedings{bbkk-cmnns-97 -, author = "S. Berchtold and C. B{\"o}hm and D. A. Keim and H.-P. Kriegel" -, title = "A cost model for nearest neighbor search in high-dimensional data space" -, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." -, year = 1997 -, pages = "78--86" -, update = "97.07 agarwal" +, author = "S. Berchtold and C. B{\"o}hm and D. A. Keim and H.-P. Kriegel" +, title = "A cost model for nearest neighbor search in high-dimensional data space" +, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." +, year = 1997 +, pages = "78--86" +, update = "97.07 agarwal" } @inproceedings{bkk-xtish-96 -, author = "S. Berchtold and D. A. Keim and H.-P. Kriegel" -, title = "The {X}-tree: {A}n index structure for higher dimensional data" -, booktitle = "Proc. 22th VLDB Conference" -, year = 1996 -, pages = "28--39" -, update = "97.07 agarwal" +, author = "S. Berchtold and D. A. Keim and H.-P. Kriegel" +, title = "The {X}-tree: {A}n index structure for higher dimensional data" +, booktitle = "Proc. 22th VLDB Conference" +, year = 1996 +, pages = "28--39" +, update = "97.07 agarwal" } @article{bl-ndsls-88 -, author = "C. A. Berenstein and D. Lavine" -, title = "On the number of digital straight line segments" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 10 -, number = 6 -, year = 1988 -, pages = "880--888" -, keywords = "digital geometry" -, update = "95.05 korneenko" +, author = "C. A. Berenstein and D. Lavine" +, title = "On the number of digital straight line segments" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 10 +, number = 6 +, year = 1988 +, pages = "880--888" +, keywords = "digital geometry" +, update = "95.05 korneenko" } @article{bklo-gasra-87 -, author = "C. A. Berenstein and L. N. Kanal And D. Lavine and E. Olson" -, title = "A geometric approach to subpixel registration accuracy" -, journal = "Comput. Vision Graph. Image Process." -, volume = 40 -, number = 3 -, year = 1987 -, pages = "334--360" -, update = "98.11 bibrelex" +, author = "C. A. Berenstein and L. N. Kanal And D. Lavine and E. Olson" +, title = "A geometric approach to subpixel registration accuracy" +, journal = "Comput. Vision Graph. Image Process." +, volume = 40 +, number = 3 +, year = 1987 +, pages = "334--360" +, update = "98.11 bibrelex" } @phdthesis{b-ipsap-84 -, author = "G. B. Beretta" -, title = "An implementation of a plane-sweep algorithm on a personal computer" -, type = "Ph.{D}. Thesis" -, school = "Swiss Federal Inst. Tech." -, address = "Z{\"u}rich, Switzerland" -, year = 1984 -, note = "Report ETH 7538" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "G. B. Beretta" +, title = "An implementation of a plane-sweep algorithm on a personal computer" +, type = "Ph.{D}. Thesis" +, school = "Swiss Federal Inst. Tech." +, address = "Z{\"u}rich, Switzerland" +, year = 1984 +, note = "Report ETH 7538" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @inproceedings{bos-oppp-00 -, author = "Robert-Paul Beretty and Mark H. Overmars and A. Frank van der Stappen" -, title = "Orienting Polyhedral Parts by Pushing" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "136--139" -, update = "00.03 bibrelex" +, author = "Robert-Paul Beretty and Mark H. Overmars and A. Frank van der Stappen" +, title = "Orienting Polyhedral Parts by Pushing" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "136--139" +, update = "00.03 bibrelex" } @inproceedings{b-chpsd-93 -, author = "M. de Berg" -, title = "Computing half-plane and strip discrepancy of planar point sets" -, booktitle = "Proc. 3rd Internat. Conf. on Comput. Graphics and Visualization Techniques" -, year = 1993 -, pages = "294--303" -, keywords = "discrepancy, algorithms, dynamic" -, update = "94.05 schwarzkopf" +, author = "M. de Berg" +, title = "Computing half-plane and strip discrepancy of planar point sets" +, booktitle = "Proc. 3rd Internat. Conf. on Comput. Graphics and Visualization Techniques" +, year = 1993 +, pages = "294--303" +, keywords = "discrepancy, algorithms, dynamic" +, update = "94.05 schwarzkopf" } @article{b-chpsd-96 -, author = "M. de Berg" -, title = "Computing half-plane and strip discrepancy of planar point sets" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "69--83" -, update = "96.09 smid" +, author = "M. de Berg" +, title = "Computing half-plane and strip discrepancy of planar point sets" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "69--83" +, update = "96.09 smid" } @techreport{b-doshs-91 -, author = "M. de Berg" -, title = "Dynamic output-sensitive hidden surface removal for $c$-oriented polyhedra" -, type = "Report" -, number = "RUU-CS-91-6" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1991 -, precedes = "b-doshs-92" -, update = "94.05 schwarzkopf" +, author = "M. de Berg" +, title = "Dynamic output-sensitive hidden surface removal for $c$-oriented polyhedra" +, type = "Report" +, number = "RUU-CS-91-6" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1991 +, precedes = "b-doshs-92" +, update = "94.05 schwarzkopf" } @article{b-doshs-92 -, author = "M. de Berg" -, title = "Dynamic output-sensitive hidden surface removal for $c$-oriented polyhedra" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "119--140" -, succeeds = "b-doshs-91" +, author = "M. de Berg" +, title = "Dynamic output-sensitive hidden surface removal for $c$-oriented polyhedra" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "119--140" +, succeeds = "b-doshs-91" } @phdthesis{b-earsh-92 -, author = "M. de Berg" -, title = "Efficient algorithms for ray shooting and hidden surface removal" -, type = "Ph.{D}. Dissertation" -, school = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1992 -, keywords = "doctoral thesis" -, precedes = "b-rsdoh-93" -, update = "94.05 schwarzkopf" +, author = "M. de Berg" +, title = "Efficient algorithms for ray shooting and hidden surface removal" +, type = "Ph.{D}. Dissertation" +, school = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1992 +, keywords = "doctoral thesis" +, precedes = "b-rsdoh-93" +, update = "94.05 schwarzkopf" } @inproceedings{b-ghsr-93 -, author = "M. de Berg" -, title = "Generalized hidden surface removal" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "1--10" -, precedes = "b-ghsr-96" -, cites = "am-rsps-92, b-hsrr-90, c-tsplt-91a, cegs-lscaa-89, cg-vippg-89, bhosk-ershs-91, bo-hsrco-92, e-acg-87, gao-isost-90, go-nasch-87, ghlst-ltavs-87, hs-ndssg-86, kos-ehsro-92, ms-rcibt-88, m-wcohs-87, oy-nubkm-91, rs-eoshs-88i, ZZZ" -, update = "98.03 bibrelex, 96.09 devillers, 93.09 jones" +, author = "M. de Berg" +, title = "Generalized hidden surface removal" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "1--10" +, precedes = "b-ghsr-96" +, cites = "am-rsps-92, b-hsrr-90, c-tsplt-91a, cegs-lscaa-89, cg-vippg-89, bhosk-ershs-91, bo-hsrco-92, e-acg-87, gao-isost-90, go-nasch-87, ghlst-ltavs-87, hs-ndssg-86, kos-ehsro-92, ms-rcibt-88, m-wcohs-87, oy-nubkm-91, rs-eoshs-88i, ZZZ" +, update = "98.03 bibrelex, 96.09 devillers, 93.09 jones" } @article{b-ghsr-96 -, author = "M. de Berg" -, title = "Generalized hidden surface removal" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1996 -, pages = "249--276" -, succeeds = "b-ghsr-93" -, update = "96.09 devillers+held" +, author = "M. de Berg" +, title = "Generalized hidden surface removal" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1996 +, pages = "249--276" +, succeeds = "b-ghsr-93" +, update = "96.09 devillers+held" } @inproceedings{b-lsbsp-95 -, author = "Mark de Berg" -, title = "Linear Size Binary Space Partitions for Fat Objects" -, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 979 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "252--263" -, update = "97.03 murali+schwarzkopf" +, author = "Mark de Berg" +, title = "Linear Size Binary Space Partitions for Fat Objects" +, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 979 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "252--263" +, update = "97.03 murali+schwarzkopf" } @article{b-lsbsp-00 -, author = "Mark de Berg" -, title = "Linear size binary space partitions for uncluttered scenes" -, journal = "Algorithmica" -, volume = 28 -, year = 2000 -, pages = "353--366" -, update = "02.03 cheong" +, author = "Mark de Berg" +, title = "Linear size binary space partitions for uncluttered scenes" +, journal = "Algorithmica" +, volume = 28 +, year = 2000 +, pages = "353--366" +, update = "02.03 cheong" } @techreport{d-rld-89 -, author = "M. de Berg" -, title = "On Rectilinear Link Distance" -, type = "Technical Report" -, number = "RUU-CS-89-13" -, institution = "Dept. of Computer Science, Univ. of Utrecht" -, year = 1989 -, precedes = "b-rld-91" -, update = "98.07 bibrelex" +, author = "M. de Berg" +, title = "On Rectilinear Link Distance" +, type = "Technical Report" +, number = "RUU-CS-89-13" +, institution = "Dept. of Computer Science, Univ. of Utrecht" +, year = 1989 +, precedes = "b-rld-91" +, update = "98.07 bibrelex" } @article{b-rld-91 -, author = "M. de Berg" -, title = "On Rectilinear Link Distance" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 1 -, month = jul -, year = 1991 -, pages = "13--34" -, keywords = "motion planning, rectilinear paths, rectilinear polygons, linkdistance" -, succeeds = "d-rld-89" -, update = "98.07 bibrelex, 98.03 mitchell, 93.09 held" -, annote = "He considers rectilinear paths in a rectilinear simple polygon. In $O(n\log n)$ - preprocessing time and space, he builds a data structure that supports - $O(\log n)$ time queries for distance between two points ($O(1)$ time between - two polygon vertices). He is actually searching for paths that are``smallest'' in - that they are shortest simultaneously in rectilinear link distance and - $L_1$ length (which is always possible). See improvements to $O(n)$ time and - space by Lingas, Maheshwari, and Sack~\cite{lms-parld-95} and - Schuierer~\cite{s-odssr-96}." +, author = "M. de Berg" +, title = "On Rectilinear Link Distance" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 1 +, month = jul +, year = 1991 +, pages = "13--34" +, keywords = "motion planning, rectilinear paths, rectilinear polygons, linkdistance" +, succeeds = "d-rld-89" +, update = "98.07 bibrelex, 98.03 mitchell, 93.09 held" +, annote = "He considers rectilinear paths in a rectilinear simple polygon. In $O(n\log n)$ + preprocessing time and space, he builds a data structure that supports + $O(\log n)$ time queries for distance between two points ($O(1)$ time between + two polygon vertices). He is actually searching for paths that are``smallest'' in + that they are shortest simultaneously in rectilinear link distance and + $L_1$ length (which is always possible). See improvements to $O(n)$ time and + space by Lingas, Maheshwari, and Sack~\cite{lms-parld-95} and + Schuierer~\cite{s-odssr-96}." } @book{b-rsdoh-93 -, author = "M. de Berg" -, title = "Ray Shooting, Depth Orders and Hidden Surface Removal" -, series = "Lecture Notes Comput. Sci." -, volume = 703 -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1993 -, keywords = "book, ray shooting, depth orders, hidden surface removal, translation orders, graphics, data structures" -, succeeds = "b-earsh-92" -, update = "96.09 agarwal, 94.05 schwarzkopf" +, author = "M. de Berg" +, title = "Ray Shooting, Depth Orders and Hidden Surface Removal" +, series = "Lecture Notes Comput. Sci." +, volume = 703 +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1993 +, keywords = "book, ray shooting, depth orders, hidden surface removal, translation orders, graphics, data structures" +, succeeds = "b-earsh-92" +, update = "96.09 agarwal, 94.05 schwarzkopf" } @inproceedings{b-srpp-91 -, author = "M. de Berg" -, title = "Shortest rectilinear path problems" -, booktitle = "Proc. 13th IMACS World Congress on Computation and Applied Mathematics" -, year = 1991 -, pages = "142--143" -, keywords = "motion planning, shortest paths" +, author = "M. de Berg" +, title = "Shortest rectilinear path problems" +, booktitle = "Proc. 13th IMACS World Congress on Computation and Applied Mathematics" +, year = 1991 +, pages = "142--143" +, keywords = "motion planning, shortest paths" } @inproceedings{b-tpahs-90 -, author = "M. de Berg" -, title = "Translating polygons with applications to hidden surface removal" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "60--70" +, author = "M. de Berg" +, title = "Translating polygons with applications to hidden surface removal" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "60--70" } @inproceedings{b-tpwah-90 -, author = "Mark de Berg" -, title = "Translating Polygons With Applications to Hidden Surface Removal" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 7 -, update = "00.03 bibrelex" +, author = "Mark de Berg" +, title = "Translating Polygons With Applications to Hidden Surface Removal" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 7 +, update = "00.03 bibrelex" } @article{b-tdcg-97 -, author = "M. de Berg" -, title = "Trends and developments in computational geometry" -, journal = "Comput. Graph. Forum" -, volume = 16 -, year = 1997 -, pages = "3--30" -, update = "97.11 oostrum+smid" +, author = "M. de Berg" +, title = "Trends and developments in computational geometry" +, journal = "Comput. Graph. Forum" +, volume = 16 +, year = 1997 +, pages = "3--30" +, update = "97.11 oostrum+smid" } @inproceedings{bbbrw-ccmwa-97 -, author = "M. de Berg and J. Bose and D. Bremner and S. Ramaswami and G. Wilfong" -, title = "Computing constrained minimum-width annuli of point sets" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "3--16" -, update = "99.07 bibrelex, 97.11 oostrum" +, author = "M. de Berg and J. Bose and D. Bremner and S. Ramaswami and G. Wilfong" +, title = "Computing constrained minimum-width annuli of point sets" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "3--16" +, update = "99.07 bibrelex, 97.11 oostrum" } @article{bbbrw-ccmwa-98 -, author = "M. de Berg and P. Bose and D. Bremner and S. Ramaswami and G. Wilfong" -, title = "Computing Constrained Minimum-Width Annuli of Point Sets" -, journal = "Comput. Aided Design" -, volume = 30 -, number = 4 -, month = apr -, year = 1998 -, pages = "267--275" -, update = "98.07 held" +, author = "M. de Berg and P. Bose and D. Bremner and S. Ramaswami and G. Wilfong" +, title = "Computing Constrained Minimum-Width Annuli of Point Sets" +, journal = "Comput. Aided Design" +, volume = 30 +, number = 4 +, month = apr +, year = 1998 +, pages = "267--275" +, update = "98.07 held" } @inproceedings{bbdkogrsy-crtt-96 -, author = "M. de Berg and P. Bose and K. Dobrint and M. van Kreveld and M. Overmars and M. de Groot and T. Roos and J. Snoeyink and S. Yu" -, title = "The complexity of rivers in triangulated terrains" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "325--330" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "M. de Berg and P. Bose and K. Dobrint and M. van Kreveld and M. Overmars and M. de Groot and T. Roos and J. Snoeyink and S. Yu" +, title = "The complexity of rivers in triangulated terrains" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "325--330" +, update = "97.03 agarwal, 96.09 mitchell" } @article{bcdkt-cmotc-98 -, author = "Mark de Berg and Otfried Cheong and Olivier Devillers and Mark van Kreveld and Monique Teillaud" -, title = "Computing the Maximum Overlap of Two Convex Polygons Under Translations" -, journal = "Theory of Computing Systems" -, volume = 31 -, year = 1998 -, pages = "613--628" -, url = "https://hal.inria.fr/inria-00413175" -, succeeds = "bdkst-cmotc-96" -, cites = "ast-apsgo-92, abb-amps-91, ag-mrpc-92, absstz-sacp-96, ab-pptr-88, c-pcp-83, c-oaitd-92, c-chdc-93, cghkkk-gpmem-93, ck-cppop-93, f-fapct-85, fj-gsrsm-84, g-cp-67, h-ampac-92, hkk-dvdmh-92i, hks-uevsi-93, l-rmp-91, msw-aotp-93, pt-cocpc-92, scklps-gadss-86, v-aitco-95" -, update = "99.11 devillers, 99.07 devillers, 98.11 devillers" -, abstract = "Let $P$ be a convex polygon in the plane with $n$ vertices and let $Q$ be a convex polygon with $m$ vertices. We prove that the maximum number of combinatorially distinct placements of $Q$ with respect to $P$ under translations is $O(n^2+m^2+\min(nm^2+n^2m))$, and we give an example showing that this bound is tight in the worst case. Second, we present an $O((n+m)\log(n+m))$ algorithm for determining a translation of $Q$ that maximizes the area of overlap of $P$ and $Q$. We also prove that the placement of $Q$ that makes the centroids of $Q$ and $P$ coincide realizes an overlap of at least $9/25$ of the maximum possible overlap. As an upper bound, we show an example where the overlap in this placement is $4/9$ of the maximum possible overlap." +, author = "Mark de Berg and Otfried Cheong and Olivier Devillers and Mark van Kreveld and Monique Teillaud" +, title = "Computing the Maximum Overlap of Two Convex Polygons Under Translations" +, journal = "Theory of Computing Systems" +, volume = 31 +, year = 1998 +, pages = "613--628" +, url = "https://inria.hal.science/inria-00413175" +, succeeds = "bdkst-cmotc-96" +, cites = "ast-apsgo-92, abb-amps-91, ag-mrpc-92, absstz-sacp-96, ab-pptr-88, c-pcp-83, c-oaitd-92, c-chdc-93, cghkkk-gpmem-93, ck-cppop-93, f-fapct-85, fj-gsrsm-84, g-cp-67, h-ampac-92, hkk-dvdmh-92i, hks-uevsi-93, l-rmp-91, msw-aotp-93, pt-cocpc-92, scklps-gadss-86, v-aitco-95" +, update = "99.11 devillers, 99.07 devillers, 98.11 devillers" +, abstract = "Let $P$ be a convex polygon in the plane with $n$ vertices and let $Q$ be a convex polygon with $m$ vertices. We prove that the maximum number of combinatorially distinct placements of $Q$ with respect to $P$ under translations is $O(n^2+m^2+\min(nm^2+n^2m))$, and we give an example showing that this bound is tight in the worst case. Second, we present an $O((n+m)\log(n+m))$ algorithm for determining a translation of $Q$ that maximizes the area of overlap of $P$ and $Q$. We also prove that the placement of $Q$ that makes the centroids of $Q$ and $P$ coincide realizes an overlap of at least $9/25$ of the maximum possible overlap. As an upper bound, we show an example where the overlap in this placement is $4/9$ of the maximum possible overlap." } @article{bdds-cscot-97 -, author = "Mark de Berg and Olivier Devillers and Katrin Dobrindt and Otfried Schwarzkopf" -, title = "Computing a Single Cell in the Overlay of Two Simple Polygons" -, journal = "Inform. Process. Lett." -, volume = 63 -, number = 4 -, month = aug -, year = 1997 -, pages = "215--219" -, url = "https://hal.inria.fr/inria-00413170" -, succeeds = "bdds-cscut-95" -, cites = "bds-lric-94, bdsty-arsol-92, cct-rpatd-92, cs-arscg-89, d-rysoa-92, gks-ricdv-92, gss-gmppt-89, m-cgitr-93, s-sfira-91" -, update = "99.11 devillers, 99.07 devillers, 98.11 devillers, 98.07 bibrelex, 98.03 mitchell, 97.11 oostrum" -, abstract = "This note combines the lazy randomized incremental construction scheme with the technique of ``connectivity acceleration'' to obtain an $O(n(\log^{\star}n)^2)$ time randomized algorithm to compute a single face in the overlay of two simple polygons in the plane." +, author = "Mark de Berg and Olivier Devillers and Katrin Dobrindt and Otfried Schwarzkopf" +, title = "Computing a Single Cell in the Overlay of Two Simple Polygons" +, journal = "Inform. Process. Lett." +, volume = 63 +, number = 4 +, month = aug +, year = 1997 +, pages = "215--219" +, url = "https://inria.hal.science/inria-00413170" +, succeeds = "bdds-cscut-95" +, cites = "bds-lric-94, bdsty-arsol-92, cct-rpatd-92, cs-arscg-89, d-rysoa-92, gks-ricdv-92, gss-gmppt-89, m-cgitr-93, s-sfira-91" +, update = "99.11 devillers, 99.07 devillers, 98.11 devillers, 98.07 bibrelex, 98.03 mitchell, 97.11 oostrum" +, abstract = "This note combines the lazy randomized incremental construction scheme with the technique of ``connectivity acceleration'' to obtain an $O(n(\log^{\star}n)^2)$ time randomized algorithm to compute a single face in the overlay of two simple polygons in the plane." } @techreport{bdds-cscut-95 -, author = "Mark de Berg and Olivier Devillers and Katrin Dobrindt and Otfried Schwarzkopf" -, title = "Computing a single cell in the union of two simple polygons" -, type = "Research {Report}" -, number = 2626 -, institution = "INRIA" -, address = "BP93, 06902 Sophia-Antipolis, France" -, year = 1995 -, precedes = "bdds-cscot-97" -, update = "99.11 bibrelex, 99.07 devillers, 98.11 devillers, 97.03 devillers, 96.01 devillers" -, abstract = "This note presents a non trivial combination of two techniques previously used with randomized incremental algorithms: the lazy cleaning scheme \cite{bds-lric-94} to maintain structures with `non local' definition and the $O(n\log^{\star}n)$ acceleration when some additional information about the data is known \cite{s-sfira-91,cct-rpatd-92,d-rysoa-92}. Authors assume that the reader is somehow familiar with this techniques. +, author = "Mark de Berg and Olivier Devillers and Katrin Dobrindt and Otfried Schwarzkopf" +, title = "Computing a single cell in the union of two simple polygons" +, type = "Research {Report}" +, number = 2626 +, institution = "INRIA" +, address = "BP93, 06902 Sophia-Antipolis, France" +, year = 1995 +, precedes = "bdds-cscot-97" +, update = "99.11 bibrelex, 99.07 devillers, 98.11 devillers, 97.03 devillers, 96.01 devillers" +, abstract = "This note presents a non trivial combination of two techniques previously used with randomized incremental algorithms: the lazy cleaning scheme \cite{bds-lric-94} to maintain structures with `non local' definition and the $O(n\log^{\star}n)$ acceleration when some additional information about the data is known \cite{s-sfira-91,cct-rpatd-92,d-rysoa-92}. Authors assume that the reader is somehow familiar with this techniques. If, we are interested in computing a single face in the intersection of two simple polygons, the two previous techniques can be used. The lazy approach allows to compute a single face in an arrangement of line segments in expected time $O(n\alpha(n)\log n)$ but this technique do not exploit the organization of the segments in simple polygons. The accelerated framework compute the whole intersection of the two simple polygon in $O(n\log^{\star}n+A)$ where $A=O(n^2)$ is the number of intersection points, and then the relevant connected component can be extracted easily in $O(n)$ time. The two techniques can be combined to reach an algorithm whose expected time complexity is $O(n\log^{\star 2}n)$ which improve previous bounds above." } @inproceedings{bdkst-cmotc-96 -, author = "Mark de Berg and Olivier Devillers and Marc van Kreveld and Otfried Schwarzkopf and Monique Teillaud" -, title = "Computing the maximum overlap of two convex polygons under translations" -, booktitle = "Proc. 7th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC'96" -, series = "Lecture Notes Comput. Sci." -, volume = 1178 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "126--135" -, precedes = "bcdkt-cmotc-98" -, update = "98.11 devillers, 98.07 rote" +, author = "Mark de Berg and Olivier Devillers and Marc van Kreveld and Otfried Schwarzkopf and Monique Teillaud" +, title = "Computing the maximum overlap of two convex polygons under translations" +, booktitle = "Proc. 7th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC'96" +, series = "Lecture Notes Comput. Sci." +, volume = 1178 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "126--135" +, precedes = "bcdkt-cmotc-98" +, update = "98.11 devillers, 98.07 rote" } @inproceedings{bd-ldt-95 -, author = "Mark de Berg and Katrin Dobrindt" -, title = "On Levels of Detail in Terrains" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C26--C27" -, keywords = "Delaunay triangulation, surface simplification, decimation" -, cites = "dmp-htmsf-94, k-osps-83, l-cembt-91, ps-cgi-85, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Mark de Berg and Katrin Dobrindt" +, title = "On Levels of Detail in Terrains" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C26--C27" +, keywords = "Delaunay triangulation, surface simplification, decimation" +, cites = "dmp-htmsf-94, k-osps-83, l-cembt-91, ps-cgi-85, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @techreport{bds-lric-94t -, author = "M. de Berg and K. Dobrindt and O. Schwarzkopf" -, title = "On Lazy Randomized Incremental Construction" -, type = "Tech. {Report}" -, number = "UU-CS-1994-12" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, month = mar -, year = 1994 -, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-12.ps.gz" -, keywords = "vertical decomposition, trapezoidal map, point location" -, comments = "Full version of bds-lric-94" -, update = "95.01 schwarzkopf+smid, 94.05 schwarzkopf" +, author = "M. de Berg and K. Dobrindt and O. Schwarzkopf" +, title = "On Lazy Randomized Incremental Construction" +, type = "Tech. {Report}" +, number = "UU-CS-1994-12" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, month = mar +, year = 1994 +, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-12.ps.gz" +, keywords = "vertical decomposition, trapezoidal map, point location" +, comments = "Full version of bds-lric-94" +, update = "95.01 schwarzkopf+smid, 94.05 schwarzkopf" } @inproceedings{bds-lric-94 -, author = "M. de Berg and K. Dobrindt and O. Schwarzkopf" -, title = "On Lazy Randomized Incremental Construction" -, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "105--114" -, comments = "Full and ftp-able version see bds-lric-94t." -, update = "95.01 smid, 94.05 schwarzkopf, 94.01 jones" +, author = "M. de Berg and K. Dobrindt and O. Schwarzkopf" +, title = "On Lazy Randomized Incremental Construction" +, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "105--114" +, comments = "Full and ftp-able version see bds-lric-94t." +, update = "95.01 smid, 94.05 schwarzkopf, 94.01 jones" } -% also claimed, pages = "161--186" +% also claimed, pages = "161--186" @article{bds-lric-95 -, author = "M. de Berg and K. Dobrindt and O. Schwarzkopf" -, title = "On lazy randomized incremental construction" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "261--286" -, update = "97.11 bibrelex+oostrum" +, author = "M. de Berg and K. Dobrindt and O. Schwarzkopf" +, title = "On lazy randomized incremental construction" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "261--286" +, update = "97.11 bibrelex+oostrum" } @article{bd-ldt-98 -, author = "M. de Berg and K. T. G. Dobrindt" -, title = "On Levels of Details in Terrains" -, journal = "Graph. Models Image Process." -, volume = 60 -, number = 1 -, month = jan -, year = 1998 -, pages = "1--12" -, succeeds = "bd-ldt-95" -, update = "98.07 held" +, author = "M. de Berg and K. T. G. Dobrindt" +, title = "On Levels of Details in Terrains" +, journal = "Graph. Models Image Process." +, volume = 60 +, number = 1 +, month = jan +, year = 1998 +, pages = "1--12" +, succeeds = "bd-ldt-95" +, update = "98.07 held" } @techreport{bew-tqsp-91 -, author = "M. de Berg and H. Everett and H. Wagener" -, title = "Translation queries for sets of polygons" -, type = "Report" -, number = "RUU-CS-91-30" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1991 -, keywords = "convex hull, embedding, depth order" -, update = "94.05 schwarzkopf" +, author = "M. de Berg and H. Everett and H. Wagener" +, title = "Translation queries for sets of polygons" +, type = "Report" +, number = "RUU-CS-91-30" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1991 +, keywords = "convex hull, embedding, depth order" +, update = "94.05 schwarzkopf" } @article{bew-tqsp-95 -, author = "M. de Berg and H. Everett and H. Wagener" -, title = "Translation queries for sets of polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "221--242" -, keywords = "convex hull, embedding, depth order" -, succeeds = "bew-tqsp-91" -, update = "96.05 pocchiola" +, author = "M. de Berg and H. Everett and H. Wagener" +, title = "Translation queries for sets of polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "221--242" +, keywords = "convex hull, embedding, depth order" +, succeeds = "bew-tqsp-91" +, update = "96.05 pocchiola" } @inproceedings{bg-bspsc-94 -, author = "Mark de Berg and Marko de Groot" -, title = "Binary Space Partitions for Sets of Cubes" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "85--88" -, update = "00.11 smid, 00.07 icking, 98.07 bibrelex, 94.05 schwarzkopf" +, author = "Mark de Berg and Marko de Groot" +, title = "Binary Space Partitions for Sets of Cubes" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "85--88" +, update = "00.11 smid, 00.07 icking, 98.07 bibrelex, 94.05 schwarzkopf" } @inproceedings{bgo-nrbsp-94 -, author = "Mark de Berg and Marko de Groot and Mark Overmars" -, title = "New Results on Binary Space Partitions in the Plane" -, booktitle = "Proc. 4th Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 824 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "61--72" -, precedes = "bgo-nrbsp-97" -, update = "00.11 smid, 00.07 icking, 95.01 schwarzkopf+smid, 94.05 schwarzkopf" +, author = "Mark de Berg and Marko de Groot and Mark Overmars" +, title = "New Results on Binary Space Partitions in the Plane" +, booktitle = "Proc. 4th Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 824 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "61--72" +, precedes = "bgo-nrbsp-97" +, update = "00.11 smid, 00.07 icking, 95.01 schwarzkopf+smid, 94.05 schwarzkopf" } @article{bgo-nrbsp-97 -, author = "Mark de Berg and Marko de Groot and Mark Overmars" -, title = "New Results on Binary Space Partitions in the Plane" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "317--333" -, succeeds = "bgo-nrbsp-94" -, update = "00.11 smid, 00.07 icking, 97.11 oostrum" +, author = "Mark de Berg and Marko de Groot and Mark Overmars" +, title = "New Results on Binary Space Partitions in the Plane" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "317--333" +, succeeds = "bgo-nrbsp-94" +, update = "00.11 smid, 00.07 icking, 97.11 oostrum" } @inproceedings{bgo-pbsp-93 -, author = "M. de Berg and M. de Groot and M. Overmars" -, title = "Perfect binary space partitions" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "109--114" -, precedes = "bgo-pbsp-97" -, cites = "bos-cvdo-92, fkn-vsgpt-80, go-nhpcg-93, hs-asdch-90, ol-mcp-81, ow-nmcvg-88, py-ebsph-90, py-obspo-92, ZZZ" -, update = "98.11 bibrelex, 97.03 devillers, 93.09 milone+mitchell" +, author = "M. de Berg and M. de Groot and M. Overmars" +, title = "Perfect binary space partitions" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "109--114" +, precedes = "bgo-pbsp-97" +, cites = "bos-cvdo-92, fkn-vsgpt-80, go-nhpcg-93, hs-asdch-90, ol-mcp-81, ow-nmcvg-88, py-ebsph-90, py-obspo-92, ZZZ" +, update = "98.11 bibrelex, 97.03 devillers, 93.09 milone+mitchell" } @article{bgo-pbsp-97 -, author = "M. de Berg and M. de Groot and M. Overmars" -, title = "Perfect binary space partitions" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "81--91" -, succeeds = "bgo-pbsp-93" -, update = "97.03 devillers" +, author = "M. de Berg and M. de Groot and M. Overmars" +, title = "Perfect binary space partitions" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "81--91" +, succeeds = "bgo-pbsp-93" +, update = "97.03 devillers" } @inproceedings{bghosst-rgdu-93 -, author = "Mark de Berg and Leonidas Guibas and Dan Halperin and Mark Overmars and Otfried Schwarzkopf and Micha Sharir and Monique Teillaud" -, title = "Reaching a Goal with Directional Uncertainty" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "1--10" -, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-09.ps.gz" -, precedes = "bghosst-rgdu-95" -, update = "98.07 bibrelex, 95.09 devillers, 94.05 devillers+schwarzkopf+sharir+smid, 93.09 milone+mitchell" +, author = "Mark de Berg and Leonidas Guibas and Dan Halperin and Mark Overmars and Otfried Schwarzkopf and Micha Sharir and Monique Teillaud" +, title = "Reaching a Goal with Directional Uncertainty" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "1--10" +, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-09.ps.gz" +, precedes = "bghosst-rgdu-95" +, update = "98.07 bibrelex, 95.09 devillers, 94.05 devillers+schwarzkopf+sharir+smid, 93.09 milone+mitchell" } @article{bghosst-rgdu-95 -, author = "Mark de Berg and Leonidas Guibas and Dan Halperin and Mark Overmars and Otfried Schwarzkopf and Micha Sharir and Monique Teillaud" -, title = "Reaching a Goal with Directional Uncertainty" -, journal = "Theoret. Comput. Sci." -, volume = 140 -, year = 1995 -, pages = "301--317" -, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-09.ps.gz" -, succeeds = "bghosst-rgdu-93" -, update = "97.11 bibrelex, 95.09 devillers+schwarzkopf" +, author = "Mark de Berg and Leonidas Guibas and Dan Halperin and Mark Overmars and Otfried Schwarzkopf and Micha Sharir and Monique Teillaud" +, title = "Reaching a Goal with Directional Uncertainty" +, journal = "Theoret. Comput. Sci." +, volume = 140 +, year = 1995 +, pages = "301--317" +, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-09.ps.gz" +, succeeds = "bghosst-rgdu-93" +, update = "97.11 bibrelex, 95.09 devillers+schwarzkopf" } @inproceedings{bgh-vdt3s-94 -, author = "M. de Berg and Leonidas J. Guibas and D. Halperin" -, title = "Vertical Decompositions for Triangles in $3$-Space" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "1--10" -, cites = "ass-sulbl-89, as-tsbac-90, as-car-92, bo-arcgi-79, c-cpplb-84, c-ochan-91, ce-oails-92, cegs-sessr-89, cegs-lscaa-89, cf-dvrsi-90, cegsw-ccbac-90, c-racpq-88, cs-arscg-89, gt-dtdpl-91, gs-dfbt-78, gs-pmgsc-85, hs-nqbmp-93, hs-ndssg-84, hw-ensrq-87, h-fuenl-89, m-rsehc-92, m-hsrrm-91, m-rmstf-91, ps-cgi-85, pt-eplcs-92, s-atubl-93, t-dsna-83, ws-prnds-88, ZZZ" -, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" +, author = "M. de Berg and Leonidas J. Guibas and D. Halperin" +, title = "Vertical Decompositions for Triangles in $3$-Space" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "1--10" +, cites = "ass-sulbl-89, as-tsbac-90, as-car-92, bo-arcgi-79, c-cpplb-84, c-ochan-91, ce-oails-92, cegs-sessr-89, cegs-lscaa-89, cf-dvrsi-90, cegsw-ccbac-90, c-racpq-88, cs-arscg-89, gt-dtdpl-91, gs-dfbt-78, gs-pmgsc-85, hs-nqbmp-93, hs-ndssg-84, hw-ensrq-87, h-fuenl-89, m-rsehc-92, m-hsrrm-91, m-rmstf-91, ps-cgi-85, pt-eplcs-92, s-atubl-93, t-dsna-83, ws-prnds-88, ZZZ" +, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" } @article{bgh-vdt3s-96 -, author = "M. de Berg and Leonidas J. Guibas and D. Halperin" -, title = "Vertical decompositions for triangles in $3$-space" -, journal = "Discrete Comput. Geom." -, volume = 15 -, year = 1996 -, pages = "35--61" -, update = "98.03 mitchell, 96.05 smid" +, author = "M. de Berg and Leonidas J. Guibas and D. Halperin" +, title = "Vertical decompositions for triangles in $3$-space" +, journal = "Discrete Comput. Geom." +, volume = 15 +, year = 1996 +, pages = "35--61" +, update = "98.03 mitchell, 96.05 smid" } @techreport{bhok-sanvp-91 -, author = "M. de Berg and D. Halperin and M. Overmars and M. van Kreveld" -, title = "Sparse arrangements and the number of views of polyhedral scenes" -, type = "manuscript" -, year = 1991 -, precedes = "bhok-sanvp-92, bhok-sanvp-97" -, update = "98.11 bibrelex" +, author = "M. de Berg and D. Halperin and M. Overmars and M. van Kreveld" +, title = "Sparse arrangements and the number of views of polyhedral scenes" +, type = "manuscript" +, year = 1991 +, precedes = "bhok-sanvp-92, bhok-sanvp-97" +, update = "98.11 bibrelex" } @techreport{bhok-sanvp-92 -, author = "M. de Berg and D. Halperin and M. Overmars and M. van Kreveld" -, title = "Sparse arrangements and the number of views of polyhedral scenes" -, type = "Technical {Report}" -, number = "RUU-CS-92-24" -, institution = "Dept. Comput. Sci., Univ. Utrecht" -, address = "Utrecht, Netherlands" -, year = 1992 -, succeeds = "bhok-sanvp-91" -, precedes = "bhok-sanvp-97" -, update = "98.11 bibrelex, 97.07 devillers, 94.05 devillers+schwarzkopf, 93.09 milone+mitc hell" +, author = "M. de Berg and D. Halperin and M. Overmars and M. van Kreveld" +, title = "Sparse arrangements and the number of views of polyhedral scenes" +, type = "Technical {Report}" +, number = "RUU-CS-92-24" +, institution = "Dept. Comput. Sci., Univ. Utrecht" +, address = "Utrecht, Netherlands" +, year = 1992 +, succeeds = "bhok-sanvp-91" +, precedes = "bhok-sanvp-97" +, update = "98.11 bibrelex, 97.07 devillers, 94.05 devillers+schwarzkopf, 93.09 milone+mitc hell" } @article{bhok-sanvp-97 -, author = "M. de Berg and D. Halperin and M. Overmars and M. van Kreveld" -, title = "Sparse arrangements and the number of views of polyhedral scenes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "175--195" -, succeeds = "bhok-sanvp-92,bhok-sanvp-91" -, update = "98.11 bibrelex, 97.07 devillers" +, author = "M. de Berg and D. Halperin and M. Overmars and M. van Kreveld" +, title = "Sparse arrangements and the number of views of polyhedral scenes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "175--195" +, succeeds = "bhok-sanvp-92,bhok-sanvp-91" +, update = "98.11 bibrelex, 97.07 devillers" } @inproceedings{bhosk-ershs-91 -, author = "M. de Berg and D. Halperin and M. Overmars and J. Snoeyink and M. van Kreveld" -, title = "Efficient ray shooting and hidden surface removal" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "21--30" -, keywords = "ray tracing, hidden surface removal, random sampling" -, cites = "as-anspt-91, ako-iqco-91, as-zasha-91, cegpsss-ccclr-90, cegs-lscaa-89, cg-vippg-89, csw-qoubs-90, cj-sersi-91, cs-vppt-89, bo-hsrap-90, de-ssio-87, dk-ladsc-85, e-acg-87, m-aodq-90, m-wcohs-87, os-oshsr-89, p-srs3d-90, p-nrrsi-91, sml-rtatp-88, s-pcg-88, ZZZ" -, update = "97.11 bibrelex" +, author = "M. de Berg and D. Halperin and M. Overmars and J. Snoeyink and M. van Kreveld" +, title = "Efficient ray shooting and hidden surface removal" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "21--30" +, keywords = "ray tracing, hidden surface removal, random sampling" +, cites = "as-anspt-91, ako-iqco-91, as-zasha-91, cegpsss-ccclr-90, cegs-lscaa-89, cg-vippg-89, csw-qoubs-90, cj-sersi-91, cs-vppt-89, bo-hsrap-90, de-ssio-87, dk-ladsc-85, e-acg-87, m-aodq-90, m-wcohs-87, os-oshsr-89, p-srs3d-90, p-nrrsi-91, sml-rtatp-88, s-pcg-88, ZZZ" +, update = "97.11 bibrelex" } @article{bhosk-ershs-94 -, author = "M. de Berg and D. Halperin and M. Overmars and J. Snoeyink and M. van Kreveld" -, title = "Efficient ray shooting and hidden surface removal" -, journal = "algo" -, volume = 12 -, year = 1994 -, pages = "30--53" -, succeeds = "bhosk-ershs-91" +, author = "M. de Berg and D. Halperin and M. Overmars and J. Snoeyink and M. van Kreveld" +, title = "Efficient ray shooting and hidden surface removal" +, journal = "algo" +, volume = 12 +, year = 1994 +, pages = "30--53" +, succeeds = "bhosk-ershs-91" } @inproceedings{bkosv-mmp-98 -, author = "Mark de Berg and Matthew Katz and Mark Overmars and A. Frank van der Stappen and Jules Vleugels" -, title = "Models and Motion Planning" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "83--94" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "Mark de Berg and Matthew Katz and Mark Overmars and A. Frank van der Stappen and Jules Vleugels" +, title = "Models and Motion Planning" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "83--94" +, update = "99.03 bibrelex, 98.07 mitchell" } @inproceedings{bksv-rimga-97 -, author = "M. de Berg and M. J. Katz and A. F. van der Stappen and J. Vleugels" -, title = "Realistic Input Models for Geometric Algorithms" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "294--303" -, cites = "aks-cdorp-95, am-rsss-92, afkmnsu-ampcb-92, cg-fc1ds-86, cg-ssvip-88, b-lsbsp-95, fpt-opcpa-81, lw-vdllm-80, mmpssw-ftdlm-91, mms-qsrs-94, os-rsplf-96, py-ebsph-90, ps-cgi-85, sv-rslde-96, s-mpafo-94, so-mpelo-95, k-fpfcu-93, v-ffrim-97, ZZZ" -, update = "99.03 bibrelex, 98.07 bibrelex, 97.11 katz, 97.07 efrat" +, author = "M. de Berg and M. J. Katz and A. F. van der Stappen and J. Vleugels" +, title = "Realistic Input Models for Geometric Algorithms" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "294--303" +, cites = "aks-cdorp-95, am-rsss-92, afkmnsu-ampcb-92, cg-fc1ds-86, cg-ssvip-88, b-lsbsp-95, fpt-opcpa-81, lw-vdllm-80, mmpssw-ftdlm-91, mms-qsrs-94, os-rsplf-96, py-ebsph-90, ps-cgi-85, sv-rslde-96, s-mpafo-94, so-mpelo-95, k-fpfcu-93, v-ffrim-97, ZZZ" +, update = "99.03 bibrelex, 98.07 bibrelex, 97.11 katz, 97.07 efrat" } @techreport{bk-rdlsn-93 -, author = "M. de Berg and M. van Kreveld" -, title = "Rectilinear decompositions with low stabbing number" -, type = "Tech. {Report}" -, number = "RUU-CS-93-25" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1993 -, update = "95.01 smid, 94.05 schwarzkopf" +, author = "M. de Berg and M. van Kreveld" +, title = "Rectilinear decompositions with low stabbing number" +, type = "Tech. {Report}" +, number = "RUU-CS-93-25" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1993 +, update = "95.01 smid, 94.05 schwarzkopf" } @article{bk-rdlsn-94 -, author = "M. de Berg and M. van Kreveld" -, title = "Rectilinear decompositions with low stabbing number" -, journal = "Inform. Process. Lett." -, volume = 52 -, year = 1994 -, pages = "215--221" -, update = "95.01 smid" +, author = "M. de Berg and M. van Kreveld" +, title = "Rectilinear decompositions with low stabbing number" +, journal = "Inform. Process. Lett." +, volume = 52 +, year = 1994 +, pages = "215--221" +, update = "95.01 smid" } @incollection{bk-tawfg-93 -, author = "Mark de Berg and Marc van Kreveld" -, title = "Trekking in the Alps Without Freezing or Getting Tired" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "121--132" -, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-02.ps.gz" -, update = "94.05 schwarzkopf, 94.01 smid, 93.09 milone+mitchell" +, author = "Mark de Berg and Marc van Kreveld" +, title = "Trekking in the Alps Without Freezing or Getting Tired" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "121--132" +, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-02.ps.gz" +, update = "94.05 schwarzkopf, 94.01 smid, 93.09 milone+mitchell" } @article{bk-tafgt-97 -, author = "M. de Berg and M. van Kreveld" -, title = "Trekking in the alps without freezing or getting tired" -, journal = "Algorithmica" -, volume = 18 -, year = 1997 -, pages = "306--323" -, update = "97.11 oostrum" +, author = "M. de Berg and M. van Kreveld" +, title = "Trekking in the alps without freezing or getting tired" +, journal = "Algorithmica" +, volume = 18 +, year = 1997 +, pages = "306--323" +, update = "97.11 oostrum" } @inproceedings{bkn-spqrw-91 -, author = "M. de Berg and M. van Kreveld and Bengt J. Nilsson" -, title = "Shortest path queries in rectilinear worlds of higher dimension" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "51--60" -, cites = "c-crmp-87, cr-nlbtr-87, c-tpca-82, c-tsplt-90i, cg-fc1ds-86, ch-spp-90, ckv-rsptp-87, b-rld-91, bkno-fsppo-90i, rlw-rsppr-89, d-ntpcg-59, k-ealdp-89, ll-fmrdp-81, l-prp-78, lp-esppr-84, lpsssstwy-clcsp-87, m-mdscg-84, m-oasrp-89, mmp-dgp-87, mrw-mlpop-90, os-cgd3p-89, rs-spesp-85, s-cg-78, ss-spps-86, s-mlppr-87, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "M. de Berg and M. van Kreveld and Bengt J. Nilsson" +, title = "Shortest path queries in rectilinear worlds of higher dimension" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "51--60" +, cites = "c-crmp-87, cr-nlbtr-87, c-tpca-82, c-tsplt-90i, cg-fc1ds-86, ch-spp-90, ckv-rsptp-87, b-rld-91, bkno-fsppo-90i, rlw-rsppr-89, d-ntpcg-59, k-ealdp-89, ll-fmrdp-81, l-prp-78, lp-esppr-84, lpsssstwy-clcsp-87, m-mdscg-84, m-oasrp-89, mmp-dgp-87, mrw-mlpop-90, os-cgd3p-89, rs-spesp-85, s-cg-78, ss-spps-86, s-mlppr-87, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{bkno-fsppo-90t -, author = "M. de Berg and M. van Kreveld and Bengt J. Nilsson and M. H. Overmars" -, title = "Finding shortest paths in the presence of orthogonal obstacles using a combined {$L_{1}$} and link metric" -, type = "Report" -, number = "RUU-CS-90-20" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1990 -, precedes = "bkno-fsppo-90i" -, update = "98.07 bibrelex, 98.03 mitchell, 94.05 schwarzkopf" +, author = "M. de Berg and M. van Kreveld and Bengt J. Nilsson and M. H. Overmars" +, title = "Finding shortest paths in the presence of orthogonal obstacles using a combined {$L_{1}$} and link metric" +, type = "Report" +, number = "RUU-CS-90-20" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1990 +, precedes = "bkno-fsppo-90i" +, update = "98.07 bibrelex, 98.03 mitchell, 94.05 schwarzkopf" } @inproceedings{bkno-fsppo-90i -, author = "M. de Berg and M. van Kreveld and Bengt J. Nilsson and M. H. Overmars" -, title = "Finding shortest paths in the presence of orthogonal obstacles using a combined {$L_{1}$} and link metric" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "213--224" -, keywords = "shortest paths, rectilinear paths, rectilinear obstacles, combined metric" -, succeeds = "bkno-fsppo-90t" -, update = "98.03 mitchell, 94.05 schwarzkopf" -, annote = "They consider rectilinear paths among $n$ axis-parallel +, author = "M. de Berg and M. van Kreveld and Bengt J. Nilsson and M. H. Overmars" +, title = "Finding shortest paths in the presence of orthogonal obstacles using a combined {$L_{1}$} and link metric" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "213--224" +, keywords = "shortest paths, rectilinear paths, rectilinear obstacles, combined metric" +, succeeds = "bkno-fsppo-90t" +, update = "98.03 mitchell, 94.05 schwarzkopf" +, annote = "They consider rectilinear paths among $n$ axis-parallel line segment obstacles (possibly crossing). They preprocess in time $O(n^2)$, space $O(n\log n)$, for single-source shortest paths in query time $O(\log n)$. Distance is measured in a combined metric: @@ -18958,16 +18958,16 @@ @inproceedings{bkno-fsppo-90i } @article{bkno-spqrw-92 -, author = "M. de Berg and M. van Kreveld and Bengt J. Nilsson and M. H. Overmars" -, title = "Shortest path queries in rectilinear worlds" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "287--309" -, keywords = "shortest paths, rectilinear paths, rectilinear obstacles, combined metric" -, update = "98.03 mitchell" -, abstract = " +, author = "M. de Berg and M. van Kreveld and Bengt J. Nilsson and M. H. Overmars" +, title = "Shortest path queries in rectilinear worlds" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "287--309" +, keywords = "shortest paths, rectilinear paths, rectilinear obstacles, combined metric" +, update = "98.03 mitchell" +, abstract = " In this paper, a data structure is given for two and higher dimensional shortest path queries. For a set of $n$ axis-parallel rectangles in the plane, or boxes in $d$-space, and a fixed target, it @@ -18986,1184 +18986,1184 @@ @article{bkno-spqrw-92 } @article{bkoo-stses-97 -, author = "M. de Berg and M. van Kreveld and R. van Oostrum and M. Overmars" -, title = "Simple traversal of a subdivision without extra storage" -, journal = "International Journal on Geographical Information Science" -, volume = 11 -, year = 1997 -, pages = "359--373" -, update = "97.11 oostrum" +, author = "M. de Berg and M. van Kreveld and R. van Oostrum and M. Overmars" +, title = "Simple traversal of a subdivision without extra storage" +, journal = "International Journal on Geographical Information Science" +, volume = 11 +, year = 1997 +, pages = "359--373" +, update = "97.11 oostrum" } @book{bkos-cgaa-97 -, author = "Mark de Berg and Marc van Kreveld and Mark Overmars and Otfried Schwarzkopf" -, title = "Computational Geometry: Algorithms and Applications" -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1997 -, isbn = "3-540-61270-X" -, keywords = "textbook" -, update = "98.03 agarwal+mitchell, 97.11 oostrum+orourke" +, author = "Mark de Berg and Marc van Kreveld and Mark Overmars and Otfried Schwarzkopf" +, title = "Computational Geometry: Algorithms and Applications" +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1997 +, isbn = "3-540-61270-X" +, keywords = "textbook" +, update = "98.03 agarwal+mitchell, 97.11 oostrum+orourke" } @book{bkos-cgaa-00 -, author = "Mark de Berg and Marc van Kreveld and Mark Overmars and Otfried Schwarzkopf" -, title = "Computational Geometry: Algorithms and Applications" -, edition = "2nd" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 2000 -, succeeds = "bkos-cgaa-97" -, update = "01.04 vismara" +, author = "Mark de Berg and Marc van Kreveld and Mark Overmars and Otfried Schwarzkopf" +, title = "Computational Geometry: Algorithms and Applications" +, edition = "2nd" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 2000 +, succeeds = "bkos-cgaa-97" +, update = "01.04 vismara" } @techreport{bkos-cge-95 -, author = "M. de Berg and M. van Kreveld and M. Overmars and O. Schwarzkopf" -, title = "Computational Geometry by Example" -, type = "Manuscript" -, institution = "??" -, year = 1995 -, update = "97.11 bibrelex" +, author = "M. de Berg and M. van Kreveld and M. Overmars and O. Schwarzkopf" +, title = "Computational Geometry by Example" +, type = "Manuscript" +, institution = "??" +, year = 1995 +, update = "97.11 bibrelex" } @inproceedings{bks-nass-95 -, author = "M. de Berg and M. van Kreveld and S. Schirra" -, title = "A new approach to subdivision simplification" -, booktitle = "Proc. 12th Internat. Sympos. Comput.-Assist. Cartog." -, year = 1995 -, pages = "79--88" -, keywords = "line simplification, generalization" -, update = "96.09 kreveld" +, author = "M. de Berg and M. van Kreveld and S. Schirra" +, title = "A new approach to subdivision simplification" +, booktitle = "Proc. 12th Internat. Sympos. Comput.-Assist. Cartog." +, year = 1995 +, pages = "79--88" +, keywords = "line simplification, generalization" +, update = "96.09 kreveld" } @inproceedings{bks-lsctp-95 -, author = "M. de Berg and M. van Kreveld and S. Schirra" -, title = "Line simplification consistent with tag points" -, booktitle = "Proc. Auto-Carto 12" -, year = 1995 -, note = "to appear" -, update = "97.11 bibrelex" +, author = "M. de Berg and M. van Kreveld and S. Schirra" +, title = "Line simplification consistent with tag points" +, booktitle = "Proc. Auto-Carto 12" +, year = 1995 +, note = "to appear" +, update = "97.11 bibrelex" } @article{bkss-plzkf-96 -, author = "M. de Berg and M. van Kreveld and O. Schwarzkopf and J. Snoeyink" -, title = "Point location in zones of $k$-flats in arrangements" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "131--143" -, keywords = "zones, arrangements, point location, many cells" -, succeeds = "bks-plzkf-91i" -, update = "96.09 devillers+kreveld" +, author = "M. de Berg and M. van Kreveld and O. Schwarzkopf and J. Snoeyink" +, title = "Point location in zones of $k$-flats in arrangements" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "131--143" +, keywords = "zones, arrangements, point location, many cells" +, succeeds = "bks-plzkf-91i" +, update = "96.09 devillers+kreveld" } @techreport{bks-plzkf-91t -, author = "M. de Berg and M. van Kreveld and J. Snoeyink" -, title = "Point location in zones of $k$-flats in arrangements" -, type = "Report" -, number = "RUU-CS-91-9" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1991 -, precedes = "bks-plzkf-91i" -, update = "94.05 schwarzkopf" +, author = "M. de Berg and M. van Kreveld and J. Snoeyink" +, title = "Point location in zones of $k$-flats in arrangements" +, type = "Report" +, number = "RUU-CS-91-9" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1991 +, precedes = "bks-plzkf-91i" +, update = "94.05 schwarzkopf" } @inproceedings{bks-plzkf-91i -, author = "M. de Berg and M. van Kreveld and J. Snoeyink" -, title = "Point location in zones of $k$-flats in arrangements" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "228--232" -, succeeds = "bks-plzkf-91t" -, cites = "bks-plzkf-91t, csw-qoubs-90, c-narsc-87, cs-arscg-89, e-acg-87, eos-calha-86, m-aodq-90, m-lpltw-84, hw-ensrq-87, ZZZ" -, update = "98.07 bibrelex" +, author = "M. de Berg and M. van Kreveld and J. Snoeyink" +, title = "Point location in zones of $k$-flats in arrangements" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "228--232" +, succeeds = "bks-plzkf-91t" +, cites = "bks-plzkf-91t, csw-qoubs-90, c-narsc-87, cs-arscg-89, e-acg-87, eos-calha-86, m-aodq-90, m-lpltw-84, hw-ensrq-87, ZZZ" +, update = "98.07 bibrelex" } @techreport{bks-ttdpl-91 -, author = "M. de Berg and M. van Kreveld and J. Snoeyink" -, title = "Two- and three-dimensional point location in rectangular subdivisions" -, type = "Report" -, number = "RUU-CS-91-29" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1991 -, precedes = "bks-ttdpl-92" -, update = "94.05 schwarzkopf" +, author = "M. de Berg and M. van Kreveld and J. Snoeyink" +, title = "Two- and three-dimensional point location in rectangular subdivisions" +, type = "Report" +, number = "RUU-CS-91-29" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1991 +, precedes = "bks-ttdpl-92" +, update = "94.05 schwarzkopf" } @inproceedings{bks-ttdpl-92 -, author = "M. de Berg and M. van Kreveld and J. Snoeyink" -, title = "Two- and three-dimensional point location in rectangular subdivisions" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "352--363" -, succeeds = "bks-ttdpl-91" -, precedes = "bks-ttdpl-95" -, update = "95.05 smid" +, author = "M. de Berg and M. van Kreveld and J. Snoeyink" +, title = "Two- and three-dimensional point location in rectangular subdivisions" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "352--363" +, succeeds = "bks-ttdpl-91" +, precedes = "bks-ttdpl-95" +, update = "95.05 smid" } @article{bks-ttdpl-95 -, author = "M. de Berg and M. van Kreveld and J. Snoeyink" -, title = "Two- and three-dimensional point location in rectangular subdivisions" -, journal = "J. Algorithms" -, volume = 18 -, year = 1995 -, pages = "256--277" -, succeeds = "bks-ttdpl-92" -, update = "95.05 smid" +, author = "M. de Berg and M. van Kreveld and J. Snoeyink" +, title = "Two- and three-dimensional point location in rectangular subdivisions" +, journal = "J. Algorithms" +, volume = 18 +, year = 1995 +, pages = "256--277" +, succeeds = "bks-ttdpl-92" +, update = "95.05 smid" } @inproceedings{bms-plpco-93 -, author = "M. de Berg and J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Piecewise Linear Paths Among Convex Obstacles" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "505--514" -, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1993/1993-20.ps.gz" -, keywords = "configuration space, motion planning, convex, robotics" -, precedes = "bms-plpco-95" -, update = "96.09 agarwal, 95.09 aronov, 94.05 devillers+schwarzkopf, 93.09 milone+mitchell, 93.05 schwarzkopf" -, abstract = "Let $B$ be a set of $n$ arbitrary (possibly intersecting) - convex obstacles in ${\bf R}^d$. It is shown that any - two points which can be connected by a path avoiding - the obstacles can also be connected by a path - consisting of $O(n^{(d-1)\lfloor{d/2+1}\rfloor})$ - segments. The bound cannot be improved below - $\Omega(n^d)$. For disjoint obstacles, a $\Theta(n)$ - bound is proved. By a well-known reduction, the - general case result also upper bounds the complexity - for a translational motion of an arbitrary convex - robot among convex obstacles. In the planar case, - asymptotically tight bounds and efficient algorithms - are given." +, author = "M. de Berg and J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Piecewise Linear Paths Among Convex Obstacles" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "505--514" +, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1993/1993-20.ps.gz" +, keywords = "configuration space, motion planning, convex, robotics" +, precedes = "bms-plpco-95" +, update = "96.09 agarwal, 95.09 aronov, 94.05 devillers+schwarzkopf, 93.09 milone+mitchell, 93.05 schwarzkopf" +, abstract = "Let $B$ be a set of $n$ arbitrary (possibly intersecting) + convex obstacles in ${\bf R}^d$. It is shown that any + two points which can be connected by a path avoiding + the obstacles can also be connected by a path + consisting of $O(n^{(d-1)\lfloor{d/2+1}\rfloor})$ + segments. The bound cannot be improved below + $\Omega(n^d)$. For disjoint obstacles, a $\Theta(n)$ + bound is proved. By a well-known reduction, the + general case result also upper bounds the complexity + for a translational motion of an arbitrary convex + robot among convex obstacles. In the planar case, + asymptotically tight bounds and efficient algorithms + are given." } @article{bms-plpco-95 -, author = "M. de Berg and J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Piecewise Linear Paths Among Convex Obstacles" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "9--29" -, keywords = "configuration space, motion planning, convex, robotics" -, succeeds = "bms-plpco-93" -, update = "96.09 agarwal, 95.09 aronov" +, author = "M. de Berg and J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Piecewise Linear Paths Among Convex Obstacles" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "9--29" +, keywords = "configuration space, motion planning, convex, robotics" +, succeeds = "bms-plpco-93" +, update = "96.09 agarwal, 95.09 aronov" } @inproceedings{bmow-cat-96 -, author = "M. de Berg and H. Meijer and M. Overmars and G. Wilfong" -, title = "Computing the angularity tolerance" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "331--336" -, precedes = "bmow-cat-98" -, update = "98.11 devillers, 97.03 agarwal, 96.09 mitchell" +, author = "M. de Berg and H. Meijer and M. Overmars and G. Wilfong" +, title = "Computing the angularity tolerance" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "331--336" +, precedes = "bmow-cat-98" +, update = "98.11 devillers, 97.03 agarwal, 96.09 mitchell" } @article{bmow-cat-98 -, author = "M. de Berg and H. Meijer and M. Overmars and G. Wilfong" -, title = "Computing the angularity tolerance" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "467--" -, succeeds = "bmow-cat-96" -, update = "98.11 devillers" +, author = "M. de Berg and H. Meijer and M. Overmars and G. Wilfong" +, title = "Computing the angularity tolerance" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "467--" +, succeeds = "bmow-cat-96" +, update = "98.11 devillers" } @inproceedings{boo-stswe-96 -, author = "Mark de Berg and Ren{\'e} van Oostrum and Mark Overmars" -, title = "Simple Traversal of a Subdivision Without Extra Storage" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C5--C6" -, cites = "af-rse-92, bkos-cge-95, egs-oplms-86, fr-cfecp-94, gc-sontr-86, gcr-acmut-77, gm-tsocc-78, pm-aiecg-90, pm-tdds-90, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 efrat" +, author = "Mark de Berg and Ren{\'e} van Oostrum and Mark Overmars" +, title = "Simple Traversal of a Subdivision Without Extra Storage" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C5--C6" +, cites = "af-rse-92, bkos-cge-95, egs-oplms-86, fr-cfecp-94, gc-sontr-86, gcr-acmut-77, gm-tsocc-78, pm-aiecg-90, pm-tdds-90, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 efrat" } @proceedings{bo-ewcg-92 -, title = "Abstracts 8th European Workshop Comput. Geom." -, editor = "Mark de Berg and Mark Overmars" -, nickname = "CG '92" -, site = "Utrecht" -, volume = "RUU-CS-92-10" -, publisher = "Utrecht University" -, year = 1992 -, update = "00.03 bibrelex" +, title = "Abstracts 8th European Workshop Comput. Geom." +, editor = "Mark de Berg and Mark Overmars" +, nickname = "CG '92" +, site = "Utrecht" +, volume = "RUU-CS-92-10" +, publisher = "Utrecht University" +, year = 1992 +, update = "00.03 bibrelex" } @inproceedings{bo-dpo-88 -, author = "M. de Berg and M. Overmars" -, title = "Dominance in the presence of obstacles" -, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '88" -, series = "Lecture Notes Comput. Sci." -, volume = 344 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "190--201" -, keywords = "domination, maximal elements, rectangular visibility" +, author = "M. de Berg and M. Overmars" +, title = "Dominance in the presence of obstacles" +, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '88" +, series = "Lecture Notes Comput. Sci." +, volume = 344 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "190--201" +, keywords = "domination, maximal elements, rectangular visibility" } @article{bo-hsrco-92 -, author = "M. de Berg and M. Overmars" -, title = "Hidden surface removal for $c$-oriented polyhedra" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 5 -, year = 1992 -, pages = "247--268" -, keywords = "hidden surface removal, $c$-oriented polyhedra, output-sensitive algorithms" -, succeeds = "bo-hsrap-90" +, author = "M. de Berg and M. Overmars" +, title = "Hidden surface removal for $c$-oriented polyhedra" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 5 +, year = 1992 +, pages = "247--268" +, keywords = "hidden surface removal, $c$-oriented polyhedra, output-sensitive algorithms" +, succeeds = "bo-hsrap-90" } @article{bok-fcbsb-90 -, author = "M. de Berg and M. Overmars and M. van Kreveld" -, title = "Finding complete bipartite subgraphs in bipartite graphs" -, journal = "Algorithms Rev." -, volume = 1 -, number = 2 -, year = 1990 -, pages = "79--85" +, author = "M. de Berg and M. Overmars and M. van Kreveld" +, title = "Finding complete bipartite subgraphs in bipartite graphs" +, journal = "Algorithms Rev." +, volume = 1 +, number = 2 +, year = 1990 +, pages = "79--85" } @inproceedings{bos-cvdo-92 -, author = "M. de Berg and M. Overmars and O. Schwarzkopf" -, title = "Computing and verifying depth orders" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "138--145" -, keywords = "hidden line/surface elimination, three-dimensional" -, cites = "am-rsps-91, am-dhsrr-91, as-anps-91, c-tsplt-90i, cegpsss-ccclr-90, csw-qoubs-90, b-doshs-91, bhosk-ershs-91, bo-hsrap-90, fkn-vsgpt-80, go-nasch-87, hb-cg-86, kos-ehsro-91, m-ept-91, n-tsott-86, os-oshsr-89, py-ebsph-90, pvy-osgpv-90, ZZZ" -, update = "97.11 bibrelex, 93.05 schwarzkopf" +, author = "M. de Berg and M. Overmars and O. Schwarzkopf" +, title = "Computing and verifying depth orders" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "138--145" +, keywords = "hidden line/surface elimination, three-dimensional" +, cites = "am-rsps-91, am-dhsrr-91, as-anps-91, c-tsplt-90i, cegpsss-ccclr-90, csw-qoubs-90, b-doshs-91, bhosk-ershs-91, bo-hsrap-90, fkn-vsgpt-80, go-nasch-87, hb-cg-86, kos-ehsro-91, m-ept-91, n-tsott-86, os-oshsr-89, py-ebsph-90, pvy-osgpv-90, ZZZ" +, update = "97.11 bibrelex, 93.05 schwarzkopf" } @article{bos-cvdo-94 -, author = "M. de Berg and M. Overmars and O. Schwarzkopf" -, title = "Computing and verifying depth orders" -, journal = "sicomp" -, volume = 23 -, year = 1994 -, pages = "437--446" -, succeeds = "bos-cvdo-92" -, update = "95.01 matousek" +, author = "M. de Berg and M. Overmars and O. Schwarzkopf" +, title = "Computing and verifying depth orders" +, journal = "sicomp" +, volume = 23 +, year = 1994 +, pages = "437--446" +, succeeds = "bos-cvdo-92" +, update = "95.01 matousek" } @inproceedings{bo-hsrap-90 -, author = "M. de Berg and M. H. Overmars" -, title = "Hidden surface removal for axis-parallel polyhedra" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "252--261" -, keywords = "hidden surface removal, ray tracing" -, succeeds = "bo-hsrco-90" -, precedes = "bo-hsrco-92" +, author = "M. de Berg and M. H. Overmars" +, title = "Hidden surface removal for axis-parallel polyhedra" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "252--261" +, keywords = "hidden surface removal, ray tracing" +, succeeds = "bo-hsrco-90" +, precedes = "bo-hsrco-92" } @techreport{bo-hsrco-90 -, author = "M. de Berg and M. H. Overmars" -, title = "Hidden surface removal for $c$-oriented polyhedra" -, type = "Report" -, number = "RUU-CS-90-33" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1990 -, precedes = "bo-hsrap-90" -, update = "94.05 schwarzkopf" +, author = "M. de Berg and M. H. Overmars" +, title = "Hidden surface removal for $c$-oriented polyhedra" +, type = "Report" +, number = "RUU-CS-90-33" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1990 +, precedes = "bo-hsrap-90" +, update = "94.05 schwarzkopf" } @techreport{bs-ca-92 -, author = "M. de Berg and O. Schwarzkopf" -, title = "Cuttings and applications" -, type = "Report" -, number = "RUU-CS-92-26" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, month = aug -, year = 1992 -, keywords = "cuttings, random sampling, hopcroft's problem, counting intersections, point location" -, precedes = "bs-ca-95" -, update = "96.09 devillers, 94.05 schwarzkopf" +, author = "M. de Berg and O. Schwarzkopf" +, title = "Cuttings and applications" +, type = "Report" +, number = "RUU-CS-92-26" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, month = aug +, year = 1992 +, keywords = "cuttings, random sampling, hopcroft's problem, counting intersections, point location" +, precedes = "bs-ca-95" +, update = "96.09 devillers, 94.05 schwarzkopf" } @article{bs-ca-95 -, author = "M. de Berg and O. Schwarzkopf" -, title = "Cuttings and applications" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "343--355" -, keywords = "cuttings, random sampling, segment intersection counting, Hopcroft's problem, point location" -, succeeds = "bs-ca-92" -, update = "96.09 devillers" +, author = "M. de Berg and O. Schwarzkopf" +, title = "Cuttings and applications" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "343--355" +, keywords = "cuttings, random sampling, segment intersection counting, Hopcroft's problem, point location" +, succeeds = "bs-ca-92" +, update = "96.09 devillers" } @article{bco-gadp-92 -, author = "M. T. de Berg and S. Carlsson and M. H. Overmars" -, title = "A general approach to dominance in the plane" -, journal = "J. Algorithms" -, volume = 13 -, year = 1992 -, pages = "274--296" -, keywords = "domination, rectangular visibility" +, author = "M. T. de Berg and S. Carlsson and M. H. Overmars" +, title = "A general approach to dominance in the plane" +, journal = "J. Algorithms" +, volume = 13 +, year = 1992 +, pages = "274--296" +, keywords = "domination, rectangular visibility" } @article{b-ttgt-57 -, author = "B. Berge" -, title = "Two Theorems in Graph Theroy" -, journal = "Proc. Nat. Acad. Sci. USA" -, volume = 43 -, year = 1957 -, pages = "842--844" -, update = "97.11 bibrelex" +, author = "B. Berge" +, title = "Two Theorems in Graph Theroy" +, journal = "Proc. Nat. Acad. Sci. USA" +, volume = 43 +, year = 1957 +, pages = "842--844" +, update = "97.11 bibrelex" } @book{b-g-85 -, author = "C. Berge" -, title = "Graphs" -, publisher = "North-Holland" -, year = 1985 -, update = "97.11 bibrelex" +, author = "C. Berge" +, title = "Graphs" +, publisher = "North-Holland" +, year = 1985 +, update = "97.11 bibrelex" } @article{b-slcmd-58 -, author = "C. Berge" -, title = "Sur le couplage maximum d'un graphe" -, journal = "C. R. Acad. Sciences, Paris" -, volume = 247 -, year = 1958 -, pages = "258--259" -, update = "98.07 bibrelex" +, author = "C. Berge" +, title = "Sur le couplage maximum d'un graphe" +, journal = "C. R. Acad. Sciences, Paris" +, volume = 247 +, year = 1958 +, pages = "258--259" +, update = "98.07 bibrelex" } @book{bc-tpg-84 -, title = "Topics on Perfect Graphs" -, editor = "C. Berge and V. Chv{\'a}tal" -, series = "Ann. Discrete Math." -, volume = 21 -, publisher = "North-Holland" -, year = 1984 -, update = "98.11 bibrelex" +, title = "Topics on Perfect Graphs" +, editor = "C. Berge and V. Chv{\'a}tal" +, series = "Ann. Discrete Math." +, volume = 21 +, publisher = "North-Holland" +, year = 1984 +, update = "98.11 bibrelex" } @book{bpv-ocdat-84 -, author = "P. Berge and Y. Pomeau and C. Vidal" -, title = "Order within Chaos: towards a Deterministic Approach to Turbulence" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1984 -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "P. Berge and Y. Pomeau and C. Vidal" +, title = "Order within Chaos: towards a Deterministic Approach to Turbulence" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1984 +, update = "99.11 bibrelex, 98.11 bibrelex" } @article{v-frgic-99 -, author = "G. Van den Bergen" -, title = "A Fast Robust GJK Implementation for Collision Detection of Convex Objects" -, journal = "J. Graphics Tools" -, volume = 4 -, number = 2 -, year = 1999 -, pages = "7--25" -, update = "00.03 held" +, author = "G. Van den Bergen" +, title = "A Fast Robust GJK Implementation for Collision Detection of Convex Objects" +, journal = "J. Graphics Tools" +, volume = 4 +, number = 2 +, year = 1999 +, pages = "7--25" +, update = "00.03 held" } @inproceedings{bkl-rtdma-96 -, author = "Bonnie Berger and Jon Kleinberg and Tom Leighton" -, title = "Reconstructing a Three-Dimensional Model with Arbitrary Errors" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '96" -, site = "Philadelphia, PA" -, month = may -, year = 1996 -, pages = "449--458" -, update = "00.03 smid, 98.07 bibrelex, 98.03 mitchell" +, author = "Bonnie Berger and Jon Kleinberg and Tom Leighton" +, title = "Reconstructing a Three-Dimensional Model with Arbitrary Errors" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '96" +, site = "Philadelphia, PA" +, month = may +, year = 1996 +, pages = "449--458" +, update = "00.03 smid, 98.07 bibrelex, 98.03 mitchell" } @article{br-slwin-91 -, author = "B. Berger and J. Rompel" -, title = "Simulating {$(\log^c n)$}-Wise Independence in {NC}" -, journal = "J. ACM" -, volume = 38 -, number = 4 -, year = 1991 -, pages = "1026--1046" -, update = "96.09 orourke" +, author = "B. Berger and J. Rompel" +, title = "Simulating {$(\log^c n)$}-Wise Independence in {NC}" +, journal = "J. ACM" +, volume = 38 +, number = 4 +, year = 1991 +, pages = "1026--1046" +, update = "96.09 orourke" } @inproceedings{brs-enasc-89 -, author = "B. Berger and J. Rompel and P. W. Shor" -, title = "Efficient {NC} algorithms for set cover with applications to learning and geometry" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, volume = 30 -, year = 1989 -, pages = "54--59" -, update = "93.09 matousek" +, author = "B. Berger and J. Rompel and P. W. Shor" +, title = "Efficient {NC} algorithms for set cover with applications to learning and geometry" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, volume = 30 +, year = 1989 +, pages = "54--59" +, update = "93.09 matousek" } @inproceedings{bs-aamas-90 -, author = "B. Berger and P. Shor" -, title = "Approximation Algorithms for the Maximum Acyclic Subgraph Problem" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "236--243" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "B. Berger and P. Shor" +, title = "Approximation Algorithms for the Maximum Acyclic Subgraph Problem" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "236--243" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{b-g3cep-74 -, author = "M. Berger" -, title = "G{\'e}om{\'e}trie 3. convexes et polytopes, poly{\`e}dres r{\'e}guliers, aires et volumes" -, publisher = "Fernand Nathan" -, address = "Paris" -, year = 1974 -, update = "94.05 devillers" +, author = "M. Berger" +, title = "G{\'e}om{\'e}trie 3. convexes et polytopes, poly{\`e}dres r{\'e}guliers, aires et volumes" +, publisher = "Fernand Nathan" +, address = "Paris" +, year = 1974 +, update = "94.05 devillers" } @book{b-g-77 -, author = "M. Berger" -, title = "G{\'e}om{\'e}trie (vols. 1-5)" -, publisher = "Fernand Nathan" -, address = "Paris" -, year = 1977 -, update = "96.09 devillers" +, author = "M. Berger" +, title = "G{\'e}om{\'e}trie (vols. 1-5)" +, publisher = "Fernand Nathan" +, address = "Paris" +, year = 1977 +, update = "96.09 devillers" } @book{b-g-87 -, author = "M. Berger" -, title = "Geometry (vols. 1-2)" -, publisher = "Springer-Verlag" -, year = 1987 -, succeeds = "b-g-77" -, update = "96.09 devillers" +, author = "M. Berger" +, title = "Geometry (vols. 1-2)" +, publisher = "Springer-Verlag" +, year = 1987 +, succeeds = "b-g-77" +, update = "96.09 devillers" } @book{bg-gd-72 -, author = "M. Berger and B. Gostiaux" -, title = "G{\'e}om{\'e}trie diff{\'e}rentielle" -, publisher = "Armand Collin" -, year = 1972 -, update = "97.11 bibrelex" +, author = "M. Berger and B. Gostiaux" +, title = "G{\'e}om{\'e}trie diff{\'e}rentielle" +, publisher = "Armand Collin" +, year = 1972 +, update = "97.11 bibrelex" } @article{br-apcgg-91 -, author = "M. Berger and I. Rigoutsos" -, title = "An algorithm for point clustering and grid generation" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 21 -, number = 5 -, year = 1991 -, pages = "1278--1286" -, update = "98.07 agarwal" +, author = "M. Berger and I. Rigoutsos" +, title = "An algorithm for point clustering and grid generation" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 21 +, number = 5 +, year = 1991 +, pages = "1278--1286" +, update = "98.07 agarwal" } @article{b-udp-66 -, author = "R. Berger" -, title = "The undecidability of the domino problem" -, journal = "Memoirs Amer. Math. Soc." -, volume = 66 -, year = 1966 -, update = "97.11 bibrelex" +, author = "R. Berger" +, title = "The undecidability of the domino problem" +, journal = "Memoirs Amer. Math. Soc." +, volume = 66 +, year = 1966 +, update = "97.11 bibrelex" } @article{bsv-fpafc-96 -, author = "O. Berkman and B. Schieber and U. Vishkin" -, title = "A fast parallel algorithm for finding the convex hull of a sorted point set" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "231--242" -, update = "96.09 devillers+orourke" +, author = "O. Berkman and B. Schieber and U. Vishkin" +, title = "A fast parallel algorithm for finding the convex hull of a sorted point set" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "231--242" +, update = "96.09 devillers+orourke" } @article{b-siec-69 -, author = "E. R. Berlekamp" -, title = "On subsets with intersections of even cardinality" -, journal = "Canad. Math. Bull." -, volume = 12 -, year = 1969 -, pages = "363--366" -, update = "98.03 bibrelex" +, author = "E. R. Berlekamp" +, title = "On subsets with intersections of even cardinality" +, journal = "Canad. Math. Bull." +, volume = 12 +, year = 1969 +, pages = "363--366" +, update = "98.03 bibrelex" } @article{bh-vpius-70 -, author = "J. D. Berman and K. Hanes" -, title = "Volumes of polyhedra inscribed in the unit sphere $E^3$" -, journal = "Mathematische Annalen" -, volume = 188 -, year = 1970 -, pages = "78--84" -, update = "97.11 bibrelex" +, author = "J. D. Berman and K. Hanes" +, title = "Volumes of polyhedra inscribed in the unit sphere $E^3$" +, journal = "Mathematische Annalen" +, volume = 188 +, year = 1970 +, pages = "78--84" +, update = "97.11 bibrelex" } @article{b-lsbls-89 -, author = "Mark Berman" -, title = "Large sample bias in least squares estimators of a circular arc center and its radius" -, journal = "Comput. Vision Graph. Image Process." -, volume = 45 -, year = 1989 -, pages = "126--128" -, update = "97.03 agarwal" +, author = "Mark Berman" +, title = "Large sample bias in least squares estimators of a circular arc center and its radius" +, journal = "Comput. Vision Graph. Image Process." +, volume = 45 +, year = 1989 +, pages = "126--128" +, update = "97.03 agarwal" } @incollection{b-olsn-98 -, author = "Piotr Berman" -, title = "On-line Searching and Navigation" -, editor = "Amos Fiat and Gerhard Woeginger" -, booktitle = "Online Algorithms: The State of the Art" -, series = "Lecture Notes Comput. Sci." -, volume = 1442 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "232--241" -, comments = "chapter 10 of fw-ola-98" -, update = "02.03 icking, 98.07 icking, 98.03 mitchell" +, author = "Piotr Berman" +, title = "On-line Searching and Navigation" +, editor = "Amos Fiat and Gerhard Woeginger" +, booktitle = "Online Algorithms: The State of the Art" +, series = "Lecture Notes Comput. Sci." +, volume = 1442 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "232--241" +, comments = "chapter 10 of fw-ola-98" +, update = "02.03 icking, 98.07 icking, 98.03 mitchell" } @inproceedings{bbfkrs-rrna-96 -, author = "Piotr Berman and Avrim Blum and Amos Fiat and Howard Karloff and Adi Rosen and Michael Saks" -, title = "Randomized robot navigation algorithms" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "75--84" -, keywords = "mobile robot, competitive ratio, shortest paths, randomized strategies, rectangular obstacles" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Piotr Berman and Avrim Blum and Amos Fiat and Howard Karloff and Adi Rosen and Michael Saks" +, title = "Randomized robot navigation algorithms" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "75--84" +, keywords = "mobile robot, competitive ratio, shortest paths, randomized strategies, rectangular obstacles" +, update = "96.09 agarwal, 96.01 mitchell" } @inproceedings{bd-arpcp-92 -, author = "P. Berman and B. DasGupta" -, title = "Approximating the rectilinear polygon cover problems" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "229--235" -, cites = "ckss-crr-81, co-srrcp-87, cr-cpih-88, f-pgslh-89, fk-acrri-84, hk-nammb-73, l-pnrh-82, mc-ivs-80, os-snhpd-83, lllmp-tddo2-79, bd-rarpc-92, bs-caisp-92, l-ocopg-85, o-mdrp-82, almss-iap-92, l-bbpcp-88, m-ncscp-78, mrs-pgocc-88, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Berman and B. DasGupta" +, title = "Approximating the rectilinear polygon cover problems" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "229--235" +, cites = "ckss-crr-81, co-srrcp-87, cr-cpih-88, f-pgslh-89, fk-acrri-84, hk-nammb-73, l-pnrh-82, mc-ivs-80, os-snhpd-83, lllmp-tddo2-79, bd-rarpc-92, bs-caisp-92, l-ocopg-85, o-mdrp-82, almss-iap-92, l-bbpcp-88, m-ncscp-78, mrs-pgocc-88, ZZZ" +, update = "98.07 bibrelex" } @techreport{bd-rarpc-92 -, author = "P. Berman and B. DasGupta" -, title = "Results on Approximating of the Rectilinear Cover Problem" -, type = "Technical Report" -, number = "CS-92-07" -, institution = "Pennsylvania State University" -, month = apr -, year = 1992 -, update = "98.07 bibrelex" +, author = "P. Berman and B. DasGupta" +, title = "Results on Approximating of the Rectilinear Cover Problem" +, type = "Technical Report" +, number = "CS-92-07" +, institution = "Pennsylvania State University" +, month = apr +, year = 1992 +, update = "98.07 bibrelex" } @techreport{bk-rnwco-94 -, author = "Piotr Berman and M. Karpinski" -, title = "Randomized Navigation to a Wall through Convex Obstacles" -, type = "Technical Report" -, number = "85118-CS" -, institution = "Bonn University" -, year = 1994 -, update = "98.03 mitchell" +, author = "Piotr Berman and M. Karpinski" +, title = "Randomized Navigation to a Wall through Convex Obstacles" +, type = "Technical Report" +, number = "85118-CS" +, institution = "Bonn University" +, year = 1994 +, update = "98.03 mitchell" } @article{bl-nopav-97 -, author = "P. Berman and A. Lingas" -, title = "A nearly optimal parallel algorithm for the {Voronoi} diagram of a convex polygon" -, journal = "Theoret. Comput. Sci." -, volume = 174 -, year = 1997 -, pages = "193--202" -, update = "97.07 smid" +, author = "P. Berman and A. Lingas" +, title = "A nearly optimal parallel algorithm for the {Voronoi} diagram of a convex polygon" +, journal = "Theoret. Comput. Sci." +, volume = 174 +, year = 1997 +, pages = "193--202" +, update = "97.07 smid" } @inproceedings{br-iastp-92 -, author = "P. Berman and V. Ramaiyer" -, title = "Improved approximations for the {Steiner} tree problem" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1992 -, pages = "325--334" -, update = "98.07 bibrelex" +, author = "P. Berman and V. Ramaiyer" +, title = "Improved approximations for the {Steiner} tree problem" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1992 +, pages = "325--334" +, update = "98.07 bibrelex" } @article{br-iastp-94 -, author = "P. Berman and V. Ramaiyer" -, title = "Improved approximations for the {Steiner} tree problem" -, journal = "J. Algorithms" -, volume = 17 -, year = 1994 -, pages = "381--408" -, update = "95.01 smid" +, author = "P. Berman and V. Ramaiyer" +, title = "Improved approximations for the {Steiner} tree problem" +, journal = "J. Algorithms" +, volume = 17 +, year = 1994 +, pages = "381--408" +, update = "95.01 smid" } @article{bs-caisp-92 -, author = "P. Berman and G. Schnitger" -, title = "On the complexity of approximating the Independent Set Problem" -, journal = "Inform. Comput." -, volume = 96 -, number = 1 -, month = jan -, year = 1992 -, pages = "77--94" -, update = "98.07 bibrelex" +, author = "P. Berman and G. Schnitger" +, title = "On the complexity of approximating the Independent Set Problem" +, journal = "Inform. Comput." +, volume = 96 +, number = 1 +, month = jan +, year = 1992 +, pages = "77--94" +, update = "98.07 bibrelex" } @incollection{b-hg-78 -, author = "J. C. Bermond" -, title = "Hamiltonian Graphs" -, editor = "L. W. Beineke and R. J. Wilson" -, booktitle = "Selected Topics in Graph Theory" -, publisher = "Academic Press" -, address = "London, UK" -, year = 1978 -, update = "98.03 bibrelex" +, author = "J. C. Bermond" +, title = "Hamiltonian Graphs" +, editor = "L. W. Beineke and R. J. Wilson" +, booktitle = "Selected Topics in Graph Theory" +, publisher = "Academic Press" +, address = "London, UK" +, year = 1978 +, update = "98.03 bibrelex" } @article{b-acpqh-93 -, author = "M. Bern" -, title = "Approximate closest-point queries in high dimensions" -, journal = "Inform. Process. Lett." -, volume = 45 -, year = 1993 -, pages = "95--99" -, update = "93.05 smid" +, author = "M. Bern" +, title = "Approximate closest-point queries in high dimensions" +, journal = "Inform. Process. Lett." +, volume = 45 +, year = 1993 +, pages = "95--99" +, update = "93.05 smid" } @inproceedings{b-ct-93 -, author = "M. Bern" -, title = "Compatible tetrahedralizations" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "281--288" -, cites = "agss-ltacv-89, ae-tpss-87, be-mgot-92t, c-cpplb-84, c-oaitd-92, cegs-dwclp-92, cp-tncp-90, de-iabns-93, dk-fdpi-82, dc-chtt-91, epw-tpstd-90, e-dtdlp-92, gp-cdpb-88, hs-cpmfl-92, k-osps-83, l-tsfpp-11, rs-dttdn-92, s-udzvd-28, g-vcem-77, h-fssp-81, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "M. Bern" +, title = "Compatible tetrahedralizations" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "281--288" +, cites = "agss-ltacv-89, ae-tpss-87, be-mgot-92t, c-cpplb-84, c-oaitd-92, cegs-dwclp-92, cp-tncp-90, de-iabns-93, dk-fdpi-82, dc-chtt-91, epw-tpstd-90, e-dtdlp-92, gp-cdpb-88, hs-cpmfl-92, k-osps-83, l-tsfpp-11, rs-dttdn-92, s-udzvd-28, g-vcem-77, h-fssp-81, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{b-feast-90 -, author = "M. Bern" -, title = "Faster exact algorithms for {Steiner} trees in planar networks" -, journal = "Networks" -, volume = 20 -, number = 1 -, year = 1990 -, pages = "109--120" -, keywords = "Steiner tree" -, update = "95.05 korneenko" +, author = "M. Bern" +, title = "Faster exact algorithms for {Steiner} trees in planar networks" +, journal = "Networks" +, volume = 20 +, number = 1 +, year = 1990 +, pages = "109--120" +, keywords = "Steiner tree" +, update = "95.05 korneenko" } @inproceedings{b-hsrr-88 -, author = "M. Bern" -, title = "Hidden surface removal for rectangles" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "183--192" -, precedes = "b-hsrr-90" -, cites = "cg-fc1ds-86, dsst-mdsp-86, e-ndrs-81, em-ioo-81, fmn-dgds-85, g-pahle-87i, gmpr-nrll-77, go-nasch-85, m-pst-81, m-wcohs-87, m-ceicw-86, ps-cgi-85, pvy-cavsi-88, st-pplup-86, ekz-diepq-77, wl-arrcd-85, ZZZ" -, update = "98.03 bibrelex, 95.05 franciosa" +, author = "M. Bern" +, title = "Hidden surface removal for rectangles" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "183--192" +, precedes = "b-hsrr-90" +, cites = "cg-fc1ds-86, dsst-mdsp-86, e-ndrs-81, em-ioo-81, fmn-dgds-85, g-pahle-87i, gmpr-nrll-77, go-nasch-85, m-pst-81, m-wcohs-87, m-ceicw-86, ps-cgi-85, pvy-cavsi-88, st-pplup-86, ekz-diepq-77, wl-arrcd-85, ZZZ" +, update = "98.03 bibrelex, 95.05 franciosa" } @article{b-hsrr-90 -, author = "M. Bern" -, title = "Hidden surface removal for rectangles" -, journal = "J. Comput. Syst. Sci." -, volume = 40 -, year = 1990 -, pages = "49--69" -, succeeds = "b-hsrr-88" -, update = "95.05 franciosa" +, author = "M. Bern" +, title = "Hidden surface removal for rectangles" +, journal = "J. Comput. Syst. Sci." +, volume = 40 +, year = 1990 +, pages = "49--69" +, succeeds = "b-hsrr-88" +, update = "95.05 franciosa" } @incollection{b-t-97 -, author = "M. Bern" -, title = "Triangulations" -, chapter = 22 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "413--428" -, update = "97.11 orourke" +, author = "M. Bern" +, title = "Triangulations" +, chapter = 22 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "413--428" +, update = "97.11 orourke" } @article{bb-psscs-91 -, author = "M. Bern and D. Bienstock" -, title = "Polynomially solvable special cases of the {Steiner} tree problem in planar networks" -, journal = "Ann. Oper. Res." -, volume = 33 -, number = "1--4" -, year = 1991 -, pages = "405--418" -, keywords = "Steiner tree" -, update = "95.05 korneenko" +, author = "M. Bern and D. Bienstock" +, title = "Polynomially solvable special cases of the {Steiner} tree problem in planar networks" +, journal = "Ann. Oper. Res." +, volume = 33 +, number = "1--4" +, year = 1991 +, pages = "405--418" +, keywords = "Steiner tree" +, update = "95.05 korneenko" } @techreport{bcer-dbmgh-93 -, author = "M. Bern and L. P. Chew and D. Eppstein and J. Ruppert" -, title = "Dihedral Bounds for Mesh Generation in High Dimensions" -, type = "Manuscript" -, institution = "??" -, year = 1993 -, update = "98.03 bibrelex" +, author = "M. Bern and L. P. Chew and D. Eppstein and J. Ruppert" +, title = "Dihedral Bounds for Mesh Generation in High Dimensions" +, type = "Manuscript" +, institution = "??" +, year = 1993 +, update = "98.03 bibrelex" } @inproceedings{bcer-dbmgh-95 -, author = "Marshall Bern and Paul Chew and David Eppstein and Jim Ruppert" -, title = "Dihedral Bounds for Mesh Generation in High Dimensions" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "189--196" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "Marshall Bern and Paul Chew and David Eppstein and Jim Ruppert" +, title = "Dihedral Bounds for Mesh Generation in High Dimensions" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "189--196" +, update = "96.09 agarwal, 96.05 mitchell" } @inproceedings{bdeh-dpaomt-98 -, author = "M. Bern and E. D. Demaine and D. Eppstein and B. Hayes" -, title = "A disk-packing algorithm for an origami magic trick" -, booktitle = "Proc. Internat. Conf. Fun with Algorithms" -, site = "Elba, Italy" -, month = jun -, year = 1998 -, update = "00.03 orourke" +, author = "M. Bern and E. D. Demaine and D. Eppstein and B. Hayes" +, title = "A disk-packing algorithm for an origami magic trick" +, booktitle = "Proc. Internat. Conf. Fun with Algorithms" +, site = "Elba, Italy" +, month = jun +, year = 1998 +, update = "00.03 orourke" } @inproceedings{bdek-up-99 -, author = "M. Bern and E. D. Demaine and D. Eppstein and E. Kuo" -, title = "Ununfoldable Polyhedra" -, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." -, year = 1999 -, pages = "13--16" -, note = "Full version: https://arXiv.org/abs/cs/9908003/" -, url = "http://www.cs.ubc.ca/conferences/CCCG/elec_proc/elecproc.html" -, update = "01.11 orourke, 00.03 orourke" +, author = "M. Bern and E. D. Demaine and D. Eppstein and E. Kuo" +, title = "Ununfoldable Polyhedra" +, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." +, year = 1999 +, pages = "13--16" +, note = "Full version: https://arXiv.org/abs/cs/9908003/" +, url = "http://www.cs.ubc.ca/conferences/CCCG/elec_proc/elecproc.html" +, update = "01.11 orourke, 00.03 orourke" } @article{bdems-uptf-01 -, author = "M. Bern and E. D. Demaine and D. Eppstein and E. Kuo and A. Mantler and J. Snoeyink" -, title = "Ununfoldable Polyhedra with Convex Faces" -, journal = "Comput. Geom. Theory Appl." -, volume = "??" -, year = 2001 -, pages = "?--?" -, update = "01.11 orourke, 01.04 orourke" +, author = "M. Bern and E. D. Demaine and D. Eppstein and E. Kuo and A. Mantler and J. Snoeyink" +, title = "Ununfoldable Polyhedra with Convex Faces" +, journal = "Comput. Geom. Theory Appl." +, volume = "??" +, year = 2001 +, pages = "?--?" +, update = "01.11 orourke, 01.04 orourke" } @inproceedings{bde-tpwla-92 -, author = "M. Bern and D. Dobkin and D. Eppstein" -, title = "Triangulating polygons without large angles" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "222--231" -, precedes = "bde-tpwla-95" -, cites = "ba-acfem-76, bgr-ntp-88, b-casrd-83, beemt-eiot-92i, be-psntp-91, be-mgot-92i, beg-pgmg-90, et-ubcdt-92, etw-otama-90, e-amwt-92, gcr-acmut-77, g-eblit-75, ms-cinap-92, mv-qmgtd-92i, sdhk-lht-91, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "M. Bern and D. Dobkin and D. Eppstein" +, title = "Triangulating polygons without large angles" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "222--231" +, precedes = "bde-tpwla-95" +, cites = "ba-acfem-76, bgr-ntp-88, b-casrd-83, beemt-eiot-92i, be-psntp-91, be-mgot-92i, beg-pgmg-90, et-ubcdt-92, etw-otama-90, e-amwt-92, gcr-acmut-77, g-eblit-75, ms-cinap-92, mv-qmgtd-92i, sdhk-lht-91, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers" } @article{bde-tpwla-95 -, author = "M. Bern and D. Dobkin and D. Eppstein" -, title = "Triangulating polygons without large angles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "171--192" -, keywords = "computational geometry, mesh generation, triangulation, angle condition" -, succeeds = "bde-tpwla-92" -, update = "96.09 devillers" +, author = "M. Bern and D. Dobkin and D. Eppstein" +, title = "Triangulating polygons without large angles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "171--192" +, keywords = "computational geometry, mesh generation, triangulation, angle condition" +, succeeds = "bde-tpwla-92" +, update = "96.09 devillers" } @inproceedings{bdeg-vmpv-90 -, author = "M. Bern and D. Dobkin and D. Eppstein and R. Grossman" -, title = "Visibility with a moving point of view" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "107--117" -, update = "95.01 smid" +, author = "M. Bern and D. Dobkin and D. Eppstein and R. Grossman" +, title = "Visibility with a moving point of view" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "107--117" +, update = "95.01 smid" } @article{bdeg-vmpv-94 -, author = "M. Bern and D. Dobkin and D. Eppstein and R. Grossman" -, title = "Visibility with a moving point of view" -, journal = "Algorithmica" -, volume = 11 -, year = 1994 -, pages = "360--378" -, keywords = "visibility" -, update = "94.09 orourke" +, author = "M. Bern and D. Dobkin and D. Eppstein and R. Grossman" +, title = "Visibility with a moving point of view" +, journal = "Algorithmica" +, volume = 11 +, year = 1994 +, pages = "360--378" +, keywords = "visibility" +, update = "94.09 orourke" } @techreport{beemt-eiot-92t -, author = "M. Bern and H. Edelsbrunner and D. Eppstein and S. Mitchell and T. S. Tan" -, title = "Edge-insertion for optimal triangulations" -, type = "Tech. Report" -, number = "EDC UILU-ENG-92-1702" -, institution = "Univ. Illinois" -, address = "Urbana, IL" -, year = 1992 -, precedes = "beemt-eiot-93" -, update = "95.05 korneenko" +, author = "M. Bern and H. Edelsbrunner and D. Eppstein and S. Mitchell and T. S. Tan" +, title = "Edge-insertion for optimal triangulations" +, type = "Tech. Report" +, number = "EDC UILU-ENG-92-1702" +, institution = "Univ. Illinois" +, address = "Urbana, IL" +, year = 1992 +, precedes = "beemt-eiot-93" +, update = "95.05 korneenko" } @inproceedings{beemt-eiot-92i -, author = "M. Bern and H. Edelsbrunner and D. Eppstein and S. Mitchell and T. S. Tan" -, title = "Edge-insertion for optimal triangulations" -, booktitle = "Proc. Latin Amer. Sympos. Theoret. Informatics" -, nickname = "LATIN '92" -, site = "Sao Paulo" -, series = "Lecture Notes Comput. Sci." -, volume = 583 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "46--60" -, precedes = "beemt-eiot-93" -, update = "99.11 bibrelex, 95.05 korneenko" +, author = "M. Bern and H. Edelsbrunner and D. Eppstein and S. Mitchell and T. S. Tan" +, title = "Edge-insertion for optimal triangulations" +, booktitle = "Proc. Latin Amer. Sympos. Theoret. Informatics" +, nickname = "LATIN '92" +, site = "Sao Paulo" +, series = "Lecture Notes Comput. Sci." +, volume = 583 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "46--60" +, precedes = "beemt-eiot-93" +, update = "99.11 bibrelex, 95.05 korneenko" } @article{beemt-eiot-93 -, author = "M. Bern and H. Edelsbrunner and D. Eppstein and S. Mitchell and T. S. Tan" -, title = "Edge insertion for optimal triangulations" -, journal = "Discrete Comput. Geom." -, volume = 10 -, number = 1 -, year = 1993 -, pages = "47--65" -, keywords = "points, triangulation" -, succeeds = "beemt-eiot-92t, beemt-eiot-92i" -, update = "95.05 korneenko" +, author = "M. Bern and H. Edelsbrunner and D. Eppstein and S. Mitchell and T. S. Tan" +, title = "Edge insertion for optimal triangulations" +, journal = "Discrete Comput. Geom." +, volume = 10 +, number = 1 +, year = 1993 +, pages = "47--65" +, keywords = "points, triangulation" +, succeeds = "beemt-eiot-92t, beemt-eiot-92i" +, update = "95.05 korneenko" } @incollection{be-aagp-97 -, author = "M. Bern and D. Eppstein" -, title = "Approximation algorithms for geometric problems" -, editor = "Dorit S. Hochbaum" -, booktitle = "Approximation Algorithms for NP-Hard Problems" -, publisher = "PWS Publishing Company" -, address = "Boston, MA" -, year = 1997 -, pages = "296--345" -, succeeds = "be-gaa-95" -, update = "98.07 agarwal, 97.11 bibrelex, 97.07 smid, 97.03 agarwal+held, 95.09 mitchell" +, author = "M. Bern and D. Eppstein" +, title = "Approximation algorithms for geometric problems" +, editor = "Dorit S. Hochbaum" +, booktitle = "Approximation Algorithms for NP-Hard Problems" +, publisher = "PWS Publishing Company" +, address = "Boston, MA" +, year = 1997 +, pages = "296--345" +, succeeds = "be-gaa-95" +, update = "98.07 agarwal, 97.11 bibrelex, 97.07 smid, 97.03 agarwal+held, 95.09 mitchell" } @misc{be-gaa-95 -, author = "M. Bern and D. Eppstein" -, title = "Geometric approximation algorithms" -, year = 1995 -, note = "manuscript" -, precedes = "be-aagp-97" -, update = "97.11 bibrelex, 95.05 agarwal" +, author = "M. Bern and D. Eppstein" +, title = "Geometric approximation algorithms" +, year = 1995 +, note = "manuscript" +, precedes = "be-aagp-97" +, update = "97.11 bibrelex, 95.05 agarwal" } @techreport{be-mgot-92t -, author = "M. Bern and D. Eppstein" -, title = "Mesh generation and optimal triangulation" -, type = "Tech. Report" -, number = "CSL-92-1" -, institution = "Xerox PARC" -, address = "Palo Alto, CA" -, year = 1992 -, precedes = "be-mgot-92i" +, author = "M. Bern and D. Eppstein" +, title = "Mesh generation and optimal triangulation" +, type = "Tech. Report" +, number = "CSL-92-1" +, institution = "Xerox PARC" +, address = "Palo Alto, CA" +, year = 1992 +, precedes = "be-mgot-92i" } @incollection{be-mgot-92i -, author = "M. Bern and D. Eppstein" -, title = "Mesh generation and optimal triangulation" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, publisher = "World Scientific" -, address = "Singapore" -, year = 1992 -, pages = "23--90" -, keywords = "survey paper, mesh generation, optimal triangulation, Steiner triangulation" -, succeeds = "be-mgot-92t" -, precedes = "be-mgot-95" -, update = "98.07 icking, 93.09 erickson" +, author = "M. Bern and D. Eppstein" +, title = "Mesh generation and optimal triangulation" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, publisher = "World Scientific" +, address = "Singapore" +, year = 1992 +, pages = "23--90" +, keywords = "survey paper, mesh generation, optimal triangulation, Steiner triangulation" +, succeeds = "be-mgot-92t" +, precedes = "be-mgot-95" +, update = "98.07 icking, 93.09 erickson" } @incollection{be-mgot-95 -, author = "M. Bern and D. Eppstein" -, title = "Mesh generation and optimal triangulation" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "47--123" -, keywords = "survey paper, mesh generation, optimal triangulation, Steiner triangulation" -, succeeds = "be-mgot-92i" -, update = "98.07 icking, 97.11 bibrelex, 97.03 pocchiola" +, author = "M. Bern and D. Eppstein" +, title = "Mesh generation and optimal triangulation" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "47--123" +, keywords = "survey paper, mesh generation, optimal triangulation, Steiner triangulation" +, succeeds = "be-mgot-92i" +, update = "98.07 icking, 97.11 bibrelex, 97.03 pocchiola" } @inproceedings{be-mrd-00 -, author = "Marshall Bern and David Eppstein" -, title = "Multivariate Regression Depth" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "315--321" -, update = "00.11 jones" +, author = "Marshall Bern and David Eppstein" +, title = "Multivariate Regression Depth" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "315--321" +, update = "00.11 jones" } @inproceedings{be-psntp-91 -, author = "M. Bern and D. Eppstein" -, title = "Polynomial-size nonobtuse triangulation of polygons" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "342--350" -, keywords = "triangulation, polygons" -, precedes = "be-psntp-92" -, cites = "bgr-ntp-88, beg-pgmg-90, bg-dpd-91, c-cdt-87, etw-otama-90, e-fpdtm-90, f-cfemg-72, g-dpnet-84, ll-gdtpg-86, ls-tacdt-80, ms-getcc-88, sdhk-lht-91, s-let-78, ZZZ" -, update = "97.11 bibrelex" +, author = "M. Bern and D. Eppstein" +, title = "Polynomial-size nonobtuse triangulation of polygons" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "342--350" +, keywords = "triangulation, polygons" +, precedes = "be-psntp-92" +, cites = "bgr-ntp-88, beg-pgmg-90, bg-dpd-91, c-cdt-87, etw-otama-90, e-fpdtm-90, f-cfemg-72, g-dpnet-84, ll-gdtpg-86, ls-tacdt-80, ms-getcc-88, sdhk-lht-91, s-let-78, ZZZ" +, update = "97.11 bibrelex" } @article{be-psntp-92 -, author = "M. Bern and D. Eppstein" -, title = "Polynomial-size nonobtuse triangulation of polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "241--255, 449--450" -, keywords = "mesh generation, triangulation, angle condition" -, succeeds = "be-psntp-91" -, update = "96.09 devillers" +, author = "M. Bern and D. Eppstein" +, title = "Polynomial-size nonobtuse triangulation of polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "241--255, 449--450" +, keywords = "mesh generation, triangulation, angle condition" +, succeeds = "be-psntp-91" +, update = "96.09 devillers" } @inproceedings{be-wcbsg-93 -, author = "M. Bern and D. Eppstein" -, title = "Worst-case bounds for subadditive geometric graphs" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "183--188" -, cites = "akt-om-84, gp-smt-68, k-hlcet-89, s-rpmbp-85, s-lbrst-91, s-wcmrs-92, ss-piets-92, s-sefnl-81, s-pwcac-90, ss-wcgmu-90, ss-wcgrs-89, u-cav-92, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" +, author = "M. Bern and D. Eppstein" +, title = "Worst-case bounds for subadditive geometric graphs" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "183--188" +, cites = "akt-om-84, gp-smt-68, k-hlcet-89, s-rpmbp-85, s-lbrst-91, s-wcmrs-92, ss-piets-92, s-sefnl-81, s-pwcac-90, ss-wcgmu-90, ss-wcgrs-89, u-cav-92, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" } @misc{be-ecct-99 -, author = "M. Bern and D. Eppstein and P. K. Agarwal and N. Amenta and P. Chew and T. Dey and D. P. Dobkin and H. Edelsbrunner and C. Grimm and L. J. Guibas and J. Harer and J. Hass and A. Hicks and C. K. Johnson and G. Lerman and D. Letscher and P. Plassmann and E. Sedgwick and J. Snoeyink and J. Weeks and C. Yap and D. Zorin" -, title = "Emerging Challenges in Computational Topology" -, year = 1999 -, note = "Report on an NSF Workshop on Computational Topology, +, author = "M. Bern and D. Eppstein and P. K. Agarwal and N. Amenta and P. Chew and T. Dey and D. P. Dobkin and H. Edelsbrunner and C. Grimm and L. J. Guibas and J. Harer and J. Hass and A. Hicks and C. K. Johnson and G. Lerman and D. Letscher and P. Plassmann and E. Sedgwick and J. Snoeyink and J. Weeks and C. Yap and D. Zorin" +, title = "Emerging Challenges in Computational Topology" +, year = 1999 +, note = "Report on an NSF Workshop on Computational Topology, June 11-12, Miami Beach, FL." -, update = "01.07 orourke" +, update = "01.07 orourke" } @inproceedings{beg-pgmg-90 -, author = "M. Bern and D. Eppstein and J. Gilbert" -, title = "Provably good mesh generation" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "231--241" -, keywords = "VLSI design" -, update = "98.03 smid" +, author = "M. Bern and D. Eppstein and J. Gilbert" +, title = "Provably good mesh generation" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "231--241" +, keywords = "VLSI design" +, update = "98.03 smid" } @article{beg-pgmg-94 -, author = "M. Bern and D. Eppstein and J. Gilbert" -, title = "Provably good mesh generation" -, journal = "J. Comput. Syst. Sci." -, volume = 48 -, year = 1994 -, pages = "384--409" -, update = "98.03 smid" +, author = "M. Bern and D. Eppstein and J. Gilbert" +, title = "Provably good mesh generation" +, journal = "J. Comput. Syst. Sci." +, volume = 48 +, year = 1994 +, pages = "384--409" +, update = "98.03 smid" } @inproceedings{beghs-cpaw-95 -, author = "M. Bern and D. Eppstein and L. J. Guibas and J. Hershberger and S. Suri and J. Wolter" -, title = "The centroid of points with approximate weights" -, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" -, nickname = "ESA '95" -, series = "Lecture Notes Comput. Sci." -, volume = 979 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "460--472" -, update = "01.11 smid" +, author = "M. Bern and D. Eppstein and L. J. Guibas and J. Hershberger and S. Suri and J. Wolter" +, title = "The centroid of points with approximate weights" +, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" +, nickname = "ESA '95" +, series = "Lecture Notes Comput. Sci." +, volume = 979 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "460--472" +, update = "01.11 smid" } @incollection{bepy-htlp-91 -, author = "M. Bern and D. Eppstein and P. Plassman and F. Yao" -, title = "Horizon theorems for lines and polygons" -, editor = "J. Goodman and R. Pollack and W. Steiger" -, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 6 -, publisher = "American Mathematical Society, Association for Computing Machinery" -, address = "Providence, RI" -, year = 1991 -, pages = "45--66" -, keywords = "arrangements, horizon, pseudo lines" -, update = "99.11 bibrelex, 95.09 agarwal" +, author = "M. Bern and D. Eppstein and P. Plassman and F. Yao" +, title = "Horizon theorems for lines and polygons" +, editor = "J. Goodman and R. Pollack and W. Steiger" +, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 6 +, publisher = "American Mathematical Society, Association for Computing Machinery" +, address = "Providence, RI" +, year = 1991 +, pages = "45--66" +, keywords = "arrangements, horizon, pseudo lines" +, update = "99.11 bibrelex, 95.09 agarwal" } @inproceedings{bet-pcqqt-93 -, author = "Marshall Bern and David Eppstein and Shan-Hua Teng" -, title = "Parallel Construction of Quadtrees and Quality Triangulations" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "188--199" -, update = "93.09 milone+mitchell+smid, 93.05 jones" +, author = "Marshall Bern and David Eppstein and Shan-Hua Teng" +, title = "Parallel Construction of Quadtrees and Quality Triangulations" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "188--199" +, update = "93.09 milone+mitchell+smid, 93.05 jones" } @article{bet-pcqqt-99 -, author = "M. Bern and D. Eppstein and S.-H. Teng" -, title = "Parallel Construction of Quadtrees and Quality Triangulations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, number = 6 -, year = 1999 -, pages = "517--532" -, update = "00.03 held" +, author = "M. Bern and D. Eppstein and S.-H. Teng" +, title = "Parallel Construction of Quadtrees and Quality Triangulations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, number = 6 +, year = 1999 +, pages = "517--532" +, update = "00.03 held" } @inproceedings{bey-eedt-91i -, author = "M. Bern and D. Eppstein and F. Yao" -, title = "The expected extremes in a {Delaunay} triangulation" -, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 510 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "674--685" +, author = "M. Bern and D. Eppstein and F. Yao" +, title = "The expected extremes in a {Delaunay} triangulation" +, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 510 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "674--685" } @article{bey-eedt-91a -, author = "M. Bern and D. Eppstein and F. Yao" -, title = "The expected extremes in a {Delaunay} triangulation" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, year = 1991 -, pages = "79--91" -, keywords = "Delaunay triangulation, probabilistic analysis" +, author = "M. Bern and D. Eppstein and F. Yao" +, title = "The expected extremes in a {Delaunay} triangulation" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, year = 1991 +, pages = "79--91" +, keywords = "Delaunay triangulation, probabilistic analysis" } @techreport{bg-dpd-91 -, author = "M. Bern and J. Gilbert" -, title = "Drawing the planar dual" -, type = "Manuscript" -, year = 1991 -, update = "97.11 bibrelex" +, author = "M. Bern and J. Gilbert" +, title = "Drawing the planar dual" +, type = "Manuscript" +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{bgrs-olalc-90 -, author = "M. Bern and D. Greene and A. Raghunathan and M. Sudan" -, title = "Online Algorithms for Locating Checkpoints" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "359--368" -, update = "95.01 smid, 93.09 milone+mitchell" +, author = "M. Bern and D. Greene and A. Raghunathan and M. Sudan" +, title = "Online Algorithms for Locating Checkpoints" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "359--368" +, update = "95.01 smid, 93.09 milone+mitchell" } @inproceedings{bh-cfo-96 -, author = "Marshall Bern and Barry Hayes" -, title = "The complexity of flat origami" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "175--183" -, keywords = "NP-hardness, crease patterns, flat folding, flat foldability" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Marshall Bern and Barry Hayes" +, title = "The complexity of flat origami" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "175--183" +, keywords = "NP-hardness, crease patterns, flat folding, flat foldability" +, update = "96.09 agarwal, 96.01 mitchell" } @inproceedings{bmr-lsntp-94 -, author = "M. Bern and S. Mitchell and J. Ruppert" -, title = "Linear-Size Nonobtuse Triangulation of Polygons" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "221--230" -, cites = "agss-ltacv-89, ba-acfem-76, bgr-ntp-88, b-pug-90, bs-dsp1s-80, bcer-dbmgh-93, bde-tpwla-92, be-psntp-92, be-mgot-92t, beg-pgmg-90, c-ig-61, et-ubcdt-93, f-savd-87, goy-cvdsl-93, -mrg-92, ms-cinap-92, m-rtpsl-93, m-fctwm-94, m-pabst-93, mkf-arbam-92, ps-cgi-85, r-cag-61, r-nsaq2-93, sg-cmpbf-92, sf-afem-73, t-pssug-90, v-sfepw-93, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "M. Bern and S. Mitchell and J. Ruppert" +, title = "Linear-Size Nonobtuse Triangulation of Polygons" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "221--230" +, cites = "agss-ltacv-89, ba-acfem-76, bgr-ntp-88, b-pug-90, bs-dsp1s-80, bcer-dbmgh-93, bde-tpwla-92, be-psntp-92, be-mgot-92t, beg-pgmg-90, c-ig-61, et-ubcdt-93, f-savd-87, goy-cvdsl-93, -mrg-92, ms-cinap-92, m-rtpsl-93, m-fctwm-94, m-pabst-93, mkf-arbam-92, ps-cgi-85, r-cag-61, r-nsaq2-93, sg-cmpbf-92, sf-afem-73, t-pssug-90, v-sfepw-93, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @incollection{bp-mg-00 -, author = "Marshall Bern and Paul Plassmann" -, title = "Mesh Generation" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "291--332" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 6 of su-hcg-00" +, author = "Marshall Bern and Paul Plassmann" +, title = "Mesh Generation" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "291--332" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 6 of su-hcg-00" } @inproceedings{bs-pdtcm-96 -, author = "Marshall Bern and Amit Sahai" -, title = "Pushing Disks Together -- {The} Continuous-Motion Case" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '96" -, year = 1996 -, pages = "119--125" -, update = "00.03 smid, 98.07 bibrelex, 98.03 mitchell" +, author = "Marshall Bern and Amit Sahai" +, title = "Pushing Disks Together -- {The} Continuous-Motion Case" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '96" +, year = 1996 +, pages = "119--125" +, update = "00.03 smid, 98.07 bibrelex, 98.03 mitchell" } @article{bs-pdtcm-98 -, author = "Marshall Bern and Amit Sahai" -, title = "Pushing Disks Together -- {The} Continuous-Motion Case" -, journal = "Discrete Comput. Geom." -, volume = 20 -, year = 1998 -, pages = "499--514" -, update = "01.07 orourke" +, author = "Marshall Bern and Amit Sahai" +, title = "Pushing Disks Together -- {The} Continuous-Motion Case" +, journal = "Discrete Comput. Geom." +, volume = 20 +, year = 1998 +, pages = "499--514" +, update = "01.07 orourke" } @inproceedings{b-tprrs-86 -, author = "M. W. Bern" -, title = "Two probabilistic results on rectilinear {Steiner} trees" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "433--441" -, precedes = "b-tprrs-88" +, author = "M. W. Bern" +, title = "Two probabilistic results on rectilinear {Steiner} trees" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "433--441" +, precedes = "b-tprrs-88" } @article{b-tprrs-88 -, author = "M. W. Bern" -, title = "Two probabilistic results on rectilinear {Steiner} trees" -, journal = "Algorithmica" -, volume = 3 -, year = 1988 -, pages = "191--204" -, succeeds = "b-tprrs-86" +, author = "M. W. Bern" +, title = "Two probabilistic results on rectilinear {Steiner} trees" +, journal = "Algorithmica" +, volume = 3 +, year = 1988 +, pages = "191--204" +, succeeds = "b-tprrs-86" } @inproceedings{bkrs-fgatg-89 -, author = "M. W. Bern and H. J. Karloff and P. Raghavan and B. Schieber" -, title = "Fast geometric approximation techniques and geometric embedding problems" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "292--301" -, precedes = "bkrs-fgatg-92" -, cites = "aa-pcaap-88, bfp-aach-82, bb-gweto-87, cf-shvd-88, c-wcanh-76, c-lat-84, ft-fhtui-87, ggj-sncgp-76, gj-cigtn-79, h-aagep-89, ll-wsisa-85, py-crstp-82, ps-cgi-85, s-a-83, sy-lbcft-76, v-ghm-88, v-amwmp-89, ekz-diepq-77, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "M. W. Bern and H. J. Karloff and P. Raghavan and B. Schieber" +, title = "Fast geometric approximation techniques and geometric embedding problems" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "292--301" +, precedes = "bkrs-fgatg-92" +, cites = "aa-pcaap-88, bfp-aach-82, bb-gweto-87, cf-shvd-88, c-wcanh-76, c-lat-84, ft-fhtui-87, ggj-sncgp-76, gj-cigtn-79, h-aagep-89, ll-wsisa-85, py-crstp-82, ps-cgi-85, s-a-83, sy-lbcft-76, v-ghm-88, v-amwmp-89, ekz-diepq-77, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{bkrs-fgatg-92 -, author = "Marshall W. Bern and Howard J. Karloff and Prabhakar Raghavan and Baruch Schieber" -, title = "Fast Geometric Approximation Techniques and Geometric Embedding Problems" -, journal = "Theoret. Comput. Sci." -, volume = 106 -, number = 2 -, month = dec -, year = 1992 -, pages = "265--281" -, succeeds = "bkrs-fgatg-89" -, update = "98.03 mitchell" +, author = "Marshall W. Bern and Howard J. Karloff and Prabhakar Raghavan and Baruch Schieber" +, title = "Fast Geometric Approximation Techniques and Geometric Embedding Problems" +, journal = "Theoret. Comput. Sci." +, volume = 106 +, number = 2 +, month = dec +, year = 1992 +, pages = "265--281" +, succeeds = "bkrs-fgatg-89" +, update = "98.03 mitchell" } @techreport{b-el3dv-90 -, author = "J. Bernal" -, title = "An Expected Linear 3-Dimensional {Voronoi} Diagram Algorithm" -, number = "NISTIR 4340" -, institution = "National Inst. of Standards and Technology" -, address = "Gaithersburg, MD" -, month = jun -, year = 1990 -, keywords = "Voronoi diagram, expected complexity, expected linear" -, update = "94.09 bernal" -, abstract = "Let S be a set of n sites chosen independently from +, author = "J. Bernal" +, title = "An Expected Linear 3-Dimensional {Voronoi} Diagram Algorithm" +, number = "NISTIR 4340" +, institution = "National Inst. of Standards and Technology" +, address = "Gaithersburg, MD" +, month = jun +, year = 1990 +, keywords = "Voronoi diagram, expected complexity, expected linear" +, update = "94.09 bernal" +, abstract = "Let S be a set of n sites chosen independently from a uniform distribution in a cube in 3-dimensional Euclidean space. In this paper, an expected O(n) algorithm for constructing the Voronoi diagram @@ -20172,65 +20172,65 @@ @techreport{b-el3dv-90 } @techreport{b-bnvd -, author = "J. Bernal" -, title = "Bibliographic notes on {Voronoi} diagrams" -, institution = "National Institute of Standards and Technology" -, address = "Gaithersburg, MD 20899" -, year = 1992 -, update = "00.03 bibrelex" +, author = "J. Bernal" +, title = "Bibliographic notes on {Voronoi} diagrams" +, institution = "National Institute of Standards and Technology" +, address = "Gaithersburg, MD 20899" +, year = 1992 +, update = "00.03 bibrelex" } @techreport{b-cdtsc-88 -, author = "J. Bernal" -, title = "Constructing {Delaunay} Triangulations For Sets Constrained By Line Segments" -, number = "NIST/TN-1252" -, institution = "Mathematical Analysis Div., National Inst. of Standards and Technology (NEL)" -, address = "Gaithersburg, MD" -, month = sep -, year = 1988 -, keywords = "Delaunay triangulations, ntiscomnbs" -, abstract = "In the paper, the authors propose a simple algorithm - for constructing a Delaunay triangulation for a finite - set of points in the plane constrained by a finite - collection of line segments. The algorithm constructs - first a Delaunay triangulation for the set, and then - generates from it a sequence of triangulations as each - line segment is incorporated into the previously - obtained triangulation. An expected time analysis shows - the algorithm to be linear if the number of line - segments is kept constant." +, author = "J. Bernal" +, title = "Constructing {Delaunay} Triangulations For Sets Constrained By Line Segments" +, number = "NIST/TN-1252" +, institution = "Mathematical Analysis Div., National Inst. of Standards and Technology (NEL)" +, address = "Gaithersburg, MD" +, month = sep +, year = 1988 +, keywords = "Delaunay triangulations, ntiscomnbs" +, abstract = "In the paper, the authors propose a simple algorithm + for constructing a Delaunay triangulation for a finite + set of points in the plane constrained by a finite + collection of line segments. The algorithm constructs + first a Delaunay triangulation for the set, and then + generates from it a sequence of triangulations as each + line segment is incorporated into the previously + obtained triangulation. An expected time analysis shows + the algorithm to be linear if the number of line + segments is kept constant." } @techreport{b-eooac-87 -, author = "J. Bernal" -, title = "Expected ${O}({N})$ And ${O}({N}^{4/3})$ Algorithms For Constructing {Voronoi} Diagrams In Two And Three Dimensions" -, number = "NBSIR-87/3679" -, institution = "National Bureau of Standards (NEL), Gaithersburg, MD. Mathematical Analysis Div." -, month = nov -, year = 1987 -, keywords = "Voronoi diagrams, computational geometry, computational complexity, two dimensional, three dimensional, ntiscomnbs" -, abstract = "Bentley, Weide and Yao have proposed an expected O(N) - cell technique for computing Voronoi diagrams in two - dimensions that does not generalize readily to three. - In this paper their work is further developed and - generalized to produce expected O(N) and O(N sup 4/3) - algorithms for constructing Voronoi diagrams in two and - three dimensions, respectively. Computational - experience is presented for the algorithm in two - dimensions." +, author = "J. Bernal" +, title = "Expected ${O}({N})$ And ${O}({N}^{4/3})$ Algorithms For Constructing {Voronoi} Diagrams In Two And Three Dimensions" +, number = "NBSIR-87/3679" +, institution = "National Bureau of Standards (NEL), Gaithersburg, MD. Mathematical Analysis Div." +, month = nov +, year = 1987 +, keywords = "Voronoi diagrams, computational geometry, computational complexity, two dimensional, three dimensional, ntiscomnbs" +, abstract = "Bentley, Weide and Yao have proposed an expected O(N) + cell technique for computing Voronoi diagrams in two + dimensions that does not generalize readily to three. + In this paper their work is further developed and + generalized to produce expected O(N) and O(N sup 4/3) + algorithms for constructing Voronoi diagrams in two and + three dimensions, respectively. Computational + experience is presented for the algorithm in two + dimensions." } @techreport{b-ec3dv-90 -, author = "J. Bernal" -, title = "On the Expected Complexity of the 3-Dimensional {Voronoi} Diagram" -, number = "NISTIR 4321" -, institution = "National Inst. of Standards and Technology" -, address = "Gaithersburg, MD" -, month = may -, year = 1990 -, keywords = "Voronoi diagram, expected complexity, expected linear" -, update = "94.09 bernal" -, abstract = "Let S be a set of n sites chosen independently from +, author = "J. Bernal" +, title = "On the Expected Complexity of the 3-Dimensional {Voronoi} Diagram" +, number = "NISTIR 4321" +, institution = "National Inst. of Standards and Technology" +, address = "Gaithersburg, MD" +, month = may +, year = 1990 +, keywords = "Voronoi diagram, expected complexity, expected linear" +, update = "94.09 bernal" +, abstract = "Let S be a set of n sites chosen independently from a uniform distribution in a cube in 3-dimensional Euclidean space. In this paper, work by Bentley, Weide and Yao is extended to show that the Voronoi @@ -20242,223 +20242,223 @@ @techreport{b-ec3dv-90 % ### title? @article{bf-2grph-67 -, author = "J. D. Bernal and J. L. Finney" -, title = "{II}. Geometry of Random Packing of Hard Spheres" -, journal = "Discussions of the Faraday Society" -, volume = 43 -, year = 1967 -, pages = "62--69" -, annote = "VD (in 3D) used as model of liquid. Calc stats, number - of neighbours, face distributions. Algorithm: $O(n^4)$ - all combinations of four centres near target point." +, author = "J. D. Bernal and J. L. Finney" +, title = "{II}. Geometry of Random Packing of Hard Spheres" +, journal = "Discussions of the Faraday Society" +, volume = 43 +, year = 1967 +, pages = "62--69" +, annote = "VD (in 3D) used as model of liquid. Calc stats, number + of neighbours, face distributions. Algorithm: $O(n^4)$ + all combinations of four centres near target point." } @inproceedings{b-adg-81 -, author = "M. A. Bernard" -, title = "On the Automated Drawing of Graphs" -, booktitle = "Proc. 3rd Caribbean Conf. on Combinatorics and Computing" -, year = 1981 -, pages = "43--55" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. A. Bernard" +, title = "On the Automated Drawing of Graphs" +, booktitle = "Proc. 3rd Caribbean Conf. on Combinatorics and Computing" +, year = 1981 +, pages = "43--55" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{bb-srmua-97t -, author = "F. Bernardini and C. Bajaj" -, title = "Sampling and reconstructing manifolds using alpha-shapes" -, type = "Technical {Report}" -, number = "CSD-TR-97-013" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1997 -, update = "98.07 bibrelex" +, author = "F. Bernardini and C. Bajaj" +, title = "Sampling and reconstructing manifolds using alpha-shapes" +, type = "Technical {Report}" +, number = "CSD-TR-97-013" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1997 +, update = "98.07 bibrelex" } @techreport{bbcs-ar3dc-97 -, author = "F. Bernardini and C. Bajaj and J. Chen and D. Schikore" -, title = "Automatic reconstruction of $3${D} {CAD} models from digital scans" -, type = "Technical {Report}" -, number = "CSD-TR-97-012" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1997 -, update = "98.07 bibrelex" +, author = "F. Bernardini and C. Bajaj and J. Chen and D. Schikore" +, title = "Automatic reconstruction of $3${D} {CAD} models from digital scans" +, type = "Technical {Report}" +, number = "CSD-TR-97-012" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1997 +, update = "98.07 bibrelex" } @inproceedings{bbcs-tborm-97 -, author = "F. Bernardini and C. Bajaj and J. Chen and D. Schikore" -, title = "Triangulation-Based Object Reconstruction Methods" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "481--484" -, keywords = "video review" -, cites = "bbx-arssf-95, bbx-rsfsu-97, bcx-mcap-95, bs-ebrtm-96, bb-srmua-97t, bbcs-ar3dc-97, b-gstds-84, em-tdas-94, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "F. Bernardini and C. Bajaj and J. Chen and D. Schikore" +, title = "Triangulation-Based Object Reconstruction Methods" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "481--484" +, keywords = "video review" +, cites = "bbx-arssf-95, bbx-rsfsu-97, bcx-mcap-95, bs-ebrtm-96, bb-srmua-97t, bbcs-ar3dc-97, b-gstds-84, em-tdas-94, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{bb-srmua-97 -, author = "Fausto Bernardini and Chandrajit L. Bajaj" -, title = "Sampling and Reconstructing Manifolds Using Alpha--Shapes" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "193--198" -, update = "97.11 jones" +, author = "Fausto Bernardini and Chandrajit L. Bajaj" +, title = "Sampling and Reconstructing Manifolds Using Alpha--Shapes" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "193--198" +, update = "97.11 jones" } @article{bbcs-ar3dc-99 -, author = "F. Bernardini and C. L. Bajaj and J. Chen and D. R. Schikore" -, title = "Automatic reconstruction of $3${D} {CAD} models from digital scans" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, year = 1999 -, pages = "327--369" -, update = "00.03 smid" +, author = "F. Bernardini and C. L. Bajaj and J. Chen and D. R. Schikore" +, title = "Automatic reconstruction of $3${D} {CAD} models from digital scans" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, year = 1999 +, pages = "327--369" +, update = "00.03 smid" } @inproceedings{bfp-cfcss-92 -, author = "Fausto Bernardini and Vincenzo Ferrucci and Alberto Paoluzzi" -, title = "Computation of Free Configuration Space by Solid Modelling Techniques" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "13--16" -, update = "00.03 bibrelex" +, author = "Fausto Bernardini and Vincenzo Ferrucci and Alberto Paoluzzi" +, title = "Computation of Free Configuration Space by Solid Modelling Techniques" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "13--16" +, update = "00.03 bibrelex" } @article{bmrst-bpasr-99 -, author = "F. Bernardini and J. Mittleman and H. Rushmeir and C. Silva and G. Taubin" -, title = "The ball-pivoting algorithm for surface reconstruction" -, journal = "IEEE Transactions on Visualization and Computer Graphics" -, volume = 5 -, number = 4 -, year = 1999 -, pages = "" -, update = "01.07 devillers" +, author = "F. Bernardini and J. Mittleman and H. Rushmeir and C. Silva and G. Taubin" +, title = "The ball-pivoting algorithm for surface reconstruction" +, journal = "IEEE Transactions on Visualization and Computer Graphics" +, volume = 5 +, number = 4 +, year = 1999 +, pages = "" +, update = "01.07 devillers" } @article{bk-btg-79 -, author = "F. Bernhart and P. C. Kainen" -, title = "The book thickness of a graph" -, journal = "J. Combin. Theory" -, volume = "Ser. B 27" -, year = 1979 -, pages = "320--331" -, update = "98.07 bibrelex" +, author = "F. Bernhart and P. C. Kainen" +, title = "The book thickness of a graph" +, journal = "J. Combin. Theory" +, volume = "Ser. B 27" +, year = 1979 +, pages = "320--331" +, update = "98.07 bibrelex" } @article{bkwmbrkst-pdbcb-77 -, author = "F. C. Bernstein and T. F. Koetzle and G. J. B. Williams and E. F. {Meyer, Jr.} and M. D. Brice and J. R. Rodgers and O. Kennard and T. Shimanouchi and M. Tasumi" -, title = "The protein data bank: {A} computer based archival file for macromolecular structure" -, journal = "J. Molecular Biology" -, volume = 112 -, year = 1977 -, pages = "535--542" -, update = "98.03 bibrelex" +, author = "F. C. Bernstein and T. F. Koetzle and G. J. B. Williams and E. F. {Meyer, Jr.} and M. D. Brice and J. R. Rodgers and O. Kennard and T. Shimanouchi and M. Tasumi" +, title = "The protein data bank: {A} computer based archival file for macromolecular structure" +, journal = "J. Molecular Biology" +, volume = 112 +, year = 1977 +, pages = "535--542" +, update = "98.03 bibrelex" } @article{b-dscns-86 -, author = "H. J. Bernstein" -, title = "Determining the shape of a convex $n$-sided polygon by using $2n+k$ tactile probes" -, journal = "Inform. Process. Lett." -, volume = 22 -, year = 1986 -, pages = "255--260" +, author = "H. J. Bernstein" +, title = "Determining the shape of a convex $n$-sided polygon by using $2n+k$ tactile probes" +, journal = "Inform. Process. Lett." +, volume = 22 +, year = 1986 +, pages = "255--260" } @techreport{b-dscns-84 -, author = "H. J. Bernstein" -, title = "Determining the Shape of a Convex $n$-Sided Polygon Using $2n+k$ Tactile Probes" -, type = "Technical {Report}" -, number = 125 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, month = jun -, year = 1984 -, note = "Robotics Report No. 29" -, update = "98.03 bibrelex" +, author = "H. J. Bernstein" +, title = "Determining the Shape of a Convex $n$-Sided Polygon Using $2n+k$ Tactile Probes" +, type = "Technical {Report}" +, number = 125 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, month = jun +, year = 1984 +, note = "Robotics Report No. 29" +, update = "98.03 bibrelex" } @inproceedings{bgos-fdcpp-97 -, author = "R.-P. Berretty and K. Goldberg and M. Overmars and F. Van der Stappen" -, title = "On fence design and the complexity of push plans for orienting parts" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "21--29" -, cites = "aks-cdorp-95, ahlm-spfoj-96, am-ppopp-92, afkmnsu-ampcb-92, bbg-smutv-95, bdm-ulbpv-96, bpg-cfpa-93, ci-copod-95, clr-ia-90, b-lsbsp-95, em-esm-88, g-oppws-93, kos-ehsro-92, lm-spmcp-96, m-mgpo-82, mpssw-ftdlm-94, n-aaadp-86, os-rsplf-96, ps-mpsw-88, ps-prmsw-88, rg-mapp-95, sgo-gecmp-96, sho-cfsrm-93, so-mpafo-94, wgpb-cadpf-96, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex, 97.07 efrat" +, author = "R.-P. Berretty and K. Goldberg and M. Overmars and F. Van der Stappen" +, title = "On fence design and the complexity of push plans for orienting parts" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "21--29" +, cites = "aks-cdorp-95, ahlm-spfoj-96, am-ppopp-92, afkmnsu-ampcb-92, bbg-smutv-95, bdm-ulbpv-96, bpg-cfpa-93, ci-copod-95, clr-ia-90, b-lsbsp-95, em-esm-88, g-oppws-93, kos-ehsro-92, lm-spmcp-96, m-mgpo-82, mpssw-ftdlm-94, n-aaadp-86, os-rsplf-96, ps-mpsw-88, ps-prmsw-88, rg-mapp-95, sgo-gecmp-96, sho-cfsrm-93, so-mpafo-94, wgpb-cadpf-96, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex, 97.07 efrat" } @article{bgos-cfdop-98 -, author = "Robert-Paul Berretty and Ken Goldberg and Mark H. Overmars and A. Frank van der Stappen" -, title = "Computing fence designs for orienting parts" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "249--262" -, succeeds = "bgos-fdcpp-97" -, update = "98.11 devillers" +, author = "Robert-Paul Berretty and Ken Goldberg and Mark H. Overmars and A. Frank van der Stappen" +, title = "Computing fence designs for orienting parts" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "249--262" +, succeeds = "bgos-fdcpp-97" +, update = "98.11 devillers" } @techreport{bos-dmpld-97b -, author = "R.-P. Berretty and M. Overmars and A. F. van der Stappen" -, title = "Dynamic motion planning in low density environments" -, type = "Report" -, number = "UU-CS-1997-20" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1997 -, update = "97.11 oostrum" +, author = "R.-P. Berretty and M. Overmars and A. F. van der Stappen" +, title = "Dynamic motion planning in low density environments" +, type = "Report" +, number = "UU-CS-1997-20" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1997 +, update = "97.11 oostrum" } @inproceedings{bos-dmpld-97 -, author = "R.-P. Berretty and M. Overmars and A. F. van der Stappen" -, title = "Dynamic motion planning in low obstacle density environments" -, booktitle = "Proc. Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "3--16" -, update = "99.11 bibrelex, 99.07 bibrelex, 98.07 bibrelex+smid, 97.11 oostrum" +, author = "R.-P. Berretty and M. Overmars and A. F. van der Stappen" +, title = "Dynamic motion planning in low obstacle density environments" +, booktitle = "Proc. Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "3--16" +, update = "99.11 bibrelex, 99.07 bibrelex, 98.07 bibrelex+smid, 97.11 oostrum" } @inproceedings{bdgss-gdml-97 -, author = "Jonathan Berry and Nathaniel Dean and Mark Goldberg and Gregory Shannon and Steven Skiena" -, title = "Graph Drawing and Manipulation with {LINK}" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "425--437" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Jonathan Berry and Nathaniel Dean and Mark Goldberg and Gregory Shannon and Steven Skiena" +, title = "Graph Drawing and Manipulation with {LINK}" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "425--437" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @book{b-bmcai-93 -, author = "Joseph K. Berry" -, title = "Beyond Mapping: Concepts, Algorithms, and Issues in GIS" -, publisher = "GIS World" -, address = "Fort Collins, CO" -, year = 1993 -, isbn = "0-9625063-6-2" -, update = "95.09 mitchell" +, author = "Joseph K. Berry" +, title = "Beyond Mapping: Concepts, Algorithms, and Issues in GIS" +, publisher = "GIS World" +, address = "Fort Collins, CO" +, year = 1993 +, isbn = "0-9625063-6-2" +, update = "95.09 mitchell" } @techreport{brv-ipam-89 -, author = "Patrice Bertin and Didier Roncin and Jean Vuillemin" -, title = "Introduction to programmable active memories" -, type = "Research Report" -, number = 3 -, institution = "Digital Paris Research Laboratory" -, month = jun -, year = 1989 -, update = "98.11 bibrelex" +, author = "Patrice Bertin and Didier Roncin and Jean Vuillemin" +, title = "Introduction to programmable active memories" +, type = "Research Report" +, number = 3 +, institution = "Digital Paris Research Laboratory" +, month = jun +, year = 1989 +, update = "98.11 bibrelex" } @article{bg-sfche-89 @@ -20471,538 +20471,538 @@ @article{bg-sfche-89 } @techreport{bcdtt-hdspd-92t -, author = "P. Bertolazzi and R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "How to Draw a Series-Parallel Digraph" -, type = "Technical Report" -, number = "UTDCS-9-92" -, institution = "The University of Texas at Dallas" -, year = 1992 -, succeeds = "bcdtt-hdspd-92, bdtt-hdspd-91" -, precedes = "bcdtt-hdspd-94, bcdtt-hdspd-92" -, update = "98.11 bibrelex" +, author = "P. Bertolazzi and R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "How to Draw a Series-Parallel Digraph" +, type = "Technical Report" +, number = "UTDCS-9-92" +, institution = "The University of Texas at Dallas" +, year = 1992 +, succeeds = "bcdtt-hdspd-92, bdtt-hdspd-91" +, precedes = "bcdtt-hdspd-94, bcdtt-hdspd-92" +, update = "98.11 bibrelex" } @inproceedings{bcdtt-hdspd-92 -, author = "P. Bertolazzi and R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "How to Draw a Series-Parallel Digraph" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "272--283" -, keywords = "graph drawing" -, succeeds = "bdtt-hdspd-91,bcdtt-hdspd-92t" -, precedes = "bcdtt-hdspd-94" -, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 tamassia" +, author = "P. Bertolazzi and R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "How to Draw a Series-Parallel Digraph" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "272--283" +, keywords = "graph drawing" +, succeeds = "bdtt-hdspd-91,bcdtt-hdspd-92t" +, precedes = "bcdtt-hdspd-94" +, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 tamassia" } @article{bcdtt-hdspd-94 -, author = "P. Bertolazzi and R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "How to Draw a Series-Parallel Digraph" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "385--402" -, keywords = "graph drawing, planar, upward" -, succeeds = "bcdtt-hdspd-92, bdtt-hdspd-91, bcdtt-hdspd-92t" -, update = "98.11 bibrelex, 98.03 bibrelex, 95.05 tamassia" +, author = "P. Bertolazzi and R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "How to Draw a Series-Parallel Digraph" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "385--402" +, keywords = "graph drawing, planar, upward" +, succeeds = "bcdtt-hdspd-92, bdtt-hdspd-91, bcdtt-hdspd-92t" +, update = "98.11 bibrelex, 98.03 bibrelex, 95.05 tamassia" } @inproceedings{bd-udttd-91 -, author = "P. Bertolazzi and G. {Di Battista}" -, title = "On upward drawing testing of triconnected digraphs" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "272--280" -, keywords = "graph drawing, planar graph representation" -, cites = "b-g-85, bl-tcopi-76, cnao-laepg-85, fr-dfscp-82, dlr-bgudp-90, dt-aprad-88, dt-ipt-89, dtt-arsdd-89, et-adgab-89, e-ga-79, ht-ept-74, hl-updss-91, jnr-dippl-87, k-fpos-87, kr-pl-75, lec-aptg-67, lp-mt-86, nc-pgta-88, p-plpg-76, ru-roptc-88, s-oamnf-80, t-eggmn-87, t-paog-89, tm-dpp-77, ZZZ" -, update = "97.11 bibrelex, 93.09 tamassia" +, author = "P. Bertolazzi and G. {Di Battista}" +, title = "On upward drawing testing of triconnected digraphs" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "272--280" +, keywords = "graph drawing, planar graph representation" +, cites = "b-g-85, bl-tcopi-76, cnao-laepg-85, fr-dfscp-82, dlr-bgudp-90, dt-aprad-88, dt-ipt-89, dtt-arsdd-89, et-adgab-89, e-ga-79, ht-ept-74, hl-updss-91, jnr-dippl-87, k-fpos-87, kr-pl-75, lec-aptg-67, lp-mt-86, nc-pgta-88, p-plpg-76, ru-roptc-88, s-oamnf-80, t-eggmn-87, t-paog-89, tm-dpp-77, ZZZ" +, update = "97.11 bibrelex, 93.09 tamassia" } @inproceedings{bdd-codmn-97 -, author = "Paola Bertolazzi and Giuseppe {Di Battista} and Walter Didimo" -, title = "Computing Orthogonal Drawings with the Minimum Number of Bends" -, editor = "Frank Dehne and Andrew Rau-Chaplin and J{\"o}rg-R{\"u}diger Sack and Roberto Tamassia" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "331--344" -, update = "99.07 bibrelex, 98.07 patrignani+tamassia+vismara" +, author = "Paola Bertolazzi and Giuseppe {Di Battista} and Walter Didimo" +, title = "Computing Orthogonal Drawings with the Minimum Number of Bends" +, editor = "Frank Dehne and Andrew Rau-Chaplin and J{\"o}rg-R{\"u}diger Sack and Roberto Tamassia" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "331--344" +, update = "99.07 bibrelex, 98.07 patrignani+tamassia+vismara" } @inproceedings{bdd-qup-98 -, author = "Paola Bertolazzi and Giuseppe {Di Battista} and Walter Didimo" -, title = "Quasi-Upward Planarity" -, editor = "S. H. Whitesides" -, booktitle = "Graph Drawing (Proc. GD '98)" -, series = "Lecture Notes Comput. Sci." -, volume = 1547 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "15--29" -, keywords = "graph drawing, upward" -, update = "99.03 patrignani" +, author = "Paola Bertolazzi and Giuseppe {Di Battista} and Walter Didimo" +, title = "Quasi-Upward Planarity" +, editor = "S. H. Whitesides" +, booktitle = "Graph Drawing (Proc. GD '98)" +, series = "Lecture Notes Comput. Sci." +, volume = 1547 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "15--29" +, keywords = "graph drawing, upward" +, update = "99.03 patrignani" } @techreport{bdl-pgd-92 -, author = "P. Bertolazzi and G. {Di Battista} and G. Liotta" -, title = "Parametric Graph Drawing" -, type = "Technical Report" -, number = "6/67" -, institution = "IASI--CNR, Rome, Italy" -, year = 1992 -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "P. Bertolazzi and G. {Di Battista} and G. Liotta" +, title = "Parametric Graph Drawing" +, type = "Technical Report" +, number = "6/67" +, institution = "IASI--CNR, Rome, Italy" +, year = 1992 +, keywords = "graph drawing" +, update = "95.01 tamassia" } @article{bdl-pgd-95 -, author = "P. Bertolazzi and G. {Di Battista} and G. Liotta" -, title = "Parametric Graph Drawing" -, journal = "IEEE Trans. Softw. Eng." -, volume = 21 -, number = 8 -, year = 1995 -, pages = "662--673" -, keywords = "graph drawing, system" -, update = "96.01 liotta" +, author = "P. Bertolazzi and G. {Di Battista} and G. Liotta" +, title = "Parametric Graph Drawing" +, journal = "IEEE Trans. Softw. Eng." +, volume = 21 +, number = 8 +, year = 1995 +, pages = "662--673" +, keywords = "graph drawing, system" +, update = "96.01 liotta" } @article{bdlm-udtd-94 -, author = "P. Bertolazzi and G. {Di Battista} and G. Liotta and C. Mannino" -, title = "Upward Drawings of Triconnected Digraphs" -, journal = "Algorithmica" -, volume = 6 -, number = 12 -, year = 1994 -, pages = "476--497" -, keywords = "graph drawing, upward, planar" -, update = "96.01 liotta" +, author = "P. Bertolazzi and G. {Di Battista} and G. Liotta and C. Mannino" +, title = "Upward Drawings of Triconnected Digraphs" +, journal = "Algorithmica" +, volume = 6 +, number = 12 +, year = 1994 +, pages = "476--497" +, keywords = "graph drawing, upward, planar" +, update = "96.01 liotta" } @incollection{bdmt-oupts-93 -, author = "P. Bertolazzi and G. {Di Battista} and C. Mannino and R. Tamassia" -, title = "Optimal Upward Planarity Testing of Single-Source Digraphs" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "37--48" -, update = "94.01 smid+tamassia, 93.09 milone+mitchell" +, author = "P. Bertolazzi and G. {Di Battista} and C. Mannino and R. Tamassia" +, title = "Optimal Upward Planarity Testing of Single-Source Digraphs" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "37--48" +, update = "94.01 smid+tamassia, 93.09 milone+mitchell" } @article{bdmt-oupts-98 -, author = "P. Bertolazzi and G. {Di Battista} and C. Mannino and R. Tamassia" -, title = "Optimal Upward Planarity Testing of Single-Source Digraphs" -, journal = "SIAM J. Comput." -, volume = 27 -, number = 1 -, year = 1998 -, pages = "132--169" -, keywords = "graph drawing, upward, planar" -, update = "98.07 tamassia" +, author = "P. Bertolazzi and G. {Di Battista} and C. Mannino and R. Tamassia" +, title = "Optimal Upward Planarity Testing of Single-Source Digraphs" +, journal = "SIAM J. Comput." +, volume = 27 +, number = 1 +, year = 1998 +, pages = "132--169" +, keywords = "graph drawing, upward, planar" +, update = "98.07 tamassia" } @misc{bdtt-hdspd-91 -, author = "P. Bertolazzi and G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "How to Draw a Series-Parallel Digraph" -, year = 1991 -, note = "manuscript" -, precedes = "bcdtt-hdspd-92, bcdtt-hdspd-94, bcdtt-hdspd-92t" -, update = "98.11 bibrelex, 98.03 bibrelex, 97.11 bibrelex" +, author = "P. Bertolazzi and G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "How to Draw a Series-Parallel Digraph" +, year = 1991 +, note = "manuscript" +, precedes = "bcdtt-hdspd-92, bcdtt-hdspd-94, bcdtt-hdspd-92t" +, update = "98.11 bibrelex, 98.03 bibrelex, 97.11 bibrelex" } @incollection{bgs-pavpi-89 -, author = "P. Bertolazzi and C. Guerra and S. Salza" -, title = "A parallel algorithm for the visibility problem inside a simple polygon" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 399 -, year = 1989 -, pages = "65--71" -, keywords = "parallel computation, visibility" -, update = "95.05 korneenko" +, author = "P. Bertolazzi and C. Guerra and S. Salza" +, title = "A parallel algorithm for the visibility problem inside a simple polygon" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 399 +, year = 1989 +, pages = "65--71" +, keywords = "parallel computation, visibility" +, update = "95.05 korneenko" } @article{bsg-pavpp-90 -, author = "P. Bertolazzi and S. Salza and C. Guerra" -, title = "A parallel algorithm for the visibility problem from a point" -, journal = "J. Parallel Distrib. Comput." -, volume = 9 -, number = 1 -, year = 1990 -, pages = "11--14" -, keywords = "parallel computation, visibility" -, update = "95.09 korneenko, 95.05 korneenko" +, author = "P. Bertolazzi and S. Salza and C. Guerra" +, title = "A parallel algorithm for the visibility problem from a point" +, journal = "J. Parallel Distrib. Comput." +, volume = 9 +, number = 1 +, year = 1990 +, pages = "11--14" +, keywords = "parallel computation, visibility" +, update = "95.09 korneenko, 95.05 korneenko" } @inproceedings{bbd-ahc-93 -, author = "M. Bertolotto and E. Bruzzone and L. {De Floriani}" -, title = "Acyclic hierarchical cell complexes" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "279--284" -, cites = "fp-htbmt-92, mrl-tdugg-91, w-vomp-92," -, update = "98.11 bibrelex, 94.09 bernal, 93.09 milone+mitchell" +, author = "M. Bertolotto and E. Bruzzone and L. {De Floriani}" +, title = "Acyclic hierarchical cell complexes" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "279--284" +, cites = "fp-htbmt-92, mrl-tdugg-91, w-vomp-92," +, update = "98.11 bibrelex, 94.09 bernal, 93.09 milone+mitchell" } @article{b-pccp-88 -, author = "A. A. Bertossi" -, title = "Parallel circle-cover problem" -, journal = "Inform. Process. Lett." -, volume = 27 -, year = 1988 -, pages = "133--139" -, keywords = "parallel computation, circle, covering" -, update = "95.05 korneenko" +, author = "A. A. Bertossi" +, title = "Parallel circle-cover problem" +, journal = "Inform. Process. Lett." +, volume = 27 +, year = 1988 +, pages = "133--139" +, keywords = "parallel computation, circle, covering" +, update = "95.05 korneenko" } @article{bhl-ahp-00 -, author = "C. Bertram-Kretzberg and T. Hofmeister and H. Lefmann" -, title = "An algorithm for {Heilbronn's} problem" -, journal = "SIAM J. Comput." -, volume = 30 -, year = 2000 -, pages = "383--390" -, update = "01.07 smid" +, author = "C. Bertram-Kretzberg and T. Hofmeister and H. Lefmann" +, title = "An algorithm for {Heilbronn's} problem" +, journal = "SIAM J. Comput." +, volume = 30 +, year = 2000 +, pages = "383--390" +, update = "01.07 smid" } @article{bd-asmbh-94 -, author = "Y. Bertrand and J.-F. Dufourd" -, title = "Algebraic specification of a {3D}-Modeler Based on Hypermaps" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 56 -, year = 1994 -, pages = "29--60" -, update = "00.11 smid, 00.07 devillers" +, author = "Y. Bertrand and J.-F. Dufourd" +, title = "Algebraic specification of a {3D}-Modeler Based on Hypermaps" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 56 +, year = 1994 +, pages = "29--60" +, update = "00.11 smid, 00.07 devillers" } @book{b-colmm-82 -, author = "D. P. Bertsekas" -, title = "Constrained Optimization and {Lagrange} Multiplier Methods" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1982 -, update = "97.11 bibrelex" +, author = "D. P. Bertsekas" +, title = "Constrained Optimization and {Lagrange} Multiplier Methods" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1982 +, update = "97.11 bibrelex" } @book{bt-pdcnm-89 -, author = "D. P. Bertsekas and J. N. Tsitsiklis" -, title = "Parallel and distributed Computation: {Numerical} Methods" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1989 -, update = "98.03 bibrelex" +, author = "D. P. Bertsekas and J. N. Tsitsiklis" +, title = "Parallel and distributed Computation: {Numerical} Methods" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1989 +, update = "98.03 bibrelex" } @inproceedings{bg-ppcp-90 -, author = "D. J. Bertsimas and M. X. Goemans" -, title = "On the parsimonious property of connectivity problems" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "388--396" +, author = "D. J. Bertsimas and M. X. Goemans" +, title = "On the parsimonious property of connectivity problems" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "388--396" } @article{b-wcesc-89 -, author = "D. Bertzimas" -, title = "Worst-case examples for the spacefilling curve heuristics for the {Euclidean} {Travelling} {Salesman} {Problem}" -, journal = "Oper. Res. Lett." -, volume = 8 -, number = 5 -, year = 1989 -, pages = "241--244" -, keywords = "optimization" -, update = "97.11 icking, 95.05 korneenko" +, author = "D. Bertzimas" +, title = "Worst-case examples for the spacefilling curve heuristics for the {Euclidean} {Travelling} {Salesman} {Problem}" +, journal = "Oper. Res. Lett." +, volume = 8 +, number = 5 +, year = 1989 +, pages = "241--244" +, keywords = "optimization" +, update = "97.11 icking, 95.05 korneenko" } @article{b-sisal-74 -, author = "J. Besag" -, title = "Spatial interaction and the statistical analysis of lattice systems" -, journal = "J. Roy. Statist. Soc. Ser. B" -, volume = 36 -, year = 1974 -, pages = "192--236" +, author = "J. Besag" +, title = "Spatial interaction and the statistical analysis of lattice systems" +, journal = "J. Roy. Statist. Soc. Ser. B" +, volume = 36 +, year = 1974 +, pages = "192--236" } @inproceedings{bc-mca-85 -, author = "G. M. Beshers and R. H. Campbell" -, title = "Maintained and Constructor Attributes" -, booktitle = "Proc. ACM Symp. on Language Issues in Programming Environments" -, year = 1985 -, pages = "34--42" -, update = "96.01 tamassia" +, author = "G. M. Beshers and R. H. Campbell" +, title = "Maintained and Constructor Attributes" +, booktitle = "Proc. ACM Symp. on Language Issues in Programming Environments" +, year = 1985 +, pages = "34--42" +, update = "96.01 tamassia" } @article{b-kpso-28 -, author = "A. S. Besicovitch" -, title = "On {Kakeya's} problem and a similar one" -, journal = "Mathematische Zeitschrift" -, volume = 27 -, year = 1928 -, pages = "312--320" -, update = "97.11 bibrelex" +, author = "A. S. Besicovitch" +, title = "On {Kakeya's} problem and a similar one" +, journal = "Mathematische Zeitschrift" +, volume = 27 +, year = 1928 +, pages = "312--320" +, update = "97.11 bibrelex" } @book{b-igs-85 -, author = "N. M. Beskin" -, title = "Images of geometric solids" -, publisher = "Mir Publishers" -, address = "Moscow" -, year = 1985 -, update = "98.07 bibrelex" +, author = "N. M. Beskin" +, title = "Images of geometric solids" +, publisher = "Mir Publishers" +, address = "Moscow" +, year = 1985 +, update = "98.07 bibrelex" } @article{bj-tdor-85 -, author = "P. J. Besl and R. C. Jain" -, title = "Three-dimensional object recognition" -, journal = "ACM Comput. Surv." -, volume = 17 -, year = 1985 -, pages = "75--154" -, update = "97.11 bibrelex" +, author = "P. J. Besl and R. C. Jain" +, title = "Three-dimensional object recognition" +, journal = "ACM Comput. Surv." +, volume = 17 +, year = 1985 +, pages = "75--154" +, update = "97.11 bibrelex" } @article{b-eatdd-01 -, author = "S. N. Bespamyathnikh" -, title = "An efficient algorithm for the three-dimensional diameter problem" -, journal = "Discrete Comput. Geom." -, volume = 25 -, year = 2001 -, pages = "235--255" -, update = "02.03 smid" +, author = "S. N. Bespamyathnikh" +, title = "An efficient algorithm for the three-dimensional diameter problem" +, journal = "Discrete Comput. Geom." +, volume = 25 +, year = 2001 +, pages = "235--255" +, update = "02.03 smid" } @techreport{b-cmstt- -, author = "S. N. Bespamyathnikh" -, title = "Constructing Minimum Spanning Trees in {$R^k_\infty$} and triangulation of the k-Cube" -, type = "manuscript" -, update = "02.03 smid, 98.11 bibrelex" +, author = "S. N. Bespamyathnikh" +, title = "Constructing Minimum Spanning Trees in {$R^k_\infty$} and triangulation of the k-Cube" +, type = "manuscript" +, update = "02.03 smid, 98.11 bibrelex" } @unpublished{b-eaet-00 -, author = "Sergei Bespamyatnikh" -, title = "An Efficient Algorithm for Enumeration of Triangulations" -, year = 2000 -, note = "10th Annual Fall Workshop on Computational Geometry. +, author = "Sergei Bespamyatnikh" +, title = "An Efficient Algorithm for Enumeration of Triangulations" +, year = 2000 +, note = "10th Annual Fall Workshop on Computational Geometry. \url{http://www.cs.ubc.ca/~besp/cgw.ps.gz}" -, update = "01.11 pocchiola" +, update = "01.11 pocchiola" } @article{b-eatddp-00 -, author = "S. Bespamyatnikh" -, title = "An Efficient Algorithm for the Three-Dimensional Diameter Problem" -, journal = "Discrete Comput. Geom." -, volume = 25 -, number = 2 -, year = 2000 -, pages = "235--255" -, update = "02.03 bespamyatnikh" +, author = "S. Bespamyatnikh" +, title = "An Efficient Algorithm for the Three-Dimensional Diameter Problem" +, journal = "Discrete Comput. Geom." +, volume = 25 +, number = 2 +, year = 2000 +, pages = "235--255" +, update = "02.03 bespamyatnikh" } @inproceedings{b-eaf2l-99 -, author = "Sergei Bespamyatnikh" -, title = "Efficient Algorithm for Finding 2 Largest Empty Circles" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "37--38" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Sergei Bespamyatnikh" +, title = "Efficient Algorithm for Finding 2 Largest Empty Circles" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "37--38" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{bbkks-eacm-01 -, author = "S. Bespamyatnikh and B. Bhattacharya and M. Keil and D. Kirkpatrick and M. Segal" -, title = "Efficient algorithms for centers and medians in interval and circular-arc graphs" -, journal = "Networks" -, volume = "??" -, year = 2002 -, note = "to appear" -, update = "02.03 bespamyatnikh" +, author = "S. Bespamyatnikh and B. Bhattacharya and M. Keil and D. Kirkpatrick and M. Segal" +, title = "Efficient algorithms for centers and medians in interval and circular-arc graphs" +, journal = "Networks" +, volume = "??" +, year = 2002 +, note = "to appear" +, update = "02.03 bespamyatnikh" } @article{bkst-oflvd-00 -, author = "S. Bespamyatnikh and K. Kedem and M. Segal and A. Tamir" -, title = "Optimal facility location under various distance functions" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "523--534" -, update = "01.04 smid" +, author = "S. Bespamyatnikh and K. Kedem and M. Segal and A. Tamir" +, title = "Optimal facility location under various distance functions" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "523--534" +, update = "01.04 smid" } @article{bds-ghsces-00 -, author = "S. Bespamyatnikh and D. Kirkpatrick and J. Snoeyink" -, title = "Generalizing Ham Sandwich Cuts to Equitable Subdivisions" -, journal = "Discrete Comput. Geom." -, volume = 24 -, number = 4 -, year = 2000 -, pages = "605--622" -, update = "02.03 bespamyatnikh" +, author = "S. Bespamyatnikh and D. Kirkpatrick and J. Snoeyink" +, title = "Generalizing Ham Sandwich Cuts to Equitable Subdivisions" +, journal = "Discrete Comput. Geom." +, volume = 24 +, number = 4 +, year = 2000 +, pages = "605--622" +, update = "02.03 bespamyatnikh" } @inproceedings{bs-cspta-97 -, author = "Sergei Bespamyatnikh and Michael Segal" -, title = "Covering a Set of Points by Two Axis--Parallel Boxes" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "33--38" -, update = "97.11 jones" +, author = "Sergei Bespamyatnikh and Michael Segal" +, title = "Covering a Set of Points by Two Axis--Parallel Boxes" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "33--38" +, update = "97.11 jones" } @article{bs-qsvd-00 -, author = "S. Bespamyatnikh and J. Snoeyink" -, title = "Queries with Segments in {Voronoi} Diagrams" -, journal = "Comput. Geom. Theory Appl." -, volume = 16 -, number = 1 -, year = 2000 -, pages = "23--33" -, update = "02.03 bespamyatnikh" +, author = "S. Bespamyatnikh and J. Snoeyink" +, title = "Queries with Segments in {Voronoi} Diagrams" +, journal = "Comput. Geom. Theory Appl." +, volume = 16 +, number = 1 +, year = 2000 +, pages = "23--33" +, update = "02.03 bespamyatnikh" } @inproceedings{b-eatdd-98 -, author = "Sergei N. Bespamyatnikh" -, title = "An Efficient Algorithm for the Three-Dimensional Diameter Problem" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "137--146" -, update = "98.07 agarwal+mitchell" +, author = "Sergei N. Bespamyatnikh" +, title = "An Efficient Algorithm for the Three-Dimensional Diameter Problem" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "137--146" +, update = "98.07 agarwal+mitchell" } @inproceedings{b-oacpm-95 -, author = "Sergei N. Bespamyatnikh" -, title = "An Optimal Algorithm for Closest Pair Maintenance" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "152--161" -, keywords = "dynamic closest pair" -, cites = "am-annqf-93, amnsw-oaann-94, b-lbact-83, bst-bst-85, bs-dcms-76, bet-pcqqt-93, b-rasdc-94, ck-dmdps-92, ck-adcpn-95, cpt-uadpl-93, ct-ccgtd-93, grss-rdsdc-93i, grss-sracp-93, ks-ntead-94, ls-ekcpo-92i, ps-cgi-85, s-sisie-91, sh-cpp-75, s-dsadc-93, ss-oaolc-92, sss-oaolc-92, st-dsdt-83, s-drpla-91, s-mmdpsl-91a, s-mmdpsp-92a, s-ntsdc-90, v-oaann-86, v-oaann-89, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Sergei N. Bespamyatnikh" +, title = "An Optimal Algorithm for Closest Pair Maintenance" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "152--161" +, keywords = "dynamic closest pair" +, cites = "am-annqf-93, amnsw-oaann-94, b-lbact-83, bst-bst-85, bs-dcms-76, bet-pcqqt-93, b-rasdc-94, ck-dmdps-92, ck-adcpn-95, cpt-uadpl-93, ct-ccgtd-93, grss-rdsdc-93i, grss-sracp-93, ks-ntead-94, ls-ekcpo-92i, ps-cgi-85, s-sisie-91, sh-cpp-75, s-dsadc-93, ss-oaolc-92, sss-oaolc-92, st-dsdt-83, s-drpla-91, s-mmdpsl-91a, s-mmdpsp-92a, s-ntsdc-90, v-oaann-86, v-oaann-89, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{b-oacpm-98 -, author = "S. N. Bespamyatnikh" -, title = "An Optimal Algorithm for Closest-Pair Maintenance" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "175--195" -, update = "98.07 smid" +, author = "S. N. Bespamyatnikh" +, title = "An Optimal Algorithm for Closest-Pair Maintenance" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "175--195" +, update = "98.07 smid" } @inproceedings{b-oadpo-96 -, author = "S. N. Bespamyatnikh" -, title = "An optimal algorithm for dynamic post-office problem in {$R^2_1$} and related problems" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "101--106" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "S. N. Bespamyatnikh" +, title = "An optimal algorithm for dynamic post-office problem in {$R^2_1$} and related problems" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "101--106" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{b-daans-96 -, author = "S. N. Bespamyatnikh" -, title = "Dynamic algorithms for approximate neighbor searching" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "252--257" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "S. N. Bespamyatnikh" +, title = "Dynamic algorithms for approximate neighbor searching" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "252--257" +, update = "97.03 agarwal, 96.09 mitchell" } @article{b-ocmst-97 -, author = "S. N. Bespamyatnikh" -, title = "On constructing minimum spanning trees in {$R^k_1$}" -, journal = "Algorithmica" -, volume = 18 -, year = 1997 -, pages = "524--529" -, update = "98.03 smid" +, author = "S. N. Bespamyatnikh" +, title = "On constructing minimum spanning trees in {$R^k_1$}" +, journal = "Algorithmica" +, volume = 18 +, year = 1997 +, pages = "524--529" +, update = "98.03 smid" } @inproceedings{b-rasdc-94 -, author = "S. N. Bespamyatnikh" -, title = "The Region Approach for some Dynamic Closest-Point Problems" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "75--80" -, keywords = "region approach, dynamic maintenance, data structures" -, cites = "b-cmstt-, c-fadsi-88, gbt-srtgp-84, ks-ntead-, ls-ekcpo-92i, lw-dsdrq-82, s-eis-92, s-dsadc-93, s-mmdpsl-91a, s-mmdpsp-92a, s-ntsdc-90, w-mstpt-87, y-cmstk-82, hy-t-61, ZZZ" -, update = "98.11 bibrelex, 98.03 smid, 94.09 jones" +, author = "S. N. Bespamyatnikh" +, title = "The Region Approach for some Dynamic Closest-Point Problems" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "75--80" +, keywords = "region approach, dynamic maintenance, data structures" +, cites = "b-cmstt-, c-fadsi-88, gbt-srtgp-84, ks-ntead-, ls-ekcpo-92i, lw-dsdrq-82, s-eis-92, s-dsadc-93, s-mmdpsl-91a, s-mmdpsp-92a, s-ntsdc-90, w-mstpt-87, y-cmstk-82, hy-t-61, ZZZ" +, update = "98.11 bibrelex, 98.03 smid, 94.09 jones" } @inproceedings{brs-plue-93 -, author = "Margrit Betke and Ronald L. Rivest and Mona Singh" -, title = "Piecemeal Learning of an Unknown Environment" -, booktitle = "Proc. 6th ACM Conf. Comput. Learning Theory" -, nickname = "COLT '93" -, month = jul -, year = 1993 -, pages = "277--286" -, update = "98.07 bibrelex, 97.11 bibrelex, 93.09 milone+mitchell" +, author = "Margrit Betke and Ronald L. Rivest and Mona Singh" +, title = "Piecemeal Learning of an Unknown Environment" +, booktitle = "Proc. 6th ACM Conf. Comput. Learning Theory" +, nickname = "COLT '93" +, month = jul +, year = 1993 +, pages = "277--286" +, update = "98.07 bibrelex, 97.11 bibrelex, 93.09 milone+mitchell" } @article{brs-plue-95 -, author = "Margrit Betke and Ronald L. Rivest and Mona Singh" -, title = "Piecemeal Learning of an Unknown Environment" -, journal = "Machine Learning" -, volume = 18 -, number = "2--3" -, year = 1995 -, pages = "231--254" -, succeeds = "brs-plue-93" -, update = "98.03 mitchell" +, author = "Margrit Betke and Ronald L. Rivest and Mona Singh" +, title = "Piecemeal Learning of an Unknown Environment" +, journal = "Machine Learning" +, volume = 18 +, number = "2--3" +, year = 1995 +, pages = "231--254" +, succeeds = "brs-plue-93" +, update = "98.03 mitchell" } @article{bm-lplp-85 -, author = "V. Betke and P. {McMullen}" -, title = "Lattice points in lattice polyhedra" -, journal = "Monatsch. Math." -, volume = 99 -, number = 4 -, year = 1985 -, pages = "253--265" -, keywords = "discrete geometry, polyhedra" -, update = "95.05 korneenko" +, author = "V. Betke and P. {McMullen}" +, title = "Lattice points in lattice polyhedra" +, journal = "Monatsch. Math." +, volume = 99 +, number = 4 +, year = 1985 +, pages = "253--265" +, keywords = "discrete geometry, polyhedra" +, update = "95.05 korneenko" } @inproceedings{bc-ap1sq-94 -, author = "D. Beus and D. Crockett" -, title = "Automated production of $1:24,000$ scale quadrangle maps" -, booktitle = "Proc. 1994 ASPRS/ACSM Annual Convention and Exposition" -, volume = 1 -, year = 1994 -, pages = "94--99" -, update = "98.07 bibrelex" +, author = "D. Beus and D. Crockett" +, title = "Automated production of $1:24,000$ scale quadrangle maps" +, booktitle = "Proc. 1994 ASPRS/ACSM Annual Convention and Exposition" +, volume = 1 +, year = 1994 +, pages = "94--99" +, update = "98.07 bibrelex" } @article{be-dapch-90 -, author = "H. Bez and J. Edwards" -, title = "Distributed algorithm for the planar convex hull problem" -, journal = "Comput. Aided Design" -, volume = 22 -, number = 2 -, year = 1990 -, pages = "81--86" -, keywords = "convex hull, parallel computation" -, update = "95.05 korneenko" +, author = "H. Bez and J. Edwards" +, title = "Distributed algorithm for the planar convex hull problem" +, journal = "Comput. Aided Design" +, volume = 22 +, number = 2 +, year = 1990 +, pages = "81--86" +, keywords = "convex hull, parallel computation" +, update = "95.05 korneenko" } @article{b-orect-97 -, author = "Andras Bezdek" -, title = "On optimal route planning evading cubes in the three space" -, journal = "Beitr{\"a}ge zur Algebra und Geometrie" -, volume = "??" -, year = 1997 -, update = "98.11 bibrelex, 98.03 mitchell" -, abstract = "Let $\cal P$ be a finite arrangement of non-overlapping open +, author = "Andras Bezdek" +, title = "On optimal route planning evading cubes in the three space" +, journal = "Beitr{\"a}ge zur Algebra und Geometrie" +, volume = "??" +, year = 1997 +, update = "98.11 bibrelex, 98.03 mitchell" +, abstract = "Let $\cal P$ be a finite arrangement of non-overlapping open cubes with side-lengths not exceeding 1 in the $3$-dimensional euclidean space. Let $S$ and $T$ be two points lying outside the open cubes. Assume one needs to find a short path emanating @@ -21016,2030 +21016,2030 @@ @article{b-orect-97 } @article{b-ddcc-90 -, author = "A. Bezdek" -, title = "On the density of dual circle coverings" -, journal = "Geom. Dedicata" -, volume = 33 -, number = 2 -, year = 1990 -, pages = "227--238" -, keywords = "arrangements of circles, Sylvester problem" -, update = "98.07 mitchell" +, author = "A. Bezdek" +, title = "On the density of dual circle coverings" +, journal = "Geom. Dedicata" +, volume = 33 +, number = 2 +, year = 1990 +, pages = "227--238" +, keywords = "arrangements of circles, Sylvester problem" +, update = "98.07 mitchell" } @article{bb-wiipt-86 -, author = "A. Bezdek and K. Bezdek" -, title = "When it is possible to translate a convex polygon into another one?" -, journal = "Stud. Sci. Math. Hungary" -, volume = 21 -, year = 1986 -, pages = "337--342" -, keywords = "convex polygon, containment" -, update = "95.05 korneenko" +, author = "A. Bezdek and K. Bezdek" +, title = "When it is possible to translate a convex polygon into another one?" +, journal = "Stud. Sci. Math. Hungary" +, volume = 21 +, year = 1986 +, pages = "337--342" +, keywords = "convex polygon, containment" +, update = "95.05 korneenko" } @article{bbb-ipls-92 -, author = "A. Bezdek and K. Bezdek and T. Bisztriczky" -, title = "On illumination in the plane by line segments" -, journal = "Geom. Dedicata" -, volume = 41 -, number = 1 -, year = 1992 -, pages = "39--50" -, keywords = "visibility" -, update = "95.05 korneenko" +, author = "A. Bezdek and K. Bezdek and T. Bisztriczky" +, title = "On illumination in the plane by line segments" +, journal = "Geom. Dedicata" +, volume = 41 +, number = 1 +, year = 1992 +, pages = "39--50" +, keywords = "visibility" +, update = "95.05 korneenko" } @techreport{bbb-ktip-89 -, author = "A. Bezdek and K. Bezdek and T. Bisztriczky" -, title = "On {Krasnosselsky}-type illumination problems" -, type = "Research Paper" -, number = 676 -, institution = "Univ. of Calgary" -, address = "Calgary, Canada" -, month = jul -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "A. Bezdek and K. Bezdek and T. Bisztriczky" +, title = "On {Krasnosselsky}-type illumination problems" +, type = "Research Paper" +, number = 676 +, institution = "Univ. of Calgary" +, address = "Calgary, Canada" +, month = jul +, year = 1989 +, update = "93.09 milone+mitchell" } @article{bbm-ipchf-91 -, author = "A. Bezdek and K. Bezdek and E. Makai" -, title = "Interior points of the convex hull of few points in ${E}^d$" -, journal = "Monatsh. Math." -, volume = 111 -, number = 3 -, year = 1991 -, pages = "181--186" -, keywords = "convex hull, $d$-dimensional" -, update = "95.05 korneenko" +, author = "A. Bezdek and K. Bezdek and E. Makai" +, title = "Interior points of the convex hull of few points in ${E}^d$" +, journal = "Monatsh. Math." +, volume = 111 +, number = 3 +, year = 1991 +, pages = "181--186" +, keywords = "convex hull, $d$-dimensional" +, update = "95.05 korneenko" } @techreport{bk-pmsgc-?? -, author = "A. Bezdek and W. Kuperberg" -, title = "Placing and Moving Spheres in the Gaps of a Cylinder Packing" -, type = "Technical {Report}" -, institution = "Dept. of Math, Cornell Univ" -, year = "??" -, keywords = "cylinder packing, closeness, motion planning" -, update = "93.09 milone+mitchell" +, author = "A. Bezdek and W. Kuperberg" +, title = "Placing and Moving Spheres in the Gaps of a Cylinder Packing" +, type = "Technical {Report}" +, institution = "Dept. of Math, Cornell Univ" +, year = "??" +, keywords = "cylinder packing, closeness, motion planning" +, update = "93.09 milone+mitchell" } @article{bkm-mdspp-91 -, author = "A. Bezdek and W. Kuperberg and E. Makai" -, title = "Maximum density space packing with parallel strings of spheres" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "277--283" +, author = "A. Bezdek and W. Kuperberg and E. Makai" +, title = "Maximum density space packing with parallel strings of spheres" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "277--283" } @incollection{b-hlcpr-93 -, author = "K. Bezdek" -, title = "{Hadwiger}-{Levi}'s Covering Problem Revisited" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "199--233" -, keywords = "survey paper, discrete geometry, covering by homothets, illumination" -, update = "93.09 erickson" +, author = "K. Bezdek" +, title = "{Hadwiger}-{Levi}'s Covering Problem Revisited" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "199--233" +, keywords = "survey paper, discrete geometry, covering by homothets, illumination" +, update = "93.09 erickson" } @inproceedings{b-irubd-01 -, author = "K{\'a}roly Bezdek" -, title = "Improving {Roger's} Upper Bound for the Density of Unit Ball Packings in {Euclidean} $d$-Space for all $d\ge 8$" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "191--194" -, update = "01.04 icking" +, author = "K{\'a}roly Bezdek" +, title = "Improving {Roger's} Upper Bound for the Density of Unit Ball Packings in {Euclidean} $d$-Space for all $d\ge 8$" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "191--194" +, update = "01.04 icking" } @article{b-pibcb-91 -, author = "K. Bezdek" -, title = "The problem of illumination of the boundary of a convex body by affine subspaces" -, journal = "Mathematika" -, volume = 38 -, number = 2 -, year = 1991 -, pages = "362--375" -, keywords = "visibility, convex, polyhedra" -, update = "95.05 korneenko" +, author = "K. Bezdek" +, title = "The problem of illumination of the boundary of a convex body by affine subspaces" +, journal = "Mathematika" +, volume = 38 +, number = 2 +, year = 1991 +, pages = "362--375" +, keywords = "visibility, convex, polyhedra" +, update = "95.05 korneenko" } @article{bl-ecld-88 -, author = "M. Bezem and J. van Leeuwen" -, title = "On estimating the complexity of logarithmic decompositions" -, journal = "Inform. Process. Lett." -, volume = 26 -, number = 6 -, year = 1988 -, pages = "321--324" -, update = "96.05 smid, 95.05 korneenko" +, author = "M. Bezem and J. van Leeuwen" +, title = "On estimating the complexity of logarithmic decompositions" +, journal = "Inform. Process. Lett." +, volume = 26 +, number = 6 +, year = 1988 +, pages = "321--324" +, update = "96.05 smid, 95.05 korneenko" } @book{b-ncma-72 -, author = "P. Bezier" -, title = "Numerical Control - Mathematics and Aplications" -, publisher = "John Wiley \& Sons" -, address = "London, UK" -, year = 1972 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "P. Bezier" +, title = "Numerical Control - Mathematics and Aplications" +, publisher = "John Wiley \& Sons" +, address = "London, UK" +, year = 1972 +, update = "99.11 bibrelex, 98.03 bibrelex" } @inproceedings{bc-fsamn-96 -, author = "J. Bhadury and R. Chandrasekaran" -, title = "Finding the set of all minimal nested convex polygons" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "26--31" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "J. Bhadury and R. Chandrasekaran" +, title = "Finding the set of all minimal nested convex polygons" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "26--31" +, update = "97.03 agarwal, 96.09 mitchell" } @article{bcmc-agpcn-97 -, author = "J. Bhadury and V. Chandru and A. Maheshwari and R. Chandrasekaran" -, title = "Art Gallery Problems for Convex Nested Polygons" -, journal = "INFORMS J. Comput." -, volume = 9 -, number = 1 -, year = 1997 -, pages = "100--110" -, update = "98.03 mitchell" +, author = "J. Bhadury and V. Chandru and A. Maheshwari and R. Chandrasekaran" +, title = "Art Gallery Problems for Convex Nested Polygons" +, journal = "INFORMS J. Comput." +, volume = 9 +, number = 1 +, year = 1997 +, pages = "100--110" +, update = "98.03 mitchell" } @inproceedings{bbgossz-tovra-93 -, author = "D. Bhagavathi and V. Bokka and H. Gurla and S. Olariu and J. L. Schwing and I. Stojmenovi{\'c} and J. Zhang" -, title = "Time-optimal visibility-related algorithms on meshes with multiple broadcasting" -, booktitle = "Proc. 1993 Internat. Conf. Application-Specific Array Processors, Venice, Italy" -, nickname = "ASAP" -, month = oct -, year = 1993 -, pages = "??" -, keywords = "parallel computation" -, comments = "to appear" -, update = "93.09 rote" +, author = "D. Bhagavathi and V. Bokka and H. Gurla and S. Olariu and J. L. Schwing and I. Stojmenovi{\'c} and J. Zhang" +, title = "Time-optimal visibility-related algorithms on meshes with multiple broadcasting" +, booktitle = "Proc. 1993 Internat. Conf. Application-Specific Array Processors, Venice, Italy" +, nickname = "ASAP" +, month = oct +, year = 1993 +, pages = "??" +, keywords = "parallel computation" +, comments = "to appear" +, update = "93.09 rote" } @inproceedings{blosz-fsamb-92 -, author = "D. Bhagavathi and P. Looges and S. Olariu and J. L. Schwing and J. Zhang" -, title = "Fast selection algorithms on meshes with multiple broadcasting" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, site = "St. Charles" -, year = 1992 -, update = "98.07 bibrelex" +, author = "D. Bhagavathi and P. Looges and S. Olariu and J. L. Schwing and J. Zhang" +, title = "Fast selection algorithms on meshes with multiple broadcasting" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, site = "St. Charles" +, year = 1992 +, update = "98.07 bibrelex" } @inproceedings{bosswz-cpmmb-92 -, author = "D. Bhagavathi and S. Olariu and J. L. Schwing and W. Shen and L. Wilson and J. Zhang" -, title = "Convexity problems on meshes with multiple broadcasting" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "365--370" -, keywords = "convex polygons, meshes with muliple broadcasting, diameter, enclosing rectangle, inscribed triangle, time-optimal algorithms, image processing, computer vision" -, cites = "cdr-ultbp-86, ds-gmmmc-79, dh-pcsa-73, fs-dmaer-75, l-ipaaa-92, l-spcsa-83, pl-pdavs-88, ps-cgi-85, rk-dpp-82, t-mss-85, ag-hpc-90, bb-cv-82, blosz-fsamb-92, bps-aamv-89, kr-icmmb-89, losz-sema-, l-cvdmc-85, ml-cascv-89, osz-tosam-92, p-cg-78, pr-apmb-87, v-mvavi-91, v-spa-91, ZZZ" -, update = "98.07 bibrelex" +, author = "D. Bhagavathi and S. Olariu and J. L. Schwing and W. Shen and L. Wilson and J. Zhang" +, title = "Convexity problems on meshes with multiple broadcasting" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "365--370" +, keywords = "convex polygons, meshes with muliple broadcasting, diameter, enclosing rectangle, inscribed triangle, time-optimal algorithms, image processing, computer vision" +, cites = "cdr-ultbp-86, ds-gmmmc-79, dh-pcsa-73, fs-dmaer-75, l-ipaaa-92, l-spcsa-83, pl-pdavs-88, ps-cgi-85, rk-dpp-82, t-mss-85, ag-hpc-90, bb-cv-82, blosz-fsamb-92, bps-aamv-89, kr-icmmb-89, losz-sema-, l-cvdmc-85, ml-cascv-89, osz-tosam-92, p-cg-78, pr-apmb-87, v-mvavi-91, v-spa-91, ZZZ" +, update = "98.07 bibrelex" } @techreport{bosw-tomsa-92t -, author = "D. Bhagavathi and S. Olariu and W. Shen and L. Wilson" -, title = "A time-optimal multiple search algorithm on enhanced meshes, with applications" -, type = "Technical Report" -, number = "TR-092-08" -, institution = "Department of Computer Science, Old Dominion University" -, year = 1992 -, precedes = "bosw-tomsa-92" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "D. Bhagavathi and S. Olariu and W. Shen and L. Wilson" +, title = "A time-optimal multiple search algorithm on enhanced meshes, with applications" +, type = "Technical Report" +, number = "TR-092-08" +, institution = "Department of Computer Science, Old Dominion University" +, year = 1992 +, precedes = "bosw-tomsa-92" +, update = "98.11 bibrelex, 98.07 bibrelex" } @inproceedings{bosw-tomsa-92 -, author = "D. Bhagavathi and S. Olariu and W. Shen and L. Wilson" -, title = "A time-optimal multiple search algorithm on enhanced meshes, with applications" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "359--364" -, succeeds = "bosw-tomsa-92t" -, cites = "l-ipaaa-92, tk-smcpc-77, a-obfma-86, am-pbs-90, bosw-tomsa-92t, b-fmapg-84, ml-cascv-89" -, update = "98.11 bibrelex" +, author = "D. Bhagavathi and S. Olariu and W. Shen and L. Wilson" +, title = "A time-optimal multiple search algorithm on enhanced meshes, with applications" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "359--364" +, succeeds = "bosw-tomsa-92t" +, cites = "l-ipaaa-92, tk-smcpc-77, a-obfma-86, am-pbs-90, bosw-tomsa-92t, b-fmapg-84, ml-cascv-89" +, update = "98.11 bibrelex" } @inproceedings{bwc-ihd-00 -, author = "Praveen Bhaniramka and Rephael Wenger and Roger Crawfis" -, title = "Isosurfacing in Higher Dimensions" -, booktitle = "Proceedings of Visualization 2000" -, year = 2000 -, pages = "267--273" -, update = "01.07 wenger" +, author = "Praveen Bhaniramka and Rephael Wenger and Roger Crawfis" +, title = "Isosurfacing in Higher Dimensions" +, booktitle = "Proceedings of Visualization 2000" +, year = 2000 +, pages = "267--273" +, update = "01.07 wenger" } @techreport{bpcj-vgdaa-95 -, author = "S. Bhanji and H. C. Purchase and R. F. Cohen and M. James" -, title = "Validating Graph Drawing Aesthetics: A Pilot Study" -, type = "Technical Report" -, number = 336 -, institution = "University of Queensland, Department of Computer Science" -, year = 1995 -, keywords = "graph drawing, aesthetics, human-computer interaction" -, update = "96.09 tamassia, 96.04 garg" +, author = "S. Bhanji and H. C. Purchase and R. F. Cohen and M. James" +, title = "Validating Graph Drawing Aesthetics: A Pilot Study" +, type = "Technical Report" +, number = 336 +, institution = "University of Queensland, Department of Computer Science" +, year = 1995 +, keywords = "graph drawing, aesthetics, human-computer interaction" +, update = "96.09 tamassia, 96.04 garg" } @article{brw-pprrl-88 -, author = "S. K. Bhaskar and A. Rosenfeld and A. Y. Wu" -, title = "Parallel processing of regions represented by linear quadtrees" -, journal = "Comput. Vision Graph. Image Process." -, volume = 42 -, number = 3 -, year = 1988 -, pages = "371--380" -, keywords = "quad trees, parallel computations, digital geometry" -, update = "95.05 korneenko" +, author = "S. K. Bhaskar and A. Rosenfeld and A. Y. Wu" +, title = "Parallel processing of regions represented by linear quadtrees" +, journal = "Comput. Vision Graph. Image Process." +, volume = 42 +, number = 3 +, year = 1988 +, pages = "371--380" +, keywords = "quad trees, parallel computations, digital geometry" +, update = "95.05 korneenko" } @inproceedings{bnk-oplci-93 -, author = "V. Bhaskaran and B. K. Natarajan and K. Konstantinides" -, title = "Optimal Piecewise-Linear Compression of Images" -, booktitle = "Data Compression Conference" -, nickname = "DCC '93" -, publisher = "IEEE Press" -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "V. Bhaskaran and B. K. Natarajan and K. Konstantinides" +, title = "Optimal Piecewise-Linear Compression of Images" +, booktitle = "Data Compression Conference" +, nickname = "DCC '93" +, publisher = "IEEE Press" +, year = 1993 +, update = "93.09 milone+mitchell" } @article{bs-lafrd-88 -, author = "J. Bhasker and S. Sahni" -, title = "A linear algorithm to find a rectangular dual of a planar triangulated graph" -, journal = "Algorithmica" -, volume = 3 -, year = 1988 -, pages = "247--278" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Bhasker and S. Sahni" +, title = "A linear algorithm to find a rectangular dual of a planar triangulated graph" +, journal = "Algorithmica" +, volume = 3 +, year = 1988 +, pages = "247--278" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{b-iatdg-92 -, author = "Dinesh Bhatia" -, title = "Improved algorithms for two dimensional grid routing" -, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Dinesh Bhatia" +, title = "Improved algorithms for two dimensional grid routing" +, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{bgks-flddf-98 -, author = "Randeep Bhatia and Sudipto Guha and Samir Khuller and Yoram J. Sussmann" -, title = "Facility Location with Dynamic Distance Functions" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "23--34" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "Randeep Bhatia and Sudipto Guha and Samir Khuller and Yoram J. Sussmann" +, title = "Facility Location with Dynamic Distance Functions" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "23--34" +, update = "99.03 bibrelex, 98.07 mitchell" } @article{bl-tdfem-90 -, author = "R. P. Bhatia and K. L. Lawrence" -, title = "Two-Dimensional Finite Element Mesh Generation Based On Stripwise Automatic Triangulation" -, journal = "Comput. Struct." -, volume = 36 -, number = 2 -, year = 1990 -, pages = "309--319" -, keywords = "two-dimensional finite element mesh, finite element mesh generation, stripwise automatic triangulation, central mesh generation, laplacian smoothing" -, annote = "Advancing front scheme. Tri that maximizes $A/P^2$ is - chosen." -, abstract = "A new mesh generator, capable of discretizing - arbitrary, two-dimensional, multiply connected domains - into triangles with a prescribed spatial density, has - been developed. The technique is based on stripwise - automatic triangulation. The triangulation strategy has - been enhanced using two heuristics. The first is a - method to temporarily reorient a region before - submitting it for generation. The second is a technique - to find and repair 'omitted patches' near sharply - curved boundaries. Despite employing a set of - heuristics, the resulting scheme is versatile, robust, - and demonstrates a near linear growth rate. (Author - abstract) 17 Refs." +, author = "R. P. Bhatia and K. L. Lawrence" +, title = "Two-Dimensional Finite Element Mesh Generation Based On Stripwise Automatic Triangulation" +, journal = "Comput. Struct." +, volume = 36 +, number = 2 +, year = 1990 +, pages = "309--319" +, keywords = "two-dimensional finite element mesh, finite element mesh generation, stripwise automatic triangulation, central mesh generation, laplacian smoothing" +, annote = "Advancing front scheme. Tri that maximizes $A/P^2$ is + chosen." +, abstract = "A new mesh generator, capable of discretizing + arbitrary, two-dimensional, multiply connected domains + into triangles with a prescribed spatial density, has + been developed. The technique is based on stripwise + automatic triangulation. The triangulation strategy has + been enhanced using two heuristics. The first is a + method to temporarily reorient a region before + submitting it for generation. The second is a technique + to find and repair 'omitted patches' near sharply + curved boundaries. Despite employing a set of + heuristics, the resulting scheme is versatile, robust, + and demonstrates a near linear growth rate. (Author + abstract) 17 Refs." } @inproceedings{bclr-ostm-86 -, author = "S. Bhatt and F. Chung and F. Leighton and A. Rosenberg" -, title = "Optimal simulations of tree machines" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "274--282" -, update = "97.11 bibrelex" +, author = "S. Bhatt and F. Chung and F. Leighton and A. Rosenberg" +, title = "Optimal simulations of tree machines" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "274--282" +, update = "97.11 bibrelex" } @article{bc-cmwlv-87 -, author = "S. Bhatt and S. Cosmadakis" -, title = "The Complexity of Minimizing Wire Lengths in {VLSI} Layouts" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "263--267" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "S. Bhatt and S. Cosmadakis" +, title = "The Complexity of Minimizing Wire Lengths in {VLSI} Layouts" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "263--267" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{bl-fsvgl-84 -, author = "S. N. Bhatt and F. T. Leighton" -, title = "A framework for solving {VLSI} graph layout problems" -, journal = "J. Comput. Syst. Sci." -, volume = 28 -, year = 1984 -, pages = "300--343" -, succeeds = "l-lsvwi-82" +, author = "S. N. Bhatt and F. T. Leighton" +, title = "A framework for solving {VLSI} graph layout problems" +, journal = "J. Comput. Syst. Sci." +, volume = 28 +, year = 1984 +, pages = "300--343" +, succeeds = "l-lsvwi-82" } @techreport{b-acokv-83 -, author = "B. Bhattacharya" -, title = "An algorithm for computing order $k$ {Voronoi} diagrams in the plane" -, type = "Report" -, number = "Tech. Rep. 83-9" -, institution = "Comput. Sci. Dept., Simon Fraser Univ." -, year = 1983 -, update = "94.09 bernal" +, author = "B. Bhattacharya" +, title = "An algorithm for computing order $k$ {Voronoi} diagrams in the plane" +, type = "Report" +, number = "Tech. Rep. 83-9" +, institution = "Comput. Sci. Dept., Simon Fraser Univ." +, year = 1983 +, update = "94.09 bernal" } @techreport{b-wcach-82 -, author = "B. Bhattacharya" -, title = "Worst-case analysis of a convex hull algorithm" -, type = "Report" -, number = "Tech. Rep." -, institution = "Comput. Sci. Dept., Simon Fraser Univ." -, year = 1982 -, update = "94.09 bernal" +, author = "B. Bhattacharya" +, title = "Worst-case analysis of a convex hull algorithm" +, type = "Report" +, number = "Tech. Rep." +, institution = "Comput. Sci. Dept., Simon Fraser Univ." +, year = 1982 +, update = "94.09 bernal" } @article{bb-cobbt-01 -, author = "Binay Bhattacharya and Robert Benkoczi" -, title = "On computing the optimal bridge between two convex polygons" -, journal = "Inform. Process. Lett." -, volume = 79 -, year = 2001 -, pages = "215--221" -, update = "02.03 cheong" +, author = "Binay Bhattacharya and Robert Benkoczi" +, title = "On computing the optimal bridge between two convex polygons" +, journal = "Inform. Process. Lett." +, volume = 79 +, year = 2001 +, pages = "215--221" +, update = "02.03 cheong" } @techreport{bcetsu-csts-90 -, author = "B. Bhattacharya and J. Czyzowicz and P. Egyed and G. Toussaint and I. Stojmenovi{\'c} and J. Urrutia" -, title = "Computing Shortest Transversals of Sets" -, type = "Technical {Report}" -, number = "SOCS 90.23" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, update = "97.11 bibrelex, 93.09 milone+mitchell" +, author = "B. Bhattacharya and J. Czyzowicz and P. Egyed and G. Toussaint and I. Stojmenovi{\'c} and J. Urrutia" +, title = "Computing Shortest Transversals of Sets" +, type = "Technical {Report}" +, number = "SOCS 90.23" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, update = "97.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{bcetsu-csts-91 -, author = "B. Bhattacharya and J. Czyzowicz and P. Egyed and G. Toussaint and I. Stojmenovi{\'c} and J. Urrutia" -, title = "Computing shortest transversals of sets" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "71--80" -, keywords = "stabbing" -, precedes = "bcetsu-csts-92" -, cites = "ab-eact-87, ad-ahdsp-90, arw-lbls-89, bl-dicp-83, bt-cst-90t, bet-csdix-, b-gtfga-80, dgk-htir-63, d-ltatt-84, e-cedbt-85, e-ftssg-85, eg-tsa-86, egs-ueplf-89, emprww-sls-82, ew-spdtl-89, ew-ospdc-91, gpw-gtt-91, h-fuenl-89, hiir-wolla-89, k-sades-91t, m-ltalp-83, mt-fmvdb-85, o-olafs-81, ol-mcp-81, s-cesl-85, v-cbrdf-87, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex, 97.11 bibrelex, 96.09 devillers" +, author = "B. Bhattacharya and J. Czyzowicz and P. Egyed and G. Toussaint and I. Stojmenovi{\'c} and J. Urrutia" +, title = "Computing shortest transversals of sets" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "71--80" +, keywords = "stabbing" +, precedes = "bcetsu-csts-92" +, cites = "ab-eact-87, ad-ahdsp-90, arw-lbls-89, bl-dicp-83, bt-cst-90t, bet-csdix-, b-gtfga-80, dgk-htir-63, d-ltatt-84, e-cedbt-85, e-ftssg-85, eg-tsa-86, egs-ueplf-89, emprww-sls-82, ew-spdtl-89, ew-ospdc-91, gpw-gtt-91, h-fuenl-89, hiir-wolla-89, k-sades-91t, m-ltalp-83, mt-fmvdb-85, o-olafs-81, ol-mcp-81, s-cesl-85, v-cbrdf-87, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex, 97.11 bibrelex, 96.09 devillers" } @article{bcetsu-csts-92 -, author = "B. Bhattacharya and J. Czyzowicz and P. Egyed and G. Toussaint and I. Stojmenovi{\'c} and J. Urrutia" -, title = "Computing shortest transversals of sets" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 4 -, year = 1992 -, pages = "417--442" -, keywords = "computational geometry, shortest transversal, envelope, butterfly polygon" -, succeeds = "bcetsu-csts-91" -, update = "96.09 devillers" +, author = "B. Bhattacharya and J. Czyzowicz and P. Egyed and G. Toussaint and I. Stojmenovi{\'c} and J. Urrutia" +, title = "Computing shortest transversals of sets" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 4 +, year = 1992 +, pages = "417--442" +, keywords = "computational geometry, shortest transversal, envelope, butterfly polygon" +, succeeds = "bcetsu-csts-91" +, update = "96.09 devillers" } @inproceedings{bet-cwb-91 -, author = "B. Bhattacharya and P. Egyed and G. Toussaint" -, title = "Computing the wingspan of a butterfly" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "88--91" -, cites = "agt-vbtes-86, bkt-dsvp-89, bt-cst-91a, bcetsu-csts-91, cd-icott-87, dk-ladsc-85, e-cedbt-85, mt-fmvdb-85, ZZZ" -, update = "98.07 bibrelex" +, author = "B. Bhattacharya and P. Egyed and G. Toussaint" +, title = "Computing the wingspan of a butterfly" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "88--91" +, cites = "agt-vbtes-86, bkt-dsvp-89, bt-cst-91a, bcetsu-csts-91, cd-icott-87, dk-ladsc-85, e-cedbt-85, mt-fmvdb-85, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{be-bskpc-97 -, author = "Binay Bhattacharya and Hossam ElGindy" -, title = "Biased Search and $k$--Point Clustering" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "141--146" -, update = "97.11 jones" +, author = "Binay Bhattacharya and Hossam ElGindy" +, title = "Biased Search and $k$--Point Clustering" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "141--146" +, update = "97.11 jones" } @article{bet-cdach-91 -, author = "B. Bhattacharya and H. Everett and G. Toussaint" -, title = "A counterexample to a dynamic algorithm for convex hulls of line arrangements" -, journal = "Pattern Recogn. Lett." -, volume = 12 -, number = 3 -, year = 1991 -, pages = "145--147" -, keywords = "errata, convex hull" -, update = "95.05 korneenko" +, author = "B. Bhattacharya and H. Everett and G. Toussaint" +, title = "A counterexample to a dynamic algorithm for convex hulls of line arrangements" +, journal = "Pattern Recogn. Lett." +, volume = 12 +, number = 3 +, year = 1991 +, pages = "145--147" +, keywords = "errata, convex hull" +, update = "95.05 korneenko" } @article{bg-clvpr-01 -, author = "B. Bhattacharya and S. K. Ghosh" -, title = "Characterizing {LR}-visibility polygons and related problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "19--36" -, update = "01.04 smid" +, author = "B. Bhattacharya and S. K. Ghosh" +, title = "Characterizing {LR}-visibility polygons and related problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "19--36" +, update = "01.04 smid" } @inproceedings{bkt-dsvp-89 -, author = "B. Bhattacharya and D. G. Kirkpatrick and G. T. Toussaint" -, title = "Determining sector visibility of a polygon" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "247--254" -, cites = "ab-eact-87, aw-alts-87, aw-plts-88, at-oadvp-81, bl-dicp-83, b-lbact-83, e-ftssg-85, eow-gfcs-83, e-hdpa-85, emprww-sls-82, et-eaide-85, g-ct-58, hv-splsp-49, k-dwvsp-88, l-tcctc-80, ma-lafch-79, mt-rltcp-87, o-olafs-81, r-dcikc-88a, rs-sp-77, ss-oadwv-86, st-ccssp-88, ta-chapi-82, t-ccu-84a, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "B. Bhattacharya and D. G. Kirkpatrick and G. T. Toussaint" +, title = "Determining sector visibility of a polygon" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "247--254" +, cites = "ab-eact-87, aw-alts-87, aw-plts-88, at-oadvp-81, bl-dicp-83, b-lbact-83, e-ftssg-85, eow-gfcs-83, e-hdpa-85, emprww-sls-82, et-eaide-85, g-ct-58, hv-splsp-49, k-dwvsp-88, l-tcctc-80, ma-lafch-79, mt-rltcp-87, o-olafs-81, r-dcikc-88a, rs-sp-77, ss-oadwv-86, st-ccssp-88, ta-chapi-82, t-ccu-84a, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex" } @inproceedings{bm-ltacm-01 -, author = "Binay Bhattacharya and Asish Mukhopadhyay" -, title = "A Linear Time Algorithm for Computing the Minimum Perimeter Triangle Enclosing a Convex Polygon" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "43--47" -, update = "01.04 icking" +, author = "Binay Bhattacharya and Asish Mukhopadhyay" +, title = "A Linear Time Algorithm for Computing the Minimum Perimeter Triangle Enclosing a Convex Polygon" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "43--47" +, update = "01.04 icking" } @inproceedings{bs-psdsr-90 -, author = "B. Bhattacharya and T. Shermer" -, title = "Polygonal separators and digital shape recognition" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "74--77" -, cites = "b-cspps-88, dr-clp-80, k-dcscp-82, ka-dd-84, na-dc-84, na-digp-85, na-ds-90, ol-mcp-81, t-stc-88, ZZZ" -, update = "98.07 bibrelex" +, author = "B. Bhattacharya and T. Shermer" +, title = "Polygonal separators and digital shape recognition" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "74--77" +, cites = "b-cspps-88, dr-clp-80, k-dcscp-82, ka-dd-84, na-dc-84, na-digp-85, na-ds-90, ol-mcp-81, t-stc-88, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{bt-cmscs-89 -, author = "B. Bhattacharya and G. Toussaint" -, title = "Computing minimal spanning covers of sets" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 24 +, author = "B. Bhattacharya and G. Toussaint" +, title = "Computing minimal spanning covers of sets" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 24 } @techreport{bt-cst-90t -, author = "B. Bhattacharya and G. Toussaint" -, title = "Computing shortest transversals" -, number = "SOCS 90.6" -, institution = "School of Computer Science, McGill University" -, year = 1990 -, keywords = "stabbing" -, comments = "revised April 1991" +, author = "B. Bhattacharya and G. Toussaint" +, title = "Computing shortest transversals" +, number = "SOCS 90.6" +, institution = "School of Computer Science, McGill University" +, year = 1990 +, keywords = "stabbing" +, comments = "revised April 1991" } @inproceedings{bt-cst-91i -, author = "B. Bhattacharya and G. Toussaint" -, title = "Computing shortest transversals" -, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 510 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "649--660" -, keywords = "stabbing" -, update = "93.09 rote" +, author = "B. Bhattacharya and G. Toussaint" +, title = "Computing shortest transversals" +, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 510 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "649--660" +, keywords = "stabbing" +, update = "93.09 rote" } @article{bt-cst-91a -, author = "B. Bhattacharya and G. Toussaint" -, title = "Computing shortest transversals" -, journal = "Computing" -, volume = 46 -, number = 3 -, year = 1991 -, pages = "93--119" -, keywords = "stabbing, line fitting" -, update = "98.11 bibrelex, 93.09 rote" -, annote = "of $n$ given line segments in the plane in $O(n \log^2 n)$ - time, and related problems" +, author = "B. Bhattacharya and G. Toussaint" +, title = "Computing shortest transversals" +, journal = "Computing" +, volume = 46 +, number = 3 +, year = 1991 +, pages = "93--119" +, keywords = "stabbing, line fitting" +, update = "98.11 bibrelex, 93.09 rote" +, annote = "of $n$ given line segments in the plane in $O(n \log^2 n)$ + time, and related problems" } @inproceedings{b-eolca-88 -, author = "B. K. Bhattacharya" -, title = "An efficient on-line {Chebyshov} approximation algorithm for a finite planar pointset" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, volume = 1 -, year = 1988 -, pages = "107--108" -, keywords = "line fitting, points, optimization" -, update = "95.05 korneenko" +, author = "B. K. Bhattacharya" +, title = "An efficient on-line {Chebyshov} approximation algorithm for a finite planar pointset" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, volume = 1 +, year = 1988 +, pages = "107--108" +, keywords = "line fitting, points, optimization" +, update = "95.05 korneenko" } @techreport{b-acgpr-82 -, author = "B. K. Bhattacharya" -, title = "Application of computational geometry to pattern recognition problems" -, type = "Technical {Report}" -, number = "82-3" -, institution = "Dept. Comput. Sci., Simon Fraser Univ." -, address = "Burnaby, BC" -, year = 1982 -, update = "98.03 bibrelex" +, author = "B. K. Bhattacharya" +, title = "Application of computational geometry to pattern recognition problems" +, type = "Technical {Report}" +, number = "82-3" +, institution = "Dept. Comput. Sci., Simon Fraser Univ." +, address = "Burnaby, BC" +, year = 1982 +, update = "98.03 bibrelex" } @phdthesis{b-acgpr-80 -, author = "B. K. Bhattacharya" -, title = "Applications of computational geometry to pattern recognition problems" -, type = "Ph.{D}. Thesis" -, school = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1980 -, keywords = "doctoral thesis" +, author = "B. K. Bhattacharya" +, title = "Applications of computational geometry to pattern recognition problems" +, type = "Ph.{D}. Thesis" +, school = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1980 +, keywords = "doctoral thesis" } @incollection{b-cspps-88 -, author = "B. K. Bhattacharya" -, title = "Circular separability of planar point sets" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "25--39" +, author = "B. K. Bhattacharya" +, title = "Circular separability of planar point sets" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "25--39" } @inproceedings{b-uasls-91 -, author = "Binay K. Bhattacharya" -, title = "Usefulness of Angle-Sweep over Line-Sweep" -, booktitle = "Proc. 11th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "New Delhi, India" -, year = 1991 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Binay K. Bhattacharya" +, title = "Usefulness of Angle-Sweep over Line-Sweep" +, booktitle = "Proc. 11th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "New Delhi, India" +, year = 1991 +, pages = "??" +, update = "93.09 milone+mitchell" } @techreport{bet-csdix- -, author = "B. K. Bhattacharya and P. Egyed and G. T. Toussaint" -, title = "On computing shortest distances inside {X}-shaped polygons" -, type = "Manuscript" -, update = "97.11 bibrelex" +, author = "B. K. Bhattacharya and P. Egyed and G. T. Toussaint" +, title = "On computing shortest distances inside {X}-shaped polygons" +, type = "Manuscript" +, update = "97.11 bibrelex" } @article{be-nlcha-84 -, author = "B. K. Bhattacharya and H. ElGindy" -, title = "A new linear convex hull algorithm for simple polygons" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-30" -, year = 1984 -, pages = "85--88" +, author = "B. K. Bhattacharya and H. ElGindy" +, title = "A new linear convex hull algorithm for simple polygons" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-30" +, year = 1984 +, pages = "85--88" } % not Mukhopadhayay (title page typo) @inproceedings{bjmr-oassi-91 -, author = "B. K. Bhattacharya and S. Jadhav and A. Mukhopadhyay and J.-M. Robert" -, title = "Optimal algorithms for some smallest intersection radius problems" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "81--88" -, keywords = "prune and search, optimization" -, cites = "bt-cst-90t, bcetsu-csts-90, b-fihs-78, c-lpot-86, c-pcmce-85, d-ltatt-84, d-mstia-86, gs-spscp-89, hdk-cgp-64, hiir-wolla-89, m-ltalp-83, m-lpltw-84, s-cg-78, s-lpchm-90, s-qgs-57, s-pavsf-60, ZZZ" -, update = "97.11 bibrelex, 96.09 agarwal" +, author = "B. K. Bhattacharya and S. Jadhav and A. Mukhopadhyay and J.-M. Robert" +, title = "Optimal algorithms for some smallest intersection radius problems" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "81--88" +, keywords = "prune and search, optimization" +, cites = "bt-cst-90t, bcetsu-csts-90, b-fihs-78, c-lpot-86, c-pcmce-85, d-ltatt-84, d-mstia-86, gs-spscp-89, hdk-cgp-64, hiir-wolla-89, m-ltalp-83, m-lpltw-84, s-cg-78, s-lpchm-90, s-qgs-57, s-pavsf-60, ZZZ" +, update = "97.11 bibrelex, 96.09 agarwal" } @inproceedings{bm-cltcs-95 -, author = "Binay K. Bhattacharya and Asish Mukhopadhyay" -, title = "Computing in Linear Time a Chord from which a Simple Polygon is Weakly Internally Visible" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "22--31" -, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "Binay K. Bhattacharya and Asish Mukhopadhyay" +, title = "Computing in Linear Time a Chord from which a Simple Polygon is Weakly Internally Visible" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "22--31" +, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @inproceedings{bmt-ltacs-91 -, author = "B. K. Bhattacharya and A. Mukhopadhyay and G. T. Toussaint" -, title = "A linear time algorithm for computing the shortest line segment from which a polygon is weakly visible" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "412--424" -, keywords = "polygon, visibility" +, author = "B. K. Bhattacharya and A. Mukhopadhyay and G. T. Toussaint" +, title = "A linear time algorithm for computing the shortest line segment from which a polygon is weakly visible" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "412--424" +, keywords = "polygon, visibility" } @article{br-ccip-90 -, author = "B. K. Bhattacharya and A. Rosenfeld" -, title = "Contour codes of isothetic polygons" -, journal = "Comput. Vision Graph. Image Process." -, volume = 50 -, number = 3 -, year = 1990 -, pages = "353--363" -, keywords = "isothetic, shape" -, update = "95.05 korneenko" +, author = "B. K. Bhattacharya and A. Rosenfeld" +, title = "Contour codes of isothetic polygons" +, journal = "Comput. Vision Graph. Image Process." +, volume = 50 +, number = 3 +, year = 1990 +, pages = "353--363" +, keywords = "isothetic, shape" +, update = "95.05 korneenko" } @article{bs-spoos-97 -, author = "B. K. Bhattacharya and S. Sen" -, title = "On a Simple, Practical, Optimal, Output-Sensitive Randomized Planar Convex Hull Algorithm" -, journal = "J. Algorithms" -, volume = 25 -, year = 1997 -, pages = "177--193" -, update = "97.11 smid" +, author = "B. K. Bhattacharya and S. Sen" +, title = "On a Simple, Practical, Optimal, Output-Sensitive Randomized Planar Convex Hull Algorithm" +, journal = "J. Algorithms" +, volume = 25 +, year = 1997 +, pages = "177--193" +, update = "97.11 smid" } @article{bt-cdacp-82 -, author = "B. K. Bhattacharya and G. T. Toussaint" -, title = "A counterexample to a diameter algorithm for convex polygons" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-4" -, year = 1982 -, pages = "306--309" -, succeeds = "st-fer-80" -, precedes = "st-ccdac-82" +, author = "B. K. Bhattacharya and G. T. Toussaint" +, title = "A counterexample to a diameter algorithm for convex polygons" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-4" +, year = 1982 +, pages = "306--309" +, succeeds = "st-fer-80" +, precedes = "st-ccdac-82" } @techreport{bt-ladts-86 -, author = "B. K. Bhattacharya and G. T. Toussaint" -, title = "A linear algorithm for determining translation separability of two simple polygons" -, type = "Report" -, number = "SOCS-86.1" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1986 +, author = "B. K. Bhattacharya and G. T. Toussaint" +, title = "A linear algorithm for determining translation separability of two simple polygons" +, type = "Report" +, number = "SOCS-86.1" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1986 } @article{bt-eacmd-83 -, author = "B. K. Bhattacharya and G. T. Toussaint" -, title = "Efficient algorithms for computing the maximum distance between two finite planar sets" -, journal = "J. Algorithms" -, volume = 4 -, year = 1983 -, pages = "121--136" +, author = "B. K. Bhattacharya and G. T. Toussaint" +, title = "Efficient algorithms for computing the maximum distance between two finite planar sets" +, journal = "J. Algorithms" +, volume = 4 +, year = 1983 +, pages = "121--136" } @article{bt-facdf-88 -, author = "B. K. Bhattacharya and G. T. Toussaint" -, title = "Fast algorithms for computing the diameter of a finite planar set" -, journal = "Visual Comput." -, volume = 3 -, year = 1988 -, pages = "379--388" +, author = "B. K. Bhattacharya and G. T. Toussaint" +, title = "Fast algorithms for computing the diameter of a finite planar set" +, journal = "Visual Comput." +, volume = 3 +, year = 1988 +, pages = "379--388" } @incollection{bt-gatuf-85 -, author = "B. K. Bhattacharya and G. T. Toussaint" -, title = "On geometric algorithms that use the furthest-point {Voronoi} diagram" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "43--61" -, succeeds = "tb-gatuf-81" +, author = "B. K. Bhattacharya and G. T. Toussaint" +, title = "On geometric algorithms that use the furthest-point {Voronoi} diagram" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "43--61" +, succeeds = "tb-gatuf-81" } @article{bt-tseio-83 -, author = "B. K. Bhattacharya and G. T. Toussaint" -, title = "Time- and storage-efficient implementation of an optimal convex hull algorithm" -, journal = "Image Vision Comput." -, volume = 1 -, year = 1983 -, pages = "140--144" +, author = "B. K. Bhattacharya and G. T. Toussaint" +, title = "Time- and storage-efficient implementation of an optimal convex hull algorithm" +, journal = "Image Vision Comput." +, volume = 1 +, year = 1983 +, pages = "140--144" } @techreport{bz-stdfp-86 -, author = "B. K. Bhattacharya and J. Zorbas" -, title = "Solving the two-dimensional findpath problem using a line-triangle representation of the robot" -, type = "Technical {Report}" -, institution = "School Comput. Sci., Simon Fraser Univ." -, address = "Burnaby, BC" -, year = 1986 -, update = "98.03 bibrelex" +, author = "B. K. Bhattacharya and J. Zorbas" +, title = "Solving the two-dimensional findpath problem using a line-triangle representation of the robot" +, type = "Technical {Report}" +, institution = "School Comput. Sci., Simon Fraser Univ." +, address = "Burnaby, BC" +, year = 1986 +, update = "98.03 bibrelex" } @article{bz-stdfp-88 -, author = "B. K. Bhattacharya and J. Zorbas" -, title = "Solving the two-dimensional findpath problem using a line-triangle representation of the robot" -, journal = "J. Algorithms" -, volume = 9 -, year = 1988 -, pages = "449--469" +, author = "B. K. Bhattacharya and J. Zorbas" +, title = "Solving the two-dimensional findpath problem using a line-triangle representation of the robot" +, journal = "J. Algorithms" +, volume = 9 +, year = 1988 +, pages = "449--469" } @techreport{br-prttd-94 -, author = "P. Bhattacharya and A. Rosenfeld" -, title = "Polygonal ribbons in two and three dimensions" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1994 -, keywords = "ribbons, strips, orientability, twist, Hamiltonian triangulation" -, update = "95.09 mitchell" +, author = "P. Bhattacharya and A. Rosenfeld" +, title = "Polygonal ribbons in two and three dimensions" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1994 +, keywords = "ribbons, strips, orientability, twist, Hamiltonian triangulation" +, update = "95.09 mitchell" } @article{b-sfctg-69 -, author = "T. Bially" -, title = "Space-filling curves: Their generation and their application to bandwidth reduction" -, journal = "IEEE Trans. Inform. Theory" -, volume = 15 -, year = 1969 -, pages = "658--664" -, update = "97.07 agarwal" +, author = "T. Bially" +, title = "Space-filling curves: Their generation and their application to bandwidth reduction" +, journal = "IEEE Trans. Inform. Theory" +, volume = 15 +, year = 1969 +, pages = "658--664" +, update = "97.07 agarwal" } @article{bd-shc2c-91 -, author = "A. Bialostocki and P. Dierker" -, title = "On simple {Hamiltonian} cycles in a 2-colored complete graph" -, journal = "Ars Combin." -, volume = 21 -, year = 1991 -, pages = "13--16" -, update = "97.11 bibrelex" +, author = "A. Bialostocki and P. Dierker" +, title = "On simple {Hamiltonian} cycles in a 2-colored complete graph" +, journal = "Ars Combin." +, volume = 21 +, year = 1991 +, pages = "13--16" +, update = "97.11 bibrelex" } @article{bl-rpsp-90 -, author = "G. Bianchi and M. Longinetti" -, title = "Reconstructing plane sets from projections" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "223--242" +, author = "G. Bianchi and M. Longinetti" +, title = "Reconstructing plane sets from projections" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "223--242" } @article{bd-nstg-93 -, author = "E. Bibelnieks and P. M. Dearing" -, title = "Neighborhood Subtree Tolerance Graphs" -, journal = "Discrete Appl. Math." -, volume = 43 -, year = 1993 -, pages = "13--26" -, update = "98.11 bibrelex" +, author = "E. Bibelnieks and P. M. Dearing" +, title = "Neighborhood Subtree Tolerance Graphs" +, journal = "Discrete Appl. Math." +, volume = 43 +, year = 1993 +, pages = "13--26" +, update = "98.11 bibrelex" } @inproceedings{b-iod3g-96 -, author = "T. Biedl" -, title = "Improved orthogonal drawings of 3-graphs" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "295--299" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "T. Biedl" +, title = "Improved orthogonal drawings of 3-graphs" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "295--299" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{b-oodcp-96 -, author = "T. Biedl" -, title = "Optimal orthogonal drawings of connected plane graphs" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "306--311" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "T. Biedl" +, title = "Optimal orthogonal drawings of connected plane graphs" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "306--311" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{bddlloorstw-lupc3d-99 -, author = "T. Biedl and E. Demaine and M. Demaine and S. Lazard and A. Lubiw and J. O'Rourke and M. Overmars and S. Robbins and I. Streinu and G. Toussaint and S. Whitesides" -, title = "Locked and Unlocked Polygonal Chains in {3D}" -, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '99" -, month = jan -, year = 1999 -, pages = "866--867" -, note = "Full version Smith Tech. Rep. 060, Oct. 1999; - LANL arXive cs.CG/9910009" -, archive = "XXX:cs.CG/9910009" -, update = "01.04 orourke, 00.03 orourke, 99.07 bibrelex, 99.03 orourke, 98.11 orourke" +, author = "T. Biedl and E. Demaine and M. Demaine and S. Lazard and A. Lubiw and J. O'Rourke and M. Overmars and S. Robbins and I. Streinu and G. Toussaint and S. Whitesides" +, title = "Locked and Unlocked Polygonal Chains in {3D}" +, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '99" +, month = jan +, year = 1999 +, pages = "866--867" +, note = "Full version Smith Tech. Rep. 060, Oct. 1999; + LANL arXive cs.CG/9910009" +, archive = "XXX:cs.CG/9910009" +, update = "01.04 orourke, 00.03 orourke, 99.07 bibrelex, 99.03 orourke, 98.11 orourke" } @article{bddlloorstw-lupc3d-01 -, author = "T. Biedl and E. Demaine and M. Demaine and S. Lazard and A. Lubiw and J. O'Rourke and M. Overmars and S. Robbins and I. Streinu and G. Toussaint and S. Whitesides" -, title = "Locked and Unlocked Polygonal Chains in {3D}" -, journal = "Discrete Comput. Geom." -, volume = 26 -, number = 3 -, year = 2001 -, pages = "269--282" -, comments = "Much detail left out; see full versions" -, succeeds = "bddlloorstw-lupc3d-99" -, update = "02.03 orourke" +, author = "T. Biedl and E. Demaine and M. Demaine and S. Lazard and A. Lubiw and J. O'Rourke and M. Overmars and S. Robbins and I. Streinu and G. Toussaint and S. Whitesides" +, title = "Locked and Unlocked Polygonal Chains in {3D}" +, journal = "Discrete Comput. Geom." +, volume = 26 +, number = 3 +, year = 2001 +, pages = "269--282" +, comments = "Much detail left out; see full versions" +, succeeds = "bddlloorstw-lupc3d-99" +, update = "02.03 orourke" } @inproceedings{bddloorsw-orfltcl-98 -, author = "T. Biedl and E. Demaine and M. Demaine and A. Lubiw and J. O'Rourke and M. Overmars and S. Robbins and I. Streinu and G. T. Toussaint and S. Whitesides" -, title = "On Reconfiguring Tree Linkages: {T}rees Can Lock" -, booktitle = "Proc. 10th Canad. Conf. Comput. Geom." -, year = 1998 -, pages = "4--5" -, note = "Full version LANL arXive cs.CG/9910024; - to appear in {\em Discrete Math.}" -, archive = "XXX:cs.CG/9910024" -, update = "01.04 orourke, 00.03 orourke" +, author = "T. Biedl and E. Demaine and M. Demaine and A. Lubiw and J. O'Rourke and M. Overmars and S. Robbins and I. Streinu and G. T. Toussaint and S. Whitesides" +, title = "On Reconfiguring Tree Linkages: {T}rees Can Lock" +, booktitle = "Proc. 10th Canad. Conf. Comput. Geom." +, year = 1998 +, pages = "4--5" +, note = "Full version LANL arXive cs.CG/9910024; + to appear in {\em Discrete Math.}" +, archive = "XXX:cs.CG/9910024" +, update = "01.04 orourke, 00.03 orourke" } @inproceedings{bddloorw-uscop-98 -, author = "T. Biedl and E. Demaine and M. Demaine and A. Lubiw and J. O'Rourke and M. Overmars and S. Robbins and S. Whitesides" -, title = "Unfolding Some Classes of Orthogonal Polyhedra" -, booktitle = "Proc. 10th Canad. Conf. Comput. Geom." -, year = 1998 -, pages = "70--71" -, note = "Fuller version in Elec. Proc. - http://cgm.cs.mcgill.ca/cccg98/proceedings/welcome.hml" -, update = "00.03 orourke" +, author = "T. Biedl and E. Demaine and M. Demaine and A. Lubiw and J. O'Rourke and M. Overmars and S. Robbins and S. Whitesides" +, title = "Unfolding Some Classes of Orthogonal Polyhedra" +, booktitle = "Proc. 10th Canad. Conf. Comput. Geom." +, year = 1998 +, pages = "70--71" +, note = "Fuller version in Elec. Proc. + http://cgm.cs.mcgill.ca/cccg98/proceedings/welcome.hml" +, update = "00.03 orourke" } @inproceedings{bk-bhogd-94 -, author = "T. Biedl and G. Kant" -, title = "A Better Heuristic for Orthogonal Graph Drawings" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, nickname = "ESA '94" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "24--35" -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "T. Biedl and G. Kant" +, title = "A Better Heuristic for Orthogonal Graph Drawings" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, nickname = "ESA '94" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "24--35" +, keywords = "graph drawing" +, update = "95.01 tamassia" } @article{bk-bhogd-98 -, author = "T. Biedl and G. Kant" -, title = "A Better Heuristic for Orthogonal Graph Drawings" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, year = 1998 -, pages = "159--180" -, update = "98.03 smid" +, author = "T. Biedl and G. Kant" +, title = "A Better Heuristic for Orthogonal Graph Drawings" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, year = 1998 +, pages = "159--180" +, update = "98.03 smid" } @inproceedings{bls-wcnfp-99 -, author = "Therese Biedl and Anna Lubiw and Julie Sun" -, title = "When Can a Net Fold to a Polyhedron?" -, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." -, year = 1999 -, pages = "1--4" -, update = "01.11 orourke" +, author = "Therese Biedl and Anna Lubiw and Julie Sun" +, title = "When Can a Net Fold to a Polyhedron?" +, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." +, year = 1999 +, pages = "1--4" +, update = "01.11 orourke" } @inproceedings{bsww-o3dgd-97 -, author = "T. Biedl and T. Shermer and S. Whitesides and S. Wismath" -, title = "Orthogonal $3$-{D} Graph Drawing" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "76--86" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "T. Biedl and T. Shermer and S. Whitesides and S. Wismath" +, title = "Orthogonal $3$-{D} Graph Drawing" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "76--86" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{b-h3ogd-95 -, author = "T. C. Biedl" -, title = "Heuristics for {\em 3D}-orthogonal graph drawings" -, booktitle = "Proc. 4th Twente Workshop on Graphs and Combinatorial Optimization" -, year = 1995 -, pages = "41--44" -, keywords = "graph drawing, 3D, orthogonal" -, update = "96.09 tamassia" +, author = "T. C. Biedl" +, title = "Heuristics for {\em 3D}-orthogonal graph drawings" +, booktitle = "Proc. 4th Twente Workshop on Graphs and Combinatorial Optimization" +, year = 1995 +, pages = "41--44" +, keywords = "graph drawing, 3D, orthogonal" +, update = "96.09 tamassia" } @article{b-nlbod-98 -, author = "Therese C. Biedl" -, title = "New Lower Bounds For Orthogonal Drawings" -, journal = "J. Graph Algorithms Appl." -, volume = 2 -, number = 7 -, year = 1998 -, pages = "1--31" -, url = "https://www.cs.brown.edu/publications/jgaa/accepted/98/Biedl98.2.7.ps.gz" -, succeeds = "b-nlbog-96" -, update = "00.03 vismara" +, author = "Therese C. Biedl" +, title = "New Lower Bounds For Orthogonal Drawings" +, journal = "J. Graph Algorithms Appl." +, volume = 2 +, number = 7 +, year = 1998 +, pages = "1--31" +, url = "https://www.cs.brown.edu/publications/jgaa/accepted/98/Biedl98.2.7.ps.gz" +, succeeds = "b-nlbog-96" +, update = "00.03 vismara" } @inproceedings{b-nlbog-96 -, author = "T. C. Biedl" -, title = "New Lower Bounds for Orthogonal Graph Drawings" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD~'95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "28--39" -, update = "99.03 vismara" +, author = "T. C. Biedl" +, title = "New Lower Bounds for Orthogonal Graph Drawings" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD~'95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "28--39" +, update = "99.03 vismara" } @article{b-rbsog-98 -, author = "Therese C. Biedl" -, title = "Relating Bends and Size in Orthogonal Graph Drawings" -, journal = "Inform. Process. Lett." -, volume = 65 -, year = 1998 -, pages = "111--115" -, keywords = "graph drawing, orthogonal" -, update = "99.03 patrignani" +, author = "Therese C. Biedl" +, title = "Relating Bends and Size in Orthogonal Graph Drawings" +, journal = "Inform. Process. Lett." +, volume = 65 +, year = 1998 +, pages = "111--115" +, keywords = "graph drawing, orthogonal" +, update = "99.03 patrignani" } @techreport{bdlrs-cmp-99 -, author = "T. C. Biedl and E. D. Demaine and S. Lazard and S. M. Robbins and M. A. Soss" -, title = "Convexifying Monotone Polygons" -, number = "CS-99-03" -, institution = "Univ. Waterloo, Ontario" -, year = 1999 -, update = "00.03 orourke" +, author = "T. C. Biedl and E. D. Demaine and S. Lazard and S. M. Robbins and M. A. Soss" +, title = "Convexifying Monotone Polygons" +, number = "CS-99-03" +, institution = "Univ. Waterloo, Ontario" +, year = 1999 +, update = "00.03 orourke" } @inproceedings{bk-aesig-97 -, author = "T. C. Biedl and M. Kaufmann" -, title = "Area-Efficient Static and Incremental Graph Darwings" -, editor = "R. Burkard and G. Woeginger" -, booktitle = "Algorithms (Proc. ESA~'97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1284 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "37--52" -, update = "98.07 vismara" +, author = "T. C. Biedl and M. Kaufmann" +, title = "Area-Efficient Static and Incremental Graph Darwings" +, editor = "R. Burkard and G. Woeginger" +, booktitle = "Algorithms (Proc. ESA~'97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1284 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "37--52" +, update = "98.07 vismara" } @inproceedings{bmt-tpmua-97 -, author = "Therese C. Biedl and Brendan P. Madden and Ioannis G. Tollis" -, title = "The Three-Phase Method: A Unified Approach to Orthogonal Graph Drawing" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "391--402" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Therese C. Biedl and Brendan P. Madden and Ioannis G. Tollis" +, title = "The Three-Phase Method: A Unified Approach to Orthogonal Graph Drawing" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "391--402" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{bmt-tpmua-00 -, author = "Therese C. Biedl and Brendan P. Madden and Ioannis G. Tollis" -, title = "The Three-Phase Method: A Unified Approach to Orthogonal Graph Drawing" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, number = 6 -, year = 2000 -, pages = "553--580" -, succeeds = "bmt-tpmua-97" -, update = "01.04 smid+vismara" +, author = "Therese C. Biedl and Brendan P. Madden and Ioannis G. Tollis" +, title = "The Three-Phase Method: A Unified Approach to Orthogonal Graph Drawing" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, number = 6 +, year = 2000 +, pages = "553--580" +, succeeds = "bmt-tpmua-97" +, update = "01.04 smid+vismara" } @techreport{bgg-raor-88 -, author = "E. Bienenstock and D. Geman and S. Geman" -, title = "A relational approach in object recognition" -, type = "Technical {Report}" -, institution = "Brown Univ." -, address = "Providence, RI" -, year = 1988 -, update = "98.03 bibrelex" +, author = "E. Bienenstock and D. Geman and S. Geman" +, title = "A relational approach in object recognition" +, type = "Technical {Report}" +, institution = "Brown Univ." +, address = "Providence, RI" +, year = 1988 +, update = "98.03 bibrelex" } @techreport{bggm-p2trd-90 -, author = "E. Bienenstock and D. Geman and S. Geman and D. E. McClure" -, title = "Phase {II} technical report, development of laser radar {ATR} algorithms" -, type = "Technical {Report}" -, number = "DAAL02-89-C-0081" -, institution = "CECOM Center for Night Vision and Electro-Optics" -, month = oct -, year = 1990 -, update = "98.03 bibrelex" +, author = "E. Bienenstock and D. Geman and S. Geman and D. E. McClure" +, title = "Phase {II} technical report, development of laser radar {ATR} algorithms" +, type = "Technical {Report}" +, number = "DAAL02-89-C-0081" +, institution = "CECOM Center for Night Vision and Electro-Optics" +, month = oct +, year = 1990 +, update = "98.03 bibrelex" } @inproceedings{b-sphcn-90 -, author = "D. Bienstock" -, title = "Some provably hard crossing number problems" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "253--260" -, precedes = "b-sphcn-91" -, cites = "bd-brcn-, eg-cnp-73, gj-cninc-83, gp-ccncp-80, gp-pgcsc-80, gp-ms-83, gp-sccca-84, gp-prpa-85, gp-taafp-86, gps-crotr-89, g-as-72, km-igs-94, l-civ-83, t-rdg-88, t-ttcn-70, ZZZ" -, update = "97.11 bibrelex" +, author = "D. Bienstock" +, title = "Some provably hard crossing number problems" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "253--260" +, precedes = "b-sphcn-91" +, cites = "bd-brcn-, eg-cnp-73, gj-cninc-83, gp-ccncp-80, gp-pgcsc-80, gp-ms-83, gp-sccca-84, gp-prpa-85, gp-taafp-86, gps-crotr-89, g-as-72, km-igs-94, l-civ-83, t-rdg-88, t-ttcn-70, ZZZ" +, update = "97.11 bibrelex" } @article{b-sphcn-91 -, author = "D. Bienstock" -, title = "Some provably hard crossing number problems" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "443--459" -, succeeds = "b-sphcn-90" +, author = "D. Bienstock" +, title = "Some provably hard crossing number problems" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "443--459" +, succeeds = "b-sphcn-90" } @unpublished{bd-brcn- -, author = "D. Bienstock and N. Dean" -, title = "Bounds on rectilinear crossing numbers" -, note = "Submitted" -, update = "97.11 bibrelex" +, author = "D. Bienstock and N. Dean" +, title = "Bounds on rectilinear crossing numbers" +, note = "Submitted" +, update = "97.11 bibrelex" } @article{bg-eps01-91 -, author = "D. Bienstock and E. Gy{\H o}ri" -, title = "An Extremal Problem on Sparse 0-1 Matrices" -, journal = "SIAM J. Discrete Math." -, volume = 4 -, year = 1991 -, pages = "17--27" -, update = "95.09 agarwal, 93.09 milone+mitchell" +, author = "D. Bienstock and E. Gy{\H o}ri" +, title = "An Extremal Problem on Sparse 0-1 Matrices" +, journal = "SIAM J. Discrete Math." +, volume = 4 +, year = 1991 +, pages = "17--27" +, update = "95.09 agarwal, 93.09 milone+mitchell" } @article{bm-cepgm-90 -, author = "D. Bienstock and C. L. Monma" -, title = "On the complexity of embedding planar graphs to minimize certain distance measures" -, journal = "Algorithmica" -, volume = 5 -, number = 1 -, year = 1990 -, pages = "93--109" -, keywords = "optimization, proximity" -, update = "95.05 korneenko" +, author = "D. Bienstock and C. L. Monma" +, title = "On the complexity of embedding planar graphs to minimize certain distance measures" +, journal = "Algorithmica" +, volume = 5 +, number = 1 +, year = 1990 +, pages = "93--109" +, keywords = "optimization, proximity" +, update = "95.05 korneenko" } @techreport{bm-oerpg-?? -, author = "D. Bienstock and C. L. Monma" -, title = "Optimal Enclosing Regions in Planar Graphs" -, type = "Manuscript" -, year = "??" -, precedes = "bm-oerpg-89" -, update = "95.05 korneenko, 93.09 milone+mitchell" +, author = "D. Bienstock and C. L. Monma" +, title = "Optimal Enclosing Regions in Planar Graphs" +, type = "Manuscript" +, year = "??" +, precedes = "bm-oerpg-89" +, update = "95.05 korneenko, 93.09 milone+mitchell" } @article{bm-oerpg-89 -, author = "D. Bienstock and C. L. Monma" -, title = "Optimal enclosing regions in planar graphs" -, journal = "Networks" -, volume = 19 -, number = 1 -, year = 1989 -, pages = "79--94" -, keywords = "" -, succeeds = "bm-oerpg-??" -, update = "95.05 korneenko" +, author = "D. Bienstock and C. L. Monma" +, title = "Optimal enclosing regions in planar graphs" +, journal = "Networks" +, volume = 19 +, number = 1 +, year = 1989 +, pages = "79--94" +, keywords = "" +, succeeds = "bm-oerpg-??" +, update = "95.05 korneenko" } @article{b-sdtd-90 -, author = "Eric A. Bier" -, title = "Snap-Dragging in Three Dimensions" -, journal = "Computer Graphics" -, volume = 24 -, number = 2 -, year = 1990 -, pages = "193--204" -, keywords = "Methodology and Techniques, Interaction techniques, Scene composition, interactive design, geometric construction, constraint systems" -, update = "97.11 bibrelex, 95.05 schwarzkopf, 93.09 milone+mitchell" +, author = "Eric A. Bier" +, title = "Snap-Dragging in Three Dimensions" +, journal = "Computer Graphics" +, volume = 24 +, number = 2 +, year = 1990 +, pages = "193--204" +, keywords = "Methodology and Techniques, Interaction techniques, Scene composition, interactive design, geometric construction, constraint systems" +, update = "97.11 bibrelex, 95.05 schwarzkopf, 93.09 milone+mitchell" } @techreport{bs-ppht-?? -, author = "E. A. Bier and K. R. {Sloan, Jr.}" -, title = "Pointing and placing with homogeneous transforms" -, type = "Report" -, number = "??" -, institution = "Architect. Mach. Group, Massachusetts Inst. Tech., Xerox Palo Alto Res. Center" -, year = "??" +, author = "E. A. Bier and K. R. {Sloan, Jr.}" +, title = "Pointing and placing with homogeneous transforms" +, type = "Report" +, number = "??" +, institution = "Architect. Mach. Group, Massachusetts Inst. Tech., Xerox Palo Alto Res. Center" +, year = "??" } @inproceedings{b-rp-89 -, author = "H. Bieri" -, title = "{Raster}-{Polyeder}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "H. Bieri" +, title = "{Raster}-{Polyeder}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @article{bn-rpsad-82 -, author = "H. Bieri and W. Nef" -, title = "A recursive plane-sweep algorithm, determining all cells of a finite division of {$R^{d}$}" -, journal = "Computing" -, volume = 28 -, year = 1982 -, pages = "189--198" +, author = "H. Bieri and W. Nef" +, title = "A recursive plane-sweep algorithm, determining all cells of a finite division of {$R^{d}$}" +, journal = "Computing" +, volume = 28 +, year = 1982 +, pages = "189--198" } @article{bn-space-85 -, author = "H. Bieri and W. Nef" -, title = "A sweep-plane algorithm for computing the {Euler} characteristic of polyhedra represented in boolean form" -, journal = "Computer" -, volume = 34 -, number = 4 -, year = 1985 -, pages = "287--302" -, keywords = "space sweep, polyhedra" -, update = "95.05 korneenko" +, author = "H. Bieri and W. Nef" +, title = "A sweep-plane algorithm for computing the {Euler} characteristic of polyhedra represented in boolean form" +, journal = "Computer" +, volume = 34 +, number = 4 +, year = 1985 +, pages = "287--302" +, keywords = "space sweep, polyhedra" +, update = "95.05 korneenko" } @article{bn-spacv-83 -, author = "H. Bieri and W. Nef" -, title = "A sweep-plane algorithm for computing the volume of polyhedra represented in boolean form" -, journal = "Linear Algebra and its Applications" -, volume = "52--53" -, year = 1983 -, pages = "69--97" +, author = "H. Bieri and W. Nef" +, title = "A sweep-plane algorithm for computing the volume of polyhedra represented in boolean form" +, journal = "Linear Algebra and its Applications" +, volume = "52--53" +, year = 1983 +, pages = "69--97" } @article{bn-aecra-84 -, author = "H. Bieri and W. Nef" -, title = "Algorithms for the {Euler} characteristic and related additive functionals of digital objects" -, journal = "Comput. Vision Graph. Image Process." -, volume = 28 -, year = 1984 -, pages = "166--175" +, author = "H. Bieri and W. Nef" +, title = "Algorithms for the {Euler} characteristic and related additive functionals of digital objects" +, journal = "Comput. Vision Graph. Image Process." +, volume = 28 +, year = 1984 +, pages = "166--175" } @inproceedings{bn-esodd-88 -, author = "H. Bieri and W. Nef" -, title = "Elementary set operations with $d$-dimensional polyhedra" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "97--112" -, update = "00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "H. Bieri and W. Nef" +, title = "Elementary set operations with $d$-dimensional polyhedra" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "97--112" +, update = "00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @proceedings{bn-cgmaa-91 -, title = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, editor = "H. Bieri and H. Noltemeier" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, update = "00.03 bibrelex, 97.11 icking" -, annote = "7th Intern. Workshop Comput. Geom." +, title = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, editor = "H. Bieri and H. Noltemeier" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, update = "00.03 bibrelex, 97.11 icking" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{bs-olacs-91 -, author = "Hanspeter Bieri and Peter-Michael Schmidt" -, title = "An on-line algorithm for constructing sweep planes in regular position" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "27--35" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Hanspeter Bieri and Peter-Michael Schmidt" +, title = "An on-line algorithm for constructing sweep planes in regular position" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "27--35" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{bs-ofmpi-92 -, author = "Hanspeter Bieri and Peter-Michael Schmidt" -, title = "On the Orders of Finitely Many Points Induced by Rotational Sweeps" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "61--63" -, update = "00.03 bibrelex" +, author = "Hanspeter Bieri and Peter-Michael Schmidt" +, title = "On the Orders of Finitely Many Points Induced by Rotational Sweeps" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "61--63" +, update = "00.03 bibrelex" } @inproceedings{bs-pgrsp-96 -, author = "H. Bieri and P.-M. Schmidt" -, title = "On the permutations generated by rotational sweeps of planar point sets" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "179--184" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "H. Bieri and P.-M. Schmidt" +, title = "On the permutations generated by rotational sweeps of planar point sets" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "179--184" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{bs-rpgsp-93 -, author = "Hanspeter Bieri and Peter-Michael Schmidt" -, title = "Recognizing Permutations Generated by Sweeps of Planar Point Sets" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "10--13" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" +, author = "Hanspeter Bieri and Peter-Michael Schmidt" +, title = "Recognizing Permutations Generated by Sweeps of Planar Point Sets" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "10--13" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" } @book{b-agt-74 -, author = "N. Biggs" -, title = "Algebraic Graph Theory" -, edition = "1st" -, publisher = "Cambridge University Press" -, year = 1974 -, update = "97.11 bibrelex" +, author = "N. Biggs" +, title = "Algebraic Graph Theory" +, edition = "1st" +, publisher = "Cambridge University Press" +, year = 1974 +, update = "97.11 bibrelex" } @book{b-agt-93 -, author = "N. Biggs" -, title = "Algebraic Graph Theory" -, edition = "2nd" -, publisher = "Cambridge University Press" -, year = 1993 -, update = "97.11 bibrelex, 95.01 matousek" +, author = "N. Biggs" +, title = "Algebraic Graph Theory" +, edition = "2nd" +, publisher = "Cambridge University Press" +, year = 1993 +, update = "97.11 bibrelex, 95.01 matousek" } @techreport{bn-absop-86 -, author = "G. Bilardi and A. Nicolau" -, title = "Adaptive Bitonic Sorting: {An} Optimal Parallel Algorithm for Shared Memory Machines" -, type = "Technical {Report}" -, number = "86-769" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = aug -, year = 1986 -, update = "98.03 bibrelex" +, author = "G. Bilardi and A. Nicolau" +, title = "Adaptive Bitonic Sorting: {An} Optimal Parallel Algorithm for Shared Memory Machines" +, type = "Technical {Report}" +, number = "86-769" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = aug +, year = 1986 +, update = "98.03 bibrelex" } @article{bn-absop-89 -, author = "G. Bilardi and A. Nicolau" -, title = "Adaptive bitonic sorting: An optimal parallel algorithm for shared-memory machines" -, journal = "Inform. Comput." -, volume = 18 -, year = 1989 -, pages = "216--228" -, update = "96.09 orourke" +, author = "G. Bilardi and A. Nicolau" +, title = "Adaptive bitonic sorting: An optimal parallel algorithm for shared-memory machines" +, journal = "Inform. Comput." +, volume = 18 +, year = 1989 +, pages = "216--228" +, update = "96.09 orourke" } @inproceedings{bp-mavno-84 -, author = "G. Bilardi and F. P. Preparata" -, title = "A minimum area {VLSI} network for {$O(\log n)$} time sorting" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "64--70" -, precedes = "bp-mavno-85" +, author = "G. Bilardi and F. P. Preparata" +, title = "A minimum area {VLSI} network for {$O(\log n)$} time sorting" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "64--70" +, precedes = "bp-mavno-85" } @article{bp-mavno-85 -, author = "G. Bilardi and F. P. Preparata" -, title = "A minimum area {VLSI} network for {$O(\log n)$} time sorting" -, journal = "IEEE Trans. Comput." -, volume = "C-34" -, year = 1985 -, pages = "336--343" -, succeeds = "bp-mavno-84" +, author = "G. Bilardi and F. P. Preparata" +, title = "A minimum area {VLSI} network for {$O(\log n)$} time sorting" +, journal = "IEEE Trans. Comput." +, volume = "C-34" +, year = 1985 +, pages = "336--343" +, succeeds = "bp-mavno-84" } @inproceedings{bp-lbptt-95 -, author = "G. Bilardi and F. P. Preparata" -, title = "Lower bounds to processor-time tradeoffs under bounded-speed message propagation" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "1--12" -, update = "99.07 bibrelex, 98.07 bibrelex, 96.09 orourke" +, author = "G. Bilardi and F. P. Preparata" +, title = "Lower bounds to processor-time tradeoffs under bounded-speed message propagation" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "1--12" +, update = "99.07 bibrelex, 98.07 bibrelex, 96.09 orourke" } @techreport{bp-pangs-?? -, author = "G. Bilardi and F. P. Preparata" -, title = "Probabilistic analysis of a new geometric searching technique" -, type = "Manuscript" -, institution = "??" -, year = "??" -, keywords = "point location, probabilistic analysis" +, author = "G. Bilardi and F. P. Preparata" +, title = "Probabilistic analysis of a new geometric searching technique" +, type = "Manuscript" +, institution = "??" +, year = "??" +, keywords = "point location, probabilistic analysis" } @incollection{bs-ovcdf-87 -, author = "Gianfranco Bilardi and Majid Sarrafzadeh" -, title = "Optimal {VLSI} Circuits for the Discrete {Fourier} Transform" -, editor = "Franco P. Preparata" -, booktitle = "Parallel and Distributed Computing" -, series = "Adv. Comput. Res." -, volume = 4 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1987 -, pages = "87--101" -, update = "01.04 icking" +, author = "Gianfranco Bilardi and Majid Sarrafzadeh" +, title = "Optimal {VLSI} Circuits for the Discrete {Fourier} Transform" +, editor = "Franco P. Preparata" +, booktitle = "Parallel and Distributed Computing" +, series = "Adv. Comput. Res." +, volume = 4 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1987 +, pages = "87--101" +, update = "01.04 icking" } @article{b-htssg-88 -, author = "L. Billera" -, title = "Homology theory of smooth splines: generic triangulations and a conjecture of {Strang}" -, journal = "Trans. Amer. Math. Soc." -, volume = 310 -, year = 1988 -, pages = "325--340" -, update = "98.07 bibrelex" +, author = "L. Billera" +, title = "Homology theory of smooth splines: generic triangulations and a conjecture of {Strang}" +, journal = "Trans. Amer. Math. Soc." +, volume = 310 +, year = 1988 +, pages = "325--340" +, update = "98.07 bibrelex" } @incollection{bb-fnpc-97 -, author = "L. J. Billera and A. Bj{\"o}rner" -, title = "Face numbers of polytopes and complexes" -, chapter = 15 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "291--310" -, update = "97.11 orourke" +, author = "L. J. Billera and A. Bj{\"o}rner" +, title = "Face numbers of polytopes and complexes" +, chapter = 15 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "291--310" +, update = "97.11 orourke" } @article{bfs-ccsp-90 -, author = "L. J. Billera and P. Filliman and B. Sturmfels" -, title = "Constructions and Complexity of Secondary Polytopes" -, journal = "Adv. Math." -, volume = 83 -, year = 1990 -, pages = "155--179" -, update = "97.11 bibrelex" +, author = "L. J. Billera and P. Filliman and B. Sturmfels" +, title = "Constructions and Complexity of Secondary Polytopes" +, journal = "Adv. Math." +, volume = 83 +, year = 1990 +, pages = "155--179" +, update = "97.11 bibrelex" } @article{bl-psmcf-81 -, author = "L. J. Billera and C. W. Lee" -, title = "A Proof of the Suffiency of {McMullen}'s Conditions for $f$-vectors of Simplicial Polytopes" -, journal = "J. Combin. Theory Ser. A" -, volume = 31 -, number = 3 -, year = 1981 -, pages = "237--255" -, update = "98.03 bibrelex" +, author = "L. J. Billera and C. W. Lee" +, title = "A Proof of the Suffiency of {McMullen}'s Conditions for $f$-vectors of Simplicial Polytopes" +, journal = "J. Combin. Theory Ser. A" +, volume = 31 +, number = 3 +, year = 1981 +, pages = "237--255" +, update = "98.03 bibrelex" } @article{bm-bsebs-87 -, author = "L. J. Billera and K. E. Magurn" -, title = "Balanced subdivision and enumeration in balanced spheres" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "297--317" +, author = "L. J. Billera and K. E. Magurn" +, title = "Balanced subdivision and enumeration in balanced spheres" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "297--317" } @article{br-dsms-91 -, author = "L. J. Billera and L. L. Rose" -, title = "A dimension series for multivariate splines" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "107--128" +, author = "L. J. Billera and L. L. Rose" +, title = "A dimension series for multivariate splines" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "107--128" } @incollection{b-sat3m-64 -, author = "R. H. Bing" -, title = "Some aspects of the topology of $3$-manifolds related to the {Poincar\'e} conjecture" -, booktitle = "Lectures in Modern Mathematics" -, volume = 2 -, publisher = "John Wiley \& Sons" -, year = 1964 -, pages = "93--128" -, keywords = "triangulation, three-dimensional, shellability, topology" -, update = "99.11 bibrelex, 95.09 korneenko" -, annote = "possibly some other topics" +, author = "R. H. Bing" +, title = "Some aspects of the topology of $3$-manifolds related to the {Poincar\'e} conjecture" +, booktitle = "Lectures in Modern Mathematics" +, volume = 2 +, publisher = "John Wiley \& Sons" +, year = 1964 +, pages = "93--128" +, keywords = "triangulation, three-dimensional, shellability, topology" +, update = "99.11 bibrelex, 95.09 korneenko" +, annote = "possibly some other topics" } @book{bp-fa-94 -, author = "D. Bini and V. Y. Pan" -, title = "Fundamental Algorithms" -, series = "Polynomial and Matrix Computations" -, volume = 1 -, publisher = "Birkh{\"a}user" -, address = "Boston, MA" -, year = 1994 -, update = "98.07 bibrelex" +, author = "D. Bini and V. Y. Pan" +, title = "Fundamental Algorithms" +, series = "Polynomial and Matrix Computations" +, volume = 1 +, publisher = "Birkh{\"a}user" +, address = "Boston, MA" +, year = 1994 +, update = "98.07 bibrelex" } @techreport{bs-gwbev-89 -, author = "B. Birgisson and G. Shannon" -, title = "GraphView: {A} Workstation-Based Environment for Viewing Graphs and Animating Graph Algorithms" -, number = 295 -, institution = "Department of Computer Science, Indiana University" -, year = 1989 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "B. Birgisson and G. Shannon" +, title = "GraphView: {A} Workstation-Based Environment for Viewing Graphs and Animating Graph Algorithms" +, number = 295 +, institution = "Department of Computer Science, Indiana University" +, year = 1989 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @mastersthesis{b-lvpop-96 -, author = "R. Birk" -, title = "L{\"o}sung von {Varianten} des {Post-Office-Problems} mit {Hilfe} von {Skip List Range Trees}" -, type = "Masters Thesis" -, school = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1996 -, keywords = "masters thesis" -, update = "96.09 smid" +, author = "R. Birk" +, title = "L{\"o}sung von {Varianten} des {Post-Office-Problems} mit {Hilfe} von {Skip List Range Trees}" +, type = "Masters Thesis" +, school = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1996 +, keywords = "masters thesis" +, update = "96.09 smid" } @inproceedings{bl-facgp-91 -, author = "Y. Birk and J. B. Lotspiech" -, title = "A fast algorithm for connecting grid points to the boundary with nonintersecting straight lines" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "465--474" +, author = "Y. Birk and J. B. Lotspiech" +, title = "A fast algorithm for connecting grid points to the boundary with nonintersecting straight lines" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "465--474" } @book{bgm-sma-65 -, author = "Birkhoff and Garret and S. {MacLane}" -, title = "A Survey of Modern Algebra" -, edition = "3rd" -, publisher = "MacMillan" -, address = "New York, NY" -, year = 1965 -, update = "97.11 bibrelex" +, author = "Birkhoff and Garret and S. {MacLane}" +, title = "A Survey of Modern Algebra" +, edition = "3rd" +, publisher = "MacMillan" +, address = "New York, NY" +, year = 1965 +, update = "97.11 bibrelex" } @book{bi-pl-67 -, author = "G. Birkhoff" -, title = "Lattice Theory" -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1967 -, keywords = "graph drawing, planar, upward, lattice" -, update = "95.05 tamassia" +, author = "G. Birkhoff" +, title = "Lattice Theory" +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1967 +, keywords = "graph drawing, planar, upward, lattice" +, update = "95.05 tamassia" } @article{b-cgra-88 -, author = "F. G. Bischoff" -, title = "Computational geometry for reactor applications" -, journal = "Trans. Amer. Nuclear Soc." -, volume = 57 -, year = 1988 -, pages = "112--113" -, keywords = "facility location" -, update = "95.05 korneenko" +, author = "F. G. Bischoff" +, title = "Computational geometry for reactor applications" +, journal = "Trans. Amer. Nuclear Soc." +, volume = 57 +, year = 1988 +, pages = "112--113" +, keywords = "facility location" +, update = "95.05 korneenko" } @inproceedings{bm-carnd-95 -, author = "P. Biscondi and J.-M. Moreau" -, title = "Computer-Aided Road Network Design" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "229--234" -, update = "95.09 jones" +, author = "P. Biscondi and J.-M. Moreau" +, title = "Computer-Aided Road Network Design" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "229--234" +, update = "95.09 jones" } @book{bb-ca-85 -, author = "E. Bishop and D. Bridges" -, title = "Constructive Analysis" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1985 -, update = "97.11 bibrelex" +, author = "E. Bishop and D. Bridges" +, title = "Constructive Analysis" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1985 +, update = "97.11 bibrelex" } @techreport{bst-cre-90 -, author = "V. Bistiolas and D. Sofotassios and A. Tsakalidis" -, title = "Computing Rectangle Enclosures" -, type = "Technical {Report}" -, number = "90.12.3?" -, institution = "Univ. of Patras" -, address = "Greece" -, year = 1990 -, precedes = "bst-cre-93" -, update = "95.05 korneenko, 93.09 milone+mitchell" +, author = "V. Bistiolas and D. Sofotassios and A. Tsakalidis" +, title = "Computing Rectangle Enclosures" +, type = "Technical {Report}" +, number = "90.12.3?" +, institution = "Univ. of Patras" +, address = "Greece" +, year = 1990 +, precedes = "bst-cre-93" +, update = "95.05 korneenko, 93.09 milone+mitchell" } @article{bst-cre-93 -, author = "V. Bistiolas and D. Sofotassios and A. Tsakalidis" -, title = "Computing rectangle enclosures" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 6 -, year = 1993 -, pages = "303--308" -, keywords = "isothetic, enclosure" -, succeeds = "bst-cre-90" -, update = "95.05 korneenko" +, author = "V. Bistiolas and D. Sofotassios and A. Tsakalidis" +, title = "Computing rectangle enclosures" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 6 +, year = 1993 +, pages = "303--308" +, keywords = "isothetic, enclosure" +, succeeds = "bst-cre-90" +, update = "95.05 korneenko" } @techreport{bst-pse-90 -, author = "V. Bistiolas and D. Sofotassios and A. Tsakalidis" -, title = "On Point and Segment Enclosures" -, type = "Technical {Report}" -, number = "90.06.18" -, institution = "Univ. of Patras" -, address = "Greece" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "V. Bistiolas and D. Sofotassios and A. Tsakalidis" +, title = "On Point and Segment Enclosures" +, type = "Technical {Report}" +, number = "90.06.18" +, institution = "Univ. of Patras" +, address = "Greece" +, year = 1990 +, update = "93.09 milone+mitchell" } @article{bpp-rwcvp-98 -, author = "Supriya Biswas and D. Chithra Prasad and Sudebkumar Prasant Pal" -, title = "Recognizing weakly convex visible polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "171--186" -, update = "98.11 devillers" +, author = "Supriya Biswas and D. Chithra Prasad and Sudebkumar Prasant Pal" +, title = "Recognizing weakly convex visible polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "171--186" +, update = "98.11 devillers" } @article{bt-gest-89 -, author = "T. Bisztricky and G. Fejes T{\'o}th" -, title = "A generalization of the {Erd{\H{o}}s-Szekeres} theorem" -, journal = "J. Reine Angew. Math." -, volume = 395 -, year = 1989 -, pages = "167--170" -, update = "02.03 devillers" +, author = "T. Bisztricky and G. Fejes T{\'o}th" +, title = "A generalization of the {Erd{\H{o}}s-Szekeres} theorem" +, journal = "J. Reine Angew. Math." +, volume = 395 +, year = 1989 +, pages = "167--170" +, update = "02.03 devillers" } @book{bmsw-pacc-94 -, title = "Polytopes: Abstract, Convex and Computational" -, editor = "T. Bisztriczky and P. McMullen and R. Schneider and A. Ivi\'c Weiss" -, series = "NATO ASI Series" -, volume = 440 -, publisher = "Kluwer Academic Publishers" -, year = 1994 -, update = "96.05 pocchiola" +, title = "Polytopes: Abstract, Convex and Computational" +, editor = "T. Bisztriczky and P. McMullen and R. Schneider and A. Ivi\'c Weiss" +, series = "NATO ASI Series" +, volume = 440 +, publisher = "Kluwer Academic Publishers" +, year = 1994 +, update = "96.05 pocchiola" } @article{bdhm-tps-84 -, author = "D. Bitton and D. J. DeWitt and D. K. Hsiao and J. Menon" -, title = "A Taxonomy of Parallel Sorting" -, journal = "ACM Comput. Surv." -, volume = 16 -, number = 3 -, year = 1984 -, pages = "287--318" -, update = "96.09 orourke" +, author = "D. Bitton and D. J. DeWitt and D. K. Hsiao and J. Menon" +, title = "A Taxonomy of Parallel Sorting" +, journal = "ACM Comput. Surv." +, volume = 16 +, number = 3 +, year = 1984 +, pages = "287--318" +, update = "96.09 orourke" } @phdthesis{b-vagt-93 -, author = "Iliana Bjorling-Sachs" -, title = "Variations on the Art Gallery Theorem" -, school = "Rutgers University" -, year = 1993 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "Iliana Bjorling-Sachs" +, title = "Variations on the Art Gallery Theorem" +, school = "Rutgers University" +, year = 1993 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @techreport{bs-tbegm-92t -, author = "Iliana Bjorling-Sachs and Diana L. Souvaine" -, title = "A Tight Bound for Edge Guards in Monotone Polygons" -, type = "Technical Report" -, number = "92-52" -, institution = "DIMACS, Rutgers University" -, year = 1992 -, update = "98.11 bibrelex" +, author = "Iliana Bjorling-Sachs and Diana L. Souvaine" +, title = "A Tight Bound for Edge Guards in Monotone Polygons" +, type = "Technical Report" +, number = "92-52" +, institution = "DIMACS, Rutgers University" +, year = 1992 +, update = "98.11 bibrelex" } @techreport{bs-tbgph-91 -, author = "I. Bjorling-Sachs and D. L. Souvaine" -, title = "A tight bound for guarding polygons with holes" -, type = "Report" -, number = "LCSR-TR-165" -, institution = "Lab. Comput. Sci. Res., Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1991 -, keywords = "visibility, point guards, art gallery, simple polygon with holes" +, author = "I. Bjorling-Sachs and D. L. Souvaine" +, title = "A tight bound for guarding polygons with holes" +, type = "Report" +, number = "LCSR-TR-165" +, institution = "Lab. Comput. Sci. Res., Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1991 +, keywords = "visibility, point guards, art gallery, simple polygon with holes" } @article{bs-eagpp-95 -, author = "I. Bjorling-Sachs and D. L. Souvaine" -, title = "An efficient algorithm for guard placement in polygons with holes" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "77--109" -, update = "96.05 smid" +, author = "I. Bjorling-Sachs and D. L. Souvaine" +, title = "An efficient algorithm for guard placement in polygons with holes" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "77--109" +, update = "96.05 smid" } @inproceedings{bs-tbegm-92 -, author = "I. Bjorling-Sachs and D. L. Souvaine" -, title = "Tight bounds for edge guards in monotone polygons and rectilinear monotone polygons" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "93--98" -, cites = "a-agpiv-84, c-ctpg-75, gjpt-tsp-78, o-agta-87, st-gprp-88, s-rrag-90, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "I. Bjorling-Sachs and D. L. Souvaine" +, title = "Tight bounds for edge guards in monotone polygons and rectilinear monotone polygons" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "93--98" +, cites = "a-agpiv-84, c-ctpg-75, gjpt-tsp-78, o-agta-87, st-gprp-88, s-rrag-90, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @incollection{b-tm-95 -, author = "A. Bj{\"o}rner" -, title = "Topological Methods" -, chapter = 34 -, editor = "R. L. Graham and M. Gr{\"o}tschel and L. Lov{\'a}sz" -, booktitle = "Handbook of Combinatorics" -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 1995 -, pages = "1819--1872" -, update = "00.03 agarwal" +, author = "A. Bj{\"o}rner" +, title = "Topological Methods" +, chapter = 34 +, editor = "R. L. Graham and M. Gr{\"o}tschel and L. Lov{\'a}sz" +, booktitle = "Handbook of Combinatorics" +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 1995 +, pages = "1819--1872" +, update = "00.03 agarwal" } @article{bez-halr-90 -, author = "A. Bj{\"o}rner and P. H. Edelman and G. M. Ziegler" -, title = "Hyperplane arrangements with a lattice of regions" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "263--288" +, author = "A. Bj{\"o}rner and P. H. Edelman and G. M. Ziegler" +, title = "Hyperplane arrangements with a lattice of regions" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "263--288" } @book{blwsz-om-93 -, author = "A. Bj{\"o}rner and M. {Las Vergnas} and N. White and B. Sturmfels and G. M. Ziegler" -, title = "Oriented Matroids" -, publisher = "Cambridge University Press" -, address = "Cambridge" -, year = 1993 -, update = "98.11 bibrelex, 98.07 agarwal+bibrelex, 95.05 agarwal" +, author = "A. Bj{\"o}rner and M. {Las Vergnas} and N. White and B. Sturmfels and G. M. Ziegler" +, title = "Oriented Matroids" +, publisher = "Cambridge University Press" +, address = "Cambridge" +, year = 1993 +, update = "98.11 bibrelex, 98.07 agarwal+bibrelex, 95.05 agarwal" } @inproceedings{bly-ldtve-93 -, author = "Anders Bj{\"o}rner and L{\'a}szl{\'o} Lov{\'a}sz and Andrew Chi-Chih Yao" -, title = "Linear decision trees: {V}olume estimates and topological bounds" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "170--177" -, update = "97.11 icking, 97.03 agarwal" +, author = "Anders Bj{\"o}rner and L{\'a}szl{\'o} Lov{\'a}sz and Andrew Chi-Chih Yao" +, title = "Linear decision trees: {V}olume estimates and topological bounds" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "170--177" +, update = "97.11 icking, 97.03 agarwal" } @article{bz-csca-92 -, author = "A. Bj{\" o}rner and G. M. Ziegler" -, title = "Combinatorial stratification of complex arrangements" -, journal = "J. Amer. Math. Soc." -, volume = 5 -, year = 1992 -, pages = "105--149" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "A. Bj{\" o}rner and G. M. Ziegler" +, title = "Combinatorial stratification of complex arrangements" +, journal = "J. Amer. Math. Soc." +, volume = 5 +, year = 1992 +, pages = "105--149" +, update = "98.07 agarwal, 98.03 agarwal" } @techreport{bw-imsep-84 -, author = "P. E. Bjorstad and O. B. Widlund" -, title = "Iterative methods for the solution of elliptic problems on regions partitioned into substructures" -, type = "Report" -, number = "TR136" -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, year = 1984 +, author = "P. E. Bjorstad and O. B. Widlund" +, title = "Iterative methods for the solution of elliptic problems on regions partitioned into substructures" +, type = "Report" +, number = "TR136" +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, year = 1984 } @inproceedings{b-ct-96 -, author = "Ted Blacker" -, title = "The cooper tool" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "13--29" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Ted Blacker" +, title = "The cooper tool" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "13--29" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @manual{bbehlmstwobclpwwt-cmgev-94 -, author = "T. D. Blacker and W. J. Bohnhoff and T. L. Edwards and J. R. Hipp and R. R. Lober and S. A. Mitchell G. D. Sjaardema and T. J. Tautges and T. J. Wilson and W. R. Oakes and S. Benzley and J. C. Clements and L. Lopez-Buriek and S. Parker and M. Whitely and D. White and E. Trimble" -, title = "CUBIT mesh generation environment volume 1: users manual" -, organization = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, month = may -, year = 1994 -, note = "SAND94-1100" -, update = "01.07 devillers, 98.07 bibrelex" +, author = "T. D. Blacker and W. J. Bohnhoff and T. L. Edwards and J. R. Hipp and R. R. Lober and S. A. Mitchell G. D. Sjaardema and T. J. Tautges and T. J. Wilson and W. R. Oakes and S. Benzley and J. C. Clements and L. Lopez-Buriek and S. Parker and M. Whitely and D. White and E. Trimble" +, title = "CUBIT mesh generation environment volume 1: users manual" +, organization = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, month = may +, year = 1994 +, note = "SAND94-1100" +, update = "01.07 devillers, 98.07 bibrelex" } @article{bj-etb-84 -, author = "C. E. Blair and R. G. Jeroslow" -, title = "Extension of a theorem of {Balas}" -, journal = "Discrete Appl. Math." -, volume = 9 -, year = 1984 -, pages = "11--26" +, author = "C. E. Blair and R. G. Jeroslow" +, title = "Extension of a theorem of {Balas}" +, journal = "Discrete Appl. Math." +, volume = 9 +, year = 1984 +, pages = "11--26" } @inproceedings{blhrs-iacv-96 -, author = "Gregoria Blanco and Jes{\'u}s Garc{\'\i}a L{\'o}pez and Ferran Hurtado and Pedro Ramos and Vera Sacrist{\'a}n" -, title = "Incidence Angle Constrained Visibility" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "27--28" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Gregoria Blanco and Jes{\'u}s Garc{\'\i}a L{\'o}pez and Ferran Hurtado and Pedro Ramos and Vera Sacrist{\'a}n" +, title = "Incidence Angle Constrained Visibility" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "27--28" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{b-calp-77 -, author = "R. G. Bland" -, title = "A combinatorial abstraction of linear programming" -, journal = "J. Combin. Theory Ser. B" -, volume = 23 -, year = 1977 -, pages = "33--57" -, update = "97.03 gaertner+salinger" +, author = "R. G. Bland" +, title = "A combinatorial abstraction of linear programming" +, journal = "J. Combin. Theory Ser. B" +, volume = 23 +, year = 1977 +, pages = "33--57" +, update = "97.03 gaertner+salinger" } @article{b-nfprs-77 -, author = "R. G. Bland" -, title = "New finite pivoting rules for the simplex method" -, journal = "Math. Oper. Res." -, volume = 2 -, year = 1977 -, pages = "103--107" -, update = "97.03 gaertner+salinger" +, author = "R. G. Bland" +, title = "New finite pivoting rules for the simplex method" +, journal = "Math. Oper. Res." +, volume = 2 +, year = 1977 +, pages = "103--107" +, update = "97.03 gaertner+salinger" } @article{bv-om-78 -, author = "R. G. Bland and M. {Las Vergnas}" -, title = "Orientability of Matroids" -, journal = "J. Combin. Theory" -, volume = 23 -, year = 1978 -, pages = "94--123" -, update = "98.11 bibrelex" +, author = "R. G. Bland and M. {Las Vergnas}" +, title = "Orientability of Matroids" +, journal = "J. Combin. Theory" +, volume = 23 +, year = 1978 +, pages = "94--123" +, update = "98.11 bibrelex" } @article{bd-glihf-93 -, author = "J. Blaney and S. Dixon" -, title = "A good ligand is hard to find: {Automated} docking methods" -, journal = "Perspectives in Drug Discovery and Design" -, volume = 1 -, year = 1993 -, pages = "310--319" -, update = "98.07 bibrelex" +, author = "J. Blaney and S. Dixon" +, title = "A good ligand is hard to find: {Automated} docking methods" +, journal = "Perspectives in Drug Discovery and Design" +, volume = 1 +, year = 1993 +, pages = "310--319" +, update = "98.07 bibrelex" } @inproceedings{buma-ggfdp-90 -, author = "H. Blanken and A. Ubema and P. Meek and B. Akker" -, title = "The generalized grid file: description and performance aspects" -, booktitle = "Proc. IEEE Internat. Conf. Data Eng." -, site = "Los-Angeles, Calif." -, year = 1990 -, pages = "380--388" -, keywords = "data structuring" -, update = "95.05 korneenko" +, author = "H. Blanken and A. Ubema and P. Meek and B. Akker" +, title = "The generalized grid file: description and performance aspects" +, booktitle = "Proc. IEEE Internat. Conf. Data Eng." +, site = "Los-Angeles, Calif." +, year = 1990 +, pages = "380--388" +, keywords = "data structuring" +, update = "95.05 korneenko" } @inproceedings{bg-eest-90 -, author = "Gabriele Blankenagel and Ralf Hartmut G{\"u}ting" -, title = "{EST}: {Externe} {Segment} {Trees}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 8 -, update = "00.03 bibrelex" +, author = "Gabriele Blankenagel and Ralf Hartmut G{\"u}ting" +, title = "{EST}: {Externe} {Segment} {Trees}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 8 +, update = "00.03 bibrelex" } @techreport{bg-ieapr-87 -, author = "G. Blankenagel and R. H. G{\"u}ting" -, title = "Internal and external algorithms for the points-in-regions problem: the inside join of geo-relational algebra" -, type = "Report" -, number = 228 -, institution = "Fachber. Inform., Univ. Dortmund" -, address = "Dortmund, West Germany" -, year = 1987 -, precedes = "bg-ieapr-88" +, author = "G. Blankenagel and R. H. G{\"u}ting" +, title = "Internal and external algorithms for the points-in-regions problem: the inside join of geo-relational algebra" +, type = "Report" +, number = 228 +, institution = "Fachber. Inform., Univ. Dortmund" +, address = "Dortmund, West Germany" +, year = 1987 +, precedes = "bg-ieapr-88" } @inproceedings{bg-ieapr-88 -, author = "G. Blankenagel and R. H. G{\"u}ting" -, title = "Internal and external algorithms for the points-in-regions problem: the inside join of geo-relational algebra" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "85--89" -, comments = "extended abstract" -, succeeds = "bg-ieapr-87" -, precedes = "bg-ieapr-90" -, update = "00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "G. Blankenagel and R. H. G{\"u}ting" +, title = "Internal and external algorithms for the points-in-regions problem: the inside join of geo-relational algebra" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "85--89" +, comments = "extended abstract" +, succeeds = "bg-ieapr-87" +, precedes = "bg-ieapr-90" +, update = "00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @article{bg-ieapr-90 -, author = "G. Blankenagel and R. H. G{\"u}ting" -, title = "Internal and external algorithms for the points-in-regions problem: the inside join of geo-relational algebra" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "251--276" -, succeeds = "bg-ieapr-88" +, author = "G. Blankenagel and R. H. G{\"u}ting" +, title = "Internal and external algorithms for the points-in-regions problem: the inside join of geo-relational algebra" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "251--276" +, succeeds = "bg-ieapr-88" } @incollection{bps-aamv-89 -, author = "W.-E. Blanz and D. Petkovic and J. L. C. Sanz" -, title = "Algorithms and Architectures for Machine Vision" -, editor = "C. H. Chen" -, booktitle = "Signal Processing Handbook" -, publisher = "M. Dekker" -, address = "New York" -, year = 1989 -, update = "98.07 bibrelex" +, author = "W.-E. Blanz and D. Petkovic and J. L. C. Sanz" +, title = "Algorithms and Architectures for Machine Vision" +, editor = "C. H. Chen" +, booktitle = "Signal Processing Handbook" +, publisher = "M. Dekker" +, address = "New York" +, year = 1989 +, update = "98.07 bibrelex" } @book{b-kuk-16 -, author = "W. Blaschke" -, title = "Kreis und {Kugel}" -, publisher = "??" -, address = "Leipzig" -, year = 1916 -, update = "98.07 bibrelex" +, author = "W. Blaschke" +, title = "Kreis und {Kugel}" +, publisher = "??" +, address = "Leipzig" +, year = 1916 +, update = "98.07 bibrelex" } @inproceedings{bmt-dppbp-96 -, author = "Guy Blelloch and Gary L. Miller and Dafna Talmor" -, title = "Developing a Practical Projection-Based Parallel {Delaunay} Algorithm" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "186--195" -, cites = "acgoy-pcg-88, bey-eedt-91a, bmt-pdti-94, bchsz-ipndp-94, bl-psgps-94, csy-oscpf-95, c-pagp-80, cgo-mftpe-90, dddfk-rp3dc-95, d-sdcac-86, es-otatd-91, gg-ptpch-91, gs-pmgsc-85, ks-upcha-86, lf-ppc-80, m-piadt-92, mttw-dbnmt-95, ol-mcp-81, ps-cgi-85, rs-pnrst-89, sh-cpp-75, s-epacp-94, sd-csdta-95, tsbp-dpatd-93, t-dmwhf-63, vvm-eetpa-92, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Guy Blelloch and Gary L. Miller and Dafna Talmor" +, title = "Developing a Practical Projection-Based Parallel {Delaunay} Algorithm" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "186--195" +, cites = "acgoy-pcg-88, bey-eedt-91a, bmt-pdti-94, bchsz-ipndp-94, bl-psgps-94, csy-oscpf-95, c-pagp-80, cgo-mftpe-90, dddfk-rp3dc-95, d-sdcac-86, es-otatd-91, gg-ptpch-91, gs-pmgsc-85, ks-upcha-86, lf-ppc-80, m-piadt-92, mttw-dbnmt-95, ol-mcp-81, ps-cgi-85, rs-pnrst-89, sh-cpp-75, s-epacp-94, sd-csdta-95, tsbp-dpatd-93, t-dmwhf-63, vvm-eetpa-92, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{bmt-pdti-94 -, author = "G. Blelloch and G. L. Miller and D. Talmor" -, title = "Parallel {Delaunay} triangulation imlpementation" -, booktitle = "Proc. 4th MSI Workshop Comput. Geom." -, month = oct -, year = 1994 -, update = "97.11 bibrelex" +, author = "G. Blelloch and G. L. Miller and D. Talmor" +, title = "Parallel {Delaunay} triangulation imlpementation" +, booktitle = "Proc. 4th MSI Workshop Comput. Geom." +, month = oct +, year = 1994 +, update = "97.11 bibrelex" } @article{bchsz-ipndp-94 -, author = "G. E. Blelloch and S. Chatterjee and J. C. Hardwick and J. Sipelstein and M. Zagha" -, title = "Implementation of a portable nested data-parallel language" -, journal = "J. Parallel Distrib. Comput." -, volume = 21 -, number = 1 -, month = apr -, year = 1994 -, pages = "4--14" -, update = "97.11 bibrelex" +, author = "G. E. Blelloch and S. Chatterjee and J. C. Hardwick and J. Sipelstein and M. Zagha" +, title = "Implementation of a portable nested data-parallel language" +, journal = "J. Parallel Distrib. Comput." +, volume = 21 +, number = 1 +, month = apr +, year = 1994 +, pages = "4--14" +, update = "97.11 bibrelex" } @inproceedings{blmpsz-csacm-91 -, author = "G. E. Blelloch and C. E. Leiserson and B. M. Maggs and C. G. Plaxton and S. J. Smith and M. Zagha" -, title = "A comparison of sorting algorithms for the connection machine {CM-2}" -, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Architect." -, year = 1991 -, pages = "3--16" -, update = "96.09 orourke" +, author = "G. E. Blelloch and C. E. Leiserson and B. M. Maggs and C. G. Plaxton and S. J. Smith and M. Zagha" +, title = "A comparison of sorting algorithms for the connection machine {CM-2}" +, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Architect." +, year = 1991 +, pages = "3--16" +, update = "96.09 orourke" } @inproceedings{bl-psgps-88 -, author = "G. E. Blelloch and J. Little" -, title = "Parallel solutions to geometric problems on the scan model of computation" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, volume = 3 -, year = 1988 -, pages = "218--222" -, keywords = "parallel computation" -, update = "95.05 korneenko" +, author = "G. E. Blelloch and J. Little" +, title = "Parallel solutions to geometric problems on the scan model of computation" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, volume = 3 +, year = 1988 +, pages = "218--222" +, keywords = "parallel computation" +, update = "95.05 korneenko" } @article{bl-psgps-94 -, author = "G. E. Blelloch and J. J. Little" -, title = "Parallel solutions to geometric problems in the scan model of computation" -, journal = "J. Comput. Syst. Sci." -, volume = 48 -, number = 1 -, month = feb -, year = 1994 -, pages = "90--115" -, update = "97.11 bibrelex" +, author = "G. E. Blelloch and J. J. Little" +, title = "Parallel solutions to geometric problems in the scan model of computation" +, journal = "J. Comput. Syst. Sci." +, volume = 48 +, number = 1 +, month = feb +, year = 1994 +, pages = "90--115" +, update = "97.11 bibrelex" } @article{bmht-dippd-99 -, author = "G. E. Blelloch and G. L. Miller and J. C. Hardwick and D. Talmor" -, title = "Design and Implementation of a Practical Parallel {Delaunay} Algorithm" -, journal = "Algorithmica" -, volume = 24 -, number = 3 -, year = 1999 -, pages = "243--269" -, update = "99.11 held" +, author = "G. E. Blelloch and G. L. Miller and J. C. Hardwick and D. Talmor" +, title = "Design and Implementation of a Practical Parallel {Delaunay} Algorithm" +, journal = "Algorithmica" +, volume = 24 +, number = 3 +, year = 1999 +, pages = "243--269" +, update = "99.11 held" } @phdthesis{b-cmda-92 -, author = "C. Bliek" -, title = "Computer Methods for Design Automation" -, type = "Ph.{D}. Thesis" -, school = "Massachusetts Institute of Technology" -, address = "Cambridge, Massachusetts" -, year = 1992 -, keywords = "doctoral thesis" -, update = "95.05 abrams" +, author = "C. Bliek" +, title = "Computer Methods for Design Automation" +, type = "Ph.{D}. Thesis" +, school = "Massachusetts Institute of Technology" +, address = "Cambridge, Massachusetts" +, year = 1992 +, keywords = "doctoral thesis" +, update = "95.05 abrams" } @article{b-hflts-77 -, author = "J. Blinn" -, title = "A homogeneous formulation for lines in three-space" -, journal = "Comput. Graph." -, volume = 11 -, number = 2 -, year = 1977 -, pages = "237--241" -, note = "Proc. SIGGRAPH '77" +, author = "J. Blinn" +, title = "A homogeneous formulation for lines in three-space" +, journal = "Comput. Graph." +, volume = 11 +, number = 2 +, year = 1977 +, pages = "237--241" +, note = "Proc. SIGGRAPH '77" } @techreport{b-mrsdh- -, author = "J. F. Blinn" -, title = "A Method for Removing Some Degeneracies in Hidden Line and Ray Tracing Calculations" -, institution = "Jet Propulsion Lab." -, year = "??" -, update = "98.03 bibrelex" +, author = "J. F. Blinn" +, title = "A Method for Removing Some Degeneracies in Hidden Line and Ray Tracing Calculations" +, institution = "Jet Propulsion Lab." +, year = "??" +, update = "98.03 bibrelex" } @article{b-tdgpl-91 -, author = "J. F. Blinn" -, title = "A trip down the graphics pipeline: {Line} clipping" -, journal = "IEEE Comput. Graph. Appl." -, volume = 11 -, number = 1 -, year = 1991 -, pages = "98--105" -, keywords = "clipping" -, update = "95.05 korneenko" +, author = "J. F. Blinn" +, title = "A trip down the graphics pipeline: {Line} clipping" +, journal = "IEEE Comput. Graph. Appl." +, volume = 11 +, number = 1 +, year = 1991 +, pages = "98--105" +, keywords = "clipping" +, update = "95.05 korneenko" } @article{b-cwbcb-89 -, author = "E. D. Bloch" -, title = "Complexes whose boundaries cannot be pushed around" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "365--374" +, author = "E. D. Bloch" +, title = "Complexes whose boundaries cannot be pushed around" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "365--374" } @inproceedings{b-csrpt-91 -, author = "J. Bl{\"o}mer" -, title = "Computing Sums of Radicals in Polynomial Time" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "670--677" -, update = "97.03 gaertner+salinger" +, author = "J. Bl{\"o}mer" +, title = "Computing Sums of Radicals in Polynomial Time" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "670--677" +, update = "97.03 gaertner+salinger" } @inproceedings{b-hdrnr-92 -, author = "J. Bl{\"o}mer" -, title = "How to Denest {Ramanujan's} Nested Radicals" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "447--457" -, update = "97.03 gaertner+salinger" +, author = "J. Bl{\"o}mer" +, title = "How to Denest {Ramanujan's} Nested Radicals" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "447--457" +, update = "97.03 gaertner+salinger" } @article{br-olbds-89 -, author = "P. A. Bloniarz and S. S. Ravi" -, title = "An $\Omega(n\log n)$ lower bound for decomposing a set of points into chains" -, journal = "Inform. Process. Lett." -, volume = 31 -, year = 1989 -, pages = "319--322" -, keywords = "lower bounds, points" -, update = "95.05 korneenko" +, author = "P. A. Bloniarz and S. S. Ravi" +, title = "An $\Omega(n\log n)$ lower bound for decomposing a set of points into chains" +, journal = "Inform. Process. Lett." +, volume = 31 +, year = 1989 +, pages = "319--322" +, keywords = "lower bounds, points" +, update = "95.05 korneenko" } @article{b-ctp-77 -, author = "G. S. Bloom" -, title = "A counterexamlpe to a theorem of {Piccard}" -, journal = "J. Combin. Theory Ser. A" -, volume = 22 -, year = 1977 -, pages = "378--379" -, update = "97.11 bibrelex" +, author = "G. S. Bloom" +, title = "A counterexamlpe to a theorem of {Piccard}" +, journal = "J. Combin. Theory Ser. A" +, volume = 22 +, year = 1977 +, pages = "378--379" +, update = "97.11 bibrelex" } @incollection{b-isp-94 -, author = "Jules Bloomenthal" -, title = "An Implicit Surface Polygonizer" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "324--349" -, keywords = "iso-surface, marching cubes, polygonization" -, update = "94.09 heckbert" -, annote = "Gives code to polygonize an arbitrary implicit surface. +, author = "Jules Bloomenthal" +, title = "An Implicit Surface Polygonizer" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "324--349" +, keywords = "iso-surface, marching cubes, polygonization" +, update = "94.09 heckbert" +, annote = "Gives code to polygonize an arbitrary implicit surface. Polygonization is a common approach to implicit surface rendering and volume rendering. When combined with code for trilinear interpolation code, a program for polygonizing volume data can easily be constructed. The @@ -23048,694 +23048,694 @@ @incollection{b-isp-94 } @book{b-iis-97 -, title = "Introduction to Implicit Surfaces" -, editor = "Jules Bloomenthal" -, volume = 391 -, publisher = "Morgan-Kaufmann" -, year = 1997 -, update = "00.03 devillers" +, title = "Introduction to Implicit Surfaces" +, editor = "Jules Bloomenthal" +, volume = 391 +, publisher = "Morgan-Kaufmann" +, year = 1997 +, update = "00.03 devillers" } @article{b-pis-88 -, author = "J. Bloomenthal" -, title = "Polygonization of implicit surfaces" -, journal = "Comput. Aided Geom. Design" -, volume = 5 -, number = 4 -, year = 1988 -, pages = "341--355" -, keywords = "surface fitting" -, update = "95.05 korneenko" +, author = "J. Bloomenthal" +, title = "Polygonization of implicit surfaces" +, journal = "Comput. Aided Geom. Design" +, volume = 5 +, number = 4 +, year = 1988 +, pages = "341--355" +, keywords = "surface fitting" +, update = "95.05 korneenko" } @inproceedings{bc-olaip-93 -, author = "Avrim Blum and Prasad Chalasani" -, title = "An On-Line Algorithm for Improving Performance in Navigation" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "2--11" -, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Avrim Blum and Prasad Chalasani" +, title = "An On-Line Algorithm for Improving Performance in Navigation" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "2--11" +, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @article{bc-oaipn-00 -, author = "A. Blum and P. Chalasani" -, title = "An online algorithm for improving performance in navigation" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "1907--1938" -, update = "01.04 smid" +, author = "A. Blum and P. Chalasani" +, title = "An online algorithm for improving performance in navigation" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "1907--1938" +, update = "01.04 smid" } @inproceedings{bcv-cfakm-95 -, author = "A. Blum and P. Chalasani and S. Vempala" -, title = "A constant-factor approximation for the $k$-{MST} problem in the plane" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '95" -, year = 1995 -, pages = "294--302" -, update = "98.07 bibrelex, 97.03 agarwal, 96.01 smid, 95.09 mitchell" +, author = "A. Blum and P. Chalasani and S. Vempala" +, title = "A constant-factor approximation for the $k$-{MST} problem in the plane" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '95" +, year = 1995 +, pages = "294--302" +, update = "98.07 bibrelex, 97.03 agarwal, 96.01 smid, 95.09 mitchell" } @inproceedings{bk-likhu-93 -, author = "Avrim Blum and Ravi Kannan" -, title = "Learning an Intersection of $k$ Halfspaces Over a Uniform Distribution" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "312--320" -, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid+tamassia, 93.09 milone+mitchell" +, author = "Avrim Blum and Ravi Kannan" +, title = "Learning an Intersection of $k$ Halfspaces Over a Uniform Distribution" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "312--320" +, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid+tamassia, 93.09 milone+mitchell" } @inproceedings{brs-nugt-91 -, author = "A. Blum and P. Raghavan and B. Schieber" -, title = "Navigating in unfamiliar geometric terrain" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "494--503" -, keywords = "path planning, on-line" -, comments = "Computing Reviews 9111-0883" -, succeeds = "brs-nut-90, brs-nugt-97" -, cites = "py-spwm-89" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "A. Blum and P. Raghavan and B. Schieber" +, title = "Navigating in unfamiliar geometric terrain" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "494--503" +, keywords = "path planning, on-line" +, comments = "Computing Reviews 9111-0883" +, succeeds = "brs-nut-90, brs-nugt-97" +, cites = "py-spwm-89" +, update = "98.11 bibrelex, 98.03 mitchell" } @article{brs-nugt-97 -, author = "A. Blum and P. Raghavan and B. Schieber" -, title = "Navigating in unfamiliar geometric terrain" -, journal = "SIAM J. Comput." -, volume = 26 -, number = 1 -, month = feb -, year = 1997 -, pages = "110--137" -, succeeds = "brs-nugt-91" -, update = "98.03 mitchell, 97.07 smid" +, author = "A. Blum and P. Raghavan and B. Schieber" +, title = "Navigating in unfamiliar geometric terrain" +, journal = "SIAM J. Comput." +, volume = 26 +, number = 1 +, month = feb +, year = 1997 +, pages = "110--137" +, succeeds = "brs-nugt-91" +, update = "98.03 mitchell, 97.07 smid" } @inproceedings{brs-nut-90 -, author = "A. Blum and P. Raghavan and B. Schieber" -, title = "Navigating in Unfamiliar Terrain" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, precedes = "brs-nugt-91" -, update = "98.11 bibrelex" +, author = "A. Blum and P. Raghavan and B. Schieber" +, title = "Navigating in Unfamiliar Terrain" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, precedes = "brs-nugt-91" +, update = "98.11 bibrelex" } @inproceedings{br-t3nnn-88 -, author = "A. Blum and R. Rivest" -, title = "Training a $3$-node neural network is {NP}-complete" -, booktitle = "Proc. 1st. Workshop Comput. Learning Th." -, year = 1988 -, pages = "9--18" -, update = "98.03 bibrelex" +, author = "A. Blum and R. Rivest" +, title = "Training a $3$-node neural network is {NP}-complete" +, booktitle = "Proc. 1st. Workshop Comput. Learning Th." +, year = 1988 +, pages = "9--18" +, update = "98.03 bibrelex" } @article{b-gb-74 -, author = "H. Blum" -, title = "A Geometry for Biology" -, journal = "Math. Analysis of Fundamental Biological Phenomena" -, volume = 231 -, number = 1 -, year = 1974 -, pages = "19--30" -, update = "93.09 held" +, author = "H. Blum" +, title = "A Geometry for Biology" +, journal = "Math. Analysis of Fundamental Biological Phenomena" +, volume = 231 +, number = 1 +, year = 1974 +, pages = "19--30" +, update = "93.09 held" } @incollection{b-tends-67 -, author = "H. Blum" -, title = "A transformation for extracting new descriptors of shape" -, editor = "W. Wathen-Dunn" -, booktitle = "Models for the Perception of Speech and Visual Form" -, publisher = "MIT Press" -, year = 1967 -, pages = "362--380" -, update = "96.09 orourke" +, author = "H. Blum" +, title = "A transformation for extracting new descriptors of shape" +, editor = "W. Wathen-Dunn" +, booktitle = "Models for the Perception of Speech and Visual Form" +, publisher = "MIT Press" +, year = 1967 +, pages = "362--380" +, update = "96.09 orourke" } @article{bss-tccrn-89 -, author = "L. Blum and M. Shub and S. Smale" -, title = "On a theory of computation and complexity over the real numbers: {NP}-completeness, recursive functions and universal machines" -, journal = "Bull. Amer. Math. Soc." -, volume = 21 -, number = "1--46" -, year = 1989 -, update = "98.11 bibrelex" +, author = "L. Blum and M. Shub and S. Smale" +, title = "On a theory of computation and complexity over the real numbers: {NP}-completeness, recursive functions and universal machines" +, journal = "Bull. Amer. Math. Soc." +, volume = 21 +, number = "1--46" +, year = 1989 +, update = "98.11 bibrelex" } @article{bfprt-tbs-73 -, author = "M. Blum and R. W. Floyd and V. Pratt and R. L. Rivest and R. E. Tarjan" -, title = "Time bounds for selection" -, journal = "J. Comput. Syst. Sci." -, volume = 7 -, year = 1973 -, pages = "448--461" -, update = "97.11 bibrelex" +, author = "M. Blum and R. W. Floyd and V. Pratt and R. L. Rivest and R. E. Tarjan" +, title = "Time bounds for selection" +, journal = "J. Comput. Syst. Sci." +, volume = 7 +, year = 1973 +, pages = "448--461" +, update = "97.11 bibrelex" } @article{bk-dpcw-95 -, author = "Manuel Blum and Sampath Kannan" -, title = "Designing Programs that Check Their Work" -, journal = "J. ACM" -, volume = 42 -, number = 1 -, month = jan -, year = 1995 -, pages = "269--291" -, update = "97.03 tamassia" +, author = "Manuel Blum and Sampath Kannan" +, title = "Designing Programs that Check Their Work" +, journal = "J. ACM" +, volume = 42 +, number = 1 +, month = jan +, year = 1995 +, pages = "269--291" +, update = "97.03 tamassia" } @inproceedings{bk-ptctw-89 -, author = "M. Blum and S. Kannan" -, title = "Programs that check their work" -, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." -, year = 1989 -, update = "97.11 bibrelex" +, author = "M. Blum and S. Kannan" +, title = "Programs that check their work" +, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{bk-pcwma-78 -, author = "M. Blum and D. Kozen" -, title = "On the power of the compass (or, why mazes are easier to search than graphs)" -, booktitle = "Proc. 19th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1978 -, pages = "132--142" +, author = "M. Blum and D. Kozen" +, title = "On the power of the compass (or, why mazes are easier to search than graphs)" +, booktitle = "Proc. 19th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1978 +, pages = "132--142" } @article{blr-stcan-93 -, author = "Manuel Blum and Michael Luby and Ronitt Rubinfeld" -, title = "Self-Testing/Correcting with Applications to Numerical Problems" -, journal = "J. Comput. Syst. Sci." -, volume = 47 -, number = 3 -, year = 1993 -, pages = "549--595" -, succeeds = "blr-scanp-90" -, update = "98.07 tamassia+vismara" +, author = "Manuel Blum and Michael Luby and Ronitt Rubinfeld" +, title = "Self-Testing/Correcting with Applications to Numerical Problems" +, journal = "J. Comput. Syst. Sci." +, volume = 47 +, number = 3 +, year = 1993 +, pages = "549--595" +, succeeds = "blr-scanp-90" +, update = "98.07 tamassia+vismara" } @inproceedings{blr-scanp-90 -, author = "M. Blum and M. Luby and R. Rubinfeld" -, title = "Selftesting/correcting with applications to numerical problems" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "73--83" -, update = "97.11 bibrelex" +, author = "M. Blum and M. Luby and R. Rubinfeld" +, title = "Selftesting/correcting with applications to numerical problems" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "73--83" +, update = "97.11 bibrelex" } @article{bm-anrow-80 -, author = "N. Blum and K. Mehlhorn" -, title = "On the average number of rebalancing operations in weight-balanced trees" -, journal = "Theoret. Comput. Sci." -, volume = 11 -, year = 1980 -, pages = "303--320" -, update = "98.03 bibrelex" +, author = "N. Blum and K. Mehlhorn" +, title = "On the average number of rebalancing operations in weight-balanced trees" +, journal = "Theoret. Comput. Sci." +, volume = 11 +, year = 1980 +, pages = "303--320" +, update = "98.03 bibrelex" } @book{bm-sg-70 -, author = "L. M. Blumenthal and K. Menger" -, title = "Studies in Geometry" -, publisher = "W. H. Freeman" -, address = "San Francisco, CA" -, year = 1970 +, author = "L. M. Blumenthal and K. Menger" +, title = "Studies in Geometry" +, publisher = "W. H. Freeman" +, address = "San Francisco, CA" +, year = 1970 } @inproceedings{bbehw-clgcv-86 -, author = "A. Blumer and A. Ehrenfeucht and D. Haussler and M. Warmuth" -, title = "Classifying learnable geometric concepts with Vapnik-Chervonenkis dimension" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, update = "97.11 bibrelex" +, author = "A. Blumer and A. Ehrenfeucht and D. Haussler and M. Warmuth" +, title = "Classifying learnable geometric concepts with Vapnik-Chervonenkis dimension" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, update = "97.11 bibrelex" } @article{behw-clgcv-89 -, author = "A. Blumer and A. Ehrenfeucht and D. Haussler and M. Warmuth" -, title = "Learnability and the {Vapnik}-{Chervonenkis} Dimension" -, journal = "J. ACM" -, volume = 36 -, year = 1989 -, pages = "929--965" -, keywords = "pattern recognition, probability theory, probabilistic geometry, approximation, separation, probabilistic analysis" -, update = "97.11 bibrelex" +, author = "A. Blumer and A. Ehrenfeucht and D. Haussler and M. Warmuth" +, title = "Learnability and the {Vapnik}-{Chervonenkis} Dimension" +, journal = "J. ACM" +, volume = 36 +, year = 1989 +, pages = "929--965" +, keywords = "pattern recognition, probability theory, probabilistic geometry, approximation, separation, probabilistic analysis" +, update = "97.11 bibrelex" } @inproceedings{bgp-cdnsc-98 -, author = "Marko Boben and Harald Gropp and Toma{\v z} Pisanski" -, title = "Computer Drawings of Non-Symmetric Configurations" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "37--40" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Marko Boben and Harald Gropp and Toma{\v z} Pisanski" +, title = "Computer Drawings of Non-Symmetric Configurations" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "37--40" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{bw-rphs-88 -, author = "J. Bobowski and J. M. Wills" -, title = "Regular polyhedra with hidden symmetry" -, journal = "The Mathematical Intelligencer" -, volume = 10 -, number = 11 -, year = 1988 -, pages = "27--32" -, update = "98.07 bibrelex" +, author = "J. Bobowski and J. M. Wills" +, title = "Regular polyhedra with hidden symmetry" +, journal = "The Mathematical Intelligencer" +, volume = 10 +, number = 11 +, year = 1988 +, pages = "27--32" +, update = "98.07 bibrelex" } @article{bdg-tocrm-85 -, author = "J. Bobrow and S. Dubowsky and J. Gibson" -, title = "Time-Optimal Control of Robot Manipulators" -, journal = "Internat. J. Robot. Res." -, volume = 4 -, number = 3 -, year = 1985 -, update = "97.11 bibrelex" +, author = "J. Bobrow and S. Dubowsky and J. Gibson" +, title = "Time-Optimal Control of Robot Manipulators" +, journal = "Internat. J. Robot. Res." +, volume = 4 +, number = 3 +, year = 1985 +, update = "97.11 bibrelex" } @inproceedings{bdg-ocrma-83 -, author = "J. E. Bobrow and S. Dubowsky and J. S. Gibson" -, title = "On the Optimal Control of Robotic Manipulators with Actuator Constraints" -, booktitle = "Proc. ACC" -, site = "San Francisco, CA" -, year = 1983 -, pages = "782--787" -, update = "97.11 bibrelex" +, author = "J. E. Bobrow and S. Dubowsky and J. S. Gibson" +, title = "On the Optimal Control of Robotic Manipulators with Actuator Constraints" +, booktitle = "Proc. ACC" +, site = "San Francisco, CA" +, year = 1983 +, pages = "782--787" +, update = "97.11 bibrelex" } @book{b-iha-07 -, author = "Maxime Bocher" -, title = "Introduction to higher algebra" -, publisher = "Macmillan" -, year = 1907 -, update = "97.03 tamassia" +, author = "Maxime Bocher" +, title = "Introduction to higher algebra" +, publisher = "Macmillan" +, year = 1907 +, update = "97.03 tamassia" } @inproceedings{bm-csdp-97 -, author = "Daciana Bochis and Marisa Mazon" -, title = "Combinatorial Structure of {Dirichlet} Partitions" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "51--54" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 bibrelex" +, author = "Daciana Bochis and Marisa Mazon" +, title = "Combinatorial Structure of {Dirichlet} Partitions" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "51--54" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 bibrelex" } @inproceedings{bs-mnf3d-98 -, author = "Daciana Bochis and Francisco Santos" -, title = "On the Maximal Number of Facets of 3-Dimensional {Dirichlet} Stereohedra" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "41--43" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 bibrelex" +, author = "Daciana Bochis and Francisco Santos" +, title = "On the Maximal Number of Facets of 3-Dimensional {Dirichlet} Stereohedra" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "41--43" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 bibrelex" } @inproceedings{bgr-sppta-95 -, author = "D. F. Bochis and M. J. Gonz{\'a}lez-L{\'o}pez and T. Recio" -, title = "Simulation Program of the Path Tracking for Any Irredundant Planar Manipulator and the {6R} Manipulator" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "71--73" -, update = "00.03 bibrelex" +, author = "D. F. Bochis and M. J. Gonz{\'a}lez-L{\'o}pez and T. Recio" +, title = "Simulation Program of the Path Tracking for Any Irredundant Planar Manipulator and the {6R} Manipulator" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "71--73" +, update = "00.03 bibrelex" } @book{bcr-gar-87 -, author = "J. Bochnak and M. Coste and M.-F. Roy" -, title = "G\'eom\'etrie Alg\'ebrique R\'eelle" -, publisher = "Springer-Verlag" -, address = "Heidelberg" -, year = 1987 -, update = "98.07 agarwal, 95.05 agarwal" +, author = "J. Bochnak and M. Coste and M.-F. Roy" +, title = "G\'eom\'etrie Alg\'ebrique R\'eelle" +, publisher = "Springer-Verlag" +, address = "Heidelberg" +, year = 1987 +, update = "98.07 agarwal, 95.05 agarwal" } @book{b-ak-74 -, author = "H. H. Bock" -, title = "Automatische {Klassifikation}" -, publisher = "Vandenhoeck \& Ruprecht" -, address = "G{\"o}ttingen, West Germany" -, year = 1974 -, update = "98.07 bibrelex" +, author = "H. H. Bock" +, title = "Automatische {Klassifikation}" +, publisher = "Vandenhoeck \& Ruprecht" +, address = "G{\"o}ttingen, West Germany" +, year = 1974 +, update = "98.07 bibrelex" } @techreport{bl-app-89 -, author = "L. Bodin and L. Levy" -, title = "The arc partitioning problem" -, institution = "College of Bus. and Mgmt., Univ. of Maryland at College Park" -, month = feb -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "L. Bodin and L. Levy" +, title = "The arc partitioning problem" +, institution = "College of Bus. and Mgmt., Univ. of Maryland at College Park" +, month = feb +, year = 1989 +, update = "93.09 milone+mitchell" } @article{bfk-scsmc-84 -, author = "W. Boehm and G. Farin and J. Kahmann" -, title = "A survey of curve and surface methods in {CAGD}" -, journal = "Comput. Aided Geom. Design" -, volume = 1 -, number = 1 -, year = 1984 -, pages = "1--60" -, update = "98.07 bibrelex" +, author = "W. Boehm and G. Farin and J. Kahmann" +, title = "A survey of curve and surface methods in {CAGD}" +, journal = "Comput. Aided Geom. Design" +, volume = 1 +, number = 1 +, year = 1984 +, pages = "1--60" +, update = "98.07 bibrelex" } @article{b-siacs-91 -, author = "E. Boender" -, title = "A survey of intersection algorithms for curved surfaces" -, journal = "Comput. Graph. (UK)" -, volume = 15 -, number = 1 -, year = 1991 -, pages = "109--115" -, keywords = "intersection, curvilinear, three-dimensional, survey" -, update = "95.05 korneenko" +, author = "E. Boender" +, title = "A survey of intersection algorithms for curved surfaces" +, journal = "Comput. Graph. (UK)" +, volume = 15 +, number = 1 +, year = 1991 +, pages = "109--115" +, keywords = "intersection, curvilinear, three-dimensional, survey" +, update = "95.05 korneenko" } @article{b-sdmsb-88 -, author = "F. G. Boese" -, title = "Surface Drawing Made Simple -- But Not Too Simple" -, journal = "Comput. Aided Design" -, volume = 20 -, number = 5 -, month = jun -, year = 1988 -, pages = "249--258" -, update = "93.09 held" +, author = "F. G. Boese" +, title = "Surface Drawing Made Simple -- But Not Too Simple" +, journal = "Comput. Aided Design" +, volume = 20 +, number = 5 +, month = jun +, year = 1988 +, pages = "249--258" +, update = "93.09 held" } @article{bk-pmmm-84 -, author = "T. B. Boffey and J. Karkazis" -, title = "$P$-medians and multi-medians" -, journal = "J. Oper. Res. Society" -, volume = 35 -, number = 1 -, year = 1984 -, pages = "57--64" -, keywords = "facility location" -, update = "95.05 korneenko" +, author = "T. B. Boffey and J. Karkazis" +, title = "$P$-medians and multi-medians" +, journal = "J. Oper. Res. Society" +, volume = 35 +, number = 1 +, year = 1984 +, pages = "57--64" +, keywords = "facility location" +, update = "95.05 korneenko" } @techreport{bilf-putg-91 -, author = "K. P. Bogart and G. Isaak and L. Langley and P. C. Fishburn" -, title = "Proper and Unit Tolerance Graphs" -, type = "Technical Report" -, number = "91-74" -, institution = "DIMACS" -, month = nov -, year = 1991 -, update = "98.11 bibrelex" +, author = "K. P. Bogart and G. Isaak and L. Langley and P. C. Fishburn" +, title = "Proper and Unit Tolerance Graphs" +, type = "Technical Report" +, number = "91-74" +, institution = "DIMACS" +, month = nov +, year = 1991 +, update = "98.11 bibrelex" } @techreport{bs-adssv-95 -, author = "P. Bogdanovich and H. Samet" -, title = "The ATRee: A data structure to support very large scientific databases" -, type = "Computer Science Department" -, number = "CS-TR-3455" -, institution = "University of Maryland" -, month = mar -, year = 1995 -, update = "96.05 efrat" +, author = "P. Bogdanovich and H. Samet" +, title = "The ATRee: A data structure to support very large scientific databases" +, type = "Computer Science Department" +, number = "CS-TR-3455" +, institution = "University of Maryland" +, month = mar +, year = 1995 +, update = "96.05 efrat" } @article{b-dgmnb-88 -, author = "A. Bogomolny" -, title = "Digital geometry may not be discrete" -, journal = "Comput. Vision Graph. Image Process." -, volume = 43 -, number = 2 -, year = 1988 -, pages = "205--220" -, keywords = "digital geometry" -, update = "95.05 korneenko" +, author = "A. Bogomolny" +, title = "Digital geometry may not be discrete" +, journal = "Comput. Vision Graph. Image Process." +, volume = 43 +, number = 2 +, year = 1988 +, pages = "205--220" +, keywords = "digital geometry" +, update = "95.05 korneenko" } @techreport{b-smc-49 -, author = "D. J. Bogue" -, title = "The structure of the metropolitan community" -, type = "Report" -, number = "??" -, institution = "Univ. Mich. Contributions Inst. Human Adjustment Social Sci." -, address = "Ann Arbor, MI" -, year = 1949 +, author = "D. J. Bogue" +, title = "The structure of the metropolitan community" +, type = "Report" +, number = "??" +, institution = "Univ. Mich. Contributions Inst. Human Adjustment Social Sci." +, address = "Ann Arbor, MI" +, year = 1949 } @incollection{b-wdwnb-90 -, author = "G. Bohlender" -, title = "What do we need beyond {IEEE}-arithmetics?" -, booktitle = "Computer Arithmetic and self-validating numerical methods" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1990 -, pages = "1--32" -, update = "98.07 bibrelex" +, author = "G. Bohlender" +, title = "What do we need beyond {IEEE}-arithmetics?" +, booktitle = "Computer Arithmetic and self-validating numerical methods" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1990 +, pages = "1--32" +, update = "98.07 bibrelex" } @book{bruw-pcmls-86 -, author = "G. Bohlender and L. B. Rall and C. Ullrich and J. {Wolff von Gudenberg}" -, title = "{PASCAL-CS} - {A} Microcomputer Language for Scientific Computation" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1986 -, update = "98.03 bibrelex" +, author = "G. Bohlender and L. B. Rall and C. Ullrich and J. {Wolff von Gudenberg}" +, title = "{PASCAL-CS} - {A} Microcomputer Language for Scientific Computation" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1986 +, update = "98.03 bibrelex" } @article{b-ansrt-90 -, author = "J. B{\"o}hm" -, title = "Addendum to the note ``{Some} remarks on triangulating a $d$-cube''" -, journal = "Beitr. Algebra Geom." -, volume = 30 -, year = 1990 -, pages = "167--168" -, keywords = "$d$-dimensional, hypercube, triangulation" -, update = "95.05 korneenko" +, author = "J. B{\"o}hm" +, title = "Addendum to the note ``{Some} remarks on triangulating a $d$-cube''" +, journal = "Beitr. Algebra Geom." +, volume = 30 +, year = 1990 +, pages = "167--168" +, keywords = "$d$-dimensional, hypercube, triangulation" +, update = "95.05 korneenko" } @article{b-srtdc-89 -, author = "J. B{\"o}hm" -, title = "Some remarks on triangulating a $d$-cube" -, journal = "Beitr. Algebra Geom." -, volume = 29 -, year = 1989 -, pages = "195--218" -, keywords = "$d$-dimensional, hypercube, triangulation" -, update = "95.05 korneenko" +, author = "J. B{\"o}hm" +, title = "Some remarks on triangulating a $d$-cube" +, journal = "Beitr. Algebra Geom." +, volume = 29 +, year = 1989 +, pages = "195--218" +, keywords = "$d$-dimensional, hypercube, triangulation" +, update = "95.05 korneenko" } @book{bs-dcmta-84 -, author = "K. B{\"o}hmer and H. J. Stetter" -, title = "Defect correction methods, theory and applications" -, publisher = "Springer-Verlag" -, year = 1984 -, update = "97.11 bibrelex" +, author = "K. B{\"o}hmer and H. J. Stetter" +, title = "Defect correction methods, theory and applications" +, publisher = "Springer-Verlag" +, year = 1984 +, update = "97.11 bibrelex" } @inproceedings{bn-ucasa-90 -, author = "K. Bohringer and F. {Newbery Paulisch}" -, title = "Using Constraints to Achieve Stability in Automatic Graph Layout Algorithms" -, booktitle = "Proc. ACM Conf. on Human Factors in Computing Systems" -, nickname = "CHI" -, year = 1990 -, pages = "43--51" -, keywords = "graph drawing" -, update = "98.07 vismara, 96.09 tamassia, 93.09 tamassia" +, author = "K. Bohringer and F. {Newbery Paulisch}" +, title = "Using Constraints to Achieve Stability in Automatic Graph Layout Algorithms" +, booktitle = "Proc. ACM Conf. on Human Factors in Computing Systems" +, nickname = "CHI" +, year = 1990 +, pages = "43--51" +, keywords = "graph drawing" +, update = "98.07 vismara, 96.09 tamassia, 93.09 tamassia" } @inproceedings{bbg-smutv-95 -, author = "K.-F. B{\"o}hringer and V. Bhatt and K. Y. Goldberg" -, title = "Sensorless manipulation using transverse vibrations of a plate" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Nagoya, Japan" -, year = 1995 -, pages = "1989--1996" -, update = "98.07 bibrelex" +, author = "K.-F. B{\"o}hringer and V. Bhatt and K. Y. Goldberg" +, title = "Sensorless manipulation using transverse vibrations of a plate" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Nagoya, Japan" +, year = 1995 +, pages = "1989--1996" +, update = "98.07 bibrelex" } @inproceedings{bdh-abpfe-97 -, author = "K.-F. B{\"o}hringer and B. Donald and D. Halperin" -, title = "The Area Bisectors of a Polygon and Force Equilibria in Programmable Vector Fields" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "457--459" -, cites = "bbg-smutv-95, bdm-scsaa-96, bdm-ulbpv-96, do-hssp-90, e-acg-87, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "K.-F. B{\"o}hringer and B. Donald and D. Halperin" +, title = "The Area Bisectors of a Polygon and Force Equilibria in Programmable Vector Fields" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "457--459" +, cites = "bbg-smutv-95, bdm-scsaa-96, bdm-ulbpv-96, do-hssp-90, e-acg-87, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{bdm-scsaa-96 -, author = "K.-F. B{\"o}hringer and B. R. Donald and N. C. MacDonald" -, title = "Single-crystal silicon actuator arrays for micro manipulation tasks" -, booktitle = "Proc. IEEE Workshop on Micro Electro Mechanical Systems" -, nickname = "MEMS" -, site = "San Diego, CA" -, month = feb -, year = 1996 -, update = "98.07 bibrelex" +, author = "K.-F. B{\"o}hringer and B. R. Donald and N. C. MacDonald" +, title = "Single-crystal silicon actuator arrays for micro manipulation tasks" +, booktitle = "Proc. IEEE Workshop on Micro Electro Mechanical Systems" +, nickname = "MEMS" +, site = "San Diego, CA" +, month = feb +, year = 1996 +, update = "98.07 bibrelex" } @incollection{bdm-ulbpv-96 -, author = "K.-F. B{\"o}hringer and B. R. Donald and N. C. MacDonald" -, title = "Upper and lower bounds for programmable vector fields with applications to {MEMS} and vibratory plate part feeders" -, editor = "J.-P. Laumond and M. H. Overmars" -, booktitle = "Algorithms for Robotic Motion and Manipulation" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1996 -, pages = "255--276" -, update = "98.07 bibrelex" +, author = "K.-F. B{\"o}hringer and B. R. Donald and N. C. MacDonald" +, title = "Upper and lower bounds for programmable vector fields with applications to {MEMS} and vibratory plate part feeders" +, editor = "J.-P. Laumond and M. H. Overmars" +, booktitle = "Algorithms for Robotic Motion and Manipulation" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1996 +, pages = "255--276" +, update = "98.07 bibrelex" } @article{b--94 -, author = "Jean-Daniel Boissonnat" -, title = "??" -, journal = "J. Mol Graphics" -, volume = 12 -, year = 1994 -, pages = "61--62" -, update = "99.07 devillers, 98.03 bibrelex" +, author = "Jean-Daniel Boissonnat" +, title = "??" +, journal = "J. Mol Graphics" +, volume = 12 +, year = 1994 +, pages = "61--62" +, update = "99.07 devillers, 98.03 bibrelex" } @inproceedings{b-asmra-86 -, author = "Jean-Daniel Boissonnat" -, title = "Automatic Solid Modeler For Robotics Applications" -, booktitle = "Robotics Research: Third International Symposium. MIT Press Series in Artificial Intelligence." -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1986 -, pages = "65--72" -, keywords = "Delaunay triangulation, geometric shape representation, geometric solid modeler" -, update = "99.07 devillers" -, annote = "3D DT" -, abstract = "This paper discusses several applications of the - Delaunay triangulation for shape representation and - manipulation, in the context of robotics. This - structure appears to be a useful tool in order to deal - with points scattered over surfaces of objects. - Reconstruction, matching and intersection problems are - considered. (Author abstract) 12 refs." +, author = "Jean-Daniel Boissonnat" +, title = "Automatic Solid Modeler For Robotics Applications" +, booktitle = "Robotics Research: Third International Symposium. MIT Press Series in Artificial Intelligence." +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1986 +, pages = "65--72" +, keywords = "Delaunay triangulation, geometric shape representation, geometric solid modeler" +, update = "99.07 devillers" +, annote = "3D DT" +, abstract = "This paper discusses several applications of the + Delaunay triangulation for shape representation and + manipulation, in the context of robotics. This + structure appears to be a useful tool in order to deal + with points scattered over surfaces of objects. + Reconstruction, matching and intersection problems are + considered. (Author abstract) 12 refs." } @article{b-gstds-84 -, author = "Jean-Daniel Boissonnat" -, title = "Geometric structures for three-dimensional shape representation" -, journal = "ACM Trans. Graph." -, volume = 3 -, number = 4 -, year = 1984 -, pages = "266--286" -, comments = "further experimental results of the algorithm described in this article can be found in N. Ayache, J. D. Boissonnat, L. Cohen, B. Geiger, J. Levy-Vehel, O. Monga, P. Sander--Steps toward the Automatic Interpretation of 3D Images. In 3D imaging in Medicine, vol F60 (1990)" -, update = "99.07 devillers, 98.07 devillers, 93.09 milone+mitchell" +, author = "Jean-Daniel Boissonnat" +, title = "Geometric structures for three-dimensional shape representation" +, journal = "ACM Trans. Graph." +, volume = 3 +, number = 4 +, year = 1984 +, pages = "266--286" +, comments = "further experimental results of the algorithm described in this article can be found in N. Ayache, J. D. Boissonnat, L. Cohen, B. Geiger, J. Levy-Vehel, O. Monga, P. Sander--Steps toward the Automatic Interpretation of 3D Images. In 3D imaging in Medicine, vol F60 (1990)" +, update = "99.07 devillers, 98.07 devillers, 93.09 milone+mitchell" } @inproceedings{b-pagc-98 -, author = "Jean-Daniel Boissonnat" -, title = "Predicate Arithmetic for Geometric Computing" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = 3 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Jean-Daniel Boissonnat" +, title = "Predicate Arithmetic for Geometric Computing" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = 3 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{b-rs-85 -, author = "Jean-Daniel Boissonnat" -, title = "Reconstruction of solids" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "46--54" -, comments = "part of the results appeared in Geometric structures for 3D shape representation, ACM TOG, Vol 3, No. 4, Oct 84, pp266-286 and Shape Reconstruction for Planar Cross Sections, CGIP, Vol 44, pp 1-29 (1988) (good description on line)" -, cites = "s-fssd-76, o-pma3d-81, fku-osrpc-77, r-pc-64, s-cg-78, k-cddvd-80, b-gstds-84, ph-chfsp-77, bwy-oetac-80, s-iggp-76, gs-cdtp-78, b-cdt-81, h-tadpe-82, m-hpppp-70, ZZZ" -, update = "99.07 devillers, 97.11 bibrelex, 94.09 jones, 93.09 milone+mitchell" +, author = "Jean-Daniel Boissonnat" +, title = "Reconstruction of solids" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "46--54" +, comments = "part of the results appeared in Geometric structures for 3D shape representation, ACM TOG, Vol 3, No. 4, Oct 84, pp266-286 and Shape Reconstruction for Planar Cross Sections, CGIP, Vol 44, pp 1-29 (1988) (good description on line)" +, cites = "s-fssd-76, o-pma3d-81, fku-osrpc-77, r-pc-64, s-cg-78, k-cddvd-80, b-gstds-84, ph-chfsp-77, bwy-oetac-80, s-iggp-76, gs-cdtp-78, b-cdt-81, h-tadpe-82, m-hpppp-70, ZZZ" +, update = "99.07 devillers, 97.11 bibrelex, 94.09 jones, 93.09 milone+mitchell" } @inproceedings{b-r2d3d-84 -, author = "Jean-Daniel Boissonnat" -, title = "Representing 2d And 3d Shapes With The {Delaunay} Triangulation" -, booktitle = "Proc. 7th IEEE Internat. Conf. Pattern Recogn." -, publisher = "IEEE" -, address = "New York, NY" -, year = 1984 -, pages = "745--748" -, keywords = "Delaunay triangulation, automatic modeling, 3d shapes, 2d shapes, computer vision" -, update = "99.07 devillers" -, annote = "3D DT. We eliminate tetras until all points are on - boundary surface." -, abstract = "In order to represent and measure a 2-dimensional or a - 3-dimensional shape defined by a finite number of - points on its boundary, the author proposes to use the - Delaunay triangulation. It is shown that a good - polyhedral approximation of the shape can be obtained - and that a number of applications become - straightforward. The Delaunay triangulation appears to - be a useful tool in discrete curve and surface - analysis. 2 refs." +, author = "Jean-Daniel Boissonnat" +, title = "Representing 2d And 3d Shapes With The {Delaunay} Triangulation" +, booktitle = "Proc. 7th IEEE Internat. Conf. Pattern Recogn." +, publisher = "IEEE" +, address = "New York, NY" +, year = 1984 +, pages = "745--748" +, keywords = "Delaunay triangulation, automatic modeling, 3d shapes, 2d shapes, computer vision" +, update = "99.07 devillers" +, annote = "3D DT. We eliminate tetras until all points are on + boundary surface." +, abstract = "In order to represent and measure a 2-dimensional or a + 3-dimensional shape defined by a finite number of + points on its boundary, the author proposes to use the + Delaunay triangulation. It is shown that a good + polyhedral approximation of the shape can be obtained + and that a number of applications become + straightforward. The Delaunay triangulation appears to + be a useful tool in discrete curve and surface + analysis. 2 refs." } @techreport{b-srpcs-86 -, author = "Jean-Daniel Boissonnat" -, title = "Shape reconstruction from planar cross-sections" -, type = "Report" -, number = 546 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1986 -, update = "99.07 devillers, 98.03 bibrelex" +, author = "Jean-Daniel Boissonnat" +, title = "Shape reconstruction from planar cross-sections" +, type = "Report" +, number = 546 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1986 +, update = "99.07 devillers, 98.03 bibrelex" } @article{b-srpcs-88 -, author = "Jean-Daniel Boissonnat" -, title = "Shape Reconstruction From Planar Cross-Sections" -, journal = "Comput. Vision Graph. Image Process." -, volume = 44 -, number = 1 -, month = oct -, year = 1988 -, pages = "1--29" -, keywords = "shape reconstruction, planar cross sections, Delaunay triangulation, computational geometry" -, update = "99.07 devillers, 93.09 devillers" -, annote = "Computes the 3D DT between two contours (extra points - are added to force the boundary---by repeatedly adding - midpoints to edges not in DT) by merging DTs of each - contour. Then tetras are eliminated so that each point - is on the surface." -, abstract = "We propose a new solution to the problem of - constructing a shape over a set of cross-sectional - contours. We construct a volume whose boundary is a - polyhedron with triangular faces intersecting the - cutting planes along the given contours. This volume is - obtained, slice by slice, by pruning the Delaunay - triangulations formed between two adjacent cross - sections. The Delaunay triangulation can be computed - efficiently in this specific situation: an algorithm is - presented that is optimal with respect to the input - size and the output size and that only uses - 2-dimensional operations. The shape reconstruction - method extracts, from that triangulation, a maximum - solid with no singularity. It can handle the case where - the number of contours varies from one cross section to - the other and thus, can handle contour-defined objects - which are branched and have holes. This algorithm has - been fully implemented and tested on various examples; - results on medical images are presented. (Author - abstract) 28 Refs." +, author = "Jean-Daniel Boissonnat" +, title = "Shape Reconstruction From Planar Cross-Sections" +, journal = "Comput. Vision Graph. Image Process." +, volume = 44 +, number = 1 +, month = oct +, year = 1988 +, pages = "1--29" +, keywords = "shape reconstruction, planar cross sections, Delaunay triangulation, computational geometry" +, update = "99.07 devillers, 93.09 devillers" +, annote = "Computes the 3D DT between two contours (extra points + are added to force the boundary---by repeatedly adding + midpoints to edges not in DT) by merging DTs of each + contour. Then tetras are eliminated so that each point + is on the surface." +, abstract = "We propose a new solution to the problem of + constructing a shape over a set of cross-sectional + contours. We construct a volume whose boundary is a + polyhedron with triangular faces intersecting the + cutting planes along the given contours. This volume is + obtained, slice by slice, by pruning the Delaunay + triangulations formed between two adjacent cross + sections. The Delaunay triangulation can be computed + efficiently in this specific situation: an algorithm is + presented that is optimal with respect to the input + size and the output size and that only uses + 2-dimensional operations. The shape reconstruction + method extracts, from that triangulation, a maximum + solid with no singularity. It can handle the case where + the number of contours varies from one cross section to + the other and thus, can handle contour-defined objects + which are branched and have holes. This algorithm has + been fully implemented and tested on various examples; + results on medical images are presented. (Author + abstract) 28 Refs." } @techreport{bb-arcto-94 -, author = "J.-D. Boissonnat and X.-N. Bui" -, title = "Accessibility region for a car that only moves forwards along optimal paths" -, type = "Research Report" -, number = 2181 -, institution = "INRIA Sophia-Antipolis" -, year = 1994 -, update = "99.07 devillers, 98.03 mitchell, 97.11 bibrelex" -, abstract = " +, author = "J.-D. Boissonnat and X.-N. Bui" +, title = "Accessibility region for a car that only moves forwards along optimal paths" +, type = "Research Report" +, number = 2181 +, institution = "INRIA Sophia-Antipolis" +, year = 1994 +, update = "99.07 devillers, 98.03 mitchell, 97.11 bibrelex" +, abstract = " In [BSBL93], the synthesis problem has been solved for a non-holonomic car-like robot only allowed to move forwards in a plane. Here we complete the study of this mobile robot by computing the @@ -23750,157 +23750,157 @@ @techreport{bb-arcto-94 } @inproceedings{bc-cfssg-01 -, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals" -, title = "Coarse-to-fine surface simplification with geometric guarantees" -, editor = "A. Chalmers and T.-M. Rhyne" -, booktitle = "Eurographics'01" -, publisher = "Blackwell" -, address = "Manchester" -, year = 2001 -, pages = "" -, update = "01.11 devillers, 01.07 devillers" +, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals" +, title = "Coarse-to-fine surface simplification with geometric guarantees" +, editor = "A. Chalmers and T.-M. Rhyne" +, booktitle = "Eurographics'01" +, publisher = "Blackwell" +, address = "Manchester" +, year = 2001 +, pages = "" +, update = "01.11 devillers, 01.07 devillers" } @article{bc-ncps-01 -, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals" -, title = "Natural Coordinates of Points on a Surface" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "155--173" -, update = "02.03 devillers" +, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals" +, title = "Natural Coordinates of Points on a Surface" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "155--173" +, update = "02.03 devillers" } @article{bc-nncps-01 -, author = "J.-D. Boissonnat and F. Cazals" -, title = "Natural neighbor coordinates of points on a surface" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "155--173" -, update = "01.11 smid" +, author = "J.-D. Boissonnat and F. Cazals" +, title = "Natural neighbor coordinates of points on a surface" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "155--173" +, update = "01.11 smid" } @inproceedings{bc-ssrnn-00 -, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals" -, title = "Smooth surface reconstruction via natural neighbour interpolation of distance functions" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "223--232" -, update = "00.11 smid, 00.07 devillers, 00.03 devillers" +, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals" +, title = "Smooth surface reconstruction via natural neighbour interpolation of distance functions" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "223--232" +, update = "00.11 smid, 00.07 devillers, 00.03 devillers" } @inproceedings{bcddprty-pcet-99 -, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals and Frank Da and Olivier Devillers and Sylvain Pion and Fran{\c c}ois Rebufat and Monique Teillaud and Mariette Yvinec" -, title = "Programming with {CGAL}: The Example of Triangulations" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "421--423" -, url = "https://hal.inria.fr/inria-00348713/" -, update = "02.03 devillers, 00.03 bibrelex, 99.11 bibrelex, 99.07 devillers" +, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals and Frank Da and Olivier Devillers and Sylvain Pion and Fran{\c c}ois Rebufat and Monique Teillaud and Mariette Yvinec" +, title = "Programming with {CGAL}: The Example of Triangulations" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "421--423" +, url = "https://inria.hal.science/inria-00348713/" +, update = "02.03 devillers, 00.03 bibrelex, 99.11 bibrelex, 99.07 devillers" } @inproceedings{bcf-2sdsm-00 -, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals and Julia Fl{\"o}totto" -, title = "2$D$-Structure Drawings of Similar Molecules" -, editor = "Joe Marks" -, booktitle = "Graph Drawing: 8th international symposium" -, series = "Lecture Notes Comput. Sci." -, volume = 1984 -, publisher = "Springer-Verlag" -, year = 2000 -, pages = "115--126" -, update = "01.11 devillers" +, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals and Julia Fl{\"o}totto" +, title = "2$D$-Structure Drawings of Similar Molecules" +, editor = "Joe Marks" +, booktitle = "Graph Drawing: 8th international symposium" +, series = "Lecture Notes Comput. Sci." +, volume = 1984 +, publisher = "Springer-Verlag" +, year = 2000 +, pages = "115--126" +, update = "01.11 devillers" } @inproceedings{bcn-ssr-99 -, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals and St{\'e}phane Nullans" -, title = "Smooth Shape Reconstruction" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "63--68" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Jean-Daniel Boissonnat and Fr{\'e}d{\'e}ric Cazals and St{\'e}phane Nullans" +, title = "Smooth Shape Reconstruction" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "63--68" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{bcdkl-sppbd-99 -, author = "Jean-Daniel Boissonnat and Andr\'e C\'er\'ezo and Elena Degtiariora-Kostova and Vladimir Kostov and Juliette Leblond" -, title = "Shortest plane paths with bounded derivative of the curvature" -, journal = "C. R. Acad. Sci." -, volume = "329-I" -, year = 1999 -, pages = "613--618" -, succeeds = "bcl-nspps-94" -, update = "99.11 devillers" +, author = "Jean-Daniel Boissonnat and Andr\'e C\'er\'ezo and Elena Degtiariora-Kostova and Vladimir Kostov and Juliette Leblond" +, title = "Shortest plane paths with bounded derivative of the curvature" +, journal = "C. R. Acad. Sci." +, volume = "329-I" +, year = 1999 +, pages = "613--618" +, succeeds = "bcl-nspps-94" +, update = "99.11 devillers" } @inproceedings{bcddy-acchs-92 -, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Jacqueline Duquesne and Mariette Yvinec" -, title = "An algorithm for constructing the convex hull of a set of spheres in dimension $d$" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "269--273" -, precedes = "bcddy-acchs-96" -, cites = "c-ochap-91, cs-arscg-89, bdsty-arsol-92, ms-cpubc-71, r-chada-92, ss-tddsp-90, ZZZ" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.07 devillers, 97.03 devillers, 96.01 devillers, 93.09 devillers" +, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Jacqueline Duquesne and Mariette Yvinec" +, title = "An algorithm for constructing the convex hull of a set of spheres in dimension $d$" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "269--273" +, precedes = "bcddy-acchs-96" +, cites = "c-ochap-91, cs-arscg-89, bdsty-arsol-92, ms-cpubc-71, r-chada-92, ss-tddsp-90, ZZZ" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.07 devillers, 97.03 devillers, 96.01 devillers, 93.09 devillers" } @article{bcddy-acchs-96 -, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Jacqueline Duquesne and Mariette Yvinec" -, title = "An algorithm for constructing the convex hull of a set of spheres in dimension $d$" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "123--130" -, url = "https://hal.inria.fr/inria-00413159" -, succeeds = "bcddy-acchs-92" -, cites = "r-chada-92, ss-tddsp-90, m-mnfcp-70, c-ochap-91, cs-arscg-89, s-sdlpc-91, bdsty-arsol-92" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.07 devillers" -, abstract = "We present an algorithm which computes the convex hull of a set of $n$ spheres i n dimension $d$ in time $O (n^{\lceil \frac{d}{2} \rceil}+n\log n)$. It is worst-case optimal in three dimensions and in even dimensions. The same method can also be used to compute the convex hull of a set of $n$ homo thetic convex objects of $E^d$. If the complexity of each object is constant, the time needed in the worst case is $O(n^{\lceil \frac{d}{2} \rceil}+n\log n)$." +, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Jacqueline Duquesne and Mariette Yvinec" +, title = "An algorithm for constructing the convex hull of a set of spheres in dimension $d$" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "123--130" +, url = "https://inria.hal.science/inria-00413159" +, succeeds = "bcddy-acchs-92" +, cites = "r-chada-92, ss-tddsp-90, m-mnfcp-70, c-ochap-91, cs-arscg-89, s-sdlpc-91, bdsty-arsol-92" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.07 devillers" +, abstract = "We present an algorithm which computes the convex hull of a set of $n$ spheres i n dimension $d$ in time $O (n^{\lceil \frac{d}{2} \rceil}+n\log n)$. It is worst-case optimal in three dimensions and in even dimensions. The same method can also be used to compute the convex hull of a set of $n$ homo thetic convex objects of $E^d$. If the complexity of each object is constant, the time needed in the worst case is $O(n^{\lceil \frac{d}{2} \rceil}+n\log n)$." } @techreport{bcdt-osc3d-91t -, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Monique Teillaud" -, title = "Output-sensitive construction of the $3$-d {Delaunay} triangulation of constrained sets of points" -, type = "Research {Report}" -, number = 1415 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, month = apr -, year = 1991 -, keywords = "Delaunay triangulation, Voronoi diagrams, output-sensitive algorithms, shape reconstructions, shelling, tomography" -, precedes = "bcdt-osc3d-91i, bcdt-oscdt-96" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.05 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Monique Teillaud" +, title = "Output-sensitive construction of the $3$-d {Delaunay} triangulation of constrained sets of points" +, type = "Research {Report}" +, number = 1415 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, month = apr +, year = 1991 +, keywords = "Delaunay triangulation, Voronoi diagrams, output-sensitive algorithms, shape reconstructions, shelling, tomography" +, precedes = "bcdt-osc3d-91i, bcdt-oscdt-96" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.05 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @inproceedings{bcdt-osc3d-91i -, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Monique Teillaud" -, title = "Output-sensitive construction of the $3$-d {Delaunay} triangulation of constrained sets of points" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "110--113" -, keywords = "Delaunay triangulation, Voronoi diagrams, output-sensitive algorithms, shape reconstructions, shelling, tomography" -, succeeds = "bcdt-osc3d-91t" -, precedes = "bcdt-oscdt-96" -, cites = "b-srpcs-88, bcdt-osc3d-91t, bdsty-olgag-91a, bm-sdcs-71, cs-arscg-89, e-acg-87, em-feptd-85, s-chdch-86, ZZZ" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.05 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Monique Teillaud" +, title = "Output-sensitive construction of the $3$-d {Delaunay} triangulation of constrained sets of points" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "110--113" +, keywords = "Delaunay triangulation, Voronoi diagrams, output-sensitive algorithms, shape reconstructions, shelling, tomography" +, succeeds = "bcdt-osc3d-91t" +, precedes = "bcdt-oscdt-96" +, cites = "b-srpcs-88, bcdt-osc3d-91t, bdsty-olgag-91a, bm-sdcs-71, cs-arscg-89, e-acg-87, em-feptd-85, s-chdch-86, ZZZ" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.05 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @article{bcdt-oscdt-96 -, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Monique Teillaud" -, title = "Output-sensitive construction of the {Delaunay} triangulation of points lying in two planes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, number = 1 -, year = 1996 -, pages = "1--14" -, url = "https://hal.inria.fr/hal-00795075" -, succeeds = "bcdt-osc3d-91t, bcdt-osc3d-91i" -, cites = "ps-cgi-85, e-acg-87, a-vdsfg-91, s-chdch-86, ms-loq-92, cs-arscg-89, bdsty-arsol-92, bcdt-osc3d-91i, bm-sdcs-71, bcdt-osc3d-94t, b-srpcs-88, a-pdpaa-87, c-ig-61, p-gcc-70, dmt-ssgtu-92i, gs-ccrs-87, eg-tsa-89, b-gdg-83" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.05 devillers" -, abstract = "In this paper, we propose an algorithm to compute the +, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Olivier Devillers and Monique Teillaud" +, title = "Output-sensitive construction of the {Delaunay} triangulation of points lying in two planes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, number = 1 +, year = 1996 +, pages = "1--14" +, url = "https://inria.hal.science/hal-00795075" +, succeeds = "bcdt-osc3d-91t, bcdt-osc3d-91i" +, cites = "ps-cgi-85, e-acg-87, a-vdsfg-91, s-chdch-86, ms-loq-92, cs-arscg-89, bdsty-arsol-92, bcdt-osc3d-91i, bm-sdcs-71, bcdt-osc3d-94t, b-srpcs-88, a-pdpaa-87, c-ig-61, p-gcc-70, dmt-ssgtu-92i, gs-ccrs-87, eg-tsa-89, b-gdg-83" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.05 devillers" +, abstract = "In this paper, we propose an algorithm to compute the Delaunay triangulation of a set $S$ of {$n$} points in 3-dimensional space when the points lie in 2 planes. The algorithm is output-sensitive and optimal with respect to the input and the output @@ -23909,75 +23909,75 @@ @article{bcdt-oscdt-96 } @inproceedings{bcd-acchs-92 -, author = "J. D. Boissonnat and A. C{\'e}r{\'e}zo and J. Duquesne" -, title = "An Algorithm for Constructing the Convex Hull of a Set of Spheres in Three Dimensional Space" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "51--53" -, update = "01.07 devillers, 00.03 bibrelex" +, author = "J. D. Boissonnat and A. C{\'e}r{\'e}zo and J. Duquesne" +, title = "An Algorithm for Constructing the Convex Hull of a Set of Spheres in Three Dimensional Space" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "51--53" +, update = "01.07 devillers, 00.03 bibrelex" } @techreport{bcl-nspps-94 -, author = "Jean-Daniel Boissonnat and Andr{\'e} C\'er\'ezo and Juliette Leblond" -, title = "A Note on Shortest Paths in the Plane Subject to a Constraint on the Derivative of the Curvature" -, type = "Rapport de recherche" -, number = 2160 -, institution = "INRIA" -, year = 1994 -, precedes = "bcdkl-sppbd-99" -, update = "99.11 devillers, 99.07 devillers, 98.03 mitchell" +, author = "Jean-Daniel Boissonnat and Andr{\'e} C\'er\'ezo and Juliette Leblond" +, title = "A Note on Shortest Paths in the Plane Subject to a Constraint on the Derivative of the Curvature" +, type = "Rapport de recherche" +, number = 2160 +, institution = "INRIA" +, year = 1994 +, precedes = "bcdkl-sppbd-99" +, update = "99.11 devillers, 99.07 devillers, 98.03 mitchell" } @techreport{bcl-spbcp-91 -, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Juliette Leblond" -, title = "Shortest paths of bounded curvature in the plane" -, type = "Report" -, number = 1503 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, month = jul -, year = 1991 -, precedes = "bcl-spbcp-92" -, update = "99.07 devillers, 95.01 devillers, 93.09 rote" +, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Juliette Leblond" +, title = "Shortest paths of bounded curvature in the plane" +, type = "Report" +, number = 1503 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, month = jul +, year = 1991 +, precedes = "bcl-spbcp-92" +, update = "99.07 devillers, 95.01 devillers, 93.09 rote" } @inproceedings{bcl-spbcp-92 -, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Juliette Leblond" -, title = "Shortest paths of bounded curvature in the plane" -, booktitle = "Proc. 9th IEEE Internat. Conf. Robot. Autom." -, year = 1992 -, succeeds = "bcl-spbcp-91" -, precedes = "bcl-spbcp-94" -, update = "99.07 devillers, 95.01 devillers, 93.09 rote" +, author = "Jean-Daniel Boissonnat and Andr{\'e} C{\'e}r{\'e}zo and Juliette Leblond" +, title = "Shortest paths of bounded curvature in the plane" +, booktitle = "Proc. 9th IEEE Internat. Conf. Robot. Autom." +, year = 1992 +, succeeds = "bcl-spbcp-91" +, precedes = "bcl-spbcp-94" +, update = "99.07 devillers, 95.01 devillers, 93.09 rote" } @article{bcl-spbcp-94 -, author = "Jean-Daniel Boissonnat and Andr{\'e} C\'er\'ezo and Juliette Leblond" -, title = "Shortest paths of bounded curvature in the plane" -, journal = "Internat. J. Intell. Syst." -, volume = 10 -, year = 1994 -, pages = "1--16" -, update = "99.07 devillers, 95.01 devillers" +, author = "Jean-Daniel Boissonnat and Andr{\'e} C\'er\'ezo and Juliette Leblond" +, title = "Shortest paths of bounded curvature in the plane" +, journal = "Internat. J. Intell. Syst." +, volume = 10 +, year = 1994 +, pages = "1--16" +, update = "99.07 devillers, 95.01 devillers" } @inproceedings{bcdry-ctbc-94 -, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jean-Marc Robert and Mariette Yvinec" -, title = "Convex Tours of Bounded Curvature" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, nickname = "ESA '94" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "254--265" -, url = "https://hal.inria.fr/hal-01179475" -, precedes = "bcdry-ctbc-99" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.03 mitchell, 97.03 devillers, 96.01 devillers, 95.05 agarwal" -, abstract = " +, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jean-Marc Robert and Mariette Yvinec" +, title = "Convex Tours of Bounded Curvature" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, nickname = "ESA '94" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "254--265" +, url = "https://inria.hal.science/hal-01179475" +, precedes = "bcdry-ctbc-99" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.03 mitchell, 97.03 devillers, 96.01 devillers, 95.05 agarwal" +, abstract = " We consider the motion planning problem for a point constrained to move along a smooth (C1) closed (cycle) convex path of bounded curvature. The @@ -23988,68 +23988,68 @@ @inproceedings{bcdry-ctbc-94 } @article{bcdry-ctbc-99 -, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jean-Marc Robert and Mariette Yvinec" -, title = "Convex Tours of Bounded Curvature" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "149--159" -, url = "https://hal.inria.fr/inria-00413181" -, archive = "XXX:cs.CG/9909004" -, succeeds = "bcdry-ctbc-94" -, cites = "agss-ltacv-89, dxcr-kmp-93, d-cmlca-57, fw-pcm-91, jc-pspmr-89, kslo-prpph-96, k-osps-83, l-rmp-91, o-mpic-87, o-ramp-92, os-plamp-94, p-masp-77, rs-mppmo-94, ss-ampr-90, w-mpav-88" -, update = "99.11 devillers+smid" -, abstract = "We consider the motion planning problem for a point constrained to move along a smooth closed convex path of bounded curvature. The workspace of the moving point is bounded by a convex polygon with $m$ vertices, containing an obstacle in a form of a simple polygon with $n$ vertices. We present an $O(m+n)$ time algorithm finding the path, going around the obstacle, whose curvature is the smallest possible." +, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jean-Marc Robert and Mariette Yvinec" +, title = "Convex Tours of Bounded Curvature" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "149--159" +, url = "https://inria.hal.science/inria-00413181" +, archive = "XXX:cs.CG/9909004" +, succeeds = "bcdry-ctbc-94" +, cites = "agss-ltacv-89, dxcr-kmp-93, d-cmlca-57, fw-pcm-91, jc-pspmr-89, kslo-prpph-96, k-osps-83, l-rmp-91, o-mpic-87, o-ramp-92, os-plamp-94, p-masp-77, rs-mppmo-94, ss-ampr-90, w-mpav-88" +, update = "99.11 devillers+smid" +, abstract = "We consider the motion planning problem for a point constrained to move along a smooth closed convex path of bounded curvature. The workspace of the moving point is bounded by a convex polygon with $m$ vertices, containing an obstacle in a form of a simple polygon with $n$ vertices. We present an $O(m+n)$ time algorithm finding the path, going around the obstacle, whose curvature is the smallest possible." } @techreport{bcduy-clcst-95 -, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jorge Urrutia and Mariette Yvinec" -, title = "Computing Largest Circles Separating Two Sets of Segments" -, type = "Research {Report}" -, number = 2705 -, institution = "INRIA" -, address = "BP93, 06902 Sophia-Antipolis, France" -, year = 1995 -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=2705" -, update = "99.07 devillers, 96.01 devillers" -, abstract = "A circle $C$ separates two planar sets if it encloses one of the sets and its open interior disk does not meet the other set. A separating circle is a largest one if it cannot be locally increased while still separating the two given sets. An $\Theta(n \log n)$ optimal algorithm is proposed to find all largest circles separating two given sets of line segments when line segments are allowed to meet only at their endpoints. This settles an open problem from a previous paper\cite{bcdy-csp-95}. In the general case, when line segments may intersect $\Omega(n^2)$ times, our algorithm can be adapted to work in $O(n \alpha(n) \log n)$ time and $O(n \alpha(n))$ space, where $\alpha(n)$ represents the extremely slowly growing inverse of Ackermann function." +, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jorge Urrutia and Mariette Yvinec" +, title = "Computing Largest Circles Separating Two Sets of Segments" +, type = "Research {Report}" +, number = 2705 +, institution = "INRIA" +, address = "BP93, 06902 Sophia-Antipolis, France" +, year = 1995 +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=2705" +, update = "99.07 devillers, 96.01 devillers" +, abstract = "A circle $C$ separates two planar sets if it encloses one of the sets and its open interior disk does not meet the other set. A separating circle is a largest one if it cannot be locally increased while still separating the two given sets. An $\Theta(n \log n)$ optimal algorithm is proposed to find all largest circles separating two given sets of line segments when line segments are allowed to meet only at their endpoints. This settles an open problem from a previous paper\cite{bcdy-csp-95}. In the general case, when line segments may intersect $\Omega(n^2)$ times, our algorithm can be adapted to work in $O(n \alpha(n) \log n)$ time and $O(n \alpha(n))$ space, where $\alpha(n)$ represents the extremely slowly growing inverse of Ackermann function." } @inproceedings{bcduy-clcst-96 -, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jorge Urrutia and Mariette Yvinec" -, title = "Computing largest circles separating two sets of segments" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "173--178" -, precedes = "bcduy-clcst-00" -, update = "01.11 devillers, 99.07 devillers, 97.03 agarwal, 96.09 mitchell" +, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jorge Urrutia and Mariette Yvinec" +, title = "Computing largest circles separating two sets of segments" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "173--178" +, precedes = "bcduy-clcst-00" +, update = "01.11 devillers, 99.07 devillers, 97.03 agarwal, 96.09 mitchell" } @article{bcduy-clcst-00 -, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jorge Urrutia and Mariette Yvinec" -, title = "Computing Largest Circles Separating Two Sets of Segments" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "41--54" -, url = "https://hal.inria.fr/inria-00338701" -, archive = "XXX/cs.CG/9909005" -, succeeds = "bcduy-clcst-96" -, cites = "abosy-fmcnp-89, b-cspps-88, bcdy-csp-95, bg-aoscf-95, cegss-cfals-93, dj-cmcnp-90, bds-lric-95, dk-ladsc-85, egs-cmcap-90, ep-mps-88, f-spcrd-86, ka-dd-84, k-eccs-79, k-osps-83, ld-gvdp-81, mt-cppna-85, m-lpltw-84, ms-sapo-95, m-idssp-92, okm-ccs-86" -, update = "01.11 devillers" -, abstract = "A circle $C$ separates two planar sets if it encloses one of the sets and its open interior disk does not meet the other set. A separating circle is a largest one if it cannot be locally increased while still separating the two given sets. An $\Theta(n \log n)$ optimal algorithm is proposed to find all largest circles separating two given sets of line segments when line segments are allowe d to meet only at their endpoints. In the general case, when line segments may intersect $\Omega(n^2)$ times, our algorithm can be adapted to work in $O(n \alpha(n) \log n)$ time and $O(n \alpha(n))$ space, where $\alpha(n)$ represents the extremely slowly growing inverse of the Ackermann function." +, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Jorge Urrutia and Mariette Yvinec" +, title = "Computing Largest Circles Separating Two Sets of Segments" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "41--54" +, url = "https://inria.hal.science/inria-00338701" +, archive = "XXX/cs.CG/9909005" +, succeeds = "bcduy-clcst-96" +, cites = "abosy-fmcnp-89, b-cspps-88, bcdy-csp-95, bg-aoscf-95, cegss-cfals-93, dj-cmcnp-90, bds-lric-95, dk-ladsc-85, egs-cmcap-90, ep-mps-88, f-spcrd-86, ka-dd-84, k-eccs-79, k-osps-83, ld-gvdp-81, mt-cppna-85, m-lpltw-84, ms-sapo-95, m-idssp-92, okm-ccs-86" +, update = "01.11 devillers" +, abstract = "A circle $C$ separates two planar sets if it encloses one of the sets and its open interior disk does not meet the other set. A separating circle is a largest one if it cannot be locally increased while still separating the two given sets. An $\Theta(n \log n)$ optimal algorithm is proposed to find all largest circles separating two given sets of line segments when line segments are allowe d to meet only at their endpoints. In the general case, when line segments may intersect $\Omega(n^2)$ times, our algorithm can be adapted to work in $O(n \alpha(n) \log n)$ time and $O(n \alpha(n))$ space, where $\alpha(n)$ represents the extremely slowly growing inverse of the Ackermann function." } @inproceedings{bcdy-csp-95 -, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Mariette Yvinec" -, title = "Circular Separability of Polygons" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "273--281" -, keywords = "separation, containment, largest disk, Voronoi diagrams" -, precedes = "bcdy-csp-01" -, update = "01.11 devillers, 99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.09 agarwal, 96.05 mitchell, 96.01 devillers, 95.09 devillers, 95.01 devillers" -, abstract = "Two planar sets are circularly separable if there exists +, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Mariette Yvinec" +, title = "Circular Separability of Polygons" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "273--281" +, keywords = "separation, containment, largest disk, Voronoi diagrams" +, precedes = "bcdy-csp-01" +, update = "01.11 devillers, 99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.09 agarwal, 96.05 mitchell, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, abstract = "Two planar sets are circularly separable if there exists a circle enclosing one of the set and whose open interior disk does not intersect the other set. This paper studies two problems related to circular separability. A linear-time algorithm is proposed to decide if @@ -24061,160 +24061,160 @@ @inproceedings{bcdy-csp-95 } @article{bcdy-csp-01 -, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Mariette Yvinec" -, title = "Circular Separability of Polygons" -, journal = "Algorithmica" -, volume = 30 -, year = 2001 -, pages = "67i--82" -, url = "http://link.springer.de/link/service/journals/00453/contents/00/10078/paper/10078.pdf" -, archive = "XXX/cs.CG/9909007" -, succeeds = "bcdy-csp-95" -, cites = "abosy-fmcnp-89, agss-ltacv-89, bcdry-ctbc-94, bg-aoscf-95, b-cspps-88, c-bvdcp-86, dj-cmcnp-90, dk-ladsc-85, ep-mps-88, f-spcrd-86, ka-dd-84, k-osps-83, l-sss-71, l-fchsp-83, m-lpltw-84, m-idssp-92, ms-sapo-95, okm-ccs-86" -, update = "01.11 devillers" -, abstract = "Two planar sets are circularly separable if there exists a circle enclosing one of the set and whose open interior disk does not intersect the other set. This paper studies two problems related to circular separability. A linear-time algorithm is proposed to decide if two polygons are circularly separable. The algorithm outputs the smallest separating circle. The second problem asks for the largest circle included in a preprocessed, convex polygon, under some point and/or line constraints. The resulting circle must contain the query points and it must lie in the halfplanes delimited by the query lines." +, author = "Jean-Daniel Boissonnat and Jurek Czyzowicz and Olivier Devillers and Mariette Yvinec" +, title = "Circular Separability of Polygons" +, journal = "Algorithmica" +, volume = 30 +, year = 2001 +, pages = "67i--82" +, url = "http://link.springer.de/link/service/journals/00453/contents/00/10078/paper/10078.pdf" +, archive = "XXX/cs.CG/9909007" +, succeeds = "bcdy-csp-95" +, cites = "abosy-fmcnp-89, agss-ltacv-89, bcdry-ctbc-94, bg-aoscf-95, b-cspps-88, c-bvdcp-86, dj-cmcnp-90, dk-ladsc-85, ep-mps-88, f-spcrd-86, ka-dd-84, k-osps-83, l-sss-71, l-fchsp-83, m-lpltw-84, m-idssp-92, ms-sapo-95, okm-ccs-86" +, update = "01.11 devillers" +, abstract = "Two planar sets are circularly separable if there exists a circle enclosing one of the set and whose open interior disk does not intersect the other set. This paper studies two problems related to circular separability. A linear-time algorithm is proposed to decide if two polygons are circularly separable. The algorithm outputs the smallest separating circle. The second problem asks for the largest circle included in a preprocessed, convex polygon, under some point and/or line constraints. The resulting circle must contain the query points and it must lie in the halfplanes delimited by the query lines." } @inproceedings{bddp-mpsr-92 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and LeonBattista Donati and Franco P. Preparata" -, title = "Motion planning for a spider robot" -, booktitle = "Proc. 9th IEEE Internat. Conf. Robot. Autom." -, year = 1992 -, pages = "2321--2326" -, keywords = "motion planning, legged robot" -, precedes = "bddp-mplrs-95" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and LeonBattista Donati and Franco P. Preparata" +, title = "Motion planning for a spider robot" +, booktitle = "Proc. 9th IEEE Internat. Conf. Robot. Autom." +, year = 1992 +, pages = "2321--2326" +, keywords = "motion planning, legged robot" +, precedes = "bddp-mplrs-95" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @article{bddp-mplrs-95 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and LeonBattista Donati and Franco P. Preparata" -, title = "Motion planning of legged robots: the spider robot problem" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, number = "1--2" -, year = 1995 -, pages = "3--20" -, url = "https://hal.inria.fr/hal-00795083" -, succeeds = "bddp-mpsr-92,bddp-spsr-92" -, cites = "ps-cgi-85, l-knnvd-82, agss-ltacv-87, s-ksacs-91, hs-ompc-91, p-pplr-90, w-cvgnl-85, bdp-cu3ct-91" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers" -, abstract = "We consider the problem of planning motions of a simple legged robot called the spider robot. The robot is modelled as a point where all its legs are attached, and the footholds where the robot can securely place its feet consist of a set of $n$ points in the plane. We show that the space $\cal F$ of admissible and stable placements of such robots has size $\Theta(n^2)$ and can be constructed in $O(n^2\log n)$ time and $O(n^2)$ space. Once $\cal F$ has been constructed, we can efficiently solve several problems related to motion planning." +, author = "Jean-Daniel Boissonnat and Olivier Devillers and LeonBattista Donati and Franco P. Preparata" +, title = "Motion planning of legged robots: the spider robot problem" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, number = "1--2" +, year = 1995 +, pages = "3--20" +, url = "https://inria.hal.science/hal-00795083" +, succeeds = "bddp-mpsr-92,bddp-spsr-92" +, cites = "ps-cgi-85, l-knnvd-82, agss-ltacv-87, s-ksacs-91, hs-ompc-91, p-pplr-90, w-cvgnl-85, bdp-cu3ct-91" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers" +, abstract = "We consider the problem of planning motions of a simple legged robot called the spider robot. The robot is modelled as a point where all its legs are attached, and the footholds where the robot can securely place its feet consist of a set of $n$ points in the plane. We show that the space $\cal F$ of admissible and stable placements of such robots has size $\Theta(n^2)$ and can be constructed in $O(n^2\log n)$ time and $O(n^2)$ space. Once $\cal F$ has been constructed, we can efficiently solve several problems related to motion planning." } @inproceedings{bddp-spsr-92 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and LeonBattista Donati and Franco P. Preparata" -, title = "Stable placements of spider robots" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "242--250" -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1767" -, keywords = "motion planning, legged robot" -, precedes = "bddp-mplrs-95" -, cites = "agss-ltacv-89, bddp-mpsr-92, bdp-cu3ct-91, hs-ompc-91, hk-gsftq-91, hnku-agcqw-84, l-knnvd-82, ps-cgi-85, -sill-84, -sill-90, s-ksacs-91, ZZZ" -, update = "99.07 devillers, 97.11 bibrelex, 95.09 devillers, 95.01 devillers" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and LeonBattista Donati and Franco P. Preparata" +, title = "Stable placements of spider robots" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "242--250" +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1767" +, keywords = "motion planning, legged robot" +, precedes = "bddp-mplrs-95" +, cites = "agss-ltacv-89, bddp-mpsr-92, bdp-cu3ct-91, hs-ompc-91, hk-gsftq-91, hnku-agcqw-84, l-knnvd-82, ps-cgi-85, -sill-84, -sill-90, s-ksacs-91, ZZZ" +, update = "99.07 devillers, 97.11 bibrelex, 95.09 devillers, 95.01 devillers" } @inproceedings{bdl-srhdr-94c -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Sylvain Lazard" -, title = "From Spider Robots to Half-Disk Robots" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "62--63" -, precedes = "bdl-mplr-00" -, update = "01.11 devillers, 01.07 devillers, 00.11 smid, 00.07 icking" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Sylvain Lazard" +, title = "From Spider Robots to Half-Disk Robots" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "62--63" +, precedes = "bdl-mplr-00" +, update = "01.11 devillers, 01.07 devillers, 00.11 smid, 00.07 icking" } @inproceedings{bdl-srhdr-94 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Sylvain Lazard" -, title = "From Spider Robots to Half Disks Robots" -, booktitle = "Proc. 11th IEEE Internat. Conf. Robot. Autom." -, year = 1994 -, pages = "953--958" -, succeeds = "bdl-srhdr-94c" -, precedes = "bdl-mplr-00" -, update = "01.11 devillers, 00.11 smid, 00.07 icking, 99.07 devillers" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Sylvain Lazard" +, title = "From Spider Robots to Half Disks Robots" +, booktitle = "Proc. 11th IEEE Internat. Conf. Robot. Autom." +, year = 1994 +, pages = "953--958" +, succeeds = "bdl-srhdr-94c" +, precedes = "bdl-mplr-00" +, update = "01.11 devillers, 00.11 smid, 00.07 icking, 99.07 devillers" } @inproceedings{bdl-mplr-94 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Sylvain Lazard" -, title = "Motion Planning of Legged Robots" -, booktitle = "Proc. 1st Workshop Algorithmic Found. Robot." -, publisher = "A. K. Peters, Boston, MA" -, year = 1994 -, precedes = "bdl-mplr-00" -, update = "01.11 devillers, 00.11 smid, 00.07 icking, 99.07 devillers" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Sylvain Lazard" +, title = "Motion Planning of Legged Robots" +, booktitle = "Proc. 1st Workshop Algorithmic Found. Robot." +, publisher = "A. K. Peters, Boston, MA" +, year = 1994 +, precedes = "bdl-mplr-00" +, update = "01.11 devillers, 00.11 smid, 00.07 icking, 99.07 devillers" } @article{bdl-mplr-00 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Sylvain Lazard" -, title = "Motion Planning of Legged Robots" -, journal = "SIAM J. Comput." -, volume = 30 -, year = 2000 -, pages = "218--246" -, url = "https://hal.inria.fr/inria-00099289" -, archive = "XXX/cs.CG/9909006" -, succeeds = "bdl-mplr-94,bdl-srhdr-94,bdl-srhdr-94c" -, cites = "bddp-mplrs-95, dd-frspp-90, h-fuenl-89, ks-empac-90, kst-coksm-97, l-ptrmn-96, s-ksacs-91, ss-nempa-87, t-frnns-91" -, update = "01.11 devillers" -, abstract = "We study the problem of computing the free space $\cal F$ of a simple legged robot called the spider robot. The body of this robot is a single point and the legs are attached to the body. The robot is subject to two constraints: each leg has a maximal extension $R$ (accessibility constraint) and the body of the robot must lie above the convex hull of its feet (stability constraint). Moreover, the robot can only put its feet on some regions, called the foothold regions. The free space $\cal F$ is the set of positions of the body of the robot such that there exists a set of accessible footholds for which the robot is stable. We present an efficient algorithm that computes $\cal F$ in $O(n^2\log n)$ time using $O(n^2\alpha(n))$ space for $n$ discrete point footholds where $\alpha(n)$ is an extremely slowly growing function ($\alpha(n)\leq 3$ for any practical value of $n$). We also present an algorithm for computing $\cal F$ when the foothold regions are pairwise disjoint polygons with $n$ edges in total. This algorithm computes $\cal F$ in $O(n^2\alpha_8(n)\log n)$ time using $O(n^2\alpha_8(n))$ space ($\alpha_8(n)$ is also an extremely slowly growing function). These results are close to optimal since $\Omega(n^2)$ is a lower bound for the size of~$\cal F$." +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Sylvain Lazard" +, title = "Motion Planning of Legged Robots" +, journal = "SIAM J. Comput." +, volume = 30 +, year = 2000 +, pages = "218--246" +, url = "https://inria.hal.science/inria-00099289" +, archive = "XXX/cs.CG/9909006" +, succeeds = "bdl-mplr-94,bdl-srhdr-94,bdl-srhdr-94c" +, cites = "bddp-mplrs-95, dd-frspp-90, h-fuenl-89, ks-empac-90, kst-coksm-97, l-ptrmn-96, s-ksacs-91, ss-nempa-87, t-frnns-91" +, update = "01.11 devillers" +, abstract = "We study the problem of computing the free space $\cal F$ of a simple legged robot called the spider robot. The body of this robot is a single point and the legs are attached to the body. The robot is subject to two constraints: each leg has a maximal extension $R$ (accessibility constraint) and the body of the robot must lie above the convex hull of its feet (stability constraint). Moreover, the robot can only put its feet on some regions, called the foothold regions. The free space $\cal F$ is the set of positions of the body of the robot such that there exists a set of accessible footholds for which the robot is stable. We present an efficient algorithm that computes $\cal F$ in $O(n^2\log n)$ time using $O(n^2\alpha(n))$ space for $n$ discrete point footholds where $\alpha(n)$ is an extremely slowly growing function ($\alpha(n)\leq 3$ for any practical value of $n$). We also present an algorithm for computing $\cal F$ when the foothold regions are pairwise disjoint polygons with $n$ edges in total. This algorithm computes $\cal F$ in $O(n^2\alpha_8(n)\log n)$ time using $O(n^2\alpha_8(n))$ space ($\alpha_8(n)$ is also an extremely slowly growing function). These results are close to optimal since $\Omega(n^2)$ is a lower bound for the size of~$\cal F$." } @techreport{bdp-cu3ct-90 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata" -, title = "Computing the Union of 3-colored triangles" -, type = "Technical {Report}" -, number = 1293 -, institution = "INRIA" -, address = "Sophia-Antipolis, France" -, month = oct -, year = 1990 -, precedes = "bdp-cu3ct-91" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 milone+mitchell" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata" +, title = "Computing the Union of 3-colored triangles" +, type = "Technical {Report}" +, number = 1293 +, institution = "INRIA" +, address = "Sophia-Antipolis, France" +, month = oct +, year = 1990 +, precedes = "bdp-cu3ct-91" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 milone+mitchell" } @article{bdp-cu3ct-91 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata" -, title = "Computing the union of $3$-colored triangles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 2 -, year = 1991 -, pages = "187--196" -, url = "https://hal.inria.fr/inria-00167176" -, keywords = "convex hull, motion planning, legged robot" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" -, abstract = "Given is a set $s$ of $n$ points, each colored with one of $k \geq 3$ colours. We say that a triangle defined by three points of $\cal s$ is 3-colored if its vertices have distinct colours. We prove in this paper that the problem of constructing the boundary of the union $\cal ts$ of all such 3-colored triangles can be done in optimal $O(n \log n)$ time." +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Franco P. Preparata" +, title = "Computing the union of $3$-colored triangles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 2 +, year = 1991 +, pages = "187--196" +, url = "https://inria.hal.science/inria-00167176" +, keywords = "convex hull, motion planning, legged robot" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, abstract = "Given is a set $s$ of $n$ points, each colored with one of $k \geq 3$ colours. We say that a triangle defined by three points of $\cal s$ is 3-colored if its vertices have distinct colours. We prove in this paper that the problem of constructing the boundary of the union $\cal ts$ of all such 3-colored triangles can be done in optimal $O(n \log n)$ time." } @techreport{bdsty-arsol-90 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" -, title = "Applications of random sampling to on-line algorithms in computational geometry" -, type = "Technical {Report}" -, number = 1285 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1990 -, succeeds = "bt-hrodt-86" -, precedes = "bdsty-olgag-91i" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 milone+mitchell" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" +, title = "Applications of random sampling to on-line algorithms in computational geometry" +, type = "Technical {Report}" +, number = 1285 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1990 +, succeeds = "bt-hrodt-86" +, precedes = "bdsty-olgag-91i" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 milone+mitchell" } @article{bdsty-arsol-92 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" -, title = "Applications of random sampling to on-line algorithms in computational geometry" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "51--71" -, url = "https://hal.inria.fr/inria-00090675" -, keywords = "randomized algorithms, Delaunay triangulation, semi-dynamic algorithms, arrangement of line-segments" -, succeeds = "bdsty-olgag-91i" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" -, abstract = "This paper presents a general framework for the design +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" +, title = "Applications of random sampling to on-line algorithms in computational geometry" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "51--71" +, url = "https://inria.hal.science/inria-00090675" +, keywords = "randomized algorithms, Delaunay triangulation, semi-dynamic algorithms, arrangement of line-segments" +, succeeds = "bdsty-olgag-91i" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, abstract = "This paper presents a general framework for the design and randomized analysis of geometric algorithms. These algorithms are on-line and the framework provides general bounds for their expected space and time complexities when averaging over all permutations of the input @@ -24226,63 +24226,63 @@ @article{bdsty-arsol-92 } @techreport{bdsty-olgag-90t -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" -, title = "On-line geometric algorithms with good expected behaviours" -, type = "Technical Report" -, number = "INRIA 1285" -, month = aug -, year = 1990 -, precedes = "bdsty-olgag-91i, bdsty-olgag-91a" -, update = "99.07 devillers, 98.07 bibrelex" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" +, title = "On-line geometric algorithms with good expected behaviours" +, type = "Technical Report" +, number = "INRIA 1285" +, month = aug +, year = 1990 +, precedes = "bdsty-olgag-91i, bdsty-olgag-91a" +, update = "99.07 devillers, 98.07 bibrelex" } @inproceedings{bdsty-olgag-91i -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" -, title = "On-line geometric algorithms with good expected behaviours" -, booktitle = "Proc. 13th World Congress on Computation and Applied Math." -, year = 1991 -, pages = "137--139" -, succeeds = "bdsty-arsol-90" -, precedes = "bdsty-arsol-92" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" +, title = "On-line geometric algorithms with good expected behaviours" +, booktitle = "Proc. 13th World Congress on Computation and Applied Math." +, year = 1991 +, pages = "137--139" +, succeeds = "bdsty-arsol-90" +, precedes = "bdsty-arsol-92" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @article{bdsty-olgag-91a -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" -, title = "On-line geometric algorithms with good expected behaviours" -, journal = "IMACS" -, volume = "??" -, year = 1991 -, succeeds = "bdsty-olgag-90t" -, update = "99.07 devillers, 98.07 bibrelex" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Ren{\'e} Schott and Monique Teillaud and Mariette Yvinec" +, title = "On-line geometric algorithms with good expected behaviours" +, journal = "IMACS" +, volume = "??" +, year = 1991 +, succeeds = "bdsty-olgag-90t" +, update = "99.07 devillers, 98.07 bibrelex" } @techreport{bdt-dchov-90 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Monique Teillaud" -, title = "A dynamic construction of higher-order {Voronoi} diagrams and its randomized analysis" -, type = "Technical {Report}" -, number = 1207 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1990 -, keywords = "randomized algorithms, higher order Voronoi diagrams, dynamic algorithms" -, succeeds = "bdt-olcho-90, bt-hrodt-86" -, precedes = "bdt-schov-93" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers+milone+mitchell" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Monique Teillaud" +, title = "A dynamic construction of higher-order {Voronoi} diagrams and its randomized analysis" +, type = "Technical {Report}" +, number = 1207 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1990 +, keywords = "randomized algorithms, higher order Voronoi diagrams, dynamic algorithms" +, succeeds = "bdt-olcho-90, bt-hrodt-86" +, precedes = "bdt-schov-93" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers+milone+mitchell" } @article{bdt-schov-93 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Monique Teillaud" -, title = "A semidynamic construction of higher-order {Voronoi} diagrams and its randomized analysis" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "329--356" -, url = "https://hal.inria.fr/inria-00090668" -, keywords = "randomized algorithms, higher order Voronoi diagrams, dynamic algorithms" -, succeeds = "bdt-olcho-90" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers+schwarzkopf, 96.05 agarwal, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" -, abstract = "The $k$-Delaunay tree extends the Delaunay tree +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Monique Teillaud" +, title = "A semidynamic construction of higher-order {Voronoi} diagrams and its randomized analysis" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "329--356" +, url = "https://inria.hal.science/inria-00090668" +, keywords = "randomized algorithms, higher order Voronoi diagrams, dynamic algorithms" +, succeeds = "bdt-olcho-90" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers+schwarzkopf, 96.05 agarwal, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" +, abstract = "The $k$-Delaunay tree extends the Delaunay tree introduced in \cite{bt-rcdt-93}. It is a hierarchical data structure that allows the semi-dynamic construction of the higher order Voronoi diagrams of a finite set of $n$ points in any dimension. In this paper, we prove @@ -24294,26 +24294,26 @@ @article{bdt-schov-93 } @inproceedings{bdt-olcho-90 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Monique Teillaud" -, title = "An on-line construction of higher-order {Voronoi} diagrams and its randomized analysis" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "278--281" -, comments = "to appear in Algorithmica" -, precedes = "bdt-schov-93" -, cites = "agss-ltacv-89, bdsty-arsol-90, bdt-dchov-90, bt-hrodt-86, bt-rcdt-89, ce-iacko-85, c-narsc-87, cs-arscg-89, d-hdvdl-89, eos-calha-86, gks-ricdv-90, gs-cdtp-78, l-knnvd-82, mmo-cavd-90, m-lavd-91, m-orfv-89, sh-cpp-75, ZZZ" -, update = "99.11 bibrelex, 99.07 bibrelex+devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Monique Teillaud" +, title = "An on-line construction of higher-order {Voronoi} diagrams and its randomized analysis" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "278--281" +, comments = "to appear in Algorithmica" +, precedes = "bdt-schov-93" +, cites = "agss-ltacv-89, bdsty-arsol-90, bdt-dchov-90, bt-hrodt-86, bt-rcdt-89, ce-iacko-85, c-narsc-87, cs-arscg-89, d-hdvdl-89, eos-calha-86, gks-ricdv-90, gs-cdtp-78, l-knnvd-82, mmo-cavd-90, m-lavd-91, m-orfv-89, sh-cpp-75, ZZZ" +, update = "99.11 bibrelex, 99.07 bibrelex+devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" } @inproceedings{bdty-tcgal-00 -, author = "Jean-Daniel Boissonnat and Olivier Devillers and Monique Teillaud and Mariette Yvinec" -, title = "Triangulations in {CGAL}" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "11--18" -, cites = "bdh-qach-96, bd-asmbh-94, by-ag-98, b-rgsdd-93, bbp-iayed-98scg, cd-fsgr-00, boo-stswe-96, 9d-iirdt-98, dlpt-ccpps-98, fhhn-dipmc-99, gb-tdmae-97, g-ggmpa-96, gs-pmgsc-85, hkw-gapi2-99, k-ugpddsp-99, l-ndgcm-94, msz-frplw-96, m-rmstd-91, p-iaeia-99, ps-cgi-85, s-te2dq-96, s-rafpg-96, s-cgehdcd-98, v-gpccg-97" -, update = "01.07 devillers, 00.11 smid, 00.07 devillers" -, abstract = "This paper +, author = "Jean-Daniel Boissonnat and Olivier Devillers and Monique Teillaud and Mariette Yvinec" +, title = "Triangulations in {CGAL}" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "11--18" +, cites = "bdh-qach-96, bd-asmbh-94, by-ag-98, b-rgsdd-93, bbp-iayed-98scg, cd-fsgr-00, boo-stswe-96, 9d-iirdt-98, dlpt-ccpps-98, fhhn-dipmc-99, gb-tdmae-97, g-ggmpa-96, gs-pmgsc-85, hkw-gapi2-99, k-ugpddsp-99, l-ndgcm-94, msz-frplw-96, m-rmstd-91, p-iaeia-99, ps-cgi-85, s-te2dq-96, s-rafpg-96, s-cgehdcd-98, v-gpccg-97" +, update = "01.07 devillers, 00.11 smid, 00.07 devillers" +, abstract = "This paper presents the main algorithmic and design choices that have been made to implement triangulations in @@ -24321,183 +24321,183 @@ @inproceedings{bdty-tcgal-00 } @article{bd-olcue-96 -, author = "Jean-Daniel Boissonnat and Katrin Dobrindt" -, title = "On-line construction of the upper envelope of triangles and surface patches in three dimensions" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1996 -, pages = "303--320" -, update = "99.07 devillers, 98.07 agarwal, 98.03 agarwal, 96.05 smid" +, author = "Jean-Daniel Boissonnat and Katrin Dobrindt" +, title = "On-line construction of the upper envelope of triangles and surface patches in three dimensions" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1996 +, pages = "303--320" +, update = "99.07 devillers, 98.07 agarwal, 98.03 agarwal, 96.05 smid" } @techreport{bd-olrcu-93 -, author = "Jean-Daniel Boissonnat and Katrin Dobrindt" -, title = "On-line randomized construction of the upper envelope of triangles and surface patches in {$R^{3}$}" -, type = "Manuscript" -, number = "Tech. Rep. 1878" -, institution = "INRIA, Sophia-Antipolis, France" -, year = 1993 -, update = "99.07 devillers, 98.07 agarwal, 98.03 bibrelex" +, author = "Jean-Daniel Boissonnat and Katrin Dobrindt" +, title = "On-line randomized construction of the upper envelope of triangles and surface patches in {$R^{3}$}" +, type = "Manuscript" +, number = "Tech. Rep. 1878" +, institution = "INRIA, Sophia-Antipolis, France" +, year = 1993 +, update = "99.07 devillers, 98.07 agarwal, 98.03 bibrelex" } @inproceedings{bd-rcuet-92 -, author = "Jean-Daniel Boissonnat and Katrin Dobrindt" -, title = "Randomized construction of the upper envelope of triangles in {$R^3$}" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "311--315" -, cites = "bdsty-arsol-92, cs-arscg-89, d-rysoa-92, e-ueplf-89, e-ueplf-89, m-eahsr-89, m-orfv-89, ps-ueplf-89, ss-tddsp-90, s-sfira-91, ZZZ" -, update = "99.07 devillers, 98.07 agarwal+bibrelex" +, author = "Jean-Daniel Boissonnat and Katrin Dobrindt" +, title = "Randomized construction of the upper envelope of triangles in {$R^3$}" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "311--315" +, cites = "bdsty-arsol-92, cs-arscg-89, d-rysoa-92, e-ueplf-89, e-ueplf-89, m-eahsr-89, m-orfv-89, ps-ueplf-89, ss-tddsp-90, s-sfira-91, ZZZ" +, update = "99.07 devillers, 98.07 agarwal+bibrelex" } @inproceedings{bdgm-gmpmr-95 -, author = "Jean-Daniel Boissonnat and Katrin Dobrindt and Bernhard Geiger and Henri Michel" -, title = "A Global Motion Planner for a Mobile Robot on a Terrain" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C20--C21" -, keywords = "" -, cites = "bg-tdrcs-93, w-pdtpu-93, egs-ueplf-89, l-rmp-91, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Jean-Daniel Boissonnat and Katrin Dobrindt and Bernhard Geiger and Henri Michel" +, title = "A Global Motion Planner for a Mobile Robot on a Terrain" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C20--C21" +, keywords = "" +, cites = "bg-tdrcs-93, w-pdtpu-93, egs-ueplf-89, l-rmp-91, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{bf-t3do-81 -, author = "J.-D. Boissonnat and O. D. Faugeras" -, title = "Triangulation of $3$-d objects" -, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." -, year = 1981 -, pages = "658--660" +, author = "J.-D. Boissonnat and O. D. Faugeras" +, title = "Triangulation of $3$-d objects" +, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." +, year = 1981 +, pages = "658--660" } @techreport{bfl-rsddt-88t -, author = "J. D. Boissonnat and O. D. Faugeras and E. {Le Bras-Mehlman}" -, title = "Representing stereo data with the {Delaunay} triangulation" -, type = "Technical Report" -, number = 788 -, institution = "INRIA" -, address = "Domaine de Voluceau Rocquencourt, BP 105, 78153 Le Chesnay Cedex, France" -, month = feb -, year = 1988 -, precedes = "flb-rsddt-90, bfl-rsddt-88i" -, update = "98.07 bibrelex" +, author = "J. D. Boissonnat and O. D. Faugeras and E. {Le Bras-Mehlman}" +, title = "Representing stereo data with the {Delaunay} triangulation" +, type = "Technical Report" +, number = 788 +, institution = "INRIA" +, address = "Domaine de Voluceau Rocquencourt, BP 105, 78153 Le Chesnay Cedex, France" +, month = feb +, year = 1988 +, precedes = "flb-rsddt-90, bfl-rsddt-88i" +, update = "98.07 bibrelex" } @inproceedings{bfl-rsddt-88i -, author = "J. D. Boissonnat and O. D. Faugeras and E. {Le Bras-Mehlman}" -, title = "Representing stereo data with the {Delaunay} triangulation" -, booktitle = "Proc. 5th IEEE Internat. Conf. Robot. Autom." -, year = 1988 -, pages = "24--29" -, succeeds = "bfl-rsddt-88t" -, precedes = "flb-rsddt-90" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "J. D. Boissonnat and O. D. Faugeras and E. {Le Bras-Mehlman}" +, title = "Representing stereo data with the {Delaunay} triangulation" +, booktitle = "Proc. 5th IEEE Internat. Conf. Robot. Autom." +, year = 1988 +, pages = "24--29" +, succeeds = "bfl-rsddt-88t" +, precedes = "flb-rsddt-90" +, update = "98.07 bibrelex, 97.11 bibrelex" } @inproceedings{bf-lcss-02 -, author = "Jean-Daniel Boissonnat and Julia Fl{\"o}totto" -, title = "A local coordinate system on a surface" -, booktitle = "Proc. 7th ACM Symposium on Solid Modeling and Applications" -, year = 2002 -, pages = "" -, update = "02.03 devillers" +, author = "Jean-Daniel Boissonnat and Julia Fl{\"o}totto" +, title = "A local coordinate system on a surface" +, booktitle = "Proc. 7th ACM Symposium on Solid Modeling and Applications" +, year = 2002 +, pages = "" +, update = "02.03 devillers" } @inproceedings{bg-3dsd-93 -, author = "Jean-Daniel Boissonnat and Bernhard Geiger" -, title = "3D simulation of delivery" -, editor = "G. M. Nielson and D. Bergeron" -, booktitle = "Visualization 93" -, publisher = "IEEE Computer Society Press" -, address = "San Jose CA" -, year = 1993 -, pages = "416--419" -, update = "99.07 devillers, 94.05 devillers" +, author = "Jean-Daniel Boissonnat and Bernhard Geiger" +, title = "3D simulation of delivery" +, editor = "G. M. Nielson and D. Bergeron" +, booktitle = "Visualization 93" +, publisher = "IEEE Computer Society Press" +, address = "San Jose CA" +, year = 1993 +, pages = "416--419" +, update = "99.07 devillers, 94.05 devillers" } @techreport{bg-tdrcs-92 -, author = "Jean-Daniel Boissonnat and Bernhard Geiger" -, title = "Three-dimensional reconstruction of complex shapes based on the {Delaunay} triangulation" -, type = "Report" -, number = 1697 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, month = apr -, year = 1992 -, url = "https://www-sop.inria.fr/cgi-bin/wais_ra_sophia?question=1697" -, keywords = "shape reconstruction, medical images, Delaunay triangulation" -, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 93.09 held" +, author = "Jean-Daniel Boissonnat and Bernhard Geiger" +, title = "Three-dimensional reconstruction of complex shapes based on the {Delaunay} triangulation" +, type = "Report" +, number = 1697 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, month = apr +, year = 1992 +, url = "https://www-sop.inria.fr/cgi-bin/wais_ra_sophia?question=1697" +, keywords = "shape reconstruction, medical images, Delaunay triangulation" +, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 93.09 held" } @inproceedings{bg-tdrcs-93 -, author = "Jean-Daniel Boissonnat and Bernhard Geiger" -, title = "Three dimensional reconstruction of complex shapes based on the {Delaunay} triangulation" -, editor = "R. S. Acharya and D. B. Goldgof" -, booktitle = "Biomedical Image Processing and Biomedical Visualization" -, volume = 1905 -, publisher = "SPIE" -, year = 1993 -, pages = "964--975" -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1697" -, succeeds = "bg-tdrcs-92" -, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 94.05 devillers" +, author = "Jean-Daniel Boissonnat and Bernhard Geiger" +, title = "Three dimensional reconstruction of complex shapes based on the {Delaunay} triangulation" +, editor = "R. S. Acharya and D. B. Goldgof" +, booktitle = "Biomedical Image Processing and Biomedical Visualization" +, volume = 1905 +, publisher = "SPIE" +, year = 1993 +, pages = "964--975" +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1697" +, succeeds = "bg-tdrcs-92" +, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 94.05 devillers" } @inproceedings{bk-udtil-85 -, author = "J.-D. Boissonnat and P. Kofakis" -, title = "Use of the {Delaunay} Triangulation for the Identification and the Localization of Objects" -, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." -, year = 1985 -, pages = "398--401" -, annote = "Uses skeleton of object foe rep. Computes - approximation of the skeleton by connecting centres of - adjacent triangles in DT." +, author = "J.-D. Boissonnat and P. Kofakis" +, title = "Use of the {Delaunay} Triangulation for the Identification and the Localization of Objects" +, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." +, year = 1985 +, pages = "398--401" +, annote = "Uses skeleton of object foe rep. Computes + approximation of the skeleton by connecting centres of + adjacent triangles in DT." } @inproceedings{blt-mosal-97 -, author = "Jean-Daniel Boissonnat and Eelco de Lange and Monique Teillaud" -, title = "Minkowski operations for satellite antenna layout" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "67--76" -, url = "https://hal.inria.fr/inria-00073622z" -, precedes = "blt-smssa-98" -, cites = "ab-scsp-87, ab-pptr-89, abdpy-esdus-97, bdh-qach-93, dm-mtcae-95, gs-ccrs-87, lm-cancp-93, l-spcsa-83, ZZZ" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex+devillers, 97.07 efrat" +, author = "Jean-Daniel Boissonnat and Eelco de Lange and Monique Teillaud" +, title = "Minkowski operations for satellite antenna layout" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "67--76" +, url = "https://inria.hal.science/inria-00073622z" +, precedes = "blt-smssa-98" +, cites = "ab-scsp-87, ab-pptr-89, abdpy-esdus-97, bdh-qach-93, dm-mtcae-95, gs-ccrs-87, lm-cancp-93, l-spcsa-83, ZZZ" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex+devillers, 97.07 efrat" } @article{blt-smssa-98 -, author = "Jean-Daniel Boissonnat and Eelco de Lange and Monique Teillaud" -, title = "Slicing {Minkowski} Sums for Satellite Antenna Layout" -, journal = "Comput. Aided Design" -, volume = 30 -, number = 4 -, year = 1998 -, pages = "255--265" -, note = "Special Issue on Computational Geometry and Computer-Aided Design and Manufacturing" -, succeeds = "blt-mosal-97" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers+held" +, author = "Jean-Daniel Boissonnat and Eelco de Lange and Monique Teillaud" +, title = "Slicing {Minkowski} Sums for Satellite Antenna Layout" +, journal = "Comput. Aided Design" +, volume = 30 +, number = 4 +, year = 1998 +, pages = "255--265" +, note = "Special Issue on Computational Geometry and Computer-Aided Design and Manufacturing" +, succeeds = "blt-mosal-97" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers+held" } @proceedings{bl-gr-89 -, title = "Proc. of the Workshop on Geometry and Robotics" -, editor = "J.-D. Boissonnat and J.-P. Laumond" -, series = "Lecture Notes Comput. Sci." -, volume = 391 -, publisher = "Springer-Verlag" -, year = 1989 -, update = "98.11 bibrelex, 98.07 bibrelex" +, title = "Proc. of the Workshop on Geometry and Robotics" +, editor = "J.-D. Boissonnat and J.-P. Laumond" +, series = "Lecture Notes Comput. Sci." +, volume = 391 +, publisher = "Springer-Verlag" +, year = 1989 +, update = "98.11 bibrelex, 98.07 bibrelex" } @inproceedings{bl-ptacs-96 -, author = "Jean-Daniel Boissonnat and Sylvain Lazard" -, title = "A Polynomial-Time Algorithm for Computing a Shortest Path of Bounded Curvature Amidst Moderate Obstacles" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "242--251" -, keywords = "Non-holonomic robot, motion planning, shortest paths, mobile robot, computational geometry" -, cites = "art-mpscr-95, bl-nmrom-89, bl-nmbmr-93, bbf-fmg-86, bb-arcto-94, bcl-spbcp-94, bsbl-spsdn-94, cs-arscg-89, ds-cgcw-90, d-cmlca-57, fw-pcm-88, jc-pspmr-89, jlt-empnm-91, klps-ujrcf-86, l-fppcl-91, l-rmp-91, l-fcfst-87, ljtm-mpnmr-94, lc-nmp-92, nm-nppa-89, rs-opctg-90, st-sprsc-91, wa-aaccs-96, w-mpav-88, w-spav-89, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.11 bibrelex, 96.05 efrat" -, abstract = " +, author = "Jean-Daniel Boissonnat and Sylvain Lazard" +, title = "A Polynomial-Time Algorithm for Computing a Shortest Path of Bounded Curvature Amidst Moderate Obstacles" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "242--251" +, keywords = "Non-holonomic robot, motion planning, shortest paths, mobile robot, computational geometry" +, cites = "art-mpscr-95, bl-nmrom-89, bl-nmbmr-93, bbf-fmg-86, bb-arcto-94, bcl-spbcp-94, bsbl-spsdn-94, cs-arscg-89, ds-cgcw-90, d-cmlca-57, fw-pcm-88, jc-pspmr-89, jlt-empnm-91, klps-ujrcf-86, l-fppcl-91, l-rmp-91, l-fcfst-87, ljtm-mpnmr-94, lc-nmp-92, nm-nppa-89, rs-opctg-90, st-sprsc-91, wa-aaccs-96, w-mpav-88, w-spav-89, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.11 bibrelex, 96.05 efrat" +, abstract = " In this paper, we consider the problem of computing a shortest path of bounded curvature amidst obstacles in the plane. More precisely, given prescribed initial and final configurations (i.e. positions and @@ -24510,2940 +24510,2940 @@ @inproceedings{bl-ptacs-96 } @inproceedings{bl-chbc-96 -, author = "Jean-Daniel Boissonnat and Sylvain Lazard" -, title = "Convex hulls of bounded curvature" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "14--19" -, update = "99.07 devillers, 97.03 agarwal, 96.09 mitchell" +, author = "Jean-Daniel Boissonnat and Sylvain Lazard" +, title = "Convex hulls of bounded curvature" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "14--19" +, update = "99.07 devillers, 97.03 agarwal, 96.09 mitchell" } @techreport{bp-rpsis-97 -, author = "Jean-Daniel Boissonnat and Franco P. Preparata" -, title = "Robust Plane Sweep for Intersecting Segments" -, type = "Research {Report}" -, number = 3270 -, institution = "INRIA" -, address = "Sophia Antipolis" -, month = sep -, year = 1997 -, update = "99.11 devillers, 99.07 devillers, 98.11 ghali" +, author = "Jean-Daniel Boissonnat and Franco P. Preparata" +, title = "Robust Plane Sweep for Intersecting Segments" +, type = "Research {Report}" +, number = 3270 +, institution = "INRIA" +, address = "Sophia Antipolis" +, month = sep +, year = 1997 +, update = "99.11 devillers, 99.07 devillers, 98.11 ghali" } @article{bp-rpsis-00 -, author = "J.-D. Boissonnat and F. P. Preparata" -, title = "Robust Plane Sweep for Intersecting Segments" -, journal = "SIAM J. Comput." -, volume = 29 -, number = 5 -, year = 2000 -, pages = "1401--1421" -, update = "00.11 smid, 00.07 vismara, 99.07 devillers, 98.11 tamassia" +, author = "J.-D. Boissonnat and F. P. Preparata" +, title = "Robust Plane Sweep for Intersecting Segments" +, journal = "SIAM J. Comput." +, volume = 29 +, number = 5 +, year = 2000 +, pages = "1401--1421" +, update = "00.11 smid, 00.07 vismara, 99.07 devillers, 98.11 tamassia" } @inproceedings{bsty-vdhdc-95 -, author = "Jean-Daniel Boissonnat and Micha Sharir and Boaz Tagansky and Mariette Yvinec" -, title = "Voronoi Diagrams in Higher Dimensions under Certain Polyhedral Distance Functions" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "79--88" -, keywords = "" -, precedes = "bsty-vdhdc-98" -, cites = "a-vdsfg-91, ckstw-vdl3s-95, cs-arscg-89, e-acg-87, es-vda-86, hs-nblet-94, klps-ujrcf-86, ls-ippvd-87, m-cgitr-93, o-cgc-94, ps-cgi-85, s-atubl-94, t-ntasa-95, ZZZ" -, update = "98.07 devillers, 98.03 bibrelex, 95.09 mitchell" -} - -% also claimed, pages = "485--519" +, author = "Jean-Daniel Boissonnat and Micha Sharir and Boaz Tagansky and Mariette Yvinec" +, title = "Voronoi Diagrams in Higher Dimensions under Certain Polyhedral Distance Functions" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "79--88" +, keywords = "" +, precedes = "bsty-vdhdc-98" +, cites = "a-vdsfg-91, ckstw-vdl3s-95, cs-arscg-89, e-acg-87, es-vda-86, hs-nblet-94, klps-ujrcf-86, ls-ippvd-87, m-cgitr-93, o-cgc-94, ps-cgi-85, s-atubl-94, t-ntasa-95, ZZZ" +, update = "98.07 devillers, 98.03 bibrelex, 95.09 mitchell" +} + +% also claimed, pages = "485--519" @article{bsty-vdhdc-98 -, author = "Jean-Daniel Boissonnat and Micha Sharir and Boaz Tagansky and Mariette Yvinec" -, title = "Voronoi Diagrams in Higher Dimensions under Certain Polyhedral Distance Functions" -, journal = "Discrete Comput. Geom." -, volume = 19 -, number = 4 -, year = 1998 -, pages = "473--484" -, succeeds = "bsty-vdhdc-95" -, update = "99.07 devillers, 98.07 devillers+held" +, author = "Jean-Daniel Boissonnat and Micha Sharir and Boaz Tagansky and Mariette Yvinec" +, title = "Voronoi Diagrams in Higher Dimensions under Certain Polyhedral Distance Functions" +, journal = "Discrete Comput. Geom." +, volume = 19 +, number = 4 +, year = 1998 +, pages = "473--484" +, succeeds = "bsty-vdhdc-95" +, update = "99.07 devillers, 98.07 devillers+held" } % also claimed, title = "Line and curve segment intersection with restricted predicates" @inproceedings{bs-ealcs-99 -, author = "J.-D. Boissonnat and J. Snoeyink" -, title = "Efficient Algorithms for Line and Curve Segment Intersection Using Restricted Predicates" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "370--379" -, precedes = "bs-ealcs-00" -, update = "01.07 devillers, 99.07 devillers+vismara" +, author = "J.-D. Boissonnat and J. Snoeyink" +, title = "Efficient Algorithms for Line and Curve Segment Intersection Using Restricted Predicates" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "370--379" +, precedes = "bs-ealcs-00" +, update = "01.07 devillers, 99.07 devillers+vismara" } @article{bs-ealcs-00 -, author = "J.-D. Boissonnat and J. Snoeyink" -, title = "Efficient Algorithms for Line and Curve Segment Intersection Using Restricted Predicates" -, journal = "Comput. Geom. Theory Appl." -, volume = 16 -, number = 1 -, year = 2000 -, pages = "35--52" -, succeeds = "bs-ealcs-99" -, update = "01.07 devillers, 00.11 smid, 00.07 vismara" -, annote = "Special Issue on the 1998 Workshop on Computational Geometry" +, author = "J.-D. Boissonnat and J. Snoeyink" +, title = "Efficient Algorithms for Line and Curve Segment Intersection Using Restricted Predicates" +, journal = "Comput. Geom. Theory Appl." +, volume = 16 +, number = 1 +, year = 2000 +, pages = "35--52" +, succeeds = "bs-ealcs-99" +, update = "01.07 devillers, 00.11 smid, 00.07 vismara" +, annote = "Special Issue on the 1998 Workshop on Computational Geometry" } @inproceedings{bt-hrodt-86 -, author = "Jean-Daniel Boissonnat and Monique Teillaud" -, title = "A hierarchical representation of objects: {The} {Delaunay} tree" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "260--268" -, precedes = "bt-rcdt-89, bdt-dchov-90, bdsty-arsol-90" -, cites = "b-asmra-86, aes-solac-85, aeiim-pubtc-85, b-sthrc-81, b-gstds-84, b-srpcs-88, b-cdt-81, cg-vippg-85, dk-fdpi-83, es-vda-85, f-sdpvd-83, g-rssc-62, gs-cdtp-78, gs-pmgsc-85, k-osps-83, k-cddvd-80, ls-tacdt-80, m-iaeln-53, m-hpppp-70, ob-dtdos-79, ps-cgi-85, r-pc-64, s-qrhds-84, t-prgc-80, ZZZ" -, update = "99.07 devillers, 98.03 bibrelex, 93.09 milone+mitchell" +, author = "Jean-Daniel Boissonnat and Monique Teillaud" +, title = "A hierarchical representation of objects: {The} {Delaunay} tree" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "260--268" +, precedes = "bt-rcdt-89, bdt-dchov-90, bdsty-arsol-90" +, cites = "b-asmra-86, aes-solac-85, aeiim-pubtc-85, b-sthrc-81, b-gstds-84, b-srpcs-88, b-cdt-81, cg-vippg-85, dk-fdpi-83, es-vda-85, f-sdpvd-83, g-rssc-62, gs-cdtp-78, gs-pmgsc-85, k-osps-83, k-cddvd-80, ls-tacdt-80, m-iaeln-53, m-hpppp-70, ob-dtdos-79, ps-cgi-85, r-pc-64, s-qrhds-84, t-prgc-80, ZZZ" +, update = "99.07 devillers, 98.03 bibrelex, 93.09 milone+mitchell" } @techreport{bt-rcdt-89 -, author = "Jean-Daniel Boissonnat and Monique Teillaud" -, title = "On the randomized construction of the {Delaunay} tree" -, type = "Technical {Report}" -, number = 1140 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1989 -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1140" -, keywords = "randomized algorithms, Delaunay triangulation, semi-dynamic algorithms" -, succeeds = "bt-hrodt-86" -, precedes = "bt-rcdt-93" -, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" +, author = "Jean-Daniel Boissonnat and Monique Teillaud" +, title = "On the randomized construction of the {Delaunay} tree" +, type = "Technical {Report}" +, number = 1140 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1989 +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1140" +, keywords = "randomized algorithms, Delaunay triangulation, semi-dynamic algorithms" +, succeeds = "bt-hrodt-86" +, precedes = "bt-rcdt-93" +, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" } @article{bt-rcdt-93 -, author = "Jean-Daniel Boissonnat and Monique Teillaud" -, title = "On the randomized construction of the {Delaunay} tree" -, journal = "Theoret. Comput. Sci." -, volume = 112 -, year = 1993 -, pages = "339--354" -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1140" -, keywords = "randomized algorithms, Delaunay triangulation, semi-dynamic algorithms" -, succeeds = "bt-rcdt-89" -, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" +, author = "Jean-Daniel Boissonnat and Monique Teillaud" +, title = "On the randomized construction of the {Delaunay} tree" +, journal = "Theoret. Comput. Sci." +, volume = 112 +, year = 1993 +, pages = "339--354" +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1140" +, keywords = "randomized algorithms, Delaunay triangulation, semi-dynamic algorithms" +, succeeds = "bt-rcdt-89" +, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" } @techreport{bv-earic-99 -, author = "Jean-Daniel Boissonnat and Antoine Vigneron" -, title = "Elementary Algorithms for Reporting Intersections of Curve Segments" -, type = "Rapport de recherche" -, number = 3825 -, institution = "INRIA" -, year = 1999 -, cites = "b-oafsi-95, bo-arcgi-79, bs-ealcs-99, bp-rpsis-, c-stsar-94, ce-oails-92, cs-arscg-89, afl-rracg-98, k-ah-92, lpt-rpqid-99, p-iaeia-99, ps-cgi-90, s-ri-99, y-tegc-97, y-rgc-97" -, update = "00.03 devillers" -, abstract = "We propose several +, author = "Jean-Daniel Boissonnat and Antoine Vigneron" +, title = "Elementary Algorithms for Reporting Intersections of Curve Segments" +, type = "Rapport de recherche" +, number = 3825 +, institution = "INRIA" +, year = 1999 +, cites = "b-oafsi-95, bo-arcgi-79, bs-ealcs-99, bp-rpsis-, c-stsar-94, ce-oails-92, cs-arscg-89, afl-rracg-98, k-ah-92, lpt-rpqid-99, p-iaeia-99, ps-cgi-90, s-ri-99, y-tegc-97, y-rgc-97" +, update = "00.03 devillers" +, abstract = "We propose several algorithms to report the $k$ intersecting pairs among a set of $n$ curve segments. Apart from the intersection predicate, our algorithms only use two simple predicates: the predicate that compares the coordinates of two points and the predicate that says if a point is below, on, or above a segment. In particular, the predicates we use do not allow to count the number of intersection points nor to sort them, and the time complexity of our algorithms depends on the number of intersecting pairs, not on the number of intersection points (differently from the other non trivial algorithms). We present an algorithm for the red-blue variant of the problem where we have a set of blue segments and a set of red segments so that no two segments of the same set intersect. The time complexity is $O((n+k)\log n)$. This algorithm is then used to solve the general case in $O(n\sqrt{k}\log n)$ time. In the case of pseudo-segments (i.e. segments that intersect in at most one point) we propose a better algorithm whose time complexity is $O((k+n)\log n+ n\sqrt k)$. All our time complexity results are a log factor from optimal." } @article{bv-earic-02 -, author = "Jean-Daniel Boissonnat and Antoine Vigneron" -, title = "Elementary Algorithms for Reporting Intersections of Curve Segments" -, journal = "Comput. Geom. Theory Appl." -, volume = 21 -, year = 2002 -, pages = "167--175" -, update = "02.03 devillers" +, author = "Jean-Daniel Boissonnat and Antoine Vigneron" +, title = "Elementary Algorithms for Reporting Intersections of Curve Segments" +, journal = "Comput. Geom. Theory Appl." +, volume = 21 +, year = 2002 +, pages = "167--175" +, update = "02.03 devillers" } @book{by-ag-98 -, author = "Jean-Daniel Boissonnat and Mariette Yvinec" -, title = "Algorithmic Geometry" -, publisher = "Cambridge University Press" -, address = "UK" -, year = 1998 -, note = "Translated by Herv{\'e} Br{\"o}nnimann" -, succeeds = "by-ga-95" -, update = "99.11 devillers, 99.07 devillers, 99.03 bibrelex+devillers, 98.07 devillers" -, annote = "translated from {\cite{by-ga-95}} by Herv{\'e} Br{\"o}nnimann" +, author = "Jean-Daniel Boissonnat and Mariette Yvinec" +, title = "Algorithmic Geometry" +, publisher = "Cambridge University Press" +, address = "UK" +, year = 1998 +, note = "Translated by Herv{\'e} Br{\"o}nnimann" +, succeeds = "by-ga-95" +, update = "99.11 devillers, 99.07 devillers, 99.03 bibrelex+devillers, 98.07 devillers" +, annote = "translated from {\cite{by-ga-95}} by Herv{\'e} Br{\"o}nnimann" } @book{by-ga-95 -, author = "Jean-Daniel Boissonnat and Mariette Yvinec" -, title = "G{\'e}om{\'e}trie Algorithmique" -, publisher = "Ediscience international" -, address = "Paris" -, year = 1995 -, precedes = "by-ag-98" -, update = "99.07 devillers, 99.03 bibrelex, 98.07 devillers, 96.01 devillers" +, author = "Jean-Daniel Boissonnat and Mariette Yvinec" +, title = "G{\'e}om{\'e}trie Algorithmique" +, publisher = "Ediscience international" +, address = "Paris" +, year = 1995 +, precedes = "by-ag-98" +, update = "99.07 devillers, 99.03 bibrelex, 98.07 devillers, 96.01 devillers" } @inproceedings{by-psncp-89 -, author = "Jean-Daniel Boissonnat and Mariette Yvinec" -, title = "Probing a scene of non-convex polyhedra" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "237--246" -, precedes = "by-psncp-92" -, cites = "aby-ooacr-87, aby-pncp-89, b-dscns-86, cy-sp-87, dey-pcp-86, m-dsa-84, s-gp-88, ZZZ" -, update = "99.07 devillers, 98.03 bibrelex" +, author = "Jean-Daniel Boissonnat and Mariette Yvinec" +, title = "Probing a scene of non-convex polyhedra" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "237--246" +, precedes = "by-psncp-92" +, cites = "aby-ooacr-87, aby-pncp-89, b-dscns-86, cy-sp-87, dey-pcp-86, m-dsa-84, s-gp-88, ZZZ" +, update = "99.07 devillers, 98.03 bibrelex" } @article{by-psncp-92 -, author = "Jean-Daniel Boissonnat and Mariette Yvinec" -, title = "Probing a scene of non-convex polyhedra" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "321--342" -, keywords = "geometric probing, polyhedral scenes" -, succeeds = "by-psncp-89" -, update = "99.07 devillers" +, author = "Jean-Daniel Boissonnat and Mariette Yvinec" +, title = "Probing a scene of non-convex polyhedra" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "321--342" +, keywords = "geometric probing, polyhedral scenes" +, succeeds = "by-psncp-89" +, update = "99.07 devillers" } @article{b-fmapg-84 -, author = "S. H. Bokhari" -, title = "Finding maximum on an array processor with a global bus" -, journal = "IEEE Trans. Comput." -, volume = "C-33" -, number = 2 -, month = feb -, year = 1984 -, pages = "133--139" -, update = "98.07 bibrelex" +, author = "S. H. Bokhari" +, title = "Finding maximum on an array processor with a global bus" +, journal = "IEEE Trans. Comput." +, volume = "C-33" +, number = 2 +, month = feb +, year = 1984 +, pages = "133--139" +, update = "98.07 bibrelex" } @article{b-grwsi-89 -, author = "J. Bokowski" -, title = "A geometric realization without self-intersections does exist for {Dyck}'s regular map" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "583--589" +, author = "J. Bokowski" +, title = "A geometric realization without self-intersections does exist for {Dyck}'s regular map" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "583--589" } @inproceedings{b-acsg2-87 -, author = "J. Bokowski" -, title = "Aspects of computational synthetic geometry 2, {Combinatorial} complexes and their geometric realization, an algebraic approach" -, booktitle = "Comput. Aided Geom. Reasoning. Proc. INRIA Workshop" -, volume = 1 -, year = 1987 -, pages = "87--125" -, keywords = "matroids" -, update = "95.05 korneenko" +, author = "J. Bokowski" +, title = "Aspects of computational synthetic geometry 2, {Combinatorial} complexes and their geometric realization, an algebraic approach" +, booktitle = "Comput. Aided Geom. Reasoning. Proc. INRIA Workshop" +, volume = 1 +, year = 1987 +, pages = "87--125" +, keywords = "matroids" +, update = "95.05 korneenko" } @incollection{b-om-93 -, author = "J. Bokowski" -, title = "Oriented Matroids" -, chapter = "2.5" -, editor = "Peter M. Gruber and J. M. Wills" -, booktitle = "Handbook of Convex Geometry" -, volume = "A" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1993 -, pages = "555--602" -, keywords = "survey paper" -, update = "96.05 pocchiola" +, author = "J. Bokowski" +, title = "Oriented Matroids" +, chapter = "2.5" +, editor = "Peter M. Gruber and J. M. Wills" +, booktitle = "Handbook of Convex Geometry" +, volume = "A" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1993 +, pages = "555--602" +, keywords = "survey paper" +, update = "96.05 pocchiola" } @techreport{b-omccg-87 -, author = "J. Bokowski" -, title = "Oriented matroids and combinatorial convex geometry" -, type = "Report" -, number = "??" -, institution = "Tech. Hochschule Darmstadt" -, address = "Darmstadt, West Germany" -, year = 1987 +, author = "J. Bokowski" +, title = "Oriented matroids and combinatorial convex geometry" +, type = "Report" +, number = "??" +, institution = "Tech. Hochschule Darmstadt" +, address = "Darmstadt, West Germany" +, year = 1987 } @article{brs-npcg-90 -, author = "J. Bokowski and J. Richter and B. Sturmfels" -, title = "Nonrealizability proofs in computational geometry" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "333--350" +, author = "J. Bokowski and J. Richter and B. Sturmfels" +, title = "Nonrealizability proofs in computational geometry" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "333--350" } @article{bs-com-86 -, author = "J. Bokowski and B. Sturmfels" -, title = "On the coordination of oriented matroids" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "293--306" +, author = "J. Bokowski and B. Sturmfels" +, title = "On the coordination of oriented matroids" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "293--306" } @article{b-koejk-36 -, author = "G. Bol" -, title = "Zur kinematischen Ordnung ebener {Jorden}-Kurven" -, journal = "Abh. Math. Sem. Univ. Hamburg" -, volume = 11 -, year = 1936 -, pages = "394--408" -, update = "98.11 bibrelex" +, author = "G. Bol" +, title = "Zur kinematischen Ordnung ebener {Jorden}-Kurven" +, journal = "Abh. Math. Sem. Univ. Hamburg" +, volume = 11 +, year = 1936 +, pages = "394--408" +, update = "98.11 bibrelex" } @mastersthesis{b-scs-92 -, author = "R. Boland" -, title = "Separating convex sets" -, school = "Carleton Univ." -, address = "Ottawa, Ontario, Canada" -, year = 1992 -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "R. Boland" +, title = "Separating convex sets" +, school = "Carleton Univ." +, address = "Ottawa, Ontario, Canada" +, year = 1992 +, keywords = "master thesis" +, update = "98.07 bibrelex" } @unpublished{bu-scpes- -, author = "R. Boland and J. Urrutia" -, title = "Separating collections of points in {Euclidean} space" -, note = "In preparation" -, update = "98.07 bibrelex" +, author = "R. Boland and J. Urrutia" +, title = "Separating collections of points in {Euclidean} space" +, note = "In preparation" +, update = "98.07 bibrelex" } @inproceedings{bu-sfpes-92 -, author = "R. P. Boland and J. Urrutia" -, title = "Separating families of points in {Euclidean} spaces" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "6--10" -, cites = "akp-cddsl-89, a-ppss-85, a-npps-84, b-scs-92, b-dsudn-33, bu-scpes-, cruz-scsp-92, lms-hscr-92, m-ptlp-85, s-tt-79, t-sppcs-79, w-pr-82, ZZZ" -, update = "98.07 bibrelex" +, author = "R. P. Boland and J. Urrutia" +, title = "Separating families of points in {Euclidean} spaces" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "6--10" +, cites = "akp-cddsl-89, a-ppss-85, a-npps-84, b-scs-92, b-dsudn-33, bu-scpes-, cruz-scsp-92, lms-hscr-92, m-ptlp-85, s-tt-79, t-sppcs-79, w-pr-82, ZZZ" +, update = "98.07 bibrelex" } @book{b-c-86 -, author = "B. Bollob{\'a}s" -, title = "Combinatorics" -, publisher = "Cambridge University Press" -, year = 1986 -, update = "98.07 bibrelex" +, author = "B. Bollob{\'a}s" +, title = "Combinatorics" +, publisher = "Cambridge University Press" +, year = 1986 +, update = "98.07 bibrelex" } @book{b-egt-78 -, author = "B. Bollob{\'a}s" -, title = "Extremal Graph Theory" -, publisher = "Academic Press" -, address = "New York" -, year = 1978 -, update = "98.03 icking, 97.11 bibrelex" +, author = "B. Bollob{\'a}s" +, title = "Extremal Graph Theory" +, publisher = "Academic Press" +, address = "New York" +, year = 1978 +, update = "98.03 icking, 97.11 bibrelex" } @book{b-gtic-79 -, author = "B. Bollob{\'a}s" -, title = "Graph Theory; {An} Introductory Course" -, publisher = "Springer-Verlag" -, year = 1979 -, update = "98.03 bibrelex" +, author = "B. Bollob{\'a}s" +, title = "Graph Theory; {An} Introductory Course" +, publisher = "Springer-Verlag" +, year = 1979 +, update = "98.03 bibrelex" } @book{b-rg-85 -, author = "B. Bollob{\'a}s" -, title = "Random Graphs" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1985 -, update = "99.07 smid, 98.03 bibrelex" +, author = "B. Bollob{\'a}s" +, title = "Random Graphs" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1985 +, update = "99.07 smid, 98.03 bibrelex" } @article{bb-gweto-87 -, author = "B. Bollob{\'a}s and G. Brightwell" -, title = "Graphs whose every transitive orientation contains almost every relation" -, journal = "Israel J. Math." -, volume = 59 -, year = 1987 -, pages = "112--128" -, update = "98.03 bibrelex" +, author = "B. Bollob{\'a}s and G. Brightwell" +, title = "Graphs whose every transitive orientation contains almost every relation" +, journal = "Israel J. Math." +, volume = 59 +, year = 1987 +, pages = "112--128" +, update = "98.03 bibrelex" } @inproceedings{bdgm-tsspw-97 -, author = "B. Bollob{\'a}s and G. Das and D. Gunopulos and H. Mannila" -, title = "Time-Series Similarity Problems and Well-Separated Geometric Sets" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "454--456" -, cites = "afs-esssd-93, alss-fsspn-95, a-afps-90, b-c-86, c-chdc-93, cw-qorss-89, dgm-fsts-96, frm-fsmts-94, jmm-sbq-95, sz-aqrld-96, wj-assr-96, yo-smi-96, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "B. Bollob{\'a}s and G. Das and D. Gunopulos and H. Mannila" +, title = "Time-Series Similarity Problems and Well-Separated Geometric Sets" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "454--456" +, cites = "afs-esssd-93, alss-fsspn-95, a-afps-90, b-c-86, c-chdc-93, cw-qorss-89, dgm-fsts-96, frm-fsmts-94, jmm-sbq-95, sz-aqrld-96, wj-assr-96, yo-smi-96, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{bm-tspkd- -, author = "B. Bollob{\'a}s and A. Meir" -, title = "A traveling salesman problem in the $k$-dimensional unit-cube" -, journal = "Oper. Res. Lett." -, volume = "??" -, year = "??" -, note = "To appear" -, update = "97.11 bibrelex" +, author = "B. Bollob{\'a}s and A. Meir" +, title = "A traveling salesman problem in the $k$-dimensional unit-cube" +, journal = "Oper. Res. Lett." +, volume = "??" +, year = "??" +, note = "To appear" +, update = "97.11 bibrelex" } @article{b-orasr-81 -, author = "A. Bolour" -, title = "Optimal retrieval algorithms for small region queries" -, journal = "SIAM J. Comput." -, volume = 10 -, year = 1981 -, pages = "721--741" +, author = "A. Bolour" +, title = "Optimal retrieval algorithms for small region queries" +, journal = "SIAM J. Comput." +, volume = 10 +, year = 1981 +, pages = "721--741" } @article{b-opmkh-79 -, author = "A. Bolour" -, title = "Optimality properties of multiple-key hashing functions" -, journal = "J. ACM" -, volume = 26 -, year = 1979 -, pages = "196--210" +, author = "A. Bolour" +, title = "Optimality properties of multiple-key hashing functions" +, journal = "J. ACM" +, volume = 26 +, year = 1979 +, pages = "196--210" } @book{bg-rpcg-85 -, author = "V. Boltjansky and I. T. Gohberg" -, title = "Results and Problems in Combinatorial Geometry" -, publisher = "Cambridge University Press" -, address = "New York, NY" -, year = 1985 +, author = "V. Boltjansky and I. T. Gohberg" +, title = "Results and Problems in Combinatorial Geometry" +, publisher = "Cambridge University Press" +, address = "New York, NY" +, year = 1985 } @article{b-lgc-74 -, author = "E. Bombieri" -, title = "Le grand crible" -, journal = "Asterisque" -, volume = 18 -, year = 1974 -, update = "98.07 bibrelex" +, author = "E. Bombieri" +, title = "Le grand crible" +, journal = "Asterisque" +, volume = 18 +, year = 1974 +, update = "98.07 bibrelex" } @article{bk-sectp-88 -, author = "F. Bonafatti and L. Kavazza" -, title = "{SECT}: {An} efficient coding technique for polygonal geographical data" -, journal = "Comput. Graph." -, volume = 22 -, number = "3--4" -, year = 1988 -, pages = "503--513" -, keywords = "data structuring, polygons" -, update = "95.05 korneenko" +, author = "F. Bonafatti and L. Kavazza" +, title = "{SECT}: {An} efficient coding technique for polygonal geographical data" +, journal = "Comput. Graph." +, volume = 22 +, number = "3--4" +, year = 1988 +, pages = "503--513" +, keywords = "data structuring, polygons" +, update = "95.05 korneenko" } @inproceedings{bl-oavdr-89 -, author = "C. R. Bonapace and C. Lo" -, title = "An {$O(n \log n)$} algorithm for {VLSI} design rule checking" -, booktitle = "Proc. 26th Design Autom. Conf." -, year = 1989 -, pages = "503--507" -, update = "98.07 bibrelex" +, author = "C. R. Bonapace and C. Lo" +, title = "An {$O(n \log n)$} algorithm for {VLSI} design rule checking" +, booktitle = "Proc. 26th Design Autom. Conf." +, year = 1989 +, pages = "503--507" +, update = "98.07 bibrelex" } @book{bm-gta-76 -, author = "J. A. Bondy and U. S. R. Murty" -, title = "Graph Theory with Applications" -, publisher = "Macmillan" -, address = "London" -, year = 1976 -, isbn = "0-333-17791-6" -, keywords = "graph drawing" -, comments = "Also attributed to North-Holland, New York, NY" -, update = "97.11 bibrelex, 93.09 tamassia" +, author = "J. A. Bondy and U. S. R. Murty" +, title = "Graph Theory with Applications" +, publisher = "Macmillan" +, address = "London" +, year = 1976 +, isbn = "0-333-17791-6" +, keywords = "graph drawing" +, comments = "Also attributed to North-Holland, New York, NY" +, update = "97.11 bibrelex, 93.09 tamassia" } @article{bp-adtaa-91 -, author = "J. Bonet and J. Peraire" -, title = "An alternating digital tree (ADT) algortihm for $3$D geometric searching and intersection problems" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 31 -, year = 1991 -, pages = "1--17" -, update = "97.11 bibrelex" +, author = "J. Bonet and J. Peraire" +, title = "An alternating digital tree (ADT) algortihm for $3$D geometric searching and intersection problems" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 31 +, year = 1991 +, pages = "1--17" +, update = "97.11 bibrelex" } @book{bf-tdkk-34 -, author = "T. Bonnesen and W. Fenchel" -, title = "Theorie der konvexen {K{\"o}rper}" -, publisher = "J. Springer" -, address = "Berlin, Germany" -, year = 1934 -, note = "Reprinted Chelsea, New York, 1948" -, update = "97.11 bibrelex" +, author = "T. Bonnesen and W. Fenchel" +, title = "Theorie der konvexen {K{\"o}rper}" +, publisher = "J. Springer" +, address = "Berlin, Germany" +, year = 1934 +, note = "Reprinted Chelsea, New York, 1948" +, update = "97.11 bibrelex" } % ### uncertain journal @article{bk-gch-63 -, author = "W. Bonnice and V. L. Klee" -, title = "The generation of convex hulls" -, journal = "Math. Ann." -, volume = 152 -, year = 1963 -, pages = "1--29" -, keywords = "convex hull" -, update = "95.05 korneenko" +, author = "W. Bonnice and V. L. Klee" +, title = "The generation of convex hulls" +, journal = "Math. Ann." +, volume = 152 +, year = 1963 +, pages = "1--29" +, keywords = "convex hull" +, update = "95.05 korneenko" } @inproceedings{bkr-dcbws-95 -, author = "A. Bookstein and S. T. Klein and T. Raita" -, title = "Detecting Content-Bearing Words by Serial Clustering" -, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" -, year = 1995 -, pages = "319--327" -, update = "98.07 agarwal" +, author = "A. Bookstein and S. T. Klein and T. Raita" +, title = "Detecting Content-Bearing Words by Serial Clustering" +, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" +, year = 1995 +, pages = "319--327" +, update = "98.07 agarwal" } @book{b-mtld-91 -, author = "F. L. Bookstein" -, title = "Morphometric Tools for Landmark Data" -, publisher = "Cambridge University Press" -, address = "Cambridge" -, year = 1991 -, update = "93.05 orourke" +, author = "F. L. Bookstein" +, title = "Morphometric Tools for Landmark Data" +, publisher = "Cambridge University Press" +, address = "Cambridge" +, year = 1991 +, update = "93.05 orourke" } @article{b-ls-79 -, author = "F. L. Bookstein" -, title = "The line skeleton" -, journal = "Comput. Graph. Image Process." -, volume = 11 -, number = 2 -, month = oct -, year = 1979 -, pages = "123--137" -, keywords = "algorithm; computer graphics; computer programming Subroutines; methodology, techniques, modeling, representation, graphic, algorithmic aspects, polygon" -, update = "98.07 bibrelex" +, author = "F. L. Bookstein" +, title = "The line skeleton" +, journal = "Comput. Graph. Image Process." +, volume = 11 +, number = 2 +, month = oct +, year = 1979 +, pages = "123--137" +, keywords = "algorithm; computer graphics; computer programming Subroutines; methodology, techniques, modeling, representation, graphic, algorithmic aspects, polygon" +, update = "98.07 bibrelex" } @book{b-mbssc-78 -, author = "F. L. Bookstein" -, title = "The Measurement of Biological Shape and Shape Change" -, series = "Lecture Notes in Biomathematics" -, volume = 24 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1978 -, update = "96.09 agarwal, 93.05 orourke" +, author = "F. L. Bookstein" +, title = "The Measurement of Biological Shape and Shape Change" +, series = "Lecture Notes in Biomathematics" +, volume = 24 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1978 +, update = "96.09 agarwal, 93.05 orourke" } @book{b-pgs-78 -, author = "C. de Boor" -, title = "A practical guide to splines" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1978 -, update = "97.11 bibrelex" +, author = "C. de Boor" +, title = "A practical guide to splines" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1978 +, update = "97.11 bibrelex" } @article{b-cbs-72 -, author = "C. de Boor" -, title = "On Calculating with {B}-Splines" -, journal = "J. Approx. Theory" -, volume = 6 -, year = 1972 -, pages = "50--62" -, update = "97.11 bibrelex" +, author = "C. de Boor" +, title = "On Calculating with {B}-Splines" +, journal = "J. Approx. Theory" +, volume = 6 +, year = 1972 +, pages = "50--62" +, update = "97.11 bibrelex" } @article{bl-tcopi-76 -, author = "K. Booth and G. Lueker" -, title = "Testing for the Consecutive Ones Property Interval Graphs and Graph Planarity Using {PQ}-Tree Algorithms" -, journal = "J. Comput. Syst. Sci." -, volume = 13 -, year = 1976 -, pages = "335--379" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Booth and G. Lueker" +, title = "Testing for the Consecutive Ones Property Interval Graphs and Graph Planarity Using {PQ}-Tree Algorithms" +, journal = "J. Comput. Syst. Sci." +, volume = 13 +, year = 1976 +, pages = "335--379" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{b-affst-91 -, author = "R. S. Booth" -, title = "Analytic formulas for full {Steiner} trees" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "69--82" +, author = "R. S. Booth" +, title = "Analytic formulas for full {Steiner} trees" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "69--82" } @article{b-srfp-91 -, author = "R. S. Booth" -, title = "The {Steiner} ratio for five points" -, journal = "Ann. Oper. Res." -, volume = 33 -, number = "1--4" -, year = 1991 -, pages = "419--436" -, keywords = "Steiner tree" -, update = "95.05 korneenko" +, author = "R. S. Booth" +, title = "The {Steiner} ratio for five points" +, journal = "Ann. Oper. Res." +, volume = 33 +, number = "1--4" +, year = 1991 +, pages = "419--436" +, keywords = "Steiner tree" +, update = "95.05 korneenko" } @article{b-elprv-87 -, author = "B. N. Boots" -, title = "Edge Length Properties Of Random {Voronoi} Polygons" -, journal = "Metallography" -, volume = 20 -, number = 2 -, month = may -, year = 1987 -, pages = "231--236" -, keywords = "edge length properties, random Voronoi polygons" -, abstract = "The author has previously suggested that the equations - derived by Aboav for m//n, the average number of sides - of cells contiguous to an n-sided cell in a planar - tessellation, did not hold for a tessellation formed by - random Voronoi polygons (i. e. , cells created by - Dirichlet domains defined about a set of points located - at random in the plane). The suggestion was supported - by results derived either analytically or by Monte - Carlo simulation relating to a random Voronoi polygon - tessellation. These results included an estimate - derived by Crain from a Monte Carlo simulation of - 46,000 polygons of E(l**2). This paper presents - evidence which supports Aboav's speculation concerning - Crain's results. However, the new result also indicates - that a RVP tessellation is inconsistent with an - equation. In addition, further information is presented - which suggests that other estimates provided by Crain - are inaccurate. 13 refs." +, author = "B. N. Boots" +, title = "Edge Length Properties Of Random {Voronoi} Polygons" +, journal = "Metallography" +, volume = 20 +, number = 2 +, month = may +, year = 1987 +, pages = "231--236" +, keywords = "edge length properties, random Voronoi polygons" +, abstract = "The author has previously suggested that the equations + derived by Aboav for m//n, the average number of sides + of cells contiguous to an n-sided cell in a planar + tessellation, did not hold for a tessellation formed by + random Voronoi polygons (i. e. , cells created by + Dirichlet domains defined about a set of points located + at random in the plane). The suggestion was supported + by results derived either analytically or by Monte + Carlo simulation relating to a random Voronoi polygon + tessellation. These results included an estimate + derived by Crain from a Monte Carlo simulation of + 46,000 polygons of E(l**2). This paper presents + evidence which supports Aboav's speculation concerning + Crain's results. However, the new result also indicates + that a RVP tessellation is inconsistent with an + equation. In addition, further information is presented + which suggests that other estimates provided by Crain + are inaccurate. 13 refs." } @article{b-mtp-87 -, author = "B. N. Boots" -, title = "Modifying {Thiessen} Polygons" -, journal = "The Canadian Geographer" -, volume = 31 -, number = 2 -, year = 1987 -, pages = "160--169" -, annote = "Surveys use of VD for geographical analysis, and - discusses weighted diagrams, and other metrics." +, author = "B. N. Boots" +, title = "Modifying {Thiessen} Polygons" +, journal = "The Canadian Geographer" +, volume = 31 +, number = 2 +, year = 1987 +, pages = "160--169" +, annote = "Surveys use of VD for geographical analysis, and + discusses weighted diagrams, and other metrics." } % [a-vdsfg-91] claims it's Norwich, Conn. @book{b-vtp-89 -, author = "B. N. Boots" -, title = "{Voronoi} ({Thiessen}) Polygons" -, publisher = "Geo Books" -, address = "Norwich, England" -, year = 1989 -, update = "93.09 rote" +, author = "B. N. Boots" +, title = "{Voronoi} ({Thiessen}) Polygons" +, publisher = "Geo Books" +, address = "Norwich, England" +, year = 1989 +, update = "93.09 rote" } @article{b-wtp-79 -, author = "B. N. Boots" -, title = "Weighting {Thiessen} polygons" -, journal = "Econom. Geogr." -, volume = 55 -, year = 1979 -, pages = "248--259" +, author = "B. N. Boots" +, title = "Weighting {Thiessen} polygons" +, journal = "Econom. Geogr." +, volume = 55 +, year = 1979 +, pages = "248--259" } @article{bm-sarvp-83 -, author = "B. N. Boots and D. J. Murdoch" -, title = "The Spatial Arrangement of Random {Voronoi} Polygons" -, journal = "Comput. Geosci." -, volume = 9 -, number = 3 -, year = 1983 -, pages = "351--365" -, annote = "Measures various quantities for random VD. - Algorithm---incremental for each polygon---points in - order of increasing distance" +, author = "B. N. Boots and D. J. Murdoch" +, title = "The Spatial Arrangement of Random {Voronoi} Polygons" +, journal = "Comput. Geosci." +, volume = 9 +, number = 3 +, year = 1983 +, pages = "351--365" +, annote = "Measures various quantities for random VD. + Algorithm---incremental for each polygon---points in + order of increasing distance" } @article{b-icchp-90 -, author = "J. Boreddy" -, title = "An incremental computation of a convex hull of planar line intersections" -, journal = "Pattern Recogn. Lett." -, volume = 11 -, number = 8 -, year = 1990 -, pages = "541--543" -, note = "erratic" -, keywords = "convex hull, intersection, lines" -, update = "95.05 korneenko" +, author = "J. Boreddy" +, title = "An incremental computation of a convex hull of planar line intersections" +, journal = "Pattern Recogn. Lett." +, volume = 11 +, number = 8 +, year = 1990 +, pages = "541--543" +, note = "erratic" +, keywords = "convex hull, intersection, lines" +, update = "95.05 korneenko" } @article{bm-afps-89 -, author = "J. Boreddy and R. N. Mukherjee" -, title = "An algorithm to find polygon similarity" -, journal = "Inform. Process. Lett." -, volume = 33 -, number = 4 -, year = 1989 -, pages = "205--206" -, note = "erratic" -, keywords = "polygons, similarity" -, update = "95.05 korneenko" +, author = "J. Boreddy and R. N. Mukherjee" +, title = "An algorithm to find polygon similarity" +, journal = "Inform. Process. Lett." +, volume = 33 +, number = 4 +, year = 1989 +, pages = "205--206" +, note = "erratic" +, keywords = "polygons, similarity" +, update = "95.05 korneenko" } @article{b-gdtnd-90 -, author = "C. Borgers" -, title = "Generalized {Delaunay} Triangulations of Nonconvex Domains" -, journal = "Comput. Math. Appl." -, volume = 20 -, number = 7 -, year = 1990 -, pages = "45--49" -, annote = "Proof of switching construction for CDT. Algorithm - triangulates constraint polygon (by $O(n^3)$ algorithm - via search for triangle standing on boundary edge). - Then compute DT in each triangle and finally do - switchings until we converge on the CDT." +, author = "C. Borgers" +, title = "Generalized {Delaunay} Triangulations of Nonconvex Domains" +, journal = "Comput. Math. Appl." +, volume = 20 +, number = 7 +, year = 1990 +, pages = "45--49" +, annote = "Proof of switching construction for CDT. Algorithm + triangulates constraint polygon (by $O(n^3)$ algorithm + via search for triangle standing on boundary edge). + Then compute DT in each triangle and finally do + switchings until we converge on the CDT." } @book{b-smpa-87 -, author = "K. H. Borgwardt" -, title = "The Simplex Method. A Probabilistic Analysis" -, series = "Algorithms and Combinatorics" -, volume = 1 -, publisher = "Springer-Verlag" -, address = "Berlin Heidelberg" -, year = 1987 -, update = "97.03 gaertner+salinger" +, author = "K. H. Borgwardt" +, title = "The Simplex Method. A Probabilistic Analysis" +, series = "Algorithms and Combinatorics" +, volume = 1 +, publisher = "Springer-Verlag" +, address = "Berlin Heidelberg" +, year = 1987 +, update = "97.03 gaertner+salinger" } @incollection{bgjr-cchep-91 -, author = "K. H. Borgwardt and N. Gaffke and M. Junger and G. Reinelt" -, title = "Computing the convex hull in the {Euclidean} plane in linear expected time" -, editor = "P. Gritzman and B. Sturmfels" -, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 4 -, publisher = "AMS Press" -, year = 1991 -, pages = "91--107" -, keywords = "convex hull, expected-case analysis" -, update = "95.05 korneenko" +, author = "K. H. Borgwardt and N. Gaffke and M. Junger and G. Reinelt" +, title = "Computing the convex hull in the {Euclidean} plane in linear expected time" +, editor = "P. Gritzman and B. Sturmfels" +, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 4 +, publisher = "AMS Press" +, year = 1991 +, pages = "91--107" +, keywords = "convex hull, expected-case analysis" +, update = "95.05 korneenko" } @phdthesis{b-tcosl-79 -, author = "A. Borning" -, title = "Thinglab: {A} constraint-oriented simulation laboratory" -, school = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, month = jul -, year = 1979 -, note = "Available as Technical Report STAN-CS-79-746" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "A. Borning" +, title = "Thinglab: {A} constraint-oriented simulation laboratory" +, school = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, month = jul +, year = 1979 +, note = "Available as Technical Report STAN-CS-79-746" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{bh-rmspm-85 -, author = "A. Borodin and J. E. Hopcroft" -, title = "Routing, merging, and sorting on parallel models of computation" -, journal = "J. Comput. Syst. Sci." -, volume = 30 -, number = 1 -, year = 1985 -, pages = "130--145" +, author = "A. Borodin and J. E. Hopcroft" +, title = "Routing, merging, and sorting on parallel models of computation" +, journal = "J. Comput. Syst. Sci." +, volume = 30 +, number = 1 +, year = 1985 +, pages = "130--145" } @inproceedings{bor-lbhdn-99 -, author = "A. Borodin and R. Ostrovsky and Y. Rabani" -, title = "Lower Bounds for High Dimensional Nearest Neighbor Search and Related Problems" -, booktitle = "Proc. 31st Annu. ACM Sympos. Theory Comput." -, year = 1999 -, pages = "312--321" -, update = "00.11 smid, 00.07 agarwal" +, author = "A. Borodin and R. Ostrovsky and Y. Rabani" +, title = "Lower Bounds for High Dimensional Nearest Neighbor Search and Related Problems" +, booktitle = "Proc. 31st Annu. ACM Sympos. Theory Comput." +, year = 1999 +, pages = "312--321" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{bor-saacp-99 -, author = "A. Borodin and R. Ostrovsky and Y. Rabani" -, title = "Subquadratic Approximation Algorithms For Clustering Problems in High Dimensional Spaces" -, booktitle = "Proc. 31st Annu. ACM Sympos. Theory Comput." -, year = 1999 -, pages = "435--444" -, update = "00.11 smid, 00.07 agarwal" +, author = "A. Borodin and R. Ostrovsky and Y. Rabani" +, title = "Subquadratic Approximation Algorithms For Clustering Problems in High Dimensional Spaces" +, booktitle = "Proc. 31st Annu. ACM Sympos. Theory Comput." +, year = 1999 +, pages = "435--444" +, update = "00.11 smid, 00.07 agarwal" } @article{bf-ntccn-84 -, author = "E. Boros and Z. F{\"u}redi" -, title = "The number of triangles covering the center of an $n$-set" -, journal = "Geom. Dedicata" -, volume = 17 -, year = 1984 -, pages = "69--77" -, update = "97.11 bibrelex" +, author = "E. Boros and Z. F{\"u}redi" +, title = "The number of triangles covering the center of an $n$-set" +, journal = "Geom. Dedicata" +, volume = 17 +, year = 1984 +, pages = "69--77" +, update = "97.11 bibrelex" } @article{bfk-rsgd-89 -, author = "E. Boros and Z. F{\"u}redi and L. M. Kelly" -, title = "On representing {Sylvester}-{Gallai} designs" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "345--348" +, author = "E. Boros and Z. F{\"u}redi and L. M. Kelly" +, title = "On representing {Sylvester}-{Gallai} designs" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "345--348" } @techreport{bh-cpcoe-88 -, author = "E. Boros and P. L. Hammer" -, title = "On clustering problems with connected optima in {Euclidean} spaces" -, type = "Technical {Report}" -, institution = "RUTCOR, Ruters University" -, address = "New Brunswick, New Jersey" -, month = mar -, year = 1988 -, update = "93.09 milone+mitchell" +, author = "E. Boros and P. L. Hammer" +, title = "On clustering problems with connected optima in {Euclidean} spaces" +, type = "Technical {Report}" +, institution = "RUTCOR, Ruters University" +, address = "New Brunswick, New Jersey" +, month = mar +, year = 1988 +, update = "93.09 milone+mitchell" } @article{bh-cpcoe-89 -, author = "E. Boros and P. L. Hammer" -, title = "On clustering problems with connected optima in {Euclidean} spaces" -, journal = "Discrete Math." -, volume = 75 -, year = 1989 -, pages = "81--88" -, update = "98.03 bibrelex" +, author = "E. Boros and P. L. Hammer" +, title = "On clustering problems with connected optima in {Euclidean} spaces" +, journal = "Discrete Math." +, volume = 75 +, year = 1989 +, pages = "81--88" +, update = "98.03 bibrelex" } @inproceedings{bfg-utqmg-96 -, author = "Houman Borouchaki and Pascal J. Frey and Paul Louis George" -, title = "Unstructured triangular-quadrilateral mesh generation application to surface meshing" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "229--242" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Houman Borouchaki and Pascal J. Frey and Paul Louis George" +, title = "Unstructured triangular-quadrilateral mesh generation application to surface meshing" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "229--242" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{bhsg-redbm-95 -, author = "H. Borouchaki and F. Hecht and E. Saltel and P. L. George" -, title = "Reasonably Efficient {Delaunay} Based Mesh Generator in 3 Dimensions" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "3--14" -, update = "96.01 samitchell" +, author = "H. Borouchaki and F. Hecht and E. Saltel and P. L. George" +, title = "Reasonably Efficient {Delaunay} Based Mesh Generator in 3 Dimensions" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "3--14" +, update = "96.01 samitchell" } @inproceedings{bm-pcg-95 -, author = "Ali R. Boroujerdi and Bernard M. E. Moret" -, title = "Persistence in Computational Geometry" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "241--246" -, update = "95.09 jones" +, author = "Ali R. Boroujerdi and Bernard M. E. Moret" +, title = "Persistence in Computational Geometry" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "241--246" +, update = "95.09 jones" } @article{brs-dot-92 -, author = "J. Borowski and J. Richter-Gebert and W. Schindler" -, title = "On the distribution of order types" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 3 -, year = 1992 -, pages = "127--142" -, keywords = "chiritope, grassmanian, order type, oriented matroid, Monte-Carlo methods" +, author = "J. Borowski and J. Richter-Gebert and W. Schindler" +, title = "On the distribution of order types" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 3 +, year = 1992 +, pages = "127--142" +, keywords = "chiritope, grassmanian, order type, oriented matroid, Monte-Carlo methods" } @article{bb-dndo-91 -, author = "P. Borrel and D. Bechmann" -, title = "Deformation of $n$-dimensional objects" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 4 -, year = 1991 -, pages = "427--453" +, author = "P. Borrel and D. Bechmann" +, title = "Deformation of $n$-dimensional objects" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 4 +, year = 1991 +, pages = "427--453" } @article{b-dsudn-33 -, author = "K. Borsuk" -, title = "Drei {S{\"a}tze} {\"u}ber die $n$-dimensionale euklidische {Sph{\"a}re}" -, journal = "Fundam. Math." -, volume = 20 -, year = 1933 -, update = "98.07 bibrelex" +, author = "K. Borsuk" +, title = "Drei {S{\"a}tze} {\"u}ber die $n$-dimensionale euklidische {Sph{\"a}re}" +, journal = "Fundam. Math." +, volume = 20 +, year = 1933 +, update = "98.07 bibrelex" } @book{b-mag-69 -, author = "K. Borsuk" -, title = "Multidimensional Analytic Geometry" -, publisher = "Polish Scientific Publishers" -, address = "Warsaw, Poland" -, year = 1969 -, update = "98.03 bibrelex" +, author = "K. Borsuk" +, title = "Multidimensional Analytic Geometry" +, publisher = "Polish Scientific Publishers" +, address = "Warsaw, Poland" +, year = 1969 +, update = "98.03 bibrelex" } @article{bm-sspig-90 -, author = "P. Borwein and W. O. J. Moser" -, title = "A survey of {Sylvester}'s problem and its generalizations" -, journal = "Aequationes Math." -, volume = 40 -, number = "2--3" -, year = 1990 -, pages = "111--135" -, keywords = "survey" -, update = "95.05 korneenko" +, author = "P. Borwein and W. O. J. Moser" +, title = "A survey of {Sylvester}'s problem and its generalizations" +, journal = "Aequationes Math." +, volume = 40 +, number = "2--3" +, year = 1990 +, pages = "111--135" +, keywords = "survey" +, update = "95.05 korneenko" } @article{bh-ststr-88 -, author = "J. M. Bosart and L. Huguet" -, title = "Shortest trees and {Steiner} trees with rectilinear distances ( paper in {Catalan} language)" -, journal = "Questiio" -, volume = 12 -, number = 2 -, year = 1988 -, pages = "159--174" -, keywords = "Steiner tree, minimal spanning tree, $L_1$-metric" -, update = "95.05 korneenko" +, author = "J. M. Bosart and L. Huguet" +, title = "Shortest trees and {Steiner} trees with rectilinear distances ( paper in {Catalan} language)" +, journal = "Questiio" +, volume = 12 +, number = 2 +, year = 1988 +, pages = "159--174" +, keywords = "Steiner tree, minimal spanning tree, $L_1$-metric" +, update = "95.05 korneenko" } @phdthesis{b-gcamp-95 -, author = "P. Bose" -, title = "Geometric and Computational Aspects of Manufacturing Processes" -, school = "Dept. Comput. Sci., Univ. British Columbia" -, address = "Vancouver, BC" -, year = 1995 -, note = "UBC Tech. Rep 95-02" -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "P. Bose" +, title = "Geometric and Computational Aspects of Manufacturing Processes" +, school = "Dept. Comput. Sci., Univ. British Columbia" +, address = "Vancouver, BC" +, year = 1995 +, note = "UBC Tech. Rep 95-02" +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @inproceedings{b-eopgp-97 -, author = "Prosenjit Bose" -, title = "On Embedding an Outer-Planar Graph in a Point Set" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "25--36" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Prosenjit Bose" +, title = "On Embedding an Outer-Planar Graph in a Point Set" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "25--36" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @techreport{bbk-dcsp-93 -, author = "P. Bose and D. Bremner and M. van Kreveld" -, title = "Determining the Castability of Simple Polyhedra" -, type = "Technical {Report}" -, number = "SOCS 93.12" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1993 -, update = "98.03 bibrelex" +, author = "P. Bose and D. Bremner and M. van Kreveld" +, title = "Determining the Castability of Simple Polyhedra" +, type = "Technical {Report}" +, number = "SOCS 93.12" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1993 +, update = "98.03 bibrelex" } @inproceedings{bbk-dcsp-94 -, author = "P. Bose and D. Bremner and M. van Kreveld" -, title = "Determining the Castability of Simple Polyhedra" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "123--131" -, cites = "am-rsps-92, as-anps-91, abbgotwz-fds-93, bbk-dcsp-93, bkt-fpm-93, bt-gcaim-93, csw-qoubs-90, dk-ladsc-85, e-acg-87, e-cit-88, fm-gaim-93, h-cgpm-91, m-ept-91, m-rsehc-92, ms-tdctd-93, m-ltalp-83, ps-cgi-85, p-mrisf-87, rr-mcp-92, r-dcikc-88a, wo-ich-81, w-imm-84, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "P. Bose and D. Bremner and M. van Kreveld" +, title = "Determining the Castability of Simple Polyhedra" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "123--131" +, cites = "am-rsps-92, as-anps-91, abbgotwz-fds-93, bbk-dcsp-93, bkt-fpm-93, bt-gcaim-93, csw-qoubs-90, dk-ladsc-85, e-acg-87, e-cit-88, fm-gaim-93, h-cgpm-91, m-ept-91, m-rsehc-92, ms-tdctd-93, m-ltalp-83, ps-cgi-85, p-mrisf-87, rr-mcp-92, r-dcikc-88a, wo-ich-81, w-imm-84, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex, 94.09 jones, 94.01 jones" } @article{bbk-dcsp-97 -, author = "P. Bose and D. Bremner and M. van Kreveld" -, title = "Determining the Castability of Simple Polyhedra" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "84--113" -, update = "97.07 held" +, author = "P. Bose and D. Bremner and M. van Kreveld" +, title = "Determining the Castability of Simple Polyhedra" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "84--113" +, update = "97.07 held" } @techreport{bbt-acpcb- -, author = "P. Bose and D. Bremner and G. Toussaint" -, title = "All convex polyhedra can be clamped with parallel jaw grippers" -, institution = "School of Computer Science, McGill University" -, note = "to appear" -, succeeds = "bbt-acpcb-94, bbt-acpcb-96" -, update = "98.11 bibrelex" +, author = "P. Bose and D. Bremner and G. Toussaint" +, title = "All convex polyhedra can be clamped with parallel jaw grippers" +, institution = "School of Computer Science, McGill University" +, note = "to appear" +, succeeds = "bbt-acpcb-94, bbt-acpcb-96" +, update = "98.11 bibrelex" } @inproceedings{bbt-acpcb-94 -, author = "P. Bose and D. Bremner and G. Toussaint" -, title = "All Convex Polyhedra Can Be Clamped with Parallel Jaw Grippers" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "344--349" -, precedes = "bbt-acpcb-96, bbt-acpcb-" -, cites = "aho-srcp-90, abbgotwz-fds-93, bfg-spmfh-85, bbt-acpcb-, c-cpo-93, csu-isp-91, gs-ccrs-87, ht-cws-88, mss-esmpg-87, mu-ifp-91, ps-cgi-85, s-dcah-84, sv-cp-89t, tm-ragum-94, b-gtfga-80, ZZZ" -, update = "98.11 bibrelex, 97.03 devillers+smid, 94.09 jones" +, author = "P. Bose and D. Bremner and G. Toussaint" +, title = "All Convex Polyhedra Can Be Clamped with Parallel Jaw Grippers" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "344--349" +, precedes = "bbt-acpcb-96, bbt-acpcb-" +, cites = "aho-srcp-90, abbgotwz-fds-93, bfg-spmfh-85, bbt-acpcb-, c-cpo-93, csu-isp-91, gs-ccrs-87, ht-cws-88, mss-esmpg-87, mu-ifp-91, ps-cgi-85, s-dcah-84, sv-cp-89t, tm-ragum-94, b-gtfga-80, ZZZ" +, update = "98.11 bibrelex, 97.03 devillers+smid, 94.09 jones" } @article{bbt-acpcb-96 -, author = "P. Bose and D. Bremner and G. Toussaint" -, title = "All Convex Polyhedra Can Be Clamped with Parallel Jaw Grippers" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "291--302" -, succeeds = "bbt-acpcb-94" -, precedes = "bbt-acpcb-" -, update = "98.11 bibrelex, 97.03 devillers+smid" +, author = "P. Bose and D. Bremner and G. Toussaint" +, title = "All Convex Polyhedra Can Be Clamped with Parallel Jaw Grippers" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "291--302" +, succeeds = "bbt-acpcb-94" +, precedes = "bbt-acpcb-" +, update = "98.11 bibrelex, 97.03 devillers+smid" } @inproceedings{bckm-aptcc-00 -, author = "P. Bose and J. Czyzowicz and E. Kranakis and A. Maheshwari" -, title = "Algorithms for packing two circles in a convex polygon" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom." -, series = "Lecture Notes Comput. Sci." -, volume = 1763 -, publisher = "Springer-Verlag" -, year = 2000 -, pages = "93--103" -, update = "01.07 smid" +, author = "P. Bose and J. Czyzowicz and E. Kranakis and A. Maheshwari" +, title = "Algorithms for packing two circles in a convex polygon" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom." +, series = "Lecture Notes Comput. Sci." +, volume = 1763 +, publisher = "Springer-Verlag" +, year = 2000 +, pages = "93--103" +, update = "01.07 smid" } @techreport{bdhs-rvg1k-96 -, author = "P. Bose and A. Dean and J. Hutchinson and T. Shermer" -, title = "On rectangle visibility graphs {I}: $k$-trees and caterpillar forests" -, institution = "DIMACS and Simon Fraser University" -, month = may -, year = 1996 -, keywords = "visibility graphs" -, update = "96.09 orourke" +, author = "P. Bose and A. Dean and J. Hutchinson and T. Shermer" +, title = "On rectangle visibility graphs {I}: $k$-trees and caterpillar forests" +, institution = "DIMACS and Simon Fraser University" +, month = may +, year = 1996 +, keywords = "visibility graphs" +, update = "96.09 orourke" } @techreport{bd-irgo-95 -, author = "P. Bose and L. Devroye" -, title = "Intersections with random geometric objects" -, institution = "School of Computer Science, McGill University" -, year = 1995 -, note = "Manuscript" -, update = "97.11 bibrelex" +, author = "P. Bose and L. Devroye" +, title = "Intersections with random geometric objects" +, institution = "School of Computer Science, McGill University" +, year = 1995 +, note = "Manuscript" +, update = "97.11 bibrelex" } @article{bd-irgo-98 -, author = "Prosenjit Bose and Luc Devroye" -, title = "Intersections with random geometric objects" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "139--154" -, succeeds = "bd-irgo-95" -, update = "98.11 devillers" +, author = "Prosenjit Bose and Luc Devroye" +, title = "Intersections with random geometric objects" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "139--154" +, succeeds = "bd-irgo-95" +, update = "98.11 devillers" } @techreport{bde-danmw-96t -, author = "P. Bose and L. Devroye and W. Evans" -, title = "Diamonds are not a minimum weight triangulation's best friend" -, type = "Technical {Report}" -, number = "96-01" -, institution = "Dept. Comput. Sci., Univ. British Comumbia" -, month = jan -, year = 1996 -, update = "97.11 bibrelex" +, author = "P. Bose and L. Devroye and W. Evans" +, title = "Diamonds are not a minimum weight triangulation's best friend" +, type = "Technical {Report}" +, number = "96-01" +, institution = "Dept. Comput. Sci., Univ. British Comumbia" +, month = jan +, year = 1996 +, update = "97.11 bibrelex" } @inproceedings{bde-danmw-96 -, author = "P. Bose and L. Devroye and W. Evans" -, title = "Diamonds are not a minimum weight triangulation's best friend" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "68--73" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "P. Bose and L. Devroye and W. Evans" +, title = "Diamonds are not a minimum weight triangulation's best friend" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "68--73" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{bdll-pcrt-95 -, author = "P. Bose and G. {Di Battista} and W. Lenhart and G. Liotta" -, title = "Proximity Constraints and Representable Trees" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "340--351" -, keywords = "graph drawing, proximity, trees" -, update = "95.01 tamassia" +, author = "P. Bose and G. {Di Battista} and W. Lenhart and G. Liotta" +, title = "Proximity Constraints and Representable Trees" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "340--351" +, keywords = "graph drawing, proximity, trees" +, update = "95.01 tamassia" } @techreport{bdll-pcrt-96 -, author = "P. Bose and G. {Di Battista} and W. Lenhart and G. Liotta" -, title = "Proximity Constraints and Representable Trees" -, type = "Technical Report" -, number = "RT-INF-9-96" -, institution = "Dip. Discipline Scientifiche, Sez. Informatica, Univ. Roma III" -, year = 1996 -, url = "https://www.cs.brown.edu/cgc/papers/bdll-pcrt-96.ps.gz" -, keywords = "graph drawing, proximity, CGC, Brown" -, update = "97.03 tamassia" +, author = "P. Bose and G. {Di Battista} and W. Lenhart and G. Liotta" +, title = "Proximity Constraints and Representable Trees" +, type = "Technical Report" +, number = "RT-INF-9-96" +, institution = "Dip. Discipline Scientifiche, Sez. Informatica, Univ. Roma III" +, year = 1996 +, url = "https://www.cs.brown.edu/cgc/papers/bdll-pcrt-96.ps.gz" +, keywords = "graph drawing, proximity, CGC, Brown" +, update = "97.03 tamassia" } @inproceedings{bekms-aspal-96 -, author = "P. Bose and W. Evans and D. Kirkpatrick and M. McAllister and J . Snoeyink" -, title = "Approximating shortest paths in arrangements of lines" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "143--148" -, update = "98.03 mitchell, 96.09 mitchell" -, annote = "2-approximation in $O(n\log n)$ time" +, author = "P. Bose and W. Evans and D. Kirkpatrick and M. McAllister and J . Snoeyink" +, title = "Approximating shortest paths in arrangements of lines" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "143--148" +, update = "98.03 mitchell, 96.09 mitchell" +, annote = "2-approximation in $O(n\log n)$ time" } @incollection{beflmrsw-ovrg3d-94 -, author = "P. Bose and H. Everett and S{\'a}ndor P. Fekete and A. Lubiw and H. Meijer and K. Romanik and T. Shermer and S. Whitesides" -, title = "On a Visibility Representation for Graphs in Three Dimensions" -, editor = "D. Avis and P. Bose" -, booktitle = "Snapshots in Computational and Discrete Geometry, Volume III" -, publisher = "McGill University" -, month = jul -, year = 1994 -, pages = "2--25" -, note = "McGill technical report SOCS-94.50" -, keywords = "graph drawing, visibility" -, precedes = "behflmrrswz-vrg3d-98" -, update = "98.07 rote, 98.03 mitchell, 97.03 rote, 96.09 romanik" +, author = "P. Bose and H. Everett and S{\'a}ndor P. Fekete and A. Lubiw and H. Meijer and K. Romanik and T. Shermer and S. Whitesides" +, title = "On a Visibility Representation for Graphs in Three Dimensions" +, editor = "D. Avis and P. Bose" +, booktitle = "Snapshots in Computational and Discrete Geometry, Volume III" +, publisher = "McGill University" +, month = jul +, year = 1994 +, pages = "2--25" +, note = "McGill technical report SOCS-94.50" +, keywords = "graph drawing, visibility" +, precedes = "behflmrrswz-vrg3d-98" +, update = "98.07 rote, 98.03 mitchell, 97.03 rote, 96.09 romanik" } @article{behflmrrswz-vrg3d-98 -, author = "P. Bose and H. Everett and Michael E. Houle and S{\'a}ndor P. Fekete and A. Lubiw and H. Meijer and K. Romanik and G{\"u}nter Rote and T. Shermer and S. Whitesides and Christian Zelle" -, title = "A visibility representation for graphs in three dimensions" -, journal = "J. Graph Algorithms Appl." -, volume = 2 -, number = 3 -, year = 1998 -, pages = "1--16" -, keywords = "graph drawing, visibility" -, succeeds = "beflmrsw-ovrg3d-94, fhw-nrvrg-96" -, update = "98.07 rote, 98.03 mitchell, 97.11 orourke, 97.03 rote" -, abstract = "We propose a 3-dimensional visibility representation of graphs - in which vertices are mapped to horizontal axis-parallel - rectangles floating in 3-space, with edges represented by - vertical lines of sight. We apply an extension of the - {Erd\H os}-Szekeres Theorem in a geometric setting to obtain an - upper bound of 56 for size of the largest complete graph which - is representable. On the other hand, we construct a - representation of the complete graph with 22 vertices. - These are the best existing bounds." +, author = "P. Bose and H. Everett and Michael E. Houle and S{\'a}ndor P. Fekete and A. Lubiw and H. Meijer and K. Romanik and G{\"u}nter Rote and T. Shermer and S. Whitesides and Christian Zelle" +, title = "A visibility representation for graphs in three dimensions" +, journal = "J. Graph Algorithms Appl." +, volume = 2 +, number = 3 +, year = 1998 +, pages = "1--16" +, keywords = "graph drawing, visibility" +, succeeds = "beflmrsw-ovrg3d-94, fhw-nrvrg-96" +, update = "98.07 rote, 98.03 mitchell, 97.11 orourke, 97.03 rote" +, abstract = "We propose a 3-dimensional visibility representation of graphs + in which vertices are mapped to horizontal axis-parallel + rectangles floating in 3-space, with edges represented by + vertical lines of sight. We apply an extension of the + {Erd\H os}-Szekeres Theorem in a geometric setting to obtain an + upper bound of 56 for size of the largest complete graph which + is representable. On the other hand, we construct a + representation of the complete graph with 22 vertices. + These are the best existing bounds." } @inproceedings{bew-pag-98 -, author = "P. Bose and H. Everett and S. K. Wismath" -, title = "Properties of Arragement Graphs" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "45--47" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "P. Bose and H. Everett and S. K. Wismath" +, title = "Properties of Arragement Graphs" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "45--47" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{bgrt-dnpos-96 -, author = "Prosenjit Bose and Francisco Gomez and Pedro Ramos and Godfried T. Toussaint" -, title = "Drawing nice projections of objects in space" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "52--63" -, update = "98.07 orourke" +, author = "Prosenjit Bose and Francisco Gomez and Pedro Ramos and Godfried T. Toussaint" +, title = "Drawing nice projections of objects in space" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "52--63" +, update = "98.07 orourke" } @inproceedings{bglosu-fp-93 -, author = "P. Bose and Leonidas J. Guibas and A. Lubiw and M. Overmars and D. Souvaine and J. Urrutia" -, title = "The floodlight problem" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "399--404" -, precedes = "bglosu-fp-97" -, cites = "cru-glmvg-89, cru-irtp-93, e-acg-87, o-agta-87, ps-cgi-85, bfprt-tbs-73, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 97.07 devillers, 93.09 milone+mitchell" +, author = "P. Bose and Leonidas J. Guibas and A. Lubiw and M. Overmars and D. Souvaine and J. Urrutia" +, title = "The floodlight problem" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "399--404" +, precedes = "bglosu-fp-97" +, cites = "cru-glmvg-89, cru-irtp-93, e-acg-87, o-agta-87, ps-cgi-85, bfprt-tbs-73, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 97.07 devillers, 93.09 milone+mitchell" } @article{bglosu-fp-97 -, author = "P. Bose and Leonidas J. Guibas and A. Lubiw and M. Overmars and D. Souvaine and J. Urrutia" -, title = "The floodlight problem" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "153--163" -, succeeds = "bglosu-fp-93" -, update = "98.03 mitchell, 97.07 devillers" +, author = "P. Bose and Leonidas J. Guibas and A. Lubiw and M. Overmars and D. Souvaine and J. Urrutia" +, title = "The floodlight problem" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "153--163" +, succeeds = "bglosu-fp-93" +, update = "98.03 mitchell, 97.07 devillers" } @inproceedings{bht-esdls-94 -, author = "P. Bose and M. E. Houle and G. Toussaint" -, title = "Every Set of Disjoint Line Segments Admits a Binary Tree" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "??" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" +, author = "P. Bose and M. E. Houle and G. Toussaint" +, title = "Every Set of Disjoint Line Segments Admits a Binary Tree" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "??" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" } @article{bht-esdls-01 -, author = "P. Bose and M. E. Houle and G. T. Toussaint" -, title = "Every Set of Disjoint Line Segments Admits a Binary Tree" -, journal = "Discrete Comput. Geom." -, volume = 26 -, year = 2001 -, pages = "387--410" -, update = "02.03 smid" +, author = "P. Bose and M. E. Houle and G. T. Toussaint" +, title = "Every Set of Disjoint Line Segments Admits a Binary Tree" +, journal = "Discrete Comput. Geom." +, volume = 26 +, year = 2001 +, pages = "387--410" +, update = "02.03 smid" } @inproceedings{bhot-aaop-95 -, author = "Prosenjit Bose and Ferran Hurtado-Diaz and Elsa Oma{\~n}a-Pulido and Godfried Toussaint" -, title = "Aperture Angle Optimization Problems" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "73--78" -, update = "95.09 jones" +, author = "Prosenjit Bose and Ferran Hurtado-Diaz and Elsa Oma{\~n}a-Pulido and Godfried Toussaint" +, title = "Aperture Angle Optimization Problems" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "73--78" +, update = "95.09 jones" } @article{bhot-oaa-93 -, author = "P. Bose and F. Hurtado and E. Oman{\~n}a and G. T. Toussaint" -, title = "Optimizaci{\'o}n del {\`a}ngulo de apertura" -, journal = "Actas del {IV} Encuentro Espan{\~n}ol de Geometr{\'i}a Computacional" -, volume = "??" -, year = 1993 -, update = "98.11 bibrelex" +, author = "P. Bose and F. Hurtado and E. Oman{\~n}a and G. T. Toussaint" +, title = "Optimizaci{\'o}n del {\`a}ngulo de apertura" +, journal = "Actas del {IV} Encuentro Espan{\~n}ol de Geometr{\'i}a Computacional" +, volume = "??" +, year = 1993 +, update = "98.11 bibrelex" } @incollection{bjmo-kibvg-94 -, author = "P. Bose and A. Josefczyk and J. Miller and J. O'Rourke" -, title = "{$K_{42}$} is a box visibility graph" -, booktitle = "Snapshots of Computational and Discrete Geometry" -, volume = 3 -, publisher = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, month = jul -, year = 1994 -, pages = "88--91" -, note = "Technical Report SOCS-94.50" -, keywords = "visibility graphs" -, comments = "Also Technical Report 035, Dept. Comput. Sci., Smith College" -, update = "94.09 orourke" +, author = "P. Bose and A. Josefczyk and J. Miller and J. O'Rourke" +, title = "{$K_{42}$} is a box visibility graph" +, booktitle = "Snapshots of Computational and Discrete Geometry" +, volume = 3 +, publisher = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, month = jul +, year = 1994 +, pages = "88--91" +, note = "Technical Report SOCS-94.50" +, keywords = "visibility graphs" +, comments = "Also Technical Report 035, Dept. Comput. Sci., Smith College" +, update = "94.09 orourke" } @inproceedings{bkl-eagis-96 -, author = "P. Bose and D. Kirkpatrick and Z. Li" -, title = "Efficient algorithms for guarding or illuminating the surface of a polyhedral terrain" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "217--222" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "P. Bose and D. Kirkpatrick and Z. Li" +, title = "Efficient algorithms for guarding or illuminating the surface of a polyhedral terrain" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "217--222" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{bkt-fpm-93 -, author = "Prosenjit Bose and Marc van Kreveld and Godfried Toussaint" -, title = "Filling Polyhedral Molds" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "210--221" -, update = "93.09 milone+mitchell+smid, 93.05 jones" +, author = "Prosenjit Bose and Marc van Kreveld and Godfried Toussaint" +, title = "Filling Polyhedral Molds" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "210--221" +, update = "93.09 milone+mitchell+smid, 93.05 jones" } @article{bkt-fpm-98 -, author = "P. Bose and M. van Kreveld and G. Toussaint" -, title = "Filling Polyhedral Molds" -, journal = "Comput. Aided Design" -, volume = 30 -, number = 4 -, month = apr -, year = 1998 -, pages = "245--254" -, update = "98.07 held" +, author = "P. Bose and M. van Kreveld and G. Toussaint" +, title = "Filling Polyhedral Molds" +, journal = "Comput. Aided Design" +, volume = 30 +, number = 4 +, month = apr +, year = 1998 +, pages = "245--254" +, update = "98.07 held" } @techreport{bll-cpt-93t -, author = "P. Bose and W. Lenhart and G. Liotta" -, title = "Characterizing proximity trees" -, type = "Technical Report" -, number = "SOCS 93.9" -, institution = "School of Computer Science, McGill University" -, address = "Montr{\'e}al, Quebec" -, year = 1993 -, precedes = "bll-cpt-93, bll-cpt-96" -, update = "98.11 bibrelex" +, author = "P. Bose and W. Lenhart and G. Liotta" +, title = "Characterizing proximity trees" +, type = "Technical Report" +, number = "SOCS 93.9" +, institution = "School of Computer Science, McGill University" +, address = "Montr{\'e}al, Quebec" +, year = 1993 +, precedes = "bll-cpt-93, bll-cpt-96" +, update = "98.11 bibrelex" } @inproceedings{bll-cpt-93 -, author = "P. Bose and W. Lenhart and G. Liotta" -, title = "Characterizing proximity trees" -, booktitle = "Graph Drawing (Proc. GD '93)" -, year = 1993 -, succeeds = "bll-cpt-93t" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "P. Bose and W. Lenhart and G. Liotta" +, title = "Characterizing proximity trees" +, booktitle = "Graph Drawing (Proc. GD '93)" +, year = 1993 +, succeeds = "bll-cpt-93t" +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{bll-cpt-96 -, author = "P. Bose and W. Lenhart and G. Liotta" -, title = "Characterizing Proximity Trees" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "83--110" -, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" -, keywords = "graph drawing, proximity" -, succeeds = "bll-cpt-93t" -, update = "98.11 bibrelex, 96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" +, author = "P. Bose and W. Lenhart and G. Liotta" +, title = "Characterizing Proximity Trees" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "83--110" +, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" +, keywords = "graph drawing, proximity" +, succeeds = "bll-cpt-93t" +, update = "98.11 bibrelex, 96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" } @inproceedings{blm-evqsp-92 -, author = "P. Bose and A. Lubiw and J. I. Munro" -, title = "Efficient visibility queries in simple polygons" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "23--28" -, cites = "bm-gta-76, b-vsp-91, gmr-rlptd-92, k-osps-83, lp-lppsi-77, o-agta-87, p-nappl-81, ps-cgi-85, st-pplup-86, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Bose and A. Lubiw and J. I. Munro" +, title = "Efficient visibility queries in simple polygons" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "23--28" +, cites = "bm-gta-76, b-vsp-91, gmr-rlptd-92, k-osps-83, lp-lppsi-77, o-agta-87, p-nappl-81, ps-cgi-85, st-pplup-86, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{bmmm-gpp-01 -, author = "Prosenjit Bose and Anil Maheshwari and Pat Morin and Jason Morrison" -, title = "The Grid Placement Problem" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "74--77" -, update = "01.04 icking" +, author = "Prosenjit Bose and Anil Maheshwari and Pat Morin and Jason Morrison" +, title = "The Grid Placement Problem" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "74--77" +, update = "01.04 icking" } @inproceedings{bm-ort-99 -, author = "P. Bose and P. Morin" -, title = "Online routing in triangulations" -, booktitle = "Proc. 10th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '99" -, series = "Lecture Notes Comput. Sci." -, volume = 1741 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "113--122" -, update = "00.03 smid" +, author = "P. Bose and P. Morin" +, title = "Online routing in triangulations" +, booktitle = "Proc. 10th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '99" +, series = "Lecture Notes Comput. Sci." +, volume = 1741 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "113--122" +, update = "00.03 smid" } @inproceedings{brtt-ecqas-96 -, author = "Prosenjit Bose and Suneeta Ramaswami and Godfried Toussaint and Alain Turki" -, title = "Experimental Comparison of Quadrangulation Algorithms for Sets of Points" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "39--40" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Prosenjit Bose and Suneeta Ramaswami and Godfried Toussaint and Alain Turki" +, title = "Experimental Comparison of Quadrangulation Algorithms for Sets of Points" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "39--40" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{bstz-gpt-92 -, author = "P. Bose and T. Shermer and G. Toussaint and B. Zhu" -, title = "Guarding polyhedral terrains" -, type = "Technical Report" -, number = "SOCS-92.20" -, institution = "McGill University" -, year = 1992 -, precedes = "bstz-gpt-97" -, update = "98.11 bibrelex" +, author = "P. Bose and T. Shermer and G. Toussaint and B. Zhu" +, title = "Guarding polyhedral terrains" +, type = "Technical Report" +, number = "SOCS-92.20" +, institution = "McGill University" +, year = 1992 +, precedes = "bstz-gpt-97" +, update = "98.11 bibrelex" } @article{bstz-gpt-97 -, author = "P. Bose and T. Shermer and G. Toussaint and B. Zhu" -, title = "Guarding polyhedral terrains" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "173--185" -, succeeds = "bstz-gpt-92" -, update = "98.11 bibrelex, 97.03 devillers" +, author = "P. Bose and T. Shermer and G. Toussaint and B. Zhu" +, title = "Guarding polyhedral terrains" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "173--185" +, succeeds = "bstz-gpt-92" +, update = "98.11 bibrelex, 97.03 devillers" } @article{bt-cecqp-97 -, author = "Prosenjit Bose and Godfried Toussaint" -, title = "Characterizing and Efficiently Computing Quadrangulations of Planar Point Sets" -, journal = "Comput. Aided Geom. Design" -, volume = 14 -, year = 1997 -, pages = "763--785" -, comments = "See also \cite{ahms-htfr-96}, where some similar facts are +, author = "Prosenjit Bose and Godfried Toussaint" +, title = "Characterizing and Efficiently Computing Quadrangulations of Planar Point Sets" +, journal = "Comput. Aided Geom. Design" +, volume = 14 +, year = 1997 +, pages = "763--785" +, comments = "See also \cite{ahms-htfr-96}, where some similar facts are shown." -, succeeds = "bt-nqieo-95" -, update = "98.03 mitchell" +, succeeds = "bt-nqieo-95" +, update = "98.03 mitchell" } @techreport{bt-gcaim-92 -, author = "P. Bose and G. Toussaint" -, title = "Geometric and computational aspects of injection molding" -, type = "Technical Report" -, number = "SOCS 92.16" -, institution = "School of Computer Science, McGill University" -, address = "Canada" -, year = 1992 -, precedes = "bt-gcaim-93" -, update = "98.11 bibrelex" +, author = "P. Bose and G. Toussaint" +, title = "Geometric and computational aspects of injection molding" +, type = "Technical Report" +, number = "SOCS 92.16" +, institution = "School of Computer Science, McGill University" +, address = "Canada" +, year = 1992 +, precedes = "bt-gcaim-93" +, update = "98.11 bibrelex" } @inproceedings{bt-gcaim-93 -, author = "P. Bose and G. Toussaint" -, title = "Geometric and computational aspects of injection molding" -, booktitle = "Proc. 3rd. Internat. Conf. CAD Comput. Graph." -, site = "Beijing, China" -, year = 1993 -, pages = "237--242" -, succeeds = "bt-gcaim-92" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "P. Bose and G. Toussaint" +, title = "Geometric and computational aspects of injection molding" +, booktitle = "Proc. 3rd. Internat. Conf. CAD Comput. Graph." +, site = "Beijing, China" +, year = 1993 +, pages = "237--242" +, succeeds = "bt-gcaim-92" +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{bt-gcamp-94 -, author = "P. Bose and G. Toussaint" -, title = "Geometric and computational aspects of manufacturing processes" -, journal = "Comput. \& Graphics" -, volume = 18 -, year = 1994 -, pages = "487--497" -, update = "97.03 schwarzkopf" +, author = "P. Bose and G. Toussaint" +, title = "Geometric and computational aspects of manufacturing processes" +, journal = "Comput. \& Graphics" +, volume = 18 +, year = 1994 +, pages = "487--497" +, update = "97.03 schwarzkopf" } @inproceedings{bt-gtfb-93 -, author = "Prosenjit Bose and Godfried Toussaint" -, title = "Growing a tree from its branches" -, booktitle = "Proc. First Pacific Conf. Computer Graphics Appl., Seoul, Korea, vol. 1" -, volume = 1 -, publisher = "World Scientific Publishing Co." -, year = 1993 -, pages = "90--99" -, keywords = "segments, points, minimal spanning tree, lower bounds" -, update = "96.05 smid, 95.09 korneenko" -, annote = "Non-crossing spanning tree for ends of disjoint plane segments, +, author = "Prosenjit Bose and Godfried Toussaint" +, title = "Growing a tree from its branches" +, booktitle = "Proc. First Pacific Conf. Computer Graphics Appl., Seoul, Korea, vol. 1" +, volume = 1 +, publisher = "World Scientific Publishing Co." +, year = 1993 +, pages = "90--99" +, keywords = "segments, points, minimal spanning tree, lower bounds" +, update = "96.05 smid, 95.09 korneenko" +, annote = "Non-crossing spanning tree for ends of disjoint plane segments, that includes these segments as its edges, in $\Omega(n \log n)$." } @inproceedings{bt-nqieo-95 -, author = "Prosenjit Bose and Godfried Toussaint" -, title = "No Quadrangulation is Extremely Odd" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "372--381" -, precedes = "bt-cecqp-97" -, update = "98.07 bibrelex, 98.03 mitchell, 96.01 smid, 95.09 mitchell" +, author = "Prosenjit Bose and Godfried Toussaint" +, title = "No Quadrangulation is Extremely Odd" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "372--381" +, precedes = "bt-cecqp-97" +, update = "98.07 bibrelex, 98.03 mitchell, 96.01 smid, 95.09 mitchell" } @mastersthesis{b-vsp-91 -, author = "Prosenjit K. Bose" -, title = "Visibility in simple polygons" -, school = "Department of Computer Science, University of Waterloo" -, year = 1991 -, keywords = "master thesis" +, author = "Prosenjit K. Bose" +, title = "Visibility in simple polygons" +, school = "Department of Computer Science, University of Waterloo" +, year = 1991 +, keywords = "master thesis" } @inproceedings{bh-pmamg-96 -, author = "Frank J. Bossen and Paul S. Heckbert" -, title = "A pliant method for anisotropic mesh generation" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "63--74" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Frank J. Bossen and Paul S. Heckbert" +, title = "A pliant method for anisotropic mesh generation" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "63--74" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{b-cahs-93 -, author = "R. A. Botafogo" -, title = "Cluster Analysis for Hypertext Systems" -, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" -, year = 1993 -, pages = "116--125" -, keywords = "Aggregation, Clustering, Structural analysis, Hypertext, Graph theory" -, update = "98.07 agarwal" +, author = "R. A. Botafogo" +, title = "Cluster Analysis for Hypertext Systems" +, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" +, year = 1993 +, pages = "116--125" +, keywords = "Aggregation, Clustering, Structural analysis, Hypertext, Graph theory" +, update = "98.07 agarwal" } @book{bt-dfat-82 -, author = "R. Bott and L. W. Tu" -, title = "Differentiable forms in algebraic topology" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1982 -, update = "98.03 bibrelex" +, author = "R. Bott and L. W. Tu" +, title = "Differentiable forms in algebraic topology" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1982 +, update = "98.03 bibrelex" } @article{bv-lsedn-77 -, author = "O. Bottema and G. R. Veldkamp" -, title = "On the lines in space with equal distances to $n$ given points" -, journal = "Geom. Dedicata" -, volume = 6 -, year = 1977 -, pages = "121--129" -, update = "01.07 devillers" +, author = "O. Bottema and G. R. Veldkamp" +, title = "On the lines in space with equal distances to $n$ given points" +, journal = "Geom. Dedicata" +, volume = 6 +, year = 1977 +, pages = "121--129" +, update = "01.07 devillers" } @article{b-ihca-84 -, author = "A. Boucher" -, title = "It's hard to color antirectangles" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 5 -, number = 2 -, year = 1984 -, pages = "162--163" -, keywords = "isothetic" -, update = "95.05 korneenko" +, author = "A. Boucher" +, title = "It's hard to color antirectangles" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 5 +, number = 2 +, year = 1984 +, pages = "162--163" +, keywords = "isothetic" +, update = "95.05 korneenko" } @techreport{bfhcp-gcs-93 -, author = "W. Bouma and I. Fudos and C. Hoffmann and J. Cai and R. Paige" -, title = "A geometric constraint solver" -, type = "Technical {Report}" -, number = "CSD-TR-93-054" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1993 -, update = "98.07 bibrelex" +, author = "W. Bouma and I. Fudos and C. Hoffmann and J. Cai and R. Paige" +, title = "A geometric constraint solver" +, type = "Technical {Report}" +, number = "CSD-TR-93-054" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1993 +, update = "98.07 bibrelex" } @incollection{bv-vbcd-95 -, author = "W. Bouma and G. {Van{\v e}{\v c}ek Jr.}" -, title = "Velocity-based collision detection" -, editor = "A. Paeth" -, booktitle = "Graphics Gems V" -, publisher = "Academic Press" -, year = 1995 -, update = "98.07 bibrelex" +, author = "W. Bouma and G. {Van{\v e}{\v c}ek Jr.}" +, title = "Velocity-based collision detection" +, editor = "A. Paeth" +, booktitle = "Graphics Gems V" +, publisher = "Academic Press" +, year = 1995 +, update = "98.07 bibrelex" } @inproceedings{bv-cdapb-91 -, author = "W. J. Bouma and G. {Van{\v e}{\v c}ek Jr.}" -, title = "Collision Detection and Analysis in a Physically Based Simulation" -, booktitle = "Second Eurographics Workshop on Animation and Simulation" -, year = 1991 -, update = "95.01 mitchell" +, author = "W. J. Bouma and G. {Van{\v e}{\v c}ek Jr.}" +, title = "Collision Detection and Analysis in a Physically Based Simulation" +, booktitle = "Second Eurographics Workshop on Animation and Simulation" +, year = 1991 +, update = "95.01 mitchell" } @inbook{b-geadl-68 -, author = "N. Bourbaki" -, title = "Groupes et alg{\`e}bres de Lie" -, chapter = "4, 5, 6" -, publisher = "Hermann" -, address = "Paris, France" -, year = 1968 -, update = "97.11 bibrelex" +, author = "N. Bourbaki" +, title = "Groupes et alg{\`e}bres de Lie" +, chapter = "4, 5, 6" +, publisher = "Hermann" +, address = "Paris, France" +, year = 1968 +, update = "97.11 bibrelex" } @article{bs-gtovl-89 -, author = "N. G. Bourbakis and I. N. Savvides" -, title = "Geometric transformations for optimal {VLSI} layout placement" -, journal = "Microproc. and Microprogr." -, volume = 25 -, number = "1--4" -, year = 1989 -, pages = "163--170" -, keywords = "VLSI design, placement" -, update = "95.05 korneenko" +, author = "N. G. Bourbakis and I. N. Savvides" +, title = "Geometric transformations for optimal {VLSI} layout placement" +, journal = "Microproc. and Microprogr." +, volume = 25 +, number = "1--4" +, year = 1989 +, pages = "163--170" +, keywords = "VLSI design, placement" +, update = "95.05 korneenko" } @article{bl-abmss-93 -, author = "J. Bourgain and Joram Lindenstrauss" -, title = "Approximating the ball by a {Minkowski} sum of segments with equal length" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "131--144" -, update = "96.05 ramkumar" +, author = "J. Bourgain and Joram Lindenstrauss" +, title = "Approximating the ball by a {Minkowski} sum of segments with equal length" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "131--144" +, update = "96.05 ramkumar" } % is CAMS really the institution?? @techreport{br-t-91 -, author = "M. Bousset and P. Rosenstiehl" -, title = "Twist" -, number = "P.073" -, institution = "CAMS" -, year = 1991 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. Bousset and P. Rosenstiehl" +, title = "Twist" +, number = "P.073" +, institution = "CAMS" +, year = 1991 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{bc-mgrfc-92 -, author = "S. W. Bova and G. F. Carey" -, title = "Mesh generation/refinement using fractal concepts and iterated function systems" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 33 -, year = 1992 -, pages = "287--305" -, update = "98.11 bibrelex" +, author = "S. W. Bova and G. F. Carey" +, title = "Mesh generation/refinement using fractal concepts and iterated function systems" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 33 +, year = 1992 +, pages = "287--305" +, update = "98.11 bibrelex" } @article{b-cdt-81 -, author = "A. Bowyer" -, title = "Computing {Dirichlet} Tessellations" -, journal = "Comput. J." -, volume = 24 -, year = 1981 -, pages = "162--166" +, author = "A. Bowyer" +, title = "Computing {Dirichlet} Tessellations" +, journal = "Comput. J." +, volume = 24 +, year = 1981 +, pages = "162--166" } @techreport{b-mpump-85 -, author = "A. Bowyer" -, title = "Matching patterns using a modified procrustean algorithm" -, type = "Report" -, number = "??" -, institution = "School Engrg., Univ. Bath" -, address = "Bath, England" -, year = 1985 +, author = "A. Bowyer" +, title = "Matching patterns using a modified procrustean algorithm" +, type = "Report" +, number = "??" +, institution = "School Engrg., Univ. Bath" +, address = "Bath, England" +, year = 1985 } @book{bw-pg-83 -, author = "A. Bowyer and J. R. Woodwork" -, title = "A programmer's geometry" -, publisher = "Butterworths" -, year = 1983 -, update = "98.07 bibrelex, 95.05 korneenko" +, author = "A. Bowyer and J. R. Woodwork" +, title = "A programmer's geometry" +, publisher = "Butterworths" +, year = 1983 +, update = "98.07 bibrelex, 95.05 korneenko" } @article{bd-agisr-90 -, author = "K. W. Bowyer and C. R. Dyer" -, title = "Aspect graphs: {An} introduction and survey of recent results" -, journal = "Int. J. of Imaging Systems and Technology" -, volume = 2 -, year = 1990 -, pages = "315--328" -, update = "98.03 agarwal" +, author = "K. W. Bowyer and C. R. Dyer" +, title = "Aspect graphs: {An} introduction and survey of recent results" +, journal = "Int. J. of Imaging Systems and Technology" +, volume = 2 +, year = 1990 +, pages = "315--328" +, update = "98.03 agarwal" } @article{bm-pccma-89 -, author = "L. Boxer and R. Miller" -, title = "A parallel circle-cover minimization algorithm" -, journal = "Inform. Process. Lett." -, volume = 32 -, number = 2 -, year = 1989 -, pages = "57--60" -, keywords = "parallel computations, circles, covering, optimization" -, update = "95.05 korneenko" +, author = "L. Boxer and R. Miller" +, title = "A parallel circle-cover minimization algorithm" +, journal = "Inform. Process. Lett." +, volume = 32 +, number = 2 +, year = 1989 +, pages = "57--60" +, keywords = "parallel computations, circles, covering, optimization" +, update = "95.05 korneenko" } @article{bm-cip-90 -, author = "L. Boxer and R. Miller" -, title = "Common intersection of polygons" -, journal = "Inform. Process. Lett." -, volume = 33 -, number = 5 -, year = 1990 -, pages = "249--254" -, keywords = "convex polygons, intersection, parallel computations" -, update = "95.05 korneenko" +, author = "L. Boxer and R. Miller" +, title = "Common intersection of polygons" +, journal = "Inform. Process. Lett." +, volume = 33 +, number = 5 +, year = 1990 +, pages = "249--254" +, keywords = "convex polygons, intersection, parallel computations" +, update = "95.05 korneenko" } @article{bm-ccipi-90 -, author = "L. Boxer and R. Miller" -, title = "Corrigenda ``{Common} intersections of polygons, {Inf}.{Proc}.{Lett}. 33(1990) 249-254''" -, journal = "Inform. Process. Lett." -, volume = 35 -, number = 1 -, year = 1990 -, pages = 53 -, keywords = "convex polygons, intersection, parallel computations" -, update = "95.05 korneenko" +, author = "L. Boxer and R. Miller" +, title = "Corrigenda ``{Common} intersections of polygons, {Inf}.{Proc}.{Lett}. 33(1990) 249-254''" +, journal = "Inform. Process. Lett." +, volume = 35 +, number = 1 +, year = 1990 +, pages = 53 +, keywords = "convex polygons, intersection, parallel computations" +, update = "95.05 korneenko" } @inproceedings{bm-dcgmh-88 -, author = "L. Boxer and R. Miller" -, title = "Dynamic computational geometry on meshes and hypercubes" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, volume = 1 -, year = 1988 -, pages = "323--330" -, keywords = "parallel computation, proximity, intersection, convex hull, diameter, containment" -, update = "95.05 korneenko" +, author = "L. Boxer and R. Miller" +, title = "Dynamic computational geometry on meshes and hypercubes" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, volume = 1 +, year = 1988 +, pages = "323--330" +, keywords = "parallel computation, proximity, intersection, convex hull, diameter, containment" +, update = "95.05 korneenko" } @inproceedings{bm-dcgpc-88 -, author = "L. Boxer and R. Miller" -, title = "Dynamic computational geometry on parallel computers" -, booktitle = "Proc. Conf. Hypercube Concurr. Comput. Appl., Pasadena" -, publisher = "ACM Press" -, year = 1988 -, pages = "1212--1219" -, keywords = "parallel computation" -, update = "95.05 korneenko" +, author = "L. Boxer and R. Miller" +, title = "Dynamic computational geometry on parallel computers" +, booktitle = "Proc. Conf. Hypercube Concurr. Comput. Appl., Pasadena" +, publisher = "ACM Press" +, year = 1988 +, pages = "1212--1219" +, keywords = "parallel computation" +, update = "95.05 korneenko" } @techreport{bm-pdcg-87 -, author = "L. Boxer and R. Miller" -, title = "Parallel dynamic computational geometry" -, type = "Report" -, number = "87-11" -, institution = "Dept. Comput. Sci., SUNY-Buffalo" -, year = 1987 -, update = "96.09 orourke" +, author = "L. Boxer and R. Miller" +, title = "Parallel dynamic computational geometry" +, type = "Report" +, number = "87-11" +, institution = "Dept. Comput. Sci., SUNY-Buffalo" +, year = 1987 +, update = "96.09 orourke" } @article{bm-pdcg-89 -, author = "L. Boxer and R. Miller" -, title = "Parallel dynamic computational geometry" -, journal = "J. New Generation Comput. Syst." -, volume = 2 -, number = 3 -, year = 1989 -, pages = "227--246" -, keywords = "parallel computation" -, update = "95.05 korneenko" +, author = "L. Boxer and R. Miller" +, title = "Parallel dynamic computational geometry" +, journal = "J. New Generation Comput. Syst." +, volume = 2 +, number = 3 +, year = 1989 +, pages = "227--246" +, keywords = "parallel computation" +, update = "95.05 korneenko" } @inproceedings{bddg-fep-82 -, author = "J. E. Boyce and D. P. Dobkin and R. L. {Drysdale, III} and Leonidas J. Guibas" -, title = "Finding extremal polygons" -, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." -, year = 1982 -, pages = "282--289" -, keywords = "polygons, maximum, dynamic programming" -, precedes = "bddg-fep-85" -, update = "98.03 mitchell" +, author = "J. E. Boyce and D. P. Dobkin and R. L. {Drysdale, III} and Leonidas J. Guibas" +, title = "Finding extremal polygons" +, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." +, year = 1982 +, pages = "282--289" +, keywords = "polygons, maximum, dynamic programming" +, precedes = "bddg-fep-85" +, update = "98.03 mitchell" } @article{bddg-fep-85 -, author = "J. E. Boyce and D. P. Dobkin and R. L. {Drysdale, III} and Leonidas J. Guibas" -, title = "Finding extremal polygons" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "134--147" -, keywords = "polygons, maximum, dynamic programming" -, succeeds = "bddg-fep-82" -, update = "98.03 mitchell" +, author = "J. E. Boyce and D. P. Dobkin and R. L. {Drysdale, III} and Leonidas J. Guibas" +, title = "Finding extremal polygons" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "134--147" +, keywords = "polygons, maximum, dynamic programming" +, succeeds = "bddg-fep-82" +, update = "98.03 mitchell" } @article{b-ipfst-77 -, author = "W. M. Boyce" -, title = "An improved program for the full {Steiner} tree problem" -, journal = "ACM Trans. Math. Softw." -, volume = 3 -, year = 1977 -, pages = "359--385" +, author = "W. M. Boyce" +, title = "An improved program for the full {Steiner} tree problem" +, journal = "ACM Trans. Math. Softw." +, volume = 3 +, year = 1977 +, pages = "359--385" } @techreport{bs-s72iv-73 -, author = "W. M. Boyce and J. E. Seery" -, title = "{STEINER} 72: {An} improved version of {Cockayne} and {Schiller}'s program {STEINER} for the minimal network problem" -, type = "Report" -, number = 35 -, institution = "Comput. Sci. Center, Bell Lab." -, address = "Murray Hill, NJ" -, year = 1973 +, author = "W. M. Boyce and J. E. Seery" +, title = "{STEINER} 72: {An} improved version of {Cockayne} and {Schiller}'s program {STEINER} for the minimal network problem" +, type = "Report" +, number = 35 +, institution = "Comput. Sci. Center, Bell Lab." +, address = "Murray Hill, NJ" +, year = 1973 } @incollection{b-amm-90 -, author = "D. B. Boyd" -, title = "Aspects of molecular modeling" -, editor = "K. Lipkowitz and D. B. Boyd" -, booktitle = "Reviews in Computational Chemistry" -, volume = 1 -, publisher = "VCH Publishers" -, year = 1990 -, pages = "321--351" -, update = "98.07 bibrelex" +, author = "D. B. Boyd" +, title = "Aspects of molecular modeling" +, editor = "K. Lipkowitz and D. B. Boyd" +, booktitle = "Reviews in Computational Chemistry" +, volume = 1 +, publisher = "VCH Publishers" +, year = 1990 +, pages = "321--351" +, update = "98.07 bibrelex" } @inproceedings{bp-ri-01 -, author = "Edmond Boyer and Sylvain Petitjean" -, title = "Regular Interpolants" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "125--128" -, update = "01.04 icking" +, author = "Edmond Boyer and Sylvain Petitjean" +, title = "Regular Interpolants" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "125--128" +, update = "01.04 icking" } @article{bp-adiic-76 -, author = "M. Boyer and L. Paquette" -, title = "An algorithm to decide if the intersection of convex polyhedral cones has a non empty interior" -, journal = "BIT" -, volume = 16 -, year = 1976 -, pages = "459--461" +, author = "M. Boyer and L. Paquette" +, title = "An algorithm to decide if the intersection of convex polyhedral cones has a non empty interior" +, journal = "BIT" +, volume = 16 +, year = 1976 +, pages = "459--461" } @article{bs-iftmo-92 -, author = "M. Boyer and N. F. Stewart" -, title = "Imperfect-form tolerancing on manifold objects: a metric approach" -, journal = "Internat. J. Robot. Res." -, volume = 11 -, number = 5 -, year = 1992 -, pages = "482--490" -, update = "98.07 bibrelex" +, author = "M. Boyer and N. F. Stewart" +, title = "Imperfect-form tolerancing on manifold objects: a metric approach" +, journal = "Internat. J. Robot. Res." +, volume = 11 +, number = 5 +, year = 1992 +, pages = "482--490" +, update = "98.07 bibrelex" } @article{bs-msto-91 -, author = "M. Boyer and N. F. Stewart" -, title = "Modeling spaces for toleranced objects" -, journal = "Internat. J. Robot. Res." -, volume = 10 -, number = 5 -, year = 1991 -, pages = "570--582" -, update = "98.07 bibrelex" +, author = "M. Boyer and N. F. Stewart" +, title = "Modeling spaces for toleranced objects" +, journal = "Internat. J. Robot. Res." +, volume = 10 +, number = 5 +, year = 1991 +, pages = "570--582" +, update = "98.07 bibrelex" } @book{b-hjfd-89 -, title = "Handbook of Jig and Fixture Design" -, editor = "W. Boyes" -, edition = "2nd" -, publisher = "Society of Manufacturing Engineers" -, year = 1989 -, update = "98.03 bibrelex" +, title = "Handbook of Jig and Fixture Design" +, editor = "W. Boyes" +, edition = "2nd" +, publisher = "Society of Manufacturing Engineers" +, year = 1989 +, update = "98.03 bibrelex" } @article{b-idss-79 -, author = "J. W. Boyse" -, title = "Interference detection among solids and surfaces" -, journal = "Commun. ACM" -, volume = 22 -, year = 1979 -, pages = "3--9" +, author = "J. W. Boyse" +, title = "Interference detection among solids and surfaces" +, journal = "Commun. ACM" +, volume = 22 +, year = 1979 +, pages = "3--9" } @article{bg-gimha-84 -, author = "J. W. Boyse and J. E. Gilchrist" -, title = "GMSOLID interactive modeling for hull algorithms" -, journal = "BYTE" -, volume = "??" -, year = 1984 -, pages = "2--13" -, update = "98.03 bibrelex" +, author = "J. W. Boyse and J. E. Gilchrist" +, title = "GMSOLID interactive modeling for hull algorithms" +, journal = "BYTE" +, volume = "??" +, year = 1984 +, pages = "2--13" +, update = "98.03 bibrelex" } @unpublished{bkmt-nriqp-96 -, author = "P. Bozanis and N. Ktsios and C. Makris and A. Tsakalidis" -, title = "New results on intersection query problems" -, year = 1996 -, note = "unpublished manuscript" -, update = "97.07 agarwal" +, author = "P. Bozanis and N. Ktsios and C. Makris and A. Tsakalidis" +, title = "New results on intersection query problems" +, year = 1996 +, note = "unpublished manuscript" +, update = "97.07 agarwal" } @inproceedings{bkmt-nubgi-95 -, author = "P. Bozanis and N. Ktsios and C. Makris and A. Tsakalidis" -, title = "New upper bounds for generalized intersection searching problems" -, booktitle = "Proc. 22nd Inter. Colloq. Auto. Lang. and Program." -, series = "Lecture Notes Comput. Sci." -, volume = 944 -, year = 1995 -, pages = "464--475" -, update = "97.07 agarwal" +, author = "P. Bozanis and N. Ktsios and C. Makris and A. Tsakalidis" +, title = "New upper bounds for generalized intersection searching problems" +, booktitle = "Proc. 22nd Inter. Colloq. Auto. Lang. and Program." +, series = "Lecture Notes Comput. Sci." +, volume = 944 +, year = 1995 +, pages = "464--475" +, update = "97.07 agarwal" } @inproceedings{bs-vasoq-00 -, author = "Franti{\v s}ek Brabec and Hanan Samet" -, title = "Visualizing and Animating Search Operations on Quadtrees on the Worldwide Web" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "70--76" -, update = "00.03 bibrelex" +, author = "Franti{\v s}ek Brabec and Hanan Samet" +, title = "Visualizing and Animating Search Operations on Quadtrees on the Worldwide Web" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "70--76" +, update = "00.03 bibrelex" } @techreport{bc-wenph-95 -, author = "P. G. Bradford and V. Capoyleas" -, title = "Weak $\epsilon$-nets for points on a hypersphere" -, type = "Report" -, number = "MPI-I-95-1-029" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1995 -, precedes = "bc-wenph-97" -, update = "98.07 smid, 96.01 smid" +, author = "P. G. Bradford and V. Capoyleas" +, title = "Weak $\epsilon$-nets for points on a hypersphere" +, type = "Report" +, number = "MPI-I-95-1-029" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1995 +, precedes = "bc-wenph-97" +, update = "98.07 smid, 96.01 smid" } @article{bc-wenph-97 -, author = "P. G. Bradford and V. Capoyleas" -, title = "Weak $\epsilon$-nets for points on a hypersphere" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "83--91" -, succeeds = "bc-wenph-95" -, update = "98.07 smid" +, author = "P. G. Bradford and V. Capoyleas" +, title = "Weak $\epsilon$-nets for points on a hypersphere" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "83--91" +, succeeds = "bc-wenph-95" +, update = "98.07 smid" } @techreport{bfs-ptowp-95 -, author = "P. G. Bradford and R. Fleischer and M. Smid" -, title = "A polylog-time and $O(n \sqrt{\lg n})$-work parallel algorithm for finding the row minima in totally monotone matrices" -, type = "Report" -, number = "MPI-I-95-1-006" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1995 -, precedes = "bfs-meptm-97" -, update = "97.07 smid, 95.05 smid" +, author = "P. G. Bradford and R. Fleischer and M. Smid" +, title = "A polylog-time and $O(n \sqrt{\lg n})$-work parallel algorithm for finding the row minima in totally monotone matrices" +, type = "Report" +, number = "MPI-I-95-1-006" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1995 +, precedes = "bfs-meptm-97" +, update = "97.07 smid, 95.05 smid" } @article{bfs-meptm-97 -, author = "P. G. Bradford and R. Fleischer and M. Smid" -, title = "More efficient parallel totally monotone matrix searching" -, journal = "J. Algorithms" -, volume = 23 -, year = 1997 -, pages = "386--400" -, succeeds = "bfs-ptowp-95" -, update = "97.07 smid" +, author = "P. G. Bradford and R. Fleischer and M. Smid" +, title = "More efficient parallel totally monotone matrix searching" +, journal = "J. Algorithms" +, volume = 23 +, year = 1997 +, pages = "386--400" +, succeeds = "bfs-ptowp-95" +, update = "97.07 smid" } @book{b-rmpc-82 -, title = "Robot Motion: Planning and Control" -, editor = "M. Brady" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1982 -, update = "97.11 bibrelex" +, title = "Robot Motion: Planning and Control" +, editor = "M. Brady" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1982 +, update = "97.11 bibrelex" } @incollection{bb-vrfls-84 -, author = "M. L. Brady and D. J. Brown" -, title = "VLSI Routing: {Four} Layers Suffice" -, editor = "Franco P. Preparata" -, booktitle = "VLSI Theory" -, series = "Adv. Comput. Res." -, volume = 2 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1984 -, pages = "245--257" -, update = "01.04 icking, 98.03 bibrelex" +, author = "M. L. Brady and D. J. Brown" +, title = "VLSI Routing: {Four} Layers Suffice" +, editor = "Franco P. Preparata" +, booktitle = "VLSI Theory" +, series = "Adv. Comput. Res." +, volume = 2 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1984 +, pages = "245--257" +, update = "01.04 icking, 98.03 bibrelex" } @article{b-sctdm-22 -, author = "H. R. Brahana" -, title = "Systems of circuits on Two-dimensional manifolds" -, journal = "Annals of Math." -, volume = 23 -, year = 1922 -, pages = "144--168" -, update = "97.11 bibrelex" +, author = "H. R. Brahana" +, title = "Systems of circuits on Two-dimensional manifolds" +, journal = "Annals of Math." +, volume = 23 +, year = 1922 +, pages = "144--168" +, update = "97.11 bibrelex" } @techreport{b-ngm-79 -, author = "I. C. Braid" -, title = "Notes on a geometric modeller" -, type = "{CAD} {Group} {Document}" -, number = 101 -, institution = "Comput. Lab., Cambridge Univ." -, address = "Cambridge, England" -, year = 1979 +, author = "I. C. Braid" +, title = "Notes on a geometric modeller" +, type = "{CAD} {Group} {Document}" +, number = 101 +, institution = "Comput. Lab., Cambridge Univ." +, address = "Cambridge, England" +, year = 1979 } @article{b-ssbmf-75 -, author = "I. C. Braid" -, title = "The synthesis of solids bounded by many faces" -, journal = "Commun. ACM" -, volume = 18 -, number = 4 -, year = 1975 -, pages = "209--216" +, author = "I. C. Braid" +, title = "The synthesis of solids bounded by many faces" +, journal = "Commun. ACM" +, volume = 18 +, number = 4 +, year = 1975 +, pages = "209--216" } @incollection{bhs-swcpg-80 -, author = "I. C. Braid and R. C. Hillyard and I. A. Stroud" -, title = "Step-wise construction of polyhedra in geometric modeling" -, editor = "K. W. Brodlie" -, booktitle = "Mathematical Methods in Computer Graphics and Design" -, publisher = "Academic Press" -, address = "London, England" -, year = 1980 -, pages = "123--141" -, keywords = "polyhedra, geometric modeling" -, update = "97.11 bibrelex, 95.05 korneenko" +, author = "I. C. Braid and R. C. Hillyard and I. A. Stroud" +, title = "Step-wise construction of polyhedra in geometric modeling" +, editor = "K. W. Brodlie" +, booktitle = "Mathematical Methods in Computer Graphics and Design" +, publisher = "Academic Press" +, address = "London, England" +, year = 1980 +, pages = "123--141" +, keywords = "polyhedra, geometric modeling" +, update = "97.11 bibrelex, 95.05 korneenko" } @inproceedings{b-dgdlg-95 -, author = "F. J. Brandenburg" -, title = "Designing Graph Drawings by Layout Graph Grammars" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "416--427" -, keywords = "graph drawing, grammar" -, update = "95.01 tamassia" +, author = "F. J. Brandenburg" +, title = "Designing Graph Drawings by Layout Graph Grammars" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "416--427" +, keywords = "graph drawing, grammar" +, update = "95.01 tamassia" } @inproceedings{b-gc1cc-97 -, author = "F. J. Brandenburg" -, title = "Graph Clustering {I}: Cycles of Cliques" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "158--168" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "F. J. Brandenburg" +, title = "Graph Clustering {I}: Cycles of Cliques" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "158--168" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @proceedings{b-gd-96 -, title = "Graph Drawing (Proc. GD '95)" -, editor = "F. J. Brandenburg" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, keywords = "graph drawing" -, update = "98.11 bibrelex, 98.07 bibrelex+vismara, 96.09 tamassia" +, title = "Graph Drawing (Proc. GD '95)" +, editor = "F. J. Brandenburg" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, keywords = "graph drawing" +, update = "98.11 bibrelex, 98.07 bibrelex+vismara, 96.09 tamassia" } @techreport{b-ndgta-88 -, author = "F. J. Brandenburg" -, title = "Nice Drawings of Graphs and Trees are Computationally Hard" -, number = "MIP-8820" -, institution = "Fakultat fur Mathematik und Informatik, Univ. Passau" -, year = 1988 -, keywords = "graph drawing" -, update = "95.01 tamassia, 93.09 tamassia" +, author = "F. J. Brandenburg" +, title = "Nice Drawings of Graphs and Trees are Computationally Hard" +, number = "MIP-8820" +, institution = "Fakultat fur Mathematik und Informatik, Univ. Passau" +, year = 1988 +, keywords = "graph drawing" +, update = "95.01 tamassia, 93.09 tamassia" } @inproceedings{bhr-ecfdr-96 -, author = "Franz J. Brandenburg and M. Himsolt and Christoph Rohrer" -, title = "An Experimental Comparison of Force-Directed and Randomized Graph Drawing Algorithms" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "76--87" -, keywords = "graph drawing, experiments, straight-line" -, update = "98.07 vismara, 96.09 tamassia" +, author = "Franz J. Brandenburg and M. Himsolt and Christoph Rohrer" +, title = "An Experimental Comparison of Force-Directed and Randomized Graph Drawing Algorithms" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "76--87" +, keywords = "graph drawing, experiments, straight-line" +, update = "98.07 vismara, 96.09 tamassia" } @techreport{bh-ncrmp-96 -, author = "U. Brandes and D. Handke" -, title = "{NP}-completeness results for minimum planar spanners" -, type = "Technical Report" -, number = 16 -, institution = "Fakult{\"a}t f{\"u}r Mathematik und Informatik, Universit{\"a}t Konstanz" -, address = "Konstanz, Germany" -, year = 1996 -, update = "97.03 smid" +, author = "U. Brandes and D. Handke" +, title = "{NP}-completeness results for minimum planar spanners" +, type = "Technical Report" +, number = 16 +, institution = "Fakult{\"a}t f{\"u}r Mathematik und Informatik, Universit{\"a}t Konstanz" +, address = "Konstanz, Germany" +, year = 1996 +, update = "97.03 smid" } @inproceedings{bw-bpdgl-97 -, author = "Ulrik Brandes and Dorothea Wagner" -, title = "A Bayesian Paradigm for Dynamic Graph Layout" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "236--247" -, keywords = "graph drawing" -, update = "99.11 bibrelex, 98.07 patrignani+vismara" +, author = "Ulrik Brandes and Dorothea Wagner" +, title = "A Bayesian Paradigm for Dynamic Graph Layout" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "236--247" +, keywords = "graph drawing" +, update = "99.11 bibrelex, 98.07 patrignani+vismara" } @incollection{b-jnpbg-89 -, author = "A. Brandstadt" -, title = "The jump number problem for biconvex graphs and rectangle covers of rectangular regions" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 380 -, year = 1989 -, pages = "68--77" -, keywords = "isothetic, covering, rectangles" -, update = "95.05 korneenko" +, author = "A. Brandstadt" +, title = "The jump number problem for biconvex graphs and rectangle covers of rectangular regions" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 380 +, year = 1989 +, pages = "68--77" +, keywords = "isothetic, covering, rectangles" +, update = "95.05 korneenko" } @inproceedings{bcd-auhsm-95 -, author = "A. Brandst{\"a}dt and V. D. Chepoi and F. F. Dragan" -, title = "The algorithmic use of hypertree structure and maximum neighbourhood orderings" -, booktitle = "Proc. 20th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 903 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "65--80" -, update = "99.11 bibrelex, 98.07 bibrelex" +, author = "A. Brandst{\"a}dt and V. D. Chepoi and F. F. Dragan" +, title = "The algorithmic use of hypertree structure and maximum neighbourhood orderings" +, booktitle = "Proc. 20th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 903 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "65--80" +, update = "99.11 bibrelex, 98.07 bibrelex" } @article{b-cccda-94 -, author = "J. W. Brandt" -, title = "Convergence and continuity criteria for discrete approximations of the continuous planar skeletons" -, journal = "CVGIP: Image Understanding" -, volume = 59 -, number = 1 -, year = 1994 -, pages = "116--124" -, update = "98.07 bibrelex" +, author = "J. W. Brandt" +, title = "Convergence and continuity criteria for discrete approximations of the continuous planar skeletons" +, journal = "CVGIP: Image Understanding" +, volume = 59 +, number = 1 +, year = 1994 +, pages = "116--124" +, update = "98.07 bibrelex" } @inproceedings{ba-cscsd-91 -, author = "Jonathan W. Brandt and V. Ralph Algazi" -, title = "Computing a Stable, Connected Skeleton From Discrete Data" -, booktitle = "Proceedings of the 1991 IEEE Computer Society Conference on Computer Vision and Pattern Recognition" -, publisher = "IEEE" -, address = "IEEE Service Center, Piscataway, NJ, USA (IEEE cat n 91CH2983-5)" -, year = 1991 -, pages = "666--667" -, keywords = "Voronoi diagram" -, abstract = "The relationship between the skeleton and the Voronoi - diagram for the case of morphologically regular sets is - described. Using the discrete-point Voronoi diagram, a - practical algorithm is developed to compute an - approximate skeleton of a continuous shape from sampled - data. The analysis also yields a sampling criterion - under which the approximation is stable. The algorithm - is applied to a simple test image. 4 Refs." +, author = "Jonathan W. Brandt and V. Ralph Algazi" +, title = "Computing a Stable, Connected Skeleton From Discrete Data" +, booktitle = "Proceedings of the 1991 IEEE Computer Society Conference on Computer Vision and Pattern Recognition" +, publisher = "IEEE" +, address = "IEEE Service Center, Piscataway, NJ, USA (IEEE cat n 91CH2983-5)" +, year = 1991 +, pages = "666--667" +, keywords = "Voronoi diagram" +, abstract = "The relationship between the skeleton and the Voronoi + diagram for the case of morphologically regular sets is + described. Using the discrete-point Voronoi diagram, a + practical algorithm is developed to compute an + approximate skeleton of a continuous shape from sampled + data. The analysis also yields a sampling criterion + under which the approximation is stable. The algorithm + is applied to a simple test image. 4 Refs." } @article{ba-cscvd-92 -, author = "J. W. Brandt and V. R. Algazi" -, title = "Continuous Skeleton Computation by {Voronoi} Diagram" -, journal = "CVGIP: Image Understanding" -, volume = 55 -, number = 3 -, year = 1992 -, pages = "329--338" +, author = "J. W. Brandt and V. R. Algazi" +, title = "Continuous Skeleton Computation by {Voronoi} Diagram" +, journal = "CVGIP: Image Understanding" +, volume = 55 +, number = 3 +, year = 1992 +, pages = "329--338" } @inproceedings{b-albhp-01 -, author = "Peter Bra{\ss}" -, title = "Another Lower Bound for {Hopcroft's} Problem" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "70--73" -, update = "01.04 icking" +, author = "Peter Bra{\ss}" +, title = "Another Lower Bound for {Hopcroft's} Problem" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "70--73" +, update = "01.04 icking" } @article{b-edpns-96 -, author = "P. Brass" -, title = "Erd{\H o}s distance problems in normed spaces" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "195--214" -, update = "96.09 devillers" +, author = "P. Brass" +, title = "Erd{\H o}s distance problems in normed spaces" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "195--214" +, update = "96.09 devillers" } @inproceedings{b-aps-00 -, author = "Peter Brass" -, title = "On the Approximation of Polygons by Subpolygons" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "59--61" -, update = "00.03 bibrelex" +, author = "Peter Brass" +, title = "On the Approximation of Polygons by Subpolygons" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "59--61" +, update = "00.03 bibrelex" } @inproceedings{bk-tcddp-00a -, author = "Peter Bra{\ss} and Christian Knauer" -, title = "Testing the Congruence of $d$-Dimensional Point Sets" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "310--314" -, update = "00.11 jones" +, author = "Peter Bra{\ss} and Christian Knauer" +, title = "Testing the Congruence of $d$-Dimensional Point Sets" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "310--314" +, update = "00.11 jones" } @inproceedings{bk-tcddp-00e -, author = "Peter Bra{\ss} and Christian Knauer" -, title = "Testing the Congruence of {$d$}-Dimensional Point Sets" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "104--107" -, update = "00.03 bibrelex" +, author = "Peter Bra{\ss} and Christian Knauer" +, title = "Testing the Congruence of {$d$}-Dimensional Point Sets" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "104--107" +, update = "00.03 bibrelex" } @book{bb-atp-88 -, author = "G. Brassard and P. Bratley" -, title = "Algorithmics: Theory and Practice" -, publisher = "Prentice Hall" -, address = "Enlewood Cliffs, NJ" -, year = 1988 -, update = "98.07 bibrelex" +, author = "G. Brassard and P. Bratley" +, title = "Algorithmics: Theory and Practice" +, publisher = "Prentice Hall" +, address = "Enlewood Cliffs, NJ" +, year = 1988 +, update = "98.07 bibrelex" } @article{bf-asrvd-79 -, author = "K. E. Brassel and R. Fegeas" -, title = "An algorithm for shading of regions on vector display devices" -, journal = "Comput. Graph." -, volume = 13 -, number = 2 -, year = 1979 -, pages = "126--133" -, note = "Proc. SIGGRAPH '79" +, author = "K. E. Brassel and R. Fegeas" +, title = "An algorithm for shading of regions on vector display devices" +, journal = "Comput. Graph." +, volume = 13 +, number = 2 +, year = 1979 +, pages = "126--133" +, note = "Proc. SIGGRAPH '79" } @article{br-pgtp-79 -, author = "K. E. Brassel and D. Reif" -, title = "A procedure to generate {Thiessen} polygons" -, journal = "Geogr. Anal." -, volume = 11 -, year = 1979 -, pages = "289--303" +, author = "K. E. Brassel and D. Reif" +, title = "A procedure to generate {Thiessen} polygons" +, journal = "Geogr. Anal." +, volume = 11 +, year = 1979 +, pages = "289--303" } @article{bw-arfam-88 -, author = "K. E. Brassel and R. Weibel" -, title = "A review and framework of automated map generalization" -, journal = "Intl. J. Geographic. Info. Systems" -, volume = 2 -, number = 3 -, year = 1988 -, pages = "229--244" -, update = "98.03 agarwal" +, author = "K. E. Brassel and R. Weibel" +, title = "A review and framework of automated map generalization" +, journal = "Intl. J. Geographic. Info. Systems" +, volume = 2 +, number = 3 +, year = 1988 +, pages = "229--244" +, update = "98.03 agarwal" } @article{bs-nmpde-95 -, author = "J. Braun and M. Sambridge" -, title = "A numerical method for solving partial differential equations on highly irregular evolving grids" -, journal = "Nature" -, volume = 376 -, year = 1995 -, pages = "655--660" -, keywords = "Delaunay remeshing, finite element, natural neighbours" -, update = "95.09 sambridge" -, annote = "Lagrangian PDE solver using Delaunay remeshing and +, author = "J. Braun and M. Sambridge" +, title = "A numerical method for solving partial differential equations on highly irregular evolving grids" +, journal = "Nature" +, volume = 376 +, year = 1995 +, pages = "655--660" +, keywords = "Delaunay remeshing, finite element, natural neighbours" +, update = "95.09 sambridge" +, annote = "Lagrangian PDE solver using Delaunay remeshing and natural neighbour interpolation. Able to solve problems mixing fluids and solids on dynamically evolving grids without remeshing." } @article{bs-dlrna-94 -, author = "J. Braun and M. S. Sambridge" -, title = "Dynamical {Lagrangian} Remeshing (DLR): A new algorithm for solving large strain deformation problems and its application to fault-propagation folding" -, journal = "Earth and Planet. Sci. Lett." -, volume = 124 -, year = 1994 -, pages = "211--220" -, keywords = "Delaunay remeshing, finite element" -, update = "94.09 sambridge" +, author = "J. Braun and M. S. Sambridge" +, title = "Dynamical {Lagrangian} Remeshing (DLR): A new algorithm for solving large strain deformation problems and its application to fault-propagation folding" +, journal = "Earth and Planet. Sci. Lett." +, volume = 124 +, year = 1994 +, pages = "211--220" +, keywords = "Delaunay remeshing, finite element" +, update = "94.09 sambridge" } @article{b-cvdks-82 -, author = "M. Breen" -, title = "Clear visibility and the dimension of kernels of starshaped sets" -, journal = "Proc. Amer. Math. Soc." -, volume = 85 -, year = 1982 -, pages = "414--418" -, update = "98.07 bibrelex" +, author = "M. Breen" +, title = "Clear visibility and the dimension of kernels of starshaped sets" +, journal = "Proc. Amer. Math. Soc." +, volume = 85 +, year = 1982 +, pages = "414--418" +, update = "98.07 bibrelex" } @article{b-iubr-92 -, author = "M. Breen" -, title = "Illumination for unions of boxes in {$R^d$}" -, journal = "Proc. Amer. Math. Soc." -, volume = 116 -, number = 1 -, year = 1992 -, pages = "197--202" -, keywords = "illumination, visibility, Helly" +, author = "M. Breen" +, title = "Illumination for unions of boxes in {$R^d$}" +, journal = "Proc. Amer. Math. Soc." +, volume = 116 +, number = 1 +, year = 1992 +, pages = "197--202" +, keywords = "illumination, visibility, Helly" } @article{b-kpccu-88 -, author = "M. Breen" -, title = "$K$-partitions and a characterization for compact unions of $k$ starshaped sets" -, journal = "Proc. Amer. Math. Soc." -, volume = 102 -, number = 3 -, year = 1988 -, pages = "677--680" -, keywords = "starshaped" -, update = "95.05 korneenko" +, author = "M. Breen" +, title = "$K$-partitions and a characterization for compact unions of $k$ starshaped sets" +, journal = "Proc. Amer. Math. Soc." +, volume = 102 +, number = 3 +, year = 1988 +, pages = "677--680" +, keywords = "starshaped" +, update = "95.05 korneenko" } @article{bk-gdtmc-76 -, author = "M. Breen and D. C. Kay" -, title = "General decomposition theorems for $m$-convex sets in the plane" -, journal = "Israel J. Math." -, volume = 24 -, year = 1976 -, pages = "217--233" -, update = "98.03 bibrelex" +, author = "M. Breen and D. C. Kay" +, title = "General decomposition theorems for $m$-convex sets in the plane" +, journal = "Israel J. Math." +, volume = 24 +, year = 1976 +, pages = "217--233" +, update = "98.03 bibrelex" } @article{bk-sapsr-82 -, author = "U. Brehm and W. K{\"u}hnel" -, title = "Smooth approximation of polyhedral surfaces regarding curvatures" -, journal = "Geom. Dedicata" -, volume = 12 -, year = 1982 -, pages = "435--461" +, author = "U. Brehm and W. K{\"u}hnel" +, title = "Smooth approximation of polyhedral surfaces regarding curvatures" +, journal = "Geom. Dedicata" +, volume = 12 +, year = 1982 +, pages = "435--461" } @incollection{bs-pm-97 -, author = "U. Brehm and E. Schulte" -, title = "Polyhedral maps" -, chapter = 18 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "345--360" -, update = "97.11 orourke" +, author = "U. Brehm and E. Schulte" +, title = "Polyhedral maps" +, chapter = 18 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "345--360" +, update = "97.11 orourke" } @incollection{bw-pm-93 -, author = "U. Brehm and J. M. Wills" -, title = "Polyhedral Manifolds" -, editor = "P. M. Gruber and J. M. Wills" -, booktitle = "Handbook of Convex Geometry" -, publisher = "North-Holland" -, year = 1993 -, update = "99.11 bibrelex, 96.09 orourke" +, author = "U. Brehm and J. M. Wills" +, title = "Polyhedral Manifolds" +, editor = "P. M. Gruber and J. M. Wills" +, booktitle = "Handbook of Convex Geometry" +, publisher = "North-Holland" +, year = 1993 +, update = "99.11 bibrelex, 96.09 orourke" } @book{bfos-crt-84 -, author = "L. Breiman and J. Friedman and R. Olshen and C. Stone" -, title = "Classification and Regression Trees" -, publisher = "Wadsworth International Group" -, year = 1984 -, update = "95.05 agarwal" +, author = "L. Breiman and J. Friedman and R. Olshen and C. Stone" +, title = "Classification and Regression Trees" +, publisher = "Wadsworth International Group" +, year = 1984 +, update = "95.05 agarwal" } @techreport{bs-parpv-92 -, author = "David Bremmer and Thomas Shermer" -, title = "Properties and applications of restricted-orientation point visibility graphs" -, type = "manuscript" -, institution = "School of Computing Science, Simon Fraser University" -, year = 1992 -, update = "98.11 bibrelex" +, author = "David Bremmer and Thomas Shermer" +, title = "Properties and applications of restricted-orientation point visibility graphs" +, type = "manuscript" +, institution = "School of Computing Science, Simon Fraser University" +, year = 1992 +, update = "98.11 bibrelex" } @inproceedings{b-l2cof-94 -, author = "D. Bremner" -, title = "Link-$2$-Convex One-Fillable Polygons are Starshaped" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "363--368" -, cites = "bt-gcaim-92, b-pvgro-93, bs-pvgro-93, cr-occop-89a, k-mchco-86, mrs-pgocc-89, r-erog-87, rw-rocs-91, mrs-copsp-89, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "D. Bremner" +, title = "Link-$2$-Convex One-Fillable Polygons are Starshaped" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "363--368" +, cites = "bt-gcaim-92, b-pvgro-93, bs-pvgro-93, cr-occop-89a, k-mchco-86, mrs-pgocc-89, r-erog-87, rw-rocs-91, mrs-copsp-89, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @mastersthesis{b-pvgro-93 -, author = "David Bremner" -, title = "Point Visibility Graphs and Restricted-Orientation Polygon Covering" -, type = "M.{Sc}. Thesis" -, school = "School of Computing Science, Simon Fraser University" -, address = "Burnaby, BC" -, month = apr -, year = 1993 -, keywords = "master thesis" -, update = "94.05 bremner" +, author = "David Bremner" +, title = "Point Visibility Graphs and Restricted-Orientation Polygon Covering" +, type = "M.{Sc}. Thesis" +, school = "School of Computing Science, Simon Fraser University" +, address = "Burnaby, BC" +, month = apr +, year = 1993 +, keywords = "master thesis" +, update = "94.05 bremner" } @inproceedings{bfm-pdmvf-97 -, author = "D. Bremner and K. Fukuda and M. Marzetta" -, title = "Primal-Dual Methods for Vertex and Facet Enumeration" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "49--56" -, cites = "af-pachv-92, b-icp-83, bmfn-psbzi-, ck-acp-70, c-lp-83, c-mosga-94, d-cvem-83, e-dum-91, flm-abalv-97, gk-csbpc-94, ic-lp-94, m-mnfcp-70, m-mdscg-84, s-ossac-86, s-fchff-85, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "D. Bremner and K. Fukuda and M. Marzetta" +, title = "Primal-Dual Methods for Vertex and Facet Enumeration" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "49--56" +, cites = "af-pachv-92, b-icp-83, bmfn-psbzi-, ck-acp-70, c-lp-83, c-mosga-94, d-cvem-83, e-dum-91, flm-abalv-97, gk-csbpc-94, ic-lp-94, m-mnfcp-70, m-mdscg-84, s-ossac-86, s-fchff-85, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @unpublished{bos-mpams-94 -, author = "D. Bremner and J. O'Rourke and T. Shermer" -, title = "Motion planning amidst movable square blocks is {PSPACE} complete" -, year = 1994 -, note = "Draft, June" -, update = "94.09 orourke" +, author = "D. Bremner and J. O'Rourke and T. Shermer" +, title = "Motion planning amidst movable square blocks is {PSPACE} complete" +, year = 1994 +, note = "Draft, June" +, update = "94.09 orourke" } @techreport{bs-pvgro-93 -, author = "David Bremner and Thomas Shermer" -, title = "Point Visibility Graphs and Restricted-Oriention Convex Cover" -, type = "Technical Report" -, number = "CMPT TR 93-07" -, institution = "School of Computing Science, Simon Fraser University" -, year = 1993 -, update = "94.05 bremner" +, author = "David Bremner and Thomas Shermer" +, title = "Point Visibility Graphs and Restricted-Oriention Convex Cover" +, type = "Technical Report" +, number = "CMPT TR 93-07" +, institution = "School of Computing Science, Simon Fraser University" +, year = 1993 +, update = "94.05 bremner" } @phdthesis{b-afzef-71 -, author = "R. Brent" -, title = "Algorithms for finding zeros and extrema of functions without calculating derivatives" -, school = "Stanford University" -, address = "Stanford, CA" -, year = 1971 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "R. Brent" +, title = "Algorithms for finding zeros and extrema of functions without calculating derivatives" +, school = "Stanford University" +, address = "Stanford, CA" +, year = 1971 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @article{b-fmpee-76 -, author = "R. P. Brent" -, title = "Fast multiple-precision evaluation of elementary functions" -, journal = "J. ACM" -, volume = 23 -, year = 1976 -, pages = "242--251" -, update = "98.03 bibrelex" +, author = "R. P. Brent" +, title = "Fast multiple-precision evaluation of elementary functions" +, journal = "J. ACM" +, volume = 23 +, year = 1976 +, pages = "242--251" +, update = "98.03 bibrelex" } @article{b-pegae-74 -, author = "R. P. Brent" -, title = "The Parallel Evaluation of General Arithmetic Expressions" -, journal = "J. ACM" -, volume = 21 -, number = 2 -, year = 1974 -, pages = "201--206" -, update = "96.09 orourke" +, author = "R. P. Brent" +, title = "The Parallel Evaluation of General Arithmetic Expressions" +, journal = "J. ACM" +, volume = 21 +, number = 2 +, year = 1974 +, pages = "201--206" +, update = "96.09 orourke" } @article{bk-abtl-80 -, author = "R. P. Brent and H. T. Kung" -, title = "On the area of binary tree layouts" -, journal = "Inform. Process. Lett." -, volume = 11 -, year = 1980 -, pages = "521--534" -, keywords = "graph drawing" -, update = "94.01 tamassia" +, author = "R. P. Brent and H. T. Kung" +, title = "On the area of binary tree layouts" +, journal = "Inform. Process. Lett." +, volume = 11 +, year = 1980 +, pages = "521--534" +, keywords = "graph drawing" +, update = "94.01 tamassia" } @article{b-laidd-77 -, author = "J. E. Bresenham" -, title = "A linear algorithm for incremental digital display of circular arcs" -, journal = "Commun. ACM" -, volume = 20 -, year = 1977 -, pages = "100--106" +, author = "J. E. Bresenham" +, title = "A linear algorithm for incremental digital display of circular arcs" +, journal = "Commun. ACM" +, volume = 20 +, year = 1977 +, pages = "100--106" } @article{b-accdp-65 -, author = "J. E. Bresenham" -, title = "Algorithm for computer control of digital plotter" -, journal = "IBM Syst. J." -, volume = 4 -, year = 1965 -, pages = "25--30" +, author = "J. E. Bresenham" +, title = "Algorithm for computer control of digital plotter" +, journal = "IBM Syst. J." +, volume = 4 +, year = 1965 +, pages = "25--30" } @incollection{b-ailr-88 -, author = "J. E. Bresenham" -, title = "Ambiguities in incremental line rastering" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1988 -, pages = "329--358" -, update = "99.11 bibrelex" +, author = "J. E. Bresenham" +, title = "Ambiguities in incremental line rastering" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1988 +, pages = "329--358" +, update = "99.11 bibrelex" } @article{bgdw-ltedt-95 -, author = "H. Breu and J. Gil and D. Kirkpatrick and M. Werman" -, title = "Linear Time {Euclidean} Distance Transform and {Voronoi} Diagram Algorithms" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 17 -, year = 1995 -, pages = "529--533" -, update = "96.01 werman" +, author = "H. Breu and J. Gil and D. Kirkpatrick and M. Werman" +, title = "Linear Time {Euclidean} Distance Transform and {Voronoi} Diagram Algorithms" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 17 +, year = 1995 +, pages = "529--533" +, update = "96.01 werman" } @article{bk-udgrn-98 -, author = "H. Breu and D. G. Kirkpatrick" -, title = "Unit Disk Graph Recognition is {NP}-hard" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, number = "1--2" -, year = 1998 -, pages = "3--24" -, note = "(special issue on Geometric Representations of Graphs, edited by G. {Di Battista} and R. Tamassia)" -, keywords = "graph drawing, proximity, NP-hardness" -, update = "98.07 patrignani, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" +, author = "H. Breu and D. G. Kirkpatrick" +, title = "Unit Disk Graph Recognition is {NP}-hard" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, number = "1--2" +, year = 1998 +, pages = "3--24" +, note = "(special issue on Geometric Representations of Graphs, edited by G. {Di Battista} and R. Tamassia)" +, keywords = "graph drawing, proximity, NP-hardness" +, update = "98.07 patrignani, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" } @inproceedings{bbdltv-trodo-99 -, author = "Stina Bridgeman and Giuseppe Di Battista and Walter Didimo and Guiseppe Liotta and Roberto Tamassia and Luca Vismara" -, title = "Turn-Regularity and Optimal Drawings of Orthogonal Representations" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "161--164" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Stina Bridgeman and Giuseppe Di Battista and Walter Didimo and Guiseppe Liotta and Roberto Tamassia and Luca Vismara" +, title = "Turn-Regularity and Optimal Drawings of Orthogonal Representations" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "161--164" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{bddltv-ocor-98 -, author = "Stina Bridgeman and Giuseppe {Di Battista} and Walter Didimo and Giuseppe Liotta and Roberto Tamassia and Luca Vismara" -, title = "Optimal Compaction of Orthogonal Representations" -, booktitle = "CGC Workshop on Geometric Computing" -, year = 1998 -, url = "https://www.cs.brown.edu/cgc/cgc98/" -, keywords = "graph drawing, planar, orthogonal" -, update = "98.11 tamassia" +, author = "Stina Bridgeman and Giuseppe {Di Battista} and Walter Didimo and Giuseppe Liotta and Roberto Tamassia and Luca Vismara" +, title = "Optimal Compaction of Orthogonal Representations" +, booktitle = "CGC Workshop on Geometric Computing" +, year = 1998 +, url = "https://www.cs.brown.edu/cgc/cgc98/" +, keywords = "graph drawing, planar, orthogonal" +, update = "98.11 tamassia" } @article{bgt-gdtsw-99 -, author = "Stina Bridgeman and Ashim Garg and Roberto Tamassia" -, title = "A Graph Drawing and Translation Service on the {World Wide Web}" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, number = "4--5" -, year = 1999 -, pages = "419--446" -, keywords = "graph drawing, system" -, succeeds = "bgt-gdtsw-97" -, update = "00.03 vismara, 98.11 tamassia" +, author = "Stina Bridgeman and Ashim Garg and Roberto Tamassia" +, title = "A Graph Drawing and Translation Service on the {World Wide Web}" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, number = "4--5" +, year = 1999 +, pages = "419--446" +, keywords = "graph drawing, system" +, succeeds = "bgt-gdtsw-97" +, update = "00.03 vismara, 98.11 tamassia" } @inproceedings{bgt-gdtsw-97 -, author = "S. Bridgeman and A. Garg and R. Tamassia" -, title = "A Graph Drawing and Translation Service on the {WWW}" -, editor = "S. C. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "45--52" -, url = "https://www.cs.brown.edu/cgc/papers/bgt-gdtsw-97.ps.gz" -, keywords = "graph drawing, system, WWW, orthogonal, planarization, CGC, Brown" -, update = "98.07 vismara, 97.03 tamassia" +, author = "S. Bridgeman and A. Garg and R. Tamassia" +, title = "A Graph Drawing and Translation Service on the {WWW}" +, editor = "S. C. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "45--52" +, url = "https://www.cs.brown.edu/cgc/papers/bgt-gdtsw-97.ps.gz" +, keywords = "graph drawing, system, WWW, orthogonal, planarization, CGC, Brown" +, update = "98.07 vismara, 97.03 tamassia" } @inproceedings{bt-dmiog-98 -, author = "S. Bridgeman and R. Tamassia" -, title = "Difference Metrics for Interactive Orthogonal Graph Drawing Algorithms" -, booktitle = "Proc. Graph Drawing '98" -, publisher = "Springer-Verlag" -, note = "to appear" -, keywords = "graph drawing, interactive, dynamic, system" -, update = "98.11 tamassia" +, author = "S. Bridgeman and R. Tamassia" +, title = "Difference Metrics for Interactive Orthogonal Graph Drawing Algorithms" +, booktitle = "Proc. Graph Drawing '98" +, publisher = "Springer-Verlag" +, note = "to appear" +, keywords = "graph drawing, interactive, dynamic, system" +, update = "98.11 tamassia" } @article{bddltv-troad-00 -, author = "S. S. Bridgeman and G. {Di Battista} and W. Didimo and G. Liotta and R. Tamassia and L. Vismara" -, title = "Turn-Regularity and Optimal Area Drawings of Orthogonal Representations" -, journal = "Comput. Geom. Theory Appl." -, volume = 16 -, number = 1 -, year = 2000 -, pages = "53--93" -, succeeds = "bddltv-ocor-98, bbdltv-trodo-99, bddltv-trpod-99" -, update = "00.11 smid, 00.07 vismara" -, annote = "Special Issue on the 1998 Workshop on Computational +, author = "S. S. Bridgeman and G. {Di Battista} and W. Didimo and G. Liotta and R. Tamassia and L. Vismara" +, title = "Turn-Regularity and Optimal Area Drawings of Orthogonal Representations" +, journal = "Comput. Geom. Theory Appl." +, volume = 16 +, number = 1 +, year = 2000 +, pages = "53--93" +, succeeds = "bddltv-ocor-98, bbdltv-trodo-99, bddltv-trpod-99" +, update = "00.11 smid, 00.07 vismara" +, annote = "Special Issue on the 1998 Workshop on Computational Geometry" } @inproceedings{bddltv-trpod-99 -, author = "S. S. Bridgeman and G. {Di Battista} and W. Didimo and G. Liotta and R. Tamassia and L. Vismara" -, title = "Turn-Regularity and Planar Orthogonal Drawings" -, editor = "J. Kratochv{\'\i}l" -, booktitle = "Graph Drawing" -, nickname = "GD '99" -, series = "Lecture Notes Comput. Sci." -, volume = 1731 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "8--26" -, precedes = "bddltv-troad-99" -, update = "00.03 vismara" +, author = "S. S. Bridgeman and G. {Di Battista} and W. Didimo and G. Liotta and R. Tamassia and L. Vismara" +, title = "Turn-Regularity and Planar Orthogonal Drawings" +, editor = "J. Kratochv{\'\i}l" +, booktitle = "Graph Drawing" +, nickname = "GD '99" +, series = "Lecture Notes Comput. Sci." +, volume = 1731 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "8--26" +, precedes = "bddltv-troad-99" +, update = "00.03 vismara" } @inproceedings{bfgtv-iaiog-97 -, author = "Stina S. Bridgeman and Jody Fanto and Ashim Garg and Roberto Tamassia and Luca Vismara" -, title = "{InteractiveGiotto}: An Algorithm for Interactive Orthogonal Graph Drawing" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "303--308" -, keywords = "graph drawing" -, update = "99.11 bibrelex, 98.07 patrignani+tamassia+vismara" +, author = "Stina S. Bridgeman and Jody Fanto and Ashim Garg and Roberto Tamassia and Luca Vismara" +, title = "{InteractiveGiotto}: An Algorithm for Interactive Orthogonal Graph Drawing" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "303--308" +, keywords = "graph drawing" +, update = "99.11 bibrelex, 98.07 patrignani+tamassia+vismara" } @inproceedings{b-eaosp-89 -, author = "A. J. Briggs" -, title = "An efficient algorithm for one-step planar compliant motion planning with uncertainty" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "187--196" -, keywords = "motion planning, compliant motion, uncertainty" -, cites = "aaghi-vdp-86, c-cfmp-89, cr-nlbtr-87, d-cpcmp-88, d-edrr-89, e-acg-87, e-mpu-84, e-ubfmp-86, lmt-asfms-84, l-spcsa-83, m-mgpo-82, m-apfmc-84, n-moo-86, np-psaig-82, w-ffcmf-77, ZZZ" -, update = "98.03 bibrelex" +, author = "A. J. Briggs" +, title = "An efficient algorithm for one-step planar compliant motion planning with uncertainty" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "187--196" +, keywords = "motion planning, compliant motion, uncertainty" +, cites = "aaghi-vdp-86, c-cfmp-89, cr-nlbtr-87, d-cpcmp-88, d-edrr-89, e-acg-87, e-mpu-84, e-ubfmp-86, lmt-asfms-84, l-spcsa-83, m-mgpo-82, m-apfmc-84, n-moo-86, np-psaig-82, w-ffcmf-77, ZZZ" +, update = "98.03 bibrelex" } @article{bt-odcp-93 -, author = "G. Brightwell and W. T. Trotter" -, title = "The Order Dimension of Convex Polytopes" -, journal = "SIAM J. Discrete Math." -, volume = 6 -, number = 2 -, year = 1993 -, pages = "230--245" -, update = "95.05 tamassia" +, author = "G. Brightwell and W. T. Trotter" +, title = "The Order Dimension of Convex Polytopes" +, journal = "SIAM J. Discrete Math." +, volume = 6 +, number = 2 +, year = 1993 +, pages = "230--245" +, update = "95.05 tamassia" } @techreport{bt-odpm-92 -, author = "G. Brightwell and W. T. Trotter" -, title = "The Order Dimension of Planar Maps" -, number = "LSE--MPS--37" -, institution = "Dept. of Statistical and Mathematical Sciences, London School of Economics" -, year = 1992 -, update = "95.05 tamassia" +, author = "G. Brightwell and W. T. Trotter" +, title = "The Order Dimension of Planar Maps" +, number = "LSE--MPS--37" +, institution = "Dept. of Statistical and Mathematical Sciences, London School of Economics" +, year = 1992 +, update = "95.05 tamassia" } @article{bft-bpcpc-95 -, author = "G. R. Brightwell and S. Felsner and W. T. Trotter" -, title = "Balancing Pairs and the Cross Product Conjecture" -, journal = "Order" -, volume = 12 -, year = 1995 -, pages = "327--349" -, update = "97.03 gaertner+salinger" +, author = "G. R. Brightwell and S. Felsner and W. T. Trotter" +, title = "Balancing Pairs and the Cross Product Conjecture" +, journal = "Order" +, volume = 12 +, year = 1995 +, pages = "327--349" +, update = "97.03 gaertner+salinger" } @article{bs-rpg-93 -, author = "G. R. Brightwell and E. R. Scheinerman" -, title = "Representations of Planar Graphs" -, journal = "SIAM J. Discrete Math." -, volume = 6 -, number = 2 -, year = 1993 -, pages = "214--229" -, keywords = "graph drawing, planar, straight-line, disk packing, coin graph" -, update = "95.05 tamassia" +, author = "G. R. Brightwell and E. R. Scheinerman" +, title = "Representations of Planar Graphs" +, journal = "SIAM J. Discrete Math." +, volume = 6 +, number = 2 +, year = 1993 +, pages = "214--229" +, keywords = "graph drawing, planar, straight-line, disk packing, coin graph" +, update = "95.05 tamassia" } @article{bt-odpm-97 -, author = "Graham R. Brightwell and William T. Trotter" -, title = "The Order Dimension of Planar Maps" -, journal = "SIAM J. Discrete Math." -, volume = 10 -, number = 4 -, year = 1997 -, pages = "515--528" -, update = "98.07 tamassia+vismara" +, author = "Graham R. Brightwell and William T. Trotter" +, title = "The Order Dimension of Planar Maps" +, journal = "SIAM J. Discrete Math." +, volume = 10 +, number = 4 +, year = 1997 +, pages = "515--528" +, update = "98.07 tamassia+vismara" } @inproceedings{bk-igcsd-94 -, author = "T. Brinkhoff and H.-P. Kriegel" -, title = "The Impact of Global Clusterings on Spatial Database Systems" -, booktitle = "Proceedings of the International Conference on Very Large Databases" -, publisher = "Morgan Kauffman" -, month = sep -, year = 1994 -, pages = "168--179" -, update = "98.07 agarwal" +, author = "T. Brinkhoff and H.-P. Kriegel" +, title = "The Impact of Global Clusterings on Spatial Database Systems" +, booktitle = "Proceedings of the International Conference on Very Large Databases" +, publisher = "Morgan Kauffman" +, month = sep +, year = 1994 +, pages = "168--179" +, update = "98.07 agarwal" } @inproceedings{bks-epsju-93 -, author = "T. Brinkhoff and H.-P. Kriegel and B. Seeger" -, title = "Efficient Processing of Spatial Joins Using {R}-Trees" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1993 -, pages = "237--246" -, update = "97.07 agarwal, 96.09 kreveld" +, author = "T. Brinkhoff and H.-P. Kriegel and B. Seeger" +, title = "Efficient Processing of Spatial Joins Using {R}-Trees" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1993 +, pages = "237--246" +, update = "97.07 agarwal, 96.09 kreveld" } @inproceedings{bgh-cqpst-94 -, author = "A. Brinkman and T. Graf and K. Hinrichs" -, title = "The colored quadrant priority search tree with an application to the all-nearest-foreign-neighbors problem" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "63--68" -, cites = "aert-otbsp-92, gh-appcp-93, gs-dfbt-78, hns-arsa2-92, iko-pstsm-88, k-racrn-88, lw-vdllm-80, m-pst-85, o-ncbbs-82, ow-ubtcl-89, ow-ad-93, ps-cgi-85, sh-cpp-75, t-dsna-83, v-oaann-89, clr-ia-90, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "A. Brinkman and T. Graf and K. Hinrichs" +, title = "The colored quadrant priority search tree with an application to the all-nearest-foreign-neighbors problem" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "63--68" +, cites = "aert-otbsp-92, gh-appcp-93, gs-dfbt-78, hns-arsa2-92, iko-pstsm-88, k-racrn-88, lw-vdllm-80, m-pst-85, o-ncbbs-82, ow-ubtcl-89, ow-ad-93, ps-cgi-85, sh-cpp-75, t-dsna-83, v-oaann-89, clr-ia-90, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{b-pedlp-88 -, author = "M. Brion" -, title = "Points entires dans les poly{\`e}dres convexes" -, journal = "Annales Sci. {\'E}c. Norm. Sup., Ser IV" -, volume = 21 -, number = 4 -, year = 1988 -, pages = "653--663" -, update = "97.11 bibrelex" +, author = "M. Brion" +, title = "Points entires dans les poly{\`e}dres convexes" +, journal = "Annales Sci. {\'E}c. Norm. Sup., Ser IV" +, volume = 21 +, number = 4 +, year = 1988 +, pages = "653--663" +, update = "97.11 bibrelex" } @techreport{b-rgsdt-88 -, author = "E. Brisson" -, title = "Representing geometric structures in $d$ dimensions: Topology and order" -, number = "88-11-07" -, institution = "Dept. of Computer Science, Univ. of Washington" -, year = 1988 -, update = "98.03 bibrelex" +, author = "E. Brisson" +, title = "Representing geometric structures in $d$ dimensions: Topology and order" +, number = "88-11-07" +, institution = "Dept. of Computer Science, Univ. of Washington" +, year = 1988 +, update = "98.03 bibrelex" } @inproceedings{b-rgsdd-89 -, author = "E. Brisson" -, title = "Representing geometric structures in $d$ dimensions: Topology and order" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "218--227" -, cites = "b-rgsdt-88, dl-pmtds-87, gs-pmgsc-85, lw-tcc-69, m-eat-84, m-tfc-75, ph-chfsp-77, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 95.09 agarwal" +, author = "E. Brisson" +, title = "Representing geometric structures in $d$ dimensions: Topology and order" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "218--227" +, cites = "b-rgsdt-88, dl-pmtds-87, gs-pmgsc-85, lw-tcc-69, m-eat-84, m-tfc-75, ph-chfsp-77, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 95.09 agarwal" } @article{b-rgsdd-93 -, author = "E. Brisson" -, title = "Representing Geometric Structures in $d$ Dimensions: Topology and Order" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "387--426" -, succeeds = "b-rgsdd-89" -, update = "95.09 brisson" +, author = "E. Brisson" +, title = "Representing Geometric Structures in $d$ Dimensions: Topology and Order" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "387--426" +, succeeds = "b-rgsdd-89" +, update = "95.09 brisson" } @techreport{b-edrhu-87 -, author = "D. Broch" -, title = "Enhancing the dexterity of a robot hand using controlled slip" -, type = "Technical {Report}" -, number = "MIT AI-TR-992" -, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1987 -, update = "98.07 bibrelex" +, author = "D. Broch" +, title = "Enhancing the dexterity of a robot hand using controlled slip" +, type = "Technical {Report}" +, number = "MIT AI-TR-992" +, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1987 +, update = "98.07 bibrelex" } @incollection{b-flerg-87 -, author = "J. Brock" -, title = "Finding the largest empty rectangle on a grated surface" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 247 -, year = 1987 -, pages = "66--75" -, keywords = "isothetic, empty rectangle" -, update = "95.05 korneenko" +, author = "J. Brock" +, title = "Finding the largest empty rectangle on a grated surface" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 247 +, year = 1987 +, pages = "66--75" +, keywords = "isothetic, empty rectangle" +, update = "95.05 korneenko" } @inproceedings{bl-piss-99 -, author = "Christoph Br{\"o}cker and Alejandro L{\'o}pez-Ortiz" -, title = "Position-Independent Street Searching" -, booktitle = "Proc. 6th Workshop Algorithms Data Struct." -, nickname = "WADS '99" -, site = "Vancouver, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1663 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "241--252" -, update = "00.03 bibrelex" +, author = "Christoph Br{\"o}cker and Alejandro L{\'o}pez-Ortiz" +, title = "Position-Independent Street Searching" +, booktitle = "Proc. 6th Workshop Algorithms Data Struct." +, nickname = "WADS '99" +, site = "Vancouver, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1663 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "241--252" +, update = "00.03 bibrelex" } @inproceedings{bs-srsc-99 -, author = "Christoph Br{\"o}cker and Sven Schuierer" -, title = "Searching Rectilinear Streets Completely" -, booktitle = "Proc. 6th Workshop Algorithms Data Struct." -, nickname = "WADS '99" -, site = "Vancouver, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1663 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "98--109" -, update = "00.03 bibrelex" +, author = "Christoph Br{\"o}cker and Sven Schuierer" +, title = "Searching Rectilinear Streets Completely" +, booktitle = "Proc. 6th Workshop Algorithms Data Struct." +, nickname = "WADS '99" +, site = "Vancouver, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1663 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "98--109" +, update = "00.03 bibrelex" } @incollection{bj-dpcho-00 -, author = "Gerth St{\o}lting Brodal and Riko Jacob" -, title = "Dynamic Planar Convex Hull with Optimal Query Time and $O(\log n\cdot\log\log n)$ Update Time" -, booktitle = "Proc. 7th Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 1851 -, publisher = "Springer-Verlag" -, year = 2000 -, pages = "57--70" -, update = "01.07 orourke" +, author = "Gerth St{\o}lting Brodal and Riko Jacob" +, title = "Dynamic Planar Convex Hull with Optimal Query Time and $O(\log n\cdot\log\log n)$ Update Time" +, booktitle = "Proc. 7th Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 1851 +, publisher = "Springer-Verlag" +, year = 2000 +, pages = "57--70" +, update = "01.07 orourke" } @article{bdfru-wcrtr-95 -, author = "A. Z. Broder and M. E. Dyer and A. M. Frieze and P. Raghavan and E. Upfal" -, title = "The worst-case running time of the random simplex algorithm is exponential in the height" -, journal = "Inform. Proc. Letters" -, volume = 56 -, number = 2 -, year = 1995 -, pages = "79--81" -, update = "97.03 gaertner+salinger" +, author = "A. Z. Broder and M. E. Dyer and A. M. Frieze and P. Raghavan and E. Upfal" +, title = "The worst-case running time of the random simplex algorithm is exponential in the height" +, journal = "Inform. Proc. Letters" +, volume = 56 +, number = 2 +, year = 1995 +, pages = "79--81" +, update = "97.03 gaertner+salinger" } @inproceedings{bpg-cfpa-93 -, author = "M. Brokowski and M. A. Peskin and K. Goldberg" -, title = "Curved fences for part alignment" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Atlanta, GA" -, volume = 3 -, year = 1993 -, pages = "467--473" -, update = "98.07 bibrelex" +, author = "M. Brokowski and M. A. Peskin and K. Goldberg" +, title = "Curved fences for part alignment" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Atlanta, GA" +, volume = 3 +, year = 1993 +, pages = "467--473" +, update = "98.07 bibrelex" } @article{bk-facus-73 -, author = "C. Bron and J. Kerbosch" -, title = "Finding all cliques of an undirected subgraph" -, journal = "Commun. ACM" -, volume = 16 -, year = 1973 -, pages = "575--577" -, update = "98.07 bibrelex" +, author = "C. Bron and J. Kerbosch" +, title = "Finding all cliques of an undirected subgraph" +, journal = "Commun. ACM" +, volume = 16 +, year = 1973 +, pages = "575--577" +, update = "98.07 bibrelex" } @proceedings{b-ewcg-99 -, title = "Abstracts 15th European Workshop Comput. Geom." -, editor = "Herv{\'e} Br{\"o}nnimann" -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, isbn = "2-7261-1139-4" -, update = "00.03 bibrelex" +, title = "Abstracts 15th European Workshop Comput. Geom." +, editor = "Herv{\'e} Br{\"o}nnimann" +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, isbn = "2-7261-1139-4" +, update = "00.03 bibrelex" } @inproceedings{b-aops-94 -, author = "Herv{\'e} Br{\"o}nnimann" -, title = "Almost Optimal Polyhedral Separators" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "393--394" -, keywords = "video review" -, cites = "bg-aoscf-94, d-ascg-90, dt-gascg-94, ms-saps-92, ZZZ" -, update = "99.07 devillers, 98.03 bibrelex, 94.09 jones" +, author = "Herv{\'e} Br{\"o}nnimann" +, title = "Almost Optimal Polyhedral Separators" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "393--394" +, keywords = "video review" +, cites = "bg-aoscf-94, d-ascg-90, dt-gascg-94, ms-saps-92, ZZZ" +, update = "99.07 devillers, 98.03 bibrelex, 94.09 jones" } @techreport{b-imhsh-94 -, author = "Herv{\'e} Br{\"o}nnimann" -, title = "An implementation of {MIN} {HITTING} {SET} heuristics" -, type = "Manuscript" -, institution = "??" -, year = 1994 -, update = "99.07 devillers, 98.03 bibrelex" +, author = "Herv{\'e} Br{\"o}nnimann" +, title = "An implementation of {MIN} {HITTING} {SET} heuristics" +, type = "Manuscript" +, institution = "??" +, year = 1994 +, update = "99.07 devillers, 98.03 bibrelex" } @inproceedings{b-dchol-98 -, author = "Herv{\'e} Br{\"o}nnimann" -, title = "Degenerate convex hulls on-line in any fixed dimension" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "249--258" -, update = "99.07 devillers, 98.11 devillers" +, author = "Herv{\'e} Br{\"o}nnimann" +, title = "Degenerate convex hulls on-line in any fixed dimension" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "249--258" +, update = "99.07 devillers, 98.11 devillers" } @phdthesis{b-dga-95 -, author = "Herv{\'e} Br{\"o}nnimann" -, title = "Derandomization of Geometric Algorithms" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Princeton University" -, address = "Princeton, NJ" -, month = may -, year = 1995 -, keywords = "doctoral thesis" -, update = "99.07 devillers, 96.09 devillers" +, author = "Herv{\'e} Br{\"o}nnimann" +, title = "Derandomization of Geometric Algorithms" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Princeton University" +, address = "Princeton, NJ" +, month = may +, year = 1995 +, keywords = "doctoral thesis" +, update = "99.07 devillers, 96.09 devillers" } @inproceedings{bbp-iayea-98cg -, author = "Herv{\'e} Br{\"o}nnimann and Christoph Burnikel and Sylvain Pion" -, title = "Interval Arithmetic Yields Efficient Arithmetic Filters for Computational Geometry" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "49--54" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Herv{\'e} Br{\"o}nnimann and Christoph Burnikel and Sylvain Pion" +, title = "Interval Arithmetic Yields Efficient Arithmetic Filters for Computational Geometry" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "49--54" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{bbp-iayed-98scg -, author = "Herv{\'e} Br{\"o}nnimann and Christoph Burnikel and Sylvain Pion" -, title = "Interval Arithmetic Yields Efficient Dynamic Filters for Computational Geometry" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "165--174" -, update = "99.07 devillers, 98.07 tamassia" +, author = "Herv{\'e} Br{\"o}nnimann and Christoph Burnikel and Sylvain Pion" +, title = "Interval Arithmetic Yields Efficient Dynamic Filters for Computational Geometry" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "165--174" +, update = "99.07 devillers, 98.07 tamassia" } @inproceedings{bc-hhihr-92 -, author = "Herv{\'e} Br{\"o}nnimann and Bernard Chazelle" -, title = "How hard is halfspace range searching?" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "271--275" -, cites = "as-anps-91, bfk-ictor-81, c-lbcpr-89, c-lbors1-90, c-lbors2-90, cr-ccpso-91, cr-lbcsr-92, csw-qoubs-90, cw-qorss-89, cs-arscg-89, cy-grp-84, ew-hrsls-86, elr-dlsrd-70, f-lbcor-81, f-lbcso-81, hw-ensrq-87, m-tnhl-52, m-rph-91, m-rsehc-91, m-dsa-84, s-iggp-76, w-pr-82, y-cmps-85, y-3spia-83, yy-gaddg-85, ZZZ" -, update = "99.07 devillers, 98.03 mitchell, 97.11 bibrelex" +, author = "Herv{\'e} Br{\"o}nnimann and Bernard Chazelle" +, title = "How hard is halfspace range searching?" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "271--275" +, cites = "as-anps-91, bfk-ictor-81, c-lbcpr-89, c-lbors1-90, c-lbors2-90, cr-ccpso-91, cr-lbcsr-92, csw-qoubs-90, cw-qorss-89, cs-arscg-89, cy-grp-84, ew-hrsls-86, elr-dlsrd-70, f-lbcor-81, f-lbcso-81, hw-ensrq-87, m-tnhl-52, m-rph-91, m-rsehc-91, m-dsa-84, s-iggp-76, w-pr-82, y-cmps-85, y-3spia-83, yy-gaddg-85, ZZZ" +, update = "99.07 devillers, 98.03 mitchell, 97.11 bibrelex" } @inproceedings{bc-ossc-94 -, author = "Herv{\'e} Br{\"o}nnimann and Bernard Chazelle" -, title = "Optimal Slope Selection Via Cuttings" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "99--103" -, precedes = "bc-ossc-98" -, cites = "aks-scps-83, bcm-prsss-93, c-chdc-93 , cegs-dwclp-92, cm-ltdao-93, csss-otass-89, dmn-rass-92, ks-osse-93, m-aogdc-91, m-roass-91, m-apcad-83, ZZZ" -, update = "99.07 devillers, 98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell, 94.09 jones" +, author = "Herv{\'e} Br{\"o}nnimann and Bernard Chazelle" +, title = "Optimal Slope Selection Via Cuttings" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "99--103" +, precedes = "bc-ossc-98" +, cites = "aks-scps-83, bcm-prsss-93, c-chdc-93 , cegs-dwclp-92, cm-ltdao-93, csss-otass-89, dmn-rass-92, ks-osse-93, m-aogdc-91, m-roass-91, m-apcad-83, ZZZ" +, update = "99.07 devillers, 98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell, 94.09 jones" } @article{bc-ossc-98 -, author = "Herv{\'e} Br{\"o}nnimann and Bernard Chazelle" -, title = "Optimal Slope Selection Via Cuttings" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, number = 1 -, year = 1998 -, pages = "23--29" -, succeeds = "bc-ossc-94" -, update = "99.07 devillers, 98.07 bibrelex+mitchell+smid, 98.03 mitchell" +, author = "Herv{\'e} Br{\"o}nnimann and Bernard Chazelle" +, title = "Optimal Slope Selection Via Cuttings" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, number = 1 +, year = 1998 +, pages = "23--29" +, succeeds = "bc-ossc-94" +, update = "99.07 devillers, 98.07 bibrelex+mitchell+smid, 98.03 mitchell" } @inproceedings{bcm-prsss-93 -, author = "Herv{\'e} Br{\"o}nnimann and Bernard Chazelle and Ji{\v r}{\'\i} Matou{\v s}ek" -, title = "Product Range Spaces, Sensitive Sampling, and Derandomization" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1993 -, pages = "400--409" -, keywords = "approximations, epsilon-nets, derandomization, diameter computation, method of conditional probabilities, parametric search" -, update = "96.09 agarwal, 96.05 agarwal, 94.01 smid, 93.09 matousek+milone+mitchell" +, author = "Herv{\'e} Br{\"o}nnimann and Bernard Chazelle and Ji{\v r}{\'\i} Matou{\v s}ek" +, title = "Product Range Spaces, Sensitive Sampling, and Derandomization" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1993 +, pages = "400--409" +, keywords = "approximations, epsilon-nets, derandomization, diameter computation, method of conditional probabilities, parametric search" +, update = "96.09 agarwal, 96.05 agarwal, 94.01 smid, 93.09 matousek+milone+mitchell" } @article{bcm-prsss-99 -, author = "H. Br{\"o}nnimann and B. Chazelle and J. Matou{\v s}ek" -, title = "Product Range Spaces, Sensitive Sampling, and Derandomization" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1999 -, pages = "1552--1575" -, update = "00.03 smid" +, author = "H. Br{\"o}nnimann and B. Chazelle and J. Matou{\v s}ek" +, title = "Product Range Spaces, Sensitive Sampling, and Derandomization" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1999 +, pages = "1552--1575" +, update = "00.03 smid" } @article{bcp-hhihr-93 -, author = "H. Br{\"o}nnimann and Bernard Chazelle and J. Pach" -, title = "How hard is halfspace range searching" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "143--155" -, succeeds = "bc-hhihr-92" -, update = "98.03 mitchell, 97.11 bibrelex, 94.01 matousek" +, author = "H. Br{\"o}nnimann and Bernard Chazelle and J. Pach" +, title = "How hard is halfspace range searching" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "143--155" +, succeeds = "bc-hhihr-92" +, update = "98.03 mitchell, 97.11 bibrelex, 94.01 matousek" } @techreport{bd-uubhq-99 -, author = "Herv{\'e} Br{\"o}nnimann and Olivier Devillers" -, title = "The union of unit balls has quadratic complexity, even if they all contain the origin" -, type = "Rapport de recherche" -, number = 3758 -, institution = "INRIA" -, year = 1999 -, archive = "XXX:cs.CG/9907025" -, cites = "h-bevv-56, bcddy-acchs-96" -, update = "99.11 devillers" -, abstract = "We provide a lower bound construction showing that the union of unit balls in $R^3$ has quadratic complexity, even if they all contain the origin. This settles a conjecture of Sharir." +, author = "Herv{\'e} Br{\"o}nnimann and Olivier Devillers" +, title = "The union of unit balls has quadratic complexity, even if they all contain the origin" +, type = "Rapport de recherche" +, number = 3758 +, institution = "INRIA" +, year = 1999 +, archive = "XXX:cs.CG/9907025" +, cites = "h-bevv-56, bcddy-acchs-96" +, update = "99.11 devillers" +, abstract = "We provide a lower bound construction showing that the union of unit balls in $R^3$ has quadratic complexity, even if they all contain the origin. This settles a conjecture of Sharir." } @inproceedings{beh-eeeafcs-05 @@ -27463,80 +27463,80 @@ @inproceedings{beh-eeeafcs-05 } @inproceedings{bepp-cegpu-97 -, author = "Herv{\'e} Br{\"o}nnimann and Ioannis Emiris and Victor Pan and Sylvain Pion" -, title = "Computing exact geometric predicates using modular arithmetic with single precision" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "174--182" -, precedes = "bepp-sdrns-99" -, cites = "ahu-daca-74, abdpy-enmcs-95, bp-fa-94, by-eeesd-97i, bcl-casac-82, bkmnsu-egcl-95, c-sede-92, clr-ia-90, em-sstcd-90, e-cicgd-98, ec-gard-95, f-nsa2d-92, fv-eeacg-93, fv-sayee-96, gkz-drmd-94, gl-mc-83, h-pargc-88, h-hsism-96, hhk-rsops-89, hp-asdmr-94, kkm-ebrgl-96, k-sa-81, l-chi-82, lmc-ecdde-94, pys-antcm-97, p-pcpgs-96, r-cpagt-95, s-rafpg-96, si-rtoia-94, wrg-csdsp-92, y-tegc-97, y-ecgtm-95, yd-ecp-95, ZZZ" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.11 icking, 97.07 efrat" +, author = "Herv{\'e} Br{\"o}nnimann and Ioannis Emiris and Victor Pan and Sylvain Pion" +, title = "Computing exact geometric predicates using modular arithmetic with single precision" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "174--182" +, precedes = "bepp-sdrns-99" +, cites = "ahu-daca-74, abdpy-enmcs-95, bp-fa-94, by-eeesd-97i, bcl-casac-82, bkmnsu-egcl-95, c-sede-92, clr-ia-90, em-sstcd-90, e-cicgd-98, ec-gard-95, f-nsa2d-92, fv-eeacg-93, fv-sayee-96, gkz-drmd-94, gl-mc-83, h-pargc-88, h-hsism-96, hhk-rsops-89, hp-asdmr-94, kkm-ebrgl-96, k-sa-81, l-chi-82, lmc-ecdde-94, pys-antcm-97, p-pcpgs-96, r-cpagt-95, s-rafpg-96, si-rtoia-94, wrg-csdsp-92, y-tegc-97, y-ecgtm-95, yd-ecp-95, ZZZ" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.11 icking, 97.07 efrat" } @article{bepp-sdrns-99 -, author = "Herv{\'e} Br{\"o}nnimann and Ioannis Emiris and Victor Pan and Sylvain Pion" -, title = "Sign Determination in {R}esidue {N}umber {S}ystems" -, journal = "Theoret. Comput. Sci." -, volume = 210 -, number = 1 -, year = 1999 -, pages = "173--197" -, note = "Special Issue on Real Numbers and Computers" -, url = "https://hal.inria.fr/inria-00344324" -, succeeds = "bepp-cegpu-97" -, update = "99.07 devillers" +, author = "Herv{\'e} Br{\"o}nnimann and Ioannis Emiris and Victor Pan and Sylvain Pion" +, title = "Sign Determination in {R}esidue {N}umber {S}ystems" +, journal = "Theoret. Comput. Sci." +, volume = 210 +, number = 1 +, year = 1999 +, pages = "173--197" +, note = "Special Issue on Real Numbers and Computers" +, url = "https://inria.hal.science/inria-00344324" +, succeeds = "bepp-cegpu-97" +, update = "99.07 devillers" } @inproceedings{bg-aoscf-94 -, author = "H. Br{\"o}nnimann and M. T. Goodrich" -, title = "Almost Optimal Set Covers in Finite {VC}-Dimension" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "293--302" -, cites = "ammrs-dtgm-93, a-ded-83, b-luhs-90, bglr-epcpa-93, brs-enasc-89, br-t3nnn-88, behw-clgcv-89, b-imhsh-94, bcm-prsss-93, c-ochan-91, c-chdc-93, ceggs-ibwen-93, cf-dvrsi-90, cm-ltdao-93, cw-qorss-89, c-ghscp-79, c-lvalp-88, cs-arscg-89, c-apca-93, clr-ia-90, d-ascg-90, gj-cigtn-79, g-gpmee-93, hw-ensrq-87, h-aascv-82, hm-ascpp-85, j-aacp-74, k-racpc-72, kpw-atben-92, l-lqwia-87, l-roifc-75, ly-hamp-93, m-cen-90, m-aogdc-91, m-cha-91, m-rsehc-92, m-rph-92, msw-hnlls-90, mww-deabv-91, m-ept-92, ms-saps-92, s-dfs-72, vc-ucrfe-71, w-pttco-88, ZZZ" -, update = "98.03 bibrelex, 96.09 agarwal, 94.09 jones, 94.01 jones" +, author = "H. Br{\"o}nnimann and M. T. Goodrich" +, title = "Almost Optimal Set Covers in Finite {VC}-Dimension" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "293--302" +, cites = "ammrs-dtgm-93, a-ded-83, b-luhs-90, bglr-epcpa-93, brs-enasc-89, br-t3nnn-88, behw-clgcv-89, b-imhsh-94, bcm-prsss-93, c-ochan-91, c-chdc-93, ceggs-ibwen-93, cf-dvrsi-90, cm-ltdao-93, cw-qorss-89, c-ghscp-79, c-lvalp-88, cs-arscg-89, c-apca-93, clr-ia-90, d-ascg-90, gj-cigtn-79, g-gpmee-93, hw-ensrq-87, h-aascv-82, hm-ascpp-85, j-aacp-74, k-racpc-72, kpw-atben-92, l-lqwia-87, l-roifc-75, ly-hamp-93, m-cen-90, m-aogdc-91, m-cha-91, m-rsehc-92, m-rph-92, msw-hnlls-90, mww-deabv-91, m-ept-92, ms-saps-92, s-dfs-72, vc-ucrfe-71, w-pttco-88, ZZZ" +, update = "98.03 bibrelex, 96.09 agarwal, 94.09 jones, 94.01 jones" } @article{bg-aoscf-95 -, author = "H. Br{\"o}nnimann and M. T. Goodrich" -, title = "Almost Optimal Set Covers in Finite {VC}-Dimension" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "263--279" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "H. Br{\"o}nnimann and M. T. Goodrich" +, title = "Almost Optimal Set Covers in Finite {VC}-Dimension" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "263--279" +, update = "96.09 agarwal, 96.05 agarwal" } @misc{bikmm-oipcha-01 -, author = "Herv{\'e} Br{\"o}nnimann and John Iacono and Jryki Katajainen and Pat Morin and Jason Morrison" -, title = "Optimal In-Place Planar Convex Hull Algorithms" -, howpublished = "11th Annual Fall Workshop on Computational Geometry" -, year = 2001 -, note = "\url{http://geometry.poly.edu/cgwpapers/}" -, url = "http://geometry.poly.edu/cgwpapers/hbr\_inplace.ps" -, update = "02.03 orourke" +, author = "Herv{\'e} Br{\"o}nnimann and John Iacono and Jryki Katajainen and Pat Morin and Jason Morrison" +, title = "Optimal In-Place Planar Convex Hull Algorithms" +, howpublished = "11th Annual Fall Workshop on Computational Geometry" +, year = 2001 +, note = "\url{http://geometry.poly.edu/cgwpapers/}" +, url = "http://geometry.poly.edu/cgwpapers/hbr\_inplace.ps" +, update = "02.03 orourke" } @inproceedings{bp-ergc-97 -, author = "Herv{\'e} Br{\"o}nnimann and Sylvain Pion" -, title = "Exact rounding for geometric constructions" -, booktitle = "GAMM/IMACS International Symposium on Scientific Computing, Computer Arithmetic and Validated Numerics" -, year = 1997 -, pages = "" -, url = "https://hal.inria.fr/inria-00344403/" -, update = "99.11 bibrelex, 99.07 devillers, 98.11 devillers" +, author = "Herv{\'e} Br{\"o}nnimann and Sylvain Pion" +, title = "Exact rounding for geometric constructions" +, booktitle = "GAMM/IMACS International Symposium on Scientific Computing, Computer Arithmetic and Validated Numerics" +, year = 1997 +, pages = "" +, url = "https://inria.hal.science/inria-00344403/" +, update = "99.11 bibrelex, 99.07 devillers, 98.11 devillers" } @techreport{by-cacas-96 -, author = "Herv{\'e} Br{\"o}nnimann and Mariette Yvinec" -, title = "A complete analysis of {Clarkson}'s algorithm for safe determinant evaluation" -, type = "Research {Report}" -, number = 3051 -, institution = "INRIA" -, year = 1996 -, url = "http://www.inria.fr/rapports/sophia/RR-3051.html" -, update = "99.11 devillers, 99.07 devillers, 97.07 devillers" -, abstract = "In this paper, we give a complete and self-contained +, author = "Herv{\'e} Br{\"o}nnimann and Mariette Yvinec" +, title = "A complete analysis of {Clarkson}'s algorithm for safe determinant evaluation" +, type = "Research {Report}" +, number = 3051 +, institution = "INRIA" +, year = 1996 +, url = "http://www.inria.fr/rapports/sophia/RR-3051.html" +, update = "99.11 devillers, 99.07 devillers, 97.07 devillers" +, abstract = "In this paper, we give a complete and self-contained analysis of Clarkson's algorithm that performs safe and efficient determinant evaluation of an $n\times n$ matrix with integer coefficients that can be expressed with $b$ bits. Clarkson's original @@ -27556,39 +27556,39 @@ @techreport{by-cacas-96 } @inproceedings{by-eeesd-97i -, author = "Herv{\'e} Br{\"o}nnimann and Mariette Yvinec" -, title = "Efficient exact evaluation of signs of determinants" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "166--173" -, precedes = "by-eeesd-00" -, cites = "abdpy-esdus-94, abdpy-enmcs-95, bkmnsu-egcl-95, c-accgc-96, c-sede-92, dp-papaf-96, fm-cslas-67, f-nsa2d-92, fv-eeacg-93, hhk-tirgc-88, h-gsm-89, kln-edtur-91, lm-cschu-90, m-dpggt-89, s-rafpg-96, si-smsft-89, si-rtoia-94, y-tegc-93, yd-ecp-95, ZZZ" -, update = "00.03 devillers, 99.07 devillers, 98.07 bibrelex, 97.11 icking, 97.07 efrat" +, author = "Herv{\'e} Br{\"o}nnimann and Mariette Yvinec" +, title = "Efficient exact evaluation of signs of determinants" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "166--173" +, precedes = "by-eeesd-00" +, cites = "abdpy-esdus-94, abdpy-enmcs-95, bkmnsu-egcl-95, c-accgc-96, c-sede-92, dp-papaf-96, fm-cslas-67, f-nsa2d-92, fv-eeacg-93, hhk-tirgc-88, h-gsm-89, kln-edtur-91, lm-cschu-90, m-dpggt-89, s-rafpg-96, si-smsft-89, si-rtoia-94, y-tegc-93, yd-ecp-95, ZZZ" +, update = "00.03 devillers, 99.07 devillers, 98.07 bibrelex, 97.11 icking, 97.07 efrat" } @article{by-eeesd-00 -, author = "Herv{\'e} Br{\"o}nnimann and Mariette Yvinec" -, title = "Efficient Exact Evaluation of Signs of Determinants" -, journal = "Algorithmica" -, volume = 27 -, year = 2000 -, pages = "21--56" -, keywords = "determinant, robustness, Clarkson, safe, lattice, exact arithmetic, precision" -, succeeds = "by-eeesd-97i" -, cites = "abdpy-esdus-94, abdpy-enmcs-95, bkmnsu-egcl-95, c-accgc-96, c-sede-92, dp-papaf-96, fm-cslas-67, f-nsa2d-92, fv-eeacg-93, hhk-tirgc-88, h-gsm-89, kln-edtur-91, lm-cschu-90, m-dpggt-89, s-rafpg-96, si-smsft-89, si-rtoia-94, y-tegc-93, yd-ecp-95, ZZZ" -, update = "00.03 devillers" +, author = "Herv{\'e} Br{\"o}nnimann and Mariette Yvinec" +, title = "Efficient Exact Evaluation of Signs of Determinants" +, journal = "Algorithmica" +, volume = 27 +, year = 2000 +, pages = "21--56" +, keywords = "determinant, robustness, Clarkson, safe, lattice, exact arithmetic, precision" +, succeeds = "by-eeesd-97i" +, cites = "abdpy-esdus-94, abdpy-enmcs-95, bkmnsu-egcl-95, c-accgc-96, c-sede-92, dp-papaf-96, fm-cslas-67, f-nsa2d-92, fv-eeacg-93, hhk-tirgc-88, h-gsm-89, kln-edtur-91, lm-cschu-90, m-dpggt-89, s-rafpg-96, si-smsft-89, si-rtoia-94, y-tegc-93, yd-ecp-95, ZZZ" +, update = "00.03 devillers" } @techreport{by-eeesd-97t -, author = "Herv{\'e}. Br{\"o}nnimann and Mariette Yvinec" -, title = "Efficient Exact Evaluation of Signs of Determinants" -, type = "Research {Report}" -, number = 3140 -, institution = "INRIA" -, year = 1997 -, url = "http://www.inria.fr/rapports/sophia/RR-3140.html" -, update = "99.07 devillers, 97.07 devillers" -, abstract = "This paper presents a theoretical and experimental study +, author = "Herv{\'e}. Br{\"o}nnimann and Mariette Yvinec" +, title = "Efficient Exact Evaluation of Signs of Determinants" +, type = "Research {Report}" +, number = 3140 +, institution = "INRIA" +, year = 1997 +, url = "http://www.inria.fr/rapports/sophia/RR-3140.html" +, update = "99.07 devillers, 97.07 devillers" +, abstract = "This paper presents a theoretical and experimental study on two different methods to evaluate the sign of a determinant with integer entries. The first one is a method based on the Gram-Schmidt orthogonalisation process which has been proposed by Clarkson. We review @@ -27603,1020 +27603,1020 @@ @techreport{by-eeesd-97t } @book{b-icp-83 -, author = "A. Br{\"o}nsted" -, title = "An Introduction to Convex Polytopes" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1983 +, author = "A. Br{\"o}nsted" +, title = "An Introduction to Convex Polytopes" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1983 } @book{bsmm-tdm-93 -, author = "I. N. Bronstein and K. A. Semendjajew and G. Musiol and H. M{\"u}hlig" -, title = "Taschenbuch der Mathematik" -, publisher = "Harri Deutsch" -, address = "Frankfurt am Main" -, year = 1993 -, update = "00.03 bibrelex" +, author = "I. N. Bronstein and K. A. Semendjajew and G. Musiol and H. M{\"u}hlig" +, title = "Taschenbuch der Mathematik" +, publisher = "Harri Deutsch" +, address = "Frankfurt am Main" +, year = 1993 +, update = "00.03 bibrelex" } @inproceedings{bl-sacsf-83 -, author = "R. Brooks and T. Lozano-P{\'e}rez" -, title = "A subdivision algorithm in configuration space for findpath with rotation" -, booktitle = "Proc. 8th Internat. Joint Conf. Artif. Intell." -, site = "Karlsruhe, West Germany" -, month = aug -, year = 1983 -, update = "98.03 bibrelex" +, author = "R. Brooks and T. Lozano-P{\'e}rez" +, title = "A subdivision algorithm in configuration space for findpath with rotation" +, booktitle = "Proc. 8th Internat. Joint Conf. Artif. Intell." +, site = "Karlsruhe, West Germany" +, month = aug +, year = 1983 +, update = "98.03 bibrelex" } @techreport{b-fppcr-82 -, author = "R. A. Brooks" -, title = "Find-path for a {PUMA}-class robot" -, type = "Manuscript" -, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1982 +, author = "R. A. Brooks" +, title = "Find-path for a {PUMA}-class robot" +, type = "Manuscript" +, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1982 } @article{b-pcfmp-83 -, author = "R. A. Brooks" -, title = "Planning Collision-Free Motions for Pick-and-Place Operations" -, journal = "Internat. J. Robot. Res." -, volume = 4 -, year = 1983 -, pages = "19--44" -, update = "93.09 milone+mitchell" +, author = "R. A. Brooks" +, title = "Planning Collision-Free Motions for Pick-and-Place Operations" +, journal = "Internat. J. Robot. Res." +, volume = 4 +, year = 1983 +, pages = "19--44" +, update = "93.09 milone+mitchell" } @article{b-sfppg-83 -, author = "R. A. Brooks" -, title = "Solving the Find-Path Problem by Good Representation of Free Space" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 13 -, number = 3 -, year = 1983 -, pages = "190--197" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "R. A. Brooks" +, title = "Solving the Find-Path Problem by Good Representation of Free Space" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 13 +, number = 3 +, year = 1983 +, pages = "190--197" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @techreport{bl-sacsf-82 -, author = "R. A. Brooks and T. Lozano-P{\'e}rez" -, title = "A subdivision algorithm in configuration space for findpath with rotation" -, type = "Report" -, number = 684 -, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1982 -, precedes = "bl-sacsf-85" -, update = "95.05 korneenko" +, author = "R. A. Brooks and T. Lozano-P{\'e}rez" +, title = "A subdivision algorithm in configuration space for findpath with rotation" +, type = "Report" +, number = 684 +, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1982 +, precedes = "bl-sacsf-85" +, update = "95.05 korneenko" } @article{bl-sacsf-85 -, author = "R. A. Brooks and T. Lozano-P{\'e}rez" -, title = "A subdivision algorithm in configuration space for findpath with rotation" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 15 -, number = 2 -, year = 1985 -, pages = "224--233" -, keywords = "motion planning" -, succeeds = "bl-sacsf-82" -, update = "95.05 korneenko" +, author = "R. A. Brooks and T. Lozano-P{\'e}rez" +, title = "A subdivision algorithm in configuration space for findpath with rotation" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 15 +, number = 2 +, year = 1985 +, pages = "224--233" +, keywords = "motion planning" +, succeeds = "bl-sacsf-82" +, update = "95.05 korneenko" } @phdthesis{b-appmt-91 -, author = "R. Brost" -, title = "Analysis and planning of planar manipulation tasks" -, school = "Carnegie Mellon University" -, year = 1991 -, note = "Report CMU-CS-91-149" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "R. Brost" +, title = "Analysis and planning of planar manipulation tasks" +, school = "Carnegie Mellon University" +, year = 1991 +, note = "Report CMU-CS-91-149" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @inproceedings{b-agppu-86 -, author = "R. Brost" -, title = "Automatic grasp planning in the presence of uncertainty" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "San Francisco, CA" -, month = apr -, year = 1986 -, update = "98.03 bibrelex" +, author = "R. Brost" +, title = "Automatic grasp planning in the presence of uncertainty" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "San Francisco, CA" +, month = apr +, year = 1986 +, update = "98.03 bibrelex" } @inproceedings{bg-casmf-94 -, author = "R. C. Brost and K. Y. Goldberg" -, title = "A complete algorithm for synthesizing modular fixtures for polygonal parts" -, booktitle = "Proc. 11th IEEE Internat. Conf. Robot. Autom." -, month = may -, year = 1994 -, update = "98.03 bibrelex" +, author = "R. C. Brost and K. Y. Goldberg" +, title = "A complete algorithm for synthesizing modular fixtures for polygonal parts" +, booktitle = "Proc. 11th IEEE Internat. Conf. Robot. Autom." +, month = may +, year = 1994 +, update = "98.03 bibrelex" } @inproceedings{bm-gaprb-89 -, author = "R. C. Brost and M. T. Mason" -, title = "Graphical Analysis of Planar Rigid Body Dynamics with Multiple Frictional Contacts" -, booktitle = "Proc. 5th Intl. Symp. on Robotics Research" -, year = 1989 -, pages = "367--374" -, update = "97.11 bibrelex" +, author = "R. C. Brost and M. T. Mason" +, title = "Graphical Analysis of Planar Rigid Body Dynamics with Multiple Frictional Contacts" +, booktitle = "Proc. 5th Intl. Symp. on Robotics Research" +, year = 1989 +, pages = "367--374" +, update = "97.11 bibrelex" } @article{bdf-cvp-78 -, author = "W. Brostow and J. P. Dussault and B. L. Fox" -, title = "Construction of {Voronoi} polyhedra" -, journal = "J. Comput. Phys." -, volume = 29 -, year = 1978 -, pages = "81--92" +, author = "W. Brostow and J. P. Dussault and B. L. Fox" +, title = "Construction of {Voronoi} polyhedra" +, journal = "J. Comput. Phys." +, volume = 29 +, year = 1978 +, pages = "81--92" } @article{b-fodm-84 -, author = "P. Brou" -, title = "Finding Objects in Depth Maps" -, journal = "Internat. J. Robot. Res." -, volume = "??" -, year = 1984 -, update = "97.11 bibrelex" +, author = "P. Brou" +, title = "Finding Objects in Depth Maps" +, journal = "Internat. J. Robot. Res." +, volume = "??" +, year = 1984 +, update = "97.11 bibrelex" } @article{b-mp-66 -, author = "U. A. Brousseau" -, title = "A mathematician's progress" -, journal = "Math. Teacher" -, volume = 59 -, year = 1966 -, pages = "722--727" -, update = "98.03 agarwal" +, author = "U. A. Brousseau" +, title = "A mathematician's progress" +, journal = "Math. Teacher" +, volume = 59 +, year = 1966 +, pages = "722--727" +, update = "98.03 agarwal" } @book{bcn-drg-89 -, author = "A. E. Brouwer and A. M. Cohen and A. Neumaier" -, title = "Distance-regular graphs" -, publisher = "Springer-Verlag" -, year = 1989 -, update = "97.11 bibrelex" +, author = "A. E. Brouwer and A. M. Cohen and A. Neumaier" +, title = "Distance-regular graphs" +, publisher = "Springer-Verlag" +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{bv-p2p-79 -, author = "C. M. Brown and H. B. Voelcker" -, title = "The {PADL}-2 project" -, booktitle = "Proc. 7th NSF Grantees' Conf. Product. Res. Tech." -, site = "Ithaca, NY" -, year = 1979 -, pages = "??" +, author = "C. M. Brown and H. B. Voelcker" +, title = "The {PADL}-2 project" +, booktitle = "Proc. 7th NSF Grantees' Conf. Product. Res. Tech." +, site = "Ithaca, NY" +, year = 1979 +, pages = "??" } @article{b-pdsa-65 -, author = "G. S. Brown" -, title = "Point density in stems per acre" -, journal = "New Zealand Forestry Service Research Notes" -, volume = 38 -, year = 1965 -, pages = "1--11" -, update = "97.03 schwarzkopf" +, author = "G. S. Brown" +, title = "Point density in stems per acre" +, journal = "New Zealand Forestry Service Research Notes" +, volume = 38 +, year = 1965 +, pages = "1--11" +, update = "97.03 schwarzkopf" } @article{b-scaps-97 -, author = "J. L. Brown" -, title = "Systems of coordinates associated with points scattered in the plane" -, journal = "Comput. Aided Design" -, volume = 14 -, year = 1997 -, pages = "547--559" -, update = "01.07 devillers" +, author = "J. L. Brown" +, title = "Systems of coordinates associated with points scattered in the plane" +, journal = "Comput. Aided Design" +, volume = 14 +, year = 1997 +, pages = "547--559" +, update = "01.07 devillers" } @article{b-vbddt-91 -, author = "J. L. Brown" -, title = "Vertex Based Data Dependent Triangulations" -, journal = "Comput. Aided Geom. Design" -, volume = 8 -, year = 1991 -, pages = "239--251" -, annote = "Cost of triangulation is sum of costs of nodes (node - cost depends on the triangulation). Local optimizations - to improve the cost. Reports good results using square - of sums of angles between each adjacent facet and - average normal at vertex." +, author = "J. L. Brown" +, title = "Vertex Based Data Dependent Triangulations" +, journal = "Comput. Aided Geom. Design" +, volume = 8 +, year = 1991 +, pages = "239--251" +, annote = "Cost of triangulation is sum of costs of nodes (node + cost depends on the triangulation). Local optimizations + to improve the cost. Reports good results using square + of sums of angles between each adjacent facet and + average normal at vertex." } @article{b-carcg-81 -, author = "K. Q. Brown" -, title = "Comments on ``{Algorithms} for reporting and counting geometric intersections''" -, journal = "IEEE Trans. Comput." -, volume = "C-30" -, year = 1981 -, pages = "147--148" -, succeeds = "bo-arcgi-79" +, author = "K. Q. Brown" +, title = "Comments on ``{Algorithms} for reporting and counting geometric intersections''" +, journal = "IEEE Trans. Comput." +, volume = "C-30" +, year = 1981 +, pages = "147--148" +, succeeds = "bo-arcgi-79" } @techreport{b-fihs-78 -, author = "K. Q. Brown" -, title = "Fast intersection of half spaces" -, type = "Report" -, number = "CMU-CS-78-129" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1978 +, author = "K. Q. Brown" +, title = "Fast intersection of half spaces" +, type = "Report" +, number = "CMU-CS-78-129" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1978 } @phdthesis{b-gtfga-80 -, author = "K. Q. Brown" -, title = "Geometric transforms for fast geometric algorithms" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1980 -, note = "Report CMU-CS-80-101" -, keywords = "doctoral thesis, geometric transformations" -, comments = "UMI DA80-12772, 154 pp." -, update = "93.09 jones, 93.05 jones" +, author = "K. Q. Brown" +, title = "Geometric transforms for fast geometric algorithms" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1980 +, note = "Report CMU-CS-80-101" +, keywords = "doctoral thesis, geometric transformations" +, comments = "UMI DA80-12772, 154 pp." +, update = "93.09 jones, 93.05 jones" } @article{b-vdch-79 -, author = "K. Q. Brown" -, title = "Voronoi diagrams from convex hulls" -, journal = "Inform. Process. Lett." -, volume = 9 -, number = 5 -, year = 1979 -, pages = "223--228" -, update = "98.11 bibrelex" +, author = "K. Q. Brown" +, title = "Voronoi diagrams from convex hulls" +, journal = "Inform. Process. Lett." +, volume = 9 +, number = 5 +, year = 1979 +, pages = "223--228" +, update = "98.11 bibrelex" } @article{b-lfitm-62 -, author = "M. Brown" -, title = "Locally flat imbeddings of topological manifolds" -, journal = "Ann. Math." -, volume = 75 -, year = 1962 -, pages = "331--341" -, update = "97.11 bibrelex" +, author = "M. Brown" +, title = "Locally flat imbeddings of topological manifolds" +, journal = "Ann. Math." +, volume = 75 +, year = 1962 +, pages = "331--341" +, update = "97.11 bibrelex" } @book{b-aa-87 -, author = "M. H. Brown" -, title = "Algorithm Animation" -, series = "ACM Distinguished Dissertations Series" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1987 -, update = "98.03 bibrelex" +, author = "M. H. Brown" +, title = "Algorithm Animation" +, series = "ACM Distinguished Dissertations Series" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1987 +, update = "98.03 bibrelex" } @article{b-eaub-88 -, author = "M. H. Brown" -, title = "Exploring algorithms using Balsa-{II}" -, journal = "Computer" -, volume = 21 -, number = 5 -, month = may -, year = 1988 -, pages = "14--36" -, update = "98.11 bibrelex" +, author = "M. H. Brown" +, title = "Exploring algorithms using Balsa-{II}" +, journal = "Computer" +, volume = 21 +, number = 5 +, month = may +, year = 1988 +, pages = "14--36" +, update = "98.11 bibrelex" } @inproceedings{b-1saf-93 -, author = "M. H. Brown" -, title = "The $1992$ {SRC} animation festival" -, booktitle = "Proc. IEEE Sympos. on Visual Languages" -, month = aug -, year = 1993 -, pages = "116--123" -, update = "98.03 bibrelex" +, author = "M. H. Brown" +, title = "The $1992$ {SRC} animation festival" +, booktitle = "Proc. IEEE Sympos. on Visual Languages" +, month = aug +, year = 1993 +, pages = "116--123" +, update = "98.03 bibrelex" } @techreport{b-zsaam-92 -, author = "M. H. Brown" -, title = "Zeus: {A} system for algorithm animation and multi-view editing" -, type = "Technical {Report}" -, number = 75 -, institution = "Digital Systems Research Center" -, address = "Palo Alto, CA" -, month = feb -, year = 1992 -, update = "98.03 bibrelex" +, author = "M. H. Brown" +, title = "Zeus: {A} system for algorithm animation and multi-view editing" +, type = "Technical {Report}" +, number = 75 +, institution = "Digital Systems Research Center" +, address = "Palo Alto, CA" +, month = feb +, year = 1992 +, update = "98.03 bibrelex" } @article{b-zsaam-92a -, author = "M. H. Brown" -, title = "Zeus: {A} system for algorithm animation and multi-view editing" -, journal = "Comput. Graph." -, volume = 18 -, number = 3 -, year = 1992 -, pages = "177--186" -, update = "98.07 bibrelex" +, author = "M. H. Brown" +, title = "Zeus: {A} system for algorithm animation and multi-view editing" +, journal = "Comput. Graph." +, volume = 18 +, number = 3 +, year = 1992 +, pages = "177--186" +, update = "98.07 bibrelex" } @inproceedings{b-zsaa-91 -, author = "M. H. Brown" -, title = "Zeus: {A} system for algorithms animation" -, booktitle = "Proc. IEEE Workshop on Visual Languages" -, year = 1991 -, update = "98.03 bibrelex" +, author = "M. H. Brown" +, title = "Zeus: {A} system for algorithms animation" +, booktitle = "Proc. IEEE Workshop on Visual Languages" +, year = 1991 +, update = "98.03 bibrelex" } @article{bh-csaa-92 -, author = "M. H. Brown and J. Hershberger" -, title = "Color and sound in algorithms animation" -, journal = "IEEE Comput." -, volume = 25 -, number = 12 -, year = 1992 -, pages = "52--63" -, update = "98.03 bibrelex" +, author = "M. H. Brown and J. Hershberger" +, title = "Color and sound in algorithms animation" +, journal = "IEEE Comput." +, volume = 25 +, number = 12 +, year = 1992 +, pages = "52--63" +, update = "98.03 bibrelex" } @inproceedings{bn-cat-96 -, author = "M. H. Brown and M. A. Najork" -, title = "Collaborative Active Textbooks" -, booktitle = "IEEE Symp. on Visual Languages" -, year = 1996 -, update = "98.07 tamassia" +, author = "M. H. Brown and M. A. Najork" +, title = "Collaborative Active Textbooks" +, booktitle = "IEEE Symp. on Visual Languages" +, year = 1996 +, update = "98.07 tamassia" } @techreport{bn-catwb-96 -, author = "M. H. Brown and M. A. Najork" -, title = "Collaborative active textbooks: {A} web-based algorithm animation system for an electronic classroom" -, type = "Research {Report}" -, number = 142 -, institution = "SRC" -, month = may -, year = 1996 -, update = "98.07 bibrelex" +, author = "M. H. Brown and M. A. Najork" +, title = "Collaborative active textbooks: {A} web-based algorithm animation system for an electronic classroom" +, type = "Research {Report}" +, number = 142 +, institution = "SRC" +, month = may +, year = 1996 +, update = "98.07 bibrelex" } @article{bs-taa-85 -, author = "M. H. Brown and R. Sedgewick" -, title = "Techniques for algorithm animation" -, journal = "IEEE Softw." -, volume = 2 -, number = 1 -, month = jan -, year = 1985 -, pages = "28--39" -, update = "98.07 bibrelex" +, author = "M. H. Brown and R. Sedgewick" +, title = "Techniques for algorithm animation" +, journal = "IEEE Softw." +, volume = 2 +, number = 1 +, month = jan +, year = 1985 +, pages = "28--39" +, update = "98.07 bibrelex" } @article{bt-dadsr-80 -, author = "M. R. Brown and R. E. Tarjan" -, title = "Design and analysis of a data structure for representing sorted lists" -, journal = "SIAM J. Comput." -, volume = 9 -, year = 1980 -, pages = "594--614" -, update = "97.11 bibrelex" +, author = "M. R. Brown and R. E. Tarjan" +, title = "Design and analysis of a data structure for representing sorted lists" +, journal = "SIAM J. Comput." +, volume = 9 +, year = 1980 +, pages = "594--614" +, update = "97.11 bibrelex" } @inproceedings{bg-ooldg-92 -, author = "P. Brown and T. Gargiulo" -, title = "An Object Oriented Layout for Directed Graphs" -, booktitle = "Proc. IEEE Symposium on Assessment of Quality Software Development Tools" -, month = may -, year = 1992 -, pages = "??" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Brown and T. Gargiulo" +, title = "An Object Oriented Layout for Directed Graphs" +, booktitle = "Proc. IEEE Symposium on Assessment of Quality Software Development Tools" +, month = may +, year = 1992 +, pages = "??" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{b-bdn-87 -, author = "D. Brownawell" -, title = "Bounds for the degrees in the {Nullstellensatz}" -, journal = "Annals of Math. Second Series" -, volume = 126 -, number = 3 -, year = 1987 -, pages = "577--591" -, update = "98.03 bibrelex" +, author = "D. Brownawell" +, title = "Bounds for the degrees in the {Nullstellensatz}" +, journal = "Annals of Math. Second Series" +, volume = 126 +, number = 3 +, year = 1987 +, pages = "577--591" +, update = "98.03 bibrelex" } @article{b-lpsl-86 -, author = "D. R. K. Brownrigg" -, title = "Lattice partitions with a straight line" -, journal = "Canad. Math. Bull." -, volume = 29 -, year = 1986 -, pages = "287--294" -, keywords = "discrete geometry" -, update = "95.05 korneenko" +, author = "D. R. K. Brownrigg" +, title = "Lattice partitions with a straight line" +, journal = "Canad. Math. Bull." +, volume = 29 +, year = 1986 +, pages = "287--294" +, keywords = "discrete geometry" +, update = "95.05 korneenko" } @techreport{bdmpw-gas-87 -, author = "A. Browyer and J. Davenport and P. Milne and J. Padget and A. Wallis" -, title = "A geometric algebra system" -, type = "Draft" -, institution = "Schools of Mechanical Engineering and Mathematical Sciences, Univ. Bath" -, address = "Bath, UK" -, year = 1987 -, update = "98.03 bibrelex" +, author = "A. Browyer and J. Davenport and P. Milne and J. Padget and A. Wallis" +, title = "A geometric algebra system" +, type = "Draft" +, institution = "Schools of Mechanical Engineering and Mathematical Sciences, Univ. Bath" +, address = "Bath, UK" +, year = 1987 +, update = "98.03 bibrelex" } @book{bg-cs2e-92 -, author = "J. W. Bruce and P. J. Giblin" -, title = "Curves and Singularities (2nd edition)" -, publisher = "Cambridge University Press" -, address = "New York" -, year = 1992 -, update = "98.03 agarwal" +, author = "J. W. Bruce and P. J. Giblin" +, title = "Curves and Singularities (2nd edition)" +, publisher = "Cambridge University Press" +, address = "New York" +, year = 1992 +, update = "98.03 agarwal" } @article{b-asppg-87 -, author = "M. W. Brucker" -, title = "Approximation of a set of points by points of a grid" -, journal = "Computer" -, volume = 38 -, number = 4 -, year = 1987 -, pages = "341--345" -, keywords = "discrete geometry, approximation, fitting" -, update = "95.05 korneenko" +, author = "M. W. Brucker" +, title = "Approximation of a set of points by points of a grid" +, journal = "Computer" +, volume = 38 +, number = 4 +, year = 1987 +, pages = "341--345" +, keywords = "discrete geometry, approximation, fitting" +, update = "95.05 korneenko" } @incollection{b-ccp-77 -, author = "P. Brucker" -, title = "On the Complexity of Clustering Problems" -, editor = "R. Henn and B. Korte and W. Oletti" -, booktitle = "Optimizing and Operations Research" -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1977 -, update = "98.03 bibrelex" +, author = "P. Brucker" +, title = "On the Complexity of Clustering Problems" +, editor = "R. Henn and B. Korte and W. Oletti" +, booktitle = "Optimizing and Operations Research" +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1977 +, update = "98.03 bibrelex" } @article{bm-stip-88 -, author = "P. Brucker and W. Meyer" -, title = "Scheduling two irregular polygons" -, journal = "Discrete Appl. Math." -, volume = 20 -, number = 2 -, year = 1988 -, pages = "91--100" -, keywords = "polygon, proximity, optimization" -, update = "95.05 korneenko" +, author = "P. Brucker and W. Meyer" +, title = "Scheduling two irregular polygons" +, journal = "Discrete Appl. Math." +, volume = 20 +, number = 2 +, year = 1988 +, pages = "91--100" +, keywords = "polygon, proximity, optimization" +, update = "95.05 korneenko" } @techreport{boo-dspir-91 -, author = "A. Bruckstein and L. O'Gorman and A. Orlitsky" -, title = "Design of shapes for precise image registration" -, type = "Technical Report" -, institution = "AT\&T" -, year = 1991 -, update = "98.11 bibrelex" +, author = "A. Bruckstein and L. O'Gorman and A. Orlitsky" +, title = "Design of shapes for precise image registration" +, type = "Technical Report" +, institution = "AT\&T" +, year = 1991 +, update = "98.11 bibrelex" } @article{bn-dipcr-95 -, author = "A. M. Bruckstein and A. N. Netravali" -, title = "On differential invariants of planar curves and recognizing partially occluded planar shapes" -, journal = "Ann. Math. Artif. Intell." -, volume = 13 -, year = 1995 -, pages = "227--250" -, keywords = "matching, shape recognition, vision" -, update = "98.07 bibrelex, 95.09 mitchell" +, author = "A. M. Bruckstein and A. N. Netravali" +, title = "On differential invariants of planar curves and recognizing partially occluded planar shapes" +, journal = "Ann. Math. Artif. Intell." +, volume = 13 +, year = 1995 +, pages = "227--250" +, keywords = "matching, shape recognition, vision" +, update = "98.07 bibrelex, 95.09 mitchell" } @inproceedings{b-agpc-88 -, author = "B. Br{\"u}derlin" -, title = "Automatizing geometric proofs and constructions" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "232--252" -, update = "00.03 bibrelex, 99.11 bibrelex, 98.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "B. Br{\"u}derlin" +, title = "Automatizing geometric proofs and constructions" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "232--252" +, update = "00.03 bibrelex, 99.11 bibrelex, 98.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @inproceedings{b-rcga-90 -, author = "Beat Br{\"u}derlin" -, title = "Robustness of Computational Geometry Algorithms" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 9 -, update = "00.03 bibrelex" +, author = "Beat Br{\"u}derlin" +, title = "Robustness of Computational Geometry Algorithms" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 9 +, update = "00.03 bibrelex" } @inproceedings{b-afvab-91 -, author = "B. Bruenning" -, title = "Air Force Vulnerability Analyses from {BRL-CAD} models" -, booktitle = "Proc. BRL-CAD Symposium `91" -, publisher = "American Defense Preparadness Assoc." -, address = "Aberdeen Proving Ground, MD" -, year = 1991 -, pages = "1--13" -, update = "95.05 agarwal" +, author = "B. Bruenning" +, title = "Air Force Vulnerability Analyses from {BRL-CAD} models" +, booktitle = "Proc. BRL-CAD Symposium `91" +, publisher = "American Defense Preparadness Assoc." +, address = "Aberdeen Proving Ground, MD" +, year = 1991 +, pages = "1--13" +, update = "95.05 agarwal" } @misc{bw-dtnt-87 -, author = "A. Bruggemann-Klein and D. Wood" -, title = "Drawing Trees Nicely with {TEX}" -, institution = "Department of Computer Science, University of Waterloo" -, year = 1987 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "A. Bruggemann-Klein and D. Wood" +, title = "Drawing Trees Nicely with {TEX}" +, institution = "Department of Computer Science, University of Waterloo" +, year = 1987 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{bm-sdcs-71 -, author = "H. Bruggesser and P. Mani" -, title = "Shellable decompositions of cells and spheres" -, journal = "Math. Scand." -, volume = 29 -, year = 1971 -, pages = "197--205" +, author = "H. Bruggesser and P. Mani" +, title = "Shellable decompositions of cells and spheres" +, journal = "Math. Scand." +, volume = 29 +, year = 1971 +, pages = "197--205" } @article{b-ttt-84 -, author = "G. Br{\"u}gner" -, title = "Three-triangle-tangram" -, journal = "BIT" -, volume = 24 -, year = 1984 -, pages = "380--382" +, author = "G. Br{\"u}gner" +, title = "Three-triangle-tangram" +, journal = "BIT" +, volume = 24 +, year = 1984 +, pages = "380--382" } @book{b-navw-54 -, author = "N. G. de Bruijn" -, title = "Nieuw Archief voor Wiskunde" -, volume = 2 -, publisher = "??" -, year = 1954 -, update = "98.03 bibrelex" +, author = "N. G. de Bruijn" +, title = "Nieuw Archief voor Wiskunde" +, volume = 2 +, publisher = "??" +, year = 1954 +, update = "98.03 bibrelex" } @incollection{b-p11a-55 -, author = "N. G. de Bruijn" -, title = "Problems 17 and 18. Answers" -, booktitle = "Opgaven met de oplossingen" -, volume = 20 -, publisher = "??" -, year = 1955 -, pages = "19--20" -, update = "98.03 bibrelex" +, author = "N. G. de Bruijn" +, title = "Problems 17 and 18. Answers" +, booktitle = "Opgaven met de oplossingen" +, volume = 20 +, publisher = "??" +, year = 1955 +, pages = "19--20" +, update = "98.03 bibrelex" } @article{be-cp-48 -, author = "N. G. de Bruin and P. Erd{\H o}s" -, title = "On a combinatorial problem" -, journal = "Proc. Konink. Nederl. Akad. Wetensch. Ser. A" -, volume = 51 -, year = 1948 -, pages = "1277--1279" -, note = "Indagationes Math. 10, 421-423" -, update = "98.03 bibrelex" +, author = "N. G. de Bruin and P. Erd{\H o}s" +, title = "On a combinatorial problem" +, journal = "Proc. Konink. Nederl. Akad. Wetensch. Ser. A" +, volume = 51 +, year = 1948 +, pages = "1277--1279" +, note = "Indagationes Math. 10, 421-423" +, update = "98.03 bibrelex" } @inproceedings{b-sspds-91 -, author = "A. M. Brukstein" -, title = "Self-similarity properties of digitized straight lines" -, booktitle = "Vision Geom.: Proc. AMS Spec. Sess. Hoboken, NJ 1989" -, publisher = "AMS Press" -, year = 1991 -, pages = "1--20" -, keywords = "digital geometry" -, update = "95.05 korneenko" +, author = "A. M. Brukstein" +, title = "Self-similarity properties of digitized straight lines" +, booktitle = "Vision Geom.: Proc. AMS Spec. Sess. Hoboken, NJ 1989" +, publisher = "AMS Press" +, year = 1991 +, pages = "1--20" +, keywords = "digital geometry" +, update = "95.05 korneenko" } @article{bn-srueo-90 -, author = "P. Brunet and I. Navazo" -, title = "Solid representations using extended octrees" -, journal = "ACM Trans. Graph." -, volume = 9 -, year = 1990 -, pages = "170--197" +, author = "P. Brunet and I. Navazo" +, title = "Solid representations using extended octrees" +, journal = "ACM Trans. Graph." +, volume = 9 +, year = 1990 +, pages = "170--197" } @article{bmfn-psbzi- -, author = "A. Br{\"u}ngger and A. Marzetta and K. Fukuda and J. Nievergelt" -, title = "The parallel search bench {ZRAM} and its applications" -, journal = "Ann. Oper. Res." -, volume = "??" -, year = "??" -, note = "To appear" -, update = "98.07 bibrelex" +, author = "A. Br{\"u}ngger and A. Marzetta and K. Fukuda and J. Nievergelt" +, title = "The parallel search bench {ZRAM} and its applications" +, journal = "Ann. Oper. Res." +, volume = "??" +, year = "??" +, note = "To appear" +, update = "98.07 bibrelex" } @article{bjy-sonop-91 -, author = "D. Bruschi and D. Joseph and P. Young" -, title = "A structural overview of {NP} optimization problems" -, journal = "Algorithms Rev." -, volume = 2 -, number = 1 -, year = 1991 -, pages = "1--26" +, author = "D. Bruschi and D. Joseph and P. Young" +, title = "A structural overview of {NP} optimization problems" +, journal = "Algorithms Rev." +, volume = 2 +, number = 1 +, year = 1991 +, pages = "1--26" } @inproceedings{bf-fi3dg-96 -, author = "I. Bru{\ss} and A. Frick" -, title = "Fast Interactive {3-D} Graph Visualization" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "99--110" -, keywords = "graph drawing, 3D, straight-line" -, update = "97.03 tamassia, 96.09 tamassia, 96.04 garg" +, author = "I. Bru{\ss} and A. Frick" +, title = "Fast Interactive {3-D} Graph Visualization" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "99--110" +, keywords = "graph drawing, 3D, straight-line" +, update = "97.03 tamassia, 96.09 tamassia, 96.04 garg" } @article{bd-tdsbt-90 -, author = "Elisabetta Bruzzone and Leila {De Floriani}" -, title = "Two data structures for building tetrahedralizations" -, journal = "Visual Comput." -, volume = 6 -, number = 5 -, month = nov -, year = 1990 -, pages = "266--283" -, keywords = "solid modeling, decomposition models, tetrahedralization, Delaunay triangulation, data structures" +, author = "Elisabetta Bruzzone and Leila {De Floriani}" +, title = "Two data structures for building tetrahedralizations" +, journal = "Visual Comput." +, volume = 6 +, number = 5 +, month = nov +, year = 1990 +, pages = "266--283" +, keywords = "solid modeling, decomposition models, tetrahedralization, Delaunay triangulation, data structures" } @inproceedings{bdp-mtdt-89 -, author = "Elisabetta Bruzzone and Leila {De Floriani} and Enrico Puppo" -, title = "Manipulating Three-Dimensional Triangulations" -, editor = "W. Litwin and H. Scheck" -, booktitle = "Foundations of Data Organization and Algorithms: 3rd International Conference, FODO 1989" -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1989 -, update = "96.09 agarwal" -, annote = "Describes data structure for representing 3D - triangulations. Relationships VE, EV, EF, FE, FT, TF - are explicitly represented and the others can be - deduced from these in time proportional to the size of - the output." +, author = "Elisabetta Bruzzone and Leila {De Floriani} and Enrico Puppo" +, title = "Manipulating Three-Dimensional Triangulations" +, editor = "W. Litwin and H. Scheck" +, booktitle = "Foundations of Data Organization and Algorithms: 3rd International Conference, FODO 1989" +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1989 +, update = "96.09 agarwal" +, annote = "Describes data structure for representing 3D + triangulations. Relationships VE, EV, EF, FE, FT, TF + are explicitly represented and the others can be + deduced from these in time proportional to the size of + the output." } @article{bs-ftmsb-85 -, author = "R. Bryant and D. Singerman" -, title = "Foundations of the theory of maps on surfaces with boundaries" -, journal = "Quart. J. Math. Oxford" -, volume = 2 -, number = 36 -, year = 1985 -, pages = "17--41" -, update = "98.07 bibrelex" +, author = "R. Bryant and D. Singerman" +, title = "Foundations of the theory of maps on surfaces with boundaries" +, journal = "Quart. J. Math. Oxford" +, volume = 2 +, number = 36 +, year = 1985 +, pages = "17--41" +, update = "98.07 bibrelex" } @article{b-slrpg-89 -, author = "V. W. Bryant" -, title = "Straight line representations of planar graphs" -, journal = "Elem. Math." -, volume = 44 -, number = 3 -, year = 1989 -, pages = "64--66" -, keywords = "geometric graphs" -, update = "95.05 korneenko" +, author = "V. W. Bryant" +, title = "Straight line representations of planar graphs" +, journal = "Elem. Math." +, volume = 44 +, number = 3 +, year = 1989 +, pages = "64--66" +, keywords = "geometric graphs" +, update = "95.05 korneenko" } @article{bz-trdpo-93 -, author = "T. H. Brylawski and G. M. Ziegler" -, title = "Topological representation of dual pairs of oriented matroids" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "237--240" -, update = "96.05 pocchiola" +, author = "T. H. Brylawski and G. M. Ziegler" +, title = "Topological representation of dual pairs of oriented matroids" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "237--240" +, update = "96.05 pocchiola" } @article{b-omt-74 -, author = "O. Bryngdahl" -, title = "Optical map transformations" -, journal = "Optics Commun." -, volume = 10 -, number = 2 -, year = 1974 -, pages = "164--168" -, update = "97.11 bibrelex" +, author = "O. Bryngdahl" +, title = "Optical map transformations" +, journal = "Optics Commun." +, volume = 10 +, number = 2 +, year = 1974 +, pages = "164--168" +, update = "97.11 bibrelex" } @article{b-gto-74 -, author = "O. Brynghdahl" -, title = "Geometrical transformations in optics" -, journal = "J. Optical Soc. Amer." -, volume = 64 -, number = 8 -, year = 1974 -, pages = "1092--1099" -, update = "97.11 bibrelex" +, author = "O. Brynghdahl" +, title = "Geometrical transformations in optics" +, journal = "J. Optical Soc. Amer." +, volume = 64 +, number = 8 +, year = 1974 +, pages = "1092--1099" +, update = "97.11 bibrelex" } @inproceedings{bgmst-ntdfl-96 -, author = "Nader Bshouty and Sally A. Goldman and H. David Mathias and Subhash Suri and Hisao Tamaki" -, title = "Noise-Tolerant Distribution-Free Learning of General Geometric Concepts" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '96" -, site = "Philadelphia, PA" -, month = may -, year = 1996 -, pages = "151--160" -, update = "00.03 smid, 98.07 bibrelex, 98.03 mitchell" +, author = "Nader Bshouty and Sally A. Goldman and H. David Mathias and Subhash Suri and Hisao Tamaki" +, title = "Noise-Tolerant Distribution-Free Learning of General Geometric Concepts" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '96" +, site = "Philadelphia, PA" +, month = may +, year = 1996 +, pages = "151--160" +, update = "00.03 smid, 98.07 bibrelex, 98.03 mitchell" } @incollection{b-lbact-91 -, author = "N. H. Bshouty" -, title = "Lower bounds for algebraic computation trees of functions with finite domains" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 497 -, year = 1991 -, pages = "55--65" -, keywords = "lower bounds" -, update = "95.05 korneenko" +, author = "N. H. Bshouty" +, title = "Lower bounds for algebraic computation trees of functions with finite domains" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 497 +, year = 1991 +, pages = "55--65" +, keywords = "lower bounds" +, update = "95.05 korneenko" } @inproceedings{b-amnlc-88 -, author = "B. Buchberger" -, title = "Algebraic methods for non-linear computational geometry" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "81--82" -, cites = "ab-arag-88, acm-cad1b-84, b-eakfd-70, b-gbamp-85, b-agbnc-88, bck-amgr-88, c-qercf-75, e-acg-87, ps-cgi-85, r-da-50, w-bpmtp-84, ZZZ" -, update = "98.03 bibrelex" +, author = "B. Buchberger" +, title = "Algebraic methods for non-linear computational geometry" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "81--82" +, cites = "ab-arag-88, acm-cad1b-84, b-eakfd-70, b-gbamp-85, b-agbnc-88, bck-amgr-88, c-qercf-75, e-acg-87, ps-cgi-85, r-da-50, w-bpmtp-84, ZZZ" +, update = "98.03 bibrelex" } @incollection{b-agbnc-88 -, author = "B. Buchberger" -, title = "Applications of {Gr\"obner} bases in nonlinear computational geometry" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 296 -, year = 1988 -, pages = "52--80" -, keywords = "algebraic geometry, motion planning" -, update = "95.05 korneenko" +, author = "B. Buchberger" +, title = "Applications of {Gr\"obner} bases in nonlinear computational geometry" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 296 +, year = 1988 +, pages = "52--80" +, keywords = "algebraic geometry, motion planning" +, update = "95.05 korneenko" } @article{b-aklag-70 -, author = "Bruno Buchberger" -, title = "Ein algorithmisches {Kriterium} f{\"u}r die {L{\"o}sbarkeit} eines algebraischen {Gleichungssystems}" -, journal = "Aequationes Mathematicae" -, volume = 4 -, number = 3 -, year = 1970 -, pages = "374--383" -, update = "00.03 bibrelex" +, author = "Bruno Buchberger" +, title = "Ein algorithmisches {Kriterium} f{\"u}r die {L{\"o}sbarkeit} eines algebraischen {Gleichungssystems}" +, journal = "Aequationes Mathematicae" +, volume = 4 +, number = 3 +, year = 1970 +, pages = "374--383" +, update = "00.03 bibrelex" } @article{b-eakfd-70 -, author = "B. Buchberger" -, title = "Ein algorithmisches {Kriterium} f{\"u}r die {L{\"o}sbarkeit} eines algebraischen {Gleichungssystems}" -, journal = "Aequationes Math." -, volume = 4 -, number = 3 -, year = 1970 -, pages = "374--383" -, update = "98.03 bibrelex" +, author = "B. Buchberger" +, title = "Ein algorithmisches {Kriterium} f{\"u}r die {L{\"o}sbarkeit} eines algebraischen {Gleichungssystems}" +, journal = "Aequationes Math." +, volume = 4 +, number = 3 +, year = 1970 +, pages = "374--383" +, update = "98.03 bibrelex" } @incollection{b-gbamp-85 -, author = "B. Buchberger" -, title = "{Gr{\"o}bner} Bases: {An} Algorithmic Method in Polynomial Ideal Theory" -, chapter = 6 -, editor = "N. Bose" -, booktitle = "Multidimensional Systems Theory" -, publisher = "Reidel Publishing" -, year = 1985 -, update = "01.07 devillers, 97.11 bibrelex" +, author = "B. Buchberger" +, title = "{Gr{\"o}bner} Bases: {An} Algorithmic Method in Polynomial Ideal Theory" +, chapter = 6 +, editor = "N. Bose" +, booktitle = "Multidimensional Systems Theory" +, publisher = "Reidel Publishing" +, year = 1985 +, update = "01.07 devillers, 97.11 bibrelex" } @article{b-hbfcp-87 -, author = "B. Buchberger" -, title = "History and basic features of the critical-pair/completion procedure" -, journal = "J. Symbolic Comput." -, volume = 3 -, year = 1987 -, pages = "3--38" -, update = "98.03 bibrelex" +, author = "B. Buchberger" +, title = "History and basic features of the critical-pair/completion procedure" +, journal = "J. Symbolic Comput." +, volume = 3 +, year = 1987 +, pages = "3--38" +, update = "98.03 bibrelex" } @incollection{b-wcgbd-89 -, author = "B. Buchberger" -, title = "What can {Gr{\"o}bner} bases do for computational geometry and robotics?" -, editor = "D. Kapur and J. L. Mundy" -, booktitle = "Geometric Reasoning" -, publisher = "MIT Press" -, year = 1989 -, pages = "415--447" -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "B. Buchberger" +, title = "What can {Gr{\"o}bner} bases do for computational geometry and robotics?" +, editor = "D. Kapur and J. L. Mundy" +, booktitle = "Geometric Reasoning" +, publisher = "MIT Press" +, year = 1989 +, pages = "415--447" +, update = "99.11 bibrelex, 98.03 bibrelex" } @book{bcl-casac-82 -, title = "Computer Algebra: Symbolic and Algebraic Computation" -, editor = "B. Buchberger and G. Collins and R. Loos" -, series = "Computing Supplementum" -, volume = 4 -, edition = "1st" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1982 -, update = "99.11 bibrelex, 98.03 bibrelex" +, title = "Computer Algebra: Symbolic and Algebraic Computation" +, editor = "B. Buchberger and G. Collins and R. Loos" +, series = "Computing Supplementum" +, volume = 4 +, edition = "1st" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1982 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{bck-amgr-88 -, author = "B. Buchberger and G. E. Collins and B. Kutzler" -, title = "Algebraic methods for geometric reasoning" -, journal = "Annu. Rev. Comput. Sci." -, volume = 3 -, year = 1988 -, pages = "85--119" +, author = "B. Buchberger and G. E. Collins and B. Kutzler" +, title = "Algebraic methods for geometric reasoning" +, journal = "Annu. Rev. Comput. Sci." +, volume = 3 +, year = 1988 +, pages = "85--119" } @book{bcla-casac-83 -, title = "Computer Algebra: Symbolic and Algebraic Computation" -, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" -, edition = "2nd" -, publisher = "Springer-Verlag" -, year = 1983 -, update = "99.11 bibrelex, 98.03 bibrelex" +, title = "Computer Algebra: Symbolic and Algebraic Computation" +, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" +, edition = "2nd" +, publisher = "Springer-Verlag" +, year = 1983 +, update = "99.11 bibrelex, 98.03 bibrelex" } @incollection{bl-as-83 -, author = "B. Buchberger and R. Loos" -, title = "Algebraic simplification" -, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" -, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" -, publisher = "Springer-Verlag" -, year = 1983 -, pages = "11--43" -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "B. Buchberger and R. Loos" +, title = "Algebraic simplification" +, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" +, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" +, publisher = "Springer-Verlag" +, year = 1983 +, pages = "11--43" +, update = "99.11 bibrelex, 98.03 bibrelex" } @proceedings{bs-ewcg-95 -, title = "Abstracts 11th European Workshop Comput. Geom." -, editor = "Bruno Buchberger and Sabine Stifter" -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, update = "00.03 bibrelex" +, title = "Abstracts 11th European Workshop Comput. Geom." +, editor = "Bruno Buchberger and Sabine Stifter" +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, update = "00.03 bibrelex" } @incollection{be-ewcst-83 -, author = "W. Bucher and H. Edelsbrunner" -, title = "On Expected- and Worst-Case Segment Trees" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "109--125" -, keywords = "data structuring, searching, segment trees, worst-case analysis, expected-case analysis, intervals" -, update = "01.04 icking" +, author = "W. Bucher and H. Edelsbrunner" +, title = "On Expected- and Worst-Case Segment Trees" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "109--125" +, keywords = "data structuring, searching, segment trees, worst-case analysis, expected-case analysis, intervals" +, update = "01.04 icking" } @article{bv-ev-76 -, author = "Edwin Buchman and F. A. Valentine" -, title = "External visibility" -, journal = "Pacific J. Math." -, volume = 64 -, number = 2 -, year = 1976 -, pages = "333--340" +, author = "Edwin Buchman and F. A. Valentine" +, title = "External visibility" +, journal = "Pacific J. Math." +, volume = 64 +, number = 2 +, year = 1976 +, pages = "333--340" } @article{b-crach-86 -, author = "C. Buchta" -, title = "On a conjecture of {R}. {E}. {Miles} about the convex hull of random points" -, journal = "Monatsch. Math." -, volume = 102 -, year = 1986 -, pages = "91--102" -, keywords = "convex hull, probabilistic geometry" -, update = "95.05 korneenko" +, author = "C. Buchta" +, title = "On a conjecture of {R}. {E}. {Miles} about the convex hull of random points" +, journal = "Monatsch. Math." +, volume = 102 +, year = 1986 +, pages = "91--102" +, keywords = "convex hull, probabilistic geometry" +, update = "95.05 korneenko" } @article{b-nsrsl-87 -, author = "C. Buchta" -, title = "On nonnegative solutions of random systems of linear inequalities" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "85--95" +, author = "C. Buchta" +, title = "On nonnegative solutions of random systems of linear inequalities" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "85--95" } @article{b-anmsv-89 -, author = "C. Buchta" -, title = "On the average number of maxima in a set of vectors" -, journal = "Inform. Process. Lett." -, volume = 33 -, number = 2 -, year = 1989 -, pages = "63--66" -, keywords = "probabilistic geometry" -, update = "95.05 korneenko" +, author = "C. Buchta" +, title = "On the average number of maxima in a set of vectors" +, journal = "Inform. Process. Lett." +, volume = 33 +, number = 2 +, year = 1989 +, pages = "63--66" +, keywords = "probabilistic geometry" +, update = "95.05 korneenko" } @article{b-ps-43 -, author = "R. C. Buck" -, title = "Partition of space" -, journal = "Amer. Math. Monthly" -, volume = 50 -, number = 9 -, year = 1943 -, pages = "541--544" -, keywords = "arrangements, $d$-dimensional, partition" -, update = "95.05 korneenko" +, author = "R. C. Buck" +, title = "Partition of space" +, journal = "Amer. Math. Monthly" +, volume = 50 +, number = 9 +, year = 1943 +, pages = "541--544" +, keywords = "arrangements, $d$-dimensional, partition" +, update = "95.05 korneenko" } @inproceedings{b-dcac4-88 -, author = "C. E. Buckley" -, title = "A divide-and-conquer algorithm for computing $4$-dimensional convex hulls" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "113--135" -, update = "00.03 bibrelex, 99.11 bibrelex, 98.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "C. E. Buckley" +, title = "A divide-and-conquer algorithm for computing $4$-dimensional convex hulls" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "113--135" +, update = "00.03 bibrelex, 99.11 bibrelex, 98.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @inproceedings{bl-pmcpp-85 -, author = "C. E. Buckley and l. J. Leifer" -, title = "A proximity metric for continuum pah planning" -, booktitle = "Proc. 9th Internat. Conf. Artificial Intell." -, year = 1985 -, pages = "1096--1102" -, update = "98.07 bibrelex" +, author = "C. E. Buckley and l. J. Leifer" +, title = "A proximity metric for continuum pah planning" +, booktitle = "Proc. 9th Internat. Conf. Artificial Intell." +, year = 1985 +, pages = "1096--1102" +, update = "98.07 bibrelex" } @phdthesis{b-ptcms-87 -, author = "S. J. Buckley" -, title = "Planning and teaching compliant motion strategies" -, school = "Department of Electrical Engineering and Computer Science, MIT" -, year = 1987 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "S. J. Buckley" +, title = "Planning and teaching compliant motion strategies" +, school = "Department of Electrical Engineering and Computer Science, MIT" +, year = 1987 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{befl-evcpp-96 -, author = "B. B{\"u}eler and A. Enge and K. Fukuda and H.-J. L{\"u}thi" -, title = "Exact Volume Computations for Polytopes: a Practical Study" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "57--64" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "B. B{\"u}eler and A. Enge and K. Fukuda and H.-J. L{\"u}thi" +, title = "Exact Volume Computations for Polytopes: a Practical Study" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "57--64" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{bh-amgfe-90 -, author = "T. D. Bui and V. N. Hanh" -, title = "Automatic Mesh Generation for Finite-Element Analysis" -, journal = "Computing" -, volume = 44 -, number = 4 -, year = 1990 -, pages = "305--329" -, annote = "Your basic selection algorithm for triangulation." +, author = "T. D. Bui and V. N. Hanh" +, title = "Automatic Mesh Generation for Finite-Element Analysis" +, journal = "Computing" +, volume = 44 +, number = 4 +, year = 1990 +, pages = "305--329" +, annote = "Your basic selection algorithm for triangulation." } @phdthesis{b-ptrpn-94 -, author = "X.-N. Bui" -, title = "Planification de trajectoire pour un robot polygonal non-holonome dans un environnement polygonal" -, type = "Th\`{e}se de doctorat en sciences" -, school = "{\'E}cole Nationale Sup\'erieure des Mines de Paris" -, address = "France" -, year = 1994 -, keywords = "doctoral thesis" -, update = "98.07 devillers" +, author = "X.-N. Bui" +, title = "Planification de trajectoire pour un robot polygonal non-holonome dans un environnement polygonal" +, type = "Th\`{e}se de doctorat en sciences" +, school = "{\'E}cole Nationale Sup\'erieure des Mines de Paris" +, address = "France" +, year = 1994 +, keywords = "doctoral thesis" +, update = "98.07 devillers" } @inproceedings{bsbl-spsdn-94 -, author = "X.-N. Bui and P. Sou{\`e}res and J.-D. Boissonnat and J.-P. Laumond" -, title = "Shortest path synthesis for {Dubins} nonholonomic robot" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "San Diego, CA" -, year = 1994 -, pages = "2--7" -, update = "97.11 bibrelex" +, author = "X.-N. Bui and P. Sou{\`e}res and J.-D. Boissonnat and J.-P. Laumond" +, title = "Shortest path synthesis for {Dubins} nonholonomic robot" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "San Diego, CA" +, year = 1994 +, pages = "2--7" +, update = "97.11 bibrelex" } @techreport{bsbl-spsnr-93 -, author = "Xuan-Nam Bui and Philippe Soueres and Jean-Daniel Boissonnat and Jean-Paul Laumond" -, title = "The Shortest Path Synthesis for Non-holonomic Robots Moving Forwards" -, type = "Research {Report}" -, number = 2153 -, institution = "INRIA" -, month = dec -, year = 1993 -, update = "98.03 mitchell" -, abstract = "We calculate the partition +, author = "Xuan-Nam Bui and Philippe Soueres and Jean-Daniel Boissonnat and Jean-Paul Laumond" +, title = "The Shortest Path Synthesis for Non-holonomic Robots Moving Forwards" +, type = "Research {Report}" +, number = 2153 +, institution = "INRIA" +, month = dec +, year = 1993 +, update = "98.03 mitchell" +, abstract = "We calculate the partition of the configuration space $I\!\!R^2 x S^1$ of a car-like robot, only moving forwards, with respect to the type of the length optimal paths. This kind of robot is subject to @@ -28627,556 +28627,556 @@ @techreport{bsbl-spsnr-93 } @article{bs-aulbr-66 -, author = "R. Bulirsch and J. Stoer" -, title = "Asymptotic upper and lower bounds for results of extrapolation methods" -, journal = "Numer. Math." -, volume = 8 -, year = 1966 -, pages = "93--104" -, update = "98.07 bibrelex" +, author = "R. Bulirsch and J. Stoer" +, title = "Asymptotic upper and lower bounds for results of extrapolation methods" +, journal = "Numer. Math." +, volume = 8 +, year = 1966 +, pages = "93--104" +, update = "98.07 bibrelex" } @article{bs-nqe-67 -, author = "R. Bulirsch and J. Stoer" -, title = "Numerical quadrature by extrapolation" -, journal = "Numer. Math." -, volume = 9 -, year = 1967 -, pages = "271--278" -, update = "98.07 bibrelex" +, author = "R. Bulirsch and J. Stoer" +, title = "Numerical quadrature by extrapolation" +, journal = "Numer. Math." +, volume = 9 +, year = 1967 +, pages = "271--278" +, update = "98.07 bibrelex" } @article{b-hs1-61 -, author = "R. K. Bullough" -, title = "On homometric sets, 1" -, journal = "Acta Crystallogr." -, volume = 14 -, year = 1961 -, pages = "257--268" -, keywords = "reconstruction, points" -, update = "95.05 korneenko" +, author = "R. K. Bullough" +, title = "On homometric sets, 1" +, journal = "Acta Crystallogr." +, volume = 14 +, year = 1961 +, pages = "257--268" +, keywords = "reconstruction, points" +, update = "95.05 korneenko" } @article{b-hs2-64 -, author = "R. K. Bullough" -, title = "On homometric sets, 2" -, journal = "Acta Crystallogr." -, volume = 17 -, year = 1964 -, pages = "295--308" -, keywords = "reconstruction, points" -, update = "95.05 korneenko" +, author = "R. K. Bullough" +, title = "On homometric sets, 2" +, journal = "Acta Crystallogr." +, volume = 17 +, year = 1964 +, pages = "295--308" +, keywords = "reconstruction, points" +, update = "95.05 korneenko" } @article{bsh-sgfgt-84 -, author = "A. B{\"u}low-Olsen and N. R. {Sakevile Hamilton} and M. J. Hutchings" -, title = "A study of growth form in genets of {Trifolium repens L.} as affected by intra- and interplant contacts" -, journal = "Oecologia" -, volume = "??" -, year = 1984 -, update = "97.11 bibrelex" +, author = "A. B{\"u}low-Olsen and N. R. {Sakevile Hamilton} and M. J. Hutchings" +, title = "A study of growth form in genets of {Trifolium repens L.} as affected by intra- and interplant contacts" +, journal = "Oecologia" +, volume = "??" +, year = 1984 +, update = "97.11 bibrelex" } @book{b-mpg-69 -, author = "R. J. Bumcrot" -, title = "Modern Projective Geometry" -, publisher = "Holt, Rinehart \& Winston" -, address = "New York, NY" -, year = 1969 -, update = "97.11 bibrelex" +, author = "R. J. Bumcrot" +, title = "Modern Projective Geometry" +, publisher = "Holt, Rinehart \& Winston" +, address = "New York, NY" +, year = 1969 +, update = "97.11 bibrelex" } @book{bz-gi-88 -, author = "Y. D. Burago and V. A. Zalgaller" -, title = "Geometric Inequalities" -, publisher = "Springer-Verlag" -, year = 1988 -, note = "Translated from the Russian" -, update = "97.11 bibrelex" +, author = "Y. D. Burago and V. A. Zalgaller" +, title = "Geometric Inequalities" +, publisher = "Springer-Verlag" +, year = 1988 +, note = "Translated from the Russian" +, update = "97.11 bibrelex" } @article{b-gafp-74 -, author = "C. A. Burdet" -, title = "Generating all faces of a polyhedron" -, journal = "SIAM J. Appl. Math." -, volume = 26 -, year = 1974 -, pages = "479--489" +, author = "C. A. Burdet" +, title = "Generating all faces of a polyhedron" +, journal = "SIAM J. Appl. Math." +, volume = 26 +, year = 1974 +, pages = "479--489" } @book{bcs-act-96 -, author = "Peter B{\"u}rgisser and Michael Clausen and M. Amin Shokrollahi" -, title = "Algebraic Complexity Theory" -, series = "Grundlehren der mathematischen Wissenschaften" -, volume = 315 -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1996 -, isbn = "0-387-60582-7" -, update = "97.07 agarwal+smid" +, author = "Peter B{\"u}rgisser and Michael Clausen and M. Amin Shokrollahi" +, title = "Algebraic Complexity Theory" +, series = "Grundlehren der mathematischen Wissenschaften" +, volume = 315 +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1996 +, isbn = "0-387-60582-7" +, update = "97.07 agarwal+smid" } @article{b-ospre-86 -, author = "R. E. Burkard" -, title = "Optimal schedules for periodically recurring events" -, journal = "Discrete Appl. Math." -, volume = 15 -, year = 1986 -, pages = "167--180" -, keywords = "scheduling, convex polygons, regular polygons" -, update = "96.01 mitchell" -, abstract = "Place two regular polygons in a circle so as to minimize - the maximum separation between two vertices along the circle." +, author = "R. E. Burkard" +, title = "Optimal schedules for periodically recurring events" +, journal = "Discrete Appl. Math." +, volume = 15 +, year = 1986 +, pages = "167--180" +, keywords = "scheduling, convex polygons, regular polygons" +, update = "96.01 mitchell" +, abstract = "Place two regular polygons in a circle so as to minimize + the maximum separation between two vertices along the circle." } @article{bddvw-wsctsps-98 -, author = "Rainer E. Burkard and Vladimir G. Deineko and Ren{\'e} van Dal and Jack A. A. van der Veen and Gerhard J. Woeginger" -, title = "Well-Solvable Special Cases of the Traveling Salesman Problem: A Survey" -, journal = "SIAM Rev." -, volume = 40 -, number = 3 -, year = 1998 -, pages = "496 -- 546" -, keywords = "survey paper, traveling salesman problem, combinatorial optimization, polynomial time algorithm, computational complexity" -, update = "98.11 pocchiola" -, abstract = "The traveling salesman problem (TSP) belongs to the most basic, most important, and most investigated problems in combinatorial optimization. Although it is an ${\cal NP}$-hard problem, many of its special cases can be solved efficiently in polynomial time. We survey these special cases with emphasis on the results that have been obtained during the decade 1985--1995. This survey complements an earlier survey from 1985 compiled by Gilmore, Lawler, and Shmoys [The Traveling Salesman Problem---A Guided Tour of Combinatorial Optimization, Wiley, Chichester, pp. 87--143]" +, author = "Rainer E. Burkard and Vladimir G. Deineko and Ren{\'e} van Dal and Jack A. A. van der Veen and Gerhard J. Woeginger" +, title = "Well-Solvable Special Cases of the Traveling Salesman Problem: A Survey" +, journal = "SIAM Rev." +, volume = 40 +, number = 3 +, year = 1998 +, pages = "496 -- 546" +, keywords = "survey paper, traveling salesman problem, combinatorial optimization, polynomial time algorithm, computational complexity" +, update = "98.11 pocchiola" +, abstract = "The traveling salesman problem (TSP) belongs to the most basic, most important, and most investigated problems in combinatorial optimization. Although it is an ${\cal NP}$-hard problem, many of its special cases can be solved efficiently in polynomial time. We survey these special cases with emphasis on the results that have been obtained during the decade 1985--1995. This survey complements an earlier survey from 1985 compiled by Gilmore, Lawler, and Shmoys [The Traveling Salesman Problem---A Guided Tour of Combinatorial Optimization, Wiley, Chichester, pp. 87--143]" } @article{bhr-saucf-91 -, author = "R. E. Burkard and H. W. Hamacher and G{\"u}nter Rote" -, title = "Sandwich approximation of univariate convex functions with an application to separable convex programming" -, journal = "Naval Res. Logistics" -, volume = 38 -, year = 1991 -, pages = "911--924" -, comments = "final (modified) version of the techreport bhr-acfam-87" -, cites = "r-crsaa-90" -, update = "98.03 mitchell, 93.09 rote" +, author = "R. E. Burkard and H. W. Hamacher and G{\"u}nter Rote" +, title = "Sandwich approximation of univariate convex functions with an application to separable convex programming" +, journal = "Naval Res. Logistics" +, volume = 38 +, year = 1991 +, pages = "911--924" +, comments = "final (modified) version of the techreport bhr-acfam-87" +, cites = "r-crsaa-90" +, update = "98.03 mitchell, 93.09 rote" } @techreport{bkr-pmpo-95 -, author = "Rainer E. Burkard and Bettina Klinz and R{\"u}diger Rudolf" -, title = "Perspectives of {Monge} Properties in Optimization" -, type = "" -, number = 2 -, institution = "Spezialforschungsbereich F~003, Karl-Franzens-Universit{\"a}t Graz and Technische Universit{\"a}t Graz" -, month = aug -, year = 1995 -, url = "ftp://ftp.tu-graz.ac.at/pub/papers/math/sfb2.ps.gz" -, update = "01.04 icking" +, author = "Rainer E. Burkard and Bettina Klinz and R{\"u}diger Rudolf" +, title = "Perspectives of {Monge} Properties in Optimization" +, type = "" +, number = 2 +, institution = "Spezialforschungsbereich F~003, Karl-Franzens-Universit{\"a}t Graz and Technische Universit{\"a}t Graz" +, month = aug +, year = 1995 +, url = "ftp://ftp.tu-graz.ac.at/pub/papers/math/sfb2.ps.gz" +, update = "01.04 icking" } @article{bryy-spps-90 -, author = "Rainer E. Burkard and G{\"u}nter Rote and En-Yu Yao and Zhong-Liang Yu" -, title = "Shortest Polygonal Paths in Space" -, journal = "Computing" -, volume = 45 -, year = 1990 -, pages = "51--68" -, update = "93.09 milone+mitchell+rote" -, annote = "For a given polygonal chain, find the shortest (open - or closed) path that visits every segment of the chain in - the given order." +, author = "Rainer E. Burkard and G{\"u}nter Rote and En-Yu Yao and Zhong-Liang Yu" +, title = "Shortest Polygonal Paths in Space" +, journal = "Computing" +, volume = 45 +, year = 1990 +, pages = "51--68" +, update = "93.09 milone+mitchell+rote" +, annote = "For a given polygonal chain, find the shortest (open + or closed) path that visits every segment of the chain in + the given order." } @techreport{b-aaipm-75 -, author = "W. A. Burkhard" -, title = "Associative access and inversion and partial-match file designs" -, type = "Report" -, number = "TR-4" -, institution = "UCSD Comput. Sci. Division, Univ. California" -, address = "San Diego, La Jolla, CA" -, year = 1975 +, author = "W. A. Burkhard" +, title = "Associative access and inversion and partial-match file designs" +, type = "Report" +, number = "TR-4" +, institution = "UCSD Comput. Sci. Division, Univ. California" +, address = "San Diego, La Jolla, CA" +, year = 1975 } @inproceedings{b-arthc-76 -, author = "W. A. Burkhard" -, title = "Associative retrieval trie hash-coding" -, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." -, year = 1976 -, pages = "211--219" -, precedes = "b-arthc-77" +, author = "W. A. Burkhard" +, title = "Associative retrieval trie hash-coding" +, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." +, year = 1976 +, pages = "211--219" +, precedes = "b-arthc-77" } @article{b-arthc-77 -, author = "W. A. Burkhard" -, title = "Associative retrieval trie hash-coding" -, journal = "J. Comput. Syst. Sci." -, volume = 15 -, year = 1977 -, pages = "280--299" -, succeeds = "b-arthc-76" +, author = "W. A. Burkhard" +, title = "Associative retrieval trie hash-coding" +, journal = "J. Comput. Syst. Sci." +, volume = 15 +, year = 1977 +, pages = "280--299" +, succeeds = "b-arthc-76" } @inproceedings{b-fdpmr-75 -, author = "W. A. Burkhard" -, title = "File designs for partial-match retrieval" -, booktitle = "Proc. Conf. Inform. Sci. Systems" -, publisher = "Johns Hopkins Univ." -, year = 1975 -, pages = "351--353" +, author = "W. A. Burkhard" +, title = "File designs for partial-match retrieval" +, booktitle = "Proc. Conf. Inform. Sci. Systems" +, publisher = "Johns Hopkins Univ." +, year = 1975 +, pages = "351--353" } @article{b-htapm-76 -, author = "W. A. Burkhard" -, title = "Hashing and trie algorithms for partial-match retrieval" -, journal = "ACM Trans. Database Syst." -, volume = 1 -, year = 1976 -, pages = "175--187" +, author = "W. A. Burkhard" +, title = "Hashing and trie algorithms for partial-match retrieval" +, journal = "ACM Trans. Database Syst." +, volume = 1 +, year = 1976 +, pages = "175--187" } @article{b-nupmf-77 -, author = "W. A. Burkhard" -, title = "Non-uniform partial-match file designs" -, journal = "Theoret. Comput. Sci." -, volume = 5 -, year = 1977 -, pages = "1--23" +, author = "W. A. Burkhard" +, title = "Non-uniform partial-match file designs" +, journal = "Theoret. Comput. Sci." +, volume = 5 +, year = 1977 +, pages = "1--23" } @article{b-pmhcb-79 -, author = "W. A. Burkhard" -, title = "Partial-match hash coding: benefits and redundancy" -, journal = "ACM Trans. Database Syst." -, volume = 4 -, year = 1979 -, pages = "228--239" +, author = "W. A. Burkhard" +, title = "Partial-match hash coding: benefits and redundancy" +, journal = "ACM Trans. Database Syst." +, volume = 4 +, year = 1979 +, pages = "228--239" } @inproceedings{b-pmqfd-75 -, author = "W. A. Burkhard" -, title = "Partial-match queries and file designs" -, booktitle = "Proc. Internat. Conf. Very Large Databases" -, year = 1975 -, pages = "523--525" +, author = "W. A. Burkhard" +, title = "Partial-match queries and file designs" +, booktitle = "Proc. Internat. Conf. Very Large Databases" +, year = 1975 +, pages = "523--525" } @article{b-pmr-76 -, author = "W. A. Burkhard" -, title = "Partial-match retrieval" -, journal = "BIT" -, volume = 16 -, year = 1976 -, pages = "13--31" +, author = "W. A. Burkhard" +, title = "Partial-match retrieval" +, journal = "BIT" +, volume = 16 +, year = 1976 +, pages = "13--31" } @techreport{b-pmrpb-75 -, author = "W. A. Burkhard" -, title = "Partial match retrieval: performance bounds" -, type = "Report" -, number = "TR-3" -, institution = "UCSD Comput. Sci. Division, Univ. California" -, address = "San Diego, La Jolla, CA" -, year = 1975 +, author = "W. A. Burkhard" +, title = "Partial match retrieval: performance bounds" +, type = "Report" +, number = "TR-3" +, institution = "UCSD Comput. Sci. Division, Univ. California" +, address = "San Diego, La Jolla, CA" +, year = 1975 } @article{bfk-ictor-81 -, author = "W. A. Burkhard and M. L. Fredman and D. J. Kleitman" -, title = "Inherent complexity trade-offs for range query problems" -, journal = "Theoret. Comput. Sci." -, volume = 16 -, year = 1981 -, pages = "279--290" +, author = "W. A. Burkhard and M. L. Fredman and D. J. Kleitman" +, title = "Inherent complexity trade-offs for range query problems" +, journal = "Theoret. Comput. Sci." +, volume = 16 +, year = 1981 +, pages = "279--290" } @article{bk-sabmf-73 -, author = "W. A. Burkhard and R. M. Keller" -, title = "Some approaches to best match file searching" -, journal = "Commun. ACM" -, volume = 16 -, year = 1973 -, pages = "230--236" +, author = "W. A. Burkhard and R. M. Keller" +, title = "Some approaches to best match file searching" +, journal = "Commun. ACM" +, volume = 16 +, year = 1973 +, pages = "230--236" } @phdthesis{b-ecvdl-96 -, author = "C. Burnikel" -, title = "Exact Computation of {Voronoi} Diagrams and Line Segment Intersections" -, type = "Ph.{D} Thesis" -, school = "Universit{\"a}t des Saarlandes" -, month = mar -, year = 1996 -, keywords = "doctoral thesis" -, update = "96.09 devillers" +, author = "C. Burnikel" +, title = "Exact Computation of {Voronoi} Diagrams and Line Segment Intersections" +, type = "Ph.{D} Thesis" +, school = "Universit{\"a}t des Saarlandes" +, month = mar +, year = 1996 +, keywords = "doctoral thesis" +, update = "96.09 devillers" } @article{bfms-secsb-00 -, author = "C. Burnikel and R. Fleischer and K. Mehlhorn and S. Schirra" -, title = "A Strong and Easily Computable Separation Bound for Arithmetic Expressions Involving Radicals" -, journal = "Algorithmica" -, volume = 27 -, number = 1 -, year = 2000 -, pages = "87--99" -, update = "00.11 smid, 00.07 held" +, author = "C. Burnikel and R. Fleischer and K. Mehlhorn and S. Schirra" +, title = "A Strong and Easily Computable Separation Bound for Arithmetic Expressions Involving Radicals" +, journal = "Algorithmica" +, volume = 27 +, number = 1 +, year = 2000 +, pages = "87--99" +, update = "00.11 smid, 00.07 held" } @inproceedings{bfms-secsb-97 -, author = "C. Burnikel and R. Fleischer and K. Mehlhorn and S. Schirra" -, title = "A strong and easily computable separation bound for arithmetic expressions involving square roots" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "702--709" -, update = "98.07 bibrelex" +, author = "C. Burnikel and R. Fleischer and K. Mehlhorn and S. Schirra" +, title = "A strong and easily computable separation bound for arithmetic expressions involving square roots" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "702--709" +, update = "98.07 bibrelex" } @inproceedings{bfms-eegcm-99 -, author = "C. Burnikel and R. Fleischer and K. Mehlhorn and S. Schirra" -, title = "Efficient Exact Geometric Computation Made Easy" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "341--350" -, update = "00.03 vismara" +, author = "C. Burnikel and R. Fleischer and K. Mehlhorn and S. Schirra" +, title = "Efficient Exact Geometric Computation Made Easy" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "341--350" +, update = "00.03 vismara" } @article{bfs-egcc-01 -, author = "C. Burnikel and S. Funke and M. Seel" -, title = "Exact Geometric Computation using Cascading" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "245--266" -, update = "01.07 smid" +, author = "C. Burnikel and S. Funke and M. Seel" +, title = "Exact Geometric Computation using Cascading" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "245--266" +, update = "01.07 smid" } @inproceedings{bfs-egpuc-98 -, author = "C. Burnikel and S. Funke and M. Seel" -, title = "Exact Geometric Predicates using Cascaded Computation" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "175--183" -, update = "99.07 vismara, 98.07 tamassia" +, author = "C. Burnikel and S. Funke and M. Seel" +, title = "Exact Geometric Predicates using Cascaded Computation" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "175--183" +, update = "99.07 vismara, 98.07 tamassia" } @inproceedings{bkmnsu-egcl-95 -, author = "Christoph Burnikel and Jochen K{\"o}nnemann and Kurt Mehlhorn and Stefan N{\"a}her and Stefan Schirra and Christian Uhrig" -, title = "Exact Geometric Computation in {LEDA}" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C18--C19" -, url = "http://www.mpi-sb.mpg.de/guide/staff/uhrig/leda.html" -, keywords = "" -, cites = "bjmm-lsicg-93, bms-hcvdl-94, fv-eeacg-93, mn-lpcgc-95, m-mca-92, yd-ecp-95, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell, 95.05 agarwal+devillers" +, author = "Christoph Burnikel and Jochen K{\"o}nnemann and Kurt Mehlhorn and Stefan N{\"a}her and Stefan Schirra and Christian Uhrig" +, title = "Exact Geometric Computation in {LEDA}" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C18--C19" +, url = "http://www.mpi-sb.mpg.de/guide/staff/uhrig/leda.html" +, keywords = "" +, cites = "bjmm-lsicg-93, bms-hcvdl-94, fv-eeacg-93, mn-lpcgc-95, m-mca-92, yd-ecp-95, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell, 95.05 agarwal+devillers" } @inproceedings{bms-hcvdl-94 -, author = "C. Burnikel and K. Mehlhorn and S. Schirra" -, title = "How to Compute the {Voronoi} Diagram of Line Segments: Theoretical and Experimental Results" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, nickname = "ESA '94" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "227--239" -, update = "95.01 smid" +, author = "C. Burnikel and K. Mehlhorn and S. Schirra" +, title = "How to Compute the {Voronoi} Diagram of Line Segments: Theoretical and Experimental Results" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, nickname = "ESA '94" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "227--239" +, update = "95.01 smid" } @inproceedings{bms-dgc-94 -, author = "C. Burnikel and K. Mehlhorn and S. Schirra" -, title = "On degeneracy in geometric computations" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "16--23" -, update = "95.01 matousek+smid" +, author = "C. Burnikel and K. Mehlhorn and S. Schirra" +, title = "On degeneracy in geometric computations" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "16--23" +, update = "95.01 matousek+smid" } @techreport{bms-lcrn-96 -, author = "C. Burnikel and K. Mehlhorn and S. Schirra" -, title = "The {LEDA} class real number" -, type = "Technical {Report}" -, number = "MPI-I-96-1-001" -, institution = "Max-Planck Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, month = jan -, year = 1996 -, url = "http://data.mpi-sb.mpg.de/internet/reports.nsf/NumberView/1996-1-001" -, update = "99.07 vismara, 98.07 bibrelex" +, author = "C. Burnikel and K. Mehlhorn and S. Schirra" +, title = "The {LEDA} class real number" +, type = "Technical {Report}" +, number = "MPI-I-96-1-001" +, institution = "Max-Planck Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, month = jan +, year = 1996 +, url = "http://data.mpi-sb.mpg.de/internet/reports.nsf/NumberView/1996-1-001" +, update = "99.07 vismara, 98.07 bibrelex" } @incollection{b-grtgs-74 -, author = "S. A. Burr" -, title = "Generalized {Ramsey} theory for graphs: a survey" -, editor = "R. Bari and F. Haray" -, booktitle = "Graphs Combin." -, series = "Lecture Notes Math." -, volume = 406 -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1974 -, pages = "52--75" -, update = "97.11 bibrelex" +, author = "S. A. Burr" +, title = "Generalized {Ramsey} theory for graphs: a survey" +, editor = "R. Bari and F. Haray" +, booktitle = "Graphs Combin." +, series = "Lecture Notes Math." +, volume = 406 +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1974 +, pages = "52--75" +, update = "97.11 bibrelex" } @article{bes-rtmcg-75 -, author = "S. A. Burr and P. Erd{\H o}s and J. H. Spencer" -, title = "{Ramsey} theorems for multiple copies of graphs" -, journal = "Trans. Amer. Math. Soc." -, volume = 209 -, year = 1975 -, pages = "87--99" -, update = "97.11 bibrelex" +, author = "S. A. Burr and P. Erd{\H o}s and J. H. Spencer" +, title = "{Ramsey} theorems for multiple copies of graphs" +, journal = "Trans. Amer. Math. Soc." +, volume = 209 +, year = 1975 +, pages = "87--99" +, update = "97.11 bibrelex" } @article{bgs-op-74 -, author = "S. A. Burr and B. Gr{\"u}nbaum and N. J. A. Sloane" -, title = "The orchard problem" -, journal = "Geometriae Dedicatia" -, volume = 2 -, year = 1974 -, pages = "397--424" -, update = "98.03 bibrelex" +, author = "S. A. Burr and B. Gr{\"u}nbaum and N. J. A. Sloane" +, title = "The orchard problem" +, journal = "Geometriae Dedicatia" +, volume = 2 +, year = 1974 +, pages = "397--424" +, update = "98.03 bibrelex" } @inproceedings{brs-phpsd-87 -, author = "R. Burridge and V. T. Rajan and J. T. Schwartz" -, title = "The peg-in-hole problem: {Statistics} and dynamics of nearly rigid bodies in frictional contact" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Raleigh, NC" -, year = 1987 -, update = "98.03 bibrelex" +, author = "R. Burridge and V. T. Rajan and J. T. Schwartz" +, title = "The peg-in-hole problem: {Statistics} and dynamics of nearly rigid bodies in frictional contact" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Raleigh, NC" +, year = 1987 +, update = "98.03 bibrelex" } @book{b-pgisl-86 -, author = "P. A. Burrough" -, title = "Principles of Geographical Information Systems for Land Resourses Assessment" -, publisher = "Oxford University Press" -, address = "New York" -, year = 1986 -, update = "96.09 kreveld" +, author = "P. A. Burrough" +, title = "Principles of Geographical Information Systems for Land Resourses Assessment" +, publisher = "Oxford University Press" +, address = "New York" +, year = 1986 +, update = "96.09 kreveld" } @article{bkk-cppt-84 -, author = "F. W. Burton and V. J. Kollias and J. G. Kollias" -, title = "Consistency in point-in-polygon tests" -, journal = "Comput. J." -, volume = 27 -, number = 4 -, year = 1984 -, pages = "375--376" +, author = "F. W. Burton and V. J. Kollias and J. G. Kollias" +, title = "Consistency in point-in-polygon tests" +, journal = "Comput. J." +, volume = 27 +, number = 4 +, year = 1984 +, pages = "375--376" } @article{bp-ddnpp-79 -, author = "G. R. Burton and G. B. Purdy" -, title = "The directions determined by $n$ points in the plane" -, journal = "J. London Math. Soc." -, volume = 20 -, number = 2 -, year = 1979 -, pages = "109--114" -, update = "97.11 bibrelex" +, author = "G. R. Burton and G. B. Purdy" +, title = "The directions determined by $n$ points in the plane" +, journal = "J. London Math. Soc." +, volume = 20 +, number = 2 +, year = 1979 +, pages = "109--114" +, update = "97.11 bibrelex" } @article{bs-hlah-82 -, author = "R. P. Burton and D. R. Smith" -, title = "A hidden-line algorithm for hyperspace" -, journal = "SIAM J. Comput." -, volume = 11 -, year = 1982 -, pages = "71--80" +, author = "R. P. Burton and D. R. Smith" +, title = "A hidden-line algorithm for hyperspace" +, journal = "SIAM J. Comput." +, volume = 11 +, year = 1982 +, pages = "71--80" } @article{b-rmspp-77 -, author = "W. Burton" -, title = "Representation of many-sided polygons and polygonal lines for rapid processing" -, journal = "Commun. ACM" -, volume = 20 -, year = 1977 -, pages = "166--171" +, author = "W. Burton" +, title = "Representation of many-sided polygons and polygonal lines for rapid processing" +, journal = "Commun. ACM" +, volume = 20 +, year = 1977 +, pages = "166--171" } @book{b-cs-58 -, author = "H. Buseman" -, title = "Convex Surfaces" -, publisher = "Interscience Publishers" -, address = "New York, NY" -, year = 1958 -, update = "97.11 bibrelex" +, author = "H. Buseman" +, title = "Convex Surfaces" +, publisher = "Interscience Publishers" +, address = "New York, NY" +, year = 1958 +, update = "97.11 bibrelex" } @book{b-sdg-87 -, author = "H. Busemann" -, title = "Spaces with distinguished Geodesics" -, publisher = "M. Dekker" -, address = "New York" -, year = 1987 -, update = "98.07 bibrelex" +, author = "H. Busemann" +, title = "Spaces with distinguished Geodesics" +, publisher = "M. Dekker" +, address = "New York" +, year = 1987 +, update = "98.07 bibrelex" } @book{b-gog-55 -, author = "H. Busemann" -, title = "The Geometry of Geodesics" -, publisher = "Academic Press Inc." -, address = "New York" -, year = 1955 -, update = "00.03 bibrelex" +, author = "H. Busemann" +, title = "The Geometry of Geodesics" +, publisher = "Academic Press Inc." +, address = "New York" +, year = 1955 +, update = "00.03 bibrelex" } @book{bgsss-mcm-66 -, author = "N. P. Buslenko and D. I. Golenko and I. M. Sobol and V. G. Sragovi{\v c} and J. A. {\v S}reider" -, title = "The {Monte} {Carlo} Method" -, editor = "J. A. Shrider" -, publisher = "Pergamon Press" -, address = "Oxford, UK" -, year = 1966 -, update = "98.03 bibrelex" +, author = "N. P. Buslenko and D. I. Golenko and I. M. Sobol and V. G. Sragovi{\v c} and J. A. {\v S}reider" +, title = "The {Monte} {Carlo} Method" +, editor = "J. A. Shrider" +, publisher = "Pergamon Press" +, address = "Oxford, UK" +, year = 1966 +, update = "98.03 bibrelex" } @inproceedings{by-lotmc-94 -, author = "S. Buss and P. Yianilos" -, title = "Linear and {$O(n \log n)$} time minimum-cost matching algorithms for quasi-convex tours" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "65--76" -, update = "97.11 bibrelex" +, author = "S. Buss and P. Yianilos" +, title = "Linear and {$O(n \log n)$} time minimum-cost matching algorithms for quasi-convex tours" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "65--76" +, update = "97.11 bibrelex" } @article{by-lotmc-98 -, author = "S. R. Buss and P. N. Yianilos" -, title = "Linear and {$O(n \log n)$} time minimum-cost matching algorithms for quasi-convex tours" -, journal = "SIAM J. Comput." -, volume = 27 -, year = 1998 -, pages = "170--201" -, update = "98.07 smid" +, author = "S. R. Buss and P. N. Yianilos" +, title = "Linear and {$O(n \log n)$} time minimum-cost matching algorithms for quasi-convex tours" +, journal = "SIAM J. Comput." +, volume = 27 +, year = 1998 +, pages = "170--201" +, update = "98.07 smid" } @inproceedings{bdltvv-gwspt-96 -, author = "L. Buti and G. {Di Battista} and G. Liotta and E. Tassinari and F. Vargiu and L. Vismara" -, title = "{GD-W}orkbench: A System for Prototyping and Testing Graph Drawing Algorithms" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "111--122" -, keywords = "graph drawing, system" -, update = "00.03 vismara, 98.07 vismara, 96.09 tamassia" +, author = "L. Buti and G. {Di Battista} and G. Liotta and E. Tassinari and F. Vargiu and L. Vismara" +, title = "{GD-W}orkbench: A System for Prototyping and Testing Graph Drawing Algorithms" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "111--122" +, keywords = "graph drawing, system" +, update = "00.03 vismara, 98.07 vismara, 96.09 tamassia" } @inproceedings{bgjr-cdr-96 -, author = "Geoffrey Butlin and Mark Gammon and Maritin Jones and John Rawlinson" -, title = "CAD data repair" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "7--12" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Geoffrey Butlin and Mark Gammon and Maritin Jones and John Rawlinson" +, title = "CAD data repair" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "7--12" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @article{b-tcl-85 -, author = "B. Buttenfield" -, title = "Treatment of the Cartographic Line" -, journal = "Cartographica" -, volume = 22 -, year = 1985 -, pages = "1--26" -, update = "96.09 kreveld" +, author = "B. Buttenfield" +, title = "Treatment of the Cartographic Line" +, journal = "Cartographica" +, volume = 22 +, year = 1985 +, pages = "1--26" +, update = "96.09 kreveld" } @article{b-aahsf-71 @@ -29188,1666 +29188,1666 @@ @article{b-aahsf-71 } @article{b-agtg1-76 -, author = "A. Bykat" -, title = "Automatic generation of triangular grid: {I} --- subdivision of a general polygon into convex subregions; {II} --- triangulation of convex polygons" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 10 -, year = 1976 -, pages = "1329--1342" +, author = "A. Bykat" +, title = "Automatic generation of triangular grid: {I} --- subdivision of a general polygon into convex subregions; {II} --- triangulation of convex polygons" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 10 +, year = 1976 +, pages = "1329--1342" } @article{b-chfsp-78 -, author = "A. Bykat" -, title = "Convex hull of a finite set of points in two dimensions" -, journal = "Inform. Process. Lett." -, volume = 7 -, year = 1978 -, pages = "296--298" +, author = "A. Bykat" +, title = "Convex hull of a finite set of points in two dimensions" +, journal = "Inform. Process. Lett." +, volume = 7 +, year = 1978 +, pages = "296--298" } @article{b-ps-79 -, author = "A. Bykat" -, title = "On polygon similarity" -, journal = "Inform. Process. Lett." -, volume = 9 -, year = 1979 -, pages = "23--25" +, author = "A. Bykat" +, title = "On polygon similarity" +, journal = "Inform. Process. Lett." +, volume = 9 +, year = 1979 +, pages = "23--25" } @inproceedings{cgmm-dfglm-01 -, author = "Jos{\'e} C{\'a}ceres and Clara I. Grima and Alberto M{\'a}rquez and Auxiliadora Moreno-Gonz{\'a}lez" -, title = "Dilation Free Graphs in {$L_1$}-Metric" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "178--182" -, update = "01.04 icking" +, author = "Jos{\'e} C{\'a}ceres and Clara I. Grima and Alberto M{\'a}rquez and Auxiliadora Moreno-Gonz{\'a}lez" +, title = "Dilation Free Graphs in {$L_1$}-Metric" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "178--182" +, update = "01.04 icking" } @inproceedings{cm-atm-99 -, author = "Jos{\'e} C{\'a}ceres and Alberto M{\'a}rquez" -, title = "An Aperiodic Tiles Machine" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "55--57" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Jos{\'e} C{\'a}ceres and Alberto M{\'a}rquez" +, title = "An Aperiodic Tiles Machine" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "55--57" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{c-cepgu-93 -, author = "Jiazhen Cai" -, title = "Counting Embeddings of Planar Graphs Using {DFS} Trees" -, journal = "SIAM J. Discrete Math." -, volume = 6 -, year = 1993 -, pages = "335--352" -, keywords = "graph drawing, DFS tree, planarization" -, update = "98.11 patrignani" +, author = "Jiazhen Cai" +, title = "Counting Embeddings of Planar Graphs Using {DFS} Trees" +, journal = "SIAM J. Discrete Math." +, volume = 6 +, year = 1993 +, pages = "335--352" +, keywords = "graph drawing, DFS tree, planarization" +, update = "98.11 patrignani" } @article{cht-otams-93 -, author = "J. Cai and X. Han and R. E. Tarjan" -, title = "An ${O}(m \log n)$-time Algorithm for the Maximal Subgraph Problem" -, journal = "SIAM J. Comput." -, volume = 22 -, year = 1993 -, pages = "1142--1162" -, keywords = "graph drawing, planarization" -, update = "95.05 tamassia, 93.09 tamassia" +, author = "J. Cai and X. Han and R. E. Tarjan" +, title = "An ${O}(m \log n)$-time Algorithm for the Maximal Subgraph Problem" +, journal = "SIAM J. Comput." +, volume = 22 +, year = 1993 +, pages = "1142--1162" +, keywords = "graph drawing, planarization" +, update = "95.05 tamassia, 93.09 tamassia" } @inproceedings{ch-rdtps-94 -, author = "J. Cai and M. D. Hirsch" -, title = "Rotation Distance, Triangulations of Planar Surfaces and Hyperbolic Geometry" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "172--180" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" +, author = "J. Cai and M. D. Hirsch" +, title = "Rotation Distance, Triangulations of Planar Surfaces and Hyperbolic Geometry" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "172--180" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" } @inproceedings{c-apeg-96 -, author = "L. Cai" -, title = "Algorithms on polygonal embeddings of graphs" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "300--305" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "L. Cai" +, title = "Algorithms on polygonal embeddings of graphs" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "300--305" +, update = "97.03 agarwal, 96.09 mitchell" } @misc{c-t2s-91 -, author = "L. Cai" -, title = "Tree 2-Spanners" -, year = 1991 -, note = "manuscript, Simon Fraser University" -, update = "98.07 bibrelex" +, author = "L. Cai" +, title = "Tree 2-Spanners" +, year = 1991 +, note = "manuscript, Simon Fraser University" +, update = "98.07 bibrelex" } @inproceedings{ce-vgpr-95 -, author = "Leizhen Cai and Hazel Everett" -, title = "Visibility Graphs of Polygonal Rings" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "157--161" -, update = "95.09 jones" +, author = "Leizhen Cai and Hazel Everett" +, title = "Visibility Graphs of Polygonal Rings" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "157--161" +, update = "95.09 jones" } @article{ck-cviis-97 -, author = "L. Cai and J. M. Keil" -, title = "Computing Visibility Information in an Inaccurate Simple Polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "515--538" -, update = "98.11 devillers" +, author = "L. Cai and J. M. Keil" +, title = "Computing Visibility Information in an Inaccurate Simple Polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "515--538" +, update = "98.11 devillers" } @article{cxz-cobtcp-99 -, author = "L. Cai and Y. Xu and B. Zhu" -, title = "Computing the Optimal Bridge between two Convex Polygons" -, journal = "Inform. Process. Lett." -, volume = 69 -, year = 1999 -, pages = "127--130" -, update = "02.03 cheong" +, author = "L. Cai and Y. Xu and B. Zhu" +, title = "Computing the Optimal Bridge between two Convex Polygons" +, journal = "Inform. Process. Lett." +, volume = 69 +, year = 1999 +, pages = "127--130" +, update = "02.03 cheong" } @article{ch-srpfc-68 -, author = "L. Calabi and W. E. Hartnett" -, title = "Shape recognition, prairie fires, convex deficiencies and skeletons" -, journal = "Amer. Math. Monthly" -, volume = 75 -, year = 1968 -, pages = "335--342" +, author = "L. Calabi and W. E. Hartnett" +, title = "Shape recognition, prairie fires, convex deficiencies and skeletons" +, journal = "Amer. Math. Monthly" +, volume = 75 +, year = 1968 +, pages = "335--342" } @inproceedings{cm-tdlin-97 -, author = "Tiziana Calamoneri and Annalisa Massini" -, title = "On Three-Dimensional Layout of Interconnection Networks" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "64--75" -, keywords = "graph drawing, 3D" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Tiziana Calamoneri and Annalisa Massini" +, title = "On Three-Dimensional Layout of Interconnection Networks" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "64--75" +, keywords = "graph drawing, 3D" +, update = "99.07 patrignani, 98.07 patrignani" } @techreport{cs-d234cg-96 -, author = "T. Calamoneri and A. Sterbini" -, title = "Drawing $2$-, $3$- and $4$-colorable graphs in $O(n^2)$ volume" -, type = "report" -, institution = "Dept. of Computer Sci., Univ of Rome ``La Sapienza''" -, year = 1996 -, keywords = "graph drawing, straight-line, 3D" -, precedes = "cs-d234c-97" -, update = "98.07 patrignani, 96.09 tamassia" +, author = "T. Calamoneri and A. Sterbini" +, title = "Drawing $2$-, $3$- and $4$-colorable graphs in $O(n^2)$ volume" +, type = "report" +, institution = "Dept. of Computer Sci., Univ of Rome ``La Sapienza''" +, year = 1996 +, keywords = "graph drawing, straight-line, 3D" +, precedes = "cs-d234c-97" +, update = "98.07 patrignani, 96.09 tamassia" } @inproceedings{cs-d234c-97 -, author = "T. Calamoneri and A. Sterbini" -, title = "Drawing $2$-, $3$-, and $4$-Colorable Graphs in $O(n^2)$ Volume" -, editor = "S. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "53--62" -, keywords = "graph drawing, straight-line, 3D" -, succeeds = "cs-d234cg-96" -, update = "98.07 patrignani" +, author = "T. Calamoneri and A. Sterbini" +, title = "Drawing $2$-, $3$-, and $4$-Colorable Graphs in $O(n^2)$ Volume" +, editor = "S. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "53--62" +, keywords = "graph drawing, straight-line, 3D" +, succeeds = "cs-d234cg-96" +, update = "98.07 patrignani" } @inproceedings{cgg-oiprf-99 -, author = "A. Calatayud and J. Garc{\'\i}a and F. G{\'o}mez" -, title = "Optimal Illumination of Points with a Restricted Flood-Light" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "87--90" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "A. Calatayud and J. Garc{\'\i}a and F. G{\'o}mez" +, title = "Optimal Illumination of Points with a Restricted Flood-Light" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "87--90" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{cgr-tbtta-95 -, author = "Paul Callahan and Michael T. Goodrich and Kumar Ramaiyer" -, title = "Topology {B}-Trees and their Applications" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "381--392" -, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" +, author = "Paul Callahan and Michael T. Goodrich and Kumar Ramaiyer" +, title = "Topology {B}-Trees and their Applications" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "381--392" +, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" } @phdthesis{c-dwhdt-95 -, author = "P. B. Callahan" -, title = "Dealing with higher dimensions: the well-separated pair decomposition and its applications" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Johns Hopkins University" -, address = "Baltimore, Maryland" -, year = 1995 -, keywords = "doctoral thesis" -, update = "96.05 smid" +, author = "P. B. Callahan" +, title = "Dealing with higher dimensions: the well-separated pair decomposition and its applications" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Johns Hopkins University" +, address = "Baltimore, Maryland" +, year = 1995 +, keywords = "doctoral thesis" +, update = "96.05 smid" } @inproceedings{c-opann-93 -, author = "Paul B. Callahan" -, title = "Optimal Parallel All-Nearest-Neighbors Using the Well-Seated Pair Decomposition" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "332--340" -, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Paul B. Callahan" +, title = "Optimal Parallel All-Nearest-Neighbors Using the Well-Seated Pair Decomposition" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "332--340" +, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @inproceedings{ck-dmdps-92 -, author = "P. B. Callahan and S. R. Kosaraju" -, title = "A decomposition of multi-dimensional point-sets with applications to $k$-nearest-neighbors and $n$-body potential fields" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "546--556" -, keywords = "well-separated pair decomposition" -, update = "93.09 rote" +, author = "P. B. Callahan and S. R. Kosaraju" +, title = "A decomposition of multi-dimensional point-sets with applications to $k$-nearest-neighbors and $n$-body potential fields" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "546--556" +, keywords = "well-separated pair decomposition" +, update = "93.09 rote" } @article{ck-dmpsa-95 -, author = "P. B. Callahan and S. R. Kosaraju" -, title = "A decomposition of multidimensional point sets with applications to $k$-nearest-neighbors and $n$-body potential fields" -, journal = "J. ACM" -, volume = 42 -, year = 1995 -, pages = "67--90" -, update = "96.05 smid" +, author = "P. B. Callahan and S. R. Kosaraju" +, title = "A decomposition of multidimensional point sets with applications to $k$-nearest-neighbors and $n$-body potential fields" +, journal = "J. ACM" +, volume = 42 +, year = 1995 +, pages = "67--90" +, update = "96.05 smid" } @inproceedings{ck-adcpn-95 -, author = "Paul B. Callahan and S. Rao Kosaraju" -, title = "Algorithms for Dynamic Closest-Pair and {$n$}-Body Potential Fields" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "263--272" -, keywords = "dynamic algorithms, closest pair, all nearest neighbors, fast multipole method" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "Paul B. Callahan and S. Rao Kosaraju" +, title = "Algorithms for Dynamic Closest-Pair and {$n$}-Body Potential Fields" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "263--272" +, keywords = "dynamic algorithms, closest pair, all nearest neighbors, fast multipole method" +, update = "96.09 agarwal, 96.05 mitchell" } @inproceedings{ck-fasgg-93 -, author = "P. B. Callahan and S. R. Kosaraju" -, title = "Faster Algorithms for Some Geometric Graph Problems in Higher Dimensions" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "291--300" -, keywords = "optimization, minimum spanning trees, spanner, well-separated pair decomposition" -, cites = "ck-dmdps-92" -, update = "93.09 rote, 93.05 smid" +, author = "P. B. Callahan and S. R. Kosaraju" +, title = "Faster Algorithms for Some Geometric Graph Problems in Higher Dimensions" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "291--300" +, keywords = "optimization, minimum spanning trees, spanner, well-separated pair decomposition" +, cites = "ck-dmdps-92" +, update = "93.09 rote, 93.05 smid" } @techreport{cs-mpssr-86 -, author = "K. Cameron and H. Sachs" -, title = "Monotone Path Systems in Simple Regions" -, type = "Technical {Report}" -, number = 86429 -, institution = "Management Science Dept., University of Waterloo" -, year = 1986 -, update = "93.09 milone+mitchell" +, author = "K. Cameron and H. Sachs" +, title = "Monotone Path Systems in Simple Regions" +, type = "Technical {Report}" +, number = 86429 +, institution = "Management Science Dept., University of Waterloo" +, year = 1986 +, update = "93.09 milone+mitchell" } @incollection{c-agg-83 -, author = "P. J. Cameron" -, title = "Automorphism Groups of Graphs" -, editor = "B. Wilson" -, booktitle = "Selected Topics in Graph Theory" -, publisher = "Academic Press" -, year = 1983 -, update = "97.11 bibrelex" +, author = "P. J. Cameron" +, title = "Automorphism Groups of Graphs" +, editor = "B. Wilson" +, booktitle = "Selected Topics in Graph Theory" +, publisher = "Academic Press" +, year = 1983 +, update = "97.11 bibrelex" } @techreport{c-eactc-?? -, author = "S. Cameron" -, title = "An efficient algorithm for computing the translational configuration space obstacle of two convex polyhedra" -, type = "Report" -, number = "??" -, institution = "McDonnell Douglas Res. Lab." -, year = "??" +, author = "S. Cameron" +, title = "An efficient algorithm for computing the translational configuration space obstacle of two convex polyhedra" +, type = "Report" +, number = "??" +, institution = "McDonnell Douglas Res. Lab." +, year = "??" } @article{c-cdfdi-90 -, author = "S. Cameron" -, title = "Collision Detection by Four-Dimensional Intersection Testing" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, number = 3 -, year = 1990 -, pages = "291--302" -, update = "95.01 mitchell" +, author = "S. Cameron" +, title = "Collision Detection by Four-Dimensional Intersection Testing" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, number = 3 +, year = 1990 +, pages = "291--302" +, update = "95.01 mitchell" } @article{c-ebcsg-91 -, author = "S. Cameron" -, title = "Efficient bounds in constructive solid geometry" -, journal = "IEEE Comput. Graph. Appl." -, volume = 11 -, number = 3 -, year = 1991 -, pages = "68--74" -, keywords = "data structuring, geometric modeling, constructive solid geometry" -, update = "95.09 korneenko" +, author = "S. Cameron" +, title = "Efficient bounds in constructive solid geometry" +, journal = "IEEE Comput. Graph. Appl." +, volume = 11 +, number = 3 +, year = 1991 +, pages = "68--74" +, keywords = "data structuring, geometric modeling, constructive solid geometry" +, update = "95.09 korneenko" } @article{cy-rmgbc-92 -, author = "S. Cameron and C.-K. Yap" -, title = "Refinement methods for geometric bounds in constructive solid geometry" -, journal = "ACM Trans. Graph." -, volume = 11 -, year = 1992 -, pages = "12--39" -, keywords = "constituents, boolean algebra, simplification" -, update = "93.09 held" +, author = "S. Cameron and C.-K. Yap" +, title = "Refinement methods for geometric bounds in constructive solid geometry" +, journal = "ACM Trans. Graph." +, volume = 11 +, year = 1992 +, pages = "12--39" +, keywords = "constituents, boolean algebra, simplification" +, update = "93.09 held" } @inproceedings{cc-dmtdb-86 -, author = "S. A. Cameron and R. K. Culley" -, title = "Determining the minimum translational distance between two convex polyhedra" -, booktitle = "Proc. of IEEE Inter. Conf. on Robotics and Automation" -, year = 1986 -, pages = "591--596" -, keywords = "GEOMOD OBSTACLE-AVOID COMPUTATIONAL-GEOMETRY 3D PROXIMITY INTERSECTION CONVEX" -, update = "98.07 bibrelex" -, annote = "An algorithm is described to determine the Minimal - Translation Distance (MTD) between two polyhedra. One - way in which this algorithm differs from others is that - it will return a value other than zero if the two - objects intersect. This value is the penetration - distance and has a negative sign. -WCF" +, author = "S. A. Cameron and R. K. Culley" +, title = "Determining the minimum translational distance between two convex polyhedra" +, booktitle = "Proc. of IEEE Inter. Conf. on Robotics and Automation" +, year = 1986 +, pages = "591--596" +, keywords = "GEOMOD OBSTACLE-AVOID COMPUTATIONAL-GEOMETRY 3D PROXIMITY INTERSECTION CONVEX" +, update = "98.07 bibrelex" +, annote = "An algorithm is described to determine the Minimal + Translation Distance (MTD) between two polyhedra. One + way in which this algorithm differs from others is that + it will return a value other than zero if the two + objects intersect. This value is the penetration + distance and has a negative sign. -WCF" } @article{cks-desrt-99 -, author = "S. Campagna and L. Kobbelt and H.-P. Seidel" -, title = "Directed Edges --- A Scalable Representation for Triangle Meshes" -, journal = "J. Graphics Tools" -, volume = 3 -, number = 4 -, year = 1999 -, pages = "1--12" -, update = "00.03 held" +, author = "S. Campagna and L. Kobbelt and H.-P. Seidel" +, title = "Directed Edges --- A Scalable Representation for Triangle Meshes" +, journal = "J. Graphics Tools" +, volume = 3 +, number = 4 +, year = 1999 +, pages = "1--12" +, update = "00.03 held" } @phdthesis{c-mgdii-91 -, author = "A. T. Campbell" -, title = "Modeling Global Diffuse Illumination for Image Synthesis" -, school = "Dept. Comput. Sci., Univ. Texas Austin" -, address = "Austin, TX" -, year = 1991 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "A. T. Campbell" +, title = "Modeling Global Diffuse Illumination for Image Synthesis" +, school = "Dept. Comput. Sci., Univ. Texas Austin" +, address = "Austin, TX" +, year = 1991 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @techreport{c-crsdr-85 -, author = "D. Campbell" -, title = "The {Cornell} robot system design report" -, type = "Technical {Report}" -, number = "85-697" -, institution = "Cornell Univ." -, address = "Ithaca, NY" -, year = 1985 -, update = "98.03 bibrelex" +, author = "D. Campbell" +, title = "The {Cornell} robot system design report" +, type = "Technical {Report}" +, number = "85-697" +, institution = "Cornell Univ." +, address = "Ithaca, NY" +, year = 1985 +, update = "98.03 bibrelex" } @article{ch-mvg-91 -, author = "D. Campbell and J. Higgins" -, title = "Minimal visibility graphs" -, journal = "Inform. Process. Lett." -, volume = 37 -, number = 1 -, year = 1991 -, pages = "49--53" -, keywords = "visibility, geometric graphs, segments" -, update = "95.09 korneenko" +, author = "D. Campbell and J. Higgins" +, title = "Minimal visibility graphs" +, journal = "Inform. Process. Lett." +, volume = 37 +, number = 1 +, year = 1991 +, pages = "49--53" +, keywords = "visibility, geometric graphs, segments" +, update = "95.09 korneenko" } @article{cf-amggdi-90 -, author = "A. T. {Campbell III} and D. S. Fussell" -, title = "Adaptive Mesh Generation for Global Diffuse Illumination" -, journal = "Comput. Graph." -, volume = 24 -, month = aug -, year = 1990 -, pages = "155--164" -, update = "98.11 ghali" +, author = "A. T. {Campbell III} and D. S. Fussell" +, title = "Adaptive Mesh Generation for Global Diffuse Illumination" +, journal = "Comput. Graph." +, volume = 24 +, month = aug +, year = 1990 +, pages = "155--164" +, update = "98.11 ghali" } @techreport{cf-aaial-91 -, author = "A. T. {Campbell III} and D. S. Fussell" -, title = "An Analytic Approach to Illumination with Area Light Sources" -, type = "Report" -, number = "TR--91--25" -, institution = "Department of Computer Sciences, University of Texas at Austin" -, address = "Austin, Texas" -, month = aug -, year = 1991 -, update = "99.03 forrest, 98.11 ghali" +, author = "A. T. {Campbell III} and D. S. Fussell" +, title = "An Analytic Approach to Illumination with Area Light Sources" +, type = "Report" +, number = "TR--91--25" +, institution = "Department of Computer Sciences, University of Texas at Austin" +, address = "Austin, Texas" +, month = aug +, year = 1991 +, update = "99.03 forrest, 98.11 ghali" } @article{c-icdir-93 -, author = "F. Can" -, title = "Incremental clustering for dynamic information retrieval" -, journal = "ACM Trans. Inform. Syst." -, volume = 11 -, year = 1993 -, pages = "143--164" -, update = "98.07 agarwal" +, author = "F. Can" +, title = "Incremental clustering for dynamic information retrieval" +, journal = "ACM Trans. Inform. Syst." +, volume = 11 +, year = 1993 +, pages = "143--164" +, update = "98.07 agarwal" } @incollection{cgh-snebc-89 -, author = "L. Canaglia and A. Galligo and J. Heintz" -, title = "Some new effectivity bounds in computational geometry" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 357 -, year = 1989 -, pages = "131--151" -, keywords = "algebraic geometry, motion planning, parallel computation" -, update = "95.09 korneenko" +, author = "L. Canaglia and A. Galligo and J. Heintz" +, title = "Some new effectivity bounds in computational geometry" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 357 +, year = 1989 +, pages = "131--151" +, keywords = "algebraic geometry, motion planning, parallel computation" +, update = "95.09 korneenko" } @article{c-talp-69 -, author = "R. Canham" -, title = "A theorem on arrangements of lines in the plane" -, journal = "Israel J. Math." -, volume = 7 -, year = 1969 -, pages = "393--397" -, keywords = "arrangements, complexity of faces" +, author = "R. Canham" +, title = "A theorem on arrangements of lines in the plane" +, journal = "Israel J. Math." +, volume = 7 +, year = 1969 +, pages = "393--397" +, keywords = "arrangements, complexity of faces" } @techreport{cgh-snebc-88 -, author = "L. Caniglia and A. Galligo and J. Heintz" -, title = "Some new efficient bounds in computational geometry" -, institution = "Instituto Argentino de Mathem{\'a}tica" -, address = "Buenos Aires, Argentina" -, year = 1988 -, note = "Preliminary version" -, update = "98.03 bibrelex" +, author = "L. Caniglia and A. Galligo and J. Heintz" +, title = "Some new efficient bounds in computational geometry" +, institution = "Instituto Argentino de Mathem{\'a}tica" +, address = "Buenos Aires, Argentina" +, year = 1988 +, note = "Preliminary version" +, update = "98.03 bibrelex" } @article{c-cgts-69 -, author = "J. J. Cannon" -, title = "Computers in Group Theory: {A} Survey" -, journal = "Commun. ACM" -, volume = 12 -, year = 1969 -, pages = "3--12" -, update = "97.11 bibrelex" +, author = "J. J. Cannon" +, title = "Computers in Group Theory: {A} Survey" +, journal = "Commun. ACM" +, volume = 12 +, year = 1969 +, pages = "3--12" +, update = "97.11 bibrelex" } @inproceedings{c-namrm-87 -, author = "J. Canny" -, title = "A new algebraic method for robot motion planning and real geometry" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "39--48" +, author = "J. Canny" +, title = "A new algebraic method for robot motion planning and real geometry" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "39--48" } @inproceedings{c-vmpmp-85 -, author = "J. Canny" -, title = "A {Voronoi} method for the piano-movers problem" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "St. Louis, MO" -, year = 1985 -, pages = "530--535" +, author = "J. Canny" +, title = "A {Voronoi} method for the piano-movers problem" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "St. Louis, MO" +, year = 1985 +, pages = "530--535" } @inproceedings{c-emscc-87 -, author = "J. Canny" -, title = "An efficient method for skeletonizing the connected components of a semi-algebraic set" -, booktitle = "4th Computational Geometry Day" -, organization = "New York Univ." -, month = mar -, year = 1987 -, note = "Presented Talk" -, update = "98.03 bibrelex" +, author = "J. Canny" +, title = "An efficient method for skeletonizing the connected components of a semi-algebraic set" +, booktitle = "4th Computational Geometry Day" +, organization = "New York Univ." +, month = mar +, year = 1987 +, note = "Presented Talk" +, update = "98.03 bibrelex" } @techreport{c-cdmp-84 -, author = "J. Canny" -, title = "Collision Detection for Moving Polyhedra" -, type = "A. {I}. {Memo}" -, number = 806 -, institution = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1984 -, update = "98.03 bibrelex" +, author = "J. Canny" +, title = "Collision Detection for Moving Polyhedra" +, type = "A. {I}. {Memo}" +, number = 806 +, institution = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1984 +, update = "98.03 bibrelex" } @article{c-cdmp-86 -, author = "John Canny" -, title = "Collision Detection for Moving Polyhedra" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-8" -, number = 2 -, year = 1986 -, pages = "200--209" -, update = "95.01 mitchell" +, author = "John Canny" +, title = "Collision Detection for Moving Polyhedra" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-8" +, number = 2 +, year = 1986 +, pages = "200--209" +, update = "95.01 mitchell" } @article{c-crgss-93 -, author = "J. Canny" -, title = "Computing roadmaps in general semialgebraic sets" -, journal = "Comput. J." -, volume = 36 -, year = 1993 -, pages = "409--418" -, update = "98.07 agarwal, 95.05 agarwal" +, author = "J. Canny" +, title = "Computing roadmaps in general semialgebraic sets" +, journal = "Comput. J." +, volume = 36 +, year = 1993 +, pages = "409--418" +, update = "98.07 agarwal, 95.05 agarwal" } @inproceedings{c-crsas-91 -, author = "J. Canny" -, title = "Computing roadmaps of semi-algebraic sets" -, booktitle = "Proc. 9th AAECC" -, site = "New Orleans" -, year = 1991 -, update = "97.11 bibrelex" +, author = "J. Canny" +, title = "Computing roadmaps of semi-algebraic sets" +, booktitle = "Proc. 9th AAECC" +, site = "New Orleans" +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{c-crsas-86 -, author = "J. Canny" -, title = "Constructing roadmaps of semi-algebraic sets" -, booktitle = "International Workshop on Geometric Reasoning" -, site = "Oxford University, England" -, year = 1986 -, precedes = "c-crsas-88" -, update = "95.09 korneenko" +, author = "J. Canny" +, title = "Constructing roadmaps of semi-algebraic sets" +, booktitle = "International Workshop on Geometric Reasoning" +, site = "Oxford University, England" +, year = 1986 +, precedes = "c-crsas-88" +, update = "95.09 korneenko" } @article{c-crsas-88 -, author = "J. Canny" -, title = "Constructing roadmaps of semi-algebraic sets 1: {Completeness}" -, journal = "Artif. Intell." -, volume = 37 -, year = 1988 -, pages = "203--222" -, keywords = "motion planning, algebraic geometry" -, succeeds = "c-crsas-86" -, update = "96.09 devillers, 95.09 korneenko" +, author = "J. Canny" +, title = "Constructing roadmaps of semi-algebraic sets 1: {Completeness}" +, journal = "Artif. Intell." +, volume = 37 +, year = 1988 +, pages = "203--222" +, keywords = "motion planning, algebraic geometry" +, succeeds = "c-crsas-86" +, update = "96.09 devillers, 95.09 korneenko" } @inproceedings{c-gcp-88 -, author = "J. Canny" -, title = "Generalized Characteristic Poynomials" -, booktitle = "Proc. ACM Sympos. Symbolic and Algebraic Computation" -, year = 1988 -, update = "97.11 bibrelex" +, author = "J. Canny" +, title = "Generalized Characteristic Poynomials" +, booktitle = "Proc. ACM Sympos. Symbolic and Algebraic Computation" +, year = 1988 +, update = "97.11 bibrelex" } @article{c-iasde-93 -, author = "J. Canny" -, title = "Improved algorithms for sign determination and existential quantifier elimination" -, journal = "Comput. J." -, volume = 36 -, year = 1993 -, pages = "504--514" -, update = "98.07 agarwal" +, author = "J. Canny" +, title = "Improved algorithms for sign determination and existential quantifier elimination" +, journal = "Comput. J." +, volume = 36 +, year = 1993 +, pages = "504--514" +, update = "98.07 agarwal" } @inproceedings{c-dcbp-84 -, author = "J. Canny" -, title = "On detecting collision between polyhedra" -, booktitle = "Proc. ECAI" -, year = 1984 -, pages = "533--542" -, update = "98.03 bibrelex" +, author = "J. Canny" +, title = "On detecting collision between polyhedra" +, booktitle = "Proc. ECAI" +, year = 1984 +, pages = "533--542" +, update = "98.03 bibrelex" } @inproceedings{c-sagcp-88 -, author = "J. Canny" -, title = "Some algebraic and geometric computations in {PSPACE}" -, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." -, year = 1988 -, pages = "460--467" -, update = "98.07 agarwal" +, author = "J. Canny" +, title = "Some algebraic and geometric computations in {PSPACE}" +, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." +, year = 1988 +, pages = "460--467" +, update = "98.07 agarwal" } @book{c-crmp-87 -, author = "J. Canny" -, title = "The Complexity of Robot Motion Planning" -, series = "ACM -- MIT Press Doctoral Dissertation Award Series" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1987 -, isbn = "0-262-03136-1" -, keywords = "doctoral thesis" -, comments = "revised version of author's Ph.D. thesis, Electrical - Engineering and Computer Science Dept., Massachusetts - Inst. Tech. 1987" -, update = "97.11 bibrelex" +, author = "J. Canny" +, title = "The Complexity of Robot Motion Planning" +, series = "ACM -- MIT Press Doctoral Dissertation Award Series" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1987 +, isbn = "0-262-03136-1" +, keywords = "doctoral thesis" +, comments = "revised version of author's Ph.D. thesis, Electrical + Engineering and Computer Science Dept., Massachusetts + Inst. Tech. 1987" +, update = "97.11 bibrelex" } @inproceedings{cd-svd-87 -, author = "J. Canny and B. R. Donald" -, title = "Simplified {Voronoi} diagrams" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "153--161" -, precedes = "cd-svd-88" -, cites = "c-cdmp-86, c-vmpmp-85, c-crsas-86, d-mpsdf-84, ld-gvdp-81, l-spcsa-83, lw-apcfp-79, osy-gvdl1-84, osy-gvdl2-84, oy-rmpmd-85, ss-pmp2g-82, sy-agar-87, w-esrav-57, y-cmsd-84, ZZZ" -, update = "98.03 bibrelex" +, author = "J. Canny and B. R. Donald" +, title = "Simplified {Voronoi} diagrams" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "153--161" +, precedes = "cd-svd-88" +, cites = "c-cdmp-86, c-vmpmp-85, c-crsas-86, d-mpsdf-84, ld-gvdp-81, l-spcsa-83, lw-apcfp-79, osy-gvdl1-84, osy-gvdl2-84, oy-rmpmd-85, ss-pmp2g-82, sy-agar-87, w-esrav-57, y-cmsd-84, ZZZ" +, update = "98.03 bibrelex" } @article{cd-svd-88 -, author = "J. Canny and B. R. Donald" -, title = "Simplified {Voronoi} diagrams" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "219--236" -, succeeds = "cd-svd-87" +, author = "J. Canny and B. R. Donald" +, title = "Simplified {Voronoi} diagrams" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "219--236" +, succeeds = "cd-svd-87" } @inproceedings{cdrx-ckp-88 -, author = "J. Canny and B. R. Donald and J. Reif and P. Xavier" -, title = "On the complexity of kinodynamic planning" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, site = "White Plains, NY" -, year = 1988 -, pages = "306--316" -, precedes = "dxcr-kmp-93" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "J. Canny and B. R. Donald and J. Reif and P. Xavier" +, title = "On the complexity of kinodynamic planning" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, site = "White Plains, NY" +, year = 1988 +, pages = "306--316" +, precedes = "dxcr-kmp-93" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{cdr-rrmrg-92 -, author = "J. Canny and B. R. Donald and E. K. Ressler" -, title = "A rational rotation method for robust geometric algorithms" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "251--260" -, succeeds = "cdr-rrmrg-91" -, cites = "ahu-daca-74, b-eaosp-89, bm-gaprb-89, c-cfmp-89, d-edrr-89, d-cpcmp-90, dp-mccrb-90, e-ubfmp-86, afw-fsgvd-88, hhk-tirgc-88, l-spcsa-83, l-rmp-91, lm-cschu-90, mn-fccrp-90i, ps-cgi-85, r-lent-64, s-bag-77, si-smsft-89, ZZZ" -, update = "97.11 bibrelex" +, author = "J. Canny and B. R. Donald and E. K. Ressler" +, title = "A rational rotation method for robust geometric algorithms" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "251--260" +, succeeds = "cdr-rrmrg-91" +, cites = "ahu-daca-74, b-eaosp-89, bm-gaprb-89, c-cfmp-89, d-edrr-89, d-cpcmp-90, dp-mccrb-90, e-ubfmp-86, afw-fsgvd-88, hhk-tirgc-88, l-spcsa-83, l-rmp-91, lm-cschu-90, mn-fccrp-90i, ps-cgi-85, r-lent-64, s-bag-77, si-smsft-89, ZZZ" +, update = "97.11 bibrelex" } @techreport{cdr-rrmrg-91 -, author = "J. Canny and B. R. Donald and G. Ressler" -, title = "A rational rotation method for robust geometric algorithms" -, type = "Technical {Report}" -, number = "TR~91-1247" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = dec -, year = 1991 -, keywords = "robustness" -, comments = "extended abstract" -, precedes = "cdr-rrmrg-92" +, author = "J. Canny and B. R. Donald and G. Ressler" +, title = "A rational rotation method for robust geometric algorithms" +, type = "Technical {Report}" +, number = "TR~91-1247" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = dec +, year = 1991 +, keywords = "robustness" +, comments = "extended abstract" +, precedes = "cdr-rrmrg-92" } @inproceedings{crr-eakpp-90 -, author = "J. Canny and A. Rege and J. Reif" -, title = "An exact algorithm for kinodynamic planning in the plane" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "271--280" -, precedes = "crr-eakpp-91" -, cites = "bdg-ocrma-83, cdrx-ckp-88, cr-nlbtr-87, fw-pcm-88, h-dsmt-83, jc-pspmr-89, jhcp-pgnto-89, o-mpic-87, rt-akpul-89, r-ccgfo-89, sh-pmttr-84, s-obbtr-87, sd-gtomr-88, sm-mtcrm-85, ZZZ" -, update = "97.11 bibrelex" +, author = "J. Canny and A. Rege and J. Reif" +, title = "An exact algorithm for kinodynamic planning in the plane" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "271--280" +, precedes = "crr-eakpp-91" +, cites = "bdg-ocrma-83, cdrx-ckp-88, cr-nlbtr-87, fw-pcm-88, h-dsmt-83, jc-pspmr-89, jhcp-pgnto-89, o-mpic-87, rt-akpul-89, r-ccgfo-89, sh-pmttr-84, s-obbtr-87, sd-gtomr-88, sm-mtcrm-85, ZZZ" +, update = "97.11 bibrelex" } @article{crr-eakpp-91 -, author = "J. Canny and A. Rege and J. Reif" -, title = "An exact algorithm for kinodynamic planning in the plane" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "461--484" -, succeeds = "crr-eakpp-90" +, author = "J. Canny and A. Rege and J. Reif" +, title = "An exact algorithm for kinodynamic planning in the plane" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "461--484" +, succeeds = "crr-eakpp-90" } @inproceedings{cr-nlbtr-87 -, author = "J. Canny and J. H. Reif" -, title = "New lower bound techniques for robot motion planning problems" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "49--60" +, author = "J. Canny and J. H. Reif" +, title = "New lower bound techniques for robot motion planning problems" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "49--60" } @inproceedings{c-isda-91 -, author = "J. F. Canny" -, title = "An improved sign determination algorithm" -, booktitle = "Proc. 9th AAECC" -, site = "New Orleans" -, year = 1991 -, update = "98.03 bibrelex" +, author = "J. F. Canny" +, title = "An improved sign determination algorithm" +, booktitle = "Proc. 9th AAECC" +, site = "New Orleans" +, year = 1991 +, update = "98.03 bibrelex" } @inproceedings{c-cfmp-89 -, author = "J. F. Canny" -, title = "On the Computability of Fine-Motion Plans" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, publisher = "IEEE Computer Society Press" -, address = "Scottsdale, Arizona" -, year = 1989 -, update = "97.11 bibrelex" +, author = "J. F. Canny" +, title = "On the Computability of Fine-Motion Plans" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, publisher = "IEEE Computer Society Press" +, address = "Scottsdale, Arizona" +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{cg-rirrr-94 -, author = "J. F. Canny and K. Y. Goldberg" -, title = "RISC for Industrial Robotics: Recent Results and Open Problems" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "San Diego, CA" -, month = may -, year = 1994 -, update = "95.01 held" +, author = "J. F. Canny and K. Y. Goldberg" +, title = "RISC for Industrial Robotics: Recent Results and Open Problems" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "San Diego, CA" +, month = may +, year = 1994 +, update = "95.01 held" } @article{cgv-fccsa-92 -, author = "John F. Canny and Dima Grigor{\'e}v and Nicolai Vorobjov" -, title = "Finding connected components of a semi-algebraic set in subexponential time" -, journal = "Appl. Algebra Emg. Commun. Comput." -, volume = 2 -, year = 1992 -, pages = "217--238" -, update = "98.07 agarwal" +, author = "John F. Canny and Dima Grigor{\'e}v and Nicolai Vorobjov" +, title = "Finding connected components of a semi-algebraic set in subexponential time" +, journal = "Appl. Algebra Emg. Commun. Comput." +, volume = 2 +, year = 1992 +, pages = "217--238" +, update = "98.07 agarwal" } @techreport{ckl-sspef-89 -, author = "J. F. Canny and E. Kaltofen and Y. Lakshman" -, title = "Solving Systems of Polynomial Equations Faster" -, type = "Technical {Report}" -, number = "89-14" -, institution = "Dept. Comput. Sci., Rensselaer Polytech. Inst." -, address = "Troy, NY" -, year = 1989 -, update = "97.11 bibrelex" +, author = "J. F. Canny and E. Kaltofen and Y. Lakshman" +, title = "Solving Systems of Polynomial Equations Faster" +, type = "Technical {Report}" +, number = "89-14" +, institution = "Dept. Comput. Sci., Rensselaer Polytech. Inst." +, address = "Troy, NY" +, year = 1989 +, update = "97.11 bibrelex" } -%, number = "8" +%, number = "8" @article{cj-nepiu-98 -, author = "J. Cantarella and H. Johnston" -, title = "Nontrivial embeddings of polygonal intervals and unknots in 3-space" -, journal = "J. Knot Theory Ramifications" -, volume = 7 -, year = 1998 -, pages = "1027--1039" -, update = "99.07 orourke" +, author = "J. Cantarella and H. Johnston" +, title = "Nontrivial embeddings of polygonal intervals and unknots in 3-space" +, journal = "J. Knot Theory Ramifications" +, volume = 7 +, year = 1998 +, pages = "1027--1039" +, update = "99.07 orourke" } @article{c-ocfpl-71 -, author = "A. Cantoni" -, title = "Optimal curve fitting with piecewise linear functions" -, journal = "IEEE Trans. Comput." -, volume = "C-20" -, year = 1971 -, pages = "59--67" -, update = "98.07 bibrelex" +, author = "A. Cantoni" +, title = "Optimal curve fitting with piecewise linear functions" +, journal = "IEEE Trans. Comput." +, volume = "C-20" +, year = 1971 +, pages = "59--67" +, update = "98.07 bibrelex" } @inproceedings{cgt-pumlp-96 -, author = "F. Cao and J. R. Gilbert and S. H. Teng" -, title = "Partitioning Unstructured Meshes with Lines and Planes" -, booktitle = "9th Internat. Conf. Domain Decomposition" -, year = 1996 -, note = "submitted" -, update = "97.11 bibrelex" +, author = "F. Cao and J. R. Gilbert and S. H. Teng" +, title = "Partitioning Unstructured Meshes with Lines and Planes" +, booktitle = "9th Internat. Conf. Domain Decomposition" +, year = 1996 +, note = "submitted" +, update = "97.11 bibrelex" } @book{cm-ecgt-78 -, author = "M. Capobianco and J. C. Molluzzo" -, title = "Examples and Counterexamples in Graph Theory" -, publisher = "North-Holland" -, year = 1978 -, update = "97.11 bibrelex" +, author = "M. Capobianco and J. C. Molluzzo" +, title = "Examples and Counterexamples in Graph Theory" +, publisher = "North-Holland" +, year = 1978 +, update = "97.11 bibrelex" } @article{c-cpo-93 -, author = "V. Capoyleas" -, title = "Clamping of polygonal objects" -, journal = "Pattern Recogn. Lett." -, volume = 14 -, year = 1993 -, pages = "704--714" -, update = "95.01 smid" +, author = "V. Capoyleas" +, title = "Clamping of polygonal objects" +, journal = "Pattern Recogn. Lett." +, volume = 14 +, year = 1993 +, pages = "704--714" +, update = "95.01 smid" } @article{c-aidp-96 -, author = "V. Capoyleas" -, title = "On the area of the intersection of disks in the plane" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "393--396" -, update = "97.03 devillers" +, author = "V. Capoyleas" +, title = "On the area of the intersection of disks in the plane" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "393--396" +, update = "97.03 devillers" } @article{cch-gngcb-96 -, author = "V. Capoyleas and X. Chen and C. M. Hoffmann" -, title = "Generic naming in generative, constraint-based design" -, journal = "Comput. Aided Design" -, volume = 28 -, number = 1 -, year = 1996 -, pages = "17--26" -, update = "98.07 bibrelex" +, author = "V. Capoyleas and X. Chen and C. M. Hoffmann" +, title = "Generic naming in generative, constraint-based design" +, journal = "Comput. Aided Design" +, volume = 28 +, number = 1 +, year = 1996 +, pages = "17--26" +, update = "98.07 bibrelex" } @techreport{cp-tttcc-90 -, author = "V. Capoyleas and J. Pach" -, title = "A {Tur{\'a}n}-type theorem on chords of a convex polygon" -, type = "Technical {Report}" -, number = "90-30" -, institution = "DIMACS" -, year = 1990 -, update = "97.11 bibrelex" +, author = "V. Capoyleas and J. Pach" +, title = "A {Tur{\'a}n}-type theorem on chords of a convex polygon" +, type = "Technical {Report}" +, number = "90-30" +, institution = "DIMACS" +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{cp-ppsp-91 -, author = "V. Capoyleas and J. Pach" -, title = "On the perimeter of a point set in the plane" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "54--57" +, author = "V. Capoyleas and J. Pach" +, title = "On the perimeter of a point set in the plane" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "54--57" } @inproceedings{crw-gc-90 -, author = "V. Capoyleas and G. Rote and G. Woeginger" -, title = "Geometric clusterings" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "28--31" -, succeeds = "rw-gc-89" -, precedes = "crw-gc-91" -, cites = "abky-cabmm-88, a-pdpaa-87, bh-cpcoe-89, b-ak-74, crw-gc-91, d-pcpho-84, e-acg-87, ers-ccsno-90, e-anccp-82, hs-ftp-89, hs-ftp-91, iim-vdlgi-85, j-nccog-82, ms-cscgl-84, ms-ppgmm-91, s-tcg-81, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "V. Capoyleas and G. Rote and G. Woeginger" +, title = "Geometric clusterings" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "28--31" +, succeeds = "rw-gc-89" +, precedes = "crw-gc-91" +, cites = "abky-cabmm-88, a-pdpaa-87, bh-cpcoe-89, b-ak-74, crw-gc-91, d-pcpho-84, e-acg-87, ers-ccsno-90, e-anccp-82, hs-ftp-89, hs-ftp-91, iim-vdlgi-85, j-nccog-82, ms-cscgl-84, ms-ppgmm-91, s-tcg-81, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @article{crw-gc-91 -, author = "V. Capoyleas and G{\"u}nter Rote and G. Woeginger" -, title = "Geometric clusterings" -, journal = "J. Algorithms" -, volume = 12 -, year = 1991 -, pages = "341--356" -, keywords = "cluster analysis" -, succeeds = "crw-gc-90, rw-gc-89" -, update = "98.07 bibrelex, 98.03 mitchell, 97.03 rote, 93.09 rote" -, abstract = "A k-clustering of a given set of points in the plane is - a partition of the points into k subsets (clusters). For any - fixed k, we can find a k-clustering which minimizes any monotone - function of the diameters or the radii of the - clusters in polynomial time. The algorithm is based on the - fact that any two clusters in an optimal solution can - be separated by a line." +, author = "V. Capoyleas and G{\"u}nter Rote and G. Woeginger" +, title = "Geometric clusterings" +, journal = "J. Algorithms" +, volume = 12 +, year = 1991 +, pages = "341--356" +, keywords = "cluster analysis" +, succeeds = "crw-gc-90, rw-gc-89" +, update = "98.07 bibrelex, 98.03 mitchell, 97.03 rote, 93.09 rote" +, abstract = "A k-clustering of a given set of points in the plane is + a partition of the points into k subsets (clusters). For any + fixed k, we can find a k-clustering which minimizes any monotone + function of the diameters or the radii of the + clusters in polynomial time. The algorithm is based on the + fact that any two clusters in an optimal solution can + be separated by a line." } @article{cgppsw-ctct-94 -, author = "S. E. Cappell and J. E. Goodman and J. Pach and R. Pollack and Micha Sharir and R. Wenger" -, title = "Common tangents and common transversals" -, journal = "Adv. Math." -, volume = 106 -, year = 1994 -, pages = "198--215" -, succeeds = "cgppsw-ccht-90" -, update = "98.03 mitchell, 96.09 devillers, 95.09 wenger" +, author = "S. E. Cappell and J. E. Goodman and J. Pach and R. Pollack and Micha Sharir and R. Wenger" +, title = "Common tangents and common transversals" +, journal = "Adv. Math." +, volume = 106 +, year = 1994 +, pages = "198--215" +, succeeds = "cgppsw-ccht-90" +, update = "98.03 mitchell, 96.09 devillers, 95.09 wenger" } @inproceedings{cgppsw-ccht-90 -, author = "S. E. Cappell and J. E. Goodman and J. Pach and R. Pollack and Micha Sharir and R. Wenger" -, title = "The combinatorial complexity of hyperplane transversals" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "83--91" -, note = "(A revised version, entitled ``Common tangents and common - transversals,'' {\it Advance in Math.} 106 (1994), 198--215.)" -, precedes = "cgppsw-ctct-94" -, cites = "ab-eact-87, a-pdpaa-87, ad-ahdsp-90, blwsz-om-93, bf-tdkk-34, c-npbct-71, e-ftssg-85, e-acg-87, egs-ueplf-89, es-mnwsn-87, ew-spdtl-89, gp-ms-83, gp-htthd-88, hiir-wolla-89, klz-gpcs-85, ks-sbtat-77, m-tom-82, w-ubgpc-90, w-gpcc-90, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.11 bibrelex, 95.09 wenger, 95.05 agarwal" +, author = "S. E. Cappell and J. E. Goodman and J. Pach and R. Pollack and Micha Sharir and R. Wenger" +, title = "The combinatorial complexity of hyperplane transversals" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "83--91" +, note = "(A revised version, entitled ``Common tangents and common + transversals,'' {\it Advance in Math.} 106 (1994), 198--215.)" +, precedes = "cgppsw-ctct-94" +, cites = "ab-eact-87, a-pdpaa-87, ad-ahdsp-90, blwsz-om-93, bf-tdkk-34, c-npbct-71, e-ftssg-85, e-acg-87, egs-ueplf-89, es-mnwsn-87, ew-spdtl-89, gp-ms-83, gp-htthd-88, hiir-wolla-89, klz-gpcs-85, ks-sbtat-77, m-tom-82, w-ubgpc-90, w-gpcc-90, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.11 bibrelex, 95.09 wenger, 95.05 agarwal" } % ### others? @article{c-mvor-87 -, author = "V. Cappellini and others" -, title = "From multiple views to object recognition" -, journal = "IEEE Trans. Circuits Syst." -, volume = 34 -, year = 1987 -, pages = "1344--1350" -, update = "98.11 bibrelex" +, author = "V. Cappellini and others" +, title = "From multiple views to object recognition" +, journal = "IEEE Trans. Circuits Syst." +, volume = 34 +, year = 1987 +, pages = "1344--1350" +, update = "98.11 bibrelex" } @article{c-ud5df-11 -, author = "C. Carath{\'e}odory" -, title = "{\"U}ber den {V}ariabilit{\"a}tsbereich der {F}ourierschen {K}onstanten von positiven harmonischen {F}unktionen" -, journal = "Rendiconto del Circolo Matematico di Palermo" -, volume = 32 -, year = 1911 -, pages = "193--217" -, update = "95.01 mitchell" +, author = "C. Carath{\'e}odory" +, title = "{\"U}ber den {V}ariabilit{\"a}tsbereich der {F}ourierschen {K}onstanten von positiven harmonischen {F}unktionen" +, journal = "Rendiconto del Circolo Matematico di Palermo" +, volume = 32 +, year = 1911 +, pages = "193--217" +, update = "95.01 mitchell" } @article{csw-cds2d-88 -, author = "G. Carey and M. Sharna and K. Wang" -, title = "A class of data structures for $2$-d and $3$-d adaptive mesh refinements" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 26 -, year = 1988 -, pages = "2607--2622" -, update = "97.11 bibrelex" +, author = "G. Carey and M. Sharna and K. Wang" +, title = "A class of data structures for $2$-d and $3$-d adaptive mesh refinements" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 26 +, year = 1988 +, pages = "2607--2622" +, update = "97.11 bibrelex" } @techreport{cc-hdsrs-?? -, author = "I. Carlbom and I. Chakravaty" -, title = "A hierarchical data structure for representing the spatial decomposition of $3$-d objects" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "I. Carlbom and I. Chakravaty" +, title = "A hierarchical data structure for representing the spatial decomposition of $3$-d objects" +, type = "Manuscript" +, institution = "??" +, year = "??" } @article{cp-gpvt-78 -, author = "I. Carlbom and J. Paciorek" -, title = "Geometric projection and viewing transformations" -, journal = "ACM Comput. Surv." -, volume = 10 -, year = 1978 -, pages = "465--502" +, author = "I. Carlbom and J. Paciorek" +, title = "Geometric projection and viewing transformations" +, journal = "ACM Comput. Surv." +, volume = 10 +, year = 1978 +, pages = "465--502" } @inproceedings{cgrw-pgfip-94 -, author = "B. Carlisle and K. Y. Goldberg and A. S. Rao and J. Wiegley" -, title = "A pivoting gripper for feeding industrial parts" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, month = may -, year = 1994 -, pages = "1650--1655" -, update = "98.03 bibrelex" +, author = "B. Carlisle and K. Y. Goldberg and A. S. Rao and J. Wiegley" +, title = "A pivoting gripper for feeding industrial parts" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, month = may +, year = 1994 +, pages = "1650--1655" +, update = "98.03 bibrelex" } @article{cr-sdspv-87 -, author = "E. C. Carlson and R. A. Rutenbar" -, title = "A scanline data structure processor for {VLSI} geometry checking" -, journal = "IEEE Trans. Comput.-Aided. Design Integr. Circuits Syst." -, volume = 5 -, number = 5 -, year = 1987 -, pages = "780--794" -, keywords = "data structuring, VLSI design, parallel computation" -, update = "95.09 korneenko" +, author = "E. C. Carlson and R. A. Rutenbar" +, title = "A scanline data structure processor for {VLSI} geometry checking" +, journal = "IEEE Trans. Comput.-Aided. Design Integr. Circuits Syst." +, volume = 5 +, number = 5 +, year = 1987 +, pages = "780--794" +, keywords = "data structuring, VLSI design, parallel computation" +, update = "95.09 korneenko" } @article{c-ddehi-87 -, author = "Svante Carlsson" -, title = "The Deap: a Double-Ended Heap to Implement Double-Ended Priority Queries" -, journal = "Inform. Process. Lett." -, volume = 26 -, number = 1 -, year = 1987 -, pages = "33--36" -, keywords = "data structuring" -, update = "99.07 bibrelex, 95.09 korneenko" +, author = "Svante Carlsson" +, title = "The Deap: a Double-Ended Heap to Implement Double-Ended Priority Queries" +, journal = "Inform. Process. Lett." +, volume = 26 +, number = 1 +, year = 1987 +, pages = "33--36" +, keywords = "data structuring" +, update = "99.07 bibrelex, 95.09 korneenko" } @article{ccs-ncdsd-89 -, author = "Svante Carlsson and Jingsen Chen and Thomas Strothotte" -, title = "A Note on the Construction of the Data Structure ``Deap''" -, journal = "Inform. Process. Lett." -, volume = 31 -, year = 1989 -, pages = "315--317" -, keywords = "data structuring" -, update = "99.07 bibrelex, 95.09 korneenko" +, author = "Svante Carlsson and Jingsen Chen and Thomas Strothotte" +, title = "A Note on the Construction of the Data Structure ``Deap''" +, journal = "Inform. Process. Lett." +, volume = 31 +, year = 1989 +, pages = "315--317" +, keywords = "data structuring" +, update = "99.07 bibrelex, 95.09 korneenko" } @inproceedings{cj-cswps-95 -, author = "Svante Carlsson and Hakan Jonsson" -, title = "Computing a Shortest Watchman Path in a Simple Polygon in Polynomial Time" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "122--134" -, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" +, author = "Svante Carlsson and Hakan Jonsson" +, title = "Computing a Shortest Watchman Path in a Simple Polygon in Polynomial Time" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "122--134" +, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" } @inproceedings{cj-gt-93 -, author = "Svante Carlsson and Hakan Jonsson" -, title = "Guarding a Treasury" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "85--90" -, cites = "b-vsp-91, ce-oails-92, dj-tag-92, ea-lacvp-81, h-ovgat-89, ll-cvpe-86, gmr-rlptd-92, o-agta-87, ps-cgi-85, c-ctpg-75, s-rrag-92, ZZZ" -, update = "01.04 icking, 99.07 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" +, author = "Svante Carlsson and Hakan Jonsson" +, title = "Guarding a Treasury" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "85--90" +, cites = "b-vsp-91, ce-oails-92, dj-tag-92, ea-lacvp-81, h-ovgat-89, ll-cvpe-86, gmr-rlptd-92, o-agta-87, ps-cgi-85, c-ctpg-75, s-rrag-92, ZZZ" +, update = "01.04 icking, 99.07 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{cjn-fswrs-93 -, author = "Svante Carlsson and Hakan Jonsson and Bengt J. Nilsson" -, title = "Finding the Shortest Watchman Route in a Simple Polygon" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "58--67" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Svante Carlsson and Hakan Jonsson and Bengt J. Nilsson" +, title = "Finding the Shortest Watchman Route in a Simple Polygon" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "58--67" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @article{cjn-fswrs-99 -, author = "S. Carlsson and H. Jonsson and B. J. Nilsson" -, title = "Finding the Shortest Watchman Route in a Simple Polygon" -, journal = "Discrete Comput. Geom." -, volume = 22 -, number = 3 -, year = 1999 -, pages = "377--402" -, update = "99.11 held" +, author = "S. Carlsson and H. Jonsson and B. J. Nilsson" +, title = "Finding the Shortest Watchman Route in a Simple Polygon" +, journal = "Discrete Comput. Geom." +, volume = 22 +, number = 3 +, year = 1999 +, pages = "377--402" +, update = "99.11 held" } @article{cn-cvpp-99 -, author = "S. Carlsson and B. J. Nilsson" -, title = "Computing Vision Points in Polygons" -, journal = "Algorithmica" -, volume = 24 -, year = 1999 -, pages = "50--75" -, update = "00.03 bibrelex" +, author = "S. Carlsson and B. J. Nilsson" +, title = "Computing Vision Points in Polygons" +, journal = "Algorithmica" +, volume = 24 +, year = 1999 +, pages = "50--75" +, update = "00.03 bibrelex" } @inproceedings{cnn-ogcmw-91 -, author = "Svante Carlsson and Bengt J. Nilsson and Simeon Ntafos" -, title = "Optimum Guard Covers and $m$-Watchmen Routes for Restricted Polygons" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "367--378" -, keywords = "polygons, visibility" -, precedes = "cnn-ogcmw-93" -, update = "99.07 bibrelex, 98.03 mitchell, 96.09 devillers" +, author = "Svante Carlsson and Bengt J. Nilsson and Simeon Ntafos" +, title = "Optimum Guard Covers and $m$-Watchmen Routes for Restricted Polygons" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "367--378" +, keywords = "polygons, visibility" +, precedes = "cnn-ogcmw-93" +, update = "99.07 bibrelex, 98.03 mitchell, 96.09 devillers" } @article{cnn-ogcmw-93 -, author = "Svante Carlsson and Bengt J. Nilsson and Simeon Ntafos" -, title = "Optimum Guard Covers and $m$-Watchmen Routes for Restricted Polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "85--105" -, keywords = "Visibility, art gallery, watchman route, dynamic programming" -, succeeds = "cnn-ogcmw-91" -, update = "99.07 bibrelex, 98.03 mitchell, 96.09 devillers" +, author = "Svante Carlsson and Bengt J. Nilsson and Simeon Ntafos" +, title = "Optimum Guard Covers and $m$-Watchmen Routes for Restricted Polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "85--105" +, keywords = "Visibility, art gallery, watchman route, dynamic programming" +, succeeds = "cnn-ogcmw-91" +, update = "99.07 bibrelex, 98.03 mitchell, 96.09 devillers" } @inproceedings{ck-mchlt-01 -, author = "Paz Carmi and Matthew J. Katz" -, title = "Minimizing the Convex Hull via Local Transfers" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "105--108" -, update = "01.04 icking" +, author = "Paz Carmi and Matthew J. Katz" +, title = "Minimizing the Convex Hull via Local Transfers" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "105--108" +, update = "01.04 icking" } @book{c-dgcs-76 -, author = "M. de Carmo" -, title = "Differential Geometry of Curves and Surfaces" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1976 -, update = "98.03 bibrelex" +, author = "M. de Carmo" +, title = "Differential Geometry of Curves and Surfaces" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1976 +, update = "98.03 bibrelex" } @article{c-dkhvn-70 -, author = "H. Carnal" -, title = "Die konvexe {H{\"u}lle} von $n$ rotationssymmetrisch verteilten {Punkten}" -, journal = "Z. Wahrsch. Verw. Gebiete" -, volume = 15 -, year = 1970 -, pages = "168--176" +, author = "H. Carnal" +, title = "Die konvexe {H{\"u}lle} von $n$ rotationssymmetrisch verteilten {Punkten}" +, journal = "Z. Wahrsch. Verw. Gebiete" +, volume = 15 +, year = 1970 +, pages = "168--176" } @article{c-gesc96 -, author = "Y. Caro" -, title = "On the generalized {Erd{\H{o}}s-Szekeres} conjecture" -, journal = "Discrete Math." -, volume = 160 -, year = 1996 -, pages = "229--233" -, update = "02.03 devillers" +, author = "Y. Caro" +, title = "On the generalized {Erd{\H{o}}s-Szekeres} conjecture" +, journal = "Discrete Math." +, volume = 160 +, year = 1996 +, pages = "229--233" +, update = "02.03 devillers" } @article{c-adhgc-80 -, author = "M. J. Carpano" -, title = "Automatic Display of Hierarchized Graphs for Computer Aided Decision Analysis" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-10" -, number = 11 -, year = 1980 -, pages = "705--715" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. J. Carpano" +, title = "Automatic Display of Hierarchized Graphs for Computer Aided Decision Analysis" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-10" +, number = 11 +, year = 1980 +, pages = "705--715" +, keywords = "graph drawing" +, update = "93.09 tamassia" } % what is this?? @article{cd-adtgi-80 -, author = "M. J. Carpano and M. Delarche" -, title = "Apport des Techniques Graphiques Interactives a l'Analyse Structurale de Systemes. {II}-Exemples de Realization et d'Application" -, journal = "RAIRO Sept. Anal. Cont. June" -, volume = "??" -, year = 1980 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. J. Carpano and M. Delarche" +, title = "Apport des Techniques Graphiques Interactives a l'Analyse Structurale de Systemes. {II}-Exemples de Realization et d'Application" +, journal = "RAIRO Sept. Anal. Cont. June" +, volume = "??" +, year = 1980 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{cms-sssa-01 -, author = "Hamish Carr and Torsten M{\"o}ller and Jack Snoeyink" -, title = "Simplicial Subdivisions and Sampling Artifacts" -, booktitle = "Proceedings IEEE Visualization 2001" -, year = 2001 -, pages = "99--106" -, update = "02.03 wenger" +, author = "Hamish Carr and Torsten M{\"o}ller and Jack Snoeyink" +, title = "Simplicial Subdivisions and Sampling Artifacts" +, booktitle = "Proceedings IEEE Visualization 2001" +, year = 2001 +, pages = "99--106" +, update = "02.03 wenger" } @article{c-csma-87 -, author = "L. Carstensen" -, title = "A comparison of simple mathematical approaches to spot symbols" -, journal = "Cartographica" -, volume = 24 -, number = 3 -, year = 1987 -, pages = "46--63" -, update = "97.07 agarwal" +, author = "L. Carstensen" +, title = "A comparison of simple mathematical approaches to spot symbols" +, journal = "Cartographica" +, volume = 24 +, number = 3 +, year = 1987 +, pages = "46--63" +, update = "97.07 agarwal" } @incollection{cc-pptus-95 -, author = "P. C. P. Carvalho and P. R. Cavalcanti" -, title = "Point in polyhedron testing using spherical polygons" -, editor = "A. W. Paeth" -, booktitle = "Graphics Gems V" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1995 -, pages = "42--54" -, update = "98.07 orourke, 98.03 orourke" +, author = "P. C. P. Carvalho and P. R. Cavalcanti" +, title = "Point in polyhedron testing using spherical polygons" +, editor = "A. W. Paeth" +, booktitle = "Graphics Gems V" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1995 +, pages = "42--54" +, update = "98.07 orourke, 98.03 orourke" } @article{c-egssn-96 -, author = "M. Casale" -, title = "Evaluating geometric sensitivities at singular and non-singular points of variational {CAD} models for design optimization" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "443--460" -, update = "97.03 devillers" +, author = "M. Casale" +, title = "Evaluating geometric sensitivities at singular and non-singular points of variational {CAD} models for design optimization" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "443--460" +, update = "97.03 devillers" } @book{c-ign-59 -, author = "J. Cassels" -, title = "An Introduction to the Geometry of Numbers" -, publisher = "Springer-Verlag" -, year = 1959 -, update = "96.05 pocchiola" +, author = "J. Cassels" +, title = "An Introduction to the Geometry of Numbers" +, publisher = "Springer-Verlag" +, year = 1959 +, update = "96.05 pocchiola" } @inproceedings{csm-nocpt-95 -, author = "T. Cassen and K. R. Subramanian and Z. Michalewicz" -, title = "Near-Optimal Construction of Partitioning Trees by Evolutionary Techniques" -, booktitle = "Proc. of Graphics Interface '95" -, year = 1995 -, pages = "263--271" -, update = "97.07 agarwal" +, author = "T. Cassen and K. R. Subramanian and Z. Michalewicz" +, title = "Near-Optimal Construction of Partitioning Trees by Evolutionary Techniques" +, booktitle = "Proc. of Graphics Interface '95" +, year = 1995 +, pages = "263--271" +, update = "97.07 agarwal" } @inproceedings{cu-slepg-96 -, author = "N. Castaneda and J. Urrutia" -, title = "Straight line embeddings of planar graphs on point sets" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "312--318" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "N. Castaneda and J. Urrutia" +, title = "Straight line embeddings of planar graphs on point sets" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "312--318" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{chm-npaga-95 -, author = "M. J. Castro-Diaz and F. Hecht and B. Mohammadi" -, title = "New Progress in Anisotropic Grid Adaptation for Inviscid and Viscid Flows Simulations" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "73--86" -, update = "96.01 samitchell" +, author = "M. J. Castro-Diaz and F. Hecht and B. Mohammadi" +, title = "New Progress in Anisotropic Grid Adaptation for Inviscid and Viscid Flows Simulations" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "73--86" +, update = "96.01 samitchell" } @inproceedings{ccdm-rdbrc-99 -, author = "Natalia de Castro and Francisco Javier Cobos and Juan Carlos Dana and Alberto M{\'a}rquez" -, title = "Rectangular Duals and Box-Representation in the Cylinder" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "145--147" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Natalia de Castro and Francisco Javier Cobos and Juan Carlos Dana and Alberto M{\'a}rquez" +, title = "Rectangular Duals and Box-Representation in the Cylinder" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "145--147" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{c-ahcr-95 -, author = "T. Catarci" -, title = "The Assignment Heuristic for Crossing Reduction" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 25 -, number = 3 -, year = 1995 -, pages = "515--521" -, succeeds = "c-ahcrb-88" -, update = "98.07 vismara" +, author = "T. Catarci" +, title = "The Assignment Heuristic for Crossing Reduction" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 25 +, number = 3 +, year = 1995 +, pages = "515--521" +, succeeds = "c-ahcrb-88" +, update = "98.07 vismara" } @inproceedings{c-ahcrb-88 -, author = "T. Catarci" -, title = "The Assignment Heuristic for Crossing Reduction in Bipartite Graphs" -, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "T. Catarci" +, title = "The Assignment Heuristic for Crossing Reduction in Bipartite Graphs" +, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{c-sacdc-74 -, author = "E. Catmull" -, title = "A Subdivision Algorithm for Computer Display of Curved Surfaces" -, number = "UTEC-CSC-74-133" -, institution = "Dept. Comput. Sci., Univ. Utah" -, address = "Salt Lake City" -, year = 1974 -, update = "97.11 bibrelex" +, author = "E. Catmull" +, title = "A Subdivision Algorithm for Computer Display of Curved Surfaces" +, number = "UTEC-CSC-74-133" +, institution = "Dept. Comput. Sci., Univ. Utah" +, address = "Salt Lake City" +, year = 1974 +, update = "97.11 bibrelex" } @article{cc-rgbss-78 -, author = "E. Catmull and J. Clark" -, title = "Recursively generated {B}-spline surfaces on arbitrary topological meshes" -, journal = "Comput. Aided Design" -, volume = 10 -, year = 1978 -, pages = "350--365" +, author = "E. Catmull and J. Clark" +, title = "Recursively generated {B}-spline surfaces on arbitrary topological meshes" +, journal = "Comput. Aided Design" +, volume = 10 +, year = 1978 +, pages = "350--365" } @article{c-spp-1813 -, author = "Augustin L. Cauchy" -, title = "Sur les polygones et les poly{\`e}dres, seconde m{\'e}moire" -, journal = "J. {\'E}cole Polytechnique" -, volume = "XVIe Cahier, Tome IX" -, year = 1813 -, pages = "113--148" -, note = "OEuvres Compl{\`e}tes, IIe S{\`e}rie, Vol. 1, Paris, 1905, 26--38." -, update = "01.11 orourke" +, author = "Augustin L. Cauchy" +, title = "Sur les polygones et les poly{\`e}dres, seconde m{\'e}moire" +, journal = "J. {\'E}cole Polytechnique" +, volume = "XVIe Cahier, Tome IX" +, year = 1813 +, pages = "113--148" +, note = "OEuvres Compl{\`e}tes, IIe S{\`e}rie, Vol. 1, Paris, 1905, 26--38." +, update = "01.11 orourke" } @inproceedings{ca-hadla-86 -, author = "H. J. Caulfield and M. A. G. Abushagur" -, title = "Hybrid analog-digital linear algebra processors" -, booktitle = "Proc. of SPIE" -, volume = 634 -, year = 1986 -, pages = "86--95" -, update = "98.07 bibrelex" +, author = "H. J. Caulfield and M. A. G. Abushagur" +, title = "Hybrid analog-digital linear algebra processors" +, booktitle = "Proc. of SPIE" +, volume = 634 +, year = 1986 +, pages = "86--95" +, update = "98.07 bibrelex" } @article{c-atapd-74 -, author = "J. C. Cavendish" -, title = "Automatic triangulation of arbitrary planar domains for the finite element method" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 8 -, year = 1974 -, pages = "679--696" +, author = "J. C. Cavendish" +, title = "Automatic triangulation of arbitrary planar domains for the finite element method" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 8 +, year = 1974 +, pages = "679--696" } @article{cff-aatdf-85 -, author = "J. C. Cavendish and D. A. Field and W. H. Frey" -, title = "An approach to automatic three-dimensional finite element mesh generation" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 21 -, year = 1985 -, pages = "329--347" +, author = "J. C. Cavendish and D. A. Field and W. H. Frey" +, title = "An approach to automatic three-dimensional finite element mesh generation" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 21 +, year = 1985 +, pages = "329--347" } @article{cfm-fbdfe-91 -, author = "J. C. Cavendish and W. H. Frey and S. P. Marin" -, title = "Feature-Based Design And Finite Element Mesh Generation For Functional Surfaces" -, journal = "Advances in Engineering Software and Workstations" -, volume = 13 -, number = "5--6" -, month = sep -, year = 1991 -, pages = "226--237" -, keywords = "feature based design, finite element mesh generation, functional surfaces, Delaunay surface triangulation, surface modeling systems, downstream mesh generation" -, annote = "Watson's alg for tri. Constraint edges are forced by - ensuring that no generated points falls in their - circumcircles." -, abstract = "This paper describes an approach to feature-based - design and feature-based mesh generation for - multi-featured functional surfaces. Unlike standard - free-form parametric surface representation where the - parametric surface patch plays the key role in both - surface design and finite element mesh generation, we - propose an approach to these two tasks which proceeds - from the level of a complete feature (for example, a - pocket or channel). The result is a more direct method - for modeling functional surface characteristics and a - more efficient feature-based implementation of Delaunay - surface triangulation. (Author abstract) 10 Refs." +, author = "J. C. Cavendish and W. H. Frey and S. P. Marin" +, title = "Feature-Based Design And Finite Element Mesh Generation For Functional Surfaces" +, journal = "Advances in Engineering Software and Workstations" +, volume = 13 +, number = "5--6" +, month = sep +, year = 1991 +, pages = "226--237" +, keywords = "feature based design, finite element mesh generation, functional surfaces, Delaunay surface triangulation, surface modeling systems, downstream mesh generation" +, annote = "Watson's alg for tri. Constraint edges are forced by + ensuring that no generated points falls in their + circumcircles." +, abstract = "This paper describes an approach to feature-based + design and feature-based mesh generation for + multi-featured functional surfaces. Unlike standard + free-form parametric surface representation where the + parametric surface patch plays the key role in both + surface design and finite element mesh generation, we + propose an approach to these two tasks which proceeds + from the level of a complete feature (for example, a + pocket or channel). The result is a more direct method + for modeling functional surface characteristics and a + more efficient feature-based implementation of Delaunay + surface triangulation. (Author abstract) 10 Refs." } @article{c-te-48 -, author = "A. Cayley" -, title = "On the Theory of Elimination" -, journal = "Cambridge and Dublin Math. J." -, volume = 3 -, year = 1948 -, pages = "116--120" -, update = "97.11 bibrelex" +, author = "A. Cayley" +, title = "On the Theory of Elimination" +, journal = "Cambridge and Dublin Math. J." +, volume = 3 +, year = 1948 +, pages = "116--120" +, update = "97.11 bibrelex" } @article{c-tggr-95 -, author = "A. Cayley" -, title = "The Theory of Groups Graphical Representation" -, journal = "Math. Papers" -, volume = 10 -, year = 1895 -, pages = "26--28" -, update = "97.11 bibrelex" +, author = "A. Cayley" +, title = "The Theory of Groups Graphical Representation" +, journal = "Math. Papers" +, volume = 10 +, year = 1895 +, pages = "26--28" +, update = "97.11 bibrelex" } @article{c-cpoda-97 -, author = "F. Cazals" -, title = "Combinatorial properties of one-dimensional arrangements" -, journal = "Experimental Math." -, volume = 6 -, number = 1 -, year = 1997 -, update = "98.07 bibrelex" +, author = "F. Cazals" +, title = "Combinatorial properties of one-dimensional arrangements" +, journal = "Experimental Math." +, volume = 6 +, number = 1 +, year = 1997 +, update = "98.07 bibrelex" } @inproceedings{c-ennsh-98 -, author = "F. Cazals" -, title = "Effective nearest neighbors searching on the hyper-cube, with a pplications to molecular clustering" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "222--230" -, update = "98.11 devillers" +, author = "F. Cazals" +, title = "Effective nearest neighbors searching on the hyper-cube, with a pplications to molecular clustering" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "222--230" +, update = "98.11 devillers" } @inproceedings{cdp-fchcn-95 -, author = "F. Cazals and G. Drettakis and C. Puech" -, title = "Filtering, clustering and hierarchy construction: a new solution for ray-tracing complex scenes" -, booktitle = "EG'95" -, site = "Maastricht, Netherlands" -, year = 1995 -, update = "98.07 bibrelex" +, author = "F. Cazals and G. Drettakis and C. Puech" +, title = "Filtering, clustering and hierarchy construction: a new solution for ray-tracing complex scenes" +, booktitle = "EG'95" +, site = "Maastricht, Netherlands" +, year = 1995 +, update = "98.07 bibrelex" } @inproceedings{cp-blspd-97 -, author = "F. Cazals and C. Puech" -, title = "Bucket-like space partitioning data structures with applications to ray tracing" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "11--20" -, cites = "a-fcagi-94, aeiim-pubtc-85, c-cpoda-97, cdp-fchcn-95, cs-sigte-97, bkos-cge-95, d-lnba-86, d-mddtd-88, glm-othsr-96, jl-rrt-92, ks-frtua-97, bwy-oetac-80, mms-qsrs-94, nhs-gfasm-84, o-cgc-94, ps-cgi-85, s-iggp-76, s-igbmf-93, sd-fbcve-95, sd-csdta-95, w-ltsbv-92, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "F. Cazals and C. Puech" +, title = "Bucket-like space partitioning data structures with applications to ray tracing" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "11--20" +, cites = "a-fcagi-94, aeiim-pubtc-85, c-cpoda-97, cdp-fchcn-95, cs-sigte-97, bkos-cge-95, d-lnba-86, d-mddtd-88, glm-othsr-96, jl-rrt-92, ks-frtua-97, bwy-oetac-80, mms-qsrs-94, nhs-gfasm-84, o-cgc-94, ps-cgi-85, s-iggp-76, s-igbmf-93, sd-fbcve-95, sd-csdta-95, w-ltsbv-92, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @unpublished{cs-sigte-97 -, author = "F. Cazals and M. Sbert" -, title = "Some integral geometry tools to estimate the complexity of 3d scenes" -, year = 1997 -, note = "In preparation" -, update = "98.07 bibrelex" +, author = "F. Cazals and M. Sbert" +, title = "Some integral geometry tools to estimate the complexity of 3d scenes" +, year = 1997 +, note = "In preparation" +, update = "98.07 bibrelex" } @article{cd-fsgr-00 -, author = "D. Cazier and J.-F. Dufourd" -, title = "A formal specification of geometric refinements" -, journal = "Visual Comput." -, volume = "" -, year = 2000 -, pages = "" -, update = "00.03 devillers" +, author = "D. Cazier and J.-F. Dufourd" +, title = "A formal specification of geometric refinements" +, journal = "Visual Comput." +, volume = "" +, year = 2000 +, pages = "" +, update = "00.03 devillers" } @inproceedings{cd-rsbps-95 -, author = "David Cazier and Jean-Fran{\c c}ois Dufourd" -, title = "A Rewrite System to Build Planar Subdivisions" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "235--240" -, update = "00.03 bibrelex, 95.09 jones" +, author = "David Cazier and Jean-Fran{\c c}ois Dufourd" +, title = "A Rewrite System to Build Planar Subdivisions" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "235--240" +, update = "00.03 bibrelex, 95.09 jones" } @article{cgaf-gstlm-94 -, author = "G. Ceder and G. Garbulsky and D. Avis and K. Fukuda" -, title = "Ground states of a ternany lattice model with nearest and next-nearest neighbor interactions" -, journal = "Physical Review B" -, volume = 49 -, year = 1994 -, pages = "1--7" -, update = "98.03 bibrelex" +, author = "G. Ceder and G. Garbulsky and D. Avis and K. Fukuda" +, title = "Ground states of a ternany lattice model with nearest and next-nearest neighbor interactions" +, journal = "Physical Review B" +, volume = 49 +, year = 1994 +, pages = "1--7" +, update = "98.03 bibrelex" } @article{css-mfcud-83 -, author = "Z. J. Cendes and D. N. Shenton and H. Shahnasser" -, title = "Magnetic Field Computation using {Delaunay} Triangulation and Complementary Finite Element Methods" -, journal = "IEEE Trans. Magn." -, volume = "MAG-19" -, number = 6 -, year = 1983 -, annote = "Uses incremental switching algorithm. Triangles are - refined by adding point at the centroid." +, author = "Z. J. Cendes and D. N. Shenton and H. Shahnasser" +, title = "Magnetic Field Computation using {Delaunay} Triangulation and Complementary Finite Element Methods" +, journal = "IEEE Trans. Magn." +, volume = "MAG-19" +, number = 6 +, year = 1983 +, annote = "Uses incremental switching algorithm. Triangles are + refined by adding point at the centroid." } @techreport{b-dgs-70 -, author = "Bureau of the Census" -, title = "The DIME Geocoding System" -, type = "Report" -, number = 4 -, institution = "U.S. Department of Commerce, Bureau of the Census" -, address = "Washington" -, year = 1970 -, note = "Census use Study" -, update = "98.11 bibrelex" +, author = "Bureau of the Census" +, title = "The DIME Geocoding System" +, type = "Report" +, number = 4 +, institution = "U.S. Department of Commerce, Bureau of the Census" +, address = "Washington" +, year = 1970 +, note = "Census use Study" +, update = "98.11 bibrelex" } @inproceedings{ca-prfr-88 -, author = "R. Chadha and D. Allison" -, title = "Partitioning rectilinear figures into rectangles" -, booktitle = "Proc. ACM Annu. Computer Sci. Conf." -, year = 1988 -, pages = "102--106" -, keywords = "partition, isothetic" -, update = "95.09 korneenko" +, author = "R. Chadha and D. Allison" +, title = "Partitioning rectilinear figures into rectangles" +, booktitle = "Proc. ACM Annu. Computer Sci. Conf." +, year = 1988 +, pages = "102--106" +, keywords = "partition, isothetic" +, update = "95.09 korneenko" } @inproceedings{ces-hmpmd-96 -, author = "T. Chadzelek and J. Eckstein and E. Sch{\"o}mer" -, title = "Heuristic motion planning with many degrees of freedom" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "167--172" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "T. Chadzelek and J. Eckstein and E. Sch{\"o}mer" +, title = "Heuristic motion planning with many degrees of freedom" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "167--172" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{ces-hmpmo-96 -, author = "T. Chadzelek and J. Eckstein and E. Sch{\"o}mer" -, title = "Heuristic motion planning with movable obstacles" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "131--136" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "T. Chadzelek and J. Eckstein and E. Sch{\"o}mer" +, title = "Heuristic motion planning with movable obstacles" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "131--136" +, update = "97.03 agarwal, 96.09 mitchell" } @mastersthesis{c-hbvf-95 -, author = "Th. Chadzelek" -, title = "Heuristische {Bewegungsplanung} mit vielen {Freiheitsgraden}" -, type = "M.{Sc}. Thesis" -, school = "Dept. Comput. Sci., University Saarland" -, address = "Saarbr{\"u}cken, Germany" -, year = 1995 -, url = "http://hamster.cs.uni-sb.de/~chadzele/publications/Diplom-Chadzelek.ps.Z" -, keywords = "master thesis, motion planning, collision detection, heuristic, quaternion" -, update = "95.09 chadzelek" +, author = "Th. Chadzelek" +, title = "Heuristische {Bewegungsplanung} mit vielen {Freiheitsgraden}" +, type = "M.{Sc}. Thesis" +, school = "Dept. Comput. Sci., University Saarland" +, address = "Saarbr{\"u}cken, Germany" +, year = 1995 +, url = "http://hamster.cs.uni-sb.de/~chadzele/publications/Diplom-Chadzelek.ps.Z" +, keywords = "master thesis, motion planning, collision detection, heuristic, quaternion" +, update = "95.09 chadzelek" } @techreport{c-hmpmd-95 -, author = "Th. Chadzelek and G. Hotz and E. Sch{\"o}mer" -, title = "Heuristic Motion Planning with Many Degrees of Freedom" -, type = "Report" -, number = "95-08" -, institution = "Dept. Comput. Sci., University Saarland" -, address = "Saarbr{\"u}cken, Germany" -, year = 1995 -, url = "http://hamster.cs.uni-sb.de/~chadzele/publications/TechReport.ps.gz" -, keywords = "motion planning, collision detection, heuristic, quaternion" -, update = "95.09 chadzelek" +, author = "Th. Chadzelek and G. Hotz and E. Sch{\"o}mer" +, title = "Heuristic Motion Planning with Many Degrees of Freedom" +, type = "Report" +, number = "95-08" +, institution = "Dept. Comput. Sci., University Saarland" +, address = "Saarbr{\"u}cken, Germany" +, year = 1995 +, url = "http://hamster.cs.uni-sb.de/~chadzele/publications/TechReport.ps.gz" +, keywords = "motion planning, collision detection, heuristic, quaternion" +, update = "95.09 chadzelek" } @inproceedings{ck-tmaub-95 -, author = "Soo-Won Chae and Jong-Soo Kim" -, title = "Tetrahedral Meshing Algorithm Using Basic Operators" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "305--319" -, update = "96.01 samitchell" +, author = "Soo-Won Chae and Jong-Soo Kim" +, title = "Tetrahedral Meshing Algorithm Using Basic Operators" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "305--319" +, update = "96.01 samitchell" } @article{ckss-crr-81 -, author = "S. Chaiken and D. J. Kleitman and M. Saks and I. Shearer" -, title = "Covering regions by rectangles" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 2 -, number = 4 -, year = 1981 -, pages = "394--410" -, keywords = "isothetic, covering" -, update = "95.09 korneenko" +, author = "S. Chaiken and D. J. Kleitman and M. Saks and I. Shearer" +, title = "Covering regions by rectangles" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 2 +, number = 4 +, year = 1981 +, pages = "394--410" +, keywords = "isothetic, covering" +, update = "95.09 korneenko" } @article{cl-csptp-91 -, author = "Don Chakerian and Dave Logothetti" -, title = "Cube Slices, Pictorial Triangles, and Probability" -, journal = "Math. Mag." -, volume = 64 -, year = 1991 -, pages = "219--241" -, update = "94.05 aich" +, author = "Don Chakerian and Dave Logothetti" +, title = "Cube Slices, Pictorial Triangles, and Probability" +, journal = "Math. Mag." +, volume = 64 +, year = 1991 +, pages = "219--241" +, update = "94.05 aich" } @article{cf-mpc-86 -, author = "G. D. Chakerian and P. Filliman" -, title = "The Measures of the Projections of a Cube" -, journal = "Studia Scientiarum Mathematicum Hungarica" -, volume = 21 -, year = 1986 -, pages = "103--110" -, update = "94.05 aich" +, author = "G. D. Chakerian and P. Filliman" +, title = "The Measures of the Projections of a Cube" +, journal = "Studia Scientiarum Mathematicum Hungarica" +, volume = 21 +, year = 1986 +, pages = "103--110" +, update = "94.05 aich" } @article{cg-fpms-85 -, author = "G. D. Chakerian and M. A. Ghandehari" -, title = "The {Fermat} problem in {Minkowski} space" -, journal = "Geom. Dedicata" -, volume = 17 -, year = 1985 -, pages = "227--238" -, update = "98.03 bibrelex" +, author = "G. D. Chakerian and M. A. Ghandehari" +, title = "The {Fermat} problem in {Minkowski} space" +, journal = "Geom. Dedicata" +, volume = 17 +, year = 1985 +, pages = "227--238" +, update = "98.03 bibrelex" } @article{cl-gep-71 -, author = "G. D. Chakerian and L. H. Lange" -, title = "Geometric extremum problems" -, journal = "Math. Mag." -, volume = 44 -, year = 1971 -, pages = "57--69" +, author = "G. D. Chakerian and L. H. Lange" +, title = "Geometric extremum problems" +, journal = "Math. Mag." +, volume = 44 +, year = 1971 +, pages = "57--69" } @inproceedings{cf-cvbtd-82 -, author = "I. Chakravarty and H. Freeman" -, title = "Characteristic views as a basis for three-demensional object recognition" -, booktitle = "Proc. SPIE: Robot Vision" -, volume = 336 -, year = 1982 -, pages = "37--45" -, update = "98.11 bibrelex" +, author = "I. Chakravarty and H. Freeman" +, title = "Characteristic views as a basis for three-demensional object recognition" +, booktitle = "Proc. SPIE: Robot Vision" +, volume = 336 +, year = 1982 +, pages = "37--45" +, update = "98.11 bibrelex" } @inproceedings{cr-gaha-87 -, author = "S. B. Chalasani and C. S. Raghavendra" -, title = "Geometric algorithms on a mesh architecture" -, booktitle = "Computer Architecture in Pattern Analysis and Machine Intelligence" -, site = "Seattle" -, publisher = "IEEE Computer Society" -, month = oct -, year = 1987 -, pages = "169--175" -, keywords = "parallel computation" -, update = "97.11 bibrelex, 95.09 korneenko" +, author = "S. B. Chalasani and C. S. Raghavendra" +, title = "Geometric algorithms on a mesh architecture" +, booktitle = "Computer Architecture in Pattern Analysis and Machine Intelligence" +, site = "Seattle" +, publisher = "IEEE Computer Society" +, month = oct +, year = 1987 +, pages = "169--175" +, keywords = "parallel computation" +, update = "97.11 bibrelex, 95.09 korneenko" } @article{cfk-fesrd-81 -, author = "L. C. Chalmet and R. L. Francis and A. Kolen" -, title = "Finding efficient solutions for rectilinear distance location problems efficiently" -, journal = "European J. Oper. Res." -, volume = 6 -, year = 1981 -, pages = "117--124" -, keywords = "facility location, $L_1$-metric" -, update = "95.09 korneenko" +, author = "L. C. Chalmet and R. L. Francis and A. Kolen" +, title = "Finding efficient solutions for rectilinear distance location problems efficiently" +, journal = "European J. Oper. Res." +, volume = 6 +, year = 1981 +, pages = "117--124" +, keywords = "facility location, $L_1$-metric" +, update = "95.09 korneenko" } @inproceedings{cdlss-frceu-96 -, author = "Bradford Chamberlain and Tony DeRose and Dana Lischinski and David Salesin and John Snyder" -, title = "Fast Rendering of Complex Environments Using a Spatial Hierarchy" -, booktitle = "Proceedings of Graphics Interface '96" -, year = 1996 -, pages = "" -, update = "98.03 agarwal" +, author = "Bradford Chamberlain and Tony DeRose and Dana Lischinski and David Salesin and John Snyder" +, title = "Fast Rendering of Complex Environments Using a Spatial Hierarchy" +, booktitle = "Proceedings of Graphics Interface '96" +, year = 1996 +, pages = "" +, update = "98.03 agarwal" } @inproceedings{cf-pasdp-91 -, author = "I. W. Chan and D. K. Friesen" -, title = "Parallel algorithms for some dominance problems based on a {CREW} {PRAM}" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "375--384" -, precedes = "cf-pasdp-93" -, update = "96.09 devillers" +, author = "I. W. Chan and D. K. Friesen" +, title = "Parallel algorithms for some dominance problems based on a {CREW} {PRAM}" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "375--384" +, precedes = "cf-pasdp-93" +, update = "96.09 devillers" } @article{cf-pasdp-93 -, author = "I. W. Chan and D. K. Friesen" -, title = "Parallel algorithms for some dominance problems based on the {PRAM} model" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "367--382" -, keywords = "parallel algorithms, computational geometry, isothetic rectangles, direct dominance" -, succeeds = "cf-pasdp-91" -, update = "96.09 devillers" +, author = "I. W. Chan and D. K. Friesen" +, title = "Parallel algorithms for some dominance problems based on the {PRAM} model" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "367--382" +, keywords = "parallel algorithms, computational geometry, isothetic rectangles, direct dominance" +, succeeds = "cf-pasdp-91" +, update = "96.09 devillers" } @inproceedings{cl-flwsf-90 -, author = "K. Chan and T. Lam" -, title = "Finding least-weight subsequences with fewer processors" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "318--327" -, update = "98.03 bibrelex" +, author = "K. Chan and T. Lam" +, title = "Finding least-weight subsequences with fewer processors" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "318--327" +, update = "98.03 bibrelex" } @article{ct-hswes-88 -, author = "K. C. Chan and S. T. Tan" -, title = "Hierarchical structure of winged-edge structure: $A$ conversion algorithm" -, journal = "Visual Comput." -, volume = 4 -, year = 1988 -, pages = "133--141" -, keywords = "data structuring" -, update = "95.09 korneenko" +, author = "K. C. Chan and S. T. Tan" +, title = "Hierarchical structure of winged-edge structure: $A$ conversion algorithm" +, journal = "Visual Comput." +, volume = 4 +, year = 1988 +, pages = "133--141" +, keywords = "data structuring" +, update = "95.09 korneenko" } @article{cl-olanu-93 -, author = "K. F. Chan and T. W. Lam" -, title = "An on-line algorithm for navigating in unknown environment" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "227--244" -, keywords = "on-line algorithms, motion-planning, competitiveness, shortest paths, computational geometry" -, succeeds = "cl-olanu-91" -, update = "98.03 mitchell, 96.09 devillers" -, annote = "They consider on-line navigation among a disjoint set of +, author = "K. F. Chan and T. W. Lam" +, title = "An on-line algorithm for navigating in unknown environment" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "227--244" +, keywords = "on-line algorithms, motion-planning, competitiveness, shortest paths, computational geometry" +, succeeds = "cl-olanu-91" +, update = "98.03 mitchell, 96.09 devillers" +, annote = "They consider on-line navigation among a disjoint set of non-aligned rectangular obstacles, having aspect ratio at most $r$. They give a strategy that has competitive ratio $({r\over 2}+1)$, and show that @@ -30855,2725 +30855,2725 @@ @article{cl-olanu-93 } @inproceedings{cl-olanu-91 -, author = "K. F. Chan and T. W. Lam" -, title = "An on-line algorithm for navigating in unknown terrain" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "127--136" -, precedes = "cl-olanu-93" -, update = "96.09 devillers" +, author = "K. F. Chan and T. W. Lam" +, title = "An on-line algorithm for navigating in unknown terrain" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "127--136" +, precedes = "cl-olanu-93" +, update = "96.09 devillers" } @inproceedings{cc-ompa-97 -, author = "K. W. Chan and Francis Y. L. Chin" -, title = "Optimal Multiresolution Polygonal Approximation" -, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '97" -, site = "Shanghai, China" -, series = "Lecture Notes Comput. Sci." -, volume = 1276 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "32--41" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "K. W. Chan and Francis Y. L. Chin" +, title = "Optimal Multiresolution Polygonal Approximation" +, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '97" +, site = "Shanghai, China" +, series = "Lecture Notes Comput. Sci." +, volume = 1276 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "32--41" +, update = "99.11 bibrelex, 98.03 mitchell" } @article{c-nrdma-85 -, author = "M. Y. Chan" -, title = "A note on redundant disk modulo allocation" -, journal = "Inform. Process. Lett." -, volume = 20 -, year = 1985 -, pages = "121--123" +, author = "M. Y. Chan" +, title = "A note on redundant disk modulo allocation" +, journal = "Inform. Process. Lett." +, volume = 20 +, year = 1985 +, pages = "121--123" } @inproceedings{c-stsar-94 -, author = "T. M. Chan" -, title = "A Simple Trapezoid Sweep Algorithm for Reporting Red/Blue Segment Intersections" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "263--268" -, cites = "a-fcagi-94, bo-arcgi-79, ce-oails-92, m--83, m-rlsi-81, ps-crrbs-93, e-ftssg-85, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "T. M. Chan" +, title = "A Simple Trapezoid Sweep Algorithm for Reporting Red/Blue Segment Intersections" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "263--268" +, cites = "a-fcagi-94, bo-arcgi-79, ce-oails-92, m--83, m-rlsi-81, ps-crrbs-93, e-ftssg-85, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{c-annqr-97 -, author = "Timothy M. Chan" -, title = "Approximate Nearest Neighbor Queries Revisited" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "352--358" -, cites = "aesw-emstb-91, am-rsps-93, am-annqf-93, am-ars-95, amnsw-oaann-94, amn-abenn-96, b-acpqh-93, ck-fasgg-93, c-oaitd-92, c-aacpq-94, ks-ntead-96, ms-rscp-93, ps-cgi-85, s-cmsga-91, v-sgagc-91, y-cmstk-82, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "Timothy M. Chan" +, title = "Approximate Nearest Neighbor Queries Revisited" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "352--358" +, cites = "aesw-emstb-91, am-rsps-93, am-annqf-93, am-ars-95, amnsw-oaann-94, amn-abenn-96, b-acpqh-93, ck-fasgg-93, c-oaitd-92, c-aacpq-94, ks-ntead-96, ms-rscp-93, ps-cgi-85, s-cmsga-91, v-sgagc-91, y-cmstk-82, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{c-adwse-00 -, author = "Timothy M. Chan" -, title = "Approximating the diameter, width, smallest enclosing cylinder, and minimum-width annulus" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "300--309" -, update = "00.11 smid, 00.07 agarwal" +, author = "Timothy M. Chan" +, title = "Approximating the diameter, width, smallest enclosing cylinder, and minimum-width annulus" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "300--309" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{c-dpcho-99 -, author = "Timothy M. Chan" -, title = "Dynamic planar convex hull operations in near-logarithmic amortized time" -, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '99" -, year = 1999 -, pages = "92--99" -, update = "00.03 smid" +, author = "Timothy M. Chan" +, title = "Dynamic planar convex hull operations in near-logarithmic amortized time" +, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '99" +, year = 1999 +, pages = "92--99" +, update = "00.03 smid" } @article{c-dpcho-01 -, author = "T. M. Chan" -, title = "Dynamic planar convex hull operations in near-logarithmic amortized time" -, journal = "J. ACM" -, volume = 48 -, year = 2001 -, pages = "1--12" -, update = "01.07 smid" +, author = "T. M. Chan" +, title = "Dynamic planar convex hull operations in near-logarithmic amortized time" +, journal = "J. ACM" +, volume = 48 +, year = 2001 +, pages = "1--12" +, update = "01.07 smid" } @inproceedings{c-fdlpq-96 -, author = "Timothy M. Chan" -, title = "Fixed-Dimensional Linear Programming Queries Made Easy" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "284--290" -, cites = "aes-vdsl3-95, am-rsps-93, am-dhsrr-95, as-erasg-95, ako-iqco-93, bcm-prsss-93, cg-fc2a-86, c-osrch-95, c-lvali-95, cm-ltdao-93, dk-dsppu-90, dmn-rass-91, esz-cskec-94, hw-ensrq-87, m-roass-91, m-ept-92, m-rph-92, m-loq-93, m-rsehc-93, m-grs-94, m-ekpc-95, m-gofvc-95, m-apcad-83, m-lpltw-84, ms-rscp-93, m-cgitr-93, p-slpab-90, s-sdlpc-91, st-ecdmp-95, sw-cblpr-92, t-mnlcf-92, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Timothy M. Chan" +, title = "Fixed-Dimensional Linear Programming Queries Made Easy" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "284--290" +, cites = "aes-vdsl3-95, am-rsps-93, am-dhsrr-95, as-erasg-95, ako-iqco-93, bcm-prsss-93, cg-fc2a-86, c-osrch-95, c-lvali-95, cm-ltdao-93, dk-dsppu-90, dmn-rass-91, esz-cskec-94, hw-ensrq-87, m-roass-91, m-ept-92, m-rph-92, m-loq-93, m-rsehc-93, m-grs-94, m-ekpc-95, m-gofvc-95, m-apcad-83, m-lpltw-84, ms-rscp-93, m-cgitr-93, p-slpab-90, s-sdlpc-91, st-ecdmp-95, sw-cblpr-92, t-mnlcf-92, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{c-garot-98 -, author = "T. M. Chan" -, title = "Geometric Applications of a Randomized Optimization Technique" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "269--278" -, update = "98.07 agarwal" +, author = "T. M. Chan" +, title = "Geometric Applications of a Randomized Optimization Technique" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "269--278" +, update = "98.07 agarwal" } @article{c-garot-99 -, author = "T. M. Chan" -, title = "Geometric Applications of a Randomized Optimization Technique" -, journal = "Discrete Comput. Geom." -, volume = 22 -, number = 4 -, year = 1999 -, pages = "547--567" -, update = "99.11 held" +, author = "T. M. Chan" +, title = "Geometric Applications of a Randomized Optimization Technique" +, journal = "Discrete Comput. Geom." +, volume = 22 +, number = 4 +, year = 1999 +, pages = "547--567" +, update = "99.11 held" } @article{c-mptca-99 -, author = "T. M. Chan" -, title = "More planar two-center algorithms" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "189--198" -, update = "99.11 smid" +, author = "T. M. Chan" +, title = "More planar two-center algorithms" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "189--198" +, update = "99.11 smid" } @inproceedings{c-oesd-98 -, author = "T. M. Chan" -, title = "On enumerating and selecting distances" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "279--286" -, update = "00.03 smid" +, author = "T. M. Chan" +, title = "On enumerating and selecting distances" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "279--286" +, update = "00.03 smid" } @article{c-oesd-01 -, author = "T. M. Chan" -, title = "On enumerating and selecting distances" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "291--304" -, update = "01.07 smid" +, author = "T. M. Chan" +, title = "On enumerating and selecting distances" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "291--304" +, update = "01.07 smid" } @inproceedings{c-lac-00 -, author = "Timothy M. Chan" -, title = "On Levels in Arrangements of Curves" -, booktitle = "Proc. 41th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS 2000" -, year = 2000 -, pages = "219--227" -, update = "01.11 pocchiola" +, author = "Timothy M. Chan" +, title = "On Levels in Arrangements of Curves" +, booktitle = "Proc. 41th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS 2000" +, year = 2000 +, pages = "219--227" +, update = "01.11 pocchiola" } @article{c-oosch-96 -, author = "Timothy M. Chan" -, title = "Optimal Output-Sensitive Convex Hull Algorithms in Two and Three Dimensions" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "361--368" -, update = "98.03 agarwal+smid" +, author = "Timothy M. Chan" +, title = "Optimal Output-Sensitive Convex Hull Algorithms in Two and Three Dimensions" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "361--368" +, update = "98.03 agarwal+smid" } % also claimed, pages = "369--388" @article{c-osrch-96 -, author = "Timothy M. Chan" -, title = "Output-Sensitive Results on Convex Hulls, Extreme Points, and Related Problems" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "369--387" -, update = "98.03 agarwal+smid" +, author = "Timothy M. Chan" +, title = "Output-Sensitive Results on Convex Hulls, Extreme Points, and Related Problems" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "369--387" +, update = "98.03 agarwal+smid" } @inproceedings{c-rshrr-98 -, author = "T. M. Chan" -, title = "Random Sampling, Halfspace Range Reporting, and Construction of $(\le k)$-Levels in Three Dimensions" -, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1998 -, pages = "586--595" -, update = "99.03 agarwal" +, author = "T. M. Chan" +, title = "Random Sampling, Halfspace Range Reporting, and Construction of $(\le k)$-Levels in Three Dimensions" +, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1998 +, pages = "586--595" +, update = "99.03 agarwal" } @article{c-rshrr-00 -, author = "T. M. Chan" -, title = "Random sampling, halfspace range reporting, and construction of $(\le k)$-levels in three dimensions" -, journal = "SIAM J. Comput." -, volume = 30 -, year = 2000 -, pages = "561--575" -, update = "01.07 smid" +, author = "T. M. Chan" +, title = "Random sampling, halfspace range reporting, and construction of $(\le k)$-levels in three dimensions" +, journal = "SIAM J. Comput." +, volume = 30 +, year = 2000 +, pages = "561--575" +, update = "01.07 smid" } @article{c-rcsiu-00 -, author = "T. M. Chan" -, title = "Reporting curve segment intersections using restricted predicates" -, journal = "Comput. Geom. Theory Appl." -, volume = 16 -, number = 4 -, year = 2000 -, pages = "245--256" -, update = "01.07 devillers, 01.04 smid" +, author = "T. M. Chan" +, title = "Reporting curve segment intersections using restricted predicates" +, journal = "Comput. Geom. Theory Appl." +, volume = 16 +, number = 4 +, year = 2000 +, pages = "245--256" +, update = "01.07 devillers, 01.04 smid" } @inproceedings{cgkt-oaars-97 -, author = "T. M. Chan and M. T. Goodrich and S. R. Kosaraju and R. Tamassia" -, title = "Optimizing Area and Aspect Ratio in Straight-Line Orthogonal Tree Drawings" -, editor = "S. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "63--75" -, url = "https://www.cs.brown.edu/cgc/papers/cgkt-oaars-97.ps.gz" -, keywords = "graph drawing, upward, tree, planar, straight-line, orthogonal, CGC, Brown" -, update = "98.07 agarwal, 98.03 smid, 97.11 bibrelex, 97.03 tamassia" +, author = "T. M. Chan and M. T. Goodrich and S. R. Kosaraju and R. Tamassia" +, title = "Optimizing Area and Aspect Ratio in Straight-Line Orthogonal Tree Drawings" +, editor = "S. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "63--75" +, url = "https://www.cs.brown.edu/cgc/papers/cgkt-oaars-97.ps.gz" +, keywords = "graph drawing, upward, tree, planar, straight-line, orthogonal, CGC, Brown" +, update = "98.07 agarwal, 98.03 smid, 97.11 bibrelex, 97.03 tamassia" } @inproceedings{csy-oscpf-95 -, author = "Timothy M. Chan and Jack Snoeyink and Chee-Keng Yap" -, title = "Output-Sensitive Construction of Polytopes in Four Dimensions and Clipped {Voronoi} Diagrams in Three" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "282--291" -, keywords = "convex hulls, Voronoi diagram, ultimate convex hull algorithm" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "Timothy M. Chan and Jack Snoeyink and Chee-Keng Yap" +, title = "Output-Sensitive Construction of Polytopes in Four Dimensions and Clipped {Voronoi} Diagrams in Three" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "282--291" +, keywords = "convex hulls, Voronoi diagram, ultimate convex hull algorithm" +, update = "96.09 agarwal, 96.05 mitchell" } @article{csy-pddpo-97 -, author = "T. M. Chan and J. Snoeyink and C. K. Yap" -, title = "Primal dividing and dual pruning: Output-sensitive construction of $4$-d polytopes and $3$-d {Voronoi} diagrams" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "433--454" -, update = "98.03 agarwal" +, author = "T. M. Chan and J. Snoeyink and C. K. Yap" +, title = "Primal dividing and dual pruning: Output-sensitive construction of $4$-d polytopes and $3$-d {Voronoi} diagrams" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "433--454" +, update = "98.03 agarwal" } @inproceedings{c-osrch-95 -, author = "Timothy M. Y. Chan" -, title = "Output-Sensitive Results on Convex Hulls, Extreme Points, and Related Problems" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "10--19" -, cites = "am-rsps-92, bkst-anmsv-78, bs-dsp1s-80, csy-oscpf-95, c-clps-85, c-chdc-93, ck-acp-70, cm-dosch-92, c-mosga-94, cs-arscg-89, dk-fdpi-83, e-acg-87, es-otatd-91, em-sstcd-90, ew-cbtda-86, ec-eargd-92, g-eadch-72, j-ichfs-73, ks-upcha-86, m-loq-93, m-gofvc-94, ms-rscp-93, m-mnfcp-70, m-lpltw-84, m-osclv-90, m-cgitr-93, o-cgc-94, ol-mcp-81, ph-chfsp-77, ps-cgi-85, r-slcdn-70, r-dcikc-88a, s-chaop-81, s-chdch-86, sw-cblpr-92, s-fchff-85, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex, 97.11 bibrelex" +, author = "Timothy M. Y. Chan" +, title = "Output-Sensitive Results on Convex Hulls, Extreme Points, and Related Problems" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "10--19" +, cites = "am-rsps-92, bkst-anmsv-78, bs-dsp1s-80, csy-oscpf-95, c-clps-85, c-chdc-93, ck-acp-70, cm-dosch-92, c-mosga-94, cs-arscg-89, dk-fdpi-83, e-acg-87, es-otatd-91, em-sstcd-90, ew-cbtda-86, ec-eargd-92, g-eadch-72, j-ichfs-73, ks-upcha-86, m-loq-93, m-gofvc-94, ms-rscp-93, m-mnfcp-70, m-lpltw-84, m-osclv-90, m-cgitr-93, o-cgc-94, ol-mcp-81, ph-chfsp-77, ps-cgi-85, r-slcdn-70, r-dcikc-88a, s-chaop-81, s-chdch-86, sw-cblpr-92, s-fchff-85, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex, 97.11 bibrelex" } % ### What is it? @misc{c-lrfsf-?? -, author = "W. K. Chan" -, title = "On the largest {RAT}-free subset of a finite set of points" -, year = "??" -, pages = "357--367" -, keywords = "triangle, points, extremal figures" -, update = "95.09 korneenko" -, annote = "RAT is right-angle triangle" +, author = "W. K. Chan" +, title = "On the largest {RAT}-free subset of a finite set of points" +, year = "??" +, pages = "357--367" +, keywords = "triangle, points, extremal figures" +, update = "95.09 korneenko" +, annote = "RAT is right-angle triangle" } @inproceedings{cc-apcmn-92 -, author = "W. S. Chan and F. Chin" -, title = "Approximation of Polygonal Curves with Minimum Number of Line Segments" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "378--387" -, precedes = "cc-apcmn-96" -, update = "96.09 devillers, 94.09 smid, 93.09 milone+mitchell" +, author = "W. S. Chan and F. Chin" +, title = "Approximation of Polygonal Curves with Minimum Number of Line Segments" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "378--387" +, precedes = "cc-apcmn-96" +, update = "96.09 devillers, 94.09 smid, 93.09 milone+mitchell" } @article{cc-apcmn-96 -, author = "W. S. Chan and F. Chin" -, title = "Approximation of Polygonal Curves with Minimum Number of Line Segments or Minimum error" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "59--77" -, succeeds = "cc-apcmn-92" -, update = "96.09 devillers" +, author = "W. S. Chan and F. Chin" +, title = "Approximation of Polygonal Curves with Minimum Number of Line Segments or Minimum error" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "59--77" +, succeeds = "cc-apcmn-92" +, update = "96.09 devillers" } @inproceedings{cc-afodp-97 -, author = "Wun-Tat Chan and Francis Y. L. Chin" -, title = "Algorithms for Finding Optimal Disjoint Paths Around a Rectangle" -, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '97" -, site = "Singapore" -, series = "Lecture Notes Comput. Sci." -, volume = 1350 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "314--323" -, update = "99.11 bibrelex, 99.03 bibrelex, 98.07 mitchell, 98.03 mitchell" +, author = "Wun-Tat Chan and Francis Y. L. Chin" +, title = "Algorithms for Finding Optimal Disjoint Paths Around a Rectangle" +, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '97" +, site = "Singapore" +, series = "Lecture Notes Comput. Sci." +, volume = 1350 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "314--323" +, update = "99.11 bibrelex, 99.03 bibrelex, 98.07 mitchell, 98.03 mitchell" } @inproceedings{cc-eafdp-97 -, author = "W.-T. Chan and F. Y. L. Chin" -, title = "Efficient algorithms for finding disjoint paths in grids" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Alogrithms" -, year = 1997 -, pages = "454--463" -, update = "98.07 bibrelex" +, author = "W.-T. Chan and F. Y. L. Chin" +, title = "Efficient algorithms for finding disjoint paths in grids" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Alogrithms" +, year = 1997 +, pages = "454--463" +, update = "98.07 bibrelex" } @article{ck-acp-70 -, author = "D. R. Chand and S. S. Kapur" -, title = "An algorithm for convex polytopes" -, journal = "J. ACM" -, volume = 17 -, number = 1 -, month = jan -, year = 1970 -, pages = "78--86" -, update = "98.11 bibrelex" +, author = "D. R. Chand and S. S. Kapur" +, title = "An algorithm for convex polytopes" +, journal = "J. ACM" +, volume = 17 +, number = 1 +, month = jan +, year = 1970 +, pages = "78--86" +, update = "98.11 bibrelex" } @article{chw-bpgcc-78 -, author = "A. K. Chandra and D. S. Hirschberg and C. K. Wong" -, title = "Bin packing with geometric constraints in computer network design" -, journal = "Oper. Res." -, volume = 26 -, number = 5 -, year = 1978 -, pages = "760--772" -, keywords = "packing" -, update = "95.09 korneenko" +, author = "A. K. Chandra and D. S. Hirschberg and C. K. Wong" +, title = "Bin packing with geometric constraints in computer network design" +, journal = "Oper. Res." +, volume = 26 +, number = 5 +, year = 1978 +, pages = "760--772" +, keywords = "packing" +, update = "95.09 korneenko" } @article{c-cssmg-94 -, author = "B. Chandra" -, title = "Constructing sparse spanners for most graphs in higher dimensions" -, journal = "Inform. Process. Lett." -, volume = 51 -, year = 1994 -, pages = "289--294" -, update = "95.01 smid" +, author = "B. Chandra" +, title = "Constructing sparse spanners for most graphs in higher dimensions" +, journal = "Inform. Process. Lett." +, volume = 51 +, year = 1994 +, pages = "289--294" +, update = "95.01 smid" } @inproceedings{cdns-nsrgs-92 -, author = "B. Chandra and G. Das and G. Narasimhan and J. Soares" -, title = "New sparseness results on graph spanners" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "192--201" -, precedes = "cdns-nsrgs-95" -, cites = "addjs-sswg-93, a-cns-85, ap-sp-90, bd-rstod-86, bclr-ostm-86, b-egt-78, c-tipga-86, d-ascg-90, dj-wtacg-89, d-ntpcg-59, dfs-dgaag-90, k-aceg-88, kg-cgwac-92, ll-tapga-89, ps-gs-89, pu-osh-89, pu-tbser-88, r-cpscn-55, r-css-63, rs-addce-91, s-cmsga-91, s-aedsd-92, s-s-91, v-sgagc-91, v-mstkd-88, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers, 94.05 smid" +, author = "B. Chandra and G. Das and G. Narasimhan and J. Soares" +, title = "New sparseness results on graph spanners" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "192--201" +, precedes = "cdns-nsrgs-95" +, cites = "addjs-sswg-93, a-cns-85, ap-sp-90, bd-rstod-86, bclr-ostm-86, b-egt-78, c-tipga-86, d-ascg-90, dj-wtacg-89, d-ntpcg-59, dfs-dgaag-90, k-aceg-88, kg-cgwac-92, ll-tapga-89, ps-gs-89, pu-osh-89, pu-tbser-88, r-cpscn-55, r-css-63, rs-addce-91, s-cmsga-91, s-aedsd-92, s-s-91, v-sgagc-91, v-mstkd-88, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers, 94.05 smid" } @article{cdns-nsrgs-95 -, author = "B. Chandra and G. Das and G. Narasimhan and J. Soares" -, title = "New sparseness results on graph spanners" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "125--144" -, keywords = "spanners, geometric graphs, greedy algorithm, transformational method, sparse spanners, euclidean graphs" -, succeeds = "cdns-nsrgs-92" -, update = "96.09 devillers" +, author = "B. Chandra and G. Das and G. Narasimhan and J. Soares" +, title = "New sparseness results on graph spanners" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "125--144" +, keywords = "spanners, geometric graphs, greedy algorithm, transformational method, sparse spanners, euclidean graphs" +, succeeds = "cdns-nsrgs-92" +, update = "96.09 devillers" } @article{ckt-nroko-99 -, author = "B. Chandra and H. Karloff and C. Tovey" -, title = "New results on the old $k$-opt algorithm for the traveling salesman problem" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1999 -, pages = "1998--2029" -, update = "00.03 smid" +, author = "B. Chandra and H. Karloff and C. Tovey" +, title = "New results on the old $k$-opt algorithm for the traveling salesman problem" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1999 +, pages = "1998--2029" +, update = "00.03 smid" } @inproceedings{ckt-nroko-94 -, author = "B. Chandra and H. Karloff and C. Tovey" -, title = "New results on the old $k$-opt algorithm for the {TSP}" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "150--159" -, update = "97.07 smid" +, author = "B. Chandra and H. Karloff and C. Tovey" +, title = "New results on the old $k$-opt algorithm for the {TSP}" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "150--159" +, update = "97.07 smid" } @techreport{cv-crcns-91 -, author = "B. Chandra and S. Vishwanathan" -, title = "Constructing reliable communication networks of small weight on-line" -, type = "Manuscript" -, institution = "??" -, year = 1991 -, update = "97.11 bibrelex" +, author = "B. Chandra and S. Vishwanathan" +, title = "Constructing reliable communication networks of small weight on-line" +, type = "Manuscript" +, institution = "??" +, year = 1991 +, update = "97.11 bibrelex" } @article{cm-paeet-92 -, author = "S. Chandran and D. M. Mount" -, title = "A parallel algorithm for enclosed and enclosing triangles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "191--214" -, keywords = "minimum enclosures, convex polygons, parallel algorithms, rotating calipers" -, update = "93.05 jones" +, author = "S. Chandran and D. M. Mount" +, title = "A parallel algorithm for enclosed and enclosing triangles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "191--214" +, keywords = "minimum enclosures, convex polygons, parallel algorithms, rotating calipers" +, update = "93.05 jones" } @article{c-we1cp-82 -, author = "R. Chandrasekaran" -, title = "The weighted {Euclidean} $1$-center problem" -, journal = "Oper. Res. Lett." -, volume = 1 -, number = 3 -, year = 1982 -, pages = "111--112" -, keywords = "facility location, $d$-dimensional, linear programming" -, update = "95.09 korneenko" +, author = "R. Chandrasekaran" +, title = "The weighted {Euclidean} $1$-center problem" +, journal = "Oper. Res. Lett." +, volume = 1 +, number = 3 +, year = 1982 +, pages = "111--112" +, keywords = "facility location, $d$-dimensional, linear programming" +, update = "95.09 korneenko" } @article{ct-aofwl-90 -, author = "R. Chandrasekaran and A. Tamir" -, title = "Algebraic optimization: the {Fermat}-{Weber} location problem" -, journal = "Math. Program." -, volume = 46 -, number = 2 -, year = 1990 -, pages = "219--224" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "R. Chandrasekaran and A. Tamir" +, title = "Algebraic optimization: the {Fermat}-{Weber} location problem" +, journal = "Math. Program." +, volume = 46 +, number = 2 +, year = 1990 +, pages = "219--224" +, keywords = "facility location" +, update = "95.09 korneenko" } @techreport{cd-cpo-87 -, author = "V. Chandru and D. Dutta" -, title = "Composition of planar offsets" -, type = "Technical {Report}" -, institution = "Purdue Univ." -, address = "W. Lafayette, IN" -, month = jun -, year = 1987 -, update = "93.09 milone+mitchell" +, author = "V. Chandru and D. Dutta" +, title = "Composition of planar offsets" +, type = "Technical {Report}" +, institution = "Purdue Univ." +, address = "W. Lafayette, IN" +, month = jun +, year = 1987 +, update = "93.09 milone+mitchell" } @article{cdh-gdc-89 -, author = "V. Chandru and D. Dutta and C. Hoffmann" -, title = "On the geometry of Dupin cyclides" -, journal = "Visual Comput." -, volume = 5 -, year = 1989 -, pages = "227--290" +, author = "V. Chandru and D. Dutta and C. Hoffmann" +, title = "On the geometry of Dupin cyclides" +, journal = "Visual Comput." +, volume = 5 +, year = 1989 +, pages = "227--290" } @techreport{cgmrs-namlp-90 -, author = "V. Chandru and S. K. Ghosh and A. Maheshwari and V. T. Rajan and S. Saluja" -, title = "{$NC$}-algorithms for minimum link path and related problems" -, type = "Technical {Report}" -, number = "CS-90/3" -, institution = "TATA inst." -, address = "Bombay, India" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "V. Chandru and S. K. Ghosh and A. Maheshwari and V. T. Rajan and S. Saluja" +, title = "{$NC$}-algorithms for minimum link path and related problems" +, type = "Technical {Report}" +, number = "CS-90/3" +, institution = "TATA inst." +, address = "Bombay, India" +, year = 1990 +, update = "93.09 milone+mitchell" } @article{cgmrs-namlp-95 -, author = "V. Chandru and S. K. Ghosh and A. Maheshwari and V. T. Rajan and S. Saluja" -, title = "{$NC$}-algorithms for minimum link path and related problems" -, journal = "J. Algorithms" -, volume = 19 -, year = 1995 -, pages = "173--203" -, update = "97.03 smid" +, author = "V. Chandru and S. K. Ghosh and A. Maheshwari and V. T. Rajan and S. Saluja" +, title = "{$NC$}-algorithms for minimum link path and related problems" +, journal = "J. Algorithms" +, volume = 19 +, year = 1995 +, pages = "173--203" +, update = "97.03 smid" } @inproceedings{crs-mpc-90 -, author = "V. Chandru and V. T. Rajan and R. Swaminathan" -, title = "Monotone pieces of chains" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "156--159" -, cites = "ll-ccmp-84, ZZZ" -, update = "98.07 bibrelex" +, author = "V. Chandru and V. T. Rajan and R. Swaminathan" +, title = "Monotone pieces of chains" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "156--159" +, cites = "ll-ccmp-84, ZZZ" +, update = "98.07 bibrelex" } @article{crs-mpc-92 -, author = "V. Chandru and V. T. Rajan and R. Swaminathan" -, title = "Monotone Pieces of Chains" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "439--446" -, succeeds = "crs-mpc-90" -, update = "98.03 mitchell" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "V. Chandru and V. T. Rajan and R. Swaminathan" +, title = "Monotone Pieces of Chains" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "439--446" +, succeeds = "crs-mpc-90" +, update = "98.03 mitchell" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @techreport{cs-hdcg-87 -, author = "V. Chandru and R. Samuel" -, title = "How to draw a circumscribing gleichdick" -, type = "Technical {Report}" -, number = "CC-87-36" -, institution = "School Indust. Engrg., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1987 +, author = "V. Chandru and R. Samuel" +, title = "How to draw a circumscribing gleichdick" +, type = "Technical {Report}" +, number = "CC-87-36" +, institution = "School Indust. Engrg., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1987 } @inproceedings{cv-chosp-91 -, author = "V. Chandru and R. Venkataraman" -, title = "Circular hulls and orbiforms of simple polygons" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "433--440" +, author = "V. Chandru and R. Venkataraman" +, title = "Circular hulls and orbiforms of simple polygons" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "433--440" } @article{cld-sgcpm-82 -, author = "C. C. Chang and R. C. T. Lee and M. W. Du" -, title = "Symbolic gray code as a perfect multiattribute hashing scheme for partial match queries" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-8" -, year = 1982 -, pages = "235--249" +, author = "C. C. Chang and R. C. T. Lee and M. W. Du" +, title = "Symbolic gray code as a perfect multiattribute hashing scheme for partial match queries" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-8" +, year = 1982 +, pages = "235--249" } @inproceedings{cy-wafi-97 -, author = "E.-C. Chang and C. K. Yap" -, title = "A wavelet approach to foveating images" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "397--399" -, cites = "awb-av-88, b-ap-88, b-msvav-92, crd-isasv-96, hw-rffam-68, hw-srgoc-74, j-euimp-89, kg-ifics-96, r-svcvc-89, rs-dcsvv-90, s-dsvpm-77, s-smpsp-77, sgb-svavd-95, wbs-vbvct-92, ZZZ" -, update = "98.07 agarwal+bibrelex, 97.07 efrat" +, author = "E.-C. Chang and C. K. Yap" +, title = "A wavelet approach to foveating images" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "397--399" +, cites = "awb-av-88, b-ap-88, b-msvav-92, crd-isasv-96, hw-rffam-68, hw-srgoc-74, j-euimp-89, kg-ifics-96, r-svcvc-89, rs-dcsvv-90, s-dsvpm-77, s-smpsp-77, sgb-svavd-95, wbs-vbvct-92, ZZZ" +, update = "98.07 agarwal+bibrelex, 97.07 efrat" } @article{cst-nddds-92 -, author = "F. R. K. Chang and E. Szemeredi and W. T. Trotter" -, title = "The number of different distances determined by a set of points in the {Euclidean} plane" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "1--11" +, author = "F. R. K. Chang and E. Szemeredi and W. T. Trotter" +, title = "The number of different distances determined by a set of points in the {Euclidean} plane" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "1--11" } @article{cgs-icmcm-89 -, author = "G. Chang and W. Guida and W. Still" -, title = "An internal coordinate {Monte}-{Carlo} method for searching conformational space" -, journal = "J. Amer. Chem. Soc." -, volume = 111 -, year = 1989 -, pages = "4379--4386" -, update = "98.07 bibrelex" +, author = "G. Chang and W. Guida and W. Still" +, title = "An internal coordinate {Monte}-{Carlo} method for searching conformational space" +, journal = "J. Amer. Chem. Soc." +, volume = 111 +, year = 1989 +, pages = "4379--4386" +, update = "98.07 bibrelex" } @inproceedings{cm-euleg-93 -, author = "J. Chang and V. Milenkovic" -, title = "An experiment using {LN} for exact geometric computations" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "67--72" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation, exact arithmetic" -, cites = "m-cacau-89, dbs-gttd-92, fm-nsala-91, fv-eeacg-93, h-gsm-89, kln-edtur-91, m-vigau-88t, m-cacau-89, m-rfldd-90, m-rflp-89, fw-lnum-93, si-cvdom-89, f-pcg-93, ZZZ" -, update = "98.11 bibrelex, 97.03 daniels, 93.09 milone+mitchell" +, author = "J. Chang and V. Milenkovic" +, title = "An experiment using {LN} for exact geometric computations" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "67--72" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation, exact arithmetic" +, cites = "m-cacau-89, dbs-gttd-92, fm-nsala-91, fv-eeacg-93, h-gsm-89, kln-edtur-91, m-vigau-88t, m-cacau-89, m-rfldd-90, m-rflp-89, fw-lnum-93, si-cvdom-89, f-pcg-93, ZZZ" +, update = "98.11 bibrelex, 97.03 daniels, 93.09 milone+mitchell" } @article{cf-ekdtd-81 -, author = "J. M. Chang and K. S. Fu" -, title = "Extended {$K$}-d tree database organization: a dynamic multiattribute clustering method" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-7" -, year = 1981 -, pages = "284--290" +, author = "J. M. Chang and K. S. Fu" +, title = "Extended {$K$}-d tree database organization: a dynamic multiattribute clustering method" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-7" +, year = 1981 +, pages = "284--290" } @techreport{c-pop-86 -, author = "J. S. Chang" -, title = "Polygon optimization problems" -, type = "Report" -, number = 240 -, institution = "Comput. Sci. Div., New York Univ." -, address = "New York, NY" -, year = 1986 +, author = "J. S. Chang" +, title = "Polygon optimization problems" +, type = "Report" +, number = 240 +, institution = "Comput. Sci. Div., New York Univ." +, address = "New York, NY" +, year = 1986 } @inproceedings{cy-psppo-84 -, author = "J. S. Chang and C. K. Yap" -, title = "A polynomial solution for the potato-peeling and other polygon inclusion and enclosure problems" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "408--416" -, precedes = "cy-psppp-86" +, author = "J. S. Chang and C. K. Yap" +, title = "A polynomial solution for the potato-peeling and other polygon inclusion and enclosure problems" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "408--416" +, precedes = "cy-psppp-86" } @article{cy-psppp-86 -, author = "J. S. Chang and C. K. Yap" -, title = "A polynomial solution for the potato-peeling problem" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "155--182" -, succeeds = "cy-psppo-84" +, author = "J. S. Chang and C. K. Yap" +, title = "A polynomial solution for the potato-peeling problem" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "155--182" +, succeeds = "cy-psppo-84" } @article{cht-oacov-90 -, author = "Maw Shang Chang and Nen-Fu Huang and Chuan-Yi Tang" -, title = "An Optimal Algorithm For Constructing Oriented {Voronoi} Diagrams And Geographic Neighborhood Graphs" -, journal = "Inform. Process. Lett." -, volume = 35 -, number = 5 -, month = aug -, year = 1990 -, pages = "255--260" -, keywords = "computational geometry, Voronoi diagrams, geographic neighborhood graphs" -, update = "97.07 smid" -, annote = "OVD is just a cdfVD with a wedge shaped distance - function. Sweepline algorithm given." -, abstract = "Given n points on the plane, we propose an O(n log n) - algorithm to construct the oriented Voronoi diagram and - the geographic neighborhood graph of these n points. We - also show that both problems have the same lower bound - of Omega (n log n) and hence the proposed algorithm is - optimal. (Author abstract) 4 Refs." +, author = "Maw Shang Chang and Nen-Fu Huang and Chuan-Yi Tang" +, title = "An Optimal Algorithm For Constructing Oriented {Voronoi} Diagrams And Geographic Neighborhood Graphs" +, journal = "Inform. Process. Lett." +, volume = 35 +, number = 5 +, month = aug +, year = 1990 +, pages = "255--260" +, keywords = "computational geometry, Voronoi diagrams, geographic neighborhood graphs" +, update = "97.07 smid" +, annote = "OVD is just a cdfVD with a wedge shaped distance + function. Sweepline algorithm given." +, abstract = "Given n points on the plane, we propose an O(n log n) + algorithm to construct the oriented Voronoi diagram and + the geographic neighborhood graph of these n points. We + also show that both problems have the same lower bound + of Omega (n log n) and hence the proposed algorithm is + optimal. (Author abstract) 4 Refs." } @article{ctl-sebmp-92 -, author = "M. S. Chang and C. Y. Tang and C. T. Lee" -, title = "Solving the {Euclidean} Bottleneck Matching Problem by $k$-Relative Neighborhood Graphs" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "177--194" -, update = "96.05 efrat" +, author = "M. S. Chang and C. Y. Tang and C. T. Lee" +, title = "Solving the {Euclidean} Bottleneck Matching Problem by $k$-Relative Neighborhood Graphs" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "177--194" +, update = "96.05 efrat" } @inproceedings{ctl-20rng-90 -, author = "M. S. Chang and C. Y. Tang and R. C. T. Lee" -, title = "$20$-relative neighborhood graphs are {Hamiltonian}" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "53--65" +, author = "M. S. Chang and C. Y. Tang and R. C. T. Lee" +, title = "$20$-relative neighborhood graphs are {Hamiltonian}" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "53--65" } @article{cl-fmsic-92 -, author = "R. C. Chang and H. S. Lee" -, title = "Finding a maximal set of independent chords in a circle" -, journal = "Inform. Process. Lett." -, volume = 41 -, number = 2 -, year = 1992 -, pages = "99--102" -, keywords = "geometric graphs, polygons, decomposition" -, update = "95.09 korneenko" +, author = "R. C. Chang and H. S. Lee" +, title = "Finding a maximal set of independent chords in a circle" +, journal = "Inform. Process. Lett." +, volume = 41 +, number = 2 +, year = 1992 +, pages = "99--102" +, keywords = "geometric graphs, polygons, decomposition" +, update = "95.09 korneenko" } @article{cl-omsta-86 -, author = "R. C. Chang and R. C. T. Lee" -, title = "An {$O(n \log n)$} minimal spanning tree algorithm for $n$ points in the plane" -, journal = "BIT" -, volume = 26 -, year = 1986 -, pages = "7--16" -, annote = "See \cite{sl-pdcms-88} for a discussion of lots of - errors." +, author = "R. C. Chang and R. C. T. Lee" +, title = "An {$O(n \log n)$} minimal spanning tree algorithm for $n$ points in the plane" +, journal = "BIT" +, volume = 26 +, year = 1986 +, pages = "7--16" +, annote = "See \cite{sl-pdcms-88} for a discussion of lots of + errors." } @article{cl-aldt-84 -, author = "R. C. Chang and R. C. T. Lee" -, title = "On the average length of {Delaunay} triangulations" -, journal = "BIT" -, volume = 24 -, year = 1984 -, pages = "269--273" +, author = "R. C. Chang and R. C. T. Lee" +, title = "On the average length of {Delaunay} triangulations" +, journal = "BIT" +, volume = 24 +, year = 1984 +, pages = "269--273" } @article{cl-acpac-84 -, author = "R. C. Chang and R. C. T. Lee" -, title = "The average-case performance analysis of a closest-pair problem" -, journal = "Internat. J. Comput. Math." -, volume = 16 -, number = 2 -, year = 1984 -, pages = "125--130" -, keywords = "proximity, average-case analysis" -, update = "95.09 korneenko" +, author = "R. C. Chang and R. C. T. Lee" +, title = "The average-case performance analysis of a closest-pair problem" +, journal = "Internat. J. Comput. Math." +, volume = 16 +, number = 2 +, year = 1984 +, pages = "125--130" +, keywords = "proximity, average-case analysis" +, update = "95.09 korneenko" } @book{cgglmw-fltim-92 -, author = "B. W. Char and K. O. Geddes and G. H. Gonnet and B. L. Leong and M. B. Monagan and S. M. Watt" -, title = "First leaves: a tutorial introduction to Maple {V}" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1992 -, update = "00.03 bibrelex" +, author = "B. W. Char and K. O. Geddes and G. H. Gonnet and B. L. Leong and M. B. Monagan and S. M. Watt" +, title = "First leaves: a tutorial introduction to Maple {V}" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1992 +, update = "00.03 bibrelex" } @book{cgglmw-m5lrm-91 -, author = "B. W. Char and K. O. Geddes and G. H. Gonnet and B. L. Leong and M. B. Monagan and S. M. Watt" -, title = "Maple {V} Language Reference Manual" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1991 -, update = "98.11 bibrelex, 96.09 agarwal, 95.05 agarwal" +, author = "B. W. Char and K. O. Geddes and G. H. Gonnet and B. L. Leong and M. B. Monagan and S. M. Watt" +, title = "Maple {V} Language Reference Manual" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1991 +, update = "98.11 bibrelex, 96.09 agarwal, 95.05 agarwal" } @book{cgglmw-mvlrm-91 -, author = "Bruce W. Char and Keith O. Geddes and Gaston H. Gonnet and Benton L. Leong and Micheal B. Monagan and Stephen M. Watt" -, title = "Maple V Language Reference Manual" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1991 -, update = "00.03 bibrelex" +, author = "Bruce W. Char and Keith O. Geddes and Gaston H. Gonnet and Benton L. Leong and Micheal B. Monagan and Stephen M. Watt" +, title = "Maple V Language Reference Manual" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1991 +, update = "00.03 bibrelex" } @inproceedings{ccfm-icdir-97 -, author = "Moses Charikar and Chandra Chekuri and Tom{\'a}s Feder and Rajeev Motwani" -, title = "Incremental Clustering and Dynamic Information Retrieval" -, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." -, year = 1997 -, pages = "626--635" -, update = "98.07 agarwal+bibrelex" +, author = "Moses Charikar and Chandra Chekuri and Tom{\'a}s Feder and Rajeev Motwani" +, title = "Incremental Clustering and Dynamic Information Retrieval" +, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." +, year = 1997 +, pages = "626--635" +, update = "98.07 agarwal+bibrelex" } @inproceedings{ccgg-rvtda-98 -, author = "M. Charikar and C. Chekuri and A. Goel and S. Guha" -, title = "Rounding via trees: {D}eterministic approximation algorithms for group {S}teiner trees and $k$-median" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, year = 1998 -, pages = "114--123" -, update = "00.11 smid, 00.07 agarwal" +, author = "M. Charikar and C. Chekuri and A. Goel and S. Guha" +, title = "Rounding via trees: {D}eterministic approximation algorithms for group {S}teiner trees and $k$-median" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, year = 1998 +, pages = "114--123" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{cg-icafl-99 -, author = "M. Charikar and S. Guha" -, title = "Improved combinatorial algorithms for facility location and $k$-median problems" -, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1999 -, pages = "378--388" -, update = "00.11 smid, 00.07 agarwal" +, author = "M. Charikar and S. Guha" +, title = "Improved combinatorial algorithms for facility location and $k$-median problems" +, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1999 +, pages = "378--388" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{cgts-cfaak-99 -, author = "M. Charikar and S. Guha and E. Tardos and D. Shmoys" -, title = "A constant-factor approximation algorithm for the $k$-median problem" -, booktitle = "Proc. 31st Annu. ACM Sympos. Theory Comput." -, year = 1999 -, pages = "1--10" -, update = "00.11 smid, 00.07 agarwal" +, author = "M. Charikar and S. Guha and E. Tardos and D. Shmoys" +, title = "A constant-factor approximation algorithm for the $k$-median problem" +, booktitle = "Proc. 31st Annu. ACM Sympos. Theory Comput." +, year = 1999 +, pages = "1--10" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{chm-dsp-98 -, author = "Moses Charikar and Dan Halperin and Rajeev Motwani" -, title = "The Dynamic Servers Problem" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "410--419" -, keywords = "minimum-length monotone subdivision, approximation algorithms" -, update = "99.07 bibrelex, 98.07 mitchell" +, author = "Moses Charikar and Dan Halperin and Rajeev Motwani" +, title = "The Dynamic Servers Problem" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "410--419" +, keywords = "minimum-length monotone subdivision, approximation algorithms" +, update = "99.07 bibrelex, 98.07 mitchell" } @article{c-odlp-52 -, author = "A. Charnes" -, title = "Optimality and degeneracy in linear programming" -, journal = "Econometrica" -, volume = 20 -, number = 2 -, year = 1952 -, pages = "160--170" -, update = "98.03 bibrelex" +, author = "A. Charnes" +, title = "Optimality and degeneracy in linear programming" +, journal = "Econometrica" +, volume = 20 +, number = 2 +, year = 1952 +, pages = "160--170" +, update = "98.03 bibrelex" } @article{cg-pspca-84 -, author = "P. Charrot and J. A. Gregory" -, title = "A pentagonal surface patch for computer aided geometric design" -, journal = "Comput. Aided Design" -, volume = 1 -, year = 1984 -, pages = "87--94" -, update = "98.03 bibrelex" +, author = "P. Charrot and J. A. Gregory" +, title = "A pentagonal surface patch for computer aided geometric design" +, journal = "Comput. Aided Design" +, volume = 1 +, year = 1984 +, pages = "87--94" +, update = "98.03 bibrelex" } @book{co-aagt-93 -, author = "G. Chartrand and O. R. Oellermann" -, title = "Applied and Algorithmic Graph Theory" -, publisher = "McGraw-Hill" -, address = "New York" -, year = 1993 +, author = "G. Chartrand and O. R. Oellermann" +, title = "Applied and Algorithmic Graph Theory" +, publisher = "McGraw-Hill" +, address = "New York" +, year = 1993 } @inproceedings{c-dcgaa-89 -, author = "J.-M. Chassery" -, title = "Discrete and computational geometric approaches applied to a problem of finite approximation" -, booktitle = "Proc. Scand. Conf. Image Anal." -, site = "Oulu, Finland" -, volume = 2 -, year = 1989 -, pages = "856--859" -, keywords = "convex, fitting, discrete geometry" -, update = "95.09 korneenko" +, author = "J.-M. Chassery" +, title = "Discrete and computational geometric approaches applied to a problem of finite approximation" +, booktitle = "Proc. Scand. Conf. Image Anal." +, site = "Oulu, Finland" +, volume = 2 +, year = 1989 +, pages = "856--859" +, keywords = "convex, fitting, discrete geometry" +, update = "95.09 korneenko" } @inproceedings{cg-ipcis-83 -, author = "J. M. Chassery and C. Garbay" -, title = "Iterative process for colour image segmentation using a convexity criterion" -, editor = "A. Oosterline and A. G. Tescher" -, booktitle = "Applications of Digital Image Processing" -, series = "Proc. SPIE" -, volume = 397 -, publisher = "??" -, year = 1983 -, pages = "165--172" +, author = "J. M. Chassery and C. Garbay" +, title = "Iterative process for colour image segmentation using a convexity criterion" +, editor = "A. Oosterline and A. G. Tescher" +, booktitle = "Applications of Digital Image Processing" +, series = "Proc. SPIE" +, volume = 397 +, publisher = "??" +, year = 1983 +, pages = "165--172" } @inproceedings{cm-smvde-89 -, author = "J.-M. Chassery and A. Montanvert" -, title = "Segmentation methods in a {Voronoi} diagram environment" -, booktitle = "Proc. Scand. Conf. Image Anal." -, site = "Oulu, Finland" -, volume = 1 -, year = 1989 -, pages = "408--415" -, keywords = "Voronoi diagram" -, update = "95.09 korneenko" +, author = "J.-M. Chassery and A. Montanvert" +, title = "Segmentation methods in a {Voronoi} diagram environment" +, booktitle = "Proc. Scand. Conf. Image Anal." +, site = "Oulu, Finland" +, volume = 1 +, year = 1989 +, pages = "408--415" +, keywords = "Voronoi diagram" +, update = "95.09 korneenko" } @article{cc-nfepm-90 -, author = "S. Chatterjee and S. Chatterjee" -, title = "A note on finding extreme points in multivariare space" -, journal = "Comput. Statist. Data Anal." -, volume = 10 -, number = 1 -, year = 1990 -, pages = "87--92" -, keywords = "convex hull, $d$-dimensional, peeling, extremal points" -, update = "95.09 korneenko" +, author = "S. Chatterjee and S. Chatterjee" +, title = "A note on finding extreme points in multivariare space" +, journal = "Comput. Statist. Data Anal." +, volume = 10 +, number = 1 +, year = 1990 +, pages = "87--92" +, keywords = "convex hull, $d$-dimensional, peeling, extremal points" +, update = "95.09 korneenko" } @article{cd-kdcp-90 -, author = "S. Chattopadhyay and P. Das" -, title = "The {$k$}-dense corridor problems" -, journal = "Pattern Recogn. Lett." -, volume = 11 -, year = 1990 -, pages = "463--469" -, update = "98.11 bibrelex" +, author = "S. Chattopadhyay and P. Das" +, title = "The {$k$}-dense corridor problems" +, journal = "Pattern Recogn. Lett." +, volume = 11 +, year = 1990 +, pages = "463--469" +, update = "98.11 bibrelex" } @article{cd-ctbtc-91 -, author = "S. Chattopadhyay and P. P. Das" -, title = "Counting thin and bushy triangulations of convex polygons" -, journal = "Pattern Recogn. Lett." -, volume = 12 -, year = 1991 -, pages = "139--144" -, update = "95.09 korneenko, 93.09 milone+mitchell" -, annote = "Computes formulae for number of thin triangulations (2 - ears) and bushy triangulations (max ears) of a convex - polygon." +, author = "S. Chattopadhyay and P. P. Das" +, title = "Counting thin and bushy triangulations of convex polygons" +, journal = "Pattern Recogn. Lett." +, volume = 12 +, year = 1991 +, pages = "139--144" +, update = "95.09 korneenko, 93.09 milone+mitchell" +, annote = "Computes formulae for number of thin triangulations (2 + ears) and bushy triangulations (max ears) of a convex + polygon." } @inproceedings{c-fbfpf-98 -, author = "Vasiliki Chatzi" -, title = "Finding Basis Functions for Pyramidal Finite Elements" -, booktitle = "CGC Workshop on Geometric Computing" -, year = 1998 -, url = "https://www.cs.brown.edu/cgc/cgc98/" -, update = "98.11 tamassia" +, author = "Vasiliki Chatzi" +, title = "Finding Basis Functions for Pyramidal Finite Elements" +, booktitle = "CGC Workshop on Geometric Computing" +, year = 1998 +, url = "https://www.cs.brown.edu/cgc/cgc98/" +, update = "98.11 tamassia" } @article{c-fchdt-91 -, author = "B. B. Chaudhuri" -, title = "Fuzzy convex hull determination in two-dimensional space" -, journal = "Pattern Recogn. Lett." -, volume = 12 -, number = 10 -, year = 1991 -, pages = "591--594" -, keywords = "convex hull" -, update = "95.09 korneenko" +, author = "B. B. Chaudhuri" +, title = "Fuzzy convex hull determination in two-dimensional space" +, journal = "Pattern Recogn. Lett." +, volume = 12 +, number = 10 +, year = 1991 +, pages = "591--594" +, keywords = "convex hull" +, update = "95.09 korneenko" } @article{c-ocfod-90 -, author = "B. B. Chaudhuri" -, title = "Optimal circular fit to objects in two and hree dimensions" -, journal = "Pattern Recogn. Lett." -, volume = 11 -, year = 1990 -, pages = "571--574" -, update = "98.11 bibrelex" +, author = "B. B. Chaudhuri" +, title = "Optimal circular fit to objects in two and hree dimensions" +, journal = "Pattern Recogn. Lett." +, volume = 11 +, year = 1990 +, pages = "571--574" +, update = "98.11 bibrelex" } @article{ck-ocfwd-93 -, author = "B. B. Chaudhuri and P. Kundu" -, title = "Optimum circular fit to weighted data in multi-dimensional space" -, journal = "Pattern Recogn. Lett." -, volume = 14 -, year = 1993 -, pages = "1--6" -, update = "98.11 bibrelex" +, author = "B. B. Chaudhuri and P. Kundu" +, title = "Optimum circular fit to weighted data in multi-dimensional space" +, journal = "Pattern Recogn. Lett." +, volume = 14 +, year = 1993 +, pages = "1--6" +, update = "98.11 bibrelex" } @inproceedings{cn-lerps-99 -, author = "J. Chaudhuri and S. C. Nandy" -, title = "Largest empty rectangle among a point set" -, booktitle = "Proc. 19th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1738 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "34--46" -, update = "00.03 smid" +, author = "J. Chaudhuri and S. C. Nandy" +, title = "Largest empty rectangle among a point set" +, booktitle = "Proc. 19th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1738 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "34--46" +, update = "00.03 smid" } @article{c-dpopp-83 -, author = "Bernard Chazelle" -, title = "A decision procedure for optimal polyhedron partitioning" -, journal = "Inform. Process. Lett." -, volume = 16 -, year = 1983 -, pages = "75--78" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "A decision procedure for optimal polyhedron partitioning" +, journal = "Inform. Process. Lett." +, volume = 16 +, year = 1983 +, pages = "75--78" +, update = "98.03 mitchell" } @inproceedings{c-fdams-97 -, author = "Bernard Chazelle" -, title = "A Faster Deterministic Algorithm for Minimum Spanning Trees" -, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '97" -, year = 1997 -, pages = "To appear" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle" +, title = "A Faster Deterministic Algorithm for Minimum Spanning Trees" +, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '97" +, year = 1997 +, pages = "To appear" +, update = "98.07 bibrelex, 98.03 mitchell" } @techreport{c-fadsi-85 -, author = "Bernard Chazelle" -, title = "A functional approach to data structures and its use in multidimensional searching" -, type = "Report" -, number = "CS-85-16" -, institution = "Comput. Sci. Dept., Brown Univ." -, address = "Providence, RI" -, year = 1985 -, precedes = "c-fadsi-88" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "A functional approach to data structures and its use in multidimensional searching" +, type = "Report" +, number = "CS-85-16" +, institution = "Comput. Sci. Dept., Brown Univ." +, address = "Providence, RI" +, year = 1985 +, precedes = "c-fadsi-88" +, update = "98.03 mitchell" } @article{c-fadsi-88 -, author = "Bernard Chazelle" -, title = "A functional approach to data structures and its use in multidimensional searching" -, journal = "SIAM J. Comput." -, volume = 17 -, number = 3 -, month = jun -, year = 1988 -, pages = "427--462" -, succeeds = "c-fadsi-85" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle" +, title = "A functional approach to data structures and its use in multidimensional searching" +, journal = "SIAM J. Comput." +, volume = 17 +, number = 3 +, month = jun +, year = 1988 +, pages = "427--462" +, succeeds = "c-fadsi-85" +, update = "98.11 bibrelex, 98.03 mitchell" } @techreport{c-sptgd-93 -, author = "Bernard Chazelle" -, title = "A Simple Proof Technique for Geometric Discrepancy" -, institution = "Princeton University" -, month = feb -, year = 1993 -, comments = "DIMACS Workshop on Randomized Algorithms for Combinatorial Optimization" -, update = "93.09 milone+mitchell" +, author = "Bernard Chazelle" +, title = "A Simple Proof Technique for Geometric Discrepancy" +, institution = "Princeton University" +, month = feb +, year = 1993 +, comments = "DIMACS Workshop on Randomized Algorithms for Combinatorial Optimization" +, update = "93.09 milone+mitchell" } @inproceedings{c-salb-94 -, author = "Bernard Chazelle" -, title = "A spectral approach to lower bounds" -, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1994 -, pages = "674--682" -, update = "98.03 mitchell, 95.01 matousek+smid" +, author = "Bernard Chazelle" +, title = "A spectral approach to lower bounds" +, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1994 +, pages = "674--682" +, update = "98.03 mitchell, 95.01 matousek+smid" } @article{c-salb-98 -, author = "Bernard Chazelle" -, title = "A spectral approach to lower bounds with applications to geometric searching" -, journal = "SIAM J. Comput." -, volume = 27 -, number = 2 -, year = 1998 -, pages = "545--556" -, update = "98.11 pocchiola" +, author = "Bernard Chazelle" +, title = "A spectral approach to lower bounds with applications to geometric searching" +, journal = "SIAM J. Comput." +, volume = 27 +, number = 2 +, year = 1998 +, pages = "545--556" +, update = "98.11 pocchiola" } @inproceedings{c-tpca-82 -, author = "Bernard Chazelle" -, title = "A theorem on polygon cutting with applications" -, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1982 -, pages = "339--349" -, keywords = "decomposition, polygons, divide-and-conquer, triangulation, visibility" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "A theorem on polygon cutting with applications" +, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1982 +, pages = "339--349" +, keywords = "decomposition, polygons, divide-and-conquer, triangulation, visibility" +, update = "98.03 mitchell" } @inproceedings{c-acdl-83 -, author = "Bernard Chazelle" -, title = "Algorithms for computing depths and layers" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1983 -, pages = "427--436" -, keywords = "points, convex" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "Bernard Chazelle" +, title = "Algorithms for computing depths and layers" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1983 +, pages = "427--436" +, keywords = "points, convex" +, update = "98.03 mitchell, 95.09 korneenko" } @article{c-asdii-88 -, author = "Bernard Chazelle" -, title = "An algorithm for segment-dragging and its implementation" -, journal = "Algorithmica" -, volume = 3 -, year = 1988 -, pages = "205--221" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "An algorithm for segment-dragging and its implementation" +, journal = "Algorithmica" +, volume = 3 +, year = 1988 +, pages = "205--221" +, update = "98.03 mitchell" } @article{c-iafrn-83 -, author = "Bernard Chazelle" -, title = "An improved algorithm for the fixed-radius neighbor problem" -, journal = "Inform. Process. Lett." -, volume = 16 -, year = 1983 -, pages = "193--198" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "An improved algorithm for the fixed-radius neighbor problem" +, journal = "Inform. Process. Lett." +, volume = 16 +, year = 1983 +, pages = "193--198" +, update = "98.03 mitchell" } @inproceedings{c-oaitd-89 -, author = "Bernard Chazelle" -, title = "An optimal algorithm for intersecting three-dimensional convex polyhedra" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "586--591" -, keywords = "intersection, polyhedra, polytopes, duality, convex hulls, Voronoi diagrams" -, precedes = "c-oaitd-92" -, update = "98.03 mitchell, 93.09 devillers" +, author = "Bernard Chazelle" +, title = "An optimal algorithm for intersecting three-dimensional convex polyhedra" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "586--591" +, keywords = "intersection, polyhedra, polytopes, duality, convex hulls, Voronoi diagrams" +, precedes = "c-oaitd-92" +, update = "98.03 mitchell, 93.09 devillers" } @article{c-oaitd-92 -, author = "Bernard Chazelle" -, title = "An optimal algorithm for intersecting three-dimensional convex polyhedra" -, journal = "SIAM J. Comput." -, volume = 21 -, number = 4 -, year = 1992 -, pages = "671--696" -, succeeds = "c-oaitd-89" -, update = "98.03 mitchell, 93.09 devillers" +, author = "Bernard Chazelle" +, title = "An optimal algorithm for intersecting three-dimensional convex polyhedra" +, journal = "SIAM J. Comput." +, volume = 21 +, number = 4 +, year = 1992 +, pages = "671--696" +, succeeds = "c-oaitd-89" +, update = "98.03 mitchell, 93.09 devillers" } @techreport{c-oaitd-89t -, author = "B. Chazelle" -, title = "An optimal algorithms for intersecting three-dimensional convex polyhedra" -, type = "Technical {Report}" -, institution = "Princeton Univ." -, address = "Princeton, NJ" -, year = 1989 -, update = "98.03 bibrelex" +, author = "B. Chazelle" +, title = "An optimal algorithms for intersecting three-dimensional convex polyhedra" +, type = "Technical {Report}" +, institution = "Princeton Univ." +, address = "Princeton, NJ" +, year = 1989 +, update = "98.03 bibrelex" } @inproceedings{c-ochan-91 -, author = "Bernard Chazelle" -, title = "An optimal convex hull algorithm and new results on cuttings" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "29--38" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "An optimal convex hull algorithm and new results on cuttings" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "29--38" +, update = "98.03 mitchell" } @techreport{c-ochap-91 -, author = "Bernard Chazelle" -, title = "An optimal convex hull algorithm for point sets in any fixed dimension" -, type = "Technical {Report}" -, number = "CS-TR-336-91" -, institution = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1991 -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "An optimal convex hull algorithm for point sets in any fixed dimension" +, type = "Technical {Report}" +, number = "CS-TR-336-91" +, institution = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1991 +, update = "98.03 mitchell" } @article{c-ochaa-93 -, author = "Bernard Chazelle" -, title = "An optimal convex hull algorithm in any fixed dimension" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "377--409" -, succeeds = "c-ochan-91" -, update = "98.03 mitchell, 94.05 matousek" +, author = "Bernard Chazelle" +, title = "An optimal convex hull algorithm in any fixed dimension" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "377--409" +, succeeds = "c-ochan-91" +, update = "98.03 mitchell, 94.05 matousek" } @incollection{c-ads-87 -, author = "Bernard Chazelle" -, title = "Approximation and decomposition of shapes" -, editor = "J. T. Schwartz and C.-K. Yap" -, booktitle = "Advances in Robotics 1: Algorithmic and Geometric Aspects of Robotics" -, publisher = "Lawrence Erlbaum Associates" -, address = "Hillsdale, NJ" -, year = 1987 -, pages = "145--185" -, keywords = "survey paper, polygons, two-dimensional, three-dimensional, approximation, decomposition, covering, partition, triangulation" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Approximation and decomposition of shapes" +, editor = "J. T. Schwartz and C.-K. Yap" +, booktitle = "Advances in Robotics 1: Algorithmic and Geometric Aspects of Robotics" +, publisher = "Lawrence Erlbaum Associates" +, address = "Hillsdale, NJ" +, year = 1987 +, pages = "145--185" +, keywords = "survey paper, polygons, two-dimensional, three-dimensional, approximation, decomposition, covering, partition, triangulation" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{c-cgr-94 -, author = "Bernard Chazelle" -, title = "Computational Geometry: A Retrospective" -, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "75--94" -, update = "98.03 mitchell, 95.01 smid, 94.05 matousek" +, author = "Bernard Chazelle" +, title = "Computational Geometry: A Retrospective" +, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "75--94" +, update = "98.03 mitchell, 95.01 smid, 94.05 matousek" } @incollection{c-cgr-95 -, author = "Bernard Chazelle" -, title = "Computational geometry: a retrospective" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, year = 1995 -, pages = "22--46" -, keywords = "survey paper" -, update = "98.07 icking, 98.03 mitchell, 97.11 bibrelex, 97.03 pocchiola, 96.05 pocchiola" +, author = "Bernard Chazelle" +, title = "Computational geometry: a retrospective" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, year = 1995 +, pages = "22--46" +, keywords = "survey paper" +, update = "98.07 icking, 98.03 mitchell, 97.11 bibrelex, 97.03 pocchiola, 96.05 pocchiola" } @phdthesis{c-cgc-79 -, author = "Bernard Chazelle" -, title = "Computational geometry and convexity" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Yale Univ." -, address = "New Haven, CT" -, year = 1979 -, note = "Carnegie-Mellon Univ. Report CS-80-150" -, keywords = "doctoral thesis" -, comments = "UMI KRA81-10021, 313 pp." -, update = "98.03 mitchell, 93.09 jones, 93.05 jones" +, author = "Bernard Chazelle" +, title = "Computational geometry and convexity" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Yale Univ." +, address = "New Haven, CT" +, year = 1979 +, note = "Carnegie-Mellon Univ. Report CS-80-150" +, keywords = "doctoral thesis" +, comments = "UMI KRA81-10021, 313 pp." +, update = "98.03 mitchell, 93.09 jones, 93.05 jones" } @incollection{c-cggof-91 -, author = "Bernard Chazelle" -, title = "Computational geometry for the gourmet: old fare and new dishes" -, booktitle = "Automata, Languages and Programming (Proc. 18th ICALP)" -, series = "Lecture Notes Comput. Sci." -, volume = 510 -, year = 1991 -, pages = "686--696" -, update = "98.03 mitchell, 97.03 aronov, 94.05 matousek" +, author = "Bernard Chazelle" +, title = "Computational geometry for the gourmet: old fare and new dishes" +, booktitle = "Automata, Languages and Programming (Proc. 18th ICALP)" +, series = "Lecture Notes Comput. Sci." +, volume = 510 +, year = 1991 +, pages = "686--696" +, update = "98.03 mitchell, 97.03 aronov, 94.05 matousek" } @article{c-cgsc-84 -, author = "Bernard Chazelle" -, title = "Computational Geometry on a Systolic Chip" -, journal = "IEEE Trans. Comput." -, volume = "C-33" -, number = 9 -, month = sep -, year = 1984 -, pages = "774--785" -, keywords = "parallel computation, VLSI design" -, update = "98.03 mitchell, 93.09 held" +, author = "Bernard Chazelle" +, title = "Computational Geometry on a Systolic Chip" +, journal = "IEEE Trans. Comput." +, volume = "C-33" +, number = 9 +, month = sep +, year = 1984 +, pages = "774--785" +, keywords = "parallel computation, VLSI design" +, update = "98.03 mitchell, 93.09 held" } @inproceedings{c-cftvc-84 -, author = "Bernard Chazelle" -, title = "Computing on a free tree via complexity preserving mappings" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "358--368" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle" +, title = "Computing on a free tree via complexity preserving mappings" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "358--368" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{c-cftcp-87 -, author = "Bernard Chazelle" -, title = "Computing on a free tree via complexity-preserving mappings" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "337--361" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Computing on a free tree via complexity-preserving mappings" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "337--361" +, update = "98.03 mitchell" } @inproceedings{c-cdp-81 -, author = "Bernard Chazelle" -, title = "Convex decompositions of polyhedra" -, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." -, year = 1981 -, pages = "70--79" -, precedes = "c-cpplb-84" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Convex decompositions of polyhedra" +, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." +, year = 1981 +, pages = "70--79" +, precedes = "c-cpplb-84" +, update = "98.03 mitchell" } @article{c-cpplb-84 -, author = "Bernard Chazelle" -, title = "Convex partitions of polyhedra: a lower bound and worst-case optimal algorithm" -, journal = "SIAM J. Comput." -, volume = 13 -, year = 1984 -, pages = "488--507" -, succeeds = "c-cdp-81" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Convex partitions of polyhedra: a lower bound and worst-case optimal algorithm" +, journal = "SIAM J. Comput." +, volume = 13 +, year = 1984 +, pages = "488--507" +, succeeds = "c-cdp-81" +, update = "98.03 mitchell" } @inproceedings{c-ccdga-84 -, author = "Bernard Chazelle" -, title = "Criticality considerations in the design of geometric algorithms" -, booktitle = "Proc. 22nd Allerton Conf. Commun. Control Comput." -, year = 1984 -, pages = "71--80" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Criticality considerations in the design of geometric algorithms" +, booktitle = "Proc. 22nd Allerton Conf. Commun. Control Comput." +, year = 1984 +, pages = "71--80" +, update = "98.03 mitchell" } @techreport{c-chdc-91 -, author = "Bernard Chazelle" -, title = "Cutting hyperplanes for divide-and-conquer" -, type = "Manuscript" -, institution = "Princeton Univ." -, address = "Princeton, NJ" -, year = 1991 -, keywords = "partition, divide-and-conquer, hyperplanes" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Cutting hyperplanes for divide-and-conquer" +, type = "Manuscript" +, institution = "Princeton Univ." +, address = "Princeton, NJ" +, year = 1991 +, keywords = "partition, divide-and-conquer, hyperplanes" +, update = "98.03 mitchell" } @article{c-chdc-93 -, author = "Bernard Chazelle" -, title = "Cutting hyperplanes for divide-and-conquer" -, journal = "Discrete Comput. Geom." -, volume = 9 -, number = 2 -, year = 1993 -, pages = "145--158" -, keywords = "partition, divide-and-conquer, hyperplanes" -, succeeds = "c-chdc-91" -, update = "98.03 mitchell, 93.09 matousek" +, author = "Bernard Chazelle" +, title = "Cutting hyperplanes for divide-and-conquer" +, journal = "Discrete Comput. Geom." +, volume = 9 +, number = 2 +, year = 1993 +, pages = "145--158" +, keywords = "partition, divide-and-conquer, hyperplanes" +, succeeds = "c-chdc-91" +, update = "98.03 mitchell, 93.09 matousek" } @techreport{c-ept-90 -, author = "Bernard Chazelle" -, title = "Efficient Polygon Trinangulation" -, number = "CS-TR-249-90" -, institution = "Princeton Univ." -, year = 1990 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle" +, title = "Efficient Polygon Trinangulation" +, number = "CS-TR-249-90" +, institution = "Princeton Univ." +, year = 1990 +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{c-fsram-84 -, author = "B. Chazelle" -, title = "Fast searching in a real algebraic manifold with applications to geometric complexity" -, type = "Technical {Report}" -, number = "84-13" -, institution = "Dept. Comput. Sci., Brown Univ." -, address = "Providence, RI" -, year = 1984 -, update = "98.07 bibrelex" +, author = "B. Chazelle" +, title = "Fast searching in a real algebraic manifold with applications to geometric complexity" +, type = "Technical {Report}" +, number = "84-13" +, institution = "Dept. Comput. Sci., Brown Univ." +, address = "Providence, RI" +, year = 1984 +, update = "98.07 bibrelex" } @inproceedings{c-fsram-85 -, author = "Bernard Chazelle" -, title = "Fast searching in a real algebraic manifold with applications to geometric complexity" -, booktitle = "Proc. Internat. Colloq. on Trees in Algebra and Program." -, series = "Lecture Notes Comput. Sci." -, volume = 185 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "145--156" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Fast searching in a real algebraic manifold with applications to geometric complexity" +, booktitle = "Proc. Internat. Colloq. on Trees in Algebra and Program." +, series = "Lecture Notes Comput. Sci." +, volume = 185 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "145--156" +, update = "98.03 mitchell" } @inproceedings{c-fsnaq-83 -, author = "Bernard Chazelle" -, title = "Filtering search: {A} new approach to query-answering" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "122--132" -, precedes = "c-fsnaq-86" -, update = "98.03 mitchell, 97.07 agarwal" +, author = "Bernard Chazelle" +, title = "Filtering search: {A} new approach to query-answering" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "122--132" +, precedes = "c-fsnaq-86" +, update = "98.03 mitchell, 97.07 agarwal" } @article{c-fsnaq-86 -, author = "Bernard Chazelle" -, title = "Filtering search: a new approach to query-answering" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "703--724" -, succeeds = "c-fsnaq-83" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle" +, title = "Filtering search: a new approach to query-answering" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "703--724" +, succeeds = "c-fsnaq-83" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{c-gcdm-99 -, author = "Bernard Chazelle" -, title = "Geometric Complexity and the Discrepancy Method" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "21--23" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Bernard Chazelle" +, title = "Geometric Complexity and the Discrepancy Method" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "21--23" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{c-gdr-93 -, author = "Bernard Chazelle" -, title = "Geometric Discrepancy Revisited" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "392--399" -, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Bernard Chazelle" +, title = "Geometric Discrepancy Revisited" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "392--399" +, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @incollection{c-hsh-83 -, author = "Bernard Chazelle" -, title = "How to search in history" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 158 -, year = 1983 -, pages = "52--63" -, precedes = "c-hsh-85" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "Bernard Chazelle" +, title = "How to search in history" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 158 +, year = 1983 +, pages = "52--63" +, precedes = "c-hsh-85" +, update = "98.03 mitchell, 95.09 korneenko" } @article{c-hsh-85 -, author = "Bernard Chazelle" -, title = "How to search in history" -, journal = "Inform. Control" -, volume = 64 -, year = 1985 -, pages = "77--99" -, keywords = "data structuring, search, dynamizing" -, succeeds = "c-hsh-83" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "Bernard Chazelle" +, title = "How to search in history" +, journal = "Inform. Control" +, volume = 64 +, year = 1985 +, pages = "77--99" +, keywords = "data structuring, search, dynamizing" +, succeeds = "c-hsh-83" +, update = "98.03 mitchell, 95.09 korneenko" } @inproceedings{c-iies-84 -, author = "Bernard Chazelle" -, title = "Intersecting is easier than sorting" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "125--134" -, precedes = "c-rcsi-86" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Intersecting is easier than sorting" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "125--134" +, precedes = "c-rcsi-86" +, update = "98.03 mitchell" } @inproceedings{c-lbolr-95 -, author = "Bernard Chazelle" -, title = "Lower bounds for off-line range searching" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, year = 1995 -, pages = "733--740" -, update = "98.03 mitchell, 95.09 smid" +, author = "Bernard Chazelle" +, title = "Lower bounds for off-line range searching" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, year = 1995 +, pages = "733--740" +, update = "98.03 mitchell, 95.09 smid" } @article{c-lbolr-97 -, author = "B. Chazelle" -, title = "Lower bounds for off-line range searching" -, journal = "Discrete Comput. Geom." -, volume = 17 -, number = 1 -, year = 1997 -, pages = "53--66" -, update = "98.07 bibrelex" +, author = "B. Chazelle" +, title = "Lower bounds for off-line range searching" +, journal = "Discrete Comput. Geom." +, volume = 17 +, number = 1 +, year = 1997 +, pages = "53--66" +, update = "98.07 bibrelex" } @article{c-lbors1-90 -, author = "Bernard Chazelle" -, title = "Lower bounds for orthogonal range searching, {I}: {T}he reporting case" -, journal = "J. ACM" -, volume = 37 -, year = 1990 -, pages = "200--212" -, succeeds = "c-lbcms-86" -, precedes = "c-lbors2-90" -, update = "98.03 mitchell, 97.07 agarwal" +, author = "Bernard Chazelle" +, title = "Lower bounds for orthogonal range searching, {I}: {T}he reporting case" +, journal = "J. ACM" +, volume = 37 +, year = 1990 +, pages = "200--212" +, succeeds = "c-lbcms-86" +, precedes = "c-lbors2-90" +, update = "98.03 mitchell, 97.07 agarwal" } @article{c-lbors2-90 -, author = "Bernard Chazelle" -, title = "Lower bounds for orthogonal range searching, {II}: {T}he arithmetic model" -, journal = "J. ACM" -, volume = 37 -, year = 1990 -, pages = "439--463" -, succeeds = "c-lbors1-90" -, update = "98.03 mitchell, 97.07 agarwal" +, author = "Bernard Chazelle" +, title = "Lower bounds for orthogonal range searching, {II}: {T}he arithmetic model" +, journal = "J. ACM" +, volume = 37 +, year = 1990 +, pages = "439--463" +, succeeds = "c-lbors1-90" +, update = "98.03 mitchell, 97.07 agarwal" } @inproceedings{c-lbcms-86 -, author = "Bernard Chazelle" -, title = "Lower bounds on the complexity of multidimensional searching" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "87--96" -, precedes = "c-lbors1-90" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Lower bounds on the complexity of multidimensional searching" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "87--96" +, precedes = "c-lbors1-90" +, update = "98.03 mitchell" } @article{c-lbcpr-89 -, author = "Bernard Chazelle" -, title = "Lower bounds on the complexity of polytope range searching" -, journal = "J. Amer. Math. Soc." -, volume = 2 -, year = 1989 -, pages = "637--666" -, keywords = "simplex range searching, integral geometry, lower bounds" -, succeeds = "c-prsig-87" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Lower bounds on the complexity of polytope range searching" +, journal = "J. Amer. Math. Soc." +, volume = 2 +, year = 1989 +, pages = "637--666" +, keywords = "simplex range searching, integral geometry, lower bounds" +, succeeds = "c-prsig-87" +, update = "98.03 mitchell" } @inproceedings{c-ntcos-85 -, author = "Bernard Chazelle" -, title = "New techniques for computing order statistics in {Euclidean} space" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "125--134" -, precedes = "c-stgsi-87" -, cites = "bs-dcms-76, bfprt-tbs-73, bddg-fep-82, cgl-pgd-83, cw-mvdbs-84, c-sssl-83, dl-msp-76, eos-calha-83, fj-csrxm-82, fj-fkppc-83, fj-gsrsm-84, gm-fsapo-79, h-acca-77, jm-sktex-78, mt-fmvdb-83, mtzc-oaktn-81, oamb-oafme-84, ph-chfsp-77, s-gspi-76, t-oacmv-83, y-cmstk-82, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 93.09 milone+mitchell" +, author = "Bernard Chazelle" +, title = "New techniques for computing order statistics in {Euclidean} space" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "125--134" +, precedes = "c-stgsi-87" +, cites = "bs-dcms-76, bfprt-tbs-73, bddg-fep-82, cgl-pgd-83, cw-mvdbs-84, c-sssl-83, dl-msp-76, eos-calha-83, fj-csrxm-82, fj-fkppc-83, fj-gsrsm-84, gm-fsapo-79, h-acca-77, jm-sktex-78, mt-fmvdb-83, mtzc-oaktn-81, oamb-oafme-84, ph-chfsp-77, s-gspi-76, t-oacmv-83, y-cmstk-82, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 93.09 milone+mitchell" } @article{c-clps-85 -, author = "Bernard Chazelle" -, title = "On the convex layers of a planar set" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-31" -, number = 4 -, month = jul -, year = 1985 -, pages = "509--517" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle" +, title = "On the convex layers of a planar set" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-31" +, number = 4 +, month = jul +, year = 1985 +, pages = "509--517" +, update = "98.11 bibrelex, 98.03 mitchell" } @inproceedings{c-pt-90i -, author = "B. Chazelle" -, title = "Polygon Triangulation" -, booktitle = "Proceedings of FOCCS" -, year = 1990 -, precedes = "c-ept-90, c-tsplt-90t" -, update = "98.07 bibrelex" +, author = "B. Chazelle" +, title = "Polygon Triangulation" +, booktitle = "Proceedings of FOCCS" +, year = 1990 +, precedes = "c-ept-90, c-tsplt-90t" +, update = "98.07 bibrelex" } @inproceedings{c-prsig-87 -, author = "Bernard Chazelle" -, title = "Polytope range searching and integral geometry" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "1--10" -, precedes = "c-lbcpr-89" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Polytope range searching and integral geometry" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "1--10" +, precedes = "c-lbcpr-89" +, update = "98.03 mitchell" } @article{c-rcsi-86 -, author = "Bernard Chazelle" -, title = "Reporting and counting segment intersections" -, journal = "J. Comput. Syst. Sci." -, volume = 32 -, year = 1986 -, pages = "156--182" -, succeeds = "c-iies-84" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Reporting and counting segment intersections" +, journal = "J. Comput. Syst. Sci." +, volume = 32 +, year = 1986 +, pages = "156--182" +, succeeds = "c-iies-84" +, update = "98.03 mitchell" } @inproceedings{c-sdssf-85 -, author = "Bernard Chazelle" -, title = "Slimming down search structures: {A} functional approach to algorithm design" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "165--174" -, keywords = "searching, data structuring" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "Bernard Chazelle" +, title = "Slimming down search structures: {A} functional approach to algorithm design" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "165--174" +, keywords = "searching, data structuring" +, update = "98.03 mitchell, 95.09 korneenko" } @article{c-stgsi-87 -, author = "Bernard Chazelle" -, title = "Some techniques for geometric searching with implicit set representations" -, journal = "Acta Inform." -, volume = 24 -, year = 1987 -, pages = "565--582" -, succeeds = "c-ntcos-85" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "Bernard Chazelle" +, title = "Some techniques for geometric searching with implicit set representations" +, journal = "Acta Inform." +, volume = 24 +, year = 1987 +, pages = "565--582" +, succeeds = "c-ntcos-85" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @article{c-blbph-83 -, author = "Bernard Chazelle" -, title = "The bottom-left bin-packing heuristic: an efficient implementation" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, year = 1983 -, pages = "697--707" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "The bottom-left bin-packing heuristic: an efficient implementation" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, year = 1983 +, pages = "697--707" +, update = "98.03 mitchell" } @incollection{c-pcp-83 -, author = "Bernard Chazelle" -, title = "The Polygon Containment Problem" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "1--33" -, update = "01.04 icking, 98.03 mitchell" +, author = "Bernard Chazelle" +, title = "The Polygon Containment Problem" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "1--33" +, update = "01.04 icking, 98.03 mitchell" } @techreport{c-ptapv-82 -, author = "Bernard Chazelle" -, title = "The power of triangulation: applications to problems of visibility and internal distance" -, type = "Report" -, number = "CMU-CS-82-121" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1982 -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "The power of triangulation: applications to problems of visibility and internal distance" +, type = "Report" +, number = "CMU-CS-82-121" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1982 +, update = "98.03 mitchell" } @techreport{c-tbsns-88 -, author = "Bernard Chazelle" -, title = "Tight bounds on the stabbing number of spanning trees in {Euclidean} space" -, type = "Report" -, number = "CS-TR-155-88" -, institution = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1988 -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Tight bounds on the stabbing number of spanning trees in {Euclidean} space" +, type = "Report" +, number = "CS-TR-155-88" +, institution = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1988 +, update = "98.03 mitchell" } @techreport{c-tsplt-90t -, author = "Bernard Chazelle" -, title = "Triangulating a simple polygon in linear time" -, type = "Technical {Report}" -, number = "CS-TR-264-90" -, institution = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1990 -, succeeds = "c-pt-90i" -, precedes = "c-tsplt-90i" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Triangulating a simple polygon in linear time" +, type = "Technical {Report}" +, number = "CS-TR-264-90" +, institution = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1990 +, succeeds = "c-pt-90i" +, precedes = "c-tsplt-90i" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{c-tsplt-90i -, author = "Bernard Chazelle" -, title = "Triangulating a simple polygon in linear time" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "220--230" -, succeeds = "c-tsplt-90t" -, precedes = "c-tsplt-91a" -, update = "98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Triangulating a simple polygon in linear time" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "220--230" +, succeeds = "c-tsplt-90t" +, precedes = "c-tsplt-91a" +, update = "98.03 mitchell" } @article{c-tsplt-91a -, author = "Bernard Chazelle" -, title = "Triangulating a simple polygon in linear time" -, journal = "Discrete Comput. Geom." -, volume = 6 -, number = 5 -, year = 1991 -, pages = "485--524" -, succeeds = "c-tsplt-90i" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle" +, title = "Triangulating a simple polygon in linear time" +, journal = "Discrete Comput. Geom." +, volume = 6 +, number = 5 +, year = 1991 +, pages = "485--524" +, succeeds = "c-tsplt-90i" +, update = "98.11 bibrelex, 98.03 mitchell" } @inproceedings{c-vigt-82 -, author = "Bernard Chazelle" -, title = "{VLSI} implementations of geometric tasks" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1982 -, pages = "615--624" -, keywords = "parallel computation" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "Bernard Chazelle" +, title = "{VLSI} implementations of geometric tasks" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1982 +, pages = "615--624" +, keywords = "parallel computation" +, update = "98.03 mitchell, 95.09 korneenko" } @techreport{cb-tsnis-92 -, author = "Bernard Chazelle and R. Bar-Yehuda" -, title = "Triangulating a set of non-intersecting and simple polygonal chains" -, type = "Technical {Report}" -, year = 1992 -, keywords = "simple polygons, visibility, triangulation" -, precedes = "bc-tdjc-94" -, update = "98.03 mitchell, 95.09 mitchell, 93.09 milone+mitchell" +, author = "Bernard Chazelle and R. Bar-Yehuda" +, title = "Triangulating a set of non-intersecting and simple polygonal chains" +, type = "Technical {Report}" +, year = 1992 +, keywords = "simple polygons, visibility, triangulation" +, precedes = "bc-tdjc-94" +, update = "98.03 mitchell, 95.09 mitchell, 93.09 milone+mitchell" } @techreport{ccpy-nubns-84 -, author = "Bernard Chazelle and R. Cole and F. P. Preparata and C. K. Yap" -, title = "New upper bounds for neighbor searching" -, number = "CS-84-11" -, institution = "Brown Univ." -, address = "Providence, RI" -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and R. Cole and F. P. Preparata and C. K. Yap" +, title = "New upper bounds for neighbor searching" +, number = "CS-84-11" +, institution = "Brown Univ." +, address = "Providence, RI" +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ccpy-nubns-86 -, author = "Bernard Chazelle and R. Cole and F. P. Preparata and C. K. Yap" -, title = "New upper bounds for neighbor searching" -, journal = "Inform. Control" -, volume = 68 -, year = 1986 -, pages = "105--124" -, keywords = "locus approach, reporting, subdivisions, points, circles" -, succeeds = "cp-hrsaa-85" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "Bernard Chazelle and R. Cole and F. P. Preparata and C. K. Yap" +, title = "New upper bounds for neighbor searching" +, journal = "Inform. Control" +, volume = 68 +, year = 1986 +, pages = "105--124" +, keywords = "locus approach, reporting, subdivisions, points, circles" +, succeeds = "cp-hrsaa-85" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{cdhmst-sdtlt-01 -, author = "Bernard Chazelle and Olivier Devillers and Ferran Hurtado and Merc{\`e} Mora and Vera Sacrist{\'a}n and Monique Teillaud" -, title = "Splitting a {Delaunay} Triangulation in Linear Time" -, booktitle = "Proc. 9th. European Symposiun on Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 2161 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "312--320" -, update = "01.11 devillers" +, author = "Bernard Chazelle and Olivier Devillers and Ferran Hurtado and Merc{\`e} Mora and Vera Sacrist{\'a}n and Monique Teillaud" +, title = "Splitting a {Delaunay} Triangulation in Linear Time" +, booktitle = "Proc. 9th. European Symposiun on Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 2161 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "312--320" +, update = "01.11 devillers" } @article{cdst-spsde-97 -, author = "Bernard Chazelle and D. Dobkin and N. Shouraboura and A. Tal" -, title = "Strategies for polyhedral surface decomposition: An experimental study" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "327--342" -, succeeds = "cdst-spsde-95" -, update = "98.03 mitchell, 97.07 devillers" +, author = "Bernard Chazelle and D. Dobkin and N. Shouraboura and A. Tal" +, title = "Strategies for polyhedral surface decomposition: An experimental study" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "327--342" +, succeeds = "cdst-spsde-95" +, update = "98.03 mitchell, 97.07 devillers" } @inproceedings{cd-dpicp-79 -, author = "Bernard Chazelle and D. P. Dobkin" -, title = "Decomposing a polygon into its convex parts" -, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." -, year = 1979 -, pages = "38--48" -, precedes = "cd-ocd-85" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and D. P. Dobkin" +, title = "Decomposing a polygon into its convex parts" +, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." +, year = 1979 +, pages = "38--48" +, precedes = "cd-ocd-85" +, update = "98.03 mitchell" } @inproceedings{cd-diec-80 -, author = "Bernard Chazelle and D. P. Dobkin" -, title = "Detection is easier than computation" -, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." -, year = 1980 -, pages = "146--153" -, precedes = "cd-icott-87" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and D. P. Dobkin" +, title = "Detection is easier than computation" +, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." +, year = 1980 +, pages = "146--153" +, precedes = "cd-icott-87" +, update = "98.03 mitchell" } @article{cd-icott-87 -, author = "Bernard Chazelle and D. P. Dobkin" -, title = "Intersection of convex objects in two and three dimensions" -, journal = "J. ACM" -, volume = 34 -, number = 1 -, month = jan -, year = 1987 -, pages = "1--27" -, keywords = "polygons, polyhedra, intersection, detection" -, succeeds = "cd-diec-80" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle and D. P. Dobkin" +, title = "Intersection of convex objects in two and three dimensions" +, journal = "J. ACM" +, volume = 34 +, number = 1 +, month = jan +, year = 1987 +, pages = "1--27" +, keywords = "polygons, polyhedra, intersection, detection" +, succeeds = "cd-diec-80" +, update = "98.11 bibrelex, 98.03 mitchell" } @incollection{cd-ocd-85 -, author = "Bernard Chazelle and D. P. Dobkin" -, title = "Optimal convex decompositions" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "63--133" -, succeeds = "cd-dpicp-79" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and D. P. Dobkin" +, title = "Optimal convex decompositions" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "63--133" +, succeeds = "cd-dpicp-79" +, update = "98.03 mitchell" } @inproceedings{cdst-csd-95 -, author = "Bernard Chazelle and David P. Dobkin and Nadia Shouraboura and Ayellet Tal" -, title = "Convex Surface Decomposition" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "V9--V10" -, keywords = "video review" -, cites = "cdst-spsde-95, dt-gascg-94, td-gsvga-94, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Bernard Chazelle and David P. Dobkin and Nadia Shouraboura and Ayellet Tal" +, title = "Convex Surface Decomposition" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "V9--V10" +, keywords = "video review" +, cites = "cdst-spsde-95, dt-gascg-94, td-gsvga-94, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{cdst-spsde-95 -, author = "Bernard Chazelle and David P. Dobkin and Nadia Shouraboura and Ayellet Tal" -, title = "Strategies for Polyhedral Surface Decomposition: {An} Experimental Study" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "297--305" -, keywords = "convex surfaces" -, precedes = "cdst-spsde-97" -, cites = "as-tsbac-90, as-car-92, -arm-92, bd-cdpr-92, b-ct-93, be-mgot-92i, beg-pgmg-90, c-cpplb-84, cp-tncp-90, cp-dag-94, cp-dbnp-92, cs-bst-94, dk-fdpi-83, fkn-vsgpt-80, o-agta-87, mv-qmgtd-92i, rs-dttdn-92, sh-ffbtp-93, swfcb-immcb-93, ZZZ" -, update = "98.03 bibrelex, 97.07 devillers, 95.09 mitchell" +, author = "Bernard Chazelle and David P. Dobkin and Nadia Shouraboura and Ayellet Tal" +, title = "Strategies for Polyhedral Surface Decomposition: {An} Experimental Study" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "297--305" +, keywords = "convex surfaces" +, precedes = "cdst-spsde-97" +, cites = "as-tsbac-90, as-car-92, -arm-92, bd-cdpr-92, b-ct-93, be-mgot-92i, beg-pgmg-90, c-cpplb-84, cp-tncp-90, cp-dag-94, cp-dbnp-92, cs-bst-94, dk-fdpi-83, fkn-vsgpt-80, o-agta-87, mv-qmgtd-92i, rs-dttdn-92, sh-ffbtp-93, swfcb-immcb-93, ZZZ" +, update = "98.03 bibrelex, 97.07 devillers, 95.09 mitchell" } @inproceedings{cdl-cler-84 -, author = "Bernard Chazelle and R. L. {Drysdale, III} and D. T. Lee" -, title = "Computing the largest empty rectangle" -, booktitle = "Proc. 1st Sympos. Theoret. Aspects Comput. Sci." -, nickname = "STACS '84" -, series = "Lecture Notes Comput. Sci." -, volume = 166 -, publisher = "Springer-Verlag" -, year = 1984 -, pages = "43--54" -, keywords = "rectangles, Voronoi diagrams" -, precedes = "cdl-cler-86" -, update = "98.11 bibrelex, 98.03 mitchell, 93.09 drysdale" +, author = "Bernard Chazelle and R. L. {Drysdale, III} and D. T. Lee" +, title = "Computing the largest empty rectangle" +, booktitle = "Proc. 1st Sympos. Theoret. Aspects Comput. Sci." +, nickname = "STACS '84" +, series = "Lecture Notes Comput. Sci." +, volume = 166 +, publisher = "Springer-Verlag" +, year = 1984 +, pages = "43--54" +, keywords = "rectangles, Voronoi diagrams" +, precedes = "cdl-cler-86" +, update = "98.11 bibrelex, 98.03 mitchell, 93.09 drysdale" } @article{cdl-cler-86 -, author = "Bernard Chazelle and R. L. {Drysdale, III} and D. T. Lee" -, title = "Computing the largest empty rectangle" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "300--315" -, keywords = "rectangles, Voronoi diagrams" -, succeeds = "cdl-cler-84" -, update = "98.03 mitchell, 93.09 drysdale" +, author = "Bernard Chazelle and R. L. {Drysdale, III} and D. T. Lee" +, title = "Computing the largest empty rectangle" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "300--315" +, keywords = "rectangles, Voronoi diagrams" +, succeeds = "cdl-cler-84" +, update = "98.03 mitchell, 93.09 drysdale" } @techreport{ce-falsi-87 -, author = "B. Chazelle and H. Edelsbrunner" -, title = "A fast algorithm for line segment intersection and its extensions" -, type = "Manuscript" -, institution = "??" -, year = 1987 -, update = "98.03 bibrelex" +, author = "B. Chazelle and H. Edelsbrunner" +, title = "A fast algorithm for line segment intersection and its extensions" +, type = "Manuscript" +, institution = "??" +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{ce-iacko-85 -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "An improved algorithm for constructing $k$th-order {Voronoi} diagrams" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "228--234" -, precedes = "ce-iacko-87" -, cites = "b-vdch-79, cgl-pgd-83, csy-khrp-84, e-cestd-84, eos-calha-83, ew-cbtda-86, l-knnvd-82, ol-mcp-81, s-cg-78, sh-cpp-75, v-nadpc-08, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "An improved algorithm for constructing $k$th-order {Voronoi} diagrams" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "228--234" +, precedes = "ce-iacko-87" +, cites = "b-vdch-79, cgl-pgd-83, csy-khrp-84, e-cestd-84, eos-calha-83, ew-cbtda-86, l-knnvd-82, ol-mcp-81, s-cg-78, sh-cpp-75, v-nadpc-08, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ce-iacko-87 -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "An improved algorithm for constructing $k$th-order {Voronoi} diagrams" -, journal = "IEEE Trans. Comput." -, volume = "C-36" -, year = 1987 -, pages = "1349--1354" -, keywords = "discrete geometry, design of algorithms, construction, geometric transformations, repeated search, Voronoi diagrams, two-dimensional, three-dimensional" -, succeeds = "ce-iacko-85" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "An improved algorithm for constructing $k$th-order {Voronoi} diagrams" +, journal = "IEEE Trans. Comput." +, volume = "C-36" +, year = 1987 +, pages = "1349--1354" +, keywords = "discrete geometry, design of algorithms, construction, geometric transformations, repeated search, Voronoi diagrams, two-dimensional, three-dimensional" +, succeeds = "ce-iacko-85" +, update = "98.03 mitchell" } @techreport{ce-oails-88t -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "An optimal algorithm for intersecting line segments in the plane" -, type = "Technical {Report}" -, number = "UIUCDCS-R-1419" -, institution = "Dept. Comput. Sci., Univ. of Illinois" -, address = "Urbana, IL" -, month = mar -, year = 1988 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "An optimal algorithm for intersecting line segments in the plane" +, type = "Technical {Report}" +, number = "UIUCDCS-R-1419" +, institution = "Dept. Comput. Sci., Univ. of Illinois" +, address = "Urbana, IL" +, month = mar +, year = 1988 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{ce-oails-88 -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "An optimal algorithm for intersecting line segments in the plane" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "590--600" -, keywords = "intersection, topological sweep, segments" -, precedes = "ce-oails-92" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "An optimal algorithm for intersecting line segments in the plane" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "590--600" +, keywords = "intersection, topological sweep, segments" +, precedes = "ce-oails-92" +, update = "98.03 mitchell" } @article{ce-oails-92 -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "An optimal algorithm for intersecting line segments in the plane" -, journal = "J. ACM" -, volume = 39 -, number = 1 -, year = 1992 -, pages = "1--54" -, keywords = "intersection, topological sweep, segments" -, succeeds = "ce-oails-88" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "An optimal algorithm for intersecting line segments in the plane" +, journal = "J. ACM" +, volume = 39 +, number = 1 +, year = 1992 +, pages = "1--54" +, keywords = "intersection, topological sweep, segments" +, succeeds = "ce-oails-88" +, update = "98.11 bibrelex, 98.03 mitchell" } @inproceedings{ce-lsdst-86 -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "Linear space data structures for two types of range search" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "293--302" -, precedes = "ce-lsdst-87" -, cites = "b-mdc-80, c-fsnaq-83, c-fadsi-85, ce-oscpr-85a, cg-fcdst-84, cgl-pgd-83, de-ssio-84, egs-oplms-86, ew-hrsls-83, gbt-srtgp-84, gs-pmgsc-83, k-osps-83, klp-fmsv-75, lt-apst-80, m-pst-81, mp-fitcp-78, ns-picg-79, w-pr-82, y-3spia-83, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "Linear space data structures for two types of range search" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "293--302" +, precedes = "ce-lsdst-87" +, cites = "b-mdc-80, c-fsnaq-83, c-fadsi-85, ce-oscpr-85a, cg-fcdst-84, cgl-pgd-83, de-ssio-84, egs-oplms-86, ew-hrsls-83, gbt-srtgp-84, gs-pmgsc-83, k-osps-83, klp-fmsv-75, lt-apst-80, m-pst-81, mp-fitcp-78, ns-picg-79, w-pr-82, y-3spia-83, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{ce-lsdst-87 -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "Linear space data structures for two types of range search" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "113--126" -, keywords = "data structuring, reporting, domination, range search, point location, directed acyclic graphs, two-dimensional, three-dimensional" -, succeeds = "ce-lsdst-86" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "Linear space data structures for two types of range search" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "113--126" +, keywords = "data structuring, reporting, domination, range search, point location, directed acyclic graphs, two-dimensional, three-dimensional" +, succeeds = "ce-lsdst-86" +, update = "98.03 mitchell" } @incollection{ce-oscpr-85a -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "Optimal solutions for a class of point retrieval problems" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 194 -, year = 1985 -, pages = "80--89" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "Optimal solutions for a class of point retrieval problems" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 194 +, year = 1985 +, pages = "80--89" +, update = "98.03 mitchell, 95.09 korneenko" } @article{ce-oscpr-85 -, author = "Bernard Chazelle and H. Edelsbrunner" -, title = "Optimal solutions for a class of point retrieval problems" -, journal = "J. Symbolic Comput." -, volume = 1 -, year = 1985 -, pages = "47--56" -, keywords = "data structuring, reporting, range search, directed acyclic graphs, translates" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner" +, title = "Optimal solutions for a class of point retrieval problems" +, journal = "J. Symbolic Comput." +, volume = 1 +, year = 1985 +, pages = "47--56" +, keywords = "data structuring, reporting, range search, directed acyclic graphs, translates" +, update = "98.03 mitchell" } @inproceedings{cegghss-rspug-91 -, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and J. Hershberger and Micha Sharir and J. Snoeyink" -, title = "Ray shooting in polygons using geodesic triangulations" -, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 510 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "661--673" -, keywords = "ray shooting, simple polygon, geodesics" -, update = "98.03 mitchell, 93.09 rote" +, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and J. Hershberger and Micha Sharir and J. Snoeyink" +, title = "Ray shooting in polygons using geodesic triangulations" +, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 510 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "661--673" +, keywords = "ray shooting, simple polygon, geodesics" +, update = "98.03 mitchell, 93.09 rote" } @article{cegghss-rspug-94 -, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and J. Hershberger and Micha Sharir and J. Snoeyink" -, title = "Ray shooting in polygons using geodesic triangulations" -, journal = "Algorithmica" -, volume = 12 -, year = 1994 -, pages = "54--68" -, keywords = "ray shooting, simple polygon, geodesics" -, succeeds = "cegghss-rspug-91" -, update = "98.03 mitchell, 96.05 pocchiola+ramkumar" +, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and J. Hershberger and Micha Sharir and J. Snoeyink" +, title = "Ray shooting in polygons using geodesic triangulations" +, journal = "Algorithmica" +, volume = 12 +, year = 1994 +, pages = "54--68" +, keywords = "ray shooting, simple polygon, geodesics" +, succeeds = "cegghss-rspug-91" +, update = "98.03 mitchell, 96.05 pocchiola+ramkumar" } @inproceedings{ceggs-ibwen-93 -, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and Micha Sharir" -, title = "Improved Bounds on Weak $\epsilon$-Nets for Convex Sets" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '93" -, year = 1993 -, pages = "495--504" -, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal+gaertner+salinger, 93.09 milone+mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and Micha Sharir" +, title = "Improved Bounds on Weak $\epsilon$-Nets for Convex Sets" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '93" +, year = 1993 +, pages = "495--504" +, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal+gaertner+salinger, 93.09 milone+mitchell" } @techreport{ceggss-rspug-90 -, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and Micha Sharir and J. Snoeyink" -, title = "Ray shooting in polygons using geodesic triangulations" -, type = "Manuscript" -, year = 1990 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and Micha Sharir and J. Snoeyink" +, title = "Ray shooting in polygons using geodesic triangulations" +, type = "Manuscript" +, year = 1990 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ceggsw-ibwen-95 -, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and Micha Sharir and Emo Welzl" -, title = "Improved bounds on weak $\epsilon$-nets for convex sets" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "1--15" -, update = "98.03 mitchell, 96.05 smid" +, author = "Bernard Chazelle and H. Edelsbrunner and M. Grigni and Leonidas J. Guibas and Micha Sharir and Emo Welzl" +, title = "Improved bounds on weak $\epsilon$-nets for convex sets" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "1--15" +, update = "98.03 mitchell, 96.05 smid" } @article{ceghss-shcp-94 -, author = "B. Chazelle and H. Edelsbrunner and L. Guibas and J. Hershberger and R. Seidel and M. Sharir" -, title = "Selecting heavily covered points" -, journal = "SIAM J. Comput." -, volume = 23 -, year = 1994 -, pages = "1138--1151" -, update = "98.07 bibrelex" +, author = "B. Chazelle and H. Edelsbrunner and L. Guibas and J. Hershberger and R. Seidel and M. Sharir" +, title = "Selecting heavily covered points" +, journal = "SIAM J. Comput." +, volume = 23 +, year = 1994 +, pages = "1138--1151" +, update = "98.07 bibrelex" } @article{cegs-plrav-89 -, author = "B. Chazelle and H. Edelsbrunner and L. Guibas and M. Sharir" -, title = "Point location in real-algebraic varieties and its applications" -, journal = "ICALP" -, volume = "??" -, year = 1989 -, update = "98.03 bibrelex" +, author = "B. Chazelle and H. Edelsbrunner and L. Guibas and M. Sharir" +, title = "Point location in real-algebraic varieties and its applications" +, journal = "ICALP" +, volume = "??" +, year = 1989 +, update = "98.03 bibrelex" } @article{ceg-ccc-89 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas" -, title = "The complexity of cutting complexes" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "139--181" -, keywords = "discrete geometry, optimization, visibility, cell complexes, arrangements, polytopes, convex, three-dimensional, directed acyclic graphs" -, succeeds = "ceg-cccp-87" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas" +, title = "The complexity of cutting complexes" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "139--181" +, keywords = "discrete geometry, optimization, visibility, cell complexes, arrangements, polytopes, convex, three-dimensional, directed acyclic graphs" +, succeeds = "ceg-cccp-87" +, update = "98.03 mitchell" } @inproceedings{ceg-cccp-87 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas" -, title = "The complexity of cutting convex polytopes" -, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." -, year = 1987 -, pages = "66--76" -, keywords = "discrete geometry, optimization, visibility, cell complexes, arrangements, polytopes, convex, three-dimensional, directed acyclic graphs" -, precedes = "ceg-ccc-89" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas" +, title = "The complexity of cutting convex polytopes" +, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." +, year = 1987 +, pages = "66--76" +, keywords = "discrete geometry, optimization, visibility, cell complexes, arrangements, polytopes, convex, three-dimensional, directed acyclic graphs" +, precedes = "ceg-ccc-89" +, update = "98.03 mitchell" } @inproceedings{ceghss-sdash-90 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and J. E. Hershberger and R. Seidel and Micha Sharir" -, title = "Slimming down by adding; selecting heavily covered points" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "116--127" -, cites = "cff-aatdf-85, acegsw-ptphp-90, d-slsv-34, dv-cprac-77, e-narip1-83, e-acg-87, em-sstcd-90, f-ldead-72, gs-nsagv-69, ht-fafnc-84, h-uzztu-53, ms-pggrg-80, ps-cgi-85, sf-afem-73, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and J. E. Hershberger and R. Seidel and Micha Sharir" +, title = "Slimming down by adding; selecting heavily covered points" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "116--127" +, cites = "cff-aatdf-85, acegsw-ptphp-90, d-slsv-34, dv-cprac-77, e-narip1-83, e-acg-87, em-sstcd-90, f-ldead-72, gs-nsagv-69, ht-fafnc-84, h-uzztu-53, ms-pggrg-80, ps-cgi-85, sf-afem-73, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{cegpsss-cccll-?? -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" -, title = "Counting and Cutting Cycles of Lines and Line Segments in Space" -, type = "Technical {Report}" -, year = "??" -, keywords = "discrete and computational geometry, three dimensions, hidden surface removal, depth sort, line segments, lines, cycles, incidences" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" +, title = "Counting and Cutting Cycles of Lines and Line Segments in Space" +, type = "Technical {Report}" +, year = "??" +, keywords = "discrete and computational geometry, three dimensions, hidden surface removal, depth sort, line segments, lines, cycles, incidences" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{cegpsss-ccclr-90 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" -, title = "Counting and cutting cycles of lines and rods in space" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "242--251" -, keywords = "arrangements of lines in 3D, Plucker coordinates, convex hulls" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" +, title = "Counting and cutting cycles of lines and rods in space" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "242--251" +, keywords = "arrangements of lines in 3D, Plucker coordinates, convex hulls" +, update = "98.03 mitchell" } @article{cegpsss-ccclr-92 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" -, title = "Counting and cutting cycles of lines and rods in space" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, year = 1992 -, pages = "305--323" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" +, title = "Counting and cutting cycles of lines and rods in space" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, year = 1992 +, pages = "305--323" +, update = "98.03 mitchell" } @inproceedings{cegs-sessr-89 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "A singly-exponential stratification scheme for real semi-algebraic varieties and its applications" -, booktitle = "Proc. 16th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 372 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "179--193" -, keywords = "cell decomposition, random sampling, triangulation" -, precedes = "cegs-sessr-91" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "A singly-exponential stratification scheme for real semi-algebraic varieties and its applications" +, booktitle = "Proc. 16th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 372 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "179--193" +, keywords = "cell decomposition, random sampling, triangulation" +, precedes = "cegs-sessr-91" +, update = "98.11 bibrelex, 98.03 mitchell" } @article{cegs-sessr-91 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "A singly-exponential stratification scheme for real semi-algebraic varieties and its applications" -, journal = "Theoret. Comput. Sci." -, volume = 84 -, year = 1991 -, pages = "77--105" -, keywords = "cell decomposition, random sampling, triangulation" -, succeeds = "cegs-sessr-89" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "A singly-exponential stratification scheme for real semi-algebraic varieties and its applications" +, journal = "Theoret. Comput. Sci." +, volume = 84 +, year = 1991 +, pages = "77--105" +, keywords = "cell decomposition, random sampling, triangulation" +, succeeds = "cegs-sessr-89" +, update = "98.03 mitchell" } @techreport{cegs-ablsp-89 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "Algorithms for bichromatic line segment problems and polyhedral terrains" -, type = "Report" -, number = "UIUCDCS-R-90-1578" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1989 -, keywords = "arrangements, terrains, intersection problems" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "Algorithms for bichromatic line segment problems and polyhedral terrains" +, type = "Report" +, number = "UIUCDCS-R-90-1578" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1989 +, keywords = "arrangements, terrains, intersection problems" +, update = "98.03 mitchell" } @article{cegs-ablsp-94 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "Algorithms for bichromatic line segment problems and polyhedral terrains" -, journal = "Algorithmica" -, volume = 11 -, year = 1994 -, pages = "116--132" -, succeeds = "cegs-ablsp-89" -, update = "98.03 mitchell, 94.05 matousek+sharir" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "Algorithms for bichromatic line segment problems and polyhedral terrains" +, journal = "Algorithmica" +, volume = 11 +, year = 1994 +, pages = "116--132" +, succeeds = "cegs-ablsp-89" +, update = "98.03 mitchell, 94.05 matousek+sharir" } @inproceedings{cegs-dwclp-92 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "Diameter, width, closest line pair, and parametric searching" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "120--129" -, cites = "aass-sdp-90, aesw-emstb-91, aest-cscpp-91, am-rsps-92, as-pglp-90, ast-apsgo-92, aps-zsha-93, c-ochan-91, cegs-lscaa-89, cegs-sessr-89, cegs-ablsp-94, cs-arscg-89, c-sdsno-87, csss-otass-89, csy-khrp-87, dmn-rass-92, egs-oplms-86, hw-ensrq-87, ht-cws-85, k-osps-83, m-ept-91, m-roass-91, m-aogdc-91, m-ccpps-91, m-loq-93, m-apcad-83, ns-cpcps-90, sw-frmrl-92, t-epcp-91, v-pcp-75, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "Diameter, width, closest line pair, and parametric searching" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "120--129" +, cites = "aass-sdp-90, aesw-emstb-91, aest-cscpp-91, am-rsps-92, as-pglp-90, ast-apsgo-92, aps-zsha-93, c-ochan-91, cegs-lscaa-89, cegs-sessr-89, cegs-ablsp-94, cs-arscg-89, c-sdsno-87, csss-otass-89, csy-khrp-87, dmn-rass-92, egs-oplms-86, hw-ensrq-87, ht-cws-85, k-osps-83, m-ept-91, m-roass-91, m-aogdc-91, m-ccpps-91, m-loq-93, m-apcad-83, ns-cpcps-90, sw-frmrl-92, t-epcp-91, v-pcp-75, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{cegs-dwclp-93 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "Diameter, width, closest line pair and parametric searching" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "183--196" -, succeeds = "cegs-dwclp-92" -, update = "98.03 mitchell, 94.01 matousek" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "Diameter, width, closest line pair and parametric searching" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "183--196" +, succeeds = "cegs-dwclp-92" +, update = "98.03 mitchell, 94.01 matousek" } @inproceedings{cegs-lscaa-89 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "Lines in space: combinatorics, algorithms, and applications" -, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." -, year = 1989 -, pages = "382--393" -, keywords = "arrangements of lines in 3D, Plucker coordinates, random sampling, convex hulls" -, update = "98.03 mitchell, 97.11 bibrelex, 96.09 smid" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "Lines in space: combinatorics, algorithms, and applications" +, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." +, year = 1989 +, pages = "382--393" +, keywords = "arrangements of lines in 3D, Plucker coordinates, random sampling, convex hulls" +, update = "98.03 mitchell, 97.11 bibrelex, 96.09 smid" } @inproceedings{cegss-cfals-91 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and J. Snoeyink" -, title = "Computing a face in an arrangement of line segments" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "441--448" -, keywords = "arrangements, randomized incremental algorithm" -, precedes = "cegss-cfals-93" -, update = "98.03 mitchell, 94.05 aronov" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and J. Snoeyink" +, title = "Computing a face in an arrangement of line segments" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "441--448" +, keywords = "arrangements, randomized incremental algorithm" +, precedes = "cegss-cfals-93" +, update = "98.03 mitchell, 94.05 aronov" } @article{cegss-cfals-93 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and J. Snoeyink" -, title = "Computing a face in an arrangement of line segments and related problems" -, journal = "SIAM J. Comput." -, volume = 22 -, year = 1993 -, pages = "1286--1302" -, succeeds = "cegss-cfals-91" -, update = "98.03 mitchell, 95.09 agarwal, 94.05 sharir, 94.01 matousek" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and J. Snoeyink" +, title = "Computing a face in an arrangement of line segments and related problems" +, journal = "SIAM J. Comput." +, volume = 22 +, year = 1993 +, pages = "1286--1302" +, succeeds = "cegss-cfals-91" +, update = "98.03 mitchell, 95.09 agarwal, 94.05 sharir, 94.01 matousek" } @article{cegss-lsca-96 -, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and J. Stolfi" -, title = "Lines in space: {C}ombinatorics and algorithms" -, journal = "Algorithmica" -, volume = 15 -, year = 1996 -, pages = "428--447" -, update = "98.03 mitchell, 97.03 agarwal, 96.09 smid" +, author = "Bernard Chazelle and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and J. Stolfi" +, title = "Lines in space: {C}ombinatorics and algorithms" +, journal = "Algorithmica" +, volume = 15 +, year = 1996 +, pages = "428--447" +, update = "98.03 mitchell, 97.03 agarwal, 96.09 smid" } @techreport{cf-dvrsi-88t -, author = "Bernard Chazelle and J. Friedman" -, title = "A deterministic view of random sampling and its use in geometry" -, type = "Report" -, number = "CS-TR-181-88" -, institution = "??" -, year = 1988 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and J. Friedman" +, title = "A deterministic view of random sampling and its use in geometry" +, type = "Report" +, number = "CS-TR-181-88" +, institution = "??" +, year = 1988 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{cf-dvrsi-88 -, author = "Bernard Chazelle and J. Friedman" -, title = "A deterministic view of random sampling and its use in geometry" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "539--549" -, keywords = "point location, range search, $d$-dimensional" -, precedes = "cf-dvrsi-90" -, update = "98.03 mitchell" -, annote = "derandomizes with polynomial overhead" +, author = "Bernard Chazelle and J. Friedman" +, title = "A deterministic view of random sampling and its use in geometry" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "539--549" +, keywords = "point location, range search, $d$-dimensional" +, precedes = "cf-dvrsi-90" +, update = "98.03 mitchell" +, annote = "derandomizes with polynomial overhead" } @article{cf-dvrsi-90 -, author = "Bernard Chazelle and J. Friedman" -, title = "A deterministic view of random sampling and its use in geometry" -, journal = "Combinatorica" -, volume = 10 -, number = 3 -, year = 1990 -, pages = "229--249" -, keywords = "point location, range search, $d$-dimensional" -, succeeds = "cf-dvrsi-88" -, update = "98.03 mitchell" -, annote = "derandomizes with polynomial overhead" +, author = "Bernard Chazelle and J. Friedman" +, title = "A deterministic view of random sampling and its use in geometry" +, journal = "Combinatorica" +, volume = 10 +, number = 3 +, year = 1990 +, pages = "229--249" +, keywords = "point location, range search, $d$-dimensional" +, succeeds = "cf-dvrsi-88" +, update = "98.03 mitchell" +, annote = "derandomizes with polynomial overhead" } @techreport{cf-plh-91 -, author = "Bernard Chazelle and J. Friedman" -, title = "Point location among hyperplanes" -, type = "Manuscript" -, year = 1991 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and J. Friedman" +, title = "Point location among hyperplanes" +, type = "Manuscript" +, year = 1991 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{cf-plhur-94 -, author = "Bernard Chazelle and J. Friedman" -, title = "Point Location among Hyperplanes and Unidirectional Ray-Shooting" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "53--62" -, update = "98.03 mitchell, 97.11 bibrelex, 95.01 matousek+smid" +, author = "Bernard Chazelle and J. Friedman" +, title = "Point Location among Hyperplanes and Unidirectional Ray-Shooting" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "53--62" +, update = "98.03 mitchell, 97.11 bibrelex, 95.01 matousek+smid" } @inproceedings{cg-fc-85 -, author = "Bernard Chazelle and Leonidas J. Guibas" -, title = "Fractional Cascading" -, booktitle = "Proc. Internat. Colloq. Automata Lang. Program." -, year = 1985 -, note = "To appear" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and Leonidas J. Guibas" +, title = "Fractional Cascading" +, booktitle = "Proc. Internat. Colloq. Automata Lang. Program." +, year = 1985 +, note = "To appear" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{cg-fcdst-84 -, author = "Bernard Chazelle and Leonidas J. Guibas" -, title = "Fractional Cascading: {A} data structuring technique with geometric applications" -, booktitle = "Efficicent Algorithms Workshop" -, site = "Oberwolfach, Germany" -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and Leonidas J. Guibas" +, title = "Fractional Cascading: {A} data structuring technique with geometric applications" +, booktitle = "Efficicent Algorithms Workshop" +, site = "Oberwolfach, Germany" +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{cg-fc1ds-86 -, author = "Bernard Chazelle and Leonidas J. Guibas" -, title = "Fractional cascading: {I}. {A} data structuring technique" -, journal = "Algorithmica" -, volume = 1 -, number = 3 -, year = 1986 -, pages = "133--162" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Bernard Chazelle and Leonidas J. Guibas" +, title = "Fractional cascading: {I}. {A} data structuring technique" +, journal = "Algorithmica" +, volume = 1 +, number = 3 +, year = 1986 +, pages = "133--162" +, update = "98.11 bibrelex, 98.03 mitchell" } @article{cg-fc2a-86 -, author = "Bernard Chazelle and Leonidas J. Guibas" -, title = "Fractional cascading: {II}. {Applications}" -, journal = "Algorithmica" -, volume = 1 -, year = 1986 -, pages = "163--191" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and Leonidas J. Guibas" +, title = "Fractional cascading: {II}. {Applications}" +, journal = "Algorithmica" +, volume = 1 +, year = 1986 +, pages = "163--191" +, update = "98.03 mitchell" } @inproceedings{cg-vippg-85 -, author = "Bernard Chazelle and Leonidas J. Guibas" -, title = "Visibility and intersection problems in plane geometry" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "135--146" -, precedes = "cg-vippg-89" -, cites = "c-tpca-82, c-cftvc-84, cg-fcdst-84, e-eacwv-84, grs-kfcg-83, ll-cvpe-84, egs-oplms-84, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and Leonidas J. Guibas" +, title = "Visibility and intersection problems in plane geometry" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "135--146" +, precedes = "cg-vippg-89" +, cites = "c-tpca-82, c-cftvc-84, cg-fcdst-84, e-eacwv-84, grs-kfcg-83, ll-cvpe-84, egs-oplms-84, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{cg-vippg-88 -, author = "Bernard Chazelle and Leonidas J. Guibas" -, title = "Visibility and Intersection Problems in Plane Geometry" -, type = "Report" -, number = "CS-TR-167-88" -, institution = "Princeton Univ." -, year = 1988 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and Leonidas J. Guibas" +, title = "Visibility and Intersection Problems in Plane Geometry" +, type = "Report" +, number = "CS-TR-167-88" +, institution = "Princeton Univ." +, year = 1988 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{cg-vippg-89 -, author = "Bernard Chazelle and Leonidas J. Guibas" -, title = "Visibility and intersection problems in plane geometry" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "551--581" -, succeeds = "cg-vippg-85" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and Leonidas J. Guibas" +, title = "Visibility and intersection problems in plane geometry" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "551--581" +, succeeds = "cg-vippg-85" +, update = "98.03 mitchell" } @inproceedings{cgl-pgd-83 -, author = "Bernard Chazelle and Leonidas J. Guibas and D. T. Lee" -, title = "The power of geometric duality" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "217--225" -, precedes = "cgl-pgd-85" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and Leonidas J. Guibas and D. T. Lee" +, title = "The power of geometric duality" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "217--225" +, precedes = "cgl-pgd-85" +, update = "98.03 mitchell" } @article{cgl-pgd-85 -, author = "Bernard Chazelle and Leonidas J. Guibas and D. T. Lee" -, title = "The power of geometric duality" -, journal = "BIT" -, volume = 25 -, year = 1985 -, pages = "76--90" -, succeeds = "cgl-pgd-83" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and Leonidas J. Guibas and D. T. Lee" +, title = "The power of geometric duality" +, journal = "BIT" +, volume = 25 +, year = 1985 +, pages = "76--90" +, succeeds = "cgl-pgd-83" +, update = "98.03 mitchell" } @article{ci-cccdr-84 -, author = "Bernard Chazelle and J. Incerpi" -, title = "Computing connected components of {$D$}-ranges" -, journal = "Bull. EATCS" -, volume = 22 -, year = 1984 -, pages = "9--11" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and J. Incerpi" +, title = "Computing connected components of {$D$}-ranges" +, journal = "Bull. EATCS" +, volume = 22 +, year = 1984 +, pages = "9--11" +, update = "98.03 mitchell" } @inproceedings{ci-tpdc-83 -, author = "Bernard Chazelle and J. Incerpi" -, title = "Triangulating a Polygon by Divide and Conquer" -, booktitle = "Proc. 21st Allerton Conf. Commun. Control Comput." -, year = 1983 -, pages = "447--456" -, update = "98.03 mitchell" -, annote = "$O(n\log s)$ divide and conquer algorithm for Vertical - Decomposition of a polygon (obtained by drawing a - vertical line through each vertex). $s$ is sinuosity - (number of times polygon alternates twists in different - directions.)" +, author = "Bernard Chazelle and J. Incerpi" +, title = "Triangulating a Polygon by Divide and Conquer" +, booktitle = "Proc. 21st Allerton Conf. Commun. Control Comput." +, year = 1983 +, pages = "447--456" +, update = "98.03 mitchell" +, annote = "$O(n\log s)$ divide and conquer algorithm for Vertical + Decomposition of a polygon (obtained by drawing a + vertical line through each vertex). $s$ is sinuosity + (number of times polygon alternates twists in different + directions.)" } @article{ci-tsc-84 -, author = "Bernard Chazelle and J. Incerpi" -, title = "Triangulation and shape-complexity" -, journal = "ACM Trans. Graph." -, volume = 3 -, number = 2 -, year = 1984 -, pages = "135--152" -, keywords = "triangulation, polygons, simple, decomposition, divide-and-conquer" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and J. Incerpi" +, title = "Triangulation and shape-complexity" +, journal = "ACM Trans. Graph." +, volume = 3 +, number = 2 +, year = 1984 +, pages = "135--152" +, keywords = "triangulation, polygons, simple, decomposition, divide-and-conquer" +, update = "98.03 mitchell" } @article{cl-cpp-86 -, author = "Bernard Chazelle and D. T. Lee" -, title = "On a circle placement problem" -, journal = "Computing" -, volume = 36 -, year = 1986 -, pages = "1--16" -, update = "98.03 mitchell, 95.09 agarwal" +, author = "Bernard Chazelle and D. T. Lee" +, title = "On a circle placement problem" +, journal = "Computing" +, volume = 36 +, year = 1986 +, pages = "1--16" +, update = "98.03 mitchell, 95.09 agarwal" } @inproceedings{cl-tbhd-00 -, author = "Bernard Chazelle and Alexey Lvov" -, title = "A Trace Bound for the Hereditary Discrepancy" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "64--69" -, update = "00.11 jones" +, author = "Bernard Chazelle and Alexey Lvov" +, title = "A Trace Bound for the Hereditary Discrepancy" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "64--69" +, update = "00.11 jones" } @techreport{cm-dosch-92 -, author = "Bernard Chazelle and J. Matou{\v s}ek" -, title = "Derandomizing an Output-Sensitive Convex Hull Algorithm in Three Dimensions" -, institution = "Dept. Comput. Sci., Princeton Univ." -, year = 1992 -, precedes = "cm-dosch-95" -, update = "98.03 mitchell, 96.09 agarwal+devillers" +, author = "Bernard Chazelle and J. Matou{\v s}ek" +, title = "Derandomizing an Output-Sensitive Convex Hull Algorithm in Three Dimensions" +, institution = "Dept. Comput. Sci., Princeton Univ." +, year = 1992 +, precedes = "cm-dosch-95" +, update = "98.03 mitchell, 96.09 agarwal+devillers" } @article{cm-dosch-95 -, author = "Bernard Chazelle and J. Matou{\v s}ek" -, title = "Derandomizing an Output-Sensitive Convex Hull Algorithm in Three Dimensions" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "27--32" -, succeeds = "cm-dosch-92" -, update = "98.03 mitchell, 96.09 devillers+orourke" +, author = "Bernard Chazelle and J. Matou{\v s}ek" +, title = "Derandomizing an Output-Sensitive Convex Hull Algorithm in Three Dimensions" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "27--32" +, succeeds = "cm-dosch-92" +, update = "98.03 mitchell, 96.09 devillers+orourke" } @inproceedings{cm-ltdao-93 -, author = "Bernard Chazelle and J. Matou{\v s}ek" -, title = "On Linear-Time Deterministic Algorithms for Optimization Problems in Fixed Dimension" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "281--290" -, update = "98.03 mitchell, 96.09 agarwal, 93.05 smid" +, author = "Bernard Chazelle and J. Matou{\v s}ek" +, title = "On Linear-Time Deterministic Algorithms for Optimization Problems in Fixed Dimension" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "281--290" +, update = "98.03 mitchell, 96.09 agarwal, 93.05 smid" } @article{cm-ltdao-96 -, author = "Bernard Chazelle and J. Matou{\v s}ek" -, title = "On Linear-Time Deterministic Algorithms for Optimization Problems in Fixed Dimension" -, journal = "J. Algorithms" -, volume = 21 -, year = 1996 -, pages = "579--597" -, update = "98.03 mitchell, 97.03 agarwal+smid, 96.09 agarwal, 93.05 smid" +, author = "Bernard Chazelle and J. Matou{\v s}ek" +, title = "On Linear-Time Deterministic Algorithms for Optimization Problems in Fixed Dimension" +, journal = "J. Algorithms" +, volume = 21 +, year = 1996 +, pages = "579--597" +, update = "98.03 mitchell, 97.03 agarwal+smid, 96.09 agarwal, 93.05 smid" } @inproceedings{cm-mcvrc-81 -, author = "Bernard Chazelle and L. Monier" -, title = "A model of computation for {VLSI} with related complexity results" -, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." -, year = 1981 -, pages = "318--325" -, precedes = "cm-mcvrc-85" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and L. Monier" +, title = "A model of computation for {VLSI} with related complexity results" +, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." +, year = 1981 +, pages = "318--325" +, precedes = "cm-mcvrc-85" +, update = "98.03 mitchell" } @article{cm-mcvrc-85 -, author = "Bernard Chazelle and L. Monier" -, title = "A model of computation for {VLSI} with related complexity results" -, journal = "J. ACM" -, volume = 32 -, year = 1985 -, pages = "573--588" -, succeeds = "cm-mcvrc-81" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and L. Monier" +, title = "A model of computation for {VLSI} with related complexity results" +, journal = "J. ACM" +, volume = 32 +, year = 1985 +, pages = "573--588" +, succeeds = "cm-mcvrc-81" +, update = "98.03 mitchell" } @techreport{c-accgc-96 -, author = "Bernard Chazelle and others" -, title = "Application Challenges to Computational Geometry: {CG} Impact Task Force Report" -, type = "Technical {Report}" -, number = "TR-521-96" -, institution = "Princeton Univ." -, month = apr -, year = 1996 -, url = "http://www.cs.princeton.edu/~chazelle/taskforce/CGreport.ps" -, comments = "Also at \url{http://www.cs.duke.edu/~jeffe/compgeom/taskforce.html}" -, update = "98.03 mitchell, 97.03 pocchiola+tamassia, 96.09 orourke" +, author = "Bernard Chazelle and others" +, title = "Application Challenges to Computational Geometry: {CG} Impact Task Force Report" +, type = "Technical {Report}" +, number = "TR-521-96" +, institution = "Princeton Univ." +, month = apr +, year = 1996 +, url = "http://www.cs.princeton.edu/~chazelle/taskforce/CGreport.ps" +, comments = "Also at \url{http://www.cs.duke.edu/~jeffe/compgeom/taskforce.html}" +, update = "98.03 mitchell, 97.03 pocchiola+tamassia, 96.09 orourke" } @incollection{c-accgc-99 -, author = "Bernard Chazelle and others" -, title = "Application Challenges to Computational Geometry: {CG} Impact Task Force Report" -, editor = "B. Chazelle and J. E. Goodman and R. Pollack" -, booktitle = "Advances in Discrete and Computational Geometry" -, series = "Contemporary Mathematics" -, volume = 223 -, publisher = "American Mathematical Society" -, address = "Providence" -, year = 1999 -, pages = "407--463" -, update = "00.03 smid" +, author = "Bernard Chazelle and others" +, title = "Application Challenges to Computational Geometry: {CG} Impact Task Force Report" +, editor = "B. Chazelle and J. E. Goodman and R. Pollack" +, booktitle = "Advances in Discrete and Computational Geometry" +, series = "Contemporary Mathematics" +, volume = 223 +, publisher = "American Mathematical Society" +, address = "Providence" +, year = 1999 +, pages = "407--463" +, update = "00.03 smid" } @inproceedings{cosw-cds-84 -, author = "Bernard Chazelle and T. Ottmann and E. Soisalon-Soininen and D. Wood" -, title = "The complexity and decidability of {${\rm SEPARATION}^{\rm TM}$}" -, booktitle = "Proc. 11th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 172 -, publisher = "Springer-Verlag" -, year = 1984 -, pages = "119--127" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and T. Ottmann and E. Soisalon-Soininen and D. Wood" +, title = "The complexity and decidability of {${\rm SEPARATION}^{\rm TM}$}" +, booktitle = "Proc. 11th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 172 +, publisher = "Springer-Verlag" +, year = 1984 +, pages = "119--127" +, update = "98.03 mitchell" } @inproceedings{cp-dbnp-92 -, author = "Bernard Chazelle and L. Palios" -, title = "Decomposing the boundary of a nonconvex polyhedron" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "364--375" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and L. Palios" +, title = "Decomposing the boundary of a nonconvex polyhedron" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "364--375" +, update = "98.03 mitchell" } @incollection{cp-dag-94 -, author = "B. Chazelle and L. Palios" -, title = "Decomposition algorithms in geometry" -, chapter = 27 -, editor = "C. Bajaj" -, booktitle = "Algebraic Geometry and its Applications" -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "419--447" -, update = "98.03 bibrelex" +, author = "B. Chazelle and L. Palios" +, title = "Decomposition algorithms in geometry" +, chapter = 27 +, editor = "C. Bajaj" +, booktitle = "Algebraic Geometry and its Applications" +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "419--447" +, update = "98.03 bibrelex" } @inproceedings{cp-tncp-89 -, author = "Bernard Chazelle and L. Palios" -, title = "Triangulating a non-convex polytope" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "393--400" -, precedes = "cp-tncp-90" -, cites = "as-tsbac-88, b-tdmgt-87, bgr-ntp-88, b-prcv-75, c-namrm-87, c-cpplb-84, c-ads-87, cegs-plrav-89, c-qercf-75, dl-pmtds-87, eos-calha-86, fp-dpscf-75, gs-pmgsc-85, l-pnrh-82, m-dsa-84, mp-fitcp-78, o-agta-87, ps-cgi-85, p-aicad-86, s-dpcs-78, ss-pmp2g-83, s-scgmm-88, w-esrav-57, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Bernard Chazelle and L. Palios" +, title = "Triangulating a non-convex polytope" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "393--400" +, precedes = "cp-tncp-90" +, cites = "as-tsbac-88, b-tdmgt-87, bgr-ntp-88, b-prcv-75, c-namrm-87, c-cpplb-84, c-ads-87, cegs-plrav-89, c-qercf-75, dl-pmtds-87, eos-calha-86, fp-dpscf-75, gs-pmgsc-85, l-pnrh-82, m-dsa-84, mp-fitcp-78, o-agta-87, ps-cgi-85, p-aicad-86, s-dpcs-78, ss-pmp2g-83, s-scgmm-88, w-esrav-57, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{cp-tncp-90 -, author = "Bernard Chazelle and L. Palios" -, title = "Triangulating a non-convex polytope" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "505--526" -, succeeds = "cp-tncp-89" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and L. Palios" +, title = "Triangulating a non-convex polytope" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "505--526" +, succeeds = "cp-tncp-89" +, update = "98.03 mitchell" } @inproceedings{cp-hrsaa-85 -, author = "Bernard Chazelle and F. P. Preparata" -, title = "Halfspace range search: {An} algorithmic application of $k$-sets" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "107--115" -, precedes = "cp-hrsaa-86, ccpy-nubns-86" -, cites = "bm-nenns-79, c-fsnaq-83, c-ccdga-84, ccpy-nubns-84, cgl-pgd-83, cy-grp-83, e-agc-, eos-calha-83, elss-dgpps-73, l-knnvd-82, ps-cgi-85, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 93.09 milone+mitchell" +, author = "Bernard Chazelle and F. P. Preparata" +, title = "Halfspace range search: {An} algorithmic application of $k$-sets" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "107--115" +, precedes = "cp-hrsaa-86, ccpy-nubns-86" +, cites = "bm-nenns-79, c-fsnaq-83, c-ccdga-84, ccpy-nubns-84, cgl-pgd-83, cy-grp-83, e-agc-, eos-calha-83, elss-dgpps-73, l-knnvd-82, ps-cgi-85, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 93.09 milone+mitchell" } @article{cp-hrsaa-86 -, author = "Bernard Chazelle and F. P. Preparata" -, title = "Halfspace range search: {An} algorithmic application of $k$-sets" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "83--93" -, succeeds = "cp-hrsaa-85" -, update = "98.07 agarwal, 98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and F. P. Preparata" +, title = "Halfspace range search: {An} algorithmic application of $k$-sets" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "83--93" +, succeeds = "cp-hrsaa-85" +, update = "98.07 agarwal, 98.03 mitchell, 97.11 bibrelex" } @inproceedings{cr-cpsma-89 -, author = "Bernard Chazelle and B. Rosenberg" -, title = "Computing partial sums in multidimensional arrays" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "131--139" -, precedes = "cr-ccpso-91" -, cites = "ass-sulbl-89, as-opaol-87, b-dsp-79, b-mdc-80, bm-ewcds-80, c-fsnaq-86, c-lbcms-86, cg-fc2a-86, c-fadsi-88, f-lbcor-81, hs-ndssg-86, l-dsorq-78, m-dsa-84, o-ddds-83, t-egbnl-75, t-cmncc-78, v-sttor-85, w-ndsor-85, wl-arrcd-85, w-lbdrq-86, y-sttoa-82, y-cmps-85, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Bernard Chazelle and B. Rosenberg" +, title = "Computing partial sums in multidimensional arrays" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "131--139" +, precedes = "cr-ccpso-91" +, cites = "ass-sulbl-89, as-opaol-87, b-dsp-79, b-mdc-80, bm-ewcds-80, c-fsnaq-86, c-lbcms-86, cg-fc2a-86, c-fadsi-88, f-lbcor-81, hs-ndssg-86, l-dsorq-78, m-dsa-84, o-ddds-83, t-egbnl-75, t-cmncc-78, v-sttor-85, w-ndsor-85, wl-arrcd-85, w-lbdrq-86, y-sttoa-82, y-cmps-85, ZZZ" +, update = "98.03 bibrelex+mitchell" } @incollection{cr-lbcsr-92 -, author = "Bernard Chazelle and B. Rosenberg" -, title = "Lower Bounds on the Complexity of Simplex Range Reporting on a Pointer Machine" -, booktitle = "Proc. 19th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 623 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "439--449" -, note = "Also to appear in {\em Comput. Geom. Theory Appl.}" -, update = "98.03 mitchell, 94.01 smid, 93.09 matousek+milone+mitchell" +, author = "Bernard Chazelle and B. Rosenberg" +, title = "Lower Bounds on the Complexity of Simplex Range Reporting on a Pointer Machine" +, booktitle = "Proc. 19th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 623 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "439--449" +, note = "Also to appear in {\em Comput. Geom. Theory Appl.}" +, update = "98.03 mitchell, 94.01 smid, 93.09 matousek+milone+mitchell" } @article{cr-srrpm-96 -, author = "Bernard Chazelle and B. Rosenberg" -, title = "Simplex range reporting on a pointer machine" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1996 -, pages = "237--247" -, update = "98.03 mitchell, 96.09 devillers" +, author = "Bernard Chazelle and B. Rosenberg" +, title = "Simplex range reporting on a pointer machine" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1996 +, pages = "237--247" +, update = "98.03 mitchell, 96.09 devillers" } @article{cr-ccpso-91 -, author = "Bernard Chazelle and B. Rosenberg" -, title = "The complexity of computing partial sums off-line" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 1 -, year = 1991 -, pages = "33--45" -, keywords = "partial sums, lower bounds, orthogonal range searching" -, succeeds = "cr-cpsma-89" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and B. Rosenberg" +, title = "The complexity of computing partial sums off-line" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 1 +, year = 1991 +, pages = "33--45" +, keywords = "partial sums, lower bounds, orthogonal range searching" +, succeeds = "cr-cpsma-89" +, update = "98.03 mitchell" } @article{cs-agpli-90 -, author = "Bernard Chazelle and Micha Sharir" -, title = "An algorithm for generalized point location and its application" -, journal = "J. Symbolic Comput." -, volume = 10 -, year = 1990 -, pages = "281--309" -, keywords = "algebraic varieties, point location, cylindrical algebraic decomposition" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and Micha Sharir" +, title = "An algorithm for generalized point location and its application" +, journal = "J. Symbolic Comput." +, volume = 10 +, year = 1990 +, pages = "281--309" +, keywords = "algebraic varieties, point location, cylindrical algebraic decomposition" +, update = "98.03 mitchell" } @techreport{cs-agpli-88 -, author = "Bernard Chazelle and Micha Sharir" -, title = "An algorithm for generalized point location and its applications" -, type = "Technical {Report}" -, number = 153 -, institution = "Robotics Lab., Courant Inst. Math. Sci." -, address = "New York, NY" -, month = may -, year = 1988 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and Micha Sharir" +, title = "An algorithm for generalized point location and its applications" +, type = "Technical {Report}" +, number = 153 +, institution = "Robotics Lab., Courant Inst. Math. Sci." +, address = "New York, NY" +, month = may +, year = 1988 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{csw-qoubs-90 -, author = "Bernard Chazelle and Micha Sharir and Emo Welzl" -, title = "Quasi-optimal upper bounds for simplex range searching and new zone theorems" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "23--33" -, cites = "a-idaac-89, as-tsbac-88, c-lbcpr-89, cegs-sessr-89, cf-dvrsi-90, cp-tncp-89, cw-qorss-89, c-narsc-87, c-racpq-88, cegsw-ccbac-88, cs-arscg-89, c-sssl-86, cy-grp-84, e-acg-87, e-ueplf-89, eghsssw-irals-88, egs-ueplf-89, eos-calha-86, ew-hrsls-86, hw-ensrq-87, m-mdscg-84, ps-ueplf-89, py-prp-86, pss-stsps-88, w-pr-82, y-3spia-83, yy-gaddg-85, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Bernard Chazelle and Micha Sharir and Emo Welzl" +, title = "Quasi-optimal upper bounds for simplex range searching and new zone theorems" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "23--33" +, cites = "a-idaac-89, as-tsbac-88, c-lbcpr-89, cegs-sessr-89, cf-dvrsi-90, cp-tncp-89, cw-qorss-89, c-narsc-87, c-racpq-88, cegsw-ccbac-88, cs-arscg-89, c-sssl-86, cy-grp-84, e-acg-87, e-ueplf-89, eghsssw-irals-88, egs-ueplf-89, eos-calha-86, ew-hrsls-86, hw-ensrq-87, m-mdscg-84, ps-ueplf-89, py-prp-86, pss-stsps-88, w-pr-82, y-3spia-83, yy-gaddg-85, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{csw-qoubs-92 -, author = "Bernard Chazelle and Micha Sharir and Emo Welzl" -, title = "Quasi-optimal upper bounds for simplex range searching and new zone theorems" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "407--429" -, succeeds = "csw-qoubs-90" -, update = "98.03 mitchell, 93.09 matousek" +, author = "Bernard Chazelle and Micha Sharir and Emo Welzl" +, title = "Quasi-optimal upper bounds for simplex range searching and new zone theorems" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "407--429" +, succeeds = "csw-qoubs-90" +, update = "98.03 mitchell, 93.09 matousek" } @inproceedings{cs-bst-94 -, author = "Bernard Chazelle and N. Shouraboura" -, title = "Bounds on the Size of Tetrahedralizations" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "231--239" -, cites = "as-tsbac-90, as-ucptd-93, as-car-92, bd-cdpr-92, b-ct-93, c-cpplb-84, c-oaitd-92, cp-tncp-90, d-tcrpa-91, dk-fdpi-83, dl-pmtds-89, m-spai3-91, m-mdscg-84, m-cgitr-93, p-bcspi-93, rs-dttdn-92, s-udzvd-28, ZZZ" -, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" +, author = "Bernard Chazelle and N. Shouraboura" +, title = "Bounds on the Size of Tetrahedralizations" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "231--239" +, cites = "as-tsbac-90, as-ucptd-93, as-car-92, bd-cdpr-92, b-ct-93, c-cpplb-84, c-oaitd-92, cp-tncp-90, d-tcrpa-91, dk-fdpi-83, dl-pmtds-89, m-spai3-91, m-mdscg-84, m-cgitr-93, p-bcspi-93, rs-dttdn-92, s-udzvd-28, ZZZ" +, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" } @article{cw-qorss-89 -, author = "Bernard Chazelle and Emo Welzl" -, title = "Quasi-optimal range searching in spaces of finite {VC}-dimension" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "467--489" -, succeeds = "cw-rsvdc-88" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and Emo Welzl" +, title = "Quasi-optimal range searching in spaces of finite {VC}-dimension" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "467--489" +, succeeds = "cw-rsvdc-88" +, update = "98.03 mitchell" } @techreport{cw-rsvdc-88 -, author = "Bernard Chazelle and Emo Welzl" -, title = "Range searching and {VC}-dimension: a characterization of efficiency" -, type = "Report" -, number = "B-88-09" -, institution = "Fachber. Math., Free Univ. Berlin" -, address = "Berlin, West Germany" -, month = nov -, year = 1988 -, precedes = "cw-qorss-89" -, update = "98.03 mitchell" +, author = "Bernard Chazelle and Emo Welzl" +, title = "Range searching and {VC}-dimension: a characterization of efficiency" +, type = "Report" +, number = "B-88-09" +, institution = "Fachber. Math., Free Univ. Berlin" +, address = "Berlin, West Germany" +, month = nov +, year = 1988 +, precedes = "cw-qorss-89" +, update = "98.03 mitchell" } @inproceedings{cdgp-icms-2014 -, author = {Panagiotis Cheilaris and Sandeep Kumar Dey and +, author = {Panagiotis Cheilaris and Sandeep Kumar Dey and Maria Gabrani and Evanthia Papadopoulou} -, title = {Implementing the {L}$\infty$ segment {Voronoi} diagram +, title = {Implementing the {L}$\infty$ segment {Voronoi} diagram in {CGAL} and an application in {VLSI} pattern analysis} -, booktitle = {Proc. 4th International Congress on Mathematical +, booktitle = {Proc. 4th International Congress on Mathematical Software (ICMS)} -, year = 2014 -, pages = "198--205" +, year = 2014 +, pages = "198--205" } @article{cs-rpudr-83 -, author = "O. Chein and L. Steinberg" -, title = "Routing past unions of disjoint rectilinear barriers" -, journal = "Networks" -, volume = 13 -, number = 3 -, year = 1983 -, pages = "389--398" -, keywords = "isothetic, routing, VLSI design" -, update = "95.09 korneenko" +, author = "O. Chein and L. Steinberg" +, title = "Routing past unions of disjoint rectilinear barriers" +, journal = "Networks" +, volume = 13 +, number = 3 +, year = 1983 +, pages = "389--398" +, keywords = "isothetic, routing, VLSI design" +, update = "95.09 korneenko" } @article{cld-patip-91 -, author = "?. Chen and T. Ling and L. S. Davis" -, title = "Parallel algorithms for testing if a point is inside a closed curve" -, journal = "Pattern Recogn. Lett." -, volume = 12 -, number = 2 -, year = 1991 -, pages = "73--77" -, keywords = "point location, parallel computation, digital geometry" -, update = "95.09 korneenko" +, author = "?. Chen and T. Ling and L. S. Davis" +, title = "Parallel algorithms for testing if a point is inside a closed curve" +, journal = "Pattern Recogn. Lett." +, volume = 12 +, number = 2 +, year = 1991 +, pages = "73--77" +, keywords = "point location, parallel computation, digital geometry" +, update = "95.09 korneenko" } @article{cc-mpt-90 -, author = "Chiuyuan Chen and Ruei-Chuan Chang" -, title = "On the Minimality of Polygon Triangulation" -, journal = "BIT" -, volume = 30 -, year = 1990 -, pages = "570--582" -, annote = "Triangulate polygon into minimum number of triangles. - $O(n\log^2 n+DK^2)$. $D$ is maximum number of vertices - on same line. $K$ is number of degenerate triangles." +, author = "Chiuyuan Chen and Ruei-Chuan Chang" +, title = "On the Minimality of Polygon Triangulation" +, journal = "BIT" +, volume = 30 +, year = 1990 +, pages = "570--582" +, annote = "Triangulate polygon into minimum number of triangles. + $O(n\log^2 n+DK^2)$. $D$ is maximum number of vertices + on same line. $K$ is number of degenerate triangles." } @article{c-cchsp-89 -, author = "C.-L. Chen" -, title = "Computing the convex hull of a simple polygon" -, journal = "Pattern Recogn. Lett." -, volume = 22 -, number = 5 -, year = 1989 -, pages = "561--566" -, note = "erratic" -, keywords = "convex hull, simple, polygon" -, update = "95.09 korneenko" +, author = "C.-L. Chen" +, title = "Computing the convex hull of a simple polygon" +, journal = "Pattern Recogn. Lett." +, volume = 22 +, number = 5 +, year = 1989 +, pages = "561--566" +, note = "erratic" +, keywords = "convex hull, simple, polygon" +, update = "95.09 korneenko" } @article{c-egaep-95 -, author = "D. Chen" -, title = "Efficient geometric algorithms on the {EREW PRAM}" -, journal = "IEEE Trans. Parallel Distrib. Syst." -, volume = 6 -, number = 1 -, year = 1995 -, pages = "41--47" -, update = "96.09 orourke" +, author = "D. Chen" +, title = "Efficient geometric algorithms on the {EREW PRAM}" +, journal = "IEEE Trans. Parallel Distrib. Syst." +, volume = 6 +, number = 1 +, year = 1995 +, pages = "41--47" +, update = "96.09 orourke" } @inproceedings{c-opadw-92 -, author = "D. Z. Chen" -, title = "An optimal parallel algorithm for detecting weak visibility of a simple polygon" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "63--72" -, precedes = "c-opadw-95" -, cites = "ag-pasft-88, at-oadvp-81, bmt-ltacs-91, cg-vippg-89, c-egaep-90, ckt-cgp-89, cg-opapp-88, g-fchsp-87, g-tpp-89, g-psppt-92, gsg-pmvsp-90, ghlst-ltavs-87, gmpsv-cwvpr-90t, hm-svpap-90, k-dwvsp-88, krs-ppp-85a, lf-ppc-80, ll-cvpe-84, lp-oafkp-79, ol-mcp-81, ps-cgi-85, ss-oadwv-90, t-ltass-86a, y-ptptc-88, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "D. Z. Chen" +, title = "An optimal parallel algorithm for detecting weak visibility of a simple polygon" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "63--72" +, precedes = "c-opadw-95" +, cites = "ag-pasft-88, at-oadvp-81, bmt-ltacs-91, cg-vippg-89, c-egaep-90, ckt-cgp-89, cg-opapp-88, g-fchsp-87, g-tpp-89, g-psppt-92, gsg-pmvsp-90, ghlst-ltavs-87, gmpsv-cwvpr-90t, hm-svpap-90, k-dwvsp-88, krs-ppp-85a, lf-ppc-80, ll-cvpe-84, lp-oafkp-79, ol-mcp-81, ps-cgi-85, ss-oadwv-90, t-ltass-86a, y-ptptc-88, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers" } @article{c-opadw-95 -, author = "D. Z. Chen" -, title = "An optimal parallel algorithm for detecting weak visibility of a simple polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "93--124" -, keywords = "computational geometry, CREW PRAM, parallel algorithms, simple polygons, weak visibility" -, succeeds = "c-opadw-92" -, update = "96.09 devillers" +, author = "D. Z. Chen" +, title = "An optimal parallel algorithm for detecting weak visibility of a simple polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "93--124" +, keywords = "computational geometry, CREW PRAM, parallel algorithms, simple polygons, weak visibility" +, succeeds = "c-opadw-92" +, update = "96.09 devillers" } @inproceedings{c-dwevp-94 -, author = "D. Z. Chen" -, title = "Determining Weak External Visibility of Polygons in Parallel" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "375--380" -, precedes = "c-dwvpe-98" -, cites = "bcetsu-csts-91, bkt-dsvp-89, bt-cst-90t, c-ptpvr-92, c-egaep-90, c-opadw-92, c-ocswv-93, g-fchsp-87, ta-chapi-82, acw-opavs-91, bmt-ltacs-91, ZZZ" -, update = "98.11 bibrelex+devillers, 94.09 jones" +, author = "D. Z. Chen" +, title = "Determining Weak External Visibility of Polygons in Parallel" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "375--380" +, precedes = "c-dwvpe-98" +, cites = "bcetsu-csts-91, bkt-dsvp-89, bt-cst-90t, c-ptpvr-92, c-egaep-90, c-opadw-92, c-ocswv-93, g-fchsp-87, ta-chapi-82, acw-opavs-91, bmt-ltacs-91, ZZZ" +, update = "98.11 bibrelex+devillers, 94.09 jones" } @article{c-dwvpe-98 -, author = "D. Z. Chen" -, title = "Determining Weak Visibility of a Polygon from an Edge in Parallel" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "277--304" -, succeeds = "c-dwevp-94" -, update = "98.11 devillers" +, author = "D. Z. Chen" +, title = "Determining Weak Visibility of a Polygon from an Edge in Parallel" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "277--304" +, succeeds = "c-dwevp-94" +, update = "98.11 devillers" } @inproceedings{c-egaep-90 -, author = "D. Z. Chen" -, title = "Efficient geometric algorithms in the {EREW}-{PRAM}" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1990 -, pages = "818--827" -, keywords = "parallel computation" -, update = "95.09 korneenko" +, author = "D. Z. Chen" +, title = "Efficient geometric algorithms in the {EREW}-{PRAM}" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1990 +, pages = "818--827" +, keywords = "parallel computation" +, update = "95.09 korneenko" } @inproceedings{c-apesp-95 -, author = "Danny Z. Chen" -, title = "On the All-Pairs {Euclidean} Short Path Problem" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "292--301" -, keywords = "shortest paths among obstacles, two-point query, approximation algorithm" -, update = "98.03 mitchell, 96.09 agarwal, 96.05 mitchell" -, abstract = " +, author = "Danny Z. Chen" +, title = "On the All-Pairs {Euclidean} Short Path Problem" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "292--301" +, keywords = "shortest paths among obstacles, two-point query, approximation algorithm" +, update = "98.03 mitchell, 96.09 agarwal, 96.05 mitchell" +, abstract = " Given a set of polygonal obstacles of $n$ vertices in the plane, the problem of processing the all-pairs Euclidean {\em short} path queries is that of reporting an obstacle-avoiding path $P$ (or @@ -33610,756 +33610,756 @@ @inproceedings{c-apesp-95 } @techreport{c-ocswv-92 -, author = "D. Z. Chen" -, title = "Optimally computing the shortest weakly visible subedge of a simple polygon" -, type = "Technical {Report}" -, number = "92-028" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, month = may -, year = 1992 -, update = "98.03 bibrelex" +, author = "D. Z. Chen" +, title = "Optimally computing the shortest weakly visible subedge of a simple polygon" +, type = "Technical {Report}" +, number = "92-028" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, month = may +, year = 1992 +, update = "98.03 bibrelex" } @inproceedings{c-ocswv-93 -, author = "Danny Z. Chen" -, title = "Optimally Computing the Shortest Weakly Visible Subedge of a Simple Polygon" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "323--332" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Danny Z. Chen" +, title = "Optimally Computing the Shortest Weakly Visible Subedge of a Simple Polygon" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "323--332" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @article{c-ocswv-96 -, author = "Danny Z. Chen" -, title = "Optimally computing the shortest weakly visible subedge of a simple polygon" -, journal = "J. Algorithms" -, volume = 20 -, year = 1996 -, pages = "459--478" -, update = "97.03 smid" +, author = "Danny Z. Chen" +, title = "Optimally computing the shortest weakly visible subedge of a simple polygon" +, journal = "J. Algorithms" +, volume = 20 +, year = 1996 +, pages = "459--478" +, update = "97.03 smid" } @techreport{c-ptpvr-92 -, author = "D. Z. Chen" -, title = "Parallel techniques for paths, visibility, and related problems" -, type = "Technical Report" -, number = "92-051" -, institution = "Dept. of Computer Sciences, Purdue University" -, month = jul -, year = 1992 -, note = "Ph.D. Thesis" -, update = "98.11 bibrelex" +, author = "D. Z. Chen" +, title = "Parallel techniques for paths, visibility, and related problems" +, type = "Technical Report" +, number = "92-051" +, institution = "Dept. of Computer Sciences, Purdue University" +, month = jul +, year = 1992 +, note = "Ph.D. Thesis" +, update = "98.11 bibrelex" } @inproceedings{ccwk-papss-96 -, author = "D. Z. Chen and W. Chen and K. Wada and K. Kawaguchi" -, title = "Parallel algorithms for partitioning sorted sets and related problems" -, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "234--245" -, update = "97.03 smid" +, author = "D. Z. Chen and W. Chen and K. Wada and K. Kawaguchi" +, title = "Parallel algorithms for partitioning sorted sets and related problems" +, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "234--245" +, update = "97.03 smid" } @inproceedings{cd-mvpmp-96 -, author = "D. Z. Chen and O. Daescu" -, title = "Maintaining visibility of a polygon with a moving point of view" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "240--245" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "D. Z. Chen and O. Daescu" +, title = "Maintaining visibility of a polygon with a moving point of view" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "240--245" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{cdk-gpqp-97 -, author = "Danny Z. Chen and Ovidiu Daescu and Kevin S. Klenk" -, title = "On Geometric Path Query Problems" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "248--257" -, update = "99.07 bibrelex, 98.03 mitchell" +, author = "Danny Z. Chen and Ovidiu Daescu and Kevin S. Klenk" +, title = "On Geometric Path Query Problems" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "248--257" +, update = "99.07 bibrelex, 98.03 mitchell" } @techreport{cds-lbcgs-96t -, author = "D. Z. Chen and G. Das and M. Smid" -, title = "Lower bounds for computing geometric spanners and approximate shortest paths" -, type = "Report" -, number = "TR 96-09" -, institution = "Department of Computer Science, King's College" -, address = "London, UK" -, year = 1996 -, update = "96.09 mitchell, 96.05 smid" +, author = "D. Z. Chen and G. Das and M. Smid" +, title = "Lower bounds for computing geometric spanners and approximate shortest paths" +, type = "Report" +, number = "TR 96-09" +, institution = "Department of Computer Science, King's College" +, address = "London, UK" +, year = 1996 +, update = "96.09 mitchell, 96.05 smid" } @inproceedings{cds-lbcgs-96i -, author = "D. Z. Chen and G. Das and M. Smid" -, title = "Lower bounds for computing geometric spanners and approximate shortest paths" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "155--160" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "D. Z. Chen and G. Das and M. Smid" +, title = "Lower bounds for computing geometric spanners and approximate shortest paths" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "155--160" +, update = "97.03 agarwal, 96.09 mitchell" } @article{cds-lbcgs-01 -, author = "D. Z. Chen and G. Das and M. Smid" -, title = "Lower bounds for computing geometric spanners and approximate shortest paths" -, journal = "Discrete Appl. Math." -, volume = 110 -, year = 2001 -, pages = "151--167" -, update = "01.07 smid" +, author = "D. Z. Chen and G. Das and M. Smid" +, title = "Lower bounds for computing geometric spanners and approximate shortest paths" +, journal = "Discrete Appl. Math." +, volume = 110 +, year = 2001 +, pages = "151--167" +, update = "01.07 smid" } @inproceedings{ceu-ogpmc-95 -, author = "Danny Z. Chen and Vladimir Estivill-Castro and Jorge Urrutia" -, title = "Optimal Guarding of Polygons and Monotone Chains" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "133--138" -, update = "95.09 jones" +, author = "Danny Z. Chen and Vladimir Estivill-Castro and Jorge Urrutia" +, title = "Optimal Guarding of Polygons and Monotone Chains" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "133--138" +, update = "95.09 jones" } @inproceedings{cg-tspmo-93 -, author = "Danny Z. Chen and Sumanta Guha" -, title = "Testing a Simple Polygon for Monotonicity Optimally in Parallel" -, booktitle = "Proc. 7th IEEE Internat. Parallel Process. Sympos." -, publisher = "IEEE Computer Society" -, year = 1993 -, pages = "326--330" -, precedes = "cg-tspmo-93a" -, update = "98.07 bibrelex, 98.03 mitchell, 94.05 devillers" +, author = "Danny Z. Chen and Sumanta Guha" +, title = "Testing a Simple Polygon for Monotonicity Optimally in Parallel" +, booktitle = "Proc. 7th IEEE Internat. Parallel Process. Sympos." +, publisher = "IEEE Computer Society" +, year = 1993 +, pages = "326--330" +, precedes = "cg-tspmo-93a" +, update = "98.07 bibrelex, 98.03 mitchell, 94.05 devillers" } @article{cg-tspmo-93a -, author = "Danny Z. Chen and Sumantha Guha" -, title = "Testing a Simple Polygon for Monotonicity Optimally in Parallel" -, journal = "Inform. Process. Lett." -, volume = 47 -, number = 6 -, month = oct -, year = 1993 -, pages = "325--331" -, succeeds = "cg-tspmo-93" -, update = "98.03 mitchell" +, author = "Danny Z. Chen and Sumantha Guha" +, title = "Testing a Simple Polygon for Monotonicity Optimally in Parallel" +, journal = "Inform. Process. Lett." +, volume = 47 +, number = 6 +, month = oct +, year = 1993 +, pages = "325--331" +, succeeds = "cg-tspmo-93" +, update = "98.03 mitchell" } @inproceedings{ck-rspqr-95 -, author = "Danny Z. Chen and Kevin S. Klenk" -, title = "Rectilinear Short Path Queries among Rectangular Obstacles" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "169--174" -, update = "95.09 jones" +, author = "Danny Z. Chen and Kevin S. Klenk" +, title = "Rectilinear Short Path Queries among Rectangular Obstacles" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "169--174" +, update = "95.09 jones" } @article{ck-rspqr-96 -, author = "D. Z. Chen and K. S. Klenk" -, title = "Rectilinear Short Path Queries among Rectangular Obstacles" -, journal = "Inform. Process. Lett." -, volume = 57 -, year = 1996 -, pages = "313--319" -, update = "98.03 mitchell, 96.05 smid" +, author = "D. Z. Chen and K. S. Klenk" +, title = "Rectilinear Short Path Queries among Rectangular Obstacles" +, journal = "Inform. Process. Lett." +, volume = 57 +, year = 1996 +, pages = "313--319" +, update = "98.03 mitchell, 96.05 smid" } @inproceedings{ckt-spqwo-95 -, author = "Danny Z. Chen and Kevin S. Klenk and Hung-Yi T. Tu" -, title = "Shortest Path Queries among Weighted Obstacles in the Rectilinear Plane" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "370--379" -, keywords = "weighted regions, rectilinear paths, all-pairs paths" -, precedes = "ckt-spqwo-96" -, cites = "akmsw-gamsa-87, ac-prspr-91, ac-proap-93a, cg-fc1ds-86, c-apesp-95, cpt-uadpl-93, ckv-rsptp-, ckv-rsptp-87, bkn-spqrw-91, rlw-rsppr-89, em-osrqa-94, ft-fhtui-87, gmmn-pp0wr-88, gt-drssp-93, gh-ospqs-87, ghlst-ltavs-87, h-ndssp-91, hs-ecesp-93, isn-spapr-94, k-rspqw-94, ll-fmrdp-81, lp-esppr-84, lyc-srpwo-91, m-naspo-88, m-oasrp-89, m-lsppo-92, m-spop-93, mp-wrpfs-91, ps-cgi-85, sr-spppo-94, w-cvgnl-85, w-ndiv-89, lyc-srpwo-91, wwsw-rspms-87, ycl-srpwr-90, ZZZ" -, update = "98.03 bibrelex+mitchell, 95.09 mitchell" +, author = "Danny Z. Chen and Kevin S. Klenk and Hung-Yi T. Tu" +, title = "Shortest Path Queries among Weighted Obstacles in the Rectilinear Plane" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "370--379" +, keywords = "weighted regions, rectilinear paths, all-pairs paths" +, precedes = "ckt-spqwo-96" +, cites = "akmsw-gamsa-87, ac-prspr-91, ac-proap-93a, cg-fc1ds-86, c-apesp-95, cpt-uadpl-93, ckv-rsptp-, ckv-rsptp-87, bkn-spqrw-91, rlw-rsppr-89, em-osrqa-94, ft-fhtui-87, gmmn-pp0wr-88, gt-drssp-93, gh-ospqs-87, ghlst-ltavs-87, h-ndssp-91, hs-ecesp-93, isn-spapr-94, k-rspqw-94, ll-fmrdp-81, lp-esppr-84, lyc-srpwo-91, m-naspo-88, m-oasrp-89, m-lsppo-92, m-spop-93, mp-wrpfs-91, ps-cgi-85, sr-spppo-94, w-cvgnl-85, w-ndiv-89, lyc-srpwo-91, wwsw-rspms-87, ycl-srpwr-90, ZZZ" +, update = "98.03 bibrelex+mitchell, 95.09 mitchell" } @techreport{ckt-spqwo-96 -, author = "D. Z. Chen and K. S. Klenk and H.-Y. T. Tu" -, title = "Shortest path queries among weighted obstacles in the rectilinear plane" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1996 -, succeeds = "ckt-spqwo-95" -, update = "00.11 smid, 98.07 bibrelex, 98.03 mitchell" +, author = "D. Z. Chen and K. S. Klenk and H.-Y. T. Tu" +, title = "Shortest path queries among weighted obstacles in the rectilinear plane" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1996 +, succeeds = "ckt-spqwo-95" +, update = "00.11 smid, 98.07 bibrelex, 98.03 mitchell" } @article{ckt-spqwo-00 -, author = "D. Z. Chen and K. S. Klenk and H.-Y. T. Tu" -, title = "Shortest path queries among weighted obstacles in the rectilinear plane" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "1223--1246" -, update = "00.11 smid" +, author = "D. Z. Chen and K. S. Klenk and H.-Y. T. Tu" +, title = "Shortest path queries among weighted obstacles in the rectilinear plane" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "1223--1246" +, update = "00.11 smid" } @article{cx-edacs-01 -, author = "D. Z. Chen and J. Xu" -, title = "An efficient direct approach for computing shortest rectilinear paths among obstacles in a two-layer interconnection model" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "155--166" -, update = "01.07 smid" +, author = "D. Z. Chen and J. Xu" +, title = "An efficient direct approach for computing shortest rectilinear paths among obstacles in a two-layer interconnection model" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "155--166" +, update = "01.07 smid" } @inproceedings{cx-tvlpp-98 -, author = "Danny Z. Chen and Jinhui Xu" -, title = "Two-variable Linear Programming in Parallel" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "169--180" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "Danny Z. Chen and Jinhui Xu" +, title = "Two-variable Linear Programming in Parallel" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "169--180" +, update = "99.03 bibrelex, 98.07 mitchell" } @article{ccml-nsach-87 -, author = "G. H. Chen and M.-S. Chern and R. C. T. Lee" -, title = "A new systolic algorithm for convex hull and half-plane intersection problems" -, journal = "BIT" -, volume = 27 -, number = 2 -, year = 1987 -, pages = "141--147" -, keywords = "parallel computation, convex hull, intersection, halfplanes" -, update = "95.09 korneenko" +, author = "G. H. Chen and M.-S. Chern and R. C. T. Lee" +, title = "A new systolic algorithm for convex hull and half-plane intersection problems" +, journal = "BIT" +, volume = 27 +, number = 2 +, year = 1987 +, pages = "141--147" +, keywords = "parallel computation, convex hull, intersection, halfplanes" +, update = "95.09 korneenko" } @article{ch-scmo-88 -, author = "H. H. Chen and T. S. Huang" -, title = "A survey of construction and manipulation of octrees" -, journal = "Comput. Vision Graph. Image Process." -, volume = 43 -, year = 1988 -, pages = "409--431" -, keywords = "survey, octree, data structuring" -, update = "95.09 korneenko" +, author = "H. H. Chen and T. S. Huang" +, title = "A survey of construction and manipulation of octrees" +, journal = "Comput. Vision Graph. Image Process." +, volume = 43 +, year = 1988 +, pages = "409--431" +, keywords = "survey, octree, data structuring" +, update = "95.09 korneenko" } @article{ch-mmtdp-88 -, author = "H. H. Chen and T. S. Huang" -, title = "Maximum matching of three-dimensional points for multiobject motion estimation" -, journal = "Pattern Recogn." -, volume = 21 -, number = 2 -, year = 1988 -, pages = "75--90" -, keywords = "pattern recognition, points, motion planning" -, succeeds = "ch-mmttd-86" -, update = "97.11 bibrelex, 95.09 korneenko" +, author = "H. H. Chen and T. S. Huang" +, title = "Maximum matching of three-dimensional points for multiobject motion estimation" +, journal = "Pattern Recogn." +, volume = 21 +, number = 2 +, year = 1988 +, pages = "75--90" +, keywords = "pattern recognition, points, motion planning" +, succeeds = "ch-mmttd-86" +, update = "97.11 bibrelex, 95.09 korneenko" } @inproceedings{ch-mmttd-86 -, author = "H. H. Chen and T. S. Huang" -, title = "Maximum matching of two three-dimensional point sets" -, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn." -, year = 1986 -, pages = "1048--1050" -, precedes = "ch-mmtdp-88" -, update = "95.09 korneenko" +, author = "H. H. Chen and T. S. Huang" +, title = "Maximum matching of two three-dimensional point sets" +, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn." +, year = 1986 +, pages = "1048--1050" +, precedes = "ch-mmtdp-88" +, update = "95.09 korneenko" } @inproceedings{ch-spp-90 -, author = "J. Chen and Y. Han" -, title = "Shortest paths on a polyhedron" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "360--369" -, precedes = "ch-spp-96" -, cites = "aaos-supa-90, c-namrm-87, ch-sppp2-90, cr-nlbtr-87, d-ntpcg-59, gjpt-tsp-78, hct-faspe-89, k-osps-83, m-spppo-84, m-psp-86, mmp-dgp-87, m-fspcp-85, m-nspsp-86, osb-spps-84, p-nappl-81, rs-spesp-85, rs-dsppp-88, sh-cpp-75, so-nmesc-88, ss-spps-86, ZZZ" -, update = "98.07 bibrelex, 97.11 bibrelex, 96.09 devillers" +, author = "J. Chen and Y. Han" +, title = "Shortest paths on a polyhedron" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "360--369" +, precedes = "ch-spp-96" +, cites = "aaos-supa-90, c-namrm-87, ch-sppp2-90, cr-nlbtr-87, d-ntpcg-59, gjpt-tsp-78, hct-faspe-89, k-osps-83, m-spppo-84, m-psp-86, mmp-dgp-87, m-fspcp-85, m-nspsp-86, osb-spps-84, p-nappl-81, rs-spesp-85, rs-dsppp-88, sh-cpp-75, so-nmesc-88, ss-spps-86, ZZZ" +, update = "98.07 bibrelex, 97.11 bibrelex, 96.09 devillers" } @article{ch-spp-96 -, author = "J. Chen and Y. Han" -, title = "Shortest paths on a polyhedron" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "127--144" -, succeeds = "ch-spp-90" -, update = "96.09 devillers" +, author = "J. Chen and Y. Han" +, title = "Shortest paths on a polyhedron" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "127--144" +, succeeds = "ch-spp-90" +, update = "96.09 devillers" } @techreport{ch-sppp2-90 -, author = "J. Chen and Y. Han" -, title = "Shortest paths on a polyhedron, {Part} II: storing shortest paths" -, type = "Technical {Report}" -, number = "161-90" -, institution = "Comput. Sci. Dept., Univ. Kentucky" -, address = "Lexington, KY" -, month = feb -, year = 1990 -, update = "97.11 bibrelex" +, author = "J. Chen and Y. Han" +, title = "Shortest paths on a polyhedron, {Part} II: storing shortest paths" +, type = "Technical {Report}" +, number = "161-90" +, institution = "Comput. Sci. Dept., Univ. Kentucky" +, address = "Lexington, KY" +, month = feb +, year = 1990 +, update = "97.11 bibrelex" } % Affiliation: Dept. Comput. Sci., Kentucky Univ., Lexington, KY, USA @inproceedings{ch-sspp-91 -, author = "J. Chen and Y. Han" -, title = "Storing shortest paths for a polyhedron" -, editor = "F. Dehne and F. Fiala and W. W. Koczkodaj" -, booktitle = "Advances in Computing and Information --- ICCI '91 International Conference Proceedings" -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "169--80" -, update = "93.09 rote" +, author = "J. Chen and Y. Han" +, title = "Storing shortest paths for a polyhedron" +, editor = "F. Dehne and F. Fiala and W. W. Koczkodaj" +, booktitle = "Advances in Computing and Information --- ICCI '91 International Conference Proceedings" +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "169--80" +, update = "93.09 rote" } @inproceedings{ckk-cge-93 -, author = "Jianer Chen and Saroja P. Kanchi and Arkady Kanevsky" -, title = "On the Complexity of Graph Embeddings" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "234--245" -, update = "93.09 milone+mitchell" +, author = "Jianer Chen and Saroja P. Kanchi and Arkady Kanevsky" +, title = "On the Complexity of Graph Embeddings" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "234--245" +, update = "93.09 milone+mitchell" } @article{c-lpc-63 -, author = "J. R. Chen" -, title = "The lattice points in a circle" -, journal = "Sci. Sinica" -, volume = 12 -, year = 1963 -, pages = "633--649" -, update = "97.11 bibrelex" +, author = "J. R. Chen" +, title = "The lattice points in a circle" +, journal = "Sci. Sinica" +, volume = 12 +, year = 1963 +, pages = "633--649" +, update = "97.11 bibrelex" } @inproceedings{c-edpai-90 -, author = "L. Chen" -, title = "Efficient deterministic parallel algorithms for integer sorting" -, editor = "S. G. Akl and F. Fiala and W. W. Koczkodaj" -, booktitle = "Advances in Computing and Information -- Proc. International Conference on Computing and Information" -, year = 1990 -, pages = "367--371" -, update = "98.07 bibrelex" +, author = "L. Chen" +, title = "Efficient deterministic parallel algorithms for integer sorting" +, editor = "S. G. Akl and F. Fiala and W. W. Koczkodaj" +, booktitle = "Advances in Computing and Information -- Proc. International Conference on Computing and Information" +, year = 1990 +, pages = "367--371" +, update = "98.07 bibrelex" } @inproceedings{c-epasi-89 -, author = "L. Chen" -, title = "Efficient parallel algorithms for several intersection graphs" -, booktitle = "Proc. IEEE Internat. Symp. Circuits and Systems" -, volume = 2 -, year = 1989 -, pages = "973--976" -, keywords = "geometric graphs, parallel computation, intersection" -, update = "95.09 korneenko" +, author = "L. Chen" +, title = "Efficient parallel algorithms for several intersection graphs" +, booktitle = "Proc. IEEE Internat. Symp. Circuits and Systems" +, volume = 2 +, year = 1989 +, pages = "973--976" +, keywords = "geometric graphs, parallel computation, intersection" +, update = "95.09 korneenko" } @inproceedings{c-epaca-90 -, author = "L. Chen" -, title = "Efficient parallel algorithms on circular arcs" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "66--69" -, cites = "c-nacag-89, c-edpai-90, cy-ptcop-89, c-pms-88, cv-fopps-89, g-acag-74, k-pafmc-89, krs-ppp-85a, lf-ppc-80, ZZZ" -, update = "98.07 bibrelex" +, author = "L. Chen" +, title = "Efficient parallel algorithms on circular arcs" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "66--69" +, cites = "c-nacag-89, c-edpai-90, cy-ptcop-89, c-pms-88, cv-fopps-89, g-acag-74, k-pafmc-89, krs-ppp-85a, lf-ppc-80, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{c-nacag-89 -, author = "L. Chen" -, title = "NC algorithms for circular-arc graphs" -, editor = "F. Dehne and J.-R. Sack and N. Santoro" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "291--302" -, update = "98.07 bibrelex" +, author = "L. Chen" +, title = "NC algorithms for circular-arc graphs" +, editor = "F. Dehne and J.-R. Sack and N. Santoro" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "291--302" +, update = "98.07 bibrelex" } @article{ccw-pdmdd-93 -, author = "L. Chen and S. Chou and T. Woo" -, title = "Parting directions for mould and die design" -, journal = "Comput. Aided Design" -, volume = 25 -, year = 1993 -, pages = "762--768" -, update = "98.07 bibrelex" +, author = "L. Chen and S. Chou and T. Woo" +, title = "Parting directions for mould and die design" +, journal = "Comput. Aided Design" +, volume = 25 +, year = 1993 +, pages = "762--768" +, update = "98.07 bibrelex" } @inproceedings{cy-ptcop-89 -, author = "L. Chen and Y. Yesha" -, title = "Parallel testing for the consecutive ones property and transformable convex bipartite graphs and finding a maximum matching" -, booktitle = "Proc. 27th Allerton Conf. Commun. Control Comput." -, site = "Urbana, IL" -, year = 1989 -, pages = "756--765" -, update = "98.07 bibrelex" +, author = "L. Chen and Y. Yesha" +, title = "Parallel testing for the consecutive ones property and transformable convex bipartite graphs and finding a maximum matching" +, booktitle = "Proc. 27th Allerton Conf. Commun. Control Comput." +, site = "Urbana, IL" +, year = 1989 +, pages = "756--765" +, update = "98.07 bibrelex" } @article{cw-cgsaa-92 -, author = "L.-L. Chen and T. C. Woo" -, title = "Computational geometry on the sphere with application to automated machining" -, journal = "Journal of Mechanical Design" -, volume = 114 -, year = 1992 -, pages = "288--295" -, update = "98.07 smid" +, author = "L.-L. Chen and T. C. Woo" +, title = "Computational geometry on the sphere with application to automated machining" +, journal = "Journal of Mechanical Design" +, volume = 114 +, year = 1992 +, pages = "288--295" +, update = "98.07 smid" } @inproceedings{ct-ecadc-87 -, author = "M. Chen and P. Townsend" -, title = "Efficient and consistent algorithms for determining the containment of points in polygons and polyhedra" -, editor = "G. Marechal" -, booktitle = "EUROGRAPHICS '87" -, publisher = "North-Holland" -, month = aug -, year = 1987 -, pages = "423--437" -, keywords = "point location" -, update = "98.07 bibrelex, 95.09 korneenko" +, author = "M. Chen and P. Townsend" +, title = "Efficient and consistent algorithms for determining the containment of points in polygons and polyhedra" +, editor = "G. Marechal" +, booktitle = "EUROGRAPHICS '87" +, publisher = "North-Holland" +, month = aug +, year = 1987 +, pages = "423--437" +, keywords = "point location" +, update = "98.07 bibrelex, 95.09 korneenko" } @inproceedings{c-nastg-83 -, author = "N.-P. Chen" -, title = "New algorithms for {Steiner} tree on graphs" -, booktitle = "IEEE Sympos. Circuits Systems" -, year = 1983 -, pages = "1217--1219" +, author = "N.-P. Chen" +, title = "New algorithms for {Steiner} tree on graphs" +, booktitle = "IEEE Sympos. Circuits Systems" +, year = 1983 +, pages = "1217--1219" } @article{chj-ololv-91 -, author = "P.-C. Chen and P. Hansen and B. Jaumard" -, title = "On-line and off-line vertex enumeration by adjacency lists" -, journal = "Oper. Res. Lett." -, volume = 10 -, year = 1991 -, pages = "403--409" -, update = "97.11 bibrelex" +, author = "P.-C. Chen and P. Hansen and B. Jaumard" +, title = "On-line and off-line vertex enumeration by adjacency lists" +, journal = "Oper. Res. Lett." +, volume = 10 +, year = 1991 +, pages = "403--409" +, update = "97.11 bibrelex" } @article{c-irepr-90 -, author = "S. E. Chen" -, title = "Incremental radiosity: An extension of progressive radiosity to an interactive image synthesis system" -, journal = "Comput. Graph." -, volume = 24 -, number = 4 -, month = aug -, year = 1990 -, pages = "135--144" -, note = "Proc. SIGGRAPH '90" -, update = "97.11 bibrelex" +, author = "S. E. Chen" +, title = "Incremental radiosity: An extension of progressive radiosity to an interactive image synthesis system" +, journal = "Comput. Graph." +, volume = 24 +, number = 4 +, month = aug +, year = 1990 +, pages = "135--144" +, note = "Proc. SIGGRAPH '90" +, update = "97.11 bibrelex" } @inproceedings{cdwk-cscsp-97 -, author = "Wei Chen and Xiao Wen Deng and Koichi Wada and Kimio Kawaguchi" -, title = "Constructing a Strongly Convex Superhull of Points" -, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '97" -, site = "Shanghai, China" -, series = "Lecture Notes Comput. Sci." -, volume = 1276 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "42--51" -, update = "99.11 bibrelex, 98.11 bibrelex, 98.03 mitchell" +, author = "Wei Chen and Xiao Wen Deng and Koichi Wada and Kimio Kawaguchi" +, title = "Constructing a Strongly Convex Superhull of Points" +, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '97" +, site = "Shanghai, China" +, series = "Lecture Notes Comput. Sci." +, volume = 1276 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "42--51" +, update = "99.11 bibrelex, 98.11 bibrelex, 98.03 mitchell" } @inproceedings{cwk-pracs-96 -, author = "Wei Chen and Koichi Wada and Kimio Kawaguchi" -, title = "Parallel Robust Algorithms for Constructing Strongly Convex Hulls" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "133--140" -, cites = "acgoy-pcg-88, ds-rgnap-88, f-smpst-89, gr-epa-88, gy-frcg-86, gss-egbra-89, gss-cscah-93, h-pargc-89, lm-cschu-92, m-vigau-88a, m-cacau-89, m-dpggt-89, otu-nsga-87, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex, 96.05 efrat" +, author = "Wei Chen and Koichi Wada and Kimio Kawaguchi" +, title = "Parallel Robust Algorithms for Constructing Strongly Convex Hulls" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "133--140" +, cites = "acgoy-pcg-88, ds-rgnap-88, f-smpst-89, gr-epa-88, gy-frcg-86, gss-egbra-89, gss-cscah-93, h-pargc-89, lm-cschu-92, m-vigau-88a, m-cacau-89, m-dpggt-89, otu-nsga-87, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex, 96.05 efrat" } @article{cwkc-fchdp-98 -, author = "Wei Chen and Koichi Wada and Kimio Kawaguchi and Danny Chen" -, title = "Finding the Convex Hull of Discs in Parallel" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "305--320" -, update = "98.11 devillers" +, author = "Wei Chen and Koichi Wada and Kimio Kawaguchi and Danny Chen" +, title = "Finding the Convex Hull of Discs in Parallel" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "305--320" +, update = "98.11 devillers" } @mastersthesis{c-rsbo-91 -, author = "X. Chen" -, title = "Robust Solid Boolean Operations" -, school = "Agricultural and Mech. College, Louisiana State Univ., USA" -, year = 1991 -, keywords = "numerical precision, stability, robustness" -, update = "93.09 held" +, author = "X. Chen" +, title = "Robust Solid Boolean Operations" +, school = "Agricultural and Mech. College, Louisiana State Univ., USA" +, year = 1991 +, keywords = "numerical precision, stability, robustness" +, update = "93.09 held" } @article{ch-efbd-96 -, author = "X. Chen and C. M. Hoffmann" -, title = "On editability of feature-based design" -, journal = "Comput. Aided Design" -, volume = 27 -, number = 12 -, year = 1996 -, pages = "905--914" -, update = "98.07 bibrelex" +, author = "X. Chen and C. M. Hoffmann" +, title = "On editability of feature-based design" +, journal = "Comput. Aided Design" +, volume = 27 +, number = 12 +, year = 1996 +, pages = "905--914" +, update = "98.07 bibrelex" } @article{cy-ptapc-89 -, author = "Xiangping Chen and Daoning Ying" -, title = "Polygon Triangulation Algorithm As a Powerful Core Processor Of Plan-1" -, journal = "Comput. Graph. Forum" -, volume = 8 -, number = 3 -, month = sep -, year = 1989 -, pages = "193--198" -, keywords = "polygon triangulation, plan-i (production layout automation nucleus) system, non-self-intersecting polygon, triangular splitting algorithm, triangular- faceted structure, boundary representation" -, annote = "$O(n^2)$ search for an empty triangle on a particular - edge. Hence an $O(n^3)$ algorithm." -, abstract = "A concise, complete and reliable algorithm for - triangulating an arbitrary polygon is presented as a - powerful core processor of PLAN-I (Production Layout - Automation Nucleus) system. A polygon with inner loops - is converted into a non-self-intersecting polygon (NIP) - through adding 'Bridge Edges'. A triangular splitting - algorithm for NIP is described and implemented. The - program is about 300 lines in FORTRAN-77. Sweeping and - local operations with respect to the triangular-faceted - boundary representation are designed with the algorithm - to improve functions of solid modeling in PLAN-I. The - algorithm of triangulation can also be applied to - Boolean operations and other issues. (Author abstract) - 9 Refs." +, author = "Xiangping Chen and Daoning Ying" +, title = "Polygon Triangulation Algorithm As a Powerful Core Processor Of Plan-1" +, journal = "Comput. Graph. Forum" +, volume = 8 +, number = 3 +, month = sep +, year = 1989 +, pages = "193--198" +, keywords = "polygon triangulation, plan-i (production layout automation nucleus) system, non-self-intersecting polygon, triangular splitting algorithm, triangular- faceted structure, boundary representation" +, annote = "$O(n^2)$ search for an empty triangle on a particular + edge. Hence an $O(n^3)$ algorithm." +, abstract = "A concise, complete and reliable algorithm for + triangulating an arbitrary polygon is presented as a + powerful core processor of PLAN-I (Production Layout + Automation Nucleus) system. A polygon with inner loops + is converted into a non-self-intersecting polygon (NIP) + through adding 'Bridge Edges'. A triangular splitting + algorithm for NIP is described and implemented. The + program is about 300 lines in FORTRAN-77. Sweeping and + local operations with respect to the triangular-faceted + boundary representation are designed with the algorithm + to improve functions of solid modeling in PLAN-I. The + algorithm of triangulation can also be applied to + Boolean operations and other issues. (Author abstract) + 9 Refs." } @inproceedings{cs-frsoe-94 -, author = "Y. Chen and T. R. Smith" -, title = "Finitely representable Spatial Objects and Efficient Computation" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "181--189" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" +, author = "Y. Chen and T. R. Smith" +, title = "Finitely representable Spatial Objects and Efficient Computation" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "181--189" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" } @article{clc-saknn-92 -, author = "Y.-A. Chen and Y.-L. Lin and L.-W. Chang" -, title = "A systolic algorithm for the k-nearest neighbors problem" -, journal = "IEEE Trans. Comput." -, volume = 41 -, number = 1 -, year = 1992 -, pages = "103--108" -, keywords = "proximity, parallel computation" -, update = "95.09 korneenko" +, author = "Y.-A. Chen and Y.-L. Lin and L.-W. Chang" +, title = "A systolic algorithm for the k-nearest neighbors problem" +, journal = "IEEE Trans. Comput." +, volume = 41 +, number = 1 +, year = 1992 +, pages = "103--108" +, keywords = "proximity, parallel computation" +, update = "95.09 korneenko" } @inproceedings{chil-pcrat-90 -, author = "Y.-B. Chen and M. Hsieh and A. Inselberg and H. Q. Lee" -, title = "Planar conflict resolution for air traffic control" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "160--163" -, cites = "ZZZ" -, update = "98.07 bibrelex" +, author = "Y.-B. Chen and M. Hsieh and A. Inselberg and H. Q. Lee" +, title = "Planar conflict resolution for air traffic control" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "160--163" +, cites = "ZZZ" +, update = "98.07 bibrelex" } @inproceedings{ci-opodp-92 -, author = "Y.-B. Chen and D. Ierardi" -, title = "Oblivious plans for orienting and distinguishing polygonal parts" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "204--209" -, cites = "gme-gsppp-91, g-oppws-93, mw-posfp-85, n-spadp-89, rg-rspid-91, ZZZ" -, update = "98.07 bibrelex" +, author = "Y.-B. Chen and D. Ierardi" +, title = "Oblivious plans for orienting and distinguishing polygonal parts" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "204--209" +, cites = "gme-gsppp-91, g-oppws-93, mw-posfp-85, n-spadp-89, rg-rspid-91, ZZZ" +, update = "98.07 bibrelex" } @techreport{ci-omprp- -, author = "Y. B. Chen and D. Ierardi" -, title = "Optimal Motion Planning for a Rod in the Plane Subject to Acceleration and Velocity Constraints" -, type = "Technical {Report}" -, institution = "Univ. Southern California" -, year = "??" -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "Y. B. Chen and D. Ierardi" +, title = "Optimal Motion Planning for a Rod in the Plane Subject to Acceleration and Velocity Constraints" +, type = "Technical {Report}" +, institution = "Univ. Southern California" +, year = "??" +, note = "In preparation" +, update = "98.03 bibrelex" } @techreport{ci-omprp-92 -, author = "Y. B. Chen and D. Ierardi" -, title = "Optimal Motion Planning for a Rod in the Plane Subject to Velocity Constraints" -, type = "Technical {Report}" -, number = "USC-CS-92-529" -, institution = "Univ. Southern California" -, year = 1992 -, update = "98.03 bibrelex" +, author = "Y. B. Chen and D. Ierardi" +, title = "Optimal Motion Planning for a Rod in the Plane Subject to Velocity Constraints" +, type = "Technical {Report}" +, number = "USC-CS-92-529" +, institution = "Univ. Southern California" +, year = 1992 +, update = "98.03 bibrelex" } @inproceedings{ci-omprp-93 -, author = "Y.-B. Chen and D. Ierardi" -, title = "Optimal motion planning for a rod in the plane subject to velocity constraints" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "143--152" -, precedes = "ci-totrp-97" -, cites = "cdrx-ckp-88, ci-omprp-92, ci-omprp-, d-upoml-85, g-mpmmm-73, g-meds-75, h-ei-17, h-cvoct-66, irwy-spls-91, l-rmp-91, ls-esmpa-85, o-mpic-87, rt-akpul-89, ss-pmp1c-83, u-pcv-60, ZZZ" -, update = "98.03 bibrelex+mitchell, 93.09 jones" +, author = "Y.-B. Chen and D. Ierardi" +, title = "Optimal motion planning for a rod in the plane subject to velocity constraints" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "143--152" +, precedes = "ci-totrp-97" +, cites = "cdrx-ckp-88, ci-omprp-92, ci-omprp-, d-upoml-85, g-mpmmm-73, g-meds-75, h-ei-17, h-cvoct-66, irwy-spls-91, l-rmp-91, ls-esmpa-85, o-mpic-87, rt-akpul-89, ss-pmp1c-83, u-pcv-60, ZZZ" +, update = "98.03 bibrelex+mitchell, 93.09 jones" } @article{ci-totrp-97 -, author = "Y.-B. Chen and D. Ierardi" -, title = "Time-Optimal Trajectories of a Rod in the Plane Subject to Velocity Constraints" -, journal = "Algorithmica" -, volume = 18 -, number = 2 -, month = jun -, year = 1997 -, pages = "165--197" -, succeeds = "ci-omprp-93" -, update = "98.03 mitchell" +, author = "Y.-B. Chen and D. Ierardi" +, title = "Time-Optimal Trajectories of a Rod in the Plane Subject to Velocity Constraints" +, journal = "Algorithmica" +, volume = 18 +, number = 2 +, month = jun +, year = 1997 +, pages = "165--197" +, succeeds = "ci-omprp-93" +, update = "98.03 mitchell" } @article{ci-copod-95 -, author = "Y.-B. Chen and D. J. Ierardi" -, title = "The complexity of oblivious plans for orienting and distinguishing polygonal parts" -, journal = "Algorithmica" -, volume = 14 -, year = 1995 -, pages = "367--397" -, update = "98.07 bibrelex" +, author = "Y.-B. Chen and D. J. Ierardi" +, title = "The complexity of oblivious plans for orienting and distinguishing polygonal parts" +, journal = "Algorithmica" +, volume = 14 +, year = 1995 +, pages = "367--397" +, update = "98.07 bibrelex" } @techreport{c-sohpm-85 -, author = "Y. C. Chen" -, title = "Set operations in hierarchical probe model" -, type = "Report" -, number = "??" -, institution = "Dept. Math. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1985 +, author = "Y. C. Chen" +, title = "Set operations in hierarchical probe model" +, type = "Report" +, number = "??" +, institution = "Dept. Math. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1985 } -% also claimed pages = "257--265" +% also claimed pages = "257--265" @article{cr-esppo-91 -, author = "Y.-M. Chen and P. Ramanan" -, title = "Euclidean shortest path with presence of obstacles" -, journal = "Networks" -, volume = 21 -, year = 1991 -, pages = "257--267" -, keywords = "path planning" -, update = "93.09 milone+mitchell" +, author = "Y.-M. Chen and P. Ramanan" +, title = "Euclidean shortest path with presence of obstacles" +, journal = "Networks" +, volume = 21 +, year = 1991 +, pages = "257--267" +, keywords = "path planning" +, update = "93.09 milone+mitchell" } @inproceedings{c-lutrp-93 -, author = "Zhixiang Chen" -, title = "Learning Unions of Two Rectangles in the Plane with Equivalence Queries" -, booktitle = "Proc. 6th ACM Conf. Comput. Learning Theory" -, nickname = "COLT '93" -, month = jul -, year = 1993 -, pages = "??" -, update = "98.07 bibrelex, 93.09 milone+mitchell" +, author = "Zhixiang Chen" +, title = "Learning Unions of Two Rectangles in the Plane with Equivalence Queries" +, booktitle = "Proc. 6th ACM Conf. Comput. Learning Theory" +, nickname = "COLT '93" +, month = jul +, year = 1993 +, pages = "??" +, update = "98.07 bibrelex, 93.09 milone+mitchell" } @inproceedings{cg-ssvip-88 -, author = "Z. Chen and J. A. Guevara" -, title = "System selection of very important points ({VIP}) from digital terrain models for constructing triangular irregular networks" -, booktitle = "Proc. 8th Internat. Sympos. Comput. Assist. Cartography" -, nickname = "Auto-Carto" -, year = 1988 -, pages = "50--56" -, update = "98.07 bibrelex" +, author = "Z. Chen and J. A. Guevara" +, title = "System selection of very important points ({VIP}) from digital terrain models for constructing triangular irregular networks" +, booktitle = "Proc. 8th Internat. Sympos. Comput. Assist. Cartography" +, nickname = "Auto-Carto" +, year = 1988 +, pages = "50--56" +, update = "98.07 bibrelex" } @inproceedings{chmsb-nrm-95 -, author = "Z. Chen and A. T. Holle and B. M. E. Moret and J. Saia and A. Boroujerdi" -, title = "Network routing models applied to aircraft routing problems" -, booktitle = "Proc. Winter Simulation Conf." -, year = 1995 -, pages = "1200--1206" -, update = "98.03 moret" +, author = "Z. Chen and A. T. Holle and B. M. E. Moret and J. Saia and A. Boroujerdi" +, title = "Network routing models applied to aircraft routing problems" +, booktitle = "Proc. Winter Simulation Conf." +, year = 1995 +, pages = "1200--1206" +, update = "98.03 moret" } @inproceedings{ct-qrdt-86 -, author = "Z. T. Chen and W. R. Tobler" -, title = "Quadtree Representation of Digital Terrain" -, booktitle = "Proc. Autocarto" -, site = "London" -, year = 1986 -, pages = "475--484" -, update = "98.11 bibrelex" +, author = "Z. T. Chen and W. R. Tobler" +, title = "Quadtree Representation of Digital Terrain" +, booktitle = "Proc. Autocarto" +, site = "London" +, year = 1986 +, pages = "475--484" +, update = "98.11 bibrelex" } @inproceedings{cj-fiplp-86 -, author = "Fuhua Cheng and Wein Chung Jiaan" -, title = "Finding the Intersection Points of a Line With a Polygon and its Applications" -, booktitle = "Proc. 14th ACM Annu. Computer Sci. Conf." -, nickname = "CSC '86" -, site = "Cincinnati" -, year = 1986 -, pages = "448--448" -, keywords = "intersection, polygon" -, succeeds = "clc-fiplp-85" -, update = "01.04 icking, 97.11 bibrelex, 95.09 korneenko" +, author = "Fuhua Cheng and Wein Chung Jiaan" +, title = "Finding the Intersection Points of a Line With a Polygon and its Applications" +, booktitle = "Proc. 14th ACM Annu. Computer Sci. Conf." +, nickname = "CSC '86" +, site = "Cincinnati" +, year = 1986 +, pages = "448--448" +, keywords = "intersection, polygon" +, succeeds = "clc-fiplp-85" +, update = "01.04 icking, 97.11 bibrelex, 95.09 korneenko" } @techreport{clc-fiplp-85 -, author = "F. Cheng and J.-Y. Lu and H.-S. Chang" -, title = "Finding the intersection points of a line with a polygon and its applications" -, type = "Report" -, number = "??" -, institution = "Inst. Comput. Decision Sci., National Tsing Hua Univ." -, address = "Taiwan" -, year = 1985 -, precedes = "cj-fiplp-86" -, update = "95.09 korneenko" +, author = "F. Cheng and J.-Y. Lu and H.-S. Chang" +, title = "Finding the intersection points of a line with a polygon and its applications" +, type = "Report" +, number = "??" +, institution = "Inst. Comput. Decision Sci., National Tsing Hua Univ." +, address = "Taiwan" +, year = 1985 +, precedes = "cj-fiplp-86" +, update = "95.09 korneenko" } @article{cef-ssd-01 -, author = "H.-L. Cheng and H. Edelsbrunner and P. Fu" -, title = "Shape space from deformation" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "191--204" -, update = "01.11 smid" +, author = "H.-L. Cheng and H. Edelsbrunner and P. Fu" +, title = "Shape space from deformation" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "191--204" +, update = "01.11 smid" } @article{ccs-cspao-00 -, author = "Q. Cheng and M. Chrobak and G. Sundaram" -, title = "Computing simple paths among obstacles" -, journal = "Comput. Geom. Theory Appl." -, volume = 16 -, year = 2000 -, pages = "223--233" -, update = "01.04 smid" +, author = "Q. Cheng and M. Chrobak and G. Sundaram" +, title = "Computing simple paths among obstacles" +, journal = "Comput. Geom. Theory Appl." +, volume = 16 +, year = 2000 +, pages = "223--233" +, update = "01.04 smid" } @inproceedings{c-stptb-97 -, author = "Siu-Wing Cheng" -, title = "The {Steiner} Tree Problem for Terminals on the Boundary of a Rectilinear Polygon" -, booktitle = "Proc. of the DIMACS Workshop on Network Design: Connectivity and Facilities Location" -, site = "Princeton, NJ" -, month = apr -, year = 1997 -, update = "98.03 mitchell" -, annote = "Submitted to Theoretical Computer Science. They give an +, author = "Siu-Wing Cheng" +, title = "The {Steiner} Tree Problem for Terminals on the Boundary of a Rectilinear Polygon" +, booktitle = "Proc. of the DIMACS Workshop on Network Design: Connectivity and Facilities Location" +, site = "Princeton, NJ" +, month = apr +, year = 1997 +, update = "98.03 mitchell" +, annote = "Submitted to Theoretical Computer Science. They give an $O(k^3n)$ algorithm for finding a min rectilinear Steiner tree for n points on the boundary of a rectilinear @@ -34367,692 +34367,692 @@ @inproceedings{c-stptb-97 } @inproceedings{c-wecml-94 -, author = "S.-W. Cheng" -, title = "Widest Empty Corridor with Multiple Links and Right-Angle Turns" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "57--62" -, cites = "cd-kdcp-90, hm-fwecs-88, jp-wcp-93t, st-pplup-86, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "S.-W. Cheng" +, title = "Widest Empty Corridor with Multiple Links and Right-Angle Turns" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "57--62" +, cites = "cd-kdcp-90, hm-fwecs-88, jp-wcp-93t, st-pplup-86, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{c-welsc-96 -, author = "S.-W. Cheng" -, title = "Widest empty {L}-shaped corridor" -, journal = "Inform. Process. Lett." -, volume = 58 -, year = 1996 -, pages = "277--283" -, update = "96.09 smid" +, author = "S.-W. Cheng" +, title = "Widest empty {L}-shaped corridor" +, journal = "Inform. Process. Lett." +, volume = 58 +, year = 1996 +, pages = "277--283" +, update = "96.09 smid" } @article{cefl-dapsd-01 -, author = "S.-W. Cheng and H. Edelsbrunner and P. Fu and K.-P. Lam" -, title = "Design and analysis of planar shape deformation" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "205--218" -, update = "01.11 smid" +, author = "S.-W. Cheng and H. Edelsbrunner and P. Fu and K.-P. Lam" +, title = "Design and analysis of planar shape deformation" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "205--218" +, update = "01.11 smid" } @inproceedings{cgt-ecabs-95 -, author = "Siu Wing Cheng and Mordecai J. Golin and Jeffrey C. F. Tsang" -, title = "Expected Case Analysis of $\Beta$-Skeletons with Applications to the Construction of Minimum-Weight Triangulations" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "279--284" -, update = "95.09 jones" +, author = "Siu Wing Cheng and Mordecai J. Golin and Jeffrey C. F. Tsang" +, title = "Expected Case Analysis of $\Beta$-Skeletons with Applications to the Construction of Minimum-Weight Triangulations" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "279--284" +, update = "95.09 jones" } @article{cj-arsis-92 -, author = "S. W. Cheng and R. Janardan" -, title = "Algorithms for ray-shooting and intersection searching" -, journal = "J. Algorithms" -, volume = 13 -, year = 1992 -, pages = "670--692" -, update = "93.09 smid" +, author = "S. W. Cheng and R. Janardan" +, title = "Algorithms for ray-shooting and intersection searching" +, journal = "J. Algorithms" +, volume = 13 +, year = 1992 +, pages = "670--692" +, update = "93.09 smid" } @article{cj-edasg-90 -, author = "S. W. Cheng and R. Janardan" -, title = "Efficient dynamic algorithms for some geometric intersection problems" -, journal = "Inform. Process. Lett." -, volume = 36 -, year = 1990 -, pages = "251--258" +, author = "S. W. Cheng and R. Janardan" +, title = "Efficient dynamic algorithms for some geometric intersection problems" +, journal = "Inform. Process. Lett." +, volume = 36 +, year = 1990 +, pages = "251--258" } @inproceedings{cj-emuil-90 -, author = "S. W. Cheng and R. Janardan" -, title = "Efficient maintenance of the union intervals on a line, with applications" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "74--83" -, precedes = "cj-emuil-91" +, author = "S. W. Cheng and R. Janardan" +, title = "Efficient maintenance of the union intervals on a line, with applications" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "74--83" +, precedes = "cj-emuil-91" } @article{cj-emuil-91 -, author = "S. W. Cheng and R. Janardan" -, title = "Efficient maintenance of the union intervals on a line, with applications" -, journal = "J. Algorithms" -, volume = 12 -, year = 1991 -, pages = "57--74" -, succeeds = "cj-emuil-90" +, author = "S. W. Cheng and R. Janardan" +, title = "Efficient maintenance of the union intervals on a line, with applications" +, journal = "J. Algorithms" +, volume = 12 +, year = 1991 +, pages = "57--74" +, succeeds = "cj-emuil-90" } @techreport{cj-nrdpp-90 -, author = "S. W. Cheng and R. Janardan" -, title = "New Results on Dynamic Planar Point Location" -, type = "Technical {Report}" -, number = "TR 90-13" -, institution = "Dept. Comput. Sci., Univ. Minnesota" -, address = "Minneapolis, MN" -, year = 1990 -, update = "97.11 bibrelex" +, author = "S. W. Cheng and R. Janardan" +, title = "New Results on Dynamic Planar Point Location" +, type = "Technical {Report}" +, number = "TR 90-13" +, institution = "Dept. Comput. Sci., Univ. Minnesota" +, address = "Minneapolis, MN" +, year = 1990 +, update = "97.11 bibrelex" } @article{cj-nrdpp-92 -, author = "S. W. Cheng and R. Janardan" -, title = "New results on dynamic planar point location" -, journal = "SIAM J. Comput." -, volume = 21 -, year = 1992 -, pages = "972--999" -, keywords = "point location, dynamization" +, author = "S. W. Cheng and R. Janardan" +, title = "New results on dynamic planar point location" +, journal = "SIAM J. Comput." +, volume = 21 +, year = 1992 +, pages = "972--999" +, keywords = "point location, dynamization" } @inproceedings{cj-nrdpl-90 -, author = "S. W. Cheng and R. Janardan" -, title = "New results on dynamic point location" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "96--105" -, keywords = "point location, dynamization" +, author = "S. W. Cheng and R. Janardan" +, title = "New results on dynamic point location" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "96--105" +, keywords = "point location, dynamization" } @inproceedings{cj-sersi-91 -, author = "S. W. Cheng and R. Janardan" -, title = "Space-efficient ray shooting and intersection searching: algorithms, dynamization and applications" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "7--16" -, keywords = "ray tracing, dynamization, spanning trees of low stabbing number" +, author = "S. W. Cheng and R. Janardan" +, title = "Space-efficient ray shooting and intersection searching: algorithms, dynamization and applications" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "7--16" +, keywords = "ray tracing, dynamization, spanning trees of low stabbing number" } @inproceedings{cl-qrsam-98 -, author = "Siu-Wing Cheng and Kam-Hing Lee" -, title = "Quadtree Decomposition, {S}teiner Triangulation, and Ray Shooting" -, booktitle = "ISAAC: 9th Internat. Sympos. Algorithms Computation" -, year = 1998 -, pages = "367--376" -, url = "citeseer.nj.nec.com/cheng98quadtree.html" -, update = "01.07 orourke" +, author = "Siu-Wing Cheng and Kam-Hing Lee" +, title = "Quadtree Decomposition, {S}teiner Triangulation, and Ray Shooting" +, booktitle = "ISAAC: 9th Internat. Sympos. Algorithms Computation" +, year = 1998 +, pages = "367--376" +, url = "citeseer.nj.nec.com/cheng98quadtree.html" +, update = "01.07 orourke" } @inproceedings{clw-orste-93 -, author = "Siu-Wing Cheng and Andrew Lim and Ching-Ting Wu" -, title = "Optimal Rectilinear {Steiner} Tree for Extremal Point Sets" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "523--532" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Siu-Wing Cheng and Andrew Lim and Ching-Ting Wu" +, title = "Optimal Rectilinear {Steiner} Tree for Extremal Point Sets" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "523--532" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @inproceedings{ct-facor-95 -, author = "Siu-Wing Cheng and Chi-Keung Tang" -, title = "A Fast Algorithm for Computing Optimal Rectilinear {Steiner} Trees for Extremal Point Sets" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "322--331" -, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "Siu-Wing Cheng and Chi-Keung Tang" +, title = "A Fast Algorithm for Computing Optimal Rectilinear {Steiner} Trees for Extremal Point Sets" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "322--331" +, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @inproceedings{cx-alesw-96 -, author = "Siu-Wing Cheng and Yin-Feng Xu" -, title = "Approaching the Largest $\beta$-Skeleton within a Minimum Weight Triangulation" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "196--203" -, cites = "aatr-tin-95, beemt-eiot-93, dmm-naefm-95, dg-aivib-70, e-acg-87, g-nrpt-79, gmi-hibef-90, hp-nrmwt-94, k-csmwt-94, kr-fcm-85, lk-qgtam-96, l-nhmwt-87, ph-hta-87, y-bsmwt-95, yxy-cdapp-94, y-cdcrc-75, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Siu-Wing Cheng and Yin-Feng Xu" +, title = "Approaching the Largest $\beta$-Skeleton within a Minimum Weight Triangulation" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "196--203" +, cites = "aatr-tin-95, beemt-eiot-93, dmm-naefm-95, dg-aivib-70, e-acg-87, g-nrpt-79, gmi-hibef-90, hp-nrmwt-94, k-csmwt-94, kr-fcm-85, lk-qgtam-96, l-nhmwt-87, ph-hta-87, y-bsmwt-95, yxy-cdapp-94, y-cdcrc-75, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{cx-cistp-95 -, author = "Siu-Wing Cheng and Yin-Feng Xu" -, title = "Constrained independence systems and triangulations of planar point sets" -, editor = "Ding-Zhu Du and Ming Li" -, booktitle = "Proc. 1st Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '95" -, site = "Xi'an, China" -, series = "Lecture Notes Comput. Sci." -, volume = 959 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "275--291" -, precedes = "aacktrx-tin-96" -, update = "99.11 bibrelex, 97.03 rote" +, author = "Siu-Wing Cheng and Yin-Feng Xu" +, title = "Constrained independence systems and triangulations of planar point sets" +, editor = "Ding-Zhu Du and Ming Li" +, booktitle = "Proc. 1st Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '95" +, site = "Xi'an, China" +, series = "Lecture Notes Comput. Sci." +, volume = 959 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "275--291" +, precedes = "aacktrx-tin-96" +, update = "99.11 bibrelex, 97.03 rote" } @article{cfnwlm-moopb-95 -, author = "W. Cheng and J. Y. H. Fu and A. Y. C. Nee and Y. S. Wong and H. T. Loh and T. Miyazawa" -, title = "Multi-objective optimization of part-building orientation in stereolithography" -, journal = "Rapid Prototyping Journal" -, volume = 1 -, year = 1995 -, pages = "12--23" -, update = "99.07 smid" +, author = "W. Cheng and J. Y. H. Fu and A. Y. C. Nee and Y. S. Wong and H. T. Loh and T. Miyazawa" +, title = "Multi-objective optimization of part-building orientation in stereolithography" +, journal = "Rapid Prototyping Journal" +, volume = 1 +, year = 1995 +, pages = "12--23" +, update = "99.07 smid" } @article{cik-nmicu-88 -, author = "Y. Cheng and S. S. Iyengar and R. L. Kashyap" -, title = "A new method of image compression using irreducible cover of maximal rectangles" -, journal = "IEEE Trans. Softw. Eng." -, volume = 14 -, number = 5 -, year = 1988 -, pages = "651--658" -, keywords = "isothetic, covering" -, update = "95.09 korneenko" +, author = "Y. Cheng and S. S. Iyengar and R. L. Kashyap" +, title = "A new method of image compression using irreducible cover of maximal rectangles" +, journal = "IEEE Trans. Softw. Eng." +, volume = 14 +, number = 5 +, year = 1988 +, pages = "651--658" +, keywords = "isothetic, covering" +, update = "95.09 korneenko" } @inproceedings{cu-spcsw-95 -, author = "Christian Chenier and Jorge Urrutia" -, title = "Shortest Paths in Convex and Simple Weighted Polygons" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "175--179" -, update = "95.09 jones" +, author = "Christian Chenier and Jorge Urrutia" +, title = "Shortest Paths in Convex and Simple Weighted Polygons" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "175--179" +, update = "95.09 jones" } @article{co-rpwdu-01 -, author = "Otfried Cheong and Ren{\'e} van Oostrum" -, title = "Reaching a Polygon With Directional Uncertainty" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "197--214" -, update = "01.07 smid, 01.04 icking" +, author = "Otfried Cheong and Ren{\'e} van Oostrum" +, title = "Reaching a Polygon With Directional Uncertainty" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "197--214" +, update = "01.07 smid, 01.04 icking" } @article{ch-dspc2-90 -, author = "C. Cherfils and F. Hermeline" -, title = "Diagonal Swap Procedures and Characterizations of 2{D}-{Delaunay} Triangulations" -, journal = "RAIRO-Mathematical Modelling And Numerical Analysis-Modelisation Mathematique Et Analyse Numerique" -, volume = 24 -, number = 5 -, year = 1990 -, pages = "613--625" -, annote = "Proves that Delaunay switchings converge to DT." +, author = "C. Cherfils and F. Hermeline" +, title = "Diagonal Swap Procedures and Characterizations of 2{D}-{Delaunay} Triangulations" +, journal = "RAIRO-Mathematical Modelling And Numerical Analysis-Modelisation Mathematique Et Analyse Numerique" +, volume = 24 +, number = 5 +, year = 1990 +, pages = "613--625" +, annote = "Proves that Delaunay switchings converge to DT." } @article{ct-fmst-76 -, author = "D. Cheriton and R. E. Tarjan" -, title = "Finding minimum spanning trees" -, journal = "SIAM J. Comput." -, volume = 5 -, year = 1976 -, pages = "724--742" +, author = "D. Cheriton and R. E. Tarjan" +, title = "Finding minimum spanning trees" +, journal = "SIAM J. Comput." +, volume = 5 +, year = 1976 +, pages = "724--742" } @techreport{ct-apkvc-?? -, author = "J. Cheriyan and R. Thurimella" -, title = "Algorithms for Parallel $k$-Vertex Connectivity and Sparse Certificates" -, institution = "Eng. and Theory Center, Cornell Univ." -, address = "Ithaca, New York" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "J. Cheriyan and R. Thurimella" +, title = "Algorithms for Parallel $k$-Vertex Connectivity and Sparse Certificates" +, institution = "Eng. and Theory Center, Cornell Univ." +, address = "Ithaca, New York" +, year = "??" +, update = "93.09 milone+mitchell" } @article{c-afspm-86 -, author = "B. Cherkassky" -, title = "An algorithm for finding shortest paths in a maze" -, journal = "Optimization" -, volume = 17 -, number = 2 -, year = 1986 -, pages = "237--242" -, keywords = "motion planning, shortest paths" -, update = "95.09 korneenko" +, author = "B. Cherkassky" +, title = "An algorithm for finding shortest paths in a maze" +, journal = "Optimization" +, volume = 17 +, number = 2 +, year = 1986 +, pages = "237--242" +, keywords = "motion planning, shortest paths" +, update = "95.09 korneenko" } @incollection{c-cses-67 -, author = "S. S. Chern" -, title = "Curves and Surfaces in {E}ucidean Space" -, editor = "S. S. Chern" -, booktitle = "Studies in Global Geometry and Analaysis" -, series = "MAA Studies in Mathmatics" -, volume = 4 -, publisher = "Math. Assoc. Amer." -, year = 1967 -, pages = "16--56" -, update = "01.04 orourke" +, author = "S. S. Chern" +, title = "Curves and Surfaces in {E}ucidean Space" +, editor = "S. S. Chern" +, booktitle = "Studies in Global Geometry and Analaysis" +, series = "MAA Studies in Mathmatics" +, volume = 4 +, publisher = "Math. Assoc. Amer." +, year = 1967 +, pages = "16--56" +, update = "01.04 orourke" } @incollection{c-cses-89 -, author = "S. S. Chern" -, title = "Curves and Surfaces in {E}ucidean Space" -, editor = "S. S. Chern" -, booktitle = "Global Differential Geometry" -, series = "Studies in Mathmatics" -, volume = 27 -, publisher = "Math. Assoc. Amer." -, year = 1989 -, pages = "99--139" -, comments = "Explains/extends s-usedkkk-21" -, update = "00.11 smid, 00.07 orourke" +, author = "S. S. Chern" +, title = "Curves and Surfaces in {E}ucidean Space" +, editor = "S. S. Chern" +, booktitle = "Global Differential Geometry" +, series = "Studies in Mathmatics" +, volume = 27 +, publisher = "Math. Assoc. Amer." +, year = 1989 +, pages = "99--139" +, comments = "Explains/extends s-usedkkk-21" +, update = "00.11 smid, 00.07 orourke" } @article{c-maeth-52 -, author = "H. Chernoff" -, title = "A measure of asymptotic efficiency for tests of a hypothesis based on the sum of the observations" -, journal = "Ann. Math. Statist." -, volume = 23 -, year = 1952 -, pages = "493--509" -, update = "96.09 orourke" +, author = "H. Chernoff" +, title = "A measure of asymptotic efficiency for tests of a hypothesis based on the sum of the observations" +, journal = "Ann. Math. Statist." +, volume = 23 +, year = 1952 +, pages = "493--509" +, update = "96.09 orourke" } @article{co-eacf-84 -, author = "N. I. Chernov and G. A. Ososkov" -, title = "Effective algorithms for circle fitting" -, journal = "Comput. Phys. Comm." -, volume = 33 -, year = 1984 -, pages = "329--333" -, keywords = "facility location, optimization, fitting, center" -, update = "96.09 devillers, 95.09 korneenko" +, author = "N. I. Chernov and G. A. Ososkov" +, title = "Effective algorithms for circle fitting" +, journal = "Comput. Phys. Comm." +, volume = 33 +, year = 1984 +, pages = "329--333" +, keywords = "facility location, optimization, fitting, center" +, update = "96.09 devillers, 95.09 korneenko" } @article{cv-fas-92 -, author = "Jean-Marie Chesneaux and Jean Vignes" -, title = "Les fondements de l'arithm{\'e}tique stochastique" -, journal = "Compte-rendus de l'acad{\'e}mie des Sciences, Paris" -, volume = 307 -, year = 1992 -, pages = "1435--1440" -, update = "00.03 devillers" +, author = "Jean-Marie Chesneaux and Jean Vignes" +, title = "Les fondements de l'arithm{\'e}tique stochastique" +, journal = "Compte-rendus de l'acad{\'e}mie des Sciences, Paris" +, volume = 307 +, year = 1992 +, pages = "1435--1440" +, update = "00.03 devillers" } @book{c-sm-61 -, author = "N. Chetayav" -, title = "The stability of motion" -, publisher = "Pergamon Press" -, address = "New York, NY" -, year = 1961 -, update = "98.07 bibrelex" +, author = "N. Chetayav" +, title = "The stability of motion" +, publisher = "Pergamon Press" +, address = "New York, NY" +, year = 1961 +, update = "98.07 bibrelex" } @article{c-fnspp-91 -, author = "D. Chetverikov" -, title = "Fast neighborhood search in planar point sets" -, journal = "Pattern Recogn. Lett." -, volume = 12 -, number = 7 -, year = 1991 -, pages = "409--412" -, keywords = "proximity, points, searching" -, update = "95.09 korneenko" +, author = "D. Chetverikov" +, title = "Fast neighborhood search in planar point sets" +, journal = "Pattern Recogn. Lett." +, volume = 12 +, number = 7 +, year = 1991 +, pages = "409--412" +, keywords = "proximity, points, searching" +, update = "95.09 korneenko" } @inproceedings{c-gqdm3-97 -, author = "L. Chew" -, title = "Guaranteed quality {Delaunay} meshing in 3D" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "391--393" -, cites = "be-mgot-92i, beg-pgmg-94, c-gqtm-89, c-gqmgc-93, mv-qmgtd-92i, r-nsaq2-93, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "L. Chew" +, title = "Guaranteed quality {Delaunay} meshing in 3D" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "391--393" +, cites = "be-mgot-92i, beg-pgmg-94, c-gqtm-89, c-gqmgc-93, mv-qmgtd-92i, r-nsaq2-93, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{c-bvdcp-86 -, author = "L. P. Chew" -, title = "Building {Voronoi} diagrams for convex polygons in linear expected time" -, type = "Technical Report" -, number = "PCS-TR90-147" -, institution = "Dept. Math. Comput. Sci., Dartmouth College" -, address = "Hanover, NH" -, year = 1986 -, succeeds = "c-bvdcp-86t" -, update = "98.11 bibrelex, 94.09 lambert, 93.09 devillers" +, author = "L. P. Chew" +, title = "Building {Voronoi} diagrams for convex polygons in linear expected time" +, type = "Technical Report" +, number = "PCS-TR90-147" +, institution = "Dept. Math. Comput. Sci., Dartmouth College" +, address = "Hanover, NH" +, year = 1986 +, succeeds = "c-bvdcp-86t" +, update = "98.11 bibrelex, 94.09 lambert, 93.09 devillers" } @techreport{c-bvdcp-86t -, author = "L. P. Chew" -, title = "Building {Voronoi} diagrams for convex polygons in linear expected time" -, type = "manuscript" -, year = 1986 -, precedes = "c-bvdcp-86" -, update = "98.11 bibrelex" +, author = "L. P. Chew" +, title = "Building {Voronoi} diagrams for convex polygons in linear expected time" +, type = "manuscript" +, year = 1986 +, precedes = "c-bvdcp-86" +, update = "98.11 bibrelex" } @inproceedings{c-cdt-87 -, author = "L. P. Chew" -, title = "Constrained {Delaunay} triangulations" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "215--222" -, precedes = "c-cdt-89" -, cites = "cd-vdbcd-85, c-tipga-86, c-pgsge-, f-savd-86, k-eccs-79, l-prp-78, ls-tacdt-80, ps-cgi-85, y-oavds-84, ZZZ" -, update = "98.03 bibrelex" +, author = "L. P. Chew" +, title = "Constrained {Delaunay} triangulations" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "215--222" +, precedes = "c-cdt-89" +, cites = "cd-vdbcd-85, c-tipga-86, c-pgsge-, f-savd-86, k-eccs-79, l-prp-78, ls-tacdt-80, ps-cgi-85, y-oavds-84, ZZZ" +, update = "98.03 bibrelex" } @article{c-cdt-89 -, author = "L. P. Chew" -, title = "Constrained {Delaunay} triangulations" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "97--108" -, succeeds = "c-cdt-87" +, author = "L. P. Chew" +, title = "Constrained {Delaunay} triangulations" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "97--108" +, succeeds = "c-cdt-87" } @inproceedings{c-gqmgc-93 -, author = "L. P. Chew" -, title = "Guaranteed-quality mesh generation for curved surfaces" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "274--280" -, cites = "r-nsaq2-92, be-mgot-92i, beg-pgmg-90, c-gqtm-89, mv-qmgtd-92i, ms-cinap-92, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "L. P. Chew" +, title = "Guaranteed-quality mesh generation for curved surfaces" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "274--280" +, cites = "r-nsaq2-92, be-mgot-92i, beg-pgmg-90, c-gqtm-89, mv-qmgtd-92i, ms-cinap-92, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @techreport{c-gqtm-89 -, author = "L. P. Chew" -, title = "Guaranteed-quality triangular meshes" -, type = "Technical {Report}" -, number = "TR-89-983" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = apr -, year = 1989 -, update = "98.07 bibrelex" +, author = "L. P. Chew" +, title = "Guaranteed-quality triangular meshes" +, type = "Technical {Report}" +, number = "TR-89-983" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = apr +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{c-nqblv-93 -, author = "L. P. Chew" -, title = "Near-quadratic bounds for the {$L_1$} {Voronoi} diagram of moving points" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "364--369" -, precedes = "c-nqblv-97" -, cites = "ass-sulbl-89, a-vdsfg-91, cd-vdbcd-85, ck-plscc-89, ck-cppop-93, gmr-vdmpp-92, kti-mmstl-92, ZZZ" -, update = "98.11 bibrelex, 97.03 devillers, 93.09 milone+mitchell" +, author = "L. P. Chew" +, title = "Near-quadratic bounds for the {$L_1$} {Voronoi} diagram of moving points" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "364--369" +, precedes = "c-nqblv-97" +, cites = "ass-sulbl-89, a-vdsfg-91, cd-vdbcd-85, ck-plscc-89, ck-cppop-93, gmr-vdmpp-92, kti-mmstl-92, ZZZ" +, update = "98.11 bibrelex, 97.03 devillers, 93.09 milone+mitchell" } @article{c-nqblv-97 -, author = "L. P. Chew" -, title = "Near-quadratic bounds for the {$L_1$} {Voronoi} diagram of moving points" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "73--80" -, succeeds = "c-nqblv-93" -, update = "97.03 devillers" +, author = "L. P. Chew" +, title = "Near-quadratic bounds for the {$L_1$} {Voronoi} diagram of moving points" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "73--80" +, succeeds = "c-nqblv-93" +, update = "97.03 devillers" } @techreport{c-pgsge- -, author = "L. P. Chew" -, title = "Planar Graphs and Sparse Graphs for Efficient Motion Planning in the Plane" -, type = "Manuscript" -, institution = "??" -, year = "??" -, update = "98.03 bibrelex" +, author = "L. P. Chew" +, title = "Planar Graphs and Sparse Graphs for Efficient Motion Planning in the Plane" +, type = "Manuscript" +, institution = "??" +, year = "??" +, update = "98.03 bibrelex" } @inproceedings{c-pspdo-85 -, author = "L. P. Chew" -, title = "Planning the shortest path for a disc in {$O(n^{2} \log n)$} time" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "214--220" +, author = "L. P. Chew" +, title = "Planning the shortest path for a disc in {$O(n^{2} \log n)$} time" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "214--220" } @article{c-tapga-89 -, author = "L. P. Chew" -, title = "There are planar graphs almost as good as the complete graph" -, journal = "J. Comput. Syst. Sci." -, volume = 39 -, year = 1989 -, pages = "205--219" -, succeeds = "c-tipga-86" +, author = "L. P. Chew" +, title = "There are planar graphs almost as good as the complete graph" +, journal = "J. Comput. Syst. Sci." +, volume = 39 +, year = 1989 +, pages = "205--219" +, succeeds = "c-tipga-86" } @inproceedings{c-tipga-86 -, author = "L. P. Chew" -, title = "There is a planar graph almost as good as the complete graph" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "169--177" -, precedes = "c-tapga-89" -, cites = "aaghi-vpses-85, cd-vdbcd-85, h-oarms-79, ls-tacdt-80, p-aspmt-85, sh-cpp-75, s-spacp-85, ss-spps-84, w-cvgnl-85, ZZZ" -, update = "97.11 bibrelex" +, author = "L. P. Chew" +, title = "There is a planar graph almost as good as the complete graph" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "169--177" +, precedes = "c-tapga-89" +, cites = "aaghi-vpses-85, cd-vdbcd-85, h-oarms-79, ls-tacdt-80, p-aspmt-85, sh-cpp-75, s-spacp-85, ss-spps-84, w-cvgnl-85, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{cdek-gpmds-95 -, author = "L. P. Chew and D. Dor and A. Efrat and K. Kedem" -, title = "Geometric pattern matching in $d$-dimensional space" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 979 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "264--279" -, update = "97.03 agarwal, 96.09 agarwal, 96.05 agarwal" +, author = "L. P. Chew and D. Dor and A. Efrat and K. Kedem" +, title = "Geometric pattern matching in $d$-dimensional space" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 979 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "264--279" +, update = "97.03 agarwal, 96.09 agarwal, 96.05 agarwal" } @inproceedings{cd-vdbcd-85 -, author = "L. P. Chew and R. L. {Drysdale, III}" -, title = "Voronoi diagrams based on convex distance functions" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "235--244" -, keywords = "Voronoi diagrams, points, two-dimensional, $L_{1}$ metric, $L_{p}$ metric, $L_{\infty}$ metric" -, cites = "c-ign-59, cdl-cler-84, d-gvdgs-79, h-oarms-79, k-eccs-79, kn-lts-63, k-ss-73, l-csta-82, l-tdvdl-80, l-knnvd-82, lw-vdllm-80, osy-rnamp-83, sh-cpp-75, y-oavds-84, ZZZ" -, update = "97.11 bibrelex, 93.09 drysdale" +, author = "L. P. Chew and R. L. {Drysdale, III}" +, title = "Voronoi diagrams based on convex distance functions" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "235--244" +, keywords = "Voronoi diagrams, points, two-dimensional, $L_{1}$ metric, $L_{p}$ metric, $L_{\infty}$ metric" +, cites = "c-ign-59, cdl-cler-84, d-gvdgs-79, h-oarms-79, k-eccs-79, kn-lts-63, k-ss-73, l-csta-82, l-tdvdl-80, l-knnvd-82, lw-vdllm-80, osy-rnamp-83, sh-cpp-75, y-oavds-84, ZZZ" +, update = "97.11 bibrelex, 93.09 drysdale" } @techreport{cd-vdsle-84 -, author = "L. P. Chew and R. L. {Drysdale, III}" -, title = "Voronoi Diagrams to Solve Largest Empty Oriented-Convex-Shape Problems" -, type = "Extended {Abstract}" -, institution = "Dept. Math. Comput. Sci., Dartmouth College" -, address = "Hanover, NH" -, year = 1984 -, update = "97.11 bibrelex" +, author = "L. P. Chew and R. L. {Drysdale, III}" +, title = "Voronoi Diagrams to Solve Largest Empty Oriented-Convex-Shape Problems" +, type = "Extended {Abstract}" +, institution = "Dept. Math. Comput. Sci., Dartmouth College" +, address = "Hanover, NH" +, year = 1984 +, update = "97.11 bibrelex" } @inproceedings{cf-shvd-88 -, author = "L. P. Chew and S. Fortune" -, title = "Sorting helps for {Voronoi} diagrams" -, booktitle = "Proc. 13th Symposium on Mathematical Programming, Japan" -, publisher = "" -, year = 1988 -, pages = "" -, update = "93.09 devillers" +, author = "L. P. Chew and S. Fortune" +, title = "Sorting helps for {Voronoi} diagrams" +, booktitle = "Proc. 13th Symposium on Mathematical Programming, Japan" +, publisher = "" +, year = 1988 +, pages = "" +, update = "93.09 devillers" } @article{cf-shvd-97 -, author = "L. P. Chew and S. Fortune" -, title = "Sorting helps for {Voronoi} diagrams" -, journal = "Algorithmica" -, volume = 18 -, year = 1997 -, pages = "217--228" -, update = "97.11 smid" +, author = "L. P. Chew and S. Fortune" +, title = "Sorting helps for {Voronoi} diagrams" +, journal = "Algorithmica" +, volume = 18 +, year = 1997 +, pages = "217--228" +, update = "97.11 smid" } @inproceedings{cghkkk-gpmem-93 -, author = "L. P. Chew and M. T. Goodrich and D. P. Huttenlocher and K. Kedem and J. M. Kleinberg and D. Kravets" -, title = "Geometric pattern matching under {Euclidean} motion" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "151--156" -, precedes = "cghkkk-gpmem-97" -, cites = "ast-apsgo-92, abb-amps-91, ag-mrpc-92, amww-cssgo-88, aiit-mlcop-90, achkm-ecmcp-90, akmsw-mpnrc-91, ab-pptr-88, c-tsplt-91a, cegs-dwclp-92, c-sdsno-87, c-pms-88, csss-otass-89, clr-ia-90, e-acg-87, gjpt-tsp-78, gs-dfbt-78, hs-adaps-92, hks-uevsi-91, isi-mgftc-89, m-apcad-83, r-lbchd-93, ck-igpmp-92, hkk-dvdmh-92i, ps-cgi-85, t-dsna-83, ZZZ" -, update = "99.03 forrest, 98.11 bibrelex, 97.03 devillers, 94.01 rote, 93.09 milone+mitchell" +, author = "L. P. Chew and M. T. Goodrich and D. P. Huttenlocher and K. Kedem and J. M. Kleinberg and D. Kravets" +, title = "Geometric pattern matching under {Euclidean} motion" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "151--156" +, precedes = "cghkkk-gpmem-97" +, cites = "ast-apsgo-92, abb-amps-91, ag-mrpc-92, amww-cssgo-88, aiit-mlcop-90, achkm-ecmcp-90, akmsw-mpnrc-91, ab-pptr-88, c-tsplt-91a, cegs-dwclp-92, c-sdsno-87, c-pms-88, csss-otass-89, clr-ia-90, e-acg-87, gjpt-tsp-78, gs-dfbt-78, hs-adaps-92, hks-uevsi-91, isi-mgftc-89, m-apcad-83, r-lbchd-93, ck-igpmp-92, hkk-dvdmh-92i, ps-cgi-85, t-dsna-83, ZZZ" +, update = "99.03 forrest, 98.11 bibrelex, 97.03 devillers, 94.01 rote, 93.09 milone+mitchell" } @article{cghkkk-gpmem-97 -, author = "L. P. Chew and M. T. Goodrich and D. P. Huttenlocher and K. Kedem and J. M. Kleinberg and D. Kravets" -, title = "Geometric pattern matching under {Euclidean} motion" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "113--124" -, succeeds = "cghkkk-gpmem-93" -, update = "97.03 devillers" +, author = "L. P. Chew and M. T. Goodrich and D. P. Huttenlocher and K. Kedem and J. M. Kleinberg and D. Kravets" +, title = "Geometric pattern matching under {Euclidean} motion" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "113--124" +, succeeds = "cghkkk-gpmem-93" +, update = "97.03 devillers" } @article{ck-cppop-93 -, author = "L. P. Chew and K. Kedem" -, title = "A convex polygon among polygonal obstacles: {Placement} and high-clearance motion" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "59--89" -, succeeds = "ck-plscc-89" -, update = "96.09 devillers, 95.05 agarwal" +, author = "L. P. Chew and K. Kedem" +, title = "A convex polygon among polygonal obstacles: {Placement} and high-clearance motion" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "59--89" +, succeeds = "ck-plscc-89" +, update = "96.09 devillers, 95.05 agarwal" } @article{ck-glbmh-98 -, author = "L. Paul Chew and Klara Kedem" -, title = "Getting around a lower bound for the minimum {Hausdorff} distance" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "197--202" -, update = "98.11 devillers" +, author = "L. Paul Chew and Klara Kedem" +, title = "Getting around a lower bound for the minimum {Hausdorff} distance" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "197--202" +, update = "98.11 devillers" } @inproceedings{ck-hcmpc-89 -, author = "L. P. Chew and K. Kedem" -, title = "High-clearance motion planning for a convex polygon among polygonal obstacles" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 20 -, succeeds = "ck-hcmpc-90" +, author = "L. P. Chew and K. Kedem" +, title = "High-clearance motion planning for a convex polygon among polygonal obstacles" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 20 +, succeeds = "ck-hcmpc-90" } @techreport{ck-hcmpc-90 -, author = "L. P. Chew and K. Kedem" -, title = "High-clearance motion planning for a convex polygon among polygonal obstacles" -, type = "Technical {Report}" -, number = "184/90" -, institution = "Eskenasy Inst. Comput. Sci., Tel-Aviv Univ." -, address = "Tel-Aviv, Israel" -, year = 1990 -, keywords = "robotics, motion planning, Voronoi diagrams" -, comments = "Also Cornell Technical Report TR~90-1133" -, precedes = "ck-hcmpc-89" +, author = "L. P. Chew and K. Kedem" +, title = "High-clearance motion planning for a convex polygon among polygonal obstacles" +, type = "Technical {Report}" +, number = "184/90" +, institution = "Eskenasy Inst. Comput. Sci., Tel-Aviv Univ." +, address = "Tel-Aviv, Israel" +, year = 1990 +, keywords = "robotics, motion planning, Voronoi diagrams" +, comments = "Also Cornell Technical Report TR~90-1133" +, precedes = "ck-hcmpc-89" } @inproceedings{ck-igpmp-92 -, author = "L. P. Chew and K. Kedem" -, title = "Improvements on geometric pattern matching problems" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "318--325" +, author = "L. P. Chew and K. Kedem" +, title = "Improvements on geometric pattern matching problems" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "318--325" } @inproceedings{ck-plscc-89 -, author = "L. P. Chew and K. Kedem" -, title = "Placing the largest similar copy of a convex polygon among polygonal obstacles" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "167--174" -, precedes = "ck-cppop-93" -, cites = "ab-pptr-88, ass-sulbl-89, a-dcg-83, cd-vdbcd-85, c-pcp-83, c-cdt-89, f-fapct-85, f-savd-87, ks-empac-90, ll-gdtpg-86, ls-pptmc-87, scklps-gadss-86, y-oavds-87, ZZZ" -, update = "98.03 bibrelex, 94.05 devillers" +, author = "L. P. Chew and K. Kedem" +, title = "Placing the largest similar copy of a convex polygon among polygonal obstacles" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "167--174" +, precedes = "ck-cppop-93" +, cites = "ab-pptr-88, ass-sulbl-89, a-dcg-83, cd-vdbcd-85, c-pcp-83, c-cdt-89, f-fapct-85, f-savd-87, ks-empac-90, ll-gdtpg-86, ls-pptmc-87, scklps-gadss-86, y-oavds-87, ZZZ" +, update = "98.03 bibrelex, 94.05 devillers" } @techreport{cks-ocpad-94t -, author = "L. P. Chew and K. Kedem and S. Schirra" -, title = "On characteristic points and approximate decision algorithms for the minimum {Hausdorff} distance" -, type = "Report" -, number = "MPI-I-94-150" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "95.01 smid" +, author = "L. P. Chew and K. Kedem and S. Schirra" +, title = "On characteristic points and approximate decision algorithms for the minimum {Hausdorff} distance" +, type = "Report" +, number = "MPI-I-94-150" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "95.01 smid" } @inproceedings{ckstw-vdl3s-95 -, author = "L. Paul Chew and Klara Kedem and Micha Sharir and Boaz Tagansky and Emo Welzl" -, title = "Voronoi Diagrams of Lines in 3-Space Under Polyhedral Convex Distance Functions" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "197--204" -, precedes = "ckstw-vdl3s-98" -, update = "00.03 bibrelex, 96.09 agarwal, 96.05 mitchell" +, author = "L. Paul Chew and Klara Kedem and Micha Sharir and Boaz Tagansky and Emo Welzl" +, title = "Voronoi Diagrams of Lines in 3-Space Under Polyhedral Convex Distance Functions" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "197--204" +, precedes = "ckstw-vdl3s-98" +, update = "00.03 bibrelex, 96.09 agarwal, 96.05 mitchell" } @article{ckstw-vdl3s-98 -, author = "L. Paul Chew and Klara Kedem and Micha Sharir and Boaz Tagansky and Emo Welzl" -, title = "{Voronoi} Diagrams of Lines in 3-Space under Polyhedral Convex Distance Functions" -, journal = "J. Algorithms" -, volume = 29 -, number = 2 -, year = 1998 -, pages = "238--255" -, succeeds = "ckstw-vdl3s-95" -, update = "00.03 bibrelex" +, author = "L. Paul Chew and Klara Kedem and Micha Sharir and Boaz Tagansky and Emo Welzl" +, title = "{Voronoi} Diagrams of Lines in 3-Space under Polyhedral Convex Distance Functions" +, journal = "J. Algorithms" +, volume = 29 +, number = 2 +, year = 1998 +, pages = "238--255" +, succeeds = "ckstw-vdl3s-95" +, update = "00.03 bibrelex" } @techreport{cf-shvd-91 -, author = "P. Chew and S. Fortune" -, title = "Sorting Helps for {Voronoi} Diagrams" -, type = "Manuscript" -, institution = "AT\&T Bell Laboratories" -, year = 1991 -, update = "97.11 bibrelex" +, author = "P. Chew and S. Fortune" +, title = "Sorting Helps for {Voronoi} Diagrams" +, type = "Manuscript" +, institution = "AT\&T Bell Laboratories" +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{cc-rhesc-89 -, author = "D. Chhajed and V. Chandru" -, title = "Rectilinear hull, efficient sets, convex hull: relationship and algorithms" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 37 +, author = "D. Chhajed and V. Chandru" +, title = "Rectilinear hull, efficient sets, convex hull: relationship and algorithms" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 37 } @inproceedings{c-mnrpd-88 -, author = "G. C.-P. Chi" -, title = "Method for net representation with polygon decomposition" -, booktitle = "Proc. Internat. Conf. Computer-Aided Design" -, year = 1988 -, pages = "222--225" -, keywords = "polygon, decomposition" -, update = "95.09 korneenko" +, author = "G. C.-P. Chi" +, title = "Method for net representation with polygon decomposition" +, booktitle = "Proc. Internat. Conf. Computer-Aided Design" +, year = 1988 +, pages = "222--225" +, keywords = "polygon, decomposition" +, update = "95.09 korneenko" } @phdthesis{c-edt-92 -, author = "C.-S. Chiang" -, title = "The {Euclidean} distance transform" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, month = aug -, year = 1992 -, note = "Report CSD-TR 92-050" -, keywords = "doctoral thesis, geometric transformations, medial axis, two-dimensional, three-dimensional" -, update = "93.05 jones" -, abstract = "The medial-axis transform (MAT), also called skeleton, is a +, author = "C.-S. Chiang" +, title = "The {Euclidean} distance transform" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, month = aug +, year = 1992 +, note = "Report CSD-TR 92-050" +, keywords = "doctoral thesis, geometric transformations, medial axis, two-dimensional, three-dimensional" +, update = "93.05 jones" +, abstract = "The medial-axis transform (MAT), also called skeleton, is a shape abstraction proposed by computer vision, and has a number of important engineering applications such as finite-element mesh generation. The theory for the MAT of 2D solids is investigated. We prove the uniqueness, @@ -35063,1815 +35063,1815 @@ @phdthesis{c-edt-92 } @article{c-epioe-98 -, author = "Yi-Jen Chiang" -, title = "Experiments on the Practical {I/O} Efficiency of Geometric Algorithms: {Distribution} Sweep Versus Plane Sweep" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, number = 4 -, year = 1998 -, pages = "211--236" -, succeeds = "c-epioe-95" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Yi-Jen Chiang" +, title = "Experiments on the Practical {I/O} Efficiency of Geometric Algorithms: {Distribution} Sweep Versus Plane Sweep" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, number = 4 +, year = 1998 +, pages = "211--236" +, succeeds = "c-epioe-95" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{c-epioe-95 -, author = "Yi-Jen Chiang" -, title = "Experiments on the Practical {I/O} Efficiency of Geometric Algorithms: {Distribution} Sweep vs. Plane Sweep" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "346--357" -, precedes = "c-epioe-98" -, update = "99.07 bibrelex, 98.03 mitchell, 96.01 smid, 95.05 mitchell" +, author = "Yi-Jen Chiang" +, title = "Experiments on the Practical {I/O} Efficiency of Geometric Algorithms: {Distribution} Sweep vs. Plane Sweep" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "346--357" +, precedes = "c-epioe-98" +, update = "99.07 bibrelex, 98.03 mitchell, 96.01 smid, 95.05 mitchell" } @inproceedings{cggtvv-emga-95 -, author = "Y.-J. Chiang and M. T. Goodrich and E. F. Grove and R. Tamassia and D. E. Vengroff and J. S. Vitter" -, title = "External-Memory Graph Algorithms" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "139--149" -, url = "https://www.cs.brown.edu/cgc/papers/cggtvv-emga-95.ps.gz" -, update = "97.03 tamassia, 95.05 tamassia, 95.01 tamassia" +, author = "Y.-J. Chiang and M. T. Goodrich and E. F. Grove and R. Tamassia and D. E. Vengroff and J. S. Vitter" +, title = "External-Memory Graph Algorithms" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "139--149" +, url = "https://www.cs.brown.edu/cgc/papers/cggtvv-emga-95.ps.gz" +, update = "97.03 tamassia, 95.05 tamassia, 95.01 tamassia" } @inproceedings{cklm-gacdr-97 -, author = "Y.-J. Chiang and J. T. Klosowski and C. Lee and Joseph S. B. Mitchell" -, title = "Geometric Algorithms for Conflict Detection/Resolution in ATM" -, booktitle = "36th IEEE Conference on Decision and Control" -, site = "San Diego, CA" -, month = dec -, year = 1997 -, pages = "1835--1840" -, keywords = "air traffic control, conflict resolution, nearest neighbors" -, update = "98.03 mitchell" +, author = "Y.-J. Chiang and J. T. Klosowski and C. Lee and Joseph S. B. Mitchell" +, title = "Geometric Algorithms for Conflict Detection/Resolution in ATM" +, booktitle = "36th IEEE Conference on Decision and Control" +, site = "San Diego, CA" +, month = dec +, year = 1997 +, pages = "1835--1840" +, keywords = "air traffic control, conflict resolution, nearest neighbors" +, update = "98.03 mitchell" } @techreport{cm-tpesp-97 -, author = "Yi-Jen Chiang and Joseph S. B. Mitchell" -, title = "Two-Point {Euclidean} Shortest Path Queries in the Plane" -, type = "Technical {Report}" -, institution = "University at Stony Brook" -, year = 1997 -, keywords = "all-pairs shortest paths, geodesic paths, point location, shortest path maps, visibility" -, update = "98.03 mitchell" +, author = "Yi-Jen Chiang and Joseph S. B. Mitchell" +, title = "Two-Point {Euclidean} Shortest Path Queries in the Plane" +, type = "Technical {Report}" +, institution = "University at Stony Brook" +, year = 1997 +, keywords = "all-pairs shortest paths, geodesic paths, point location, shortest path maps, visibility" +, update = "98.03 mitchell" } @inproceedings{cm-tpesp-98 -, author = "Yi-Jen Chiang and Joseph S. B. Mitchell" -, title = "Two-Point {Euclidean} Shortest Path Queries in the Plane" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "55--57" -, update = "00.03 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "Yi-Jen Chiang and Joseph S. B. Mitchell" +, title = "Two-Point {Euclidean} Shortest Path Queries in the Plane" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "55--57" +, update = "00.03 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @inproceedings{cpt-uadpl-93 -, author = "Y.-J. Chiang and F. P. Preparata and R. Tamassia" -, title = "A Unified Approach to Dynamic Point Location, Ray Shooting, and Shortest Paths in Planar Maps" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "44--53" -, precedes = "cpt-uadpl-96" -, update = "96.05 smid, 93.05 smid" +, author = "Y.-J. Chiang and F. P. Preparata and R. Tamassia" +, title = "A Unified Approach to Dynamic Point Location, Ray Shooting, and Shortest Paths in Planar Maps" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "44--53" +, precedes = "cpt-uadpl-96" +, update = "96.05 smid, 93.05 smid" } @article{cpt-uadpl-96 -, author = "Y.-J. Chiang and F. P. Preparata and R. Tamassia" -, title = "A Unified Approach to Dynamic Point Location, Ray Shooting, and Shortest Paths in Planar Maps" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "207--233" -, url = "https://www.cs.brown.edu/cgc/papers/cpt-uadpl-96.ps.gz" -, succeeds = "cpt-uadpl-93" -, update = "97.03 tamassia, 96.05 smid, 95.01 tamassia" +, author = "Y.-J. Chiang and F. P. Preparata and R. Tamassia" +, title = "A Unified Approach to Dynamic Point Location, Ray Shooting, and Shortest Paths in Planar Maps" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "207--233" +, url = "https://www.cs.brown.edu/cgc/papers/cpt-uadpl-96.ps.gz" +, succeeds = "cpt-uadpl-93" +, update = "97.03 tamassia, 96.05 smid, 95.01 tamassia" } @inproceedings{cs-ioie-97 -, author = "Y.-J. Chiang and C. T. Silva" -, title = "{I/O} Optimal Isosurface Extraction" -, booktitle = "Proc. IEEE Visualization" -, site = "Phoenix, AZ" -, year = 1997 -, pages = "293--300" -, update = "98.03 mitchell" +, author = "Y.-J. Chiang and C. T. Silva" +, title = "{I/O} Optimal Isosurface Extraction" +, booktitle = "Proc. IEEE Visualization" +, site = "Phoenix, AZ" +, year = 1997 +, pages = "293--300" +, update = "98.03 mitchell" } @techreport{cs-ielsv-97 -, author = "Y.-J. Chiang and C. T. Silva" -, title = "Isosurface Extraction in Large Scientific Visualization Applications Using the {I/O}-filter Technique" -, type = "Manuscript" -, institution = "University at Stony Brook" -, month = nov -, year = 1997 -, update = "98.03 mitchell" +, author = "Y.-J. Chiang and C. T. Silva" +, title = "Isosurface Extraction in Large Scientific Visualization Applications Using the {I/O}-filter Technique" +, type = "Manuscript" +, institution = "University at Stony Brook" +, month = nov +, year = 1997 +, update = "98.03 mitchell" } @techreport{css-iocie-98 -, author = "Yi-Jen Chiang and Claudio T. Silva and William Schroeder" -, title = "Interactive Out-of-Core Isosurface Extraction" -, institution = "University at Stony Brook" -, year = 1998 -, comments = "Submitted for publication" -, update = "98.07 mitchell" +, author = "Yi-Jen Chiang and Claudio T. Silva and William Schroeder" +, title = "Interactive Out-of-Core Isosurface Extraction" +, institution = "University at Stony Brook" +, year = 1998 +, comments = "Submitted for publication" +, update = "98.07 mitchell" } @techreport{ct-dacg-91 -, author = "Y.-J. Chiang and R. Tamassia" -, title = "Dynamic algorithms in computational geometry" -, type = "Report" -, number = "CS-91-24" -, institution = "Comput. Sci. Dept., Brown Univ." -, address = "Providence, RI" -, year = 1991 -, keywords = "survey paper" +, author = "Y.-J. Chiang and R. Tamassia" +, title = "Dynamic algorithms in computational geometry" +, type = "Report" +, number = "CS-91-24" +, institution = "Comput. Sci. Dept., Brown Univ." +, address = "Providence, RI" +, year = 1991 +, keywords = "survey paper" } @article{ct-dacg-92 -, author = "Y.-J. Chiang and R. Tamassia" -, title = "Dynamic algorithms in computational geometry" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1412--1434" -, keywords = "survey paper" +, author = "Y.-J. Chiang and R. Tamassia" +, title = "Dynamic algorithms in computational geometry" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1412--1434" +, keywords = "survey paper" } @inproceedings{ct-dtmpp-91 -, author = "Y.-J. Chiang and R. Tamassia" -, title = "Dynamization of the trapezoid method for planar point location" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "61--70" -, keywords = "point location, subdivision, dynamizing data structures" -, precedes = "ct-dtmpp-92" -, cites = "bst-bst-85, cj-nrdpp-90, ct-dacg-91, egs-oplms-86, f-zepud-85, fmn-dgds-85, gt-dtdpl-91, k-osps-83, lp-lppsi-77, m-pst-85, m-dsa-84, ol-mcp-81, o-ddds-83, o-rssls-85, p-nappl-81, ps-cgi-85, pt-fdplm-89, pt-dpplo-90, st-pplup-86, t-irmdp-91, ZZZ" -, update = "97.11 bibrelex" +, author = "Y.-J. Chiang and R. Tamassia" +, title = "Dynamization of the trapezoid method for planar point location" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "61--70" +, keywords = "point location, subdivision, dynamizing data structures" +, precedes = "ct-dtmpp-92" +, cites = "bst-bst-85, cj-nrdpp-90, ct-dacg-91, egs-oplms-86, f-zepud-85, fmn-dgds-85, gt-dtdpl-91, k-osps-83, lp-lppsi-77, m-pst-85, m-dsa-84, ol-mcp-81, o-ddds-83, o-rssls-85, p-nappl-81, ps-cgi-85, pt-fdplm-89, pt-dpplo-90, st-pplup-86, t-irmdp-91, ZZZ" +, update = "97.11 bibrelex" } @article{ct-dtmpp-92 -, author = "Y.-J. Chiang and R. Tamassia" -, title = "Dynamization of the trapezoid method for planar point location in monotone subdivisions" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "311--333" -, keywords = "planar point location, dynamic data structures, monotone subdivision, analysis of algorithm" -, succeeds = "ct-dtmpp-91" -, update = "94.05 tamassia" +, author = "Y.-J. Chiang and R. Tamassia" +, title = "Dynamization of the trapezoid method for planar point location in monotone subdivisions" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "311--333" +, keywords = "planar point location, dynamic data structures, monotone subdivision, analysis of algorithm" +, succeeds = "ct-dtmpp-91" +, update = "94.05 tamassia" } @techreport{ct-ospml-94t -, author = "Y.-J. Chiang and R. Tamassia" -, title = "Optimal Shortest Path and Minimum-Link Path Queries Between Two Convex Polygons in the Presence of Obstacles" -, type = "Report" -, number = "CS-94-03" -, institution = "Comput. Sci. Dept., Brown Univ." -, address = "Providence, RI" -, year = 1994 -, update = "94.05 tamassia" +, author = "Y.-J. Chiang and R. Tamassia" +, title = "Optimal Shortest Path and Minimum-Link Path Queries Between Two Convex Polygons in the Presence of Obstacles" +, type = "Report" +, number = "CS-94-03" +, institution = "Comput. Sci. Dept., Brown Univ." +, address = "Providence, RI" +, year = 1994 +, update = "94.05 tamassia" } @article{ct-ospml-97 -, author = "Y.-J. Chiang and R. Tamassia" -, title = "Optimal Shortest Path and Minimum-Link Path Queries Between Two Convex Polygons Inside a Simple Polygonal Obstacle" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "85--121" -, url = "https://www.cs.brown.edu/cgc/papers/ct-ospml-.ps.gz" -, keywords = "Shortest Path, Minimum-Link Path, dynamic algorithm, CGC, Brown" -, succeeds = "ct-ospml-94i" -, update = "98.07 mitchell, 97.11 bibrelex, 97.07 devillers, 97.03 tamassia, 96.09 tamassia, 95.01 tamassia" +, author = "Y.-J. Chiang and R. Tamassia" +, title = "Optimal Shortest Path and Minimum-Link Path Queries Between Two Convex Polygons Inside a Simple Polygonal Obstacle" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "85--121" +, url = "https://www.cs.brown.edu/cgc/papers/ct-ospml-.ps.gz" +, keywords = "Shortest Path, Minimum-Link Path, dynamic algorithm, CGC, Brown" +, succeeds = "ct-ospml-94i" +, update = "98.07 mitchell, 97.11 bibrelex, 97.07 devillers, 97.03 tamassia, 96.09 tamassia, 95.01 tamassia" } @inproceedings{ct-ospml-94i -, author = "Y.-J. Chiang and R. Tamassia" -, title = "Optimal Shortest Path and Minimum-Link Path Queries in the Presence of Obstacles" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, nickname = "ESA '94" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "266--277" -, keywords = "Shortest Path, Minimum-Link Path, dynamic algorithm" -, update = "95.01 tamassia" +, author = "Y.-J. Chiang and R. Tamassia" +, title = "Optimal Shortest Path and Minimum-Link Path Queries in the Presence of Obstacles" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, nickname = "ESA '94" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "266--277" +, keywords = "Shortest Path, Minimum-Link Path, dynamic algorithm" +, update = "95.01 tamassia" } @inproceedings{cnytf-ahmgs-96 -, author = "N. Chiba and I. Nisbigaki and Y. Yamasbita and C. Takizawa and K. Fujisbiro" -, title = "Automatic hexahedral mesh generation system based on shape-recognition and boundary-fit method" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "281--290" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "N. Chiba and I. Nisbigaki and Y. Yamasbita and C. Takizawa and K. Fujisbiro" +, title = "Automatic hexahedral mesh generation system based on shape-recognition and boundary-fit method" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "281--290" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{cns-ampg-79 -, author = "N. Chiba and I. Nishioka and I. Shirakawa" -, title = "An Algorithm of Maximal Planarization of Graphs" -, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" -, year = 1979 -, pages = "649--652" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "N. Chiba and I. Nishioka and I. Shirakawa" +, title = "An Algorithm of Maximal Planarization of Graphs" +, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" +, year = 1979 +, pages = "649--652" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{cn-asla-85 -, author = "N. Chiba and T. Nishizeki" -, title = "Arboricity and subgraph listing algorithms" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "210--223" -, update = "97.11 bibrelex" +, author = "N. Chiba and T. Nishizeki" +, title = "Arboricity and subgraph listing algorithms" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "210--223" +, update = "97.11 bibrelex" } @article{cn-hcpls-89 -, author = "N. Chiba and T. Nishizeki" -, title = "The {Hamiltonian} cycle problem is linear-time solvable for 4-connected planar graphs" -, journal = "J. Algorithms" -, volume = 10 -, number = 2 -, month = jun -, year = 1989 -, pages = "187--211" -, update = "98.11 bibrelex" +, author = "N. Chiba and T. Nishizeki" +, title = "The {Hamiltonian} cycle problem is linear-time solvable for 4-connected planar graphs" +, journal = "J. Algorithms" +, volume = 10 +, number = 2 +, month = jun +, year = 1989 +, pages = "187--211" +, update = "98.11 bibrelex" } @article{cnao-laepg-85 -, author = "N. Chiba and T. Nishizeki and S. Abe and T. Ozawa" -, title = "A Linear Algorithm for Embedding Planar Graphs Using {PQ}-Trees" -, journal = "J. Comput. Syst. Sci." -, volume = 30 -, number = 1 -, year = 1985 -, pages = "54--76" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "N. Chiba and T. Nishizeki and S. Abe and T. Ozawa" +, title = "A Linear Algorithm for Embedding Planar Graphs Using {PQ}-Trees" +, journal = "J. Comput. Syst. Sci." +, volume = 30 +, number = 1 +, year = 1985 +, pages = "54--76" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{cns-l5cap-81 -, author = "N. Chiba and T. Nishizeki and N. Saito" -, title = "A linear $5$-coloring algorithm of planar graphs" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "317--327" -, update = "98.07 bibrelex" +, author = "N. Chiba and T. Nishizeki and N. Saito" +, title = "A linear $5$-coloring algorithm of planar graphs" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "317--327" +, update = "98.07 bibrelex" } @article{con-dpgn-85 -, author = "N. Chiba and K. Onoguchi and T. Nishizeki" -, title = "Drawing Planar Graphs Nicely" -, journal = "Acta Inform." -, volume = 22 -, year = 1985 -, pages = "187--201" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "N. Chiba and K. Onoguchi and T. Nishizeki" +, title = "Drawing Planar Graphs Nicely" +, journal = "Acta Inform." +, volume = 22 +, year = 1985 +, pages = "187--201" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @incollection{cyn-lacdp-84 -, author = "N. Chiba and T. Yamanouchi and T. Nishizeki" -, title = "Linear Algorithms for Convex Drawings of Planar Graphs" -, editor = "J. A. Bondy and U. S. R. Murty" -, booktitle = "Progress in Graph Theory" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1984 -, pages = "153--173" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "N. Chiba and T. Yamanouchi and T. Nishizeki" +, title = "Linear Algorithms for Convex Drawings of Planar Graphs" +, editor = "J. A. Bondy and U. S. R. Murty" +, booktitle = "Progress in Graph Theory" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1984 +, pages = "153--173" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ca-mrsro-89 -, author = "C. Chien and J. Aggarwal" -, title = "Model reconstruction and shape recognition from occluding contours" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 11 -, year = 1989 -, pages = "372--389" -, update = "98.11 bibrelex" +, author = "C. Chien and J. Aggarwal" +, title = "Model reconstruction and shape recognition from occluding contours" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 11 +, year = 1989 +, pages = "372--389" +, update = "98.11 bibrelex" } @article{ca-vsort-86 -, author = "C. H. Chien and J. K. Aggarwal" -, title = "Volume/surface octrees for the representation of three-dimensional objects" -, journal = "Comput. Vision Graph. Image Process." -, volume = 36 -, year = 1986 -, pages = "100--113" -, update = "98.11 bibrelex" +, author = "C. H. Chien and J. K. Aggarwal" +, title = "Volume/surface octrees for the representation of three-dimensional objects" +, journal = "Comput. Vision Graph. Image Process." +, volume = 36 +, year = 1986 +, pages = "100--113" +, update = "98.11 bibrelex" } @inproceedings{cs-sglb-95 -, author = "Hank Chien and William Steiger" -, title = "Some Geometric Lower Bounds" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "72--81" -, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "Hank Chien and William Steiger" +, title = "Some Geometric Lower Bounds" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "72--81" +, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @article{csw-uacpc-85 -, author = "F. Chin and J. Sampson and C. A. Wang" -, title = "A unifying approach for a class of problems in the computational geometry of polygons" -, journal = "Visual Comput." -, volume = 1 -, year = 1985 -, pages = "124--132" +, author = "F. Chin and J. Sampson and C. A. Wang" +, title = "A unifying approach for a class of problems in the computational geometry of polygons" +, journal = "Visual Comput." +, volume = 1 +, year = 1985 +, pages = "124--132" } @inproceedings{csw-fmasp-95 -, author = "Francis Chin and Jack Snoeyink and Cao-An Wang" -, title = "Finding the Medial Axis of a Simple Polygon in Linear Time" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "382--391" -, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "Francis Chin and Jack Snoeyink and Cao-An Wang" +, title = "Finding the Medial Axis of a Simple Polygon in Linear Time" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "382--391" +, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @article{csw-fmasp-99 -, author = "F. Chin and J. Snoeyink and C. A. Wang" -, title = "Finding the Medial Axis of a Simple Polygon in Linear Time" -, journal = "Discrete Comput. Geom." -, volume = 21 -, number = 3 -, year = 1999 -, pages = "405--420" -, update = "99.07 held" +, author = "F. Chin and J. Snoeyink and C. A. Wang" +, title = "Finding the Medial Axis of a Simple Polygon in Linear Time" +, journal = "Discrete Comput. Geom." +, volume = 21 +, number = 3 +, year = 1999 +, pages = "405--420" +, update = "99.07 held" } @article{cw-fcdtc-98 -, author = "F. Chin and C. A. Wang" -, title = "Finding the constrained {Delaunay} triangulation and constrained {Voronoi} diagram of a simple polygon in linear time" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1998 -, pages = "471--486" -, update = "99.07 smid" +, author = "F. Chin and C. A. Wang" +, title = "Finding the constrained {Delaunay} triangulation and constrained {Voronoi} diagram of a simple polygon in linear time" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1998 +, pages = "471--486" +, update = "99.07 smid" } @article{cw-mvdbs-84 -, author = "F. Chin and C. A. Wang" -, title = "Minimum vertex distance between separable convex polygons" -, journal = "Inform. Process. Lett." -, volume = 18 -, year = 1984 -, pages = "41--45" +, author = "F. Chin and C. A. Wang" +, title = "Minimum vertex distance between separable convex polygons" +, journal = "Inform. Process. Lett." +, volume = 18 +, year = 1984 +, pages = "41--45" } @article{cw-oaimd-83 -, author = "F. Chin and C. A. Wang" -, title = "Optimal Algorithms for the Intersection and the Minimum Distance Problems between Planar Polygons" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, number = 12 -, year = 1983 -, pages = "1203--1207" -, update = "93.09 held" +, author = "F. Chin and C. A. Wang" +, title = "Optimal Algorithms for the Intersection and the Minimum Distance Problems between Planar Polygons" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, number = 12 +, year = 1983 +, pages = "1203--1207" +, update = "93.09 held" } @article{ckl-eicrs-84 -, author = "F. Y. Chin and P. Kossowki and S. C. Loh" -, title = "Efficient interference control for range sum queries" -, journal = "Theoret. Comput. Sci." -, volume = 32 -, year = 1984 -, pages = "77--86" +, author = "F. Y. Chin and P. Kossowki and S. C. Loh" +, title = "Efficient interference control for range sum queries" +, journal = "Theoret. Comput. Sci." +, volume = 32 +, year = 1984 +, pages = "77--86" } @inproceedings{cw-dgtp3-95 -, author = "Francis Y. Chin and Cao An Wang" -, title = "On the Difficulty of Greedy Tetrahedralization of Points in $3$-D" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "285--290" -, update = "95.09 jones" +, author = "Francis Y. Chin and Cao An Wang" +, title = "On the Difficulty of Greedy Tetrahedralization of Points in $3$-D" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "285--290" +, update = "95.09 jones" } @article{cf-fopsg-92 -, author = "Norman Chin and Steven Feiner" -, title = "Fast object-precision shadow generation for areal light sources using {BSP} trees" -, journal = "Comput. Graph." -, volume = 25 -, month = mar -, year = 1992 -, pages = "21--30" -, note = "Proc. 1992 Sympos. Interactive 3D Graphics" -, keywords = "shadow volume, area light source, penumbra, umbra" -, update = "98.07 bibrelex, 97.07 agarwal" +, author = "Norman Chin and Steven Feiner" +, title = "Fast object-precision shadow generation for areal light sources using {BSP} trees" +, journal = "Comput. Graph." +, volume = 25 +, month = mar +, year = 1992 +, pages = "21--30" +, note = "Proc. 1992 Sympos. Interactive 3D Graphics" +, keywords = "shadow volume, area light source, penumbra, umbra" +, update = "98.07 bibrelex, 97.07 agarwal" } @inproceedings{cf-nrtsg-89 -, author = "Norman Chin and Steven Feiner" -, title = "Near Real-Time Shadow Generation Using {BSP} Trees" -, booktitle = "Proc. SIGGRAPH '89" -, volume = 23 -, number = 3 -, publisher = "ACM SIGGRAPH" -, address = "New York" -, month = aug -, year = 1989 -, pages = "99--106" -, update = "98.11 bibrelex, 97.07 agarwal, 97.03 schwarzkopf" +, author = "Norman Chin and Steven Feiner" +, title = "Near Real-Time Shadow Generation Using {BSP} Trees" +, booktitle = "Proc. SIGGRAPH '89" +, volume = 23 +, number = 3 +, publisher = "ACM SIGGRAPH" +, address = "New York" +, month = aug +, year = 1989 +, pages = "99--106" +, update = "98.11 bibrelex, 97.07 agarwal, 97.03 schwarzkopf" } @article{cd-mbrrv-86 -, author = "R. T. Chin and C. R. Dyer" -, title = "Model-based recognition in robot vision" -, journal = "ACM Comput. Surv." -, volume = 18 -, year = 1986 -, pages = "67--108" -, update = "97.11 bibrelex" +, author = "R. T. Chin and C. R. Dyer" +, title = "Model-based recognition in robot vision" +, journal = "ACM Comput. Surv." +, volume = 18 +, year = 1986 +, pages = "67--108" +, update = "97.11 bibrelex" } @inproceedings{cn-owr-86 -, author = "W. Chin and S. Ntafos" -, title = "Optimum watchman routes" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "24--33" -, precedes = "cn-owr-88" -, cites = "at-eadps-81, c-ctpg-75, cw-oaimd-83, e-cedbt-85, eow-sgrag-84, f-spcwt-78, gj-cigtn-79, gjpt-tsp-78, kkk-tgrfw-83, ll-ccagp-86, lp-esppr-84, ln-prpss-91, l-dprcq-85, o-aprag-83, o-gnfmg-83, p-etspi-77, s-oadrp-82, ZZZ" -, update = "97.11 bibrelex" +, author = "W. Chin and S. Ntafos" +, title = "Optimum watchman routes" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "24--33" +, precedes = "cn-owr-88" +, cites = "at-eadps-81, c-ctpg-75, cw-oaimd-83, e-cedbt-85, eow-sgrag-84, f-spcwt-78, gj-cigtn-79, gjpt-tsp-78, kkk-tgrfw-83, ll-ccagp-86, lp-esppr-84, ln-prpss-91, l-dprcq-85, o-aprag-83, o-gnfmg-83, p-etspi-77, s-oadrp-82, ZZZ" +, update = "97.11 bibrelex" } @article{cn-owr-88 -, author = "W. Chin and S. Ntafos" -, title = "Optimum watchman routes" -, journal = "Inform. Process. Lett." -, volume = 28 -, year = 1988 -, pages = "39--44" -, succeeds = "cn-owr-86" -, precedes = "cn-wrsp-91" +, author = "W. Chin and S. Ntafos" +, title = "Optimum watchman routes" +, journal = "Inform. Process. Lett." +, volume = 28 +, year = 1988 +, pages = "39--44" +, succeeds = "cn-owr-86" +, precedes = "cn-wrsp-91" } @article{cn-ozkr-89 -, author = "W. Chin and S. Ntafos" -, title = "Optimum zoo-keeper routes" -, journal = "Congr. Numer." -, volume = "??" -, year = 1989 -, update = "98.11 bibrelex" +, author = "W. Chin and S. Ntafos" +, title = "Optimum zoo-keeper routes" +, journal = "Congr. Numer." +, volume = "??" +, year = 1989 +, update = "98.11 bibrelex" } @article{cn-ozr-87 -, author = "W.-P. Chin and S. Ntafos" -, title = "Optimum zookeeper routes" -, journal = "Congr. Numer." -, volume = 58 -, year = 1987 -, pages = "257--266" -, note = "Combinatorics, Graph Theory and Computing. Proc. 20th South-East Conf., Boca Raton" -, keywords = "visibility" -, update = "95.09 korneenko" +, author = "W.-P. Chin and S. Ntafos" +, title = "Optimum zookeeper routes" +, journal = "Congr. Numer." +, volume = 58 +, year = 1987 +, pages = "257--266" +, note = "Combinatorics, Graph Theory and Computing. Proc. 20th South-East Conf., Boca Raton" +, keywords = "visibility" +, update = "95.09 korneenko" } @techreport{cn-swrsp- -, author = "W. P. Chin and S. Ntafos" -, title = "Shortest Watchman Routes in simple polygons" -, type = "Technical Report" -, precedes = "cn-wrsp-91, cn-wrsp-87" -, update = "98.11 bibrelex" +, author = "W. P. Chin and S. Ntafos" +, title = "Shortest Watchman Routes in simple polygons" +, type = "Technical Report" +, precedes = "cn-wrsp-91, cn-wrsp-87" +, update = "98.11 bibrelex" } @article{cn-wrsp-91 -, author = "W.-P. Chin and S. Ntafos" -, title = "Shortest Watchman routes in simple polygons" -, journal = "Discrete Comput. Geom." -, volume = 6 -, number = 1 -, year = 1991 -, pages = "9--31" -, keywords = "visibility" -, succeeds = "cn-owr-88, cn-swrsp-" -, update = "98.11 bibrelex" +, author = "W.-P. Chin and S. Ntafos" +, title = "Shortest Watchman routes in simple polygons" +, journal = "Discrete Comput. Geom." +, volume = 6 +, number = 1 +, year = 1991 +, pages = "9--31" +, keywords = "visibility" +, succeeds = "cn-owr-88, cn-swrsp-" +, update = "98.11 bibrelex" } @techreport{cn-wrsp-87 -, author = "W. P. Chin and S. Ntafos" -, title = "Watchman routes in simple polygons" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Univ. Texas" -, address = "Dallas, TX" -, year = 1987 -, succeeds = "cn-swrsp-" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "W. P. Chin and S. Ntafos" +, title = "Watchman routes in simple polygons" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Univ. Texas" +, address = "Dallas, TX" +, year = 1987 +, succeeds = "cn-swrsp-" +, update = "98.11 bibrelex, 98.03 bibrelex" } @techreport{ckt-cgp-89 -, author = "Y. T. Ching and M. T. Ko and H. Y. Tu" -, title = "On the cruising guard problems" -, type = "Technical {Report}" -, institution = "Inst. Inform. Sci., Academia Sinica" -, address = "Taipei, Taiwan" -, year = 1989 -, update = "97.11 bibrelex" +, author = "Y. T. Ching and M. T. Ko and H. Y. Tu" +, title = "On the cruising guard problems" +, type = "Technical {Report}" +, institution = "Inst. Inform. Sci., Academia Sinica" +, address = "Taipei, Taiwan" +, year = 1989 +, update = "97.11 bibrelex" } @techreport{cl-fdsl-83 -, author = "Y. T. Ching and D. T. Lee" -, title = "Finding the diameter of a set of lines" -, type = "Manuscript" -, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." -, address = "Evanston, IL" -, year = 1983 -, precedes = "cl-fdsl-85" -, update = "95.09 korneenko" +, author = "Y. T. Ching and D. T. Lee" +, title = "Finding the diameter of a set of lines" +, type = "Manuscript" +, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." +, address = "Evanston, IL" +, year = 1983 +, precedes = "cl-fdsl-85" +, update = "95.09 korneenko" } @article{cl-fdsl-85 -, author = "Y. T. Ching and D. T. Lee" -, title = "Finding the diameter of a set of lines" -, journal = "Pattern Recogn. Lett." -, volume = 18 -, number = "3--4" -, year = 1985 -, pages = "249--255" -, succeeds = "cl-fdsl-83" -, update = "95.09 korneenko, 95.01 smid" +, author = "Y. T. Ching and D. T. Lee" +, title = "Finding the diameter of a set of lines" +, journal = "Pattern Recogn. Lett." +, volume = 18 +, number = "3--4" +, year = 1985 +, pages = "249--255" +, succeeds = "cl-fdsl-83" +, update = "95.09 korneenko, 95.01 smid" } @article{cms-ddds-90 -, author = "Y.-T. Ching and K. Mehlhorn and M. Smid" -, title = "Dynamic deferred data structuring" -, journal = "Inform. Process. Lett." -, volume = 35 -, number = 1 -, year = 1990 -, pages = "37--40" -, keywords = "data structuring, deferred data structures" -, update = "00.03 smid, 95.09 korneenko" +, author = "Y.-T. Ching and K. Mehlhorn and M. Smid" +, title = "Dynamic deferred data structuring" +, journal = "Inform. Process. Lett." +, volume = 35 +, number = 1 +, year = 1990 +, pages = "37--40" +, keywords = "data structuring, deferred data structures" +, update = "00.03 smid, 95.09 korneenko" } @book{cs-fctgm-66 -, author = "W. G. Chinn and N. E. Steenrod" -, title = "First Concepts of Topology: The Geometry of Mappings of Segments, Curves, Circles, and Disks" -, publisher = "Mathematical Association of America" -, address = "Washington, DC" -, year = 1966 +, author = "W. G. Chinn and N. E. Steenrod" +, title = "First Concepts of Topology: The Geometry of Mappings of Segments, Curves, Circles, and Disks" +, publisher = "Mathematical Association of America" +, address = "Washington, DC" +, year = 1966 } @inproceedings{cky-ommmu-88 -, author = "A. E. Chiou and M. Khoshnevisan and P. Yeh" -, title = "Optical matrix-matrix multiplication using multicolor four-wave mixing" -, booktitle = "Proc. SPIE" -, volume = 881 -, year = 1988 -, pages = "250--257" -, update = "97.11 bibrelex" +, author = "A. E. Chiou and M. Khoshnevisan and P. Yeh" +, title = "Optical matrix-matrix multiplication using multicolor four-wave mixing" +, booktitle = "Proc. SPIE" +, volume = 881 +, year = 1988 +, pages = "250--257" +, update = "97.11 bibrelex" } @techreport{cg-stssa-83 -, author = "A. Chistov and d. Grigoryev" -, title = "Subexponential-Time Solving Systems of Algebraic Equations I" -, type = "Preprint" -, number = "E-9-83" -, institution = "Steklov Inst." -, year = 1983 -, update = "97.11 bibrelex" +, author = "A. Chistov and d. Grigoryev" +, title = "Subexponential-Time Solving Systems of Algebraic Equations I" +, type = "Preprint" +, number = "E-9-83" +, institution = "Steklov Inst." +, year = 1983 +, update = "97.11 bibrelex" } @article{cw-mpcp-90 -, author = "J.-S. Chiu and J.-S. Wang" -, title = "Monotone polygon containment problem" -, journal = "J. Inform. Process." -, volume = 13 -, number = 4 -, year = 1990 -, pages = "486--493" -, keywords = "monotone polygon, containment" -, update = "95.09 korneenko" +, author = "J.-S. Chiu and J.-S. Wang" +, title = "Monotone polygon containment problem" +, journal = "J. Inform. Process." +, volume = 13 +, number = 4 +, year = 1990 +, pages = "486--493" +, keywords = "monotone polygon, containment" +, update = "95.09 korneenko" } @inproceedings{cw-mpcpu-89 -, author = "J.-S. Chiu and J.-S. Wang" -, title = "Monotone polygon containment problems under translation" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "123--130" -, keywords = "monotone polygons, rectilinear polygons, polygon containment" -, update = "95.09 mitchell" +, author = "J.-S. Chiu and J.-S. Wang" +, title = "Monotone polygon containment problems under translation" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "123--130" +, keywords = "monotone polygons, rectilinear polygons, polygon containment" +, update = "95.09 mitchell" } @incollection{csw-mjs-94 -, author = "Kenneth Chiu and Peter Shirley and Changyaw Wang" -, title = "Multi-Jittered Sampling" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "370--374" -, keywords = "antialiasing, jitter, stochastic sampling" -, update = "94.09 heckbert" -, annote = "Presents a new technique for high quality stochastic +, author = "Kenneth Chiu and Peter Shirley and Changyaw Wang" +, title = "Multi-Jittered Sampling" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "370--374" +, keywords = "antialiasing, jitter, stochastic sampling" +, update = "94.09 heckbert" +, annote = "Presents a new technique for high quality stochastic sampling. This is useful for antialiasing. Contains C code." } @inproceedings{ck-dsffs-83 -, author = "H. Chiyokura and F. Kimura" -, title = "Design of Solids with free-form surfaces" -, booktitle = "Proc. Siggraph" -, site = "Detroit" -, year = 1983 -, pages = "289--298" -, update = "98.03 bibrelex" +, author = "H. Chiyokura and F. Kimura" +, title = "Design of Solids with free-form surfaces" +, booktitle = "Proc. Siggraph" +, site = "Detroit" +, year = 1983 +, pages = "289--298" +, update = "98.03 bibrelex" } @article{cdk-otigc-95 -, author = "B. S. Chlebus and K. Diks and M. Kowaluk" -, title = "$O(\log\log n)$-time integer geometry on the CRCW PRAM" -, journal = "Algorithmica" -, volume = 14 -, year = 1995 -, pages = "52--69" -, update = "95.09 smid" +, author = "B. S. Chlebus and K. Diks and M. Kowaluk" +, title = "$O(\log\log n)$-time integer geometry on the CRCW PRAM" +, journal = "Algorithmica" +, volume = 14 +, year = 1995 +, pages = "52--69" +, update = "95.09 smid" } @article{cf-irtvc-99 -, author = "F. S. Cho and D. Forsyth" -, title = "Interactive Ray Tracing with the Visibility Complex" -, journal = "Computers and Graphics (Special Issue on Visibility - Techniques and Applications)" -, volume = 23 -, number = 5 -, year = 1999 -, pages = "703--717" -, update = "01.04 pocchiola" +, author = "F. S. Cho and D. Forsyth" +, title = "Interactive Ray Tracing with the Visibility Complex" +, journal = "Computers and Graphics (Special Issue on Visibility - Techniques and Applications)" +, volume = 23 +, number = 5 +, year = 1999 +, pages = "703--717" +, update = "01.04 pocchiola" } @article{ckj-csatp-97 -, author = "B. K. Choi and D. H. Kim and R. B. Jerard" -, title = "C-Space Approach to Tool-path Generation for Die and Mould Machining" -, journal = "Comput. Aided Design" -, volume = 29 -, number = 9 -, month = sep -, year = 1997 -, pages = "657--669" -, update = "97.11 held" +, author = "B. K. Choi and D. H. Kim and R. B. Jerard" +, title = "C-Space Approach to Tool-path Generation for Die and Mould Machining" +, journal = "Comput. Aided Design" +, volume = 29 +, number = 9 +, month = sep +, year = 1997 +, pages = "657--669" +, update = "97.11 held" } @article{csyl-tsd3d-88 -, author = "B. K. Choi and H. Y. Shin and Y. I. Yoon and J. W. Lee" -, title = "Triangulation Of Scattered Data In 3d Space" -, journal = "Comput. Aided Design" -, volume = 20 -, number = 5 -, month = jun -, year = 1988 -, pages = "239--248" -, keywords = "three-dimensional triangulation procedure, Thiessen polygonization, optimal partitioning, surface interpolation, 3d space" -, annote = "Incremental algorithm for 3D triangulation. Points are - sorted by angle from a particular point and then joined - to all the visible points. Then switchings are done to - insert constrained edges. (I don't see how this is - possible, because of non-convex quads.) Switchings are - then done to minimize the angle between adjacent - triangles." -, abstract = "Triangular interpolants are widely used to construct - smooth surfaces from scattered data in 3D. To apply - smooth triangular interpolants, the input 3D points - have to be triangulated. An algorithmic procedure for - 3D triangulation is presented. Relevant algorithms and - datastructures are described in detail. Existing - methods of 2D triangulation are based on Thiessen - polygonization, which is an optimal partitioning of a - geometric domain. To obtain an optimal triangular grid - on the domain, the max-min angle criterion is - frequently used. As there is no domain for 3D points, a - new criterion called the smoothness criterion is - proposed. (Edited author abstract). 15 Refs." +, author = "B. K. Choi and H. Y. Shin and Y. I. Yoon and J. W. Lee" +, title = "Triangulation Of Scattered Data In 3d Space" +, journal = "Comput. Aided Design" +, volume = 20 +, number = 5 +, month = jun +, year = 1988 +, pages = "239--248" +, keywords = "three-dimensional triangulation procedure, Thiessen polygonization, optimal partitioning, surface interpolation, 3d space" +, annote = "Incremental algorithm for 3D triangulation. Points are + sorted by angle from a particular point and then joined + to all the visible points. Then switchings are done to + insert constrained edges. (I don't see how this is + possible, because of non-convex quads.) Switchings are + then done to minimize the angle between adjacent + triangles." +, abstract = "Triangular interpolants are widely used to construct + smooth surfaces from scattered data in 3D. To apply + smooth triangular interpolants, the input 3D points + have to be triangulated. An algorithmic procedure for + 3D triangulation is presented. Relevant algorithms and + datastructures are described in detail. Existing + methods of 2D triangulation are based on Thiessen + polygonization, which is an optimal partitioning of a + geometric domain. To obtain an optimal triangular grid + on the domain, the max-min angle criterion is + frequently used. As there is no domain for 3D points, a + new criterion called the smoothness criterion is + proposed. (Edited author abstract). 15 Refs." } @article{ccm-mtmat-97 -, author = "Hyeong In Choi and Sung Woo Choi and Hwan Pyo Moon" -, title = "Mathematical theory of medial axis transform" -, journal = "Pacific Journal of Mathematics" -, volume = 181 -, number = 1 -, year = 1997 -, pages = "57--88" -, update = "01.07 devillers" +, author = "Hyeong In Choi and Sung Woo Choi and Hwan Pyo Moon" +, title = "Mathematical theory of medial axis transform" +, journal = "Pacific Journal of Mathematics" +, volume = 181 +, number = 1 +, year = 1997 +, pages = "57--88" +, update = "01.07 devillers" } @article{ccm-namat-97 -, author = "H. I. Choi and S. W. Choi and H. P. Moon" -, title = "New Algorithm for Medial Axis Transform of Plane Domain" -, journal = "Graph. Models Image Process." -, volume = 59 -, number = 6 -, month = nov -, year = 1997 -, pages = "463--483" -, update = "98.07 held" +, author = "H. I. Choi and S. W. Choi and H. P. Moon" +, title = "New Algorithm for Medial Axis Transform of Plane Domain" +, journal = "Graph. Models Image Process." +, volume = 59 +, number = 6 +, month = nov +, year = 1997 +, pages = "463--483" +, update = "98.07 held" } @article{chmrw-matoc-99 -, author = "H. I. Choi and C. Y. Han and H. P. Moon and K. H. Roh and N. S. Wee" -, title = "Medial Axis Transform and Offset Curves by {Minkowski} {Pythagorean} Hodograph Curves" -, journal = "Comput. Aided Design" -, volume = 31 -, number = 1 -, month = mar -, year = 1999 -, pages = "59--72" -, update = "99.07 held" +, author = "H. I. Choi and C. Y. Han and H. P. Moon and K. H. Roh and N. S. Wee" +, title = "Medial Axis Transform and Offset Curves by {Minkowski} {Pythagorean} Hodograph Curves" +, journal = "Comput. Aided Design" +, volume = 31 +, number = 1 +, month = mar +, year = 1999 +, pages = "59--72" +, update = "99.07 held" } @article{ck-stasr-92 -, author = "H. K. Choi and C. M. Kyung" -, title = "A shadow-testing acceleration scheme for ray tracing" -, journal = "Comput. Aided Design" -, volume = 24 -, number = 2 -, year = 1992 -, pages = "93--104" -, keywords = "ray tracing, computer graphics" -, update = "95.09 korneenko" +, author = "H. K. Choi and C. M. Kyung" +, title = "A shadow-testing acceleration scheme for ray tracing" +, journal = "Comput. Aided Design" +, volume = 24 +, number = 2 +, year = 1992 +, pages = "93--104" +, keywords = "ray tracing, computer graphics" +, update = "95.09 korneenko" } @inproceedings{csy-aesp3-94 -, author = "J. Choi and J. Sellen and C. K. Yap" -, title = "Approximate {Euclidean} Shortest Path in $3$-Space" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "41--48" -, keywords = "ray shooting, octrees, quadtress, simple cover complexity" -, precedes = "csy-aesp3-97" -, cites = "b-fmpee-76, cr-nlbtr-87, c-aaspm-87, egppss-acptc-92, l-vta-50, p-aspmt-85, hs-ecesp-93, y-tegc-93, y-fpaa-93, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex+mitchell, 95.09 agarwal, 94.09 jones, 94.01 jones" +, author = "J. Choi and J. Sellen and C. K. Yap" +, title = "Approximate {Euclidean} Shortest Path in $3$-Space" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "41--48" +, keywords = "ray shooting, octrees, quadtress, simple cover complexity" +, precedes = "csy-aesp3-97" +, cites = "b-fmpee-76, cr-nlbtr-87, c-aaspm-87, egppss-acptc-92, l-vta-50, p-aspmt-85, hs-ecesp-93, y-tegc-93, y-fpaa-93, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex+mitchell, 95.09 agarwal, 94.09 jones, 94.01 jones" } @article{csy-aesp3-97 -, author = "J. Choi and J. Sellen and C. K. Yap" -, title = "Approximate {Euclidean} Shortest Paths in $3$-Space" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, number = 4 -, month = aug -, year = 1997 -, pages = "271--295" -, keywords = "shortest paths, geodesics, approximation algorithm, bit complexity, precision" -, succeeds = "csy-aesp3-94" -, update = "98.03 mitchell" -, annote = "Special issue devoted to SoCG'94" +, author = "J. Choi and J. Sellen and C. K. Yap" +, title = "Approximate {Euclidean} Shortest Paths in $3$-Space" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, number = 4 +, month = aug +, year = 1997 +, pages = "271--295" +, keywords = "shortest paths, geodesics, approximation algorithm, bit complexity, precision" +, succeeds = "csy-aesp3-94" +, update = "98.03 mitchell" +, annote = "Special issue devoted to SoCG'94" } @inproceedings{csy-psesp-95 -, author = "Joonsoo Choi and J{\"u}rgen Sellen and Chee-Keng Yap" -, title = "Precision-Sensitive {Euclidean} Shortest Path in 3-Space" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "350--359" -, keywords = "bit complexity, shortest paths" -, cites = "b-earsh-92, b-hsrr-90, cr-nlbtr-87, csy-aesp3-94, g-cra-67, r-ccgfo-89, p-aspmt-85, p-cc-94, r-ca-70, ss-spps-86, vv-niedu-86, w-aep-65, y-tegc-93, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Joonsoo Choi and J{\"u}rgen Sellen and Chee-Keng Yap" +, title = "Precision-Sensitive {Euclidean} Shortest Path in 3-Space" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "350--359" +, keywords = "bit complexity, shortest paths" +, cites = "b-earsh-92, b-hsrr-90, cr-nlbtr-87, csy-aesp3-94, g-cra-67, r-ccgfo-89, p-aspmt-85, p-cc-94, r-ca-70, ss-spps-86, vv-niedu-86, w-aep-65, y-tegc-93, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{cy-mrgds-96 -, author = "Joonsoo Choi and Chee-Keng Yap" -, title = "Monotonicity of Rectilinear Geodesics in $d$-Space" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "339--348" -, cites = "aaghi-vdp-86, ac-prspr-91, acm-mpoap-89, c-gphd-95, cy-rg3s-95, rlw-rsprb-85, rlw-rsppr-89, em-osrqa-94, hs-ecesp-93, lp-esppr-84, m-psp-86, mrw-mlpop-92, w-cvgnl-85, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Joonsoo Choi and Chee-Keng Yap" +, title = "Monotonicity of Rectilinear Geodesics in $d$-Space" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "339--348" +, cites = "aaghi-vdp-86, ac-prspr-91, acm-mpoap-89, c-gphd-95, cy-rg3s-95, rlw-rsprb-85, rlw-rsppr-89, em-osrqa-94, hs-ecesp-93, lp-esppr-84, m-psp-86, mrw-mlpop-92, w-cvgnl-85, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{cy-rg3s-95 -, author = "Joonsoo Choi and Chee-Keng Yap" -, title = "Rectilinear Geodesics in 3-Space" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "380--389" -, keywords = "shortest paths, monotonicity, boxes" -, cites = "aaghi-vdp-86, ckv-rsptp-87, bkno-spqrw-92, rlw-rsppr-89, e-acg-87, em-osrqa-94, gm-osacv-91, hs-ecesp-93, l-tdvdl-80, m-wcohs-87, m-lsppo-92, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Joonsoo Choi and Chee-Keng Yap" +, title = "Rectilinear Geodesics in 3-Space" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "380--389" +, keywords = "shortest paths, monotonicity, boxes" +, cites = "aaghi-vdp-86, ckv-rsptp-87, bkno-spqrw-92, rlw-rsppr-89, e-acg-87, em-osrqa-94, gm-osacv-91, hs-ecesp-93, l-tdvdl-80, m-wcohs-87, m-lsppo-92, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @phdthesis{c-gphd-95 -, author = "J. S. Choi" -, title = "Geodesic problems in high dimensions" -, school = "Courant Institute, New York University" -, address = "New York" -, month = jun -, year = 1995 -, keywords = "shortest paths" -, update = "96.05 mitchell" +, author = "J. S. Choi" +, title = "Geodesic problems in high dimensions" +, school = "Courant Institute, New York University" +, address = "New York" +, month = jun +, year = 1995 +, keywords = "shortest paths" +, update = "96.05 mitchell" } @mastersthesis{c-vpgr-92 -, author = "S.-H. Choi" -, title = "Visibility Properties of Graphs and Their Recognition" -, school = "Department of Computer Science, Korea Advanced Institute of Science and Technology" -, year = 1992 -, keywords = "master thesis" -, update = "98.11 bibrelex" +, author = "S.-H. Choi" +, title = "Visibility Properties of Graphs and Their Recognition" +, school = "Department of Computer Science, Korea Advanced Institute of Science and Technology" +, year = 1992 +, keywords = "master thesis" +, update = "98.11 bibrelex" } @article{csc-crvgf-95 -, author = "S. H. Choi and S. Y. Shin and K. Y. Chwa" -, title = "Characterizing and Recognizing the Visibility Graph of a Funnel-Shaped Polygon" -, journal = "Algorithmica" -, volume = 14 -, year = 1995 -, pages = "27--51" -, update = "95.09 smid" +, author = "S. H. Choi and S. Y. Shin and K. Y. Chwa" +, title = "Characterizing and Recognizing the Visibility Graph of a Funnel-Shaped Polygon" +, journal = "Algorithmica" +, volume = 14 +, year = 1995 +, pages = "27--51" +, update = "95.09 smid" } @inproceedings{csc-crvgf-92 -, author = "S. H. Choi and S. Y. Shin and K. Y. Chwa" -, title = "Characterizing and Recognizing Visibility Graphs of Funnel-Shaped Polygons" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "219--228" -, update = "94.09 smid, 94.01 choi, 93.09 milone+mitchell" +, author = "S. H. Choi and S. Y. Shin and K. Y. Chwa" +, title = "Characterizing and Recognizing Visibility Graphs of Funnel-Shaped Polygons" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "219--228" +, update = "94.09 smid, 94.01 choi, 93.09 milone+mitchell" } @article{cp-htamp-94 -, author = "Y.-K. Choi and K. H. Park" -, title = "A Heuristic Triangulation Algorithm for Multiple Planar Contours Using an Extended Double Branching Procedure" -, journal = "Visual Comput." -, volume = 10 -, number = 7 -, year = 1994 -, pages = "372--387" -, update = "96.01 held" +, author = "Y.-K. Choi and K. H. Park" +, title = "A Heuristic Triangulation Algorithm for Multiple Planar Contours Using an Extended Double Branching Procedure" +, journal = "Visual Comput." +, volume = 10 +, number = 7 +, year = 1994 +, pages = "372--387" +, update = "96.01 held" } @inproceedings{cr-gfsso-99 -, author = "J. Chomicki and P. Z. Revesz" -, title = "A geometric framework for specifying spatiotemporal objects" -, booktitle = "Proc. 6th Intl. Workshop on Time Representation and Reasoning" -, year = 1999 -, pages = "41--46" -, update = "00.11 smid, 00.07 agarwal" +, author = "J. Chomicki and P. Z. Revesz" +, title = "A geometric framework for specifying spatiotemporal objects" +, booktitle = "Proc. 6th Intl. Workshop on Time Representation and Reasoning" +, year = 1999 +, pages = "41--46" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{cl-fccot-93 -, author = "K. W. Chong and T. W. Lam" -, title = "Finding connected components in $O(\log n \log \log n)$ time on the {EREW PRAM}" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "11--20" -, update = "96.09 orourke" +, author = "K. W. Chong and T. W. Lam" +, title = "Finding connected components in $O(\log n \log \log n)$ time on the {EREW PRAM}" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "11--20" +, update = "96.09 orourke" } @inproceedings{ck-scisc-93 -, author = "A. Chou and K. Ko" -, title = "Some Complexity Issues on the Simply Connected Regions of the Two-Dimensional Plane" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "??" +, author = "A. Chou and K. Ko" +, title = "Some Complexity Issues on the Simply Connected Regions of the Two-Dimensional Plane" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "??" } @phdthesis{c-ncmmt-89 -, author = "J. J. Chou" -, title = "Numerical control milling machine toll path generation for regions bounded by free form curves and surfaces" -, type = "Ph.{D}. Thesis" -, school = "Univ. Utah" -, year = 1989 -, keywords = "doctoral thesis" -, update = "93.05 freimer" +, author = "J. J. Chou" +, title = "Numerical control milling machine toll path generation for regions bounded by free form curves and surfaces" +, type = "Ph.{D}. Thesis" +, school = "Univ. Utah" +, year = 1989 +, keywords = "doctoral thesis" +, update = "93.05 freimer" } @article{c-vdps-95 -, author = "J. J. Chou" -, title = "Voronoi Diagrams for Planar Shapes" -, journal = "IEEE Comput. Graph. Appl." -, volume = 15 -, number = 2 -, month = mar -, year = 1995 -, pages = "52--59" -, update = "96.01 held" +, author = "J. J. Chou" +, title = "Voronoi Diagrams for Planar Shapes" +, journal = "IEEE Comput. Graph. Appl." +, volume = 15 +, number = 2 +, month = mar +, year = 1995 +, pages = "52--59" +, update = "96.01 held" } @article{c-opcrt-91 -, author = "P. Chou" -, title = "Optimal partitioning for classification and regression trees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 13 -, year = 1991 -, pages = "340--354" -, update = "98.07 bibrelex, 96.09 agarwal" +, author = "P. Chou" +, title = "Optimal partitioning for classification and regression trees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 13 +, year = 1991 +, pages = "340--354" +, update = "98.07 bibrelex, 96.09 agarwal" } @book{c-mgtp-88 -, author = "S.-C. Chou" -, title = "Mechanical Geometry Theorem Proving" -, publisher = "D. Reidel" -, year = 1988 -, update = "98.03 bibrelex" +, author = "S.-C. Chou" +, title = "Mechanical Geometry Theorem Proving" +, publisher = "D. Reidel" +, year = 1988 +, update = "98.03 bibrelex" } @incollection{c-pegtu-84 -, author = "S.-C. Chou" -, title = "Proving elementary geometry theorems using {Wu}'s algorithm" -, booktitle = "Contemporary Mathematics" -, volume = 29 -, publisher = "American Mathematical Society" -, year = 1984 -, pages = "243--286" -, update = "98.03 bibrelex" +, author = "S.-C. Chou" +, title = "Proving elementary geometry theorems using {Wu}'s algorithm" +, booktitle = "Contemporary Mathematics" +, volume = 29 +, publisher = "American Mathematical Society" +, year = 1984 +, pages = "243--286" +, update = "98.03 bibrelex" } @incollection{cr-mpgt-92 -, author = "S.-C. Chou and M. Rathi" -, title = "Machine proofs of geometry theorems" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, publisher = "World Scientific" -, address = "Singapore" -, year = 1992 -, pages = "91--115" -, keywords = "survey paper, machine proofs" -, precedes = "cr-mpgt-95" -, update = "98.07 icking, 93.09 erickson" +, author = "S.-C. Chou and M. Rathi" +, title = "Machine proofs of geometry theorems" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, publisher = "World Scientific" +, address = "Singapore" +, year = 1992 +, pages = "91--115" +, keywords = "survey paper, machine proofs" +, precedes = "cr-mpgt-95" +, update = "98.07 icking, 93.09 erickson" } @incollection{cr-mpgt-95 -, author = "Shang-Ching Chou and Mahesh Rathi" -, title = "Machine Proofs of Geometry Theorems" -, editor = "Ding-Zhu Du and Frank Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "124--148" -, keywords = "survey paper" -, succeeds = "h-dqgpg-92" -, update = "98.07 icking" +, author = "Shang-Ching Chou and Mahesh Rathi" +, title = "Machine Proofs of Geometry Theorems" +, editor = "Ding-Zhu Du and Frank Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "124--148" +, keywords = "survey paper" +, succeeds = "h-dqgpg-92" +, update = "98.07 icking" } @article{ct-lsm3d-93 -, author = "Sheng-Lin Chou and Wen-Hsiang Tsai" -, title = "Line segment matching for 3d computer vision using a new iteration scheme" -, journal = "Mach. Vison Appl." -, volume = 6 -, year = 1993 -, pages = "191--205" -, update = "97.11 bibrelex" +, author = "Sheng-Lin Chou and Wen-Hsiang Tsai" +, title = "Line segment matching for 3d computer vision using a new iteration scheme" +, journal = "Mach. Vison Appl." +, volume = 6 +, year = 1993 +, pages = "191--205" +, update = "97.11 bibrelex" } @article{cwcts-shio-94 -, author = "S.-Y. Chou and T. C. Woo and L.-L. Chen and K. Tang and S. Y. S hin" -, title = "Scallop Hull and Its Offset" -, journal = "Comput. Aided Design" -, volume = 26 -, number = 7 -, month = jul -, year = 1994 -, pages = "537--542" -, update = "97.11 held" +, author = "S.-Y. Chou and T. C. Woo and L.-L. Chen and K. Tang and S. Y. S hin" +, title = "Scallop Hull and Its Offset" +, journal = "Comput. Aided Design" +, volume = 26 +, number = 7 +, month = jul +, year = 1994 +, pages = "537--542" +, update = "97.11 held" } @article{ccb-maacm-89 -, author = "Y.-C. Chou and V. Chandru and M. M. Barash" -, title = "A mathematical approach to automatic configuration of machining fixtures: {Analysis} and synthesis" -, journal = "J. of Engineering for Industry" -, volume = 111 -, month = nov -, year = 1989 -, update = "98.03 bibrelex" +, author = "Y.-C. Chou and V. Chandru and M. M. Barash" +, title = "A mathematical approach to automatic configuration of machining fixtures: {Analysis} and synthesis" +, journal = "J. of Engineering for Industry" +, volume = 111 +, month = nov +, year = 1989 +, update = "98.03 bibrelex" } % ### What is it? @inproceedings{cm-pacms-87 -, author = "S. Choudhury and M. Murty" -, title = "A parallel architecture for constructing the minimal spanning tree in {Euclidean} space" -, booktitle = "Tencon'87" -, volume = 2 -, year = 1987 -, pages = "793--795" -, keywords = "parallel computation, minimal spanning tree" -, update = "95.09 korneenko" +, author = "S. Choudhury and M. Murty" +, title = "A parallel architecture for constructing the minimal spanning tree in {Euclidean} space" +, booktitle = "Tencon'87" +, volume = 2 +, year = 1987 +, pages = "793--795" +, keywords = "parallel computation, minimal spanning tree" +, update = "95.09 korneenko" } @inproceedings{c-padch-81 -, author = "A. L. Chow" -, title = "A parallel algorithm for determining convex hulls of sets of points in two dimensions" -, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." -, year = 1981 -, pages = "214--223" +, author = "A. L. Chow" +, title = "A parallel algorithm for determining convex hulls of sets of points in two dimensions" +, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." +, year = 1981 +, pages = "214--223" } @inproceedings{c-ppari-81 -, author = "A. L. Chow" -, title = "A Practical Parallel Algorithm for Reporting Intersections of Rectangles" -, booktitle = "IEEE Sympos. Parallel Processing" -, year = 1981 -, pages = "304--305" -, update = "93.09 held" +, author = "A. L. Chow" +, title = "A Practical Parallel Algorithm for Reporting Intersections of Rectangles" +, booktitle = "IEEE Sympos. Parallel Processing" +, year = 1981 +, pages = "304--305" +, update = "93.09 held" } @phdthesis{c-pagp-80 -, author = "A. L. Chow" -, title = "Parallel algorithms for geometric problems" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1980 -, keywords = "doctoral thesis" -, comments = "UMI KRA81-08465, 163 pp." -, update = "93.09 jones" +, author = "A. L. Chow" +, title = "Parallel algorithms for geometric problems" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1980 +, keywords = "doctoral thesis" +, comments = "UMI KRA81-08465, 163 pp." +, update = "93.09 jones" } % March 29--April 3 @inproceedings{c-ftcl-87 -, author = "Albert H. J. Christensen" -, title = "Fitting a Triangulation to Contour Lines" -, booktitle = "Proceedings, AUTOCARTO 8" -, site = "Baltimore, MD" -, year = 1987 -, pages = "57--67" -, annote = "Constrained Delaunay triangulation of contours + - medial axes of contours. This avoids the problem of a - triangle with all three vertices on the same contour." +, author = "Albert H. J. Christensen" +, title = "Fitting a Triangulation to Contour Lines" +, booktitle = "Proceedings, AUTOCARTO 8" +, site = "Baltimore, MD" +, year = 1987 +, pages = "57--67" +, annote = "Constrained Delaunay triangulation of contours + + medial axes of contours. This avoids the problem of a + triangle with all three vertices on the same contour." } @article{c-kiikf-50 -, author = "C. Christensen" -, title = "Kvadrat indskrevet i konveks figur" -, journal = "Matematisk Tiddskrifft B" -, volume = 1950 -, year = 1950 -, pages = "22--26" -, update = "98.07 bibrelex" +, author = "C. Christensen" +, title = "Kvadrat indskrevet i konveks figur" +, journal = "Matematisk Tiddskrifft B" +, volume = 1950 +, year = 1950 +, pages = "22--26" +, update = "98.07 bibrelex" } @inproceedings{cfms-etavs-97 -, author = "J. Christensen and S. Friedman and J. Marks and S. Shieber" -, title = "Empirical Testing of Algorithms for Variable-Sized Label Placement" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "415--417" -, cites = "cms-esapf-95, ecms-gcla-97, ww-pmla-97, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "J. Christensen and S. Friedman and J. Marks and S. Shieber" +, title = "Empirical Testing of Algorithms for Variable-Sized Label Placement" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "415--417" +, cites = "cms-esapf-95, ecms-gcla-97, ww-pmla-97, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{cms-aclp-93 -, author = "J. Christensen and J. Marks and S. Shieber" -, title = "Algorithms for cartographics label placement" -, booktitle = "Proc. 1993 ASPRS/ACSM Annual Convention and Exposition" -, volume = 1 -, year = 1993 -, pages = "75--89" -, update = "98.07 bibrelex" +, author = "J. Christensen and J. Marks and S. Shieber" +, title = "Algorithms for cartographics label placement" +, booktitle = "Proc. 1993 ASPRS/ACSM Annual Convention and Exposition" +, volume = 1 +, year = 1993 +, pages = "75--89" +, update = "98.07 bibrelex" } @article{cms-esapf-95 -, author = "J. Christensen and J. Marks and S. Shieber" -, title = "An empirical study of algorithms for point-feature label placement" -, journal = "ACM Trans. Graph." -, volume = 14 -, year = 1995 -, pages = "202--232" -, update = "97.07 agarwal" +, author = "J. Christensen and J. Marks and S. Shieber" +, title = "An empirical study of algorithms for point-feature label placement" +, journal = "ACM Trans. Graph." +, volume = 14 +, year = 1995 +, pages = "202--232" +, update = "97.07 agarwal" } @incollection{cms-ptlmd-94 -, author = "Jon Christensen and Joe Marks and Stuart Shieber" -, title = "Placing Text Labels on Maps and Diagrams" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "497--504" -, keywords = "cartography, label placement, layout, relaxation, simulated annealing" -, update = "94.09 heckbert" -, annote = "Presents an algorithm to arrange text labels in a way that +, author = "Jon Christensen and Joe Marks and Stuart Shieber" +, title = "Placing Text Labels on Maps and Diagrams" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "497--504" +, keywords = "cartography, label placement, layout, relaxation, simulated annealing" +, update = "94.09 heckbert" +, annote = "Presents an algorithm to arrange text labels in a way that avoids overlap. This is useful in cartography." } @article{cs-cccld-78 -, author = "N. N. Christiansen and T. W. Sederberg" -, title = "Conversion of complex contour line definitions into polygonal element mosaic" -, journal = "Comput. Graphics" -, volume = 12 -, number = 2 -, year = 1978 -, pages = "187--192" -, keywords = "computer graphics, contours, shape, polyhedra, surfaces, approximation" -, update = "95.09 korneenko" +, author = "N. N. Christiansen and T. W. Sederberg" +, title = "Conversion of complex contour line definitions into polygonal element mosaic" +, journal = "Comput. Graphics" +, volume = 12 +, number = 2 +, year = 1978 +, pages = "187--192" +, keywords = "computer graphics, contours, shape, polyhedra, surfaces, approximation" +, update = "95.09 korneenko" } @techreport{cjr-cdtsp-90 -, author = "T. Christof and M. J{\"u}nger and G. Reinelt" -, title = "A complete description of the traveling salesman polytope on $8$ nodes" -, type = "Report" -, number = "249-1990" -, institution = "Institut f{\"u}r Mathematik, Universit{\"a}t Augsburg" -, address = "Augsburg, Germany" -, year = 1990 -, update = "97.11 bibrelex" +, author = "T. Christof and M. J{\"u}nger and G. Reinelt" +, title = "A complete description of the traveling salesman polytope on $8$ nodes" +, type = "Report" +, number = "249-1990" +, institution = "Institut f{\"u}r Mathematik, Universit{\"a}t Augsburg" +, address = "Augsburg, Germany" +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{c-wcanh-76 -, author = "N. Christofides" -, title = "Worst-case analysis of a new heuristic for the traveling salesman problem" -, editor = "J. F. Traub" -, booktitle = "Sympos. on New Directions and Recent Results in Algorithms and Complexity" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1976 -, pages = 441 +, author = "N. Christofides" +, title = "Worst-case analysis of a new heuristic for the traveling salesman problem" +, editor = "J. F. Traub" +, booktitle = "Sympos. on New Directions and Recent Results in Algorithms and Complexity" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1976 +, pages = 441 } @misc{cdh-p5cpg-87 -, author = "M. Chrobak and K. Diks and T. Hagerup" -, title = "Parallel $5$-colouring of planar graphs" -, year = 1987 -, note = "Preprint" -, update = "98.03 bibrelex" +, author = "M. Chrobak and K. Diks and T. Hagerup" +, title = "Parallel $5$-colouring of planar graphs" +, year = 1987 +, note = "Preprint" +, update = "98.03 bibrelex" } @inproceedings{cgt-cdgtt-96 -, author = "Marek Chrobak and Michael T. Goodrich and Roberto Tamassia" -, title = "Convex Drawings of Graphs in Two and Three Dimensions" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "319--328" -, url = "https://www.cs.brown.edu/cgc/papers/cgt-cdgtt-96.ps.gz" -, keywords = "graph drawing, straight-line, 3D, convex, CGC, Brown" -, cites = "a-lbvsc-63, bh-olpgf-87, bo-lwbl-87, con-dpgn-85, cyn-lacdp-84, ck-cgd3c-93, cn-mwgdp-95, cp-ltadp-95, celr-tdgd-95, c-re-82, cw-mmap-90, cw-sfmps-82, dg-caitd-95, fpp-sssfe-88, fpp-hdpgg-90, dett-adgab-94, dtt-arsdp-92, dtv-olcpt-95, ds-ltati-92, eg-dspg-96, esw-tkbtd-95, f-slrpg-48, fhhklsww-dgphr-93, gt-pdara-94, gt-anda-87, g-cp-67, hr-udfs-94, hrs-cchpc-92, ht-dgtc-73, ht-ept-74, hk-prga-92, jj-3dlrg-95, k-dpguc-96, k-dpgul-92, ls-cavg-92, ld-cpdt3-95, lrt-gnd-79, lt-apst-80, mp-arpg-94, m-orfdf-64, ps-cgi-85, r-3dvpi-95, r-e3vpi-95, s-epgg-90, st-ce3cp-92, s-cm-51, sr-vudtd-34, t-pdfip-80, t-prg-84, t-crg-60, t-hdg-63, w-mspp-82, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 tamassia, 96.09 tamassia" +, author = "Marek Chrobak and Michael T. Goodrich and Roberto Tamassia" +, title = "Convex Drawings of Graphs in Two and Three Dimensions" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "319--328" +, url = "https://www.cs.brown.edu/cgc/papers/cgt-cdgtt-96.ps.gz" +, keywords = "graph drawing, straight-line, 3D, convex, CGC, Brown" +, cites = "a-lbvsc-63, bh-olpgf-87, bo-lwbl-87, con-dpgn-85, cyn-lacdp-84, ck-cgd3c-93, cn-mwgdp-95, cp-ltadp-95, celr-tdgd-95, c-re-82, cw-mmap-90, cw-sfmps-82, dg-caitd-95, fpp-sssfe-88, fpp-hdpgg-90, dett-adgab-94, dtt-arsdp-92, dtv-olcpt-95, ds-ltati-92, eg-dspg-96, esw-tkbtd-95, f-slrpg-48, fhhklsww-dgphr-93, gt-pdara-94, gt-anda-87, g-cp-67, hr-udfs-94, hrs-cchpc-92, ht-dgtc-73, ht-ept-74, hk-prga-92, jj-3dlrg-95, k-dpguc-96, k-dpgul-92, ls-cavg-92, ld-cpdt3-95, lrt-gnd-79, lt-apst-80, mp-arpg-94, m-orfdf-64, ps-cgi-85, r-3dvpi-95, r-e3vpi-95, s-epgg-90, st-ce3cp-92, s-cm-51, sr-vudtd-34, t-pdfip-80, t-prg-84, t-crg-60, t-hdg-63, w-mspp-82, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 tamassia, 96.09 tamassia" } @techreport{ck-cgd3c-93 -, author = "M. Chrobak and G. Kant" -, title = "Convex grid drawings of 3-connected planar graphs" -, type = "Technical {Report}" -, number = "RUU-93-45" -, institution = "Dept. of Computer Sci., Utrecht Univ." -, year = 1993 -, keywords = "graph drawing, planar, convex, straight-line" -, update = "97.11 bibrelex, 96.09 tamassia" +, author = "M. Chrobak and G. Kant" +, title = "Convex grid drawings of 3-connected planar graphs" +, type = "Technical {Report}" +, number = "RUU-93-45" +, institution = "Dept. of Computer Sci., Utrecht Univ." +, year = 1993 +, keywords = "graph drawing, planar, convex, straight-line" +, update = "97.11 bibrelex, 96.09 tamassia" } @article{ck-cgd3c-97 -, author = "M. Chrobak and G. Kant" -, title = "Convex grid drawings of 3-connected planar graphs" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, number = 3 -, year = 1997 -, pages = "211--223" -, succeeds = "ck-cgd3c-93" -, update = "98.07 tamassia, 97.07 devillers" +, author = "M. Chrobak and G. Kant" +, title = "Convex grid drawings of 3-connected planar graphs" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, number = 3 +, year = 1997 +, pages = "211--223" +, succeeds = "ck-cgd3c-93" +, update = "98.07 tamassia, 97.07 devillers" } @techreport{cn-mwgd-94 -, author = "M. Chrobak and S. Nakano" -, title = "Minimum-width grid drawings of plane graphs" -, type = "Technical {Report}" -, number = "UCR-CS-94-5" -, institution = "Dept.\ of Computer Sci., Univ.\ California, Riverside" -, year = 1994 -, keywords = "graph drawing, planar, straight-line" -, update = "96.09 tamassia" +, author = "M. Chrobak and S. Nakano" +, title = "Minimum-width grid drawings of plane graphs" +, type = "Technical {Report}" +, number = "UCR-CS-94-5" +, institution = "Dept.\ of Computer Sci., Univ.\ California, Riverside" +, year = 1994 +, keywords = "graph drawing, planar, straight-line" +, update = "96.09 tamassia" } @inproceedings{cn-mwgdp-95 -, author = "M. Chrobak and S. Nakano" -, title = "Minimum-Width Grid Drawings of Plane Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "104--110" -, keywords = "graph drawing, planar, straight-line" -, update = "95.01 tamassia" +, author = "M. Chrobak and S. Nakano" +, title = "Minimum-Width Grid Drawings of Plane Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "104--110" +, keywords = "graph drawing, planar, straight-line" +, update = "95.01 tamassia" } @article{cn-mwgdp-98 -, author = "Marek Chrobak and Shin-ichi Nakano" -, title = "Minimum-Width Grid Drawings of Plane Graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 11 -, year = 1998 -, pages = "29--54" -, succeeds = "cn-mwgd-94, cn-mwgdp-95" -, update = "99.11 bibrelex, 98.11 devillers+vismara" +, author = "Marek Chrobak and Shin-ichi Nakano" +, title = "Minimum-Width Grid Drawings of Plane Graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 11 +, year = 1998 +, pages = "29--54" +, succeeds = "cn-mwgd-94, cn-mwgdp-95" +, update = "99.11 bibrelex, 98.11 devillers+vismara" } @article{cp-ltadp-95 -, author = "M. Chrobak and T. Payne" -, title = "A linear-time algorithm for drawing planar graphs" -, journal = "Inform. Process. Lett." -, volume = 54 -, year = 1995 -, pages = "241--246" -, keywords = "graph drawing" -, succeeds = "cp-ltadp-90" -, update = "96.09 tamassia" +, author = "M. Chrobak and T. Payne" +, title = "A linear-time algorithm for drawing planar graphs" +, journal = "Inform. Process. Lett." +, volume = 54 +, year = 1995 +, pages = "241--246" +, keywords = "graph drawing" +, succeeds = "cp-ltadp-90" +, update = "96.09 tamassia" } @techreport{cp-ltadp-90 -, author = "M. Chrobak and T. H. Payne" -, title = "A Linear Time Algorithm for Drawing a Planar Graph on a Grid" -, number = "UCR-CS-90-2" -, institution = "Dept. of Math. and Comput. Sci., Univ. California Riverside" -, year = 1990 -, keywords = "graph drawing" -, precedes = "cp-ltadp-95" -, update = "93.09 tamassia" +, author = "M. Chrobak and T. H. Payne" +, title = "A Linear Time Algorithm for Drawing a Planar Graph on a Grid" +, number = "UCR-CS-90-2" +, institution = "Dept. of Math. and Comput. Sci., Univ. California Riverside" +, year = 1990 +, keywords = "graph drawing" +, precedes = "cp-ltadp-95" +, update = "93.09 tamassia" } @inproceedings{cs-ppisp-95 -, author = "Marek Chrobak and G. Sundaram" -, title = "Paths among points inside a simple polygon" -, booktitle = "Proc. 5th MSI Stony Brook Workshop on Computational Geometry" -, year = 1995 -, url = "??" -, update = "96.05 mitchell" +, author = "Marek Chrobak and G. Sundaram" +, title = "Paths among points inside a simple polygon" +, booktitle = "Proc. 5th MSI Stony Brook Workshop on Computational Geometry" +, year = 1995 +, url = "??" +, update = "96.05 mitchell" } @article{csk-dsufh-90 -, author = "M. Chrobak and T. Szymacha and A. Krawczyk" -, title = "A data structure useful for finding {Hamiltonian} cycles" -, journal = "Theoret. Comput. Sci." -, volume = 71 -, number = 3 -, year = 1990 -, pages = "419--424" -, keywords = "data structuring" -, update = "95.09 korneenko" +, author = "M. Chrobak and T. Szymacha and A. Krawczyk" +, title = "A data structure useful for finding {Hamiltonian} cycles" +, journal = "Theoret. Comput. Sci." +, volume = 71 +, number = 3 +, year = 1990 +, pages = "419--424" +, keywords = "data structuring" +, update = "95.09 korneenko" } @phdthesis{c-sc3di-96 -, author = "Yiorgos Chrysanthou" -, title = "Shadow Computation for 3D Interaction and Animation" -, type = "Ph.{D}. Thesis" -, school = "Queen Mary and Westfield College, University of London" -, year = 1996 -, keywords = "bsp trees, shadow, radiosity" -, update = "97.07 agarwal" +, author = "Yiorgos Chrysanthou" +, title = "Shadow Computation for 3D Interaction and Animation" +, type = "Ph.{D}. Thesis" +, school = "Queen Mary and Westfield College, University of London" +, year = 1996 +, keywords = "bsp trees, shadow, radiosity" +, update = "97.07 agarwal" } @inproceedings{c-caics-74 -, author = "C. Chryssostomidis" -, title = "Computer Aided Interference Control and Space Reservation" -, editor = "Y. Fujita, K. Lind and T. J. Williams" -, booktitle = "Proc. IFIP/IFAC/JSNA Joint Conference on Computer Applications in the Automation of Shipyard Operation and Ship Design" -, year = 1974 -, pages = "507--513" -, update = "95.05 abrams" +, author = "C. Chryssostomidis" +, title = "Computer Aided Interference Control and Space Reservation" +, editor = "Y. Fujita, K. Lind and T. J. Williams" +, booktitle = "Proc. IFIP/IFAC/JSNA Joint Conference on Computer Applications in the Automation of Shipyard Operation and Ship Design" +, year = 1974 +, pages = "507--513" +, update = "95.05 abrams" } @inproceedings{c-casde-76 -, author = "C. Chryssostomidis" -, title = "Computer Aided Ship Design Education at the Massachusetts Institute of Technology" -, editor = "A. Jacobsson, F. Borgstr{\"o}m and T. J. Williams" -, booktitle = "Proc. IFIP/IFAC/SSI/City of Gothenburg Scandinavian Joint Conference on Computer Applications in the Automation of Shipyard Operation and Ship Design" -, year = 1976 -, pages = "65--71" -, update = "95.05 abrams" +, author = "C. Chryssostomidis" +, title = "Computer Aided Ship Design Education at the Massachusetts Institute of Technology" +, editor = "A. Jacobsson, F. Borgstr{\"o}m and T. J. Williams" +, booktitle = "Proc. IFIP/IFAC/SSI/City of Gothenburg Scandinavian Joint Conference on Computer Applications in the Automation of Shipyard Operation and Ship Design" +, year = 1976 +, pages = "65--71" +, update = "95.05 abrams" } @inproceedings{cp-gmcad-87 -, author = "C. Chryssostomidis and N. M. Patrikalakis" -, title = "Geometric Modeling in Computer Aided Design of Marine Systems" -, booktitle = "Proc. 3rd International Symposium on Practical Design of Ships and Mobile Units" -, volume = "II" -, year = 1987 -, pages = "861--870" -, update = "95.05 abrams" +, author = "C. Chryssostomidis and N. M. Patrikalakis" +, title = "Geometric Modeling in Computer Aided Design of Marine Systems" +, booktitle = "Proc. 3rd International Symposium on Practical Design of Ships and Mobile Units" +, volume = "II" +, year = 1987 +, pages = "861--870" +, update = "95.05 abrams" } @article{cp-gmica-88 -, author = "C. Chryssostomidis and N. M. Patrikalakis" -, title = "Geometric Modeling Issues in Computer Aided Design of Marine Structures" -, journal = "Marine Technology Society Journal" -, volume = 22 -, number = 2 -, year = 1988 -, pages = "15--33" -, update = "95.05 abrams" +, author = "C. Chryssostomidis and N. M. Patrikalakis" +, title = "Geometric Modeling Issues in Computer Aided Design of Marine Structures" +, journal = "Marine Technology Society Journal" +, volume = 22 +, number = 2 +, year = 1988 +, pages = "15--33" +, update = "95.05 abrams" } % yes, 1885 @article{c-pcmce-85 -, author = "G. Chrystal" -, title = "On the problem to construct the minimal circle enclosing $n$ given points in the plane" -, journal = "Proc. Edinburgh Math. Soc." -, volume = 3 -, year = 1885 -, pages = "30--33" -, note = "pre-Shamos" -, keywords = "points, extremal figures, center" -, update = "95.09 korneenko" +, author = "G. Chrystal" +, title = "On the problem to construct the minimal circle enclosing $n$ given points in the plane" +, journal = "Proc. Edinburgh Math. Soc." +, volume = 3 +, year = 1885 +, pages = "30--33" +, note = "pre-Shamos" +, keywords = "points, extremal figures, center" +, update = "95.09 korneenko" } @techreport{ch-ccsns-90 -, author = "J. H. Chuang and C. M. Hoffmann" -, title = "Curvature computations on surfaces in $n$-space" -, number = "90.2" -, institution = "ITC" -, address = "Trento, Italy" -, month = aug -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "J. H. Chuang and C. M. Hoffmann" +, title = "Curvature computations on surfaces in $n$-space" +, number = "90.2" +, institution = "ITC" +, address = "Trento, Italy" +, month = aug +, year = 1990 +, update = "93.09 milone+mitchell" } @article{c-rsops-96 -, author = "A. Chubarev" -, title = "Robust set operations on polyhedral solids: a fixed precision approach" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "187--204" -, update = "96.09 devillers" +, author = "A. Chubarev" +, title = "Robust set operations on polyhedral solids: a fixed precision approach" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "187--204" +, update = "96.09 devillers" } @book{c-mss-88 -, author = "C. K. Chui" -, title = "Multivariate spline spaces" -, publisher = "Soc. for Industrial \& Applied Mathematics" -, address = "Philadelphia, PA" -, year = 1988 -, update = "98.07 bibrelex" +, author = "C. K. Chui" +, title = "Multivariate spline spaces" +, publisher = "Soc. for Industrial \& Applied Mathematics" +, address = "Philadelphia, PA" +, year = 1988 +, update = "98.07 bibrelex" } @article{cgg-stc-89 -, author = "F. Chung and M. Gardner and R. Graham" -, title = "Steiner trees on a checkerboard" -, journal = "Math. Mag." -, volume = 62 -, number = 2 -, year = 1989 -, pages = "83--96" -, keywords = "Steiner tree" -, update = "95.09 korneenko" +, author = "F. Chung and M. Gardner and R. Graham" +, title = "Steiner trees on a checkerboard" +, journal = "Math. Mag." +, volume = 62 +, number = 2 +, year = 1989 +, pages = "83--96" +, keywords = "Steiner tree" +, update = "95.09 korneenko" } @article{c-lat-84 -, author = "F. R. K. Chung" -, title = "On linear arrangements of trees" -, journal = "Comput. Math. Appl." -, volume = 10 -, year = 1984 -, pages = "43--60" -, update = "98.03 bibrelex" +, author = "F. R. K. Chung" +, title = "On linear arrangements of trees" +, journal = "Comput. Math. Appl." +, volume = 10 +, year = 1984 +, pages = "43--60" +, update = "98.03 bibrelex" } @article{c-spirh-89 -, author = "F. R. K. Chung" -, title = "Sphere-and-point incidence relations in high dimensions with applications to unit distances and furthest-neighbor pairs" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "183--190" +, author = "F. R. K. Chung" +, title = "Sphere-and-point incidence relations in high dimensions with applications to unit distances and furthest-neighbor pairs" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "183--190" } @article{cg-nbesm-85 -, author = "F. R. K. Chung and R. L. Graham" -, title = "A new bound for {Euclidean} {Steiner} minimal trees" -, journal = "Ann. New York Acad. Sci." -, volume = 440 -, year = 1985 -, pages = "328--346" -, keywords = "Steiner tree" -, update = "96.09 devillers, 95.09 korneenko" +, author = "F. R. K. Chung and R. L. Graham" +, title = "A new bound for {Euclidean} {Steiner} minimal trees" +, journal = "Ann. New York Acad. Sci." +, volume = 440 +, year = 1985 +, pages = "328--346" +, keywords = "Steiner tree" +, update = "96.09 devillers, 95.09 korneenko" } @article{cg-stbps-81 -, author = "F. R. K. Chung and R. L. Graham" -, title = "On {Steiner} trees for bounded point sets" -, journal = "Geom. Dedicata" -, volume = 11 -, year = 1981 -, pages = "353--361" -, update = "97.11 bibrelex" +, author = "F. R. K. Chung and R. L. Graham" +, title = "On {Steiner} trees for bounded point sets" +, journal = "Geom. Dedicata" +, volume = 11 +, year = 1981 +, pages = "353--361" +, update = "97.11 bibrelex" } @article{cg-stl-78 -, author = "F. R. K. Chung and R. L. Graham" -, title = "Steiner trees for ladders" -, journal = "Ann. Discrete Math." -, volume = 2 -, year = 1978 -, pages = "173--200" -, keywords = "Steiner tree" -, update = "96.09 devillers, 95.09 korneenko" +, author = "F. R. K. Chung and R. L. Graham" +, title = "Steiner trees for ladders" +, journal = "Ann. Discrete Math." +, volume = 2 +, year = 1978 +, pages = "173--200" +, keywords = "Steiner tree" +, update = "96.09 devillers, 95.09 korneenko" } @article{ch-lmrst-79 -, author = "F. R. K. Chung and F. K. Hwang" -, title = "The largest minimal rectilinear {Steiner} trees for a set of $n$ points enclosed in a rectangle with given perimeter" -, journal = "Networks" -, volume = 9 -, year = 1979 -, pages = "19--36" -, update = "97.11 bibrelex" +, author = "F. R. K. Chung and F. K. Hwang" +, title = "The largest minimal rectilinear {Steiner} trees for a set of $n$ points enclosed in a rectangle with given perimeter" +, journal = "Networks" +, volume = 9 +, year = 1979 +, pages = "19--36" +, update = "97.11 bibrelex" } @article{c-ctpg-75 -, author = "V. Chv\'atal" -, title = "A combinatorial theorem in plane geometry" -, journal = "J. Combin. Theory Ser. B" -, volume = 18 -, year = 1975 -, pages = "39--41" -, update = "94.05 devillers" +, author = "V. Chv\'atal" +, title = "A combinatorial theorem in plane geometry" +, journal = "J. Combin. Theory Ser. B" +, volume = 18 +, year = 1975 +, pages = "39--41" +, update = "94.05 devillers" } @article{c-ghscp-79 -, author = "V. Chv{\'a}tal" -, title = "A greedy heuristic for the set-covering problem" -, journal = "Math. Oper. Res." -, volume = 4 -, year = 1979 -, pages = "233--235" -, keywords = "approximation" -, update = "94.05 devillers" +, author = "V. Chv{\'a}tal" +, title = "A greedy heuristic for the set-covering problem" +, journal = "Math. Oper. Res." +, volume = 4 +, year = 1979 +, pages = "233--235" +, keywords = "approximation" +, update = "94.05 devillers" } @incollection{c-hc-85 -, author = "V. Chvatal" -, title = "{Hamiltonian} Cycles" -, booktitle = "The Traveling Salesman Problem" -, publisher = "John Wiley \& Sons" -, year = 1985 -, pages = "403--429" -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "V. Chvatal" +, title = "{Hamiltonian} Cycles" +, booktitle = "The Traveling Salesman Problem" +, publisher = "John Wiley \& Sons" +, year = 1985 +, pages = "403--429" +, update = "99.11 bibrelex, 98.11 bibrelex" } @techreport{c-lnnas-92 -, author = "V. Chv{\'a}tal" -, title = "Lecture Notes on the New {AKS} Sorting Network" -, type = "{Report}" -, number = "DCS-TR-294" -, institution = "Computer Science Dept., Rutgers University" -, year = 1992 -, note = "Available at - \url{ftp://athos.rutgers.edu/pub/technical-reports/dcs-tr-294.ps.Z}" -, update = "96.09 orourke" +, author = "V. Chv{\'a}tal" +, title = "Lecture Notes on the New {AKS} Sorting Network" +, type = "{Report}" +, number = "DCS-TR-294" +, institution = "Computer Science Dept., Rutgers University" +, year = 1992 +, note = "Available at + \url{ftp://athos.rutgers.edu/pub/technical-reports/dcs-tr-294.ps.Z}" +, update = "96.09 orourke" } @book{c-lp-83 -, author = "V. Chv{\'a}tal" -, title = "Linear Programming" -, publisher = "W. H. Freeman" -, address = "New York, NY" -, year = 1983 +, author = "V. Chv{\'a}tal" +, title = "Linear Programming" +, publisher = "W. H. Freeman" +, address = "New York, NY" +, year = 1983 } @article{c-tghc-73 -, author = "V. Chv{\'a}tal" -, title = "Tough graphs and {Hamiltonian} circuits" -, journal = "Discrete Math." -, volume = 5 -, number = 3 -, month = jul -, year = 1973 -, pages = "215--228" -, update = "97.11 bibrelex" +, author = "V. Chv{\'a}tal" +, title = "Tough graphs and {Hamiltonian} circuits" +, journal = "Discrete Math." +, volume = 5 +, number = 3 +, month = jul +, year = 1973 +, pages = "215--228" +, update = "97.11 bibrelex" } @article{ck-flcs-80 -, author = "V. Chv{\'a}tal and G. Klincsek" -, title = "Finding largest convex subsets" -, journal = "Congr. Numer." -, volume = 29 -, year = 1980 -, pages = "453--460" -, note = "Combinatorics, Graph Theory and Computing. Proc. South-East Conf., Boca Raton, vol. 2" -, keywords = "convex, extremal figures, peeling" -, update = "95.09 korneenko" +, author = "V. Chv{\'a}tal and G. Klincsek" +, title = "Finding largest convex subsets" +, journal = "Congr. Numer." +, volume = 29 +, year = 1980 +, pages = "453--460" +, note = "Combinatorics, Graph Theory and Computing. Proc. South-East Conf., Boca Raton, vol. 2" +, keywords = "convex, extremal figures, peeling" +, update = "95.09 korneenko" } @article{cs-mdld-90 -, author = "S. Chynoweth and M. J. Sewell" -, title = "Mesh Duality and Legendre Duality" -, journal = "Proceedings Of The Royal Society Of London Series A-Mathematical And Physical Sciences" -, volume = 428 -, number = 1875 -, year = 1990 -, pages = "351--377" -, annote = "Another proof of mapping between convex hull on - paraboloid and DT in k dimensions." +, author = "S. Chynoweth and M. J. Sewell" +, title = "Mesh Duality and Legendre Duality" +, journal = "Proceedings Of The Royal Society Of London Series A-Mathematical And Physical Sciences" +, volume = 428 +, number = 1875 +, year = 1990 +, pages = "351--377" +, annote = "Another proof of mapping between convex hull on + paraboloid and DT in k dimensions." } @article{ck-drtdp-87 -, author = "M. J. Cieselski and E. Kinnen" -, title = "Digraph relaxation for two-dimensional placement of {IC} blocks" -, journal = "IEEE Trans. Comput.-Aided. Design Integr. Circuits Syst." -, volume = 6 -, number = 1 -, year = 1987 -, pages = "55--66" -, keywords = "geometric graphs, decomposition, placement, VLSI design, isothetic" -, update = "95.09 korneenko" +, author = "M. J. Cieselski and E. Kinnen" +, title = "Digraph relaxation for two-dimensional placement of {IC} blocks" +, journal = "IEEE Trans. Comput.-Aided. Design Integr. Circuits Syst." +, volume = 6 +, number = 1 +, year = 1987 +, pages = "55--66" +, keywords = "geometric graphs, decomposition, placement, VLSI design, isothetic" +, update = "95.09 korneenko" } @article{c-fswpm-88 -, author = "D. Cieslik" -, title = "The {Fermat}-{Steiner}-{Weber} problem in {Minkowski} spaces" -, journal = "Optimization" -, volume = 19 -, number = 4 -, year = 1988 -, pages = "485--489" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "D. Cieslik" +, title = "The {Fermat}-{Steiner}-{Weber} problem in {Minkowski} spaces" +, journal = "Optimization" +, volume = 19 +, number = 4 +, year = 1988 +, pages = "485--489" +, keywords = "facility location" +, update = "95.09 korneenko" } @incollection{c-srbmp-90 -, author = "D. Cieslik" -, title = "The {Steiner} ratio of {Banach}-{Minkowski} planes" -, editor = "R. Bodendiek" -, booktitle = "Contemporary Methods in Graph Theory" -, publisher = "BI-Wissenschaftsverlag" -, address = "Mannheim, Germany" -, year = 1990 -, pages = "231--248" -, update = "98.03 bibrelex" +, author = "D. Cieslik" +, title = "The {Steiner} ratio of {Banach}-{Minkowski} planes" +, editor = "R. Bodendiek" +, booktitle = "Contemporary Methods in Graph Theory" +, publisher = "BI-Wissenschaftsverlag" +, address = "Mannheim, Germany" +, year = 1990 +, pages = "231--248" +, update = "98.03 bibrelex" } @article{cgms-rtcat-00 -, author = "P. Cignoni and F. Ganovelli and C. Montani and R. Scopigno" -, title = "Reconstruction of topologically correct and adaptive trilinear isosurfaces" -, journal = "Computers \& Graphics" -, volume = 24 -, number = 3 -, year = 2000 -, pages = "399--418" -, update = "02.03 wenger" +, author = "P. Cignoni and F. Ganovelli and C. Montani and R. Scopigno" +, title = "Reconstruction of topologically correct and adaptive trilinear isosurfaces" +, journal = "Computers \& Graphics" +, volume = 24 +, number = 3 +, year = 2000 +, pages = "399--418" +, update = "02.03 wenger" } @inproceedings{cmps-oieiv-96 -, author = "P. Cignoni and C. Montani and E. Puppo and R. Scopigno" -, title = "Optimal isosurface extraction from irregular volume data" -, booktitle = "Proc. IEEE Symposium on Volume Visuatization" -, year = 1996 -, update = "98.07 bibrelex" +, author = "P. Cignoni and C. Montani and E. Puppo and R. Scopigno" +, title = "Optimal isosurface extraction from irregular volume data" +, booktitle = "Proc. IEEE Symposium on Volume Visuatization" +, year = 1996 +, update = "98.07 bibrelex" } @incollection{cms-cmsa-98 -, author = "P. Cignoni and C. Montani and R. Scopigno" -, title = "A Comparison of Mesh Simplification Algorithms" -, booktitle = "Computers \& Graphics" -, volume = 22 -, publisher = "Pergamon Press" -, note = "To appear; +, author = "P. Cignoni and C. Montani and R. Scopigno" +, title = "A Comparison of Mesh Simplification Algorithms" +, booktitle = "Computers \& Graphics" +, volume = 22 +, publisher = "Pergamon Press" +, note = "To appear; \url{http://miles.cnuce.cnr.it/cg/bibliography.html}." -, update = "98.07 orourke" +, update = "98.07 orourke" } @article{cms-cmsa-98-b -, author = "P. Cignoni and C. Montani and R. Scopigno" -, title = "A Comparison of Mesh Simplification Algorithms" -, journal = "Comput. \& Graphics" -, volume = 22 -, number = 1 -, year = 1998 -, pages = "37--54" -, update = "02.03 wenger" +, author = "P. Cignoni and C. Montani and R. Scopigno" +, title = "A Comparison of Mesh Simplification Algorithms" +, journal = "Comput. \& Graphics" +, volume = 22 +, number = 1 +, year = 1998 +, pages = "37--54" +, update = "02.03 wenger" } @techreport{cms-mfdca-94 -, author = "P. Cignoni and C. Montani and R. Scopigno" -, title = "A merge-first divide \& conquer algorithm for {$E^d$} {Delaunay} triangulations" -, institution = "Consiglio Nazionale delle Ricerche, Pisa, Italy" -, year = 1994 -, update = "00.03 bibrelex" +, author = "P. Cignoni and C. Montani and R. Scopigno" +, title = "A merge-first divide \& conquer algorithm for {$E^d$} {Delaunay} triangulations" +, institution = "Consiglio Nazionale delle Ricerche, Pisa, Italy" +, year = 1994 +, update = "00.03 bibrelex" } @article{cms-tcpht-96 -, author = "P. Cignoni and C. Montani and R. Scopigno" -, title = "Triangulating Convex Polygons Having T-Vertices" -, journal = "J. Graphics Tools" -, volume = 1 -, number = 2 -, year = 1996 -, pages = "1--4" -, update = "97.11 held" +, author = "P. Cignoni and C. Montani and R. Scopigno" +, title = "Triangulating Convex Polygons Having T-Vertices" +, journal = "J. Graphics Tools" +, volume = 1 +, number = 2 +, year = 1996 +, pages = "1--4" +, update = "97.11 held" } @inproceedings{c-actp-89 -, author = "V. {\v C}ik" -, title = "The algorithm of constructing the triangulation of points" -, booktitle = "Po{\v c}ita{\v c}ova grafika'89. Zb. Konf." -, site = "Smolenice, Chech." -, year = 1989 -, pages = "26--30" -, keywords = "point-set triangulation" -, update = "95.09 korneenko" +, author = "V. {\v C}ik" +, title = "The algorithm of constructing the triangulation of points" +, booktitle = "Po{\v c}ita{\v c}ova grafika'89. Zb. Konf." +, site = "Smolenice, Chech." +, year = 1989 +, pages = "26--30" +, keywords = "point-set triangulation" +, update = "95.09 korneenko" } @article{c-fhccp-90 -, author = "R. J. Cimikowski" -, title = "Finding {Hamiltonian} cycles in certain planar graphs" -, journal = "Inform. Process. Lett." -, volume = 35 -, year = 1990 -, pages = "249--254" -, keywords = "geometric graphs, Delaunay triangulation" -, update = "95.09 korneenko" +, author = "R. J. Cimikowski" +, title = "Finding {Hamiltonian} cycles in certain planar graphs" +, journal = "Inform. Process. Lett." +, volume = 35 +, year = 1990 +, pages = "249--254" +, keywords = "geometric graphs, Delaunay triangulation" +, update = "95.09 korneenko" } @article{c-psepg-92 -, author = "R. J. Cimikowski" -, title = "Properties of some {Euclidian} proximity graphs" -, journal = "Pattern Recogn. Lett." -, volume = 13 -, number = 6 -, month = jun -, year = 1992 -, pages = "417--423" -, update = "98.11 bibrelex" +, author = "R. J. Cimikowski" +, title = "Properties of some {Euclidian} proximity graphs" +, journal = "Pattern Recogn. Lett." +, volume = 13 +, number = 6 +, month = jun +, year = 1992 +, pages = "417--423" +, update = "98.11 bibrelex" } @article{cd-epc3d-94 -, author = "A. R. Clare and A. M. Day" -, title = "Experiments in the Parallel Computation of 3D Convex Hulls" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 1 -, month = mar -, year = 1994 -, pages = "21--36" -, update = "96.01 held" +, author = "A. R. Clare and A. M. Day" +, title = "Experiments in the Parallel Computation of 3D Convex Hulls" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 1 +, month = mar +, year = 1994 +, pages = "21--36" +, update = "96.01 held" } @article{ccj-udg-90 -, author = "B. N. Clark and C. J. Colbourn and D. S. Johnson" -, title = "Unit disk graphs" -, journal = "Discrete Math." -, volume = 86 -, number = "1--3" -, year = 1990 -, pages = "165--178" -, keywords = "geometric graphs, computational complexity, disks" -, update = "95.09 korneenko" +, author = "B. N. Clark and C. J. Colbourn and D. S. Johnson" +, title = "Unit disk graphs" +, journal = "Discrete Math." +, volume = 86 +, number = "1--3" +, year = 1990 +, pages = "165--178" +, keywords = "geometric graphs, computational complexity, disks" +, update = "95.09 korneenko" } @inproceedings{cb-dedsn-96 -, author = "Brett W. Clark and Steven E. Benzley" -, title = "Development and evaluation of a degenerate seven-node hexahedron finite element" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "321--331" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Brett W. Clark and Steven E. Benzley" +, title = "Development and evaluation of a degenerate seven-node hexahedron finite element" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "321--331" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @article{c-vgpg-80 -, author = "J. Clark" -, title = "A ``VLSI'' geometry processor for graphics" -, journal = "Lambda" -, volume = 1 -, number = 2 -, year = 1980 -, keywords = "parallel computation, computer graphics" -, update = "95.09 korneenko" +, author = "J. Clark" +, title = "A ``VLSI'' geometry processor for graphics" +, journal = "Lambda" +, volume = 1 +, number = 2 +, year = 1980 +, keywords = "parallel computation, computer graphics" +, update = "95.09 korneenko" } @inproceedings{c-farps-79 -, author = "J. H. Clark" -, title = "A fast algorithm for rendering parametric surfaces" -, booktitle = "Proc. SIGGRAPH '79" -, year = 1979 -, pages = "289--299" -, update = "97.11 bibrelex" +, author = "J. H. Clark" +, title = "A fast algorithm for rendering parametric surfaces" +, booktitle = "Proc. SIGGRAPH '79" +, year = 1979 +, pages = "289--299" +, update = "97.11 bibrelex" } @article{c-ds3d-76 -, author = "J. H. Clark" -, title = "Designing surfaces in $3$-d" -, journal = "Commun. ACM" -, volume = 19 -, year = 1976 -, pages = "454--460" +, author = "J. H. Clark" +, title = "Designing surfaces in $3$-d" +, journal = "Commun. ACM" +, volume = 19 +, year = 1976 +, pages = "454--460" } @article{c-hgmvs-76 -, author = "J. H. Clark" -, title = "Hierarchical geometric models for visible surface algorithms" -, journal = "Commun. ACM" -, volume = 19 -, year = 1976 -, pages = "547--554" +, author = "J. H. Clark" +, title = "Hierarchical geometric models for visible surface algorithms" +, journal = "Commun. ACM" +, volume = 19 +, year = 1976 +, pages = "547--554" } @techreport{c-pcsvc-78 -, author = "J. H. Clark" -, title = "Parametric curves, surfaces and volumes in computer graphics and computer-aided geometric design" -, type = "Typescript" -, institution = "NASA Ames Res. Center" -, year = 1978 +, author = "J. H. Clark" +, title = "Parametric curves, surfaces and volumes in computer graphics and computer-aided geometric design" +, type = "Typescript" +, institution = "NASA Ames Res. Center" +, year = 1978 } @article{c-gevgs-82 -, author = "J. H. Clark" -, title = "The geometry engine: a {VLSI} geometric system for graphics" -, journal = "Comput. Graph." -, volume = 16 -, number = 3 -, year = 1982 -, pages = "127--133" -, keywords = "parallel computation, elementary geometry" -, update = "95.09 korneenko" +, author = "J. H. Clark" +, title = "The geometry engine: a {VLSI} geometric system for graphics" +, journal = "Comput. Graph." +, volume = 16 +, number = 3 +, year = 1982 +, pages = "127--133" +, keywords = "parallel computation, elementary geometry" +, update = "95.09 korneenko" } @book{c-acc-95 -, author = "K. C. Clarke" -, title = "Analytical and Computer Cartography" -, edition = "2nd" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1995 -, update = "97.03 schwarzkopf, 96.09 kreveld" +, author = "K. C. Clarke" +, title = "Analytical and Computer Cartography" +, edition = "2nd" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1995 +, update = "97.03 schwarzkopf, 96.09 kreveld" } @techreport{c-csfas-90 -, author = "K. Clarkson" -, title = "Computing a single face in arrangements of segments" -, type = "Unpublished Manuscript" -, institution = "??" -, year = 1990 -, keywords = "arrangements, randomized algorithms" -, update = "95.09 agarwal" +, author = "K. Clarkson" +, title = "Computing a single face in arrangements of segments" +, type = "Unpublished Manuscript" +, institution = "??" +, year = 1990 +, keywords = "arrangements, randomized algorithms" +, update = "95.09 agarwal" } @article{cegsw-ccbac-90 -, author = "K. Clarkson and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and Emo Welzl" -, title = "Combinatorial complexity bounds for arrangements of curves and spheres" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "99--160" -, keywords = "arrangements, complexity of faces, combinatorial geometry" -, succeeds = "cegsw-ccbac-88" -, update = "98.03 mitchell" +, author = "K. Clarkson and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and Emo Welzl" +, title = "Combinatorial complexity bounds for arrangements of curves and spheres" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "99--160" +, keywords = "arrangements, complexity of faces, combinatorial geometry" +, succeeds = "cegsw-ccbac-88" +, update = "98.03 mitchell" } @techreport{c-blmat-92 -, author = "K. L. Clarkson" -, title = "A bound on local minima of arrangements that implies the upper bound theorem" -, type = "Manuscript" -, year = 1992 -, comments = "proves that the number of local minima of k-level in hyperplane arrangement is $O(k^{d-1})$, derives upper bound thm from it" -, update = "93.09 matousek" +, author = "K. L. Clarkson" +, title = "A bound on local minima of arrangements that implies the upper bound theorem" +, type = "Manuscript" +, year = 1992 +, comments = "proves that the number of local minima of k-level in hyperplane arrangement is $O(k^{d-1})$, derives upper bound thm from it" +, update = "93.09 matousek" } @article{c-blmat-93 -, author = "K. L. Clarkson" -, title = "A bound on local minima of arrangements that implies the upper bound theorem" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "427--233" -, url = "http://cm.bell-labs.com/who/clarkson/kmins.html" -, update = "97.03 clarkson" -, abstract = " +, author = "K. L. Clarkson" +, title = "A bound on local minima of arrangements that implies the upper bound theorem" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "427--233" +, url = "http://cm.bell-labs.com/who/clarkson/kmins.html" +, update = "97.03 clarkson" +, abstract = " This paper shows that the $i$-level of an arrangement of hyperplanes in $E^d$ has at most ${{i+d-1}\choose {d-1}}$ local minima. This bound follows from ideas previously used to prove bounds on $(\leq k)$-sets. @@ -36884,761 +36884,761 @@ @article{c-blmat-93 } @inproceedings{c-lvalp-88 -, author = "K. L. Clarkson" -, title = "A {Las} {Vegas} algorithm for linear programming when the dimension is small" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "452--456" -, url = "http://netlib.bell-labs.com/netlib/att/cs/doc/88/2-lp2.ps" -, keywords = "convex, optimization, $d$-dimensional, design of algorithms, random sampling, expected-case analysis" -, annote = "finds smallest enclosing sphere of n points, d - dimensions; expected time for n constraints, d - variables is $O(d^{2}n)+(\lg(n/d^{2}))^{\lg - d+2}O(d)^{d/2+O(1)}$" +, author = "K. L. Clarkson" +, title = "A {Las} {Vegas} algorithm for linear programming when the dimension is small" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "452--456" +, url = "http://netlib.bell-labs.com/netlib/att/cs/doc/88/2-lp2.ps" +, keywords = "convex, optimization, $d$-dimensional, design of algorithms, random sampling, expected-case analysis" +, annote = "finds smallest enclosing sphere of n points, d + dimensions; expected time for n constraints, d + variables is $O(d^{2}n)+(\lg(n/d^{2}))^{\lg + d+2}O(d)^{d/2+O(1)}$" } @inproceedings{c-papop-85 -, author = "K. L. Clarkson" -, title = "A probabilistic algorithm for the post office problem" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "175--184" -, keywords = "proximity, data structuring, probabilistic analysis, Voronoi diagrams, simplices" -, precedes = "c-racpq-88" +, author = "K. L. Clarkson" +, title = "A probabilistic algorithm for the post office problem" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "175--184" +, keywords = "proximity, data structuring, probabilistic analysis, Voronoi diagrams, simplices" +, precedes = "c-racpq-88" } @article{c-racpq-88 -, author = "K. L. Clarkson" -, title = "A randomized algorithm for closest-point queries" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "830--847" -, keywords = "proximity, data structuring, probabilistic analysis, Voronoi diagrams, simplices" -, succeeds = "c-papop-85" +, author = "K. L. Clarkson" +, title = "A randomized algorithm for closest-point queries" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "830--847" +, keywords = "proximity, data structuring, probabilistic analysis, Voronoi diagrams, simplices" +, succeeds = "c-papop-85" } @inproceedings{c-apca-93 -, author = "Kenneth L. Clarkson" -, title = "Algorithms for Polytope Covering and Approximation" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "246--252" -, update = "97.03 agarwal, 93.09 milone+mitchell+smid, 93.05 jones" +, author = "Kenneth L. Clarkson" +, title = "Algorithms for Polytope Covering and Approximation" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "246--252" +, update = "97.03 agarwal, 93.09 milone+mitchell+smid, 93.05 jones" } @inproceedings{c-aacpq-94 -, author = "K. L. Clarkson" -, title = "An Algorithm for Approximate Closest-Point Queries" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "160--164" -, cites = "am-annqf-93, amnsw-oaann-94, as-rssua-90, b-acpqh-93, c-lvalp-88, c-apca-93, d-mescs-74, p-slpab-90, s-sosl-, v-namcf-89, y-cmstk-82, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "K. L. Clarkson" +, title = "An Algorithm for Approximate Closest-Point Queries" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "160--164" +, cites = "am-annqf-93, amnsw-oaann-94, as-rssua-90, b-acpqh-93, c-lvalp-88, c-apca-93, d-mescs-74, p-slpab-90, s-sosl-, v-namcf-89, y-cmstk-82, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @article{c-agmst-89 -, author = "K. L. Clarkson" -, title = "An algorithm for geometric minimum spanning trees requiring nearly linear expected time" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "461--469" -, keywords = "minimum spanning trees, approximation, $d$-dimensional, bucketing, expected-case analysis, geometric graphs" -, succeeds = "c-fetaa-84" -, update = "98.03 mitchell" -, annote = "He gives a nearly linear expected time algorithm for $n$ +, author = "K. L. Clarkson" +, title = "An algorithm for geometric minimum spanning trees requiring nearly linear expected time" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "461--469" +, keywords = "minimum spanning trees, approximation, $d$-dimensional, bucketing, expected-case analysis, geometric graphs" +, succeeds = "c-fetaa-84" +, update = "98.03 mitchell" +, annote = "He gives a nearly linear expected time algorithm for $n$ points uniformly distributed in a $d$-cube; time is $O(n\alpha(cn,n)$, with $c>6$. See also \cite{v-mstkd-88}" } @inproceedings{c-arscg-88 -, author = "K. L. Clarkson" -, title = "Applications of random sampling in computational geometry, {II}" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "1--11" -, precedes = "cs-arscg-89" -, cites = "ag-nssfs-86, ahw-pgers-87, cegsw-ccbac-88, c-papop-85, c-narsc-87, cp-hrsaa-86, cs-adpch-88, csy-khrp-84, ctv-flvat-88i, e-acg-87, em-sstcd-88, es-pmc-74, gp-nkssn-84, hw-ensrq-87, ks-upcha-86, tv-otats-88, w-mksfs-86, y-gctsp-88, ZZZ" -, update = "98.03 bibrelex" +, author = "K. L. Clarkson" +, title = "Applications of random sampling in computational geometry, {II}" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "1--11" +, precedes = "cs-arscg-89" +, cites = "ag-nssfs-86, ahw-pgers-87, cegsw-ccbac-88, c-papop-85, c-narsc-87, cp-hrsaa-86, cs-adpch-88, csy-khrp-84, ctv-flvat-88i, e-acg-87, em-sstcd-88, es-pmc-74, gp-nkssn-84, hw-ensrq-87, ks-upcha-86, tv-otats-88, w-mksfs-86, y-gctsp-88, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{c-aapts-91 -, author = "K. L. Clarkson" -, title = "Approximation algorithms for planar traveling salesman tours and minimum-length triangulations" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "17--23" +, author = "K. L. Clarkson" +, title = "Approximation algorithms for planar traveling salesman tours and minimum-length triangulations" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "17--23" } @inproceedings{c-aaspm-87 -, author = "K. L. Clarkson" -, title = "Approximation algorithms for shortest path motion planning" -, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." -, year = 1987 -, pages = "56--65" -, keywords = "motion planning, approximation, two-dimensional, three-dimensional, Voronoi diagrams" +, author = "K. L. Clarkson" +, title = "Approximation algorithms for shortest path motion planning" +, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." +, year = 1987 +, pages = "56--65" +, keywords = "motion planning, approximation, two-dimensional, three-dimensional, Voronoi diagrams" } @inproceedings{c-faann-83 -, author = "K. L. Clarkson" -, title = "Fast algorithms for the all nearest neighbors problem" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "226--232" -, keywords = "proximity, bucketing, approximation, probabilistic analysis" +, author = "K. L. Clarkson" +, title = "Fast algorithms for the all nearest neighbors problem" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "226--232" +, keywords = "proximity, bucketing, approximation, probabilistic analysis" } @inproceedings{c-fetaa-84 -, author = "K. L. Clarkson" -, title = "Fast expected time and approximation algorithms for geometric minimum spanning trees" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "342--348" -, keywords = "minimum spanning trees, approximation, $d$-dimensional, bucketing, expected-case analysis, geometric graphs" -, precedes = "c-agmst-89" +, author = "K. L. Clarkson" +, title = "Fast expected time and approximation algorithms for geometric minimum spanning trees" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "342--348" +, keywords = "minimum spanning trees, approximation, $d$-dimensional, bucketing, expected-case analysis, geometric graphs" +, precedes = "c-agmst-89" } @inproceedings{c-farsc-86 -, author = "K. L. Clarkson" -, title = "Further applications of random sampling to computational geometry" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "414--423" -, precedes = "c-narsc-87" +, author = "K. L. Clarkson" +, title = "Further applications of random sampling to computational geometry" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "414--423" +, precedes = "c-narsc-87" } @article{c-lvali-95 -, author = "K. L. Clarkson" -, title = "{Las} {Vegas} algorithms for linear and integer programming" -, journal = "J. ACM" -, volume = 42 -, year = 1995 -, pages = "488--499" -, keywords = "convex, optimization, $d$-dimensional, random sampling" -, update = "96.05 agarwal" +, author = "K. L. Clarkson" +, title = "{Las} {Vegas} algorithms for linear and integer programming" +, journal = "J. ACM" +, volume = 42 +, year = 1995 +, pages = "488--499" +, keywords = "convex, optimization, $d$-dimensional, random sampling" +, update = "96.05 agarwal" } @techreport{c-lvali-89 -, author = "K. L. Clarkson" -, title = "{Las} {Vegas} Algorithms for Linear and Integer Programming When the Dimension is Small" -, type = "Manuscript" -, institution = "??" -, month = oct -, year = 1989 -, update = "97.11 bibrelex" +, author = "K. L. Clarkson" +, title = "{Las} {Vegas} Algorithms for Linear and Integer Programming When the Dimension is Small" +, type = "Manuscript" +, institution = "??" +, month = oct +, year = 1989 +, update = "97.11 bibrelex" } @article{c-lpot-86 -, author = "K. L. Clarkson" -, title = "Linear programming in {$O(n 3^{d^{2}})$} time" -, journal = "Inform. Process. Lett." -, volume = 22 -, year = 1986 -, pages = "21--24" -, keywords = "linear programming, $d$-dimensional, prune-and-search" +, author = "K. L. Clarkson" +, title = "Linear programming in {$O(n 3^{d^{2}})$} time" +, journal = "Inform. Process. Lett." +, volume = 22 +, year = 1986 +, pages = "21--24" +, keywords = "linear programming, $d$-dimensional, prune-and-search" } @inproceedings{c-mosga-94 -, author = "K. L. Clarkson" -, title = "More output-sensitive geometric algorithms" -, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1994 -, pages = "695--702" -, update = "95.01 matousek+smid" +, author = "K. L. Clarkson" +, title = "More output-sensitive geometric algorithms" +, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1994 +, pages = "695--702" +, update = "95.01 matousek+smid" } @inproceedings{c-nnqms-97 -, author = "K. L. Clarkson" -, title = "Nearest Neighbor Queries in Metric Spaces" -, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '97" -, year = 1997 -, pages = "609--617" -, update = "98.07 bibrelex, 97.07 agarwal" +, author = "K. L. Clarkson" +, title = "Nearest Neighbor Queries in Metric Spaces" +, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '97" +, year = 1997 +, pages = "609--617" +, update = "98.07 bibrelex, 97.07 agarwal" } @article{c-narsc-87 -, author = "K. L. Clarkson" -, title = "New applications of random sampling in computational geometry" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "195--222" -, keywords = "combinatorial geometry, data structuring, reporting, searching, separation, range search, point location, probabilistic analysis, triangulations, $d$-dimensional" -, succeeds = "c-farsc-86" +, author = "K. L. Clarkson" +, title = "New applications of random sampling in computational geometry" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "195--222" +, keywords = "combinatorial geometry, data structuring, reporting, searching, separation, range search, point location, probabilistic analysis, triangulations, $d$-dimensional" +, succeeds = "c-farsc-86" } @incollection{c-rga-92 -, author = "K. L. Clarkson" -, title = "Randomized geometric algorithms" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, publisher = "World Scientific" -, address = "Singapore" -, year = 1992 -, pages = "117--162" -, keywords = "survey paper, randomized algorithms, range spaces, VC dimension, incremental algorithms, $k$-sets, cuttings" -, precedes = "c-rga-95" -, update = "98.07 icking, 93.09 erickson" +, author = "K. L. Clarkson" +, title = "Randomized geometric algorithms" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, publisher = "World Scientific" +, address = "Singapore" +, year = 1992 +, pages = "117--162" +, keywords = "survey paper, randomized algorithms, range spaces, VC dimension, incremental algorithms, $k$-sets, cuttings" +, precedes = "c-rga-95" +, update = "98.07 icking, 93.09 erickson" } @incollection{c-rga-95 -, author = "Kenneth L. Clarkson" -, title = "Randomized Geometric Algorithms" -, editor = "Ding-Zhu Du and Frank Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "149--194" -, keywords = "survey paper, randomized algorithms, range spaces, VC dimension, incremental algorithms, $k$-sets, cuttings" -, succeeds = "c-rga-92" -, update = "98.07 icking" +, author = "Kenneth L. Clarkson" +, title = "Randomized Geometric Algorithms" +, editor = "Ding-Zhu Du and Frank Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "149--194" +, keywords = "survey paper, randomized algorithms, range spaces, VC dimension, incremental algorithms, $k$-sets, cuttings" +, succeeds = "c-rga-92" +, update = "98.07 icking" } @inproceedings{c-sede-92 -, author = "K. L. Clarkson" -, title = "Safe and effective determinant evaluation" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, month = oct -, year = 1992 -, pages = "387--395" -, update = "98.11 bibrelex" +, author = "K. L. Clarkson" +, title = "Safe and effective determinant evaluation" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, month = oct +, year = 1992 +, pages = "387--395" +, update = "98.11 bibrelex" } @article{cct-erpat-92 -, author = "K. L. Clarkson and R. Cole and R. E. Tarjan" -, title = "Erratum: Randomized parallel algorithms for trapezoidal diagrams" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "341--343" -, keywords = "randomized, parallel, trapezoidal diagram, triangulation" -, succeeds = "cct-rpatd-92" +, author = "K. L. Clarkson and R. Cole and R. E. Tarjan" +, title = "Erratum: Randomized parallel algorithms for trapezoidal diagrams" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "341--343" +, keywords = "randomized, parallel, trapezoidal diagram, triangulation" +, succeeds = "cct-rpatd-92" } @inproceedings{cct-rpatd-91 -, author = "K. L. Clarkson and R. Cole and R. E. Tarjan" -, title = "Randomized parallel algorithms for trapezoidal diagrams" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "152--161" -, keywords = "random sampling, polygon, triangulation" -, precedes = "cct-rpatd-92" -, cites = "acg-cdctd-89, am-dplr-88, ce-oails-88, c-tsplt-90i, ci-tsc-84, c-pms-88, cs-arscg-89, ctv-flvat-89, cv-dctao-86, e-acg-87, fm-tspep-84, g-ilspo-89, g-tpp-89, gsg-pmvsp-89, hjw-epcah-90, m-fppa1-88, rr-ostrp-89, s-sfira-90, ZZZ" -, update = "97.11 bibrelex" +, author = "K. L. Clarkson and R. Cole and R. E. Tarjan" +, title = "Randomized parallel algorithms for trapezoidal diagrams" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "152--161" +, keywords = "random sampling, polygon, triangulation" +, precedes = "cct-rpatd-92" +, cites = "acg-cdctd-89, am-dplr-88, ce-oails-88, c-tsplt-90i, ci-tsc-84, c-pms-88, cs-arscg-89, ctv-flvat-89, cv-dctao-86, e-acg-87, fm-tspep-84, g-ilspo-89, g-tpp-89, gsg-pmvsp-89, hjw-epcah-90, m-fppa1-88, rr-ostrp-89, s-sfira-90, ZZZ" +, update = "97.11 bibrelex" } @article{cct-rpatd-92 -, author = "K. L. Clarkson and R. Cole and R. E. Tarjan" -, title = "Randomized parallel algorithms for trapezoidal diagrams" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "117--133" -, keywords = "randomized, parallel, trapezoidal diagram, triangulation" -, succeeds = "cct-rpatd-91" -, precedes = "cct-erpat-92" +, author = "K. L. Clarkson and R. Cole and R. E. Tarjan" +, title = "Randomized parallel algorithms for trapezoidal diagrams" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "117--133" +, keywords = "randomized, parallel, trapezoidal diagram, triangulation" +, succeeds = "cct-rpatd-91" +, precedes = "cct-erpat-92" } @techreport{cegsw-ccbac-88t -, author = "K. L. Clarkson and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and Emo Welzl" -, title = "Combinatorial Complexity Bounds and Arrangements of Curves and Surfaces" -, type = "Technical {Report}" -, number = "R88/1470" -, institution = "Univ. Illinois" -, address = "Urbana, IL" -, month = nov -, year = 1988 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "K. L. Clarkson and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and Emo Welzl" +, title = "Combinatorial Complexity Bounds and Arrangements of Curves and Surfaces" +, type = "Technical {Report}" +, number = "R88/1470" +, institution = "Univ. Illinois" +, address = "Urbana, IL" +, month = nov +, year = 1988 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{cegsw-ccbac-88 -, author = "K. L. Clarkson and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and Emo Welzl" -, title = "Combinatorial complexity bounds for arrangements of curves and surfaces" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "568--579" -, keywords = "discrete geometry, extremal problems, bipartite graphs, arrangements of curves and surfaces, triangulations, probabilistic counting, zones, Davenport-Schinzel sequences, counting distances" -, precedes = "cegsw-ccbac-90" -, update = "98.03 mitchell" +, author = "K. L. Clarkson and H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir and Emo Welzl" +, title = "Combinatorial complexity bounds for arrangements of curves and surfaces" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "568--579" +, keywords = "discrete geometry, extremal problems, bipartite graphs, arrangements of curves and surfaces, triangulations, probabilistic counting, zones, Davenport-Schinzel sequences, counting distances" +, precedes = "cegsw-ccbac-90" +, update = "98.03 mitchell" } @inproceedings{cemst-acpir-93 -, author = "K. L. Clarkson and D. Eppstein and G. L. Miller and C. Sturtivant and S.-H. Teng" -, title = "Approximating center points with iterated {Radon} points" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "91--98" -, precedes = "cemst-acpir-96" -, cites = "abfk-pswen-91, b-rg-85, c-lvalp-88, cm-ltdao-93, csy-khrp-87, dgk-htir-63, d-ltatt-84, e-acg-87, fmt-sbpdc-92, gmt-gampi-92, hw-ensrq-87, jm-ccfps-93, lrt-gnd-79, m-aogdc-91, m-ltalp-83, mt-cppd-90, mt-sttd-90, mttv-amp-92, mtv-ugags-91, mv-dgs-91, t-pssug-90, v-smfmf-84, vc-ucrfe-71, y-3spia-83, ZZZ" -, update = "98.03 bibrelex, 97.03 devillers, 93.09 jones" +, author = "K. L. Clarkson and D. Eppstein and G. L. Miller and C. Sturtivant and S.-H. Teng" +, title = "Approximating center points with iterated {Radon} points" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "91--98" +, precedes = "cemst-acpir-96" +, cites = "abfk-pswen-91, b-rg-85, c-lvalp-88, cm-ltdao-93, csy-khrp-87, dgk-htir-63, d-ltatt-84, e-acg-87, fmt-sbpdc-92, gmt-gampi-92, hw-ensrq-87, jm-ccfps-93, lrt-gnd-79, m-aogdc-91, m-ltalp-83, mt-cppd-90, mt-sttd-90, mttv-amp-92, mtv-ugags-91, mv-dgs-91, t-pssug-90, v-smfmf-84, vc-ucrfe-71, y-3spia-83, ZZZ" +, update = "98.03 bibrelex, 97.03 devillers, 93.09 jones" } @article{cemst-acpir-96 -, author = "K. L. Clarkson and D. Eppstein and G. L. Miller and C. Sturtivant and S.-H. Teng" -, title = "Approximating center points with iterative {Radon} points" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "357--377" -, succeeds = "cemst-acpir-93" -, update = "97.03 devillers" +, author = "K. L. Clarkson and D. Eppstein and G. L. Miller and C. Sturtivant and S.-H. Teng" +, title = "Approximating center points with iterative {Radon} points" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "357--377" +, succeeds = "cemst-acpir-93" +, update = "97.03 devillers" } @unpublished{ckv-rsptp- -, author = "K. L. Clarkson and S. Kapoor and P. M. Vaida" -, title = "Rectilinear shortest paths through polygonal obstacles in {$O(n \log^{3/2}n$} time" -, year = "??" -, note = "Submitted for publication" -, update = "98.03 bibrelex" +, author = "K. L. Clarkson and S. Kapoor and P. M. Vaida" +, title = "Rectilinear shortest paths through polygonal obstacles in {$O(n \log^{3/2}n$} time" +, year = "??" +, note = "Submitted for publication" +, update = "98.03 bibrelex" } @inproceedings{ckv-rsptp-87 -, author = "K. L. Clarkson and S. Kapoor and P. M. Vaidya" -, title = "Rectilinear shortest paths through polygonal obstacles in {$O(n (\log n)^{2})$} time" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "251--257" -, cites = "d-ntpcg-59, gs-canen-83, ll-fmrdp-81, lp-esppr-84, lw-apcfp-79, rlw-rsprb-85, ZZZ" -, update = "98.03 bibrelex" +, author = "K. L. Clarkson and S. Kapoor and P. M. Vaidya" +, title = "Rectilinear shortest paths through polygonal obstacles in {$O(n (\log n)^{2})$} time" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "251--257" +, cites = "d-ntpcg-59, gs-canen-83, ll-fmrdp-81, lp-esppr-84, lw-apcfp-79, rlw-rsprb-85, ZZZ" +, update = "98.03 bibrelex" } @techreport{cms-frric-92t -, author = "K. L. Clarkson and K. Mehlhorn and R. Seidel" -, title = "Four results on randomized incremental constructions" -, type = "Report" -, number = "MPI-I-92-112" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 -, precedes = "cms-frric-92i" +, author = "K. L. Clarkson and K. Mehlhorn and R. Seidel" +, title = "Four results on randomized incremental constructions" +, type = "Report" +, number = "MPI-I-92-112" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 +, precedes = "cms-frric-92i" } @inproceedings{cms-frric-92i -, author = "K. L. Clarkson and K. Mehlhorn and R. Seidel" -, title = "Four results on randomized incremental constructions" -, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 577 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "463--474" -, succeeds = "cms-frric-92t" -, precedes = "cms-frric-93" -, update = "99.11 bibrelex, 98.11 bibrelex, 94.05 devillers" +, author = "K. L. Clarkson and K. Mehlhorn and R. Seidel" +, title = "Four results on randomized incremental constructions" +, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 577 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "463--474" +, succeeds = "cms-frric-92t" +, precedes = "cms-frric-93" +, update = "99.11 bibrelex, 98.11 bibrelex, 94.05 devillers" } @article{cms-frric-93 -, author = "K. L. Clarkson and K. Mehlhorn and R. Seidel" -, title = "Four results on randomized incremental constructions" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, number = 4 -, year = 1993 -, pages = "185--212" -, succeeds = "cms-frric-92i" -, update = "94.05 devillers+schwarzkopf" +, author = "K. L. Clarkson and K. Mehlhorn and R. Seidel" +, title = "Four results on randomized incremental constructions" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, number = 4 +, year = 1993 +, pages = "185--212" +, succeeds = "cms-frric-92i" +, update = "94.05 devillers+schwarzkopf" } @inproceedings{cs-adpch-88 -, author = "K. L. Clarkson and P. W. Shor" -, title = "Algorithms for diametral pairs and convex hulls that are optimal, randomized, and incremental" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "12--17" -, keywords = "random sampling, $k$-sets, convex hulls, diameter" -, cites = "c-bvdcp-86, c-arscg-88, e-acg-87, eks-sspp-83, eos-calha-86, h-bevv-56, ph-chfsp-77, ps-cgi-85, ZZZ" -, update = "98.03 bibrelex" +, author = "K. L. Clarkson and P. W. Shor" +, title = "Algorithms for diametral pairs and convex hulls that are optimal, randomized, and incremental" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "12--17" +, keywords = "random sampling, $k$-sets, convex hulls, diameter" +, cites = "c-bvdcp-86, c-arscg-88, e-acg-87, eks-sspp-83, eos-calha-86, h-bevv-56, ph-chfsp-77, ps-cgi-85, ZZZ" +, update = "98.03 bibrelex" } @article{cs-arscg-89 -, author = "K. L. Clarkson and P. W. Shor" -, title = "Applications of random sampling in computational geometry, {II}" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "387--421" -, succeeds = "c-arscg-88" +, author = "K. L. Clarkson and P. W. Shor" +, title = "Applications of random sampling in computational geometry, {II}" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "387--421" +, succeeds = "c-arscg-88" } @techreport{ctv-flvat-88t -, author = "K. L. Clarkson and R. E. Tarjan and C. J. {Van Wyk}" -, title = "A fast {Las} {Vegas} algorithm for triangulating a simple polygon" -, type = "Technical {Report}" -, number = "CS-TR-157-88" -, institution = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1988 -, precedes = "ctv-flvat-88i" -, annote = "$O(n \log^{*} n)$ expected time" +, author = "K. L. Clarkson and R. E. Tarjan and C. J. {Van Wyk}" +, title = "A fast {Las} {Vegas} algorithm for triangulating a simple polygon" +, type = "Technical {Report}" +, number = "CS-TR-157-88" +, institution = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1988 +, precedes = "ctv-flvat-88i" +, annote = "$O(n \log^{*} n)$ expected time" } @inproceedings{ctv-flvat-88i -, author = "K. L. Clarkson and R. E. Tarjan and C. J. {Van Wyk}" -, title = "A fast {Las} {Vegas} algorithm for triangulating a simple polygon" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "18--22" -, succeeds = "ctv-flvat-88t" -, precedes = "ctv-flvat-89" -, cites = "c-narsc-87, c-arscg-88, ci-tsc-84, es-pmc-74, fm-tspep-84, gjpt-tsp-78, hw-ensrq-87, hmrt-sjslt-86, ps-cgi-85, r-pta-84, tv-otats-88, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex" -, annote = "$O(n \log^{*} n)$ expected time" +, author = "K. L. Clarkson and R. E. Tarjan and C. J. {Van Wyk}" +, title = "A fast {Las} {Vegas} algorithm for triangulating a simple polygon" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "18--22" +, succeeds = "ctv-flvat-88t" +, precedes = "ctv-flvat-89" +, cites = "c-narsc-87, c-arscg-88, ci-tsc-84, es-pmc-74, fm-tspep-84, gjpt-tsp-78, hw-ensrq-87, hmrt-sjslt-86, ps-cgi-85, r-pta-84, tv-otats-88, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex" +, annote = "$O(n \log^{*} n)$ expected time" } @article{ctv-flvat-89 -, author = "K. L. Clarkson and R. E. Tarjan and C. J. {Van Wyk}" -, title = "A fast {Las} {Vegas} algorithm for triangulating a simple polygon" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "423--432" -, keywords = "triangulation, simple polygon, random sampling" -, succeeds = "ctv-flvat-88i" -, update = "97.03 schwarzkopf" +, author = "K. L. Clarkson and R. E. Tarjan and C. J. {Van Wyk}" +, title = "A fast {Las} {Vegas} algorithm for triangulating a simple polygon" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "423--432" +, keywords = "triangulation, simple polygon, random sampling" +, succeeds = "ctv-flvat-88i" +, update = "97.03 schwarzkopf" } @article{c-aafnn-79 -, author = "J. G. Cleary" -, title = "Analysis of an algorithm for finding nearest neighbors in {Euclidean} space" -, journal = "ACM Trans. Math. Softw." -, volume = 5 -, year = 1979 -, pages = "183--192" +, author = "J. G. Cleary" +, title = "Analysis of an algorithm for finding nearest neighbors in {Euclidean} space" +, journal = "ACM Trans. Math. Softw." +, volume = 5 +, year = 1979 +, pages = "183--192" } @article{cwbv-mrt-86 -, author = "J. G. Cleary and B. Wyvill and G. M. Birtwistle and R. Vatti" -, title = "Multiprocessor ray tracing" -, journal = "Comput. Graph. Forum" -, volume = 5 -, year = 1986 -, pages = "3--12" +, author = "J. G. Cleary and B. Wyvill and G. M. Birtwistle and R. Vatti" +, title = "Multiprocessor ray tracing" +, journal = "Comput. Graph. Forum" +, volume = 5 +, year = 1986 +, pages = "3--12" } @article{c-aafrt-88 -, author = "J. L. Cleary" -, title = "Analysis of an algorithm for fast ray tracing using uniform space subdivision" -, journal = "Visual Comput." -, volume = 4 -, number = 2 -, year = 1988 -, pages = "65--83" -, keywords = "ray tracing, computer graphics" -, update = "95.09 korneenko" +, author = "J. L. Cleary" +, title = "Analysis of an algorithm for fast ray tracing using uniform space subdivision" +, journal = "Visual Comput." +, volume = 4 +, number = 2 +, year = 1988 +, pages = "65--83" +, keywords = "ray tracing, computer graphics" +, update = "95.09 korneenko" } @incollection{cot-liais-87 -, author = "C. W. Clenshaw and F. W. J. Olver and P. R. Turner" -, title = "Level-index arithmetic: an introductory survey" -, editor = "P. R. Turner" -, booktitle = "Numerical Analysis and Parallel Processing" -, series = "Lecture Notes Math." -, volume = 1397 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "95--168" -, update = "98.11 bibrelex" +, author = "C. W. Clenshaw and F. W. J. Olver and P. R. Turner" +, title = "Level-index arithmetic: an introductory survey" +, editor = "P. R. Turner" +, booktitle = "Numerical Analysis and Parallel Processing" +, series = "Lecture Notes Math." +, volume = 1397 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "95--168" +, update = "98.11 bibrelex" } @article{cr-c2dts-90 -, author = "A. K. Cline and R. J. Renka" -, title = "A Constrained 2-Dimensional Triangulation and the Solution of Closest Node Problems in the Presence of Barriers" -, journal = "SIAM J. Numer. Anal." -, volume = 27 -, number = 5 -, year = 1990 -, pages = "1305--1321" -, annote = "Algorithm for CDT. Compute DT. Sequentially insert - constraint edges. Uses selection algorithm to - retriangulate resulting polygons in time $O(k^3)$ which - seems rather pessimistic. ($k$ is number of triangles - intersected by inserted edge.)" -, abstract = "A Delaunay triangulation of a set of nodes is a - collection of triangles whose vertices are at the nodes - and whose union fills the convex hull of the set of - nodes. It also has several geometrical properties, - making it useful for solving closest point problems. - The generalization presented here allows the - triangulation to cover nonconvex regions including - those with holes. Although a variety of such - generalizations are possible, the one presented here is - shown to retain important closest point - characteristics. Thus it is useful for determining - shortest paths within planar regions with polygonal - boundaries. (Author abstract) 11 Refs." +, author = "A. K. Cline and R. J. Renka" +, title = "A Constrained 2-Dimensional Triangulation and the Solution of Closest Node Problems in the Presence of Barriers" +, journal = "SIAM J. Numer. Anal." +, volume = 27 +, number = 5 +, year = 1990 +, pages = "1305--1321" +, annote = "Algorithm for CDT. Compute DT. Sequentially insert + constraint edges. Uses selection algorithm to + retriangulate resulting polygons in time $O(k^3)$ which + seems rather pessimistic. ($k$ is number of triangles + intersected by inserted edge.)" +, abstract = "A Delaunay triangulation of a set of nodes is a + collection of triangles whose vertices are at the nodes + and whose union fills the convex hull of the set of + nodes. It also has several geometrical properties, + making it useful for solving closest point problems. + The generalization presented here allows the + triangulation to cover nonconvex regions including + those with holes. Although a variety of such + generalizations are possible, the one presented here is + shown to retain important closest point + characteristics. Thus it is useful for determining + shortest paths within planar regions with polygonal + boundaries. (Author abstract) 11 Refs." } @techreport{cr-gdtsc-85 -, author = "A. K. Cline and R. J. Renka" -, title = "A generalized {Delaunay} triangulation and the solution of closest node problems in the presence of barriers" -, type = "Report" -, number = "??" -, institution = "Univ. Texas Austin" -, address = "Austin, TX" -, year = 1985 +, author = "A. K. Cline and R. J. Renka" +, title = "A generalized {Delaunay} triangulation and the solution of closest node problems in the presence of barriers" +, type = "Report" +, number = "??" +, institution = "Univ. Texas Austin" +, address = "Austin, TX" +, year = 1985 } @article{cr-semct-84 -, author = "A. K. Cline and R. L. Renka" -, title = "A storage-efficient method for construction of a {Thiessen} triangulation" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "119--140" +, author = "A. K. Cline and R. L. Renka" +, title = "A storage-efficient method for construction of a {Thiessen} triangulation" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "119--140" } @article{cllct-tatdr-88 -, author = "H. E. Cline and W. E. Lorensen and S. Ludke and C. R. Crawford and B. C. Teeter" -, title = "Two algorithms for the three-dimensional reconstruction of tomograms" -, journal = "Medical Physics" -, volume = 15 -, year = 1988 -, pages = "320--327" -, update = "98.03 bibrelex" +, author = "H. E. Cline and W. E. Lorensen and S. Ludke and C. R. Crawford and B. C. Teeter" +, title = "Two algorithms for the three-dimensional reconstruction of tomograms" +, journal = "Medical Physics" +, volume = 15 +, year = 1988 +, pages = "320--327" +, update = "98.03 bibrelex" } @inproceedings{cb-tchos-93 -, author = "J. Cloutier and I. Bennour" -, title = "Topological characterization of {Hwang's} optimal {Steiner} tree" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "157--162" -, cites = "gj-rstpi-77, ggj-ccsmt-77, h-sprd-66, h-smtrd-76, p-tncfs-92, s-rgrsm-91, as-escrs-90, bc-arstp-92, crs-ostan-90, hr-stp-92, rs-sphtr-91, p-cstp-88, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "J. Cloutier and I. Bennour" +, title = "Topological characterization of {Hwang's} optimal {Steiner} tree" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "157--162" +, cites = "gj-rstpi-77, ggj-ccsmt-77, h-sprd-66, h-smtrd-76, p-tncfs-92, s-rgrsm-91, as-escrs-90, bc-arstp-92, crs-ostan-90, hr-stp-92, rs-sphtr-91, p-cstp-88, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{cmwms-feps-93 -, author = "R. du Cloux and G. P. J. F. M. Maas and A. J. H. Wachters and R. F. Milsom and K. J. Scott" -, title = "FASTERIX, an environment for {PCB} simulation" -, booktitle = "Proc. 11th Internat. Conf. on EMC" -, site = "Z{\"u}rich, Switzerland" -, year = 1993 -, update = "98.03 bibrelex" +, author = "R. du Cloux and G. P. J. F. M. Maas and A. J. H. Wachters and R. F. Milsom and K. J. Scott" +, title = "FASTERIX, an environment for {PCB} simulation" +, booktitle = "Proc. 11th Internat. Conf. on EMC" +, site = "Z{\"u}rich, Switzerland" +, year = 1993 +, update = "98.03 bibrelex" } @article{cbb-scmrt-91 -, author = "E. Clufff and R. Burton and W. A. Barrett" -, title = "A survey and characterization of multidimensional representation techniques" -, journal = "J. Imag. Technol." -, volume = 17 -, number = 4 -, year = 1991 -, pages = "142--153" -, keywords = "survey data structuring, $d$-dimensional" -, update = "95.09 korneenko" +, author = "E. Clufff and R. Burton and W. A. Barrett" +, title = "A survey and characterization of multidimensional representation techniques" +, journal = "J. Imag. Technol." +, volume = 17 +, number = 4 +, year = 1991 +, pages = "142--153" +, keywords = "survey data structuring, $d$-dimensional" +, update = "95.09 korneenko" } @inproceedings{cdgm-dsc-97 -, author = "F. Javier Cobos and J. Carlos Dana and Clara I. Grima and Alberto Marquez" -, title = "Diameter of a Set on the Cylinder" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "164--168" -, update = "97.11 jones" +, author = "F. Javier Cobos and J. Carlos Dana and Clara I. Grima and Alberto Marquez" +, title = "Diameter of a Set on the Cylinder" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "164--168" +, update = "97.11 jones" } @inproceedings{cdgm-wcss-97 -, author = "F. Javier Cobos and J. Carlos Dana and Clara I. Grima and Alberto Marquez" -, title = "The Width of a Convex Set on the Sphere." -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "159--163" -, update = "97.11 jones" +, author = "F. Javier Cobos and J. Carlos Dana and Clara I. Grima and Alberto Marquez" +, title = "The Width of a Convex Set on the Sphere." +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "159--163" +, update = "97.11 jones" } @techreport{co-pccl4d-99a -, author = "R. Cocan and J. O'Rourke" -, title = "Polygonal chains cannot lock in {4D}" -, number = 063 -, institution = "Smith College, Northampton, MA" -, month = jul -, year = 1999 -, note = "Full version LANL arXive cs.CG/9908005 (Revised Feb. 01); +, author = "R. Cocan and J. O'Rourke" +, title = "Polygonal chains cannot lock in {4D}" +, number = 063 +, institution = "Smith College, Northampton, MA" +, month = jul +, year = 1999 +, note = "Full version LANL arXive cs.CG/9908005 (Revised Feb. 01); to appear in {\em Comput. Geom. Theory Appl.}" -, archive = "XXX:cs.CG/9908005" -, update = "01.04 orourke, 00.03 orourke" +, archive = "XXX:cs.CG/9908005" +, update = "01.04 orourke, 00.03 orourke" } @inproceedings{co-pccl4d-99b -, author = "R. Cocan and J. O'Rourke" -, title = "Polygonal chains cannot lock in {4D}" -, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." -, year = 1999 -, pages = "5--8" -, update = "00.03 orourke" +, author = "R. Cocan and J. O'Rourke" +, title = "Polygonal chains cannot lock in {4D}" +, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." +, year = 1999 +, pages = "5--8" +, update = "00.03 orourke" } @article{co-pccl4d-01 -, author = "R. Cocan and J. O'Rourke" -, title = "Polygonal chains cannot lock in {4D}" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "105--129" -, succeeds = "co-pccl4d-99a" -, update = "02.03 orourke" +, author = "R. Cocan and J. O'Rourke" +, title = "Polygonal chains cannot lock in {4D}" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "105--129" +, succeeds = "co-pccl4d-99a" +, update = "02.03 orourke" } @article{c-cmlfs-69 -, author = "E. J. Cockayne" -, title = "Computation of minimal length full {Steiner} trees on the vertices of a convex polygon" -, journal = "Math. Comput." -, volume = 23 -, year = 1969 -, pages = "521--531" +, author = "E. J. Cockayne" +, title = "Computation of minimal length full {Steiner} trees on the vertices of a convex polygon" +, journal = "Math. Comput." +, volume = 23 +, year = 1969 +, pages = "521--531" } @article{c-easmt-70 -, author = "E. J. Cockayne" -, title = "On the efficiency of the algorithm for {Steiner} minimal trees" -, journal = "SIAM J. Appl. Math." -, volume = 18 -, year = 1970 -, pages = "150--159" +, author = "E. J. Cockayne" +, title = "On the efficiency of the algorithm for {Steiner} minimal trees" +, journal = "SIAM J. Appl. Math." +, volume = 18 +, year = 1970 +, pages = "150--159" } @article{c-sp-67 -, author = "E. J. Cockayne" -, title = "On the {Steiner} problem" -, journal = "Canad. Math. Bull." -, volume = 10 -, year = 1967 -, pages = "431--450" +, author = "E. J. Cockayne" +, title = "On the {Steiner} problem" +, journal = "Canad. Math. Bull." +, volume = 10 +, year = 1967 +, pages = "431--450" } @article{ch-pmpsc-75 -, author = "E. J. Cockayne and G. W. C. Hall" -, title = "Plane Motion of a Particle Subject to Curvature Constraints" -, journal = "SIAM J. Control" -, volume = 13 -, number = 1 -, year = 1975 -, pages = "197--220" -, update = "93.09 devillers" +, author = "E. J. Cockayne and G. W. C. Hall" +, title = "Plane Motion of a Particle Subject to Curvature Constraints" +, journal = "SIAM J. Control" +, volume = 13 +, number = 1 +, year = 1975 +, pages = "197--220" +, update = "93.09 devillers" } @article{ch-ecsmt-86 -, author = "E. J. Cockayne and D. E. Hewgill" -, title = "Exact computation of {Steiner} minimal trees in the plane" -, journal = "Inform. Process. Lett." -, volume = 22 -, number = 3 -, year = 1986 -, pages = "151--156" -, keywords = "Steiner tree" -, update = "95.09 korneenko" +, author = "E. J. Cockayne and D. E. Hewgill" +, title = "Exact computation of {Steiner} minimal trees in the plane" +, journal = "Inform. Process. Lett." +, volume = 22 +, number = 3 +, year = 1986 +, pages = "151--156" +, keywords = "Steiner tree" +, update = "95.09 korneenko" } @article{ch-icpsm-92 -, author = "E. J. Cockayne and D. E. Hewgill" -, title = "Improved computation of plane {Steiner} minimal trees" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "219--229" -, update = "98.11 bibrelex" +, author = "E. J. Cockayne and D. E. Hewgill" +, title = "Improved computation of plane {Steiner} minimal trees" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "219--229" +, update = "98.11 bibrelex" } @article{cm-spst-68 -, author = "E. J. Cockayne and Z. A. Melzak" -, title = "On {Steiner}'s problem for set-terminals" -, journal = "Appl. Math." -, volume = 26 -, year = 1968 -, pages = "213--218" +, author = "E. J. Cockayne and Z. A. Melzak" +, title = "On {Steiner}'s problem for set-terminals" +, journal = "Appl. Math." +, volume = 26 +, year = 1968 +, pages = "213--218" } @inproceedings{cs-csmt-72 -, author = "E. J. Cockayne and D. G. Schiller" -, title = "Computation of {Steiner} minimal trees" -, editor = "D. J. A. Welsh and D. R. Woodall" -, booktitle = "Combinatorics (Conference on Combinatorial Mathematics)" -, publisher = "Institute of Math. and its applications" -, address = "Southend-on-Sea, Essex, England" -, year = 1972 -, pages = "53--71" +, author = "E. J. Cockayne and D. G. Schiller" +, title = "Computation of {Steiner} minimal trees" +, editor = "D. J. A. Welsh and D. R. Woodall" +, booktitle = "Combinatorics (Conference on Combinatorial Mathematics)" +, publisher = "Institute of Math. and its applications" +, address = "Southend-on-Sea, Essex, England" +, year = 1972 +, pages = "53--71" } @book{c-pwpd-91 -, author = "S. T. Coffin" -, title = "The Puzzling World of Polyhedral Dissections" -, publisher = "Oxford University Press" -, year = 1991 -, update = "98.03 bibrelex" +, author = "S. T. Coffin" +, title = "The Puzzling World of Polyhedral Dissections" +, publisher = "Oxford University Press" +, year = 1991 +, update = "98.03 bibrelex" } @article{cgjt-pblot-80 -, author = "E. G. Coffman and Jr. M. R. Garey and D. S. Johnson and R. E. Tarjan" -, title = "Performance Bounds for Level-Oriented two-dimensional Packing Algorithms" -, journal = "SIAM J. Comput." -, volume = 9 -, year = 1980 -, pages = "808--826" -, update = "98.11 bibrelex" +, author = "E. G. Coffman and Jr. M. R. Garey and D. S. Johnson and R. E. Tarjan" +, title = "Performance Bounds for Level-Oriented two-dimensional Packing Algorithms" +, journal = "SIAM J. Comput." +, volume = 9 +, year = 1980 +, pages = "808--826" +, update = "98.11 bibrelex" } @article{cg-ptmr-92 -, author = "E. G. Coffman and E. N. Gilbert" -, title = "Paths Through a Maze of Rectangles" -, journal = "Networks" -, volume = 22 -, number = 4 -, month = jul -, year = 1992 -, pages = "349--367" -, keywords = "competitive analysis, shortest paths, on-line navigation" -, update = "98.03 mitchell" +, author = "E. G. Coffman and E. N. Gilbert" +, title = "Paths Through a Maze of Rectangles" +, journal = "Networks" +, volume = 22 +, number = 4 +, month = jul +, year = 1992 +, pages = "349--367" +, keywords = "competitive analysis, shortest paths, on-line navigation" +, update = "98.03 mitchell" } @article{cl-apspa-89 -, author = "E. G. {Coffman, Jr.} and J. C. Lagarias" -, title = "Algorithms for packing squares: {A} probabilistic analysis" -, journal = "SIAM J. Comput." -, volume = 18 -, year = 1989 -, pages = "166--185" +, author = "E. G. {Coffman, Jr.} and J. C. Lagarias" +, title = "Algorithms for packing squares: {A} probabilistic analysis" +, journal = "SIAM J. Comput." +, volume = 18 +, year = 1989 +, pages = "166--185" } @article{cjs-spoum-91 -, author = "E. G. {Coffman, Jr.} and P. W. Shor" -, title = "A simple proof of the ${O}(\sqrt{n}\log^{3/4}(n))$ upright matching bound" -, journal = "SIAM J. Discrete Math." -, volume = 4 -, number = 1 -, year = 1991 -, pages = "48--57" -, keywords = "points" -, update = "95.09 korneenko" +, author = "E. G. {Coffman, Jr.} and P. W. Shor" +, title = "A simple proof of the ${O}(\sqrt{n}\log^{3/4}(n))$ upright matching bound" +, journal = "SIAM J. Discrete Math." +, volume = 4 +, number = 1 +, year = 1991 +, pages = "48--57" +, keywords = "points" +, update = "95.09 korneenko" } @incollection{c-vta3d-94 -, author = "Daniel Cohen" -, title = "Voxel Traversal along a 3{D} Line" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "366--369" -, keywords = "digital line drawing, grid traversal, ray tracing, scan conversion" -, update = "94.09 heckbert" -, annote = "Visits all the voxels along a 3D line segment with integer +, author = "Daniel Cohen" +, title = "Voxel Traversal along a 3{D} Line" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "366--369" +, keywords = "digital line drawing, grid traversal, ray tracing, scan conversion" +, update = "94.09 heckbert" +, annote = "Visits all the voxels along a 3D line segment with integer endpoints, something like a 3D Bresenham's algorithm. This code could be modified to take endpoints with fixed point coordinates. Then the algorithm could be very useful for ray tracing, when a uniform grid is being used as a @@ -37647,2400 +37647,2400 @@ @incollection{c-vta3d-94 } @article{c-nlbdt-87 -, author = "E. Cohen" -, title = "A new local basis for designing with tensioned splines" -, journal = "ACM Trans. Graph." -, volume = 6 -, year = 1987 -, pages = "81--122" +, author = "E. Cohen" +, title = "A new local basis for designing with tensioned splines" +, journal = "ACM Trans. Graph." +, volume = 6 +, year = 1987 +, pages = "81--122" } @inproceedings{c-facts-93 -, author = "E. Cohen" -, title = "Fast algorithms for constructing $t$-spanners and paths with stretch $t$" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1993 -, update = "98.03 bibrelex" +, author = "E. Cohen" +, title = "Fast algorithms for constructing $t$-spanners and paths with stretch $t$" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1993 +, update = "98.03 bibrelex" } @article{c-facts-98 -, author = "E. Cohen" -, title = "Fast algorithms for constructing $t$-spanners and paths with stretch $t$" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1998 -, pages = "210--236" -, update = "99.07 smid" +, author = "E. Cohen" +, title = "Fast algorithms for constructing $t$-spanners and paths with stretch $t$" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1998 +, pages = "210--236" +, update = "99.07 smid" } @article{clr-dbsst-80 -, author = "E. Cohen and T. Lyche and R. Riesenfeld" -, title = "Discrete {B}-splines and subdivison techniques in computer-aided geometric design and computer graphics" -, journal = "Comput. Graph. Image Process." -, volume = 14 -, number = 2 -, year = 1980 -, pages = "87--110" -, update = "97.11 bibrelex" +, author = "E. Cohen and T. Lyche and R. Riesenfeld" +, title = "Discrete {B}-splines and subdivison techniques in computer-aided geometric design and computer graphics" +, journal = "Comput. Graph. Image Process." +, volume = 14 +, number = 2 +, year = 1980 +, pages = "87--110" +, update = "97.11 bibrelex" } @article{cls-adrs-85 -, author = "E. Cohen and T. Lyche and L. L. Schumaker" -, title = "Algorithms for degree-raising of splines" -, journal = "ACM Trans. Graph." -, volume = 4 -, year = 1985 -, pages = "171--181" +, author = "E. Cohen and T. Lyche and L. L. Schumaker" +, title = "Algorithms for degree-raising of splines" +, journal = "ACM Trans. Graph." +, volume = 4 +, year = 1985 +, pages = "171--181" } @inproceedings{cm-ialit-91 -, author = "E. Cohen and N. Megiddo" -, title = "Improved algorithms for linear inequalities with two variables per inequality" -, booktitle = "Proc. 23th Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "145--155" -, keywords = "linear programming, Monte Carlo" -, update = "95.09 korneenko" +, author = "E. Cohen and N. Megiddo" +, title = "Improved algorithms for linear inequalities with two variables per inequality" +, booktitle = "Proc. 23th Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "145--155" +, keywords = "linear programming, Monte Carlo" +, update = "95.09 korneenko" } @incollection{cm-mcffd-93 -, author = "E. Cohen and N. Megiddo" -, title = "Maximizing concave functions in fixed dimension" -, editor = "P. Pardalos" -, booktitle = "Complexity in Numeric Computation" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1993 -, pages = "74--87" -, update = "98.11 bibrelex, 96.09 agarwal, 96.05 agarwal" +, author = "E. Cohen and N. Megiddo" +, title = "Maximizing concave functions in fixed dimension" +, editor = "P. Pardalos" +, booktitle = "Complexity in Numeric Computation" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1993 +, pages = "74--87" +, update = "98.11 bibrelex, 96.09 agarwal, 96.05 agarwal" } @inproceedings{cm-sptna-89 -, author = "E. Cohen and N. Megiddo" -, title = "Strongly polynomial time and {NC} algorithms for detecting cycles in dynamic graphs" -, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." -, year = 1989 -, pages = "523--534" -, update = "97.11 bibrelex" +, author = "E. Cohen and N. Megiddo" +, title = "Strongly polynomial time and {NC} algorithms for detecting cycles in dynamic graphs" +, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." +, year = 1989 +, pages = "523--534" +, update = "97.11 bibrelex" } @article{ch-tadvc-79 -, author = "J. Cohen and T. Hickey" -, title = "Two algorithms for determining volumes of convex polyhedra" -, journal = "J. ACM" -, volume = 26 -, year = 1979 -, pages = "401--414" +, author = "J. Cohen and T. Hickey" +, title = "Two algorithms for determining volumes of convex polyhedra" +, journal = "J. ACM" +, volume = 26 +, year = 1979 +, pages = "401--414" } @inproceedings{cmo-spmusm-97 -, author = "J. Cohen and D. Manocha and M. Olano" -, title = "Simplifying polygonal models using successive mappings" -, booktitle = "Proc. IEEE Visualization '97" -, year = 1997 -, pages = "395--402" -, update = "98.07 orourke" +, author = "J. Cohen and D. Manocha and M. Olano" +, title = "Simplifying polygonal models using successive mappings" +, booktitle = "Proc. IEEE Visualization '97" +, year = 1997 +, pages = "395--402" +, update = "98.07 orourke" } @inproceedings{com-aps-98 -, author = "J. Cohen and M. Olano and D. Manocha" -, title = "Appearance-Preserving Simplification" -, booktitle = "Proc. SIGGRAPH '98" -, site = "Orlando, FL" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, month = jul -, year = 1998 -, pages = "115--122" -, update = "98.11 held" +, author = "J. Cohen and M. Olano and D. Manocha" +, title = "Appearance-Preserving Simplification" +, booktitle = "Proc. SIGGRAPH '98" +, site = "Orlando, FL" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, month = jul +, year = 1998 +, pages = "115--122" +, update = "98.11 held" } @inproceedings{cvmtwabw-se-96 -, author = "J. Cohen and A. Varshney and D. Manocha and G. Turk and H. Weber and Pankaj Agarwal and F. P. {Brooks, Jr.} and W. V. Wright" -, title = "Simplification Envelopes" -, booktitle = "Proceedings of SIGGRAPH '96 (New Orleans, LA, August 4--9, 1996)" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "ACM Press" -, month = aug -, year = 1996 -, pages = "119--128" -, update = "98.03 agarwal+mitchell" +, author = "J. Cohen and A. Varshney and D. Manocha and G. Turk and H. Weber and Pankaj Agarwal and F. P. {Brooks, Jr.} and W. V. Wright" +, title = "Simplification Envelopes" +, booktitle = "Proceedings of SIGGRAPH '96 (New Orleans, LA, August 4--9, 1996)" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "ACM Press" +, month = aug +, year = 1996 +, pages = "119--128" +, update = "98.03 agarwal+mitchell" } @inproceedings{clmp-ecdie-94 -, author = "J. D. Cohen and M. C. Lin and D. Manocha and M. K. Ponamgi" -, title = "Exact Collision Detection for Interactive Environments" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "391--392" -, keywords = "video review" -, cites = "clmp-iecdl-94, l-ecdar-93, ZZZ" -, update = "98.03 bibrelex, 94.09 jones" +, author = "J. D. Cohen and M. C. Lin and D. Manocha and M. K. Ponamgi" +, title = "Exact Collision Detection for Interactive Environments" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "391--392" +, keywords = "video review" +, cites = "clmp-iecdl-94, l-ecdar-93, ZZZ" +, update = "98.03 bibrelex, 94.09 jones" } @inproceedings{clmp-iciec-95 -, author = "J. D. Cohen and M. C. Lin and D. Manocha and M. K. Ponamgi" -, title = "I-COLLIDE: An Interactive and Exact Collision Detection System for Large-Scale Environments" -, booktitle = "Proc. ACM Interactive 3D Graphics Conf." -, year = 1995 -, pages = "189--196" -, succeeds = "clmp-iecdl-94" -, update = "96.05 klosowski, 96.01 held" +, author = "J. D. Cohen and M. C. Lin and D. Manocha and M. K. Ponamgi" +, title = "I-COLLIDE: An Interactive and Exact Collision Detection System for Large-Scale Environments" +, booktitle = "Proc. ACM Interactive 3D Graphics Conf." +, year = 1995 +, pages = "189--196" +, succeeds = "clmp-iecdl-94" +, update = "96.05 klosowski, 96.01 held" } @techreport{clmp-iecdl-94 -, author = "J. D. Cohen and M. C. Lin and D. Manocha and M. K. Ponamgi" -, title = "Interactive and Exact Collision Detection for Large-Scaled Environments" -, type = "Technical {Report}" -, number = "TR94-005" -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, year = 1994 -, precedes = "clmp-iciec-95" -, update = "96.05 klosowski" +, author = "J. D. Cohen and M. C. Lin and D. Manocha and M. K. Ponamgi" +, title = "Interactive and Exact Collision Detection for Large-Scaled Environments" +, type = "Technical {Report}" +, number = "TR94-005" +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, year = 1994 +, precedes = "clmp-iciec-95" +, update = "96.05 klosowski" } @article{cg-asgpf-83 -, author = "M. Cohen and S. Grossberg" -, title = "Absolute stability of global pattern formation and parallel memory storage by competitive neural networks" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 13 -, year = 1983 -, pages = "815--825" -, update = "98.07 bibrelex" +, author = "M. Cohen and S. Grossberg" +, title = "Absolute stability of global pattern formation and parallel memory storage by competitive neural networks" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 13 +, year = 1983 +, pages = "815--825" +, update = "98.07 bibrelex" } @book{cw-rris-93 -, author = "M. Cohen and J. Wallace" -, title = "Radiosity and Realistic Image Synthesis" -, publisher = "Academic Press" -, year = 1993 -, update = "96.05 pocchiola" +, author = "M. Cohen and J. Wallace" +, title = "Radiosity and Realistic Image Synthesis" +, publisher = "Academic Press" +, year = 1993 +, update = "96.05 pocchiola" } @article{cbwg-bbaer-86 -, author = "M. F. Cohen and D. R. Baum and J. R. Wallace and D. P. Greenberg" -, title = "The back-buffer algorithm: An extension of the radiosity method to dynamic environments" -, journal = "Visual Comput." -, volume = 2 -, number = 5 -, month = sep -, year = 1986 -, pages = "298--306" -, update = "97.11 bibrelex" +, author = "M. F. Cohen and D. R. Baum and J. R. Wallace and D. P. Greenberg" +, title = "The back-buffer algorithm: An extension of the radiosity method to dynamic environments" +, journal = "Visual Comput." +, volume = 2 +, number = 5 +, month = sep +, year = 1986 +, pages = "298--306" +, update = "97.11 bibrelex" } @article{cg-hrsce-85 -, author = "M. F. Cohen and D. P. Greenberg" -, title = "The hemicube: a radiosity solution for complex environments" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, year = 1985 -, pages = "31--40" -, note = "Proc. SIGGRAPH '85" -, update = "98.03 bibrelex" +, author = "M. F. Cohen and D. P. Greenberg" +, title = "The hemicube: a radiosity solution for complex environments" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, year = 1985 +, pages = "31--40" +, note = "Proc. SIGGRAPH '85" +, update = "98.03 bibrelex" } @article{cfhz-cvsov-98 -, author = "D. Cohen-Or and G. Fibich and D. Halperin and E. Zadicario" -, title = "Conservative visibility and strong occlusion for viewspace partitioning of densely occluded scenes" -, journal = "Comput. Graph. Forum" -, volume = 17 -, year = 1998 -, pages = "C243--C253" -, note = "Eurographics '98" -, update = "98.11 halperin" +, author = "D. Cohen-Or and G. Fibich and D. Halperin and E. Zadicario" +, title = "Conservative visibility and strong occlusion for viewspace partitioning of densely occluded scenes" +, journal = "Comput. Graph. Forum" +, volume = 17 +, year = 1998 +, pages = "C243--C253" +, note = "Eurographics '98" +, update = "98.11 halperin" } @inproceedings{cdkt-rwods-93 -, author = "R. F. Cohen and G. {Di Battista} and A. Kanevsky and R. Tamassia" -, title = "Reinventing the Wheel: an Optimal Data Structure for Connectivity Queries" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "194--200" -, update = "94.05 tamassia" +, author = "R. F. Cohen and G. {Di Battista} and A. Kanevsky and R. Tamassia" +, title = "Reinventing the Wheel: an Optimal Data Structure for Connectivity Queries" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "194--200" +, update = "94.05 tamassia" } @article{cdtt-dgdts-95 -, author = "R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "Dynamic Graph Drawings: Trees, Series-Parallel Digraphs, and Planar {$ST$}-Digraphs" -, journal = "SIAM J. Comput." -, volume = 24 -, number = 5 -, year = 1995 -, pages = "970--1001" -, url = "https://www.cs.brown.edu/cgc/papers/cdtt-dgdts-95.ps.gz" -, keywords = "graph drawing, dynamic, planar, trees, series-parallel" -, succeeds = "cdttb-fdgd-92" -, update = "97.03 tamassia, 96.09 tamassia, 95.09 tamassia, 95 tamassia" +, author = "R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "Dynamic Graph Drawings: Trees, Series-Parallel Digraphs, and Planar {$ST$}-Digraphs" +, journal = "SIAM J. Comput." +, volume = 24 +, number = 5 +, year = 1995 +, pages = "970--1001" +, url = "https://www.cs.brown.edu/cgc/papers/cdtt-dgdts-95.ps.gz" +, keywords = "graph drawing, dynamic, planar, trees, series-parallel" +, succeeds = "cdttb-fdgd-92" +, update = "97.03 tamassia, 96.09 tamassia, 95.09 tamassia, 95 tamassia" } @inproceedings{cdttb-fdgd-92 -, author = "R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis and P. Bertolazzi" -, title = "A framework for dynamic graph drawing" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "261--270" -, keywords = "graph drawing" -, cites = "bst-bst-85, bd-udttd-91, bdtt-hdspd-91, cnao-laepg-85, ct-detta-91, dt-aprad-88, dt-ipt-89, dtt-arsdd-89, dlt-pepg-84, el-hddg-89, et-adgab-89, egs-oplms-86, eittwy-mmsfd-92, fhhklsww-dgphr-90i, fpp-hdpgg-90, gt-dtdpl-91, gy-tsr-83, hl-updss-91, lec-aptg-67, m-ddt-90, o-agta-87, pt-fdplm-89, rt-tdt-81, rt-rplbo-86, s-epgg-90, st-dsdt-83, stt-mvuhs-81, sr-cdtn-83, t-eggmn-87, t-ddspg-88, tp-dmpda-90, tt-uavrp-86, tt-pgelt-89, tt-trpg-89, tt-rgc-91, tv-ptcpl-91, t-paog-89, vtl-rspd-82, kw-wvgbr-89, ZZZ" -, update = "01.04 icking, 97.11 bibrelex, 93.09 tamassia" +, author = "R. F. Cohen and G. {Di Battista} and R. Tamassia and I. G. Tollis and P. Bertolazzi" +, title = "A framework for dynamic graph drawing" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "261--270" +, keywords = "graph drawing" +, cites = "bst-bst-85, bd-udttd-91, bdtt-hdspd-91, cnao-laepg-85, ct-detta-91, dt-aprad-88, dt-ipt-89, dtt-arsdd-89, dlt-pepg-84, el-hddg-89, et-adgab-89, egs-oplms-86, eittwy-mmsfd-92, fhhklsww-dgphr-90i, fpp-hdpgg-90, gt-dtdpl-91, gy-tsr-83, hl-updss-91, lec-aptg-67, m-ddt-90, o-agta-87, pt-fdplm-89, rt-tdt-81, rt-rplbo-86, s-epgg-90, st-dsdt-83, stt-mvuhs-81, sr-cdtn-83, t-eggmn-87, t-ddspg-88, tp-dmpda-90, tt-uavrp-86, tt-pgelt-89, tt-trpg-89, tt-rgc-91, tv-ptcpl-91, t-paog-89, vtl-rspd-82, kw-wvgbr-89, ZZZ" +, update = "01.04 icking, 97.11 bibrelex, 93.09 tamassia" } @inproceedings{celr-tdgd-95 -, author = "R. F. Cohen and P. Eades and T. Lin and F. Ruskey" -, title = "Three-Dimensional Graph Drawing" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "1--11" -, keywords = "graph drawing, 3D" -, precedes = "celr-tdgd-96" -, update = "98.07 patrignani, 95.01 tamassia" +, author = "R. F. Cohen and P. Eades and T. Lin and F. Ruskey" +, title = "Three-Dimensional Graph Drawing" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "1--11" +, keywords = "graph drawing, 3D" +, precedes = "celr-tdgd-96" +, update = "98.07 patrignani, 95.01 tamassia" } @article{celr-tdgd-96 -, author = "R. F. Cohen and P. Eades and T. Lin and F. Ruskey" -, title = "Three-Dimensional Graph Drawing" -, journal = "Algorithmica" -, volume = 17 -, year = 1997 -, pages = "199--208" -, succeeds = "celr-tdgd-95" -, update = "98.07 patrignani" +, author = "R. F. Cohen and P. Eades and T. Lin and F. Ruskey" +, title = "Three-Dimensional Graph Drawing" +, journal = "Algorithmica" +, volume = 17 +, year = 1997 +, pages = "199--208" +, succeeds = "celr-tdgd-95" +, update = "98.07 patrignani" } @inproceedings{cstv-daopb-93 -, author = "R. F. Cohen and S. Sairam and R. Tamassia and J. S. Vitter" -, title = "Dynamic Algorithms for Optimization Problems in Bounded Tree-Width Graphs" -, booktitle = "Proc. of the Third Conference on Integer Programming and Combinatorial Optimization" -, year = 1993 -, pages = "99--112" -, update = "94.01 tamassia" +, author = "R. F. Cohen and S. Sairam and R. Tamassia and J. S. Vitter" +, title = "Dynamic Algorithms for Optimization Problems in Bounded Tree-Width Graphs" +, booktitle = "Proc. of the Third Conference on Integer Programming and Combinatorial Optimization" +, year = 1993 +, pages = "99--112" +, update = "94.01 tamassia" } @techreport{ct-cc-92 -, author = "R. F. Cohen and R. Tamassia" -, title = "Combine and conquer" -, type = "Report" -, number = "CS-92-19" -, institution = "Comput. Sci. Dept., Brown Univ." -, address = "Providence, RI" -, year = 1992 -, update = "93.05 smid" +, author = "R. F. Cohen and R. Tamassia" +, title = "Combine and conquer" +, type = "Report" +, number = "CS-92-19" +, institution = "Comput. Sci. Dept., Brown Univ." +, address = "Providence, RI" +, year = 1992 +, update = "93.05 smid" } @article{ct-cc-97 -, author = "Robert F. Cohen and Roberto Tamassia" -, title = "Combine and Conquer" -, journal = "Algorithmica" -, volume = 18 -, year = 1997 -, pages = "342--362" -, succeeds = "ct-ccgtd-93" -, update = "98.07 tamassia" +, author = "Robert F. Cohen and Roberto Tamassia" +, title = "Combine and Conquer" +, journal = "Algorithmica" +, volume = 18 +, year = 1997 +, pages = "342--362" +, succeeds = "ct-ccgtd-93" +, update = "98.07 tamassia" } @incollection{ct-ccgtd-93 -, author = "Robert F. Cohen and Roberto Tamassia" -, title = "Combine and Conquer: {A} General Technique for Dynamic Algorithms" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "97--108" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "Robert F. Cohen and Roberto Tamassia" +, title = "Combine and Conquer: {A} General Technique for Dynamic Algorithms" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "97--108" +, update = "94.01 smid, 93.09 milone+mitchell" } @article{ct-det-95 -, author = "R. F. Cohen and R. Tamassia" -, title = "Dynamic Expression Trees" -, journal = "Algorithmica" -, volume = 13 -, year = 1995 -, pages = "245--265" -, url = "https://www.cs.brown.edu/cgc/papers/ct-det-95.ps.gz" -, succeeds = "ct-detta-91" -, update = "97.03 tamassia, 95.01 tamassia, 95.01 tamassia" +, author = "R. F. Cohen and R. Tamassia" +, title = "Dynamic Expression Trees" +, journal = "Algorithmica" +, volume = 13 +, year = 1995 +, pages = "245--265" +, url = "https://www.cs.brown.edu/cgc/papers/ct-det-95.ps.gz" +, succeeds = "ct-detta-91" +, update = "97.03 tamassia, 95.01 tamassia, 95.01 tamassia" } @inproceedings{ct-detta-91 -, author = "R. F. Cohen and R. Tamassia" -, title = "Dynamic Expression Trees and their Applications" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "52--61" -, update = "93.09 goodrich" +, author = "R. F. Cohen and R. Tamassia" +, title = "Dynamic Expression Trees and their Applications" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "52--61" +, update = "93.09 goodrich" } @inproceedings{cg-pmpps-97 -, author = "S. D. Cohen and Leonidas J. Guibas" -, title = "Partial Matching of Planar Polylines Under Similarity Transformations" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1997 -, pages = "777--786" -, update = "98.03 mitchell, 97.03 held" +, author = "S. D. Cohen and Leonidas J. Guibas" +, title = "Partial Matching of Planar Polylines Under Similarity Transformations" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1997 +, pages = "777--786" +, update = "98.03 mitchell, 97.03 held" } @inproceedings{ccy-cdt3-02 -, author = "David {Cohen-Steiner} and Eric {Colin de Verdi{\`e}re} and Mariette Yvinec" -, title = "Conforming {Delaunay} Triangulations in 3D" -, booktitle = "Proc. 18th Annu. ACM Sympos. Comput. Geom." -, year = 2002 -, pages = "" -, update = "02.03 devillers" +, author = "David {Cohen-Steiner} and Eric {Colin de Verdi{\`e}re} and Mariette Yvinec" +, title = "Conforming {Delaunay} Triangulations in 3D" +, booktitle = "Proc. 18th Annu. ACM Sympos. Comput. Geom." +, year = 2002 +, pages = "" +, update = "02.03 devillers" } @article{crs-ostan-90 -, author = "J. P. Cohoon and D. S. Richards and J. S. Salowe" -, title = "An optimal {Steiner} tree algorithm for a net whose terminals lie on the perimeter of a rectangle" -, journal = "IEEE Trans. Comput.-Aided. Design Integr. Circuits Syst." -, volume = 9 -, number = 4 -, year = 1990 -, pages = "398--407" -, keywords = "Steiner tree" -, update = "98.11 bibrelex, 96.09 devillers, 95.09 korneenko" +, author = "J. P. Cohoon and D. S. Richards and J. S. Salowe" +, title = "An optimal {Steiner} tree algorithm for a net whose terminals lie on the perimeter of a rectangle" +, journal = "IEEE Trans. Comput.-Aided. Design Integr. Circuits Syst." +, volume = 9 +, number = 4 +, year = 1990 +, pages = "398--407" +, keywords = "Steiner tree" +, update = "98.11 bibrelex, 96.09 devillers, 95.09 korneenko" } @inproceedings{crg-uasgl-92 -, author = "A. C. F. Colchester and G. P. Robinson and L. D. Griffin" -, title = "A unified approach to the segmentation of grey-level and dot-pattern" -, booktitle = "Proc. 11th IEEE Internat. Conf. Pattern Recogn." -, year = 1992 -, pages = "319--322" -, update = "98.07 bibrelex" +, author = "A. C. F. Colchester and G. P. Robinson and L. D. Griffin" +, title = "A unified approach to the segmentation of grey-level and dot-pattern" +, booktitle = "Proc. 11th IEEE Internat. Conf. Pattern Recogn." +, year = 1992 +, pages = "319--322" +, update = "98.07 bibrelex" } @article{c-nsc-83 -, author = "A. J. Cole" -, title = "A note on spacefilling curves" -, journal = "Softw. -- Pract. Exp." -, volume = 13 -, number = 12 -, year = 1983 -, pages = "1181--1189" -, update = "95.09 korneenko" +, author = "A. J. Cole" +, title = "A note on spacefilling curves" +, journal = "Softw. -- Pract. Exp." +, volume = 13 +, number = 12 +, year = 1983 +, pages = "1181--1189" +, update = "95.09 korneenko" } @article{c-oesa-87 -, author = "R. Cole" -, title = "An optimally efficient selection algorithm" -, journal = "Inform. Process. Lett." -, volume = 26 -, year = 1987 -, pages = "295--299" -, update = "98.07 mitchell, 97.11 bibrelex" +, author = "R. Cole" +, title = "An optimally efficient selection algorithm" +, journal = "Inform. Process. Lett." +, volume = 26 +, year = 1987 +, pages = "295--299" +, update = "98.07 mitchell, 97.11 bibrelex" } @inproceedings{c-pms-86 -, author = "R. Cole" -, title = "Parallel merge sort" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "511--516" -, update = "97.11 bibrelex" +, author = "R. Cole" +, title = "Parallel merge sort" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "511--516" +, update = "97.11 bibrelex" } @article{c-pms-88 -, author = "R. Cole" -, title = "Parallel merge sort" -, journal = "SIAM J. Comput." -, volume = 17 -, number = 4 -, year = 1988 -, pages = "770--785" +, author = "R. Cole" +, title = "Parallel merge sort" +, journal = "SIAM J. Comput." +, volume = 17 +, number = 4 +, year = 1988 +, pages = "770--785" } @inproceedings{c-pps4d-85 -, author = "R. Cole" -, title = "Partitioning point sets in $4$ dimensions" -, booktitle = "Proc. 12th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 194 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "111--119" -, keywords = "data structuring, $4$-dimensional, points, counting" -, succeeds = "c-ppsad-??" -, precedes = "c-ppsad-87" +, author = "R. Cole" +, title = "Partitioning point sets in $4$ dimensions" +, booktitle = "Proc. 12th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 194 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "111--119" +, keywords = "data structuring, $4$-dimensional, points, counting" +, succeeds = "c-ppsad-??" +, precedes = "c-ppsad-87" } @techreport{c-ppsad-?? -, author = "R. Cole" -, title = "Partitioning point sets in arbitrary dimensions" -, type = "Report" -, number = 184 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, year = "??" -, keywords = "data structuring, $d$-dimensional, points, counting" -, precedes = "c-pps4d-85" +, author = "R. Cole" +, title = "Partitioning point sets in arbitrary dimensions" +, type = "Report" +, number = 184 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, year = "??" +, keywords = "data structuring, $d$-dimensional, points, counting" +, precedes = "c-pps4d-85" } @article{c-ppsad-87 -, author = "R. Cole" -, title = "Partitioning point sets in arbitrary dimensions" -, journal = "Theoret. Comput. Sci." -, volume = 49 -, year = 1987 -, pages = "239--265" -, keywords = "data structuring, $d$-dimensional, points, counting" -, succeeds = "c-pps4d-85" +, author = "R. Cole" +, title = "Partitioning point sets in arbitrary dimensions" +, journal = "Theoret. Comput. Sci." +, volume = 49 +, year = 1987 +, pages = "239--265" +, keywords = "data structuring, $d$-dimensional, points, counting" +, succeeds = "c-pps4d-85" } @techreport{c-sssl-83 -, author = "R. Cole" -, title = "Searching and storing similar lists" -, type = "Technical {Report}" -, number = 88 -, institution = "New York Univ." -, month = oct -, year = 1983 -, precedes = "c-sssl-86" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "R. Cole" +, title = "Searching and storing similar lists" +, type = "Technical {Report}" +, number = 88 +, institution = "New York Univ." +, month = oct +, year = 1983 +, precedes = "c-sssl-86" +, update = "98.11 bibrelex, 97.11 bibrelex" } @article{c-sssl-86 -, author = "R. Cole" -, title = "Searching and storing similar lists" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "202--220" -, keywords = "searching, data structuring, point location" -, succeeds = "c-sssl-83" -, update = "98.11 bibrelex" +, author = "R. Cole" +, title = "Searching and storing similar lists" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "202--220" +, keywords = "searching, data structuring, point location" +, succeeds = "c-sssl-83" +, update = "98.11 bibrelex" } @inproceedings{c-sdsno-84 -, author = "R. Cole" -, title = "Slowing down sorting networks to obtain faster sorting algorithms" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "255--260" -, keywords = "parallel computation, network algorithms, sorting, searching, design of algorithms" -, precedes = "c-sdsno-87" +, author = "R. Cole" +, title = "Slowing down sorting networks to obtain faster sorting algorithms" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "255--260" +, keywords = "parallel computation, network algorithms, sorting, searching, design of algorithms" +, precedes = "c-sdsno-87" } @article{c-sdsno-87 -, author = "R. Cole" -, title = "Slowing down sorting networks to obtain faster sorting algorithms" -, journal = "J. ACM" -, volume = 34 -, number = 1 -, year = 1987 -, pages = "200--208" -, succeeds = "c-sdsno-84" -, update = "98.11 bibrelex" +, author = "R. Cole" +, title = "Slowing down sorting networks to obtain faster sorting algorithms" +, journal = "J. ACM" +, volume = 34 +, number = 1 +, year = 1987 +, pages = "200--208" +, succeeds = "c-sdsno-84" +, update = "98.11 bibrelex" } @inproceedings{cg-opapp-88 -, author = "R. Cole and M. T. Goodrich" -, title = "Optimal parallel algorithms for polygon and point-set problems" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "201--210" -, precedes = "cg-opapp-92" -, cites = "acgoy-pcg-85, acg-cdctd-87, ag-epssg-86, ag-pasft-88, bs-dcms-76, bn-absop-86, c-pagp-80, c-pms-86, g-eptcg-87, g-fchsp-87, grs-kfcg-83, krs-ppp-85, lf-ppc-80, lp-annpc-78, lp-oafkp-79, pm-finhs-79, s-gc-75, t-sgprc-83, w-opach-85, ZZZ" -, update = "98.03 bibrelex, 94.01 jones" +, author = "R. Cole and M. T. Goodrich" +, title = "Optimal parallel algorithms for polygon and point-set problems" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "201--210" +, precedes = "cg-opapp-92" +, cites = "acgoy-pcg-85, acg-cdctd-87, ag-epssg-86, ag-pasft-88, bs-dcms-76, bn-absop-86, c-pagp-80, c-pms-86, g-eptcg-87, g-fchsp-87, grs-kfcg-83, krs-ppp-85, lf-ppc-80, lp-annpc-78, lp-oafkp-79, pm-finhs-79, s-gc-75, t-sgprc-83, w-opach-85, ZZZ" +, update = "98.03 bibrelex, 94.01 jones" } @article{cg-opapp-92 -, author = "R. Cole and M. T. Goodrich" -, title = "Optimal parallel algorithms for polygon and point-set problems" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "3--23" -, succeeds = "cg-opapp-88" -, update = "94.01 jones" +, author = "R. Cole and M. T. Goodrich" +, title = "Optimal parallel algorithms for polygon and point-set problems" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "3--23" +, succeeds = "cg-opapp-88" +, update = "94.01 jones" } @article{cgo-anodp-96 -, author = "R. Cole and M. T. Goodrich and C. {\'O}'D{\'u}nlaing" -, title = "A Nearly Optimal Deterministic Parallel {Voronoi} Diagram Algorithm" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "569--617" -, update = "97.03 smid" +, author = "R. Cole and M. T. Goodrich and C. {\'O}'D{\'u}nlaing" +, title = "A Nearly Optimal Deterministic Parallel {Voronoi} Diagram Algorithm" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "569--617" +, update = "97.03 smid" } @inproceedings{cgo-mftpe-90 -, author = "R. Cole and M. T. Goodrich and C. {\'O}'D{\'u}nlaing" -, title = "Merging free trees in parallel for efficient {Voronoi} diagram construction" -, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 443 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "432--445" +, author = "R. Cole and M. T. Goodrich and C. {\'O}'D{\'u}nlaing" +, title = "Merging free trees in parallel for efficient {Voronoi} diagram construction" +, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 443 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "432--445" } @article{csss-otass-89 -, author = "R. Cole and J. Salowe and W. Steiger and E. Szemer{\'e}di" -, title = "An optimal-time algorithm for slope selection" -, journal = "SIAM J. Comput." -, volume = 18 -, number = 4 -, year = 1989 -, pages = "792--810" -, keywords = "arrangements, $d$-dimensional, points, counting, parametric search technique" -, update = "98.11 bibrelex" +, author = "R. Cole and J. Salowe and W. Steiger and E. Szemer{\'e}di" +, title = "An optimal-time algorithm for slope selection" +, journal = "SIAM J. Comput." +, volume = 18 +, number = 4 +, year = 1989 +, pages = "792--810" +, keywords = "arrangements, $d$-dimensional, points, counting, parametric search technique" +, update = "98.11 bibrelex" } @incollection{csss-oss-88 -, author = "R. Cole and J. Salowe and W. Steiger and E. Szemer{\'e}di" -, title = "Optimal slope selection" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, year = 1988 -, pages = "133--146" -, update = "98.03 bibrelex" +, author = "R. Cole and J. Salowe and W. Steiger and E. Szemer{\'e}di" +, title = "Optimal slope selection" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, year = 1988 +, pages = "133--146" +, update = "98.03 bibrelex" } @techreport{cs-vppt-86 -, author = "R. Cole and Micha Sharir" -, title = "Visibility problems for polyhedral terrains" -, type = "Technical {Report}" -, number = 266 -, institution = "??" -, month = dec -, year = 1986 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "R. Cole and Micha Sharir" +, title = "Visibility problems for polyhedral terrains" +, type = "Technical {Report}" +, number = 266 +, institution = "??" +, month = dec +, year = 1986 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{cs-vppt-89 -, author = "R. Cole and Micha Sharir" -, title = "Visibility problems for polyhedral terrains" -, journal = "J. Symbolic Comput." -, volume = 7 -, year = 1989 -, pages = "11--30" -, keywords = "locus approach, decomposition, searching, rays, visibility, three-dimensional, polyhedra, polyhedral terrain" -, update = "98.03 mitchell" +, author = "R. Cole and Micha Sharir" +, title = "Visibility problems for polyhedral terrains" +, journal = "J. Symbolic Comput." +, volume = 7 +, year = 1989 +, pages = "11--30" +, keywords = "locus approach, decomposition, searching, rays, visibility, three-dimensional, polyhedra, polyhedral terrain" +, update = "98.03 mitchell" } @inproceedings{csy-khrp-84 -, author = "R. Cole and Micha Sharir and C. K. Yap" -, title = "On $k$-hulls and related problems" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "154--166" -, precedes = "csy-khrp-87" -, update = "98.03 mitchell" +, author = "R. Cole and Micha Sharir and C. K. Yap" +, title = "On $k$-hulls and related problems" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "154--166" +, precedes = "csy-khrp-87" +, update = "98.03 mitchell" } @article{csy-khrp-87 -, author = "R. Cole and Micha Sharir and C. K. Yap" -, title = "On $k$-hulls and related problems" -, journal = "SIAM J. Comput." -, volume = 16 -, year = 1987 -, pages = "61--77" -, keywords = "design of algorithms, searching, two-dimensional, three-dimensional" -, succeeds = "csy-khrp-84" -, update = "98.03 mitchell" +, author = "R. Cole and Micha Sharir and C. K. Yap" +, title = "On $k$-hulls and related problems" +, journal = "SIAM J. Comput." +, volume = 16 +, year = 1987 +, pages = "61--77" +, keywords = "design of algorithms, searching, two-dimensional, three-dimensional" +, succeeds = "csy-khrp-84" +, update = "98.03 mitchell" } @inproceedings{cs-rreww-83 -, author = "R. Cole and A. Siegel" -, title = "River routing every which way, but loose" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, month = nov -, year = 1983 -, pages = "112--121" -, update = "98.03 bibrelex" +, author = "R. Cole and A. Siegel" +, title = "River routing every which way, but loose" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, month = nov +, year = 1983 +, pages = "112--121" +, update = "98.03 bibrelex" } @inproceedings{cs-rreww-84 -, author = "R. Cole and A. Siegel" -, title = "River routing every which way, but loose" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "65--73" +, author = "R. Cole and A. Siegel" +, title = "River routing every which way, but loose" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "65--73" } @inproceedings{cv-aepsa-86 -, author = "R. Cole and U. Vishkin" -, title = "Approximate and Exact Parallel Scheduling with Applications to List, Tree, and Graph Problems" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "478--491" -, update = "95.01 tamassia" +, author = "R. Cole and U. Vishkin" +, title = "Approximate and Exact Parallel Scheduling with Applications to List, Tree, and Graph Problems" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "478--491" +, update = "95.01 tamassia" } @article{cv-apsp1-88 -, author = "R. Cole and U. Vishkin" -, title = "Approximate parallel scheduling, Part I: the basic technique with applications to optimal parallel list ranking in logarithmic time" -, journal = "SIAM J. Comput." -, volume = 17 -, number = 1 -, year = 1988 -, pages = "128--142" -, update = "98.07 bibrelex, 96.09 orourke" +, author = "R. Cole and U. Vishkin" +, title = "Approximate parallel scheduling, Part I: the basic technique with applications to optimal parallel list ranking in logarithmic time" +, journal = "SIAM J. Comput." +, volume = 17 +, number = 1 +, year = 1988 +, pages = "128--142" +, update = "98.07 bibrelex, 96.09 orourke" } @inproceedings{cv-dctac-86i -, author = "R. Cole and U. Vishkin" -, title = "Deterministic Coin Tossing and Accelerating Cascades: {Micro} and Macro Techniques for Designing Parallel Algorithms" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "206--219" -, update = "98.03 bibrelex" +, author = "R. Cole and U. Vishkin" +, title = "Deterministic Coin Tossing and Accelerating Cascades: {Micro} and Macro Techniques for Designing Parallel Algorithms" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "206--219" +, update = "98.03 bibrelex" } @article{cv-dctao-86 -, author = "R. Cole and U. Vishkin" -, title = "Deterministic coin tossing with applications to optimal list ranking" -, journal = "Inform. Control" -, volume = 1 -, year = 1986 -, pages = "153--174" -, update = "97.11 bibrelex" +, author = "R. Cole and U. Vishkin" +, title = "Deterministic coin tossing with applications to optimal list ranking" +, journal = "Inform. Control" +, volume = 1 +, year = 1986 +, pages = "153--174" +, update = "97.11 bibrelex" } @article{cv-fopps-89 -, author = "R. Cole and U. Vishkin" -, title = "Faster optimal parallel prefix sums and list ranking" -, journal = "Inform. Comput." -, volume = 81 -, number = 3 -, month = jun -, year = 1989 -, pages = "334--352" -, update = "98.07 bibrelex" +, author = "R. Cole and U. Vishkin" +, title = "Faster optimal parallel prefix sums and list ranking" +, journal = "Inform. Comput." +, volume = 81 +, number = 3 +, month = jun +, year = 1989 +, pages = "334--352" +, update = "98.07 bibrelex" } @article{cv-acdto-88 -, author = "R. Cole and U. Vishkin" -, title = "The accelerated centroid decomposition technique for optimal parallel tree evaluation in logarithmic time" -, journal = "Algorithmica" -, volume = 3 -, year = 1988 -, pages = "329--346" -, update = "97.11 bibrelex" +, author = "R. Cole and U. Vishkin" +, title = "The accelerated centroid decomposition technique for optimal parallel tree evaluation in logarithmic time" +, journal = "Algorithmica" +, volume = 3 +, year = 1988 +, pages = "329--346" +, update = "97.11 bibrelex" } @inproceedings{cy-grp-83 -, author = "R. Cole and C. K. Yap" -, title = "Geometric retrieval problems" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "112--121" -, precedes = "cy-grp-84" -, update = "97.11 bibrelex" +, author = "R. Cole and C. K. Yap" +, title = "Geometric retrieval problems" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "112--121" +, precedes = "cy-grp-84" +, update = "97.11 bibrelex" } @article{cy-grp-84 -, author = "R. Cole and C. K. Yap" -, title = "Geometric retrieval problems" -, journal = "Inform. Control" -, volume = 63 -, year = 1984 -, pages = "39--57" -, keywords = "locus approach, reporting, subdivisions, points" -, succeeds = "cy-grp-83" -, update = "97.11 bibrelex" +, author = "R. Cole and C. K. Yap" +, title = "Geometric retrieval problems" +, journal = "Inform. Control" +, volume = 63 +, year = 1984 +, pages = "39--57" +, keywords = "locus approach, reporting, subdivisions, points" +, succeeds = "cy-grp-83" +, update = "97.11 bibrelex" } @techreport{cy-sp-83 -, author = "R. Cole and C.-K. Yap" -, title = "Shape from Probing" -, type = "Technical {Report}" -, number = 15 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, month = dec -, year = 1983 -, update = "98.03 bibrelex" +, author = "R. Cole and C.-K. Yap" +, title = "Shape from Probing" +, type = "Technical {Report}" +, number = 15 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, month = dec +, year = 1983 +, update = "98.03 bibrelex" } @article{cy-sp-87 -, author = "R. Cole and C. K. Yap" -, title = "Shape from probing" -, journal = "J. Algorithms" -, volume = 8 -, number = 1 -, month = mar -, year = 1987 -, pages = "19--38" -, keywords = "detection, probing, two-dimensional, worst-case analysis, lower bounds" -, update = "98.11 bibrelex" +, author = "R. Cole and C. K. Yap" +, title = "Shape from probing" +, journal = "J. Algorithms" +, volume = 8 +, number = 1 +, month = mar +, year = 1987 +, pages = "19--38" +, keywords = "detection, probing, two-dimensional, worst-case analysis, lower bounds" +, update = "98.11 bibrelex" } @article{cz-opabd-90 -, author = "R. Cole and O. Zajicek" -, title = "An optimal parallel algorithm for building a data structure for planar point location" -, journal = "J. Parallel Distrib. Comput." -, volume = 8 -, year = 1990 -, pages = "280--285" -, update = "93.05 devillers" +, author = "R. Cole and O. Zajicek" +, title = "An optimal parallel algorithm for building a data structure for planar point location" +, journal = "J. Parallel Distrib. Comput." +, volume = 8 +, year = 1990 +, pages = "280--285" +, update = "93.05 devillers" } @inproceedings{cz-aiapm-89 -, author = "R. Cole and O. Zajicek" -, title = "The {APRAM}: Incorporating asynchrony into the {PRAM} model" -, booktitle = "Proc. 1st ACM Sympos. Parallel Algorithms Architect." -, year = 1989 -, pages = "169--178" -, update = "96.09 orourke" +, author = "R. Cole and O. Zajicek" +, title = "The {APRAM}: Incorporating asynchrony into the {PRAM} model" +, booktitle = "Proc. 1st ACM Sympos. Parallel Algorithms Architect." +, year = 1989 +, pages = "169--178" +, update = "96.09 orourke" } @inproceedings{cz-eaa-90 -, author = "R. Cole and O. Zajicek" -, title = "The expected advantage of asynchrony" -, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "85--94" -, update = "96.09 orourke" +, author = "R. Cole and O. Zajicek" +, title = "The expected advantage of asynchrony" +, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "85--94" +, update = "96.09 orourke" } @inproceedings{ca-isc-79 -, author = "G. Coleman and H. Andrews" -, title = "Image Segmentation by Clustering" -, booktitle = "Proceedings of the IEEE." -, year = 1979 -, pages = "773--785" -, update = "98.07 agarwal" +, author = "G. Coleman and H. Andrews" +, title = "Image Segmentation by Clustering" +, booktitle = "Proceedings of the IEEE." +, year = 1979 +, pages = "773--785" +, update = "98.07 agarwal" } @inproceedings{cs-psrrs-01 -, author = "Narcis Coll and Joan Antoni Sellar{\`e}s" -, title = "Planar Shape Reconstruction from Random Sections" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "121--124" -, update = "01.04 icking" +, author = "Narcis Coll and Joan Antoni Sellar{\`e}s" +, title = "Planar Shape Reconstruction from Random Sections" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "121--124" +, update = "01.04 icking" } @mastersthesis{c-vgump-91 -, author = "P. Colley" -, title = "Visibility graphs of uni-monotone polygons" -, school = "Univ. Waterloo" -, year = 1991 -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "P. Colley" +, title = "Visibility graphs of uni-monotone polygons" +, school = "Univ. Waterloo" +, year = 1991 +, keywords = "master thesis" +, update = "98.07 bibrelex" } @article{cls-vgt-97 -, author = "P. Colley and A. Lubiw and J. Spinrad" -, title = "Visibility graphs of towers" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "161--172" -, update = "97.03 devillers" +, author = "P. Colley and A. Lubiw and J. Spinrad" +, title = "Visibility graphs of towers" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "161--172" +, update = "97.03 devillers" } @inproceedings{cmr-mlg-95 -, author = "Paul Colley and Hank Meijer and David Rappaport" -, title = "Motivating Lazy Guards" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "121--126" -, update = "95.09 jones" +, author = "Paul Colley and Hank Meijer and David Rappaport" +, title = "Motivating Lazy Guards" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "121--126" +, update = "95.09 jones" } @techreport{cmr-onsps-94t -, author = "P. Colley and H. Meijer and D. Rappaport" -, title = "Optimal Nearly-Similar Polygon Stabbers of Convex Polygons" -, type = "Technical Report" -, number = "CISC-94-357" -, institution = "Queen's University" -, year = 1994 -, precedes = "cmr-onsps-94" -, update = "98.11 bibrelex" +, author = "P. Colley and H. Meijer and D. Rappaport" +, title = "Optimal Nearly-Similar Polygon Stabbers of Convex Polygons" +, type = "Technical Report" +, number = "CISC-94-357" +, institution = "Queen's University" +, year = 1994 +, precedes = "cmr-onsps-94" +, update = "98.11 bibrelex" } @inproceedings{cmr-onsps-94 -, author = "P. Colley and H. Meijer and D. Rappaport" -, title = "Optimal Nearly-Similar Polygon Stabbers of Convex Polygons" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "269--274" -, succeeds = "cmr-onsps-94t" -, cites = "ab-eact-87, ad-ahdsp-87, bcetsu-csts-91, mkb-caocp-93, cmr-onsps-94t, e-acg-87, emprww-sls-82, ew-spdtl-89, gpw-gtt-91, mr-mpcpl-90, o-olafs-81, r-mptls-92, aw-plts-88, e-ftssg-85, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "P. Colley and H. Meijer and D. Rappaport" +, title = "Optimal Nearly-Similar Polygon Stabbers of Convex Polygons" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "269--274" +, succeeds = "cmr-onsps-94t" +, cites = "ab-eact-87, ad-ahdsp-87, bcetsu-csts-91, mkb-caocp-93, cmr-onsps-94t, e-acg-87, emprww-sls-82, ew-spdtl-89, gpw-gtt-91, mr-mpcpl-90, o-olafs-81, r-mptls-92, aw-plts-88, e-ftssg-85, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{c-rvgum-92 -, author = "P. A. Colley" -, title = "Recognizing visibility graphs of uni-monotone polygons" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "29--34" -, cites = "ae-vgspu-91, aek-rvgsp-91, ahu-daca-74, c-vgump-91, e-vgr-90, ht-dgtc-73, ps-coac-82, o-agta-87, ZZZ" -, update = "98.07 bibrelex" +, author = "P. A. Colley" +, title = "Recognizing visibility graphs of uni-monotone polygons" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "29--34" +, cites = "ae-vgspu-91, aek-rvgsp-91, ahu-daca-74, c-vgump-91, e-vgr-90, ht-dgtc-73, ps-coac-82, o-agta-87, ZZZ" +, update = "98.07 bibrelex" } @article{c-cmpr-71 -, author = "G. Collins" -, title = "The Calculation of Multivariate Polynomial Resultants" -, journal = "J. ACM" -, volume = 18 -, number = 4 -, year = 1971 -, pages = "515--532" -, update = "98.03 bibrelex" +, author = "G. Collins" +, title = "The Calculation of Multivariate Polynomial Resultants" +, journal = "J. ACM" +, volume = 18 +, number = 4 +, year = 1971 +, pages = "515--532" +, update = "98.03 bibrelex" } @inproceedings{c-qercf-75 -, author = "G. E. Collins" -, title = "Quantifier Elimination for Real Closed Fields by Cylindrical Algebraic Decomposition" -, booktitle = "Proc. 2nd GI Conference on Automata Theory and Formal Languages" -, series = "Lecture Notes Comput. Sci." -, volume = 33 -, publisher = "Springer-Verlag" -, year = 1975 -, pages = "134--183" -, update = "99.11 bibrelex, 98.03 bibrelex, 97.03 schwarzkopf, 96.09 agarwal, 93.09 rote" +, author = "G. E. Collins" +, title = "Quantifier Elimination for Real Closed Fields by Cylindrical Algebraic Decomposition" +, booktitle = "Proc. 2nd GI Conference on Automata Theory and Formal Languages" +, series = "Lecture Notes Comput. Sci." +, volume = 33 +, publisher = "Springer-Verlag" +, year = 1975 +, pages = "134--183" +, update = "99.11 bibrelex, 98.03 bibrelex, 97.03 schwarzkopf, 96.09 agarwal, 93.09 rote" } @article{ch-mrsp-74 -, author = "G. E. Collins and E. Horowitz" -, title = "The minimum root separation of a polynomial" -, journal = "Math. Comput." -, volume = 28 -, year = 1974 -, pages = "589--597" -, update = "98.03 bibrelex" +, author = "G. E. Collins and E. Horowitz" +, title = "The minimum root separation of a polynomial" +, journal = "Math. Comput." +, volume = 28 +, year = 1974 +, pages = "589--597" +, update = "98.03 bibrelex" } @incollection{cl-rzp-82 -, author = "G. E. Collins and R. Loos" -, title = "Real zeros of polynomials" -, editor = "B. Buchberger and G. E. Collins and R. Loos" -, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1982 -, pages = "83--94" -, update = "99.11 bibrelex, 97.11 bibrelex" +, author = "G. E. Collins and R. Loos" +, title = "Real zeros of polynomials" +, editor = "B. Buchberger and G. E. Collins and R. Loos" +, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1982 +, pages = "83--94" +, update = "99.11 bibrelex, 97.11 bibrelex" } @incollection{crd-isasv-96 -, author = "C. Colombo and M. Rucci and P. Dario" -, title = "Integrating selective attention and space-variant sensing in machine vision" -, editor = "J. L. C. Sanz" -, booktitle = "Image Technology: Advances in Image Processing, Multimedia and Machine Vision" -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "109--128" -, update = "98.07 bibrelex" +, author = "C. Colombo and M. Rucci and P. Dario" +, title = "Integrating selective attention and space-variant sensing in machine vision" +, editor = "J. L. C. Sanz" +, booktitle = "Image Technology: Advances in Image Processing, Multimedia and Machine Vision" +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "109--128" +, update = "98.07 bibrelex" } @article{c-pditd-68 -, author = "P. G. Comba" -, title = "A procedure for detecting intersections of three-dimensional objects" -, journal = "J. ACM" -, volume = 15 -, year = 1968 -, pages = "354--366" +, author = "P. G. Comba" +, title = "A procedure for detecting intersections of three-dimensional objects" +, journal = "J. ACM" +, volume = 15 +, year = 1968 +, pages = "354--366" } @article{c-ubt-79 -, author = "D. Comer" -, title = "The ubiquitous {B-tree}" -, journal = "ACM Comput. Surv." -, volume = 11 -, year = 1979 -, pages = "121--137" -, update = "95.01 devillers" +, author = "D. Comer" +, title = "The ubiquitous {B-tree}" +, journal = "ACM Comput. Surv." +, volume = 11 +, year = 1979 +, pages = "121--137" +, update = "95.01 devillers" } @article{co-gpah-82 -, author = "D. Comer and M. J. O'Donnell" -, title = "Geometric problems with applications to hashing" -, journal = "SIAM J. Comput." -, volume = 11 -, year = 1982 -, pages = "217--226" +, author = "D. Comer and M. J. O'Donnell" +, title = "Geometric problems with applications to hashing" +, journal = "SIAM J. Comput." +, volume = 11 +, year = 1982 +, pages = "217--226" } @phdthesis{c-emnr-89 -, author = "M. A. Conger" -, title = "Energy-minimizing networks in {$R^{n}$}" -, school = "Williams College" -, year = 1989 -, note = "Honors thesis" -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "M. A. Conger" +, title = "Energy-minimizing networks in {$R^{n}$}" +, school = "Williams College" +, year = 1989 +, note = "Honors thesis" +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @phdthesis{c-spdp-90 -, author = "H. Conn" -, title = "Some polygon decomposition problems" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1990 -, keywords = "doctoral thesis" -, update = "96.09 orourke" +, author = "H. Conn" +, title = "Some polygon decomposition problems" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1990 +, keywords = "doctoral thesis" +, update = "96.09 orourke" } @techreport{co-srrcp-87 -, author = "H. Conn and J. O'Rourke" -, title = "Some restricted rectangle covering problems" -, type = "Technical {Report}" -, number = "JHU 87-13" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1987 -, keywords = "covering, rectangles, NP-completeness" -, precedes = "co-srrcp-87i" -, update = "95.09 korneenko" +, author = "H. Conn and J. O'Rourke" +, title = "Some restricted rectangle covering problems" +, type = "Technical {Report}" +, number = "JHU 87-13" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1987 +, keywords = "covering, rectangles, NP-completeness" +, precedes = "co-srrcp-87i" +, update = "95.09 korneenko" } @inproceedings{co-mwqot-90 -, author = "H. E. Conn and J. O'Rourke" -, title = "Minimum weight quadrilaterization in {$O(n^{3} \log n)$} time" -, booktitle = "Proc. 28th Allerton Conf. Commun. Control Comput." -, month = oct -, year = 1990 -, pages = "788--797" -, keywords = "partitioning" +, author = "H. E. Conn and J. O'Rourke" +, title = "Minimum weight quadrilaterization in {$O(n^{3} \log n)$} time" +, booktitle = "Proc. 28th Allerton Conf. Commun. Control Comput." +, month = oct +, year = 1990 +, pages = "788--797" +, keywords = "partitioning" } @inproceedings{co-srrcp-87i -, author = "H. E. Conn and J. {O'Rourke}" -, title = "Some restricted rectangular covering problems" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1987 -, pages = "898--907" -, keywords = "covering, rectangles, NP-completeness, isothetic" -, succeeds = "co-srrcp-87" -, update = "95.09 korneenko" +, author = "H. E. Conn and J. {O'Rourke}" +, title = "Some restricted rectangular covering problems" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1987 +, pages = "898--907" +, keywords = "covering, rectangles, NP-completeness, isothetic" +, succeeds = "co-srrcp-87" +, update = "95.09 korneenko" } @article{c-npbct-71 -, author = "R. Connelly" -, title = "A new proof of {Brown}'s Collaring Theorem" -, journal = "Proc. Amer. Math. Soc." -, volume = 27 -, year = 1971 -, pages = "180--182" -, update = "97.11 bibrelex" +, author = "R. Connelly" +, title = "A new proof of {Brown}'s Collaring Theorem" +, journal = "Proc. Amer. Math. Soc." +, volume = 27 +, year = 1971 +, pages = "180--182" +, update = "97.11 bibrelex" } @inproceedings{c-ggr-91 -, author = "R. Connelly" -, title = "On generic global rigidity" -, editor = "P. Gritzman and B. Sturmfels" -, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 4 -, publisher = "AMS Press" -, year = 1991 -, pages = "147--155" -, keywords = "geometric graphs, $d$-dimensional, rigidity" -, update = "95.09 korneenko" +, author = "R. Connelly" +, title = "On generic global rigidity" +, editor = "P. Gritzman and B. Sturmfels" +, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 4 +, publisher = "AMS Press" +, year = 1991 +, pages = "147--155" +, keywords = "geometric graphs, $d$-dimensional, rigidity" +, update = "95.09 korneenko" } @article{c-re-82 -, author = "R. Connelly" -, title = "Rigidity and Energy" -, journal = "Invent. Math." -, volume = 66 -, year = 1982 -, pages = "11--33" -, keywords = "graph drawing" -, update = "96.09 tamassia" +, author = "R. Connelly" +, title = "Rigidity and Energy" +, journal = "Invent. Math." +, volume = 66 +, year = 1982 +, pages = "11--33" +, keywords = "graph drawing" +, update = "96.09 tamassia" } @inproceedings{cdr-epcbu-00 -, author = "Robert Connelly and Erik D. Demaine and G{\"u}nter Rote" -, title = "Every Polygon Can Be Untangled" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "62--65" -, update = "00.03 bibrelex" +, author = "Robert Connelly and Erik D. Demaine and G{\"u}nter Rote" +, title = "Every Polygon Can Be Untangled" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "62--65" +, update = "00.03 bibrelex" } @inproceedings{cdr-spacp-00 -, author = "R. Connelly and E. D. Demaine and G. Rote" -, title = "Straightening polygonal arcs and convexifying polygonal cycles" -, booktitle = "Proc. 41st Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS 2000" -, site = "Redondo Beach, California" -, publisher = "IEEE" -, month = nov -, year = 2000 -, pages = "432--442" -, update = "01.04 orourke+pocchiola" +, author = "R. Connelly and E. D. Demaine and G. Rote" +, title = "Straightening polygonal arcs and convexifying polygonal cycles" +, booktitle = "Proc. 41st Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS 2000" +, site = "Redondo Beach, California" +, publisher = "IEEE" +, month = nov +, year = 2000 +, pages = "432--442" +, update = "01.04 orourke+pocchiola" } @techreport{cf-ctdci-91 -, author = "R. Connelly and R. Freimer" -, title = "Covering a triangle with disks centered on its boundary" -, type = "Technical {Report}" -, number = "TR~91-1242" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = nov -, year = 1991 -, keywords = "covering, disks, triangles" +, author = "R. Connelly and R. Freimer" +, title = "Covering a triangle with disks centered on its boundary" +, type = "Technical {Report}" +, number = "TR~91-1242" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = nov +, year = 1991 +, keywords = "covering, disks, triangles" } @techreport{cw-sorps-90 -, author = "R. Connelly and W. Whiteley" -, title = "Second-Order Rigidity and Pre-Stress Stability" -, type = "Technical {Report}" -, institution = "Dept. of Math, Cornell Univ" -, month = jan -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "R. Connelly and W. Whiteley" +, title = "Second-Order Rigidity and Pre-Stress Stability" +, type = "Technical {Report}" +, institution = "Dept. of Math, Cornell Univ" +, month = jan +, year = 1990 +, update = "93.09 milone+mitchell" } @article{c-tr-92 -, author = "J. F. Connett" -, title = "Trapped Reflections?" -, journal = "Amer. Math. Monthly" -, volume = 99 -, year = 1992 -, pages = "178--179" -, update = "01.04 orourke" +, author = "J. F. Connett" +, title = "Trapped Reflections?" +, journal = "Amer. Math. Monthly" +, volume = 99 +, year = 1992 +, pages = "178--179" +, update = "01.04 orourke" } @article{c-msr-96 -, author = "M. Connolly" -, title = "Molecular surfaces: {A} review" -, journal = "Network Science" -, volume = "??" -, year = 1996 -, url = "http://www.awod.com/netsci/Issues/Apr96/feature1.html" -, update = "98.07 bibrelex" +, author = "M. Connolly" +, title = "Molecular surfaces: {A} review" +, journal = "Network Science" +, volume = "??" +, year = 1996 +, url = "http://www.awod.com/netsci/Issues/Apr96/feature1.html" +, update = "98.07 bibrelex" } @article{c--85 -, author = "M. L. Connolly" -, title = "??" -, journal = "J. Appl. Cryst." -, volume = 18 -, year = 1985 -, pages = "499--505" -, update = "98.03 bibrelex" +, author = "M. L. Connolly" +, title = "??" +, journal = "J. Appl. Cryst." +, volume = 18 +, year = 1985 +, pages = "499--505" +, update = "98.03 bibrelex" } @article{c--93 -, author = "M. L. Connolly" -, title = "??" -, journal = "J. Mol. Graphics" -, volume = 11 -, year = 1993 -, pages = "139--141" -, update = "98.03 bibrelex" +, author = "M. L. Connolly" +, title = "??" +, journal = "J. Mol. Graphics" +, volume = 11 +, year = 1993 +, pages = "139--141" +, update = "98.03 bibrelex" } % ### or is it T. H. Connolly @article{c-amsc-83 -, author = "M. L. Connolly" -, title = "Analytical molecular surface calculation" -, journal = "J. Appl. Cryst." -, volume = 16 -, year = 1983 -, pages = "548--558" -, update = "98.03 agarwal+bibrelex" +, author = "M. L. Connolly" +, title = "Analytical molecular surface calculation" +, journal = "J. Appl. Cryst." +, volume = 16 +, year = 1983 +, pages = "548--558" +, update = "98.03 agarwal+bibrelex" } @article{c-saspn-83 -, author = "M. L. Connolly" -, title = "Solvent-accessible surfaces of proteins and nucleic acids" -, journal = "Science" -, volume = 221 -, year = 1983 -, pages = "709--713" -, update = "98.03 bibrelex" +, author = "M. L. Connolly" +, title = "Solvent-accessible surfaces of proteins and nucleic acids" +, journal = "Science" +, volume = 221 +, year = 1983 +, pages = "709--713" +, update = "98.03 bibrelex" } @article{c-mis-91 -, author = "T. H. Connolly" -, title = "Molecular interstitial skeleton" -, journal = "Computer Chem." -, volume = 15 -, year = 1991 -, pages = "37--45" -, update = "98.03 agarwal" +, author = "T. H. Connolly" +, title = "Molecular interstitial skeleton" +, journal = "Computer Chem." +, volume = 15 +, year = 1991 +, pages = "37--45" +, update = "98.03 agarwal" } @inproceedings{c-lct-95 -, author = "Joel Conraud" -, title = "Lazy Constrained Tetrahedralization" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "15--27" -, update = "96.01 samitchell" +, author = "Joel Conraud" +, title = "Lazy Constrained Tetrahedralization" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "15--27" +, update = "96.01 samitchell" } @article{cehmnrv-aahvs-94 -, author = "M. P. Consens and F. C. Eigler and M. Z. Hasan and A. O. Mendelzon and E. G. Noik and A. G. Ryman and D. Vista" -, title = "Architecture and Applications of the {HY+} Visualization System" -, journal = "IBM Syst. J." -, volume = 33 -, year = 1994 -, pages = "458--476" -, keywords = "graph drawing, system" -, update = "96.09 tamassia, 96.04 garg" +, author = "M. P. Consens and F. C. Eigler and M. Z. Hasan and A. O. Mendelzon and E. G. Noik and A. G. Ryman and D. Vista" +, title = "Architecture and Applications of the {HY+} Visualization System" +, journal = "IBM Syst. J." +, volume = 33 +, year = 1994 +, pages = "458--476" +, keywords = "graph drawing, system" +, update = "96.09 tamassia, 96.04 garg" } @inproceedings{cmr-vqss-92 -, author = "M. P. Consens and A. O. Mendelzon and A. G. Ryman" -, title = "Visualizing and Querying Software Structures" -, booktitle = "Proc. 14th Intl. Conference on Software Engineering" -, year = 1992 -, pages = "138--156" -, keywords = "graph drawing" -, update = "96.09 tamassia, 96.04 garg" +, author = "M. P. Consens and A. O. Mendelzon and A. G. Ryman" +, title = "Visualizing and Querying Software Structures" +, booktitle = "Proc. 14th Intl. Conference on Software Engineering" +, year = 1992 +, pages = "138--156" +, keywords = "graph drawing" +, update = "96.09 tamassia, 96.04 garg" } @book{cb-enaaa-80 -, author = "S. D. Conte and C. de Boor" -, title = "Elementary Numerical Analysis: An Algorithmic Approach" -, edition = "3rd" -, publisher = "McGraw-Hill" -, address = "New York" -, year = 1980 -, update = "96.09 orourke" +, author = "S. D. Conte and C. de Boor" +, title = "Elementary Numerical Analysis: An Algorithmic Approach" +, edition = "3rd" +, publisher = "McGraw-Hill" +, address = "New York" +, year = 1980 +, update = "96.09 orourke" } @article{chs-plppgs-96 -, author = "J. H. Conway and R. H. Hardin and N. J. A. Sloane" -, title = "Packing lines, planes, etc.: {Packings} in {Grassmannian} spaces" -, journal = "Experimental Math." -, volume = 5 -, year = 1996 -, pages = "139--159" -, update = "97.07 orourke" +, author = "J. H. Conway and R. H. Hardin and N. J. A. Sloane" +, title = "Packing lines, planes, etc.: {Packings} in {Grassmannian} spaces" +, journal = "Experimental Math." +, volume = 5 +, year = 1996 +, pages = "139--159" +, update = "97.07 orourke" } @book{cs-splg-88 -, author = "J. H. Conway and N. J. A. Sloane" -, title = "Sphere Packings, Lattices and Groups" -, edition = "1st" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1988 -, update = "97.11 bibrelex" +, author = "J. H. Conway and N. J. A. Sloane" +, title = "Sphere Packings, Lattices and Groups" +, edition = "1st" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1988 +, update = "97.11 bibrelex" } @book{cs-splg-93 -, author = "J. H. Conway and N. J. A. Sloane" -, title = "Sphere Packings, Lattices and Groups" -, edition = "2nd" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1993 -, update = "97.11 bibrelex, 97.07 orourke" +, author = "J. H. Conway and N. J. A. Sloane" +, title = "Sphere Packings, Lattices and Groups" +, edition = "2nd" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1993 +, update = "97.11 bibrelex, 97.07 orourke" } @article{cclbwfodbt-avebp-80 -, author = "L. T. Cook and P. N. Cook and K. R. Lee and S. Batnitzky and B. Y. S. Wong and S. L. Fritz and J. Ophir and S. J. {Dwyer, III} and L. R. Bigongiari and A. W. Tempelton" -, title = "An algorithm for volume estimation based on polyhedral approximation" -, journal = "IEEE Trans. Biomedical Engineering" -, volume = 27 -, year = 1980 -, pages = "493--500" -, update = "98.03 bibrelex" +, author = "L. T. Cook and P. N. Cook and K. R. Lee and S. Batnitzky and B. Y. S. Wong and S. L. Fritz and J. Ophir and S. J. {Dwyer, III} and L. R. Bigongiari and A. W. Tempelton" +, title = "An algorithm for volume estimation based on polyhedral approximation" +, journal = "IEEE Trans. Biomedical Engineering" +, volume = 27 +, year = 1980 +, pages = "493--500" +, update = "98.03 bibrelex" } @article{c-sscg-86 -, author = "R. L. Cook" -, title = "Stochastic sampling in computer graphics" -, journal = "ACM Trans. Grpah." -, volume = 5 -, year = 1986 -, pages = "51--72" -, update = "98.03 bibrelex" +, author = "R. L. Cook" +, title = "Stochastic sampling in computer graphics" +, journal = "ACM Trans. Grpah." +, volume = 5 +, year = 1986 +, pages = "51--72" +, update = "98.03 bibrelex" } @article{cpc-drt-84 -, author = "R. L. Cook and T. Porter and L. Carpenter" -, title = "Distributed ray tracing" -, journal = "Comput. Graph." -, volume = 18 -, year = 1984 -, pages = "137--145" -, update = "98.03 bibrelex" +, author = "R. L. Cook and T. Porter and L. Carpenter" +, title = "Distributed ray tracing" +, journal = "Comput. Graph." +, volume = 18 +, year = 1984 +, pages = "137--145" +, update = "98.03 bibrelex" } @article{cdr-ultbp-86 -, author = "S. A. Cook and C. Dwork and R. Reischuk" -, title = "Upper and Lower Time Bounds for Parallel Random Access Machines without Simultaneous Writes" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "87--97" -, update = "96.09 orourke" +, author = "S. A. Cook and C. Dwork and R. Reischuk" +, title = "Upper and Lower Time Bounds for Parallel Random Access Machines without Simultaneous Writes" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "87--97" +, update = "96.09 orourke" } @article{chkm-ipp-92 -, author = "W. Cook and M. Hartman and R. Kannan and C. McDiarmid" -, title = "On integer points in polyhedra" -, journal = "Combinatorica" -, volume = 12 -, year = 1992 -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "W. Cook and M. Hartman and R. Kannan and C. McDiarmid" +, title = "On integer points in polyhedra" +, journal = "Combinatorica" +, volume = 12 +, year = 1992 +, update = "98.03 bibrelex, 97.11 bibrelex" } @techreport{crss-igbra-91 -, author = "W. Cook and T. Rugherford and H. E. Scarf and D. Shallcross" -, title = "An Implementation of the Generalized Basis Reduction Algorithm for Integer Programming" -, number = 990 -, institution = "Yale University" -, month = aug -, year = 1991 -, note = "Cowles Foundation Discussion Paper" -, update = "98.11 bibrelex" +, author = "W. Cook and T. Rugherford and H. E. Scarf and D. Shallcross" +, title = "An Implementation of the Generalized Basis Reduction Algorithm for Integer Programming" +, number = 990 +, institution = "Yale University" +, month = aug +, year = 1991 +, note = "Cowles Foundation Discussion Paper" +, update = "98.11 bibrelex" } @book{cf-hcc-67 -, author = "G. E. Cooke and R. L. Finney" -, title = "Homology of cell complexes" -, publisher = "Princeton University Press" -, year = 1967 -, update = "98.03 bibrelex" +, author = "G. E. Cooke and R. L. Finney" +, title = "Homology of cell complexes" +, publisher = "Princeton University Press" +, year = 1967 +, update = "98.03 bibrelex" } @techreport{c-scads-67 -, author = "S. A. Coons" -, title = "Surfaces for Computer Aided Design of Space Forms" -, type = "Technical {Report}" -, number = "MAC-TR-41" -, institution = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, month = jun -, year = 1967 -, update = "98.03 bibrelex" +, author = "S. A. Coons" +, title = "Surfaces for Computer Aided Design of Space Forms" +, type = "Technical {Report}" +, number = "MAC-TR-41" +, institution = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, month = jun +, year = 1967 +, update = "98.03 bibrelex" } @techreport{ct-stcos-96 -, author = "S. Coorg and S. Teller" -, title = "A Spatially and Temporally Coherent Object Space Visibility Algorithm" -, number = "TM-546" -, institution = "Laboratory of Computer Science, MIT" -, year = 1996 -, update = "97.11 bibrelex" +, author = "S. Coorg and S. Teller" +, title = "A Spatially and Temporally Coherent Object Space Visibility Algorithm" +, number = "TM-546" +, institution = "Laboratory of Computer Science, MIT" +, year = 1996 +, update = "97.11 bibrelex" } @inproceedings{ct-rtocm-97 -, author = "S. Coorg and S. Teller" -, title = "Real-time occlusion culling for models with large occluders" -, booktitle = "Proc. 1997 Sympos. Interactive 3D Graphics" -, year = 1997 -, update = "98.07 bibrelex" +, author = "S. Coorg and S. Teller" +, title = "Real-time occlusion culling for models with large occluders" +, booktitle = "Proc. 1997 Sympos. Interactive 3D Graphics" +, year = 1997 +, update = "98.07 bibrelex" } @inproceedings{ct-tccv-96 -, author = "Satyan Coorg and Seth Teller" -, title = "Temporally Coherent Conservative Visibility" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "78--87" -, update = "96.05 efrat" +, author = "Satyan Coorg and Seth Teller" +, title = "Temporally Coherent Conservative Visibility" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "78--87" +, update = "96.05 efrat" } @article{clw-epnib-79 -, author = "D. Coppersmith and D. T. Lee and C. K. Wong" -, title = "An elementary proof of nonexistence of isometries between {$L_p$} and {$L_q$}" -, journal = "IBM J. Res. Develop." -, volume = 23 -, number = 6 -, year = 1979 -, pages = "696--699" -, keywords = "$L_p$-metric" -, update = "99.03 bibrelex, 95.09 korneenko" +, author = "D. Coppersmith and D. T. Lee and C. K. Wong" +, title = "An elementary proof of nonexistence of isometries between {$L_p$} and {$L_q$}" +, journal = "IBM J. Res. Develop." +, volume = 23 +, number = 6 +, year = 1979 +, pages = "696--699" +, keywords = "$L_p$-metric" +, update = "99.03 bibrelex, 95.09 korneenko" } @inproceedings{cw-mmap-87 -, author = "D. Coppersmith and S. Winograd" -, title = "Matrix multiplication via arithmetic progressions" -, booktitle = "Proc. 9th Annu. ACM Sympos. Theory Comput." -, year = 1987 -, pages = "1--6" -, update = "97.11 bibrelex" +, author = "D. Coppersmith and S. Winograd" +, title = "Matrix multiplication via arithmetic progressions" +, booktitle = "Proc. 9th Annu. ACM Sympos. Theory Comput." +, year = 1987 +, pages = "1--6" +, update = "97.11 bibrelex" } @article{cw-mmap-90 -, author = "D. Coppersmith and S. Winograd" -, title = "Matrix multiplication via arithmetic progressions" -, journal = "J. Symbolic Comput." -, volume = 9 -, year = 1990 -, pages = "251--280" -, update = "97.11 bibrelex" +, author = "D. Coppersmith and S. Winograd" +, title = "Matrix multiplication via arithmetic progressions" +, journal = "J. Symbolic Comput." +, volume = 9 +, year = 1990 +, pages = "251--280" +, update = "97.11 bibrelex" } @techreport{cn-ifvda-85 -, author = "A. J. Coppola and J. Nave" -, title = "Implementing a fast {Voronoi} diagram algorithm for theoretical experimentation" -, type = "Report" -, number = "??" -, institution = "Intel Corporation" -, address = "Hillsboro, NJ" -, year = 1985 +, author = "A. J. Coppola and J. Nave" +, title = "Implementing a fast {Voronoi} diagram algorithm for theoretical experimentation" +, type = "Report" +, number = "??" +, institution = "Intel Corporation" +, address = "Hillsboro, NJ" +, year = 1985 } @inproceedings{cmr-avdsc-93 -, author = "A. G. Corbalan and Marisa Mazon and Tomas Recio" -, title = "About {Voronoi} Diagrams For Strictly Convex Distances" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "17--22" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "A. G. Corbalan and Marisa Mazon and Tomas Recio" +, title = "About {Voronoi} Diagrams For Strictly Convex Distances" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "17--22" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{cmr-gbscd-96 -, author = "A. G. Corbalan and M. Mazon and T. Recio" -, title = "Geometry of bisectors for strictly convex distances" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "45--58" -, update = "96.09 devillers" +, author = "A. G. Corbalan and M. Mazon and T. Recio" +, title = "Geometry of bisectors for strictly convex distances" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "45--58" +, update = "96.09 devillers" } @inproceedings{cmrs-tspvd-93 -, author = "A. G. Corbalan and M. Mazon and T. Recio and F. Santos" -, title = "On the topological shape of planar {Voronoi} diagrams" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "109--115" -, cites = "cmrs-tspvd-93c, ab-rdt-85, ab-gdt-86, cd-vdbcd-85, gs-pmgsc-85, k-cavd-89, k-tvs1-69, l-tdvdl-80, m-ddvec-92, ZZZ" -, update = "00.03 bibrelex, 98.03 bibrelex, 97.11 icking, 93.09 jones" +, author = "A. G. Corbalan and M. Mazon and T. Recio and F. Santos" +, title = "On the topological shape of planar {Voronoi} diagrams" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "109--115" +, cites = "cmrs-tspvd-93c, ab-rdt-85, ab-gdt-86, cd-vdbcd-85, gs-pmgsc-85, k-cavd-89, k-tvs1-69, l-tdvdl-80, m-ddvec-92, ZZZ" +, update = "00.03 bibrelex, 98.03 bibrelex, 97.11 icking, 93.09 jones" } @inproceedings{cmrs-tspvd-93c -, author = "A. G. Corbalan and Marisa Mazon and Tomas Recio and Francisco Santos" -, title = "On The Topological Shape Of Planar {Voronoi} Diagrams" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "23--25" -, precedes = "cmrs-tspvd-93" -, cites = "ab-rdt-85, ab-gdt-86, cd-vdbcd-85, gs-pmgsc-85, k-cavd-89, k-tvs1-69, l-tdvdl-80, m-ddvec-92, ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex, 98.03 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "A. G. Corbalan and Marisa Mazon and Tomas Recio and Francisco Santos" +, title = "On The Topological Shape Of Planar {Voronoi} Diagrams" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "23--25" +, precedes = "cmrs-tspvd-93" +, cites = "ab-rdt-85, ab-gdt-86, cd-vdbcd-85, gs-pmgsc-85, k-cavd-89, k-tvs1-69, l-tdvdl-80, m-ddvec-92, ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex, 98.03 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @techreport{c-tpc-79 -, author = "J. Corbett" -, title = "Topological Principles in Cartography" -, type = "Technical {Paper}" -, number = 48 -, institution = "Bureau of the Census" -, address = "Washington, DC" -, year = 1979 -, update = "98.03 bibrelex" +, author = "J. Corbett" +, title = "Topological Principles in Cartography" +, type = "Technical {Paper}" +, number = 48 +, institution = "Bureau of the Census" +, address = "Washington, DC" +, year = 1979 +, update = "98.03 bibrelex" } @article{cd-oapa-85 -, author = "L. P. Cordella and G. Dettori" -, title = "An ${O}(n)$ algorithm for polygonal approximation" -, journal = "Pattern Recogn. Lett." -, volume = 3 -, number = 2 -, year = 1985 -, pages = "93--97" -, keywords = "polygon, fitting" -, update = "95.09 korneenko" +, author = "L. P. Cordella and G. Dettori" +, title = "An ${O}(n)$ algorithm for polygonal approximation" +, journal = "Pattern Recogn. Lett." +, volume = 3 +, number = 2 +, year = 1985 +, pages = "93--97" +, keywords = "polygon, fitting" +, update = "95.09 korneenko" } @article{cr-lpvgf-86 -, author = "C. Cordes and K. B. Reid" -, title = "Largest polygons with vertices in a given finite set" -, journal = "Discrete Appl. Math." -, volume = 14 -, number = 3 -, year = 1986 -, pages = "255--262" -, keywords = "extremal figures, polygon, points" -, update = "95.09 korneenko" +, author = "C. Cordes and K. B. Reid" +, title = "Largest polygons with vertices in a given finite set" +, journal = "Discrete Appl. Math." +, volume = 14 +, number = 3 +, year = 1986 +, pages = "255--262" +, keywords = "extremal figures, polygon, points" +, update = "95.09 korneenko" } @article{c-omgs-83 -, author = "R. Cordovil" -, title = "Oriented matroids and geometric sorting" -, journal = "Canad. Math. Bull." -, volume = 26 -, number = 3 -, year = 1983 -, pages = "51--354" -, keywords = "sorting, oriented matroids" -, update = "95.09 korneenko" +, author = "R. Cordovil" +, title = "Oriented matroids and geometric sorting" +, journal = "Canad. Math. Bull." +, volume = 26 +, number = 3 +, year = 1983 +, pages = "51--354" +, keywords = "sorting, oriented matroids" +, update = "95.09 korneenko" } @article{c-sutds-82 -, author = "R. Cordovil" -, title = "Sur un th{\'e}oreme de s{\'e}paration des matroides orient{\'e}s de rang trois" -, journal = "Discrete Math." -, volume = 40 -, year = 1982 -, pages = "163--169" -, update = "97.11 bibrelex" +, author = "R. Cordovil" +, title = "Sur un th{\'e}oreme de s{\'e}paration des matroides orient{\'e}s de rang trois" +, journal = "Discrete Math." +, volume = 40 +, year = 1982 +, pages = "163--169" +, update = "97.11 bibrelex" } @article{c-ddnpp-83 -, author = "R. Cordovil" -, title = "The directions determined by $n$ points in the plane: a matroidal generalization" -, journal = "Discrete Math." -, volume = 43 -, year = 1983 -, pages = "131--137" -, update = "97.11 bibrelex" +, author = "R. Cordovil" +, title = "The directions determined by $n$ points in the plane: a matroidal generalization" +, journal = "Discrete Math." +, volume = 43 +, year = 1983 +, pages = "131--137" +, update = "97.11 bibrelex" } @article{cdc-poaca-86 -, author = "R. Cordovil and R. Dil{\~a}o and A. N. da Costa" -, title = "Periodic orbits for additive cellular automata" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "277--288" +, author = "R. Cordovil and R. Dil{\~a}o and A. N. da Costa" +, title = "Periodic orbits for additive cellular automata" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "277--288" } @article{clm-ermfm-82 -, author = "R. Cordovil and M. {Las Vergnas} and A. Mandel" -, title = "Euler's relation, {M{\"o}bius} functions, and matroid identities" -, journal = "Geom. Dedicata" -, volume = 12 -, year = 1982 -, pages = "147--162" +, author = "R. Cordovil and M. {Las Vergnas} and A. Mandel" +, title = "Euler's relation, {M{\"o}bius} functions, and matroid identities" +, journal = "Geom. Dedicata" +, volume = 12 +, year = 1982 +, pages = "147--162" } @article{c-ucplg-75 -, author = "R. Cori" -, title = "Un code pour les graphes planaires et ses applications" -, journal = "Ast{\'e}risque" -, volume = 27 -, year = 1975 -, update = "98.07 bibrelex" +, author = "R. Cori" +, title = "Un code pour les graphes planaires et ses applications" +, journal = "Ast{\'e}risque" +, volume = 27 +, year = 1975 +, update = "98.07 bibrelex" } @misc{cw-pi-90 -, author = "B. T. Corkum and J. A. Wyllie" -, title = "Program for insidepolytope" -, howpublished = "Newsgroup comp.graphics" -, year = 1990 -, note = "Message 1990{O}ct3.121706.11932 - jarvis.csri.toronto.edu" -, update = "98.11 bibrelex" +, author = "B. T. Corkum and J. A. Wyllie" +, title = "Program for insidepolytope" +, howpublished = "Newsgroup comp.graphics" +, year = 1990 +, note = "Message 1990{O}ct3.121706.11932 + jarvis.csri.toronto.edu" +, update = "98.11 bibrelex" } @article{cghj-lwfm-93 -, author = "Robert M. Corless and Gaston H. Gonnet and D. E. G. Hare and David J. Jeffrey" -, title = "{Lambert's} {W} function in {Maple}" -, journal = "The Maple Techical Newsletter" -, volume = "Issue 9" -, year = 1993 -, pages = "12--22" -, update = "00.03 bibrelex" +, author = "Robert M. Corless and Gaston H. Gonnet and D. E. G. Hare and David J. Jeffrey" +, title = "{Lambert's} {W} function in {Maple}" +, journal = "The Maple Techical Newsletter" +, volume = "Issue 9" +, year = 1993 +, pages = "12--22" +, update = "00.03 bibrelex" } @inproceedings{c-atbpb-93 -, author = "T. H. Cormen" -, title = "Asymptotically Tight Bounds for Performing {BMMC} Permutations on Parallel Disk Systems" -, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." -, year = 1993 -, pages = "130--139" -, update = "96.09 orourke" +, author = "T. H. Cormen" +, title = "Asymptotically Tight Bounds for Performing {BMMC} Permutations on Parallel Disk Systems" +, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." +, year = 1993 +, pages = "130--139" +, update = "96.09 orourke" } @article{c-fpda-93 -, author = "T. H. Cormen" -, title = "Fast Permuting on Disk Arrays" -, journal = "J. Parallel Distrib. Comput." -, volume = 17 -, year = 1993 -, pages = "41--57" -, update = "96.09 orourke" +, author = "T. H. Cormen" +, title = "Fast Permuting on Disk Arrays" +, journal = "J. Parallel Distrib. Comput." +, volume = 17 +, year = 1993 +, pages = "41--57" +, update = "96.09 orourke" } @book{clr-ia-90 -, author = "T. H. Cormen and C. E. Leiserson and R. L. Rivest" -, title = "Introduction to Algorithms" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1990 -, update = "97.03 schwarzkopf, 93.09 tamassia" +, author = "T. H. Cormen and C. E. Leiserson and R. L. Rivest" +, title = "Introduction to Algorithms" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1990 +, update = "97.03 schwarzkopf, 93.09 tamassia" } @book{clrs-ia-01 -, author = "T. H. Cormen and C. E. Leiserson and R. L. Rivest and C. Stein", title = "Introduction to Algorithms" -, edition = "2nd" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 2001 -, update = "01.11 smid" +, author = "T. H. Cormen and C. E. Leiserson and R. L. Rivest and C. Stein", title = "Introduction to Algorithms" +, edition = "2nd" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 2001 +, update = "01.11 smid" } @article{cn-tbcts-78 -, author = "G. Cornuejol and G. L. Nemhauser" -, title = "Tight bounds for {Christofides}' traveling salesman heuristic" -, journal = "Math. Program." -, volume = 14 -, year = 1978 -, pages = "116--121" +, author = "G. Cornuejol and G. L. Nemhauser" +, title = "Tight bounds for {Christofides}' traveling salesman heuristic" +, journal = "Math. Program." +, volume = 14 +, year = 1978 +, pages = "116--121" } @article{c-vdabt-22 -, author = "J. G. von der Corput" -, title = "Versch{\"a}rfung der {Absch{\"a}tzung} beim {Teilerproblem}" -, journal = "Math. Annalen" -, volume = 87 -, year = 1922 -, pages = "39--65" -, update = "97.11 bibrelex" +, author = "J. G. von der Corput" +, title = "Versch{\"a}rfung der {Absch{\"a}tzung} beim {Teilerproblem}" +, journal = "Math. Annalen" +, volume = 87 +, year = 1922 +, pages = "39--65" +, update = "97.11 bibrelex" } @article{cc-fcdt-87 -, author = "Y. Correc and E. Chapuis" -, title = "Fast Computation of {Delaunay} Triangulations" -, journal = "Adv. Eng. Softw." -, volume = 9 -, number = 2 -, year = 1987 -, pages = "77--83" -, annote = "Claims $O(n \log n)$ measured performance. Points are - sorted by one coordinate and a Lawson style incremental - algorithm is used. Triangle list is maintained in - sorted by one coordinate of barycentre." +, author = "Y. Correc and E. Chapuis" +, title = "Fast Computation of {Delaunay} Triangulations" +, journal = "Adv. Eng. Softw." +, volume = 9 +, number = 2 +, year = 1987 +, pages = "77--83" +, annote = "Claims $O(n \log n)$ measured performance. Points are + sorted by one coordinate and a Lawson style incremental + algorithm is used. Triangle list is maintained in + sorted by one coordinate of barycentre." } @inproceedings{cghmsv-ttpnp-01 -, author = "Carmen Cort{\'e}s and Clara I. Grima and Ferran Hurtado and Alberto M{\'a}rquez and Francisco Santos and Jes{\'u}s Valenzuela" -, title = "Transforming Triangulations of Polygons on Non Planar Surfaces" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "31--34" -, update = "01.04 icking" +, author = "Carmen Cort{\'e}s and Clara I. Grima and Ferran Hurtado and Alberto M{\'a}rquez and Francisco Santos and Jes{\'u}s Valenzuela" +, title = "Transforming Triangulations of Polygons on Non Planar Surfaces" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "31--34" +, update = "01.04 icking" } @inproceedings{cgm-fetc-99 -, author = "Carmen Cort{\'e}s and Clara I. Grima and Alberto M{\'a}rquez" -, title = "Flipping Edges in Triangulations on the Cylinder" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "77--79" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Carmen Cort{\'e}s and Clara I. Grima and Alberto M{\'a}rquez" +, title = "Flipping Edges in Triangulations on the Cylinder" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "77--79" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{chmn-efts-98 -, author = "C. Cort{\'e}s and F. Hurtado and A. M{\'a}rquez and A. Nakamoto" -, title = "Edge Flipping on Triangulations of Surfaces" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "59--60" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "C. Cort{\'e}s and F. Hurtado and A. M{\'a}rquez and A. Nakamoto" +, title = "Edge Flipping on Triangulations of Surfaces" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "59--60" +, update = "00.03 bibrelex, 98.07 bibrelex" } @techreport{cj-ffdgt-85 -, author = "M. Corthout and H. Jonkers" -, title = "A formal framework for discrete geometry: theory and graphics applications" -, type = "Report" -, number = "??" -, institution = "Philips Lab." -, address = "Briarcliff Manor, NY" -, year = 1985 +, author = "M. Corthout and H. Jonkers" +, title = "A formal framework for discrete geometry: theory and graphics applications" +, type = "Report" +, number = "??" +, institution = "Philips Lab." +, address = "Briarcliff Manor, NY" +, year = 1985 } @article{cj-tdnpc-86 -, author = "M. E. Corthout and H. B. M. Jonkers" -, title = "The transformational development of a new point containment algorithm" -, journal = "Philips J. Res. Devel." -, volume = 41 -, year = 1986 -, pages = "83--174" -, keywords = "point location" -, update = "95.09 korneenko" +, author = "M. E. Corthout and H. B. M. Jonkers" +, title = "The transformational development of a new point containment algorithm" +, journal = "Philips J. Res. Devel." +, volume = 41 +, year = 1986 +, pages = "83--174" +, keywords = "point location" +, update = "95.09 korneenko" } @incollection{c-vfgf-89 -, author = "D. Cortolezzis" -, title = "The virtual floating grid file" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 381 -, year = 1989 -, pages = "116--127" -, keywords = "data structuring" -, update = "95.09 korneenko" +, author = "D. Cortolezzis" +, title = "The virtual floating grid file" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 381 +, year = 1989 +, pages = "116--127" +, keywords = "data structuring" +, update = "95.09 korneenko" } @article{cdf-csxy-89 -, author = "M. Cosnard and J. Duprat and A. G. Ferreira" -, title = "Complexity of selection in $X+Y$" -, journal = "Theoret. Comput. Sci." -, volume = 67 -, number = 1 -, year = 1989 -, pages = "115--120" -, keywords = "lower bounds, searching" -, update = "95.09 korneenko" +, author = "M. Cosnard and J. Duprat and A. G. Ferreira" +, title = "Complexity of selection in $X+Y$" +, journal = "Theoret. Comput. Sci." +, volume = 67 +, number = 1 +, year = 1989 +, pages = "115--120" +, keywords = "lower bounds, searching" +, update = "95.09 korneenko" } @article{cdf-csxyo-90 -, author = "M. Cosnard and J. Duprat and A. G. Ferreira" -, title = "The complexity of searching in $X+Y$ and other multisets" -, journal = "Inform. Process. Lett." -, volume = 34 -, number = 2 -, year = 1990 -, pages = "103--109" -, keywords = "lower bounds, searching" -, update = "95.09 korneenko" +, author = "M. Cosnard and J. Duprat and A. G. Ferreira" +, title = "The complexity of searching in $X+Y$ and other multisets" +, journal = "Inform. Process. Lett." +, volume = 34 +, number = 2 +, year = 1990 +, pages = "103--109" +, keywords = "lower bounds, searching" +, update = "95.09 korneenko" } @article{cr-tlcra-88 -, author = "M. Cost and M. F. Roy" -, title = "Thom's lemma, the coding of real algebraic numbers and the computation of the topology of semi-algebraic sets" -, journal = "J. Symbolic Comput." -, volume = 5 -, year = 1988 -, pages = "121--129" -, update = "98.03 bibrelex" +, author = "M. Cost and M. F. Roy" +, title = "Thom's lemma, the coding of real algebraic numbers and the computation of the topology of semi-algebraic sets" +, journal = "J. Symbolic Comput." +, volume = 5 +, year = 1988 +, pages = "121--129" +, update = "98.03 bibrelex" } @article{cs-wnnal-93 -, author = "S. Cost and S. Salzberg" -, title = "A weighted nearest neighbor algorithm for learning with symbolic features" -, journal = "Machine Learning" -, volume = 10 -, year = 1993 -, pages = "57--67" -, update = "97.07 agarwal" +, author = "S. Cost and S. Salzberg" +, title = "A weighted nearest neighbor algorithm for learning with symbolic features" +, journal = "Machine Learning" +, volume = 10 +, year = 1993 +, pages = "57--67" +, update = "97.07 agarwal" } @incollection{c-esg-89 -, author = "M. Coste" -, title = "Effective semialgebraic geometry" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 391 -, year = 1989 -, pages = "1--27" -, keywords = "algebraic geometry, motion planning" -, update = "95.09 korneenko" +, author = "M. Coste" +, title = "Effective semialgebraic geometry" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 391 +, year = 1989 +, pages = "1--27" +, keywords = "algebraic geometry, motion planning" +, update = "95.09 korneenko" } @inproceedings{cs-smuvi-96 -, author = "H. L. de Cougny and M. S. Shephard" -, title = "Surface meshing using vertex insertion" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "243--256" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "H. L. de Cougny and M. S. Shephard" +, title = "Surface meshing using vertex insertion" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "243--256" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{cl-dvg-91 -, author = "C. Coullard and A. Lubiw" -, title = "Distance visibility graphs" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "289--296" -, keywords = "visibility, geometric graphs" -, cites = "acp-cfekt-87, ap-crp3t-86, c-tsplt-90i, ec-rvgsp-90, e-hdpa-85, g-rcvgs-88, h-fvgsp-87, ht-dgtc-73, o-agta-87, o-rcvg-90, ow-nmcvg-88, ps-cgi-85, rs-gm2aa-86, s-tpgep-80, t-ktgtc-89, ty-sltat-84, y-edp-81, y-stapl-79, ZZZ" -, update = "97.11 bibrelex" +, author = "C. Coullard and A. Lubiw" +, title = "Distance visibility graphs" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "289--296" +, keywords = "visibility, geometric graphs" +, cites = "acp-cfekt-87, ap-crp3t-86, c-tsplt-90i, ec-rvgsp-90, e-hdpa-85, g-rcvgs-88, h-fvgsp-87, ht-dgtc-73, o-agta-87, o-rcvg-90, ow-nmcvg-88, ps-cgi-85, rs-gm2aa-86, s-tpgep-80, t-ktgtc-89, ty-sltat-84, y-edp-81, y-stapl-79, ZZZ" +, update = "97.11 bibrelex" } @article{cl-dvg-92 -, author = "C. Coullard and A. Lubiw" -, title = "Distance visibility graphs" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 4 -, year = 1992 -, pages = "349--362" -, keywords = "visibility, geometric graphs" -, succeeds = "cl-dvg-91" -, update = "98.11 bibrelex, 96.05 pocchiola" +, author = "C. Coullard and A. Lubiw" +, title = "Distance visibility graphs" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 4 +, year = 1992 +, pages = "349--362" +, keywords = "visibility, geometric graphs" +, succeeds = "cl-dvg-91" +, update = "98.11 bibrelex, 96.05 pocchiola" } @article{cdm-ffepm-85 -, author = "J. L. Coulomb and Y. {Du Terrail} and G. Meunier" -, title = "Flux3d: {A} Finite Element Package For Magnetic Computation" -, journal = "IEEE Trans. Magn." -, volume = "MAG-21" -, number = 6 -, month = nov -, year = 1985 -, pages = "2499--2502" -, keywords = "computer program flux3d" -, annote = "Uses 3D DT by insertion." -, abstract = "A finite element package for the computation of - three-dimensional magnetostatic field is described. The - finite element mesh is automatically built in two steps - using a Delaunay tetrahedrization. In step 1, the user - gives interactively a first set of nodes located on - interfaces and boundaries, and the program computes a - coarse tetrahedral mesh. In step 2, the program adds - new nodes automatically to refine the initial mesh and - regularizes it. The implemented finite element - formulations use either scalar or vector potential. The - postprocessor allows interactive computation and - visualization of any local or global quantities given - by closed formulas. 9 refs." +, author = "J. L. Coulomb and Y. {Du Terrail} and G. Meunier" +, title = "Flux3d: {A} Finite Element Package For Magnetic Computation" +, journal = "IEEE Trans. Magn." +, volume = "MAG-21" +, number = 6 +, month = nov +, year = 1985 +, pages = "2499--2502" +, keywords = "computer program flux3d" +, annote = "Uses 3D DT by insertion." +, abstract = "A finite element package for the computation of + three-dimensional magnetostatic field is described. The + finite element mesh is automatically built in two steps + using a Delaunay tetrahedrization. In step 1, the user + gives interactively a first set of nodes located on + interfaces and boundaries, and the program computes a + coarse tetrahedral mesh. In step 2, the program adds + new nodes automatically to refine the initial mesh and + regularizes it. The implemented finite element + formulations use either scalar or vector potential. The + postprocessor allows interactive computation and + visualization of any local or global quantities given + by closed formulas. 9 refs." } @book{c-dic-36 -, author = "R. Courant" -, title = "Differential and integral calculus" -, volume = 2 -, publisher = "Interscience Publishers" -, address = "New York, NY" -, year = 1936 -, update = "98.03 bibrelex" +, author = "R. Courant" +, title = "Differential and integral calculus" +, volume = 2 +, publisher = "Interscience Publishers" +, address = "New York, NY" +, year = 1936 +, update = "98.03 bibrelex" } @article{cb-accwf-86 -, author = "S. M. Courter and J. A. {Brewer III}" -, title = "Automated Conversion of Curvilinear Wire-Frame Models to Surface Boundary Models" -, journal = "Comput. Graph." -, volume = 20 -, number = 4 -, month = aug -, year = 1986 -, pages = "171--178" -, note = "Proc. SIGGRAPH '86" -, update = "98.03 bibrelex" +, author = "S. M. Courter and J. A. {Brewer III}" +, title = "Automated Conversion of Curvilinear Wire-Frame Models to Surface Boundary Models" +, journal = "Comput. Graph." +, volume = 20 +, number = 4 +, month = aug +, year = 1986 +, pages = "171--178" +, note = "Proc. SIGGRAPH '86" +, update = "98.03 bibrelex" } @article{ch-nnpc-67 -, author = "T. M. Cover and P. E. Hart" -, title = "Nearest neighbor pattern classification" -, journal = "IEEE Trans. Inform. Theory" -, volume = 13 -, year = 1967 -, pages = "21--27" -, update = "97.07 agarwal" +, author = "T. M. Cover and P. E. Hart" +, title = "Nearest neighbor pattern classification" +, journal = "IEEE Trans. Inform. Theory" +, volume = 13 +, year = 1967 +, pages = "21--27" +, update = "97.07 agarwal" } @book{ct-eit-91 -, author = "T. M. Cover and J. A. Thomas" -, title = "Elements of Information Theory" -, publisher = "Wiley-Interscience" -, address = "New York, NY" -, year = 1991 -, update = "98.07 bibrelex" +, author = "T. M. Cover and J. A. Thomas" +, title = "Elements of Information Theory" +, publisher = "Wiley-Interscience" +, address = "New York, NY" +, year = 1991 +, update = "98.07 bibrelex" } @book{clo-iva-92 -, author = "D. Cox and J. Little and D. {O'Shea}" -, title = "Ideals, Varieties, and Algorithms" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1992 -, keywords = "book" -, update = "95.01 devillers" +, author = "D. Cox and J. Little and D. {O'Shea}" +, title = "Ideals, Varieties, and Algorithms" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1992 +, keywords = "book" +, update = "95.01 devillers" } @techreport{cy-olmpm-89 -, author = "J. Cox and C. Yap" -, title = "On-line motion planning: {Moving} a planar arm by probing an unknown environment" -, type = "Manuscript" -, year = 1989 -, update = "97.11 bibrelex" +, author = "J. Cox and C. Yap" +, title = "On-line motion planning: {Moving} a planar arm by probing an unknown environment" +, type = "Manuscript" +, year = 1989 +, update = "97.11 bibrelex" } % ### what is it? @techreport{ch-aldcs-88 -, author = "M. G. Cox and P. M. Harris" -, title = "An algorithm for loop detection in cursive script recognition" -, type = "Report" -, number = 120 -, institution = "Div. Inf. Techn. and Comput., Nat. Phys. Lab." -, year = 1988 -, pages = "i--ii, 1--16" -, keywords = "intersection" -, update = "95.09 korneenko" +, author = "M. G. Cox and P. M. Harris" +, title = "An algorithm for loop detection in cursive script recognition" +, type = "Report" +, number = 120 +, institution = "Div. Inf. Techn. and Comput., Nat. Phys. Lab." +, year = 1988 +, pages = "i--ii, 1--16" +, keywords = "intersection" +, update = "95.09 korneenko" } @article{cmmr-omcp-89 -, author = "P. Cox and H. Maitre and M. Minoux and C. Ribeiro" -, title = "Optimal matching of convex polygons" -, journal = "Pattern Recogn. Lett." -, volume = 9 -, number = 5 -, year = 1989 -, pages = "327--334" -, keywords = "convex polygon, similarity" -, update = "95.09 korneenko" +, author = "P. Cox and H. Maitre and M. Minoux and C. Ribeiro" +, title = "Optimal matching of convex polygons" +, journal = "Pattern Recogn. Lett." +, volume = 9 +, number = 5 +, year = 1989 +, pages = "327--334" +, keywords = "convex polygon, similarity" +, update = "95.09 korneenko" } @article{c-czmpd-62 -, author = "H. S. M. Coxeter" -, title = "A classification of zonohedra by means of projective diagrams" -, journal = "J. Math. Pure Appl." -, volume = 41 -, year = 1962 -, pages = "137--156" -, update = "94.05 devillers" +, author = "H. S. M. Coxeter" +, title = "A classification of zonohedra by means of projective diagrams" +, journal = "J. Math. Pure Appl." +, volume = 41 +, year = 1962 +, pages = "137--156" +, update = "94.05 devillers" } @book{c-ig-61 -, author = "H. S. M. Coxeter" -, title = "Introduction to Geometry" -, edition = "1st" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1961 -, update = "99.11 bibrelex" +, author = "H. S. M. Coxeter" +, title = "Introduction to Geometry" +, edition = "1st" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1961 +, update = "99.11 bibrelex" } @book{c-ig-69 -, author = "H. S. M. Coxeter" -, title = "Introduction to Geometry" -, edition = "2nd" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1969 -, update = "98.11 bibrelex" +, author = "H. S. M. Coxeter" +, title = "Introduction to Geometry" +, edition = "2nd" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1969 +, update = "98.11 bibrelex" } @inproceedings{c-ot-91 -, author = "H. S. M. Coxeter" -, title = "Orthogonal trees" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "89--97" -, cites = "b-geadl-68, cs-splg-88, c-rp-73, c-rsrp-88, c-to-89, ZZZ" -, update = "97.11 bibrelex" +, author = "H. S. M. Coxeter" +, title = "Orthogonal trees" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "89--97" +, cites = "b-geadl-68, cs-splg-88, c-rp-73, c-rsrp-88, c-to-89, ZZZ" +, update = "97.11 bibrelex" } @article{c-rsrp-88 -, author = "H. S. M. Coxeter" -, title = "Regular and semi-regular polytopes, 3" -, journal = "Math. Z." -, volume = 200 -, year = 1988 -, pages = "3--45" -, update = "97.11 bibrelex" +, author = "H. S. M. Coxeter" +, title = "Regular and semi-regular polytopes, 3" +, journal = "Math. Z." +, volume = 200 +, year = 1988 +, pages = "3--45" +, update = "97.11 bibrelex" } @book{c-rcp-91 -, author = "H. S. M. Coxeter" -, title = "Regular Complex Polytopes" -, edition = "2nd" -, publisher = "Cambridge University Press" -, address = "Cambridge, England" -, year = 1991 +, author = "H. S. M. Coxeter" +, title = "Regular Complex Polytopes" +, edition = "2nd" +, publisher = "Cambridge University Press" +, address = "Cambridge, England" +, year = 1991 } @book{c-rp-73 -, author = "H. S. M. Coxeter" -, title = "Regular Polytopes" -, edition = "2nd" -, publisher = "Dover" -, address = "New York, NY" -, year = 1973 +, author = "H. S. M. Coxeter" +, title = "Regular Polytopes" +, edition = "2nd" +, publisher = "Dover" +, address = "New York, NY" +, year = 1973 } @article{c-sdcrg-50 -, author = "H. S. M. Coxeter" -, title = "Self-Dual Configurations and Regular Graphs" -, journal = "Bull. Amer. Math. Soc." -, volume = 56 -, year = 1950 -, pages = "413--455" -, update = "97.11 bibrelex" +, author = "H. S. M. Coxeter" +, title = "Self-Dual Configurations and Regular Graphs" +, journal = "Bull. Amer. Math. Soc." +, volume = 56 +, year = 1950 +, pages = "413--455" +, update = "97.11 bibrelex" } @book{c-rpp-49 -, author = "H. S. M. Coxeter" -, title = "The real projective plane" -, publisher = "McGraw-Hill" -, year = 1949 -, update = "98.03 bibrelex" +, author = "H. S. M. Coxeter" +, title = "The real projective plane" +, publisher = "McGraw-Hill" +, year = 1949 +, update = "98.03 bibrelex" } @article{c-to-89 -, author = "H. S. M. Coxeter" -, title = "Trisecting an orthoscheme" -, journal = "Comput. Math. Appl." -, volume = 17 -, year = 1989 -, pages = "59--71" -, update = "97.11 bibrelex" +, author = "H. S. M. Coxeter" +, title = "Trisecting an orthoscheme" +, journal = "Comput. Math. Appl." +, volume = 17 +, year = 1989 +, pages = "59--71" +, update = "97.11 bibrelex" } @book{cfp-zsg-81 -, author = "H. S. M. Coxeter and R. Frucht and D. L. Powers" -, title = "Zero Symmetric Graphs" -, publisher = "Academic Press" -, year = 1981 -, update = "97.11 bibrelex" +, author = "H. S. M. Coxeter and R. Frucht and D. L. Powers" +, title = "Zero Symmetric Graphs" +, publisher = "Academic Press" +, year = 1981 +, update = "97.11 bibrelex" } @book{cg-gr-67 -, author = "H. S. M. Coxeter and S. L. Greitzer" -, title = "Geometry Revisited" -, publisher = "Mathematical Association of America" -, address = "Washington, DC" -, year = 1967 +, author = "H. S. M. Coxeter and S. L. Greitzer" +, title = "Geometry Revisited" +, publisher = "Mathematical Association of America" +, address = "Washington, DC" +, year = 1967 } @book{cm-grdg-72 -, author = "H. S. M. Coxeter and W. O. J. Moser" -, title = "Generators and Relations for Discrete Groups" -, edition = "3rd" -, publisher = "Springer-Verlag" -, year = 1972 -, precedes = "cm-grdg-80" -, update = "97.11 bibrelex" +, author = "H. S. M. Coxeter and W. O. J. Moser" +, title = "Generators and Relations for Discrete Groups" +, edition = "3rd" +, publisher = "Springer-Verlag" +, year = 1972 +, precedes = "cm-grdg-80" +, update = "97.11 bibrelex" } @book{cm-grdg-80 -, author = "H. S. M. Coxeter and W. O. J. Moser" -, title = "Generators and Relations for Discrete Groups" -, publisher = "Springer-Verlag" -, year = 1980 -, succeeds = "cm-grdg-72" -, update = "97.11 bibrelex" +, author = "H. S. M. Coxeter and W. O. J. Moser" +, title = "Generators and Relations for Discrete Groups" +, publisher = "Springer-Verlag" +, year = 1980 +, succeeds = "cm-grdg-72" +, update = "97.11 bibrelex" } @article{c-mcsrv-72 -, author = "I. K. Crain" -, title = "{Monte}-{Carlo} Simulation of the Random {Voronoi} Polygons: Preliminary Results" -, journal = "Search" -, volume = 3 -, year = 1972 -, pages = "220--221" -, annote = "Measures various statistics for random Voronoi - polygons." +, author = "I. K. Crain" +, title = "{Monte}-{Carlo} Simulation of the Random {Voronoi} Polygons: Preliminary Results" +, journal = "Search" +, volume = 3 +, year = 1972 +, pages = "220--221" +, annote = "Measures various statistics for random Voronoi + polygons." } @article{c-mcgrp-78 -, author = "I. K. Crain" -, title = "The {Monte}-{Carlo} Generation of Random Polygons" -, journal = "Comput. Geosci." -, volume = 4 -, year = 1978 -, pages = "131--141" -, annote = "Statistics on 46000 random Voronoi polygons. Simple - method to determine 1 polygon. Closest point gives - initial side---intersection with all other bisectors - gives endpoints. Then walk around boundary." +, author = "I. K. Crain" +, title = "The {Monte}-{Carlo} Generation of Random Polygons" +, journal = "Comput. Geosci." +, volume = 4 +, year = 1978 +, pages = "131--141" +, annote = "Statistics on 46000 random Voronoi polygons. Simple + method to determine 1 polygon. Closest point gives + initial side---intersection with all other bisectors + gives endpoints. Then walk around boundary." } @techreport{c-llpqb-72 -, author = "C. Crane" -, title = "Linear lists and priority queues as balanced binary trees" -, type = "Technical Report" -, number = "CS-72-259" -, institution = "Dept. of Computer Science, Stanford University" -, address = "CA" -, year = 1972 -, update = "98.11 bibrelex" +, author = "C. Crane" +, title = "Linear lists and priority queues as balanced binary trees" +, type = "Technical Report" +, number = "CS-72-259" +, institution = "Dept. of Computer Science, Stanford University" +, address = "CA" +, year = 1972 +, update = "98.11 bibrelex" } @article{c-sr-79 -, author = "H. Crapo" -, title = "Structural rigidity" -, journal = "Structural Topology" -, volume = 1 -, year = 1979 -, pages = "26--45" -, update = "97.11 bibrelex" +, author = "H. Crapo" +, title = "Structural rigidity" +, journal = "Structural Topology" +, volume = 1 +, year = 1979 +, pages = "26--45" +, update = "97.11 bibrelex" } @techreport{chsww-scg-88 -, author = "H. Crapo and T. F. Havel and B. Sturmfels and W. Whiteley and N. L. White" -, title = "Symbolic computations in geometry" -, type = "{IMA} {Preprint} {Series}" -, number = 389 -, institution = "Inst. Math. Appl., Univ. Minnesota" -, address = "Minneapolis, MN" -, year = 1988 +, author = "H. Crapo and T. F. Havel and B. Sturmfels and W. Whiteley and N. L. White" +, title = "Symbolic computations in geometry" +, type = "{IMA} {Preprint} {Series}" +, number = 389 +, institution = "Inst. Math. Appl., Univ. Minnesota" +, address = "Minneapolis, MN" +, year = 1988 } @incollection{cl-hcdc-88 -, author = "H. Crapo and J. P. Laumond" -, title = "{Hamiltonian} Cycles in {Delaunay} Complexes" -, booktitle = "??" -, series = "Lect. Notes in Comp. Sci." -, volume = 1416 -, institution = "LAAS/CNRS" -, year = 1988 -, update = "98.11 bibrelex" +, author = "H. Crapo and J. P. Laumond" +, title = "{Hamiltonian} Cycles in {Delaunay} Complexes" +, booktitle = "??" +, series = "Lect. Notes in Comp. Sci." +, volume = 1416 +, institution = "LAAS/CNRS" +, year = 1988 +, update = "98.11 bibrelex" } @inproceedings{cl-hcdc-89 -, author = "Henry Crapo and Jean-Paul Laumond" -, title = "{Hamiltonian} Cycles in {Delaunay} Complexes" -, booktitle = "Proc. of the Workshop on Geometry and Robotics" -, site = "Toulouse, France" -, series = "Lecture Notes Comput. Sci." -, volume = 391 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "292--305" -, update = "99.11 bibrelex, 98.11 bibrelex, 96.09 agarwal, 93.09 smid" +, author = "Henry Crapo and Jean-Paul Laumond" +, title = "{Hamiltonian} Cycles in {Delaunay} Complexes" +, booktitle = "Proc. of the Workshop on Geometry and Robotics" +, site = "Toulouse, France" +, series = "Lecture Notes Comput. Sci." +, volume = 391 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "292--305" +, update = "99.11 bibrelex, 98.11 bibrelex, 96.09 agarwal, 93.09 smid" } @inproceedings{cr-sagh-86 -, author = "H. Crapo and J. Ryan" -, title = "Scene analysis and geometric homology" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "125--132" -, cites = "b-j-79, c-sr-79, cr-srls-86, cw-sfmps-82, c-gs-90, c-gs-66, drs-fctcm-74, dh-pcsa-73, dh-pcsa-73, h-dcaps-77, m-orfdf-64, s-msldp-81, t-rprbj-83, tw-rdgrs-84, w-rp-79, ZZZ" -, update = "97.11 bibrelex" +, author = "H. Crapo and J. Ryan" +, title = "Scene analysis and geometric homology" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "125--132" +, cites = "b-j-79, c-sr-79, cr-srls-86, cw-sfmps-82, c-gs-90, c-gs-66, drs-fctcm-74, dh-pcsa-73, dh-pcsa-73, h-dcaps-77, m-orfdf-64, s-msldp-81, t-rprbj-83, tw-rdgrs-84, w-rp-79, ZZZ" +, update = "97.11 bibrelex" } @article{cr-srls-86 -, author = "H. Crapo and J. Ryan" -, title = "Spatial realizations of linear scenes" -, journal = "Structural Topology" -, volume = 13 -, year = 1986 -, pages = "33--68" +, author = "H. Crapo and J. Ryan" +, title = "Spatial realizations of linear scenes" +, journal = "Structural Topology" +, volume = 13 +, year = 1986 +, pages = "33--68" } @techreport{cw-pspp-86 -, author = "H. Crapo and W. Whiteley" -, title = "Plane stresses and projected polyhedra" -, type = "Technical {Report}" -, institution = "Univ. Montreal" -, address = "Montreal, PQ" -, year = 1986 -, succeeds = "w-tapp-86" -, update = "00.03 bibrelex, 93.09 milone+mitchell" +, author = "H. Crapo and W. Whiteley" +, title = "Plane stresses and projected polyhedra" +, type = "Technical {Report}" +, institution = "Univ. Montreal" +, address = "Montreal, PQ" +, year = 1986 +, succeeds = "w-tapp-86" +, update = "00.03 bibrelex, 93.09 milone+mitchell" } @article{cw-sfmps-82 -, author = "H. Crapo and W. Whitely" -, title = "Statics of Frameworks and Motions of Panel Structures, a Projective Geometric Introduction" -, journal = "Structural Topology" -, volume = 6 -, year = 1982 -, pages = "42--82" -, keywords = "graph drawing" -, update = "96.09 tamassia" +, author = "H. Crapo and W. Whitely" +, title = "Statics of Frameworks and Motions of Panel Structures, a Projective Geometric Introduction" +, journal = "Structural Topology" +, volume = 6 +, year = 1982 +, pages = "42--82" +, keywords = "graph drawing" +, update = "96.09 tamassia" } @article{csy-smico-95 -, author = "D. Crass and I. Suzuki and M. Yamashita" -, title = "Searching for a mobile intruder in a corridor: the open edge variant of the polygon search problem" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "397--412" -, keywords = "geometry, visibility, search" -, update = "00.03 bibrelex, 96.09 devillers" +, author = "D. Crass and I. Suzuki and M. Yamashita" +, title = "Searching for a mobile intruder in a corridor: the open edge variant of the polygon search problem" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "397--412" +, keywords = "geometry, visibility, search" +, update = "00.03 bibrelex, 96.09 devillers" } @inproceedings{cfmmr-remas-98 -, author = "A. Crauser and P. Ferragina and K. Mehlhorn and U. Meyer and E. Ramos" -, title = "Randomized external-memory algorithms for some geometric problems" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "269--268" -, update = "99.03 agarwal" +, author = "A. Crauser and P. Ferragina and K. Mehlhorn and U. Meyer and E. Ramos" +, title = "Randomized external-memory algorithms for some geometric problems" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "269--268" +, update = "99.03 agarwal" } @article{cfmmr-remal-01 -, author = "A. Crauser and P. Ferragina and K. Mehlhorn and U. Meyer and E. A. Ramos" -, title = "Randomized external-memory algorithms for line segment intersection and other geometric problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "305--337" -, update = "01.07 smid" +, author = "A. Crauser and P. Ferragina and K. Mehlhorn and U. Meyer and E. A. Ramos" +, title = "Randomized external-memory algorithms for line segment intersection and other geometric problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "305--337" +, update = "01.07 smid" } @inproceedings{c-agrv-85 -, author = "C. Crawford" -, title = "Aspect graphs and robot vision" -, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." -, year = 1985 -, pages = "382--384" -, update = "98.11 bibrelex" +, author = "C. Crawford" +, title = "Aspect graphs and robot vision" +, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." +, year = 1985 +, pages = "382--384" +, update = "98.11 bibrelex" } @article{cl-slp-90a -, author = "J. Cremona and S. Landau" -, title = "Shrinking lattice polyhedra" -, journal = "SIAM J. Discrete Math." -, volume = 3 -, number = 3 -, year = 1990 -, pages = "338--348" -, keywords = "discrete geometry, $d$-dimensional, polyhedra, similarity" -, succeeds = "cl-slp-90i" -, update = "97.11 bibrelex, 95.09 korneenko" +, author = "J. Cremona and S. Landau" +, title = "Shrinking lattice polyhedra" +, journal = "SIAM J. Discrete Math." +, volume = 3 +, number = 3 +, year = 1990 +, pages = "338--348" +, keywords = "discrete geometry, $d$-dimensional, polyhedra, similarity" +, succeeds = "cl-slp-90i" +, update = "97.11 bibrelex, 95.09 korneenko" } @inproceedings{cl-slp-90i -, author = "J. Cremona and S. Landru" -, title = "Shrinking lattice polyhedra" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "188--193" -, precedes = "cl-slp-90a" -, update = "95.09 korneenko" +, author = "J. Cremona and S. Landru" +, title = "Shrinking lattice polyhedra" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "188--193" +, precedes = "cl-slp-90a" +, update = "95.09 korneenko" } @book{c-gs-90 -, author = "L. Cremona" -, title = "Graphical Statics" -, publisher = "Oxford University Press" -, address = "London" -, year = 1890 -, update = "97.11 bibrelex" +, author = "L. Cremona" +, title = "Graphical Statics" +, publisher = "Oxford University Press" +, address = "London" +, year = 1890 +, update = "97.11 bibrelex" } @techreport{cdp-noaau-91 -, author = "P. Crescenzi and G. {Di Battista} and A. Piperno" -, title = "A Note on Optimal Area Algorithms for Upward Drawings of Binary Trees" -, number = "11.91" -, institution = "Dipartimento di Informatica e Sistemistica, Univ. di Roma ``La Sapienza''" -, year = 1991 -, keywords = "graph drawing" -, precedes = "cdp-noaau-92" -, update = "94.01 tamassia, 93.09 tamassia" +, author = "P. Crescenzi and G. {Di Battista} and A. Piperno" +, title = "A Note on Optimal Area Algorithms for Upward Drawings of Binary Trees" +, number = "11.91" +, institution = "Dipartimento di Informatica e Sistemistica, Univ. di Roma ``La Sapienza''" +, year = 1991 +, keywords = "graph drawing" +, precedes = "cdp-noaau-92" +, update = "94.01 tamassia, 93.09 tamassia" } @article{cdp-noaau-92 -, author = "P. Crescenzi and G. {Di Battista} and A. Piperno" -, title = "A Note on Optimal Area Algorithms for Upward Drawings of Binary Trees" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, year = 1992 -, pages = "187--200" -, keywords = "graph drawing" -, succeeds = "cdp-noaau-91" -, update = "94.01 tamassia" +, author = "P. Crescenzi and G. {Di Battista} and A. Piperno" +, title = "A Note on Optimal Area Algorithms for Upward Drawings of Binary Trees" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, year = 1992 +, pages = "187--200" +, keywords = "graph drawing" +, succeeds = "cdp-noaau-91" +, update = "94.01 tamassia" } @inproceedings{cp-mahvd-97 -, author = "Pierluigi Crescenzi and Paolo Penna" -, title = "Minimum-Area $h$-$v$ Drawings of Complete Binary Trees" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "371--382" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Pierluigi Crescenzi and Paolo Penna" +, title = "Minimum-Area $h$-$v$ Drawings of Complete Binary Trees" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "371--382" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{cpp-lauda-98 -, author = "P. Crescenzi and P. Penna and A. Piperno" -, title = "Linear-Area Upward Drawings of {AVL} Trees" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, year = 1998 -, pages = "25--42" -, note = "(special issue on Graph Drawing, edited by G.~{Di Battista} and R.~Tamassia)" -, succeeds = "cp-oauda-95" -, update = "98.11 devillers+patrignani, 98.07 vismara" +, author = "P. Crescenzi and P. Penna and A. Piperno" +, title = "Linear-Area Upward Drawings of {AVL} Trees" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, year = 1998 +, pages = "25--42" +, note = "(special issue on Graph Drawing, edited by G.~{Di Battista} and R.~Tamassia)" +, succeeds = "cp-oauda-95" +, update = "98.11 devillers+patrignani, 98.07 vismara" } @inproceedings{cp-oauda-95 -, author = "P. Crescenzi and A. Piperno" -, title = "Optimal-Area Upward Drawings of {AVL} Trees" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "307--317" -, keywords = "graph drawing, planar, upward, trees" -, update = "95.01 tamassia" +, author = "P. Crescenzi and A. Piperno" +, title = "Optimal-Area Upward Drawings of {AVL} Trees" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "307--317" +, keywords = "graph drawing, planar, upward, trees" +, update = "95.01 tamassia" } @article{chs-gmolr-88 -, author = "T. Creutzburg and A. H{\"u}bler and O. Sykora" -, title = "Geometric methods for on-line recognition of digital straight line segments" -, journal = "Computers Artif. Intel." -, volume = 7 -, number = 3 -, year = 1988 -, pages = "253--276" -, keywords = "digital geometry" -, update = "95.09 korneenko" +, author = "T. Creutzburg and A. H{\"u}bler and O. Sykora" +, title = "Geometric methods for on-line recognition of digital straight line segments" +, journal = "Computers Artif. Intel." +, volume = 7 +, number = 3 +, year = 1988 +, pages = "253--276" +, keywords = "digital geometry" +, update = "95.09 korneenko" } @book{ch-dgmc-88 -, author = "G. Crippen and T. Havel" -, title = "Distance Geometry and Molecular Conformation" -, publisher = "Research Studies Press" -, address = "Letchworth, UK" -, year = 1988 -, update = "98.07 bibrelex" +, author = "G. Crippen and T. Havel" +, title = "Distance Geometry and Molecular Conformation" +, publisher = "Research Studies Press" +, address = "Letchworth, UK" +, year = 1988 +, update = "98.07 bibrelex" } @book{ch-dgmc-88b -, author = "G. M. Crippen and T. F. Havel" -, title = "Distance Geometry and Molecular Conformation" -, publisher = "John Wiley \& Sons" -, year = 1988 -, update = "99.11 bibrelex, 98.11 orourke" +, author = "G. M. Crippen and T. F. Havel" +, title = "Distance Geometry and Molecular Conformation" +, publisher = "John Wiley \& Sons" +, year = 1988 +, update = "99.11 bibrelex, 98.11 orourke" } @book{cfg-upg-90 -, author = "H. P. Croft and K. J. Falconer and R. K. Guy" -, title = "Unsolved Problems in Geometry" -, publisher = "Springer-Verlag" -, year = 1990 +, author = "H. P. Croft and K. J. Falconer and R. K. Guy" +, title = "Unsolved Problems in Geometry" +, publisher = "Springer-Verlag" +, year = 1990 } @inproceedings{c-vsanl-88 -, author = "R. G. Cromley" -, title = "A Vertex Substitution Approach to Numerical Line Simplification" -, booktitle = "Proc. 3rd Internat. Sympos. Spatial Data Handling" -, year = 1988 -, pages = "57--64" -, update = "96.09 kreveld" +, author = "R. G. Cromley" +, title = "A Vertex Substitution Approach to Numerical Line Simplification" +, booktitle = "Proc. 3rd Internat. Sympos. Spatial Data Handling" +, year = 1988 +, pages = "57--64" +, update = "96.09 kreveld" } @inproceedings{c-cbsut-87 -, author = "R. G. Cromley" -, title = "Calculating Bisector Skeletons Using a {Thiessen} Data Structure" -, booktitle = "Proceedings, AUTOCARTO 8" -, site = "Baltimore, MD, March 29--April 3" -, year = 1987 -, pages = "719--724" -, update = "93.09 devillers" -, annote = "Vd of simple polygon. Selection algorithm." +, author = "R. G. Cromley" +, title = "Calculating Bisector Skeletons Using a {Thiessen} Data Structure" +, booktitle = "Proceedings, AUTOCARTO 8" +, site = "Baltimore, MD, March 29--April 3" +, year = 1987 +, pages = "719--724" +, update = "93.09 devillers" +, annote = "Vd of simple polygon. Selection algorithm." } @book{c-dc-92 -, author = "R. G. Cromley" -, title = "Digital Cartography" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs" -, year = 1992 -, update = "96.09 kreveld" +, author = "R. G. Cromley" +, title = "Digital Cartography" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs" +, year = 1992 +, update = "96.09 kreveld" } @article{cg-pistd-85 -, author = "R. G. Cromley and D. Grogan" -, title = "A Procedure for Identifying and Storing a {Thiessen} Diagram within a Convex Boundary" -, journal = "Geogr. Anal." -, volume = 17 -, number = 2 -, month = apr -, year = 1985 -, pages = "167--175" -, update = "93.09 devillers" -, annote = "Circumcircle algorithm. Only computes the part of the - Vd within a convex polygon." +, author = "R. G. Cromley and D. Grogan" +, title = "A Procedure for Identifying and Storing a {Thiessen} Diagram within a Convex Boundary" +, journal = "Geogr. Anal." +, volume = 17 +, number = 2 +, month = apr +, year = 1985 +, pages = "167--175" +, update = "93.09 devillers" +, annote = "Circumcircle algorithm. Only computes the part of the + Vd within a convex polygon." } @book{c-p-97 -, author = "P. Cromwell" -, title = "Polyhedra" -, publisher = "Cambridge University Press" -, address = "Cambridge" -, year = 1997 -, update = "00.11 smid, 00.07 icking, 98.07 orourke" +, author = "P. Cromwell" +, title = "Polyhedra" +, publisher = "Cambridge University Press" +, address = "Cambridge" +, year = 1997 +, update = "00.11 smid, 00.07 icking, 98.07 orourke" } @incollection{c-eev-94 -, author = "Robert L. Cromwell" -, title = "Efficient Eigenvalues for Visualization" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "193--198" -, keywords = "scatterplot, matrix of central moments" -, update = "94.09 heckbert" -, annote = "Answers the question: if I have a set of points in 3D, +, author = "Robert L. Cromwell" +, title = "Efficient Eigenvalues for Visualization" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "193--198" +, keywords = "scatterplot, matrix of central moments" +, update = "94.09 heckbert" +, annote = "Answers the question: if I have a set of points in 3D, from what direction should I view them to get the best view (minimizing bunching in the projection)? Solving this involves the eigenvalues of a 3x3 matrix. Optimized formulas are given for computing the eigenvalues." } @article{cr-tbtdo-99 -, author = "A. Crosnier and J. R. Rossignac" -, title = "Tribox Bounds for Three-Dimensional Objects" -, journal = "Comput. \& Graphics" -, volume = 23 -, number = 3 -, month = jun -, year = 1999 -, pages = "429--437" -, update = "00.03 held" +, author = "A. Crosnier and J. R. Rossignac" +, title = "Tribox Bounds for Three-Dimensional Objects" +, journal = "Comput. \& Graphics" +, volume = 23 +, number = 3 +, month = jun +, year = 1999 +, pages = "429--437" +, update = "00.03 held" } @article{c-sacg-77 -, author = "F. C. Crow" -, title = "Shadow Algorithms for Computer Graphics" -, journal = "Comput. Graph." -, volume = 11 -, number = 2 -, year = 1977 -, pages = "242--248" -, update = "97.11 bibrelex" +, author = "F. C. Crow" +, title = "Shadow Algorithms for Computer Graphics" +, journal = "Comput. Graph." +, volume = 11 +, number = 2 +, year = 1977 +, pages = "242--248" +, update = "97.11 bibrelex" } @book{cf-ikt-65 -, author = "R. H. Crowell and R. H. Fox" -, title = "Introduction to Knot Theory" -, publisher = "Blaisdell Publishing Co." -, address = "New York, NY" -, year = 1965 -, update = "97.11 bibrelex" +, author = "R. H. Crowell and R. H. Fox" +, title = "Introduction to Knot Theory" +, publisher = "Blaisdell Publishing Co." +, address = "New York, NY" +, year = 1965 +, update = "97.11 bibrelex" } @inproceedings{c-dvloo-92 -, author = "I. F. Cruz" -, title = "{DOODLE}: A visual language for object-oriented databases" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1992 -, pages = "71--80" -, keywords = "graph drawing" -, update = "97.07 agarwal, 94.01 tamassia" +, author = "I. F. Cruz" +, title = "{DOODLE}: A visual language for object-oriented databases" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1992 +, pages = "71--80" +, keywords = "graph drawing" +, update = "97.07 agarwal, 94.01 tamassia" } @inproceedings{c-uvcld-93 -, author = "I. F. Cruz" -, title = "Using a visual constraint language for data display specification" -, editor = "P. C. Kanellakis and J.-L. Lassez and V. Saraswat" -, booktitle = "First Workshop on Principles and Practice of Constraint Programming" -, site = "Newport, RI" -, month = apr -, year = 1993 -, keywords = "graph drawing" -, update = "94.01 tamassia" +, author = "I. F. Cruz" +, title = "Using a visual constraint language for data display specification" +, editor = "P. C. Kanellakis and J.-L. Lassez and V. Saraswat" +, booktitle = "First Workshop on Principles and Practice of Constraint Programming" +, site = "Newport, RI" +, month = apr +, year = 1993 +, keywords = "graph drawing" +, update = "94.01 tamassia" } % ### seems no way to do special issue cleanly? @@ -40048,4270 +40048,4270 @@ @inproceedings{c-uvcld-93 % bibtex article can, but can't have editor % hacks like {P. Eades, editors} break if printing trailing initials @book{ce-sigv-95 -, title = "Special Issue on Graph Visualization" -, editor = "I. F. Cruz and P. Eades" -, series = "J. Visual Lang. Comput." -, volume = "6:3" -, year = 1995 -, keywords = "graph drawing, collection" -, update = "96.01 jones, 95.09 tamassia" +, title = "Special Issue on Graph Visualization" +, editor = "I. F. Cruz and P. Eades" +, series = "J. Visual Lang. Comput." +, volume = "6:3" +, year = 1995 +, keywords = "graph drawing, collection" +, update = "96.01 jones, 95.09 tamassia" } @inproceedings{cg-dgeet-95 -, author = "I. F. Cruz and A. Garg" -, title = "Drawing Graphs by Example Efficiently: Trees and Planar Acyclic Digraphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "404--415" -, keywords = "graph drawing, planar, visual language, declarative" -, update = "95.01 tamassia" +, author = "I. F. Cruz and A. Garg" +, title = "Drawing Graphs by Example Efficiently: Trees and Planar Acyclic Digraphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "404--415" +, keywords = "graph drawing, planar, visual language, declarative" +, update = "95.01 tamassia" } @techreport{cgt-ecrvg-96 -, author = "I. F. Cruz and A. Garg and R. Tamassia" -, title = "Efficient Constraint Resolution in Visual Graph Drawing" -, type = "Manuscript" -, institution = "Dept. of Computer Sci., Brown University" -, year = 1996 -, keywords = "graph drawing" -, update = "96.09 tamassia" +, author = "I. F. Cruz and A. Garg and R. Tamassia" +, title = "Efficient Constraint Resolution in Visual Graph Drawing" +, type = "Manuscript" +, institution = "Dept. of Computer Sci., Brown University" +, year = 1996 +, keywords = "graph drawing" +, update = "96.09 tamassia" } @inproceedings{ctv-vagd-93 -, author = "I. F. Cruz and R. Tamassia and P. {Van Hentenryk}" -, title = "A Visual approach to graph drawing" -, booktitle = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" -, site = "Paris, France" -, month = sep -, year = 1993 -, keywords = "graph drawing" -, update = "94.01 tamassia" +, author = "I. F. Cruz and R. Tamassia and P. {Van Hentenryk}" +, title = "A Visual approach to graph drawing" +, booktitle = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" +, site = "Paris, France" +, month = sep +, year = 1993 +, keywords = "graph drawing" +, update = "94.01 tamassia" } @inproceedings{ct-3gdsa-96 -, author = "I. F. Cruz and J. P. Twarog" -, title = "3D Graph Drawing with Simulated Annealing" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "162--165" -, keywords = "graph drawing, straight-line, 3D" -, update = "96.09 tamassia, 96.04 garg" +, author = "I. F. Cruz and J. P. Twarog" +, title = "3D Graph Drawing with Simulated Annealing" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "162--165" +, keywords = "graph drawing, straight-line, 3D" +, update = "96.09 tamassia, 96.04 garg" } @article{cr-cfhpe-84 -, author = "J. Csima and T. A. Ralston" -, title = "Crossing-free {Hamiltonian} paths in {Euclidean} spaces" -, journal = "Ars Combin." -, volume = 18 -, year = 1984 -, pages = "87--97" -, keywords = "geometric graphs, TSP" -, update = "95.09 korneenko" +, author = "J. Csima and T. A. Ralston" +, title = "Crossing-free {Hamiltonian} paths in {Euclidean} spaces" +, journal = "Ars Combin." +, volume = 18 +, year = 1984 +, pages = "87--97" +, keywords = "geometric graphs, TSP" +, update = "95.09 korneenko" } @article{cf-dvbp-90 -, author = "J. Csirik and J. B. Frenk" -, title = "A dual version of bin packing" -, journal = "Algorithms Rev." -, volume = 1 -, number = 2 -, year = 1990 -, pages = "87--95" +, author = "J. Csirik and J. B. Frenk" +, title = "A dual version of bin packing" +, journal = "Algorithms Rev." +, volume = 1 +, number = 2 +, year = 1990 +, pages = "87--95" } @article{cflz-mdbp-90 -, author = "J. Csirik and J. B. G. Frenk and M. Labbe and S. Zhang" -, title = "On the multi-dimensional bin packing" -, journal = "Acta Cybern." -, volume = "??" -, year = 1990 -, pages = "361--369" -, keywords = "$d$-dimensional, packing, heuristics" -, update = "96.09 devillers, 95.09 korneenko" +, author = "J. Csirik and J. B. G. Frenk and M. Labbe and S. Zhang" +, title = "On the multi-dimensional bin packing" +, journal = "Acta Cybern." +, volume = "??" +, year = 1990 +, pages = "361--369" +, keywords = "$d$-dimensional, packing, heuristics" +, update = "96.09 devillers, 95.09 korneenko" } @article{ct-nagp-98 -, author = "Gy{\"o}rgy Csizmadia and G. T{\'o}th" -, title = "Note on an Art Gallery Problem" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, number = 1 -, year = 1998 -, pages = "47--55" -, keywords = "visibility" -, update = "98.07 bibrelex, 98.03 orourke, 96.09 orourke" +, author = "Gy{\"o}rgy Csizmadia and G. T{\'o}th" +, title = "Note on an Art Gallery Problem" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, number = 1 +, year = 1998 +, pages = "47--55" +, keywords = "visibility" +, update = "98.07 bibrelex, 98.03 orourke, 96.09 orourke" } @inproceedings{cdjn-dcvdc-94 -, author = "Lucian Cucu and Mircea Dragan and Tudor Jebelean and Viorel Negru" -, title = "Divide-and-Conquer {Voronoi} Diagram Construction" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "5--7" -, update = "00.11 smid, 00.07 icking" +, author = "Lucian Cucu and Mircea Dragan and Tudor Jebelean and Viorel Negru" +, title = "Divide-and-Conquer {Voronoi} Diagram Construction" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "5--7" +, update = "00.11 smid, 00.07 icking" } @inproceedings{cdjn-pi3dt-95 -, author = "Lucian Cucu and Mircea Dragan and Tudor Jebelean and Viorel Negru" -, title = "Parallel Implementation of {3D} {Delaunay} Triangulation" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "25--28" -, update = "00.03 bibrelex" +, author = "Lucian Cucu and Mircea Dragan and Tudor Jebelean and Viorel Negru" +, title = "Parallel Implementation of {3D} {Delaunay} Triangulation" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "25--28" +, update = "00.03 bibrelex" } @inproceedings{cdnm-tddtu-95 -, author = "Lucian Cucu and Mircea Dragan and Viorel Negru and Dorin Mangu" -, title = "Three Dimensional {Delaunay} Triangulation Using an Uniform Grid" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "21--23" -, update = "00.03 bibrelex" +, author = "Lucian Cucu and Mircea Dragan and Viorel Negru and Dorin Mangu" +, title = "Three Dimensional {Delaunay} Triangulation Using an Uniform Grid" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "21--23" +, update = "00.03 bibrelex" } @inproceedings{c-spc-99 -, author = "J. Culberson" -, title = "Sokoban is {PSPACE}-complete" -, editor = "E. Lodi, L. Pagli, N. Santoro" -, booktitle = "Proc. Internat. Conf. Fun with Algorithms" -, publisher = "Carelton Scientific" -, address = "Elba, Italy" -, month = jun -, year = 1998 -, pages = "65--76" -, update = "00.03 orourke" +, author = "J. Culberson" +, title = "Sokoban is {PSPACE}-complete" +, editor = "E. Lodi, L. Pagli, N. Santoro" +, booktitle = "Proc. Internat. Conf. Fun with Algorithms" +, publisher = "Carelton Scientific" +, address = "Elba, Italy" +, month = jun +, year = 1998 +, pages = "65--76" +, update = "00.03 orourke" } @inproceedings{cr-tgsps-85 -, author = "J. Culberson and G. J. E. Rawlins" -, title = "Turtlegons: generating simple polygons from sequences of angles" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "305--310" -, cites = "fm-nbkck-78, h-srlp-82, p-mccpi-80, s-rcg-84, sh-srppi-72, ZZZ" -, update = "97.11 bibrelex" +, author = "J. Culberson and G. J. E. Rawlins" +, title = "Turtlegons: generating simple polygons from sequences of angles" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "305--310" +, cites = "fm-nbkck-78, h-srlp-82, p-mccpi-80, s-rcg-84, sh-srppi-72, ZZZ" +, update = "97.11 bibrelex" } @techreport{cr-uaopc-89 -, author = "Joseph Culberson and Robert Reckhow" -, title = "A Unified Approach to Orthogonal Polygon Covering Problems via {Dent} Diagrams" -, type = "report" -, number = "TR 89-6" -, institution = "Department of Computing Science, University of Alberta" -, address = "Edmonton, Alberta, Canada" -, month = feb -, year = 1989 -, succeeds = "cr-dduap-87" -, precedes = "cr-occop-89a" -, update = "98.07 bibrelex" +, author = "Joseph Culberson and Robert Reckhow" +, title = "A Unified Approach to Orthogonal Polygon Covering Problems via {Dent} Diagrams" +, type = "report" +, number = "TR 89-6" +, institution = "Department of Computing Science, University of Alberta" +, address = "Edmonton, Alberta, Canada" +, month = feb +, year = 1989 +, succeeds = "cr-dduap-87" +, precedes = "cr-occop-89a" +, update = "98.07 bibrelex" } @techreport{cr-dduap-87 -, author = "J. Culberson and R. Reckhow" -, title = "Dent Diagrams: {A} Unified Approach to Polygon Covering Problems" -, institution = "Dept. Comput. Sci., Univ. Alberta" -, address = "Edmonton, Alberta, Canada" -, month = jul -, year = 1987 -, precedes = "cr-uaopc-89" -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "J. Culberson and R. Reckhow" +, title = "Dent Diagrams: {A} Unified Approach to Polygon Covering Problems" +, institution = "Dept. Comput. Sci., Univ. Alberta" +, address = "Edmonton, Alberta, Canada" +, month = jul +, year = 1987 +, precedes = "cr-uaopc-89" +, update = "98.07 bibrelex, 98.03 bibrelex" } @article{cr-occop-89a -, author = "J. Culberson and R. A. Reckhow" -, title = "Orthogonally convex coverings of orthogonal polygons without holes" -, journal = "J. Comput. Syst. Sci." -, volume = 39 -, year = 1989 -, pages = "166--204" -, succeeds = "rc-csopm-87" -, update = "98.07 bibrelex" +, author = "J. Culberson and R. A. Reckhow" +, title = "Orthogonally convex coverings of orthogonal polygons without holes" +, journal = "J. Comput. Syst. Sci." +, volume = 39 +, year = 1989 +, pages = "166--204" +, succeeds = "rc-csopm-87" +, update = "98.07 bibrelex" } @inproceedings{cr-cpih-88 -, author = "J. C. Culberson and R. A. Reckhow" -, title = "Covering polygons is hard" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "601--611" -, keywords = "complexity theory, covering, polygons, rectangles, NP-completeness, two-dimensional" -, comments = "Submitted J. Algorithms" +, author = "J. C. Culberson and R. A. Reckhow" +, title = "Covering polygons is hard" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "601--611" +, keywords = "complexity theory, covering, polygons, rectangles, NP-completeness, two-dimensional" +, comments = "Submitted J. Algorithms" } @article{cw-nstsm-82 -, author = "K. Culik and D. Wood" -, title = "A note on some tree similarity measure" -, journal = "IPL" -, volume = 15 -, year = 1982 -, pages = "39--42" -, update = "98.03 bibrelex" +, author = "K. Culik and D. Wood" +, title = "A note on some tree similarity measure" +, journal = "IPL" +, volume = 15 +, year = 1982 +, pages = "39--42" +, update = "98.03 bibrelex" } @inproceedings{ckpssssv-ltrmp-93 -, author = "D. E. Culler and R. M. Karp and D. A. Patterson and A. Sahay and K. E. Schauser and E. Santos and R. Subramonian and T. von Eicken" -, title = "{LogP}: Towards a Realistic Model of Parallel Computation" -, booktitle = "Proc. 4th ACM SIGPLAN Symp. on Princ. and Practice of Parallel Programming" -, year = 1993 -, pages = "1--12" -, update = "96.09 orourke" +, author = "D. E. Culler and R. M. Karp and D. A. Patterson and A. Sahay and K. E. Schauser and E. Santos and R. Subramonian and T. von Eicken" +, title = "{LogP}: Towards a Realistic Model of Parallel Computation" +, booktitle = "Proc. 4th ACM SIGPLAN Symp. on Princ. and Practice of Parallel Programming" +, year = 1993 +, pages = "1--12" +, update = "96.09 orourke" } @book{c-gs-66 -, author = "C. Culmann" -, title = "Graphische Statik" -, publisher = "Mayer and Zeller" -, address = "Z{\"u}rich" -, year = 1866 -, update = "97.11 bibrelex" +, author = "C. Culmann" +, title = "Graphische Statik" +, publisher = "Mayer and Zeller" +, address = "Z{\"u}rich" +, year = 1866 +, update = "97.11 bibrelex" } @article{c-oarn-85 -, author = "W. Cunningham" -, title = "Optimal attack and reinforcement of a network" -, journal = "J. ACM" -, volume = 32 -, year = 1985 -, update = "97.11 bibrelex" +, author = "W. Cunningham" +, title = "Optimal attack and reinforcement of a network" +, journal = "J. ACM" +, volume = 32 +, year = 1985 +, update = "97.11 bibrelex" } @inproceedings{cy-gtbtt-92 -, author = "W. Cunto and V. Yriarte" -, title = "{GKD}-trees: {Binary} trees that combine multi-dimensional data handling, node size and fringe reorganization" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "192--211" +, author = "W. Cunto and V. Yriarte" +, title = "{GKD}-trees: {Binary} trees that combine multi-dimensional data handling, node size and fringe reorganization" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "192--211" } @techreport{cbhh-sspes-87 -, author = "J. E. Cuny and D. A. Bayley and J. W. Hagerman and A. A. Hough" -, title = "The Simple Simon Programming Environment: {A} Status Report" -, number = "87-22" -, institution = "Department of Computer and Information Science, University of Massachusetts" -, month = may -, year = 1987 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. E. Cuny and D. A. Bayley and J. W. Hagerman and A. A. Hough" +, title = "The Simple Simon Programming Environment: {A} Status Report" +, number = "87-22" +, institution = "Department of Computer and Information Science, University of Massachusetts" +, month = may +, year = 1987 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{cr-wim-41 -, author = "R. Curant and H. Robbins" -, title = "What is Mathematics?" -, publisher = "Oxford University Press" -, year = 1941 -, update = "97.11 bibrelex" +, author = "R. Curant and H. Robbins" +, title = "What is Mathematics?" +, publisher = "Oxford University Press" +, year = 1941 +, update = "97.11 bibrelex" } @inproceedings{cl-vmbcm-96 -, author = "B. Curless and M. Levoy" -, title = "A volumetric method for building complex models from range images" -, booktitle = "Proc. SIGGRAPH 96" -, year = 1996 -, pages = "303--312" -, update = "00.03 devillers" +, author = "B. Curless and M. Levoy" +, title = "A volumetric method for building complex models from range images" +, booktitle = "Proc. SIGGRAPH 96" +, year = 1996 +, pages = "303--312" +, update = "00.03 devillers" } @article{cbc-ndlia-91 -, author = "D. B. Curtis and R. P. Burton and D. M. Campbell" -, title = "An $n$-dimensional line intersection algorithm" -, journal = "J. Imag. Technol." -, volume = 17 -, number = 4 -, year = 1991 -, pages = "175--177" -, keywords = "$d$-dimensional, intersection" -, update = "95.09 korneenko" +, author = "D. B. Curtis and R. P. Burton and D. M. Campbell" +, title = "An $n$-dimensional line intersection algorithm" +, journal = "J. Imag. Technol." +, volume = 17 +, number = 4 +, year = 1991 +, pages = "175--177" +, keywords = "$d$-dimensional, intersection" +, update = "95.09 korneenko" } @article{cbc-pagnd-91 -, author = "D. B. Curtis and R. P. Burton and D. M. Campbell" -, title = "Parallel axis geometry for $n$-dimensional computer graphics" -, journal = "J. Imag. Technol." -, volume = 17 -, number = 4 -, year = 1991 -, pages = "168--175" -, keywords = "$d$-dimensional, data structuring" -, update = "95.09 korneenko" +, author = "D. B. Curtis and R. P. Burton and D. M. Campbell" +, title = "Parallel axis geometry for $n$-dimensional computer graphics" +, journal = "J. Imag. Technol." +, volume = 17 +, number = 4 +, year = 1991 +, pages = "168--175" +, keywords = "$d$-dimensional, data structuring" +, update = "95.09 korneenko" } @book{c-rgfm-85 -, author = "M. Cutkosky" -, title = "Robotic grasping and fine manipulation" -, publisher = "Kluwer Academic Publishers" -, year = 1985 -, update = "98.07 bibrelex" +, author = "M. Cutkosky" +, title = "Robotic grasping and fine manipulation" +, publisher = "Kluwer Academic Publishers" +, year = 1985 +, update = "98.07 bibrelex" } @article{clpp-odpfs-60 -, author = "L. J. Cutrona and E. N. Leight and C. J. Palermo and L. J. Porcello" -, title = "Optical data processing and filtering systems" -, journal = "IEEE Trans. Inform. Theory" -, volume = 6 -, number = 3 -, month = jun -, year = 1960 -, pages = "386--400" -, update = "97.11 bibrelex" +, author = "L. J. Cutrona and E. N. Leight and C. J. Palermo and L. J. Porcello" +, title = "Optical data processing and filtering systems" +, journal = "IEEE Trans. Inform. Theory" +, volume = 6 +, number = 3 +, month = jun +, year = 1960 +, pages = "386--400" +, update = "97.11 bibrelex" } @inproceedings{ckp-citsg-93 -, author = "D. R. Cutting and D. R. Karger and J. O. Pedersen" -, title = "Constant Interaction-Time Scatter/Gather Browsing of Very Large Document Collections" -, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" -, year = 1993 -, pages = "126--134" -, update = "98.07 agarwal" +, author = "D. R. Cutting and D. R. Karger and J. O. Pedersen" +, title = "Constant Interaction-Time Scatter/Gather Browsing of Very Large Document Collections" +, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" +, year = 1993 +, pages = "126--134" +, update = "98.07 agarwal" } @inproceedings{ckp-sgcba-92 -, author = "D. R. Cutting and D. R. Karger and J. O. Pedersen and J. W. Tukey" -, title = "Scatter/Gather: {A} Cluster-Based Approach to Browsing Large Document Collections" -, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" -, year = 1992 -, pages = "318--329" -, update = "98.07 agarwal" +, author = "D. R. Cutting and D. R. Karger and J. O. Pedersen and J. W. Tukey" +, title = "Scatter/Gather: {A} Cluster-Based Approach to Browsing Large Document Collections" +, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" +, year = 1992 +, pages = "318--329" +, update = "98.07 agarwal" } @article{ckv-fhe-87 -, author = "G. Cybenko and D. W. Krumme and K. N. Venkataraman" -, title = "Fixed Hypercube Embedding" -, journal = "Inf. Proc. Lett." -, volume = 25 -, year = 1987 -, pages = "35--39" -, update = "98.07 bibrelex" +, author = "G. Cybenko and D. W. Krumme and K. N. Venkataraman" +, title = "Fixed Hypercube Embedding" +, journal = "Inf. Proc. Lett." +, volume = 25 +, year = 1987 +, pages = "35--39" +, update = "98.07 bibrelex" } @incollection{c-ebitu-94 -, author = "Joseph M. Cychosz" -, title = "Efficient Binary Image Thinning Using Neighborhood Maps" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "465--473" -, keywords = "image skeleton, image filter" -, update = "94.09 heckbert" -, annote = "Provides fast code to thin a bitmap image and find its +, author = "Joseph M. Cychosz" +, title = "Efficient Binary Image Thinning Using Neighborhood Maps" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "465--473" +, keywords = "image skeleton, image filter" +, update = "94.09 heckbert" +, annote = "Provides fast code to thin a bitmap image and find its ``skeleton.'' Image thinning is used for pattern recognition. Contains C code." } @incollection{cw-irc-94 -, author = "Joseph M. Cychosz and Warren N. {Waggenspack Jr.}" -, title = "Intersecting a Ray with a Cylinder" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "356--365" -, keywords = "quadric surface, ray tracing" -, update = "94.09 heckbert" -, annote = "Geometric method for intersecting a ray with a cylinder. +, author = "Joseph M. Cychosz and Warren N. {Waggenspack Jr.}" +, title = "Intersecting a Ray with a Cylinder" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "356--365" +, keywords = "quadric surface, ray tracing" +, update = "94.09 heckbert" +, annote = "Geometric method for intersecting a ray with a cylinder. Contains C code." } @inproceedings{cp-dsnlt-90 -, author = "R. Cypher and C. G. Plaxton" -, title = "Deterministic sorting in nearly logarithmic time on the hypercupe and related computers" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "193--203" -, update = "98.03 bibrelex" +, author = "R. Cypher and C. G. Plaxton" +, title = "Deterministic sorting in nearly logarithmic time on the hypercupe and related computers" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "193--203" +, update = "98.03 bibrelex" } @article{cs-cpasn-92 -, author = "R. Cypher and J. L. C. Sanz" -, title = "Cubesort: A Parallel Algorithm for Sorting {$N$} Data Items with {$S$}-Sorters" -, journal = "J. Algorithms" -, volume = 13 -, year = 1992 -, pages = "211--234" -, update = "96.09 orourke" +, author = "R. Cypher and J. L. C. Sanz" +, title = "Cubesort: A Parallel Algorithm for Sorting {$N$} Data Items with {$S$}-Sorters" +, journal = "J. Algorithms" +, volume = 13 +, year = 1992 +, pages = "211--234" +, update = "96.09 orourke" } @article{cp-dsnlt-93 -, author = "R. E. Cypher and C. G. Plaxton" -, title = "Deterministic Sorting in Nearly Logarithmic Time on the Hypercube and Related Computers" -, journal = "J. Comput. Syst. Sci." -, volume = 47 -, year = 1993 -, pages = "501--548" -, update = "98.03 bibrelex, 96.09 orourke" +, author = "R. E. Cypher and C. G. Plaxton" +, title = "Deterministic Sorting in Nearly Logarithmic Time on the Hypercube and Related Computers" +, journal = "J. Comput. Syst. Sci." +, volume = 47 +, year = 1993 +, pages = "501--548" +, update = "98.03 bibrelex, 96.09 orourke" } @inproceedings{c-pamcp-93 -, author = "A. Czumaj" -, title = "Parallel algorithm for the matrix chain product and the optimal triangulation problems" -, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 665 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "294--305" -, update = "93.05 smid" +, author = "A. Czumaj" +, title = "Parallel algorithm for the matrix chain product and the optimal triangulation problems" +, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 665 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "294--305" +, update = "93.05 smid" } % see http://www.cs.auc.dk/icalp98/ @inproceedings{cl-ptase-98 -, author = "Artur Czumaj and Andrzej Lingas" -, title = "A Polynomial Time Approximation Scheme for {Euclidean} Minimum Cost {$k$}-Connectivity" -, booktitle = "Proc. 25th Internat. Colloq. Automata Lang. Prog." -, nickname = "ICALP '98" -, series = "Lecture Notes Comput. Sci." -, volume = "??" -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "??" -, update = "98.03 mitchell" -, annote = "To appear, July 13-17 in Aalborg, Denmark" +, author = "Artur Czumaj and Andrzej Lingas" +, title = "A Polynomial Time Approximation Scheme for {Euclidean} Minimum Cost {$k$}-Connectivity" +, booktitle = "Proc. 25th Internat. Colloq. Automata Lang. Prog." +, nickname = "ICALP '98" +, series = "Lecture Notes Comput. Sci." +, volume = "??" +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "??" +, update = "98.03 mitchell" +, annote = "To appear, July 13-17 in Aalborg, Denmark" } @techreport{csu-is-90 -, author = "C. Czyzowicz and I. Stojmenovi{\'c} and J. Urrutia" -, title = "Immobilizing a shape" -, number = "rr 90/11-18" -, institution = "dept. d'informatique, univ. du qu{\'e}bec {\`a} hull" -, year = 1990 -, precedes = "csu-isp-91" -, update = "98.07 bibrelex" +, author = "C. Czyzowicz and I. Stojmenovi{\'c} and J. Urrutia" +, title = "Immobilizing a shape" +, number = "rr 90/11-18" +, institution = "dept. d'informatique, univ. du qu{\'e}bec {\`a} hull" +, year = 1990 +, precedes = "csu-isp-91" +, update = "98.07 bibrelex" } @inproceedings{csu-isp-91 -, author = "C. Czyzowicz and I. Stojmenovi{\'c} and J. Urrutia" -, title = "Immobilizing a shape in the plane" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "41--45" -, succeeds = "csu-is-90" -, cites = "bfg-sptf-85, csu-is-90, e-acg-87, k-dwp-90, mnp-ogp-89, mss-esmpg-87, o-cgc9-90, ZZZ" -, update = "98.07 bibrelex" +, author = "C. Czyzowicz and I. Stojmenovi{\'c} and J. Urrutia" +, title = "Immobilizing a shape in the plane" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "41--45" +, succeeds = "csu-is-90" +, cites = "bfg-sptf-85, csu-is-90, e-acg-87, k-dwp-90, mnp-ogp-89, mss-esmpg-87, o-cgc9-90, ZZZ" +, update = "98.07 bibrelex" } @techreport{c-ldfs-87 -, author = "J. Czyzowicz" -, title = "Lattice Diagrams with Few Slopes" -, number = 3 -, institution = "Departement D'Informatique, University of Quebec at Hull" -, year = 1987 -, keywords = "graph drawing" -, update = "98.07 patrignani, 93.09 tamassia" +, author = "J. Czyzowicz" +, title = "Lattice Diagrams with Few Slopes" +, number = 3 +, institution = "Departement D'Informatique, University of Quebec at Hull" +, year = 1987 +, keywords = "graph drawing" +, update = "98.07 patrignani, 93.09 tamassia" } @techreport{c-plsp-87 -, author = "J. Czyzowicz" -, title = "Planar Lattices and the Slope Problem" -, number = 4 -, institution = "Departement D'Informatique, University of Quebec at Hull" -, year = 1987 -, keywords = "graph drawing" -, update = "98.07 patrignani, 93.09 tamassia" +, author = "J. Czyzowicz" +, title = "Planar Lattices and the Slope Problem" +, number = 4 +, institution = "Departement D'Informatique, University of Quebec at Hull" +, year = 1987 +, keywords = "graph drawing" +, update = "98.07 patrignani, 93.09 tamassia" } @inproceedings{ceersstu-akp-91 -, author = "J. Czyzowicz and P. Egyed and H. Everett and D. Rappaport and T. Shermer and D. Souvaine and G. Toussaint and J. Urrutia" -, title = "The aquarium keeper's problem" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1991 -, pages = "459--464" -, update = "98.07 bibrelex" +, author = "J. Czyzowicz and P. Egyed and H. Everett and D. Rappaport and T. Shermer and D. Souvaine and G. Toussaint and J. Urrutia" +, title = "The aquarium keeper's problem" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1991 +, pages = "459--464" +, update = "98.07 bibrelex" } @techreport{cer-stpcba-94 -, author = "J. Czyzowicz and H. Everett and J.-M. Robert" -, title = "Separating Translates in the Plane: Combinatorial Bounds and an Algorithm" -, type = "Report" -, number = "DIM-94-2" -, institution = "Universit\'e du Qu\'ebec \`a Chicoutimi" -, address = "Chicoutimi" -, year = 1994 -, precedes = "cer-stpcba-97" -, update = "98.11 devillers, 97.03 pocchiola" +, author = "J. Czyzowicz and H. Everett and J.-M. Robert" +, title = "Separating Translates in the Plane: Combinatorial Bounds and an Algorithm" +, type = "Report" +, number = "DIM-94-2" +, institution = "Universit\'e du Qu\'ebec \`a Chicoutimi" +, address = "Chicoutimi" +, year = 1994 +, precedes = "cer-stpcba-97" +, update = "98.11 devillers, 97.03 pocchiola" } @article{cer-stpcba-97 -, author = "J. Czyzowicz and H. Everett and J.-M. Robert" -, title = "Separating Translates in the Plane: Combinatorial Bounds and an Algorithm" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "551--562" -, succeeds = "cer-stpcba-94" -, update = "98.11 devillers" +, author = "J. Czyzowicz and H. Everett and J.-M. Robert" +, title = "Separating Translates in the Plane: Combinatorial Bounds and an Algorithm" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "551--562" +, succeeds = "cer-stpcba-94" +, update = "98.11 devillers" } @inproceedings{chuz-peps-92 -, author = "J. Czyzowicz and F. Hurtado and J. Urrutia and N. Zaguia" -, title = "On polygons enclosing point sets" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "132--136" -, cites = "e-acg-87, ZZZ" -, update = "98.07 bibrelex" +, author = "J. Czyzowicz and F. Hurtado and J. Urrutia and N. Zaguia" +, title = "On polygons enclosing point sets" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "132--136" +, cites = "e-acg-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{ckku-drcig-97 -, author = "Jurek Czyzowicz and Evangelos Kranakis and Danny Krizanc and Jorge Urrutia" -, title = "Discrete Realizations of Contact and Intersection Graphs" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "359--370" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Jurek Czyzowicz and Evangelos Kranakis and Danny Krizanc and Jorge Urrutia" +, title = "Discrete Realizations of Contact and Intersection Graphs" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "359--370" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{ckku-mlcni-96 -, author = "J. Czyzowicz and E. Kranakis and D. Krizanc and J. Urrutia" -, title = "Maximal length common non-intersecting paths" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "185--189" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "J. Czyzowicz and E. Kranakis and D. Krizanc and J. Urrutia" +, title = "Maximal length common non-intersecting paths" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "185--189" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{cku-dttts-97 -, author = "Jurek Czyzowicz and Evangelos Kranakis and Jorge Urrutia" -, title = "Domino Tilings and Two--by--Two Squares" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "25--32" -, update = "97.11 jones" +, author = "Jurek Czyzowicz and Evangelos Kranakis and Jorge Urrutia" +, title = "Domino Tilings and Two--by--Two Squares" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "25--32" +, update = "97.11 jones" } @techreport{cpr-dofs-87 -, author = "J. Czyzowicz and A. Pelc and I. Rival" -, title = "Drawing Orders with Few Slopes" -, number = "TR-87-12" -, institution = "Department of Computer Science, University of Ottawa" -, year = 1987 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Czyzowicz and A. Pelc and I. Rival" +, title = "Drawing Orders with Few Slopes" +, number = "TR-87-12" +, institution = "Department of Computer Science, University of Ottawa" +, year = 1987 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{cpr-poswt-87 -, author = "J. Czyzowicz and A. Pelc and I. Rival" -, title = "Planar Ordered Sets of Width Two" -, number = "TR-87-31" -, institution = "Department of Computer Science, University of Ottawa" -, year = 1987 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Czyzowicz and A. Pelc and I. Rival" +, title = "Planar Ordered Sets of Width Two" +, number = "TR-87-31" +, institution = "Department of Computer Science, University of Ottawa" +, year = 1987 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{cpru-cdfs-87 -, author = "J. Czyzowicz and A. Pelc and I. Rival and J. Urrutia" -, title = "Crooked Diagrams with Few Slopes" -, number = "TR-87-26" -, institution = "Department of Computer Science, University of Ottawa" -, year = 1987 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Czyzowicz and A. Pelc and I. Rival and J. Urrutia" +, title = "Crooked Diagrams with Few Slopes" +, number = "TR-87-26" +, institution = "Department of Computer Science, University of Ottawa" +, year = 1987 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{cru-glmfc-91 -, author = "J. Czyzowicz and I. Rival and J. Urrutia" -, title = "Galleries and light matchings: {Fat} cooperative guards" -, editor = "R. A. Melter and A. Rosenfeld and P. Bhattacharya" -, booktitle = "Vision Geometry" -, series = "Contemporary Mathematics" -, volume = 119 -, publisher = "American Mathematical Society" -, year = 1991 -, pages = "21--28" -, keywords = "visibility, watchman problem" -, update = "99.11 bibrelex, 95.09 korneenko" +, author = "J. Czyzowicz and I. Rival and J. Urrutia" +, title = "Galleries and light matchings: {Fat} cooperative guards" +, editor = "R. A. Melter and A. Rosenfeld and P. Bhattacharya" +, booktitle = "Vision Geometry" +, series = "Contemporary Mathematics" +, volume = 119 +, publisher = "American Mathematical Society" +, year = 1991 +, pages = "21--28" +, keywords = "visibility, watchman problem" +, update = "99.11 bibrelex, 95.09 korneenko" } @inproceedings{cru-glmvg-89 -, author = "J. Czyzowicz and I. Rival and J. Urrutia" -, title = "Galleries, light matchings and visibility graphs" -, editor = "F. Dehne and J.-R. Sack and N. Santoro" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "316--324" -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "J. Czyzowicz and I. Rival and J. Urrutia" +, title = "Galleries, light matchings and visibility graphs" +, editor = "F. Dehne and J.-R. Sack and N. Santoro" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "316--324" +, update = "99.11 bibrelex, 98.11 bibrelex" } @unpublished{crsuz-grag -, author = "J. Czyzowicz and E. Rivera-Campo and N. Santoro and J. Urrutia and J. Zaks" -, title = "Guarding rectangular art galleries" -, note = "to appear in Disc. Math." -, succeeds = "crsuz-grag-89" -, update = "99.07 bibrelex, 98.11 bibrelex" +, author = "J. Czyzowicz and E. Rivera-Campo and N. Santoro and J. Urrutia and J. Zaks" +, title = "Guarding rectangular art galleries" +, note = "to appear in Disc. Math." +, succeeds = "crsuz-grag-89" +, update = "99.07 bibrelex, 98.11 bibrelex" } @techreport{crsuz-grag-89 -, author = "J. Czyzowicz and E. Rivera-Campo and N. Santoro and J. Urrutia and J. Zaks" -, title = "Guarding rectangular art galleries" -, type = "Technical Report" -, number = "89-27" -, institution = "Dept. Comput. Sci., Univ. of Ottawa" -, year = 1989 -, note = "to appear in {\em Discr. Applied Math.}" -, precedes = "crsuz-grag" -, update = "99.07 bibrelex, 98.11 bibrelex, 94.05 devillers" +, author = "J. Czyzowicz and E. Rivera-Campo and N. Santoro and J. Urrutia and J. Zaks" +, title = "Guarding rectangular art galleries" +, type = "Technical Report" +, number = "89-27" +, institution = "Dept. Comput. Sci., Univ. of Ottawa" +, year = 1989 +, note = "to appear in {\em Discr. Applied Math.}" +, precedes = "crsuz-grag" +, update = "99.07 bibrelex, 98.11 bibrelex, 94.05 devillers" } @techreport{cru-irtp-89 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia" -, title = "Illuminating rectangles and triangles in the plane" -, type = "report" -, number = "TR-89-50" -, institution = "Department of Computer Science, University of Ottawa" -, month = dec -, year = 1989 -, precedes = "cru-irtp-93" -, update = "98.07 bibrelex" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia" +, title = "Illuminating rectangles and triangles in the plane" +, type = "report" +, number = "TR-89-50" +, institution = "Department of Computer Science, University of Ottawa" +, month = dec +, year = 1989 +, precedes = "cru-irtp-93" +, update = "98.07 bibrelex" } @article{cru-irtp-93 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia" -, title = "Illuminating rectangles and triangles in the plane" -, journal = "J. Combin. Theory Ser. B" -, volume = 57 -, number = 1 -, year = 1993 -, pages = "1--17" -, succeeds = "cru-irtp-89" -, update = "98.07 bibrelex, 94.05 devillers" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia" +, title = "Illuminating rectangles and triangles in the plane" +, journal = "J. Combin. Theory Ser. B" +, volume = 57 +, number = 1 +, year = 1993 +, pages = "1--17" +, succeeds = "cru-irtp-89" +, update = "98.07 bibrelex, 94.05 devillers" } @inproceedings{cru-ofipt-93 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia" -, title = "Optimal floodlight illumination in polynomial time" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "393--398" -, cites = "bglosu-fp-93, c-ctpg-75, cru-irtp-93, crsuz-grag, f-icd-77, o-agta-87, ps-cgi-85, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia" +, title = "Optimal floodlight illumination in polynomial time" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "393--398" +, cites = "bglosu-fp-93, c-ctpg-75, cru-irtp-93, crsuz-grag, f-icd-77, o-agta-87, ps-cgi-85, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{cruz-gcs-90 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" -, title = "Guarding convex sets" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "265--268" -, note = "to appear in {\em Graphs and Combinatorics}" -, cites = "b-slcmd-58, crsuz-grag-89, cru-irtp-93, cruz-ilcp-89, f-icd-77, o-agta-87, n-lbcmm-77, t-flg-47, uz-ics-89, ZZZ" -, update = "98.07 bibrelex, 94.05 devillers" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" +, title = "Guarding convex sets" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "265--268" +, note = "to appear in {\em Graphs and Combinatorics}" +, cites = "b-slcmd-58, crsuz-grag-89, cru-irtp-93, cruz-ilcp-89, f-icd-77, o-agta-87, n-lbcmm-77, t-flg-47, uz-ics-89, ZZZ" +, update = "98.07 bibrelex, 94.05 devillers" } @techreport{cruz-igsp-90 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" -, title = "Illuminating and guarding segments in the plane" -, type = "Technical Report" -, number = "RR 90/09-13" -, institution = "Dept. d'informatique, Univ. du Qu\'ebec \`a Hull" -, year = 1990 -, note = "to appear in {\em Geometriae Dedicata} [This is wrong!-JOR]" -, update = "98.03 orourke, 94.05 devillers" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" +, title = "Illuminating and guarding segments in the plane" +, type = "Technical Report" +, number = "RR 90/09-13" +, institution = "Dept. d'informatique, Univ. du Qu\'ebec \`a Hull" +, year = 1990 +, note = "to appear in {\em Geometriae Dedicata} [This is wrong!-JOR]" +, update = "98.03 orourke, 94.05 devillers" } @article{cruz-igsp-95 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" -, title = "Illuminating and guarding segments in the plane" -, journal = "Discrete Math." -, volume = 137 -, year = 1995 -, pages = "147--153" -, update = "98.03 orourke" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" +, title = "Illuminating and guarding segments in the plane" +, journal = "Discrete Math." +, volume = 137 +, year = 1995 +, pages = "147--153" +, update = "98.03 orourke" } @techreport{cruz-ilcp-89 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" -, title = "Illuminating lines and circles in the plane" -, type = "Technical {Report}" -, number = "89-49" -, institution = "Univ. Ottawa" -, address = "Ottawa, Canada" -, month = dec -, year = 1989 -, update = "98.07 bibrelex" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" +, title = "Illuminating lines and circles in the plane" +, type = "Technical {Report}" +, number = "89-49" +, institution = "Univ. Ottawa" +, address = "Ottawa, Canada" +, month = dec +, year = 1989 +, update = "98.07 bibrelex" } @article{cruz-scsp-92 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" -, title = "Separating convex sets in the plane" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "189--195" -, succeeds = "cruz-scsp-90" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" +, title = "Separating convex sets in the plane" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "189--195" +, succeeds = "cruz-scsp-90" } @inproceedings{cruz-scsp-90 -, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" -, title = "Separating convex sets on the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "50--54" -, precedes = "cruz-scsp-92" -, cites = "akp-cddsl-89, ers-ccsno-90, hk-spcs-90, t-sppcs-79, uz-ics-89, ZZZ" -, update = "98.07 bibrelex" +, author = "J. Czyzowicz and E. Rivera-Campo and J. Urrutia and J. Zaks" +, title = "Separating convex sets on the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "50--54" +, precedes = "cruz-scsp-92" +, cites = "akp-cddsl-89, ers-ccsno-90, hk-spcs-90, t-sppcs-79, uz-ics-89, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{css-pip-96 -, author = "J. Czyzowicz and I. Stojmenovic and T. Szymacha" -, title = "On a problem of immobilizing polygons" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "283--288" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "J. Czyzowicz and I. Stojmenovic and T. Szymacha" +, title = "On a problem of immobilizing polygons" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "283--288" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{csu-ip-91 -, author = "J. Czyzowicz and I. Stojmenovi{\'c} and J. Urrutia" -, title = "Immobilizing a polytope" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "214--227" -, keywords = "polytopes" +, author = "J. Czyzowicz and I. Stojmenovi{\'c} and J. Urrutia" +, title = "Immobilizing a polytope" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "214--227" +, keywords = "polytopes" } @mastersthesis{d-hahsp-82 -, author = "N. Dadoun" -, title = "Hierarchical Approaches to the Hidden Surface Problem" -, school = "Univ. British Columbia" -, address = "Vancouver, BC" -, month = dec -, year = 1982 -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "N. Dadoun" +, title = "Hierarchical Approaches to the Hidden Surface Problem" +, school = "Univ. British Columbia" +, address = "Vancouver, BC" +, month = dec +, year = 1982 +, keywords = "master thesis" +, update = "97.11 bibrelex" } @inproceedings{dk-cssaa-89 -, author = "N. Dadoun and D. G. Kirkpatrick" -, title = "Cooperative subdivision search algorithms with applications" -, booktitle = "Proc. 27th Allerton Conf. Commun. Control Comput." -, year = 1989 -, pages = "538--547" -, update = "93.05 devillers" +, author = "N. Dadoun and D. G. Kirkpatrick" +, title = "Cooperative subdivision search algorithms with applications" +, booktitle = "Proc. 27th Allerton Conf. Commun. Control Comput." +, year = 1989 +, pages = "538--547" +, update = "93.05 devillers" } @article{dk-pcsh-89 -, author = "N. Dadoun and D. G. Kirkpatrick" -, title = "Parallel construction of subdivision hierarchies" -, journal = "J. Comput. Syst. Sci." -, volume = 39 -, year = 1989 -, pages = "153--165" -, succeeds = "dk-ppess-87" +, author = "N. Dadoun and D. G. Kirkpatrick" +, title = "Parallel construction of subdivision hierarchies" +, journal = "J. Comput. Syst. Sci." +, volume = 39 +, year = 1989 +, pages = "153--165" +, succeeds = "dk-ppess-87" } @inproceedings{dk-ppess-87 -, author = "N. Dadoun and D. G. Kirkpatrick" -, title = "Parallel processing for efficient subdivision search" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "205--214" -, keywords = "parallel computation, graph theory, searching, point location, subdivisions" -, precedes = "dk-pcsh-89" -, cites = "acgoy-pcg-85, acgoy-pcg-88, ag-epsp-86i, cdh-p5cpg-87, cv-dctac-86i, dk-fdpi-82, dk-fdpi-83, dk-ladsc-85, dk-fappi-, eka-nplai-84, kw-fpami-84, k-osps-83, lm-bmcpg-78, l-spami-85, mr-ptcia-85, ph-chfsp-77, sh-cpp-75, ZZZ" -, update = "98.03 bibrelex" +, author = "N. Dadoun and D. G. Kirkpatrick" +, title = "Parallel processing for efficient subdivision search" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "205--214" +, keywords = "parallel computation, graph theory, searching, point location, subdivisions" +, precedes = "dk-pcsh-89" +, cites = "acgoy-pcg-85, acgoy-pcg-88, ag-epsp-86i, cdh-p5cpg-87, cv-dctac-86i, dk-fdpi-82, dk-fdpi-83, dk-ladsc-85, dk-fappi-, eka-nplai-84, kw-fpami-84, k-osps-83, lm-bmcpg-78, l-spami-85, mr-ptcia-85, ph-chfsp-77, sh-cpp-75, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{dkw-hahst-82 -, author = "N. Dadoun and D. G. Kirkpatrick and J. P. Walsh" -, title = "Hierarchical approaches to hidden surface testing" -, booktitle = "Proc. Graphics Interface '82" -, site = "Toronto, ON" -, year = 1982 -, pages = "49--56" -, keywords = "data structuring, detection, visibility, hidden line/surface elimination, computer graphics" +, author = "N. Dadoun and D. G. Kirkpatrick and J. P. Walsh" +, title = "Hierarchical approaches to hidden surface testing" +, booktitle = "Proc. Graphics Interface '82" +, site = "Toronto, ON" +, year = 1982 +, pages = "49--56" +, keywords = "data structuring, detection, visibility, hidden line/surface elimination, computer graphics" } @techreport{dkw-hmbt-85 -, author = "N. Dadoun and D. G. Kirkpatrick and J. P. Walsh" -, title = "Hierarchical Methods for Beam Tracing" -, institution = "??" -, year = 1985 -, note = "In Preparation" -, update = "97.11 bibrelex" +, author = "N. Dadoun and D. G. Kirkpatrick and J. P. Walsh" +, title = "Hierarchical Methods for Beam Tracing" +, institution = "??" +, year = 1985 +, note = "In Preparation" +, update = "97.11 bibrelex" } @inproceedings{dkw-gbt-85 -, author = "N. Dadoun and D. G. Kirkpatrick and J. P. Walsh" -, title = "The geometry of beam tracing" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "55--61" -, keywords = "design of algorithms, computer graphics, intersection, hidden line/surface elimination, hierarchical representations" -, cites = "a-rtc-84, cd-diec-80, c-hgmvs-76, d-hahsp-82, dkw-hahst-82, dkw-hmbt-85, dk-fdpi-83, fkn-vsgpt-80, fag-nrtsd-83, g-ssfrt-84, hh-btpo-84, k-osps-83, ph-chfsp-77, r-rcms-82, rw-3drfr-80, sh-rpc-74, sss-cthsa-74, w-sdssr-79, wd-ddgsr-81, wd-wawwd-82, w-pcugr-80, wa-hsrup-77, w-iimsd-80, ZZZ" -, update = "97.11 bibrelex" +, author = "N. Dadoun and D. G. Kirkpatrick and J. P. Walsh" +, title = "The geometry of beam tracing" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "55--61" +, keywords = "design of algorithms, computer graphics, intersection, hidden line/surface elimination, hierarchical representations" +, cites = "a-rtc-84, cd-diec-80, c-hgmvs-76, d-hahsp-82, dkw-hahst-82, dkw-hmbt-85, dk-fdpi-83, fkn-vsgpt-80, fag-nrtsd-83, g-ssfrt-84, hh-btpo-84, k-osps-83, ph-chfsp-77, r-rcms-82, rw-3drfr-80, sh-rpc-74, sss-cthsa-74, w-sdssr-79, wd-ddgsr-81, wd-wawwd-82, w-pcugr-80, wa-hsrup-77, w-iimsd-80, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{d-fetow-01 -, author = "Ovidiu Daescu" -, title = "From Experiments to Theory: Optimal Weighted Links" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "158--161" -, update = "01.04 icking" +, author = "Ovidiu Daescu" +, title = "From Experiments to Theory: Optimal Weighted Links" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "158--161" +, update = "01.04 icking" } @inproceedings{dlmv-ppglf-88 -, author = "P. Dagum and M. Luby and M. Mihal and U. Vazirani" -, title = "Polytopes, permanents and graphs with large factors" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "412--421" -, comments = "To appear in Combinatorica as two papers" +, author = "P. Dagum and M. Luby and M. Mihal and U. Vazirani" +, title = "Polytopes, permanents and graphs with large factors" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "412--421" +, comments = "To appear in Combinatorica as two papers" } @book{dba-nm-74 -, author = "G. Dahlquist and A. Bj{\"o}rk and N. Anderson" -, title = "Numerical Methods" -, publisher = "Prentice Hall" -, year = 1974 -, update = "97.11 bibrelex" +, author = "G. Dahlquist and A. Bj{\"o}rk and N. Anderson" +, title = "Numerical Methods" +, publisher = "Prentice Hall" +, year = 1974 +, update = "97.11 bibrelex" } @incollection{d-spqs- -, author = "W. Dahmen" -, title = "Smooth piecewise quadratic surfaces" -, editor = "T. Lyche and L. Schumaker" -, booktitle = "Mathematical Methods in CAGD" -, publisher = "??" -, year = "??" -, update = "98.07 bibrelex" +, author = "W. Dahmen" +, title = "Smooth piecewise quadratic surfaces" +, editor = "T. Lyche and L. Schumaker" +, booktitle = "Mathematical Methods in CAGD" +, publisher = "??" +, year = "??" +, update = "98.07 bibrelex" } @article{dak-rrdos-85 -, author = "W.-M. Dai and Te. Asano and E. S. Kuh" -, title = "Routing region definition and ordering scheme for building block layout" -, journal = "IEEE Trans. Comput.-Aided. Design Integr. Circuits Syst." -, volume = 4 -, year = 1985 -, pages = "189--197" -, keywords = "VLSI design, plane-sweep, design of algorithms, plane graph representation" -, update = "96.09 devillers" +, author = "W.-M. Dai and Te. Asano and E. S. Kuh" +, title = "Routing region definition and ordering scheme for building block layout" +, journal = "IEEE Trans. Comput.-Aided. Design Integr. Circuits Syst." +, volume = 4 +, year = 1985 +, pages = "189--197" +, keywords = "VLSI design, plane-sweep, design of algorithms, plane graph representation" +, update = "96.09 devillers" } @inproceedings{dks-rrbs-91 -, author = "W. W.-M. Dai and R. Kong and M. Sata" -, title = "Routability of a rubber-band sketch" -, booktitle = "Proc. 28th ACM-IEEE Design Automation Conf." -, year = 1991 -, pages = "45--48" -, update = "98.07 bibrelex" +, author = "W. W.-M. Dai and R. Kong and M. Sata" +, title = "Routability of a rubber-band sketch" +, booktitle = "Proc. 28th ACM-IEEE Design Automation Conf." +, year = 1991 +, pages = "45--48" +, update = "98.07 bibrelex" } @article{dkc-lmtsh-00 -, author = "Y. Dai and N. Katoh and S.-W. Cheng" -, title = "{LMT}-skeleton heuristics for several classes of optimal triangulations" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "51--68" -, update = "01.04 smid" +, author = "Y. Dai and N. Katoh and S.-W. Cheng" +, title = "{LMT}-skeleton heuristics for several classes of optimal triangulations" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "51--68" +, update = "01.04 smid" } @inproceedings{delw-mmps-89 -, author = "Paul Dale and Peter Eades and Xuemin Lin and Nicolas C. Wormald" -, title = "Measuring motion planning strategies" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 8 -, update = "98.07 bibrelex" +, author = "Paul Dale and Peter Eades and Xuemin Lin and Nicolas C. Wormald" +, title = "Measuring motion planning strategies" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 8 +, update = "98.07 bibrelex" } @article{d-gcpcg-89 -, author = "P. Damaschke" -, title = "The {Hamiltonian} circuit problem for circle graphs is {NP}-complete" -, journal = "Inform. Process. Lett." -, volume = 32 -, number = 1 -, year = 1989 -, pages = "1--2" -, keywords = "geometric graphs, NP-completeness" -, update = "95.09 korneenko" +, author = "P. Damaschke" +, title = "The {Hamiltonian} circuit problem for circle graphs is {NP}-complete" +, journal = "Inform. Process. Lett." +, volume = 32 +, number = 1 +, year = 1989 +, pages = "1--2" +, keywords = "geometric graphs, NP-completeness" +, update = "95.09 korneenko" } @inproceedings{df-obpps-92p -, author = "F. d'Amore and P. G. Franciosa" -, title = "On the optimal binary plane partition for sets of isothetic rectangles" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "1--5" -, precedes = "df-obpps-92j" -, cites = "fkn-vsgpt-80, m-pst-85, py-bpahs-89, py-obspo-90t, ps-cgi-85, vw-rlsil-82, ZZZ" -, update = "98.07 bibrelex, 94.05 franciosa" +, author = "F. d'Amore and P. G. Franciosa" +, title = "On the optimal binary plane partition for sets of isothetic rectangles" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "1--5" +, precedes = "df-obpps-92j" +, cites = "fkn-vsgpt-80, m-pst-85, py-bpahs-89, py-obspo-90t, ps-cgi-85, vw-rlsil-82, ZZZ" +, update = "98.07 bibrelex, 94.05 franciosa" } @article{df-obpps-92j -, author = "F. d'Amore and P. G. Franciosa" -, title = "On the optimal binary plane partition for sets of isothetic rectangles" -, journal = "Inform. Process. Lett." -, volume = 44 -, year = 1992 -, pages = "255--259" -, succeeds = "df-obpps-92p" -, update = "94.05 franciosa" +, author = "F. d'Amore and P. G. Franciosa" +, title = "On the optimal binary plane partition for sets of isothetic rectangles" +, journal = "Inform. Process. Lett." +, volume = 44 +, year = 1992 +, pages = "255--259" +, succeeds = "df-obpps-92p" +, update = "94.05 franciosa" } @inproceedings{df-ssh-90 -, author = "F. d'Amore and P. G. Franciosa" -, title = "Separating sets of hyperrectangles" -, booktitle = "Proc. 15th Internat. Sympos. Math. Found. Comput. Sci." -, nickname = "MFCS '90" -, series = "Lecture Notes Comput. Sci." -, volume = 452 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "165--172" -, keywords = "$d$-dimensional, hyperrectangle, separation" -, precedes = "df-ssh-93" -, update = "98.07 bibrelex, 97.11 bibrelex, 94.05 franciosa" +, author = "F. d'Amore and P. G. Franciosa" +, title = "Separating sets of hyperrectangles" +, booktitle = "Proc. 15th Internat. Sympos. Math. Found. Comput. Sci." +, nickname = "MFCS '90" +, series = "Lecture Notes Comput. Sci." +, volume = 452 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "165--172" +, keywords = "$d$-dimensional, hyperrectangle, separation" +, precedes = "df-ssh-93" +, update = "98.07 bibrelex, 97.11 bibrelex, 94.05 franciosa" } @article{df-ssh-93 -, author = "F. d'Amore and P. G. Franciosa" -, title = "Separating sets of hyperrectangles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, number = 2 -, year = 1993 -, pages = "155--165" -, keywords = "rectangles, separator, binary space partition" -, succeeds = "df-ssh-90" -, update = "94.05 franciosa" -, annote = "Pictures are missing. They appeared on Internat. J. Comput. - Geom. Appl., volume 3, number 3, 1993, page 345" +, author = "F. d'Amore and P. G. Franciosa" +, title = "Separating sets of hyperrectangles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, number = 2 +, year = 1993 +, pages = "155--165" +, keywords = "rectangles, separator, binary space partition" +, succeeds = "df-ssh-90" +, update = "94.05 franciosa" +, annote = "Pictures are missing. They appeared on Internat. J. Comput. + Geom. Appl., volume 3, number 3, 1993, page 345" } @inproceedings{afgt-mmbu-97 -, author = "F. d'Amore and P. G. Franciosa and R. Giaccio and M. Talamo" -, title = "Maintaining Maxima under Boundary Updates" -, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1203 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "100--109" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "F. d'Amore and P. G. Franciosa and R. Giaccio and M. Talamo" +, title = "Maintaining Maxima under Boundary Updates" +, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1203 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "100--109" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{afl-rracg-98 -, author = "F. d'Amore and P. G. Franciosa and G. Liotta" -, title = "A Robust Region Approach to the Computation of Geometric Graphs" -, editor = "G. Bilardi and G. F. Italiano and A. Pietracaprina and G. Pucci" -, booktitle = "Algorithms -- ESA~'98" -, series = "Lecture Notes Comput. Sci." -, volume = 1461 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "175--186" -, succeeds = "dfl-rcems-98" -, update = "99.07 vismara" +, author = "F. d'Amore and P. G. Franciosa and G. Liotta" +, title = "A Robust Region Approach to the Computation of Geometric Graphs" +, editor = "G. Bilardi and G. F. Italiano and A. Pietracaprina and G. Pucci" +, booktitle = "Algorithms -- ESA~'98" +, series = "Lecture Notes Comput. Sci." +, volume = 1461 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "175--186" +, succeeds = "dfl-rcems-98" +, update = "99.07 vismara" } @inproceedings{dfl-rcems-98 -, author = "Fabrizio d'Amore and Paolo G. Franciosa and Guiseppe Liotta" -, title = "Robust Computation of {Euclidean} Minimum Spanning Trees" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "29--31" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Fabrizio d'Amore and Paolo G. Franciosa and Guiseppe Liotta" +, title = "Robust Computation of {Euclidean} Minimum Spanning Trees" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "29--31" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{dghm-mrcgc-98 -, author = "J. C. Dana and C. I. Grima and F. Hurtado and A. M{\'a}rquez" -, title = "More Results on Computational Geometry on the Cylinder" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "61--63" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "J. C. Dana and C. I. Grima and F. Hurtado and A. M{\'a}rquez" +, title = "More Results on Computational Geometry on the Cylinder" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "61--63" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{dgm-chnps-97 -, author = "J. C. Dana and C. I. Grima and A. M{\'a}rquez" -, title = "Convex Hull in Non-Planar Surfaces" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "39--41" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "J. C. Dana and C. I. Grima and A. M{\'a}rquez" +, title = "Convex Hull in Non-Planar Surfaces" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "39--41" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{dk-rtdpm-78 -, author = "J. Danaraj and V. Klee" -, title = "A representation of two-dimensional pseudo-manifolds and its use in the design of a linear time sheling algorithm" -, journal = "Ann. Discrete Math." -, volume = 2 -, year = 1978 -, update = "98.07 bibrelex" +, author = "J. Danaraj and V. Klee" +, title = "A representation of two-dimensional pseudo-manifolds and its use in the design of a linear time sheling algorithm" +, journal = "Ann. Discrete Math." +, volume = 2 +, year = 1978 +, update = "98.07 bibrelex" } @incollection{d-rddca-90 -, author = "J. Dangermond" -, title = "A Review of Digital Data Commonly Available and some of the Practical Problems of Entering them into a GIS" -, editor = "D. J. Peuquet and D. F. Marble" -, booktitle = "Introductory Readings in Geographic Information Systems" -, publisher = "Tayler \& Francis" -, address = "London" -, year = 1990 -, pages = "222--232" -, update = "96.09 kreveld" +, author = "J. Dangermond" +, title = "A Review of Digital Data Commonly Available and some of the Practical Problems of Entering them into a GIS" +, editor = "D. J. Peuquet and D. F. Marble" +, booktitle = "Introductory Readings in Geographic Information Systems" +, publisher = "Tayler \& Francis" +, address = "London" +, year = 1990 +, pages = "222--232" +, update = "96.09 kreveld" } @phdthesis{d-canpa-95 -, author = "K. Daniels" -, title = "Containment algorithms for nonconvex polygons with applications to layout" -, type = "Ph.{D}. Thesis" -, school = "Harvard University" -, address = "Cambridge, MA" -, year = 1995 -, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1995.html" -, keywords = "doctoral thesis, concave, polygons, packing, nesting, placement, optimization, enclosure, Minkowski sum, configuration space" -, comments = "is also Harvard DAS TechReport number: 12-95" -, update = "97.03 daniels" +, author = "K. Daniels" +, title = "Containment algorithms for nonconvex polygons with applications to layout" +, type = "Ph.{D}. Thesis" +, school = "Harvard University" +, address = "Cambridge, MA" +, year = 1995 +, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1995.html" +, keywords = "doctoral thesis, concave, polygons, packing, nesting, placement, optimization, enclosure, Minkowski sum, configuration space" +, comments = "is also Harvard DAS TechReport number: 12-95" +, update = "97.03 daniels" } @inproceedings{dm-cbspu-96 -, author = "K. Daniels and V. Milenkovic" -, title = "Column-based strip packing using ordered and compliant containment" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, year = 1996 -, pages = "33--38" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "layout, nesting, placement, Minkowski sum, configuration space" -, comments = "to appear in Lecture Notes in Computer Science; submitted to - Internat. J. Comput. Geom. Appl." -, update = "97.03 daniels" +, author = "K. Daniels and V. Milenkovic" +, title = "Column-based strip packing using ordered and compliant containment" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, year = 1996 +, pages = "33--38" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "layout, nesting, placement, Minkowski sum, configuration space" +, comments = "to appear in Lecture Notes in Computer Science; submitted to + Internat. J. Comput. Geom. Appl." +, update = "97.03 daniels" } @inproceedings{dm-lg-94 -, author = "K. Daniels and V. Milenkovic" -, title = "Limited Gaps" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "225--230" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "layout, packing, nesting, placement, reachability, Minkowski sum, configuration space, decomposition" -, cites = "dmr-fmaap-93, f-savd-87, l-tdvdl-80, lm-ccp-93, ZZZ" -, update = "98.11 bibrelex, 97.03 daniels, 94.09 jones" +, author = "K. Daniels and V. Milenkovic" +, title = "Limited Gaps" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "225--230" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "layout, packing, nesting, placement, reachability, Minkowski sum, configuration space, decomposition" +, cites = "dmr-fmaap-93, f-savd-87, l-tdvdl-80, lm-ccp-93, ZZZ" +, update = "98.11 bibrelex, 97.03 daniels, 94.09 jones" } @inproceedings{dm-mtcae-95 -, author = "Karen Daniels and Victor Milenkovic" -, title = "Multiple Translational Containment: {Approximate} and Exact Algorithms" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "205--214" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "packing, layout, placement, nesting, Minkowski sum, configuration space" -, update = "97.03 daniels, 96.09 agarwal, 96.05 mitchell" +, author = "Karen Daniels and Victor Milenkovic" +, title = "Multiple Translational Containment: {Approximate} and Exact Algorithms" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "205--214" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "packing, layout, placement, nesting, Minkowski sum, configuration space" +, update = "97.03 daniels, 96.09 agarwal, 96.05 mitchell" } @techreport{dml-mcm-94 -, author = "K. Daniels and V. Milenkovic and Z. Li" -, title = "Multiple containment methods" -, type = "Technical {Report}" -, number = "12-94" -, institution = "Center for Research in Computing Technology, Division of Applied Sciences, Harvard University" -, address = "Cambridge, MA" -, year = 1994 -, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1995.html" -, keywords = "polygons, concave, packing, layout, nesting, placement, mixed integer programming, Minkowski sum, configuration space" -, update = "97.03 daniels" +, author = "K. Daniels and V. Milenkovic and Z. Li" +, title = "Multiple containment methods" +, type = "Technical {Report}" +, number = "12-94" +, institution = "Center for Research in Computing Technology, Division of Applied Sciences, Harvard University" +, address = "Cambridge, MA" +, year = 1994 +, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1995.html" +, keywords = "polygons, concave, packing, layout, nesting, placement, mixed integer programming, Minkowski sum, configuration space" +, update = "97.03 daniels" } @article{dmr-flaap-97 -, author = "K. Daniels and V. Milenkovic and D. Roth" -, title = "Finding the largest area axis-parallel rectangle in a polygon" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "125--148" -, url = "http://www.cs.bc.edu/~daniels" -, keywords = "optimization, monotone matrices, polygons, inclusion" -, succeeds = "dmr-fmaap-93" -, update = "97.11 bibrelex, 97.03 daniels" +, author = "K. Daniels and V. Milenkovic and D. Roth" +, title = "Finding the largest area axis-parallel rectangle in a polygon" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "125--148" +, url = "http://www.cs.bc.edu/~daniels" +, keywords = "optimization, monotone matrices, polygons, inclusion" +, succeeds = "dmr-fmaap-93" +, update = "97.11 bibrelex, 97.03 daniels" } @techreport{dmr-flrsc-95 -, author = "K. Daniels and V. Milenkovic and D. Roth" -, title = "Finding the largest rectangle in several classes of polygons" -, type = "Technical {Report}" -, number = "22-95" -, institution = "Center for Research in Computing Technology, Division of Applied Sciences, Harvard University" -, address = "Cambridge, MA" -, year = 1995 -, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1995.html" -, keywords = "optimization, monotone matrices, polygons, inclusion" -, comments = "to appear in Computational Geometry, Theory and - Applications" -, update = "97.03 daniels" +, author = "K. Daniels and V. Milenkovic and D. Roth" +, title = "Finding the largest rectangle in several classes of polygons" +, type = "Technical {Report}" +, number = "22-95" +, institution = "Center for Research in Computing Technology, Division of Applied Sciences, Harvard University" +, address = "Cambridge, MA" +, year = 1995 +, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1995.html" +, keywords = "optimization, monotone matrices, polygons, inclusion" +, comments = "to appear in Computational Geometry, Theory and + Applications" +, update = "97.03 daniels" } @inproceedings{dmr-fmaap-93 -, author = "K. Daniels and V. Milenkovic and D. Roth" -, title = "Finding the maximum area axis-parallel rectangle in a polygon" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "322--327" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "optimization, monotone matrices, polygons, inclusion" -, precedes = "dmr-flaap -97" -, cites = "akmsw-gamsa-87, as-facle-87, aw-cg-88, c-tsplt-90i, cdl-cler-86, kk-altag-90, mos-fmrio-85, mdl-amm-91, mdl-pcnpc-92, ow-rv-88, ps-cgi-85, srw-gsv-cccg-91, nhl-merp-84, wy-ocsp-88, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 daniels+devillers, 93.09 milone+mitchell" +, author = "K. Daniels and V. Milenkovic and D. Roth" +, title = "Finding the maximum area axis-parallel rectangle in a polygon" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "322--327" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "optimization, monotone matrices, polygons, inclusion" +, precedes = "dmr-flaap -97" +, cites = "akmsw-gamsa-87, as-facle-87, aw-cg-88, c-tsplt-90i, cdl-cler-86, kk-altag-90, mos-fmrio-85, mdl-amm-91, mdl-pcnpc-92, ow-rv-88, ps-cgi-85, srw-gsv-cccg-91, nhl-merp-84, wy-ocsp-88, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 daniels+devillers, 93.09 milone+mitchell" } @inproceedings{dm-dbstl-96 -, author = "K. Daniels and V. J. Milenkovic" -, title = "Distance-based subdivision for translational {LP} containment" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "196--201" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "concave, polygons, decomposition" -, update = "97.03 agarwal+daniels, 96.09 mitchell" +, author = "K. Daniels and V. J. Milenkovic" +, title = "Distance-based subdivision for translational {LP} containment" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "196--201" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "concave, polygons, decomposition" +, update = "97.03 agarwal+daniels, 96.09 mitchell" } @article{dm-mtcp1-97 -, author = "K. Daniels and V. J. Milenkovic" -, title = "Multiple Translational Containment, Part I: An Approximate Algorithm" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "148--182" -, update = "98.07 bibrelex, 97.07 held" +, author = "K. Daniels and V. J. Milenkovic" +, title = "Multiple Translational Containment, Part I: An Approximate Algorithm" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "148--182" +, update = "98.07 bibrelex, 97.07 held" } @article{d-ccs2c-52 -, author = "M. E. Daniels" -, title = "The covering circle of a sample from $2$ circular normal distribution" -, journal = "Biometrika" -, volume = 39 -, year = 1952 -, pages = "137--143" +, author = "M. E. Daniels" +, title = "The covering circle of a sample from $2$ circular normal distribution" +, journal = "Biometrika" +, volume = 39 +, year = 1952 +, pages = "137--143" } @article{dt-edsar-90 -, author = "H. H. Dannelongue and P. A. Tanguy" -, title = "Efficient Data-Structures for Adaptive Remeshing with the {FEM}" -, journal = "J. Comput. Phys." -, volume = 91 -, number = 1 -, year = 1990 -, pages = "94--109" -, annote = "Advancing front method. To build a new triangle on an - edge, find closest point to the third vertex of an - equilateral triangle. $x$ and $y$ binary trees are used - to speed the search." +, author = "H. H. Dannelongue and P. A. Tanguy" +, title = "Efficient Data-Structures for Adaptive Remeshing with the {FEM}" +, journal = "J. Comput. Phys." +, volume = 91 +, number = 1 +, year = 1990 +, pages = "94--109" +, annote = "Advancing front method. To build a new triangle on an + edge, find closest point to the third vertex of an + equilateral triangle. $x$ and $y$ binary trees are used + to speed the search." } @inproceedings{dh-favrt-92 -, author = "John Danskin and Pat Hanrahan" -, title = "Fast Algorithms for Volume Ray Tracing" -, booktitle = "1992 Workshop on Volume Visualization" -, year = 1992 -, pages = "91--98" -, update = "98.03 agarwal" +, author = "John Danskin and Pat Hanrahan" +, title = "Fast Algorithms for Volume Ray Tracing" +, booktitle = "1992 Workshop on Volume Visualization" +, year = 1992 +, pages = "91--98" +, update = "98.03 agarwal" } @book{d-lpe-63 -, author = "G. B. Dantzig" -, title = "Linear Programming and Extensions" -, publisher = "Princeton University Press" -, address = "Princeton, NJ" -, year = 1963 +, author = "G. B. Dantzig" +, title = "Linear Programming and Extensions" +, publisher = "Princeton University Press" +, address = "Princeton, NJ" +, year = 1963 } @article{dow-gsmml-55 -, author = "G. B. Dantzig and A. Orden and P. Wolfe" -, title = "The generalized simplex method for minimizing a linear form under linear inequality restrictions" -, journal = "Pacific J. Math." -, volume = 5 -, year = 1955 -, pages = "183--195" -, update = "98.03 bibrelex" +, author = "G. B. Dantzig and A. Orden and P. Wolfe" +, title = "The generalized simplex method for minimizing a linear form under linear inequality restrictions" +, journal = "Pacific J. Math." +, volume = 5 +, year = 1955 +, pages = "183--195" +, update = "98.03 bibrelex" } @article{dg-ipbr-82 -, author = "L. Danzer and B. Gr{\"u}nbaum" -, title = "Intersection properties of boxes in {$R^{n}$}" -, journal = "Combinatorica" -, volume = 2 -, number = 3 -, year = 1982 -, pages = "237--246" -, update = "97.11 bibrelex" +, author = "L. Danzer and B. Gr{\"u}nbaum" +, title = "Intersection properties of boxes in {$R^{n}$}" +, journal = "Combinatorica" +, volume = 2 +, number = 3 +, year = 1982 +, pages = "237--246" +, update = "97.11 bibrelex" } @incollection{dgk-htir-63 -, author = "Ludwig Danzer and Branko Gr{\"u}nbaum and Victor Klee" -, title = "Helly's Theorem and its Relatives" -, booktitle = "Convexity" -, series = "Proc. Symp. Pure Math." -, volume = 7 -, publisher = "American Mathematical Society" -, address = "Providence" -, year = 1963 -, pages = "101--180" -, update = "98.03 bibrelex, 95.09 wenger" +, author = "Ludwig Danzer and Branko Gr{\"u}nbaum and Victor Klee" +, title = "Helly's Theorem and its Relatives" +, booktitle = "Convexity" +, series = "Proc. Symp. Pure Math." +, volume = 7 +, publisher = "American Mathematical Society" +, address = "Providence" +, year = 1963 +, pages = "101--180" +, update = "98.03 bibrelex, 95.09 wenger" } @article{dll-udleu-57 -, author = "L. Danzer and D. Laugwitz and H. Lenz" -, title = "{\"U}ber das {L{\"o}wnersche} {Ellipsoid} und sein {Analogon} unter den einem {Eik{\"o}rper} eingeschriebenen {Ellipsoiden}" -, journal = "Arch. Math." -, volume = 8 -, year = 1957 -, pages = "214--219" -, update = "97.11 bibrelex" +, author = "L. Danzer and D. Laugwitz and H. Lenz" +, title = "{\"U}ber das {L{\"o}wnersche} {Ellipsoid} und sein {Analogon} unter den einem {Eik{\"o}rper} eingeschriebenen {Ellipsoiden}" +, journal = "Arch. Math." +, volume = 8 +, year = 1957 +, pages = "214--219" +, update = "97.11 bibrelex" } % Bernierd June 1986 @inproceedings{dhrt-cisgm-87 -, author = "M. Dao and M. Habib and J. Richard and D. Tallot" -, title = "{CABRI} an Interactive System for Graph Manipulation" -, editor = "G. Tinhofer and G. Schmidt" -, booktitle = "Proc. 12th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 246 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "58--67" -, keywords = "graph drawing" -, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" +, author = "M. Dao and M. Habib and J. Richard and D. Tallot" +, title = "{CABRI} an Interactive System for Graph Manipulation" +, editor = "G. Tinhofer and G. Schmidt" +, booktitle = "Proc. 12th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 246 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "58--67" +, keywords = "graph drawing" +, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" } @article{dkn-pacps-87 -, author = "F. Darema and S. Kirkpatrick and V. A. Norton" -, title = "Parallel algorithms for chip placement by simulated annealing" -, journal = "IBM J. Res. Develop." -, volume = 31 -, year = 1987 -, pages = "391--402" +, author = "F. Darema and S. Kirkpatrick and V. A. Norton" +, title = "Parallel algorithms for chip placement by simulated annealing" +, journal = "IBM J. Res. Develop." +, volume = 31 +, year = 1987 +, pages = "391--402" } @phdthesis{d-ascg-90 -, author = "G. Das" -, title = "Approximation schemes in computational geometry" -, type = "Ph.{D}. Thesis" -, school = "University of Wisconsin" -, year = 1990 -, keywords = "doctoral thesis" +, author = "G. Das" +, title = "Approximation schemes in computational geometry" +, type = "Ph.{D}. Thesis" +, school = "University of Wisconsin" +, year = 1990 +, keywords = "doctoral thesis" } @inproceedings{d-vgcbd-97 -, author = "Gautam Das" -, title = "The Visibility Graph Contains a Bounded-Degree Spanner" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "70--75" -, update = "97.11 jones" +, author = "Gautam Das" +, title = "The Visibility Graph Contains a Bounded-Degree Spanner" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "70--75" +, update = "97.11 jones" } @inproceedings{dg-caitd-95 -, author = "Gautam Das and Michael T. Goodrich" -, title = "On the Complexity of Approximating and Illuminating Three-Dimensional Convex Polyhedra" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "74--85" -, keywords = "graph drawing, 3D, convex, polyhedron" -, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell+tamassia" +, author = "Gautam Das and Michael T. Goodrich" +, title = "On the Complexity of Approximating and Illuminating Three-Dimensional Convex Polyhedra" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "74--85" +, keywords = "graph drawing, 3D, convex, polyhedron" +, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell+tamassia" } @techreport{dg-ocop3-97t -, author = "G. Das and M. T. Goodrich" -, title = "On the complexity of optimization problems for 3-dimensional convex polyhedra and decision trees" -, type = "Research {Report}" -, institution = "Center for Geometric Computing" -, address = "Johns Hopkins Univ." -, year = 1997 -, update = "98.03 smid, 97.03 tamassia" +, author = "G. Das and M. T. Goodrich" +, title = "On the complexity of optimization problems for 3-dimensional convex polyhedra and decision trees" +, type = "Research {Report}" +, institution = "Center for Geometric Computing" +, address = "Johns Hopkins Univ." +, year = 1997 +, update = "98.03 smid, 97.03 tamassia" } @article{dg-ocop3-97a -, author = "G. Das and M. T. Goodrich" -, title = "On the complexity of optimization problems for 3-dimensional convex polyhedra and decision trees" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "123--137" -, update = "98.03 smid" +, author = "G. Das and M. T. Goodrich" +, title = "On the complexity of optimization problems for 3-dimensional convex polyhedra and decision trees" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "123--137" +, update = "98.03 smid" } @techreport{dgr-tdcgd-94 -, author = "G. Das and M. T. Goodrich and K. Ramayier" -, title = "Three-Dimensional Convex Graph Drawing" -, type = "Technical {Report}" -, institution = "Dept. of Computer Sci., Johns Hopkins Univ." -, year = 1994 -, keywords = "graph drawing, 3D, convex, straight-line" -, update = "96.09 tamassia" +, author = "G. Das and M. T. Goodrich and K. Ramayier" +, title = "Three-Dimensional Convex Graph Drawing" +, type = "Technical {Report}" +, institution = "Dept. of Computer Sci., Johns Hopkins Univ." +, year = 1994 +, keywords = "graph drawing, 3D, convex, straight-line" +, update = "96.09 tamassia" } @techreport{dgm-fsts-96 -, author = "G. Das and D. Gunopulos and H. Mannila" -, title = "Finding similar time series" -, institution = "??" -, year = 1996 -, note = "Manuscript" -, update = "98.07 bibrelex" +, author = "G. Das and D. Gunopulos and H. Mannila" +, title = "Finding similar time series" +, institution = "??" +, year = 1996 +, note = "Manuscript" +, update = "98.07 bibrelex" } @techreport{dhn-fwvcp-93 -, author = "G. Das and P. Heffernan and G. Narasimhan" -, title = "Finding all weakly-visible chords of a polygon in linear time" -, type = "Manuscript" -, institution = "Memphis State University" -, year = 1993 -, precedes = "dhn-fwvcp-94" -, update = "99.07 bibrelex, 98.03 bibrelex" +, author = "G. Das and P. Heffernan and G. Narasimhan" +, title = "Finding all weakly-visible chords of a polygon in linear time" +, type = "Manuscript" +, institution = "Memphis State University" +, year = 1993 +, precedes = "dhn-fwvcp-94" +, update = "99.07 bibrelex, 98.03 bibrelex" } @inproceedings{dhn-lvp-93 -, author = "G. Das and P. Heffernan and G. Narasimhan" -, title = "{LR}-Visibility in Polygons" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "303--308" -, precedes = "dhn-lvp-97" -, cites = "at-oadvp-81, c-tsplt-91a, cg-vippg-89, dhn-fwvcp-93, ghlst-ltavs-87, h-oatgp-93, ik-tgp-91, k-dwvsp-88, ss-oadwv-90, tl-tgwsp-93, ZZZ" -, update = "98.11 bibrelex, 98.07 icking, 97.03 devillers, 93.09 milone+mitchell" +, author = "G. Das and P. Heffernan and G. Narasimhan" +, title = "{LR}-Visibility in Polygons" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "303--308" +, precedes = "dhn-lvp-97" +, cites = "at-oadvp-81, c-tsplt-91a, cg-vippg-89, dhn-fwvcp-93, ghlst-ltavs-87, h-oatgp-93, ik-tgp-91, k-dwvsp-88, ss-oadwv-90, tl-tgwsp-93, ZZZ" +, update = "98.11 bibrelex, 98.07 icking, 97.03 devillers, 93.09 milone+mitchell" } @article{dhn-lvp-97 -, author = "G. Das and P. Heffernan and G. Narasimhan" -, title = "{LR}-Visibility in Polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "37--57" -, succeeds = "dhn-lvp-93" -, update = "98.07 icking, 97.03 devillers" +, author = "G. Das and P. Heffernan and G. Narasimhan" +, title = "{LR}-Visibility in Polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "37--57" +, succeeds = "dhn-lvp-93" +, update = "98.07 icking, 97.03 devillers" } @inproceedings{dhn-oss3d-93 -, author = "G. Das and P. Heffernan and G. Narasimhan" -, title = "Optimally sparse spanners in $3$-dimensional {Euclidean} space" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "53--62" -, cites = "addjs-sswg-93, cdns-nsrgs-92, dj-wtacg-89, ll-tapga-89, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "G. Das and P. Heffernan and G. Narasimhan" +, title = "Optimally sparse spanners in $3$-dimensional {Euclidean} space" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "53--62" +, cites = "addjs-sswg-93, cdns-nsrgs-92, dj-wtacg-89, ll-tapga-89, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @inproceedings{dh-cd3so-93 -, author = "Gautam Das and Paul J. Heffernan" -, title = "Constructing Degree-$3$ Spanners with other Sparseness Properties" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "11--20" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Gautam Das and Paul J. Heffernan" +, title = "Constructing Degree-$3$ Spanners with other Sparseness Properties" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "11--20" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @article{dh-cd3so-96 -, author = "G. Das and P. J. Heffernan" -, title = "Constructing degree-$3$ spanners with other sparseness properties" -, journal = "Internat. J. Found. Comput. Sci." -, volume = 7 -, year = 1996 -, pages = "121--135" -, update = "98.11 smid" +, author = "G. Das and P. J. Heffernan" +, title = "Constructing degree-$3$ spanners with other sparseness properties" +, journal = "Internat. J. Found. Comput. Sci." +, volume = 7 +, year = 1996 +, pages = "121--135" +, update = "98.11 smid" } @article{dhn-fwvcp-94 -, author = "G. Das and P. J. Heffernan and G. Narasimhan" -, title = "Finding All Weakly-Visible Chords of a Polygon in Linear Time" -, journal = "Nordic J. Comput." -, volume = 1 -, year = 1994 -, pages = "433--457" -, succeeds = "dhn-fwvcp-93" -, update = "99.07 bibrelex, 98.11 smid, 95.05 smid" +, author = "G. Das and P. J. Heffernan and G. Narasimhan" +, title = "Finding All Weakly-Visible Chords of a Polygon in Linear Time" +, journal = "Nordic J. Comput." +, volume = 1 +, year = 1994 +, pages = "433--457" +, succeeds = "dhn-fwvcp-93" +, update = "99.07 bibrelex, 98.11 smid, 95.05 smid" } @inproceedings{dj-mvhpd-90 -, author = "G. Das and D. Joseph" -, title = "Minimum vertex hulls for polyhedral domains" -, booktitle = "Proc. 7th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 415 -, publisher = "Springer-Verlag" -, year = 1990 -, precedes = "dj-mvhpd-92" -, update = "95.01 mitchell" +, author = "G. Das and D. Joseph" +, title = "Minimum vertex hulls for polyhedral domains" +, booktitle = "Proc. 7th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 415 +, publisher = "Springer-Verlag" +, year = 1990 +, precedes = "dj-mvhpd-92" +, update = "95.01 mitchell" } @article{dj-mvhpd-92 -, author = "G. Das and D. Joseph" -, title = "Minimum vertex hulls for polyhedral domains" -, journal = "Theoret. Comput. Sci." -, volume = 103 -, year = 1992 -, pages = "107--135" -, succeeds = "dj-mvhpd-90" -, update = "95.01 mitchell, 95.01 mitchell" +, author = "G. Das and D. Joseph" +, title = "Minimum vertex hulls for polyhedral domains" +, journal = "Theoret. Comput. Sci." +, volume = 103 +, year = 1992 +, pages = "107--135" +, succeeds = "dj-mvhpd-90" +, update = "95.01 mitchell, 95.01 mitchell" } @inproceedings{dj-cmcnp-90 -, author = "G. Das and D. Joseph" -, title = "The complexity of minimum convex nested polyhedra" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "296--301" -, cites = "abosy-fmcnp-85, cy-psppo-84, dj-mvhpd-90, kl-fstcg-85, l-pftu-82, o-cgc4-88, o-cgc5-88, ZZZ" -, update = "98.07 bibrelex" +, author = "G. Das and D. Joseph" +, title = "The complexity of minimum convex nested polyhedra" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "296--301" +, cites = "abosy-fmcnp-85, cy-psppo-84, dj-mvhpd-90, kl-fstcg-85, l-pftu-82, o-cgc4-88, o-cgc5-88, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{dj-wtacg-89 -, author = "G. Das and D. Joseph" -, title = "Which Triangulations Approximate the Complete Graph?" -, booktitle = "Proc. International Symposium on Optimal Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 401 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "168--192" -, update = "00.03 smid, 96.05 smid" -, abstract = "It has been shown in the literature that the Delaunay - triangulation and its variants are sparse - approximations of the complete graph, in that the - shortest distance between two sites within the - triangulation is bounded by a constant multiple of - their Euclidean separation. The present paper shows - that other classical triangulation algorithms, such as - the greedy triangulation, and more notably, the minimum - weight triangulation, also approximate the complete - graph in this sense. It also designs an algorithm for - constructing extremely sparse (nontriangular) planar - graphs that approximate the complete graph. It defines - a sufficiency condition and shows that any Euclidean - planar graph constructing algorithm which satisfies - this condition always produces good approximations of - the complete graph." +, author = "G. Das and D. Joseph" +, title = "Which Triangulations Approximate the Complete Graph?" +, booktitle = "Proc. International Symposium on Optimal Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 401 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "168--192" +, update = "00.03 smid, 96.05 smid" +, abstract = "It has been shown in the literature that the Delaunay + triangulation and its variants are sparse + approximations of the complete graph, in that the + shortest distance between two sites within the + triangulation is bounded by a constant multiple of + their Euclidean separation. The present paper shows + that other classical triangulation algorithms, such as + the greedy triangulation, and more notably, the minimum + weight triangulation, also approximate the complete + graph in this sense. It also designs an algorithm for + constructing extremely sparse (nontriangular) planar + graphs that approximate the complete graph. It defines + a sufficiency condition and shows that any Euclidean + planar graph constructing algorithm which satisfies + this condition always produces good approximations of + the complete graph." } @techreport{dks-ocaet-96t -, author = "G. Das and S. Kapoor and M. Smid" -, title = "On the complexity of approximating {Euclidean} traveling salesman tours and minimum spanning trees" -, type = "Report" -, number = "TR 96-02" -, institution = "Department of Computer Science, King's College" -, address = "London, UK" -, year = 1996 -, update = "97.03 smid, 96.05 smid" +, author = "G. Das and S. Kapoor and M. Smid" +, title = "On the complexity of approximating {Euclidean} traveling salesman tours and minimum spanning trees" +, type = "Report" +, number = "TR 96-02" +, institution = "Department of Computer Science, King's College" +, address = "London, UK" +, year = 1996 +, update = "97.03 smid, 96.05 smid" } @incollection{dks-ocaet-96i -, author = "G. Das and S. Kapoor and M. Smid" -, title = "On the complexity of approximating {Euclidean} traveling salesman tours and minimum spanning trees" -, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1180 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "64--75" -, update = "97.03 smid" +, author = "G. Das and S. Kapoor and M. Smid" +, title = "On the complexity of approximating {Euclidean} traveling salesman tours and minimum spanning trees" +, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1180 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "64--75" +, update = "97.03 smid" } @article{dks-ocaet-97 -, author = "G. Das and S. Kapoor and M. Smid" -, title = "On the complexity of approximating {Euclidean} traveling salesman tours and minimum spanning trees" -, journal = "Algorithmica" -, volume = 19 -, year = 1997 -, pages = "447--460" -, update = "97.11 smid" +, author = "G. Das and S. Kapoor and M. Smid" +, title = "On the complexity of approximating {Euclidean} traveling salesman tours and minimum spanning trees" +, journal = "Algorithmica" +, volume = 19 +, year = 1997 +, pages = "447--460" +, update = "97.11 smid" } @inproceedings{dn-facse-94 -, author = "G. Das and G. Narasimhan" -, title = "A Fast Algorithm for Constructing Sparse {Euclidean} Spanners" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "132--139" -, cites = "addjs-sswg-93, ap-sp-90, c-facts-93, cdns-nsrgs-95, dhn-oss3d-93, dh-cd3so-93, ll-tapga-89, s-cmsga-91, s-gs-92, v-sgagc-91, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "G. Das and G. Narasimhan" +, title = "A Fast Algorithm for Constructing Sparse {Euclidean} Spanners" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "132--139" +, cites = "addjs-sswg-93, ap-sp-90, c-facts-93, cdns-nsrgs-95, dhn-oss3d-93, dh-cd3so-93, ll-tapga-89, s-cmsga-91, s-gs-92, v-sgagc-91, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @article{dn-facse-97 -, author = "G. Das and G. Narasimhan" -, title = "A Fast Algorithm for Constructing Sparse {Euclidean} Spanners" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "297--315" -, update = "98.07 smid" +, author = "G. Das and G. Narasimhan" +, title = "A Fast Algorithm for Constructing Sparse {Euclidean} Spanners" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "297--315" +, update = "98.07 smid" } @inproceedings{dn-gsld-91 -, author = "G. Das and G. Narasimhan" -, title = "Geometric searching and link distances" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "261--272" -, keywords = "distance" +, author = "G. Das and G. Narasimhan" +, title = "Geometric searching and link distances" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "261--272" +, keywords = "distance" } @inproceedings{dn-oltas-94 -, author = "G. Das and G. Narasimhan" -, title = "Optimal Linear-Time Algorithm for the Shortest Illuminating Line Segment in a Polygon" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "259--266" -, keywords = "visibility" -, cites = "at-oadvp-81, bmt-ltacs-91, c-tsplt-91a, ghlst-ltavs-87, c-ocswv-92, cn-wrsp-91, dhn-lvp-93, dhn-fwvcp-93, dc-advsp-93, h-oatgp-93, ik-tgp-92, k-dwvsp-88, lp-oafkp-79, n-wrlv-92, o-cgc18-93, kv-swtwv-93, ss-oadwv-90, st-pplup-86, tl-tgwsp-93, ZZZ" -, update = "98.03 bibrelex, 94.09 orourke, 94.01 jones" +, author = "G. Das and G. Narasimhan" +, title = "Optimal Linear-Time Algorithm for the Shortest Illuminating Line Segment in a Polygon" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "259--266" +, keywords = "visibility" +, cites = "at-oadvp-81, bmt-ltacs-91, c-tsplt-91a, ghlst-ltavs-87, c-ocswv-92, cn-wrsp-91, dhn-lvp-93, dhn-fwvcp-93, dc-advsp-93, h-oatgp-93, ik-tgp-92, k-dwvsp-88, lp-oafkp-79, n-wrlv-92, o-cgc18-93, kv-swtwv-93, ss-oadwv-90, st-pplup-86, tl-tgwsp-93, ZZZ" +, update = "98.03 bibrelex, 94.09 orourke, 94.01 jones" } @inproceedings{dn-schds-95 -, author = "Gautam Das and Giri Narasimhan" -, title = "Short Cuts in Higher Dimensional Space" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "103--108" -, update = "95.09 jones" +, author = "Gautam Das and Giri Narasimhan" +, title = "Short Cuts in Higher Dimensional Space" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "103--108" +, update = "95.09 jones" } @inproceedings{dns-nwwme-95 -, author = "Gautam Das and Giri Narasimhan and Jeffrey Salowe" -, title = "A New Way to Weigh Malnourished {Euclidean} Graphs" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "215--222" -, keywords = "Steiner trees, t-spanners" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "Gautam Das and Giri Narasimhan and Jeffrey Salowe" +, title = "A New Way to Weigh Malnourished {Euclidean} Graphs" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "215--222" +, keywords = "Steiner trees, t-spanners" +, update = "96.09 agarwal, 96.05 mitchell" } @article{ds-lbagm-00 -, author = "G. Das and M. Smid" -, title = "A lower bound for approximating the geometric minimum weight matching" -, journal = "Inform. Process. Lett." -, volume = 74 -, year = 2000 -, pages = "253--255" -, update = "01.04 smid" +, author = "G. Das and M. Smid" +, title = "A lower bound for approximating the geometric minimum weight matching" +, journal = "Inform. Process. Lett." +, volume = 74 +, year = 2000 +, pages = "253--255" +, update = "01.04 smid" } @inproceedings{d-cmpt-89 -, author = "P. P. Das" -, title = "Characterization of metricity preserving transformations" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 31 +, author = "P. P. Das" +, title = "Characterization of metricity preserving transformations" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 31 } @article{dcc-dfdg-87 -, author = "P. P. Das and P. P. Chakrabarti and B. N. Chatterji" -, title = "Distance functions in digital geometry" -, journal = "Inform. Sci." -, volume = 42 -, number = 2 -, year = 1987 -, pages = "113--136" -, keywords = "distance, digital geometry" -, update = "95.09 korneenko" +, author = "P. P. Das and P. P. Chakrabarti and B. N. Chatterji" +, title = "Distance functions in digital geometry" +, journal = "Inform. Sci." +, volume = 42 +, number = 2 +, year = 1987 +, pages = "113--136" +, keywords = "distance, digital geometry" +, update = "95.09 korneenko" } @article{dcc-gddg-87 -, author = "P. P. Das and P. P. Chakrabarti and B. N. Chatterji" -, title = "Generalized distances in digital geometry" -, journal = "Inform. Sci." -, volume = 42 -, year = 1987 -, pages = "51--67" +, author = "P. P. Das and P. P. Chakrabarti and B. N. Chatterji" +, title = "Generalized distances in digital geometry" +, journal = "Inform. Sci." +, volume = 42 +, year = 1987 +, pages = "51--67" } @article{dc-hdg-90 -, author = "P. P. Das and B. N. Chatterji" -, title = "Hyperplanes in digital geometry" -, journal = "Inform. Sci." -, volume = 50 -, number = 1 -, year = 1990 -, pages = "73--91" -, keywords = "digital geometry, hyperplanes, $d$-dimensional" -, update = "95.09 korneenko" +, author = "P. P. Das and B. N. Chatterji" +, title = "Hyperplanes in digital geometry" +, journal = "Inform. Sci." +, volume = 50 +, number = 1 +, year = 1990 +, pages = "73--91" +, keywords = "digital geometry, hyperplanes, $d$-dimensional" +, update = "95.09 korneenko" } @article{dvpm-sahsr-90 -, author = "S. R. Das and P. Vaidya and L. Patniak and P. C. Mathias" -, title = "A systolic algorithm for hidden surface removal" -, journal = "Parallel Comput." -, volume = 15 -, number = "1--3" -, year = 1990 -, pages = "277--290" -, keywords = "parallel computation, hidden line/surface elimination" -, update = "95.09 korneenko" +, author = "S. R. Das and P. Vaidya and L. Patniak and P. C. Mathias" +, title = "A systolic algorithm for hidden surface removal" +, journal = "Parallel Comput." +, volume = 15 +, number = "1--3" +, year = 1990 +, pages = "277--290" +, keywords = "parallel computation, hidden line/surface elimination" +, update = "95.09 korneenko" } @article{dv-aamvn-89 -, author = "B. Dasgupta and C. E. {Veni Madhavan}" -, title = "An Approximate Algorithm for the Minimal Vertex Nested Polygon Problem" -, journal = "Inform. Process. Lett." -, volume = 33 -, year = 1989 -, pages = "35--44" -, keywords = "computational geometry, graphs, shortest paths" -, update = "94.09 lambert, 93.09 milone+mitchell" +, author = "B. Dasgupta and C. E. {Veni Madhavan}" +, title = "An Approximate Algorithm for the Minimal Vertex Nested Polygon Problem" +, journal = "Inform. Process. Lett." +, volume = 33 +, year = 1989 +, pages = "35--44" +, keywords = "computational geometry, graphs, shortest paths" +, update = "94.09 lambert, 93.09 milone+mitchell" } @incollection{dcd-noaec-95 -, author = "P. Dasgupta and P. P. Chakrabarti and S. C. DeSarkar" -, title = "A near optimal algorithm for the extended cow-path problem in the presence of relative errors" -, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1026 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "22--36" -, update = "96.01 smid" +, author = "P. Dasgupta and P. P. Chakrabarti and S. C. DeSarkar" +, title = "A near optimal algorithm for the extended cow-path problem in the presence of relative errors" +, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1026 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "22--36" +, update = "96.01 smid" } @incollection{dcd-ncaas-96 -, author = "P. Dasgupta and P. P. Chakrabarti and S. C. DeSarkar" -, title = "A new competitive algorithm for agent searching in unknown streets" -, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1180 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "147--155" -, update = "97.03 smid" +, author = "P. Dasgupta and P. P. Chakrabarti and S. C. DeSarkar" +, title = "A new competitive algorithm for agent searching in unknown streets" +, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1180 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "147--155" +, update = "97.03 smid" } @techreport{dg-epjll-99 -, author = "S. Dasgupta and A. Gupta" -, title = "An elementary proof of the {Johnson-Lindenstrauss} lemma" -, number = "TR-99-06" -, institution = "Intl. Comput. Sci. Inst." -, address = "Berkeley, CA" -, year = 1999 -, update = "00.11 smid, 00.07 agarwal" +, author = "S. Dasgupta and A. Gupta" +, title = "An elementary proof of the {Johnson-Lindenstrauss} lemma" +, number = "TR-99-06" +, institution = "Intl. Comput. Sci. Inst." +, address = "Berkeley, CA" +, year = 1999 +, update = "00.11 smid, 00.07 agarwal" } @book{d-ndl-95 -, title = "Network and Discrete Location" -, editor = "Mark S. Daskin" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1995 -, isbn = "0-471-01897-X" -, update = "99.11 bibrelex, 95.09 mitchell" +, title = "Network and Discrete Location" +, editor = "Mark S. Daskin" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1995 +, isbn = "0-471-01897-X" +, update = "99.11 bibrelex, 95.09 mitchell" } @techreport{dgb-smgtd-85 -, author = "N. N. Datar and U. G. Gujar and V. C. Bhavsar" -, title = "Some methods for generating three-dimensional objects" -, type = "Report" -, number = "??" -, institution = "School Comput. Sci., Univ. New Brunswick" -, address = "Fredericton, NB" -, year = 1985 +, author = "N. N. Datar and U. G. Gujar and V. C. Bhavsar" +, title = "Some methods for generating three-dimensional objects" +, type = "Report" +, number = "??" +, institution = "School Comput. Sci., Univ. New Brunswick" +, address = "Fredericton, NB" +, year = 1985 } @article{d-ealrp-92 -, author = "A. Datta" -, title = "Efficient algorithms for the largest rectangle problem" -, journal = "Inform. Sci." -, volume = 64 -, year = 1992 -, pages = "121--141" -, update = "93.09 datta" +, author = "A. Datta" +, title = "Efficient algorithms for the largest rectangle problem" +, journal = "Inform. Sci." +, volume = 64 +, year = 1992 +, pages = "121--141" +, update = "93.09 datta" } @inproceedings{d-epagk-94 -, author = "A. Datta" -, title = "Efficient parallel algorithms for geometric $k$-clustering problems" -, booktitle = "Proc. 11th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = "" -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "" -, update = "95.01 smid, 94.01 datta" +, author = "A. Datta" +, title = "Efficient parallel algorithms for geometric $k$-clustering problems" +, booktitle = "Proc. 11th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = "" +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "" +, update = "95.01 smid, 94.01 datta" } @inproceedings{dhs-cspbg-95 -, author = "Amitava Datta and Christoph A. Hipke and Sven Schuierer" -, title = "Competitive Searching in Polygons: {Beyond} Generalised Streets" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "32--41" -, update = "98.11 bibrelex, 98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "Amitava Datta and Christoph A. Hipke and Sven Schuierer" +, title = "Competitive Searching in Polygons: {Beyond} Generalised Streets" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "32--41" +, update = "98.11 bibrelex, 98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @inproceedings{di-csgs-94 -, author = "Amitava Datta and Christian Icking" -, title = "Competitive Searching in a Generalized Street" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "175--182" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr191.pdf" -, precedes = "di-csgs-95" -, cites = "bcr-sp-93, brs-nugt-91, dhn-lvp-93, dkp-hlue1-93, ik-tgp-92, k-wusbd-92, k-olssp-94, ls-ppspm-87, py-spwm-91, st-aelup-85, ZZZ" -, update = "00.03 bibrelex, 99.07 bibrelex, 98.11 bibrelex, 98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "Amitava Datta and Christian Icking" +, title = "Competitive Searching in a Generalized Street" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "175--182" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr191.pdf" +, precedes = "di-csgs-95" +, cites = "bcr-sp-93, brs-nugt-91, dhn-lvp-93, dkp-hlue1-93, ik-tgp-92, k-wusbd-92, k-olssp-94, ls-ppspm-87, py-spwm-91, st-aelup-85, ZZZ" +, update = "00.03 bibrelex, 99.07 bibrelex, 98.11 bibrelex, 98.03 bibrelex, 94.09 jones, 94.01 jones" } @techreport{di-csgs-95 -, author = "Amitava Datta and Christian Icking" -, title = "Competitive Searching in a Generalized Street" -, number = 191 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1995 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr191.pdf" -, succeeds = "di-csgs-94" -, precedes = "di-csgs-99" -, update = "99.07 bibrelex, 98.11 bibrelex" +, author = "Amitava Datta and Christian Icking" +, title = "Competitive Searching in a Generalized Street" +, number = 191 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1995 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr191.pdf" +, succeeds = "di-csgs-94" +, precedes = "di-csgs-99" +, update = "99.07 bibrelex, 98.11 bibrelex" } @article{di-csgs-99 -, author = "Amitava Datta and Christian Icking" -, title = "Competitive Searching in a Generalized Street" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "109--120" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr191.pdf" -, succeeds = "di-csgs-95" -, cites = "aks-eueo-99, bcr-sp-93, brs-nugt-97, dhn-lvp-97, dhs-cspbg-95, ds-mpupe-99, dkp-hlue1-98, drw-lrmt-98, gs-oolaw-97, gmr-rlp-97, hikk-cslp-97, hikk-pepns-98, ik-tgp-92, ik-csas-95, ik-skpcs-95, ikl-ocsws-99, ilss-ghtus-98, krt-sueor-96, knw-rlti-97, k-wusbd-92, k-olssp-94, lc-tasso-98, lsksc-ncssu-97, l-oltsb-96, ls-ghtus-95, ls-gsr-96, ls-wsf-96, ls-pinos-97, ls-lbsgs-98, ls-ppspm-87, py-spwm-91, s-ersls-97, ss-ossus-99, st-aelup-85, thl-tgwsp-98, ZZZ" -, update = "00.03 bibrelex, 99.11 bibrelex, 99.07 bibrelex" +, author = "Amitava Datta and Christian Icking" +, title = "Competitive Searching in a Generalized Street" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "109--120" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr191.pdf" +, succeeds = "di-csgs-95" +, cites = "aks-eueo-99, bcr-sp-93, brs-nugt-97, dhn-lvp-97, dhs-cspbg-95, ds-mpupe-99, dkp-hlue1-98, drw-lrmt-98, gs-oolaw-97, gmr-rlp-97, hikk-cslp-97, hikk-pepns-98, ik-tgp-92, ik-csas-95, ik-skpcs-95, ikl-ocsws-99, ilss-ghtus-98, krt-sueor-96, knw-rlti-97, k-wusbd-92, k-olssp-94, lc-tasso-98, lsksc-ncssu-97, l-oltsb-96, ls-ghtus-95, ls-gsr-96, ls-wsf-96, ls-pinos-97, ls-lbsgs-98, ls-ppspm-87, py-spwm-91, s-ersls-97, ss-ossus-99, st-aelup-85, thl-tgwsp-98, ZZZ" +, update = "00.03 bibrelex, 99.11 bibrelex, 99.07 bibrelex" } @inproceedings{dk-eamer-91 -, author = "A. Datta and K. Krithivasan" -, title = "An efficient algorithm for the maximum empty rectangle problem in three dimensions" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "78--83" -, cites = "as-facle-87, cdl-cler-86, d-ealrp-92, gno-faded-89, ZZZ" -, update = "98.07 bibrelex" +, author = "A. Datta and K. Krithivasan" +, title = "An efficient algorithm for the maximum empty rectangle problem in three dimensions" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "78--83" +, cites = "as-facle-87, cdl-cler-86, d-ealrp-92, gno-faded-89, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{dk-eamer-90 -, author = "A. Datta and K. Krithivasan" -, title = "Efficient algorithms for the maximum empty rectangle problem in shared memory and other architectures" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, volume = 3 -, year = 1990 -, pages = "344--345" -, update = "93.09 datta" +, author = "A. Datta and K. Krithivasan" +, title = "Efficient algorithms for the maximum empty rectangle problem in shared memory and other architectures" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, volume = 3 +, year = 1990 +, pages = "344--345" +, update = "93.09 datta" } @inproceedings{dk-ppli-88 -, author = "A. Datta and K. Krithivasan" -, title = "Path Planning with Local Information" -, booktitle = "Proc. Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "New Delhi, India" -, series = "Lecture Notes Comput. Sci." -, volume = 338 -, publisher = "Springer-Verlag" -, month = dec -, year = 1988 -, pages = "108--121" -, update = "99.11 bibrelex, 95.01 smid, 93.09 datta" +, author = "A. Datta and K. Krithivasan" +, title = "Path Planning with Local Information" +, booktitle = "Proc. Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "New Delhi, India" +, series = "Lecture Notes Comput. Sci." +, volume = 338 +, publisher = "Springer-Verlag" +, month = dec +, year = 1988 +, pages = "108--121" +, update = "99.11 bibrelex, 95.01 smid, 93.09 datta" } @inproceedings{dko-oaoss-97 -, author = "A. Datta and K. Krithivasan and T. Ottmann" -, title = "An Optimal Algorithm for One-Separation of a Set of Isothetic Polygons" -, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1203 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "" -, update = "00.03 devillers, 98.03 mitchell" +, author = "A. Datta and K. Krithivasan and T. Ottmann" +, title = "An Optimal Algorithm for One-Separation of a Set of Isothetic Polygons" +, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1203 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "" +, update = "00.03 devillers, 98.03 mitchell" } @techreport{dlss-sdakp-93t -, author = "A. Datta and H. P. Lenhof and C. Schwarz and M. Smid" -, title = "Static and dynamic algorithms for $k$-point clustering problems" -, type = "Report" -, number = "MPI-I-93-108" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, update = "93.05 smid" +, author = "A. Datta and H. P. Lenhof and C. Schwarz and M. Smid" +, title = "Static and dynamic algorithms for $k$-point clustering problems" +, type = "Report" +, number = "MPI-I-93-108" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, update = "93.05 smid" } @inproceedings{dlss-sdakp-93i -, author = "A. Datta and H.-P. Lenhof and C. Schwarz and M. Smid" -, title = "Static and Dynamic Algorithms for $k$-Point Clustering Problems" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "265--276" -, update = "95.01 smid, 93.09 milone+mitchell+smid, 93.05 jones" +, author = "A. Datta and H.-P. Lenhof and C. Schwarz and M. Smid" +, title = "Static and Dynamic Algorithms for $k$-Point Clustering Problems" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "265--276" +, update = "95.01 smid, 93.09 milone+mitchell+smid, 93.05 jones" } @article{dlss-sdakp-95 -, author = "A. Datta and H.-P. Lenhof and C. Schwarz and M. Smid" -, title = "Static and dynamic algorithms for $k$-point clustering problems" -, journal = "J. Algorithms" -, volume = 19 -, year = 1995 -, pages = "474--503" -, update = "96.01 smid" +, author = "A. Datta and H.-P. Lenhof and C. Schwarz and M. Smid" +, title = "Static and dynamic algorithms for $k$-point clustering problems" +, journal = "J. Algorithms" +, volume = 19 +, year = 1995 +, pages = "474--503" +, update = "96.01 smid" } @inproceedings{dms-ocpad-93 -, author = "A. Datta and A. Maheshwari and J.-R. Sack" -, title = "Optimal {CREW}-{PRAM} algorithms for direct dominance problems" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, nickname = "ESA '93" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "109--120" -, update = "95.01 smid, 94.01 smid, 93.09 datta+milone+mitchell" +, author = "A. Datta and A. Maheshwari and J.-R. Sack" +, title = "Optimal {CREW}-{PRAM} algorithms for direct dominance problems" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, nickname = "ESA '93" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "109--120" +, update = "95.01 smid, 94.01 smid, 93.09 datta+milone+mitchell" } @article{dms-opadd-96 -, author = "A. Datta and A. Maheshwari and J.-R. Sack" -, title = "Optimal Parallel Algorithms for Direct Dominance Problems" -, journal = "Nordic J. Comput." -, volume = 3 -, year = 1996 -, pages = "72--88" -, update = "97.11 sack" +, author = "A. Datta and A. Maheshwari and J.-R. Sack" +, title = "Optimal Parallel Algorithms for Direct Dominance Problems" +, journal = "Nordic J. Comput." +, volume = 3 +, year = 1996 +, pages = "72--88" +, update = "97.11 sack" } @inproceedings{dr-sleop-90 -, author = "A. Datta and G. D. S. Ramkumar" -, title = "On some largest empty orthoconvex polygons in a point set" -, booktitle = "Proc. Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "Bangalore, India" -, series = "Lecture Notes Comput. Sci." -, volume = 472 -, publisher = "Springer-Verlag" -, month = dec -, year = 1990 -, pages = "270--285" -, update = "98.07 smid, 93.09 datta" +, author = "A. Datta and G. D. S. Ramkumar" +, title = "On some largest empty orthoconvex polygons in a point set" +, booktitle = "Proc. Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "Bangalore, India" +, series = "Lecture Notes Comput. Sci." +, volume = 472 +, publisher = "Springer-Verlag" +, month = dec +, year = 1990 +, pages = "270--285" +, update = "98.07 smid, 93.09 datta" } @inproceedings{ds-mpupe-99 -, author = "Amitava Datta and Subbiah Soundaralakshmi" -, title = "Motion Planning in an Unknown Polygonal Environment with Bounded Performance Guarantee" -, booktitle = "Proc. 1999 IEEE Internat. Conf. Robot. Autom." -, nickname = "ICRA '99" -, site = "Detroit" -, year = 1999 -, update = "99.07 bibrelex" +, author = "Amitava Datta and Subbiah Soundaralakshmi" +, title = "Motion Planning in an Unknown Polygonal Environment with Bounded Performance Guarantee" +, booktitle = "Proc. 1999 IEEE Internat. Conf. Robot. Autom." +, nickname = "ICRA '99" +, site = "Detroit" +, year = 1999 +, update = "99.07 bibrelex" } @article{dsk-fspaf-90 -, author = "A. Datta and R. Srikant and K. Krithivasan" -, title = "Fast sequential and parallel algorithms for finding the largest rectangle separating two sets" -, journal = "Internat. J. Comput. Math." -, volume = 37 -, year = 1990 -, pages = "49--61" -, update = "93.09 datta" +, author = "A. Datta and R. Srikant and K. Krithivasan" +, title = "Fast sequential and parallel algorithms for finding the largest rectangle separating two sets" +, journal = "Internat. J. Comput. Math." +, volume = 37 +, year = 1990 +, pages = "49--61" +, update = "93.09 datta" } @inproceedings{d-sgvdc-94 -, author = "A. Dattasharma" -, title = "On the Size of a Generalized {Voronoi} Diagram for Convex Polyhedra in $d$ dimensions" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "357--362" -, cites = "dk-tmpcp-93, dk-avr3t-, d-sccgv-, ls-pptmc-87, ksd-ttute-92, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "A. Dattasharma" +, title = "On the Size of a Generalized {Voronoi} Diagram for Convex Polyhedra in $d$ dimensions" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "357--362" +, cites = "dk-tmpcp-93, dk-avr3t-, d-sccgv-, ls-pptmc-87, ksd-ttute-92, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{d-sqpgv-94 -, author = "A. Dattasharma" -, title = "Some Qualitative Properties of a Generalized {Voronoi} Diagram for Convex Polyhedra in $d$ dimensions" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "134--139" -, cites = "ps-cgi-85, dk-tmpcp-93, dk-avr3t-, d-sccgv-, ls-pptmc-87, ksd-ttute-92, c-vmpmp-85, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "A. Dattasharma" +, title = "Some Qualitative Properties of a Generalized {Voronoi} Diagram for Convex Polyhedra in $d$ dimensions" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "134--139" +, cites = "ps-cgi-85, dk-tmpcp-93, dk-avr3t-, d-sccgv-, ls-pptmc-87, ksd-ttute-92, c-vmpmp-85, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @phdthesis{d-sccgv- -, author = "A. Dattasharma" -, title = "Structure and Computation of a Class of Generalized {Voronoi} Diagrams with application to Translational Motion Planning" -, school = "Dept. of Computer Science and Automation, Indian Institute of Science" -, address = "Bangalore, India" -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "A. Dattasharma" +, title = "Structure and Computation of a Class of Generalized {Voronoi} Diagrams with application to Translational Motion Planning" +, school = "Dept. of Computer Science and Automation, Indian Institute of Science" +, address = "Bangalore, India" +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @inproceedings{dk-tmpcp-93 -, author = "A. Dattasharma and S. Keerthi" -, title = "Translational motion planning for a convex polyhedron in a 3D polyhedral world using an efficient and new roadmap" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "449--454" -, cites = "osy-gvdl-87, b-sfppg-83, ls-pptmc-87, cd-svd-88, s-aavd3-91, ksd-ttute-92, ls-pptmc-87, cd-svd-88, s-aavd3-91, c-vmpmp-85, dk-rvrtm-93, bms-plpco-93, m-lpltw-84, c-crmp-87, r-ca-70, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "A. Dattasharma and S. Keerthi" +, title = "Translational motion planning for a convex polyhedron in a 3D polyhedral world using an efficient and new roadmap" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "449--454" +, cites = "osy-gvdl-87, b-sfppg-83, ls-pptmc-87, cd-svd-88, s-aavd3-91, ksd-ttute-92, ls-pptmc-87, cd-svd-88, s-aavd3-91, c-vmpmp-85, dk-rvrtm-93, bms-plpco-93, m-lpltw-84, c-crmp-87, r-ca-70, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @unpublished{dk-avr3t- -, author = "A. Dattasharma and S. S. Keerthi" -, title = "An Augmented {Voronoi} Roadmap for {3D} Translational Motion Planning for a Convex Polyhedron Moving Amidst Convex Polyhedral Obstacles" -, journal = "Theoret. Comput. Sci." -, note = "to appear" -, update = "98.11 bibrelex" +, author = "A. Dattasharma and S. S. Keerthi" +, title = "An Augmented {Voronoi} Roadmap for {3D} Translational Motion Planning for a Convex Polyhedron Moving Amidst Convex Polyhedral Obstacles" +, journal = "Theoret. Comput. Sci." +, note = "to appear" +, update = "98.11 bibrelex" } @techreport{dk-rvrtm-93 -, author = "A. Dattasharma and S. S. Keerthi" -, title = "Rectilinear {Voronoi} like Roadmap for Translational Motion of a Convex Polyhedron Amidst Convex Polyhedra in a 3D {Euclidean} World" -, type = "Technical Report" -, number = "02-93" -, institution = "Indian Institute of Science" -, month = jun -, year = 1993 -, update = "98.11 bibrelex" +, author = "A. Dattasharma and S. S. Keerthi" +, title = "Rectilinear {Voronoi} like Roadmap for Translational Motion of a Convex Polyhedron Amidst Convex Polyhedra in a 3D {Euclidean} World" +, type = "Technical Report" +, number = "02-93" +, institution = "Indian Institute of Science" +, month = jun +, year = 1993 +, update = "98.11 bibrelex" } @article{d-cpcde-71 -, author = "H. Davenport" -, title = "A combinatorial problem connected with differential equations {II}" -, journal = "Acta Arithmetica" -, volume = 17 -, year = 1971 -, pages = "363--372" -, update = "95.05 agarwal" +, author = "H. Davenport" +, title = "A combinatorial problem connected with differential equations {II}" +, journal = "Acta Arithmetica" +, volume = 17 +, year = 1971 +, pages = "363--372" +, update = "95.05 agarwal" } @book{d-haitn-83 -, author = "H. Davenport" -, title = "The Higher Arithmetic: An Introduction to the Theory of Numbers" -, publisher = "Dover Publications" -, address = "New York" -, year = 1983 -, update = "97.11 bibrelex" +, author = "H. Davenport" +, title = "The Higher Arithmetic: An Introduction to the Theory of Numbers" +, publisher = "Dover Publications" +, address = "New York" +, year = 1983 +, update = "97.11 bibrelex" } @article{ds-cpcde-65 -, author = "H. Davenport and A. Schinzel" -, title = "A combinatorial problem connected with differential equations" -, journal = "Amer. J. Math." -, volume = 87 -, year = 1965 -, pages = "684--689" -, keywords = "Davenport-Schinzel sequences" +, author = "H. Davenport and A. Schinzel" +, title = "A combinatorial problem connected with differential equations" +, journal = "Amer. J. Math." +, volume = 87 +, year = 1965 +, pages = "684--689" +, keywords = "Davenport-Schinzel sequences" } @inproceedings{d-cag-79 -, author = "J. Davenport" -, title = "The Computerization of Algebraic Geometry" -, booktitle = "Proc. Internat. Sympos. Symbolic Algebraic Comput." -, volume = 72 -, publisher = "Springer-Verlag" -, year = 1979 -, pages = "119--133" -, update = "97.11 bibrelex" +, author = "J. Davenport" +, title = "The Computerization of Algebraic Geometry" +, booktitle = "Proc. Internat. Sympos. Symbolic Algebraic Comput." +, volume = 72 +, publisher = "Springer-Verlag" +, year = 1979 +, pages = "119--133" +, update = "97.11 bibrelex" } @article{d-pmp-86 -, author = "J. H. Davenport" -, title = "A ``piano movers'' problem" -, journal = "SIGSAM Bull." -, volume = 20 -, number = "1--2" -, year = 1986 -, pages = "15--17" -, keywords = "motion planning" -, update = "95.09 korneenko" +, author = "J. H. Davenport" +, title = "A ``piano movers'' problem" +, journal = "SIGSAM Bull." +, volume = 20 +, number = "1--2" +, year = 1986 +, pages = "15--17" +, keywords = "motion planning" +, update = "95.09 korneenko" } @book{dst-casaa-88 -, author = "J. H. Davenport and Y. Siret and E. Tournier" -, title = "Computer Algebra: systems and algorithms for algebraic computation" -, publisher = "Acacdemic Press" -, year = 1988 -, update = "98.11 bibrelex" +, author = "J. H. Davenport and Y. Siret and E. Tournier" +, title = "Computer Algebra: systems and algorithms for algebraic computation" +, publisher = "Acacdemic Press" +, year = 1988 +, update = "98.11 bibrelex" } @book{d-os-70 -, author = "H. A. David" -, title = "Order Statistics" -, publisher = "John Wiley \& Sons" -, year = 1970 -, update = "99.11 bibrelex, 98.07 bibrelex" +, author = "H. A. David" +, title = "Order Statistics" +, publisher = "John Wiley \& Sons" +, year = 1970 +, update = "99.11 bibrelex, 98.07 bibrelex" } @article{dh-dgnus-96 -, author = "Ron Davidson and David Harel" -, title = "Drawing Graphics Nicely Using Simulated Annealing" -, journal = "ACM Trans. Graph." -, volume = 15 -, number = 4 -, year = 1996 -, pages = "301--331" -, keywords = "graph drawing, straight-line, force-directed" -, update = "97.03 tamassia" +, author = "Ron Davidson and David Harel" +, title = "Drawing Graphics Nicely Using Simulated Annealing" +, journal = "ACM Trans. Graph." +, volume = 15 +, number = 4 +, year = 1996 +, pages = "301--331" +, keywords = "graph drawing, straight-line, force-directed" +, update = "97.03 tamassia" } @techreport{dh-dgnus-89 -, author = "R. Davidson and D. Harel" -, title = "Drawing Graphs Nicely Using Simulated Annealing" -, institution = "Department of Applied Mathematics and Computer Science, The Weizmann Institute of Science, Rehovot" -, year = 1989 -, keywords = "graph drawing" -, update = "95.05 smid+tamassia, 93.09 tamassia" +, author = "R. Davidson and D. Harel" +, title = "Drawing Graphs Nicely Using Simulated Annealing" +, institution = "Department of Applied Mathematics and Computer Science, The Weizmann Institute of Science, Rehovot" +, year = 1989 +, keywords = "graph drawing" +, update = "95.05 smid+tamassia, 93.09 tamassia" } @techreport{d-sfsos-84 -, author = "E. Davis" -, title = "Shape and function of solid objects: some examples" -, type = "Report" -, number = "TR137" -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, year = 1984 +, author = "E. Davis" +, title = "Shape and function of solid objects: some examples" +, type = "Report" +, number = "TR137" +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, year = 1984 } @inproceedings{d-csppd-85 -, author = "G. Davis" -, title = "Computing separating planes for a pair of disjoint polytopes" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "8--14" -, cites = "a-rmli-54, bgm-sma-65, b-mpg-69, c-lp-83, dh-pcsa-73, d-cvem-83, g-cpcli-51, g-spaph-82, g-rmssl-80, ns-picg-79, ph-chfsp-77, w-etcp-50, ZZZ" -, update = "97.11 bibrelex, 93.05 jones" +, author = "G. Davis" +, title = "Computing separating planes for a pair of disjoint polytopes" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "8--14" +, cites = "a-rmli-54, bgm-sma-65, b-mpg-69, c-lp-83, dh-pcsa-73, d-cvem-83, g-cpcli-51, g-spaph-82, g-rmssl-80, ns-picg-79, ph-chfsp-77, w-etcp-50, ZZZ" +, update = "97.11 bibrelex, 93.05 jones" } @book{dm-dasd-75 -, author = "J. C. Davis and M. J. McCullagh" -, title = "Display and analysis of spatial data" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1975 -, update = "99.11 bibrelex" +, author = "J. C. Davis and M. J. McCullagh" +, title = "Display and analysis of spatial data" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1975 +, update = "99.11 bibrelex" } @article{db-cmsii-79 -, author = "L. Davis and M. Benedikt" -, title = "Computational models of space: isovists and isovist fields" -, journal = "Comput. Graph. Image Process." -, volume = 11 -, year = 1979 -, pages = "49--72" +, author = "L. Davis and M. Benedikt" +, title = "Computational models of space: isovists and isovist fields" +, journal = "Comput. Graph. Image Process." +, volume = 11 +, year = 1979 +, pages = "49--72" } @book{d-ia-63 -, author = "P. J. Davis" -, title = "Interpolation and Approximation" -, publisher = "Blaisdell Publishing Co." -, address = "New York" -, year = 1963 -, update = "96.09 orourke" +, author = "P. J. Davis" +, title = "Interpolation and Approximation" +, publisher = "Blaisdell Publishing Co." +, address = "New York" +, year = 1963 +, update = "96.09 orourke" } @book{dr-mni-75 -, author = "P. J. Davis and P. Rabinivitz" -, title = "Methods of numerical integration" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1975 -, update = "98.03 bibrelex" +, author = "P. J. Davis and P. Rabinivitz" +, title = "Methods of numerical integration" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1975 +, update = "98.03 bibrelex" } @inproceedings{dd-nipdt-89 -, author = "J. R. Davy and P. M. Dew" -, title = "A Note on Improving the Performance of {Delaunay} Triangulation" -, booktitle = "New Advances in Computer Graphics: Proceedings of Computer Graphics International '89" -, publisher = "Springer-Verlag" -, address = "Tokyo" -, year = 1989 -, pages = "209--226" -, annote = "Experiments on coarse grain parallel implementations - of Guibas Stolfi divide and conquer algorithm." +, author = "J. R. Davy and P. M. Dew" +, title = "A Note on Improving the Performance of {Delaunay} Triangulation" +, booktitle = "New Advances in Computer Graphics: Proceedings of Computer Graphics International '89" +, publisher = "Springer-Verlag" +, address = "Tokyo" +, year = 1989 +, pages = "209--226" +, annote = "Experiments on coarse grain parallel implementations + of Guibas Stolfi divide and conquer algorithm." } @article{d-rbwdo-84 -, author = "R. J. Dawson" -, title = "On removing a ball without disturbing the others" -, journal = "Math. Mag." -, volume = 57 -, year = 1984 -, pages = "27--30" +, author = "R. J. Dawson" +, title = "On removing a ball without disturbing the others" +, journal = "Math. Mag." +, volume = 57 +, year = 1984 +, pages = "27--30" } @article{d-pchat-88 -, author = "A. M. Day" -, title = "Planar convex hull algorithms in theory and practice" -, journal = "Comput. Graph. Forum" -, volume = 7 -, number = 3 -, year = 1988 -, pages = "177--193" -, keywords = "convex hull" -, update = "95.09 korneenko" +, author = "A. M. Day" +, title = "Planar convex hull algorithms in theory and practice" +, journal = "Comput. Graph. Forum" +, volume = 7 +, number = 3 +, year = 1988 +, pages = "177--193" +, keywords = "convex hull" +, update = "95.09 korneenko" } @article{d-i2dch-90 -, author = "A. M. Day" -, title = "The Implementation of a 2{D} Convex Hull Algorithm Using Pertubation" -, journal = "Comput. Graph. Forum" -, volume = 9 -, number = 4 -, month = dec -, year = 1990 -, pages = "309--316" -, update = "93.09 held" +, author = "A. M. Day" +, title = "The Implementation of a 2{D} Convex Hull Algorithm Using Pertubation" +, journal = "Comput. Graph. Forum" +, volume = 9 +, number = 4 +, month = dec +, year = 1990 +, pages = "309--316" +, update = "93.09 held" } @article{d-iafch-90 -, author = "A. M. Day" -, title = "The implementation of an algorithm to find the convex hull of a set of $3$-d points" -, journal = "ACM Trans. Graph." -, volume = 9 -, number = 1 -, year = 1990 -, pages = "105--132" -, keywords = "implementing algorithms, three-dimensional, convex hull, points" -, cites = "ph-chfsp-77" -, update = "93.09 held" +, author = "A. M. Day" +, title = "The implementation of an algorithm to find the convex hull of a set of $3$-d points" +, journal = "ACM Trans. Graph." +, volume = 9 +, number = 1 +, year = 1990 +, pages = "105--132" +, keywords = "implementing algorithms, three-dimensional, convex hull, points" +, cites = "ph-chfsp-77" +, update = "93.09 held" } @techreport{de-eaahc-83 -, author = "W. H. E. Day and H. Edelsbrunner" -, title = "Efficient algorithms for agglomerative hierarchical clustering methods" -, type = "Report" -, number = "F122" -, institution = "Inst. Informationsverarb., Univ. Graz" -, address = "Graz, Austria" -, year = 1983 -, update = "98.07 smid, 97.11 bibrelex" +, author = "W. H. E. Day and H. Edelsbrunner" +, title = "Efficient algorithms for agglomerative hierarchical clustering methods" +, type = "Report" +, number = "F122" +, institution = "Inst. Informationsverarb., Univ. Graz" +, address = "Graz, Austria" +, year = 1983 +, update = "98.07 smid, 97.11 bibrelex" } @article{de-eaahc-84 -, author = "W. H. E. Day and H. Edelsbrunner" -, title = "Efficient algorithms for agglomerative hierarchical clustering methods" -, journal = "J. Classif." -, volume = 1 -, year = 1984 -, pages = "7--24" -, keywords = "design of algorithms, cluster analysis, discrete geometry, construction, packing, worst-case analysis" +, author = "W. H. E. Day and H. Edelsbrunner" +, title = "Efficient algorithms for agglomerative hierarchical clustering methods" +, journal = "J. Classif." +, volume = 1 +, year = 1984 +, pages = "7--24" +, keywords = "design of algorithms, cluster analysis, discrete geometry, construction, packing, worst-case analysis" } @article{de-ipllc-85 -, author = "W. H. E. Day and H. Edelsbrunner" -, title = "Investigation of proportional link linkage clustering methods" -, journal = "J. Classif." -, volume = 2 -, year = 1985 -, pages = "239--254" -, keywords = "design of algorithms, cluster analysis, worst-case analysis" +, author = "W. H. E. Day and H. Edelsbrunner" +, title = "Investigation of proportional link linkage clustering methods" +, journal = "J. Classif." +, volume = 2 +, year = 1985 +, pages = "239--254" +, keywords = "design of algorithms, cluster analysis, worst-case analysis" } @article{d-otmgc-91 -, author = "E. F. {D'Azevedo}" -, title = "Optimal triangular mesh generation by coordinate transformation" -, journal = "SIAM J. Sci. Statist. Comput." -, volume = 12 -, number = 4 -, year = 1991 -, pages = "755--786" -, keywords = "triangulation" -, update = "95.09 korneenko" +, author = "E. F. {D'Azevedo}" +, title = "Optimal triangular mesh generation by coordinate transformation" +, journal = "SIAM J. Sci. Statist. Comput." +, volume = 12 +, number = 4 +, year = 1991 +, pages = "755--786" +, keywords = "triangulation" +, update = "95.09 korneenko" } @article{ds-oiti-89 -, author = "E. F. {D'Azevedo} and R. B. Simpson" -, title = "On optimal interpolation triangle incidences" -, journal = "SIAM J. Sci. Statist. Comput." -, volume = 10 -, number = 6 -, year = 1989 -, pages = "1063--1075" -, keywords = "Delaunay triangulation" -, update = "95.09 korneenko" -, annote = "What triangulation minimizes error if we are - interpolating a convex quadratic function? First we - scale so that contours of the function are turned from - ellipses into circles. Error is proportional to area of - minimum containing circle. Another proof that DT - minimizes circumradii." +, author = "E. F. {D'Azevedo} and R. B. Simpson" +, title = "On optimal interpolation triangle incidences" +, journal = "SIAM J. Sci. Statist. Comput." +, volume = 10 +, number = 6 +, year = 1989 +, pages = "1063--1075" +, keywords = "Delaunay triangulation" +, update = "95.09 korneenko" +, annote = "What triangulation minimizes error if we are + interpolating a convex quadratic function? First we + scale so that contours of the function are turned from + ellipses into circles. Error is proportional to area of + minimum containing circle. Another proof that DT + minimizes circumradii." } @inproceedings{d-gbaof-87 -, author = "L. {De Floriani}" -, title = "A graph based approach to object feature recognition" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "100--109" -, cites = "adf-efgrs-84, adf-gmsou-85, bj-tdor-85, h-efitd-84, ht-dgtc-73, k-sccad-80, r-rrstm-80, s-adfbr-81, t-dfslg-72, w-ebdss-85, w-tsgm-86, w-fevd-82, ZZZ" -, update = "98.03 bibrelex" +, author = "L. {De Floriani}" +, title = "A graph based approach to object feature recognition" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "100--109" +, cites = "adf-efgrs-84, adf-gmsou-85, bj-tdor-85, h-efitd-84, ht-dgtc-73, k-sccad-80, r-rrstm-80, s-adfbr-81, t-dfslg-72, w-ebdss-85, w-tsgm-86, w-fevd-82, ZZZ" +, update = "98.03 bibrelex" } @article{d-pdstb-89 -, author = "L. {De Floriani}" -, title = "A Pyramidal Data Structure for Triangle-Based Surface Description" -, journal = "IEEE Comput. Graph. Appl." -, volume = 9 -, number = 2 -, month = mar -, year = 1989 -, pages = "67--78" -, update = "97.03 agarwal, 95.09 korneenko, 93.09 held" +, author = "L. {De Floriani}" +, title = "A Pyramidal Data Structure for Triangle-Based Surface Description" +, journal = "IEEE Comput. Graph. Appl." +, volume = 9 +, number = 2 +, month = mar +, year = 1989 +, pages = "67--78" +, update = "97.03 agarwal, 95.09 korneenko, 93.09 held" } @article{d-dseti-87 -, author = "Leila {De Floriani}" -, title = "Data Structures for Encoding Triangulated Irregular Networks" -, journal = "Adv. Eng. Softw." -, volume = 9 -, number = 3 -, year = 1987 -, pages = "122--128" -, annote = "Describes some choices for data structures for - representing a triangulation, and methods for - point-location, edge-neighbour and vertex-neighbour - problems." +, author = "Leila {De Floriani}" +, title = "Data Structures for Encoding Triangulated Irregular Networks" +, journal = "Adv. Eng. Softw." +, volume = 9 +, number = 3 +, year = 1987 +, pages = "122--128" +, annote = "Describes some choices for data structures for + representing a triangulation, and methods for + point-location, edge-neighbour and vertex-neighbour + problems." } @article{d-srbtg-87 -, author = "Leila {De Floriani}" -, title = "Surface representations based on triangular grids" -, journal = "Visual Comput." -, volume = 3 -, number = 1 -, month = feb -, year = 1987 -, pages = "27--50" -, keywords = "triangulation, trees, data structures" +, author = "Leila {De Floriani}" +, title = "Surface representations based on triangular grids" +, journal = "Visual Comput." +, volume = 3 +, number = 1 +, month = feb +, year = 1987 +, pages = "27--50" +, keywords = "triangulation, trees, data structures" } @article{df-hbmso-88 -, author = "L. {De Floriani} and B. Falcidieno" -, title = "A hierarchical boundary model for solid object representation" -, journal = "ACM Trans. Graph." -, volume = 7 -, year = 1988 -, pages = "42--60" +, author = "L. {De Floriani} and B. Falcidieno" +, title = "A hierarchical boundary model for solid object representation" +, journal = "ACM Trans. Graph." +, volume = 7 +, year = 1988 +, pages = "42--60" } @article{dfnp-hssa-84 -, author = "Leila {De Floriani} and Bianca Falcidieno and George Nagy and Caterina Pienovi" -, title = "Hierarchical Structure For Surface Approximation" -, journal = "Comput. Graph. (UK)" -, volume = 8 -, number = 2 -, year = 1984 -, pages = "183--193" -, keywords = "surface approximation, hierarchical triangulation, tree data structure, data points, structured graph representation" -, update = "96.09 devillers" -, annote = "3 way division into triangles." -, abstract = "Hierarchical triangulation is a method for point - selection and surface representation where the surface - is approximated at successively finer levels of detail - by triangular patches whose projections in the - horizontal plane are nested. A tree data structure for - this representation can be constructed in O(n**2) worst - case and O(n log n) average case time, where n is the - number of data points considered. Efficient algorithms - for approximation of the elevation of an arbitrary - point, contour extraction, and conversion of the - hierarchical structure into an ordinary triangulated - irregular network, are demonstrated. The convergence - and the optimality of the approximation and the - relationship of the hierarchical triangulation to a - structured graph representation are examined. 9 refs." +, author = "Leila {De Floriani} and Bianca Falcidieno and George Nagy and Caterina Pienovi" +, title = "Hierarchical Structure For Surface Approximation" +, journal = "Comput. Graph. (UK)" +, volume = 8 +, number = 2 +, year = 1984 +, pages = "183--193" +, keywords = "surface approximation, hierarchical triangulation, tree data structure, data points, structured graph representation" +, update = "96.09 devillers" +, annote = "3 way division into triangles." +, abstract = "Hierarchical triangulation is a method for point + selection and surface representation where the surface + is approximated at successively finer levels of detail + by triangular patches whose projections in the + horizontal plane are nested. A tree data structure for + this representation can be constructed in O(n**2) worst + case and O(n log n) average case time, where n is the + number of data points considered. Efficient algorithms + for approximation of the elevation of an arbitrary + point, contour extraction, and conversion of the + hierarchical structure into an ordinary triangulated + irregular network, are demonstrated. The convergence + and the optimality of the approximation and the + relationship of the hierarchical triangulation to a + structured graph representation are examined. 9 refs." } @article{dfnp-stdt-91 -, author = "L. {De Floriani} and B. Falcidieno and G. Nagy and C. Pienovi" -, title = "On sorting triangles in a {Delaunay} tessellation" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "522--532" +, author = "L. {De Floriani} and B. Falcidieno and G. Nagy and C. Pienovi" +, title = "On sorting triangles in a {Delaunay} tessellation" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "522--532" } @techreport{dfnp-ptduv-89 -, author = "L. {De Floriani} and B. Falcidieno and G. Nagy and C. Pienovi" -, title = "Polyhedral terrain description using visibility criteria" -, number = "17/89" -, institution = "CNR, Genova" -, year = 1989 -, update = "95.09 korneenko" +, author = "L. {De Floriani} and B. Falcidieno and G. Nagy and C. Pienovi" +, title = "Polyhedral terrain description using visibility criteria" +, number = "17/89" +, institution = "CNR, Genova" +, year = 1989 +, update = "95.09 korneenko" } @article{dfp-dbrsd-85 -, author = "L. {De Floriani} and B. Falcidieno and C. Pienovi" -, title = "{Delaunay}-based Representation of Surfaces Defined over Arbitrarily Shaped Domains" -, journal = "Comput. Vision Graph. Image Process." -, volume = 32 -, year = 1985 -, pages = "127--140" -, annote = "CDT for surface fitting. Incremental algorithm. Points - (where greatest error occurs) added until desired - accuracy reached. ($O(N\log N)$) average, $O(N^2)$ - worst." +, author = "L. {De Floriani} and B. Falcidieno and C. Pienovi" +, title = "{Delaunay}-based Representation of Surfaces Defined over Arbitrarily Shaped Domains" +, journal = "Comput. Vision Graph. Image Process." +, volume = 32 +, year = 1985 +, pages = "127--140" +, annote = "CDT for surface fitting. Incremental algorithm. Points + (where greatest error occurs) added until desired + accuracy reached. ($O(N\log N)$) average, $O(N^2)$ + worst." } @inproceedings{dfp-grhsm-84 -, author = "L. {De Floriani} and B. Falcidieno and C. Pienovi" -, title = "Graph Representation Of a Hierarchical Surface Model" -, booktitle = "Proc. 7th IEEE Internat. Conf. Pattern Recogn." -, publisher = "IEEE" -, address = "New York, NY" -, year = 1984 -, pages = "1093--1096" -, keywords = "triangulation, hierarchical structures, surface models, graph representation" -, annote = "Nested triangulation for surface representation." -, abstract = "The paper describes a hierarchical structure for - representing surfaces defined at arbitrarily - distributed data points. The surface is approximated at - increasing levels of accuracy by a network of - triangular, planar faces whose projections in the plane - are nested, which is called hierarchical triangulation. - A dual representation of this triangulation as a - vertex- structured graph is defined, and some basic - properties of this representation are discussed. - Algorithms for constructing a hierarchical - triangulation and for converting it to its dual form - are given. 12 refs." +, author = "L. {De Floriani} and B. Falcidieno and C. Pienovi" +, title = "Graph Representation Of a Hierarchical Surface Model" +, booktitle = "Proc. 7th IEEE Internat. Conf. Pattern Recogn." +, publisher = "IEEE" +, address = "New York, NY" +, year = 1984 +, pages = "1093--1096" +, keywords = "triangulation, hierarchical structures, surface models, graph representation" +, annote = "Nested triangulation for surface representation." +, abstract = "The paper describes a hierarchical structure for + representing surfaces defined at arbitrarily + distributed data points. The surface is approximated at + increasing levels of accuracy by a network of + triangular, planar faces whose projections in the plane + are nested, which is called hierarchical triangulation. + A dual representation of this triangulation as a + vertex- structured graph is defined, and some basic + properties of this representation are discussed. + Algorithms for constructing a hierarchical + triangulation and for converting it to its dual form + are given. 12 refs." } @article{dfp-sgrht-89 -, author = "L. {De Floriani} and B. Falcidieno and C. Pienovi" -, title = "Structured Graph Representation of a Hierarchical Triangulation" -, journal = "Comput. Vision Graph. Image Process." -, volume = 45 -, number = 2 -, month = feb -, year = 1989 -, pages = "215--226" -, keywords = "hierarchical triangulation, structured graph representation, surface representation" -, annote = "Each triangle is split into three." -, abstract = "The problem of representing a 2 1/2-dimensional - surface at variable degrees of accuracy is considered. - A hierarchical model, called a hierarchical - triangulation, is described which approximates a - surface by a network of triangular, planar facets whose - projections in the plane are nested. In the paper, a - dual representation of such a triangulation in the form - of a structured graph is defined and the fundamental - properties of this representation are discussed. An - algorithm for converting a hierarchical triangulation - into its dual form is given. As an example of - application, an algorithm is described for the - conversion of the dual graph into the standard - triangle-oriented structure used for encoding - triangulated irregular networks. (Author abstract) 15 - Refs." +, author = "L. {De Floriani} and B. Falcidieno and C. Pienovi" +, title = "Structured Graph Representation of a Hierarchical Triangulation" +, journal = "Comput. Vision Graph. Image Process." +, volume = 45 +, number = 2 +, month = feb +, year = 1989 +, pages = "215--226" +, keywords = "hierarchical triangulation, structured graph representation, surface representation" +, annote = "Each triangle is split into three." +, abstract = "The problem of representing a 2 1/2-dimensional + surface at variable degrees of accuracy is considered. + A hierarchical model, called a hierarchical + triangulation, is described which approximates a + surface by a network of triangular, planar facets whose + projections in the plane are nested. In the paper, a + dual representation of such a triangulation in the form + of a structured graph is defined and the fundamental + properties of this representation are discussed. An + algorithm for converting a hierarchical triangulation + into its dual form is given. As an example of + application, an algorithm is described for the + conversion of the dual graph into the standard + triangle-oriented structure used for encoding + triangulated irregular networks. (Author abstract) 15 + Refs." } @techreport{dfpn-stdt-88 -, author = "L. {De Floriani} and B. Falcidieno and C. Pienovi and G. Nagy" -, title = "On sorting triangles in a {Delaunay} tessellation" -, institution = "Instituto per la Matematica Applicata, Consiglio Nazionale delle Richerche" -, address = "Genova, Italy" -, year = 1988 -, update = "98.03 bibrelex" +, author = "L. {De Floriani} and B. Falcidieno and C. Pienovi and G. Nagy" +, title = "On sorting triangles in a {Delaunay} tessellation" +, institution = "Instituto per la Matematica Applicata, Consiglio Nazionale delle Richerche" +, address = "Genova, Italy" +, year = 1988 +, update = "98.03 bibrelex" } @article{dm-hchtt-95 -, author = "L. {De Floriani} and P. Magillo" -, title = "Horizon computation on a hierarchical triangulated terrain model" -, journal = "Visual Comput." -, volume = 11 -, year = 1995 -, pages = "134--149" -, update = "95.05 smid" +, author = "L. {De Floriani} and P. Magillo" +, title = "Horizon computation on a hierarchical triangulated terrain model" +, journal = "Visual Comput." +, volume = 11 +, year = 1995 +, pages = "134--149" +, update = "95.05 smid" } @incollection{dmp-acggi-00 -, author = "Leila {de Floriani} and Paola Magillo and Enrico Puppo" -, title = "Applications of Computational Geometry to Geographic Information Systems" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "333--388" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 7 of su-hcg-00" +, author = "Leila {de Floriani} and Paola Magillo and Enrico Puppo" +, title = "Applications of Computational Geometry to Geographic Information Systems" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "333--388" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 7 of su-hcg-00" } @inproceedings{dmp-htmsf-94 -, author = "L. {De Floriani} and P. Marzano and E. Puppo" -, title = "Hierarchical terrain models: {Survey} and formalization" -, booktitle = "Proc. IEEE Sympos. Applied Comput." -, year = 1994 -, pages = "323--327" -, update = "98.03 bibrelex" +, author = "L. {De Floriani} and P. Marzano and E. Puppo" +, title = "Hierarchical terrain models: {Survey} and formalization" +, booktitle = "Proc. IEEE Sympos. Applied Comput." +, year = 1994 +, pages = "323--327" +, update = "98.03 bibrelex" } @inproceedings{dn-tarod-89 -, author = "L. {De Floriani} and G. Nagy" -, title = "Two algorithms for radial ordering of {Delaunay} triangles" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 40 +, author = "L. {De Floriani} and G. Nagy" +, title = "Two algorithms for radial ordering of {Delaunay} triangles" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 40 } @techreport{dn-vpts-88 -, author = "L. {De Floriani} and G. Nagy" -, title = "Visibility problems on a topographic surface" -, number = 59 -, institution = "CNR, Genova" -, year = 1988 -, update = "95.09 korneenko" +, author = "L. {De Floriani} and G. Nagy" +, title = "Visibility problems on a topographic surface" +, number = 59 +, institution = "CNR, Genova" +, year = 1988 +, update = "95.09 korneenko" } @inproceedings{dnj-vcgsi-89 -, author = "L. {De Floriani} and G. Nagy and P. Jeanne" -, title = "Visibility characteristics of grey-scale images" -, booktitle = "Fifth International Conference on Image Analysis and Processing" -, site = "Positano, Italy" -, month = sep -, year = 1989 -, update = "95.09 korneenko" +, author = "L. {De Floriani} and G. Nagy and P. Jeanne" +, title = "Visibility characteristics of grey-scale images" +, booktitle = "Fifth International Conference on Image Analysis and Processing" +, site = "Positano, Italy" +, month = sep +, year = 1989 +, update = "95.09 korneenko" } @techreport{dnn-vocsc-88 -, author = "L. {De Floriani} and G. Nagy and H. Nair" -, title = "Visibility oriented criteria for surface characterization" -, number = "CGL-88-824" -, institution = "Rensselaer Polytechnic Institute" -, year = 1988 -, update = "95.09 korneenko" +, author = "L. {De Floriani} and G. Nagy and H. Nair" +, title = "Visibility oriented criteria for surface characterization" +, number = "CGL-88-824" +, institution = "Rensselaer Polytechnic Institute" +, year = 1988 +, update = "95.09 korneenko" } @incollection{fp-htbmt-92 -, author = "L. {De Floriani} and E. Puppo" -, title = "A hierarchical triangle-based model for terrain description" -, booktitle = "Theories and Methods of Spatio-Temporal Reasoning in Geographic Space" -, publisher = "??" -, address = "Pisa" -, month = sep -, year = 1992 -, pages = "236--251" -, update = "98.11 bibrelex" +, author = "L. {De Floriani} and E. Puppo" +, title = "A hierarchical triangle-based model for terrain description" +, booktitle = "Theories and Methods of Spatio-Temporal Reasoning in Geographic Space" +, publisher = "??" +, address = "Pisa" +, month = sep +, year = 1992 +, pages = "236--251" +, update = "98.11 bibrelex" } @incollection{dp-scdta-89 -, author = "L. {De Floriani} and E. Puppo" -, title = "A survey of constrained {Delaunay} triangulation algorithms for surface representaion" -, editor = "G. G. Pieroni" -, booktitle = "Issues on Machine Vision" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1989 -, pages = "95--104" -, update = "94.09 bernal" +, author = "L. {De Floriani} and E. Puppo" +, title = "A survey of constrained {Delaunay} triangulation algorithms for surface representaion" +, editor = "G. G. Pieroni" +, booktitle = "Issues on Machine Vision" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1989 +, pages = "95--104" +, update = "94.09 bernal" } @unpublished{dp-olacd-91 -, author = "L. {De Floriani} and E. Puppo" -, title = "An on-line algorithm for constrained {Delaunay} triangulation" -, month = may -, year = 1991 -, note = "Unpublished manuscipts" -, precedes = "dp-olacd-92" -, update = "98.07 bibrelex" +, author = "L. {De Floriani} and E. Puppo" +, title = "An on-line algorithm for constrained {Delaunay} triangulation" +, month = may +, year = 1991 +, note = "Unpublished manuscipts" +, precedes = "dp-olacd-92" +, update = "98.07 bibrelex" } @article{dp-olacd-92 -, author = "L. {De Floriani} and E. Puppo" -, title = "An on-line algorithm for constrained {Delaunay} triangulation" -, journal = "Comput. Vision Graph. Image Process." -, volume = 54 -, number = 3 -, year = 1992 -, pages = "290--300" -, succeeds = "dp-olacd-91" -, update = "98.11 bibrelex, 98.07 bibrelex, 95.09 mitchell" -, annote = "In this paper you will find the definition of a Constrained - Delaunay Triangulation, some theorems and the pseudocode of - the algorithms to program it. On-Line means that you can - insert points and required edges in any order. With this - algorithm you can update an old CDT without retriangulating - the old data." +, author = "L. {De Floriani} and E. Puppo" +, title = "An on-line algorithm for constrained {Delaunay} triangulation" +, journal = "Comput. Vision Graph. Image Process." +, volume = 54 +, number = 3 +, year = 1992 +, pages = "290--300" +, succeeds = "dp-olacd-91" +, update = "98.11 bibrelex, 98.07 bibrelex, 95.09 mitchell" +, annote = "In this paper you will find the definition of a Constrained + Delaunay Triangulation, some theorems and the pseudocode of + the algorithms to program it. On-Line means that you can + insert points and required edges in any order. With this + algorithm you can update an old CDT without retriangulating + the old data." } @inproceedings{dp-cdtms-88 -, author = "Leila {De Floriani} and Enrico Puppo" -, title = "Constrained {Delaunay} Triangulation for Multiresolution Surface Description" -, booktitle = "Proc. Ninth IEEE International Conference on Pattern Recognition" -, publisher = "CS Press" -, address = "Los Alamitos, California" -, year = 1988 -, pages = "566--569" -, annote = "Incremental algorithm for the CDT. Point insertion is - done by joining to vertices of the containing triangle, - and then using switches. Segment insertion is done by - deleting intersected triangles, triangulating the two - resulting polygons (non-Delaunay) and switching on the - resulting mess." +, author = "Leila {De Floriani} and Enrico Puppo" +, title = "Constrained {Delaunay} Triangulation for Multiresolution Surface Description" +, booktitle = "Proc. Ninth IEEE International Conference on Pattern Recognition" +, publisher = "CS Press" +, address = "Los Alamitos, California" +, year = 1988 +, pages = "566--569" +, annote = "Incremental algorithm for the CDT. Point insertion is + done by joining to vertices of the containing triangle, + and then using switches. Segment insertion is done by + deleting intersected triangles, triangulating the two + resulting polygons (non-Delaunay) and switching on the + resulting mess." } @inproceedings{dw-vmdrc-00 -, author = "Jes{\'u}s A. {De Loera} and Frederick J. Wicklin" -, title = "Viro's Method Disproves {Ragsdale}'s Conjecture: a Story" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "371--372" -, keywords = "video review" -, update = "00.11 jones" +, author = "Jes{\'u}s A. {De Loera} and Frederick J. Wicklin" +, title = "Viro's Method Disproves {Ragsdale}'s Conjecture: a Story" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "371--372" +, keywords = "video review" +, update = "00.11 jones" } @article{dd-esrpi-00 -, author = "C. N. {De Meneses} and C. C. {De Souza}" -, title = "Exact solutions of rectangular partitions via integer programming" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "477--522" -, update = "01.04 smid" +, author = "C. N. {De Meneses} and C. C. {De Souza}" +, title = "Exact solutions of rectangular partitions via integer programming" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "477--522" +, update = "01.04 smid" } @article{dr-twcbp-90 -, author = "C. C. {De Souza} and C. C. Ribeiro" -, title = "A tight worst case bound for the performance ratio of heuristics for the minimum rectilinear {Steiner} tree problem" -, journal = "OR Spektrum" -, volume = 12 -, year = 1990 -, pages = "109--111" -, keywords = "Steiner tree, $L_{1}$ metric, heuristics" -, update = "95.09 korneenko" +, author = "C. C. {De Souza} and C. C. Ribeiro" +, title = "A tight worst case bound for the performance ratio of heuristics for the minimum rectilinear {Steiner} tree problem" +, journal = "OR Spektrum" +, volume = 12 +, year = 1990 +, pages = "109--111" +, keywords = "Steiner tree, $L_{1}$ metric, heuristics" +, update = "95.09 korneenko" } @article{dr-hmrst-93 -, author = "C. C. {De Souza} and C. C. Ribeiro" -, title = "Heuristics for the minimum rectilinear {Steiner} tree problem: new algorithms and a computational study" -, journal = "Discrete Appl. Math." -, volume = 45 -, number = 3 -, year = 1993 -, pages = "205--220" -, keywords = "Steiner tree, $L_{1}$ metric, heuristics" -, update = "95.09 korneenko" +, author = "C. C. {De Souza} and C. C. Ribeiro" +, title = "Heuristics for the minimum rectilinear {Steiner} tree problem: new algorithms and a computational study" +, journal = "Discrete Appl. Math." +, volume = 45 +, number = 3 +, year = 1993 +, pages = "205--220" +, keywords = "Steiner tree, $L_{1}$ metric, heuristics" +, update = "95.09 korneenko" } @inproceedings{dh-rvrbg-95 -, author = "A. M. Dean and J. P. Hutchinson" -, title = "Rectangle-Visibility Representations of Bipartite Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "159--166" -, keywords = "graph drawing, visibility" -, update = "95.01 tamassia" +, author = "A. M. Dean and J. P. Hutchinson" +, title = "Rectangle-Visibility Representations of Bipartite Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "159--166" +, keywords = "graph drawing, visibility" +, update = "95.01 tamassia" } @inproceedings{dls-rphe-86 -, author = "J. A. Dean and A. Lingas and J.-R. Sack" -, title = "Recognizing polygons: or how to eavesdrop" -, booktitle = "Proc. 24th Allerton Conf. Commun. Control Comput." -, year = 1986 -, pages = "324--333" -, precedes = "dls-rphs-88" +, author = "J. A. Dean and A. Lingas and J.-R. Sack" +, title = "Recognizing polygons: or how to eavesdrop" +, booktitle = "Proc. 24th Allerton Conf. Commun. Control Comput." +, year = 1986 +, pages = "324--333" +, precedes = "dls-rphs-88" } @article{dls-rphs-88 -, author = "J. A. Dean and A. Lingas and J.-R. Sack" -, title = "Recognizing polygons, or how to spy" -, journal = "Visual Comput." -, volume = 3 -, year = 1988 -, pages = "344--355" -, keywords = "computer graphics, visibility, hidden line/surface elimination, polygons, two-dimensional" -, succeeds = "dls-rphe-86" +, author = "J. A. Dean and A. Lingas and J.-R. Sack" +, title = "Recognizing polygons, or how to spy" +, journal = "Visual Comput." +, volume = 3 +, year = 1988 +, pages = "344--355" +, keywords = "computer graphics, visibility, hidden line/surface elimination, polygons, two-dimensional" +, succeeds = "dls-rphe-86" } @inproceedings{ds-ehlec-85 -, author = "J. A. Dean and J.-R. Sack" -, title = "Efficient hidden-line elimination by capturing winding information" -, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." -, year = 1985 -, pages = "496--505" -, keywords = "computer graphics, visibility, convex hull, hidden line/surface elimination, polygons, two-dimensional" +, author = "J. A. Dean and J.-R. Sack" +, title = "Efficient hidden-line elimination by capturing winding information" +, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." +, year = 1985 +, pages = "496--505" +, keywords = "computer graphics, visibility, convex hull, hidden line/surface elimination, polygons, two-dimensional" } @techreport{d-mes-90 -, author = "N. Dean" -, title = "The Matching Extendability of Surfaces" -, type = "Technical {Report}" -, number = "90-14" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "N. Dean" +, title = "The Matching Extendability of Surfaces" +, type = "Technical {Report}" +, number = "90-14" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, update = "93.09 milone+mitchell" } @techreport{dmm-nigsn-?? -, author = "N. Dean and M. Mevenkamp and C. Monma" -, title = "Netpad: {An} interactive graphics system for network modeling and optimization" -, institution = "Bellcore" -, year = "??" -, keywords = "user interface, graph algorithms, windows, graphics, networks, crossing number" -, update = "93.09 milone+mitchell" +, author = "N. Dean and M. Mevenkamp and C. Monma" +, title = "Netpad: {An} interactive graphics system for network modeling and optimization" +, institution = "Bellcore" +, year = "??" +, keywords = "user interface, graph algorithms, windows, graphics, networks, crossing number" +, update = "93.09 milone+mitchell" } @article{d-htrt-81 -, author = "S. R. Deans" -, title = "Hough Transform from the {Radon} transform" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-3" -, number = 2 -, month = mar -, year = 1981 -, pages = "185--188" -, update = "97.11 bibrelex" +, author = "S. R. Deans" +, title = "Hough Transform from the {Radon} transform" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-3" +, number = 2 +, month = mar +, year = 1981 +, pages = "185--188" +, update = "97.11 bibrelex" } @article{d-lp-85 -, author = "P. M. Dearing" -, title = "Location problems" -, journal = "Oper. Res. Lett." -, volume = 4 -, number = 3 -, year = 1985 -, pages = "95--98" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "P. M. Dearing" +, title = "Location problems" +, journal = "Oper. Res. Lett." +, volume = 4 +, number = 3 +, year = 1985 +, pages = "95--98" +, keywords = "facility location" +, update = "95.09 korneenko" } @book{del-avceb-83 -, author = "Donald P. DeBoer and Frederick T. Evers and Douglas Garfield Link" -, title = "Analysis of Variance: Comparative Examples, {BALANOVA}, {BMDP} and {SPSS}" -, publisher = "Social Science Computing Laboratory, University of Western Ontario" -, address = "London, Ontario, Canada" -, year = 1983 -, isbn = "0-7714-0427-1" -, update = "95.05 agarwal" +, author = "Donald P. DeBoer and Frederick T. Evers and Douglas Garfield Link" +, title = "Analysis of Variance: Comparative Examples, {BALANOVA}, {BMDP} and {SPSS}" +, publisher = "Social Science Computing Laboratory, University of Western Ontario" +, address = "London, Ontario, Canada" +, year = 1983 +, isbn = "0-7714-0427-1" +, update = "95.05 agarwal" } @article{d-httdb-70 -, author = "H. Debrunner" -, title = "Helly type theorems derived from basic singular homology" -, journal = "Amer. Math. Monthly" -, volume = 77 -, year = 1970 -, pages = "375--380" -, update = "95.01 matousek" +, author = "H. Debrunner" +, title = "Helly type theorems derived from basic singular homology" +, journal = "Amer. Math. Monthly" +, volume = 77 +, year = 1970 +, pages = "375--380" +, update = "95.01 matousek" } @article{dm-cycys-86 -, author = "H. E. Debrunner and P. Mani-Levitska" -, title = "Can you cover your shadows?" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "45--58" +, author = "H. E. Debrunner and P. Mani-Levitska" +, title = "Can you cover your shadows?" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "45--58" } @article{d-gc-95 -, author = "Michael Deering" -, title = "Geometry compression" -, journal = "Comput. Graph." -, volume = "??" -, year = 1995 -, pages = "13--20" -, note = "Proc. SIGGRAPH '95" -, keywords = "triangulation, surface approximation, computer graphics, hardware, graphics pipeline" -, update = "95.09 mitchell" +, author = "Michael Deering" +, title = "Geometry compression" +, journal = "Comput. Graph." +, volume = "??" +, year = 1995 +, pages = "13--20" +, note = "Proc. SIGGRAPH '95" +, keywords = "triangulation, surface approximation, computer graphics, hardware, graphics pipeline" +, update = "95.09 mitchell" } @article{d-eaclm-77 -, author = "D. Defays" -, title = "An efficient algorithm for a complete link method" -, journal = "Comput. J." -, volume = 20 -, year = 1977 -, pages = "364--366" -, update = "00.03 bibrelex" +, author = "D. Defays" +, title = "An efficient algorithm for a complete link method" +, journal = "Comput. J." +, volume = 20 +, year = 1977 +, pages = "364--366" +, update = "00.03 bibrelex" } @article{df-cabcc-74 -, author = "V. U. Degtyar and M. Ya. Finkel'shteyn" -, title = "Classification algorithms based on construction of convex hulls of sets" -, journal = "Eng. Cybern." -, volume = 12 -, year = 1974 -, pages = "150--154" -, update = "96.01 korneenko" +, author = "V. U. Degtyar and M. Ya. Finkel'shteyn" +, title = "Classification algorithms based on construction of convex hulls of sets" +, journal = "Eng. Cybern." +, volume = 12 +, year = 1974 +, pages = "150--154" +, update = "96.01 korneenko" } @article{dz-sorpa-91 -, author = "M. J. {DeHaemer, Jr.} and M. J. Zyda" -, title = "Simplification of objects rendered by Polygonal Approximations" -, journal = "Computers \& Graphics" -, volume = 15 -, number = 2 -, year = 1991 -, pages = "175--184" -, keywords = "surface approximation, simplification" -, update = "97.11 bibrelex, 95.01 mitchell" +, author = "M. J. {DeHaemer, Jr.} and M. J. Zyda" +, title = "Simplification of objects rendered by Polygonal Approximations" +, journal = "Computers \& Graphics" +, volume = 15 +, number = 2 +, year = 1991 +, pages = "175--184" +, keywords = "surface approximation, simplification" +, update = "97.11 bibrelex, 95.01 mitchell" } @article{d-tdkaz-12 -, author = "M. Dehn" -, title = "Transformation der {Kurven} auf zweiseitigen {Fl{\"a}chen}" -, journal = "Math. Ann." -, volume = 72 -, year = 1912 -, pages = "413--421" -, update = "97.11 bibrelex" +, author = "M. Dehn" +, title = "Transformation der {Kurven} auf zweiseitigen {Fl{\"a}chen}" +, journal = "Math. Ann." +, volume = 72 +, year = 1912 +, pages = "413--421" +, update = "97.11 bibrelex" } @article{d-uudg-12 -, author = "M. Dehn" -, title = "{\"U}ber unendliche diskontinuierliche {Gruppen}" -, journal = "Math. Ann." -, volume = 71 -, number = "104--116" -, year = 1912 -, update = "97.11 bibrelex" +, author = "M. Dehn" +, title = "{\"U}ber unendliche diskontinuierliche {Gruppen}" +, journal = "Math. Ann." +, volume = 71 +, number = "104--116" +, year = 1912 +, update = "97.11 bibrelex" } @inproceedings{d-odsal-85 -, author = "F. Dehne" -, title = "A one dimensional systolic array for the largest empty rectangle problem" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1985 -, pages = "518--524" -, update = "94.01 dehne" +, author = "F. Dehne" +, title = "A one dimensional systolic array for the largest empty rectangle problem" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1985 +, pages = "518--524" +, update = "94.01 dehne" } @inproceedings{d-oacav-83 -, author = "F. Dehne" -, title = "An ${O}(n^4)$ algorithm to construct all {Voronoi} diagrams for $k$ nearest neighbor searching in the {Euclidean} plane" -, booktitle = "Proc. Internat. Colloq. Automata Lang. Program." -, year = 1983 -, pages = "" -, update = "94.01 dehne" +, author = "F. Dehne" +, title = "An ${O}(n^4)$ algorithm to construct all {Voronoi} diagrams for $k$ nearest neighbor searching in the {Euclidean} plane" +, booktitle = "Proc. Internat. Colloq. Automata Lang. Program." +, year = 1983 +, pages = "" +, update = "94.01 dehne" } @inproceedings{d-oacav-82 -, author = "F. Dehne" -, title = "An optimal algorithm to construct all {Voronoi} diagrams for $k$ nearest neighbor searching in the {Euclidean} plane" -, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." -, year = 1982 -, pages = "85--93" +, author = "F. Dehne" +, title = "An optimal algorithm to construct all {Voronoi} diagrams for $k$ nearest neighbor searching in the {Euclidean} plane" +, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." +, year = 1982 +, pages = "85--93" } @inproceedings{d-cgv-87 -, author = "F. Dehne" -, title = "Computational geometry and VLSI" -, booktitle = "Proc. CompEuro Conference" -, year = 1987 -, pages = "870--875" -, update = "94.01 dehne" +, author = "F. Dehne" +, title = "Computational geometry and VLSI" +, booktitle = "Proc. CompEuro Conference" +, year = 1987 +, pages = "870--875" +, update = "94.01 dehne" } @inproceedings{d-cdvds-89 -, author = "F. Dehne" -, title = "Computing digitized {Voronoi} diagrams on a systolic screen and applications to clustering" -, booktitle = "Proc. International Symposium on Optimal Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 401 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "14--24" -, update = "96.05 smid, 94.01 dehne" +, author = "F. Dehne" +, title = "Computing digitized {Voronoi} diagrams on a systolic screen and applications to clustering" +, booktitle = "Proc. International Symposium on Optimal Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 401 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "14--24" +, update = "96.05 smid, 94.01 dehne" } @article{d-clero-90 -, author = "F. Dehne" -, title = "Computing the largest empty rectangle on one- and two-dimensional processor arrays" -, journal = "J. Parallel Distrib. Comput." -, volume = 9 -, number = 1 -, year = 1990 -, pages = "63--68" -, update = "94.01 dehne" +, author = "F. Dehne" +, title = "Computing the largest empty rectangle on one- and two-dimensional processor arrays" +, journal = "J. Parallel Distrib. Comput." +, volume = 9 +, number = 1 +, year = 1990 +, pages = "63--68" +, update = "94.01 dehne" } @article{d-oamee-86 -, author = "F. Dehne" -, title = "$O(n^{1/2})$ algorithms for the maximal elements and ECDF searching problem on a mesh-connected parallel computer" -, journal = "Inform. Process. Lett." -, volume = 22 -, number = 6 -, year = 1986 -, pages = "303--306" -, update = "94.01 dehne" +, author = "F. Dehne" +, title = "$O(n^{1/2})$ algorithms for the maximal elements and ECDF searching problem on a mesh-connected parallel computer" +, journal = "Inform. Process. Lett." +, volume = 22 +, number = 6 +, year = 1986 +, pages = "303--306" +, update = "94.01 dehne" } @article{d-oc-86 -, author = "Frank Dehne" -, title = "Optical clustering" -, journal = "Visual Comput." -, volume = 2 -, number = 1 -, month = jan -, year = 1986 -, pages = "39--43" -, keywords = "picture analysis" +, author = "Frank Dehne" +, title = "Optical clustering" +, journal = "Visual Comput." +, volume = 2 +, number = 1 +, month = jan +, year = 1986 +, pages = "39--43" +, keywords = "picture analysis" } @techreport{d-pcgcm-86 -, author = "F. Dehne" -, title = "Parallel computational geometry and clustering methods" -, type = "Report" -, number = "SCS-TR-104" -, institution = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1986 +, author = "F. Dehne" +, title = "Parallel computational geometry and clustering methods" +, type = "Report" +, number = "SCS-TR-104" +, institution = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1986 } @inproceedings{d-sgpmc-85 -, author = "F. Dehne" -, title = "Solving geometric problems on mesh-connected and one-dimensional processor arrays" -, booktitle = "Proc. 11th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '85" -, year = 1985 -, pages = "43--59" -, update = "98.07 bibrelex, 94.01 dehne" +, author = "F. Dehne" +, title = "Solving geometric problems on mesh-connected and one-dimensional processor arrays" +, booktitle = "Proc. 11th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '85" +, year = 1985 +, pages = "43--59" +, update = "98.07 bibrelex, 94.01 dehne" } @article{d-svspm-88 -, author = "F. Dehne" -, title = "Solving visibility and separability problems on a mesh of processors" -, journal = "Visual Comput." -, volume = 3 -, year = 1988 -, pages = "356--370" -, keywords = "parallel computation, polygons, two-dimensional" +, author = "F. Dehne" +, title = "Solving visibility and separability problems on a mesh of processors" +, journal = "Visual Comput." +, volume = 3 +, year = 1988 +, pages = "356--370" +, keywords = "parallel computation, polygons, two-dimensional" } @techreport{d-vdzbk-82 -, author = "F. Dehne" -, title = "Voronoi-{Diagramme} zur {Bestimmung} $k$ n{\"a}chster {Nachbarn}" -, type = "Report" -, number = "??" -, institution = "Lehrstuhl Inform. III, Rheinisch-Westf{\"a}lischen Tech. Hochschule Aachen" -, address = "Aachen, West Germany" -, year = 1982 +, author = "F. Dehne" +, title = "Voronoi-{Diagramme} zur {Bestimmung} $k$ n{\"a}chster {Nachbarn}" +, type = "Report" +, number = "??" +, institution = "Lehrstuhl Inform. III, Rheinisch-Westf{\"a}lischen Tech. Hochschule Aachen" +, address = "Aachen, West Germany" +, year = 1982 } @inproceedings{dddfk-rp3dc-95 -, author = "F. Dehne and X. Deng and P. Dymond and A. Fabri and A. A. Khokhar" -, title = "A Randomized Parallel {3D} Convex Hull Algorithm for Coarse Grained Multicomputers" -, booktitle = "Proc. 7th ACM Sympos. Parallel Algorithms Architect." -, year = 1995 -, pages = "27--33" -, update = "98.11 kuehn, 96.09 orourke" +, author = "F. Dehne and X. Deng and P. Dymond and A. Fabri and A. A. Khokhar" +, title = "A Randomized Parallel {3D} Convex Hull Algorithm for Coarse Grained Multicomputers" +, booktitle = "Proc. 7th ACM Sympos. Parallel Algorithms Architect." +, year = 1995 +, pages = "27--33" +, update = "98.11 kuehn, 96.09 orourke" } @inproceedings{dds-opapc-93 -, author = "F. Dehne and H. Djidjev and J.-R. Sack" -, title = "An Optimal {PRAM} Algorithm for Planar Convex Embedding" -, booktitle = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" -, year = 1993 -, pages = "75--77" -, keywords = "graph drawing, convex, straight-line" -, update = "95.09 tamassia" +, author = "F. Dehne and H. Djidjev and J.-R. Sack" +, title = "An Optimal {PRAM} Algorithm for Planar Convex Embedding" +, booktitle = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" +, year = 1993 +, pages = "75--77" +, keywords = "graph drawing, convex, straight-line" +, update = "95.09 tamassia" } @inproceedings{dfnrv-hcsh-92 -, author = "F. Dehne and A. Fabri and M. Nassar and A. Rau-Chaplin and R. Valiveti" -, title = "Hyperoctree Construction from Slices on a Hypercube" -, booktitle = "Proc. 13th Allerton Conf. Commun. Control Comput." -, year = 1992 -, pages = "??" -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1752" -, update = "95.09 devillers, 95.01 devillers" +, author = "F. Dehne and A. Fabri and M. Nassar and A. Rau-Chaplin and R. Valiveti" +, title = "Hyperoctree Construction from Slices on a Hypercube" +, booktitle = "Proc. 13th Allerton Conf. Commun. Control Comput." +, year = 1992 +, pages = "??" +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1752" +, update = "95.09 devillers, 95.01 devillers" } @article{dfnr-cddhh-94 -, author = "F. Dehne and A. Fabri and M. Nasser and A. Rau-Chaplin" -, title = "Construction of $d$-dimensional hyperoctrees on a hypercube multiprocessor" -, journal = "J. Parallel Distrib. Comput." -, volume = "??" -, year = "1993/94" -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1752" -, comments = "to appear" -, update = "95.09 devillers, 95.01 devillers, 94.01 dehne" +, author = "F. Dehne and A. Fabri and M. Nasser and A. Rau-Chaplin" +, title = "Construction of $d$-dimensional hyperoctrees on a hypercube multiprocessor" +, journal = "J. Parallel Distrib. Comput." +, volume = "??" +, year = "1993/94" +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1752" +, comments = "to appear" +, update = "95.09 devillers, 95.01 devillers, 94.01 dehne" } @techreport{dfr-dsdcg- -, author = "F. Dehne and A. Fabri and A. Rau-Chaplin" -, title = "Data structure decomposition for coarse grained multicomputers" -, type = "Manuscript" -, institution = "??" -, year = "??" -, update = "98.03 bibrelex" +, author = "F. Dehne and A. Fabri and A. Rau-Chaplin" +, title = "Data structure decomposition for coarse grained multicomputers" +, type = "Manuscript" +, institution = "??" +, year = "??" +, update = "98.03 bibrelex" } @article{dfr-spcgc-96 -, author = "F. Dehne and A. Fabri and A. Rau-Chaplin" -, title = "Scalable parallel computational geometry for coarse grained multicomputers" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "379--400" -, succeeds = "dfr-spgac-93" -, update = "97.11 bibrelex, 97.03 devillers" +, author = "F. Dehne and A. Fabri and A. Rau-Chaplin" +, title = "Scalable parallel computational geometry for coarse grained multicomputers" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "379--400" +, succeeds = "dfr-spgac-93" +, update = "97.11 bibrelex, 97.03 devillers" } @inproceedings{dfr-spgac-93 -, author = "F. Dehne and A. Fabri and A. Rau-Chaplin" -, title = "Scalable parallel geometric algorithms for coarse grained multicomputers" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "298--307" -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1819" -, precedes = "dfr-spcgc-96" -, cites = "at-pdgp-89, b-snta-68, b-skrp-77, bt-pdcnm-89, cp-dsnlt-90, -gchpc-92, gl-rrft-89, ds-tssp-87, dfr-dsdcg-, hs-ndssg-86, h-fuenl-89, l-ipaaa-92, ol-mcp-81, ps-cgi-85, rv-ltsls-87, lw-mprrd-81, ZZZ" -, update = "98.03 bibrelex, 97.03 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" +, author = "F. Dehne and A. Fabri and A. Rau-Chaplin" +, title = "Scalable parallel geometric algorithms for coarse grained multicomputers" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "298--307" +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1819" +, precedes = "dfr-spcgc-96" +, cites = "at-pdgp-89, b-snta-68, b-skrp-77, bt-pdcnm-89, cp-dsnlt-90, -gchpc-92, gl-rrft-89, ds-tssp-87, dfr-dsdcg-, hs-ndssg-86, h-fuenl-89, l-ipaaa-92, ol-mcp-81, ps-cgi-85, rv-ltsls-87, lw-mprrd-81, ZZZ" +, update = "98.03 bibrelex, 97.03 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers" } @article{dfr-pbbfg-90 -, author = "F. Dehne and A. Ferreira and A. Rau-Chaplin" -, title = "Parallel branch and bound on fine grained hypercube multiprocessors" -, journal = "Parallel Comput." -, volume = 15 -, number = "" -, year = 1990 -, pages = "201--209" -, update = "94.01 dehne" +, author = "F. Dehne and A. Ferreira and A. Rau-Chaplin" +, title = "Parallel branch and bound on fine grained hypercube multiprocessors" +, journal = "Parallel Comput." +, volume = 15 +, number = "" +, year = 1990 +, pages = "201--209" +, update = "94.01 dehne" } @inproceedings{dfr-pfchm-89 -, author = "F. Dehne and A. Ferreira and A. Rau-Chaplin" -, title = "Parallel fractional cascading on a hypercube multiprocessor" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1989 -, pages = "1084--1093" -, update = "94.01 dehne" +, author = "F. Dehne and A. Ferreira and A. Rau-Chaplin" +, title = "Parallel fractional cascading on a hypercube multiprocessor" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1989 +, pages = "1084--1093" +, update = "94.01 dehne" } @article{dfr-pfchm-92 -, author = "F. Dehne and A. Ferreira and A. Rau-Chaplin" -, title = "Parallel fractional cascading on hypercube multiprocessors" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "141--167" +, author = "F. Dehne and A. Ferreira and A. Rau-Chaplin" +, title = "Parallel fractional cascading on hypercube multiprocessors" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "141--167" } @inproceedings{dfr-pppbq-91 -, author = "F. Dehne and A. Ferreira and A. Rau-Chaplin" -, title = "Parallel processing of pointer based quadtrees" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1991 -, pages = "255--262" -, update = "94.01 dehne" +, author = "F. Dehne and A. Ferreira and A. Rau-Chaplin" +, title = "Parallel processing of pointer based quadtrees" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1991 +, pages = "255--262" +, update = "94.01 dehne" } @inproceedings{df-ecgmd-89 -, author = "F. Dehne and L. Ficocelli" -, title = "An efficient computational geometry method for detecting dotted lines in noisy images" -, booktitle = "Proc. Vision Interface '89" -, year = 1989 -, pages = "88--93" -, update = "94.01 dehne" +, author = "F. Dehne and L. Ficocelli" +, title = "An efficient computational geometry method for detecting dotted lines in noisy images" +, booktitle = "Proc. Vision Interface '89" +, year = 1989 +, pages = "88--93" +, update = "94.01 dehne" } @article{df-ddlni-90 -, author = "F. Dehne and L. Ficocelli" -, title = "Detecting dotted lines in noisy images" -, journal = "Comput. J." -, volume = 33 -, number = 5 -, year = 1990 -, pages = "424--428" -, update = "94.01 dehne" +, author = "F. Dehne and L. Ficocelli" +, title = "Detecting dotted lines in noisy images" +, journal = "Comput. J." +, volume = 33 +, number = 5 +, year = 1990 +, pages = "424--428" +, update = "94.01 dehne" } @article{dfsv-apacg-94 -, author = "F. Dehne and B. Flach and J.-R. Sack and N. Valiveti" -, title = "Analog Parallel Algorithms for Computational Geometry" -, journal = "Journal of Parallel Algorithms and Applications" -, volume = 5 -, year = 1994 -, pages = "1--14" -, update = "97.11 sack" +, author = "F. Dehne and B. Flach and J.-R. Sack and N. Valiveti" +, title = "Analog Parallel Algorithms for Computational Geometry" +, journal = "Journal of Parallel Algorithms and Applications" +, volume = 5 +, year = 1994 +, pages = "1--14" +, update = "97.11 sack" } @inproceedings{dfsv-apcg-92 -, author = "F. Dehne and B. Flach and J.-R. Sack and N. Valiveti" -, title = "Analog parallel computational geometry" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "143--153" -, cites = "c-sm-61, cg-asgpf-83, gj-cigtn-79, h-ngrhc-84, ht-ncdop-85, ht-cncm-86, k-mtpd-80, lls-hobst-89, l-pnrh-82, lprs-melpr-82, l-tspp-77, m-avns-89, ps-cgi-85, s-ansiu-87, stw-annic-86, s-ansfp-90, sem-vainn-86, th-snona-86, ZZZ" -, update = "98.07 bibrelex" +, author = "F. Dehne and B. Flach and J.-R. Sack and N. Valiveti" +, title = "Analog parallel computational geometry" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "143--153" +, cites = "c-sm-61, cg-asgpf-83, gj-cigtn-79, h-ngrhc-84, ht-ncdop-85, ht-cncm-86, k-mtpd-80, lls-hobst-89, l-pnrh-82, lprs-melpr-82, l-tspp-77, m-avns-89, ps-cgi-85, s-ansiu-87, stw-annic-86, s-ansfp-90, sem-vainn-86, th-snona-86, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{dh-padkw-90 -, author = "F. Dehne and S. E. Hambrusch" -, title = "Parallel algorithms for determining $k$-width-connectivity in binary images" -, booktitle = "Proc. 2nd IEEE Symposium on Parallel and Distributed Processing" -, year = 1990 -, pages = "488--496" -, update = "94.01 dehne" +, author = "F. Dehne and S. E. Hambrusch" +, title = "Parallel algorithms for determining $k$-width-connectivity in binary images" +, booktitle = "Proc. 2nd IEEE Symposium on Parallel and Distributed Processing" +, year = 1990 +, pages = "488--496" +, update = "94.01 dehne" } @article{dh-padkw-91 -, author = "F. Dehne and S. E. Hambrusch" -, title = "Parallel algorithms for determining $k$-width-connectivity in binary images" -, journal = "J. Parallel Distrib. Comput." -, volume = 12 -, number = 1 -, year = 1991 -, pages = "12--23" -, update = "94.01 dehne" +, author = "F. Dehne and S. E. Hambrusch" +, title = "Parallel algorithms for determining $k$-width-connectivity in binary images" +, journal = "J. Parallel Distrib. Comput." +, volume = 12 +, number = 1 +, year = 1991 +, pages = "12--23" +, update = "94.01 dehne" } @inproceedings{dhs-ccsrm-89i -, author = "F. Dehne and A. Hassenklover and J.-R. Sack" -, title = "Computing the configuration space for a robot on a mesh-of-processors" -, booktitle = "Proc. 1989 Internat. Conf. Parallel Process." -, site = "Chicago" -, volume = 3 -, year = 1989 -, pages = "40--48" -, update = "97.11 sack" +, author = "F. Dehne and A. Hassenklover and J.-R. Sack" +, title = "Computing the configuration space for a robot on a mesh-of-processors" +, booktitle = "Proc. 1989 Internat. Conf. Parallel Process." +, site = "Chicago" +, volume = 3 +, year = 1989 +, pages = "40--48" +, update = "97.11 sack" } @article{dhs-ccsrm-89a -, author = "F. Dehne and A. Hassenklover and J.-R. Sack" -, title = "Computing the configuration space for a robot on a mesh-of-processors" -, journal = "Parallel Comput." -, volume = 12 -, number = 2 -, year = 1989 -, pages = "221--231" -, keywords = "motion planning, configuration space, parallel computations" -, update = "95.09 korneenko" +, author = "F. Dehne and A. Hassenklover and J.-R. Sack" +, title = "Computing the configuration space for a robot on a mesh-of-processors" +, journal = "Parallel Comput." +, volume = 12 +, number = 2 +, year = 1989 +, pages = "221--231" +, keywords = "motion planning, configuration space, parallel computations" +, update = "95.09 korneenko" } @inproceedings{dhss-pvmcp-87 -, author = "F. Dehne and A. Hassenklover and J.-R. Sack and N. Santoro" -, title = "Parallel visibility on a mesh-connected parallel computer" -, booktitle = "Proc. International Conference on Parallel Processing and Applications" -, year = 1987 -, pages = "203--210" -, update = "94.01 dehne" +, author = "F. Dehne and A. Hassenklover and J.-R. Sack and N. Santoro" +, title = "Parallel visibility on a mesh-connected parallel computer" +, booktitle = "Proc. International Conference on Parallel Processing and Applications" +, year = 1987 +, pages = "203--210" +, update = "94.01 dehne" } @article{dhss-cgass-91 -, author = "F. Dehne and A.-L. Hassenklover and J.-R. Sack and N. Santoro" -, title = "Computational geometry algorithms for the systolic screen" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "734--761" +, author = "F. Dehne and A.-L. Hassenklover and J.-R. Sack and N. Santoro" +, title = "Computational geometry algorithms for the systolic screen" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "734--761" } @inproceedings{dkf-saipg-94 -, author = "F. Dehne and C. Kenyon and A. Fabri" -, title = "Scalable and architecture independent parallel geometric algorithms with high probability optimal time" -, booktitle = "Proc. 6th IEEE Symp. on Parallel and Distributed Processing" -, nickname = "SPDP" -, year = 1994 -, pages = "586--593" -, update = "96.09 orourke" +, author = "F. Dehne and C. Kenyon and A. Fabri" +, title = "Scalable and architecture independent parallel geometric algorithms with high probability optimal time" +, booktitle = "Proc. 6th IEEE Symp. on Parallel and Distributed Processing" +, nickname = "SPDP" +, year = 1994 +, pages = "586--593" +, update = "96.09 orourke" } @inproceedings{dk-savd-87 -, author = "Frank Dehne and Rolf Klein" -, title = "A Sweepcircle Algorithm for {Voronoi} diagrams" -, booktitle = "Proc. 13th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '87" -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "59--70" -, update = "99.07 bibrelex, 98.07 bibrelex, 94.01 dehne" +, author = "Frank Dehne and Rolf Klein" +, title = "A Sweepcircle Algorithm for {Voronoi} diagrams" +, booktitle = "Proc. 13th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '87" +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "59--70" +, update = "99.07 bibrelex, 98.07 bibrelex, 94.01 dehne" } @techreport{dk-oacvd-87 -, author = "Frank Dehne and Rolf Klein" -, title = "An Optimal Algorithm for Computing the {Voronoi} Diagram on a Cone" -, type = "Report" -, number = "SCS-TR-122" -, institution = "School of Comput. Sci., Carleton Univ." -, year = 1987 -, update = "99.07 bibrelex, 94.09 bernal" +, author = "Frank Dehne and Rolf Klein" +, title = "An Optimal Algorithm for Computing the {Voronoi} Diagram on a Cone" +, type = "Report" +, number = "SCS-TR-122" +, institution = "School of Comput. Sci., Carleton Univ." +, year = 1987 +, update = "99.07 bibrelex, 94.09 bernal" } @techreport{dk-bsbav-92 -, author = "Frank Dehne and Rolf Klein" -, title = "``{The} {Big} {Sweep}'': On the Power of the Wavefront Approach to {Voronoi} Diagrams" -, number = 136 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1992 -, succeeds = "dk-bsbav-91" -, precedes = "dk-bspwa-94" -, update = "00.11 smid, 00.07 icking" +, author = "Frank Dehne and Rolf Klein" +, title = "``{The} {Big} {Sweep}'': On the Power of the Wavefront Approach to {Voronoi} Diagrams" +, number = 136 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1992 +, succeeds = "dk-bsbav-91" +, precedes = "dk-bspwa-94" +, update = "00.11 smid, 00.07 icking" } @inproceedings{dk-bspwa-94 -, author = "Frank Dehne and Rolf Klein" -, title = "``{The} {Big} {Sweep}'': On the Power of the Wavefront Approach to {Voronoi} Diagrams" -, booktitle = "Proc. Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 841 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "296--305" -, succeeds = "dk-bsbav-92" -, precedes = "dk-bspwa-97" -, update = "00.11 smid, 00.07 icking, 99.07 bibrelex, 98.11 bibrelex, 98.07 icking, 97.03 icking" +, author = "Frank Dehne and Rolf Klein" +, title = "``{The} {Big} {Sweep}'': On the Power of the Wavefront Approach to {Voronoi} Diagrams" +, booktitle = "Proc. Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 841 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "296--305" +, succeeds = "dk-bsbav-92" +, precedes = "dk-bspwa-97" +, update = "00.11 smid, 00.07 icking, 99.07 bibrelex, 98.11 bibrelex, 98.07 icking, 97.03 icking" } @article{dk-bspwa-97 -, author = "Frank Dehne and Rolf Klein" -, title = "``{The} {Big} {Sweep}'': On the Power of the Wavefront Approach to {Voronoi} Diagrams" -, journal = "Algorithmica" -, volume = 17 -, number = 1 -, year = 1997 -, pages = "19--32" -, succeeds = "dk-bspwa-94" -, update = "98.11 bibrelex+held" +, author = "Frank Dehne and Rolf Klein" +, title = "``{The} {Big} {Sweep}'': On the Power of the Wavefront Approach to {Voronoi} Diagrams" +, journal = "Algorithmica" +, volume = 17 +, number = 1 +, year = 1997 +, pages = "19--32" +, succeeds = "dk-bspwa-94" +, update = "98.11 bibrelex+held" } @techreport{dk-bsbav-91 -, author = "Frank Dehne and Rolf Klein" -, title = "{The} {Big} {Sweep}: {The} Beachline Approach for {Voronoi} Diagrams in Nice Metrics" -, type = "Manuscript" -, institution = "FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1991 -, precedes = "dk-bspwa-92" -, update = "00.11 smid, 00.07 icking, 99.07 bibrelex, 98.07 icking, 97.11 bibrelex" +, author = "Frank Dehne and Rolf Klein" +, title = "{The} {Big} {Sweep}: {The} Beachline Approach for {Voronoi} Diagrams in Nice Metrics" +, type = "Manuscript" +, institution = "FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1991 +, precedes = "dk-bspwa-92" +, update = "00.11 smid, 00.07 icking, 99.07 bibrelex, 98.07 icking, 97.11 bibrelex" } @article{dmr-ocmcc-91 -, author = "Frank Dehne and Russ Miller and Andrew Rau-Chaplin" -, title = "Optical Clustering on a Mesh-Connected Computer" -, journal = "Internat. J. Parallel Program." -, volume = 20 -, number = 6 -, year = 1991 -, update = "98.07 icking, 94.01 dehne" +, author = "Frank Dehne and Russ Miller and Andrew Rau-Chaplin" +, title = "Optical Clustering on a Mesh-Connected Computer" +, journal = "Internat. J. Parallel Program." +, volume = 20 +, number = 6 +, year = 1991 +, update = "98.07 icking, 94.01 dehne" } @inproceedings{dn-cgacp-85 -, author = "F. Dehne and H. Noltemeier" -, title = "A computational geometry approach to clustering problems" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "245--250" +, author = "F. Dehne and H. Noltemeier" +, title = "A computational geometry approach to clustering problems" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "245--250" } @inproceedings{dn-cgoal-85 -, author = "F. Dehne and H. Noltemeier" -, title = "Clustering geometric objects and applications to layout problems" -, booktitle = "Proc. Computer Graphics Tokyo '85" -, year = 1985 -, pages = "35--40" -, update = "94.01 dehne" +, author = "F. Dehne and H. Noltemeier" +, title = "Clustering geometric objects and applications to layout problems" +, booktitle = "Proc. Computer Graphics Tokyo '85" +, year = 1985 +, pages = "35--40" +, update = "94.01 dehne" } @article{dn-cmgoa-86 -, author = "F. Dehne and H. Noltemeier" -, title = "Clustering methods for geometric objects and applications to design problems" -, journal = "Visual Comput." -, volume = 2 -, number = 1 -, month = jan -, year = 1986 -, pages = "31--38" -, keywords = "layout problems" +, author = "F. Dehne and H. Noltemeier" +, title = "Clustering methods for geometric objects and applications to design problems" +, journal = "Visual Comput." +, volume = 2 +, number = 1 +, month = jan +, year = 1986 +, pages = "31--38" +, keywords = "layout problems" } @article{dn-vtcp-87 -, author = "F. Dehne and H. Noltemeier" -, title = "Voronoi trees and clustering problems" -, journal = "Inform. Syst." -, volume = 12 -, number = 2 -, year = 1987 -, pages = "171--175" -, update = "94.01 dehne" +, author = "F. Dehne and H. Noltemeier" +, title = "Voronoi trees and clustering problems" +, journal = "Inform. Syst." +, volume = 12 +, number = 2 +, year = 1987 +, pages = "171--175" +, update = "94.01 dehne" } @inproceedings{dp-vabih-88 -, author = "F. Dehne and Q. T. Pham" -, title = "Visibility algorithms for binary images on the hypercube and the perfect-shuffle computer" -, booktitle = "Proc. IFIP WG 10.3 Working Conf. on Parallel Processing" -, year = 1988 -, pages = "117--124" -, update = "94.01 dehne" +, author = "F. Dehne and Q. T. Pham" +, title = "Visibility algorithms for binary images on the hypercube and the perfect-shuffle computer" +, booktitle = "Proc. IFIP WG 10.3 Working Conf. on Parallel Processing" +, year = 1988 +, pages = "117--124" +, update = "94.01 dehne" } @article{dps-ovabi-90 -, author = "F. Dehne and Q. T. Pham and I. Stojmenovi{\'c}" -, title = "Optimal visibility algorithms for binary images on the hypercube" -, journal = "Internat. J. Parallel Program." -, volume = 19 -, number = 3 -, year = 1990 -, pages = "213--224" -, update = "94.01 dehne" +, author = "F. Dehne and Q. T. Pham and I. Stojmenovi{\'c}" +, title = "Optimal visibility algorithms for binary images on the hypercube" +, journal = "Internat. J. Parallel Program." +, volume = 19 +, number = 3 +, year = 1990 +, pages = "213--224" +, update = "94.01 dehne" } @inproceedings{dps-ovabi-88 -, author = "F. Dehne and Q. T. Pham and I. Stojmenovi{\'c}" -, title = "Optimal visibility algorithms for binary images on the hypercube --- preliminary version" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1988 -, pages = "1035--1036" -, update = "94.09 lambert, 94.01 dehne" +, author = "F. Dehne and Q. T. Pham and I. Stojmenovi{\'c}" +, title = "Optimal visibility algorithms for binary images on the hypercube --- preliminary version" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1988 +, pages = "1035--1036" +, update = "94.09 lambert, 94.01 dehne" } @inproceedings{dr-idshm-89 -, author = "F. Dehne and A. Rau-Chaplin" -, title = "Implementing data structures on a hypercube multiprocessor and applications in parallel computational geometry" -, booktitle = "Proc. 15th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '89" -, year = 1989 -, pages = "316--329" -, update = "98.07 bibrelex, 94.01 dehne" +, author = "F. Dehne and A. Rau-Chaplin" +, title = "Implementing data structures on a hypercube multiprocessor and applications in parallel computational geometry" +, booktitle = "Proc. 15th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '89" +, year = 1989 +, pages = "316--329" +, update = "98.07 bibrelex, 94.01 dehne" } @article{dr-idshm-90 -, author = "F. Dehne and A. Rau-Chaplin" -, title = "Implementing data structures on a hypercube multiprocessor and applications in parallel computational geometry" -, journal = "J. Parallel Distrib. Comput." -, volume = 8 -, number = 4 -, year = 1990 -, pages = "367--375" -, update = "94.01 dehne" +, author = "F. Dehne and A. Rau-Chaplin" +, title = "Implementing data structures on a hypercube multiprocessor and applications in parallel computational geometry" +, journal = "J. Parallel Distrib. Comput." +, volume = 8 +, number = 4 +, year = 1990 +, pages = "367--375" +, update = "94.01 dehne" } @inproceedings{ds-spcga-88 -, author = "F. Dehne and J.-R. Sack" -, title = "A survey of parallel computational geometry algorithms" -, booktitle = "Proc. International Workshop on Parallel Processing by Cellular Automata and Arrays" -, series = "Lecture Notes Comput. Sci." -, volume = 342 -, year = 1988 -, pages = "73--88" -, keywords = "parallel computations, survey" -, update = "02.03 icking, 95.09 korneenko, 94.01 dehne" +, author = "F. Dehne and J.-R. Sack" +, title = "A survey of parallel computational geometry algorithms" +, booktitle = "Proc. International Workshop on Parallel Processing by Cellular Automata and Arrays" +, series = "Lecture Notes Comput. Sci." +, volume = 342 +, year = 1988 +, pages = "73--88" +, keywords = "parallel computations, survey" +, update = "02.03 icking, 95.09 korneenko, 94.01 dehne" } @inproceedings{ds-sspts-87 -, author = "F. Dehne and J.-R. Sack" -, title = "Separability of Sets of Polygons Through Single Translations" -, booktitle = "Proc WG'87" -, site = "Bernried, FRG" -, series = "Lecture Notes Comput. Sci." -, volume = 246 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "237--251" -, update = "97.11 sack" +, author = "F. Dehne and J.-R. Sack" +, title = "Separability of Sets of Polygons Through Single Translations" +, booktitle = "Proc WG'87" +, site = "Bernried, FRG" +, series = "Lecture Notes Comput. Sci." +, volume = 246 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "237--251" +, update = "97.11 sack" } @inproceedings{ds-ssp-86 -, author = "F. Dehne and J.-R. Sack" -, title = "Separabilty of sets of polygons" -, booktitle = "Proc. 12th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '86" -, year = 1986 -, pages = "237--251" -, update = "98.07 bibrelex, 94.01 dehne" +, author = "F. Dehne and J.-R. Sack" +, title = "Separabilty of sets of polygons" +, booktitle = "Proc. 12th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '86" +, year = 1986 +, pages = "237--251" +, update = "98.07 bibrelex, 94.01 dehne" } @article{ds-tssp-87 -, author = "F. Dehne and J.-R. Sack" -, title = "Translation separability of sets of polygons" -, journal = "Visual Comput." -, volume = 3 -, year = 1987 -, pages = "227--235" -, keywords = "robotics, motion planning, detection, reporting, separation, path planning, segment trees, polygons, two-dimensional" +, author = "F. Dehne and J.-R. Sack" +, title = "Translation separability of sets of polygons" +, journal = "Visual Comput." +, volume = 3 +, year = 1987 +, pages = "227--235" +, keywords = "robotics, motion planning, detection, reporting, separation, path planning, segment trees, polygons, two-dimensional" } @inproceedings{dss-csshc-87 -, author = "F. Dehne and J.-R. Sack and N. Santoro" -, title = "Computing on a systolic screen: hulls, contours and applications" -, booktitle = "Conf. Parallel Architectures Languages Europe" -, series = "Lecture Notes Comput. Sci." -, volume = 258 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "121--133" -, keywords = "parallel computation, computer graphics, convex hull, polygons, two-dimensional" +, author = "F. Dehne and J.-R. Sack and N. Santoro" +, title = "Computing on a systolic screen: hulls, contours and applications" +, booktitle = "Conf. Parallel Architectures Languages Europe" +, series = "Lecture Notes Comput. Sci." +, volume = 258 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "121--133" +, keywords = "parallel computation, computer graphics, convex hull, polygons, two-dimensional" } @proceedings{dss-pwads-89 -, title = "Proc. 1st Workshop on Algorithms Data Struct." -, editor = "F. Dehne and J.-R. Sack and N. Santoro" -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, update = "98.11 bibrelex, 97.11 sack" +, title = "Proc. 1st Workshop on Algorithms Data Struct." +, editor = "F. Dehne and J.-R. Sack and N. Santoro" +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, update = "98.11 bibrelex, 97.11 sack" } @proceedings{dss-p2wad-91 -, title = "Proc. 2nd Workshop Algorithms Data Struct." -, editor = "F. Dehne and J.-R. Sack and N. Santoro" -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, update = "98.07 bibrelex, 97.11 sack" +, title = "Proc. 2nd Workshop Algorithms Data Struct." +, editor = "F. Dehne and J.-R. Sack and N. Santoro" +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, update = "98.07 bibrelex, 97.11 sack" } @proceedings{dssw-p3wad-93 -, title = "Proc. 3rd Workshop on Algorithms and Data Structures" -, editor = "F. Dehne and J.-R. Sack and N. Santoro and S. Whitesides" -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, update = "97.11 sack" +, title = "Proc. 3rd Workshop on Algorithms and Data Structures" +, editor = "F. Dehne and J.-R. Sack and N. Santoro and S. Whitesides" +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, update = "97.11 sack" } @inproceedings{dss-nd3dc-88 -, author = "F. Dehne and J. R. Sack and I. Stojmenovi{\'c}" -, title = "A note on determining the $3$-dimensional convex hull of a set of points on a mesh of processors" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "154--162" +, author = "F. Dehne and J. R. Sack and I. Stojmenovi{\'c}" +, title = "A note on determining the $3$-dimensional convex hull of a set of points on a mesh of processors" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "154--162" } @article{ds-oaesp-88 -, author = "F. Dehne and I. Stojmenovi{\'c}" -, title = "An ${O}(n)$ algorithm for the ECDF searching problem for arbitrary dimensions on a mesh-of-processors" -, journal = "Inform. Process. Lett." -, volume = 28 -, number = 2 -, year = 1988 -, pages = "67--70" -, update = "94.01 dehne" +, author = "F. Dehne and I. Stojmenovi{\'c}" +, title = "An ${O}(n)$ algorithm for the ECDF searching problem for arbitrary dimensions on a mesh-of-processors" +, journal = "Inform. Process. Lett." +, volume = 28 +, number = 2 +, year = 1988 +, pages = "67--70" +, update = "94.01 dehne" } @inproceedings{ds-opses-87 -, author = "F. Dehne and I. Stojmenovi{\'c}" -, title = "An optimal parallel solution to the ECDF searching problem for higher dimensions on a mesh-of-processors" -, booktitle = "Proc. Allerton Conf. Commun. Control Comput." -, year = 1987 -, pages = "660--661" -, update = "94.01 dehne" +, author = "F. Dehne and I. Stojmenovi{\'c}" +, title = "An optimal parallel solution to the ECDF searching problem for higher dimensions on a mesh-of-processors" +, booktitle = "Proc. Allerton Conf. Commun. Control Comput." +, year = 1987 +, pages = "660--661" +, update = "94.01 dehne" } @inproceedings{dt-cpasd-89 -, author = "F. Dehne and R. Tamassia" -, title = "Cutting polygons to achieve separability, with dynamization" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 32 +, author = "F. Dehne and R. Tamassia" +, title = "Cutting polygons to achieve separability, with dynamization" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 32 } @techreport{ddr-chlts-92 -, author = "V. G. De{\u\i}neko and Ren{\'e} van Dal and G{\"u}nter Rote" -, title = "The Convex-Hull-and-Line Traveling Salesman Problem: A Solvable Case" -, type = "Report" -, number = 233 -, institution = "Inst. Math., Tech. Univ. Graz" -, address = "Graz, Austria" -, month = sep -, year = 1992 -, precedes = "ddr-chlts-94" -, update = "98.03 mitchell, 97.03 rote" +, author = "V. G. De{\u\i}neko and Ren{\'e} van Dal and G{\"u}nter Rote" +, title = "The Convex-Hull-and-Line Traveling Salesman Problem: A Solvable Case" +, type = "Report" +, number = 233 +, institution = "Inst. Math., Tech. Univ. Graz" +, address = "Graz, Austria" +, month = sep +, year = 1992 +, precedes = "ddr-chlts-94" +, update = "98.03 mitchell, 97.03 rote" } @article{ddr-chlts-94 -, author = "V. G. De{\u\i}neko and Ren{\'e} van Dal and G{\"u}nter Rote" -, title = "The Convex-Hull-and-Line Traveling Salesman Problem: A Solvable Case" -, journal = "Inform. Process. Lett." -, volume = 51 -, year = 1994 -, pages = "141--148" -, succeeds = "ddr-chlts-92" -, cites = "akmsw-gamsa-87, r-nltsp-92" -, update = "98.03 mitchell, 97.03 rote" -, abstract = "We solve the special case of the Euclidean Traveling - Salesman Problem where $n-m$ cities lie on the boundary - of the convex hull of all $n$ cities, and the other - $m$ cities lie on a line segment inside this convex hull - by an algorithm which needs $O(mn)$ time and $O(n)$ space." +, author = "V. G. De{\u\i}neko and Ren{\'e} van Dal and G{\"u}nter Rote" +, title = "The Convex-Hull-and-Line Traveling Salesman Problem: A Solvable Case" +, journal = "Inform. Process. Lett." +, volume = 51 +, year = 1994 +, pages = "141--148" +, succeeds = "ddr-chlts-92" +, cites = "akmsw-gamsa-87, r-nltsp-92" +, update = "98.03 mitchell, 97.03 rote" +, abstract = "We solve the special case of the Euclidean Traveling + Salesman Problem where $n-m$ cities lie on the boundary + of the convex hull of all $n$ cities, and the other + $m$ cities lie on a line segment inside this convex hull + by an algorithm which needs $O(mn)$ time and $O(n)$ space." } @article{d-fptea-71 -, author = "T. J. Dekker" -, title = "A floating-point technique for extending the available precision" -, journal = "Numerische Mathematik" -, volume = 18 -, year = 1971 -, pages = "224--242" -, update = "97.11 bibrelex" +, author = "T. J. Dekker" +, title = "A floating-point technique for extending the available precision" +, journal = "Numerische Mathematik" +, volume = 18 +, year = 1971 +, pages = "224--242" +, update = "97.11 bibrelex" } @article{d-argon-92 -, author = "B. V. Dekster" -, title = "Assembling $r$-gons out of $n$ given segments" -, journal = "Math. Mag." -, volume = 65 -, number = 1 -, month = feb -, year = 1992 -, pages = "44--48" -, update = "98.07 bibrelex" +, author = "B. V. Dekster" +, title = "Assembling $r$-gons out of $n$ given segments" +, journal = "Math. Mag." +, volume = 65 +, number = 1 +, month = feb +, year = 1992 +, pages = "44--48" +, update = "98.07 bibrelex" } @article{d-uardr-80 -, author = "C. Delannoy" -, title = "Un algorithme rapide de recherche de plus proches voisins" -, journal = "RAIRO Inform. Theor." -, volume = 14 -, year = 1980 -, pages = "275--286" -, keywords = "nearest neighbors" -, update = "95.09 korneenko" +, author = "C. Delannoy" +, title = "Un algorithme rapide de recherche de plus proches voisins" +, journal = "RAIRO Inform. Theor." +, volume = 14 +, year = 1980 +, pages = "275--286" +, keywords = "nearest neighbors" +, update = "95.09 korneenko" } @article{d-slsv-34 -, author = "B. Delaunay" -, title = "Sur la sph{\`e}re vide. {A} la memoire de {Georges} {Voronoi}" -, journal = "Izv. Akad. Nauk SSSR, Otdelenie Matematicheskih i Estestvennyh Nauk" -, volume = 7 -, year = 1934 -, pages = "793--800" -, keywords = "Delaunay triangulation" -, comments = "Translated as Bull. Acad. Sci. USSR: Class. Sci. Math. Nat." -, update = "95.09 korneenko, 93.09 jones" +, author = "B. Delaunay" +, title = "Sur la sph{\`e}re vide. {A} la memoire de {Georges} {Voronoi}" +, journal = "Izv. Akad. Nauk SSSR, Otdelenie Matematicheskih i Estestvennyh Nauk" +, volume = 7 +, year = 1934 +, pages = "793--800" +, keywords = "Delaunay triangulation" +, comments = "Translated as Bull. Acad. Sci. USSR: Class. Sci. Math. Nat." +, update = "95.09 korneenko, 93.09 jones" } @inproceedings{de-iabns-93 -, author = "C. J. A. Delfinado and H. Edelsbrunner" -, title = "An incremental algorithm for {Betti} numbers of simplicial complexes" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "232--239" -, cites = "ah-t1-35, b-ct-93, clr-ia-90, dc-cchtt-91, e-acg-87, e-was-92, eks-sspp-83, em-tdas-94, g-gsh-81, kb-ptacs-79, m-eat-84, r-iat-88, s-siec-61, ZZZ" -, update = "98.07 agarwal, 98.03 bibrelex, 93.09 jones" +, author = "C. J. A. Delfinado and H. Edelsbrunner" +, title = "An incremental algorithm for {Betti} numbers of simplicial complexes" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "232--239" +, cites = "ah-t1-35, b-ct-93, clr-ia-90, dc-cchtt-91, e-acg-87, e-was-92, eks-sspp-83, em-tdas-94, g-gsh-81, kb-ptacs-79, m-eat-84, r-iat-88, s-siec-61, ZZZ" +, update = "98.07 agarwal, 98.03 bibrelex, 93.09 jones" } @article{d-agtgp-90 -, author = "K. Deljouie-Rakhshandeh" -, title = "An Approach to the Generation of Triangular Grids Possessing Few Obtuse Triangles" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 29 -, year = 1990 -, pages = "1299--1321" -, annote = "Wants triangulation with very few obtuse angles. - Combines ad-hoccery for node generation with switching - rules. Also decomposes complex shape into convex - pieces." +, author = "K. Deljouie-Rakhshandeh" +, title = "An Approach to the Generation of Triangular Grids Possessing Few Obtuse Triangles" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 29 +, year = 1990 +, pages = "1299--1321" +, annote = "Wants triangulation with very few obtuse angles. + Combines ad-hoccery for node generation with switching + rules. Also decomposes complex shape into convex + pieces." } @unpublished{dg-bop-01 -, author = "Charles Delman and Gregory Galperin" -, title = "Billiards on polyhedra: {A} separation principle and a calculus for the number of trajectories" -, year = 2001 -, note = "Univ. Eastern Illinois" -, update = "01.04 orourke" +, author = "Charles Delman and Gregory Galperin" +, title = "Billiards on polyhedra: {A} separation principle and a calculus for the number of trajectories" +, year = 2001 +, note = "Univ. Eastern Illinois" +, update = "01.04 orourke" } @inproceedings{ddo-pp1an-00 -, author = "E. D. Demain and M. L. Demaine and J. O'Rourke" -, title = "{PushPush} and {Push-1} are {NP}-hard in {2D}" -, booktitle = "Proc. 12th Canad. Conf. Comput. Geom." -, site = "New Brunswick" -, month = aug -, year = 2000 -, pages = "??--??" -, url = "https://www.science.smith.edu/~jorourke/papers.php" -, cites = "ddo-ppnph2d-00" -, update = "01.04 icking, 00.11 smid, 00.07 orourke" +, author = "E. D. Demain and M. L. Demaine and J. O'Rourke" +, title = "{PushPush} and {Push-1} are {NP}-hard in {2D}" +, booktitle = "Proc. 12th Canad. Conf. Comput. Geom." +, site = "New Brunswick" +, month = aug +, year = 2000 +, pages = "??--??" +, url = "https://www.science.smith.edu/~jorourke/papers.php" +, cites = "ddo-ppnph2d-00" +, update = "01.04 icking, 00.11 smid, 00.07 orourke" } @techreport{ddo-ppnph2d-00 -, author = "E. D. Demain and M. L. Demaine and J. O'Rourke" -, title = "{PushPush} is {NP}-hard in {2D}" -, number = 065 -, institution = "Smith College, Northampton, MA" -, month = jan -, year = 2000 -, archive = "XXX:cs.CG/0001019" -, cites = "os-ppnph3d-99" -, update = "00.03 orourke" +, author = "E. D. Demain and M. L. Demaine and J. O'Rourke" +, title = "{PushPush} is {NP}-hard in {2D}" +, number = 065 +, institution = "Smith College, Northampton, MA" +, month = jan +, year = 2000 +, archive = "XXX:cs.CG/0001019" +, cites = "os-ppnph3d-99" +, update = "00.03 orourke" } @inproceedings{dlo-sil-01 -, author = "Erik D. Demain and Stefan Langerman and Joseph O'Rourke" -, title = "Short Interlocked Linkages" -, booktitle = "Proc. 13th Canad. Conf. Comput. Geom." -, site = "Waterloo" -, year = 2001 -, pages = "??--??" -, update = "02.03 icking, 01.07 orourke" +, author = "Erik D. Demain and Stefan Langerman and Joseph O'Rourke" +, title = "Short Interlocked Linkages" +, booktitle = "Proc. 13th Canad. Conf. Comput. Geom." +, site = "Waterloo" +, year = 2001 +, pages = "??--??" +, update = "02.03 icking, 01.07 orourke" } @inproceedings{ddlop-mc-99 -, author = "E. Demaine and M. Demaine and A. Lubiw and J. O'Rourke and I. Pashchenko" -, title = "Metamorphosis of the Cube" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "409--410" -, note = "Video and abstract" -, update = "00.03 orourke" +, author = "E. Demaine and M. Demaine and A. Lubiw and J. O'Rourke and I. Pashchenko" +, title = "Metamorphosis of the Cube" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "409--410" +, note = "Video and abstract" +, update = "00.03 orourke" } @article{do-cgc37-99 -, author = "E. Demaine and J. O'Rourke" -, title = "Computational geometry column 37" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = "??" -, year = 1999 -, pages = "??--??" -, note = "Also in SIGACT News, 30(3):39--42 (1999), Issue 112; LANL XXX archive cs.CG/9908007" -, archive = "XXX:cs.CG/9908007" -, update = "00.03 orourke" -, annote = "Open problems from the 15th Annual ACM Symposium on Computational Geometry." +, author = "E. Demaine and J. O'Rourke" +, title = "Computational geometry column 37" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = "??" +, year = 1999 +, pages = "??--??" +, note = "Also in SIGACT News, 30(3):39--42 (1999), Issue 112; LANL XXX archive cs.CG/9908007" +, archive = "XXX:cs.CG/9908007" +, update = "00.03 orourke" +, annote = "Open problems from the 15th Annual ACM Symposium on Computational Geometry." } @article{ddk-pccs-01 -, author = "E. D. Demaine and M. L. Demaine and C. S. Kaplan" -, title = "Polygons cuttable by a circular saw" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "69--84" -, update = "01.11 smid" +, author = "E. D. Demaine and M. L. Demaine and C. S. Kaplan" +, title = "Polygons cuttable by a circular saw" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "69--84" +, update = "01.11 smid" } @inproceedings{ddl-fcp-98 -, author = "E. D. Demaine and M. L. Demaine and A. Lubiw" -, title = "Folding and Cutting Paper" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom." -, site = "Tokyo, Japan" -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1998 -, url = "http://ranran.cis.ibaraki.ac.jp/jcdcg98/jcdcg98.html" -, update = "99.11 bibrelex, 99.07 orourke" +, author = "E. D. Demaine and M. L. Demaine and A. Lubiw" +, title = "Folding and Cutting Paper" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom." +, site = "Tokyo, Japan" +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1998 +, url = "http://ranran.cis.ibaraki.ac.jp/jcdcg98/jcdcg98.html" +, update = "99.11 bibrelex, 99.07 orourke" } @inproceedings{ddl-foscs-99 -, author = "E. D. Demaine and M. L. Demaine and A. Lubiw" -, title = "Folding and One Straight Cut Suffice" -, booktitle = "Proc. 10th Annu. ACM-SIAM Sympos. Discrete Alg." -, nickname = "SODA'99" -, site = "Baltimore, Maryland" -, month = jan -, year = 1999 -, pages = "891--892" -, url = "https://archive.siam.org/meetings/da99/" -, update = "99.07 orourke" +, author = "E. D. Demaine and M. L. Demaine and A. Lubiw" +, title = "Folding and One Straight Cut Suffice" +, booktitle = "Proc. 10th Annu. ACM-SIAM Sympos. Discrete Alg." +, nickname = "SODA'99" +, site = "Baltimore, Maryland" +, month = jan +, year = 1999 +, pages = "891--892" +, url = "https://archive.siam.org/meetings/da99/" +, update = "99.07 orourke" } @inproceedings{ddao-efupp-00 -, author = "E. D. Demaine and M. L. Demaine and A. Lubiw and J. O'Rourke" -, title = "Enumerating foldings and unfoldings between polygons and polytopes" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" -, site = "Tokyo" -, month = dec -, year = 2000 -, pages = "9--12" -, note = "Revised version to appear in LNCS" -, update = "01.04 orourke" +, author = "E. D. Demaine and M. L. Demaine and A. Lubiw and J. O'Rourke" +, title = "Enumerating foldings and unfoldings between polygons and polytopes" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" +, site = "Tokyo" +, month = dec +, year = 2000 +, pages = "9--12" +, note = "Revised version to appear in LNCS" +, update = "01.04 orourke" } @inproceedings{ddlo-efupp-01 -, author = "Erik D. Demaine and Martin L. Demaine and Anna Lubiw and Joseph O'Rourke" -, title = "Enumerating Foldings and Unfoldings between Polygons and Polytopes" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '00" -, series = "Lecture Notes Comput. Sci." -, volume = "??" -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "??--??" -, note = "Tokyo, Nov. 2000, pp. 9--12." -, succeeds = "ddlo-ecerfu-00" -, update = "01.07 orourke" +, author = "Erik D. Demaine and Martin L. Demaine and Anna Lubiw and Joseph O'Rourke" +, title = "Enumerating Foldings and Unfoldings between Polygons and Polytopes" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '00" +, series = "Lecture Notes Comput. Sci." +, volume = "??" +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "??--??" +, note = "Tokyo, Nov. 2000, pp. 9--12." +, succeeds = "ddlo-ecerfu-00" +, update = "01.07 orourke" } @inproceedings{o-fucg-01 -, author = "E. D. Demaine and M. L. Demaine and A. Lubiw and J. O'Rourke" -, title = "Enumerating foldings and unfoldings between polygons and polytopes" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" -, series = "Lecture Notes Comput. Sci." -, volume = "??" -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 2001 -, pages = "??--??" -, note = "To appear" -, succeeds = "ddao-efupp-00" -, update = "02.03 icking, 01.04 orourke" +, author = "E. D. Demaine and M. L. Demaine and A. Lubiw and J. O'Rourke" +, title = "Enumerating foldings and unfoldings between polygons and polytopes" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" +, series = "Lecture Notes Comput. Sci." +, volume = "??" +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 2001 +, pages = "??--??" +, note = "To appear" +, succeeds = "ddao-efupp-00" +, update = "02.03 icking, 01.04 orourke" } @techreport{ddlo-ecerfu-00 -, author = "E. D. Demaine and M. L. Demaine and A. Lubiw and J. O'Rourke" -, title = "Examples, Counterexamples, and Enumeration Results for Foldings and Unfoldings between Polygons and Polytopes" -, number = 069 -, institution = "Smith College, Northampton, MA" -, month = jul -, year = 2000 -, note = "LANL ArXive cs.CG/0007019" -, update = "01.04 orourke" +, author = "E. D. Demaine and M. L. Demaine and A. Lubiw and J. O'Rourke" +, title = "Examples, Counterexamples, and Enumeration Results for Foldings and Unfoldings between Polygons and Polytopes" +, number = 069 +, institution = "Smith College, Northampton, MA" +, month = jul +, year = 2000 +, note = "LANL ArXive cs.CG/0007019" +, update = "01.04 orourke" } @inproceedings{ddm-ffswp-99 -, author = "E. D. Demaine and M. L. Demaine and J. S. B. Mitchell" -, title = "Folding Flat Silhouettes and Wrapping Polyhedral Packages: New Results in Computational Origami" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, site = "Miami Beach, Florida" -, month = jun -, year = 1999 -, pages = "105--114" -, url = "http://www.cs.miami.edu/events/SCG99" -, update = "99.07 orourke" +, author = "E. D. Demaine and M. L. Demaine and J. S. B. Mitchell" +, title = "Folding Flat Silhouettes and Wrapping Polyhedral Packages: New Results in Computational Origami" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, site = "Miami Beach, Florida" +, month = jun +, year = 1999 +, pages = "105--114" +, url = "http://www.cs.miami.edu/events/SCG99" +, update = "99.07 orourke" } @techreport{deeho-vusm-01 -, author = "E. D. Demaine and D. Eppstein and J. Erickson and G. W. Hart and J. O'Rourke" -, title = "Vertex-Unfoldings of Simplicial Manifolds" -, type = "Technical {Report}" -, number = 072 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA, USA" -, month = oct -, year = 2001 -, url = "https://arxiv.org/abs/cs/0110054" -, succeeds = "deeho-vusp-01" -, update = "01.11 orourke" +, author = "E. D. Demaine and D. Eppstein and J. Erickson and G. W. Hart and J. O'Rourke" +, title = "Vertex-Unfoldings of Simplicial Manifolds" +, type = "Technical {Report}" +, number = 072 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA, USA" +, month = oct +, year = 2001 +, url = "https://arxiv.org/abs/cs/0110054" +, succeeds = "deeho-vusp-01" +, update = "01.11 orourke" } @techreport{deeho-vusp-01 -, author = "E. D. Demaine and D. Eppstein and J. Erickson and G. W. Hart and J. O'Rourke" -, title = "Vertex-Unfoldings of Simplicial Polyhedra" -, type = "Technical {Report}" -, number = 071 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA, USA" -, month = jul -, year = 2001 -, url = "https://arXiv.org/abs/cs/0107023/" -, update = "01.11 orourke" +, author = "E. D. Demaine and D. Eppstein and J. Erickson and G. W. Hart and J. O'Rourke" +, title = "Vertex-Unfoldings of Simplicial Polyhedra" +, type = "Technical {Report}" +, number = 071 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA, USA" +, month = jul +, year = 2001 +, url = "https://arXiv.org/abs/cs/0107023/" +, update = "01.11 orourke" } @inproceedings{do-op99-01 -, author = "Erik D. Demaine and Joseph O'Rourke" -, title = "Open Problems from {CCCG}'00" -, booktitle = "Proc. 13th Canad. Conf. Comput. Geom." -, site = "Waterloo" -, year = 2001 -, pages = "??--??" -, update = "02.03 icking, 01.07 orourke" +, author = "Erik D. Demaine and Joseph O'Rourke" +, title = "Open Problems from {CCCG}'00" +, booktitle = "Proc. 13th Canad. Conf. Comput. Geom." +, site = "Waterloo" +, year = 2001 +, pages = "??--??" +, update = "02.03 icking, 01.07 orourke" } @inproceedings{do-op99-00 -, author = "Erik D. Demaine and J. O'Rourke" -, title = "Open Problems from {CCCG}'99" -, booktitle = "Proc. 12th Canad. Conf. Comput. Geom." -, site = "New Brunswick" -, month = aug -, year = 2000 -, pages = "269--272" -, update = "02.03 icking, 01.07 orourke" +, author = "Erik D. Demaine and J. O'Rourke" +, title = "Open Problems from {CCCG}'99" +, booktitle = "Proc. 12th Canad. Conf. Comput. Geom." +, site = "New Brunswick" +, month = aug +, year = 2000 +, pages = "269--272" +, update = "02.03 icking, 01.07 orourke" } @article{d-iw-86 -, author = "H{\"u}seyin Demir" -, title = "Incircles within" -, journal = "Math. Mag." -, volume = 59 -, year = 1986 -, pages = "77--83" -, update = "98.11 bibrelex" +, author = "H{\"u}seyin Demir" +, title = "Incircles within" +, journal = "Math. Mag." +, volume = 59 +, year = 1986 +, pages = "77--83" +, update = "98.11 bibrelex" } @techreport{d-eaavr-86 -, author = "J. Demmel" -, title = "On Error Analysis in Arithmetic with Varying Relative Precision" -, type = "Technical {Report}" -, number = 251 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, month = oct -, year = 1986 -, update = "98.03 bibrelex" +, author = "J. Demmel" +, title = "On Error Analysis in Arithmetic with Varying Relative Precision" +, type = "Technical {Report}" +, number = 251 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, month = oct +, year = 1986 +, update = "98.03 bibrelex" } @article{d-cdnsm-92 -, author = "J. Demmel" -, title = "The componentwise distance to the nearest singular matrix" -, journal = "SIAM J. Matrix Anal. Appl." -, volume = 13 -, number = 1 -, year = 1992 -, pages = "10--19" -, update = "98.03 bibrelex" +, author = "J. Demmel" +, title = "The componentwise distance to the nearest singular matrix" +, journal = "SIAM J. Matrix Anal. Appl." +, volume = 13 +, number = 1 +, year = 1992 +, pages = "10--19" +, update = "98.03 bibrelex" } @article{ds-ppsp-88 -, author = "L. Deneen and G. Shute" -, title = "Polygonizations of point sets in the plane" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "77--87" -, keywords = "counting, arrangements, star-shaped, two-dimensional, combinatorial geometry" +, author = "L. Deneen and G. Shute" +, title = "Polygonizations of point sets in the plane" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "77--87" +, keywords = "counting, arrangements, star-shaped, two-dimensional, combinatorial geometry" } @inproceedings{dd-upctg-90 -, author = "L. L. Deneen and J. B. Dezell" -, title = "Using partitioning and clustering techniques to generate rectilinear {Steiner} trees" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "315--318" -, cites = "b-tprrs-88, ds-psars-89, dw-spg-72, jd-acd-88, dh-pcsa-73, ggj-ccsmt-77, gj-rstpi-77, h-oasrs-79, k-papat-77, ks-ppars-85, lw-vdllm-80, ps-cgi-85, r-fhars-89, s-harst-81, s-cg-78, sdt-opsal-91, sll-ohars-80, yw-ossaw-72, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "L. L. Deneen and J. B. Dezell" +, title = "Using partitioning and clustering techniques to generate rectilinear {Steiner} trees" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "315--318" +, cites = "b-tprrs-88, ds-psars-89, dw-spg-72, jd-acd-88, dh-pcsa-73, ggj-ccsmt-77, gj-rstpi-77, h-oasrs-79, k-papat-77, ks-ppars-85, lw-vdllm-80, ps-cgi-85, r-fhars-89, s-harst-81, s-cg-78, sdt-opsal-91, sll-ohars-80, yw-ossaw-72, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @inproceedings{dj-tag-92 -, author = "L. L. Deneen and S. Joshi" -, title = "Treasures in an art gallery" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "17--22" -, cites = "at-oadvp-81, c-ctpg-75, ea-lacvp-81, js-clvpa-87, ll-ccagp-86, l-vsp-83, o-agta-87, ZZZ" -, update = "98.07 bibrelex" +, author = "L. L. Deneen and S. Joshi" +, title = "Treasures in an art gallery" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "17--22" +, cites = "at-oadvp-81, c-ctpg-75, ea-lacvp-81, js-clvpa-87, ll-ccagp-86, l-vsp-83, o-agta-87, ZZZ" +, update = "98.07 bibrelex" } @unpublished{ds-psars-89 -, author = "L. L. Deneen and G. M. Shute" -, title = "A plane-sweep algorithm for rectilinear {Steiner} trees with deferred connections" -, year = 1989 -, note = "Unpublished Manuscript" -, update = "98.07 bibrelex" +, author = "L. L. Deneen and G. M. Shute" +, title = "A plane-sweep algorithm for rectilinear {Steiner} trees with deferred connections" +, year = 1989 +, note = "Unpublished Manuscript" +, update = "98.07 bibrelex" } @inproceedings{dst-pfpoa-92 -, author = "L. L. Deneen and G. M. Shute and C. D. Thomborson" -, title = "A probably fast, provably optimal algorithm for rectilinear {Steiner} trees" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "299--304" -, cites = "br-iastp-92, d-os-70, dw-spg-72, gj-rstpi-77, h-sprd-66, h-smtrd-76, k-fa-73, tds-crsmt-87, ZZZ" -, update = "98.07 bibrelex" +, author = "L. L. Deneen and G. M. Shute and C. D. Thomborson" +, title = "A probably fast, provably optimal algorithm for rectilinear {Steiner} trees" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "299--304" +, cites = "br-iastp-92, d-os-70, dw-spg-72, gj-rstpi-77, h-sprd-66, h-smtrd-76, k-fa-73, tds-crsmt-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{d-chacg-94 -, author = "X. Deng" -, title = "A Convex Hull Algorithm on Course-Grained Multicomputer" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, year = 1994 -, pages = "634--642" -, update = "98.07 bibrelex, 96.09 orourke" +, author = "X. Deng" +, title = "A Convex Hull Algorithm on Course-Grained Multicomputer" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, year = 1994 +, pages = "634--642" +, update = "98.07 bibrelex, 96.09 orourke" } @article{d-opalp-90 -, author = "X. Deng" -, title = "An optimal parallel algorithm for linear programming in the plane" -, journal = "Inform. Process. Lett." -, volume = 35 -, year = 1990 -, pages = "213--217" -, keywords = "parallel computations, linear programming, two-dimensional" -, update = "95.09 korneenko" +, author = "X. Deng" +, title = "An optimal parallel algorithm for linear programming in the plane" +, journal = "Inform. Process. Lett." +, volume = 35 +, year = 1990 +, pages = "213--217" +, keywords = "parallel computations, linear programming, two-dimensional" +, update = "95.09 korneenko" } @inproceedings{dkp-hlue-91 -, author = "X. Deng and T. Kameda and C. Papadimitriou" -, title = "How to learn an unknown environment" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "298--303" +, author = "X. Deng and T. Kameda and C. Papadimitriou" +, title = "How to learn an unknown environment" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "298--303" } @article{dkp-hlue1-98 -, author = "Xiaotie Deng and Tiko Kameda and Christos Papadimitriou" -, title = "How to Learn an Unknown Environment {I}: The Rectilinear Case" -, journal = "J. ACM" -, volume = 45 -, number = 2 -, year = 1998 -, pages = "215--245" -, succeeds = "dkp-hlue1-93" -, update = "98.11 bibrelex" +, author = "Xiaotie Deng and Tiko Kameda and Christos Papadimitriou" +, title = "How to Learn an Unknown Environment {I}: The Rectilinear Case" +, journal = "J. ACM" +, volume = 45 +, number = 2 +, year = 1998 +, pages = "215--245" +, succeeds = "dkp-hlue1-93" +, update = "98.11 bibrelex" } @techreport{dkp-hlue1-93 -, author = "Xiaotie Deng and Tiko Kameda and Christos H. Papadimitriou" -, title = "How to learn an unknown environment {I}: the rectilinear case" -, number = "CS-93-04" -, institution = "Department of Computer Science, York University" -, address = "Canada" -, year = 1993 -, precedes = "dkp-hlue1-98" -, update = "98.11 bibrelex, 97.03 icking" +, author = "Xiaotie Deng and Tiko Kameda and Christos H. Papadimitriou" +, title = "How to learn an unknown environment {I}: the rectilinear case" +, number = "CS-93-04" +, institution = "Department of Computer Science, York University" +, address = "Canada" +, year = 1993 +, precedes = "dkp-hlue1-98" +, update = "98.11 bibrelex, 97.03 icking" } @inproceedings{dm-rmfpv-93 -, author = "Xiaotie Deng and Andy Mirzaian" -, title = "Robot Mapping: {Foot}-prints vs Tokens" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "353--362" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Xiaotie Deng and Andy Mirzaian" +, title = "Robot Mapping: {Foot}-prints vs Tokens" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "353--362" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @inproceedings{dfm-cddl-93 -, author = "E. Dengler and M. Friedell and J. Marks" -, title = "Constraint-Driven Diagram Layout" -, booktitle = "Proc. IEEE Sympos. on Visual Languages" -, nickname = "VL '93" -, year = 1993 -, pages = "330--335" -, keywords = "graph drawing, constraints" -, update = "95.09 agarwal, 95.05 tamassia, 95.01 tamassia" +, author = "E. Dengler and M. Friedell and J. Marks" +, title = "Constraint-Driven Diagram Layout" +, booktitle = "Proc. IEEE Sympos. on Visual Languages" +, nickname = "VL '93" +, year = 1993 +, pages = "330--335" +, keywords = "graph drawing, constraints" +, update = "95.09 agarwal, 95.05 tamassia, 95.01 tamassia" } @inproceedings{ds-etpip-97 -, author = "Markus Denny and Christian Sohler" -, title = "Encoding a Triangulation as a Permutation of its Point Set" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "39--43" -, update = "97.11 jones" +, author = "Markus Denny and Christian Sohler" +, title = "Encoding a Triangulation as a Permutation of its Point Set" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "39--43" +, update = "97.11 jones" } @article{d-nhtpa-76 -, author = "N. Deo" -, title = "Note on {Hopcroft} and {Tarjan}'s planarity algorithm" -, journal = "J. ACM" -, volume = 23 -, year = 1976 -, pages = "74--75" -, keywords = "graph drawing" -, update = "97.11 bibrelex, 93.09 tamassia" +, author = "N. Deo" +, title = "Note on {Hopcroft} and {Tarjan}'s planarity algorithm" +, journal = "J. ACM" +, volume = 23 +, year = 1976 +, pages = "74--75" +, keywords = "graph drawing" +, update = "97.11 bibrelex, 93.09 tamassia" } @article{dp-spata-84 -, author = "N. Deo and C.-Y. Pany" -, title = "Shortest-path algorithms: taxonomy and annotation" -, journal = "Networks" -, volume = 14 -, year = 1984 -, pages = "275--323" +, author = "N. Deo and C.-Y. Pany" +, title = "Shortest-path algorithms: taxonomy and annotation" +, journal = "Networks" +, volume = 14 +, year = 1984 +, pages = "275--323" } @inproceedings{dko-fliet-87 -, author = "A. DePano and Y. Ke and J. O'Rourke" -, title = "Finding largest inscribed equilateral triangles and squares" -, booktitle = "Proc. 25th Allerton Conf. Commun. Control Comput." -, month = oct -, year = 1987 -, pages = "869--878" -, keywords = "two-dimensional, inscribed, regular polygons, maximal area, optimization" -, comments = "submitted to Internat. J. Comput. Geom. Appl." +, author = "A. DePano and Y. Ke and J. O'Rourke" +, title = "Finding largest inscribed equilateral triangles and squares" +, booktitle = "Proc. 25th Allerton Conf. Commun. Control Comput." +, month = oct +, year = 1987 +, pages = "869--878" +, keywords = "two-dimensional, inscribed, regular polygons, maximal area, optimization" +, comments = "submitted to Internat. J. Comput. Geom. Appl." } @incollection{d-bret-88 -, author = "N. A. A. {DePano}" -, title = "Best regular enclosures of triangles" -, booktitle = "IEEE SOUTHEASTCON, 1988, Knoxville" -, year = 1988 -, pages = "368--372" -, keywords = "triangles, enclosure" -, update = "95.09 korneenko" +, author = "N. A. A. {DePano}" +, title = "Best regular enclosures of triangles" +, booktitle = "IEEE SOUTHEASTCON, 1988, Knoxville" +, year = 1988 +, pages = "368--372" +, keywords = "triangles, enclosure" +, update = "95.09 korneenko" } @phdthesis{d-paope-87 -, author = "N. A. A. {DePano}" -, title = "Polygon approximation with optimized polygonal enclosures: applications and algorithms" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Johns Hopkins Univ." -, year = 1987 -, keywords = "polygons, approximation, enclosure, doctoral thesis" -, update = "97.11 bibrelex, 95.09 korneenko" +, author = "N. A. A. {DePano}" +, title = "Polygon approximation with optimized polygonal enclosures: applications and algorithms" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Johns Hopkins Univ." +, year = 1987 +, keywords = "polygons, approximation, enclosure, doctoral thesis" +, update = "97.11 bibrelex, 95.09 korneenko" } @inproceedings{da-frkec-84 -, author = "N. A. A. DePano and A. Aggarwal" -, title = "Finding restricted $k$-envelopes for convex polygons" -, booktitle = "Proc. 22nd Allerton Conf. Commun. Control Comput." -, year = 1984 -, pages = "81--90" +, author = "N. A. A. DePano and A. Aggarwal" +, title = "Finding restricted $k$-envelopes for convex polygons" +, booktitle = "Proc. 22nd Allerton Conf. Commun. Control Comput." +, year = 1984 +, pages = "81--90" } @inproceedings{dbkl-apecg-90 -, author = "N. Adlai A. DePano and Farinaz D. Boudreau and Philip Katner and Brian Li" -, title = "Algorithmic Paradigms. Examples In Computational Geometry {II}" -, booktitle = "21st SIGCSE Technical Symposium on Computer Science Education" -, publisher = "ACM" -, address = "Fort Collins Computer Center, Fort Collins, CO" -, year = 1990 -, pages = "186--191" -, keywords = "computational geometry, algorithmic paradigms" -, annote = "Generates random polygons by taking convex hull of $M$ - points from uniform distribution over circle. Use these - to test if minimum area and minimum perimeter enclosing - rectangles are different." -, abstract = "We discuss two problems from the relatively new field - of computational geometry to illustrate two advanced - notions in algorithm design and analysis. One problem - deals with the triangulation of convex polygons while - the other delves into minimum enclosing rectangles. Our - work continues with the objective set forth in an - earlier paper of a similar title. (Author abstract) 11 - Refs." +, author = "N. Adlai A. DePano and Farinaz D. Boudreau and Philip Katner and Brian Li" +, title = "Algorithmic Paradigms. Examples In Computational Geometry {II}" +, booktitle = "21st SIGCSE Technical Symposium on Computer Science Education" +, publisher = "ACM" +, address = "Fort Collins Computer Center, Fort Collins, CO" +, year = 1990 +, pages = "186--191" +, keywords = "computational geometry, algorithmic paradigms" +, annote = "Generates random polygons by taking convex hull of $M$ + points from uniform distribution over circle. Use these + to test if minimum area and minimum perimeter enclosing + rectangles are different." +, abstract = "We discuss two problems from the relatively new field + of computational geometry to illustrate two advanced + notions in algorithm design and analysis. One problem + deals with the triangulation of convex polygons while + the other delves into minimum enclosing rectangles. Our + work continues with the objective set forth in an + earlier paper of a similar title. (Author abstract) 11 + Refs." } @inproceedings{d-gpcfa-89 -, author = "A. D. DeRose" -, title = "Geometric Programming: {A} Coordinate-Free Approach" -, booktitle = "Theory and Practice of Geometric Modeling" -, publisher = "Springer-Verlag" -, address = "Blaubeuren, FRG (Oct 1988)" -, year = 1989 -, pages = "" -, update = "93.09 held" +, author = "A. D. DeRose" +, title = "Geometric Programming: {A} Coordinate-Free Approach" +, booktitle = "Theory and Practice of Geometric Modeling" +, publisher = "Springer-Verlag" +, address = "Blaubeuren, FRG (Oct 1988)" +, year = 1989 +, pages = "" +, update = "93.09 held" } @phdthesis{d-pimcc-85 -, author = "T. DeRose" -, title = "Geometric Continuity: A parameterization independent measure of continuity for computer aided design" -, school = "Computer Science, Unioversity of California, Berkeley" -, year = 1985 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "T. DeRose" +, title = "Geometric Continuity: A parameterization independent measure of continuity for computer aided design" +, school = "Computer Science, Unioversity of California, Berkeley" +, year = 1985 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @techreport{dlw-masat-93 -, author = "T. D. DeRose and M. Lounsbery and J. Warren" -, title = "Multiresolution Analysis for Surface of Arbitrary Topological Type" -, type = "Report" -, number = "93-10-05" -, institution = "Department of Computer Science, University of Washington" -, address = "Seattle, WA" -, year = 1993 -, update = "95.01 mitchell" +, author = "T. D. DeRose and M. Lounsbery and J. Warren" +, title = "Multiresolution Analysis for Surface of Arbitrary Topological Type" +, type = "Report" +, number = "93-10-05" +, institution = "Department of Computer Science, University of Washington" +, address = "Seattle, WA" +, year = 1993 +, update = "95.01 mitchell" } @techreport{d-spclr-94 -, author = "G. Desaulniers" -, title = "On Shortest Paths for a Car-Like Robot Maneuvering Around Obstacles" -, type = "Les Cahiers du GERAD" -, number = "G-94-35" -, institution = "Ecole des Hautes Etudes Commerciales" -, address = "Montreal, Canada" -, year = 1994 -, update = "98.03 mitchell" +, author = "G. Desaulniers" +, title = "On Shortest Paths for a Car-Like Robot Maneuvering Around Obstacles" +, type = "Les Cahiers du GERAD" +, number = "G-94-35" +, institution = "Ecole des Hautes Etudes Commerciales" +, address = "Montreal, Canada" +, year = 1994 +, update = "98.03 mitchell" } @article{ds-rnmgc- -, author = "H. Desaulniers and N. F. Steward" -, title = "Robustness of numerical methods in geometric computation when problem data is uncertain" -, journal = "CAD" -, volume = 25 -, number = 9 -, year = "??" -, pages = "539--545" -, update = "98.07 bibrelex" +, author = "H. Desaulniers and N. F. Steward" +, title = "Robustness of numerical methods in geometric computation when problem data is uncertain" +, journal = "CAD" +, volume = 25 +, number = 9 +, year = "??" +, pages = "539--545" +, update = "98.07 bibrelex" } @article{ds-embrr-92 -, author = "H. Desaulniers and N. F. Stewart" -, title = "An extension of manifold boudary representations to the $r$-sets" -, journal = "ACM Trans. Graph." -, volume = 11 -, number = 1 -, month = jan -, year = 1992 -, pages = "40--60" -, update = "98.07 bibrelex" +, author = "H. Desaulniers and N. F. Stewart" +, title = "An extension of manifold boudary representations to the $r$-sets" +, journal = "ACM Trans. Graph." +, volume = 11 +, number = 1 +, month = jan +, year = 1992 +, pages = "40--60" +, update = "98.07 bibrelex" } @techreport{ds-beafp-93 -, author = "H. Desaulniers and N. F. Stewart" -, title = "Backward error analysis for floating-point operations on rectilinear $r$-sets" -, type = "Technical {Report}" -, number = 816 -, institution = "Univ. Montreal" -, year = 1993 -, keywords = "Computer-aided design." -, update = "98.07 bibrelex" +, author = "H. Desaulniers and N. F. Stewart" +, title = "Backward error analysis for floating-point operations on rectilinear $r$-sets" +, type = "Technical {Report}" +, number = 816 +, institution = "Univ. Montreal" +, year = 1993 +, keywords = "Computer-aided design." +, update = "98.07 bibrelex" } @inproceedings{ds-qrrs-92 -, author = "H. Desaulniers and N. F. Stewart" -, title = "Quasi-rectilinear $r$-sets" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "52--58" -, cites = "r-mmrso-79, r-rrstm-80, rv-smcsr-83, m-ism-88, -isbfp-85, g-rssm-87, h-gsm-89, s-drpga-90, s-rsasf-91, ds-embrr-92, lth-csgpo-86, w-restr-88, m-rfldd-90, hhk-rsops-89, hk-prga-89, mn-fccrp-90i, r-cirfd-89, m-vigau-88p, w-aedfd-34, m-erf-34, a-efslc-67, l-tsas-64, ds-beafp-93, w-aep-65, k-sa-69, bs-msto-91, bs-iftmo-92, s-scctf-92, ZZZ" -, update = "98.07 bibrelex" +, author = "H. Desaulniers and N. F. Stewart" +, title = "Quasi-rectilinear $r$-sets" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "52--58" +, cites = "r-mmrso-79, r-rrstm-80, rv-smcsr-83, m-ism-88, -isbfp-85, g-rssm-87, h-gsm-89, s-drpga-90, s-rsasf-91, ds-embrr-92, lth-csgpo-86, w-restr-88, m-rfldd-90, hhk-rsops-89, hk-prga-89, mn-fccrp-90i, r-cirfd-89, m-vigau-88p, w-aedfd-34, m-erf-34, a-efslc-67, l-tsas-64, ds-beafp-93, w-aep-65, k-sa-69, bs-msto-91, bs-iftmo-92, s-scctf-92, ZZZ" +, update = "98.07 bibrelex" } @book{d-pp-44 -, author = "R. Descartes" -, title = "Principia Philosophiae" -, publisher = "Ludovicus Elzevirius" -, address = "Amsterdam" -, year = 1644 -, update = "00.03 bibrelex" +, author = "R. Descartes" +, title = "Principia Philosophiae" +, publisher = "Ludovicus Elzevirius" +, address = "Amsterdam" +, year = 1644 +, update = "00.03 bibrelex" } @phdthesis{d-tq-96 -, author = "P. Desnogu{\`e}s" -, title = "Triangulations et quadriques" -, type = "Th\`{e}se de doctorat en sciences" -, school = "Universit\'e de Nice-Sophia Antipolis" -, address = "France" -, year = 1996 -, url = "https://hal.inria.fr/tel-00771335" -, keywords = "doctoral thesis" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers" +, author = "P. Desnogu{\`e}s" +, title = "Triangulations et quadriques" +, type = "Th\`{e}se de doctorat en sciences" +, school = "Universit\'e de Nice-Sophia Antipolis" +, address = "France" +, year = 1996 +, url = "https://inria.hal.science/tel-00771335" +, keywords = "doctoral thesis" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers" } @inproceedings{dd-lothp-95 -, author = "Pascal Desnogu{\`e}s and Olivier Devillers" -, title = "A Locally Optimal Triangulation of the Hyperbolic Paraboloid" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "49--54" -, url = "https://hal.inria.fr/inria-00413229" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 jones" +, author = "Pascal Desnogu{\`e}s and Olivier Devillers" +, title = "A Locally Optimal Triangulation of the Hyperbolic Paraboloid" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "49--54" +, url = "https://inria.hal.science/inria-00413229" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 jones" } @inproceedings{dlm-mlrca-93 -, author = "A. Dessmark and A. Lingas and A. Maheshwari" -, title = "Multi-list ranking: complexity and applications" -, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 665 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "306--316" -, update = "93.05 smid" +, author = "A. Dessmark and A. Lingas and A. Maheshwari" +, title = "Multi-list ranking: complexity and applications" +, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 665 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "306--316" +, update = "93.05 smid" } @article{d-rrpa-86 -, author = "G. Dettori" -, title = "Recent results in polygonal approximation" -, journal = "Adv. Modell. Simul." -, volume = 6 -, number = 2 -, year = 1986 -, pages = "35--57" -, keywords = "polygons, approximation" -, update = "95.09 korneenko" +, author = "G. Dettori" +, title = "Recent results in polygonal approximation" +, journal = "Adv. Modell. Simul." +, volume = 6 +, number = 2 +, year = 1986 +, pages = "35--57" +, keywords = "polygons, approximation" +, update = "95.09 korneenko" } @inproceedings{d-ctdvc-84 -, author = "F. D{\'e}vai" -, title = "Complexity of two-dimensional visibility computations" -, booktitle = "Proc. 3rd European Conference on CAD'CAM and Computer Graphics" -, site = "Paris, France" -, volume = "827--841" -, year = 1984 -, update = "98.03 bibrelex" +, author = "F. D{\'e}vai" +, title = "Complexity of two-dimensional visibility computations" +, booktitle = "Proc. 3rd European Conference on CAD'CAM and Computer Graphics" +, site = "Paris, France" +, volume = "827--841" +, year = 1984 +, update = "98.03 bibrelex" } @phdthesis{d-cvc-81 -, author = "F. D{\'e}vai" -, title = "Complexity of visibility computations" -, school = "University of Budapest" -, address = "Budapest, Hungary" -, year = 1981 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "F. D{\'e}vai" +, title = "Complexity of visibility computations" +, school = "University of Budapest" +, address = "Budapest, Hungary" +, year = 1981 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{d-qbhle-86 -, author = "F. D{\'e}vai" -, title = "Quadratic bounds for hidden line elimination" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "269--275" -, keywords = "hidden line/surface elimination" -, cites = "a-nqimr-67, b-lbact-83, bm-gta-76, cgl-pgd-83, d-cvc-81, d-ctdvc-84, eos-calha-83t, f-cgpractice-85, f-ltehs-80, fw-ccmb-78, gm-ahle-69, hc-gi-52, l-shlpc-70, n-flsah-85, s-tsbhl-81, sss-cthsa-74, wa-hsrup-77, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex" +, author = "F. D{\'e}vai" +, title = "Quadratic bounds for hidden line elimination" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "269--275" +, keywords = "hidden line/surface elimination" +, cites = "a-nqimr-67, b-lbact-83, bm-gta-76, cgl-pgd-83, d-cvc-81, d-ctdvc-84, eos-calha-83t, f-cgpractice-85, f-ltehs-80, fw-ccmb-78, gm-ahle-69, hc-gi-52, l-shlpc-70, n-flsah-85, s-tsbhl-81, sss-cthsa-74, wa-hsrup-77, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex" } @article{ds-cchfs-79 -, author = "F. D{\'e}vai and T. Szendr{\'e}nyi" -, title = "Comments on convex hull of a finite set of points in two dimensions" -, journal = "Inform. Process. Lett." -, volume = 9 -, year = 1979 -, pages = "141--142" +, author = "F. D{\'e}vai and T. Szendr{\'e}nyi" +, title = "Comments on convex hull of a finite set of points in two dimensions" +, journal = "Inform. Process. Lett." +, volume = 9 +, year = 1979 +, pages = "141--142" } @book{d-icds-86 -, author = "R. L. Devaney" -, title = "Introduction to Chaotic Dynamical Systems" -, publisher = "Benjamin Cummins" -, year = 1986 -, update = "98.03 bibrelex" +, author = "R. L. Devaney" +, title = "Introduction to Chaotic Dynamical Systems" +, publisher = "Benjamin Cummins" +, year = 1986 +, update = "98.03 bibrelex" } @article{dd-idamd-82 -, author = "P. A. Devijver and M. Dekesel" -, title = "Insert and delete algorithms for maintaining dynamic {Delaunay} triangulations" -, journal = "Pattern Recogn. Lett." -, volume = 1 -, year = 1982 -, pages = "73--77" -, update = "93.05 freimer" +, author = "P. A. Devijver and M. Dekesel" +, title = "Insert and delete algorithms for maintaining dynamic {Delaunay} triangulations" +, journal = "Pattern Recogn. Lett." +, volume = 1 +, year = 1982 +, pages = "73--77" +, update = "93.05 freimer" } @book{dk-prsa-82 -, author = "P. A. Devijver and J. Kittler" -, title = "Pattern Recognition: {A} Statistical Approach" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1982 -, update = "97.03 schwarzkopf" +, author = "P. A. Devijver and J. Kittler" +, title = "Pattern Recognition: {A} Statistical Approach" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1982 +, update = "97.03 schwarzkopf" } @inproceedings{dm-cdtcp-82 -, author = "P. A. Devijver and S. Maybank" -, title = "On the computation of the {Delaunay} triangulation of a convex polygon" -, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." -, year = 1982 -, pages = "420--422" -, update = "94.09 lambert" +, author = "P. A. Devijver and S. Maybank" +, title = "On the computation of the {Delaunay} triangulation of a convex polygon" +, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." +, year = 1982 +, pages = "420--422" +, update = "94.09 lambert" } @article{d-ircg-96 -, author = "Olivier Devillers" -, title = "An introduction to randomization in computational geometry" -, journal = "Theoret. Comput. Sci." -, volume = 157 -, year = 1996 -, pages = "35--52" -, url = "https://hal.inria.fr/inria-00167202" -, cites = "as-solri-92, bd-rcuet-92, bdsty-arsol-92, bdt-schov-93, bt-hrodt-86, bt-rcdt-93, prisme-by-ga-95, ce-oails-92, cegss-cfals-93, c-ochaa-93, c-narsc-87, cms-frric-93, cs-arscg-89, prisme-2626, bds-lric-94, d-rysoa-92, dg-dbppl-93, dmt-fddtl-92, dty-dlals-92, dy-rchyd-93, gks-ricdv-92, ms-dplah-91, m-lavd-91, m-rmstd-91, m-rmstf-91, m-rmstl-91, m-cgitr-93, ol-mcp-81, ps-cgi-85, p-slpab-90, s-dmgsm-91, s-dmcpr-92, s-sfira-91, t-tdrac-93" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.05 smid, 96.01 devillers" -, abstract = "This paper is not a complete survey on randomized algorithms in computational geometry, but an introduction to this subject providing intuitions and references. In a first time, some basic ideas are illustrated by the sorting problem, and in a second time few results on computational geometry are briefly explained." +, author = "Olivier Devillers" +, title = "An introduction to randomization in computational geometry" +, journal = "Theoret. Comput. Sci." +, volume = 157 +, year = 1996 +, pages = "35--52" +, url = "https://inria.hal.science/inria-00167202" +, cites = "as-solri-92, bd-rcuet-92, bdsty-arsol-92, bdt-schov-93, bt-hrodt-86, bt-rcdt-93, prisme-by-ga-95, ce-oails-92, cegss-cfals-93, c-ochaa-93, c-narsc-87, cms-frric-93, cs-arscg-89, prisme-2626, bds-lric-94, d-rysoa-92, dg-dbppl-93, dmt-fddtl-92, dty-dlals-92, dy-rchyd-93, gks-ricdv-92, ms-dplah-91, m-lavd-91, m-rmstd-91, m-rmstf-91, m-rmstl-91, m-cgitr-93, ol-mcp-81, ps-cgi-85, p-slpab-90, s-dmgsm-91, s-dmcpr-92, s-sfira-91, t-tdrac-93" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.05 smid, 96.01 devillers" +, abstract = "This paper is not a complete survey on randomized algorithms in computational geometry, but an introduction to this subject providing intuitions and references. In a first time, some basic ideas are illustrated by the sorting problem, and in a second time few results on computational geometry are briefly explained." } @inproceedings{d-cgdc-96 -, author = "O. Devillers" -, title = "Computational geometry and discrete computations" -, booktitle = "Proc. 6th Discrete Geometry for Computer Imagery conf." -, series = "Lecture Notes Comput. Sci." -, volume = 1176 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "317--324" -, note = "(invited paper)" -, update = "02.03 devillers" +, author = "O. Devillers" +, title = "Computational geometry and discrete computations" +, booktitle = "Proc. 6th Discrete Geometry for Computer Imagery conf." +, series = "Lecture Notes Comput. Sci." +, volume = 1176 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "317--324" +, note = "(invited paper)" +, update = "02.03 devillers" } @inproceedings{d-iirdt-98 -, author = "Olivier Devillers" -, title = "Improved incremental randomized {Delaunay} triangulation" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "106--115" -, url = "https://hal.inria.fr/hal-01179446" -, archive = "XXX:cs.CG/9907024" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.11 devillers" -, abstract = "We propose a new data structure to compute the Delaunay triangulation of a set of points in the plane. It combines good worst case complexity, fast behavior on real data, and small memory occupation. The location structure is organized into several levels. The lowest level just consists of the triangulation, then each level contains the triangulation of a small sample of the levels below. Point location is done by marching in a triangulation to determine the nearest neighbor of the query at that level, then the march restarts from that neighbor at the level below. Using a small sample (3 {\%}) allows a small memory occupation; the march and the use of the nearest neighbor to change levels quickly locate the query." +, author = "Olivier Devillers" +, title = "Improved incremental randomized {Delaunay} triangulation" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "106--115" +, url = "https://inria.hal.science/hal-01179446" +, archive = "XXX:cs.CG/9907024" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.11 devillers" +, abstract = "We propose a new data structure to compute the Delaunay triangulation of a set of points in the plane. It combines good worst case complexity, fast behavior on real data, and small memory occupation. The location structure is organized into several levels. The lowest level just consists of the triangulation, then each level contains the triangulation of a small sample of the levels below. Point location is done by marching in a triangulation to determine the nearest neighbor of the query at that level, then the march restarts from that neighbor at the level below. Using a small sample (3 {\%}) allows a small memory occupation; the march and the use of the nearest neighbor to change levels quickly locate the query." } @phdthesis{d-mddtd-88 -, author = "Olivier Devillers" -, title = "M{\'e}thodes d'optimisation du trac{\'e} de rayon" -, school = "Universit{\'e} Paris Sud" -, address = "Paris, France" -, year = 1988 -, keywords = "doctoral thesis" -, update = "99.07 devillers, 98.07 bibrelex" +, author = "Olivier Devillers" +, title = "M{\'e}thodes d'optimisation du trac{\'e} de rayon" +, school = "Universit{\'e} Paris Sud" +, address = "Paris, France" +, year = 1988 +, keywords = "doctoral thesis" +, update = "99.07 devillers, 98.07 bibrelex" } @techreport{d-ddt-98 -, author = "Olivier Devillers" -, title = "On Deletion in {Delaunay} Triangulation" -, type = "Research {Report}" -, number = 3451 -, institution = "INRIA" -, year = 1998 -, precedes = "d-ddt-99" -, update = "99.11 bibrelex, 99.07 devillers, 98.11 devillers" -, abstract = "This paper present how space of spheres and shelling can be used to delete efficiently a point from d-dimensional triangulation. In 2-dimension, if k is the degree of the deleted vertex, the complexity is $O(k\log k)$, but we notice that this number apply only to low cost operations; time consuming computations are done only a linear number of times. This algorithm can be viewed as a variation of Heller algorithm which is popular in the geographic information system community. Unfortunately Heller algorithm is false as explained in this paper." +, author = "Olivier Devillers" +, title = "On Deletion in {Delaunay} Triangulation" +, type = "Research {Report}" +, number = 3451 +, institution = "INRIA" +, year = 1998 +, precedes = "d-ddt-99" +, update = "99.11 bibrelex, 99.07 devillers, 98.11 devillers" +, abstract = "This paper present how space of spheres and shelling can be used to delete efficiently a point from d-dimensional triangulation. In 2-dimension, if k is the degree of the deleted vertex, the complexity is $O(k\log k)$, but we notice that this number apply only to low cost operations; time consuming computations are done only a linear number of times. This algorithm can be viewed as a variation of Heller algorithm which is popular in the geographic information system community. Unfortunately Heller algorithm is false as explained in this paper." } @techreport{d-vrtdd-09 @@ -44323,38 +44323,38 @@ @techreport{d-vrtdd-09 , year = 2009 , type = "Research Report" , number = 7104 -, url = "https://hal.inria.fr/inria-00433107/" +, url = "https://inria.hal.science/inria-00433107/" } @inproceedings{d-ddt-99 -, author = "Olivier Devillers" -, title = "On Deletion in {Delaunay} Triangulation" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "181--188" -, url = "https://hal.inria.fr/hal-01179435" -, archive = "XXX:cs.CG/9907023" -, succeeds = "d-ddt-98" -, cites = "agss-ltacv-89, a-pdpaa-87, bbp-iayed-98scg, bd-irgo-95, bm-sdcs-71, c-bvdcp-86, ads-rdppw-98, d-iirdt-98, dmt-ssgtu-92i, dp-papaf-98, es-itfwr-96, gs-cdtp-78, h-taatm-90, l-tdam-97, m-smdnt-93, msz-frplw-96, obs-stcav-92, p-gcc-70, s-chdch-86, s-nmpgc-98" -, update = "99.11 bibrelex+devillers, 99.07 devillers" -, abstract = "This paper present how space of spheres and shelling can be used to delete efficiently a point from d-dimensional triangulation. In 2-dimension, if k is the degree of the deleted vertex, the complexity is $O(k\log k)$, but we notice that this number apply only to low cost operations; time consuming computations are done only a linear number of times. This algorithm can be viewed as a variation of Heller algorithm which is popular in the geographic information system community. Unfortunately Heller algorithm is false as explained in this paper." +, author = "Olivier Devillers" +, title = "On Deletion in {Delaunay} Triangulation" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "181--188" +, url = "https://inria.hal.science/hal-01179435" +, archive = "XXX:cs.CG/9907023" +, succeeds = "d-ddt-98" +, cites = "agss-ltacv-89, a-pdpaa-87, bbp-iayed-98scg, bd-irgo-95, bm-sdcs-71, c-bvdcp-86, ads-rdppw-98, d-iirdt-98, dmt-ssgtu-92i, dp-papaf-98, es-itfwr-96, gs-cdtp-78, h-taatm-90, l-tdam-97, m-smdnt-93, msz-frplw-96, obs-stcav-92, p-gcc-70, s-chdch-86, s-nmpgc-98" +, update = "99.11 bibrelex+devillers, 99.07 devillers" +, abstract = "This paper present how space of spheres and shelling can be used to delete efficiently a point from d-dimensional triangulation. In 2-dimension, if k is the degree of the deleted vertex, the complexity is $O(k\log k)$, but we notice that this number apply only to low cost operations; time consuming computations are done only a linear number of times. This algorithm can be viewed as a variation of Heller algorithm which is popular in the geographic information system community. Unfortunately Heller algorithm is false as explained in this paper." } % also claimed pages = "621--635" @article{d-rysoa-92 -, author = "Olivier Devillers" -, title = "Randomization yields simple {$O(n \log^{*} n)$} algorithms for difficult {$\Omega(n)$} problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 1 -, year = 1992 -, pages = "97--111" -, url = "https://hal.inria.fr/inria-00167206" -, archive = "XXX:cs.CG/9810007" -, keywords = "randomized algorithms, Delaunay triangulation, skeleton, medial axis, minimum spanning tree, simple polygon" -, succeeds = "d-sroa-91" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" -, abstract = "We use here the results on the influence graph +, author = "Olivier Devillers" +, title = "Randomization yields simple {$O(n \log^{*} n)$} algorithms for difficult {$\Omega(n)$} problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 1 +, year = 1992 +, pages = "97--111" +, url = "https://inria.hal.science/inria-00167206" +, archive = "XXX:cs.CG/9810007" +, keywords = "randomized algorithms, Delaunay triangulation, skeleton, medial axis, minimum spanning tree, simple polygon" +, succeeds = "d-sroa-91" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, abstract = "We use here the results on the influence graph \cite{bdsty-arsol-92} to adapt them for particular cases where additional information is available. In some cases, it is possible to improve the expected randomized complexity of algorithms from $O(n\log n)$ to @@ -44365,56 +44365,56 @@ @article{d-rysoa-92 } @techreport{d-reidt-92 -, author = "Olivier Devillers" -, title = "Robust and efficient implementation of the {Delaunay} tree" -, type = "Report" -, number = 1619 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1992 -, keywords = "randomized algorithms, Delaunay triangulation, practical issue, degenerate cases" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Olivier Devillers" +, title = "Robust and efficient implementation of the {Delaunay} tree" +, type = "Report" +, number = 1619 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1992 +, keywords = "randomized algorithms, Delaunay triangulation, practical issue, degenerate cases" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @inproceedings{d-sroa-91 -, author = "Olivier Devillers" -, title = "Simple randomized {$O(n \log^{*} n)$} algorithms" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "141--144" -, keywords = "randomized algorithms, Delaunay triangulation, skeleton, medial axis, minimum spanning tree, simple polygon" -, precedes = "d-rysoa-92" -, cites = "agss-ltacv-89, bdsty-olgag-91a, c-tsplt-90i, cs-arscg-89, s-sfira-90, ZZZ" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Olivier Devillers" +, title = "Simple randomized {$O(n \log^{*} n)$} algorithms" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "141--144" +, keywords = "randomized algorithms, Delaunay triangulation, skeleton, medial axis, minimum spanning tree, simple polygon" +, precedes = "d-rysoa-92" +, cites = "agss-ltacv-89, bdsty-olgag-91a, c-tsplt-90i, cs-arscg-89, s-sfira-90, ZZZ" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @techreport{d-scspa-90 -, author = "Olivier Devillers" -, title = "Simultaneous containment of several polygons: analysis of the contact configurations" -, type = "Report" -, number = 1179 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1990 -, keywords = "polygon placement, contact configurations" -, precedes = "d-scspa-93" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 94.05 devillers" +, author = "Olivier Devillers" +, title = "Simultaneous containment of several polygons: analysis of the contact configurations" +, type = "Report" +, number = 1179 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1990 +, keywords = "polygon placement, contact configurations" +, precedes = "d-scspa-93" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 94.05 devillers" } @article{d-scspa-93 -, author = "Olivier Devillers" -, title = "Simultaneous containment of several polygons: analysis of the contact configurations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, number = 4 -, year = 1993 -, pages = "429--442" -, url = "http://www-sop.inria.fr/prisme/publis/d-scspa-93.ps.gz" -, keywords = "motion planning, polygon containment, robotics" -, succeeds = "d-scspa-90" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 94.05 devillers" -, abstract = "The main concern of this paper is the detection of double +, author = "Olivier Devillers" +, title = "Simultaneous containment of several polygons: analysis of the contact configurations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, number = 4 +, year = 1993 +, pages = "429--442" +, url = "http://www-sop.inria.fr/prisme/publis/d-scspa-93.ps.gz" +, keywords = "motion planning, polygon containment, robotics" +, succeeds = "d-scspa-90" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 94.05 devillers" +, abstract = "The main concern of this paper is the detection of double contact configurations for some polygons moving in translation in a polygonal environment. We first establish some general properties about such configurations and give conditions of existence of double contacts @@ -44429,16 +44429,16 @@ @article{d-scspa-93 } @inproceedings{df-sabls-93 -, author = "Olivier Devillers and Andreas Fabri" -, title = "Scalable Algorithms for Bichromatic Line Segment Intersection Problems on Coarse Grained Multicomputers" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, year = 1993 -, pages = "277--288" -, precedes = "df-sabls-96" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers+milone+mitchell+smid, 93.05 jones" -, abstract = "We present output-sensitive scalable parallel algorithms +, author = "Olivier Devillers and Andreas Fabri" +, title = "Scalable Algorithms for Bichromatic Line Segment Intersection Problems on Coarse Grained Multicomputers" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, year = 1993 +, pages = "277--288" +, precedes = "df-sabls-96" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.09 devillers+milone+mitchell+smid, 93.05 jones" +, abstract = "We present output-sensitive scalable parallel algorithms for bichromatic line segment intersection problems for the Coarse Grained Multicomputer model. Under the assumption that $n\geq p^2$, where $n$ is the number of line segments and $p$ the number of processors, we obtain an @@ -44451,17 +44451,17 @@ @inproceedings{df-sabls-93 } @article{df-sabls-96 -, author = "Olivier Devillers and Andreas Fabri" -, title = "Scalable algorithms for bichromatic line segment intersection problems on coarse grained multicomputers" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "487--506" -, url = "http://www-sop.inria.fr/prisme/publis/df-sabls-96.ps.gz" -, succeeds = "df-sabls-93" -, cites = "adh-cgaiaccl-93, b-sna-68, bt-pdcnm-89, cegs-ablsp-89, cp-dsnlthrc-90, dfr-spgac-93, gsg-pmvsppsp-92, grand-ch, gl-rrft-89, l-ipaa-92, ps-crrbsi-92, ps-cgi-85, rv-ltslsn-87" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers" -, abstract = "We present output-sensitive scalable parallel algorithms +, author = "Olivier Devillers and Andreas Fabri" +, title = "Scalable algorithms for bichromatic line segment intersection problems on coarse grained multicomputers" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "487--506" +, url = "http://www-sop.inria.fr/prisme/publis/df-sabls-96.ps.gz" +, succeeds = "df-sabls-93" +, cites = "adh-cgaiaccl-93, b-sna-68, bt-pdcnm-89, cegs-ablsp-89, cp-dsnlthrc-90, dfr-spgac-93, gsg-pmvsppsp-92, grand-ch, gl-rrft-89, l-ipaa-92, ps-crrbsi-92, ps-cgi-85, rv-ltslsn-87" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 97.03 devillers" +, abstract = "We present output-sensitive scalable parallel algorithms for bichromatic line segment intersection problems for the Coarse Grained Multicomputer model. Under the assumption that $n\geq p^2$, where $n$ is the number of line segments and $p$ the number of processors, we obtain an @@ -44474,359 +44474,359 @@ @article{df-sabls-96 } @inproceedings{dfmt-amafe-00 -, author = "Olivier Devillers and Alexandra Fronville and Bernard Mourrain and Monique Teillaud" -, title = "Algebraic methods and arithmetic filtering for exact predicates on circle arcs" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "139--147" -, cites = "bp-rpsis-97, bs-ealcs-99, bv-earic-99, svy-crm-99, clo-iva-92, lpt-rpqid-99, p-gacg-99p-iaeia-99, y-tegc-97, y-fpaa-00" -, update = "02.03 devillers, 00.11 smid, 00.07 devillers, 00.03 devillers" -, abstract = "The purpose of this paper is to present a new method to design exact geometric predicates in algorithms dealing with curved objects such as circular arcs. We focus on the comparison of the abscissae of two intersection points of circle arcs, which is known to be a difficult predicate involved in the computation of arrangements of circle arcs. We present an algorithm for deciding the $x$-order of intersections from the signs of the coefficients of a polynomial, obtained by a general approach based on resultants. This method allows the use of efficient arithmetic and filtering techniques leading to fast implementation as shown by the experimental results." +, author = "Olivier Devillers and Alexandra Fronville and Bernard Mourrain and Monique Teillaud" +, title = "Algebraic methods and arithmetic filtering for exact predicates on circle arcs" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "139--147" +, cites = "bp-rpsis-97, bs-ealcs-99, bv-earic-99, svy-crm-99, clo-iva-92, lpt-rpqid-99, p-gacg-99p-iaeia-99, y-tegc-97, y-fpaa-00" +, update = "02.03 devillers, 00.11 smid, 00.07 devillers, 00.03 devillers" +, abstract = "The purpose of this paper is to present a new method to design exact geometric predicates in algorithms dealing with curved objects such as circular arcs. We focus on the comparison of the abscissae of two intersection points of circle arcs, which is known to be a difficult predicate involved in the computation of arrangements of circle arcs. We present an algorithm for deciding the $x$-order of intersections from the signs of the coefficients of a polynomial, obtained by a general approach based on resultants. This method allows the use of efficient arithmetic and filtering techniques leading to fast implementation as shown by the experimental results." } @inproceedings{dfmt-amafe-00i -, author = "Olivier Devillers and Alexandra Fronville and Bernard Mourrain and Monique Teillaud" -, title = "Algebraic Methods and Arithmetic Filtering for Exact Predicates on Circle Arcs" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "117--120" -, update = "02.03 devillers, 00.03 bibrelex" +, author = "Olivier Devillers and Alexandra Fronville and Bernard Mourrain and Monique Teillaud" +, title = "Algebraic Methods and Arithmetic Filtering for Exact Predicates on Circle Arcs" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "117--120" +, update = "02.03 devillers, 00.03 bibrelex" } @techreport{dg-cgtp-99 -, author = "Olivier Devillers and Pierre-Marie Gandoin" -, title = "Compression g\'eom\'etrique pour une transmission progressive" -, type = "Rapport de recherche" -, number = 3766 -, institution = "INRIA" -, year = 1999 -, url = "http://www-sop.inria.fr/prisme/biblio/" -, archive = "XXX:cs.CG/9909018" -, cites = "bb-srmua-97, bg-tdrcs-93, sk-ltrdt-97" -, update = "99.11 devillers" -, abstract = "The compression of geometric structures is a relatively new field of data compression. Since about 1995, several articles have dealt with the coding of meshes, using for most of them the following approach: the vertices of the mesh are coded in an order such that it contains partially the topology of the mesh. In the same time, some simple rules attempt to predict the position of the current vertex from the positions of its neighbours that have been previously coded. In this article, we describe a compression algorithm whose principle is completely different: the order of the vertices is used to compress their coordinates, and then the topology of the mesh is reconstructed from the vertices. This algorithm, particularly suited for terrain models, achieves compression factors that are slightly greater than those of the currently available algorithms, and moreover, it allows progressive and interactive transmission of the meshes." +, author = "Olivier Devillers and Pierre-Marie Gandoin" +, title = "Compression g\'eom\'etrique pour une transmission progressive" +, type = "Rapport de recherche" +, number = 3766 +, institution = "INRIA" +, year = 1999 +, url = "http://www-sop.inria.fr/prisme/biblio/" +, archive = "XXX:cs.CG/9909018" +, cites = "bb-srmua-97, bg-tdrcs-93, sk-ltrdt-97" +, update = "99.11 devillers" +, abstract = "The compression of geometric structures is a relatively new field of data compression. Since about 1995, several articles have dealt with the coding of meshes, using for most of them the following approach: the vertices of the mesh are coded in an order such that it contains partially the topology of the mesh. In the same time, some simple rules attempt to predict the position of the current vertex from the positions of its neighbours that have been previously coded. In this article, we describe a compression algorithm whose principle is completely different: the order of the vertices is used to compress their coordinates, and then the topology of the mesh is reconstructed from the vertices. This algorithm, particularly suited for terrain models, achieves compression factors that are slightly greater than those of the currently available algorithms, and moreover, it allows progressive and interactive transmission of the meshes." } @inproceedings{dg-cgit-00 -, author = "Olivier Devillers and Pierre-Marie Gandoin" -, title = "Geometric Compression for Interactive Transmission" -, booktitle = "Proc. of IEEE Visualization 2000" -, year = 2000 -, pages = "319--326" -, update = "01.11 devillers" +, author = "Olivier Devillers and Pierre-Marie Gandoin" +, title = "Geometric Compression for Interactive Transmission" +, booktitle = "Proc. of IEEE Visualization 2000" +, year = 2000 +, pages = "319--326" +, update = "01.11 devillers" } @inproceedings{dg-dbppl-93 -, author = "Olivier Devillers and Mordecai Golin" -, title = "Dog Bites Postman: {Point} Location in the Moving {Voronoi} Diagram and Related Problems" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, nickname = "ESA '93" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "133--144" -, keywords = "Voronoi, Delaunay, moving points, randomized algorithms, dynamic algorithms, localisation" -, precedes = "dg-dbppl-98" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers+smid, 94.01 smid, 93.09 devillers+milone+mitchell" +, author = "Olivier Devillers and Mordecai Golin" +, title = "Dog Bites Postman: {Point} Location in the Moving {Voronoi} Diagram and Related Problems" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, nickname = "ESA '93" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "133--144" +, keywords = "Voronoi, Delaunay, moving points, randomized algorithms, dynamic algorithms, localisation" +, precedes = "dg-dbppl-98" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers+smid, 94.01 smid, 93.09 devillers+milone+mitchell" } @article{dg-dbppl-98 -, author = "Olivier Devillers and Mordecai Golin" -, title = "Dog Bites Postman: Point Location in the Moving {Voronoi} Diagram and Related Problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "321--342" -, url = "http://www-sop.inria.fr/prisme/publis/dg-dbppl.ps.gz" -, succeeds = "dg-dbppl-93" -, cites = "ar-vdmph-92, a-vdsfg-91, bdsty-arsol-92, bt-rcdt-93, c-bvdcp-86, cms-frric-92i, cs-arscg-89, d-rysoa-92, dg-dbppl-93, dmt-fddtl-92, dty-dlals-92, egs-oplms-86, fl-vdmpp-91, gt-dtdpl-91, gmr-vdmpp-91, gks-ricdv-92, iklm-cdf3s-93, m-rmstd-91, ms-dplah-91, p-pplr-90, r-dvd-91, r-vdds-92, rn-dvdmp-91, s-dmgsm-91, s-barga-91, s-vdr-92" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.07 devillers" -, abstract = "In this paper, we discuss two variations of the two-dimensional post-office problem that arise when the post-offices are $n$ postmen moving with constant velocities. The first variation addresses the question: given a point $q_0$ and time $t_0$ who is the nearest postman to $q_0$ at time $t_0?$ We present a randomized incremental data structure that answers the query in expected $O(\log^2 n)$ time. The second variation views a query point as a dog searching for a postman to bite and finds the postman that a dog running with speed $v_d$ could reach first. While it is quite straightforward to design a data structure for the first problem, designing one for the second appears more difficult. We show that if the dog is quicker than all of the postmen then there is a nice correspondence between the problems. This correspondence will permit us to use the data structure developed for the first problem to solve the second one in $O(\log^2 n)$ time as well. The proposed structure is semi-dynamic, that is the set of postmen can be modified by inserting new postmen. A fully dynamic structure that also supports deletions can be obtained, but in that case the query time becomes $O(\log^3 n)$." +, author = "Olivier Devillers and Mordecai Golin" +, title = "Dog Bites Postman: Point Location in the Moving {Voronoi} Diagram and Related Problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "321--342" +, url = "http://www-sop.inria.fr/prisme/publis/dg-dbppl.ps.gz" +, succeeds = "dg-dbppl-93" +, cites = "ar-vdmph-92, a-vdsfg-91, bdsty-arsol-92, bt-rcdt-93, c-bvdcp-86, cms-frric-92i, cs-arscg-89, d-rysoa-92, dg-dbppl-93, dmt-fddtl-92, dty-dlals-92, egs-oplms-86, fl-vdmpp-91, gt-dtdpl-91, gmr-vdmpp-91, gks-ricdv-92, iklm-cdf3s-93, m-rmstd-91, ms-dplah-91, p-pplr-90, r-dvd-91, r-vdds-92, rn-dvdmp-91, s-dmgsm-91, s-barga-91, s-vdr-92" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.07 devillers" +, abstract = "In this paper, we discuss two variations of the two-dimensional post-office problem that arise when the post-offices are $n$ postmen moving with constant velocities. The first variation addresses the question: given a point $q_0$ and time $t_0$ who is the nearest postman to $q_0$ at time $t_0?$ We present a randomized incremental data structure that answers the query in expected $O(\log^2 n)$ time. The second variation views a query point as a dog searching for a postman to bite and finds the postman that a dog running with speed $v_d$ could reach first. While it is quite straightforward to design a data structure for the first problem, designing one for the second appears more difficult. We show that if the dog is quicker than all of the postmen then there is a nice correspondence between the problems. This correspondence will permit us to use the data structure developed for the first problem to solve the second one in $O(\log^2 n)$ time as well. The proposed structure is semi-dynamic, that is the set of postmen can be modified by inserting new postmen. A fully dynamic structure that also supports deletions can be obtained, but in that case the query time becomes $O(\log^3 n)$." } @inproceedings{dg-iafch-94 -, author = "Olivier Devillers and Mordecai Golin" -, title = "Incremental Algorithms for Finding the Convex Hulls of Circles and the Lower Envelopes of Parabolas" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "153--158" -, precedes = "dg-iafch-95" -, cites = "a-sdcgp-85, bcddy-acchs-92, r-chada-92, ZZZ" -, update = "00.03 bibrelex, 99.07 devillers, 98.11 bibrelex, 96.01 devillers, 94.09 jones" +, author = "Olivier Devillers and Mordecai Golin" +, title = "Incremental Algorithms for Finding the Convex Hulls of Circles and the Lower Envelopes of Parabolas" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "153--158" +, precedes = "dg-iafch-95" +, cites = "a-sdcgp-85, bcddy-acchs-92, r-chada-92, ZZZ" +, update = "00.03 bibrelex, 99.07 devillers, 98.11 bibrelex, 96.01 devillers, 94.09 jones" } @article{dg-iafch-95 -, author = "Olivier Devillers and Mordecai Golin" -, title = "Incremental Algorithms for Finding the Convex Hulls of Circles and the Lower Envelopes of Parabolas" -, journal = "Inform. Process. Lett." -, volume = 56 -, number = 3 -, year = 1995 -, pages = "157--164" -, url = "https://hal.inria.fr/inria-00074391" -, succeeds = "dg-iafch-94" -, cites = "a-dcgp-85, bcddy-acchs-92, r-chada-92" -, update = "99.11 devillers, 99.07 devillers, 96.01 devillers" -, abstract = "The existing $O(n \log n)$ algorithms for finding the convex hulls of circles and the lower envelope of parabolas follow the divide-and-conquer paradigm. The difficulty with developing incremental algorithms for these problems is that the introduction of a new circle or parabola can cause $\Theta(n)$ structural changes, leading to $\Theta(n^2)$ total structural changes during the running of the algorithm. In this note we examine the geometry of these problems and show that, if the circles or parabolas are first sorted by appropriate parameters before constructing the convex hull or lower envelope incrementally, then each new addition may cause at most 3 changes in an amortized sense. These observations are then used to develop $O(n \log n)$ incremental algorithms for these problems." +, author = "Olivier Devillers and Mordecai Golin" +, title = "Incremental Algorithms for Finding the Convex Hulls of Circles and the Lower Envelopes of Parabolas" +, journal = "Inform. Process. Lett." +, volume = 56 +, number = 3 +, year = 1995 +, pages = "157--164" +, url = "https://inria.hal.science/inria-00074391" +, succeeds = "dg-iafch-94" +, cites = "a-dcgp-85, bcddy-acchs-92, r-chada-92" +, update = "99.11 devillers, 99.07 devillers, 96.01 devillers" +, abstract = "The existing $O(n \log n)$ algorithms for finding the convex hulls of circles and the lower envelope of parabolas follow the divide-and-conquer paradigm. The difficulty with developing incremental algorithms for these problems is that the introduction of a new circle or parabola can cause $\Theta(n)$ structural changes, leading to $\Theta(n^2)$ total structural changes during the running of the algorithm. In this note we examine the geometry of these problems and show that, if the circles or parabolas are first sorted by appropriate parameters before constructing the convex hull or lower envelope incrementally, then each new addition may cause at most 3 changes in an amortized sense. These observations are then used to develop $O(n \log n)$ incremental algorithms for these problems." } @article{dgks-qvdmp-96 -, author = "Olivier Devillers and Mordecai Golin and Klara Kedem and Stefan Schirra" -, title = "Queries on {Voronoi} Diagrams of Moving Points" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "315--327" -, url = "https://dx.doi.org/10.1016/0925-7721(95)00053-4" -, succeeds = "dgks-rdqvd-94i" -, cites = "ar-vdmph-92, c-sssl-86, dg-dbppl-93, dsst-mdsp-89, fl-vdmpp-91, gt-dtdpl-91, gks-ricdv-92, gmr-vdmpp-91, m-apcad-83, r-vdds-90, r-dvd-91, rn-dvdmp-91, st-pplup-86, sa-dsstg-95, s-vdr-92" -, update = "99.11 devillers, 99.07 devillers, 97.03 devillers+smid" -, abstract = "Suppose we are given $n$ moving postmen described by their motion equations $p_i(t) = s_i + v_it,$ $i=1,\ldots, n$, where $s_i \in R^2$ is the position of the $i$'th postman at time $t=0$, and $v_i \in R^2$ is his velocity. The problem we address is how to preprocess the postmen data so as to be able to efficiently answer two types of nearest-neighbor queries. The first one asks ``who is the nearest postman at time $t_q$ to a dog located at point $s_q$. In the second type a query dog is located at point $s_q$ at time $t_q$, its speed is $v_q>|v_i|$ (for all $i=1, \ldots , n$), and we want to know which postman the dog can catch first. The first type of query is relatively simple to address, the second type at first seems much more complicated. We show that the problems are very closely related, with efficient solutions to the first type of query leading to efficient solutions to the second. We then present two solutions to these problems, with tradeoff between preprocessing time and query time. Both solutions use deterministic data structures." +, author = "Olivier Devillers and Mordecai Golin and Klara Kedem and Stefan Schirra" +, title = "Queries on {Voronoi} Diagrams of Moving Points" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "315--327" +, url = "https://dx.doi.org/10.1016/0925-7721(95)00053-4" +, succeeds = "dgks-rdqvd-94i" +, cites = "ar-vdmph-92, c-sssl-86, dg-dbppl-93, dsst-mdsp-89, fl-vdmpp-91, gt-dtdpl-91, gks-ricdv-92, gmr-vdmpp-91, m-apcad-83, r-vdds-90, r-dvd-91, rn-dvdmp-91, st-pplup-86, sa-dsstg-95, s-vdr-92" +, update = "99.11 devillers, 99.07 devillers, 97.03 devillers+smid" +, abstract = "Suppose we are given $n$ moving postmen described by their motion equations $p_i(t) = s_i + v_it,$ $i=1,\ldots, n$, where $s_i \in R^2$ is the position of the $i$'th postman at time $t=0$, and $v_i \in R^2$ is his velocity. The problem we address is how to preprocess the postmen data so as to be able to efficiently answer two types of nearest-neighbor queries. The first one asks ``who is the nearest postman at time $t_q$ to a dog located at point $s_q$. In the second type a query dog is located at point $s_q$ at time $t_q$, its speed is $v_q>|v_i|$ (for all $i=1, \ldots , n$), and we want to know which postman the dog can catch first. The first type of query is relatively simple to address, the second type at first seems much more complicated. We show that the problems are very closely related, with efficient solutions to the first type of query leading to efficient solutions to the second. We then present two solutions to these problems, with tradeoff between preprocessing time and query time. Both solutions use deterministic data structures." } @techreport{dgks-rdqvd-94t -, author = "Olivier Devillers and Mordecai Golin and Klara Kedem and Stefan Schirra" -, title = "Revenge of the Dog: Queries on {Voronoi} Diagrams of Moving Points" -, type = "Report" -, number = "MPI-I-94-149" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, note = "also INRIA-2329" -, precedes = "dgks-rdqvd-94i" -, update = "99.07 devillers, 97.03 devillers, 95.01 smid" +, author = "Olivier Devillers and Mordecai Golin and Klara Kedem and Stefan Schirra" +, title = "Revenge of the Dog: Queries on {Voronoi} Diagrams of Moving Points" +, type = "Report" +, number = "MPI-I-94-149" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, note = "also INRIA-2329" +, precedes = "dgks-rdqvd-94i" +, update = "99.07 devillers, 97.03 devillers, 95.01 smid" } @inproceedings{dgks-rdqvd-94i -, author = "Olivier Devillers and Mordecai Golin and K. Kedem and S. Schirra" -, title = "Revenge of the Dog: Queries on {Voronoi} Diagrams of Moving Points" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "122--127" -, succeeds = "dgks-rdqvd-94t" -, precedes = "dgks-qvdmp-96" -, cites = "c-sssl-86, dg-dbppl-93, dsst-mdsp-89, fl-vdmpp-91, gks-ricdv-92, gmr-vdmpp-92, gt-dtdpl-91, m-apcad-83, st-pplup-86, ZZZ" -, update = "99.11 bibrelex, 99.07 devillers, 98.11 bibrelex, 97.03 devillers+smid, 95.01 smid, 94.09 jones" +, author = "Olivier Devillers and Mordecai Golin and K. Kedem and S. Schirra" +, title = "Revenge of the Dog: Queries on {Voronoi} Diagrams of Moving Points" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "122--127" +, succeeds = "dgks-rdqvd-94t" +, precedes = "dgks-qvdmp-96" +, cites = "c-sssl-86, dg-dbppl-93, dsst-mdsp-89, fl-vdmpp-91, gks-ricdv-92, gmr-vdmpp-92, gt-dtdpl-91, m-apcad-83, st-pplup-86, ZZZ" +, update = "99.11 bibrelex, 99.07 devillers, 98.11 bibrelex, 97.03 devillers+smid, 95.01 smid, 94.09 jones" } @article{dg-sb-01 -, author = "Olivier Devillers and Philippe Guigue" -, title = "The shuffling buffer" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "555--572" -, update = "02.03 devillers" +, author = "Olivier Devillers and Philippe Guigue" +, title = "The shuffling buffer" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "555--572" +, update = "02.03 devillers" } @article{dk-olbps-99 -, author = "Olivier Devillers and Matthew Katz" -, title = "Optimal Line Bipartitions of Point Sets" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, year = 1999 -, pages = "39--51" -, url = "https://dx.doi.org/10.1142/S0218195999000042" -, succeeds = "dk-olbps-96" -, cites = "as-pglp-94, abky-cabmm-88, a-dp-86, cms-frric-93, gks-sgsop-95, hr-tcpp-93, hs-ftp-91, jk-eaetc-94, k-iagoe-95, ks-ebago-93, mw-fobpp-91, ms-ppgmm-91, ol-mcp-81, ps-cgi-85, rww-obps-92, s-nlap2-96" -, update = "99.11 devillers, 99.07 devillers, 99.03 devillers, 97.11 katz" -, abstract = "Let $S$ be a set of $n$ points in the plane. We study the following problem: Partition $S$ by a line into two subsets $S_a$ and $S_b$ such that $max\{f(S_a), f(S_b)\}$ is minimal, where $f$ is any monotone function defined over $2^S$. We first present a solution to the case where the points in $S$ are the vertices of a convex polygon and apply it to some common cases --- $f(S')$ is the perimeter, area, or width of the convex hull of $S' \subseteq S$ --- to obtain linear solutions (or $O(n\log n)$ solutions if the convex hull of $S$ is not given) to the corresponding problems. This solution is based on an efficient procedure for finding a minimal entry in matrices of some special type, which we believe is of independent interest. For the general case we present a linear space solution which is in some sense output sensitive. It yields solutions to the perimeter and area cases that are never slower and often faster than the best previous solutions." +, author = "Olivier Devillers and Matthew Katz" +, title = "Optimal Line Bipartitions of Point Sets" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, year = 1999 +, pages = "39--51" +, url = "https://dx.doi.org/10.1142/S0218195999000042" +, succeeds = "dk-olbps-96" +, cites = "as-pglp-94, abky-cabmm-88, a-dp-86, cms-frric-93, gks-sgsop-95, hr-tcpp-93, hs-ftp-91, jk-eaetc-94, k-iagoe-95, ks-ebago-93, mw-fobpp-91, ms-ppgmm-91, ol-mcp-81, ps-cgi-85, rww-obps-92, s-nlap2-96" +, update = "99.11 devillers, 99.07 devillers, 99.03 devillers, 97.11 katz" +, abstract = "Let $S$ be a set of $n$ points in the plane. We study the following problem: Partition $S$ by a line into two subsets $S_a$ and $S_b$ such that $max\{f(S_a), f(S_b)\}$ is minimal, where $f$ is any monotone function defined over $2^S$. We first present a solution to the case where the points in $S$ are the vertices of a convex polygon and apply it to some common cases --- $f(S')$ is the perimeter, area, or width of the convex hull of $S' \subseteq S$ --- to obtain linear solutions (or $O(n\log n)$ solutions if the convex hull of $S$ is not given) to the corresponding problems. This solution is based on an efficient procedure for finding a minimal entry in matrices of some special type, which we believe is of independent interest. For the general case we present a linear space solution which is in some sense output sensitive. It yields solutions to the perimeter and area cases that are never slower and often faster than the best previous solutions." } @inproceedings{dk-olbps-96 -, author = "Olivier Devillers and Matthew J. Katz" -, title = "Optimal line bipartitions of point sets" -, booktitle = "Proc. 7th Annu. Internat. Sympos. Algorithms Comput." -, year = 1996 -, pages = "45--54" -, precedes = "dk-olbps-99" -, update = "99.07 devillers, 99.03 devillers, 97.11 katz" +, author = "Olivier Devillers and Matthew J. Katz" +, title = "Optimal line bipartitions of point sets" +, booktitle = "Proc. 7th Annu. Internat. Sympos. Algorithms Comput." +, year = 1996 +, pages = "45--54" +, precedes = "dk-olbps-99" +, update = "99.07 devillers, 99.03 devillers, 97.11 katz" } @inproceedings{dlpt-ccpps-97 -, author = "Olivier Devillers and Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" -, title = "Checking the Convexity of Polytopes and the Planarity of Subdivisions" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "186--199" -, precedes = "dlpt-ccpps-98" -, update = "99.07 bibrelex, 99.03 devillers, 98.07 tamassia+vismara" +, author = "Olivier Devillers and Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" +, title = "Checking the Convexity of Polytopes and the Planarity of Subdivisions" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "186--199" +, precedes = "dlpt-ccpps-98" +, update = "99.07 bibrelex, 99.03 devillers, 98.07 tamassia+vismara" } @article{dlpt-ccpps-98 -, author = "Olivier Devillers and Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" -, title = "Checking the Convexity of Polytopes and the Planarity of Subdivisions" -, journal = "Comput. Geom. Theory Appl." -, volume = 11 -, year = 1998 -, pages = "187--208" -, url = "https://dx.doi.org/10.1016/S0925-7721(98)00039-X" -, keywords = "graph drawing, planar, straight-line, checking" -, succeeds = "dlpt-ccpps-97" -, cites = "-dcgs-, bbdgt-ccgg-97, bo-arcgi-79, bk-dpcw-95, b-ecvdl-96, c-tsplt-91a, dtv-olcpt-95, dtv-olcpt-95t, dv-aptg-96, f-slrpg-48, glm-othsr-96, h-gt-72, ht-ept-74, k-eops-88, ll-abgtc-87, lpt-rpqid-97, lpt-rpqid-99, mn-cgs-96, mnssssu-cgpvg-96, mnssssu-cgpvg-97, swm-ccr-95, y-tegc-97" -, update = "99.11 devillers, 99.03 devillers, 98.11 tamassia" -, abstract = "This paper considers the problem of verifying the correctness of geometric structures. In particular, we design simple optimal checkers for convex polytopes in two and higher dimensions, and for various types of planar subdivisions, such as triangulations, Delaunay triangulations, and convex subdivisions. Their performance is analyzed also in terms of the algorithmic degree, which characterizes the arithmetic precision required." +, author = "Olivier Devillers and Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" +, title = "Checking the Convexity of Polytopes and the Planarity of Subdivisions" +, journal = "Comput. Geom. Theory Appl." +, volume = 11 +, year = 1998 +, pages = "187--208" +, url = "https://dx.doi.org/10.1016/S0925-7721(98)00039-X" +, keywords = "graph drawing, planar, straight-line, checking" +, succeeds = "dlpt-ccpps-97" +, cites = "-dcgs-, bbdgt-ccgg-97, bo-arcgi-79, bk-dpcw-95, b-ecvdl-96, c-tsplt-91a, dtv-olcpt-95, dtv-olcpt-95t, dv-aptg-96, f-slrpg-48, glm-othsr-96, h-gt-72, ht-ept-74, k-eops-88, ll-abgtc-87, lpt-rpqid-97, lpt-rpqid-99, mn-cgs-96, mnssssu-cgpvg-96, mnssssu-cgpvg-97, swm-ccr-95, y-tegc-97" +, update = "99.11 devillers, 99.03 devillers, 98.11 tamassia" +, abstract = "This paper considers the problem of verifying the correctness of geometric structures. In particular, we design simple optimal checkers for convex polytopes in two and higher dimensions, and for various types of planar subdivisions, such as triangulations, Delaunay triangulations, and convex subdivisions. Their performance is analyzed also in terms of the algorithmic degree, which characterizes the arithmetic precision required." } @techreport{dmt-fddtl-91t -, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" -, title = "Fully dynamic {Delaunay} triangulation in logarithmic expected time per operation" -, type = "Technical Report" -, number = 1349 -, institution = "INRIA" -, year = 1991 -, succeeds = "dmt-fddtl-92" -, precedes = "dmt-fddtl-91" -, update = "99.07 devillers, 98.11 bibrelex" +, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" +, title = "Fully dynamic {Delaunay} triangulation in logarithmic expected time per operation" +, type = "Technical Report" +, number = 1349 +, institution = "INRIA" +, year = 1991 +, succeeds = "dmt-fddtl-92" +, precedes = "dmt-fddtl-91" +, update = "99.07 devillers, 98.11 bibrelex" } @inproceedings{dmt-fddtl-91 -, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" -, title = "Fully dynamic {Delaunay} triangulation in logarithmic expected time per operation" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "42--53" -, keywords = "randomized algorithms, Delaunay triangulation, dynamizing datastructures" -, succeeds = "dmt-fddtl-91t" -, precedes = "dmt-fddtl-92" -, update = "02.03 icking, 99.11 bibrelex, 99.07 devillers, 98.11 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" +, title = "Fully dynamic {Delaunay} triangulation in logarithmic expected time per operation" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "42--53" +, keywords = "randomized algorithms, Delaunay triangulation, dynamizing datastructures" +, succeeds = "dmt-fddtl-91t" +, precedes = "dmt-fddtl-92" +, update = "02.03 icking, 99.11 bibrelex, 99.07 devillers, 98.11 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @article{dmt-fddtl-92 -, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" -, title = "Fully dynamic {Delaunay} triangulation in logarithmic expected time per operation" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "55--80" -, url = "http://www-sop.inria.fr/prisme/publis/dmt-fddtl-92.ps.gz" -, keywords = "randomized algorithms, Delaunay triangulation, dynamizing datastructures" -, succeeds = "dmt-fddtl-91" -, precedes = "dmt-fddtl-91t" -, update = "02.03 icking, 99.11 bibrelex, 99.07 devillers, 98.11 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" -, abstract = "The Delaunay Tree is a hierarchical data structure that has been introduced in \cite{bt-hrodt-86} and analyzed in\cite{bt-rcdt-93,bdsty-arsol-92}. For a given set of sites in the planeand an order of insertion for these sites, the Delaunay Tree stores allthe successive Delaunay triangulations. As proved before, the DelaunayTree allows the insertion of a site in logarithmic expected time andlinear expected space, when the insertion sequence is randomized. In thispaper, we describe an algorithm maintaining the Delaunay Tree underinsertions and deletions of sites. This can be done in $O(\log n)$expected time for an insertion and $O(\log\log n)$ expected time for adeletion, where $n$ is the number of sites currently present in thestrucuture. For deletions, by expected time, we mean averaging over allalready inserted sites for the choice of the deleted sites. The algorithmhas been effectively coded and experimental results are given." +, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" +, title = "Fully dynamic {Delaunay} triangulation in logarithmic expected time per operation" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "55--80" +, url = "http://www-sop.inria.fr/prisme/publis/dmt-fddtl-92.ps.gz" +, keywords = "randomized algorithms, Delaunay triangulation, dynamizing datastructures" +, succeeds = "dmt-fddtl-91" +, precedes = "dmt-fddtl-91t" +, update = "02.03 icking, 99.11 bibrelex, 99.07 devillers, 98.11 bibrelex, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, abstract = "The Delaunay Tree is a hierarchical data structure that has been introduced in \cite{bt-hrodt-86} and analyzed in\cite{bt-rcdt-93,bdsty-arsol-92}. For a given set of sites in the planeand an order of insertion for these sites, the Delaunay Tree stores allthe successive Delaunay triangulations. As proved before, the DelaunayTree allows the insertion of a site in logarithmic expected time andlinear expected space, when the insertion sequence is randomized. In thispaper, we describe an algorithm maintaining the Delaunay Tree underinsertions and deletions of sites. This can be done in $O(\log n)$expected time for an insertion and $O(\log\log n)$ expected time for adeletion, where $n$ is the number of sites currently present in thestrucuture. For deletions, by expected time, we mean averaging over allalready inserted sites for the choice of the deleted sites. The algorithmhas been effectively coded and experimental results are given." } @techreport{dmt-ssgtu-92t -, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" -, title = "The space of spheres, a geometric tool to unify duality results on {Voronoi} diagrams" -, type = "Report" -, number = 1620 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1992 -, precedes = "dmt-ssgtu-92i" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" +, title = "The space of spheres, a geometric tool to unify duality results on {Voronoi} diagrams" +, type = "Report" +, number = 1620 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1992 +, precedes = "dmt-ssgtu-92i" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @inproceedings{dmt-ssgtu-92 -, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" -, title = "The Space of Spheres, a Geometric Tool to Unify Duality Results on {Voronoi} Diagrams" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "45--49" -, update = "00.03 bibrelex" +, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" +, title = "The Space of Spheres, a Geometric Tool to Unify Duality Results on {Voronoi} Diagrams" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "45--49" +, update = "00.03 bibrelex" } @inproceedings{dmt-ssgtu-92i -, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" -, title = "The space of spheres, a geometric tool to unify duality results on {Voronoi} diagrams" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "263--268" -, keywords = "duality results, generalized Voronoi diagrams, geometric transforms, upper/lower envelopes" -, succeeds = "dmt-ssgtu-92t" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.05 smid" +, author = "Olivier Devillers and Stefan Meiser and Monique Teillaud" +, title = "The space of spheres, a geometric tool to unify duality results on {Voronoi} diagrams" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "263--268" +, keywords = "duality results, generalized Voronoi diagrams, geometric transforms, upper/lower envelopes" +, succeeds = "dmt-ssgtu-92t" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers, 93.05 smid" } @inproceedings{dm-gvvge-92 -, author = "Olivier Devillers and Naji Mouawad" -, title = "Guarding vertices versus guarding edges in a simple polygon" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "99--102" -, cites = "c-ctpg-75, ll-ccagp-86, ea-lacvp-81, gj-cigtn-79, o-agta-87, ZZZ" -, update = "99.07 devillers, 98.07 bibrelex" +, author = "Olivier Devillers and Naji Mouawad" +, title = "Guarding vertices versus guarding edges in a simple polygon" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "99--102" +, cites = "c-ctpg-75, ll-ccagp-86, ea-lacvp-81, gj-cigtn-79, o-agta-87, ZZZ" +, update = "99.07 devillers, 98.07 bibrelex" } @article{dm-focoh-99 -, author = "Olivier Devillers and Asish Mukhopadhyay" -, title = "Finding an ordinary conic and an ordinary hyperplane" -, journal = "Nordic J. Comput." -, volume = 6 -, year = 1999 -, pages = "422--428" -, url = "http://www-sop.inria.fr/prisme/biblio/" -, archive = "XXX/cs.CG/9909017" -, succeeds = "dm-focm-98" -, update = "00.03 devillers" +, author = "Olivier Devillers and Asish Mukhopadhyay" +, title = "Finding an ordinary conic and an ordinary hyperplane" +, journal = "Nordic J. Comput." +, volume = 6 +, year = 1999 +, pages = "422--428" +, url = "http://www-sop.inria.fr/prisme/biblio/" +, archive = "XXX/cs.CG/9909017" +, succeeds = "dm-focm-98" +, update = "00.03 devillers" } @techreport{dm-focm-98 -, author = "Olivier Devillers and Asish Mukhopadhyay" -, title = "Finding an ordinary conic and more" -, type = "Research {Report}" -, number = 3517 -, institution = "INRIA" -, year = 1998 -, url = "http://www-sop.inria.fr/prisme/biblio/" -, archive = "XXX:cs.CG/9909017" -, precedes = "dm-focoh-99" -, update = "00.03 devillers, 99.11 devillers" -, abstract = "Given a finite set of non-collinear points in the plane there exists a line that passes through exactly two points. Such a line is called an {\em ordinary line}. An efficient algorithm for computing such a line was proposed by Mukhopadhyay et al. In this note we extend this result in two directions. We first show how to use this algorithm to compute an {\em ordinary conic}, that is, a conic passing through exactly five points, assuming that all the points do not lie onthe same conic. Our proof of existence and the consequent algorithm is simpler than previous ones. We also show how to compute an ordinary hyperplane in three and higher dimensions." +, author = "Olivier Devillers and Asish Mukhopadhyay" +, title = "Finding an ordinary conic and more" +, type = "Research {Report}" +, number = 3517 +, institution = "INRIA" +, year = 1998 +, url = "http://www-sop.inria.fr/prisme/biblio/" +, archive = "XXX:cs.CG/9909017" +, precedes = "dm-focoh-99" +, update = "00.03 devillers, 99.11 devillers" +, abstract = "Given a finite set of non-collinear points in the plane there exists a line that passes through exactly two points. Such a line is called an {\em ordinary line}. An efficient algorithm for computing such a line was proposed by Mukhopadhyay et al. In this note we extend this result in two directions. We first show how to use this algorithm to compute an {\em ordinary conic}, that is, a conic passing through exactly five points, assuming that all the points do not lie onthe same conic. Our proof of existence and the consequent algorithm is simpler than previous ones. We also show how to compute an ordinary hyperplane in three and higher dimensions." } @inproceedings{dpt-wt-01 -, author = "Olivier Devillers and Sylvain Pion and Monique Teillaud" -, title = "Walking in a triangulation" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "106--114" -, update = "01.07 devillers" +, author = "Olivier Devillers and Sylvain Pion and Monique Teillaud" +, title = "Walking in a triangulation" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "106--114" +, update = "01.07 devillers" } @techreport{dp-papaf-96 -, author = "Olivier Devillers and Franco P. Preparata" -, title = "A Probabilistic Analysis of the Power of Arithmetic Filters" -, type = "Technical Report" -, number = "CS-96-27" -, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-27.ps.Z" -, keywords = "arithmetic filter, robustness, probabilistic analysis, geometric predicate, CGC, Brown" -, precedes = "dp-papaf-98" -, update = "99.11 devillers, 99.07 devillers, 97.07 devillers, 97.03 tamassia" +, author = "Olivier Devillers and Franco P. Preparata" +, title = "A Probabilistic Analysis of the Power of Arithmetic Filters" +, type = "Technical Report" +, number = "CS-96-27" +, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-27.ps.Z" +, keywords = "arithmetic filter, robustness, probabilistic analysis, geometric predicate, CGC, Brown" +, precedes = "dp-papaf-98" +, update = "99.11 devillers, 99.07 devillers, 97.07 devillers, 97.03 tamassia" } @article{dp-papaf-98 -, author = "Olivier Devillers and Franco P. Preparata" -, title = "A probabilistic analysis of the power of arithmetic filters" -, journal = "Discrete Comput. Geom." -, volume = 20 -, year = 1998 -, pages = "523--547" -, url = "https://hal.inria.fr/inria-00090653" -, archive = "XXX:cs.CG/9907029" -, succeeds = "dp-papaf-96" -, cites = "b-g-87, bkmnsu-egcl-95, bms-hcvdl-94, fv-eeacg-93, lpt-rpqiv-96, mn-iga-94, y-tegc-97" -, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.11 devillers+tamassia, 97.07 devillers" -, abstract = "The assumption of real-number arithmetic, which is at the +, author = "Olivier Devillers and Franco P. Preparata" +, title = "A probabilistic analysis of the power of arithmetic filters" +, journal = "Discrete Comput. Geom." +, volume = 20 +, year = 1998 +, pages = "523--547" +, url = "https://inria.hal.science/inria-00090653" +, archive = "XXX:cs.CG/9907029" +, succeeds = "dp-papaf-96" +, cites = "b-g-87, bkmnsu-egcl-95, bms-hcvdl-94, fv-eeacg-93, lpt-rpqiv-96, mn-iga-94, y-tegc-97" +, update = "99.11 bibrelex+devillers, 99.07 devillers, 98.11 devillers+tamassia, 97.07 devillers" +, abstract = "The assumption of real-number arithmetic, which is at the basis of conventional geometric algorithms, has been seriously challenged in recent years, since digital computers do not exhibit such capability. A geometric predicate usually consists of evaluating the @@ -44855,1563 +44855,1563 @@ @article{dp-papaf-98 } @inproceedings{dp-ecncp-00 -, author = "Olivier Devillers and Franco P. Preparata" -, title = "Evaluating the cylindricity of a nominally cylindrical point set" -, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA" -, year = 2000 -, pages = "518--527" -, update = "00.03 devillers" +, author = "Olivier Devillers and Franco P. Preparata" +, title = "Evaluating the cylindricity of a nominally cylindrical point set" +, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA" +, year = 2000 +, pages = "518--527" +, update = "00.03 devillers" } @inproceedings{dp-frafg-99i -, author = "Olivier Devillers and Franco P. Preparata" -, title = "Further Results on Arithmetic Filters for Geometric Predicates" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "113--116" -, archive = "XXX:cs.CG/9907028" -, precedes = "dp-frafg-99a" -, update = "00.03 bibrelex, 99.11 devillers, 99.07 bibrelex" +, author = "Olivier Devillers and Franco P. Preparata" +, title = "Further Results on Arithmetic Filters for Geometric Predicates" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "113--116" +, archive = "XXX:cs.CG/9907028" +, precedes = "dp-frafg-99a" +, update = "00.03 bibrelex, 99.11 devillers, 99.07 bibrelex" } @article{dp-frafg-99a -, author = "Olivier Devillers and Franco P. Preparata" -, title = "Further Results on Arithmetic Filters for Geometric Predicates" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "141--148" -, url = "https://www.sciencedirect.com/science/article/pii/S0925772199000115" -, archive = "XXX:cs.CG/9907028" -, succeeds = "dp-frafg-99i" -, cites = "dp-papaf-98" -, update = "00.03 devillers, 99.11 devillers" -, abstract = "An efficient technique to solve precision problems consists in using exact computations. For geometric predicates, using systematically expensive exact computations can be avoided by the use of filters. The predicate is first evaluated using rounding computations, and an error estimation gives a certificate of the validity of the result. In this note, we studies the statistical efficiency of filters for cosphericity predicate with an assumption of regular distribution of the points. We prove that the expected value of the polynomial corresponding to the in sphere test is greater than $\epsilon$ with probability $O(\epsilon \log \frac{1}{\epsilon})$ improving the results of a previous paper \cite{dp-papaf-98}." +, author = "Olivier Devillers and Franco P. Preparata" +, title = "Further Results on Arithmetic Filters for Geometric Predicates" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "141--148" +, url = "https://www.sciencedirect.com/science/article/pii/S0925772199000115" +, archive = "XXX:cs.CG/9907028" +, succeeds = "dp-frafg-99i" +, cites = "dp-papaf-98" +, update = "00.03 devillers, 99.11 devillers" +, abstract = "An efficient technique to solve precision problems consists in using exact computations. For geometric predicates, using systematically expensive exact computations can be avoided by the use of filters. The predicate is first evaluated using rounding computations, and an error estimation gives a certificate of the validity of the result. In this note, we studies the statistical efficiency of filters for cosphericity predicate with an assumption of regular distribution of the points. We prove that the expected value of the polynomial corresponding to the in sphere test is greater than $\epsilon$ with probability $O(\epsilon \log \frac{1}{\epsilon})$ improving the results of a previous paper \cite{dp-papaf-98}." } @article{dty-dlals-92 -, author = "Olivier Devillers and Monique Teillaud and Mariette Yvinec" -, title = "Dynamic location in an arrangement of line segments in the plane" -, journal = "Algorithms Rev." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "89--103" -, keywords = "randomized algorithms, arrangement of line-segments, dynamizing data structures" -, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" +, author = "Olivier Devillers and Monique Teillaud and Mariette Yvinec" +, title = "Dynamic location in an arrangement of line segments in the plane" +, journal = "Algorithms Rev." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "89--103" +, keywords = "randomized algorithms, arrangement of line-segments, dynamizing data structures" +, update = "99.11 bibrelex, 99.07 devillers, 97.03 devillers, 96.01 devillers, 95.09 devillers, 95.01 devillers" } @article{dw-sddsm-89 -, author = "M. P. Devine and D. Wood" -, title = "{SEPARATION} in $d$ dimensions, or strip mining in asteroid fields" -, journal = "Comput. Graph." -, volume = 13 -, year = 1989 -, pages = "329--336" +, author = "M. P. Devine and D. Wood" +, title = "{SEPARATION} in $d$ dimensions, or strip mining in asteroid fields" +, journal = "Comput. Graph." +, volume = 13 +, year = 1989 +, pages = "329--336" } @book{d-lnba-86 -, author = "L. Devroye" -, title = "Lecture Notes on Bucket Algorithms" -, publisher = "Birkh{\"a}user Verlag" -, address = "Boston, MA" -, year = 1986 -, keywords = "book" +, author = "L. Devroye" +, title = "Lecture Notes on Bucket Algorithms" +, publisher = "Birkh{\"a}user Verlag" +, address = "Boston, MA" +, year = 1986 +, keywords = "book" } @article{d-essgc-88 -, author = "L. Devroye" -, title = "On the expected size of some graphs in computational geometry" -, journal = "Comput. Math. Appl." -, volume = 15 -, year = 1988 -, pages = "53--64" +, author = "L. Devroye" +, title = "On the expected size of some graphs in computational geometry" +, journal = "Comput. Math. Appl." +, volume = 15 +, year = 1988 +, pages = "53--64" } @article{d-oenpr-91 -, author = "L. Devroye" -, title = "On the oscillation of the expected number of points on a random convex hull" -, journal = "Statistics and Probability Letters" -, volume = 11 -, year = 1991 -, pages = "281--286" +, author = "L. Devroye" +, title = "On the oscillation of the expected number of points on a random convex hull" +, journal = "Statistics and Probability Letters" +, volume = 11 +, year = 1991 +, pages = "281--286" } @article{des-grih-93 -, author = "Luc Devroye and P. Epstein and J.-R. Sack" -, title = "On Generating Random Intervals and Hyperrectangles" -, journal = "J. Computat. Graph. Statistics" -, volume = 2 -, number = 3 -, year = 1993 -, pages = "291--307" -, update = "96.01 held" +, author = "Luc Devroye and P. Epstein and J.-R. Sack" +, title = "On Generating Random Intervals and Hyperrectangles" +, journal = "J. Computat. Graph. Statistics" +, volume = 2 +, number = 3 +, year = 1993 +, pages = "291--307" +, update = "96.01 held" } @article{dl-arddq-90 -, author = "L. Devroye and L. Laforest" -, title = "An analysis of random $d$-dimensional quadtrees" -, journal = "SIAM J. Comput." -, volume = 19 -, year = 1990 -, pages = "821--832" +, author = "L. Devroye and L. Laforest" +, title = "An analysis of random $d$-dimensional quadtrees" +, journal = "SIAM J. Comput." +, volume = 19 +, year = 1990 +, pages = "821--832" } @article{dmz-npldt-98 -, author = "Luc Devroye and Ernst Peter M{\"u}cke and Binhai Zhu" -, title = "A Note on Point Location in {Delaunay} Triangulations of Random Points" -, journal = "Algorithmica" -, volume = 22 -, year = 1998 -, pages = "477--482" -, comments = "replaces the old, wrong entry dmz-npldt-95" -, update = "99.03 bibrelex, 97.11 bibrelex" +, author = "Luc Devroye and Ernst Peter M{\"u}cke and Binhai Zhu" +, title = "A Note on Point Location in {Delaunay} Triangulations of Random Points" +, journal = "Algorithmica" +, volume = 22 +, year = 1998 +, pages = "477--482" +, comments = "replaces the old, wrong entry dmz-npldt-95" +, update = "99.03 bibrelex, 97.11 bibrelex" } @incollection{dw-nnmd-82 -, author = "L. Devroye and T. J. Wagner" -, title = "Nearest neighbor methods in discrimination" -, editor = "P. R. Krishnan and L. N. Kanal" -, booktitle = "Handbook of Statistics" -, volume = 2 -, publisher = "North-Holland" -, year = 1982 -, update = "97.07 agarwal" +, author = "L. Devroye and T. J. Wagner" +, title = "Nearest neighbor methods in discrimination" +, editor = "P. R. Krishnan and L. N. Kanal" +, booktitle = "Handbook of Statistics" +, volume = 2 +, publisher = "North-Holland" +, year = 1982 +, update = "97.07 agarwal" } @article{dz-irls-94 -, author = "L. Devroye and B. Zhu" -, title = "Intersections of random line segments" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "261--274" -, keywords = "probabilistic analysis, computational geometry, intersections of line segments, asymptotic analysis, algorithmic complexity, incidence graph" -, update = "96.09 devillers" +, author = "L. Devroye and B. Zhu" +, title = "Intersections of random line segments" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "261--274" +, keywords = "probabilistic analysis, computational geometry, intersections of line segments, asymptotic analysis, algorithmic complexity, incidence graph" +, update = "96.09 devillers" } @article{d-nfchm-80 -, author = "L. P. Devroye" -, title = "A note on finding convex hulls via maximal vectors" -, journal = "Inform. Process. Lett." -, volume = 11 -, year = 1980 -, pages = "53--56" +, author = "L. P. Devroye" +, title = "A note on finding convex hulls via maximal vectors" +, journal = "Inform. Process. Lett." +, volume = 11 +, year = 1980 +, pages = "53--56" } @article{d-netrc-85 -, author = "L. P. Devroye" -, title = "A note on the expected time required to construct the outer layer" -, journal = "Inform. Process. Lett." -, volume = 20 -, year = 1985 -, pages = "255--257" +, author = "L. P. Devroye" +, title = "A note on the expected time required to construct the outer layer" +, journal = "Inform. Process. Lett." +, volume = 20 +, year = 1985 +, pages = "255--257" } @incollection{d-etaac-85 -, author = "L. P. Devroye" -, title = "Expected time analysis of algorithms in computational geometry" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "135--151" +, author = "L. P. Devroye" +, title = "Expected time analysis of algorithms in computational geometry" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "135--151" } @article{d-hracc-81 -, author = "L. P. Devroye" -, title = "How to reduce the average complexity of convex hull finding algorithms" -, journal = "Comput. Math. Appl." -, volume = 7 -, year = 1981 -, pages = "299--308" +, author = "L. P. Devroye" +, title = "How to reduce the average complexity of convex hull finding algorithms" +, journal = "Comput. Math. Appl." +, volume = 7 +, year = 1981 +, pages = "299--308" } @article{d-mirvc-83 -, author = "L. P. Devroye" -, title = "Moment inequalities for random variables in computational geometry" -, journal = "Computing" -, volume = 30 -, year = 1983 -, pages = "111--119" +, author = "L. P. Devroye" +, title = "Moment inequalities for random variables in computational geometry" +, journal = "Computing" +, volume = 30 +, year = 1983 +, pages = "111--119" } @article{d-acsba-81 -, author = "L. P. Devroye" -, title = "On the average complexity of some bucketing algorithms" -, journal = "Comput. Math. Appl." -, volume = 7 -, year = 1981 -, pages = "407--412" +, author = "L. P. Devroye" +, title = "On the average complexity of some bucketing algorithms" +, journal = "Comput. Math. Appl." +, volume = 7 +, year = 1981 +, pages = "407--412" } @article{d-cgrch-82 -, author = "L. P. Devroye" -, title = "On the computer generation of random convex hulls" -, journal = "Comput. Math. Appl." -, volume = 8 -, year = 1982 -, pages = "1--13" +, author = "L. P. Devroye" +, title = "On the computer generation of random convex hulls" +, journal = "Comput. Math. Appl." +, volume = 8 +, year = 1982 +, pages = "1--13" } @inproceedings{d-rratb-81 -, author = "L. P. Devroye" -, title = "Recent results on the average time behavior of some algorithms in computational geometry" -, booktitle = "Proc. 13th Sympos. Interface: Comput. Sci. Statist." -, year = 1981 -, pages = "76--82" +, author = "L. P. Devroye" +, title = "Recent results on the average time behavior of some algorithms in computational geometry" +, booktitle = "Proc. 13th Sympos. Interface: Comput. Sci. Statist." +, year = 1981 +, pages = "76--82" } @techreport{d-srats-81 -, author = "L. P. Devroye" -, title = "Some results on the average time for sorting and searching in {$R^{2}$}" -, type = "Report" -, number = "??" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1981 +, author = "L. P. Devroye" +, title = "Some results on the average time for sorting and searching in {$R^{2}$}" +, type = "Report" +, number = "??" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1981 } @article{dt-nleta-81 -, author = "L. P. Devroye and G. T. Toussaint" -, title = "A note on linear expected time algorithms for finding convex hulls" -, journal = "Computing" -, volume = 26 -, year = 1981 -, pages = "361--366" -, succeeds = "dt-eafch-78" +, author = "L. P. Devroye and G. T. Toussaint" +, title = "A note on linear expected time algorithms for finding convex hulls" +, journal = "Computing" +, volume = 26 +, year = 1981 +, pages = "361--366" +, succeeds = "dt-eafch-78" } @techreport{dt-eafch-78 -, author = "L. P. Devroye and G. T. Toussaint" -, title = "Elimination algorithms for finding convex hulls in linear expected running time with radial densities" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1978 -, precedes = "dt-nleta-81" +, author = "L. P. Devroye and G. T. Toussaint" +, title = "Elimination algorithms for finding convex hulls in linear expected running time with radial densities" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1978 +, precedes = "dt-nleta-81" } @techreport{d-cnnst-77 -, author = "A. K. Dewdney" -, title = "Complexity of nearest neighbour searching in three and higher dimensions" -, type = "Report" -, number = 28 -, institution = "Dept. Comput. Sci., Univ. Western Ontario" -, address = "London, ON" -, year = 1977 +, author = "A. K. Dewdney" +, title = "Complexity of nearest neighbour searching in three and higher dimensions" +, type = "Report" +, number = 28 +, institution = "Dept. Comput. Sci., Univ. Western Ontario" +, address = "London, ON" +, year = 1977 } @article{d-ege3s-77 -, author = "A. K. Dewdney" -, title = "Embedding graphs in {Euclidean} $3$-space" -, journal = "Amer. Math. Monthly" -, volume = 84 -, year = 1977 -, pages = "372--373" +, author = "A. K. Dewdney" +, title = "Embedding graphs in {Euclidean} $3$-space" +, journal = "Amer. Math. Monthly" +, volume = 84 +, year = 1977 +, pages = "372--373" } @article{d-egtds-80 -, author = "A. K. Dewdney" -, title = "Embedding graphs in three-dimensional space" -, journal = "Ars Combin." -, volume = 9 -, year = 1980 -, pages = "77--90" -, update = "95.09 korneenko" +, author = "A. K. Dewdney" +, title = "Embedding graphs in three-dimensional space" +, journal = "Ars Combin." +, volume = 9 +, year = 1980 +, pages = "77--90" +, update = "95.09 korneenko" } @article{d-edg-80 -, author = "A. K. Dewdney" -, title = "The embedding dimension of a graph" -, journal = "Ars Combin." -, volume = 9 -, year = 1980 -, pages = "77--90" +, author = "A. K. Dewdney" +, title = "The embedding dimension of a graph" +, journal = "Ars Combin." +, volume = 9 +, year = 1980 +, pages = "77--90" } @article{dv-cprac-77 -, author = "A. K. Dewdney and J. K. Vranch" -, title = "A convex partition of {$R^{3}$} with applications to {Crum}'s problem and {Knuth}'s post-office problem" -, journal = "Utilitas Math." -, volume = 12 -, year = 1977 -, pages = "193--199" -, keywords = "Voronoi diagram, proximity, searching" -, update = "97.11 bibrelex" +, author = "A. K. Dewdney and J. K. Vranch" +, title = "A convex partition of {$R^{3}$} with applications to {Crum}'s problem and {Knuth}'s post-office problem" +, journal = "Utilitas Math." +, volume = 12 +, year = 1977 +, pages = "193--199" +, keywords = "Voronoi diagram, proximity, searching" +, update = "97.11 bibrelex" } @inproceedings{dvw-chtma-95 -, author = "Don Dewhirst and Sreedhar Vangavolu and Harley Wattrick" -, title = "The Combination of Hexahedral and Tetrahedral Meshing Algorithms" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "291--304" -, update = "96.01 samitchell" +, author = "Don Dewhirst and Sreedhar Vangavolu and Harley Wattrick" +, title = "The Combination of Hexahedral and Tetrahedral Meshing Algorithms" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "291--304" +, update = "96.01 samitchell" } @inproceedings{dbs-gttd-91 -, author = "T. Dey and C. Bajaj and K. Sugihara" -, title = "On Good Triangulations in Three Dimensions" -, booktitle = "Proc. Symposium on Solid Modeling and CAD/CAM Applications" -, organization = "ACM/SIGGRAPH" -, month = jun -, year = 1991 -, note = "To appear" -, update = "97.11 bibrelex" +, author = "T. Dey and C. Bajaj and K. Sugihara" +, title = "On Good Triangulations in Three Dimensions" +, booktitle = "Proc. Symposium on Solid Modeling and CAD/CAM Applications" +, organization = "ACM/SIGGRAPH" +, month = jun +, year = 1991 +, note = "To appear" +, update = "97.11 bibrelex" } @article{degn-tpec-98 -, author = "Tamal Dey and Herbert Edelsbrunner and Sumanta Guha and Dmitry Nekhayev" -, title = "Topology preserving edge contraction. Geometric combinatorics" -, journal = "Publ. Inst. Math. (Beograd) (N.S.)" -, volume = 66 -, year = 1999 -, pages = "23--45" -, update = "01.07 wenger" +, author = "Tamal Dey and Herbert Edelsbrunner and Sumanta Guha and Dmitry Nekhayev" +, title = "Topology preserving edge contraction. Geometric combinatorics" +, journal = "Publ. Inst. Math. (Beograd) (N.S.)" +, volume = 66 +, year = 1999 +, pages = "23--45" +, update = "01.07 wenger" } @techreport{dp-epgh-94 -, author = "T. Dey and J. Pach" -, title = "Extremal problems for geometric hypergraphs" -, type = "Manuscipt" -, institution = "??" -, year = 1994 -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "T. Dey and J. Pach" +, title = "Extremal problems for geometric hypergraphs" +, type = "Manuscipt" +, institution = "??" +, year = 1994 +, note = "In preparation" +, update = "98.03 bibrelex" } @techreport{d-ntcpd-93 -, author = "T. K. Dey" -, title = "A new technique to compute polygonal schema for 2-manifolds and null-homotopy detection" -, type = "manuscript" -, year = 1993 -, precedes = "ds-ntcps-94, d-ntcps-94" -, update = "98.11 bibrelex" +, author = "T. K. Dey" +, title = "A new technique to compute polygonal schema for 2-manifolds and null-homotopy detection" +, type = "manuscript" +, year = 1993 +, precedes = "ds-ntcps-94, d-ntcps-94" +, update = "98.11 bibrelex" } @inproceedings{d-ntcps-94 -, author = "T. K. Dey" -, title = "A New Technique to Compute Polygonal Schema for $2$-Manifolds with Application to Null-Homotopy Detection" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "277--284" -, succeeds = "d-ntcpd-93" -, cites = "ds-ntcps-94, de-iabns-93, g-gsh-77, hs-aacsl-91, my-chthu-88, s-dcc-92, s-tacg-90, s-ctcgt-80, v-kfdp-89, vy-cccs-90, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "T. K. Dey" +, title = "A New Technique to Compute Polygonal Schema for $2$-Manifolds with Application to Null-Homotopy Detection" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "277--284" +, succeeds = "d-ntcpd-93" +, cites = "ds-ntcps-94, de-iabns-93, g-gsh-77, hs-aacsl-91, my-chthu-88, s-dcc-92, s-tacg-90, s-ctcgt-80, v-kfdp-89, vy-cccs-90, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 94.09 jones, 94.01 jones" } @phdthesis{d-dptd-91 -, author = "T. K. Dey" -, title = "Decompositions of polyhedra in three dimensions" -, school = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1991 -, note = "Technical Report CSD-TR-91-056" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "T. K. Dey" +, title = "Decompositions of polyhedra in three dimensions" +, school = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1991 +, note = "Technical Report CSD-TR-91-056" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{d-gtp-90 -, author = "T. K. Dey" -, title = "Good triangulations in the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "102--106" -, cites = "ba-acfem-76, bgr-ntp-88, c-gqtm-89, e-stdac-89, f-cfemg-72, ll-gdtpg-86, ZZZ" -, update = "98.07 bibrelex" +, author = "T. K. Dey" +, title = "Good triangulations in the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "102--106" +, cites = "ba-acfem-76, bgr-ntp-88, c-gqtm-89, e-stdac-89, f-cfemg-72, ll-gdtpg-86, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{d-ibkkl-97 -, author = "T. K. Dey" -, title = "Improved Bounds for {$k$-Sets} and {$k$-th} levels" -, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '97" -, year = 1997 -, pages = "156--161" -, update = "98.07 agarwal+bibrelex, 98.03 agarwal+mitchell" +, author = "T. K. Dey" +, title = "Improved Bounds for {$k$-Sets} and {$k$-th} levels" +, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '97" +, year = 1997 +, pages = "156--161" +, update = "98.07 agarwal+bibrelex, 98.03 agarwal+mitchell" } @article{d-ibpks-98 -, author = "T. K. Dey" -, title = "Improved bounds on planar $k$-sets and related problems" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "373--382" -, update = "98.07 agarwal" +, author = "T. K. Dey" +, title = "Improved bounds on planar $k$-sets and related problems" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "373--382" +, update = "98.07 agarwal" } @inproceedings{d-ctdd-92 -, author = "T. K. Dey" -, title = "On counting triangulations in $d$ dimensions" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "280--285" -, precedes = "d-ctdd-93" -, cites = "acns-cfs-82, de-cschh-92, gp-ubcpr-86, k-mts-88, s-ubccr-75, ZZZ" -, update = "98.07 agarwal+bibrelex, 96.09 devillers" +, author = "T. K. Dey" +, title = "On counting triangulations in $d$ dimensions" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "280--285" +, precedes = "d-ctdd-93" +, cites = "acns-cfs-82, de-cschh-92, gp-ubcpr-86, k-mts-88, s-ubccr-75, ZZZ" +, update = "98.07 agarwal+bibrelex, 96.09 devillers" } @article{d-ctdd-93 -, author = "T. K. Dey" -, title = "On counting triangulations in $d$ dimensions" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "315--325" -, succeeds = "d-ctdd-92" -, update = "98.07 agarwal, 96.09 devillers" +, author = "T. K. Dey" +, title = "On counting triangulations in $d$ dimensions" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "315--325" +, succeeds = "d-ctdd-92" +, update = "98.07 agarwal, 96.09 devillers" } @inproceedings{d-oadnh-93 -, author = "T. K. Dey" -, title = "Optimal algorithms to detect null-homologous cycles on $2$-manifolds" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "273--278" -, precedes = "d-oadnh-97" -, cites = "d-ntcpd-93, de-iabns-93, m-ati-77, m-eat-84, s-dcc-92, s-tacg-90, vy-cccs-90, ZZZ" -, update = "98.11 bibrelex, 98.07 agarwal, 97.07 devillers, 93.09 milone+mitchell" +, author = "T. K. Dey" +, title = "Optimal algorithms to detect null-homologous cycles on $2$-manifolds" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "273--278" +, precedes = "d-oadnh-97" +, cites = "d-ntcpd-93, de-iabns-93, m-ati-77, m-eat-84, s-dcc-92, s-tacg-90, vy-cccs-90, ZZZ" +, update = "98.11 bibrelex, 98.07 agarwal, 97.07 devillers, 93.09 milone+mitchell" } @article{d-oadnh-97 -, author = "T. K. Dey" -, title = "Optimal algorithms to detect null-homologous cycles on $2$-manifolds" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "167--174" -, succeeds = "d-oadnh-93" -, update = "98.07 agarwal, 97.07 devillers" +, author = "T. K. Dey" +, title = "Optimal algorithms to detect null-homologous cycles on $2$-manifolds" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "167--174" +, succeeds = "d-oadnh-93" +, update = "98.07 agarwal, 97.07 devillers" } @inproceedings{d-tcrpa-91 -, author = "T. K. Dey" -, title = "Triangulation and {CSG} representation of polyhedra with arbitrary genus" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "364--372" -, keywords = "polyhedron" -, cites = "bd-pnr-90, bd-cdpr-90, c-cpplb-84, cp-tncp-90, dbs-gttd-91, dghs-eafcr-88, egs-ccmfa-90, e-acg-87, egppss-acptc-88, k-rmrs-89, py-ebsph-90, p-hresr-84, rs-dt3dn-89, ZZZ" -, update = "98.07 agarwal+bibrelex, 97.11 bibrelex" +, author = "T. K. Dey" +, title = "Triangulation and {CSG} representation of polyhedra with arbitrary genus" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "364--372" +, keywords = "polyhedron" +, cites = "bd-pnr-90, bd-cdpr-90, c-cpplb-84, cp-tncp-90, dbs-gttd-91, dghs-eafcr-88, egs-ccmfa-90, e-acg-87, egppss-acptc-88, k-rmrs-89, py-ebsph-90, p-hresr-84, rs-dt3dn-89, ZZZ" +, update = "98.07 agarwal+bibrelex, 97.11 bibrelex" } @article{dbs-gttd-92 -, author = "T. K. Dey and C. L. Bajaj and K. Sugihara" -, title = "On good triangulations in three dimensions" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 1 -, year = 1992 -, pages = "75--95" -, keywords = "Delaunay triangulation, mesh generation" +, author = "T. K. Dey and C. L. Bajaj and K. Sugihara" +, title = "On good triangulations in three dimensions" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 1 +, year = 1992 +, pages = "75--95" +, keywords = "Delaunay triangulation, mesh generation" } @inproceedings{ddg-thc-94 -, author = "T. K. Dey and M. B. Dillencourt and S. K. Ghosh" -, title = "Triangulating with High Connectivity" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "339--343" -, precedes = "ddgc-thc-97" -, cites = "c-clps-85, dett-adgab-93t, d-hcptn-90, l-cpt-90, ys-fpgdc-93, ZZZ" -, update = "98.11 bibrelex, 97.07 devillers, 94.09 jones" +, author = "T. K. Dey and M. B. Dillencourt and S. K. Ghosh" +, title = "Triangulating with High Connectivity" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "339--343" +, precedes = "ddgc-thc-97" +, cites = "c-clps-85, dett-adgab-93t, d-hcptn-90, l-cpt-90, ys-fpgdc-93, ZZZ" +, update = "98.11 bibrelex, 97.07 devillers, 94.09 jones" } @article{ddgc-thc-97 -, author = "T. K. Dey and M. B. Dillencourt and S. K. Ghosh and J. Cahill" -, title = "Triangulating with High Connectivity" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "39--56" -, succeeds = "ddg-thc-94" -, update = "97.07 devillers" +, author = "T. K. Dey and M. B. Dillencourt and S. K. Ghosh and J. Cahill" +, title = "Triangulating with High Connectivity" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "39--56" +, succeeds = "ddg-thc-94" +, update = "97.07 devillers" } @techreport{de-cschh-92 -, author = "T. K. Dey and H. Edelsbrunner" -, title = "Counting simplex crossings and halving hyerplanes" -, type = "Manuscript" -, institution = "??" -, year = 1992 -, update = "98.07 bibrelex" +, author = "T. K. Dey and H. Edelsbrunner" +, title = "Counting simplex crossings and halving hyerplanes" +, type = "Manuscript" +, institution = "??" +, year = 1992 +, update = "98.07 bibrelex" } @inproceedings{de-ctchp-93 -, author = "T. K. Dey and H. Edelsbrunner" -, title = "Counting triangle crossings and halving planes" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "270--273" -, cites = "acns-cfs-82, abfk-pswen-91, acegsw-ptphp-91, bfl-nhp-89, e-acg-87, e-ibith-91, elss-dgpps-73, r-mkkde-21, vz-ctpci-92, ZZZ" -, update = "98.03 bibrelex, 95.01 smid, 93.09 jones" +, author = "T. K. Dey and H. Edelsbrunner" +, title = "Counting triangle crossings and halving planes" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "270--273" +, cites = "acns-cfs-82, abfk-pswen-91, acegsw-ptphp-91, bfl-nhp-89, e-acg-87, e-ibith-91, elss-dgpps-73, r-mkkde-21, vz-ctpci-92, ZZZ" +, update = "98.03 bibrelex, 95.01 smid, 93.09 jones" } @article{de-ctchp-94 -, author = "T. K. Dey and H. Edelsbrunner" -, title = "Counting triangle crossings and halving planes" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "281--289" -, update = "95.01 smid" +, author = "T. K. Dey and H. Edelsbrunner" +, title = "Counting triangle crossings and halving planes" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "281--289" +, update = "95.01 smid" } @inproceedings{deg-ct-99 -, author = "Tamal K. Dey and Herbert Edelsbrunner and Sumanta Guha" -, title = "Computational topology" -, editor = "Bernard Chazelle and Jacob E. Goodman and Richard Pollack" -, booktitle = "Advances in Discrete and Computational Geometry - Proc. 1996 AMS-IMS-SIAM Joint Summer Research Conf. Discrete and Computational Geometry: Ten Years Later" -, series = "Contemporary Mathematics" -, number = 223 -, publisher = "American Mathematical Society" -, year = 1999 -, pages = "109--143" -, update = "01.07 devillers" +, author = "Tamal K. Dey and Herbert Edelsbrunner and Sumanta Guha" +, title = "Computational topology" +, editor = "Bernard Chazelle and Jacob E. Goodman and Richard Pollack" +, booktitle = "Advances in Discrete and Computational Geometry - Proc. 1996 AMS-IMS-SIAM Joint Summer Research Conf. Discrete and Computational Geometry: Ten Years Later" +, series = "Contemporary Mathematics" +, number = 223 +, publisher = "American Mathematical Society" +, year = 1999 +, pages = "109--143" +, update = "01.07 devillers" } @inproceedings{dfr-sralt-01 -, author = "Tamal K. Dey and Stefan Funke and Edgar A. Ramos" -, title = "Surface Reconstruction in Almost Linear Time under Locally Uniform Sampling" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "129--132" -, update = "01.04 icking" +, author = "Tamal K. Dey and Stefan Funke and Edgar A. Ramos" +, title = "Surface Reconstruction in Almost Linear Time under Locally Uniform Sampling" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "129--132" +, update = "01.04 icking" } @inproceedings{dg-amsce-96 -, author = "Tamal K. Dey and Sumanta Guha" -, title = "Algorithms for Manifolds and Simplicial Complexes in {Euclidean} 3-Space" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '96" -, site = "Philadelphia, PA" -, month = may -, year = 1996 -, pages = "398--407" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Tamal K. Dey and Sumanta Guha" +, title = "Algorithms for Manifolds and Simplicial Complexes in {Euclidean} 3-Space" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '96" +, site = "Philadelphia, PA" +, month = may +, year = 1996 +, pages = "398--407" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{dg-oacs-95 -, author = "Tamal K. Dey and Sumanta Guha" -, title = "Optimal algorithms for curves on surfaces" -, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '95" -, site = "Milwaukee, Wisconsin" -, year = 1995 -, pages = "266--274" -, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 95.09 mitchell" -, annote = "To appear in JCSS, with new title: Transforming Curves on Surfaces" +, author = "Tamal K. Dey and Sumanta Guha" +, title = "Optimal algorithms for curves on surfaces" +, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '95" +, site = "Milwaukee, Wisconsin" +, year = 1995 +, pages = "266--274" +, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 95.09 mitchell" +, annote = "To appear in JCSS, with new title: Transforming Curves on Surfaces" } @inproceedings{dk-spacr-99 -, author = "T. K. Dey and P. Kumar" -, title = "A simple provable algorithm for curve reconstruction" -, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '99" -, month = jan -, year = 1999 -, pages = "893--894" -, update = "00.03 orourke" +, author = "T. K. Dey and P. Kumar" +, title = "A simple provable algorithm for curve reconstruction" +, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '99" +, month = jan +, year = 1999 +, pages = "893--894" +, update = "00.03 orourke" } @unpublished{dl-srs-99 -, author = "T. K. Dey and N. Leekha" -, title = "Surface reconstruction simplified" -, month = dec -, year = 1999 -, note = "Manuscript" -, update = "00.03 orourke" +, author = "T. K. Dey and N. Leekha" +, title = "Surface reconstruction simplified" +, month = dec +, year = 1999 +, note = "Manuscript" +, update = "00.03 orourke" } @inproceedings{dmr-crcdgr-99 -, author = "T. K. Dey and K. Mehlhorn and E. A. Ramos" -, title = "Curve reconstruction: {C}onnecting dots with good reason" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "197--206" -, update = "00.03 orourke" +, author = "T. K. Dey and K. Mehlhorn and E. A. Ramos" +, title = "Curve reconstruction: {C}onnecting dots with good reason" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "197--206" +, update = "00.03 orourke" } @article{dmr-crcdg-00 -, author = "T. K. Dey and K. Mehlhorn and E. A. Ramos" -, title = "Curve reconstruction: {Connecting} dots with good reason" -, journal = "Comput. Geom. Theory Appl." -, volume = 15 -, year = 2000 -, pages = "229--244" -, succeeds = "ekns-ddsfo-97" -, update = "00.03 smid" +, author = "T. K. Dey and K. Mehlhorn and E. A. Ramos" +, title = "Curve reconstruction: {Connecting} dots with good reason" +, journal = "Comput. Geom. Theory Appl." +, volume = 15 +, year = 2000 +, pages = "229--244" +, succeeds = "ekns-ddsfo-97" +, update = "00.03 smid" } @unpublished{dpp-agpvr-95 -, author = "T. K. Dey and S. P. Pal and D. C. Prasad" -, title = "Art gallery problems for visibility with reflection" -, year = 1995 -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "T. K. Dey and S. P. Pal and D. C. Prasad" +, title = "Art gallery problems for visibility with reflection" +, year = 1995 +, note = "In preparation" +, update = "98.03 bibrelex" } @techreport{ds-ntcps-94 -, author = "T. K. Dey and H. Schipper" -, title = "A new technique to compute polygonal schema for $2$-manifolds with application to null-homotopy detection" -, type = "Manuscript" -, institution = "??" -, year = 1994 -, succeeds = "d-ntcpd-93" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "T. K. Dey and H. Schipper" +, title = "A new technique to compute polygonal schema for $2$-manifolds with application to null-homotopy detection" +, type = "Manuscript" +, institution = "??" +, year = 1994 +, succeeds = "d-ntcpd-93" +, update = "98.11 bibrelex, 98.03 bibrelex" } @inproceedings{ds-nscr-95 -, author = "Tamal K. Dey and Nimish R. Shah" -, title = "On the Number of Simplicial Complexes in {$\Re^d$}" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "31--36" -, update = "95.09 jones" +, author = "Tamal K. Dey and Nimish R. Shah" +, title = "On the Number of Simplicial Complexes in {$\Re^d$}" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "31--36" +, update = "95.09 jones" } @article{dsb-dttdf-92 -, author = "T. K. Dey and K. Sugihara and C. L. Bajaj" -, title = "Delaunay triangulations in three dimensions with finite precision arithmetic" -, journal = "Comput. Aided Geom. Design" -, volume = 9 -, year = 1992 -, pages = "457--470" -, keywords = "Delaunay triangulation, robustness" -, update = "93.09 dey" +, author = "T. K. Dey and K. Sugihara and C. L. Bajaj" +, title = "Delaunay triangulations in three dimensions with finite precision arithmetic" +, journal = "Comput. Aided Geom. Design" +, volume = 9 +, year = 1992 +, pages = "457--470" +, keywords = "Delaunay triangulation, robustness" +, update = "93.09 dey" } @inproceedings{dw-rcsc-00 -, author = "Tamal K. Dey and Rephael Wenger" -, title = "Reconstructing Curves with Sharp Corners" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "233--241" -, update = "00.11 jones" +, author = "Tamal K. Dey and Rephael Wenger" +, title = "Reconstructing Curves with Sharp Corners" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "233--241" +, update = "00.11 jones" } @article{dw-rcsc-01 -, author = "T. K. Dey and R. Wenger" -, title = "Reconstructing Curves with Sharp Corners" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "89--99" -, update = "01.11 smid" +, author = "T. K. Dey and R. Wenger" +, title = "Reconstructing Curves with Sharp Corners" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "89--99" +, update = "01.11 smid" } @article{df-sd-86 -, author = "M. Deza and P. Frankl" -, title = "On squashed designs" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "379--390" +, author = "M. Deza and P. Frankl" +, title = "On squashed designs" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "379--390" } @inproceedings{do-mpams-92 -, author = "A. Dhagat and J. O'Rourke" -, title = "Motion planning amidst movable square blocks" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "188--191" -, keywords = "motion planning" -, cites = "w-mppmo-91, ZZZ" -, update = "00.03 orourke, 98.07 bibrelex" -, abstract = "Proves that planning motion for a robot who can - push square blocks, when some blocks are moveable and - others immobile, is NP-hard. The paper erroneously claims - to establish NP-completeness but never establishes - membership in NP. Subsequently the result was - strengthened in bos-mpams-94 to PSPACE hard." +, author = "A. Dhagat and J. O'Rourke" +, title = "Motion planning amidst movable square blocks" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "188--191" +, keywords = "motion planning" +, cites = "w-mppmo-91, ZZZ" +, update = "00.03 orourke, 98.07 bibrelex" +, abstract = "Proves that planning motion for a robot who can + push square blocks, when some blocks are moveable and + others immobile, is NP-hard. The paper erroneously claims + to establish NP-completeness but never establishes + membership in NP. Subsequently the result was + strengthened in bos-mpams-94 to PSPACE hard." } @article{dj-cccsp-73 -, author = "S. W. Dharmadhikari and K. Jogdeo" -, title = "A characterization of convexity and central symmetry for planar polygonal sets" -, journal = "Israel J. Math." -, volume = 15 -, year = 1973 -, pages = "356--366" -, update = "97.11 bibrelex" +, author = "S. W. Dharmadhikari and K. Jogdeo" +, title = "A characterization of convexity and central symmetry for planar polygonal sets" +, journal = "Israel J. Math." +, volume = 15 +, year = 1973 +, pages = "356--366" +, update = "97.11 bibrelex" } @proceedings{d-gd-97 -, title = "Graph Drawing (Proc. GD '97)" -, editor = "G. {Di Battista}" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, keywords = "graph drawing, collection" -, update = "99.07 vismara, 98.11 bibrelex, 98.07 patrignani+tamassia+vismara" +, title = "Graph Drawing (Proc. GD '97)" +, editor = "G. {Di Battista}" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, keywords = "graph drawing, collection" +, update = "99.07 vismara, 98.11 bibrelex, 98.07 patrignani+tamassia+vismara" } @proceedings{defrt-gd93p-93 -, title = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" -, editor = "G. {Di Battista} and P. Eades and H. de Fraysseix and P. Rosenstiehl and R. Tamassia" -, year = 1993 -, url = "ftp://ftp.cs.brown.edu/pub/gd94/gd-92-93/gd93-v2.ps.Z" -, keywords = "graph drawing, collection" -, update = "98.11 bibrelex, 98.07 vismara, 95.09 tamassia, 94.05 schwarzkopf, 94.01 tamassia, 95 tamassia" +, title = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" +, editor = "G. {Di Battista} and P. Eades and H. de Fraysseix and P. Rosenstiehl and R. Tamassia" +, year = 1993 +, url = "ftp://ftp.cs.brown.edu/pub/gd94/gd-92-93/gd93-v2.ps.Z" +, keywords = "graph drawing, collection" +, update = "98.11 bibrelex, 98.07 vismara, 95.09 tamassia, 94.05 schwarzkopf, 94.01 tamassia, 95 tamassia" } @techreport{dett-adgab-93 -, author = "G. {Di Battista} and P. Eades and R. Tamassia and I. G. Tollis" -, title = "Algorithms for drawing graphs: an annotated bibliography" -, type = "Preprint" -, number = "" -, institution = "Dept. Comput. Sci., Brown Univ." -, address = "Providence, RI" -, month = nov -, year = 1993 -, note = "Preliminary version available via anonymous {\tt ftp} from - {\tt wilma.cs.brown.edu}, {\tt gdbiblio.tex.Z} and - {\tt gdbiblio.ps.Z} in {\tt /pub/papers/compgeo}." -, keywords = "graph drawing, graph theory, computer graphics, bibliography" -, succeeds = "et-adgab-89, dett-adgab-93t" -, precedes = "dett-adgab-94" -, update = "98.11 bibrelex, 95.01 smid, 94.01 tamassia" +, author = "G. {Di Battista} and P. Eades and R. Tamassia and I. G. Tollis" +, title = "Algorithms for drawing graphs: an annotated bibliography" +, type = "Preprint" +, number = "" +, institution = "Dept. Comput. Sci., Brown Univ." +, address = "Providence, RI" +, month = nov +, year = 1993 +, note = "Preliminary version available via anonymous {\tt ftp} from + {\tt wilma.cs.brown.edu}, {\tt gdbiblio.tex.Z} and + {\tt gdbiblio.ps.Z} in {\tt /pub/papers/compgeo}." +, keywords = "graph drawing, graph theory, computer graphics, bibliography" +, succeeds = "et-adgab-89, dett-adgab-93t" +, precedes = "dett-adgab-94" +, update = "98.11 bibrelex, 95.01 smid, 94.01 tamassia" } @techreport{dett-adgab-93t -, author = "G. {Di Battista} and P. Eades and R. Tamassia and I. G. Tollis" -, title = "Algorithms for drawing graphs: an annotated bibliography" -, type = "manuscript" -, month = jun -, year = 1993 -, precedes = "dett-adgab-93, dett-adgab-94" -, update = "98.11 bibrelex" +, author = "G. {Di Battista} and P. Eades and R. Tamassia and I. G. Tollis" +, title = "Algorithms for drawing graphs: an annotated bibliography" +, type = "manuscript" +, month = jun +, year = 1993 +, precedes = "dett-adgab-93, dett-adgab-94" +, update = "98.11 bibrelex" } -%, number = 5 +%, number = 5 @article{dett-adgab-94 -, author = "G. {Di Battista} and P. Eades and R. Tamassia and I. G. Tollis" -, title = "Algorithms for drawing graphs: an annotated bibliography" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "235--282" -, keywords = "graph drawing, graph theory, computer graphics, bibliography" -, succeeds = "dett-adgab-93, dett-adgab-93t" -, update = "98.11 bibrelex, 95.01 smid+tamassia" +, author = "G. {Di Battista} and P. Eades and R. Tamassia and I. G. Tollis" +, title = "Algorithms for drawing graphs: an annotated bibliography" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "235--282" +, keywords = "graph drawing, graph theory, computer graphics, bibliography" +, succeeds = "dett-adgab-93, dett-adgab-93t" +, update = "98.11 bibrelex, 95.01 smid+tamassia" } @book{dett-gd-99 -, author = "G. {Di Battista} and P. Eades and R. Tamassia and I. G. Tollis" -, title = "Graph Drawing" -, publisher = "Prentice Hall" -, address = "Upper Saddle River, NJ" -, year = 1999 -, keywords = "graph drawing" -, update = "98.11 vismara, 98.07 tamassia" +, author = "G. {Di Battista} and P. Eades and R. Tamassia and I. G. Tollis" +, title = "Graph Drawing" +, publisher = "Prentice Hall" +, address = "Upper Saddle River, NJ" +, year = 1999 +, keywords = "graph drawing" +, update = "98.11 vismara, 98.07 tamassia" } @techreport{dglpttvv-ddage-96 -, author = "G. {Di Battista} and A. Garg and G. Liotta and A. Parise and R. Tamassia and E. Tassinari and F. Vargiu and L. Vismara" -, title = "Drawing Directed Acyclic Graphs: An Experimental Study" -, type = "Technical Report" -, number = "CS-96-24" -, institution = "Center for Geometric Computing, Dept. Comput. Sci., Brown Univ." -, month = oct -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-24.ps.Z" -, keywords = "graph drawing, upward, experiments, CGC, Brown" -, update = "98.07 vismara, 97.11 bibrelex, 97.03 tamassia" +, author = "G. {Di Battista} and A. Garg and G. Liotta and A. Parise and R. Tamassia and E. Tassinari and F. Vargiu and L. Vismara" +, title = "Drawing Directed Acyclic Graphs: An Experimental Study" +, type = "Technical Report" +, number = "CS-96-24" +, institution = "Center for Geometric Computing, Dept. Comput. Sci., Brown Univ." +, month = oct +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-24.ps.Z" +, keywords = "graph drawing, upward, experiments, CGC, Brown" +, update = "98.07 vismara, 97.11 bibrelex, 97.03 tamassia" } @inproceedings{dglpttvv-ddage-97 -, author = "G. {Di Battista} and A. Garg and G. Liotta and A. Parise and R. Tamassia and E. Tassinari and F. Vargiu and L. Vismara" -, title = "Drawing Directed Acyclic Graphs: An Experimental Study" -, editor = "S. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "76--91" -, url = "https://www.cs.brown.edu/cgc/papers/dglpttvv-ddges-97.ps.gz" -, keywords = "graph drawing, upward, experiments, CGC, Brown" -, update = "98.07 patrignani+tamassia+vismara, 97.11 bibrelex, 97.03 tamassia" +, author = "G. {Di Battista} and A. Garg and G. Liotta and A. Parise and R. Tamassia and E. Tassinari and F. Vargiu and L. Vismara" +, title = "Drawing Directed Acyclic Graphs: An Experimental Study" +, editor = "S. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "76--91" +, url = "https://www.cs.brown.edu/cgc/papers/dglpttvv-ddges-97.ps.gz" +, keywords = "graph drawing, upward, experiments, CGC, Brown" +, update = "98.07 patrignani+tamassia+vismara, 97.11 bibrelex, 97.03 tamassia" } @article{dglpttvv-ddage-00 -, author = "Giuseppe {Di Battista} and Ashim Garg and Giuseppe Liotta and Armando Parise and Roberto Tamassia and Emanuele Tassinari and Francesco Vargiu and Luca Vismara" -, title = "Drawing Directed Acyclic Graphs: An Experimental Study" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, number = 6 -, year = 2000 -, pages = "623--648" -, succeeds = "dglpttvv-ddage-96, dglpttvv-ddage-97" -, update = "01.04 vismara" +, author = "Giuseppe {Di Battista} and Ashim Garg and Giuseppe Liotta and Armando Parise and Roberto Tamassia and Emanuele Tassinari and Francesco Vargiu and Luca Vismara" +, title = "Drawing Directed Acyclic Graphs: An Experimental Study" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, number = 6 +, year = 2000 +, pages = "623--648" +, succeeds = "dglpttvv-ddage-96, dglpttvv-ddage-97" +, update = "01.04 vismara" } @unpublished{dglttv-ecfgd-96 -, author = "G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and E. Tassinari and F. Vargiu" -, title = "An Experimental Comparison of Four Graph Drawing Algorithms" -, type = "Manuscript" -, institution = "Dept. of Computer Sci., Brown University" -, year = 1996 -, url = "https://www.cs.brown.edu/cgc/papers/dglttv-ecfgd-96.ps.gz" -, keywords = "graph drawing, experiments, orthogonal" -, precedes = "dglttv-ecfgd-97" -, update = "97.03 tamassia, 96.09 tamassia" -} - -% also claimed, pages = "303--326" +, author = "G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and E. Tassinari and F. Vargiu" +, title = "An Experimental Comparison of Four Graph Drawing Algorithms" +, type = "Manuscript" +, institution = "Dept. of Computer Sci., Brown University" +, year = 1996 +, url = "https://www.cs.brown.edu/cgc/papers/dglttv-ecfgd-96.ps.gz" +, keywords = "graph drawing, experiments, orthogonal" +, precedes = "dglttv-ecfgd-97" +, update = "97.03 tamassia, 96.09 tamassia" +} + +% also claimed, pages = "303--326" @article{dglttv-ecfgd-97 -, author = "G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and E. Tassinari and F. Vargiu" -, title = "An Experimental Comparison of Four Graph Drawing Algorithms" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "303--325" -, url = "https://www.cs.brown.edu/cgc/papers/dglttv-ecfgd-96.ps.gz" -, keywords = "graph drawing, experiments, orthogonal, CGC, Brown" -, succeeds = "dglttv-ecfgd-96" -, update = "98.07 patrignani+tamassia+vismara, 97.07 devillers, 97.03 tamassia, 96.09 tamassia" +, author = "G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and E. Tassinari and F. Vargiu" +, title = "An Experimental Comparison of Four Graph Drawing Algorithms" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "303--325" +, url = "https://www.cs.brown.edu/cgc/papers/dglttv-ecfgd-96.ps.gz" +, keywords = "graph drawing, experiments, orthogonal, CGC, Brown" +, succeeds = "dglttv-ecfgd-96" +, update = "98.07 patrignani+tamassia+vismara, 97.07 devillers, 97.03 tamassia, 96.09 tamassia" } @inproceedings{dglttv-ectgd-95 -, author = "G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and E. Tassinari and F. Vargiu" -, title = "An Experimental Comparison of Three Graph Drawing Algorithms" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "306--315" -, url = "https://www.cs.brown.edu/cgc/papers/dglttv-ectgd-95.ps.gz" -, keywords = "graph drawing, experiments, orthogonal" -, cites = "bcn-cdder-92, bfn-wigdp-85, bnt-ladfd-86, bbdl-tealf-91, bk-bhogd-94, con-dpgn-85, cp-ltadp-90, celr-tdgd-95, dh-dgnus-89, fpp-sssfe-88, fr-scpdt-84, dett-adgab-94, dgst-ads-90, dlv-sorod-93, dlt-pepg-84, eg-rpdfb-94, eg-glbdb-95, fr-gdfdp-91, gs-ssa-79, gnv-dptdd-88, h-celag-94, h-ggpig-95, jemwdt-npgda-91, jm-mpsne-96, k-vaor-89, kk-adgug-89, k-dpgul-92, k-adpg-93, k-mcvr-93, kb-pgap-92, l-aeglv-80, lmp-sbeac-94, lmps-trm1b-90, lms-gtrre-91, lms-la3be-93, nt-fapsd-84, pt-iabod-95, r-nmdpg-87, rt-rplbo-86, s-mncpe-84, stt-mvuhs-81, t-eggmn-87, tdb-agdrd-88, tt-uavrp-86, tt-pgelt-89, tt-gd-95, t-dgds-88, t-hdg-63, v-ucvc-81, w-npagt-90, w-cblsg-85, w-dpg-82, ZZZ" -, update = "01.04 icking, 98.11 bibrelex, 98.03 bibrelex, 97.03 tamassia, 96.09 tamassia, 95.05 tamassia" +, author = "G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and E. Tassinari and F. Vargiu" +, title = "An Experimental Comparison of Three Graph Drawing Algorithms" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "306--315" +, url = "https://www.cs.brown.edu/cgc/papers/dglttv-ectgd-95.ps.gz" +, keywords = "graph drawing, experiments, orthogonal" +, cites = "bcn-cdder-92, bfn-wigdp-85, bnt-ladfd-86, bbdl-tealf-91, bk-bhogd-94, con-dpgn-85, cp-ltadp-90, celr-tdgd-95, dh-dgnus-89, fpp-sssfe-88, fr-scpdt-84, dett-adgab-94, dgst-ads-90, dlv-sorod-93, dlt-pepg-84, eg-rpdfb-94, eg-glbdb-95, fr-gdfdp-91, gs-ssa-79, gnv-dptdd-88, h-celag-94, h-ggpig-95, jemwdt-npgda-91, jm-mpsne-96, k-vaor-89, kk-adgug-89, k-dpgul-92, k-adpg-93, k-mcvr-93, kb-pgap-92, l-aeglv-80, lmp-sbeac-94, lmps-trm1b-90, lms-gtrre-91, lms-la3be-93, nt-fapsd-84, pt-iabod-95, r-nmdpg-87, rt-rplbo-86, s-mncpe-84, stt-mvuhs-81, t-eggmn-87, tdb-agdrd-88, tt-uavrp-86, tt-pgelt-89, tt-gd-95, t-dgds-88, t-hdg-63, v-ucvc-81, w-npagt-90, w-cblsg-85, w-dpg-82, ZZZ" +, update = "01.04 icking, 98.11 bibrelex, 98.03 bibrelex, 97.03 tamassia, 96.09 tamassia, 95.05 tamassia" } @techreport{dglttvv-ddges-96 -, author = "G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and E. Tassinari and F. Vargiu and L. Vismara" -, title = "Drawing Directed Graphs: An Experimental Study" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Brown Univ." -, year = 1996 -, keywords = "graph drawing, experiments, upward" -, update = "98.07 vismara, 96.09 tamassia" +, author = "G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and E. Tassinari and F. Vargiu and L. Vismara" +, title = "Drawing Directed Graphs: An Experimental Study" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Brown Univ." +, year = 1996 +, keywords = "graph drawing, experiments, upward" +, update = "98.07 vismara, 96.09 tamassia" } @inproceedings{dgst-ads-90 -, author = "G. {Di Battista} and A. Giammarco and G. Santucci and R. Tamassia" -, title = "The Architecture of {Diagram} {Server}" -, booktitle = "Proc. IEEE Workshop on Visual Languages" -, nickname = "VL '90" -, year = 1990 -, pages = "60--65" -, keywords = "graph drawing" -, update = "98.07 bibrelex, 95.05 tamassia, 93.09 tamassia" +, author = "G. {Di Battista} and A. Giammarco and G. Santucci and R. Tamassia" +, title = "The Architecture of {Diagram} {Server}" +, booktitle = "Proc. IEEE Workshop on Visual Languages" +, nickname = "VL '90" +, year = 1990 +, pages = "60--65" +, keywords = "graph drawing" +, update = "98.07 bibrelex, 95.05 tamassia, 93.09 tamassia" } @inproceedings{dll-pds-95 -, author = "G. {Di Battista} and W. Lenhart and G. Liotta" -, title = "Proximity Drawability: a Survey" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "328--339" -, keywords = "graph drawing, proximity, survey" -, update = "95.01 tamassia" +, author = "G. {Di Battista} and W. Lenhart and G. Liotta" +, title = "Proximity Drawability: a Survey" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "328--339" +, keywords = "graph drawing, proximity, survey" +, update = "95.01 tamassia" } @inproceedings{dl-upcfm-98 -, author = "G. {Di Battista} and G. Liotta" -, title = "Upward Planarity Checking: ``{F}aces Are More than Polygons''" -, editor = "S. H. Whitesides" -, booktitle = "Graph Drawing (Proc. GD~'98)" -, series = "Lecture Notes Comput. Sci." -, volume = 1547 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "72--86" -, update = "99.07 vismara, 99.03 patrignani+vismara, 98.11 vismara" +, author = "G. {Di Battista} and G. Liotta" +, title = "Upward Planarity Checking: ``{F}aces Are More than Polygons''" +, editor = "S. H. Whitesides" +, booktitle = "Graph Drawing (Proc. GD~'98)" +, series = "Lecture Notes Comput. Sci." +, volume = 1547 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "72--86" +, update = "99.07 vismara, 99.03 patrignani+vismara, 98.11 vismara" } @inproceedings{dlsv-ds-92 -, author = "G. {Di Battista} and G. Liotta and M. Strani and F. Vargiu" -, title = "{Diagram} {Server}" -, booktitle = "Proc. Advanced Visual Interfaces" -, series = "World Scientific Series in Computer Science" -, volume = 36 -, year = 1992 -, pages = "415--417" -, keywords = "graph drawing" -, update = "95.05 tamassia, 94.01 tamassia, 93.09 tamassia" +, author = "G. {Di Battista} and G. Liotta and M. Strani and F. Vargiu" +, title = "{Diagram} {Server}" +, booktitle = "Proc. Advanced Visual Interfaces" +, series = "World Scientific Series in Computer Science" +, volume = 36 +, year = 1992 +, pages = "415--417" +, keywords = "graph drawing" +, update = "95.05 tamassia, 94.01 tamassia, 93.09 tamassia" } @article{dlv-ds-95 -, author = "G. {Di Battista} and G. Liotta and F. Vargiu" -, title = "{Diagram Server}" -, journal = "J. Visual Lang. Comput." -, volume = 6 -, number = 3 -, year = 1995 -, pages = "275--298" -, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" -, keywords = "graph drawing, system" -, update = "96.09 tamassia, 95.09 agarwal+devillers, 95.05 tamassia" +, author = "G. {Di Battista} and G. Liotta and F. Vargiu" +, title = "{Diagram Server}" +, journal = "J. Visual Lang. Comput." +, volume = 6 +, number = 3 +, year = 1995 +, pages = "275--298" +, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" +, keywords = "graph drawing, system" +, update = "96.09 tamassia, 95.09 agarwal+devillers, 95.05 tamassia" } @article{dlv-sood-98 -, author = "G. {Di Battista} and G. Liotta and F. Vargiu" -, title = "Spirality and Optimal Orthogonal Drawings" -, journal = "SIAM J. Comput." -, volume = 27 -, number = 6 -, year = 1998 -, pages = "1764--1811" -, succeeds = "dlv-sorod-93,lvd-odmnb-94" -, update = "99.03 vismara" +, author = "G. {Di Battista} and G. Liotta and F. Vargiu" +, title = "Spirality and Optimal Orthogonal Drawings" +, journal = "SIAM J. Comput." +, volume = 27 +, number = 6 +, year = 1998 +, pages = "1764--1811" +, succeeds = "dlv-sorod-93,lvd-odmnb-94" +, update = "99.03 vismara" } @inproceedings{dlv-sorod-93 -, author = "G. {Di Battista} and G. Liotta and F. Vargiu" -, title = "Spirality of Orthogonal Representations and Optimal Drawings of Series-Parallel Graphs and $3$-Planar Graphs" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "151--162" -, update = "99.11 bibrelex, 94.05 tamassia" +, author = "G. {Di Battista} and G. Liotta and F. Vargiu" +, title = "Spirality of Orthogonal Representations and Optimal Drawings of Series-Parallel Graphs and $3$-Planar Graphs" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "151--162" +, update = "99.11 bibrelex, 94.05 tamassia" } @inproceedings{dlw-swp-96 -, author = "G. {Di Battista} and G. Liotta and S. H. Whitesides" -, title = "The Strength of Weak Proximity" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, nickname = "GD '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "178--189" -, url = "https://www.cs.brown.edu/cgc/papers/dlw-swp-96.ps.gz" -, keywords = "graph drawing" -, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 tamassia, 96.09 tamassia" +, author = "G. {Di Battista} and G. Liotta and S. H. Whitesides" +, title = "The Strength of Weak Proximity" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, nickname = "GD '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "178--189" +, url = "https://www.cs.brown.edu/cgc/papers/dlw-swp-96.ps.gz" +, keywords = "graph drawing" +, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 tamassia, 96.09 tamassia" } @article{dlr-bgudp-90 -, author = "G. {Di Battista} and W. P. Liu and I. Rival" -, title = "Bipartite Graphs Upward Drawings and Planarity" -, journal = "Inform. Process. Lett." -, volume = 36 -, year = 1990 -, pages = "317--322" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "G. {Di Battista} and W. P. Liu and I. Rival" +, title = "Bipartite Graphs Upward Drawings and Planarity" +, journal = "Inform. Process. Lett." +, volume = 36 +, year = 1990 +, pages = "317--322" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{dm-ntgds-99 -, title = "New Trends in Graph Drawing: Special Issue on Selected Papers from the 1997 {S}ymposium on {G}raph {D}rawing" -, editor = "Giuseppe {Di Battista} and Petra Mutzel" -, journal = "J. Graph Algorithms Appl." -, volume = "3:4" -, year = 1999 -, url = "https://www.cs.brown.edu/publications/jgaa/papers.html" -, update = "00.03 vismara" +, title = "New Trends in Graph Drawing: Special Issue on Selected Papers from the 1997 {S}ymposium on {G}raph {D}rawing" +, editor = "Giuseppe {Di Battista} and Petra Mutzel" +, journal = "J. Graph Algorithms Appl." +, volume = "3:4" +, year = 1999 +, url = "https://www.cs.brown.edu/publications/jgaa/papers.html" +, update = "00.03 vismara" } @book{dm-spgd- -, title = "Special Issue on Selected Papers from the 1997 Symposium on Graph Drawing" -, editor = "G. {Di Battista} and P. Mutzel" -, series = "J. Graph Algorithms Appl." -, note = "To appear" -, keywords = "graph drawing, collection" -, update = "98.11 tamassia" +, title = "Special Issue on Selected Papers from the 1997 Symposium on Graph Drawing" +, editor = "G. {Di Battista} and P. Mutzel" +, series = "J. Graph Algorithms Appl." +, note = "To appear" +, keywords = "graph drawing, collection" +, update = "98.11 tamassia" } % Bernierd June 1986 @inproceedings{dn-atphg-87 -, author = "G. {Di Battista} and E. Nardelli" -, title = "An Algorithm for Testing Planarity of Hierarchical Graphs" -, editor = "G. Tinhofer and G. Schmidt" -, booktitle = "Proc. 12th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 246 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "277--289" -, keywords = "graph drawing" -, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" +, author = "G. {Di Battista} and E. Nardelli" +, title = "An Algorithm for Testing Planarity of Hierarchical Graphs" +, editor = "G. Tinhofer and G. Schmidt" +, booktitle = "Proc. 12th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 246 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "277--289" +, keywords = "graph drawing" +, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" } @article{dn-hpt-88 -, author = "G. {Di Battista} and E. Nardelli" -, title = "Hierarchies and Planarity Theory" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 18 -, number = 6 -, year = 1988 -, pages = "1035--1046" -, keywords = "graph drawing upward planar" -, update = "95.05 tamassia, 93.09 tamassia" +, author = "G. {Di Battista} and E. Nardelli" +, title = "Hierarchies and Planarity Theory" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 18 +, number = 6 +, year = 1988 +, pages = "1035--1046" +, keywords = "graph drawing upward planar" +, update = "95.05 tamassia, 93.09 tamassia" } @inproceedings{dpv-spa3d-98 -, author = "Giuseppe {Di Battista} and Maurizio Patrignani and Francesco Vargiu" -, title = "A {Split \& Push} Approach to {3D} Orthogonal Drawing" -, editor = "S. H. Whitesides" -, booktitle = "Graph Drawing (Proc. GD '98)" -, series = "Lecture Notes Comput. Sci." -, volume = 1547 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "87--101" -, keywords = "graph drawing, orthogonal, three-dimensional" -, update = "99.03 patrignani" +, author = "Giuseppe {Di Battista} and Maurizio Patrignani and Francesco Vargiu" +, title = "A {Split \& Push} Approach to {3D} Orthogonal Drawing" +, editor = "S. H. Whitesides" +, booktitle = "Graph Drawing (Proc. GD '98)" +, series = "Lecture Notes Comput. Sci." +, volume = 1547 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "87--101" +, keywords = "graph drawing, orthogonal, three-dimensional" +, update = "99.03 patrignani" } @inproceedings{dptt-alpdx-89 -, author = "G. {Di Battista} and E. Pietrosanti and R. Tamassia and I. G. Tollis" -, title = "Automatic Layout of {PERT} Diagrams with {XPERT}" -, booktitle = "Proc. IEEE Workshop on Visual Languages" -, nickname = "VL '89" -, year = 1989 -, pages = "171--176" -, keywords = "graph drawing" -, update = "98.07 bibrelex, 93.09 tamassia" +, author = "G. {Di Battista} and E. Pietrosanti and R. Tamassia and I. G. Tollis" +, title = "Automatic Layout of {PERT} Diagrams with {XPERT}" +, booktitle = "Proc. IEEE Workshop on Visual Languages" +, nickname = "VL '89" +, year = 1989 +, pages = "171--176" +, keywords = "graph drawing" +, update = "98.07 bibrelex, 93.09 tamassia" } @article{dt-aprad-88 -, author = "G. {Di Battista} and R. Tamassia" -, title = "Algorithms for Plane Representations of Acyclic Digraphs" -, journal = "Theoret. Comput. Sci." -, volume = 61 -, year = 1988 -, pages = "175--198" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "G. {Di Battista} and R. Tamassia" +, title = "Algorithms for Plane Representations of Acyclic Digraphs" +, journal = "Theoret. Comput. Sci." +, volume = 61 +, year = 1988 +, pages = "175--198" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{dt-igsda-86 -, author = "G. {Di Battista} and R. Tamassia" -, title = "An Integrated Graphic System for Designing and Accessing Statistical Data Bases" -, booktitle = "Proc. 7th Sympos. on Computational Statistics" -, nickname = "COMPSTAT 1986" -, publisher = "Physica-Verlag" -, year = 1986 -, pages = "231--236" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "G. {Di Battista} and R. Tamassia" +, title = "An Integrated Graphic System for Designing and Accessing Statistical Data Bases" +, booktitle = "Proc. 7th Sympos. on Computational Statistics" +, nickname = "COMPSTAT 1986" +, publisher = "Physica-Verlag" +, year = 1986 +, pages = "231--236" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{dt-ipt-89 -, author = "G. {Di Battista} and R. Tamassia" -, title = "Incremental Planarity Testing" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "436--441" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "G. {Di Battista} and R. Tamassia" +, title = "Incremental Planarity Testing" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "436--441" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{dt-olgas-90 -, author = "G. {Di Battista} and R. Tamassia" -, title = "On-Line Graph Algorithms with {SPQR}-Trees" -, editor = "M. S. Paterson" -, booktitle = "Automata, Languages and Programming (Proc. 17th ICALP)" -, series = "Lecture Notes Comput. Sci." -, volume = 443 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "598--611" -, update = "98.07 tamassia+vismara, 95.05 tamassia, 94.01 tamassia" +, author = "G. {Di Battista} and R. Tamassia" +, title = "On-Line Graph Algorithms with {SPQR}-Trees" +, editor = "M. S. Paterson" +, booktitle = "Automata, Languages and Programming (Proc. 17th ICALP)" +, series = "Lecture Notes Comput. Sci." +, volume = 443 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "598--611" +, update = "98.07 tamassia+vismara, 95.05 tamassia, 94.01 tamassia" } @techreport{dt-olmtc-92 -, author = "G. {Di Battista} and R. Tamassia" -, title = "On-Line Maintenance of Triconnected Components with {SPQR}-Trees" -, type = "Report" -, number = "CS-92-40" -, institution = "Comput. Sci. Dept., Brown Univ." -, address = "Providence, RI" -, year = 1992 -, note = "Submitted for publication." -, succeeds = "dt-olgas-90" -, update = "95.05 tamassia, 94.05 tamassia" +, author = "G. {Di Battista} and R. Tamassia" +, title = "On-Line Maintenance of Triconnected Components with {SPQR}-Trees" +, type = "Report" +, number = "CS-92-40" +, institution = "Comput. Sci. Dept., Brown Univ." +, address = "Providence, RI" +, year = 1992 +, note = "Submitted for publication." +, succeeds = "dt-olgas-90" +, update = "95.05 tamassia, 94.05 tamassia" } @article{dt-olmtc-96 -, author = "G. {Di Battista} and R. Tamassia" -, title = "On-Line Maintenance of Triconnected Components with {SPQR}-Trees" -, journal = "Algorithmica" -, volume = 15 -, year = 1996 -, pages = "302--318" -, succeeds = "dt-olgas-90, dt-olmtc-92" -, update = "98.07 vismara, 97.11 bibrelex, 97.03 tamassia" +, author = "G. {Di Battista} and R. Tamassia" +, title = "On-Line Maintenance of Triconnected Components with {SPQR}-Trees" +, journal = "Algorithmica" +, volume = 15 +, year = 1996 +, pages = "302--318" +, succeeds = "dt-olgas-90, dt-olmtc-92" +, update = "98.07 vismara, 97.11 bibrelex, 97.03 tamassia" } @techreport{dt-olpt-92 -, author = "G. {Di Battista} and R. Tamassia" -, title = "On-Line Planarity Testing" -, type = "Report" -, number = "CS-92-39" -, institution = "Comput. Sci. Dept., Brown Univ." -, address = "Providence, RI" -, year = 1992 -, succeeds = "dt-ipt-89" -, precedes = "dt-olpt-96" -, update = "97.03 smid, 94.05 tamassia" +, author = "G. {Di Battista} and R. Tamassia" +, title = "On-Line Planarity Testing" +, type = "Report" +, number = "CS-92-39" +, institution = "Comput. Sci. Dept., Brown Univ." +, address = "Providence, RI" +, year = 1992 +, succeeds = "dt-ipt-89" +, precedes = "dt-olpt-96" +, update = "97.03 smid, 94.05 tamassia" } @article{dt-olpt-96 -, author = "G. {Di Battista} and R. Tamassia" -, title = "On-Line Planarity Testing" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "956--997" -, keywords = "graph drawing" -, succeeds = "dt-ipt-89, dt-olpt-92" -, update = "97.03 smid+tamassia, 95.01 tamassia" +, author = "G. {Di Battista} and R. Tamassia" +, title = "On-Line Planarity Testing" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "956--997" +, keywords = "graph drawing" +, succeeds = "dt-ipt-89, dt-olpt-92" +, update = "97.03 smid+tamassia, 95.01 tamassia" } @book{dt-sigrg-98 -, title = "Special Issue on Geometric Representations of Graphs" -, editor = "G. {Di Battista} and R. Tamassia" -, series = "Comput. Geom. Theory Appl." -, volume = "9:1--2" -, year = 1998 -, keywords = "graph drawing, collection" -, update = "98.07 vismara, 95.09 tamassia" +, title = "Special Issue on Geometric Representations of Graphs" +, editor = "G. {Di Battista} and R. Tamassia" +, series = "Comput. Geom. Theory Appl." +, volume = "9:1--2" +, year = 1998 +, keywords = "graph drawing, collection" +, update = "98.07 vismara, 95.09 tamassia" } @book{dt-sigd-96 -, title = "Special Issue on Graph Drawing" -, editor = "G. {Di Battista} and R. Tamassia" -, series = "Algorithmica" -, volume = "16:1" -, year = 1996 -, keywords = "graph drawing, collection" -, update = "98.07 vismara, 95.09 tamassia" +, title = "Special Issue on Graph Drawing" +, editor = "G. {Di Battista} and R. Tamassia" +, series = "Algorithmica" +, volume = "16:1" +, year = 1996 +, keywords = "graph drawing, collection" +, update = "98.07 vismara, 95.09 tamassia" } @inproceedings{dtt-arsdd-89 -, author = "G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "Area requirement and symmetry display in drawing graphs" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "51--60" -, keywords = "graph drawing" -, cites = "con-dpgn-85, cnao-laepg-85, cp-ltadp-90, dt-aprad-88, dlt-pepg-84, e-hgd-84, et-adgab-89, f-slrpg-48, fpp-sssfe-88, gy-tsr-83, ht-ept-74, hp-callc-79, k-vrrpd-75, kr-pl-75, k-fpos-87, lec-aptg-67, lns-mdg-85, ma-fddso-86, ma-fddst-88, r-nmdpg-87, rt-tdt-81, ru-roptc-88, rt-rplbo-86, s-epgg-90, s-cm-51, sr-vudtd-34, s-mncpe-84, sr-cdtn-83, tt-uavrp-86, t-eggmn-87, tt-eepgl-87, tdb-agdrd-88, t-hdg-63, w-bzv-36, w-dpg-82, ZZZ" -, update = "01.04 icking, 98.03 bibrelex, 93.09 tamassia" +, author = "G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "Area requirement and symmetry display in drawing graphs" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "51--60" +, keywords = "graph drawing" +, cites = "con-dpgn-85, cnao-laepg-85, cp-ltadp-90, dt-aprad-88, dlt-pepg-84, e-hgd-84, et-adgab-89, f-slrpg-48, fpp-sssfe-88, gy-tsr-83, ht-ept-74, hp-callc-79, k-vrrpd-75, kr-pl-75, k-fpos-87, lec-aptg-67, lns-mdg-85, ma-fddso-86, ma-fddst-88, r-nmdpg-87, rt-tdt-81, ru-roptc-88, rt-rplbo-86, s-epgg-90, s-cm-51, sr-vudtd-34, s-mncpe-84, sr-cdtn-83, tt-uavrp-86, t-eggmn-87, tt-eepgl-87, tdb-agdrd-88, t-hdg-63, w-bzv-36, w-dpg-82, ZZZ" +, update = "01.04 icking, 98.03 bibrelex, 93.09 tamassia" } @article{dtt-arsdp-92 -, author = "G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "Area Requirement and Symmetry Display of Planar Upward Drawings" -, journal = "Discrete Comput. Geom." -, volume = 7 -, number = 4 -, year = 1992 -, pages = "381--401" -, keywords = "graph drawing" -, update = "98.11 bibrelex, 93.09 tamassia" +, author = "G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "Area Requirement and Symmetry Display of Planar Upward Drawings" +, journal = "Discrete Comput. Geom." +, volume = 7 +, number = 4 +, year = 1992 +, pages = "381--401" +, keywords = "graph drawing" +, update = "98.11 bibrelex, 93.09 tamassia" } @article{dtt-cvrg-92 -, author = "G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "Constrained Visibility Representations of Graphs" -, journal = "Inform. Process. Lett." -, volume = 41 -, year = 1992 -, pages = "1--7" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "Constrained Visibility Representations of Graphs" +, journal = "Inform. Process. Lett." +, volume = 41 +, year = 1992 +, pages = "1--7" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{dtt-pdad-88 -, author = "G. {Di Battista} and R. Tamassia and I. G. Tollis" -, title = "On planar drawings of acyclic digraphs" -, type = "Report" -, number = "UTDCS 7-88" -, institution = "Comput. Sci. Program., Univ. Texas Dallas" -, address = "Richardson, TX" -, year = 1988 +, author = "G. {Di Battista} and R. Tamassia and I. G. Tollis" +, title = "On planar drawings of acyclic digraphs" +, type = "Report" +, number = "UTDCS 7-88" +, institution = "Comput. Sci. Program., Univ. Texas Dallas" +, address = "Richardson, TX" +, year = 1988 } @techreport{dtv-olcpt-95t -, author = "G. {Di Battista} and R. Tamassia and L. Vismara" -, title = "On-Line Convex Planarity Testing" -, type = "Technical Report" -, number = "CS-95-26" -, institution = "Dept. Comput. Sci., Brown Univ." -, month = aug -, year = 1995 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/95/cs95-26.ps.Z" -, update = "98.07 vismara, 97.03 tamassia" +, author = "G. {Di Battista} and R. Tamassia and L. Vismara" +, title = "On-Line Convex Planarity Testing" +, type = "Technical Report" +, number = "CS-95-26" +, institution = "Dept. Comput. Sci., Brown Univ." +, month = aug +, year = 1995 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/95/cs95-26.ps.Z" +, update = "98.07 vismara, 97.03 tamassia" } @inproceedings{dtv-olcpt-95 -, author = "G. {Di Battista} and R. Tamassia and L. Vismara" -, title = "On-Line Convex Planarity Testing" -, booktitle = "Graph-Theoretic Concepts in Computer Science (Proc. WG '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 903 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "242--255" -, keywords = "graph drawing" -, update = "98.07 vismara, 94.05 tamassia" +, author = "G. {Di Battista} and R. Tamassia and L. Vismara" +, title = "On-Line Convex Planarity Testing" +, booktitle = "Graph-Theoretic Concepts in Computer Science (Proc. WG '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 903 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "242--255" +, keywords = "graph drawing" +, update = "98.07 vismara, 94.05 tamassia" } @techreport{dtv-osrdp-96t -, author = "G. {Di Battista} and R. Tamassia and L. Vismara" -, title = "Output-Sensitive Reporting of Disjoint Paths" -, type = "Technical Report" -, number = "CS-96-25" -, institution = "Dept. Computer Science, Brown Univ." -, month = aug -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-25.ps.Z" -, update = "98.07 vismara" +, author = "G. {Di Battista} and R. Tamassia and L. Vismara" +, title = "Output-Sensitive Reporting of Disjoint Paths" +, type = "Technical Report" +, number = "CS-96-25" +, institution = "Dept. Computer Science, Brown Univ." +, month = aug +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-25.ps.Z" +, update = "98.07 vismara" } @inproceedings{dtv-osrdp-96i -, author = "G. {Di Battista} and R. Tamassia and L. Vismara" -, title = "Output-Sensitive Reporting of Disjoint Paths" -, booktitle = "Proc. 2nd Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '96" -, site = "Hong Kong" -, series = "Lecture Notes Comput. Sci." -, volume = 1090 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "81--91" -, url = "https://www.cs.brown.edu/cgc/papers/dtv-osrdp-96.ps.gz" -, update = "99.11 bibrelex, 98.07 vismara, 97.03 tamassia" +, author = "G. {Di Battista} and R. Tamassia and L. Vismara" +, title = "Output-Sensitive Reporting of Disjoint Paths" +, booktitle = "Proc. 2nd Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '96" +, site = "Hong Kong" +, series = "Lecture Notes Comput. Sci." +, volume = 1090 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "81--91" +, url = "https://www.cs.brown.edu/cgc/papers/dtv-osrdp-96.ps.gz" +, update = "99.11 bibrelex, 98.07 vismara, 97.03 tamassia" } @article{dtv-osrdp-99 -, author = "G. {Di Battista} and R. Tamassia and L. Vismara" -, title = "Output-Sensitive Reporting of Disjoint Paths" -, journal = "Algorithmica" -, volume = 23 -, number = 4 -, year = 1999 -, pages = "302--340" -, succeeds = "dtv-osrdp-96i, dtv-osrdp-96t" -, update = "99.03 vismara, 98.11 tamassia" -, annote = "Special Issue of Selected Papers from the 2nd Annual International Computing and Combinatorics Conference" +, author = "G. {Di Battista} and R. Tamassia and L. Vismara" +, title = "Output-Sensitive Reporting of Disjoint Paths" +, journal = "Algorithmica" +, volume = 23 +, number = 4 +, year = 1999 +, pages = "302--340" +, succeeds = "dtv-osrdp-96i, dtv-osrdp-96t" +, update = "99.03 vismara, 98.11 tamassia" +, annote = "Special Issue of Selected Papers from the 2nd Annual International Computing and Combinatorics Conference" } @inproceedings{dv-aptg-93 -, author = "G. {Di Battista} and L. Vismara" -, title = "Angles of Planar Triangular Graphs" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '93" -, year = 1993 -, pages = "431--437" -, keywords = "graph drawing" -, update = "98.07 bibrelex, 97.03 agarwal, 93.09 milone+mitchell+tamassia" +, author = "G. {Di Battista} and L. Vismara" +, title = "Angles of Planar Triangular Graphs" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '93" +, year = 1993 +, pages = "431--437" +, keywords = "graph drawing" +, update = "98.07 bibrelex, 97.03 agarwal, 93.09 milone+mitchell+tamassia" } @article{dv-aptg-96 -, author = "G. {Di Battista} and L. Vismara" -, title = "Angles of Planar Triangular Graphs" -, journal = "SIAM J. Discrete Math." -, volume = 9 -, number = 3 -, year = 1996 -, pages = "349--359" -, update = "97.03 tamassia" +, author = "G. {Di Battista} and L. Vismara" +, title = "Angles of Planar Triangular Graphs" +, journal = "SIAM J. Discrete Math." +, volume = 9 +, number = 3 +, year = 1996 +, pages = "349--359" +, update = "97.03 tamassia" } @inproceedings{dm-dfich-86 -, author = "V. {Di Gesu} and M. C. Maccarone" -, title = "Description of fuzzy images by convex hull technique" -, booktitle = "Proc. 8th IEEE Internat. Conf. Pattern Recogn." -, year = 1986 -, pages = "1276--1278" +, author = "V. {Di Gesu} and M. C. Maccarone" +, title = "Description of fuzzy images by convex hull technique" +, booktitle = "Proc. 8th IEEE Internat. Conf. Pattern Recogn." +, year = 1986 +, pages = "1276--1278" } @inproceedings{d-islas-94 -, author = "Mario Dias" -, title = "Intersection of Straight Lines with Algebraic Surfaces in {NC-SAVE}" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "38--40" -, update = "00.11 smid, 00.07 icking" +, author = "Mario Dias" +, title = "Intersection of Straight Lines with Algebraic Surfaces in {NC-SAVE}" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "38--40" +, update = "00.11 smid, 00.07 icking" } @inproceedings{do-accac-89 -, author = "M. D{\'\i}az and J. O'Rourke" -, title = "Algorithms for computing the center of area of a convex polygon" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 46 +, author = "M. D{\'\i}az and J. O'Rourke" +, title = "Algorithms for computing the center of area of a convex polygon" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 46 } @article{do-accac-94 -, author = "M. D{\'\i}az and J. O'Rourke" -, title = "Algorithms for computing the center of area of a convex polygon" -, journal = "Visual Comput." -, volume = 10 -, year = 1994 -, pages = "432--442" -, keywords = "convexity, centerpoints" -, succeeds = "do-accac-89" -, update = "95.01 smid" +, author = "M. D{\'\i}az and J. O'Rourke" +, title = "Algorithms for computing the center of area of a convex polygon" +, journal = "Visual Comput." +, volume = 10 +, year = 1994 +, pages = "432--442" +, keywords = "convexity, centerpoints" +, succeeds = "do-accac-89" +, update = "95.01 smid" } @incollection{do-cccp-91 -, author = "M. D{\'\i}az and J. O'Rourke" -, title = "Chord center for convex polygons" -, editor = "B. Melter and A. Rosenfeld and P. Bhattacharyai" -, booktitle = "Computational Vision" -, publisher = "American Mathematical Society" -, year = 1991 -, pages = "29--44" -, keywords = "convexity, centerpoints" -, update = "94.01 orourke" +, author = "M. D{\'\i}az and J. O'Rourke" +, title = "Chord center for convex polygons" +, editor = "B. Melter and A. Rosenfeld and P. Bhattacharyai" +, booktitle = "Computational Vision" +, publisher = "American Mathematical Society" +, year = 1991 +, pages = "29--44" +, keywords = "convexity, centerpoints" +, update = "94.01 orourke" } @inproceedings{do-ccap-89 -, author = "M. D{\'\i}az and J. O'Rourke" -, title = "Computing the center of area of a polygon" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "171--182" -, keywords = "convexity, centerpoints" -, update = "95.01 smid, 94.01 smid" +, author = "M. D{\'\i}az and J. O'Rourke" +, title = "Computing the center of area of a polygon" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "171--182" +, keywords = "convexity, centerpoints" +, update = "95.01 smid, 94.01 smid" } @techreport{do-ccasp-89 -, author = "M. D{\'\i}az and J. O'Rourke" -, title = "Computing the center of area of a simple polygon" -, type = "Technical {Report}" -, number = "89-03" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1989 -, keywords = "convexity, centerpoints" -, update = "95.01 smid" +, author = "M. D{\'\i}az and J. O'Rourke" +, title = "Computing the center of area of a simple polygon" +, type = "Technical {Report}" +, number = "89-03" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1989 +, keywords = "convexity, centerpoints" +, update = "95.01 smid" } @inproceedings{do-hssp-90 -, author = "M. D{\'\i}az and J. O'Rourke" -, title = "Ham-sandwich sectioning of polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "282--286" -, keywords = "convexity, centerpoints, ham-sandwich" -, cites = "do-hssp-90t, e-acg-87, eos-calha-86, ZZZ" -, update = "98.07 bibrelex" +, author = "M. D{\'\i}az and J. O'Rourke" +, title = "Ham-sandwich sectioning of polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "282--286" +, keywords = "convexity, centerpoints, ham-sandwich" +, cites = "do-hssp-90t, e-acg-87, eos-calha-86, ZZZ" +, update = "98.07 bibrelex" } @techreport{do-hssp-90t -, author = "M. G. D{\'\i}az and J. O'Rourke" -, title = "Ham-sandwich sectioning of polygons" -, type = "Technical {Report}" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1990 -, note = "In preparation" -, update = "98.07 bibrelex" +, author = "M. G. D{\'\i}az and J. O'Rourke" +, title = "Ham-sandwich sectioning of polygons" +, type = "Technical {Report}" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1990 +, note = "In preparation" +, update = "98.07 bibrelex" } @techreport{dm-fnalm-94 -, author = "M. Dickerson and M. Montague" -, title = "Fast new algorithms for locally minimum triangulations - and a platform for testing them" -, type = "Manuscript" -, institution = "??" -, year = 1994 -, update = "98.03 bibrelex" +, author = "M. Dickerson and M. Montague" +, title = "Fast new algorithms for locally minimum triangulations - and a platform for testing them" +, type = "Manuscript" +, institution = "??" +, year = 1994 +, update = "98.03 bibrelex" } @inproceedings{ds-opcpm-96 -, author = "Matthew Dickerson and Daniel Scharstein" -, title = "Optimal placement of convex polygons to maximize point containment" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "114--121" -, keywords = "motion planning, polygon containment, arrangements, output-sensitive algorithms, bucketing" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Matthew Dickerson and Daniel Scharstein" +, title = "Optimal placement of convex polygons to maximize point containment" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "114--121" +, keywords = "motion planning, polygon containment, arrangements, output-sensitive algorithms, bucketing" +, update = "96.09 agarwal, 96.01 mitchell" } @article{ds-opcpm-98 -, author = "Matthew Dickerson and Daniel Scharstein" -, title = "Optimal placement of convex polygons to maximize point containment" -, journal = "Comput. Geom. Theory Appl." -, volume = 11 -, year = 1998 -, pages = "1--16" -, succeeds = "ds-opcpm-96" -, update = "98.11 devillers" +, author = "Matthew Dickerson and Daniel Scharstein" +, title = "Optimal placement of convex polygons to maximize point containment" +, journal = "Comput. Geom. Theory Appl." +, volume = 11 +, year = 1998 +, pages = "1--16" +, succeeds = "ds-opcpm-96" +, update = "98.11 devillers" } @inproceedings{ds-rdocp-96 -, author = "Matthew Dickerson and Daniel Scharstein" -, title = "The rotation diagram and optimal containing placements of a convex polygon" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V9--V10" -, cites = "ds-opcpm-96, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Matthew Dickerson and Daniel Scharstein" +, title = "The rotation diagram and optimal containing placements of a convex polygon" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V9--V10" +, cites = "ds-opcpm-96, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{d-rlegt-92 -, author = "M. T. Dickerson" -, title = "Rank of the longest edge in the greedy triangulation" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "182--187" -, cites = "dd-frnns-90, dd-ekdnp-91, g-nrpt-79, g-segta-89, k-ndot-80, ll-abgtc-87, l-abigt-86, l-tspp-77, mz-ngndt-79, ps-cgi-85, mz-pmhfa-83, r-slcdn-70, s-sisie-91, ZZZ" -, update = "98.07 bibrelex" +, author = "M. T. Dickerson" +, title = "Rank of the longest edge in the greedy triangulation" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "182--187" +, cites = "dd-frnns-90, dd-ekdnp-91, g-nrpt-79, g-segta-89, k-ndot-80, ll-abgtc-87, l-abigt-86, l-tspp-77, mz-ngndt-79, ps-cgi-85, mz-pmhfa-83, r-slcdn-70, s-sisie-91, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{dd-ekdnp-91 -, author = "M. T. Dickerson and R. L. Drysdale" -, title = "Enumerating $k$ distances for $n$ points in the plane" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "234--238" -, keywords = "Delaunay triangulation, proximity, enumeration" -, precedes = "dds-saeid-92" -, cites = "aass-sdp-90, bfprt-tbs-73, c-ntcos-85, dd-frnns-90, s-mmdpsl-90t, sh-cpp-75, y-cmstk-82, ZZZ" -, update = "97.11 bibrelex, 93.09 drysdale" +, author = "M. T. Dickerson and R. L. Drysdale" +, title = "Enumerating $k$ distances for $n$ points in the plane" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "234--238" +, keywords = "Delaunay triangulation, proximity, enumeration" +, precedes = "dds-saeid-92" +, cites = "aass-sdp-90, bfprt-tbs-73, c-ntcos-85, dd-frnns-90, s-mmdpsl-90t, sh-cpp-75, y-cmstk-82, ZZZ" +, update = "97.11 bibrelex, 93.09 drysdale" } @article{dds-saeid-92 -, author = "M. T. Dickerson and R. L. Drysdale and J. R. Sack" -, title = "Simple algorithms for enumerating interpoint distances and finding $k$ nearest neighbors" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "221--239" -, keywords = "enumeration, selection, Delaunay triangulation, nearest neighbors" -, succeeds = "dd-ekdnp-91" -, update = "94.01 smid" +, author = "M. T. Dickerson and R. L. Drysdale and J. R. Sack" +, title = "Simple algorithms for enumerating interpoint distances and finding $k$ nearest neighbors" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "221--239" +, keywords = "enumeration, selection, Delaunay triangulation, nearest neighbors" +, succeeds = "dd-ekdnp-91" +, update = "94.01 smid" } @inproceedings{ddmw-fgta-94 -, author = "M. T. Dickerson and R. L. S. Drysdale and S. A. McElfresh and Emo Welzl" -, title = "Fast Greedy Triangulation Algorithms" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "211--220" -, cites = "agss-ltacv-89, bsw-cffrn-77, c-cdt-87, cl-aldt-84, dfsv-apcg-92, d-rlegt-92, dd-frnns-90, dds-saeid-92, dg-aivib-70, g-nrpt-79, g-segta-89, hp-nrmwt-92, k-ndot-80, k-mtpd-80, ll-gdtpg-86, ls-ekcpo-92i, l-olbng-87, ll-abgtc-87, ll-fagt-92, ll-gtamw-92, l-gdtan-86, l-abigt-86, l-nhmwt-87, l-gtcbe-89, l-tspp-77, mz-ngndt-79, mz-pmhfa-83, ph-hta-87, ps-cgi-85, s-eis-92, w-eucdt-93, wa-srr3d-86, ws-oacdt-87, y-cdcrc-75, ZZZ" -, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" +, author = "M. T. Dickerson and R. L. S. Drysdale and S. A. McElfresh and Emo Welzl" +, title = "Fast Greedy Triangulation Algorithms" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "211--220" +, cites = "agss-ltacv-89, bsw-cffrn-77, c-cdt-87, cl-aldt-84, dfsv-apcg-92, d-rlegt-92, dd-frnns-90, dds-saeid-92, dg-aivib-70, g-nrpt-79, g-segta-89, hp-nrmwt-92, k-ndot-80, k-mtpd-80, ll-gdtpg-86, ls-ekcpo-92i, l-olbng-87, ll-abgtc-87, ll-fagt-92, ll-gtamw-92, l-gdtan-86, l-abigt-86, l-nhmwt-87, l-gtcbe-89, l-tspp-77, mz-ngndt-79, mz-pmhfa-83, ph-hta-87, ps-cgi-85, s-eis-92, w-eucdt-93, wa-srr3d-86, ws-oacdt-87, y-cdcrc-75, ZZZ" +, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" } @article{dd-frnns-90 -, author = "M. T. Dickerson and R. S. Drysdale" -, title = "Fixed-radius near neighbor search algorithms for points and segments" -, journal = "Inform. Process. Lett." -, volume = 35 -, year = 1990 -, pages = "269--273" -, keywords = "near neighbor search, Delaunay triangulation" -, update = "93.09 drysdale" +, author = "M. T. Dickerson and R. S. Drysdale" +, title = "Fixed-radius near neighbor search algorithms for points and segments" +, journal = "Inform. Process. Lett." +, volume = 35 +, year = 1990 +, pages = "269--273" +, keywords = "near neighbor search, Delaunay triangulation" +, update = "93.09 drysdale" } @article{de-apphd-96 -, author = "M. T. Dickerson and D. Eppstein" -, title = "Algorithms for proximity problems in higher dimensions" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1996 -, pages = "277--291" -, update = "96.05 smid" +, author = "M. T. Dickerson and D. Eppstein" +, title = "Algorithms for proximity problems in higher dimensions" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1996 +, pages = "277--291" +, update = "96.05 smid" } @inproceedings{dmm-naefm-95 -, author = "Matthew T. Dickerson and Scott A. McElfresh and Mark H. Montague" -, title = "New Algorithms and Empirical Findings on Minimum Weight Triangulation Heuristics" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "238--247" -, keywords = "greedy triangulation, experimental" -, cites = "bs-plibp-94, bsw-cffrn-77, ddmw-fgta-94, dm-fnalm-94, dra-sltgt-95, g-nrpt-79, g-segta-89, hp-nrmwt-94, k-mtpd-80, ll-fagt-92, l-nhmwt-87, l-gtcbe-89, l-tspp-77, mz-ngndt-79, mz-pmhfa-83, o-cgc-94, w-eucdt-93, w-oagts-94, wa-srr3d-86, y-cdcrc-75, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 97.03 schwarzkopf, 95.09 mitchell" +, author = "Matthew T. Dickerson and Scott A. McElfresh and Mark H. Montague" +, title = "New Algorithms and Empirical Findings on Minimum Weight Triangulation Heuristics" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "238--247" +, keywords = "greedy triangulation, experimental" +, cites = "bs-plibp-94, bsw-cffrn-77, ddmw-fgta-94, dm-fnalm-94, dra-sltgt-95, g-nrpt-79, g-segta-89, hp-nrmwt-94, k-mtpd-80, ll-fagt-92, l-nhmwt-87, l-gtcbe-89, l-tspp-77, mz-ngndt-79, mz-pmhfa-83, o-cgc-94, w-eucdt-93, w-oagts-94, wa-srr3d-86, y-cdcrc-75, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 97.03 schwarzkopf, 95.09 mitchell" } @inproceedings{dm-ucsmw-96 -, author = "Matthew T. Dickerson and Mark H. Montague" -, title = "A (Usually?) Connected Subgraph of the Minimum Weight Triangulation" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "204--213" -, cites = "aatr-tin-95, cx-alesw-96, cgt-ecabs-95, cn-asla-85, dj-wtacg-89, ddmw-fgta-94, dmm-naefm-95, eorw-fmakg-92, gj-cigtn-79, g-nrpt-79, k-csmwt-94, k-mtpd-80, yxy-cdapp-94, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Matthew T. Dickerson and Mark H. Montague" +, title = "A (Usually?) Connected Subgraph of the Minimum Weight Triangulation" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "204--213" +, cites = "aatr-tin-95, cx-alesw-96, cgt-ecabs-95, cn-asla-85, dj-wtacg-89, ddmw-fgta-94, dmm-naefm-95, eorw-fmakg-92, gj-cigtn-79, g-nrpt-79, k-csmwt-94, k-mtpd-80, yxy-cdapp-94, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{ds-ekldn-92 -, author = "M. T. Dickerson and J. Shugart" -, title = "Enumerating $k$ longest distances for $n$ points in the plane" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "137--142" -, cites = "aass-sdp-90, bey-eedt-91a, bfprt-tbs-73, c-ntcos-85, c-mcsrv-72, dd-ekdnp-91, d-hdvdl-91, ki-fkbdn-91, mz-pmhfa-83, ps-cgi-85, s-lisps-89, s-sisie-91, sh-cpp-75, y-cmstk-82, yb-cf-61, ZZZ" -, update = "98.07 bibrelex" +, author = "M. T. Dickerson and J. Shugart" +, title = "Enumerating $k$ longest distances for $n$ points in the plane" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "137--142" +, cites = "aass-sdp-90, bey-eedt-91a, bfprt-tbs-73, c-ntcos-85, c-mcsrv-72, dd-ekdnp-91, d-hdvdl-91, ki-fkbdn-91, mz-pmhfa-83, ps-cgi-85, s-lisps-89, s-sisie-91, sh-cpp-75, y-cmstk-82, yb-cf-61, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{dl-gitco-97 -, author = "Walter Didimo and Antonio Leonforte" -, title = "{GRID}: An Interactive Tool for Computing Orthogonal Drawings With the Minimum Number of Bends" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "309--315" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Walter Didimo and Antonio Leonforte" +, title = "{GRID}: An Interactive Tool for Computing Orthogonal Drawings With the Minimum Number of Bends" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "309--315" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{dl-codve-98 -, author = "W. Didimo and G. Liotta" -, title = "Computing Orthogonal Drawings in a Variable Embedding Setting" -, editor = "K.-Y. Chwa and O. H. Ibarra" -, booktitle = "Algorithms and Computation (Proc. ISAAC~'98)" -, series = "Lecture Notes Comput. Sci." -, volume = 1533 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "79--88" -, update = "00.03 vismara, 99.03 vismara" +, author = "W. Didimo and G. Liotta" +, title = "Computing Orthogonal Drawings in a Variable Embedding Setting" +, editor = "K.-Y. Chwa and O. H. Ibarra" +, booktitle = "Algorithms and Computation (Proc. ISAAC~'98)" +, series = "Lecture Notes Comput. Sci." +, volume = 1533 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "79--88" +, update = "00.03 vismara, 99.03 vismara" } @article{dk-rpipt-91 -, author = "V. J. Dielissen and A. Kaldewaij" -, title = "Rectangular partition is polynomial in two dimensions but {NP}-complete in three" -, journal = "Inform. Process. Lett." -, volume = 38 -, year = 1991 -, pages = "1--6" -, update = "94.09 franciosa" -, abstract = "The inherent computational complexity of polygon +, author = "V. J. Dielissen and A. Kaldewaij" +, title = "Rectangular partition is polynomial in two dimensions but {NP}-complete in three" +, journal = "Inform. Process. Lett." +, volume = 38 +, year = 1991 +, pages = "1--6" +, update = "94.09 franciosa" +, abstract = "The inherent computational complexity of polygon decomposition problems is of importance in the field of computational geometry. For one of these problems it is shown that the three dimensional version is NP-complete whereas its two @@ -46420,2172 +46420,2172 @@ @article{dk-rpipt-91 } @book{d-csfs-93 -, author = "P. Dierckx" -, title = "Curve and Surface Fitting with Splines" -, publisher = "Clarendon Press" -, address = "New York" -, year = 1993 -, update = "96.09 orourke" +, author = "P. Dierckx" +, title = "Curve and Surface Fitting with Splines" +, publisher = "Clarendon Press" +, address = "New York" +, year = 1993 +, update = "96.09 orourke" } @article{bdv-snest-91 -, author = "A. Bialostocki, P. Dierken and B. Voxman" -, title = "Some notes on the {Erd{\H{o}}s-Szekeres} theorem" -, journal = "Discrete Math." -, volume = 91 -, year = 1991 -, pages = "231--238" -, update = "02.03 devillers" +, author = "A. Bialostocki, P. Dierken and B. Voxman" +, title = "Some notes on the {Erd{\H{o}}s-Szekeres} theorem" +, journal = "Discrete Math." +, volume = 91 +, year = 1991 +, pages = "231--238" +, update = "02.03 devillers" } @article{d-sppt-87 -, author = "R. Diestel" -, title = "A separating property of planar triangulations" -, journal = "J. Graph Theory" -, volume = 11 -, number = 1 -, year = 1987 -, pages = "43--52" -, keywords = "triangulation" -, update = "95.09 korneenko" +, author = "R. Diestel" +, title = "A separating property of planar triangulations" +, journal = "J. Graph Theory" +, volume = 11 +, number = 1 +, year = 1987 +, pages = "43--52" +, keywords = "triangulation" +, update = "95.09 korneenko" } @article{dnsg-toosp-89 -, author = "W. C. Dietrich and L. R. Nackman and C. J. Sundaresan and F. Gracer" -, title = "{TGMS}: {An} object-oriented system for programming geometry" -, journal = "Softw. -- Pract. Exp." -, volume = 19 -, number = 10 -, year = 1989 -, pages = "978--1013" -, keywords = "implementation" -, update = "95.09 korneenko" +, author = "W. C. Dietrich and L. R. Nackman and C. J. Sundaresan and F. Gracer" +, title = "{TGMS}: {An} object-oriented system for programming geometry" +, journal = "Softw. -- Pract. Exp." +, volume = 19 +, number = 10 +, year = 1989 +, pages = "978--1013" +, keywords = "implementation" +, update = "95.09 korneenko" } @phdthesis{d-iga-84 -, author = "P. Dietz" -, title = "Intersection graph algorithms" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1984 -, note = "Technical Report TR 84-628" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "P. Dietz" +, title = "Intersection graph algorithms" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1984 +, note = "Technical Report TR 84-628" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @incollection{d-fpa-89 -, author = "P. F. Dietz" -, title = "Fully persistent arrays" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, year = 1989 -, pages = "67--74" -, keywords = "data structuring, persistent" -, update = "97.11 smid, 95.09 korneenko" +, author = "P. F. Dietz" +, title = "Fully persistent arrays" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, year = 1989 +, pages = "67--74" +, keywords = "data structuring, persistent" +, update = "97.11 smid, 95.09 korneenko" } @incollection{dr-par-91 -, author = "P. F. Dietz and R. Raman" -, title = "Persistence, amortization and randomization" -, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "78--88" -, keywords = "data structuring, persistent, probabilistic analysis, amortized analysis" -, update = "95.09 korneenko" +, author = "P. F. Dietz and R. Raman" +, title = "Persistence, amortization and randomization" +, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "78--88" +, keywords = "data structuring, persistent, probabilistic analysis, amortized analysis" +, update = "95.09 korneenko" } @inproceedings{ds-tamol-87 -, author = "P. F. Dietz and D. D. Sleator" -, title = "Two Algorithms for Maintaining Order in a List" -, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." -, year = 1987 -, pages = "365--372" -, update = "95.05 tamassia" +, author = "P. F. Dietz and D. D. Sleator" +, title = "Two Algorithms for Maintaining Order in a List" +, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." +, year = 1987 +, pages = "365--372" +, update = "95.05 tamassia" } @article{d-lbss-89 -, author = "M. Dietzfelbinger" -, title = "Lower Bounds for Sorting of Sums" -, journal = "Theoret. Comput. Sci." -, volume = 66 -, year = 1989 -, pages = "137--155" -, keywords = "lower bounds, comparison trees, sorting {$X+Y$}" -, update = "93.09 erickson" +, author = "M. Dietzfelbinger" +, title = "Lower Bounds for Sorting of Sums" +, journal = "Theoret. Comput. Sci." +, volume = 66 +, year = 1989 +, pages = "137--155" +, keywords = "lower bounds, comparison trees, sorting {$X+Y$}" +, update = "93.09 erickson" } @inproceedings{dgmp-phfr-92 -, author = "M. Dietzfelbinger and J. Gil and Y. Matias and N. Pippenger" -, title = "Polynomial hash functions are reliable" -, booktitle = "ICALP" -, month = jul -, year = 1992 -, pages = "235--246" -, update = "98.11 bibrelex" +, author = "M. Dietzfelbinger and J. Gil and Y. Matias and N. Pippenger" +, title = "Polynomial hash functions are reliable" +, booktitle = "ICALP" +, month = jul +, year = 1992 +, pages = "235--246" +, update = "98.11 bibrelex" } @techreport{dhkp-rracp-93 -, author = "M. Dietzfelbinger and T. Hagerup and J. Katajainen and M. Penttonen" -, title = "A reliable randomized algorithm for the closest-pair problem" -, type = "Report" -, number = 513 -, institution = "Dept. Comput. Sci., Univ. Dortmund" -, address = "Dortmund, Germany" -, year = 1993 -, update = "94.05 smid" +, author = "M. Dietzfelbinger and T. Hagerup and J. Katajainen and M. Penttonen" +, title = "A reliable randomized algorithm for the closest-pair problem" +, type = "Report" +, number = 513 +, institution = "Dept. Comput. Sci., Univ. Dortmund" +, address = "Dortmund, Germany" +, year = 1993 +, update = "94.05 smid" } @article{dhkp-rracp-97 -, author = "M. Dietzfelbinger and T. Hagerup and J. Katajainen and M. Penttonen" -, title = "A reliable randomized algorithm for the closest-pair problem" -, journal = "J. Algorithms" -, volume = 25 -, year = 1997 -, pages = "19--51" -, update = "97.11 smid" +, author = "M. Dietzfelbinger and T. Hagerup and J. Katajainen and M. Penttonen" +, title = "A reliable randomized algorithm for the closest-pair problem" +, journal = "J. Algorithms" +, volume = 25 +, year = 1997 +, pages = "19--51" +, update = "97.11 smid" } @inproceedings{dkmmrt-dphul-88 -, author = "M. Dietzfelbinger and A. Karlin and K. Mehlhorn and F. {Meyer auf der Heide} and H. Rohnert and R. E. Tarjan" -, title = "Dynamic perfect hashing --- upper and lower bounds" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "524--531" -, update = "93.09 erickson" +, author = "M. Dietzfelbinger and A. Karlin and K. Mehlhorn and F. {Meyer auf der Heide} and H. Rohnert and R. E. Tarjan" +, title = "Dynamic perfect hashing --- upper and lower bounds" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "524--531" +, update = "93.09 erickson" } @article{dkmmrt-dphul-94 -, author = "M. Dietzfelbinger and A. Karlin and K. Mehlhorn and F. {Meyer auf der Heide} and H. Rohnert and R. E. Tarjan" -, title = "Dynamic perfect hashing: upper and lower bounds" -, journal = "SIAM J. Comput." -, volume = 23 -, year = 1994 -, pages = "738--761" -, update = "98.03 smid" +, author = "M. Dietzfelbinger and A. Karlin and K. Mehlhorn and F. {Meyer auf der Heide} and H. Rohnert and R. E. Tarjan" +, title = "Dynamic perfect hashing: upper and lower bounds" +, journal = "SIAM J. Comput." +, volume = 23 +, year = 1994 +, pages = "738--761" +, update = "98.03 smid" } @misc{dm-tlbai-86 -, author = "M. Dietzfelbinger and W. Maass" -, title = "Two lower bound arguments with inaccessible numbers" -, year = 1986 -, pages = "163--183" -, keywords = "lower bounds" -, update = "95.09 korneenko" +, author = "M. Dietzfelbinger and W. Maass" +, title = "Two lower bound arguments with inaccessible numbers" +, year = 1986 +, pages = "163--183" +, keywords = "lower bounds" +, update = "95.09 korneenko" } @inproceedings{dm-nuchf-90 -, author = "M. Dietzfelbinger and F. {Meyer auf der Heide}" -, title = "A new universal class of hash functions and dynamic hashing in real time" -, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 443 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "6--19" -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "M. Dietzfelbinger and F. {Meyer auf der Heide}" +, title = "A new universal class of hash functions and dynamic hashing in real time" +, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 443 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "6--19" +, update = "99.11 bibrelex, 98.11 bibrelex" } @inproceedings{dm-sesms-93 -, author = "M. Dietzfelbinger and F. {Meyer auf der Heide}" -, title = "Simple, Efficient Shared Memory Simulations" -, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." -, year = 1993 -, pages = "110--119" -, update = "96.09 orourke" +, author = "M. Dietzfelbinger and F. {Meyer auf der Heide}" +, title = "Simple, Efficient Shared Memory Simulations" +, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." +, year = 1993 +, pages = "110--119" +, update = "96.09 orourke" } % yes, "connexion" @article{d-ntpcg-59 -, author = "E. W. Dijkstra" -, title = "A Note on Two Problems in Connexion with Graphs" -, journal = "Numerische Mathematik" -, volume = 1 -, year = 1959 -, pages = "269--271" -, update = "93.09 rote" +, author = "E. W. Dijkstra" +, title = "A Note on Two Problems in Connexion with Graphs" +, journal = "Numerische Mathematik" +, volume = 1 +, year = 1959 +, pages = "269--271" +, update = "93.09 rote" } @incollection{d-pchtd-77 -, author = "E. W. Dijkstra" -, title = "The problem of the convex hull in three dimensions" -, chapter = 24 -, editor = "E. W. Dijkstra" -, booktitle = "A Discipline of Programming" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1977 -, pages = "168--191" +, author = "E. W. Dijkstra" +, title = "The problem of the convex hull in three dimensions" +, chapter = 24 +, editor = "E. W. Dijkstra" +, booktitle = "A Discipline of Programming" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1977 +, pages = "168--191" } @inproceedings{ddsv-espgt-88 -, author = "K. Diks and H. N. Dijdjev and O. Sykora and I. Vrto" -, title = "Edge separators for planar graphs and their applications" -, booktitle = "Proc. 13th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 324 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "280--290" -, update = "98.03 bibrelex" +, author = "K. Diks and H. N. Dijdjev and O. Sykora and I. Vrto" +, title = "Edge separators for planar graphs and their applications" +, booktitle = "Proc. 13th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 324 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "280--290" +, update = "98.03 bibrelex" } @article{d-fpfnh-93 -, author = "K. Dill" -, title = "Folding proteins: {Finding} a needle in a haystack" -, journal = "Current Opinion in Structural Biology" -, volume = 3 -, year = 1993 -, pages = "99--103" -, update = "98.07 bibrelex" +, author = "K. Dill" +, title = "Folding proteins: {Finding} a needle in a haystack" +, journal = "Current Opinion in Structural Biology" +, volume = 3 +, year = 1993 +, pages = "99--103" +, update = "98.07 bibrelex" } @techreport{d-nhndt-86 -, author = "M. Dillencourt" -, title = "A non-{Hamiltonian}, nondegenerate {Delaunay} Triangulation" -, type = "Technical {Report}" -, number = "CS-TR-1732" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1986 -, update = "98.03 bibrelex" +, author = "M. Dillencourt" +, title = "A non-{Hamiltonian}, nondegenerate {Delaunay} Triangulation" +, type = "Technical {Report}" +, number = "CS-TR-1732" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1986 +, update = "98.03 bibrelex" } @techreport{d-tdt-87t -, author = "M. Dillencourt" -, title = "Toughness and {Delaunay} Triangulations" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1987 -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "M. Dillencourt" +, title = "Toughness and {Delaunay} Triangulations" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1987 +, note = "In preparation" +, update = "98.03 bibrelex" } @inproceedings{dms-mnitp-93 -, author = "M. Dillencourt and D. M. Mount and A. Saalfeld" -, title = "On the maximum number of intersections of two polyhedra in $2$ and $3$ dimensions" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "49--54" -, cites = "fdfh-cgpp-90, ps-cgi-85, ZZZ" -, update = "98.11 bibrelex, 95.09 agarwal, 93.09 milone+mitchell" +, author = "M. Dillencourt and D. M. Mount and A. Saalfeld" +, title = "On the maximum number of intersections of two polyhedra in $2$ and $3$ dimensions" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "49--54" +, cites = "fdfh-cgpp-90, ps-cgi-85, ZZZ" +, update = "98.11 bibrelex, 95.09 agarwal, 93.09 milone+mitchell" } @article{d-nhndt-87 -, author = "M. B. Dillencourt" -, title = "A non-{Hamiltonian}, nondegenerate {Delaunay} triangulation" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "149--151" +, author = "M. B. Dillencourt" +, title = "A non-{Hamiltonian}, nondegenerate {Delaunay} triangulation" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "149--151" } @techreport{d-ubsei-87 -, author = "M. B. Dillencourt" -, title = "An upper bound on the shortness exponent of inscribable polytopes" -, type = "Report" -, number = "CS-TR-1868" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1987 +, author = "M. B. Dillencourt" +, title = "An upper bound on the shortness exponent of inscribable polytopes" +, type = "Report" +, number = "CS-TR-1868" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1987 } @article{d-ubsei-89 -, author = "M. B. Dillencourt" -, title = "An upper bound on the shortness exponent of inscribable polytopes" -, journal = "J. Combin. Theory Ser. B" -, volume = 46 -, number = 1 -, month = feb -, year = 1989 -, pages = "66--83" -, update = "98.11 bibrelex" +, author = "M. B. Dillencourt" +, title = "An upper bound on the shortness exponent of inscribable polytopes" +, journal = "J. Combin. Theory Ser. B" +, volume = 46 +, number = 1 +, month = feb +, year = 1989 +, pages = "66--83" +, update = "98.11 bibrelex" } @inproceedings{d-fhcdt-92 -, author = "M. B. Dillencourt" -, title = "Finding {Hamiltonian} cycles in {Delaunay} triangulations is {NP}-complete" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "223--228" +, author = "M. B. Dillencourt" +, title = "Finding {Hamiltonian} cycles in {Delaunay} triangulations is {NP}-complete" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "223--228" } @techreport{d-gtpaidt-88 -, author = "M. B. Dillencourt" -, title = "Graph-Theoretical Properties of Algorithms Involving {D}elaunay Triangulations" -, number = "CS-TR-2059" -, institution = "Institute for Advanced Computer Studies, University of Maryland" -, year = 1988 -, update = "98.07 tamassia+vismara" +, author = "M. B. Dillencourt" +, title = "Graph-Theoretical Properties of Algorithms Involving {D}elaunay Triangulations" +, number = "CS-TR-2059" +, institution = "Institute for Advanced Computer Studies, University of Maryland" +, year = 1988 +, update = "98.07 tamassia+vismara" } @article{d-hcptn-90 -, author = "M. B. Dillencourt" -, title = "Hamiltonian cycles in planar triangulations with no separating triangles" -, journal = "J. Graph Theory" -, volume = 14 -, number = 1 -, year = 1990 -, pages = "31--49" -, update = "98.11 bibrelex" +, author = "M. B. Dillencourt" +, title = "Hamiltonian cycles in planar triangulations with no separating triangles" +, journal = "J. Graph Theory" +, volume = 14 +, number = 1 +, year = 1990 +, pages = "31--49" +, update = "98.11 bibrelex" } @techreport{d-psoth- -, author = "M. B. Dillencourt" -, title = "Polytopes of small order and their {Hamiltonian} properties" -, type = "Technical {Report}" -, institution = "Univ. California" -, address = "Irvine, CA" -, year = "??" -, update = "97.11 bibrelex" +, author = "M. B. Dillencourt" +, title = "Polytopes of small order and their {Hamiltonian} properties" +, type = "Technical {Report}" +, institution = "Univ. California" +, address = "Irvine, CA" +, year = "??" +, update = "97.11 bibrelex" } @article{d-rdt-90 -, author = "M. B. Dillencourt" -, title = "Realizability of {Delaunay} triangulations" -, journal = "Inform. Process. Lett." -, volume = 33 -, number = 6 -, month = feb -, year = 1990 -, pages = "283--287" -, update = "98.11 bibrelex" +, author = "M. B. Dillencourt" +, title = "Realizability of {Delaunay} triangulations" +, journal = "Inform. Process. Lett." +, volume = 33 +, number = 6 +, month = feb +, year = 1990 +, pages = "283--287" +, update = "98.11 bibrelex" } @inproceedings{d-tdt-87 -, author = "M. B. Dillencourt" -, title = "Toughness and {Delaunay} triangulations" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, site = "Waterloo, ON" -, year = 1987 -, pages = "186--194" -, precedes = "d-tdt-90" -, cites = "b-hg-78, b-gstds-84, b-vdch-79, c-tghc-73, d-slsv-34, d-tscan-87, d-nhndt-86, d-tdt-87t, es-vda-85, h-gt-69, k-tscan-83, obw-cdnh-84, ps-cgi-85, s-cg-78, ZZZ" -, update = "98.03 bibrelex" +, author = "M. B. Dillencourt" +, title = "Toughness and {Delaunay} triangulations" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, site = "Waterloo, ON" +, year = 1987 +, pages = "186--194" +, precedes = "d-tdt-90" +, cites = "b-hg-78, b-gstds-84, b-vdch-79, c-tghc-73, d-slsv-34, d-tscan-87, d-nhndt-86, d-tdt-87t, es-vda-85, h-gt-69, k-tscan-83, obw-cdnh-84, ps-cgi-85, s-cg-78, ZZZ" +, update = "98.03 bibrelex" } @article{d-tdt-90 -, author = "M. B. Dillencourt" -, title = "Toughness and {Delaunay} triangulations" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "575--601" -, succeeds = "d-tdt-87" +, author = "M. B. Dillencourt" +, title = "Toughness and {Delaunay} triangulations" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "575--601" +, succeeds = "d-tdt-87" } @article{d-tscan-87 -, author = "M. B. Dillencourt" -, title = "Traveling salesman cycles are not always subgraphs of {Delaunay} triangulations or of minimum weight triangulations" -, journal = "Inform. Process. Lett." -, volume = 24 -, year = 1987 -, pages = "339--342" +, author = "M. B. Dillencourt" +, title = "Traveling salesman cycles are not always subgraphs of {Delaunay} triangulations or of minimum weight triangulations" +, journal = "Inform. Process. Lett." +, volume = 24 +, year = 1987 +, pages = "339--342" } @techreport{dmn-rass-90 -, author = "M. B. Dillencourt and D. M. Mount and N. S. Netanyahu" -, title = "A randomized algorithm for slope selection" -, type = "report" -, number = "CS-TR-2431" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = mar -, year = 1990 -, precedes = "dmn-rass-91, dmn-rass-92" -, update = "98.07 bibrelex" +, author = "M. B. Dillencourt and D. M. Mount and N. S. Netanyahu" +, title = "A randomized algorithm for slope selection" +, type = "report" +, number = "CS-TR-2431" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = mar +, year = 1990 +, precedes = "dmn-rass-91, dmn-rass-92" +, update = "98.07 bibrelex" } @inproceedings{dmn-rass-91 -, author = "M. B. Dillencourt and D. M. Mount and N. S. Netanyahu" -, title = "A randomized algorithm for slope selection" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "135--140" -, succeeds = "dmn-rass-90" -, cites = "ahu-daca-74, b-etsh-90, csss-otass-89, dba-nm-74, dmn-rass-90, dh-nbp-83, em-sstcd-90, es-cmsrl-90, iky-ltall-89, m-ltalp-83, r-msr-84, s-gspi-76, ss-tseal-87, t-mlpra1-50, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "M. B. Dillencourt and D. M. Mount and N. S. Netanyahu" +, title = "A randomized algorithm for slope selection" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "135--140" +, succeeds = "dmn-rass-90" +, cites = "ahu-daca-74, b-etsh-90, csss-otass-89, dba-nm-74, dmn-rass-90, dh-nbp-83, em-sstcd-90, es-cmsrl-90, iky-ltall-89, m-ltalp-83, r-msr-84, s-gspi-76, ss-tseal-87, t-mlpra1-50, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @article{dmn-rass-92 -, author = "M. B. Dillencourt and D. M. Mount and N. S. Netanyahu" -, title = "A randomized algorithm for slope selection" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, year = 1992 -, pages = "1--27" -, keywords = "slope selection, randomized algorithm, Theil Sen estimator, line fitting, robust estimation" -, succeeds = "dmn-rass-90, dmn-rass-91" -, update = "98.07 bibrelex" +, author = "M. B. Dillencourt and D. M. Mount and N. S. Netanyahu" +, title = "A randomized algorithm for slope selection" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, year = 1992 +, pages = "1--27" +, keywords = "slope selection, randomized algorithm, Theil Sen estimator, line fitting, robust estimation" +, succeeds = "dmn-rass-90, dmn-rass-91" +, update = "98.07 bibrelex" } @techreport{drs-csdtp-91 -, author = "M. B. Dillencourt and I. Rivin and W. D. Smith" -, title = "Combinatorial structure of {Delaunay} triangulations of the plane" -, type = "Manuscript" -, institution = "??" -, year = 1991 -, update = "97.11 bibrelex" +, author = "M. B. Dillencourt and I. Rivin and W. D. Smith" +, title = "Combinatorial structure of {Delaunay} triangulations of the plane" +, type = "Manuscript" +, institution = "??" +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{ds-erbms-88 -, author = "M. B. Dillencourt and H. Samet." -, title = "Extracting Region Boundaries from Maps Stored as Linear Quadtrees" -, booktitle = "Proc. 3rd Internat. Sympos. Spatial Data Handling" -, site = "Sydney, Australia" -, month = aug -, year = 1988 -, pages = "65--77" -, update = "96.05 efrat" +, author = "M. B. Dillencourt and H. Samet." +, title = "Extracting Region Boundaries from Maps Stored as Linear Quadtrees" +, booktitle = "Proc. 3rd Internat. Sympos. Spatial Data Handling" +, site = "Sydney, Australia" +, month = aug +, year = 1988 +, pages = "65--77" +, update = "96.05 efrat" } @article{ds-utseb-96 -, author = "M. B. Dillencourt and H. Samet" -, title = "Using Topological Sweep To Extract the Boundaries of Regions in Maps Represented by Region Quadtrees" -, journal = "Algorithmica" -, volume = 15 -, number = 1 -, month = jan -, year = 1996 -, pages = "82--102" -, update = "96.05 efrat" +, author = "M. B. Dillencourt and H. Samet" +, title = "Using Topological Sweep To Extract the Boundaries of Regions in Maps Represented by Region Quadtrees" +, journal = "Algorithmica" +, volume = 15 +, number = 1 +, month = jan +, year = 1996 +, pages = "82--102" +, update = "96.05 efrat" } @article{dst-gaccl-92 -, author = "M. B. Dillencourt and H. Samet and M. Tamminen" -, title = "A general approach to connected--component labeling for arbitrary image representations" -, journal = "J. ACM" -, volume = 39 -, number = 2 -, month = apr -, year = 1992 -, pages = "253--280" -, comments = "also Corrigendum, Journal of the ACM 39:4 (October 1992), 985; - University of Maryland Computer Science TR-2303" -, update = "96.05 efrat" +, author = "M. B. Dillencourt and H. Samet and M. Tamminen" +, title = "A general approach to connected--component labeling for arbitrary image representations" +, journal = "J. ACM" +, volume = 39 +, number = 2 +, month = apr +, year = 1992 +, pages = "253--280" +, comments = "also Corrigendum, Journal of the ACM 39:4 (October 1992), 985; + University of Maryland Computer Science TR-2303" +, update = "96.05 efrat" } @inproceedings{ds-ltati-92 -, author = "M. B. Dillencourt and W. D. Smith" -, title = "A linear-time algorithm for testing the inscribability of trivalent polyhedra" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "177--185" -, precedes = "ds-ltati-95" -, cites = "b-vdch-79, c-tghc-73, cfg-upg-90, d-psoth-, d-tdt-90, drs-csdtp-91, ds-gtpig-, e-acg-87, f-dpsds-82, g-cp-67, gs-spp-87, hrs-cchpc-92, nc-pgta-88, ps-cgi-85, r-giph3-, r-ciph3-92, rs-ig-91, s-ptadi-92, s-sedag-81, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 96.09 devillers" +, author = "M. B. Dillencourt and W. D. Smith" +, title = "A linear-time algorithm for testing the inscribability of trivalent polyhedra" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "177--185" +, precedes = "ds-ltati-95" +, cites = "b-vdch-79, c-tghc-73, cfg-upg-90, d-psoth-, d-tdt-90, drs-csdtp-91, ds-gtpig-, e-acg-87, f-dpsds-82, g-cp-67, gs-spp-87, hrs-cchpc-92, nc-pgta-88, ps-cgi-85, r-giph3-, r-ciph3-92, rs-ig-91, s-ptadi-92, s-sedag-81, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 96.09 devillers" } @article{ds-ltati-95 -, author = "M. B. Dillencourt and W. D. Smith" -, title = "A linear-time algorithm for testing the inscribability of trivalent polyhedra" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "21--36" -, keywords = "inscribability, polyhedra, toughness, planar graphs, Delaunay triangulation" -, succeeds = "ds-ltati-92" -, update = "96.09 devillers" +, author = "M. B. Dillencourt and W. D. Smith" +, title = "A linear-time algorithm for testing the inscribability of trivalent polyhedra" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "21--36" +, keywords = "inscribability, polyhedra, toughness, planar graphs, Delaunay triangulation" +, succeeds = "ds-ltati-92" +, update = "96.09 devillers" } @inproceedings{ds-smrdd-93 -, author = "M. B. Dillencourt and W. D. Smith" -, title = "A Simple Method for Resolving Degeneracies in {Delaunay} Triangulation" -, booktitle = "Proc. 20th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 700 -, publisher = "Springer-Verlag" -, month = jul -, year = 1993 -, pages = "177--188" -, update = "98.11 bibrelex, 93.09 milone+mitchell+rote" +, author = "M. B. Dillencourt and W. D. Smith" +, title = "A Simple Method for Resolving Degeneracies in {Delaunay} Triangulation" +, booktitle = "Proc. 20th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 700 +, publisher = "Springer-Verlag" +, month = jul +, year = 1993 +, pages = "177--188" +, update = "98.11 bibrelex, 93.09 milone+mitchell+rote" } @inproceedings{ds-gtcid-94 -, author = "M. B. Dillencourt and W. D. Smith" -, title = "Graph-Theoretical Conditions for Inscribability and {Delaunay}Realizability" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "287--292" -, cites = "a-vdsfg-91, bll-cpt-93t, bm-gta-76, b-vdch-79, cn-hcpls-89, c-tghc-73, c-psepg-92, cl-hcdc-89, d-ubsei-89, d-rdt-90, d-tdt-90, d-fhcdt-92, ds-ltati-92, ds-smrdd-93, e-acg-87, e-dnng-92, e-hcsc-73, f-dpsds-82, g-cp-67, hr-cccph-93, hrs-cchpc-92, js-niqpr-91, ls-mogar-93, ms-tgmst-91, o-cgc2-87, py-nng-92, ps-cgi-85, r-ciph3-92, r-ahvfl-92, r-giph3-, rs-iphdd-91, rs-ig-91, s-sedag-81, t-pihhg-76, t-tppg-83, t-tpg-56, t-bhcpg-77, c-ig-69, gmr-vdmpp-92, ZZZ" -, update = "99.11 bibrelex, 98.11 bibrelex, 94.09 jones" +, author = "M. B. Dillencourt and W. D. Smith" +, title = "Graph-Theoretical Conditions for Inscribability and {Delaunay}Realizability" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "287--292" +, cites = "a-vdsfg-91, bll-cpt-93t, bm-gta-76, b-vdch-79, cn-hcpls-89, c-tghc-73, c-psepg-92, cl-hcdc-89, d-ubsei-89, d-rdt-90, d-tdt-90, d-fhcdt-92, ds-ltati-92, ds-smrdd-93, e-acg-87, e-dnng-92, e-hcsc-73, f-dpsds-82, g-cp-67, hr-cccph-93, hrs-cchpc-92, js-niqpr-91, ls-mogar-93, ms-tgmst-91, o-cgc2-87, py-nng-92, ps-cgi-85, r-ciph3-92, r-ahvfl-92, r-giph3-, rs-iphdd-91, rs-ig-91, s-sedag-81, t-pihhg-76, t-tppg-83, t-tpg-56, t-bhcpg-77, c-ig-69, gmr-vdmpp-92, ZZZ" +, update = "99.11 bibrelex, 98.11 bibrelex, 94.09 jones" } @techreport{ds-gtpig- -, author = "M. B. Dillencourt and W. D. Smith" -, title = "Graph-theoretical properties of inscribable graphs" -, type = "Technical {Report}" -, institution = "Univ. California" -, address = "Irvine, CA" -, year = "??" -, update = "97.11 bibrelex" +, author = "M. B. Dillencourt and W. D. Smith" +, title = "Graph-theoretical properties of inscribable graphs" +, type = "Technical {Report}" +, institution = "Univ. California" +, address = "Irvine, CA" +, year = "??" +, update = "97.11 bibrelex" } @article{d-dtpos-50 -, author = "R. P. Dilworth" -, title = "A decomposition theorem for partially ordered sets" -, journal = "Annals of Math." -, volume = 51 -, year = 1950 -, pages = "161--166" -, update = "97.11 bibrelex" +, author = "R. P. Dilworth" +, title = "A decomposition theorem for partially ordered sets" +, journal = "Annals of Math." +, volume = 51 +, year = 1950 +, pages = "161--166" +, update = "97.11 bibrelex" } @techreport{di-rms-85 -, author = "B. Dimsdale and A. Inselberg" -, title = "Representing multidimensional surfaces" -, type = "Report" -, number = "??" -, institution = "IBM Sci. Center" -, address = "Los Angeles, CA" -, year = 1985 +, author = "B. Dimsdale and A. Inselberg" +, title = "Representing multidimensional surfaces" +, type = "Report" +, number = "??" +, institution = "IBM Sci. Center" +, address = "Los Angeles, CA" +, year = 1985 } @article{dm-fadds-90 -, author = "C. Ding and P. Mateti" -, title = "A Framework for the Automated Drawing of Data Structure Diagrams" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-16" -, number = 5 -, year = 1990 -, pages = "543--557" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "C. Ding and P. Mateti" +, title = "A Framework for the Automated Drawing of Data Structure Diagrams" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-16" +, number = 5 +, year = 1990 +, pages = "543--557" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{dsw-bvcnh- -, author = "G. Ding and P. Seymour and P. Winkler" -, title = "Bounding the vertex cover number of a hypergraph" -, journal = "Combinatorica" -, volume = "??" -, year = "??" -, note = "To appear" -, update = "98.03 bibrelex" +, author = "G. Ding and P. Seymour and P. Winkler" +, title = "Bounding the vertex cover number of a hypergraph" +, journal = "Combinatorica" +, volume = "??" +, year = "??" +, note = "To appear" +, update = "98.03 bibrelex" } @article{dr-alpac-87 -, author = "R. Ding and J. R. Reay" -, title = "Areas of lattice polygons applied to computer graphics" -, journal = "Zastos. Math. (Poland)" -, volume = 19 -, number = "3--4" -, year = 1987 -, pages = "547--556" -, keywords = "polygons, area, discrete geometry" -, update = "95.09 korneenko" +, author = "R. Ding and J. R. Reay" +, title = "Areas of lattice polygons applied to computer graphics" +, journal = "Zastos. Math. (Poland)" +, volume = 19 +, number = "3--4" +, year = 1987 +, pages = "547--556" +, keywords = "polygons, area, discrete geometry" +, update = "95.09 korneenko" } @inproceedings{dw-kdhem-93 -, author = "Y. Ding and M. A. Weiss" -, title = "The $k$-D Heap: An Efficient Multi-Dimensional Priority Queue" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, year = 1993 -, pages = "302--313" -, update = "93.09 smid, 93.05 jones" +, author = "Y. Ding and M. A. Weiss" +, title = "The $k$-D Heap: An Efficient Multi-Dimensional Priority Queue" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, year = 1993 +, pages = "302--313" +, update = "93.09 smid, 93.05 jones" } @article{d-aspmf-70 -, author = "E. A. Dinitz" -, title = "Algorithm for solution of a problem of maximum flow in a network with power estimation" -, journal = "Soviet Math. Dokl." -, volume = "??" -, year = 1970 -, pages = "248--264" -, update = "97.11 bibrelex" +, author = "E. A. Dinitz" +, title = "Algorithm for solution of a problem of maximum flow in a network with power estimation" +, journal = "Soviet Math. Dokl." +, volume = "??" +, year = 1970 +, pages = "248--264" +, update = "97.11 bibrelex" } @inproceedings{dv-ccvsg-94 -, author = "Ye. Dinitz and A. Vainshtein" -, title = "The Connectivity Carcass of a Vertex Subset in a Graph and its Incremental Maintenance" -, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "716--725" -, update = "95.05 tamassia" +, author = "Ye. Dinitz and A. Vainshtein" +, title = "The Connectivity Carcass of a Vertex Subset in a Graph and its Incremental Maintenance" +, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "716--725" +, update = "95.05 tamassia" } @article{d-udrdp-50 -, author = "G. L. Dirichlet" -, title = "{\"U}ber die {Reduktion} der positiven quadratischen {Formen} mit drei unbestimmten ganzen {Zahlen}" -, journal = "J. Reine Angew. Math." -, volume = 40 -, year = 1850 -, pages = "209--227" -, keywords = "Voronoi diagrams" -, update = "00.03 bibrelex, 93.09 held" -, annote = "Voronoi diagrams used for the first time" +, author = "G. L. Dirichlet" +, title = "{\"U}ber die {Reduktion} der positiven quadratischen {Formen} mit drei unbestimmten ganzen {Zahlen}" +, journal = "J. Reine Angew. Math." +, volume = 40 +, year = 1850 +, pages = "209--227" +, keywords = "Voronoi diagrams" +, update = "00.03 bibrelex, 93.09 held" +, annote = "Voronoi diagrams used for the first time" } @article{do-lbsri-85 -, author = "E. Dittert and M. J. {O'Donnell}" -, title = "Lower bounds for sorting with realistic instruction sets" -, journal = "IEEE Trans. Comput." -, volume = 34 -, year = 1985 -, pages = "311--317" -, keywords = "lower bounds" -, update = "95.09 korneenko" +, author = "E. Dittert and M. J. {O'Donnell}" +, title = "Lower bounds for sorting with realistic instruction sets" +, journal = "IEEE Trans. Comput." +, volume = 34 +, year = 1985 +, pages = "311--317" +, keywords = "lower bounds" +, update = "95.09 korneenko" } @inproceedings{dr-ctmep-96 -, author = "A. A. Diwan and S. Rane and S. Seshadri and S. Sudarshan" -, title = "Clustering Techniques for Minimizing External Path Length." -, booktitle = "Proceedings of the International Conference on Very Large Databases" -, publisher = "Morgan Kauffman" -, year = 1996 -, update = "98.07 agarwal" +, author = "A. A. Diwan and S. Rane and S. Seshadri and S. Sudarshan" +, title = "Clustering Techniques for Minimizing External Path Length." +, booktitle = "Proceedings of the International Conference on Very Large Databases" +, publisher = "Morgan Kauffman" +, year = 1996 +, update = "98.07 agarwal" } @article{dk-ebsrs-88 -, author = "T. I. Dix and D. H. Kieronska" -, title = "Errors between sites in restriction site mapping" -, journal = "Comput. Appl. Biol. Sci." -, volume = 4 -, number = 1 -, year = 1988 -, pages = "117--123" -, update = "97.11 bibrelex" +, author = "T. I. Dix and D. H. Kieronska" +, title = "Errors between sites in restriction site mapping" +, journal = "Comput. Appl. Biol. Sci." +, volume = 4 +, number = 1 +, year = 1988 +, pages = "117--123" +, update = "97.11 bibrelex" } @article{d-etqti-08 -, author = "A. Dixon" -, title = "The Eliminant of Three Quantics in Two Independent Variables" -, journal = "Proc. London Math. Soc." -, volume = 2 -, number = 6 -, year = 1908 -, pages = "468--478" -, update = "98.03 bibrelex" +, author = "A. Dixon" +, title = "The Eliminant of Three Quantics in Two Independent Variables" +, journal = "Proc. London Math. Soc." +, volume = 2 +, number = 6 +, year = 1908 +, pages = "468--478" +, update = "98.03 bibrelex" } @article{dkw-dsatg-94 -, author = "A. R. Dixon and G. H. Kirby and D. P. M. Wills" -, title = "A Data Structure for Artificial Terrain Generation" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 1 -, month = mar -, year = 1994 -, pages = "37--48" -, update = "96.01 held" +, author = "A. R. Dixon and G. H. Kirby and D. P. M. Wills" +, title = "A Data Structure for Artificial Terrain Generation" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 1 +, month = mar +, year = 1994 +, pages = "37--48" +, update = "96.01 held" } @inproceedings{dl-cvdrp-91 -, author = "H. Djidjev and A. Lingas" -, title = "On computing the {Voronoi} diagram for restricted planar figures" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "54--64" -, keywords = "Voronoi diagram, Delaunay triangulation, simple polygon, histogram" -, precedes = "dl-cvdsp-95" -, update = "96.09 devillers" +, author = "H. Djidjev and A. Lingas" +, title = "On computing the {Voronoi} diagram for restricted planar figures" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "54--64" +, keywords = "Voronoi diagram, Delaunay triangulation, simple polygon, histogram" +, precedes = "dl-cvdsp-95" +, update = "96.09 devillers" } @article{dl-cvdsp-95 -, author = "H. Djidjev and A. Lingas" -, title = "On computing {Voronoi} diagrams for sorted point sets" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "327--337" -, keywords = "Voronoi diagram, Delaunay triangulation, monotone histogram, tine complexity" -, succeeds = "dl-cvdrp-91" -, update = "96.09 devillers" +, author = "H. Djidjev and A. Lingas" +, title = "On computing {Voronoi} diagrams for sorted point sets" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "327--337" +, keywords = "Voronoi diagram, Delaunay triangulation, monotone histogram, tine complexity" +, succeeds = "dl-cvdrp-91" +, update = "96.09 devillers" } @inproceedings{d-lamps-95 -, author = "H. N. Djidjev" -, title = "A Linear Algorithm for the Maximal Planar Subgraph Problem" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "369--380" -, keywords = "graph drawing, planarization" -, update = "99.07 bibrelex, 95.05 tamassia" +, author = "H. N. Djidjev" +, title = "A Linear Algorithm for the Maximal Planar Subgraph Problem" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "369--380" +, keywords = "graph drawing, planarization" +, update = "99.07 bibrelex, 95.05 tamassia" } @inproceedings{d-dgcp-95 -, author = "H. N. Djidjev" -, title = "On Drawing a Graph Convexly in the Plane" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "76--83" -, keywords = "graph drawing, planar, straight-line" -, update = "95.01 tamassia" +, author = "H. N. Djidjev" +, title = "On Drawing a Graph Convexly in the Plane" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "76--83" +, keywords = "graph drawing, planar, straight-line" +, update = "95.01 tamassia" } @article{d-pppg-82 -, author = "H. N. Djidjev" -, title = "On the problem of partitioning planar graphs" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 3 -, number = 2 -, year = 1982 -, pages = "229--240" -, update = "97.11 bibrelex" +, author = "H. N. Djidjev" +, title = "On the problem of partitioning planar graphs" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 3 +, number = 2 +, year = 1982 +, pages = "229--240" +, update = "97.11 bibrelex" } @techreport{dls-oaclc-88 -, author = "H. N. Djidjev and A. Lingas and J. Sack" -, title = "An {$O(n\log n)$} algorithm for computing the link center of a simple polygon" -, number = "SCS-TR-148" -, institution = "School of Computer Science, Carleton University" -, year = 1988 -, update = "98.03 bibrelex" +, author = "H. N. Djidjev and A. Lingas and J. Sack" +, title = "An {$O(n\log n)$} algorithm for computing the link center of a simple polygon" +, number = "SCS-TR-148" +, institution = "School of Computer Science, Carleton University" +, year = 1988 +, update = "98.03 bibrelex" } @inproceedings{dls-oaclc-89 -, author = "H. N. Djidjev and A. Lingas and J. Sack" -, title = "An {$O(n\log n)$} algorithm for computing the link center of a simple polygon" -, editor = "B. Monien and R. Cori" -, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 349 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "96--107" -, keywords = "link distance" +, author = "H. N. Djidjev and A. Lingas and J. Sack" +, title = "An {$O(n\log n)$} algorithm for computing the link center of a simple polygon" +, editor = "B. Monien and R. Cori" +, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 349 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "96--107" +, keywords = "link distance" } @article{dls-oaclc-92 -, author = "H. N. Djidjev and A. Lingas and J. Sack" -, title = "An {$O(n\log n)$} algorithm for computing the link center of a simple polygon" -, journal = "Discrete Comput. Geom." -, volume = 8 -, number = 2 -, year = 1992 -, pages = "131--152" -, keywords = "visibility" -, update = "94.09 orourke" +, author = "H. N. Djidjev and A. Lingas and J. Sack" +, title = "An {$O(n\log n)$} algorithm for computing the link center of a simple polygon" +, journal = "Discrete Comput. Geom." +, volume = 8 +, number = 2 +, year = 1992 +, pages = "131--152" +, keywords = "visibility" +, update = "94.09 orourke" } @inproceedings{dpz-cspdp-91 -, author = "H. N. Djidjev and G. E. Pantziou and C. D. Zaroliagis" -, title = "Computing Shortest Paths and Distances in Planar Graphs" -, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 510 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "327--338" -, keywords = "Dijkstra, on-line" -, update = "93.09 rote" +, author = "H. N. Djidjev and G. E. Pantziou and C. D. Zaroliagis" +, title = "Computing Shortest Paths and Distances in Planar Graphs" +, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 510 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "327--338" +, keywords = "Dijkstra, on-line" +, update = "93.09 rote" } @inproceedings{dbs-gacpp-00 -, author = "Martin Dlouh{\'y} and Franti{\v s}ek Brabec and Petr {\v S}vestka" -, title = "A Genetic Approach to the Cleaning Path Planning Problem" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "126--131" -, update = "00.03 bibrelex" +, author = "Martin Dlouh{\'y} and Franti{\v s}ek Brabec and Petr {\v S}vestka" +, title = "A Genetic Approach to the Cleaning Path Planning Problem" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "126--131" +, update = "00.03 bibrelex" } @techreport{de-opstt-84 -, author = "D. Dobkin and H. Edelsbrunner" -, title = "Organizing point sets in two and three dimensions" -, type = "Tech.\ Report" -, number = "F130" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1984 -, update = "97.07 agarwal" +, author = "D. Dobkin and H. Edelsbrunner" +, title = "Organizing point sets in two and three dimensions" +, type = "Tech.\ Report" +, number = "F130" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1984 +, update = "97.07 agarwal" } @inproceedings{de-cd-93 -, author = "D. Dobkin and D. Eppstein" -, title = "Computing the discrepancy" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "47--52" -, cites = "bc-id-87, cpc-drt-84, dm-redsp-93, eg-tsa-89, g-irt-89, h-ecqsp-60, hs-ompc-91, k-re-86, n-med-71, ol-mcp-81, oy-nubkm-91, r-id-54, s-id7-72, w-cildp-71, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "D. Dobkin and D. Eppstein" +, title = "Computing the discrepancy" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "47--52" +, cites = "bc-id-87, cpc-drt-84, dm-redsp-93, eg-tsa-89, g-irt-89, h-ecqsp-60, hs-ompc-91, k-re-86, n-med-71, ol-mcp-81, oy-nubkm-91, r-id-54, s-id7-72, w-cildp-71, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{dhks-cidp-93 -, author = "D. Dobkin and J. Hershberger and D. Kirkpatrick and Subhash Suri" -, title = "Computing the intersection-depth of polyhedra" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "518--533" -, update = "98.03 mitchell, 96.05 ramkumar" +, author = "D. Dobkin and J. Hershberger and D. Kirkpatrick and Subhash Suri" +, title = "Computing the intersection-depth of polyhedra" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "518--533" +, update = "98.03 mitchell, 96.05 ramkumar" } @inproceedings{dhks-isccd-90 -, author = "D. Dobkin and J. Hershberger and D. Kirkpatrick and Subhash Suri" -, title = "Implicitly searching convolutions and computing depth of collision" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "165--180" -, update = "98.03 mitchell" +, author = "D. Dobkin and J. Hershberger and D. Kirkpatrick and Subhash Suri" +, title = "Implicitly searching convolutions and computing depth of collision" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "165--180" +, update = "98.03 mitchell" } @article{dlr-lpils-79 -, author = "D. Dobkin and R. J. Lipton and S. Reiss" -, title = "Linear programming is log-space hard for {$P$}" -, journal = "Inform. Process. Lett." -, volume = 8 -, year = 1979 -, pages = "96--97" +, author = "D. Dobkin and R. J. Lipton and S. Reiss" +, title = "Linear programming is log-space hard for {$P$}" +, journal = "Inform. Process. Lett." +, volume = 8 +, year = 1979 +, pages = "96--97" } @inproceedings{dm-redsp-93 -, author = "D. Dobkin and D. Mitchell" -, title = "Random-edge discrepancy of supersampling patterns" -, booktitle = "Graphics Interface '93" -, year = 1993 -, keywords = "discrepancy" -, update = "97.03 schwarzkopf" +, author = "D. Dobkin and D. Mitchell" +, title = "Random-edge discrepancy of supersampling patterns" +, booktitle = "Graphics Interface '93" +, year = 1993 +, keywords = "discrepancy" +, update = "97.03 schwarzkopf" } @inproceedings{dnt-vmss3-90 -, author = "D. Dobkin and S. North and N. Thurston" -, title = "A viewer for Mathematical structures and surfaces in 3D" -, booktitle = "Sympos. on Interactive 3D Graphics" -, month = may -, year = 1990 -, pages = "141--142" -, update = "99.03 forrest, 98.11 bibrelex" +, author = "D. Dobkin and S. North and N. Thurston" +, title = "A viewer for Mathematical structures and surfaces in 3D" +, booktitle = "Sympos. on Interactive 3D Graphics" +, month = may +, year = 1990 +, pages = "141--142" +, update = "99.03 forrest, 98.11 bibrelex" } @techreport{dnt-sug-?? -, author = "D. Dobkin and S. North and N. Thurston" -, title = "Salem User's Guide" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "D. Dobkin and S. North and N. Thurston" +, title = "Salem User's Guide" +, year = "??" +, update = "93.09 milone+mitchell" } @inproceedings{ds-dcmdf-89 -, author = "D. Dobkin and Subhash Suri" -, title = "Dynamically computing the maxima of decomposable functions, with applications" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "488--493" -, keywords = "semi-online model, dynamization, amortized analysis" -, precedes = "ds-mge-91" -, update = "98.03 mitchell" +, author = "D. Dobkin and Subhash Suri" +, title = "Dynamically computing the maxima of decomposable functions, with applications" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "488--493" +, keywords = "semi-online model, dynamization, amortized analysis" +, precedes = "ds-mge-91" +, update = "98.03 mitchell" } @article{ds-mge-91 -, author = "D. Dobkin and Subhash Suri" -, title = "Maintenance of geometric extrema" -, journal = "J. ACM" -, volume = 38 -, year = 1991 -, pages = "275--298" -, keywords = "semi-online model, dynamization, amortized analysis" -, succeeds = "ds-dcmdf-89" -, update = "98.03 mitchell" +, author = "D. Dobkin and Subhash Suri" +, title = "Maintenance of geometric extrema" +, journal = "J. ACM" +, volume = 38 +, year = 1991 +, pages = "275--298" +, keywords = "semi-online model, dynamization, amortized analysis" +, succeeds = "ds-dcmdf-89" +, update = "98.03 mitchell" } @inproceedings{dt-buph-93 -, author = "D. Dobkin and A. Tal" -, title = "Building and using polyhedral hierarchies" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = 394 -, keywords = "video review" -, cites = "dk-ladsc-85, dk-dsppu-90, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "D. Dobkin and A. Tal" +, title = "Building and using polyhedral hierarchies" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = 394 +, keywords = "video review" +, cites = "dk-ladsc-85, dk-dsppu-90, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @inproceedings{dt-gascg-94 -, author = "D. Dobkin and A. Tel" -, title = "GASP - an Animation System for Computational Geometry" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "243--249" -, cites = "-pltc-85, b-aa-87, b-eaub-88, b-zsaam-92a, bs-taa-85, ce-oails-92, dk-ladsc-85, dk-dsppu-90, dnt-vmss3-90, dt-buph-93, ekkmns-wcg-94, l-dpslu-86, mn-lledt-89, r-mdbp-91, s-mdbp-93, s-a-88, s-iipg-92, s-votcb-93, ss-otcbt-93, s-ptppm-90, s-tfsaa-90, tcd-njlsm-92, s-raplg-91t, ZZZ" -, update = "99.11 bibrelex, 99.03 forrest, 98.11 bibrelex, 94.09 jones" +, author = "D. Dobkin and A. Tel" +, title = "GASP - an Animation System for Computational Geometry" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "243--249" +, cites = "-pltc-85, b-aa-87, b-eaub-88, b-zsaam-92a, bs-taa-85, ce-oails-92, dk-ladsc-85, dk-dsppu-90, dnt-vmss3-90, dt-buph-93, ekkmns-wcg-94, l-dpslu-86, mn-lledt-89, r-mdbp-91, s-mdbp-93, s-a-88, s-iipg-92, s-votcb-93, ss-otcbt-93, s-ptppm-90, s-tfsaa-90, tcd-njlsm-92, s-raplg-91t, ZZZ" +, update = "99.11 bibrelex, 99.03 forrest, 98.11 bibrelex, 94.09 jones" } @article{dltw-ctpla-90 -, author = "D. A. Dobkin and Silvio V. F. Levy and William P. Thurston and Allan R. Wilks" -, title = "Contour Tracing by Piecewise Linear Approximations" -, journal = "ACM Trans. Graph." -, volume = 9 -, number = 4 -, month = oct -, year = 1990 -, pages = "389--423" -, annote = "Algorithm for contour of a function that can be - computed at any point. Space is (regularly) - triangulated and a linear approximation is used on each - simplex. Three goodness of triangle measures are - considered: Minimize the number of triangles crossed by - a random line (In 2D this is same as shortest - diagonal). Minimize ratio of circum and in spheres. - Minimize condition number of covariance matrix of a - random point, uniformly distributed in a circle. (Ratio - between largest and smallest eigenvalues.)" +, author = "D. A. Dobkin and Silvio V. F. Levy and William P. Thurston and Allan R. Wilks" +, title = "Contour Tracing by Piecewise Linear Approximations" +, journal = "ACM Trans. Graph." +, volume = 9 +, number = 4 +, month = oct +, year = 1990 +, pages = "389--423" +, annote = "Algorithm for contour of a function that can be + computed at any point. Space is (regularly) + triangulated and a linear approximation is used on each + simplex. Three goodness of triangle measures are + considered: Minimize the number of triangles crossed by + a random line (In 2D this is same as shortest + diagonal). Minimize ratio of circum and in spheres. + Minimize condition number of covariance matrix of a + random point, uniformly distributed in a circle. (Ratio + between largest and smallest eigenvalues.)" } @article{d-cgcg-92 -, author = "D. P. Dobkin" -, title = "Computational Geometry and Computer Graphics" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1400--1411" -, update = "93.09 goodrich+held" +, author = "D. P. Dobkin" +, title = "Computational Geometry and Computer Graphics" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1400--1411" +, update = "93.09 goodrich+held" } @incollection{d-cgtn-88 -, author = "D. P. Dobkin" -, title = "Computational geometry: then and now" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "71--109" -, keywords = "survey paper, convex hull, design of algorithms" -, update = "99.11 bibrelex" +, author = "D. P. Dobkin" +, title = "Computational geometry: then and now" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "71--109" +, keywords = "survey paper, convex hull, design of algorithms" +, update = "99.11 bibrelex" } @techreport{d-kslcg-78 -, author = "D. P. Dobkin" -, title = "Keyword structures in a language for computer geometry" -, type = "Report" -, number = "TM 78-1271-9" -, institution = "Bell Lab." -, address = "Murray Hill, NJ" -, year = 1978 +, author = "D. P. Dobkin" +, title = "Keyword structures in a language for computer geometry" +, type = "Report" +, number = "TM 78-1271-9" +, institution = "Bell Lab." +, address = "Murray Hill, NJ" +, year = 1978 } @techreport{d-vag-?? -, author = "D. P. Dobkin" -, title = "{VLSI}, algorithms and graphics" -, type = "Report" -, number = "??" -, institution = "Princeton Univ." -, address = "Princeton, NJ" -, year = "??" +, author = "D. P. Dobkin" +, title = "{VLSI}, algorithms and graphics" +, type = "Report" +, number = "??" +, institution = "Princeton Univ." +, address = "Princeton, NJ" +, year = "??" } @incollection{ddg-fsp-83 -, author = "David P. Dobkin and Robert L. {Drysdale, III} and Leonidas J. Guibas" -, title = "Finding Smallest Polygons" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "181--214" -, keywords = "optimization, smallest perimeter, convex polygon, $k$-gon, Voronoi diagrams, dynamic programming" -, update = "01.04 icking, 98.03 mitchell" +, author = "David P. Dobkin and Robert L. {Drysdale, III} and Leonidas J. Guibas" +, title = "Finding Smallest Polygons" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "181--214" +, keywords = "optimization, smallest perimeter, convex polygon, $k$-gon, Voronoi diagrams, dynamic programming" +, update = "01.04 icking, 98.03 mitchell" } @inproceedings{de-hstai-84 -, author = "D. P. Dobkin and H. Edelsbrunner" -, title = "Ham-sandwich theorems applied to intersection problems" -, booktitle = "Proc. 10th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '84" -, year = 1984 -, pages = "88--99" -, keywords = "data structuring, discrete geometry, combinatorial geometry, partition, range search, trees, two-dimensional, three-dimensional" -, update = "98.07 bibrelex" +, author = "D. P. Dobkin and H. Edelsbrunner" +, title = "Ham-sandwich theorems applied to intersection problems" +, booktitle = "Proc. 10th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '84" +, year = 1984 +, pages = "88--99" +, keywords = "data structuring, discrete geometry, combinatorial geometry, partition, range search, trees, two-dimensional, three-dimensional" +, update = "98.07 bibrelex" } @inproceedings{de-ssio-84 -, author = "D. P. Dobkin and H. Edelsbrunner" -, title = "Space searching for intersecting objects" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "387--392" -, precedes = "de-ssio-87" +, author = "D. P. Dobkin and H. Edelsbrunner" +, title = "Space searching for intersecting objects" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "387--392" +, precedes = "de-ssio-87" } @article{de-ssio-87 -, author = "D. P. Dobkin and H. Edelsbrunner" -, title = "Space searching for intersecting objects" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "348--361" -, keywords = "data structuring, discrete geometry, searching, intersection, partition, range search, geometric transformations, trees, two-dimensional, three-dimensional" -, succeeds = "de-ssio-84" +, author = "D. P. Dobkin and H. Edelsbrunner" +, title = "Space searching for intersecting objects" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "348--361" +, keywords = "data structuring, discrete geometry, searching, intersection, partition, range search, geometric transformations, trees, two-dimensional, three-dimensional" +, succeeds = "de-ssio-84" } @inproceedings{deo-secp-88 -, author = "D. P. Dobkin and H. Edelsbrunner and M. H. Overmars" -, title = "Searching for empty convex polygons" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "224--228" -, succeeds = "ar-clecs-85" -, precedes = "deo-secp-90" -, cites = "ar-clecs-85, bf-eses-86, cgl-pgd-85, eg-tsa-86, eos-calha-86, e-cpgnt-79, h-kfiep-78, h-fvgsp-87, h-snec7-83, klp-fmsv-75, osv-swec6-88, ZZZ" -, update = "98.03 bibrelex, 93.09 milone+mitchell" +, author = "D. P. Dobkin and H. Edelsbrunner and M. H. Overmars" +, title = "Searching for empty convex polygons" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "224--228" +, succeeds = "ar-clecs-85" +, precedes = "deo-secp-90" +, cites = "ar-clecs-85, bf-eses-86, cgl-pgd-85, eg-tsa-86, eos-calha-86, e-cpgnt-79, h-kfiep-78, h-fvgsp-87, h-snec7-83, klp-fmsv-75, osv-swec6-88, ZZZ" +, update = "98.03 bibrelex, 93.09 milone+mitchell" } @article{deo-secp-90 -, author = "D. P. Dobkin and H. Edelsbrunner and M. H. Overmars" -, title = "Searching for empty convex polygons" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "561--571" -, succeeds = "deo-secp-88, ar-clecs-85" -, update = "93.09 milone+mitchell" +, author = "D. P. Dobkin and H. Edelsbrunner and M. H. Overmars" +, title = "Searching for empty convex polygons" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "561--571" +, succeeds = "deo-secp-88, ar-clecs-85" +, update = "93.09 milone+mitchell" } @unpublished{dey-3spa-84 -, author = "D. P. Dobkin and H. Edelsbrunner and F. Yao" -, title = "A 3-space partition and its applications" -, year = 1984 -, note = "manuscript" -, update = "97.11 bibrelex" +, author = "D. P. Dobkin and H. Edelsbrunner and F. Yao" +, title = "A 3-space partition and its applications" +, year = 1984 +, note = "manuscript" +, update = "97.11 bibrelex" } @inproceedings{dey-pcp-86 -, author = "D. P. Dobkin and H. Edelsbrunner and C. K. Yap" -, title = "Probing convex polytopes" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "424--432" -, keywords = "discrete geometry, robotics, probing, worst-case analysis, polytopes, convex, $d$-dimensional" -, comments = "To appear in Autonomous Robot Vehicles, Cox and - Wilfong, ed." +, author = "D. P. Dobkin and H. Edelsbrunner and C. K. Yap" +, title = "Probing convex polytopes" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "424--432" +, keywords = "discrete geometry, robotics, probing, worst-case analysis, polytopes, convex, $d$-dimensional" +, comments = "To appear in Autonomous Robot Vehicles, Cox and + Wilfong, ed." } @inproceedings{dfs-dgaag-87 -, author = "D. P. Dobkin and S. J. Friedman and K. J. Supowit" -, title = "Delaunay graphs are almost as good as complete graphs" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "20--26" -, precedes = "dfs-dgaag-90" +, author = "D. P. Dobkin and S. J. Friedman and K. J. Supowit" +, title = "Delaunay graphs are almost as good as complete graphs" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "20--26" +, precedes = "dfs-dgaag-90" } @article{dfs-dgaag-90 -, author = "D. P. Dobkin and S. J. Friedman and K. J. Supowit" -, title = "Delaunay graphs are almost as good as complete graphs" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "399--407" -, succeeds = "dfs-dgaag-87" +, author = "D. P. Dobkin and S. J. Friedman and K. J. Supowit" +, title = "Delaunay graphs are almost as good as complete graphs" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "399--407" +, succeeds = "dfs-dgaag-87" } @inproceedings{dgkn-igper-97 -, author = "David P. Dobkin and Emden R. Gansner and Eleftherios Koutsofios and Stephen C. North" -, title = "Implementing a General-Purpose Edge Router" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "262--271" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "David P. Dobkin and Emden R. Gansner and Eleftherios Koutsofios and Stephen C. North" +, title = "Implementing a General-Purpose Edge Router" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "262--271" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{dghs-eafcr-93 -, author = "D. P. Dobkin and L. Guibas and J. Hershberger and J. Snoeyink" -, title = "An efficient algorithm for finding the {CSG} representation of a simple polygon" -, journal = "Algorithmica" -, volume = 10 -, year = 1993 -, pages = "1--23" -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "D. P. Dobkin and L. Guibas and J. Hershberger and J. Snoeyink" +, title = "An efficient algorithm for finding the {CSG} representation of a simple polygon" +, journal = "Algorithmica" +, volume = 10 +, year = 1993 +, pages = "1--23" +, update = "98.07 agarwal, 98.03 bibrelex" } @article{dghs-eafcr-88 -, author = "D. P. Dobkin and Leonidas J. Guibas and J. Hershberger and J. Snoeyink" -, title = "An efficient algorithm for finding the {CSG} representation of a simple polygon" -, journal = "Comput. Graph." -, volume = 22 -, number = 4 -, year = 1988 -, pages = "31--40" -, note = "Proc. SIGGRAPH '88" -, update = "98.07 agarwal, 98.03 mitchell, 96.09 devillers+orourke, 93.09 goodrich" +, author = "D. P. Dobkin and Leonidas J. Guibas and J. Hershberger and J. Snoeyink" +, title = "An efficient algorithm for finding the {CSG} representation of a simple polygon" +, journal = "Comput. Graph." +, volume = 22 +, number = 4 +, year = 1988 +, pages = "31--40" +, note = "Proc. SIGGRAPH '88" +, update = "98.07 agarwal, 98.03 mitchell, 96.09 devillers+orourke, 93.09 goodrich" } @techreport{dg-crd-94t -, author = "D. P. Dobkin and D. Gunopulos" -, title = "Computing the rectangle discrepancy" -, type = "Technical {Report}" -, number = "443-94" -, institution = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1994 -, update = "98.03 bibrelex" +, author = "D. P. Dobkin and D. Gunopulos" +, title = "Computing the rectangle discrepancy" +, type = "Technical {Report}" +, number = "443-94" +, institution = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1994 +, update = "98.03 bibrelex" } @inproceedings{dg-crd-94 -, author = "D. P. Dobkin and D. Gunopulos" -, title = "Computing the Rectangle Discrepancy" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "385--386" -, keywords = "video review" -, cites = "de-cd-93, dg-crd-94t, td-gsfag-94, m-eapls-94, p-ortap-79, ZZZ" -, update = "98.03 bibrelex, 94.09 jones" +, author = "D. P. Dobkin and D. Gunopulos" +, title = "Computing the Rectangle Discrepancy" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "385--386" +, keywords = "video review" +, cites = "de-cd-93, dg-crd-94t, td-gsfag-94, m-eapls-94, p-ortap-79, ZZZ" +, update = "98.03 bibrelex, 94.09 jones" } @article{dk-ladsc-85 -, author = "D. P. Dobkin and D. G. Kirkpatrick" -, title = "A linear algorithm for determining the separation of convex polyhedra" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "381--392" -, keywords = "design of algorithms, construction, separation, convex, polyhedra, hierarchical representations" +, author = "D. P. Dobkin and D. G. Kirkpatrick" +, title = "A linear algorithm for determining the separation of convex polyhedra" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "381--392" +, keywords = "design of algorithms, construction, separation, convex, polyhedra, hierarchical representations" } @inproceedings{dk-dsppu-90 -, author = "D. P. Dobkin and D. G. Kirkpatrick" -, title = "Determining the separation of preprocessed polyhedra -- a unified approach" -, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 443 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "400--413" -, update = "97.11 bibrelex" +, author = "D. P. Dobkin and D. G. Kirkpatrick" +, title = "Determining the separation of preprocessed polyhedra -- a unified approach" +, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 443 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "400--413" +, update = "97.11 bibrelex" } @misc{dk-fappi- -, author = "D. P. Dobkin and D. G. Kirkpatrick" -, title = "Fast Algorithms for Preprocessed Polyhedral Intersection Detection" -, precedes = "dk-fdpi-82, dk-fdpi-83" -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "D. P. Dobkin and D. G. Kirkpatrick" +, title = "Fast Algorithms for Preprocessed Polyhedral Intersection Detection" +, precedes = "dk-fdpi-82, dk-fdpi-83" +, update = "99.11 bibrelex, 98.03 bibrelex" } @inproceedings{dk-fdpi-82 -, author = "D. P. Dobkin and D. G. Kirkpatrick" -, title = "Fast detection of polyhedral intersection" -, booktitle = "Proc. 9th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 140 -, publisher = "Springer-Verlag" -, year = 1982 -, pages = "154--165" -, keywords = "design of algorithms, data structuring, detection, intersection, polyhedra, three-dimensional, convex, hierarchical representations" -, succeeds = "dk-fappi-" -, precedes = "dk-fdpi-83" -, update = "98.03 bibrelex" +, author = "D. P. Dobkin and D. G. Kirkpatrick" +, title = "Fast detection of polyhedral intersection" +, booktitle = "Proc. 9th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 140 +, publisher = "Springer-Verlag" +, year = 1982 +, pages = "154--165" +, keywords = "design of algorithms, data structuring, detection, intersection, polyhedra, three-dimensional, convex, hierarchical representations" +, succeeds = "dk-fappi-" +, precedes = "dk-fdpi-83" +, update = "98.03 bibrelex" } @article{dk-fdpi-83 -, author = "D. P. Dobkin and D. G. Kirkpatrick" -, title = "Fast detection of polyhedral intersection" -, journal = "Theoret. Comput. Sci." -, volume = 27 -, number = 3 -, month = dec -, year = 1983 -, pages = "241--253" -, keywords = "design of algorithms, data structuring, detection, intersection, polyhedra, three-dimensional, convex, hierarchical representations" -, succeeds = "dk-fappi-, dk-fdpi-82" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "D. P. Dobkin and D. G. Kirkpatrick" +, title = "Fast detection of polyhedral intersection" +, journal = "Theoret. Comput. Sci." +, volume = 27 +, number = 3 +, month = dec +, year = 1983 +, pages = "241--253" +, keywords = "design of algorithms, data structuring, detection, intersection, polyhedra, three-dimensional, convex, hierarchical representations" +, succeeds = "dk-fappi-, dk-fdpi-82" +, update = "98.11 bibrelex, 98.03 bibrelex" } @inproceedings{dl-pmtds-87 -, author = "D. P. Dobkin and M. J. Laszlo" -, title = "Primitives for the manipulation of three-dimensional subdivisions" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "86--99" -, keywords = "data structuring" -, precedes = "dl-pmtds-89" -, cites = "ab-acddv-83, b-prcv-75, b-acgpr-82, b-vdch-79, bhs-swcpg-80, c-cpplb-84, cd-diec-80, ck-acp-70, ew-gmueo-79, gs-pmgsc-85, jb-iaem-87, l-dsmtd-87, w-vt-??, ZZZ" -, update = "98.03 bibrelex" +, author = "D. P. Dobkin and M. J. Laszlo" +, title = "Primitives for the manipulation of three-dimensional subdivisions" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "86--99" +, keywords = "data structuring" +, precedes = "dl-pmtds-89" +, cites = "ab-acddv-83, b-prcv-75, b-acgpr-82, b-vdch-79, bhs-swcpg-80, c-cpplb-84, cd-diec-80, ck-acp-70, ew-gmueo-79, gs-pmgsc-85, jb-iaem-87, l-dsmtd-87, w-vt-??, ZZZ" +, update = "98.03 bibrelex" } @article{dl-pmtds-89 -, author = "D. P. Dobkin and M. J. Laszlo" -, title = "Primitives for the manipulation of three-dimensional subdivisions" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "3--32" -, succeeds = "dl-pmtds-87" +, author = "D. P. Dobkin and M. J. Laszlo" +, title = "Primitives for the manipulation of three-dimensional subdivisions" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "3--32" +, succeeds = "dl-pmtds-87" } @article{dl-msp-76 -, author = "D. P. Dobkin and R. J. Lipton" -, title = "Multidimensional searching problems" -, journal = "SIAM J. Comput." -, volume = 5 -, year = 1976 -, pages = "181--186" +, author = "D. P. Dobkin and R. J. Lipton" +, title = "Multidimensional searching problems" +, journal = "SIAM J. Comput." +, volume = 5 +, year = 1976 +, pages = "181--186" } @article{dl-ccvsp-79 -, author = "D. P. Dobkin and R. J. Lipton" -, title = "On the complexity of computations under varying sets of primitives" -, journal = "J. Comput. Syst. Sci." -, volume = 18 -, year = 1979 -, pages = "86--91" +, author = "D. P. Dobkin and R. J. Lipton" +, title = "On the complexity of computations under varying sets of primitives" +, journal = "J. Comput. Syst. Sci." +, volume = 18 +, year = 1979 +, pages = "86--91" } @techreport{dl-cslp-76 -, author = "D. P. Dobkin and R. J. Lipton" -, title = "The complexity of searching lines in the plane" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Yale Univ." -, address = "New Haven, CT" -, year = 1976 +, author = "D. P. Dobkin and R. J. Lipton" +, title = "The complexity of searching lines in the plane" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Yale Univ." +, address = "New Haven, CT" +, year = 1976 } @techreport{dlr-eg-76 -, author = "D. P. Dobkin and R. J. Lipton and S. P. Reiss" -, title = "Excursions into geometry" -, type = "Report" -, number = 71 -, institution = "Dept. Comput. Sci., Yale Univ." -, address = "New Haven, CT" -, year = 1976 +, author = "D. P. Dobkin and R. J. Lipton and S. P. Reiss" +, title = "Excursions into geometry" +, type = "Report" +, number = 71 +, institution = "Dept. Comput. Sci., Yale Univ." +, address = "New Haven, CT" +, year = 1976 } @inproceedings{dm-eup-80 -, author = "D. P. Dobkin and J. I. Munro" -, title = "Efficient Uses of the Past" -, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1980 -, pages = "200--206" -, precedes = "dm-eup-85" -, annote = "Data structure to keep track of history of a data - structure. Basically adds $\log t$ space and time by - keeping $\log t$ history lists." +, author = "D. P. Dobkin and J. I. Munro" +, title = "Efficient Uses of the Past" +, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1980 +, pages = "200--206" +, precedes = "dm-eup-85" +, annote = "Data structure to keep track of history of a data + structure. Basically adds $\log t$ space and time by + keeping $\log t$ history lists." } @article{dm-eup-85 -, author = "D. P. Dobkin and J. I. Munro" -, title = "Efficient uses of the past" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "455--465" -, succeeds = "dm-eup-80" +, author = "D. P. Dobkin and J. I. Munro" +, title = "Efficient uses of the past" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "455--465" +, succeeds = "dm-eup-80" } @article{dr-clp-80 -, author = "D. P. Dobkin and S. P. Reiss" -, title = "The complexity of linear programming" -, journal = "Theoret. Comput. Sci." -, volume = 11 -, year = 1980 -, pages = "1--18" +, author = "D. P. Dobkin and S. P. Reiss" +, title = "The complexity of linear programming" +, journal = "Theoret. Comput. Sci." +, volume = 11 +, year = 1980 +, pages = "1--18" } @article{ds-acgtr-89 -, author = "D. P. Dobkin and D. Silver" -, title = "Applied computational geometry: {Towards} robust solutions of basic problems" -, journal = "J. Comput. Syst. Sci." -, volume = 40 -, number = 1 -, year = 1989 -, pages = "70--87" -, succeeds = "ds-rgnap-88" -, update = "98.07 tamassia" +, author = "D. P. Dobkin and D. Silver" +, title = "Applied computational geometry: {Towards} robust solutions of basic problems" +, journal = "J. Comput. Syst. Sci." +, volume = 40 +, number = 1 +, year = 1989 +, pages = "70--87" +, succeeds = "ds-rgnap-88" +, update = "98.07 tamassia" } @inproceedings{ds-rgnap-88 -, author = "D. P. Dobkin and D. Silver" -, title = "Recipes for geometry and numerical analysis, {Part} {I}: an empirical study" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "93--105" -, precedes = "ds-acgtr-89" -, cites = "d-eaavr-86, fv-sappm-85, f-cgpractice-85, f-gcest-88, gy-frcg-86, hhk-rsops-87, kj-pdwtl-87, km-fpraa-83, km-catp-81, mk-impgo-84, m-mddlp-79, ms-rcibt-88, mm-sscep-73, m-vigau-86, mw-srama-80, m-ia-66, otu-nsga-87, r-cnebf-82, ss-ccsm-85, s-ggna-88, v-inc-78, v-nmevr-78, vl-eac-74, w-reap-63, ZZZ" -, update = "99.11 bibrelex, 99.03 forrest, 98.03 bibrelex" +, author = "D. P. Dobkin and D. Silver" +, title = "Recipes for geometry and numerical analysis, {Part} {I}: an empirical study" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "93--105" +, precedes = "ds-acgtr-89" +, cites = "d-eaavr-86, fv-sappm-85, f-cgpractice-85, f-gcest-88, gy-frcg-86, hhk-rsops-87, kj-pdwtl-87, km-fpraa-83, km-catp-81, mk-impgo-84, m-mddlp-79, ms-rcibt-88, mm-sscep-73, m-vigau-86, mw-srama-80, m-ia-66, otu-nsga-87, r-cnebf-82, ss-ccsm-85, s-ggna-88, v-inc-78, v-nmevr-78, vl-eac-74, w-reap-63, ZZZ" +, update = "99.11 bibrelex, 99.03 forrest, 98.03 bibrelex" } @inproceedings{ds-gmmmc-79 -, author = "D. P. Dobkin and L. Snyder" -, title = "On a general method for maximizing and minimizing among certain geometric problems" -, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1979 -, pages = "9--17" +, author = "D. P. Dobkin and L. Snyder" +, title = "On a general method for maximizing and minimizing among certain geometric problems" +, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1979 +, pages = "9--17" } @incollection{ds-cgug-87 -, author = "D. P. Dobkin and D. L. Souvaine" -, title = "Computational geometry: a user's guide" -, editor = "J. T. Schwartz and C.-K. Yap" -, booktitle = "Advances in Robotics 1: Algorithmic and Geometric Aspects of Robotics" -, publisher = "Lawrence Erlbaum Associates" -, address = "Hillsdale, NJ" -, year = 1987 -, pages = "43--93" -, keywords = "survey paper, design of algorithms, convex hull, point location, intersection, binary search, divide-and-conquer, geometric transformations, dynamizing data structures" +, author = "D. P. Dobkin and D. L. Souvaine" +, title = "Computational geometry: a user's guide" +, editor = "J. T. Schwartz and C.-K. Yap" +, booktitle = "Advances in Robotics 1: Algorithmic and Geometric Aspects of Robotics" +, publisher = "Lawrence Erlbaum Associates" +, address = "Hillsdale, NJ" +, year = 1987 +, pages = "43--93" +, keywords = "survey paper, design of algorithms, convex hull, point location, intersection, binary search, divide-and-conquer, geometric transformations, dynamizing data structures" } @article{ds-cgcw-90 -, author = "D. P. Dobkin and D. L. Souvaine" -, title = "Computational geometry in a curved world" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "421--457" -, keywords = "design of algorithms, intersection, convex, monotone, simple, curved polygon, splinegon" -, succeeds = "s-cgcw-86" +, author = "D. P. Dobkin and D. L. Souvaine" +, title = "Computational geometry in a curved world" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "421--457" +, keywords = "design of algorithms, intersection, convex, monotone, simple, curved polygon, splinegon" +, succeeds = "s-cgcw-86" } @article{ds-dicop-91 -, author = "D. P. Dobkin and D. L. Souvaine" -, title = "Detecting the intersection of convex objects in the plane" -, journal = "Comput. Aided Geom. Design" -, volume = 8 -, year = 1991 -, pages = "181--200" -, keywords = "design of algorithms, intersection, convex, polygon, splinegon" +, author = "D. P. Dobkin and D. L. Souvaine" +, title = "Detecting the intersection of convex objects in the plane" +, journal = "Comput. Aided Geom. Design" +, volume = 8 +, year = 1991 +, pages = "181--200" +, keywords = "design of algorithms, intersection, convex, polygon, splinegon" } @techreport{dsv-diss-86 -, author = "D. P. Dobkin and D. L. Souvaine and C. J. {Van Wyk}" -, title = "Decomposition and intersection of simple splinegons" -, type = "Report" -, number = "CS-TR-051-86" -, institution = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1986 -, keywords = "design of algorithms, decomposition, intersection, simple, curved polygon, splinegon" -, precedes = "dsv-diss-88" +, author = "D. P. Dobkin and D. L. Souvaine and C. J. {Van Wyk}" +, title = "Decomposition and intersection of simple splinegons" +, type = "Report" +, number = "CS-TR-051-86" +, institution = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1986 +, keywords = "design of algorithms, decomposition, intersection, simple, curved polygon, splinegon" +, precedes = "dsv-diss-88" } @article{dsv-diss-88 -, author = "D. P. Dobkin and D. L. Souvaine and C. J. {Van Wyk}" -, title = "Decomposition and intersection of simple splinegons" -, journal = "Algorithmica" -, volume = 3 -, year = 1988 -, pages = "473--486" -, keywords = "design of algorithms, decomposition, intersection, simple, curved polygon, splinegon" -, succeeds = "dsv-diss-86" +, author = "D. P. Dobkin and D. L. Souvaine and C. J. {Van Wyk}" +, title = "Decomposition and intersection of simple splinegons" +, journal = "Algorithmica" +, volume = 3 +, year = 1988 +, pages = "473--486" +, keywords = "design of algorithms, decomposition, intersection, simple, curved polygon, splinegon" +, succeeds = "dsv-diss-86" } @inproceedings{dt-esrla-01 -, author = "David P. Dobkin and Ayellet Tal" -, title = "Efficient and Small Representation of Line Arrangements with Applications" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "293--301" -, update = "01.11 pocchiola" +, author = "David P. Dobkin and Ayellet Tal" +, title = "Efficient and Small Representation of Line Arrangements with Applications" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "293--301" +, update = "01.11 pocchiola" } @incollection{dt-cg-97 -, author = "D. P. Dobkin and S. Teller" -, title = "Computer graphics" -, chapter = 42 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "779--796" -, update = "98.07 agarwal, 97.11 orourke" +, author = "D. P. Dobkin and S. Teller" +, title = "Computer graphics" +, chapter = 42 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "779--796" +, update = "98.07 agarwal, 97.11 orourke" } @mastersthesis{d-afp-90 -, author = "Katrin Dobrindt" -, title = "Algorithmen f{\"u}r {Polyeder}" -, school = "Fachbereich Informatik, Universit{\"a}t Saarbr{\"u}cken" -, address = "Saarbr{\"u}cken, Germany" -, month = may -, year = 1990 -, keywords = "master thesis" -, update = "99.07 devillers, 97.11 bibrelex" +, author = "Katrin Dobrindt" +, title = "Algorithmen f{\"u}r {Polyeder}" +, school = "Fachbereich Informatik, Universit{\"a}t Saarbr{\"u}cken" +, address = "Saarbr{\"u}cken, Germany" +, month = may +, year = 1990 +, keywords = "master thesis" +, update = "99.07 devillers, 97.11 bibrelex" } @phdthesis{d-adraa-94 -, author = "Katrin Dobrindt" -, title = "Algorithmes Dynamiques Randomis{\'e}s pour les Arrangements: Application \`a la Planification de Trajectoires" -, type = "Th{\`e}se de Doctorat en Sciences" -, school = "Ecole des Mines de Paris" -, address = "Paris" -, year = 1994 -, keywords = "doctoral thesis" -, update = "99.07 devillers, 96.01 devillers, 95.09 agarwal" +, author = "Katrin Dobrindt" +, title = "Algorithmes Dynamiques Randomis{\'e}s pour les Arrangements: Application \`a la Planification de Trajectoires" +, type = "Th{\`e}se de Doctorat en Sciences" +, school = "Ecole des Mines de Paris" +, address = "Paris" +, year = 1994 +, keywords = "doctoral thesis" +, update = "99.07 devillers, 96.01 devillers, 95.09 agarwal" } @techreport{dmy-ceaig-93t -, author = "Katrin Dobrindt and Kurt Mehlhorn and Mariette Yvinec" -, title = "A Complete and Efficient Algorithm for the Intersection of a General and a Convex Polyhedron" -, type = "Report" -, number = "MPI-I-93-140" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, update = "99.07 devillers, 94.01 smid" +, author = "Katrin Dobrindt and Kurt Mehlhorn and Mariette Yvinec" +, title = "A Complete and Efficient Algorithm for the Intersection of a General and a Convex Polyhedron" +, type = "Report" +, number = "MPI-I-93-140" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, update = "99.07 devillers, 94.01 smid" } @inproceedings{dmy-ceaig-93 -, author = "Katrin Dobrindt and Kurt Mehlhorn and Mariette Yvinec" -, title = "A Complete and Efficient Algorithm for the Intersection of a General and a Convex Polyhedron" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, year = 1993 -, pages = "314--324" -, update = "99.07 devillers, 93.09 devillers+milone+mitchell+smid, 93.05 jones" +, author = "Katrin Dobrindt and Kurt Mehlhorn and Mariette Yvinec" +, title = "A Complete and Efficient Algorithm for the Intersection of a General and a Convex Polyhedron" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, year = 1993 +, pages = "314--324" +, update = "99.07 devillers, 93.09 devillers+milone+mitchell+smid, 93.05 jones" } @inproceedings{dy-rchyd-93 -, author = "Katrin Dobrindt and Mariette Yvinec" -, title = "Remembering conflicts in history yields dynamic algorithms" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "21--30" -, update = "99.07 devillers, 98.07 bibrelex, 94.05 devillers+smid" +, author = "Katrin Dobrindt and Mariette Yvinec" +, title = "Remembering conflicts in history yields dynamic algorithms" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "21--30" +, update = "99.07 devillers, 98.07 bibrelex, 94.05 devillers+smid" } @article{dm-lblds-74 -, author = "A. Dobson and S. Macdonald" -, title = "Lower bounds for lengths of {Davenport}-{Schinzel} sequences" -, journal = "Utilitas Math." -, volume = 6 -, year = 1974 -, pages = "251--257" -, update = "95.05 agarwal" +, author = "A. Dobson and S. Macdonald" +, title = "Lower bounds for lengths of {Davenport}-{Schinzel} sequences" +, journal = "Utilitas Math." +, volume = 6 +, year = 1974 +, pages = "251--257" +, update = "95.05 agarwal" } @article{dt-dtoeo-81 -, author = "L. J. Doctor and J. G. Toborg" -, title = "Display techniques for octree-encoded objects" -, journal = "IEEE Comput. Graph. Appl." -, volume = 1 -, number = 3 -, month = jul -, year = 1981 -, pages = "29--38" -, update = "97.11 bibrelex" +, author = "L. J. Doctor and J. G. Toborg" +, title = "Display techniques for octree-encoded objects" +, journal = "IEEE Comput. Graph. Appl." +, volume = 1 +, number = 3 +, month = jul +, year = 1981 +, pages = "29--38" +, update = "97.11 bibrelex" } @inproceedings{dmmmz-mlig-97 -, author = "S. Doddi and M. Marathe and A. Mirzaian and B. Moret and B. Zhu" -, title = "Map labeling and its generalization" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "148--157" -, update = "97.07 agarwal" +, author = "S. Doddi and M. Marathe and A. Mirzaian and B. Moret and B. Zhu" +, title = "Map labeling and its generalization" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "148--157" +, update = "97.07 agarwal" } @inproceedings{dmm-pslsp-00 -, author = "Srinivas Doddi and Madhav V. Marathe and Bernard M. E. Moret" -, title = "Point Set Labeling with Specified Positions" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "182--190" -, update = "00.11 jones" +, author = "Srinivas Doddi and Madhav V. Marathe and Bernard M. E. Moret" +, title = "Point Set Labeling with Specified Positions" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "182--190" +, update = "00.11 jones" } @book{d-egt-72 -, author = "C. W. Dodge" -, title = "Euclidean geometry and transformations" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1972 +, author = "C. W. Dodge" +, title = "Euclidean geometry and transformations" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1972 } @inproceedings{d-civc3-96 -, author = "D. Dodson" -, title = "{COMAIDE}: Information Visualization using Cooperative {3D} Diagram Layout" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "190--201" -, keywords = "graph drawing, 3D" -, update = "98.07 patrignani" +, author = "D. Dodson" +, title = "{COMAIDE}: Information Visualization using Cooperative {3D} Diagram Layout" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "190--201" +, keywords = "graph drawing, 3D" +, update = "98.07 patrignani" } @inproceedings{dhs-ievaa-97 -, author = "J. Doellner and K. Hinrichs and H. Spiegel" -, title = "An interactive environment for visualizing and animating algorithms" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "409--411" -, cites = "bw-rphs-88, dh-vrsto-95, dh-oo3dm-97, d-oo3dm-96, es-vda-86, f-savd-87, hss-uccli-94, nb-o3dhl-95, o-cgc-94, o-ttt-94, m-ioopt-93, td-vga-95, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "J. Doellner and K. Hinrichs and H. Spiegel" +, title = "An interactive environment for visualizing and animating algorithms" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "409--411" +, cites = "bw-rphs-88, dh-vrsto-95, dh-oo3dm-97, d-oo3dm-96, es-vda-86, f-savd-87, hss-uccli-94, nb-o3dhl-95, o-cgc-94, o-ttt-94, m-ioopt-93, td-vga-95, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{df-rbsdm-92 -, author = "J. S. Doerschler and H. Freeman" -, title = "A rule-based system for dense-Map name placement" -, journal = "Commun. ACM" -, volume = 35 -, year = 1992 -, pages = "68--79" -, update = "97.07 agarwal" +, author = "J. S. Doerschler and H. Freeman" +, title = "A rule-based system for dense-Map name placement" +, journal = "Commun. ACM" +, volume = 35 +, year = 1992 +, pages = "68--79" +, update = "97.07 agarwal" } @article{dc-advsp-93 -, author = "Jeong-In Doh and Kyung-Yong Chwa" -, title = "An algorithm for determining visibility of a simple polygon from an internal line segment" -, journal = "J. Algorithms" -, volume = 14 -, year = 1993 -, pages = "139--168" -, update = "94.01 choi, 93.09 milone+mitchell" +, author = "Jeong-In Doh and Kyung-Yong Chwa" +, title = "An algorithm for determining visibility of a simple polygon from an internal line segment" +, journal = "J. Algorithms" +, volume = 14 +, year = 1993 +, pages = "139--168" +, update = "94.01 choi, 93.09 milone+mitchell" } @article{dc-vpoot-88 -, author = "Jeong-In Doh and Kyung-Yong Chwa" -, title = "Visibility problems for orthogonal objects in two or three dimensions" -, journal = "Visual Comput." -, volume = 4 -, number = 2 -, month = jul -, year = 1988 -, pages = "84--97" -, keywords = "hidden line/surface elimination" +, author = "Jeong-In Doh and Kyung-Yong Chwa" +, title = "Visibility problems for orthogonal objects in two or three dimensions" +, journal = "Visual Comput." +, volume = 4 +, number = 2 +, month = jul +, year = 1988 +, pages = "84--97" +, keywords = "hidden line/surface elimination" } @article{d-fibsr-85 -, author = "T. Dokken" -, title = "Finding intersections of {B}-spline represented geometric entities using recursive subdivsion techniques" -, journal = "Comput. Aided Geom. Design" -, volume = 2 -, year = 1985 -, pages = "189--195" -, update = "97.11 bibrelex" +, author = "T. Dokken" +, title = "Finding intersections of {B}-spline represented geometric entities using recursive subdivsion techniques" +, journal = "Comput. Aided Geom. Design" +, volume = 2 +, year = 1985 +, pages = "189--195" +, update = "97.11 bibrelex" } @article{dwms-mltnu-91 -, author = "J. Dolan and R. Weiss and {MacGregor} and J. Smith" -, title = "Minimal length tree networks on the unit circle" -, journal = "Ann. Oper. Res." -, volume = 33 -, number = "1--4" -, year = 1991 -, pages = "503--535" -, keywords = "proximity, Steiner tree, minimal spanning tree, Voronoi diagram, Delaunay triangulation, heuristics" -, update = "95.09 korneenko" +, author = "J. Dolan and R. Weiss and {MacGregor} and J. Smith" +, title = "Minimal length tree networks on the unit circle" +, journal = "Ann. Oper. Res." +, volume = 33 +, number = "1--4" +, year = 1991 +, pages = "503--535" +, keywords = "proximity, Steiner tree, minimal spanning tree, Voronoi diagram, Delaunay triangulation, heuristics" +, update = "95.09 korneenko" } @techreport{dm-otps-91 -, author = "A. Dolenc and I. M{\"a}kel{\"a}" -, title = "Optimized triangulation of parametric surfaces" -, type = "Technical {Report}" -, number = "TKO-B74" -, institution = "Helsinki University of Technology" -, address = "Helsinki, Finland" -, year = 1991 -, update = "98.07 bibrelex" +, author = "A. Dolenc and I. M{\"a}kel{\"a}" +, title = "Optimized triangulation of parametric surfaces" +, type = "Technical {Report}" +, number = "TKO-B74" +, institution = "Helsinki University of Technology" +, address = "Helsinki, Finland" +, year = 1991 +, update = "98.07 bibrelex" } @article{dkssu-oasa-82 -, author = "D. Dolev and K. Karplus and A. Siegel and A. Strong and J. D. Ullman" -, title = "Optimal algorithms for structural assembly" -, journal = "{VLSI} Design" -, volume = 3 -, year = 1982 -, pages = "38--43" -, succeeds = "dkssu-owbr-81" +, author = "D. Dolev and K. Karplus and A. Siegel and A. Strong and J. D. Ullman" +, title = "Optimal algorithms for structural assembly" +, journal = "{VLSI} Design" +, volume = 3 +, year = 1982 +, pages = "38--43" +, succeeds = "dkssu-owbr-81" } @inproceedings{dkssu-owbr-81 -, author = "D. Dolev and K. Karplus and A. Siegel and A. Strong and J. D. Ullman" -, title = "Optimal wiring between rectangles" -, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." -, year = 1981 -, pages = "312--317" -, precedes = "dkssu-oasa-82" +, author = "D. Dolev and K. Karplus and A. Siegel and A. Strong and J. D. Ullman" +, title = "Optimal wiring between rectangles" +, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." +, year = 1981 +, pages = "312--317" +, precedes = "dkssu-oasa-82" } @incollection{dlt-pepg-84 -, author = "D. Dolev and F. T. Leighton and H. Trickey" -, title = "Planar Embedding of Planar Graphs" -, editor = "Franco P. Preparata" -, booktitle = "VLSI Theory" -, series = "Adv. Comput. Res." -, volume = 2 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1984 -, pages = "147--161" -, keywords = "graph drawing" -, update = "01.04 icking, 98.07 vismara, 93.09 tamassia" +, author = "D. Dolev and F. T. Leighton and H. Trickey" +, title = "Planar Embedding of Planar Graphs" +, editor = "Franco P. Preparata" +, booktitle = "VLSI Theory" +, series = "Adv. Comput. Res." +, volume = 2 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1984 +, pages = "147--161" +, keywords = "graph drawing" +, update = "01.04 icking, 98.07 vismara, 93.09 tamassia" } @techreport{dt-laepg-81 -, author = "D. Dolev and H. Trickey" -, title = "On linear area embedding of planar graphs" -, type = "report" -, number = "cs--81--876" -, institution = "Stanford Univ." -, year = 1981 -, keywords = "plane graph representation, triangulation, area, discrete geometry, NP-completeness" -, update = "98.07 bibrelex, 95.09 korneenko" +, author = "D. Dolev and H. Trickey" +, title = "On linear area embedding of planar graphs" +, type = "report" +, number = "cs--81--876" +, institution = "Stanford Univ." +, year = 1981 +, keywords = "plane graph representation, triangulation, area, discrete geometry, NP-completeness" +, update = "98.07 bibrelex, 95.09 korneenko" } @phdthesis{d-oo3dm-96 -, author = "J. D{\"o}llner" -, title = "Object-oriented $3$d modeling, animation and interaction" -, school = "Universit{\"a}t M{\"u}nster" -, address = "M{\"u}nster, Germany" -, year = 1996 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "J. D{\"o}llner" +, title = "Object-oriented $3$d modeling, animation and interaction" +, school = "Universit{\"a}t M{\"u}nster" +, address = "M{\"u}nster, Germany" +, year = 1996 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @article{dh-oo3dm-97 -, author = "J. D{\"o}llner and K. Hinrichs" -, title = "Object-oriented $3$d modeling, animation and interaction" -, journal = "J. Visualization and Comput. Animation" -, volume = 8 -, number = 1 -, year = 1997 -, pages = "33--64" -, update = "98.07 bibrelex" +, author = "J. D{\"o}llner and K. Hinrichs" +, title = "Object-oriented $3$d modeling, animation and interaction" +, journal = "J. Visualization and Comput. Animation" +, volume = 8 +, number = 1 +, year = 1997 +, pages = "33--64" +, update = "98.07 bibrelex" } @inproceedings{dh-vrsto-95 -, author = "J. D{\"o}llner and K. Hinrichs" -, title = "The virtual rendering system - {A} toolkit for object oriented $3$D rendering" -, booktitle = "EduGraphics/ComputGraphics, Combined Proceedings" -, year = 1995 -, pages = "309--318" -, update = "98.07 bibrelex" +, author = "J. D{\"o}llner and K. Hinrichs" +, title = "The virtual rendering system - {A} toolkit for object oriented $3$D rendering" +, booktitle = "EduGraphics/ComputGraphics, Combined Proceedings" +, year = 1995 +, pages = "309--318" +, update = "98.07 bibrelex" } @article{d-cp-72 -, author = "V. L. Dol'nikov" -, title = "A coloring problem" -, journal = "Siberian Math. J." -, volume = 13 -, year = 1972 -, pages = "886--894" -, update = "97.11 bibrelex" +, author = "V. L. Dol'nikov" +, title = "A coloring problem" +, journal = "Siberian Math. J." +, volume = 13 +, year = 1972 +, pages = "886--894" +, update = "97.11 bibrelex" } @inproceedings{dg-patcp-91 -, author = "Salvador Dominguez and Oliver G{\"u}nther" -, title = "Performance analysis of three curve presentation schemes" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "37--56" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Salvador Dominguez and Oliver G{\"u}nther" +, title = "Performance analysis of three curve presentation schemes" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "37--56" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{dmbrm-dram-96 -, author = "R. J. Donaghy and W. McCune and S. J. Bridgett and C. G. Armstrong and D. J. Robinson and R. M. McKeag" -, title = "Dimensional reduction of analysis models" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "307--320" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "R. J. Donaghy and W. McCune and S. J. Bridgett and C. G. Armstrong and D. J. Robinson and R. M. McKeag" +, title = "Dimensional reduction of analysis models" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "307--320" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @techreport{dx-pgaao-90t -, author = "B. Donald and P. Xavier" -, title = "Provably Good Approximation Algorithms for Optimal Kinodynamic Planning for Cartesian Robots and Open Chain Manipulators" -, type = "Technical {Report}" -, number = "TR-1095" -, institution = "Cornell Univ." -, address = "Ithaca, NY" -, year = 1990 -, update = "97.11 bibrelex" +, author = "B. Donald and P. Xavier" +, title = "Provably Good Approximation Algorithms for Optimal Kinodynamic Planning for Cartesian Robots and Open Chain Manipulators" +, type = "Technical {Report}" +, number = "TR-1095" +, institution = "Cornell Univ." +, address = "Ithaca, NY" +, year = 1990 +, update = "97.11 bibrelex" } % paper and info from Donald's web site: @article{dx-pgaao-95 -, author = "B. Donald and P. Xavier" -, title = "Provably Good Approximation Algorithms for Optimal Kinodynamic Planning for Cartesian Robots and Open Chain Manipulators" -, journal = "Algorithmica" -, volume = 14 -, number = 6 -, year = 1995 -, pages = "480--530" -, succeeds = "dx-pgaao-90" -, cites = "as-rac-86, bdg-tocrm-85, b-rmpc-82, c-cdmp-86, d-samps-87, cdrx-ckp-88, cr-nlbtr-87, dx-pgaao-89, dx-nokpr-89, dx-pgaao-90t, fw-pcm-88, gl-mc-83, hp-brd-89, h-dsmt-83t, jc-pspmr-89, jhcp-pgnto-89i, l-spcsa-83, o-mpic-86, p-aspmt-85, ps-coac-82, pt-ipct-86, rt-akpul-89, sh-pmttr-85, s-obbtr-87, sd-gtomr-88, ss-rtoct-85, ss-tocm-86, w-mpav-88, y-amp-87, ZZZ" -, update = "98.03 mitchell" +, author = "B. Donald and P. Xavier" +, title = "Provably Good Approximation Algorithms for Optimal Kinodynamic Planning for Cartesian Robots and Open Chain Manipulators" +, journal = "Algorithmica" +, volume = 14 +, number = 6 +, year = 1995 +, pages = "480--530" +, succeeds = "dx-pgaao-90" +, cites = "as-rac-86, bdg-tocrm-85, b-rmpc-82, c-cdmp-86, d-samps-87, cdrx-ckp-88, cr-nlbtr-87, dx-pgaao-89, dx-nokpr-89, dx-pgaao-90t, fw-pcm-88, gl-mc-83, hp-brd-89, h-dsmt-83t, jc-pspmr-89, jhcp-pgnto-89i, l-spcsa-83, o-mpic-86, p-aspmt-85, ps-coac-82, pt-ipct-86, rt-akpul-89, sh-pmttr-85, s-obbtr-87, sd-gtomr-88, ss-rtoct-85, ss-tocm-86, w-mpav-88, y-amp-87, ZZZ" +, update = "98.03 mitchell" } @article{d-gaedr-88 -, author = "B. R. Donald" -, title = "A geometric approach to error detection and recovery for robot motion planning with uncertainty" -, journal = "Artif. Intell." -, volume = 37 -, number = "1--3" -, year = 1988 -, pages = "223--271" -, keywords = "compliance, motion planning" +, author = "B. R. Donald" +, title = "A geometric approach to error detection and recovery for robot motion planning with uncertainty" +, journal = "Artif. Intell." +, volume = 37 +, number = "1--3" +, year = 1988 +, pages = "223--271" +, keywords = "compliance, motion planning" } @article{d-samps-87 -, author = "B. R. Donald" -, title = "A search algorithm for motion planning with six degrees of freedom" -, journal = "Artif. Intell." -, volume = 31 -, number = 3 -, year = 1987 -, pages = "295--353" -, keywords = "motion planning" +, author = "B. R. Donald" +, title = "A search algorithm for motion planning with six degrees of freedom" +, journal = "Artif. Intell." +, volume = 31 +, number = 3 +, year = 1987 +, pages = "295--353" +, keywords = "motion planning" } @inproceedings{d-tedrr-86 -, author = "B. R. Donald" -, title = "A theory of error detection and recovery for robot motion planning with uncertainty" -, booktitle = "International Workshop on Geometric Reasoning" -, site = "Oxford, UK" -, year = 1986 -, update = "98.03 bibrelex" +, author = "B. R. Donald" +, title = "A theory of error detection and recovery for robot motion planning with uncertainty" +, booktitle = "International Workshop on Geometric Reasoning" +, site = "Oxford, UK" +, year = 1986 +, update = "98.03 bibrelex" } @techreport{d-edrrm-87 -, author = "B. R. Donald" -, title = "Error detection and recovery for robot motion planning with uncertainty" -, institution = "Artificial Intelligence Laboratory, MIT" -, year = 1987 -, update = "98.03 bibrelex" +, author = "B. R. Donald" +, title = "Error detection and recovery for robot motion planning with uncertainty" +, institution = "Artificial Intelligence Laboratory, MIT" +, year = 1987 +, update = "98.03 bibrelex" } @book{d-edrr-89 -, author = "B. R. Donald" -, title = "Error Detection and Recovery in Robotics" -, series = "Lecture Notes Comput. Sci." -, volume = 336 -, publisher = "Springer-Verlag" -, year = 1989 -, keywords = "doctoral thesis" -, comments = "revised version of author's thesis, Massachusetts - Inst. Tech. 1987" +, author = "B. R. Donald" +, title = "Error Detection and Recovery in Robotics" +, series = "Lecture Notes Comput. Sci." +, volume = 336 +, publisher = "Springer-Verlag" +, year = 1989 +, keywords = "doctoral thesis" +, comments = "revised version of author's thesis, Massachusetts + Inst. Tech. 1987" } @inproceedings{d-mpsdf-85 -, author = "B. R. Donald" -, title = "On motion planning with six degrees of freedom: solving the intersection problems in configuration space" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1985 -, pages = "536--541" +, author = "B. R. Donald" +, title = "On motion planning with six degrees of freedom: solving the intersection problems in configuration space" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1985 +, pages = "536--541" } @inproceedings{d-pmsed-88 -, author = "B. R. Donald" -, title = "Planning multi-step error detection and recovery strategies" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1988 -, pages = "892--897" -, precedes = "d-pmsed-90" +, author = "B. R. Donald" +, title = "Planning multi-step error detection and recovery strategies" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1988 +, pages = "892--897" +, precedes = "d-pmsed-90" } @article{d-pmsed-90 -, author = "B. R. Donald" -, title = "Planning multi-step error detection and recovery strategies" -, journal = "Internat. J. Robot. Res." -, volume = 9 -, year = 1990 -, pages = "3--60" -, keywords = "compliance, motion planning" -, succeeds = "d-pmsed-88" +, author = "B. R. Donald" +, title = "Planning multi-step error detection and recovery strategies" +, journal = "Internat. J. Robot. Res." +, volume = 9 +, year = 1990 +, pages = "3--60" +, keywords = "compliance, motion planning" +, succeeds = "d-pmsed-88" } @inproceedings{d-rmpug-86 -, author = "B. R. Donald" -, title = "Robot motion planning with uncertainty in the geometric models of the robot and environment: a formal framework for error detection and recovery" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1986 -, pages = "1588--1593" +, author = "B. R. Donald" +, title = "Robot motion planning with uncertainty in the geometric models of the robot and environment: a formal framework for error detection and recovery" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1986 +, pages = "1588--1593" } @inproceedings{d-cpcmp-88 -, author = "B. R. Donald" -, title = "The complexity of planar compliant motion planning under uncertainty" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "309--318" -, precedes = "d-cpcmp-90" -, cites = "bk-cmpgm-87, bl-sacsf-83, b-rmpc-82, b-agppu-86, b-ptcms-87, brs-phpsd-87, c-namrm-87, cd-svd-87, cd-svd-88, cr-nlbtr-87, ad-tg-80, d-samps-87, d-rmpug-86, d-tedrr-86, d-edrrm-87, d-gaedr-88, d-ttlrp-87, e-ubfmp-86, em-esm-86, g-cdta-87, hw-moc-86, k-ernmp-87, k-grsmo-85, l-spcsa-83, l-rp-83, lmt-asfms-84, l-cmpue-86, m-cfccc-81, m-apfmc-84, n-moo-86, n-aaadp-86, osy-gvdl1-84, osy-gvdl2-84, oy-rmpmd-85, hss-pgcrm-87, sy-agar-87, t-smcpt-76, y-cmsd-84, y-amp-87, ZZZ" -, update = "98.03 bibrelex" +, author = "B. R. Donald" +, title = "The complexity of planar compliant motion planning under uncertainty" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "309--318" +, precedes = "d-cpcmp-90" +, cites = "bk-cmpgm-87, bl-sacsf-83, b-rmpc-82, b-agppu-86, b-ptcms-87, brs-phpsd-87, c-namrm-87, cd-svd-87, cd-svd-88, cr-nlbtr-87, ad-tg-80, d-samps-87, d-rmpug-86, d-tedrr-86, d-edrrm-87, d-gaedr-88, d-ttlrp-87, e-ubfmp-86, em-esm-86, g-cdta-87, hw-moc-86, k-ernmp-87, k-grsmo-85, l-spcsa-83, l-rp-83, lmt-asfms-84, l-cmpue-86, m-cfccc-81, m-apfmc-84, n-moo-86, n-aaadp-86, osy-gvdl1-84, osy-gvdl2-84, oy-rmpmd-85, hss-pgcrm-87, sy-agar-87, t-smcpt-76, y-cmsd-84, y-amp-87, ZZZ" +, update = "98.03 bibrelex" } @article{d-cpcmp-90 -, author = "B. R. Donald" -, title = "The complexity of planar compliant motion planning under uncertainty" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "353--382" -, succeeds = "d-cpcmp-88" +, author = "B. R. Donald" +, title = "The complexity of planar compliant motion planning under uncertainty" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "353--382" +, succeeds = "d-cpcmp-88" } @inproceedings{d-mpasd-83 -, author = "B. R. Donald" -, title = "The mover's problem in automated structural design" -, booktitle = "Proc. Harvard Computer Graphics Conference" -, year = 1983 -, pages = "??" +, author = "B. R. Donald" +, title = "The mover's problem in automated structural design" +, booktitle = "Proc. Harvard Computer Graphics Conference" +, year = 1983 +, pages = "??" } @techreport{d-ttlrp-87 -, author = "B. R. Donald" -, title = "Towards task-level robot programming" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1987 -, update = "98.03 bibrelex" +, author = "B. R. Donald" +, title = "Towards task-level robot programming" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{dbb-r-90 -, author = "B. R. Donald and J. Baillieul and R. Brockett" -, title = "Robotics" -, booktitle = "Symposia in Applied Mathematics" -, volume = 41 -, year = 1990 -, pages = "??" -, update = "97.11 bibrelex" +, author = "B. R. Donald and J. Baillieul and R. Brockett" +, title = "Robotics" +, booktitle = "Symposia in Applied Mathematics" +, volume = 41 +, year = 1990 +, pages = "??" +, update = "97.11 bibrelex" } @techreport{dc-chtt-91 -, author = "B. R. Donald and D. R. Chang" -, title = "On computing the homology type of a triangulation" -, type = "Technical {Report}" -, number = "TR-91-1183" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1991 -, update = "98.03 bibrelex" +, author = "B. R. Donald and D. R. Chang" +, title = "On computing the homology type of a triangulation" +, type = "Technical {Report}" +, number = "TR-91-1183" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1991 +, update = "98.03 bibrelex" } @inproceedings{dc-cchtt-91 -, author = "B. R. Donald and D. R. Chang" -, title = "On the complexity of computing the homology type of a triangulation" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "650--662" +, author = "B. R. Donald and D. R. Chang" +, title = "On the complexity of computing the homology type of a triangulation" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "650--662" } @inproceedings{dj-sitdp-91 -, author = "B. R. Donald and J. Jennings" -, title = "Sensor interpretation and task-directed planning using perceptual equivalence classes" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1991 -, pages = "190--197" +, author = "B. R. Donald and J. Jennings" +, title = "Sensor interpretation and task-directed planning using perceptual equivalence classes" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1991 +, pages = "190--197" } @inproceedings{djc-tevac-89 -, author = "B. R. Donald and J. Jennings and D. Campbell" -, title = "Towards experimental verification of an automated compliant motion planner based on a geometric theory of error detection and recovery" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1989 -, pages = "632--637" +, author = "B. R. Donald and J. Jennings and D. Campbell" +, title = "Towards experimental verification of an automated compliant motion planner based on a geometric theory of error detection and recovery" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1989 +, pages = "632--637" } @article{dlrg-rtrmp-90 -, author = "B. R. Donald and J. Lengyel and M. Reichert and D. Greenberg" -, title = "Real-time robot motion planning using rasterizing computer graphics hardware" -, journal = "Comput. Graph." -, volume = 24 -, number = 4 -, year = 1990 -, pages = "327--335" -, note = "Proc. SIGGRAPH '90" +, author = "B. R. Donald and J. Lengyel and M. Reichert and D. Greenberg" +, title = "Real-time robot motion planning using rasterizing computer graphics hardware" +, journal = "Comput. Graph." +, volume = 24 +, number = 4 +, year = 1990 +, pages = "327--335" +, note = "Proc. SIGGRAPH '90" } @inproceedings{dp-mccrb-90 -, author = "B. R. Donald and D. K. Pai" -, title = "On the motion of compliantly-connected rigid bodies in contact: a system for analyzing designs for assembly" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1990 -, pages = "1756--1762" -, keywords = "motion planning, compliance" +, author = "B. R. Donald and D. K. Pai" +, title = "On the motion of compliantly-connected rigid bodies in contact: a system for analyzing designs for assembly" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1990 +, pages = "1756--1762" +, keywords = "motion planning, compliance" } @inproceedings{dx-pgaao-89 -, author = "B. R. Donald and P. Xavier" -, title = "A provably good approximation algorithm for optimal-time trajectory planning" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1989 -, pages = "958--963" -, keywords = "motion planning" +, author = "B. R. Donald and P. Xavier" +, title = "A provably good approximation algorithm for optimal-time trajectory planning" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1989 +, pages = "958--963" +, keywords = "motion planning" } @inproceedings{dx-nokpr-89 -, author = "B. R. Donald and P. Xavier" -, title = "Near-optimal kinodynamic planning for robots with coupled dynamics bounds" -, booktitle = "Proc. 4th IEEE International Symposium on Intelligent Control" -, year = 1989 -, pages = "??" -, keywords = "motion planning" +, author = "B. R. Donald and P. Xavier" +, title = "Near-optimal kinodynamic planning for robots with coupled dynamics bounds" +, booktitle = "Proc. 4th IEEE International Symposium on Intelligent Control" +, year = 1989 +, pages = "??" +, keywords = "motion planning" } @inproceedings{dx-tstob-91 -, author = "B. R. Donald and P. Xavier" -, title = "Time-safety trade-offs and a bang-bang algorithm for kinodynamic planning" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1991 -, pages = "525--527" -, keywords = "motion planning" +, author = "B. R. Donald and P. Xavier" +, title = "Time-safety trade-offs and a bang-bang algorithm for kinodynamic planning" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1991 +, pages = "525--527" +, keywords = "motion planning" } % paper and info from Donald's web site: @article{dxcr-kmp-93 -, author = "B. R. Donald and P. Xavier and J. Canny and J. Reif" -, title = "Kinodynamic Motion Planning" -, journal = "J. ACM" -, volume = 40 -, number = 5 -, month = nov -, year = 1993 -, pages = "1048--1066" -, succeeds = "cdrx-ckp-88" -, update = "98.03 mitchell" +, author = "B. R. Donald and P. Xavier and J. Canny and J. Reif" +, title = "Kinodynamic Motion Planning" +, journal = "J. ACM" +, volume = 40 +, number = 5 +, month = nov +, year = 1993 +, pages = "1048--1066" +, succeeds = "cdrx-ckp-88" +, update = "98.03 mitchell" } @inproceedings{dx-pgaao-90 -, author = "B. R. Donald and P. G. Xavier" -, title = "Provably good approximation algorithms for optimal kinodynamic planning for {Cartesian} robots and open chain manipulators" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "290--300" -, precedes = "dx-pgaao-95" -, cites = "as-rac-86, bdg-tocrm-85, b-rmpc-82, c-cdmp-86, d-samps-87, cdrx-ckp-88, cr-nlbtr-87, dx-pgaao-89, dx-nokpr-89, dx-pgaao-90t, fw-pcm-88, gl-mc-83, hp-brd-89, h-dsmt-83t, jc-pspmr-89, jhcp-pgnto-89i, l-spcsa-83, o-mpic-86, p-aspmt-85, ps-coac-82, pt-ipct-86, rt-akpul-89, sh-pmttr-85, s-obbtr-87, sd-gtomr-88, ss-rtoct-85, ss-tocm-86, w-mpav-88, y-amp-87, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.11 bibrelex" +, author = "B. R. Donald and P. G. Xavier" +, title = "Provably good approximation algorithms for optimal kinodynamic planning for {Cartesian} robots and open chain manipulators" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "290--300" +, precedes = "dx-pgaao-95" +, cites = "as-rac-86, bdg-tocrm-85, b-rmpc-82, c-cdmp-86, d-samps-87, cdrx-ckp-88, cr-nlbtr-87, dx-pgaao-89, dx-nokpr-89, dx-pgaao-90t, fw-pcm-88, gl-mc-83, hp-brd-89, h-dsmt-83t, jc-pspmr-89, jhcp-pgnto-89i, l-spcsa-83, o-mpic-86, p-aspmt-85, ps-coac-82, pt-ipct-86, rt-akpul-89, sh-pmttr-85, s-obbtr-87, sd-gtomr-88, ss-rtoct-85, ss-tocm-86, w-mpav-88, y-amp-87, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.11 bibrelex" } @techreport{d-mpsdf-84 -, author = "R. B. Donald" -, title = "Motion Planning with Six Degrees of Freedom" -, number = "AI-TR-791" -, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1984 -, update = "98.03 bibrelex" +, author = "R. B. Donald" +, title = "Motion Planning with Six Degrees of Freedom" +, number = "AI-TR-791" +, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1984 +, update = "98.03 bibrelex" } @inproceedings{dw-eabmo-83 -, author = "W. E. Donath and C. K. Wong" -, title = "An efficient algorithm for boolean mask operations" -, booktitle = "Internat. Conf. Computer Design" -, year = 1983 -, pages = "358--360" -, keywords = "polygons, Boolean operations" -, update = "95.09 korneenko" +, author = "W. E. Donath and C. K. Wong" +, title = "An efficient algorithm for boolean mask operations" +, booktitle = "Internat. Conf. Computer Design" +, year = 1983 +, pages = "358--360" +, keywords = "polygons, Boolean operations" +, update = "95.09 korneenko" } @inproceedings{dcl-cfdfb-89 -, author = "S. Dong and J. Cong and C. L. Liu" -, title = "Constraint Floorplan Design for Flexible Blocks" -, booktitle = "IEEE Int. Conf. on Computer-Aided Design" -, year = 1989 -, pages = "488--491" -, update = "98.11 bibrelex" +, author = "S. Dong and J. Cong and C. L. Liu" +, title = "Constraint Floorplan Design for Flexible Blocks" +, booktitle = "IEEE Int. Conf. on Computer-Aided Design" +, year = 1989 +, pages = "488--491" +, update = "98.11 bibrelex" } @incollection{dmss-imt3d-94 -, author = "W. P. Dong and E. Mainsah and P. F. Sullivan and K. F. Stout" -, title = "Instruments and Measurement Techniques of 3-Dimensional Surface Topography" -, editor = "K. F. Stout" -, booktitle = "Three-Dimensional Surface Topography: Measurement, Interpretation and Applications" -, publisher = "Penton Press" -, address = "Bristol, Penn." -, year = 1994 -, update = "96.09 orourke" +, author = "W. P. Dong and E. Mainsah and P. F. Sullivan and K. F. Stout" +, title = "Instruments and Measurement Techniques of 3-Dimensional Surface Topography" +, editor = "K. F. Stout" +, booktitle = "Three-Dimensional Surface Topography: Measurement, Interpretation and Applications" +, publisher = "Penton Press" +, address = "Bristol, Penn." +, year = 1994 +, update = "96.09 orourke" } @article{dw-mgvfs-91 -, author = "X. Dong and M. J. Wozny" -, title = "A method for generating volumetric features from surface features" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 3 -, year = 1991 -, pages = "281--297" -, keywords = "computer aided design, computer aided manufacturing, geometric modeling, feature extraction" +, author = "X. Dong and M. J. Wozny" +, title = "A method for generating volumetric features from surface features" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 3 +, year = 1991 +, pages = "281--297" +, keywords = "computer aided design, computer aided manufacturing, geometric modeling, feature extraction" } @book{dmbs-lug-79 -, author = "J. J. Dongarra and C. B. Moler and J. R. Bunch and G. W. Stewart" -, title = "{LINPACK} Users' Guide" -, publisher = "SIAM Press" -, address = "Philadelphia, PA" -, year = 1979 -, update = "95.05 agarwal" +, author = "J. J. Dongarra and C. B. Moler and J. R. Bunch and G. W. Stewart" +, title = "{LINPACK} Users' Guide" +, publisher = "SIAM Press" +, address = "Philadelphia, PA" +, year = 1979 +, update = "95.05 agarwal" } @incollection{dh-nbp-83 -, author = "D. L. Donoho and P. J. Huber" -, title = "The notion of breakdown point" -, editor = "P. J. Bickel and K. Doksun and J. L. Hodges" -, booktitle = "A Festschrift for Erich L. Lehmann" -, publisher = "Wadsworth International Group" -, address = "Belmont, CA" -, year = 1983 -, pages = "157--184" -, update = "98.07 bibrelex" +, author = "D. L. Donoho and P. J. Huber" +, title = "The notion of breakdown point" +, editor = "P. J. Bickel and K. Doksun and J. L. Hodges" +, booktitle = "A Festschrift for Erich L. Lehmann" +, publisher = "Wadsworth International Group" +, address = "Belmont, CA" +, year = 1983 +, pages = "157--184" +, update = "98.07 bibrelex" } @techreport{do-npbr-01 -, author = "Melody Donoso and Joseph O'Rourke" -, title = "Nonorthogonal Polyhedra Built from Rectangles" -, type = "Technical {Report}" -, number = 073 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA, USA" -, month = oct -, year = 2001 -, url = "https://arXiv.org/abs/cs/0110059/" -, comments = "Answers a question posed in bls-wcnfp-99" -, update = "01.11 orourke" +, author = "Melody Donoso and Joseph O'Rourke" +, title = "Nonorthogonal Polyhedra Built from Rectangles" +, type = "Technical {Report}" +, number = 073 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA, USA" +, month = oct +, year = 2001 +, url = "https://arXiv.org/abs/cs/0110059/" +, comments = "Answers a question posed in bls-wcnfp-99" +, update = "01.11 orourke" } @incollection{dh-docfc-94 -, author = "Walt Donovan and Tim Van Hook" -, title = "Direct Outcode Calculation for Faster Clip Testing" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "125--131" -, keywords = "IEEE floating point arithmetic, line clipping" -, update = "94.09 heckbert" -, annote = "A clever optimization of clip testing that exploits the +, author = "Walt Donovan and Tim Van Hook" +, title = "Direct Outcode Calculation for Faster Clip Testing" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "125--131" +, keywords = "IEEE floating point arithmetic, line clipping" +, update = "94.09 heckbert" +, annote = "A clever optimization of clip testing that exploits the properties of IEEE floating point format. Techniques are described to compute the ``outcodes'' needed for line clipping using only integer arithmetic. Contains C code." } @article{ds-brdsn-78 -, author = "D. Doo and M. Sabin" -, title = "Behaviour of recursive division surfaces near extraordinary points" -, journal = "Comput. Aided Design" -, volume = 10 -, year = 1978 -, pages = "356--360" +, author = "D. Doo and M. Sabin" +, title = "Behaviour of recursive division surfaces near extraordinary points" +, journal = "Comput. Aided Design" +, volume = 10 +, year = 1978 +, pages = "356--360" } @inproceedings{d-sasdi-78 -, author = "D. H. Doo" -, title = "A subdivision algorithm for smoothing down irregularly shaped polyhedrons" -, booktitle = "Proc. IEEE Internat. Conf. Techniques Comput.-Aided Design" -, year = 1978 -, pages = "157--165" +, author = "D. H. Doo" +, title = "A subdivision algorithm for smoothing down irregularly shaped polyhedrons" +, booktitle = "Proc. IEEE Internat. Conf. Techniques Comput.-Aided Design" +, year = 1978 +, pages = "157--165" } @unpublished{dz-sompp-99 -, author = "D. Dor and U. Zwick" -, title = "Sokaban and other motion planning problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, url = "http://www.math.tau.ac.il/~ddorit/" -, update = "00.03 orourke" +, author = "D. Dor and U. Zwick" +, title = "Sokaban and other motion planning problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, url = "http://www.math.tau.ac.il/~ddorit/" +, update = "00.03 orourke" } @inproceedings{dlpw-stmas-97 -, author = "Carsten Dorgerloh and Jens L{\"u}ssem and Morakot Pilouk and J{\"u}rgen Wirtgen" -, title = "Some Tools for Modeling and Analysis of Surfaces" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "263--267" -, update = "97.11 jones" +, author = "Carsten Dorgerloh and Jens L{\"u}ssem and Morakot Pilouk and J{\"u}rgen Wirtgen" +, title = "Some Tools for Modeling and Analysis of Surfaces" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "263--267" +, update = "97.11 jones" } @article{db-ccppf-83 -, author = "D. Dori and M. Ben-Bassat" -, title = "Circumscribing a Convex Polygon by a Polygon of Fewer Sides with Minimal Area Addition" -, journal = "Comput. Vision Graph. Image Process." -, volume = 24 -, year = 1983 -, pages = "131--159" -, keywords = "polygons, extremal figures, area" -, update = "95.09 korneenko, 93.09 held" -, annote = "erratic" +, author = "D. Dori and M. Ben-Bassat" +, title = "Circumscribing a Convex Polygon by a Polygon of Fewer Sides with Minimal Area Addition" +, journal = "Comput. Vision Graph. Image Process." +, volume = 24 +, year = 1983 +, pages = "131--159" +, keywords = "polygons, extremal figures, area" +, update = "95.09 korneenko, 93.09 held" +, annote = "erratic" } @article{db-enccf-84 -, author = "D. Dori and M. Ben-Bassat" -, title = "Efficient nesting of congruent convex figures" -, journal = "Commun. ACM" -, volume = 27 -, year = 1984 -, pages = "228--235" +, author = "D. Dori and M. Ben-Bassat" +, title = "Efficient nesting of congruent convex figures" +, journal = "Commun. ACM" +, volume = 27 +, year = 1984 +, pages = "228--235" } @article{d-mdcm-93 -, author = "D. Dorling" -, title = "Map design for census mapping" -, journal = "The Geographic J." -, volume = 30 -, year = 1993 -, pages = "167--179" -, update = "98.03 bibrelex" +, author = "D. Dorling" +, title = "Map design for census mapping" +, journal = "The Geographic J." +, volume = 30 +, year = 1993 +, pages = "167--179" +, update = "98.03 bibrelex" } @article{d-naplc-90 -, author = "M. Dorr" -, title = "A new approach to parametric line clipping" -, journal = "Computers \& Graphics" -, volume = 14 -, number = "3--4" -, year = 1990 -, pages = "449--464" -, keywords = "polygons, clipping" -, update = "95.09 korneenko" +, author = "M. Dorr" +, title = "A new approach to parametric line clipping" +, journal = "Computers \& Graphics" +, volume = 14 +, number = "3--4" +, year = 1990 +, pages = "449--464" +, keywords = "polygons, clipping" +, update = "95.09 korneenko" } @article{d-dslsp-89 -, author = "L. Dorst" -, title = "Discrete straight line segments: parameters, primitives and properties" -, journal = "Math. Res." -, volume = 51 -, year = 1989 -, pages = "11--18" -, note = "Proc. Geobild '89" -, keywords = "digital geometry" -, update = "95.09 korneenko" +, author = "L. Dorst" +, title = "Discrete straight line segments: parameters, primitives and properties" +, journal = "Math. Res." +, volume = 51 +, year = 1989 +, pages = "11--18" +, note = "Proc. Geobild '89" +, keywords = "digital geometry" +, update = "95.09 korneenko" } @inproceedings{dmt-grppp-89 -, author = "L. Dorst and I. Mandhyan and K. Trovato" -, title = "Geometrical representation of path planning problems" -, booktitle = "Proc. 2nd International Conference on Intelligent Autonomous Systems" -, month = dec -, year = 1989 -, update = "96.05 efrat, 93.09 milone+mitchell" -, abstract = "The path planning problem for arbitrary devices is first and +, author = "L. Dorst and I. Mandhyan and K. Trovato" +, title = "Geometrical representation of path planning problems" +, booktitle = "Proc. 2nd International Conference on Intelligent Autonomous Systems" +, month = dec +, year = 1989 +, update = "96.05 efrat, 93.09 milone+mitchell" +, abstract = "The path planning problem for arbitrary devices is first and foremost a geometrical problem. For the field of control theory, advanced mathematical techniques have been developed to describe and use geometrical structure. In this paper we use the notions of the flow of vector fields and @@ -48598,879 +48598,879 @@ @inproceedings{dmt-grppp-89 } @article{ds-drsl-84 -, author = "L. Dorst and A. W. M. Smeulders" -, title = "Discrete representation of straight lines" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 6 -, year = 1984 -, pages = "450--463" -, keywords = "digital geometry" -, update = "95.09 korneenko" +, author = "L. Dorst and A. W. M. Smeulders" +, title = "Discrete representation of straight lines" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 6 +, year = 1984 +, pages = "450--463" +, keywords = "digital geometry" +, update = "95.09 korneenko" } @inproceedings{ds-dslsp-91 -, author = "L. Dorst and A. W. M. Smeulders" -, title = "Discrete straight line segments: parameters, primitives and properties" -, booktitle = "Vision Geom.: Proc. AMS Spec. Sess. Hoboken, NJ 1989. Providence, R.I." -, year = 1991 -, pages = "45--62" -, keywords = "digital geometry" -, update = "95.09 korneenko" +, author = "L. Dorst and A. W. M. Smeulders" +, title = "Discrete straight line segments: parameters, primitives and properties" +, booktitle = "Vision Geom.: Proc. AMS Spec. Sess. Hoboken, NJ 1989. Providence, R.I." +, year = 1991 +, pages = "45--62" +, keywords = "digital geometry" +, update = "95.09 korneenko" } @techreport{d-soshs-91 -, author = "S. E. Dorward" -, title = "A survey of object-space hidden surface removal" -, type = "Technical Memorandum" -, number = "11271-911009-11TM" -, institution = "AT\&T Bell Laboratories, Murray Hill, NJ" -, year = 1991 -, precedes = "d-soshs-94" -, update = "99.07 smid" +, author = "S. E. Dorward" +, title = "A survey of object-space hidden surface removal" +, type = "Technical Memorandum" +, number = "11271-911009-11TM" +, institution = "AT\&T Bell Laboratories, Murray Hill, NJ" +, year = 1991 +, precedes = "d-soshs-94" +, update = "99.07 smid" } @article{d-soshs-94 -, author = "S. E. Dorward" -, title = "A survey of object-space hidden surface removal" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "325--362" -, succeeds = "d-soshs-91" -, update = "95.01 orourke" +, author = "S. E. Dorward" +, title = "A survey of object-space hidden surface removal" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "325--362" +, succeeds = "d-soshs-91" +, update = "95.01 orourke" } @article{drs-fctcm-74 -, author = "P. Doubilet and G.-C. Rota and J. Stein" -, title = "On the foundations of combinatorial theory: ix, combinatorial methods in invariant theory" -, journal = "Studies in Applied Math" -, volume = 53 -, year = 1974 -, pages = "185--216" -, update = "97.11 bibrelex" +, author = "P. Doubilet and G.-C. Rota and J. Stein" +, title = "On the foundations of combinatorial theory: ix, combinatorial methods in invariant theory" +, journal = "Studies in Applied Math" +, volume = 53 +, year = 1974 +, pages = "185--216" +, update = "97.11 bibrelex" } @incollection{d-cvmar-94 -, author = "Jean-Fran{\c c}ois Dou{\'e}" -, title = "{C}++ Vector and Matrix Algebra Routines" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "534--557" -, keywords = "vector algebra, transformation, ray tracing" -, update = "94.09 heckbert" -, annote = "A C++ subroutine library for 2D, 3D, and 4D vector and +, author = "Jean-Fran{\c c}ois Dou{\'e}" +, title = "{C}++ Vector and Matrix Algebra Routines" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "534--557" +, keywords = "vector algebra, transformation, ray tracing" +, update = "94.09 heckbert" +, annote = "A C++ subroutine library for 2D, 3D, and 4D vector and matrix operations. Contains C++ code. The Floppy disk that comes with the book and the FTP collection contain a simple ray tracer written using the library." } @article{dcn-accac-85 -, author = "J. A. Dougenik and N. R. Chrisman and D. R. Niemeyer" -, title = "An algorithm to construct continuous area cartograms" -, journal = "Professional Geographer" -, volume = 37 -, year = 1985 -, pages = "75--81" -, update = "98.03 bibrelex" +, author = "J. A. Dougenik and N. R. Chrisman and D. R. Niemeyer" +, title = "An algorithm to construct continuous area cartograms" +, journal = "Professional Geographer" +, volume = 37 +, year = 1985 +, pages = "75--81" +, update = "98.03 bibrelex" } @techreport{d-lcpgi-93 -, author = "David H. Douglas" -, title = "Least Cost Path in Geographic Information Systems" -, type = "Research Note No. 61" -, institution = "Department of Geography, University of Ottawa" -, address = "Ottawa, Ontario" -, month = aug -, year = 1993 -, keywords = "shortest paths, weighted region problem, GIS, Snell's Law" -, update = "98.03 mitchell" -, annote = "paper was submitted to a journal. Has it appeared??" +, author = "David H. Douglas" +, title = "Least Cost Path in Geographic Information Systems" +, type = "Research Note No. 61" +, institution = "Department of Geography, University of Ottawa" +, address = "Ottawa, Ontario" +, month = aug +, year = 1993 +, keywords = "shortest paths, weighted region problem, GIS, Snell's Law" +, update = "98.03 mitchell" +, annote = "paper was submitted to a journal. Has it appeared??" } @article{d-vcpcp-72 -, author = "David H. Douglas" -, title = "Viewblock: A Computer Program for Constructing Perspective View Block Diagrams" -, journal = "Revue de Geographie de Montreal" -, volume = "XXVI" -, number = 1 -, month = jan -, year = 1972 -, pages = "102--104" -, update = "93.09 franklin" +, author = "David H. Douglas" +, title = "Viewblock: A Computer Program for Constructing Perspective View Block Diagrams" +, journal = "Revue de Geographie de Montreal" +, volume = "XXVI" +, number = 1 +, month = jan +, year = 1972 +, pages = "102--104" +, update = "93.09 franklin" } % ### check: vol. 13, pp. 167--184 @article{dp-arnpr-73 -, author = "David H. Douglas and Thomas K. Peucker" -, title = "Algorithms for the Reduction of the Number of Points Required to Represent a Digitized Line or Its Caricature" -, journal = "Canadian Cartographer" -, volume = 10 -, number = 2 -, month = dec -, year = 1973 -, pages = "112--122" -, update = "95.09 korneenko, 93.09 franklin" +, author = "David H. Douglas and Thomas K. Peucker" +, title = "Algorithms for the Reduction of the Number of Points Required to Represent a Digitized Line or Its Caricature" +, journal = "Canadian Cartographer" +, volume = 10 +, number = 2 +, month = dec +, year = 1973 +, pages = "112--122" +, update = "95.09 korneenko, 93.09 franklin" } @article{dd-pp-92 -, author = "K. A. Dowsland and W. B. Dowsland" -, title = "Packing problems" -, journal = "European J. Oper. Res." -, volume = 56 -, year = 1992 -, pages = "2--14" -, update = "98.07 bibrelex" +, author = "K. A. Dowsland and W. B. Dowsland" +, title = "Packing problems" +, journal = "European J. Oper. Res." +, volume = 56 +, year = 1992 +, pages = "2--14" +, update = "98.07 bibrelex" } @article{dd-sdai-96 -, author = "John Doyle and Thomas Dean and others" -, title = "Strategic Directions in Artificial Intelligence" -, journal = "ACM Comput. Surv." -, volume = 28 -, number = 4 -, year = 1996 -, update = "97.03 tamassia" +, author = "John Doyle and Thomas Dean and others" +, title = "Strategic Directions in Artificial Intelligence" +, journal = "ACM Comput. Surv." +, volume = 28 +, number = 4 +, year = 1996 +, update = "97.03 tamassia" } @techreport{dbd-fshp-79 -, author = "J. Dozier and J. Bruno and P. Downey" -, title = "A faster solution to the horizon problem" -, type = "Report" -, number = "TR-CSL-7907" -, institution = "Comput. Syst. Lab., Univ. California" -, address = "Santa Barbara, CA" -, year = 1979 +, author = "J. Dozier and J. Bruno and P. Downey" +, title = "A faster solution to the horizon problem" +, type = "Report" +, number = "TR-CSL-7907" +, institution = "Comput. Syst. Lab., Univ. California" +, address = "Santa Barbara, CA" +, year = 1979 } @inproceedings{db-dcghs-94 -, author = "F. F. Dragan and A. Brandst{\"a}dt" -, title = "Dominating cliques in graphs with hypertree structure" -, booktitle = "Proc. 11th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 775 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "735--746" -, update = "98.07 bibrelex" +, author = "F. F. Dragan and A. Brandst{\"a}dt" +, title = "Dominating cliques in graphs with hypertree structure" +, booktitle = "Proc. 11th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 775 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "735--746" +, update = "98.07 bibrelex" } @article{dm-cblnm-97 -, author = "D. Dragomatz and S. Mann" -, title = "A Classified Bibliography of Literature on {NC} Milling Path Generation" -, journal = "Comput. Aided Design" -, volume = 29 -, number = 3 -, month = mar -, year = 1997 -, pages = "239--247" -, update = "97.07 held" +, author = "D. Dragomatz and S. Mann" +, title = "A Classified Bibliography of Literature on {NC} Milling Path Generation" +, journal = "Comput. Aided Design" +, volume = 29 +, number = 3 +, month = mar +, year = 1997 +, pages = "239--247" +, update = "97.07 held" } @techreport{d-ec-83 -, author = "J.-M. Drappier" -, title = "Enveloppes Convexes" -, institution = "Centre CPAO, ENSTA Palaiseau" -, year = 1983 -, comments = "Survey about convex hull algorithms in 2D and experimental results, in french" -, update = "97.03 icking" +, author = "J.-M. Drappier" +, title = "Enveloppes Convexes" +, institution = "Centre CPAO, ENSTA Palaiseau" +, year = 1983 +, comments = "Survey about convex hull algorithms in 2D and experimental results, in french" +, update = "97.03 icking" } @book{d-sagd-64 -, author = "A. Dresden" -, title = "Solid Analytic Geometry and Determinants" -, publisher = "Dover" -, address = "New York, NY" -, year = 1964 -, update = "98.03 bibrelex" +, author = "A. Dresden" +, title = "Solid Analytic Geometry and Determinants" +, publisher = "Dover" +, address = "New York, NY" +, year = 1964 +, update = "98.03 bibrelex" } @inproceedings{df-fsaal-94 -, author = "G. Drettakis and E. Fiume" -, title = "A fast shadow algorithm for area light sources using back projection" -, editor = "A. Glassner" -, booktitle = "Proc. SIGGRAPH '94" -, site = "Orlando, FL" -, publisher = "ACM Press" -, month = jul -, year = 1994 -, pages = "223--230" -, update = "98.07 bibrelex" +, author = "G. Drettakis and E. Fiume" +, title = "A fast shadow algorithm for area light sources using back projection" +, editor = "A. Glassner" +, booktitle = "Proc. SIGGRAPH '94" +, site = "Orlando, FL" +, publisher = "ACM Press" +, month = jul +, year = 1994 +, pages = "223--230" +, update = "98.07 bibrelex" } @article{dw-spg-72 -, author = "S. E. Dreyfus and R. A. Wagner" -, title = "The {Steiner} problem in graphs" -, journal = "Networks" -, volume = 1 -, year = 1972 -, pages = "195--207" -, update = "98.07 bibrelex" +, author = "S. E. Dreyfus and R. A. Wagner" +, title = "The {Steiner} problem in graphs" +, journal = "Networks" +, volume = 1 +, year = 1972 +, pages = "195--207" +, update = "98.07 bibrelex" } @article{d-clstf-82 -, author = "Z. Drezner" -, title = "Competitive location strategies for two facilities" -, journal = "Region. Sci. Urban Econ." -, volume = 12 -, year = 1982 -, pages = "485--493" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "Z. Drezner" +, title = "Competitive location strategies for two facilities" +, journal = "Region. Sci. Urban Econ." +, volume = 12 +, year = 1982 +, pages = "485--493" +, keywords = "facility location" +, update = "95.09 korneenko" } @article{d-cpcp-89 -, author = "Z. Drezner" -, title = "Conditional $p$-centre problems" -, journal = "Transp. Sci." -, volume = 23 -, number = 1 -, year = 1989 -, pages = "51--53" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "Z. Drezner" +, title = "Conditional $p$-centre problems" +, journal = "Transp. Sci." +, volume = 23 +, number = 1 +, year = 1989 +, pages = "51--53" +, keywords = "facility location" +, update = "95.09 korneenko" } @book{d-fl-95 -, title = "Facility Location" -, editor = "Z. Drezner" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1995 -, update = "96.05 agarwal" +, title = "Facility Location" +, editor = "Z. Drezner" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1995 +, update = "96.05 agarwal" } @article{d-mmsas-88 -, author = "Z. Drezner" -, title = "Maximizing the minimum sight angle of a set of shapes" -, journal = "IIE Trans." -, volume = 20 -, number = 2 -, year = 1988 -, pages = "194--200" -, keywords = "optimization" -, update = "95.09 korneenko" +, author = "Z. Drezner" +, title = "Maximizing the minimum sight angle of a set of shapes" +, journal = "IIE Trans." +, volume = 20 +, number = 2 +, year = 1988 +, pages = "194--200" +, keywords = "optimization" +, update = "95.09 korneenko" } @article{d-m1cp-81 -, author = "Z. Drezner" -, title = "On a modified $1$-center problem" -, journal = "Manage. Sci." -, volume = 27 -, year = 1981 -, pages = "838--851" +, author = "Z. Drezner" +, title = "On a modified $1$-center problem" +, journal = "Manage. Sci." +, volume = 27 +, year = 1981 +, pages = "838--851" } @article{d-rpcp-87 -, author = "Z. Drezner" -, title = "On the rectangular $p$-center problem" -, journal = "Naval Res. Logist. Q." -, volume = 34 -, year = 1987 -, pages = "229--234" -, keywords = "facility location, $l_1$-metric" -, update = "95.09 korneenko" +, author = "Z. Drezner" +, title = "On the rectangular $p$-center problem" +, journal = "Naval Res. Logist. Q." +, volume = 34 +, year = 1987 +, pages = "229--234" +, keywords = "facility location, $l_1$-metric" +, update = "95.09 korneenko" } @article{d-pcp-86 -, author = "Z. Drezner" -, title = "The $p$-center problem" -, journal = "European J. Oper. Res." -, volume = 26 -, number = 2 -, year = 1986 -, pages = "312--313" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "Z. Drezner" +, title = "The $p$-center problem" +, journal = "European J. Oper. Res." +, volume = 26 +, number = 2 +, year = 1986 +, pages = "312--313" +, keywords = "facility location" +, update = "95.09 korneenko" } @article{d-pcpho-84 -, author = "Z. Drezner" -, title = "The $p$-centre problems --- {Heuristic} and optimal algorithms" -, journal = "J. Oper. Res. Soc." -, volume = 35 -, year = 1984 -, pages = "741--748" -, keywords = "facility location" -, update = "96.05 agarwal" +, author = "Z. Drezner" +, title = "The $p$-centre problems --- {Heuristic} and optimal algorithms" +, journal = "J. Oper. Res. Soc." +, volume = 35 +, year = 1984 +, pages = "741--748" +, keywords = "facility location" +, update = "96.05 agarwal" } @article{d-ptctm-84 -, author = "Z. Drezner" -, title = "The planar two-center and two-median problem" -, journal = "Transp. Sci." -, volume = 18 -, year = 1984 -, pages = "351--361" -, keywords = "facility location" -, update = "96.05 agarwal" +, author = "Z. Drezner" +, title = "The planar two-center and two-median problem" +, journal = "Transp. Sci." +, volume = 18 +, year = 1984 +, pages = "351--361" +, keywords = "facility location" +, update = "96.05 agarwal" } @article{dmw-flpld-91 -, author = "Z. Drezner and A. Mehrez and G. O. Wesolowsky" -, title = "The facility location problems with limited distances" -, journal = "Transp. Sci." -, volume = 25 -, year = 1992 -, pages = "183--187" -, keywords = "facility location" -, update = "96.05 agarwal" +, author = "Z. Drezner and A. Mehrez and G. O. Wesolowsky" +, title = "The facility location problems with limited distances" +, journal = "Transp. Sci." +, volume = 25 +, year = 1992 +, pages = "183--187" +, keywords = "facility location" +, update = "96.05 agarwal" } @article{ds-ceha1-87 -, author = "Z. Drezner and S. Shelah" -, title = "On the complexity of the {Elzinga-Hearn} algorithm for the $1$-center problem" -, journal = "Math. Oper. Res." -, volume = 12 -, number = 2 -, year = 1987 -, pages = "255--261" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "Z. Drezner and S. Shelah" +, title = "On the complexity of the {Elzinga-Hearn} algorithm for the $1$-center problem" +, journal = "Math. Oper. Res." +, volume = 12 +, number = 2 +, year = 1987 +, pages = "255--261" +, keywords = "facility location" +, update = "95.09 korneenko" } @article{dw-lor-89 -, author = "Z. Drezner and G. O. Wesolowski" -, title = "Location of an obnoxious route" -, journal = "J. Oper. Res. Society" -, volume = 40 -, number = 11 -, year = 1989 -, pages = "1011--1018" -, keywords = "facility location, points, convex polygon" -, update = "95.09 korneenko" +, author = "Z. Drezner and G. O. Wesolowski" +, title = "Location of an obnoxious route" +, journal = "J. Oper. Res. Society" +, volume = 40 +, number = 11 +, year = 1989 +, pages = "1011--1018" +, keywords = "facility location, points, convex polygon" +, update = "95.09 korneenko" } @article{dw-lmof-?? -, author = "Z. Drezner and G. O. Wesolowsky" -, title = "Location of multiple obnoxious facilities" -, year = "??" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "Z. Drezner and G. O. Wesolowsky" +, title = "Location of multiple obnoxious facilities" +, year = "??" +, keywords = "facility location" +, update = "95.09 korneenko" } @article{dw-mmflp-83 -, author = "Z. Drezner and G. O. Wesolowsky" -, title = "Minmax and maxmin facility location problems on a sphere" -, journal = "Naval Res. Logist. Q." -, volume = 30 -, year = 1983 -, pages = "305--312" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "Z. Drezner and G. O. Wesolowsky" +, title = "Minmax and maxmin facility location problems on a sphere" +, journal = "Naval Res. Logist. Q." +, volume = 30 +, year = 1983 +, pages = "305--312" +, keywords = "facility location" +, update = "95.09 korneenko" } @article{dgrt-rhafh-88 -, author = "J. R. Driscoll and H. N. Gabow and R. Shrairaman and R. E. Tarjan" -, title = "Relaxed heaps: {An} alternative to {Fibonacci} heaps with applications to parallel computation." -, journal = "Commun. ACM" -, volume = 31 -, year = 1988 -, pages = "1343--1354" -, keywords = "shortest paths, Dijkstra, priority queue" -, update = "96.05 mitchell" +, author = "J. R. Driscoll and H. N. Gabow and R. Shrairaman and R. E. Tarjan" +, title = "Relaxed heaps: {An} alternative to {Fibonacci} heaps with applications to parallel computation." +, journal = "Commun. ACM" +, volume = 31 +, year = 1988 +, pages = "1343--1354" +, keywords = "shortest paths, Dijkstra, priority queue" +, update = "96.05 mitchell" } @article{dsst-mdsp-89 -, author = "J. R. Driscoll and N. Sarnak and D. D. Sleator and R. E. Tarjan" -, title = "Making data structures persistent" -, journal = "J. Comput. Syst. Sci." -, volume = 38 -, year = 1989 -, pages = "86--124" +, author = "J. R. Driscoll and N. Sarnak and D. D. Sleator and R. E. Tarjan" +, title = "Making data structures persistent" +, journal = "J. Comput. Syst. Sci." +, volume = 38 +, year = 1989 +, pages = "86--124" } @inproceedings{dsst-mdsp-86 -, author = "J. R. Driscoll and N. Sarnak and S. Sleator and R. E. Tarjan" -, title = "Making Data Structures Persistent" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "109--121" -, update = "98.03 bibrelex" +, author = "J. R. Driscoll and N. Sarnak and S. Sleator and R. E. Tarjan" +, title = "Making Data Structures Persistent" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "109--121" +, update = "98.03 bibrelex" } @inproceedings{dms-idpmw-98 -, author = "R. L. Drysdale and Scott McElfresh and Jack Scott Snoeyink" -, title = "An Improved Diamond Property for Minimum-Weight Triangulations" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "65--67" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "R. L. Drysdale and Scott McElfresh and Jack Scott Snoeyink" +, title = "An Improved Diamond Property for Minimum-Weight Triangulations" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "65--67" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{dq-ivw5a-94 -, author = "R. L. Drysdale and J. Quinn" -, title = "Intersecting Vectors with 5-Axis Machine Toll Movements" -, booktitle = "Proc. 1995 NSF Design and Manufacturing Grantees Conference" -, year = 1994 -, pages = "201--202" -, update = "97.03 gaertner+salinger" +, author = "R. L. Drysdale and J. Quinn" +, title = "Intersecting Vectors with 5-Axis Machine Toll Movements" +, booktitle = "Proc. 1995 NSF Design and Manufacturing Grantees Conference" +, year = 1994 +, pages = "201--202" +, update = "97.03 gaertner+salinger" } @inproceedings{d-pacdt-90 -, author = "R. L. {Drysdale, III}" -, title = "A practical algorithm for computing the {Delaunay} triangulation for convex distance functions" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "159--168" -, keywords = "Delaunay triangulation, $L_{1}$ metric, $L_{p}$ metric, $L_{\infty}$ metric, divide-and-conquer, points" -, update = "93.09 drysdale" +, author = "R. L. {Drysdale, III}" +, title = "A practical algorithm for computing the {Delaunay} triangulation for convex distance functions" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "159--168" +, keywords = "Delaunay triangulation, $L_{1}$ metric, $L_{p}$ metric, $L_{\infty}$ metric, divide-and-conquer, points" +, update = "93.09 drysdale" } @phdthesis{d-gvdgs-79 -, author = "R. L. {Drysdale, III}" -, title = "Generalized {Voronoi} Diagrams and Geometric Searching" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, year = 1979 -, note = "Report STAN-CS-79-705" -, keywords = "two-dimensional, doctoral thesis, Voronoi diagrams, line segments" -, update = "93.05 jones" +, author = "R. L. {Drysdale, III}" +, title = "Generalized {Voronoi} Diagrams and Geometric Searching" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, year = 1979 +, note = "Report STAN-CS-79-705" +, keywords = "two-dimensional, doctoral thesis, Voronoi diagrams, line segments" +, update = "93.05 jones" } @article{dj-nlbma-89 -, author = "R. L. {Drysdale, III} and J. W. Jaromczyk" -, title = "A note on lower bounds for the maximum area and maximum perimeter $k$-gon problems" -, journal = "Inform. Process. Lett." -, volume = 32 -, year = 1989 -, pages = "301--303" -, keywords = "lower bounds, polygons" -, update = "93.09 drysdale" +, author = "R. L. {Drysdale, III} and J. W. Jaromczyk" +, title = "A note on lower bounds for the maximum area and maximum perimeter $k$-gon problems" +, journal = "Inform. Process. Lett." +, volume = 32 +, year = 1989 +, pages = "301--303" +, keywords = "lower bounds, polygons" +, update = "93.09 drysdale" } @inproceedings{dj-dsnm-87 -, author = "R. L. {Drysdale, III} and R. B. Jerard" -, title = "Discrete simulation of {NC} machining" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "126--135" -, keywords = "CAD, approximation, simulation" -, precedes = "djsh-dsnm-89" -, cites = "a-sagni-82, acp-ncggm-84, b-ncma-72, c-scads-67, c-gqtm-89, fp-cgdm-79, fd-ficg-82, gr-bscs-74, gz-cccad-84, g-orncm-86, hv-esavp-82, kms-spafa-85, jdh-ucgtd-87, jhd-sncms-86, m-snct-73, og-cgvnc-85, rv-smhsc-82, ra-mecg-76, sjw-cadcs-82, t-rtps-86, vh-rsmmp-81, zb-cstsm-86, ZZZ" -, update = "98.03 bibrelex" +, author = "R. L. {Drysdale, III} and R. B. Jerard" +, title = "Discrete simulation of {NC} machining" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "126--135" +, keywords = "CAD, approximation, simulation" +, precedes = "djsh-dsnm-89" +, cites = "a-sagni-82, acp-ncggm-84, b-ncma-72, c-scads-67, c-gqtm-89, fp-cgdm-79, fd-ficg-82, gr-bscs-74, gz-cccad-84, g-orncm-86, hv-esavp-82, kms-spafa-85, jdh-ucgtd-87, jhd-sncms-86, m-snct-73, og-cgvnc-85, rv-smhsc-82, ra-mecg-76, sjw-cadcs-82, t-rtps-86, vh-rsmmp-81, zb-cstsm-86, ZZZ" +, update = "98.03 bibrelex" } @article{djsh-dsnm-89 -, author = "R. L. {Drysdale, III} and R. B. Jerard and B. Schaudt and K. Hauck" -, title = "Discrete simulation of {NC} machining" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "33--60" -, keywords = "CAD, approximation, simulation" -, succeeds = "dj-dsnm-87" -, update = "93.09 drysdale" +, author = "R. L. {Drysdale, III} and R. B. Jerard and B. Schaudt and K. Hauck" +, title = "Discrete simulation of {NC} machining" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "33--60" +, keywords = "CAD, approximation, simulation" +, succeeds = "dj-dsnm-87" +, update = "93.09 drysdale" } @inproceedings{dl-gvdp-78 -, author = "R. L. {Drysdale, III} and D. T. Lee" -, title = "Generalized {Voronoi} diagrams in the plane" -, booktitle = "Proc. 16th Allerton Conf. Commun. Control Comput." -, year = 1978 -, pages = "833--842" -, precedes = "ld-gvdp-81" -, update = "93.09 drysdale" +, author = "R. L. {Drysdale, III} and D. T. Lee" +, title = "Generalized {Voronoi} diagrams in the plane" +, booktitle = "Proc. 16th Allerton Conf. Commun. Control Comput." +, year = 1978 +, pages = "833--842" +, precedes = "ld-gvdp-81" +, update = "93.09 drysdale" } @techreport{dra-sltgt-95 -, author = "Robert L. Scot Drysdale and G{\"u}nter Rote and Oswin Aichholzer" -, title = "A simple linear time greedy triangulation algorithm for uniformly distributed points" -, number = "IIG-408" -, institution = "Institutes for Information Processing, Technische Universit{\"a}t Graz" -, month = feb -, year = 1995 -, url = "http://www.tu-graz.ac.at/Rote" -, update = "98.07 bibrelex, 97.03 rote" -, abstract = "We present a simple, practical algorithm that computes the - greedy triangulation of a set of n points in the plane in - expected time O(n) and space O(n), for n points drawn - independently from a uniform distribution over some fixed - convex shape." +, author = "Robert L. Scot Drysdale and G{\"u}nter Rote and Oswin Aichholzer" +, title = "A simple linear time greedy triangulation algorithm for uniformly distributed points" +, number = "IIG-408" +, institution = "Institutes for Information Processing, Technische Universit{\"a}t Graz" +, month = feb +, year = 1995 +, url = "http://www.tu-graz.ac.at/Rote" +, update = "98.07 bibrelex, 97.03 rote" +, abstract = "We present a simple, practical algorithm that computes the + greedy triangulation of a set of n points in the plane in + expected time O(n) and space O(n), for n points drawn + independently from a uniform distribution over some fixed + convex shape." } @inproceedings{d-scpps-92 -, author = "S. Drysdale" -, title = "Solving closest-point problems by searching the {Delaunay} diagram" -, booktitle = "Proc. 2nd MSI Workshop Comput. Geom." -, year = 1992 -, update = "98.03 bibrelex" +, author = "S. Drysdale" +, title = "Solving closest-point problems by searching the {Delaunay} diagram" +, booktitle = "Proc. 2nd MSI Workshop Comput. Geom." +, year = 1992 +, update = "98.03 bibrelex" } @article{dz-hmlrp-90 -, author = "D. Du and Y. Zhang" -, title = "On heuristics for minimum length rectilinear partitions" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "111--128" +, author = "D. Du and Y. Zhang" +, title = "On heuristics for minimum length rectilinear partitions" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "111--128" } @article{d-src-91 -, author = "D.-Z. Du" -, title = "On {Steiner} ratio conjectures" -, journal = "Ann. Oper. Res." -, volume = 33 -, number = "1--4" -, year = 1991 -, pages = "437--449" -, keywords = "Steiner tree" -, update = "95.09 korneenko" +, author = "D.-Z. Du" +, title = "On {Steiner} ratio conjectures" +, journal = "Ann. Oper. Res." +, volume = 33 +, number = "1--4" +, year = 1991 +, pages = "437--449" +, keywords = "Steiner tree" +, update = "95.09 korneenko" } @techreport{dc-11hme-85 -, author = "D.-Z. Du and Y.-M. Chen" -, title = "An ``$11$''-heuristic for minimum edge length rectangular partitions of rectilinear figures" -, type = "Report" -, number = "??" -, institution = "Math. Sci. Res. Inst., Univ. California" -, address = "Berkeley, CA" -, year = 1985 -, precedes = "dc-fhmel-86" -, update = "98.07 bibrelex" +, author = "D.-Z. Du and Y.-M. Chen" +, title = "An ``$11$''-heuristic for minimum edge length rectangular partitions of rectilinear figures" +, type = "Report" +, number = "??" +, institution = "Math. Sci. Res. Inst., Univ. California" +, address = "Berkeley, CA" +, year = 1985 +, precedes = "dc-fhmel-86" +, update = "98.07 bibrelex" } @techreport{dc-fhmel-86 -, author = "D.-Z. Du and Y.-M. Chen" -, title = "On Fast Heuristics for Minimum Edge Length Rectangular Partition" -, type = "Technical {Report}" -, number = "MSRI-03618-86" -, institution = "Math. Sci. Res. Inst., Univ. California" -, address = "Berkeley, CA" -, month = feb -, year = 1986 -, succeeds = "dc-11hme-85" -, precedes = "" -, update = "98.07 bibrelex" +, author = "D.-Z. Du and Y.-M. Chen" +, title = "On Fast Heuristics for Minimum Edge Length Rectangular Partition" +, type = "Technical {Report}" +, number = "MSRI-03618-86" +, institution = "Math. Sci. Res. Inst., Univ. California" +, address = "Berkeley, CA" +, month = feb +, year = 1986 +, succeeds = "dc-11hme-85" +, precedes = "" +, update = "98.07 bibrelex" } @article{dgglw-mstnp- -, author = "D. Z. Du and B. Gao and R. L. Graham and Z.-C. Liu and P.-J. Wan" -, title = "Minimum {Steiner} trees in normed planes" -, journal = "Discrete Comput. Geom." -, volume = "??" -, year = "??" -, note = "To appear" -, update = "98.03 bibrelex" +, author = "D. Z. Du and B. Gao and R. L. Graham and Z.-C. Liu and P.-J. Wan" +, title = "Minimum {Steiner} trees in normed planes" +, journal = "Discrete Comput. Geom." +, volume = "??" +, year = "??" +, note = "To appear" +, update = "98.03 bibrelex" } @incollection{dh-sasrp-95 -, author = "Ding-Zhu Du and Frank Hwang" -, title = "The State of Art on {Steiner} Ratio Problems" -, editor = "Ding-Zhu Du and Frank Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "195--224" -, keywords = "survey paper" -, succeeds = "dh-sasrp-92" -, update = "98.07 icking" +, author = "Ding-Zhu Du and Frank Hwang" +, title = "The State of Art on {Steiner} Ratio Problems" +, editor = "Ding-Zhu Du and Frank Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "195--224" +, keywords = "survey paper" +, succeeds = "dh-sasrp-92" +, update = "98.07 icking" } % does it end on 135 or 136 ?? check page numbers @article{dh-pgpcs-92 -, author = "D.-Z. Du and F. K. Hwang" -, title = "A proof of {Gilbert}-{Pollak}'s conjecture on the {Steiner} ratio" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "121--135" -, keywords = "Steiner tree, minimal spanning tree" -, update = "98.03 mitchell, 97.07 smid" +, author = "D.-Z. Du and F. K. Hwang" +, title = "A proof of {Gilbert}-{Pollak}'s conjecture on the {Steiner} ratio" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "121--135" +, keywords = "Steiner tree, minimal spanning tree" +, update = "98.03 mitchell, 97.07 smid" } @inproceedings{dh-aplbs-90 -, author = "D.-Z. Du and F. K. Hwang" -, title = "An approach for proving lower bounds: solution of {Gilbert}-{Pollak} conjecture on {Steiner} ratio" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "76--85" -, keywords = "Steiner trees" +, author = "D.-Z. Du and F. K. Hwang" +, title = "An approach for proving lower bounds: solution of {Gilbert}-{Pollak} conjecture on {Steiner} ratio" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "76--85" +, keywords = "Steiner trees" } @book{dh-ceg-92 -, title = "Computing in {Euclidean} Geometry" -, editor = "Ding-Zhu Du and Frank K. Hwang" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, edition = "1st" -, publisher = "World Scientific" -, year = 1992 -, comments = "8 chapters, survey articles" -, precedes = "dh-ceg-95" -, update = "98.07 icking" +, title = "Computing in {Euclidean} Geometry" +, editor = "Ding-Zhu Du and Frank K. Hwang" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, edition = "1st" +, publisher = "World Scientific" +, year = 1992 +, comments = "8 chapters, survey articles" +, precedes = "dh-ceg-95" +, update = "98.07 icking" } @book{dh-ceg-95 -, title = "Computing in {Euclidean} Geometry" -, editor = "Ding-Zhu Du and Frank K. Hwang" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, year = 1995 -, comments = "11 chapters, xiii + 492 pages, survey articles, - contains h-dqgpg-95, c-cgr-95, be-mgot-95, cr-mpgt-95, c-rga-95, dh-sasrp-95, f-vddt-95, hv-gcsr2-95, s-pftbs-95, sw-cgtnd-95, and yd-ecp-95" -, succeeds = "dh-ceg-92" -, update = "98.07 icking, 97.11 bibrelex, 96.05 pocchiola" +, title = "Computing in {Euclidean} Geometry" +, editor = "Ding-Zhu Du and Frank K. Hwang" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, year = 1995 +, comments = "11 chapters, xiii + 492 pages, survey articles, + contains h-dqgpg-95, c-cgr-95, be-mgot-95, cr-mpgt-95, c-rga-95, dh-sasrp-95, f-vddt-95, hv-gcsr2-95, s-pftbs-95, sw-cgtnd-95, and yd-ecp-95" +, succeeds = "dh-ceg-92" +, update = "98.07 icking, 97.11 bibrelex, 96.05 pocchiola" } @article{dh-rspns-92 -, author = "D. Z. Du and F. K. Hwang" -, title = "Reducing the {Steiner} problem in a normed space" -, journal = "SIAM J. Comput." -, volume = 21 -, year = 1992 -, pages = "1001--1007" -, update = "98.03 bibrelex" +, author = "D. Z. Du and F. K. Hwang" +, title = "Reducing the {Steiner} problem in a normed space" +, journal = "SIAM J. Comput." +, volume = 21 +, year = 1992 +, pages = "1001--1007" +, update = "98.03 bibrelex" } @article{dh-smtbw-87 -, author = "D.-Z. Du and F. K. Hwang" -, title = "Steiner minimal trees for bar waves" -, journal = "Acta Math. Appl. Sinica" -, volume = "ser.3" -, year = 1987 -, pages = "246--256" -, keywords = "Steiner tree" -, update = "95.09 korneenko" +, author = "D.-Z. Du and F. K. Hwang" +, title = "Steiner minimal trees for bar waves" +, journal = "Acta Math. Appl. Sinica" +, volume = "ser.3" +, year = 1987 +, pages = "246--256" +, keywords = "Steiner tree" +, update = "95.09 korneenko" } @incollection{dh-sasrp-92 -, author = "D.-Z. Du and F. K. Hwang" -, title = "The state of art on {Steiner} ratio problems" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, publisher = "World Scientific" -, address = "Singapore" -, year = 1992 -, pages = "163--191" -, keywords = "survey paper, Steiner ratio proof" -, precedes = "dh-sasrp-95" -, update = "98.07 icking, 93.09 erickson" +, author = "D.-Z. Du and F. K. Hwang" +, title = "The state of art on {Steiner} ratio problems" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, publisher = "World Scientific" +, address = "Singapore" +, year = 1992 +, pages = "163--191" +, keywords = "survey paper, Steiner ratio proof" +, precedes = "dh-sasrp-95" +, update = "98.07 icking, 93.09 erickson" } @article{dh-srcgp-90 -, author = "D. Z. Du and F. K. Hwang" -, title = "The {Steiner} ratio conjecture of {Gilbert} and {Pollak} is true" -, journal = "Proc. Nat. Acad. Sci. USA" -, volume = 87 -, number = 23 -, year = 1990 -, pages = "9464--9466" -, keywords = "Steiner tree, minimal spanning tree" -, update = "95.09 korneenko" +, author = "D. Z. Du and F. K. Hwang" +, title = "The {Steiner} ratio conjecture of {Gilbert} and {Pollak} is true" +, journal = "Proc. Nat. Acad. Sci. USA" +, volume = 87 +, number = 23 +, year = 1990 +, pages = "9464--9466" +, keywords = "Steiner tree, minimal spanning tree" +, update = "95.09 korneenko" } @article{dhst-smtsf-87 -, author = "D. Z. Du and F. K. Hwang and G. D. Song and G. Y. Ting" -, title = "Steiner minimal trees on sets of four points" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "401--414" +, author = "D. Z. Du and F. K. Hwang and G. D. Song and G. Y. Ting" +, title = "Steiner minimal trees on sets of four points" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "401--414" } @article{dhw-smtrp-87 -, author = "D. Z. Du and F. K. Hwang and J. F. Weng" -, title = "Steiner minimal trees for regular polygons" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "65--84" +, author = "D. Z. Du and F. K. Hwang and J. F. Weng" +, title = "Steiner minimal trees for regular polygons" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "65--84" } @article{dhw-smtzz-83 -, author = "D.-Z. Du and F. K. Hwang and J. F. Weng" -, title = "Steiner minimal trees on zig-zag line" -, journal = "Trans. Amer. Math. Soc." -, volume = 228 -, year = 1983 -, pages = "149--156" -, keywords = "Steiner tree" -, update = "95.09 korneenko" +, author = "D.-Z. Du and F. K. Hwang and J. F. Weng" +, title = "Steiner minimal trees on zig-zag line" +, journal = "Trans. Amer. Math. Soc." +, volume = 228 +, year = 1983 +, pages = "149--156" +, keywords = "Steiner tree" +, update = "95.09 korneenko" } @article{dhwc-smtpc-85 -, author = "D.-Z. Du and F. K. Hwang and J. F. Weng and S. C. Chao" -, title = "Steiner minimal trees for points on a circle" -, journal = "Proc. Amer. Math. Soc." -, volume = 95 -, year = 1985 -, pages = "613--618" -, keywords = "Steiner tree" -, update = "95.09 korneenko" +, author = "D.-Z. Du and F. K. Hwang and J. F. Weng and S. C. Chao" +, title = "Steiner minimal trees for points on a circle" +, journal = "Proc. Amer. Math. Soc." +, volume = 95 +, year = 1985 +, pages = "613--618" +, keywords = "Steiner tree" +, update = "95.09 korneenko" } @article{dk-drmm-90 -, author = "D. Z. Du and D. J. Kleitman" -, title = "Diameter and radius in the {Manhattan} metric" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "351--356" +, author = "D. Z. Du and D. J. Kleitman" +, title = "Diameter and radius in the {Manhattan} metric" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "351--356" } @techreport{dps-melgr-86 -, author = "D.-Z. Du and L.-Q. Pan and M.-T. Shing" -, title = "Minimum edge length guillotine rectangular partition" -, type = "Report" -, number = "02418-86" -, institution = "Math. Sci. Res. Inst., Univ. California" -, address = "Berkeley, CA" -, year = 1986 -, update = "95.01 mitchell" +, author = "D.-Z. Du and L.-Q. Pan and M.-T. Shing" +, title = "Minimum edge length guillotine rectangular partition" +, type = "Report" +, number = "02418-86" +, institution = "Math. Sci. Res. Inst., Univ. California" +, address = "Berkeley, CA" +, year = 1986 +, update = "95.01 mitchell" } @inproceedings{dzf-bhesm-91 -, author = "D.-Z. Du and Y. Zhang and Q. Feng" -, title = "On better heuristic for {Euclidean} {Steiner} minimum trees" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "431--439" +, author = "D.-Z. Du and Y. Zhang and Q. Feng" +, title = "On better heuristic for {Euclidean} {Steiner} minimum trees" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "431--439" } @techreport{d-smbgb-87 -, author = "T. Dub{\'e}" -, title = "A survey of methods for bounding {Gr{\"o}bner} bases" -, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, month = feb -, year = 1987 -, update = "98.03 bibrelex" +, author = "T. Dub{\'e}" +, title = "A survey of methods for bounding {Gr{\"o}bner} bases" +, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, month = feb +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{d-drqor-93 -, author = "T. Dub{\'e}" -, title = "Dominance range-query: the one-reporting case" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "208--217" -, cites = "b-mbstu-75, b-mdc-80, bm-ewcds-80, b-gbamp-85, b-hbfcp-87, bfk-ictor-81, c-fsnaq-83, c-lbors1-90, c-lbors2-90, fb-qtdsr-74, f-lbcor-81, lw-wcarp-77, lw-dsdrq-82, m-mdscg-84, o-ddds-83, ps-cgi-85, w-ndsor-85, wl-arrcd-85, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "T. Dub{\'e}" +, title = "Dominance range-query: the one-reporting case" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "208--217" +, cites = "b-mbstu-75, b-mdc-80, bm-ewcds-80, b-gbamp-85, b-hbfcp-87, bfk-ictor-81, c-fsnaq-83, c-lbors1-90, c-lbors2-90, fb-qtdsr-74, f-lbcor-81, lw-wcarp-77, lw-dsdrq-82, m-mdscg-84, o-ddds-83, ps-cgi-85, w-ndsor-85, wl-arrcd-85, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @techreport{dmy-aobgn-86 -, author = "T. Dub{\'e} and B. Mishra and C. K. Yap" -, title = "Admissible orderings and bounds on {Gr{\"o}bner} normal form algorithm" -, type = "Technical {Report}" -, number = 258 -, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, month = dec -, year = 1986 -, note = "Robotics Report 88" -, update = "98.03 bibrelex" +, author = "T. Dub{\'e} and B. Mishra and C. K. Yap" +, title = "Admissible orderings and bounds on {Gr{\"o}bner} normal form algorithm" +, type = "Technical {Report}" +, number = 258 +, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, month = dec +, year = 1986 +, note = "Robotics Report 88" +, update = "98.03 bibrelex" } @unpublished{dy-biecg-93 -, author = "Thomas Dub{\'e} and Chee Yap" -, title = "A basis for implementing exact computational geometry" -, month = aug -, year = 1993 -, note = "to appear" -, update = "98.11 bibrelex" +, author = "Thomas Dub{\'e} and Chee Yap" +, title = "A basis for implementing exact computational geometry" +, month = aug +, year = 1993 +, note = "to appear" +, update = "98.11 bibrelex" } @incollection{dj-cmeda-80 -, author = "Dubes and Jain" -, title = "Clustering methodologies in exploratory data analysis" -, editor = "M. C. Yovites" -, booktitle = "Asvances in Computers" -, volume = 19 -, publisher = "??" -, year = 1980 -, update = "97.11 bibrelex" +, author = "Dubes and Jain" +, title = "Clustering methodologies in exploratory data analysis" +, editor = "M. C. Yovites" +, booktitle = "Asvances in Computers" +, volume = 19 +, publisher = "??" +, year = 1980 +, update = "97.11 bibrelex" } @article{d-cmlca-57 -, author = "L. E. Dubins" -, title = "On curves of minimal length with a constraint on average curvature and with prescribed initial and terminal positions and tangents" -, journal = "Amer. J. Math." -, volume = 79 -, year = 1957 -, pages = "497--516" +, author = "L. E. Dubins" +, title = "On curves of minimal length with a constraint on average curvature and with prescribed initial and terminal positions and tangents" +, journal = "Amer. J. Math." +, volume = 79 +, year = 1957 +, pages = "497--516" } @article{d-oafmo-88 -, author = "P. Dublish" -, title = "An $O(n^3)$ algorithm for finding the minimal opaque forest of a convex polygon" -, journal = "Inform. Process. Lett." -, volume = 29 -, year = 1988 -, pages = "275--276" -, keywords = "polygons, visibility" -, update = "95.09 korneenko" +, author = "P. Dublish" +, title = "An $O(n^3)$ algorithm for finding the minimal opaque forest of a convex polygon" +, journal = "Inform. Process. Lett." +, volume = 29 +, year = 1988 +, pages = "275--276" +, keywords = "polygons, visibility" +, update = "95.09 korneenko" } @incollection{d-upoml-85 -, author = "V. A. Dubovitskij" -, title = "The {Ulam} Problem of Optimal Motion of Line Segments" -, booktitle = "Optimization Software" -, publisher = "??" -, address = "New York, NY" -, year = 1985 -, update = "98.03 bibrelex" +, author = "V. A. Dubovitskij" +, title = "The {Ulam} Problem of Optimal Motion of Line Segments" +, booktitle = "Optimization Software" +, publisher = "??" +, address = "New York, NY" +, year = 1985 +, update = "98.03 bibrelex" } @book{dnf-mg-79 -, author = "B. Dubrovin and S. Novikov and A. Fomenko" -, title = "Modern Geometry" -, publisher = "??" -, address = "Moscow" -, year = 1979 -, update = "98.07 bibrelex" +, author = "B. Dubrovin and S. Novikov and A. Fomenko" +, title = "Modern Geometry" +, publisher = "??" +, address = "Moscow" +, year = 1979 +, update = "98.07 bibrelex" } @book{dfn-mgma-84 -, author = "B. A. Dubrovin and A. T. Fomenko and S. P. Novikov" -, title = "Modern Geometry - {Methods} and Applications" -, publisher = "Springer-Verlag" -, year = 1984 -, update = "98.03 bibrelex" +, author = "B. A. Dubrovin and A. T. Fomenko and S. P. Novikov" +, title = "Modern Geometry - {Methods} and Applications" +, publisher = "Springer-Verlag" +, year = 1984 +, update = "98.03 bibrelex" } @inproceedings{dms-pcmsd-97 -, author = "D. Dubrule and P. Morin and J.-R. Sack" -, title = "A Parallel Cartographic Modelling System: design, implementation and performance" -, booktitle = "Proc. GIS'97" -, site = "Vancouver" -, year = 1997 -, pages = "16--20" -, update = "97.11 sack" +, author = "D. Dubrule and P. Morin and J.-R. Sack" +, title = "A Parallel Cartographic Modelling System: design, implementation and performance" +, booktitle = "Proc. GIS'97" +, site = "Vancouver" +, year = 1997 +, pages = "16--20" +, update = "97.11 sack" } @article{dmr-cmc-92 -, author = "Carolyn K. Duby and Scott Meyers and Steven P. Reiss" -, title = "{CCEL}: a metalanguage for {C}++" -, journal = "Proc. Second Usenix C++ Conference" -, volume = "??" -, month = aug -, year = 1992 -, update = "97.03 tamassia" +, author = "Carolyn K. Duby and Scott Meyers and Steven P. Reiss" +, title = "{CCEL}: a metalanguage for {C}++" +, journal = "Proc. Second Usenix C++ Conference" +, volume = "??" +, month = aug +, year = 1992 +, update = "97.03 tamassia" } @article{dhvm-rpgvl-83 -, author = "P. Duchet and Y. Hamidoune and M. Las Vergnas and H. Meyniel" -, title = "Representing a Planar Graph by Vertical Lines Joining Different Levels" -, journal = "Discrete Math." -, volume = 46 -, year = 1983 -, pages = "319--321" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Duchet and Y. Hamidoune and M. Las Vergnas and H. Meyniel" +, title = "Representing a Planar Graph by Vertical Lines Joining Different Levels" +, journal = "Discrete Math." +, volume = 46 +, year = 1983 +, pages = "319--321" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @Article{d-osa-00, @@ -49483,1144 +49483,1144 @@ @Article{d-osa-00 } @book{dh-pcsa-73 -, author = "R. O. Duda and P. E. Hart" -, title = "Pattern Classification and Scene Analysis" -, publisher = "Wiley-Interscience" -, address = "New York" -, year = 1973 -, update = "97.07 agarwal" +, author = "R. O. Duda and P. E. Hart" +, title = "Pattern Classification and Scene Analysis" +, publisher = "Wiley-Interscience" +, address = "New York" +, year = 1973 +, update = "97.07 agarwal" } @article{dh-uhtdl-72 -, author = "R. O. Duda and P. E. Hart" -, title = "Use of the {Hough} transform to detect lines and curves in pictures" -, journal = "Commun. ACM" -, volume = 15 -, month = jan -, year = 1972 -, pages = "11--15" -, update = "96.09 orourke" +, author = "R. O. Duda and P. E. Hart" +, title = "Use of the {Hough} transform to detect lines and curves in pictures" +, journal = "Commun. ACM" +, volume = 15 +, month = jan +, year = 1972 +, pages = "11--15" +, update = "96.09 orourke" } @inproceedings{drw-lrmt-95 -, author = "Gregory Dudek and Kathleen Romanik and Sue Whitesides" -, title = "Localizing a Robot with Minimum Travel" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "437--446" -, keywords = "visibility polygons, localization, on-line" -, precedes = "drw-lrmt-98" -, update = "98.07 mitchell, 96.09 agarwal+romanik, 96.05 mitchell" +, author = "Gregory Dudek and Kathleen Romanik and Sue Whitesides" +, title = "Localizing a Robot with Minimum Travel" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "437--446" +, keywords = "visibility polygons, localization, on-line" +, precedes = "drw-lrmt-98" +, update = "98.07 mitchell, 96.09 agarwal+romanik, 96.05 mitchell" } @article{drw-lrmt-98 -, author = "Gregory Dudek and Kathleen Romanik and Sue Whitesides" -, title = "Localizing a Robot with Minimum Travel" -, journal = "SIAM J. Comput." -, volume = 27 -, number = 2 -, month = apr -, year = 1998 -, pages = "583--604" -, keywords = "visibility polygons, localization, on-line" -, succeeds = "drw-lrmt-95" -, update = "98.07 mitchell" +, author = "Gregory Dudek and Kathleen Romanik and Sue Whitesides" +, title = "Localizing a Robot with Minimum Travel" +, journal = "SIAM J. Comput." +, volume = 27 +, number = 2 +, month = apr +, year = 1998 +, pages = "583--604" +, keywords = "visibility polygons, localization, on-line" +, succeeds = "drw-lrmt-95" +, update = "98.07 mitchell" } @article{d-brdnc-79 -, author = "R. M. Dudley" -, title = "Balls in {$R^{k}$} do not cut all subsets of $k+2$ points" -, journal = "Adv. Math." -, volume = 31 -, year = 1979 -, pages = "306--308" -, update = "98.03 bibrelex" +, author = "R. M. Dudley" +, title = "Balls in {$R^{k}$} do not cut all subsets of $k+2$ points" +, journal = "Adv. Math." +, volume = 31 +, year = 1979 +, pages = "306--308" +, update = "98.03 bibrelex" } @article{d-cltem-78 -, author = "R. M. Dudley" -, title = "Central limit theorems for empirical measures" -, journal = "Ann. Probab." -, volume = "??" -, year = 1978 -, pages = "899--929" -, update = "97.11 bibrelex" +, author = "R. M. Dudley" +, title = "Central limit theorems for empirical measures" +, journal = "Ann. Probab." +, volume = "??" +, year = 1978 +, pages = "899--929" +, update = "97.11 bibrelex" } @article{d-mescs-74 -, author = "R. M. Dudley" -, title = "Metric entropy of some classes of sets with differentiable boundaries" -, journal = "J. Approx. Theory" -, volume = 10 -, year = 1974 -, pages = "227--236" -, update = "98.03 bibrelex" +, author = "R. M. Dudley" +, title = "Metric entropy of some classes of sets with differentiable boundaries" +, journal = "J. Approx. Theory" +, volume = 10 +, year = 1974 +, pages = "227--236" +, update = "98.03 bibrelex" } @article{d-lbfgw-91 -, author = "R. J. Duffin" -, title = "Lines of best fit by graphics and the {Wald} line" -, journal = "Amer. Math. Monthly" -, volume = 98 -, number = 9 -, year = 1991 -, pages = "835--840" -, keywords = "linear programming, fitting" -, update = "95.09 korneenko" +, author = "R. J. Duffin" +, title = "Lines of best fit by graphics and the {Wald} line" +, journal = "Amer. Math. Monthly" +, volume = 98 +, number = 9 +, year = 1991 +, pages = "835--840" +, keywords = "linear programming, fitting" +, update = "95.09 korneenko" } @article{d-ppsfe-00 -, author = "A. Dumitrescu" -, title = "Planar point sets with few empty convex polygons" -, journal = "Studia Sci. Math. Hungar" -, volume = 36 -, year = 2000 -, pages = "" -, update = "02.03 devillers" +, author = "A. Dumitrescu" +, title = "Planar point sets with few empty convex polygons" +, journal = "Studia Sci. Math. Hungar" +, volume = 36 +, year = 2000 +, pages = "" +, update = "02.03 devillers" } @article{dgpw-etp-01 -, author = "A. Dumitrescu and B. G{\"a}rtner and S. Pedroni and E. Welzl" -, title = "Enumerating triangulation paths" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "3--12" -, update = "01.11 smid" +, author = "A. Dumitrescu and B. G{\"a}rtner and S. Pedroni and E. Welzl" +, title = "Enumerating triangulation paths" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "3--12" +, update = "01.11 smid" } @article{dk-mcpps-01 -, author = "A. Dumitrescu and R. Kaye" -, title = "Matching colored points in the plane: {Some} new results" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "69--85" -, update = "01.07 smid" +, author = "A. Dumitrescu and R. Kaye" +, title = "Matching colored points in the plane: {Some} new results" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "69--85" +, update = "01.07 smid" } @inproceedings{dm-aatnp-01 -, author = "A. Dumitrescu and J. S. B. Mitchell" -, title = "Approximation algorithms for {TSP} with Neighborhoods in the plane" -, booktitle = "Proc. 12th Symp. on Discrete Algorithms" -, year = 2001 -, pages = "38--46" -, update = "02.03 cheong" +, author = "A. Dumitrescu and J. S. B. Mitchell" +, title = "Approximation algorithms for {TSP} with Neighborhoods in the plane" +, booktitle = "Proc. 12th Symp. on Discrete Algorithms" +, year = 2001 +, pages = "38--46" +, update = "02.03 cheong" } @article{do--93 -, author = "B. S. Duncan and A. J. Olson" -, title = "??" -, journal = "Biopolymers" -, volume = 33 -, year = 1993 -, pages = "219--229" -, update = "98.03 bibrelex" +, author = "B. S. Duncan and A. J. Olson" +, title = "??" +, journal = "Biopolymers" +, volume = 33 +, year = 1993 +, pages = "219--229" +, update = "98.03 bibrelex" } @phdthesis{d-bart-99 -, author = "C. A. Duncan" -, title = "Balanced Aspect Ratio Trees" -, type = "Ph.{D}. Thesis" -, school = "Department of Computer Science, Johns Hopkins University" -, address = "Baltimore, Maryland" -, year = 1999 -, keywords = "doctoral thesis" -, update = "01.11 smid" +, author = "C. A. Duncan" +, title = "Balanced Aspect Ratio Trees" +, type = "Ph.{D}. Thesis" +, school = "Department of Computer Science, Johns Hopkins University" +, address = "Baltimore, Maryland" +, year = 1999 +, keywords = "doctoral thesis" +, update = "01.11 smid" } @inproceedings{dgk-bartc-99 -, author = "C. A. Duncan and M. T. Goodrich and S. Kobourov" -, title = "Balanced aspect ratio trees: combining the advantages of k-d trees and octrees" -, booktitle = "Proc. 10th Annu. ACM-SIAM Sympos. Discrete Alg." -, nickname = "SODA'99" -, site = "Baltimore, Maryland" -, year = 1999 -, pages = "300--309" -, update = "00.11 smid" +, author = "C. A. Duncan and M. T. Goodrich and S. Kobourov" +, title = "Balanced aspect ratio trees: combining the advantages of k-d trees and octrees" +, booktitle = "Proc. 10th Annu. ACM-SIAM Sympos. Discrete Alg." +, nickname = "SODA'99" +, site = "Baltimore, Maryland" +, year = 1999 +, pages = "300--309" +, update = "00.11 smid" } @article{dgk-bartc-01 -, author = "C. A. Duncan and M. T. Goodrich and S. Kobourov" -, title = "Balanced aspect ratio trees: combining the advantages of k-d trees and octrees" -, journal = "J. Algorithms" -, volume = 38 -, year = 2001 -, pages = "303--333" -, update = "01.11 smid" +, author = "C. A. Duncan and M. T. Goodrich and S. Kobourov" +, title = "Balanced aspect ratio trees: combining the advantages of k-d trees and octrees" +, journal = "J. Algorithms" +, volume = 38 +, year = 2001 +, pages = "303--333" +, update = "01.11 smid" } @inproceedings{dgr-eaoac-97 -, author = "C. A. Duncan and M. T. Goodrich and E. A. Ramos" -, title = "Efficient Approximation and Optimization Algorithms for Computational Metrology" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "121--130" -, update = "97.03 held+tamassia" +, author = "C. A. Duncan and M. T. Goodrich and E. A. Ramos" +, title = "Efficient Approximation and Optimization Algorithms for Computational Metrology" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "121--130" +, update = "97.03 held+tamassia" } @inproceedings{d-qpmdb-81 -, author = "M. R. Dunlavey" -, title = "Query performance of a many-dimensional best-match algorithm" -, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." -, year = 1981 -, pages = "389--396" +, author = "M. R. Dunlavey" +, title = "Query performance of a many-dimensional best-match algorithm" +, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." +, year = 1981 +, pages = "389--396" } @article{dg-aivib-70 -, author = "R. D. D{\"u}ppe and H. J. Gottschalk" -, title = "Automatische {Interpolation} von {Isolinien} bei willk{\"u}erlich verteilten {St{\"u}tzpunkten}" -, journal = "Allgemeine Vermessungsnachrichten" -, volume = 77 -, year = 1970 -, pages = "423--426" +, author = "R. D. D{\"u}ppe and H. J. Gottschalk" +, title = "Automatische {Interpolation} von {Isolinien} bei willk{\"u}erlich verteilten {St{\"u}tzpunkten}" +, journal = "Allgemeine Vermessungsnachrichten" +, volume = 77 +, year = 1970 +, pages = "423--426" } @misc{d-q3d-94 -, author = "E. Durand" -, title = "Quasitiler 3.0 documentation" -, year = 1994 -, url = "http://www.geom.uiuc.edu/apps/quasitiler/about.html" -, update = "97.11 bibrelex" +, author = "E. Durand" +, title = "Quasitiler 3.0 documentation" +, year = 1994 +, url = "http://www.geom.uiuc.edu/apps/quasitiler/about.html" +, update = "97.11 bibrelex" } @inproceedings{ddp-tvsap-97 -, author = "F. Durand and G. Drettakis and C. Peuch" -, title = "The visibility skeleton: {A} powerful and efficient multi-purpose global visibility tool" -, booktitle = "SIGGRAPH 97 Conference Proceedings" -, series = "Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "Addison-Wesley" -, year = 1997 -, pages = "89--100" -, update = "98.03 agarwal" +, author = "F. Durand and G. Drettakis and C. Peuch" +, title = "The visibility skeleton: {A} powerful and efficient multi-purpose global visibility tool" +, booktitle = "SIGGRAPH 97 Conference Proceedings" +, series = "Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "Addison-Wesley" +, year = 1997 +, pages = "89--100" +, update = "98.03 agarwal" } @inproceedings{ddp-3dvmv-97 -, author = "F. Durand and G. Drettakis and C. Puech" -, title = "{3D} Visibility made visibly simple: {An} introduction to the Visibility Skeleton" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "475--476" -, keywords = "video review" -, cites = "ddp-3dvcn-96, ddp-tvsap-97, df-fsaal-94, dorp-rfmvs-96, dp-vcmvs-95, gm-cagld-90, pd-voag-90, p-srs3d-90, pv-vc-96, sg-fcsbu-94, t-caals-92, ZZZ" -, update = "98.07 bibrelex, 97.11 orourke, 97.07 efrat" +, author = "F. Durand and G. Drettakis and C. Puech" +, title = "{3D} Visibility made visibly simple: {An} introduction to the Visibility Skeleton" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "475--476" +, keywords = "video review" +, cites = "ddp-3dvcn-96, ddp-tvsap-97, df-fsaal-94, dorp-rfmvs-96, dp-vcmvs-95, gm-cagld-90, pd-voag-90, p-srs3d-90, pv-vc-96, sg-fcsbu-94, t-caals-92, ZZZ" +, update = "98.07 bibrelex, 97.11 orourke, 97.07 efrat" } @article{ddp-fahrgv-99 -, author = "F. Durand and G. Drettakis and C. Puech" -, title = "Fast and accurate hierarchical radiosity using global visibility" -, journal = "ACM Trans. Graph." -, volume = 18 -, number = 2 -, year = 1999 -, pages = "128--170" -, keywords = "discontinuity meshing, form factor calculation, global illumination, global visibility, hierarchical radiosity, hierarchical triangulation, perception" -, update = "01.04 pocchiola" +, author = "F. Durand and G. Drettakis and C. Puech" +, title = "Fast and accurate hierarchical radiosity using global visibility" +, journal = "ACM Trans. Graph." +, volume = 18 +, number = 2 +, year = 1999 +, pages = "128--170" +, keywords = "discontinuity meshing, form factor calculation, global illumination, global visibility, hierarchical radiosity, hierarchical triangulation, perception" +, update = "01.04 pocchiola" } @inproceedings{ddp-3dvcn-96 -, author = "F. Durand and G. Drettakis and C. Puech" -, title = "The $3$d visibility complex, a new approach to the problems of accurate visibility" -, booktitle = "Proc. EUROGRAPHICS '96" -, site = "Porto, Portugal" -, publisher = "Springer-Verlag" -, month = jun -, year = 1996 -, pages = "245--257" -, update = "98.07 bibrelex" +, author = "F. Durand and G. Drettakis and C. Puech" +, title = "The $3$d visibility complex, a new approach to the problems of accurate visibility" +, booktitle = "Proc. EUROGRAPHICS '96" +, site = "Porto, Portugal" +, publisher = "Springer-Verlag" +, month = jun +, year = 1996 +, pages = "245--257" +, update = "98.07 bibrelex" } @inproceedings{ddp-3dvcu-97 -, author = "Fr\'edo Durand and George Drettakis and Claude Puech" -, title = "The {3D} Visibility Complex: a Unified Data--Structure for Global Visibility of Scenes of Polygons and Smooth Objects" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "153--158" -, update = "97.11 jones" +, author = "Fr\'edo Durand and George Drettakis and Claude Puech" +, title = "The {3D} Visibility Complex: a Unified Data--Structure for Global Visibility of Scenes of Polygons and Smooth Objects" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "153--158" +, update = "97.11 jones" } @inproceedings{d-3dvs-98 -, author = "Fr{\'e}do Durand and George Drettakis and Claude Puech" -, title = "The {3D} Visibility Skeleton" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "69--71" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Fr{\'e}do Durand and George Drettakis and Claude Puech" +, title = "The {3D} Visibility Skeleton" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "69--71" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{dorp-rfmvs-96 -, author = "Fr{\'e}do Durand and Rachel Orti and St{\'e}phane Rivei{\`e}re and Claude Puech" -, title = "Radiosity in flatland made visibly simple" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V11--V12" -, cites = "c-irepr-90, sgg-rrde-90, cbwg-bbaer-86, dp-vcmvs-95, h-sgiua-91, h-rf-92, pv-vc-93, pv-cvgpt-95, dorp-rdsfv-96, rodp-uvcrc-96, sp-rgi-94, r-tsvcp-95, th-gvaic-93, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Fr{\'e}do Durand and Rachel Orti and St{\'e}phane Rivei{\`e}re and Claude Puech" +, title = "Radiosity in flatland made visibly simple" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V11--V12" +, cites = "c-irepr-90, sgg-rrde-90, cbwg-bbaer-86, dp-vcmvs-95, h-sgiua-91, h-rf-92, pv-vc-93, pv-cvgpt-95, dorp-rdsfv-96, rodp-uvcrc-96, sp-rgi-94, r-tsvcp-95, th-gvaic-93, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{dorp-rdsfv-96 -, author = "F. Durand and R. Orti and S. Rivi{\`e}re and C. Puech" -, title = "Radiosity for dynamic scenes in flatland with the visibility complex" -, booktitle = "Eurographics '96" -, year = 1996 -, note = "Submitted" -, update = "97.11 bibrelex" +, author = "F. Durand and R. Orti and S. Rivi{\`e}re and C. Puech" +, title = "Radiosity for dynamic scenes in flatland with the visibility complex" +, booktitle = "Eurographics '96" +, year = 1996 +, note = "Submitted" +, update = "97.11 bibrelex" } @inproceedings{dp-vcmvs-95 -, author = "Fredo Durand and Claude Puech" -, title = "The Visibility Complex Made Visibly Simple" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "V2" -, keywords = "video review" -, cites = "pv-vc-93, r-cddcd-93, cg-vippg-89, cgl-pgd-85, gm-osacv-91, ow-nmcvg-88, p-gfr-90, v-vddsv-90, v-dmvg-91, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Fredo Durand and Claude Puech" +, title = "The Visibility Complex Made Visibly Simple" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "V2" +, keywords = "video review" +, cites = "pv-vc-93, r-cddcd-93, cg-vippg-89, cgl-pgd-85, gm-osacv-91, ow-nmcvg-88, p-gfr-90, v-vddsv-90, v-dmvg-91, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @book{d-pm-1528 -, author = "Albrecht D{\"u}rer" -, title = "The painter's manual: a manual of measurement of lines, areas, and solids by means of compass and ruler assembled by Albrecht D{\"u}rer for the use of all lovers of art with appropriate illustrations arranged to be printed in the year MDXXV" -, publisher = "New York: Abaris Books, 1977" -, year = 1538 -, note = "Translated and with a commentary by Walter L. Strauss" -, comments = "Found by Marty Demaine. - Contains unfoldings of convex polyhedra." -, update = "00.03 orourke" +, author = "Albrecht D{\"u}rer" +, title = "The painter's manual: a manual of measurement of lines, areas, and solids by means of compass and ruler assembled by Albrecht D{\"u}rer for the use of all lovers of art with appropriate illustrations arranged to be printed in the year MDXXV" +, publisher = "New York: Abaris Books, 1977" +, year = 1538 +, note = "Translated and with a commentary by Walter L. Strauss" +, comments = "Found by Marty Demaine. + Contains unfoldings of convex polyhedra." +, update = "00.03 orourke" } @article{d-pofwp-90 -, author = "R. Durier" -, title = "On {Pareto} optima, the {Fermat}-{Weber} problem, and polyhedral ..." -, journal = "Math. Program." -, volume = 47 -, number = 1 -, year = 1990 -, pages = "65--80" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "R. Durier" +, title = "On {Pareto} optima, the {Fermat}-{Weber} problem, and polyhedral ..." +, journal = "Math. Program." +, volume = 47 +, number = 1 +, year = 1990 +, pages = "65--80" +, keywords = "facility location" +, update = "95.09 korneenko" } @article{dm-gpfwp-85 -, author = "R. Durier and C. Michelot" -, title = "Geometrical properties of the {Fermat-Weber} problem" -, journal = "European J. Oper. Res." -, volume = 20 -, number = 3 -, year = 1985 -, pages = "332--343" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "R. Durier and C. Michelot" +, title = "Geometrical properties of the {Fermat-Weber} problem" +, journal = "European J. Oper. Res." +, volume = 20 +, number = 3 +, year = 1985 +, pages = "332--343" +, keywords = "facility location" +, update = "95.09 korneenko" } @inproceedings{d-cugr-86 -, author = "H. Durrant-Whyte" -, title = "Concerning Uncertain Geometry in Robotics" -, booktitle = "International Workshop on Geometric Reasoning" -, site = "Oxford, UK" -, month = jul -, year = 1986 -, update = "98.03 bibrelex" +, author = "H. Durrant-Whyte" +, title = "Concerning Uncertain Geometry in Robotics" +, booktitle = "International Workshop on Geometric Reasoning" +, site = "Oxford, UK" +, month = jul +, year = 1986 +, update = "98.03 bibrelex" } @article{d-ugr-88 -, author = "H. F. Durrant-Whyte" -, title = "Uncertain geometry in robotics" -, journal = "Internat. J. Robot. Autom." -, volume = 4 -, number = 1 -, year = 1988 -, pages = "23--31" -, update = "95.09 korneenko" +, author = "H. F. Durrant-Whyte" +, title = "Uncertain geometry in robotics" +, journal = "Internat. J. Robot. Autom." +, volume = 4 +, number = 1 +, year = 1988 +, pages = "23--31" +, update = "95.09 korneenko" } @incollection{dk-ipgmi-89 -, author = "M. D{\"u}rst and T. L. Kunii" -, title = "Integrated polytrees: a generalized model for the integration of spatial decomposition and boundary representation" -, editor = "W. S. Strasser and H.-P. Seidel" -, booktitle = "Theory and Practice of Geometric Modelling" -, year = 1989 -, pages = "329--348" -, keywords = "data structuring, polygons" -, update = "95.09 korneenko" +, author = "M. D{\"u}rst and T. L. Kunii" +, title = "Integrated polytrees: a generalized model for the integration of spatial decomposition and boundary representation" +, editor = "W. S. Strasser and H.-P. Seidel" +, booktitle = "Theory and Practice of Geometric Modelling" +, year = 1989 +, pages = "329--348" +, keywords = "data structuring, polygons" +, update = "95.09 korneenko" } @article{d-armc-88 -, author = "M. J. D{\"u}rst" -, title = "Additional reference to {M}arching {C}ubes" -, journal = "Comput. Graph." -, volume = 22 -, number = 4 -, year = 1988 -, pages = "72--73" -, update = "01.07 wenger" +, author = "M. J. D{\"u}rst" +, title = "Additional reference to {M}arching {C}ubes" +, journal = "Comput. Graph." +, volume = 22 +, number = 4 +, year = 1988 +, pages = "72--73" +, update = "01.07 wenger" } @inproceedings{d-vpwmb-93 -, author = "Martin J. D{\"u}rst" -, title = "On vertices and polyhedra without minimal boolean formulae" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "44--47" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Martin J. D{\"u}rst" +, title = "On vertices and polyhedra without minimal boolean formulae" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "44--47" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @inproceedings{d-pdcbe-91 -, author = "Martin J. D{\"u}rst" -, title = "Preclassification and delayed classification of boundary entities in arbitrary dimensions" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "57--69" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Martin J. D{\"u}rst" +, title = "Preclassification and delayed classification of boundary entities in arbitrary dimensions" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "57--69" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{dk-vcuch-89 -, author = "M. J. D{\"u}rst and T. L. Kunii" -, title = "Vertex classification using the convex hull on a sphere" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "25--32" -, keywords = "point-in-polyhedron, point location, Peterson-style boolean formula" -, update = "95.09 mitchell" +, author = "M. J. D{\"u}rst and T. L. Kunii" +, title = "Vertex classification using the convex hull on a sphere" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "25--32" +, keywords = "point-in-polyhedron, point location, Peterson-style boolean formula" +, update = "95.09 mitchell" } @article{dm-pos-41 -, author = "B. Dushnik and E. W. Miller" -, title = "Partially Ordered Sets" -, journal = "Amer. J. Math." -, volume = 63 -, year = 1941 -, pages = "600--610" -, update = "94.05 franciosa" +, author = "B. Dushnik and E. W. Miller" +, title = "Partially Ordered Sets" +, journal = "Amer. J. Math." +, volume = 63 +, year = 1941 +, pages = "600--610" +, update = "94.05 franciosa" } @article{dc-gscml-89 -, author = "D. Dutta and P. K. Chaudhuri" -, title = "Geometrical solution for a constrained minimax location problem" -, journal = "Asia-Pacif. J. Oper. Res." -, volume = 6 -, number = 2 -, year = 1989 -, pages = "148--157" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "D. Dutta and P. K. Chaudhuri" +, title = "Geometrical solution for a constrained minimax location problem" +, journal = "Asia-Pacif. J. Oper. Res." +, volume = 6 +, number = 2 +, year = 1989 +, pages = "148--157" +, keywords = "facility location" +, update = "95.09 korneenko" } @article{dh-ssco-93 -, author = "D. Dutta and C. Hoffmann" -, title = "On the skeleton of simple {CSG} objects" -, journal = "ASME J. Mech. Design" -, volume = 115 -, year = 1993 -, pages = "87--94" -, update = "98.07 bibrelex" +, author = "D. Dutta and C. Hoffmann" +, title = "On the skeleton of simple {CSG} objects" +, journal = "ASME J. Mech. Design" +, volume = 115 +, year = 1993 +, pages = "87--94" +, update = "98.07 bibrelex" } @inproceedings{dh-gisco-90 -, author = "D. Dutta and C. M. Hoffmann" -, title = "A Geometric Investigation of the Skeleton of {CSG} Objects" -, booktitle = "Proc. ASME Conf. Design Automation" -, site = "Chicago, IL, USA" -, year = 1990 -, pages = "" -, update = "93.09 held" +, author = "D. Dutta and C. M. Hoffmann" +, title = "A Geometric Investigation of the Skeleton of {CSG} Objects" +, booktitle = "Proc. ASME Conf. Design Automation" +, site = "Chicago, IL, USA" +, year = 1990 +, pages = "" +, update = "93.09 held" } @article{d-fecld-81 -, author = "G. Dutton" -, title = "Fractal enhancement of cartographic line detail" -, journal = "Amer. Cartogr." -, volume = 8 -, year = 1981 -, pages = "23--40" -, keywords = "implementing algorithms, computer graphics, cartography, algebraic geometry, fractals, construction, similarity, shape, boundary representation, curves" +, author = "G. Dutton" +, title = "Fractal enhancement of cartographic line detail" +, journal = "Amer. Cartogr." +, volume = 8 +, year = 1981 +, pages = "23--40" +, keywords = "implementing algorithms, computer graphics, cartography, algebraic geometry, fractals, construction, similarity, shape, boundary representation, curves" } @article{d-gmpr-84 -, author = "G. Dutton" -, title = "Geodesic modelling of planetary relief" -, journal = "Cartographica" -, volume = 21 -, year = 1984 -, pages = "188--207" -, keywords = "data structuring, terrain modelling, construction, approximation, geodesics, locus approach, implicit data structures, triangulations, polyhedra" +, author = "G. Dutton" +, title = "Geodesic modelling of planetary relief" +, journal = "Cartographica" +, volume = 21 +, year = 1984 +, pages = "188--207" +, keywords = "data structuring, terrain modelling, construction, approximation, geodesics, locus approach, implicit data structures, triangulations, polyhedra" } @inproceedings{dm-epigd-80 -, author = "G. Dutton and S. Morehouse" -, title = "Extraction of polygonal information from gridded data" -, booktitle = "Proc. 4th Internat. Sympos. Comput.-Assist. Cartog." -, site = "Falls Church, VA" -, year = 1980 -, pages = "320--327" -, keywords = "implementing algorithms, image processing, cartography, construction, shape, contours, polygonal chains, topological, curves" -, update = "93.05 freimer" +, author = "G. Dutton and S. Morehouse" +, title = "Extraction of polygonal information from gridded data" +, booktitle = "Proc. 4th Internat. Sympos. Comput.-Assist. Cartog." +, site = "Falls Church, VA" +, year = 1980 +, pages = "320--327" +, keywords = "implementing algorithms, image processing, cartography, construction, shape, contours, polygonal chains, topological, curves" +, update = "93.05 freimer" } @inproceedings{dhw-csma-93 -, author = "C. Dwork and M. Herlihy and O. Waarts" -, title = "Contention in Shared Memory Algorithms" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "174--183" -, update = "96.09 orourke" +, author = "C. Dwork and M. Herlihy and O. Waarts" +, title = "Contention in Shared Memory Algorithms" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "174--183" +, update = "96.09 orourke" } @article{d-chsss-91 -, author = "R. Dwyer" -, title = "Convex hulls of samples from spherically symmetric distributions" -, journal = "Discrete Appl. Math." -, volume = 31 -, number = 2 -, year = 1991 -, pages = "113--132" -, keywords = "convex hull, probabilistic analysis" -, update = "95.09 korneenko" +, author = "R. Dwyer" +, title = "Convex hulls of samples from spherically symmetric distributions" +, journal = "Discrete Appl. Math." +, volume = 31 +, number = 2 +, year = 1991 +, pages = "113--132" +, keywords = "convex hull, probabilistic analysis" +, update = "95.09 korneenko" } @article{d-mmb-93 -, author = "R. Dwyer" -, title = "Maximal and minimal balls" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "261--275" -, update = "96.09 devillers" +, author = "R. Dwyer" +, title = "Maximal and minimal balls" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "261--275" +, update = "96.09 devillers" } @article{d-chrpp-88 -, author = "R. Dwyer" -, title = "On the convex hull of random points in a polytope" -, journal = "J. Appl. Probab." -, volume = 25 -, number = 4 -, year = 1988 -, pages = "688--699" -, keywords = "convex hull, probabilistic analysis" -, update = "95.09 korneenko" +, author = "R. Dwyer" +, title = "On the convex hull of random points in a polytope" +, journal = "J. Appl. Probab." +, volume = 25 +, number = 4 +, year = 1988 +, pages = "688--699" +, keywords = "convex hull, probabilistic analysis" +, update = "95.09 korneenko" } @article{d-enkfv-93 -, author = "R. Dwyer" -, title = "The expected number of $k$-faces of a {Voronoi} diagram" -, journal = "Internat. J. Comput. Math." -, volume = 26 -, number = 5 -, year = 1993 -, pages = "13--21" -, keywords = "$d$-dimensional, Voronoi diagram" -, update = "95.09 korneenko" +, author = "R. Dwyer" +, title = "The expected number of $k$-faces of a {Voronoi} diagram" +, journal = "Internat. J. Comput. Math." +, volume = 26 +, number = 5 +, year = 1993 +, pages = "13--21" +, keywords = "$d$-dimensional, Voronoi diagram" +, update = "95.09 korneenko" } @article{d-essig-95 -, author = "R. Dwyer" -, title = "The expected size of the sphere-of-influence graph" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "155--164" -, update = "96.09 devillers" +, author = "R. Dwyer" +, title = "The expected size of the sphere-of-influence graph" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "155--164" +, update = "96.09 devillers" } @article{de-mee-96 -, author = "R. Dwyer and W. Eddy" -, title = "Maximal empty ellipsoids" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "169--186" -, update = "96.09 devillers" +, author = "R. Dwyer and W. Eddy" +, title = "Maximal empty ellipsoids" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "169--186" +, update = "96.09 devillers" } @article{d-fdcac-87 -, author = "R. A. Dwyer" -, title = "A faster divide-and-conquer algorithm for constructing {Delaunay} triangulations" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "137--151" -, succeeds = "d-sdcac-86" +, author = "R. A. Dwyer" +, title = "A faster divide-and-conquer algorithm for constructing {Delaunay} triangulations" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "137--151" +, succeeds = "d-sdcac-86" } @inproceedings{d-sdcac-86 -, author = "R. A. Dwyer" -, title = "A simple divide-and-conquer algorithm for computing {Delaunay} triangulations in {$O(n \log\log n)$} expected time" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "276--284" -, precedes = "d-fdcac-87" -, cites = "bwy-oetac-80, f-savd-86, gs-pmgsc-85, h-oarms-79, l-tdvdl-80, ls-tacdt-80, lw-vdllm-80, m-dtchn-84, oim-iimvd-84, s-let-78, gs-cdtp-78, s-cg-78, ZZZ" -, update = "98.03 bibrelex" +, author = "R. A. Dwyer" +, title = "A simple divide-and-conquer algorithm for computing {Delaunay} triangulations in {$O(n \log\log n)$} expected time" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "276--284" +, precedes = "d-fdcac-87" +, cites = "bwy-oetac-80, f-savd-86, gs-pmgsc-85, h-oarms-79, l-tdvdl-80, ls-tacdt-80, lw-vdllm-80, m-dtchn-84, oim-iimvd-84, s-let-78, gs-cdtp-78, s-cg-78, ZZZ" +, update = "98.03 bibrelex" } @phdthesis{d-acaac-88 -, author = "R. A. Dwyer" -, title = "Average-case analysis of algorithms for convex hulls and {Voronoi} diagrams" -, type = "Ph.{D}. Thesis" -, school = "Comput. Sci. Dept., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1988 -, note = "Report CMU-CS-88-132" -, keywords = "doctoral thesis" -, update = "95.01 smid" +, author = "R. A. Dwyer" +, title = "Average-case analysis of algorithms for convex hulls and {Voronoi} diagrams" +, type = "Ph.{D}. Thesis" +, school = "Comput. Sci. Dept., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1988 +, note = "Report CMU-CS-88-132" +, keywords = "doctoral thesis" +, update = "95.01 smid" } @inproceedings{d-chpss-89 -, author = "R. A. Dwyer" -, title = "Convex hulls of points from spherically symmetric distributions" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 2 +, author = "R. A. Dwyer" +, title = "Convex hulls of points from spherically symmetric distributions" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 2 } @inproceedings{d-hdvdl-89 -, author = "R. A. Dwyer" -, title = "Higher-dimensional {Voronoi} diagrams in linear expected time" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "326--333" -, precedes = "d-hdvdl-91" -, cites = "ab-acddv-83, b-wcach-82, b-cdt-81, b-gtfga-80, bdf-cvp-78, ck-acp-70, d-fdcac-87, d-chrpp-88, e-chrsp-65, f-pcvp-79, g-rssc-62, m-dtchn-84, m-iaeln-53, m-irs-71, r-slcdn-70, s-cvdhd-82, s-nfhdv-87, s-chdch-86, s-fchff-85, too-natdv-83, t-pala-11, v-nadpc-08, w-cnddt-81, ZZZ" -, update = "98.03 bibrelex" +, author = "R. A. Dwyer" +, title = "Higher-dimensional {Voronoi} diagrams in linear expected time" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "326--333" +, precedes = "d-hdvdl-91" +, cites = "ab-acddv-83, b-wcach-82, b-cdt-81, b-gtfga-80, bdf-cvp-78, ck-acp-70, d-fdcac-87, d-chrpp-88, e-chrsp-65, f-pcvp-79, g-rssc-62, m-dtchn-84, m-iaeln-53, m-irs-71, r-slcdn-70, s-cvdhd-82, s-nfhdv-87, s-chdch-86, s-fchff-85, too-natdv-83, t-pala-11, v-nadpc-08, w-cnddt-81, ZZZ" +, update = "98.03 bibrelex" } @article{d-hdvdl-91 -, author = "R. A. Dwyer" -, title = "Higher-dimensional {Voronoi} diagrams in linear expected time" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "343--367" -, succeeds = "d-hdvdl-89" +, author = "R. A. Dwyer" +, title = "Higher-dimensional {Voronoi} diagrams in linear expected time" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "343--367" +, succeeds = "d-hdvdl-89" } @article{d-kgaca-90 -, author = "R. A. Dwyer" -, title = "Kinder, gentler average-case analysis for convex hulls and maximal vectors" -, journal = "SIGACT News" -, volume = 21 -, number = 2 -, year = 1990 -, pages = "64--71" -, keywords = "probabilistic analysis, expected-case analysis, convex hull, $d$-dimensional" +, author = "R. A. Dwyer" +, title = "Kinder, gentler average-case analysis for convex hulls and maximal vectors" +, journal = "SIGACT News" +, volume = 21 +, number = 2 +, year = 1990 +, pages = "64--71" +, keywords = "probabilistic analysis, expected-case analysis, convex hull, $d$-dimensional" } @inproceedings{d-lvgwi-90 -, author = "R. A. Dwyer" -, title = "Las {Vegas} gift-wrapping is twice as fast" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "261--264" -, cites = "ck-acp-70, s-fchff-85, ZZZ" -, update = "98.07 bibrelex" +, author = "R. A. Dwyer" +, title = "Las {Vegas} gift-wrapping is twice as fast" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "261--264" +, cites = "ck-acp-70, s-fchff-85, ZZZ" +, update = "98.07 bibrelex" } @article{d-vdchr-00 -, author = "R. A. Dwyer" -, title = "{Voronoi} diagrams and convex hulls of random moving points" -, journal = "Discrete Comput. Geom." -, volume = 23 -, year = 2000 -, pages = "343--365" -, update = "01.11 smid" +, author = "R. A. Dwyer" +, title = "{Voronoi} diagrams and convex hulls of random moving points" +, journal = "Discrete Comput. Geom." +, volume = 23 +, year = 2000 +, pages = "343--365" +, update = "01.11 smid" } @article{d-vdrlf-97 -, author = "R. A. Dwyer" -, title = "{Voronoi} diagrams of random lines and flats" -, journal = "Discrete Comput. Geom." -, volume = 17 -, year = 1997 -, pages = "123--136" -, update = "98.03 agarwal" +, author = "R. A. Dwyer" +, title = "{Voronoi} diagrams of random lines and flats" +, journal = "Discrete Comput. Geom." +, volume = 17 +, year = 1997 +, pages = "123--136" +, update = "98.03 agarwal" } @article{d-tcpp-90 -, author = "H. Dyckhoff" -, title = "A typology of cutting and packing problems" -, journal = "European J. Oper. Res." -, volume = 44 -, number = 2 -, year = 1990 -, pages = "145--160" -, keywords = "packing, covering" -, update = "95.09 korneenko" +, author = "H. Dyckhoff" +, title = "A typology of cutting and packing problems" +, journal = "European J. Oper. Res." +, volume = 44 +, number = 2 +, year = 1990 +, pages = "145--160" +, keywords = "packing, covering" +, update = "95.09 korneenko" } @article{d-fpacp-80 -, author = "C. R. Dyer" -, title = "A fast parallel algorithm for the closest pair problem" -, journal = "Inform. Process. Lett." -, volume = 11 -, year = 1980 -, pages = "49--52" +, author = "C. R. Dyer" +, title = "A fast parallel algorithm for the closest pair problem" +, journal = "Inform. Process. Lett." +, volume = 11 +, year = 1980 +, pages = "49--52" } @article{d-cenii-80 -, author = "C. R. Dyer" -, title = "Computing the {Euler} number of an image from its quadtree" -, journal = "Comput. Graph. Image Process." -, volume = 13 -, year = 1980 -, pages = "270--276" +, author = "C. R. Dyer" +, title = "Computing the {Euler} number of an image from its quadtree" +, journal = "Comput. Graph. Image Process." +, volume = 13 +, year = 1980 +, pages = "270--276" } @article{d-seq-82 -, author = "C. R. Dyer" -, title = "The space efficiency of quadtrees" -, journal = "Comput. Graph. Image Process." -, volume = 19 -, year = 1982 -, pages = "335--348" +, author = "C. R. Dyer" +, title = "The space efficiency of quadtrees" +, journal = "Comput. Graph. Image Process." +, volume = 19 +, year = 1982 +, pages = "335--348" } @article{drs-rrbcq-80 -, author = "C. R. Dyer and A. Rosenfeld and H. Samet" -, title = "Region representation: boundary codes from quadtrees" -, journal = "Commun. ACM" -, volume = 23 -, year = 1980 -, pages = "171--179" +, author = "C. R. Dyer and A. Rosenfeld and H. Samet" +, title = "Region representation: boundary codes from quadtrees" +, journal = "Commun. ACM" +, volume = 23 +, year = 1980 +, pages = "171--179" } @incollection{df-cvcbc-91 -, author = "Martin Dyer and Alan Frieze" -, title = "Computing the volume of convex bodies: {A} case where randomness provably helps" -, editor = "B. Bollob{\' a}s" -, booktitle = "Probabilistic Combinatorics and Its Applications" -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1991 -, pages = "123--169" -, update = "00.11 smid, 00.07 agarwal" +, author = "Martin Dyer and Alan Frieze" +, title = "Computing the volume of convex bodies: {A} case where randomness provably helps" +, editor = "B. Bollob{\' a}s" +, booktitle = "Probabilistic Combinatorics and Its Applications" +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1991 +, pages = "123--169" +, update = "00.11 smid, 00.07 agarwal" } @incollection{dm-lpld-97 -, author = "M. Dyer and N. Megiddo" -, title = "Linear programming in low dimensions" -, chapter = 38 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "699--710" -, update = "97.11 orourke" +, author = "M. Dyer and N. Megiddo" +, title = "Linear programming in low dimensions" +, chapter = 38 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "699--710" +, update = "97.11 orourke" } @inproceedings{d-ccpac-92 -, author = "M. E. Dyer" -, title = "A class of convex programs with applications to computational geometry" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "9--15" -, cites = "c-sagcp-88, c-lpot-86, c-lvalp-88, dk-ladsc-85, d-mstia-86, gls-gaco-88, j-ba1-85, m-lpltw-84, m-bsb-89, m-mpta-86, p-mse-84, r-fpade-88, sw-cblpr-92, w-sedbe-91a, ZZZ" -, update = "97.11 bibrelex, 97.03 agarwal" +, author = "M. E. Dyer" +, title = "A class of convex programs with applications to computational geometry" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "9--15" +, cites = "c-sagcp-88, c-lpot-86, c-lvalp-88, dk-ladsc-85, d-mstia-86, gls-gaco-88, j-ba1-85, m-lpltw-84, m-bsb-89, m-mpta-86, p-mse-84, r-fpade-88, sw-cblpr-92, w-sedbe-91a, ZZZ" +, update = "97.11 bibrelex, 97.03 agarwal" } @incollection{d-gatcl-83 -, author = "Martin E. Dyer" -, title = "A Geometric Approach to Two-Constraint Linear Programming with Generalized Upper Bounds" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "79--90" -, keywords = "linear programming" -, update = "01.04 icking, 95.09 korneenko" +, author = "Martin E. Dyer" +, title = "A Geometric Approach to Two-Constraint Linear Programming with Generalized Upper Bounds" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "79--90" +, keywords = "linear programming" +, update = "01.04 icking, 95.09 korneenko" } @techreport{d-ltalp-82 -, author = "M. E. Dyer" -, title = "A linear time algorithm for locating a point in the intersection of $2$-polyhedra" -, type = "Report" -, number = "??" -, institution = "Dept. Math. Statist., Teesside Polytech." -, address = "Middlesbrough, England" -, year = 1982 +, author = "M. E. Dyer" +, title = "A linear time algorithm for locating a point in the intersection of $2$-polyhedra" +, type = "Report" +, number = "??" +, institution = "Dept. Math. Statist., Teesside Polytech." +, address = "Middlesbrough, England" +, year = 1982 } @inproceedings{d-palpf-95 -, author = "Martin E. Dyer" -, title = "A Parallel Algorithm for Linear Programming in Fixed Dimension" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "345--349" -, keywords = "" -, cites = "akss-dsot-86, am-dptnp-92, am-plpfd-90, bh-obdpc-87, cm-ltdao-93, c-lvalp-88, c-lpot-86, c-pms-88, d-opalp-90, d-mstia-86, g-gpmee-93, kr-pasmm-90, m-lpltw-84, v-pcp-75, ZZZ" -, update = "98.03 bibrelex, 97.03 agarwal, 95.09 mitchell" +, author = "Martin E. Dyer" +, title = "A Parallel Algorithm for Linear Programming in Fixed Dimension" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "345--349" +, keywords = "" +, cites = "akss-dsot-86, am-dptnp-92, am-plpfd-90, bh-obdpc-87, cm-ltdao-93, c-lvalp-88, c-lpot-86, c-pms-88, d-opalp-90, d-mstia-86, g-gpmee-93, kr-pasmm-90, m-lpltw-84, v-pcp-75, ZZZ" +, update = "98.03 bibrelex, 97.03 agarwal, 95.09 mitchell" } @techreport{d-soai3-80 -, author = "M. E. Dyer" -, title = "A simplified {$O(n \log n)$} algorithm for the intersection of $3$-polyhedra" -, type = "Report" -, number = "TPMR 80-5" -, institution = "Dept. Math. Statist., Teesside Polytech." -, address = "Middlesbrough, England" -, year = 1980 +, author = "M. E. Dyer" +, title = "A simplified {$O(n \log n)$} algorithm for the intersection of $3$-polyhedra" +, type = "Report" +, number = "TPMR 80-5" +, institution = "Dept. Math. Statist., Teesside Polytech." +, address = "Middlesbrough, England" +, year = 1980 } @techreport{d-onamc-81 -, author = "M. E. Dyer" -, title = "An $O(n)$ algorithm for multiple-choice knapsack linear program" -, type = "report" -, institution = "Math Dept. Teesside Polytechnic." -, address = "Middlesbrough, England" -, year = 1981 -, keywords = "prune and search, linear programming" -, update = "95.09 korneenko" +, author = "M. E. Dyer" +, title = "An $O(n)$ algorithm for multiple-choice knapsack linear program" +, type = "report" +, institution = "Math Dept. Teesside Polytechnic." +, address = "Middlesbrough, England" +, year = 1981 +, keywords = "prune and search, linear programming" +, update = "95.09 korneenko" } @article{d-ltatt-84 -, author = "M. E. Dyer" -, title = "Linear time algorithms for two- and three-variable linear programs" -, journal = "SIAM J. Comput." -, volume = 13 -, year = 1984 -, pages = "31--45" -, keywords = "linear programming" +, author = "M. E. Dyer" +, title = "Linear time algorithms for two- and three-variable linear programs" +, journal = "SIAM J. Comput." +, volume = 13 +, year = 1984 +, pages = "31--45" +, keywords = "linear programming" } @article{d-mstia-86 -, author = "M. E. Dyer" -, title = "On a multidimensional search technique and its application to the {Euclidean} one-centre problem" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "725--738" -, update = "96.09 agarwal" +, author = "M. E. Dyer" +, title = "On a multidimensional search technique and its application to the {Euclidean} one-centre problem" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "725--738" +, update = "96.09 agarwal" } @article{d-clpp-91 -, author = "M. E. Dyer" -, title = "On counting lattice points in polyhedra" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "695--707" -, update = "97.03 agarwal" +, author = "M. E. Dyer" +, title = "On counting lattice points in polyhedra" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "695--707" +, update = "97.03 agarwal" } @article{d-cvem-83 -, author = "M. E. Dyer" -, title = "The complexity of vertex enumeration methods" -, journal = "Math. Oper. Res." -, volume = 8 -, year = 1983 -, pages = "381--402" -, keywords = "linear programming, convex hull" -, update = "95.09 korneenko" +, author = "M. E. Dyer" +, title = "The complexity of vertex enumeration methods" +, journal = "Math. Oper. Res." +, volume = 8 +, year = 1983 +, pages = "381--402" +, keywords = "linear programming, convex hull" +, update = "95.09 korneenko" } @techreport{d-tvlpa-82 -, author = "M. E. Dyer" -, title = "Two-variable linear programs are solvable in linear time" -, type = "Report" -, number = "??" -, institution = "Dept. Math. Statist., Teesside Polytech." -, address = "Middlesbrough, England" -, year = 1982 +, author = "M. E. Dyer" +, title = "Two-variable linear programs are solvable in linear time" +, type = "Report" +, number = "??" +, institution = "Dept. Math. Statist., Teesside Polytech." +, address = "Middlesbrough, England" +, year = 1982 } @article{df-ccv-88 -, author = "M. E. Dyer and A. Frieze" -, title = "On the complexity of computing volume" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "967--975" -, keywords = "volume, convex, complexity theory" -, update = "97.03 agarwal" +, author = "M. E. Dyer and A. Frieze" +, title = "On the complexity of computing volume" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "967--975" +, keywords = "volume, convex, complexity theory" +, update = "97.03 agarwal" } @article{df-p3inc-86 -, author = "M. E. Dyer and A. Frieze" -, title = "Planar $3${DM} is {NP}-complete" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "174--184" -, update = "97.03 agarwal" +, author = "M. E. Dyer and A. Frieze" +, title = "Planar $3${DM} is {NP}-complete" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "174--184" +, update = "97.03 agarwal" } @inproceedings{dfk-rptaa-89 -, author = "M. E. Dyer and A. Frieze and R. Kannan" -, title = "A random polynomial time algorithm for approximating the volume of convex bodies" -, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." -, year = 1989 -, pages = "375--381" -, keywords = "approximation, volume, convex" -, precedes = "dfk-rptaa-91" -, update = "97.03 agarwal" +, author = "M. E. Dyer and A. Frieze and R. Kannan" +, title = "A random polynomial time algorithm for approximating the volume of convex bodies" +, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." +, year = 1989 +, pages = "375--381" +, keywords = "approximation, volume, convex" +, precedes = "dfk-rptaa-91" +, update = "97.03 agarwal" } @article{dfk-rptaa-91 -, author = "M. E. Dyer and A. Frieze and R. Kannan" -, title = "A random polynomial time algorithm for approximating the volume of convex bodies" -, journal = "J. ACM" -, volume = 38 -, year = 1991 -, pages = "1--17" -, keywords = "approximation, volume, convex" -, succeeds = "dfk-rptaa-89" -, update = "97.03 agarwal" +, author = "M. E. Dyer and A. Frieze and R. Kannan" +, title = "A random polynomial time algorithm for approximating the volume of convex bodies" +, journal = "J. ACM" +, volume = 38 +, year = 1991 +, pages = "1--17" +, keywords = "approximation, volume, convex" +, succeeds = "dfk-rptaa-89" +, update = "97.03 agarwal" } @article{df-pamwe-84 -, author = "M. E. Dyer and A. M. Frieze" -, title = "A partitioning algorithm for minimum weighted {Euclidean} matching" -, journal = "Inform. Process. Lett." -, volume = 18 -, year = 1984 -, pages = "59--62" +, author = "M. E. Dyer and A. M. Frieze" +, title = "A partitioning algorithm for minimum weighted {Euclidean} matching" +, journal = "Inform. Process. Lett." +, volume = 18 +, year = 1984 +, pages = "59--62" } @article{df-rafdl-89 -, author = "M. E. Dyer and A. M. Frieze" -, title = "A randomized algorithm for fixed-dimension linear programming" -, journal = "Math. Program." -, volume = 44 -, number = 2 -, year = 1989 -, pages = "203--212" -, keywords = "linear programming, Las Vegas, $d$-dimensional" -, update = "96.09 agarwal, 95.09 korneenko" +, author = "M. E. Dyer and A. M. Frieze" +, title = "A randomized algorithm for fixed-dimension linear programming" +, journal = "Math. Program." +, volume = 44 +, number = 2 +, year = 1989 +, pages = "203--212" +, keywords = "linear programming, Las Vegas, $d$-dimensional" +, update = "96.09 agarwal, 95.09 korneenko" } @techreport{df-rafdl-87 -, author = "M. E. Dyer and A. M. Frieze" -, title = "A Randomized Algorithm for Fixed-Dimensional Linear Programming" -, type = "Manuscript" -, institution = "??" -, year = 1987 -, update = "97.11 bibrelex" +, author = "M. E. Dyer and A. M. Frieze" +, title = "A Randomized Algorithm for Fixed-Dimensional Linear Programming" +, type = "Manuscript" +, institution = "??" +, year = 1987 +, update = "97.11 bibrelex" } @article{df-shpcp-85 -, author = "M. E. Dyer and A. M. Frieze" -, title = "A simple heuristic for the $p$-centre problem" -, journal = "Oper. Res. Lett." -, volume = 3 -, year = 1985 -, pages = "285--288" -, keywords = "facility location" -, update = "95.09 korneenko" +, author = "M. E. Dyer and A. M. Frieze" +, title = "A simple heuristic for the $p$-centre problem" +, journal = "Oper. Res. Lett." +, volume = 3 +, year = 1985 +, pages = "285--288" +, keywords = "facility location" +, update = "95.09 korneenko" } @article{dfm-phtgm-84 -, author = "M. E. Dyer and A. M. Frieze and C. J. H. McDiarmid" -, title = "Partitioning heuristics for two geometric maximization problems" -, journal = "Oper. Res. Lett." -, volume = 3 -, year = 1984 -, pages = "267--270" -, keywords = "heuristics" +, author = "M. E. Dyer and A. M. Frieze and C. J. H. McDiarmid" +, title = "Partitioning heuristics for two geometric maximization problems" +, journal = "Oper. Res. Lett." +, volume = 3 +, year = 1984 +, pages = "267--270" +, keywords = "heuristics" } @techreport{dgh-ccmv-94 -, author = "M. E. Dyer and P. Gritzmann and A. Hufnagel" -, title = "On the complexity of computing mixed volumes" -, type = "Manuscript" -, institution = "??" -, year = 1994 -, update = "98.03 bibrelex" +, author = "M. E. Dyer and P. Gritzmann and A. Hufnagel" +, title = "On the complexity of computing mixed volumes" +, type = "Manuscript" +, institution = "??" +, year = 1994 +, update = "98.03 bibrelex" } @article{dp-adaep-77 -, author = "M. E. Dyer and L. G. Proll" -, title = "An algorithm for determining all extreme points of a convex polytope" -, journal = "Math. Program." -, volume = 12 -, year = 1977 -, pages = "81--96" +, author = "M. E. Dyer and L. G. Proll" +, title = "An algorithm for determining all extreme points of a convex polytope" +, journal = "Math. Program." +, volume = 12 +, year = 1977 +, pages = "81--96" } @inproceedings{dm-bcpo-89 -, author = "P. C. Dykstra and M. J. Muuss" -, title = "The {BRL}-{CAD} Package: An Overview" -, booktitle = "Proc. BRL-CAD Symposium '89" -, site = "Aberdeen Proving Ground, Maryland" -, year = 1989 -, pages = "1--9" -, update = "93.09 goodrich" +, author = "P. C. Dykstra and M. J. Muuss" +, title = "The {BRL}-{CAD} Package: An Overview" +, booktitle = "Proc. BRL-CAD Symposium '89" +, site = "Aberdeen Proving Ground, Maryland" +, year = 1989 +, pages = "1--9" +, update = "93.09 goodrich" } @inproceedings{dc-hcpc-80 -, author = "P. W. Dymon and S. A. Cook" -, title = "Hardware Complexity and Parallel Comuting" -, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1980 -, pages = "360--372" -, update = "98.03 bibrelex" +, author = "P. W. Dymon and S. A. Cook" +, title = "Hardware Complexity and Parallel Comuting" +, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1980 +, pages = "360--372" +, update = "98.03 bibrelex" } @incollection{dlr-acddt-90 -, author = "N. Dyn and D. Levin and S. Rippa" -, title = "Algorithms for the Construction of Data Dependent Triangulations" -, editor = "J. C. Mason and M. G. Cox" -, booktitle = "Algorithms for Approximation II" -, publisher = "Chapman and Hall" -, address = "London" -, year = 1990 -, pages = "185--192" +, author = "N. Dyn and D. Levin and S. Rippa" +, title = "Algorithms for the Construction of Data Dependent Triangulations" +, editor = "J. C. Mason and M. G. Cox" +, booktitle = "Algorithms for Approximation II" +, publisher = "Chapman and Hall" +, address = "London" +, year = 1990 +, pages = "185--192" } @article{dlr-ddtpl-90 -, author = "Nira Dyn and David Levin and Samuel Rippa" -, title = "Data Dependent Triangulations for Piecewise Linear Interpolation" -, journal = "IMA Journal of Numerical Analysis" -, volume = 10 -, year = 1990 -, pages = "137--154" -, annote = "Triangulation for fitting a surface over 3d data. - Choose triangulation that depends on the 3d data rather - than its projection to 2d. LOT based on minimizing the - angle between adjacent triangles." +, author = "Nira Dyn and David Levin and Samuel Rippa" +, title = "Data Dependent Triangulations for Piecewise Linear Interpolation" +, journal = "IMA Journal of Numerical Analysis" +, volume = 10 +, year = 1990 +, pages = "137--154" +, annote = "Triangulation for fitting a surface over 3d data. + Choose triangulation that depends on the 3d data rather + than its projection to 2d. LOT based on minimizing the + angle between adjacent triangles." } @article{e-hgd-84 -, author = "P. Eades" -, title = "A Heuristic for Graph Drawing" -, journal = "Congr. Numer." -, volume = 42 -, year = 1984 -, pages = "149--160" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades" +, title = "A Heuristic for Graph Drawing" +, journal = "Congr. Numer." +, volume = 42 +, year = 1984 +, pages = "149--160" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{e-ciddg-89 -, author = "P. Eades" -, title = "Complexity Issues in Drawing Directed Graphs" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, month = nov -, year = 1989 -, pages = "9--15" -, keywords = "graph drawing" -, update = "95.09 mitchell, 93.09 tamassia" +, author = "P. Eades" +, title = "Complexity Issues in Drawing Directed Graphs" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, month = nov +, year = 1989 +, pages = "9--15" +, keywords = "graph drawing" +, update = "95.09 mitchell, 93.09 tamassia" } @incollection{e-sfa-88 -, author = "P. Eades" -, title = "Symmetry finding algorithms" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "41--51" +, author = "P. Eades" +, title = "Symmetry finding algorithms" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "41--51" } @inproceedings{ech-oagdw-97 -, author = "Peter Eades and Robert F. Cohen and Mao Lin Huang" -, title = "Online Animated Graph Drawing for Web Navigation" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "330--335" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Peter Eades and Robert F. Cohen and Mao Lin Huang" +, title = "Online Animated Graph Drawing for Web Navigation" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "330--335" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{ef-dcgog-97 -, author = "Peter Eades and {Qing-Wen} Feng" -, title = "Drawing Clustered Graphs on an Orthogonal Grid" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "146--157" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Peter Eades and {Qing-Wen} Feng" +, title = "Drawing Clustered Graphs on an Orthogonal Grid" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "146--157" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{efk-ssdga-88 -, author = "P. Eades and I. Fogg and D. Kelly" -, title = "{SPREMB}: a System for Developing Graph Algorithms" -, journal = "Congr. Numer." -, volume = 66 -, year = 1988 -, pages = "123--140" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades and I. Fogg and D. Kelly" +, title = "{SPREMB}: a System for Developing Graph Algorithms" +, journal = "Congr. Numer." +, volume = 66 +, year = 1988 +, pages = "123--140" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @incollection{efg-ehimw-82 -, author = "P. Eades and L. Foulds and J. Giffin" -, title = "An Efficient Heuristic for Identifying a Maximal Weight Planar Subgraph" -, booktitle = "Combinatorial Mathematics IX" -, series = "Lecture Notes Comput. Sci." -, volume = 952 -, publisher = "Springer-Verlag" -, year = 1982 -, pages = "239--251" -, keywords = "graph drawing" -, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" +, author = "P. Eades and L. Foulds and J. Giffin" +, title = "An Efficient Heuristic for Identifying a Maximal Weight Planar Subgraph" +, booktitle = "Combinatorial Mathematics IX" +, series = "Lecture Notes Comput. Sci." +, volume = 952 +, publisher = "Springer-Verlag" +, year = 1982 +, pages = "239--251" +, keywords = "graph drawing" +, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" } @inproceedings{eg-dspg-96 -, author = "P. Eades and P. Garvan" -, title = "Drawing Stressed Planar Graphs in Three Dimensions" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "" -, keywords = "graph drawing, 3D, convex, straight-line" -, update = "96.09 tamassia" +, author = "P. Eades and P. Garvan" +, title = "Drawing Stressed Planar Graphs in Three Dimensions" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "" +, keywords = "graph drawing, 3D, convex, straight-line" +, update = "96.09 tamassia" } @inproceedings{ehw-fbvtd-97 -, author = "Peter Eades and Michael E. Houle and Richard Webber" -, title = "Finding the Best Viewpoints for Three-Dimensional Graph Drawings" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "87--98" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Peter Eades and Michael E. Houle and Richard Webber" +, title = "Finding the Best Viewpoints for Three-Dimensional Graph Drawings" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "87--98" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{ek-hrc2l-86 -, author = "P. Eades and D. Kelly" -, title = "Heuristics for Reducing Crossings in 2-Layered Networks" -, journal = "Ars Combin." -, volume = "21.A" -, year = 1986 -, pages = "89--98" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades and D. Kelly" +, title = "Heuristics for Reducing Crossings in 2-Layered Networks" +, journal = "Ars Combin." +, volume = "21.A" +, year = 1986 +, pages = "89--98" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @@ -50639,3550 +50639,3550 @@ @article{eksw-eecaccc-06 } @inproceedings{elms-pmmd-91 -, author = "P. Eades and W. Lai and K. Misue and K. Sugiyama" -, title = "Preserving the Mental Map of a Diagram" -, booktitle = "Proceedings of Compugraphics 91" -, year = 1991 -, pages = "24--33" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades and W. Lai and K. Misue and K. Sugiyama" +, title = "Preserving the Mental Map of a Diagram" +, booktitle = "Proceedings of Compugraphics 91" +, year = 1991 +, pages = "24--33" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{el-adaal-93 -, author = "P. Eades and T. Lin" -, title = "Algorithmic and Declarative Approaches to Aesthetic Layout" -, booktitle = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" -, site = "Paris, France" -, month = sep -, year = 1993 -, keywords = "graph drawing" -, update = "94.01 tamassia" +, author = "P. Eades and T. Lin" +, title = "Algorithmic and Declarative Approaches to Aesthetic Layout" +, booktitle = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" +, site = "Paris, France" +, month = sep +, year = 1993 +, keywords = "graph drawing" +, update = "94.01 tamassia" } @inproceedings{ell-mshvd-92 -, author = "P. Eades and T. Lin and X. Lin" -, title = "Minimum Size h-v Drawings" -, booktitle = "Proc. Advanced Visual Interfaces" -, series = "World Scientific Series in Computer Science" -, volume = 36 -, year = 1992 -, pages = "386--394" -, keywords = "graph drawing" -, update = "94.01 tamassia, 93.09 tamassia" +, author = "P. Eades and T. Lin and X. Lin" +, title = "Minimum Size h-v Drawings" +, booktitle = "Proc. Advanced Visual Interfaces" +, series = "World Scientific Series in Computer Science" +, volume = 36 +, year = 1992 +, pages = "386--394" +, keywords = "graph drawing" +, update = "94.01 tamassia, 93.09 tamassia" } % xxx = Key Centre for Software Technology, @techreport{ell-ttdc-90 -, author = "P. Eades and T. Lin and X. Lin" -, title = "Two Tree Drawing Conventions" -, number = 174 -, institution = "Department of Computer Science, University of Queensland" -, year = 1990 -, keywords = "graph drawing" -, precedes = "ell-ttdc-93" -, update = "97.03 rote, 96.09 devillers, 93.09 tamassia" +, author = "P. Eades and T. Lin and X. Lin" +, title = "Two Tree Drawing Conventions" +, number = 174 +, institution = "Department of Computer Science, University of Queensland" +, year = 1990 +, keywords = "graph drawing" +, precedes = "ell-ttdc-93" +, update = "97.03 rote, 96.09 devillers, 93.09 tamassia" } @article{ell-ttdc-93 -, author = "P. Eades and T. Lin and X. Lin" -, title = "Two Tree Drawing Conventions" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "133--153" -, keywords = "layout, tree drawing, dynamic programming, classical convention, tip-over convention, NP-hardness" -, succeeds = "ell-ttdc-90" -, update = "96.09 devillers" +, author = "P. Eades and T. Lin and X. Lin" +, title = "Two Tree Drawing Conventions" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "133--153" +, keywords = "layout, tree drawing, dynamic programming, classical convention, tip-over convention, NP-hardness" +, succeeds = "ell-ttdc-90" +, update = "96.09 devillers" } @inproceedings{el-hddg-89 -, author = "P. Eades and X. Lin" -, title = "How to Draw a Directed Graph" -, booktitle = "Proc. IEEE Workshop on Visual Languages" -, nickname = "VL '89" -, year = 1989 -, pages = "13--17" -, keywords = "graph drawing" -, update = "98.07 bibrelex, 95.05 tamassia, 93.09 tamassia" +, author = "P. Eades and X. Lin" +, title = "How to Draw a Directed Graph" +, booktitle = "Proc. IEEE Workshop on Visual Languages" +, nickname = "VL '89" +, year = 1989 +, pages = "13--17" +, keywords = "graph drawing" +, update = "98.07 bibrelex, 95.05 tamassia, 93.09 tamassia" } @inproceedings{el-nlapd-91 -, author = "P. Eades and X. Lin" -, title = "Notes on the Layer Assignment Problem for Drawing Directed Graphs" -, booktitle = "ACSC 14: Proceedings of the 14th Australian Computer Science Conference" -, year = 1991 -, pages = "26.1--26.10" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades and X. Lin" +, title = "Notes on the Layer Assignment Problem for Drawing Directed Graphs" +, booktitle = "ACSC 14: Proceedings of the 14th Australian Computer Science Conference" +, year = 1991 +, pages = "26.1--26.10" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{elm-msgd-90 -, author = "P. Eades and X. Lin and B. D. McKay" -, title = "Models for symmetric graph drawing" -, type = "Manuscript" -, institution = "Univ. Queensland" -, year = 1990 -, update = "98.07 bibrelex" +, author = "P. Eades and X. Lin and B. D. McKay" +, title = "Models for symmetric graph drawing" +, type = "Manuscript" +, institution = "Univ. Queensland" +, year = 1990 +, update = "98.07 bibrelex" } @inproceedings{elt-nadhg-90 -, author = "P. Eades and X. Lin and R. Tamassia" -, title = "A new approach for drawing a hierarchical graph" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "143--146" -, precedes = "elt-adhg-92, elt-adhg-96" -, cites = "bm-gta-76, dn-atphg-87, cpru-cdfs-87, el-hddg-89, elm-msgd-90, et-adgab-89, ew-ecdbg-, gnv-dptdd-88, gj-cninc-83, lrt-gnd-79, m-ed2lh-88, rdmmst-bdg-87, s-cagd-87, stt-mvuhs-81, t-eggmn-87, t-hdg-63, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Eades and X. Lin and R. Tamassia" +, title = "A new approach for drawing a hierarchical graph" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "143--146" +, precedes = "elt-adhg-92, elt-adhg-96" +, cites = "bm-gta-76, dn-atphg-87, cpru-cdfs-87, el-hddg-89, elm-msgd-90, et-adgab-89, ew-ecdbg-, gnv-dptdd-88, gj-cninc-83, lrt-gnd-79, m-ed2lh-88, rdmmst-bdg-87, s-cagd-87, stt-mvuhs-81, t-eggmn-87, t-hdg-63, ZZZ" +, update = "98.07 bibrelex" } @misc{elt-adhg-92 -, author = "P. Eades and X. Lin and R. Tamassia" -, title = "An Algorithm for Drawing a Hierarchical Graph" -, year = 1992 -, keywords = "graph drawing" -, succeeds = "elt-nadhg-90" -, precedes = "elt-adhg-96" -, update = "98.03 bibrelex, 96.09 devillers, 93.09 tamassia" +, author = "P. Eades and X. Lin and R. Tamassia" +, title = "An Algorithm for Drawing a Hierarchical Graph" +, year = 1992 +, keywords = "graph drawing" +, succeeds = "elt-nadhg-90" +, precedes = "elt-adhg-96" +, update = "98.03 bibrelex, 96.09 devillers, 93.09 tamassia" } @article{elt-adhg-96 -, author = "P. Eades and X. Lin and R. Tamassia" -, title = "An Algorithm for Drawing a Hierarchical Graph" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "145--156" -, url = "https://www.cs.brown.edu/cgc/papers/elt-adhg-96.ps.gz" -, succeeds = "elt-adhg-92" -, update = "97.03 tamassia, 96.09 devillers" +, author = "P. Eades and X. Lin and R. Tamassia" +, title = "An Algorithm for Drawing a Hierarchical Graph" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "145--156" +, url = "https://www.cs.brown.edu/cgc/papers/elt-adhg-96.ps.gz" +, succeeds = "elt-adhg-92" +, update = "97.03 tamassia, 96.09 devillers" } @techreport{elw-pgmpt-90 -, author = "Peter Eades and Xuemin Lin and Nicolas C. Wormald" -, title = "Performance Guarantees for Motion Planning with Temporal Uncertainty" -, number = 173 -, institution = "Dept. of Computer Science, Univ. of Queensland" -, address = "St. Lucia, Queensland, Australia" -, year = 1990 -, precedes = "elw-pgmpt-93" -, update = "98.11 bibrelex, 98.07 bibrelex+icking, 98.03 icking+mitchell" +, author = "Peter Eades and Xuemin Lin and Nicolas C. Wormald" +, title = "Performance Guarantees for Motion Planning with Temporal Uncertainty" +, number = 173 +, institution = "Dept. of Computer Science, Univ. of Queensland" +, address = "St. Lucia, Queensland, Australia" +, year = 1990 +, precedes = "elw-pgmpt-93" +, update = "98.11 bibrelex, 98.07 bibrelex+icking, 98.03 icking+mitchell" } @article{elw-pgmpt-93 -, author = "Peter Eades and Xuemin Lin and Nicolas C. Wormald" -, title = "Performance Guarantees for Motion Planning with Temporal Uncertainty" -, journal = "Australian Computer Journal" -, volume = 25 -, number = 1 -, year = 1993 -, pages = "21--28" -, succeeds = "elw-pgmpt-90" -, update = "98.03 icking+mitchell" +, author = "Peter Eades and Xuemin Lin and Nicolas C. Wormald" +, title = "Performance Guarantees for Motion Planning with Temporal Uncertainty" +, journal = "Australian Computer Journal" +, volume = 25 +, number = 1 +, year = 1993 +, pages = "21--28" +, succeeds = "elw-pgmpt-90" +, update = "98.03 icking+mitchell" } @inproceedings{em-gdcr-95 -, author = "P. Eades and J. Marks" -, title = "Graph Drawing Contest Report" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "143--146" -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "P. Eades and J. Marks" +, title = "Graph Drawing Contest Report" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "143--146" +, keywords = "graph drawing" +, update = "95.01 tamassia" } @inproceedings{emn-gdcr-97 -, author = "Peter Eades and Joe Marks and Stephen North" -, title = "Graph-Drawing Contest Report" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "438--445" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Peter Eades and Joe Marks and Stephen North" +, title = "Graph-Drawing Contest Report" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "438--445" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{emw-ecp-86 -, author = "P. Eades and B. McKay and N. Wormald" -, title = "On an Edge Crossing Problem" -, booktitle = "Proc. 9th Australian Computer Science Conference" -, year = 1986 -, pages = "327--334" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades and B. McKay and N. Wormald" +, title = "On an Edge Crossing Problem" +, booktitle = "Proc. 9th Australian Computer Science Conference" +, year = 1986 +, pages = "327--334" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{er-ccmsp-93 -, author = "P. Eades and D. Rappaport" -, title = "The complexity of computing minimum separating polygons" -, journal = "Pattern Recogn. Lett." -, volume = 14 -, year = 1993 -, pages = "715--718" -, update = "98.03 bibrelex+mitchell, 93.09 milone+mitchell" +, author = "P. Eades and D. Rappaport" +, title = "The complexity of computing minimum separating polygons" +, journal = "Pattern Recogn. Lett." +, volume = 14 +, year = 1993 +, pages = "715--718" +, update = "98.03 bibrelex+mitchell, 93.09 milone+mitchell" } @article{esw-tkbtd-96 -, author = "P. Eades and C. Stirk and S. Whitesides" -, title = "The Techniques of {Kolmogorov} and {Bardzin} for Three Dimensional Orthogonal Graph Drawings" -, journal = "Inform. Process. Lett." -, volume = 60 -, year = 1996 -, pages = "97--103" -, keywords = "graph drawing, orthogonal, 3D" -, update = "98.11 tamassia" +, author = "P. Eades and C. Stirk and S. Whitesides" +, title = "The Techniques of {Kolmogorov} and {Bardzin} for Three Dimensional Orthogonal Graph Drawings" +, journal = "Inform. Process. Lett." +, volume = 60 +, year = 1996 +, pages = "97--103" +, keywords = "graph drawing, orthogonal, 3D" +, update = "98.11 tamassia" } @techreport{esw-tkbtd-95 -, author = "P. Eades and C. Stirk and S. Whitesides" -, title = "The Techniques of {Komolgorov} and {Bardzin} for Three Dimensional Orthogonal Graph Drawings" -, type = "Manuscript" -, institution = "Dept. of Computer Sci., Univ. of Newcastle" -, year = 1995 -, keywords = "graph drawing" -, update = "98.07 bibrelex, 96.09 tamassia" +, author = "P. Eades and C. Stirk and S. Whitesides" +, title = "The Techniques of {Komolgorov} and {Bardzin} for Three Dimensional Orthogonal Graph Drawings" +, type = "Manuscript" +, institution = "Dept. of Computer Sci., Univ. of Newcastle" +, year = 1995 +, keywords = "graph drawing" +, update = "98.07 bibrelex, 96.09 tamassia" } @article{es-hddg-91 -, author = "P. Eades and K. Sugiyama" -, title = "How to Draw a Directed Graph" -, journal = "J. Inform. Process." -, volume = 13 -, year = 1991 -, pages = "424--437" -, keywords = "graph drawing" -, update = "98.07 tamassia, 93.09 tamassia" +, author = "P. Eades and K. Sugiyama" +, title = "How to Draw a Directed Graph" +, journal = "J. Inform. Process." +, volume = 13 +, year = 1991 +, pages = "424--437" +, keywords = "graph drawing" +, update = "98.07 tamassia, 93.09 tamassia" } @inproceedings{esw-tatdo-97 -, author = "P. Eades and A. Symvonis and S. Whitesides" -, title = "Two Algorithms for Three Dimensional Orthogonal Graph Drawing" -, editor = "S. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "139--154" -, keywords = "graph drawing, 3D, orthogonal" -, update = "98.07 patrignani" +, author = "P. Eades and A. Symvonis and S. Whitesides" +, title = "Two Algorithms for Three Dimensional Orthogonal Graph Drawing" +, editor = "S. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "139--154" +, keywords = "graph drawing, 3D, orthogonal" +, update = "98.07 patrignani" } @techreport{et-aagda-87 -, author = "P. Eades and R. Tamassia" -, title = "Algorithms for automatic graph drawing: an annotated bibliography" -, type = "Report" -, number = 82 -, institution = "Department of Computer Science, University of Queensland" -, address = "St. Lucia, Queensland, Australia" -, year = 1987 -, keywords = "graph drawing" -, precedes = "et-adgab-89" -, update = "93.09 tamassia" +, author = "P. Eades and R. Tamassia" +, title = "Algorithms for automatic graph drawing: an annotated bibliography" +, type = "Report" +, number = 82 +, institution = "Department of Computer Science, University of Queensland" +, address = "St. Lucia, Queensland, Australia" +, year = 1987 +, keywords = "graph drawing" +, precedes = "et-adgab-89" +, update = "93.09 tamassia" } @techreport{et-adgab-89 -, author = "P. Eades and R. Tamassia" -, title = "Algorithms for Drawing Graphs: An Annotated Bibliography" -, type = "Report" -, number = "CS-09-89" -, institution = "Department of Computer Science, Brown University" -, address = "Providence, RI" -, month = feb -, year = 1989 -, keywords = "graph drawing, graph theory, computer graphics, bibliography" -, succeeds = "et-aagda-87" -, precedes = "dett-adgab-93" -, update = "93.09 jones+milone+mitchell+tamassia, 93.05 jones" -, annote = "``lists about 180 papers, both theoretical and - application oriented''" +, author = "P. Eades and R. Tamassia" +, title = "Algorithms for Drawing Graphs: An Annotated Bibliography" +, type = "Report" +, number = "CS-09-89" +, institution = "Department of Computer Science, Brown University" +, address = "Providence, RI" +, month = feb +, year = 1989 +, keywords = "graph drawing, graph theory, computer graphics, bibliography" +, succeeds = "et-aagda-87" +, precedes = "dett-adgab-93" +, update = "93.09 jones+milone+mitchell+tamassia, 93.05 jones" +, annote = "``lists about 180 papers, both theoretical and + application oriented''" } @article{ew-dgtl-94 -, author = "P. Eades and S. Whitesides" -, title = "Drawing Graphs in Two Layers" -, journal = "Theoret. Comput. Sci." -, volume = 131 -, number = 2 -, year = 1994 -, pages = "361--374" -, update = "98.07 vismara" +, author = "P. Eades and S. Whitesides" +, title = "Drawing Graphs in Two Layers" +, journal = "Theoret. Comput. Sci." +, volume = 131 +, number = 2 +, year = 1994 +, pages = "361--374" +, update = "98.07 vismara" } @inproceedings{ew-rpems-94 -, author = "P. Eades and S. Whitesides" -, title = "The Realization Problem for {Euclidean} Minimum Spanning Trees is {NP}-Hard" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "49--56" -, keywords = "graph drawing, proximity, NP-hardness" -, cites = "bll-cpt-93, b-ndgta-88, ds-ltati-92, ds-smrdd-93, e-dft-92, gj-cigtn-79, i-dtg-90, mrh-dcaal-91, ms-tgmst-91, rt-tdt-81, s-rrddl-84, v-ucvc-81, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex, 94.09 jones, 94.01 jones" +, author = "P. Eades and S. Whitesides" +, title = "The Realization Problem for {Euclidean} Minimum Spanning Trees is {NP}-Hard" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "49--56" +, keywords = "graph drawing, proximity, NP-hardness" +, cites = "bll-cpt-93, b-ndgta-88, ds-ltati-92, ds-smrdd-93, e-dft-92, gj-cigtn-79, i-dtg-90, mrh-dcaal-91, ms-tgmst-91, rt-tdt-81, s-rrddl-84, v-ucvc-81, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex, 94.09 jones, 94.01 jones" } @article{ew-rpems-96 -, author = "P. Eades and S. Whitesides" -, title = "The Realization Problem for {Euclidean} Minimum Spanning Trees is {NP}-hard" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "60--82" -, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" -, keywords = "graph drawing, proximity, NP-hardness" -, succeeds = "ew-rpems-94" -, update = "96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" +, author = "P. Eades and S. Whitesides" +, title = "The Realization Problem for {Euclidean} Minimum Spanning Trees is {NP}-hard" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "60--82" +, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" +, keywords = "graph drawing, proximity, NP-hardness" +, succeeds = "ew-rpems-94" +, update = "96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" } @techreport{ew-ecdbg- -, author = "P. Eades and N. Wormald" -, title = "Edge Crossings in Drawings of Bipartite Graphs" -, number = 108 -, institution = "Department of Computer Science, University of Queensland" -, note = "to appear in Algorithmica" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades and N. Wormald" +, title = "Edge Crossings in Drawings of Bipartite Graphs" +, number = 108 +, institution = "Department of Computer Science, University of Queensland" +, note = "to appear in Algorithmica" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ew-felgd-90 -, author = "P. Eades and N. Wormald" -, title = "Fixed Edge Length Graph Drawing is {NP}-hard" -, journal = "Discrete Appl. Math." -, volume = 28 -, year = 1990 -, pages = "111--134" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades and N. Wormald" +, title = "Fixed Edge Length Graph Drawing is {NP}-hard" +, journal = "Discrete Appl. Math." +, volume = 28 +, year = 1990 +, pages = "111--134" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{ew-mhd2l-86 -, author = "P. Eades and N. Wormald" -, title = "The Median Heuristic for Drawing 2-Layered Networks" -, number = 69 -, institution = "Department of Computer Science, University of Queensland" -, year = 1986 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Eades and N. Wormald" +, title = "The Median Heuristic for Drawing 2-Layered Networks" +, number = 69 +, institution = "Department of Computer Science, University of Queensland" +, year = 1986 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ew-ecdbg-94 -, author = "P. Eades and N. C. Wormald" -, title = "Edge Crossings in Drawings of Bipartite Graphs" -, journal = "Algorithmica" -, volume = 11 -, number = 4 -, year = 1994 -, pages = "379--403" -, keywords = "graph drawing, NP-complete, crossings, bipartite, layered" -, succeeds = "ew-ecdbg-" -, update = "98.07 tamassia+vismara" +, author = "P. Eades and N. C. Wormald" +, title = "Edge Crossings in Drawings of Bipartite Graphs" +, journal = "Algorithmica" +, volume = 11 +, number = 4 +, year = 1994 +, pages = "379--403" +, keywords = "graph drawing, NP-complete, crossings, bipartite, layered" +, succeeds = "ew-ecdbg-" +, update = "98.07 tamassia+vismara" } @article{e-dft-92 -, author = "P. D. Eades" -, title = "Drawing Free Trees" -, journal = "Bulletin of the Institute for Combinatorics and its Applications" -, volume = 5 -, year = 1992 -, pages = "10--36" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. D. Eades" +, title = "Drawing Free Trees" +, journal = "Bulletin of the Institute for Combinatorics and its Applications" +, volume = 5 +, year = 1992 +, pages = "10--36" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{e-tfcgc-88 -, title = "Theoretical Foundations of Computer Graphics and {CAD}" -, editor = "R. A. Earnshaw" -, series = "NATA ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1988 -, update = "99.11 bibrelex, 98.03 bibrelex" +, title = "Theoretical Foundations of Computer Graphics and {CAD}" +, editor = "R. A. Earnshaw" +, series = "NATA ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1988 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{e-obsnn-81 -, author = "C. M. Eastman" -, title = "Optimal bucket size for nearest neighbor searching in $k$-d trees" -, journal = "Inform. Process. Lett." -, volume = 12 -, year = 1981 -, pages = "165--167" +, author = "C. M. Eastman" +, title = "Optimal bucket size for nearest neighbor searching in $k$-d trees" +, journal = "Inform. Process. Lett." +, volume = 12 +, year = 1981 +, pages = "165--167" } @article{e-rsp-70 -, author = "C. M. Eastman" -, title = "Representations for space planing" -, journal = "Commun. ACM" -, volume = 13 -, year = 1970 -, pages = "242--250" -, update = "97.11 bibrelex" +, author = "C. M. Eastman" +, title = "Representations for space planing" +, journal = "Commun. ACM" +, volume = 13 +, year = 1970 +, pages = "242--250" +, update = "97.11 bibrelex" } @techreport{ew-gmueo-79 -, author = "C. M. Eastman and K. Weiler" -, title = "Geometric modeling using the {Euler} operator" -, type = "Research {Report}" -, number = 78 -, institution = "Institute of Physical Planning, Carnegie Mellon Univ." -, address = "Pittsburgh, PA" -, month = feb -, year = 1979 -, update = "98.03 bibrelex" +, author = "C. M. Eastman and K. Weiler" +, title = "Geometric modeling using the {Euler} operator" +, type = "Research {Report}" +, number = 78 +, institution = "Institute of Physical Planning, Carnegie Mellon Univ." +, address = "Pittsburgh, PA" +, month = feb +, year = 1979 +, update = "98.03 bibrelex" } @techreport{ey-eafui-72 -, author = "C. M. Eastman and C. I. Yessios" -, title = "An Efficient Algorithm for Finding the Union, Intersection, and Differences of Spatial Domains" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, month = sep -, year = 1972 -, update = "98.03 bibrelex" +, author = "C. M. Eastman and C. I. Yessios" +, title = "An Efficient Algorithm for Finding the Union, Intersection, and Differences of Spatial Domains" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, month = sep +, year = 1972 +, update = "98.03 bibrelex" } @article{ez-psnns-82 -, author = "C. M. Eastman and M. Zemankova" -, title = "Partially specified nearest neighbor searches using $k$-d trees" -, journal = "Inform. Process. Lett." -, volume = 15 -, year = 1982 -, pages = "53--56" +, author = "C. M. Eastman and M. Zemankova" +, title = "Partially specified nearest neighbor searches using $k$-d trees" +, journal = "Inform. Process. Lett." +, volume = 15 +, year = 1982 +, pages = "53--56" } @inproceedings{efnn-rauvd-89 -, author = "H. Ebara and N. Fukuyama and H. Nakano and Y. Nakanishi" -, title = "Roundness algorithms using the {Voronoi} diagrams" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 41 +, author = "H. Ebara and N. Fukuyama and H. Nakano and Y. Nakanishi" +, title = "Roundness algorithms using the {Voronoi} diagrams" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 41 } @techreport{enn-ptafr-85 -, author = "H. Ebara and H. Nakano and Y. Nakanishi" -, title = "A polynomial-time algorithm to find the roundness" -, type = "Report" -, number = "??" -, institution = "Dept. Commun. Engrg., Osaka Univ." -, year = 1985 +, author = "H. Ebara and H. Nakano and Y. Nakanishi" +, title = "A polynomial-time algorithm to find the roundness" +, type = "Report" +, number = "??" +, institution = "Dept. Commun. Engrg., Osaka Univ." +, year = 1985 } @article{e-ubtfc-85 -, author = "J. Eckhoff" -, title = "An upper bound theorem for families of convex sets" -, journal = "Geom. Dedicata" -, volume = 19 -, year = 1985 -, pages = "217--227" -, update = "97.11 bibrelex" +, author = "J. Eckhoff" +, title = "An upper bound theorem for families of convex sets" +, journal = "Geom. Dedicata" +, volume = 19 +, year = 1985 +, pages = "217--227" +, update = "97.11 bibrelex" } @incollection{e-hrctt-93 -, author = "J. Eckhoff" -, title = "Helly, {Radon} and {Carath\'eodory} type theorems" -, booktitle = "Handbook of Convex Geometry" -, publisher = "North-Holland" -, year = 1993 -, pages = "389--448" -, update = "95.09 wenger, 95.01 matousek" +, author = "J. Eckhoff" +, title = "Helly, {Radon} and {Carath\'eodory} type theorems" +, booktitle = "Handbook of Convex Geometry" +, publisher = "North-Holland" +, year = 1993 +, pages = "389--448" +, update = "95.09 wenger, 95.01 matousek" } @incollection{e-rt-79 -, author = "J. Eckhoff" -, title = "{Radon's} theorem" -, editor = "J. T{\"o}lke and J. M. Wills" -, booktitle = "Contributions to Geometry" -, publisher = "Birkh{\"a}user" -, year = 1979 -, pages = "164--185" -, update = "98.03 bibrelex" +, author = "J. Eckhoff" +, title = "{Radon's} theorem" +, editor = "J. T{\"o}lke and J. M. Wills" +, booktitle = "Contributions to Geometry" +, publisher = "Birkh{\"a}user" +, year = 1979 +, pages = "164--185" +, update = "98.03 bibrelex" } @inproceedings{esg-cgcra-00 -, author = "Ilya Eckstein and Vitaly Surazhsky and Craig Gotsman" -, title = "Compatible Geometries by Convex Representations with Applications to Computer Graphics" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "45--46" -, update = "00.03 bibrelex" +, author = "Ilya Eckstein and Vitaly Surazhsky and Craig Gotsman" +, title = "Compatible Geometries by Convex Representations with Applications to Computer Graphics" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "45--46" +, update = "00.03 bibrelex" } @mastersthesis{e-hbr-94 -, author = "J. Eckstein" -, title = "Heuristische {Bewegungsplanungsstrategien} im {$IR^3$}" -, type = "M.{Sc}. Thesis" -, school = "Dept. Comput. Sci., University Saarland" -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, url = "http://hamster.cs.uni-sb.de/~eckstein/publications/Diplom-Eckstein.ps.Z" -, keywords = "master thesis, motion planning, collision detection, heuristic" -, update = "95.09 chadzelek" +, author = "J. Eckstein" +, title = "Heuristische {Bewegungsplanungsstrategien} im {$IR^3$}" +, type = "M.{Sc}. Thesis" +, school = "Dept. Comput. Sci., University Saarland" +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, url = "http://hamster.cs.uni-sb.de/~eckstein/publications/Diplom-Eckstein.ps.Z" +, keywords = "master thesis, motion planning, collision detection, heuristic" +, update = "95.09 chadzelek" } @techreport{ehs-hbr-95 -, author = "J. Eckstein and G. Hotz and E. Sch{\"o}mer" -, title = "Heuristische {Bewegungsplanungsstrategien} im {$IR^3$}" -, type = "Report" -, number = "95-05" -, institution = "Dept. Comput. Sci., University Saarland" -, address = "Saarbr{\"u}cken, Germany" -, year = 1995 -, url = "http://hamster.cs.uni-sb.de/~eckstein/publications/FB14-95-05.ps.Z" -, keywords = "motion planning, collision detection, heuristic" -, update = "95.09 chadzelek" +, author = "J. Eckstein and G. Hotz and E. Sch{\"o}mer" +, title = "Heuristische {Bewegungsplanungsstrategien} im {$IR^3$}" +, type = "Report" +, number = "95-05" +, institution = "Dept. Comput. Sci., University Saarland" +, address = "Saarbr{\"u}cken, Germany" +, year = 1995 +, url = "http://hamster.cs.uni-sb.de/~eckstein/publications/FB14-95-05.ps.Z" +, keywords = "motion planning, collision detection, heuristic" +, update = "95.09 chadzelek" } @article{epo-taasm-91 -, author = "A. B. Ecoule and F. C. Peyrin and C. L. Odet" -, title = "A triangulation algorithm for arbitrary shaped multiple planar contours" -, journal = "ACM Trans. Graph." -, volume = 10 -, number = 2 -, year = 1991 -, pages = "182--199" -, keywords = "polygons, triangulation, contours, surfaces" -, update = "95.09 korneenko" +, author = "A. B. Ecoule and F. C. Peyrin and C. L. Odet" +, title = "A triangulation algorithm for arbitrary shaped multiple planar contours" +, journal = "ACM Trans. Graph." +, volume = 10 +, number = 2 +, year = 1991 +, pages = "182--199" +, keywords = "polygons, triangulation, contours, surfaces" +, update = "95.09 korneenko" } @book{c-mangg-91 -, author = "J. E. Castillo (ed)" -, title = "Mathematical Aspects of Numerical Grid Generation" -, publisher = "Soc. for Industrial and Applied Math." -, address = "Philadelphia" -, year = 1991 -, update = "98.11 bibrelex" +, author = "J. E. Castillo (ed)" +, title = "Mathematical Aspects of Numerical Grid Generation" +, publisher = "Soc. for Industrial and Applied Math." +, address = "Philadelphia" +, year = 1991 +, update = "98.11 bibrelex" } % inexact booktitle @inproceedings{e-nbtai-88 -, author = "M. Edahiro" -, title = "A new bucketing technique for automatic/interactive layout design" -, editor = "Carlo Sequin" -, booktitle = "Proc. Conf. VLSI '87" -, year = 1988 -, pages = "391--401" -, keywords = "bucketing, isothetic, VLSI design" -, update = "95.09 korneenko" +, author = "M. Edahiro" +, title = "A new bucketing technique for automatic/interactive layout design" +, editor = "Carlo Sequin" +, booktitle = "Proc. Conf. VLSI '87" +, year = 1988 +, pages = "391--401" +, keywords = "bucketing, isothetic, VLSI design" +, update = "95.09 korneenko" } @techreport{eia-arspi-?? -, author = "M. Edahiro and M. Iri and Ta. Asano" -, title = "An algorithm for the range-search problem and its practical efficiency" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "M. Edahiro and M. Iri and Ta. Asano" +, title = "An algorithm for the range-search problem and its practical efficiency" +, type = "Manuscript" +, institution = "??" +, year = "??" } @article{eka-nplai-84 -, author = "M. Edahiro and I. Kokubo and T. Asano" -, title = "A New Point-Location Algorithm and its Practical Efficiency --- {C}omparison with Existing Algorithms" -, journal = "ACM Trans. Graph." -, volume = 3 -, number = 2 -, year = 1984 -, pages = "86--109" -, keywords = "point location, bucketing, implementing algorithms" -, update = "98.07 tamassia" +, author = "M. Edahiro and I. Kokubo and T. Asano" +, title = "A New Point-Location Algorithm and its Practical Efficiency --- {C}omparison with Existing Algorithms" +, journal = "ACM Trans. Graph." +, volume = 3 +, number = 2 +, year = 1984 +, pages = "86--109" +, keywords = "point location, bucketing, implementing algorithms" +, update = "98.07 tamassia" } @inproceedings{etha-baosi-87 -, author = "M. Edahiro and K. Tanaka and R. Hoshino and Ta. Asano" -, title = "A bucketing algorithm for the orthogonal segment intersection search problem and its practical efficiency" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "258--267" -, precedes = "etha-baosi-89" -, cites = "aeiim-pubtc-85, c-fsnaq-86, egs-oplms-86, m-pst-85, vw-rlsil-82, ZZZ" -, update = "98.03 bibrelex" +, author = "M. Edahiro and K. Tanaka and R. Hoshino and Ta. Asano" +, title = "A bucketing algorithm for the orthogonal segment intersection search problem and its practical efficiency" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "258--267" +, precedes = "etha-baosi-89" +, cites = "aeiim-pubtc-85, c-fsnaq-86, egs-oplms-86, m-pst-85, vw-rlsil-82, ZZZ" +, update = "98.03 bibrelex" } @article{etha-baosi-89 -, author = "M. Edahiro and K. Tanaka and R. Hoshino and Ta. Asano" -, title = "A bucketing algorithm for the orthogonal segment intersection search problem and its practical efficiency" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "61--76" -, succeeds = "etha-baosi-87" +, author = "M. Edahiro and K. Tanaka and R. Hoshino and Ta. Asano" +, title = "A bucketing algorithm for the orthogonal segment intersection search problem and its practical efficiency" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "61--76" +, succeeds = "etha-baosi-87" } @article{e-nchap-77 -, author = "W. F. Eddy" -, title = "A new convex hull algorithm for planar sets" -, journal = "ACM Trans. Math. Softw." -, volume = 3 -, year = 1977 -, pages = "398--403 and 411--412" -, keywords = "design of algorithms, convex hull, two-dimensional, expected-case analysis" -, annote = "$O(n)$ time" +, author = "W. F. Eddy" +, title = "A new convex hull algorithm for planar sets" +, journal = "ACM Trans. Math. Softw." +, volume = 3 +, year = 1977 +, pages = "398--403 and 411--412" +, keywords = "design of algorithms, convex hull, two-dimensional, expected-case analysis" +, annote = "$O(n)$ time" } @article{e-a523c-77 -, author = "W. F. Eddy" -, title = "Algorithm 523 {CONVEX}: {A} new convex hull algorithm for planar sets" -, journal = "Collected Algorithms from ACM" -, volume = "??" -, year = 1977 -, pages = "523p1--523p6" -, keywords = "convex hull, points" -, update = "95.09 korneenko" +, author = "W. F. Eddy" +, title = "Algorithm 523 {CONVEX}: {A} new convex hull algorithm for planar sets" +, journal = "Collected Algorithms from ACM" +, volume = "??" +, year = 1977 +, pages = "523p1--523p6" +, keywords = "convex hull, points" +, update = "95.09 korneenko" } % inexact booktitle @inproceedings{e-chp-82 -, author = "W. F. Eddy" -, title = "Convex hull peeling" -, booktitle = "Proc. Sympos. on Computational Statistics, Part 1" -, year = 1982 -, pages = "42--47" -, keywords = "convex hull, pointset, peeling" -, update = "95.09 korneenko" +, author = "W. F. Eddy" +, title = "Convex hull peeling" +, booktitle = "Proc. Sympos. on Computational Statistics, Part 1" +, year = 1982 +, pages = "42--47" +, keywords = "convex hull, pointset, peeling" +, update = "95.09 korneenko" } % not a journal, according to Math Reviews or INSPEC serials lists @inproceedings{e-dmsc-80 -, author = "W. F. Eddy" -, title = "Discrete methods for statistical computation" -, booktitle = "Proc. Statist. Comput. Sec., Amer. Statist. Assoc." -, year = 1980 -, pages = "27--31" +, author = "W. F. Eddy" +, title = "Discrete methods for statistical computation" +, booktitle = "Proc. Statist. Comput. Sec., Amer. Statist. Assoc." +, year = 1980 +, pages = "27--31" } @article{e-dchgs-80 -, author = "W. F. Eddy" -, title = "Distribution of the convex hull of a {Gaussian} sample" -, journal = "J. Appl. Probab." -, volume = 17 -, number = 3 -, year = 1980 -, pages = "686--695" -, keywords = "convex hull, probabilistic geometry" -, update = "95.09 korneenko" +, author = "W. F. Eddy" +, title = "Distribution of the convex hull of a {Gaussian} sample" +, journal = "J. Appl. Probab." +, volume = 17 +, number = 3 +, year = 1980 +, pages = "686--695" +, keywords = "convex hull, probabilistic geometry" +, update = "95.09 korneenko" } @article{eg-bt-87 -, author = "P. Edelman and C. Greene" -, title = "Balanced tableaux" -, journal = "Adv. Math." -, volume = 63 -, year = 1987 -, pages = "42--99" -, update = "97.11 bibrelex" +, author = "P. Edelman and C. Greene" +, title = "Balanced tableaux" +, journal = "Adv. Math." +, volume = 63 +, year = 1987 +, pages = "42--99" +, update = "97.11 bibrelex" } @article{eg-ccytb-84 -, author = "P. Edelman and C. Greene" -, title = "Combinatorial correspondences for Young tableaux, balanced tableaux, and maximal chains in the {Bruhat} order of $S_n$" -, journal = "Proc. Amer. Math. Soc." -, volume = 34 -, year = 1984 -, note = "Combinatorics and Algebra, Contemporary Math." -, update = "98.11 bibrelex" +, author = "P. Edelman and C. Greene" +, title = "Combinatorial correspondences for Young tableaux, balanced tableaux, and maximal chains in the {Bruhat} order of $S_n$" +, journal = "Proc. Amer. Math. Soc." +, volume = 34 +, year = 1984 +, note = "Combinatorics and Algebra, Contemporary Math." +, update = "98.11 bibrelex" } @book{e-gtmg-01 -, author = "E. Edelsbrunner" -, title = "Geometry and Topology for Mesh Generation" -, publisher = "Cambridge" -, year = 2001 -, note = "" -, update = "02.03 pocchiola" +, author = "E. Edelsbrunner" +, title = "Geometry and Topology for Mesh Generation" +, publisher = "Cambridge" +, year = 2001 +, note = "" +, update = "02.03 pocchiola" } @article{e-narip1-83 -, author = "H. Edelsbrunner" -, title = "A new approach to rectangle intersections, {Part} {I}" -, journal = "Internat. J. Comput. Math." -, volume = 13 -, year = 1983 -, pages = "209--219" -, keywords = "data structuring, searching, reporting, dynamizing data structures, interval trees, worst-case analysis, intervals, one-dimensional" +, author = "H. Edelsbrunner" +, title = "A new approach to rectangle intersections, {Part} {I}" +, journal = "Internat. J. Comput. Math." +, volume = 13 +, year = 1983 +, pages = "209--219" +, keywords = "data structuring, searching, reporting, dynamizing data structures, interval trees, worst-case analysis, intervals, one-dimensional" } @article{e-narip2-83 -, author = "H. Edelsbrunner" -, title = "A new approach to rectangle intersections, {Part} {II}" -, journal = "Internat. J. Comput. Math." -, volume = 13 -, year = 1983 -, pages = "221--229" -, keywords = "design of algorithms, reporting, intersection, plane-sweep, repeated search, interval trees, intervals, rectangles, two-dimensional" +, author = "H. Edelsbrunner" +, title = "A new approach to rectangle intersections, {Part} {II}" +, journal = "Internat. J. Comput. Math." +, volume = 13 +, year = 1983 +, pages = "221--229" +, keywords = "design of algorithms, reporting, intersection, plane-sweep, repeated search, interval trees, intervals, rectangles, two-dimensional" } @article{e-ndrs-81 -, author = "H. Edelsbrunner" -, title = "A note on dynamic range searching" -, journal = "Bull. EATCS" -, volume = 15 -, year = 1981 -, pages = "34--40" -, keywords = "data structuring, searching, reporting, range search, range trees, priority search trees, points, hyperrectangles, $d$-dimensional" +, author = "H. Edelsbrunner" +, title = "A note on dynamic range searching" +, journal = "Bull. EATCS" +, volume = 15 +, year = 1981 +, pages = "34--40" +, keywords = "data structuring, searching, reporting, range search, range trees, priority search trees, points, hyperrectangles, $d$-dimensional" } @techreport{e-adncp-95 -, author = "H. Edelsbrunner" -, title = "Algebraic decomposition of non-convex polyhedra" -, number = "UIUCDCS-R-95-1928" -, institution = "University of Illinois at Urbana-Champaign" -, month = aug -, year = 1995 -, update = "96.05 ramkumar" +, author = "H. Edelsbrunner" +, title = "Algebraic decomposition of non-convex polyhedra" +, number = "UIUCDCS-R-95-1928" +, institution = "University of Illinois at Urbana-Champaign" +, month = aug +, year = 1995 +, update = "96.05 ramkumar" } @inproceedings{e-adnp-95 -, author = "Herbert Edelsbrunner" -, title = "Algebraic decomposition of non-convex polyhedra" -, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '95" -, year = 1995 -, pages = "248--257" -, update = "98.07 bibrelex, 97.07 smid, 97.03 agarwal, 95.09 mitchell" +, author = "Herbert Edelsbrunner" +, title = "Algebraic decomposition of non-convex polyhedra" +, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '95" +, year = 1995 +, pages = "248--257" +, update = "98.07 bibrelex, 97.07 smid, 97.03 agarwal, 95.09 mitchell" } @book{e-acg-87 -, author = "H. Edelsbrunner" -, title = "Algorithms in Combinatorial Geometry" -, series = "EATCS Monographs on Theoretical Computer Science" -, volume = 10 -, publisher = "Springer-Verlag" -, address = "Heidelberg, West Germany" -, year = 1987 -, keywords = "design of algorithms, discrete geometry, book" -, update = "93.09 erickson" +, author = "H. Edelsbrunner" +, title = "Algorithms in Combinatorial Geometry" +, series = "EATCS Monographs on Theoretical Computer Science" +, volume = 10 +, publisher = "Springer-Verlag" +, address = "Heidelberg, West Germany" +, year = 1987 +, keywords = "design of algorithms, discrete geometry, book" +, update = "93.09 erickson" } @inproceedings{e-atccd-89 -, author = "H. Edelsbrunner" -, title = "An acyclicity theorem for cell complexes in $d$ dimensions" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "145--151" -, precedes = "e-atccd-90" -, cites = "a-pdpaa-87, c-hsh-85, d-slsv-34, e-acg-87, eks-sspp-83, dfpn-stdt-88, fd-ficg-82, fkn-vsgpt-80, v-nadpc-07, ZZZ" -, update = "98.03 bibrelex" +, author = "H. Edelsbrunner" +, title = "An acyclicity theorem for cell complexes in $d$ dimensions" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "145--151" +, precedes = "e-atccd-90" +, cites = "a-pdpaa-87, c-hsh-85, d-slsv-34, e-acg-87, eks-sspp-83, dfpn-stdt-88, fd-ficg-82, fkn-vsgpt-80, v-nadpc-07, ZZZ" +, update = "98.03 bibrelex" } @article{e-atccd-90 -, author = "H. Edelsbrunner" -, title = "An acyclicity theorem for cell complexes in $d$ dimensions" -, journal = "Combinatorica" -, volume = 10 -, number = 3 -, year = 1990 -, pages = "251--260" -, succeeds = "e-atccd-89" -, update = "98.11 bibrelex" +, author = "H. Edelsbrunner" +, title = "An acyclicity theorem for cell complexes in $d$ dimensions" +, journal = "Combinatorica" +, volume = 10 +, number = 3 +, year = 1990 +, pages = "251--260" +, succeeds = "e-atccd-89" +, update = "98.11 bibrelex" } @book{e-agc- -, author = "H. Edelsbrunner" -, title = "Arrangements and geometric computations" -, publisher = "??" -, year = "??" -, note = "Forthcoming book" -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner" +, title = "Arrangements and geometric computations" +, publisher = "??" +, year = "??" +, note = "Forthcoming book" +, update = "97.11 bibrelex" } @article{e-cedbt-85 -, author = "H. Edelsbrunner" -, title = "Computing the extreme distances between two convex polygons" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "213--224" -, keywords = "design of algorithms, binary search, lower bounds, distance, polygons, convex, two-dimensional" +, author = "H. Edelsbrunner" +, title = "Computing the extreme distances between two convex polygons" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "213--224" +, keywords = "design of algorithms, binary search, lower bounds, distance, polygons, convex, two-dimensional" } @techreport{e-cestd-84 -, author = "H. Edelsbrunner" -, title = "Constructing edge-skeletons in three dimensions with applications to power diagrams and dissecting three-dimensional point-sets" -, number = "F140" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1984 -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner" +, title = "Constructing edge-skeletons in three dimensions with applications to power diagrams and dissecting three-dimensional point-sets" +, number = "F140" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1984 +, update = "97.11 bibrelex" } @article{e-dssd-98 -, author = "H. Edelsbrunner" -, title = "Deformable smooth surface design" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "to appear" -, update = "98.03 agarwal" +, author = "H. Edelsbrunner" +, title = "Deformable smooth surface design" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "to appear" +, update = "98.03 agarwal" } @techreport{e-ddsoi-80 -, author = "H. Edelsbrunner" -, title = "Dynamic data structures for orthogonal intersection queries" -, type = "Report" -, number = "F59" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1980 -, keywords = "data structuring, searching, intersection, dynamizing data structures, range trees, segment trees, interval trees, hyperrectangles, $d$-dimensional" +, author = "H. Edelsbrunner" +, title = "Dynamic data structures for orthogonal intersection queries" +, type = "Report" +, number = "F59" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1980 +, keywords = "data structuring, searching, intersection, dynamizing data structures, range trees, segment trees, interval trees, hyperrectangles, $d$-dimensional" } @article{e-esaa-86 -, author = "H. Edelsbrunner" -, title = "Edge-skeletons in arrangements with applications" -, journal = "Algorithmica" -, volume = 1 -, year = 1986 -, pages = "93--109" -, keywords = "design of algorithms, implementing algorithms, combinatorial geometry, construction, repeated search, graph traversal, geometric transformations, planes, three-dimensional" +, author = "H. Edelsbrunner" +, title = "Edge-skeletons in arrangements with applications" +, journal = "Algorithmica" +, volume = 1 +, year = 1986 +, pages = "93--109" +, keywords = "design of algorithms, implementing algorithms, combinatorial geometry, construction, repeated search, graph traversal, geometric transformations, planes, three-dimensional" } @article{e-ftssg-85 -, author = "H. Edelsbrunner" -, title = "Finding transversals for sets of simple geometric figures" -, journal = "Theoret. Comput. Sci." -, volume = 35 -, year = 1985 -, pages = "55--69" -, keywords = "design of algorithms, combinatorial geometry, detection, intersection, convex hull, linear programming, geometric transformations, translates, homothets" +, author = "H. Edelsbrunner" +, title = "Finding transversals for sets of simple geometric figures" +, journal = "Theoret. Comput. Sci." +, volume = 35 +, year = 1985 +, pages = "55--69" +, keywords = "design of algorithms, combinatorial geometry, detection, intersection, convex hull, linear programming, geometric transformations, translates, homothets" } @incollection{e-ga-93 -, author = "H. Edelsbrunner" -, title = "Geometric algorithms" -, chapter = "2.9" -, editor = "Peter M. Gruber and J. M. Wills" -, booktitle = "Handbook of Convex Geometry" -, volume = "A" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1993 -, pages = "699--735" -, keywords = "survey paper" -, update = "93.09 rote" +, author = "H. Edelsbrunner" +, title = "Geometric algorithms" +, chapter = "2.9" +, editor = "Peter M. Gruber and J. M. Wills" +, booktitle = "Handbook of Convex Geometry" +, volume = "A" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1993 +, pages = "699--735" +, keywords = "survey paper" +, update = "93.09 rote" } @inproceedings{e-gscg-88 -, author = "H. Edelsbrunner" -, title = "Geometric structures in computational geometry" -, booktitle = "Proc. 15th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 317 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "201--213" -, keywords = "arrangements" +, author = "H. Edelsbrunner" +, title = "Geometric structures in computational geometry" +, booktitle = "Proc. 15th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 317 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "201--213" +, keywords = "arrangements" } @article{e-gatcg-87 -, author = "H. Edelsbrunner" -, title = "Geometrics and algorithmics: a tutorial in computational geometry" -, journal = "Bull. EATCS" -, volume = 32 -, year = 1987 -, pages = "118--142" -, keywords = "convex hull, range search, tutorial" +, author = "H. Edelsbrunner" +, title = "Geometrics and algorithmics: a tutorial in computational geometry" +, journal = "Bull. EATCS" +, volume = 32 +, year = 1987 +, pages = "118--142" +, keywords = "convex hull, range search, tutorial" } @incollection{e-gmb-98 -, author = "H. Edelsbrunner" -, title = "Geometry of modeling biomolecules" -, editor = "P. K. Agarwal and L. E. Kavraki and M. Mason" -, booktitle = "Proc. Workshop Algorithmic Found. Robot." -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1998 -, note = "to appear" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "H. Edelsbrunner" +, title = "Geometry of modeling biomolecules" +, editor = "P. K. Agarwal and L. E. Kavraki and M. Mason" +, booktitle = "Proc. Workshop Algorithmic Found. Robot." +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1998 +, note = "to appear" +, update = "98.07 agarwal, 98.03 agarwal" } @phdthesis{e-ipcg-82 -, author = "H. Edelsbrunner" -, title = "Intersection problems in computational geometry" -, type = "Ph.{D}. Thesis" -, school = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1982 -, note = "Report F93" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "H. Edelsbrunner" +, title = "Intersection problems in computational geometry" +, type = "Ph.{D}. Thesis" +, school = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1982 +, note = "Report F93" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @inproceedings{e-kpkmc-84 -, author = "H. Edelsbrunner" -, title = "Key-problems and key-methods in computational geometry" -, booktitle = "Proc. 1st Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 166 -, publisher = "Springer-Verlag" -, year = 1984 -, pages = "1--13" -, keywords = "survey paper" +, author = "H. Edelsbrunner" +, title = "Key-problems and key-methods in computational geometry" +, booktitle = "Proc. 1st Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 166 +, publisher = "Springer-Verlag" +, year = 1984 +, pages = "1--13" +, keywords = "survey paper" } @incollection{e-lscr-91 -, author = "H. Edelsbrunner" -, title = "Lines in space: a collection of results" -, booktitle = "??" -, series = "DIMACS Series Discrete. Math. Theoret. Computer Sci." -, volume = 6 -, year = 1991 -, pages = "77--93" -, keywords = "$3$-dimensional, lines, arrangement, survey, weaving, incidence, intersection, envelope, terrain" -, update = "95.09 korneenko" +, author = "H. Edelsbrunner" +, title = "Lines in space: a collection of results" +, booktitle = "??" +, series = "DIMACS Series Discrete. Math. Theoret. Computer Sci." +, volume = 6 +, year = 1991 +, pages = "77--93" +, keywords = "$3$-dimensional, lines, arrangement, survey, weaving, incidence, intersection, envelope, terrain" +, update = "95.09 korneenko" } @techreport{e-mdppp-87 -, author = "H. Edelsbrunner" -, title = "Minimum diameter partitioning of a planar point set in quadratic time" -, type = "Report" -, number = "UIUCDCS-R-87-1378" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1987 -, keywords = "partition, stabbing, optimization, diameter, divide-and-conquer, worst-case analysis" +, author = "H. Edelsbrunner" +, title = "Minimum diameter partitioning of a planar point set in quadratic time" +, type = "Report" +, number = "UIUCDCS-R-87-1378" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1987 +, keywords = "partition, stabbing, optimization, diameter, divide-and-conquer, worst-case analysis" } @inproceedings{e-msctg-94 -, author = "H. Edelsbrunner" -, title = "Modeling with Simplicial Complexes: {Topology}, Geometry, and Algorithms" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "36--44" -, keywords = "solid modeling, combinatorial topology, grid generation, simplicial complexes, nerves, Voronoi cells, Delaunay simplicial complexes" -, cites = "as-dsdem-92, e-ubids-93, ef-msfdv-94, em-sstcd-90, es-tts-94, fku-osrpc-77, gghkk-vcem-89, g-gsh-81, lr-ipses-71, l-slfde-45, m-eat-84, pbcf-dimsc-93, r-avpps-77, ss-codmf-90, v-nadpc-07, y-stgd-90, c-mangg-91, d-slsv-34, ZZZ" -, update = "98.11 bibrelex, 95.09 agarwal, 94.09 jones" +, author = "H. Edelsbrunner" +, title = "Modeling with Simplicial Complexes: {Topology}, Geometry, and Algorithms" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "36--44" +, keywords = "solid modeling, combinatorial topology, grid generation, simplicial complexes, nerves, Voronoi cells, Delaunay simplicial complexes" +, cites = "as-dsdem-92, e-ubids-93, ef-msfdv-94, em-sstcd-90, es-tts-94, fku-osrpc-77, gghkk-vcem-89, g-gsh-81, lr-ipses-71, l-slfde-45, m-eat-84, pbcf-dimsc-93, r-avpps-77, ss-codmf-90, v-nadpc-07, y-stgd-90, c-mangg-91, d-slsv-34, ZZZ" +, update = "98.11 bibrelex, 95.09 agarwal, 94.09 jones" } @incollection{e-neibd-83 -, author = "H. Edelsbrunner" -, title = "Neue {Entwicklungen} im {Bereich} {Datenstrukturen}" -, editor = "H. A. Maurer" -, booktitle = "{\"U}berblicke Informationsverarbeitung" -, publisher = "BI Wissenschaftsverlag" -, year = 1983 -, pages = "55--109" -, keywords = "survey paper" +, author = "H. Edelsbrunner" +, title = "Neue {Entwicklungen} im {Bereich} {Datenstrukturen}" +, editor = "H. A. Maurer" +, booktitle = "{\"U}berblicke Informationsverarbeitung" +, publisher = "BI Wissenschaftsverlag" +, year = 1983 +, pages = "55--109" +, keywords = "survey paper" } @techreport{e-cedbt-82 -, author = "H. Edelsbrunner" -, title = "On Computing the Extreme Distance between Two Convex Polygons" -, number = "F96" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1982 -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner" +, title = "On Computing the Extreme Distance between Two Convex Polygons" +, number = "F96" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1982 +, update = "97.11 bibrelex" } @techreport{e-oddsp-78 -, author = "H. Edelsbrunner" -, title = "Optimizing the dynamization of decomposable searching problems" -, type = "Report" -, number = "F35" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1978 -, keywords = "data structuring, searching, dynamizing data structures" +, author = "H. Edelsbrunner" +, title = "Optimizing the dynamization of decomposable searching problems" +, type = "Report" +, number = "F35" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1978 +, keywords = "data structuring, searching, dynamizing data structures" } @article{e-pppcg-85 -, author = "H. Edelsbrunner" -, title = "{P103}-{P110}: {Problems} in computational geometry and combinatorial geometry" -, journal = "Bull. EATCS" -, volume = 26 -, year = 1985 -, pages = 239 -, keywords = "problem collection" +, author = "H. Edelsbrunner" +, title = "{P103}-{P110}: {Problems} in computational geometry and combinatorial geometry" +, journal = "Bull. EATCS" +, volume = 26 +, year = 1985 +, pages = 239 +, keywords = "problem collection" } @inproceedings{e-p33-87 -, author = "H. Edelsbrunner" -, title = "Problem $3-3$" -, booktitle = "The 1986/87 Computational Geometry Days at Courant-Problems and Solutions" -, year = 1987 -, update = "98.03 bibrelex" +, author = "H. Edelsbrunner" +, title = "Problem $3-3$" +, booktitle = "The 1986/87 Computational Geometry Days at Courant-Problems and Solutions" +, year = 1987 +, update = "98.03 bibrelex" } @article{e-pp-83 -, author = "H. Edelsbrunner" -, title = "Problem {P}36" -, journal = "Bull. EATCS" -, volume = 21 -, month = oct -, year = 1983 -, pages = 195 -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner" +, title = "Problem {P}36" +, journal = "Bull. EATCS" +, volume = 21 +, month = oct +, year = 1983 +, pages = 195 +, update = "97.11 bibrelex" } @article{e-rigom-81 -, author = "H. Edelsbrunner" -, title = "Reporting intersections of geometric objects by means of covering rectangles" -, journal = "Bull. EATCS" -, volume = 13 -, year = 1981 -, pages = "7--11" -, keywords = "combinatorial geometry, reporting, intersection, plane-sweep, space-sweep, trees, worst-case analysis, hyperrectangles" +, author = "H. Edelsbrunner" +, title = "Reporting intersections of geometric objects by means of covering rectangles" +, journal = "Bull. EATCS" +, volume = 13 +, year = 1981 +, pages = "7--11" +, keywords = "combinatorial geometry, reporting, intersection, plane-sweep, space-sweep, trees, worst-case analysis, hyperrectangles" } @inproceedings{e-srdc-98 -, author = "Herbert Edelsbrunner" -, title = "Shape Reconstruction with the {D}elaunay complex" -, booktitle = "LATIN'98: Theoretical Informatics" -, series = "Lecture Notes Comput. Sci." -, volume = 1380 -, year = 1998 -, pages = "119--132" -, update = "02.03 wenger" +, author = "Herbert Edelsbrunner" +, title = "Shape Reconstruction with the {D}elaunay complex" +, booktitle = "LATIN'98: Theoretical Informatics" +, series = "Lecture Notes Comput. Sci." +, volume = 1380 +, year = 1998 +, pages = "119--132" +, update = "02.03 wenger" } @incollection{e-ssmss-95 -, author = "H. Edelsbrunner" -, title = "Smooth surfaces for multi-scale shape representation" -, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1026 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "391--412" -, update = "96.01 smid" +, author = "H. Edelsbrunner" +, title = "Smooth surfaces for multi-scale shape representation" +, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1026 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "391--412" +, update = "96.01 smid" } @inproceedings{e-ssmss-96 -, author = "Herbert Edelsbrunner" -, title = "Smooth Surfaces for Multi-Scale Shape Representation" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = 25 -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Herbert Edelsbrunner" +, title = "Smooth Surfaces for Multi-Scale Shape Representation" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = 25 +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{e-stdac-89 -, author = "H. Edelsbrunner" -, title = "Spatial triangulations with dihedral angle conditions" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "83--89" -, keywords = "mesh generation, Delaunay triangulation, non-obtuse dihedral angles, KJ-triangulations" -, update = "95.09 mitchell" +, author = "H. Edelsbrunner" +, title = "Spatial triangulations with dihedral angle conditions" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "83--89" +, keywords = "mesh generation, Delaunay triangulation, non-obtuse dihedral angles, KJ-triangulations" +, update = "95.09 mitchell" } @article{e-cgc1-87 -, author = "H. Edelsbrunner" -, title = "The computational geometry column" -, journal = "Bull. EATCS" -, volume = 31 -, year = 1987 -, pages = "111--114" -, keywords = "column, bibliography" -, annote = "Announcement of community bibliography." +, author = "H. Edelsbrunner" +, title = "The computational geometry column" +, journal = "Bull. EATCS" +, volume = 31 +, year = 1987 +, pages = "111--114" +, keywords = "column, bibliography" +, annote = "Announcement of community bibliography." } @article{e-cgc2-87 -, author = "H. Edelsbrunner" -, title = "The computational geometry column" -, journal = "Bull. EATCS" -, volume = 33 -, year = 1987 -, pages = "23--24" -, keywords = "column" -, annote = "Geometry conferences, journals, and books." +, author = "H. Edelsbrunner" +, title = "The computational geometry column" +, journal = "Bull. EATCS" +, volume = 33 +, year = 1987 +, pages = "23--24" +, keywords = "column" +, annote = "Geometry conferences, journals, and books." } @article{e-cgc3-88 -, author = "H. Edelsbrunner" -, title = "The computational geometry column" -, journal = "Bull. EATCS" -, volume = 34 -, year = 1988 -, pages = "32--39" -, keywords = "column, complexity classes" -, annote = "``The disease of the $log$-factor.''" +, author = "H. Edelsbrunner" +, title = "The computational geometry column" +, journal = "Bull. EATCS" +, volume = 34 +, year = 1988 +, pages = "32--39" +, keywords = "column, complexity classes" +, annote = "``The disease of the $log$-factor.''" } @article{e-cgc4-88 -, author = "H. Edelsbrunner" -, title = "The computational geometry column" -, journal = "Bull. EATCS" -, volume = 35 -, year = 1988 -, pages = "66--68" -, keywords = "column" -, annote = "Preview of 4th Annu. ACM Sympos.; robustness and - randomization." +, author = "H. Edelsbrunner" +, title = "The computational geometry column" +, journal = "Bull. EATCS" +, volume = 35 +, year = 1988 +, pages = "66--68" +, keywords = "column" +, annote = "Preview of 4th Annu. ACM Sympos.; robustness and + randomization." } @article{e-cgc5-89 -, author = "H. Edelsbrunner" -, title = "The computational geometry column" -, journal = "Bull. EATCS" -, volume = 37 -, year = 1989 -, pages = "109--116" -, keywords = "column, tutorial" -, annote = "Geometric algorithms for the classroom." +, author = "H. Edelsbrunner" +, title = "The computational geometry column" +, journal = "Bull. EATCS" +, volume = 37 +, year = 1989 +, pages = "109--116" +, keywords = "column, tutorial" +, annote = "Geometric algorithms for the classroom." } @article{e-cgc6-89 -, author = "H. Edelsbrunner" -, title = "The computational geometry column" -, journal = "Bull. EATCS" -, volume = 38 -, year = 1989 -, pages = "74--78" -, keywords = "column" -, annote = "Orphan results: non-obtuse triangulations and stabbing - planar triangles." +, author = "H. Edelsbrunner" +, title = "The computational geometry column" +, journal = "Bull. EATCS" +, volume = 38 +, year = 1989 +, pages = "74--78" +, keywords = "column" +, annote = "Orphan results: non-obtuse triangulations and stabbing + planar triangles." } @article{e-cgc7-90 -, author = "H. Edelsbrunner" -, title = "The computational geometry column" -, journal = "Bull. EATCS" -, volume = 40 -, year = 1990 -, pages = "164--167" -, keywords = "column" -, annote = "Computational geometry research in Japan." +, author = "H. Edelsbrunner" +, title = "The computational geometry column" +, journal = "Bull. EATCS" +, volume = 40 +, year = 1990 +, pages = "164--167" +, keywords = "column" +, annote = "Computational geometry research in Japan." } @article{e-cgc8-90 -, author = "H. Edelsbrunner" -, title = "The computational geometry column" -, journal = "Bull. EATCS" -, volume = 42 -, year = 1990 -, pages = "132--134" -, keywords = "column" -, annote = "Reviews of 6th Annu. ACM Sympos. and 2nd Canad. - Conf." +, author = "H. Edelsbrunner" +, title = "The computational geometry column" +, journal = "Bull. EATCS" +, volume = 42 +, year = 1990 +, pages = "132--134" +, keywords = "column" +, annote = "Reviews of 6th Annu. ACM Sympos. and 2nd Canad. + Conf." } @inproceedings{e-ubids-93 -, author = "H. Edelsbrunner" -, title = "The union of balls and its dual shape" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "218--231" -, cites = "ah-t1-35, a-iadbu-88, abi-cvus-88, bm-sdcs-71, c-amsc-83, clr-ia-90, d-slsv-34, de-iabns-93, d-udrdp-50, dc-cchtt-91, e-acg-87, e-was-92, efm-ias-93, eks-sspp-83, em-sstcd-90, em-tdas-92, es-itfwr-92, f-nmc-71, g-cp-67, h-uzztu-53, kb-ptacs-79, m-htcsc-67, m-eat-84, nw-iebii-92, r-avpps-77, v-nadpc-07, w-sltdd-52, w-tl-62, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "H. Edelsbrunner" +, title = "The union of balls and its dual shape" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "218--231" +, cites = "ah-t1-35, a-iadbu-88, abi-cvus-88, bm-sdcs-71, c-amsc-83, clr-ia-90, d-slsv-34, de-iabns-93, d-udrdp-50, dc-cchtt-91, e-acg-87, e-was-92, efm-ias-93, eks-sspp-83, em-sstcd-90, em-tdas-92, es-itfwr-92, f-nmc-71, g-cp-67, h-uzztu-53, kb-ptacs-79, m-htcsc-67, m-eat-84, nw-iebii-92, r-avpps-77, v-nadpc-07, w-sltdd-52, w-tl-62, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{e-ubids-95 -, author = "H. Edelsbrunner" -, title = "The union of balls and its dual shape" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "415--440" -, update = "98.03 agarwal" +, author = "H. Edelsbrunner" +, title = "The union of balls and its dual shape" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "415--440" +, update = "98.03 agarwal" } @article{e-ueplf-89 -, author = "H. Edelsbrunner" -, title = "The upper envelope of piecewise linear functions: {T}ight complexity bounds in higher dimensions" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "337--343" -, keywords = "upper/lower envelope, arrangement of simplices" -, update = "98.03 agarwal" +, author = "H. Edelsbrunner" +, title = "The upper envelope of piecewise linear functions: {T}ight complexity bounds in higher dimensions" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "337--343" +, keywords = "upper/lower envelope, arrangement of simplices" +, update = "98.03 agarwal" } @techreport{e-t-91 -, author = "H. Edelsbrunner" -, title = "Triangulations" -, number = "CS497" -, institution = "UIUC" -, year = 1991 -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner" +, title = "Triangulations" +, number = "CS497" +, institution = "UIUC" +, year = 1991 +, update = "97.11 bibrelex" } @techreport{e-was-92 -, author = "H. Edelsbrunner" -, title = "Weighted alpha shapes" -, type = "Technical {Report}" -, number = "UIUCDCS-R-92-1760" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1992 -, update = "98.03 bibrelex" +, author = "H. Edelsbrunner" +, title = "Weighted alpha shapes" +, type = "Technical {Report}" +, number = "UIUCDCS-R-92-1760" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1992 +, update = "98.03 bibrelex" } @inproceedings{effl-mpvp-95 -, author = "H. Edelsbrunner and M. Facello and P. Fu and J. Liang" -, title = "Measuring proteins and voids in proteins" -, booktitle = "Proc. 28th Ann. Hawaii Internat. Conf. System Sciences" -, series = "Biotechnology Computing" -, volume = "V" -, year = 1995 -, pages = "256--264" -, update = "98.03 agarwal" +, author = "H. Edelsbrunner and M. Facello and P. Fu and J. Liang" +, title = "Measuring proteins and voids in proteins" +, booktitle = "Proc. 28th Ann. Hawaii Internat. Conf. System Sciences" +, series = "Biotechnology Computing" +, volume = "V" +, year = 1995 +, pages = "256--264" +, update = "98.03 agarwal" } @techreport{efl-dcpm-95 -, author = "H. Edelsbrunner and M. Facello and J. Liang" -, title = "On the definition and the construction of pockets in macromolecules" -, type = "Tech.\ Report" -, number = "IULU-ENG-95-1736" -, institution = "Department of Computer Science" -, address = "University of Illinois at Urbana-Champaign" -, year = 1995 -, update = "98.03 agarwal" +, author = "H. Edelsbrunner and M. Facello and J. Liang" +, title = "On the definition and the construction of pockets in macromolecules" +, type = "Tech.\ Report" +, number = "IULU-ENG-95-1736" +, institution = "Department of Computer Science" +, address = "University of Illinois at Urbana-Champaign" +, year = 1995 +, update = "98.03 agarwal" } @article{efl-dcpm-98 -, author = "H. Edelsbrunner and M. Facello and J. Liang" -, title = "On the definition and the construction of pockets in macromolecules" -, journal = "Discrete Appl. Math." -, volume = 88 -, year = 1998 -, pages = "83--102" -, update = "00.03 smid" +, author = "H. Edelsbrunner and M. Facello and J. Liang" +, title = "On the definition and the construction of pockets in macromolecules" +, journal = "Discrete Appl. Math." +, volume = 88 +, year = 1998 +, pages = "83--102" +, update = "00.03 smid" } @techreport{ef-msfdv-94 -, author = "H. Edelsbrunner and P. Fu" -, title = "Measuring space filling diagrams and voids" -, type = "Report" -, number = "UIUC-BI-MB-94-01" -, institution = "Beckman Institute, Univ. Illinois" -, address = "Urbana" -, year = 1994 -, update = "98.11 bibrelex" +, author = "H. Edelsbrunner and P. Fu" +, title = "Measuring space filling diagrams and voids" +, type = "Report" +, number = "UIUC-BI-MB-94-01" +, institution = "Beckman Institute, Univ. Illinois" +, address = "Urbana" +, year = 1994 +, update = "98.11 bibrelex" } @misc{efm-ias-93 -, author = "H. Edelsbrunner and P. Fu and E. P. M{\"u}cke" -, title = "An introduction to alpha shapes" -, year = 1993 -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "H. Edelsbrunner and P. Fu and E. P. M{\"u}cke" +, title = "An introduction to alpha shapes" +, year = 1993 +, note = "In preparation" +, update = "98.03 bibrelex" } @inproceedings{eg-tsa-86 -, author = "H. Edelsbrunner and Leonidas J. Guibas" -, title = "Topologically sweeping an arrangement" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "389--403" -, keywords = "design of algorithms, combinatorial geometry, plane-sweep, dynamic programming, amortized analysis, arrangements, two-dimensional, $d$-dimensional" -, precedes = "eg-tsa-89" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas" +, title = "Topologically sweeping an arrangement" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "389--403" +, keywords = "design of algorithms, combinatorial geometry, plane-sweep, dynamic programming, amortized analysis, arrangements, two-dimensional, $d$-dimensional" +, precedes = "eg-tsa-89" +, update = "98.03 mitchell" } @article{eg-tsa-89 -, author = "H. Edelsbrunner and Leonidas J. Guibas" -, title = "Topologically sweeping an arrangement" -, journal = "J. Comput. Syst. Sci." -, volume = 38 -, year = 1989 -, pages = "165--194" -, note = "Corrigendum in 42 (1991), 249--251" -, keywords = "design of algorithms, combinatorial geometry, plane-sweep, dynamic programming, amortized analysis, arrangements, two-dimensional, $d$-dimensional" -, succeeds = "eg-tsa-86" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas" +, title = "Topologically sweeping an arrangement" +, journal = "J. Comput. Syst. Sci." +, volume = 38 +, year = 1989 +, pages = "165--194" +, note = "Corrigendum in 42 (1991), 249--251" +, keywords = "design of algorithms, combinatorial geometry, plane-sweep, dynamic programming, amortized analysis, arrangements, two-dimensional, $d$-dimensional" +, succeeds = "eg-tsa-86" +, update = "98.03 mitchell" } @article{eghppsss-ajati-89 -, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Hershberger and J. Pach and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" -, title = "Arrangements of {Jordan} arcs with three intersections per pair" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "523--539" -, succeeds = "eghppsss-ajati-88" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Hershberger and J. Pach and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" +, title = "Arrangements of {Jordan} arcs with three intersections per pair" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "523--539" +, succeeds = "eghppsss-ajati-88" +, update = "98.03 mitchell" } @inproceedings{eghppsss-ajati-88 -, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Hershberger and J. Pach and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" -, title = "On arrangements of {Jordan} arcs with three intersections per pair" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "258--265" -, precedes = "eghppsss-ajati-89" -, cites = "a-dcg-83, e-acg-87, gss-gmppt-88, hs-ndssg-86, klps-ujrcf-86, m-ati-77, pss-stsps-86, s-alubl-87, s-at-66, s-irs-81, ws-prnds-88, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Hershberger and J. Pach and R. Pollack and R. Seidel and Micha Sharir and J. Snoeyink" +, title = "On arrangements of {Jordan} arcs with three intersections per pair" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "258--265" +, precedes = "eghppsss-ajati-89" +, cites = "a-dcg-83, e-acg-87, gss-gmppt-88, hs-ndssg-86, klps-ujrcf-86, m-ati-77, pss-stsps-86, s-alubl-87, s-at-66, s-irs-81, ws-prnds-88, ZZZ" +, update = "98.03 bibrelex+mitchell" } @inproceedings{eghsssw-irals-88 -, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Hershberger and R. Seidel and Micha Sharir and J. Snoeyink and Emo Welzl" -, title = "Implicitly representing arrangements of lines or segments" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "56--69" -, precedes = "eghsssw-irals-89" -, cites = "as-tsbac-87, bo-arcgi-79, b-gtfga-80, ce-falsi-87, cg-vippg-85, cg-fc2a-86, cgl-pgd-85, c-narsc-87, e-acg-87, egppss-acptc-88, egs-oplms-86, egs-cmfal-88, eos-calha-86, ew-hrsls-86, gh-ospqs-87, ghs-btdsc-88, gos-ilsrs-88, hw-ensrq-87, k-osps-83, klps-ujrcf-86, k-ss-73, ol-mcp-81, ps-cgi-85, sh-gip-76, st-pplup-86, w-pttco-88, w-pr-82, ZZZ" -, update = "98.03 bibrelex" +, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Hershberger and R. Seidel and Micha Sharir and J. Snoeyink and Emo Welzl" +, title = "Implicitly representing arrangements of lines or segments" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "56--69" +, precedes = "eghsssw-irals-89" +, cites = "as-tsbac-87, bo-arcgi-79, b-gtfga-80, ce-falsi-87, cg-vippg-85, cg-fc2a-86, cgl-pgd-85, c-narsc-87, e-acg-87, egppss-acptc-88, egs-oplms-86, egs-cmfal-88, eos-calha-86, ew-hrsls-86, gh-ospqs-87, ghs-btdsc-88, gos-ilsrs-88, hw-ensrq-87, k-osps-83, klps-ujrcf-86, k-ss-73, ol-mcp-81, ps-cgi-85, sh-gip-76, st-pplup-86, w-pttco-88, w-pr-82, ZZZ" +, update = "98.03 bibrelex" } @article{eghsssw-irals-89 -, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Hershberger and R. Seidel and Micha Sharir and J. Snoeyink and Emo Welzl" -, title = "Implicitly representing arrangements of lines or segments" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "433--466" -, succeeds = "eghsssw-irals-88" -, update = "98.03 mitchell, 94.01 rote" -, annote = "the bridge tree data structure used in this paper is replaced - by an improved data structure of ghs-citds-91" +, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Hershberger and R. Seidel and Micha Sharir and J. Snoeyink and Emo Welzl" +, title = "Implicitly representing arrangements of lines or segments" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "433--466" +, succeeds = "eghsssw-irals-88" +, update = "98.03 mitchell, 94.01 rote" +, annote = "the bridge tree data structure used in this paper is replaced + by an improved data structure of ghs-citds-91" } @inproceedings{egppss-acptc-88 -, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Pach and R. Pollack and R. Seidel and Micha Sharir" -, title = "Arrangements of curves in the plane: {Topology}, combinatorics, and algorithms" -, booktitle = "Proc. 15th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 317 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "214--229" -, keywords = "combinatorial geometry, construction, incrementation, arrangements, curves, two-dimensional" -, precedes = "egppss-acptc-92" -, update = "98.03 mitchell, 95.09 agarwal" +, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Pach and R. Pollack and R. Seidel and Micha Sharir" +, title = "Arrangements of curves in the plane: {Topology}, combinatorics, and algorithms" +, booktitle = "Proc. 15th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 317 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "214--229" +, keywords = "combinatorial geometry, construction, incrementation, arrangements, curves, two-dimensional" +, precedes = "egppss-acptc-92" +, update = "98.03 mitchell, 95.09 agarwal" } @article{egppss-acptc-92 -, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Pach and R. Pollack and R. Seidel and Micha Sharir" -, title = "Arrangements of curves in the plane: {Topology}, combinatorics, and algorithms" -, journal = "Theoret. Comput. Sci." -, volume = 92 -, year = 1992 -, pages = "319--336" -, keywords = "combinatorial geometry, construction, incrementation, arrangements, curves, two-dimensional" -, succeeds = "egppss-acptc-88" -, update = "98.03 mitchell, 95.09 agarwal" +, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Pach and R. Pollack and R. Seidel and Micha Sharir" +, title = "Arrangements of curves in the plane: {Topology}, combinatorics, and algorithms" +, journal = "Theoret. Comput. Sci." +, volume = 92 +, year = 1992 +, pages = "319--336" +, keywords = "combinatorial geometry, construction, incrementation, arrangements, curves, two-dimensional" +, succeeds = "egppss-acptc-88" +, update = "98.03 mitchell, 95.09 agarwal" } @article{egs-ccmfa-90 -, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "The complexity and construction of many faces in arrangements of lines and of segments" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "161--196" -, succeeds = "egs-cmfal-88" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "The complexity and construction of many faces in arrangements of lines and of segments" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "161--196" +, succeeds = "egs-cmfal-88" +, update = "98.03 mitchell" } @inproceedings{egs-cmcap-88 -, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "The complexity of many cells in arrangements of planes and related problems" -, booktitle = "Proc. Int. Conf. Mathematical Prog." -, site = "Tokyo, Japan" -, year = 1988 -, pages = 147 -, update = "98.03 mitchell, 94.05 sharir" +, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "The complexity of many cells in arrangements of planes and related problems" +, booktitle = "Proc. Int. Conf. Mathematical Prog." +, site = "Tokyo, Japan" +, year = 1988 +, pages = 147 +, update = "98.03 mitchell, 94.05 sharir" } @article{egs-cmcap-90 -, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "The complexity of many cells in arrangements of planes and related problems" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "197--216" -, keywords = "arrangements, complexity of faces, divide-and-conquer" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "The complexity of many cells in arrangements of planes and related problems" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "197--216" +, keywords = "arrangements, complexity of faces, divide-and-conquer" +, update = "98.03 mitchell" } @inproceedings{egs-cmfal-88 -, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "The complexity of many faces in arrangements of lines and of segments" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "44--55" -, precedes = "egs-ccmfa-90" -, cites = "c-talp-69, cd-icott-87, c-narsc-87, cegsw-ccbac-88t, csy-khrp-87, e-acg-87, egs-cmcap-88, es-mnwsn-90, ew-mnemf-86, ew-hrsls-86, g-cp-67, gos-rsipl-89, gss-gmppt-88, hs-ndssg-86, hw-ensrq-87, o-spc-86, pss-stsps-88, ps-cgi-85, sml-rtatp-88, st-epdg-83, ws-prnds-88, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "The complexity of many faces in arrangements of lines and of segments" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "44--55" +, precedes = "egs-ccmfa-90" +, cites = "c-talp-69, cd-icott-87, c-narsc-87, cegsw-ccbac-88t, csy-khrp-87, e-acg-87, egs-cmcap-88, es-mnwsn-90, ew-mnemf-86, ew-hrsls-86, g-cp-67, gos-rsipl-89, gss-gmppt-88, hs-ndssg-86, hw-ensrq-87, o-spc-86, pss-stsps-88, ps-cgi-85, sml-rtatp-88, st-epdg-83, ws-prnds-88, ZZZ" +, update = "98.03 bibrelex+mitchell" } @techreport{egs-ueplf-87 -, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "The Upper Envelope of Piecewise Linear Functions: Algorithms and Applications" -, type = "Technical {Report}" -, number = "UIUCDCDS-R-87-1390" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, month = nov -, year = 1987 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "The Upper Envelope of Piecewise Linear Functions: Algorithms and Applications" +, type = "Technical {Report}" +, number = "UIUCDCDS-R-87-1390" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, month = nov +, year = 1987 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{egs-ueplf-89 -, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" -, title = "The upper envelope of piecewise linear functions: algorithms and applications" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "311--336" -, keywords = "upper/lower envelope, arrangement of simplices" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas and Micha Sharir" +, title = "The upper envelope of piecewise linear functions: algorithms and applications" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "311--336" +, keywords = "upper/lower envelope, arrangement of simplices" +, update = "98.03 mitchell" } @article{egs-oplms-86 -, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Stolfi" -, title = "Optimal point location in a monotone subdivision" -, journal = "SIAM J. Comput." -, volume = 15 -, number = 2 -, year = 1986 -, pages = "317--340" -, keywords = "data structuring, searching, point location, binary search, directed acyclic graphs, subdivisions, two-dimensional" -, update = "98.07 tamassia, 98.03 mitchell" +, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Stolfi" +, title = "Optimal point location in a monotone subdivision" +, journal = "SIAM J. Comput." +, volume = 15 +, number = 2 +, year = 1986 +, pages = "317--340" +, keywords = "data structuring, searching, point location, binary search, directed acyclic graphs, subdivisions, two-dimensional" +, update = "98.07 tamassia, 98.03 mitchell" } @techreport{egs-oplms-84 -, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Stolfi" -, title = "Optimal point location in monotone subdivisions" -, type = "Technical {Report}" -, number = 2 -, institution = "DEC/SRC" -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "H. Edelsbrunner and Leonidas J. Guibas and J. Stolfi" +, title = "Optimal point location in monotone subdivisions" +, type = "Technical {Report}" +, number = 2 +, institution = "DEC/SRC" +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{eh-lbnud-88 -, author = "H. Edelsbrunner and P. Hajnal" -, title = "A lower bound on the number of unit distances between the vertices of a convex polygon" -, type = "Report" -, number = "UIUCDCS-R-88-1412" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1988 +, author = "H. Edelsbrunner and P. Hajnal" +, title = "A lower bound on the number of unit distances between the vertices of a convex polygon" +, type = "Report" +, number = "UIUCDCS-R-88-1412" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1988 } @article{eh-lbnud-91 -, author = "H. Edelsbrunner and P. Hajnal" -, title = "A lower bound on the number of unit distances between the vertices of a convex polygon" -, journal = "J. Combin. Theory Ser. A" -, volume = 56 -, year = 1991 -, pages = "312--316" -, update = "98.03 agarwal" +, author = "H. Edelsbrunner and P. Hajnal" +, title = "A lower bound on the number of unit distances between the vertices of a convex polygon" +, journal = "J. Combin. Theory Ser. A" +, volume = 56 +, year = 1991 +, pages = "312--316" +, update = "98.03 agarwal" } @inproceedings{ehz-hmcpl-01 -, author = "Herbert Edelsbrunner and John Harer and Alfra Zomorodian" -, title = "Hierarchical {M}orse Complexes for Piecewise Linear 2-Manifolds" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "70--79" -, update = "02.03 wenger" +, author = "Herbert Edelsbrunner and John Harer and Alfra Zomorodian" +, title = "Hierarchical {M}orse Complexes for Piecewise Linear 2-Manifolds" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "70--79" +, update = "02.03 wenger" } @article{ehh-rpldd-86 -, author = "H. Edelsbrunner and G. Haring and D. Hilbert" -, title = "Rectangular point location in $d$ dimensions with applications" -, journal = "Comput. J." -, volume = 29 -, year = 1986 -, pages = "76--82" -, keywords = "data structuring, searching, point location, interval trees, hyperrectangles, $d$-dimensional" +, author = "H. Edelsbrunner and G. Haring and D. Hilbert" +, title = "Rectangular point location in $d$ dimensions with applications" +, journal = "Comput. J." +, volume = 29 +, year = 1986 +, pages = "76--82" +, keywords = "data structuring, searching, point location, interval trees, hyperrectangles, $d$-dimensional" } @techreport{ehs-cttpt-88 -, author = "H. Edelsbrunner and N. Hasan and X. J. Shen" -, title = "Circles through two points that always enclose many points" -, type = "Report" -, number = "UIUCDCS-R-88-1400" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1988 +, author = "H. Edelsbrunner and N. Hasan and X. J. Shen" +, title = "Circles through two points that always enclose many points" +, type = "Report" +, number = "UIUCDCS-R-88-1400" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1988 } @article{eh-cctda-86 -, author = "H. Edelsbrunner and D. Haussler" -, title = "The complexity of cells in three-dimensional arrangements" -, journal = "Discrete Math." -, volume = 60 -, year = 1986 -, pages = "139--146" -, keywords = "combinatorial geometry, $3$-dimensional, lines, arrangement" -, update = "95.09 korneenko" +, author = "H. Edelsbrunner and D. Haussler" +, title = "The complexity of cells in three-dimensional arrangements" +, journal = "Discrete Math." +, volume = 60 +, year = 1986 +, pages = "139--146" +, keywords = "combinatorial geometry, $3$-dimensional, lines, arrangement" +, update = "95.09 korneenko" } @techreport{eh-dsptt-84 -, author = "H. Edelsbrunner and F. Huber" -, title = "Dissecting sets of points in two and three dimensions" -, type = "Report" -, number = "F138" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1984 -, keywords = "data structuring, discrete geometry, range search, trees, partition, cell complexes, two-dimensional, three-dimensional" +, author = "H. Edelsbrunner and F. Huber" +, title = "Dissecting sets of points in two and three dimensions" +, type = "Report" +, number = "F138" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1984 +, keywords = "data structuring, discrete geometry, range search, trees, partition, cell complexes, two-dimensional, three-dimensional" } @techreport{ej-hocys-86 -, author = "H. Edelsbrunner and J. W. Jaromczyk" -, title = "How often can you see yourself in a convex configuration of mirrors?" -, type = "Report" -, number = "UIUCDCS-R-86-1256" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1986 +, author = "H. Edelsbrunner and J. W. Jaromczyk" +, title = "How often can you see yourself in a convex configuration of mirrors?" +, type = "Report" +, number = "UIUCDCS-R-86-1256" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1986 } @inproceedings{ejps-pcoas-91 -, author = "H. Edelsbrunner and J. W. Jaromczyk and J. W. Penny and G. {\'S}wi{\c a}tek" -, title = "Primal canoes: optimal arrangements of segments" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "224--227" -, cites = "e-acg-87, ejs-ccidw-89, elss-dgpps-73, emprww-sls-82, es-mnwsn-90, ew-nlsfs-85, js-rfccg-91, klz-gpcs-85, pss-ubnpk-89, ZZZ" -, update = "98.11 aronov, 98.07 bibrelex" +, author = "H. Edelsbrunner and J. W. Jaromczyk and J. W. Penny and G. {\'S}wi{\c a}tek" +, title = "Primal canoes: optimal arrangements of segments" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "224--227" +, cites = "e-acg-87, ejs-ccidw-89, elss-dgpps-73, emprww-sls-82, es-mnwsn-90, ew-nlsfs-85, js-rfccg-91, klz-gpcs-85, pss-ubnpk-89, ZZZ" +, update = "98.11 aronov, 98.07 bibrelex" } @misc{ejs-ccidw-89 -, author = "H. Edelsbrunner and J. W. Jaromczyk and G. {\'S}wi{\c a}tek" -, title = "The complexity of the common intersection of $n$ double wedges" -, year = 1989 -, update = "98.07 bibrelex" +, author = "H. Edelsbrunner and J. W. Jaromczyk and G. {\'S}wi{\c a}tek" +, title = "The complexity of the common intersection of $n$ double wedges" +, year = 1989 +, update = "98.07 bibrelex" } @article{ekm-pis-82 -, author = "H. Edelsbrunner and D. G. Kirkpatrick and H. A. Maurer" -, title = "Polygonal intersection searching" -, journal = "Inform. Process. Lett." -, volume = 14 -, year = 1982 -, pages = "74--79" -, keywords = "data structuring, reporting, intersection, range search, geometric transformations, points, line segments, polygons" +, author = "H. Edelsbrunner and D. G. Kirkpatrick and H. A. Maurer" +, title = "Polygonal intersection searching" +, journal = "Inform. Process. Lett." +, volume = 14 +, year = 1982 +, pages = "74--79" +, keywords = "data structuring, reporting, intersection, range search, geometric transformations, points, line segments, polygons" } @article{eks-sspp-83 -, author = "H. Edelsbrunner and D. G. Kirkpatrick and R. Seidel" -, title = "On the shape of a set of points in the plane" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-29" -, year = 1983 -, pages = "551--559" -, keywords = "design of algorithms, discrete geometry, construction, interval trees, subdivisions, Voronoi diagrams, shape, disks" +, author = "H. Edelsbrunner and D. G. Kirkpatrick and R. Seidel" +, title = "On the shape of a set of points in the plane" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-29" +, year = 1983 +, pages = "551--559" +, keywords = "design of algorithms, discrete geometry, construction, interval trees, subdivisions, Voronoi diagrams, shape, disks" } @techreport{el-mdsab-83 -, author = "H. Edelsbrunner and J. van Leeuwen" -, title = "Multidimensional data structures and algorithms: a bibliography" -, type = "Report" -, number = "F104" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1983 -, keywords = "bibliography" +, author = "H. Edelsbrunner and J. van Leeuwen" +, title = "Multidimensional data structures and algorithms: a bibliography" +, type = "Report" +, number = "F104" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1983 +, keywords = "bibliography" } @article{elow-cccsr-84 -, author = "H. Edelsbrunner and J. van Leeuwen and T. Ottmann and D. Wood" -, title = "Computing the connected components of simple rectilinear geometrical objects in $d$-space" -, journal = "RAIRO Inform. Theor." -, volume = 18 -, year = 1984 -, pages = "171--183" -, keywords = "design of algorithms, construction, plane-sweep, priority search trees, worst-case analysis, rectangles, hyperrectangles, connected, two-dimensional, $d$-dimensional" +, author = "H. Edelsbrunner and J. van Leeuwen and T. Ottmann and D. Wood" +, title = "Computing the connected components of simple rectilinear geometrical objects in $d$-space" +, journal = "RAIRO Inform. Theor." +, volume = 18 +, year = 1984 +, pages = "171--183" +, keywords = "design of algorithms, construction, plane-sweep, priority search trees, worst-case analysis, rectangles, hyperrectangles, connected, two-dimensional, $d$-dimensional" } @inproceedings{elz-tps-00 -, author = "Herbert Edelsbrunner and D. Letscher and Alfra Zomorodian" -, title = "Topological Persistence and Simplification" -, booktitle = "Proc. 41st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 2000 -, pages = "454--463" -, update = "02.03 wenger" +, author = "Herbert Edelsbrunner and D. Letscher and Alfra Zomorodian" +, title = "Topological Persistence and Simplification" +, booktitle = "Proc. 41st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 2000 +, pages = "454--463" +, update = "02.03 wenger" } @article{em-sosgr-81 -, author = "H. Edelsbrunner and H. A. Maurer" -, title = "A space-optimal solution of general region location" -, journal = "Theoret. Comput. Sci." -, volume = 16 -, year = 1981 -, pages = "329--336" -, keywords = "data structuring, searching, point location, interval trees" +, author = "H. Edelsbrunner and H. A. Maurer" +, title = "A space-optimal solution of general region location" +, journal = "Theoret. Comput. Sci." +, volume = 16 +, year = 1981 +, pages = "329--336" +, keywords = "data structuring, searching, point location, interval trees" } @article{em-feptd-85 -, author = "H. Edelsbrunner and H. A. Maurer" -, title = "Finding extreme points in three dimensions and solving the post-office problem in the plane" -, journal = "Inform. Process. Lett." -, volume = 21 -, year = 1985 -, pages = "39--47" -, keywords = "data structuring, searching, point location, convex hull, geometric transformations, directed acyclic graphs, polytopes, convex, three-dimensional" +, author = "H. Edelsbrunner and H. A. Maurer" +, title = "Finding extreme points in three dimensions and solving the post-office problem in the plane" +, journal = "Inform. Process. Lett." +, volume = 21 +, year = 1985 +, pages = "39--47" +, keywords = "data structuring, searching, point location, convex hull, geometric transformations, directed acyclic graphs, polytopes, convex, three-dimensional" } @article{em-ioo-81 -, author = "H. Edelsbrunner and H. A. Maurer" -, title = "On the intersection of orthogonal objects" -, journal = "Inform. Process. Lett." -, volume = 13 -, year = 1981 -, pages = "177--181" -, keywords = "data structuring, searching, intersection, range trees, segment trees, interval trees, hyperrectangles, $d$-dimensional" +, author = "H. Edelsbrunner and H. A. Maurer" +, title = "On the intersection of orthogonal objects" +, journal = "Inform. Process. Lett." +, volume = 13 +, year = 1981 +, pages = "177--181" +, keywords = "data structuring, searching, intersection, range trees, segment trees, interval trees, hyperrectangles, $d$-dimensional" } @article{emprww-sls-82 -, author = "H. Edelsbrunner and H. A. Maurer and F. P. Preparata and A. L. Rosenberg and Emo Welzl and D. Wood" -, title = "Stabbing line segments" -, journal = "BIT" -, volume = 22 -, year = 1982 -, pages = "274--281" -, keywords = "design of algorithms, combinatorial geometry, construction, intersection, plane-sweep, divide-and-conquer, geometric transformations, line segments, two-dimensional, worst-case analysis" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and H. A. Maurer and F. P. Preparata and A. L. Rosenberg and Emo Welzl and D. Wood" +, title = "Stabbing line segments" +, journal = "BIT" +, volume = 22 +, year = 1982 +, pages = "274--281" +, keywords = "design of algorithms, combinatorial geometry, construction, intersection, plane-sweep, divide-and-conquer, geometric transformations, line segments, two-dimensional, worst-case analysis" +, update = "98.03 mitchell" } @techreport{em-sstcd-87 -, author = "H. Edelsbrunner and E. P. M{\"u}cke" -, title = "Simulation of simplicity: a technique to cope with degenerate cases in geometric algorithms" -, type = "Technical {Report}" -, number = "UIUCDCD-R-87-1393" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana-Champaign, IL" -, month = dec -, year = 1987 -, update = "98.03 bibrelex" +, author = "H. Edelsbrunner and E. P. M{\"u}cke" +, title = "Simulation of simplicity: a technique to cope with degenerate cases in geometric algorithms" +, type = "Technical {Report}" +, number = "UIUCDCD-R-87-1393" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana-Champaign, IL" +, month = dec +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{em-sstcd-88 -, author = "H. Edelsbrunner and E. P. M{\"u}cke" -, title = "Simulation of simplicity: a technique to cope with degenerate cases in geometric algorithms" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "118--133" -, precedes = "em-sstcd-90" -, cites = "ahu-daca-74, ai-grvd-86, c-odlp-52, c-lp-83, ck-flcs-80, d-lpe-63, dow-gsmml-55, e-esaa-86, e-acg-87, eg-tsa-86, ew-chsct-86, f-cgpractice-85, gp-ms-83, gs-pmgsc-85, gl-mc-83, k-sa-69, m-emzed-85, ph-chfsp-77, ps-cgi-85, s-chaop-81, s-scpvd-82, s-chdch-86, y-stgd-87, y-gctsp-88, ZZZ" -, update = "98.03 bibrelex" +, author = "H. Edelsbrunner and E. P. M{\"u}cke" +, title = "Simulation of simplicity: a technique to cope with degenerate cases in geometric algorithms" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "118--133" +, precedes = "em-sstcd-90" +, cites = "ahu-daca-74, ai-grvd-86, c-odlp-52, c-lp-83, ck-flcs-80, d-lpe-63, dow-gsmml-55, e-esaa-86, e-acg-87, eg-tsa-86, ew-chsct-86, f-cgpractice-85, gp-ms-83, gs-pmgsc-85, gl-mc-83, k-sa-69, m-emzed-85, ph-chfsp-77, ps-cgi-85, s-chaop-81, s-scpvd-82, s-chdch-86, y-stgd-87, y-gctsp-88, ZZZ" +, update = "98.03 bibrelex" } @article{em-sstcd-90 -, author = "H. Edelsbrunner and E. P. M{\"u}cke" -, title = "Simulation of simplicity: {A} technique to cope with degenerate cases in geometric algorithms" -, journal = "ACM Trans. Graph." -, volume = 9 -, number = 1 -, year = 1990 -, pages = "66--104" -, succeeds = "em-sstcd-88" -, update = "98.07 agarwal+tamassia" +, author = "H. Edelsbrunner and E. P. M{\"u}cke" +, title = "Simulation of simplicity: {A} technique to cope with degenerate cases in geometric algorithms" +, journal = "ACM Trans. Graph." +, volume = 9 +, number = 1 +, year = 1990 +, pages = "66--104" +, succeeds = "em-sstcd-88" +, update = "98.07 agarwal+tamassia" } @techreport{em-tdas-92 -, author = "H. Edelsbrunner and E. P. M{\"u}cke" -, title = "Three-dimensional alpha shapes" -, type = "Manuscript" -, number = "UIUCDCS-R-92-1734" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana-Champaign, IL" -, year = 1992 -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "H. Edelsbrunner and E. P. M{\"u}cke" +, title = "Three-dimensional alpha shapes" +, type = "Manuscript" +, number = "UIUCDCS-R-92-1734" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana-Champaign, IL" +, year = 1992 +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{em-tdas-94 -, author = "H. Edelsbrunner and E. P. M{\"u}cke" -, title = "Three-dimensional Alpha Shapes" -, journal = "ACM Trans. Graph." -, volume = 13 -, number = 1 -, month = jan -, year = 1994 -, pages = "43--72" -, comments = "Software in \url{ftp://cs.uiuc.edu/pub/edels/geometry/alpha-2.1a.tar.Z}" -, update = "94.09 orourke" +, author = "H. Edelsbrunner and E. P. M{\"u}cke" +, title = "Three-dimensional Alpha Shapes" +, journal = "ACM Trans. Graph." +, volume = 13 +, number = 1 +, month = jan +, year = 1994 +, pages = "43--72" +, comments = "Software in \url{ftp://cs.uiuc.edu/pub/edels/geometry/alpha-2.1a.tar.Z}" +, update = "94.09 orourke" } @techreport{eos-calha-83t -, author = "H. Edelsbrunner and J. O'Rourke and R. Seidel" -, title = "Constructing arrangements of lines and hyperplanes with applications" -, type = "Report" -, number = "F123" -, institution = "Inst. Informationsverarb., Univ. Graz" -, address = "Graz, Austria" -, year = 1983 -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner and J. O'Rourke and R. Seidel" +, title = "Constructing arrangements of lines and hyperplanes with applications" +, type = "Report" +, number = "F123" +, institution = "Inst. Informationsverarb., Univ. Graz" +, address = "Graz, Austria" +, year = 1983 +, update = "97.11 bibrelex" } @inproceedings{eos-calha-83 -, author = "H. Edelsbrunner and J. O'Rourke and R. Seidel" -, title = "Constructing arrangements of lines and hyperplanes with applications" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "83--91" -, precedes = "eos-calha-86" -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner and J. O'Rourke and R. Seidel" +, title = "Constructing arrangements of lines and hyperplanes with applications" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "83--91" +, precedes = "eos-calha-86" +, update = "97.11 bibrelex" } @article{eos-calha-86 -, author = "H. Edelsbrunner and J. O'Rourke and R. Seidel" -, title = "Constructing arrangements of lines and hyperplanes with applications" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "341--363" -, keywords = "design of algorithms, combinatorial geometry, construction, incrementation, geometric transformations, incidence graph, arrangements, $d$-dimensional" -, comments = "buggy proof fixed in \cite{ess-ztha-91}" -, succeeds = "eos-calha-83" +, author = "H. Edelsbrunner and J. O'Rourke and R. Seidel" +, title = "Constructing arrangements of lines and hyperplanes with applications" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "341--363" +, keywords = "design of algorithms, combinatorial geometry, construction, incrementation, geometric transformations, incidence graph, arrangements, $d$-dimensional" +, comments = "buggy proof fixed in \cite{ess-ztha-91}" +, succeeds = "eos-calha-83" } @article{eow-sgrag-84 -, author = "H. Edelsbrunner and J. O'Rourke and Emo Welzl" -, title = "Stationing guards in rectilinear art galleries" -, journal = "Comput. Vision Graph. Image Process." -, volume = 27 -, year = 1984 -, pages = "167--176" -, keywords = "design of algorithms, construction, decomposition, visibility, subdivisions, polygons, $c$-oriented, two-dimensional" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "H. Edelsbrunner and J. O'Rourke and Emo Welzl" +, title = "Stationing guards in rectilinear art galleries" +, journal = "Comput. Vision Graph. Image Process." +, volume = 27 +, year = 1984 +, pages = "167--176" +, keywords = "design of algorithms, construction, decomposition, visibility, subdivisions, polygons, $c$-oriented, two-dimensional" +, update = "98.11 bibrelex, 98.03 mitchell" } @article{eo-bdsds-85 -, author = "H. Edelsbrunner and M. H. Overmars" -, title = "Batched dynamic solutions to decomposable searching problems" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "515--542" -, keywords = "design of algorithms, construction, reporting, divide-and-conquer, range trees, segment trees, $d$-dimensional" +, author = "H. Edelsbrunner and M. H. Overmars" +, title = "Batched dynamic solutions to decomposable searching problems" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "515--542" +, keywords = "design of algorithms, construction, reporting, divide-and-conquer, range trees, segment trees, $d$-dimensional" } @article{eo-esrp-82 -, author = "H. Edelsbrunner and M. H. Overmars" -, title = "On the equivalence of some rectangle problems" -, journal = "Inform. Process. Lett." -, volume = 14 -, year = 1982 -, pages = "124--127" -, keywords = "reporting, counting, range search, geometric transformations, lower bounds, intervals, one-dimensional, two-dimensional" +, author = "H. Edelsbrunner and M. H. Overmars" +, title = "On the equivalence of some rectangle problems" +, journal = "Inform. Process. Lett." +, volume = 14 +, year = 1982 +, pages = "124--127" +, keywords = "reporting, counting, range search, geometric transformations, lower bounds, intervals, one-dimensional, two-dimensional" } @article{eo-zrrd-87 -, author = "H. Edelsbrunner and M. H. Overmars" -, title = "Zooming by repeated range detection" -, journal = "Inform. Process. Lett." -, volume = 24 -, year = 1987 -, pages = "413--417" -, keywords = "data structuring, computer graphics, reporting, range search, repeated search, trees, line segments, rectangles, two-dimensional" +, author = "H. Edelsbrunner and M. H. Overmars" +, title = "Zooming by repeated range detection" +, journal = "Inform. Process. Lett." +, volume = 24 +, year = 1987 +, pages = "413--417" +, keywords = "data structuring, computer graphics, reporting, range search, repeated search, trees, line segments, rectangles, two-dimensional" } @techreport{eos-smcga-84t -, author = "H. Edelsbrunner and M. H. Overmars and R. Seidel" -, title = "Some methods of computational geometry applied to computer graphics" -, type = "report" -, number = "F-117" -, institution = "Technical University of Graz" -, month = jun -, year = 1983 -, precedes = "eos-smcga-84a" -, update = "98.07 bibrelex" +, author = "H. Edelsbrunner and M. H. Overmars and R. Seidel" +, title = "Some methods of computational geometry applied to computer graphics" +, type = "report" +, number = "F-117" +, institution = "Technical University of Graz" +, month = jun +, year = 1983 +, precedes = "eos-smcga-84a" +, update = "98.07 bibrelex" } @article{eos-smcga-84a -, author = "H. Edelsbrunner and M. H. Overmars and R. Seidel" -, title = "Some methods of computational geometry applied to computer graphics" -, journal = "Comput. Vision Graph. Image Process." -, volume = 28 -, year = 1984 -, pages = "92--108" -, keywords = "data structuring, computer graphics, construction, searching, point location, range search, trees, subdivisions, two-dimensional" -, succeeds = "eos-smcga-84t" -, update = "98.07 bibrelex" +, author = "H. Edelsbrunner and M. H. Overmars and R. Seidel" +, title = "Some methods of computational geometry applied to computer graphics" +, journal = "Comput. Vision Graph. Image Process." +, volume = 28 +, year = 1984 +, pages = "92--108" +, keywords = "data structuring, computer graphics, construction, searching, point location, range search, trees, subdivisions, two-dimensional" +, succeeds = "eos-smcga-84t" +, update = "98.07 bibrelex" } @article{eowbhf-rivc-90 -, author = "H. Edelsbrunner and M. H. Overmars and Emo Welzl and Ben-Arroyo and I. Hartman and J. A. Feldman" -, title = "Ranking intervals under visibility constraints" -, journal = "Internat. J. Comput. Math." -, volume = 34 -, number = "3--4" -, year = 1990 -, pages = "129--144" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "H. Edelsbrunner and M. H. Overmars and Emo Welzl and Ben-Arroyo and I. Hartman and J. A. Feldman" +, title = "Ranking intervals under visibility constraints" +, journal = "Internat. J. Comput. Math." +, volume = 34 +, number = "3--4" +, year = 1990 +, pages = "129--144" +, update = "98.03 mitchell, 95.09 korneenko" } @incollection{eow-gfcs-83 -, author = "Herbert Edelsbrunner and Mark H. Overmars and Derick Wood" -, title = "Graphics in {Flatland}: {A} Case Study" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "35--59" -, keywords = "design of algorithms, computer graphics, visibility, plane-sweep, trees, two-dimensional" -, update = "01.04 icking" +, author = "Herbert Edelsbrunner and Mark H. Overmars and Derick Wood" +, title = "Graphics in {Flatland}: {A} Case Study" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "35--59" +, keywords = "design of algorithms, computer graphics, visibility, plane-sweep, trees, two-dimensional" +, update = "01.04 icking" } @inproceedings{epss-lebfi-87 -, author = "H. Edelsbrunner and J. Pach and J. T. Schwartz and Micha Sharir" -, title = "On the lower envelope of bivariate functions and its applications" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "27--37" -, keywords = "discrete geometry, Davenport-Schinzel sequences, polyhedra, convex, arrangements, divide-and-conquer, hidden line/surface elimination, Voronoi diagrams, stabbing" -, comments = "In three journal papers: \cite{ps-ueplf-89}, - \cite{e-ueplf-89}, \cite{egs-ueplf-89}" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and J. Pach and J. T. Schwartz and Micha Sharir" +, title = "On the lower envelope of bivariate functions and its applications" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "27--37" +, keywords = "discrete geometry, Davenport-Schinzel sequences, polyhedra, convex, arrangements, divide-and-conquer, hidden line/surface elimination, Voronoi diagrams, stabbing" +, comments = "In three journal papers: \cite{ps-ueplf-89}, + \cite{e-ueplf-89}, \cite{egs-ueplf-89}" +, update = "98.03 mitchell" } @article{ep-mps-88 -, author = "H. Edelsbrunner and F. P. Preparata" -, title = "Minimum polygonal separation" -, journal = "Inform. Comput." -, volume = 77 -, year = 1988 -, pages = "218--232" -, keywords = "design of algorithms, construction, separation, prune-and-search, polygons, convex, two-dimensional" -, update = "93.05 orourke" +, author = "H. Edelsbrunner and F. P. Preparata" +, title = "Minimum polygonal separation" +, journal = "Inform. Comput." +, volume = 77 +, year = 1988 +, pages = "218--232" +, keywords = "design of algorithms, construction, separation, prune-and-search, polygons, convex, two-dimensional" +, update = "93.05 orourke" } @techreport{epw-tpstd-86 -, author = "H. Edelsbrunner and F. P. Preparata and D. B. West" -, title = "Tetrahedrizing point sets in three dimensions" -, type = "Report" -, number = "UIUCDCS-R-86-1310" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1986 -, keywords = "design of algorithms, combinatorial geometry, construction, decomposition, incrementation, cell complexes, Voronoi diagrams, points, tetrahedra, three-dimensional" -, precedes = "epw-tpstd-90" +, author = "H. Edelsbrunner and F. P. Preparata and D. B. West" +, title = "Tetrahedrizing point sets in three dimensions" +, type = "Report" +, number = "UIUCDCS-R-86-1310" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1986 +, keywords = "design of algorithms, combinatorial geometry, construction, decomposition, incrementation, cell complexes, Voronoi diagrams, points, tetrahedra, three-dimensional" +, precedes = "epw-tpstd-90" } @article{epw-tpstd-90 -, author = "H. Edelsbrunner and F. P. Preparata and D. B. West" -, title = "Tetrahedrizing Point Sets in Three Dimensions" -, journal = "J. Symbolic Comput." -, volume = 10 -, number = "3--4" -, year = 1990 -, pages = "335--347" -, succeeds = "epw-tpstd-86" -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner and F. P. Preparata and D. B. West" +, title = "Tetrahedrizing Point Sets in Three Dimensions" +, journal = "J. Symbolic Comput." +, volume = 10 +, number = "3--4" +, year = 1990 +, pages = "335--347" +, succeeds = "epw-tpstd-86" +, update = "97.11 bibrelex" } @article{ers-ccsno-90 -, author = "H. Edelsbrunner and A. D. Robison and X. Shen" -, title = "Covering convex sets with non-overlapping polygons" -, journal = "Discrete Math." -, volume = 81 -, year = 1990 -, pages = "153--164" -, comments = "replaces the techreport ers-ccsno-87" -, update = "93.09 rote" +, author = "H. Edelsbrunner and A. D. Robison and X. Shen" +, title = "Covering convex sets with non-overlapping polygons" +, journal = "Discrete Math." +, volume = 81 +, year = 1990 +, pages = "153--164" +, comments = "replaces the techreport ers-ccsno-87" +, update = "93.09 rote" } @inproceedings{erw-tncst-87 -, author = "H. Edelsbrunner and G{\"u}nter Rote and Emo Welzl" -, title = "Testing the necklace condition for shortest tours and optimal factors in the plane" -, booktitle = "Proc. 14th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 267 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "364--375" -, precedes = "erw-tncst-89" -, update = "98.03 mitchell, 93.09 rote" +, author = "H. Edelsbrunner and G{\"u}nter Rote and Emo Welzl" +, title = "Testing the necklace condition for shortest tours and optimal factors in the plane" +, booktitle = "Proc. 14th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 267 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "364--375" +, precedes = "erw-tncst-89" +, update = "98.03 mitchell, 93.09 rote" } @article{erw-tncst-89 -, author = "H. Edelsbrunner and G{\"u}nter Rote and Emo Welzl" -, title = "Testing the necklace condition for shortest tours and optimal factors in the plane" -, journal = "Theoret. Comput. Sci." -, volume = 66 -, year = 1989 -, pages = "157--180" -, keywords = "combinatorial geometry, operations research, construction, linear programming, geometric graphs, traveling salesman tours, matchings, points, two-dimensional, cluster analysis" -, succeeds = "erw-tncst-87" -, update = "98.03 mitchell, 93.09 rote" +, author = "H. Edelsbrunner and G{\"u}nter Rote and Emo Welzl" +, title = "Testing the necklace condition for shortest tours and optimal factors in the plane" +, journal = "Theoret. Comput. Sci." +, volume = 66 +, year = 1989 +, pages = "157--180" +, keywords = "combinatorial geometry, operations research, construction, linear programming, geometric graphs, traveling salesman tours, matchings, points, two-dimensional, cluster analysis" +, succeeds = "erw-tncst-87" +, update = "98.03 mitchell, 93.09 rote" } @inproceedings{es-vda-85 -, author = "H. Edelsbrunner and R. Seidel" -, title = "Voronoi diagrams and arrangements" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "251--263" -, precedes = "es-vda-86" -, cites = "a-pdpaa-83, ab-gdt-86, ae-oacwv-84, b-acokv-83, b-cdt-81, b-fihs-78, b-vdch-79, b-gtfga-80, cd-vdsle-84, cy-grp-83, d-oacav-82, d-gvdgs-79, e-agc-, eos-calha-83, ew-nlsfs-82, elss-dgpps-73, g-ah-71, g-as-72, iim-vdlgi-85, k-eccs-79, l-fknnp-76, l-tdvdl-80, ld-gvdp-81, lw-vdllm-80, m-mnfcp-70, m-tom-82, p-kpudz-82, ph-chfsp-77, pm-finhs-79, s-chaop-81, sh-cpp-75, ls-ippvd-87, w-cnddt-81, y-oavds-84, z-fuafc-75, ZZZ" -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner and R. Seidel" +, title = "Voronoi diagrams and arrangements" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "251--263" +, precedes = "es-vda-86" +, cites = "a-pdpaa-83, ab-gdt-86, ae-oacwv-84, b-acokv-83, b-cdt-81, b-fihs-78, b-vdch-79, b-gtfga-80, cd-vdsle-84, cy-grp-83, d-oacav-82, d-gvdgs-79, e-agc-, eos-calha-83, ew-nlsfs-82, elss-dgpps-73, g-ah-71, g-as-72, iim-vdlgi-85, k-eccs-79, l-fknnp-76, l-tdvdl-80, ld-gvdp-81, lw-vdllm-80, m-mnfcp-70, m-tom-82, p-kpudz-82, ph-chfsp-77, pm-finhs-79, s-chaop-81, sh-cpp-75, ls-ippvd-87, w-cnddt-81, y-oavds-84, z-fuafc-75, ZZZ" +, update = "97.11 bibrelex" } @article{es-vda-86 -, author = "H. Edelsbrunner and R. Seidel" -, title = "Voronoi diagrams and arrangements" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "25--44" -, keywords = "discrete geometry, geometric transformations, cell complexes, arrangements, Voronoi diagrams, hyperplanes, spheres, $d$-dimensional" -, succeeds = "es-vda-85" +, author = "H. Edelsbrunner and R. Seidel" +, title = "Voronoi diagrams and arrangements" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "25--44" +, keywords = "discrete geometry, geometric transformations, cell complexes, arrangements, Voronoi diagrams, hyperplanes, spheres, $d$-dimensional" +, succeeds = "es-vda-85" } @unpublished{ess-npzta- -, author = "H. Edelsbrunner and R. Seidel and Micha Sharir" -, title = "New proofs of the zone theorem for arrangements of hyperplanes" -, note = "In preparation" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "H. Edelsbrunner and R. Seidel and Micha Sharir" +, title = "New proofs of the zone theorem for arrangements of hyperplanes" +, note = "In preparation" +, update = "98.03 mitchell, 97.11 bibrelex" } @incollection{ess-ztha-91 -, author = "H. Edelsbrunner and R. Seidel and Micha Sharir" -, title = "On the zone theorem for hyperplane arrangements" -, editor = "H. Maurer" -, booktitle = "New Results and New Trends in Computer Science" -, series = "Lecture Notes Comput. Sci." -, volume = 555 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "108--123" -, comments = "Fixes bug in original proof \cite{eos-calha-86}" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and R. Seidel and Micha Sharir" +, title = "On the zone theorem for hyperplane arrangements" +, editor = "H. Maurer" +, booktitle = "New Results and New Trends in Computer Science" +, series = "Lecture Notes Comput. Sci." +, volume = 555 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "108--123" +, comments = "Fixes bug in original proof \cite{eos-calha-86}" +, update = "98.03 mitchell" } @article{ess-ztha-93 -, author = "H. Edelsbrunner and R. Seidel and Micha Sharir" -, title = "On the zone theorem for hyperplane arrangements" -, journal = "SIAM J. Comput." -, volume = 22 -, number = 2 -, year = 1993 -, pages = "418--429" -, comments = "Fixes bug in original proof \cite{eos-calha-86}" -, succeeds = "ess-ztha-91" -, update = "98.03 mitchell, 96.05 agarwal, 95.09 agarwal+devillers, 93.09 erickson+matousek+rote" +, author = "H. Edelsbrunner and R. Seidel and Micha Sharir" +, title = "On the zone theorem for hyperplane arrangements" +, journal = "SIAM J. Comput." +, volume = 22 +, number = 2 +, year = 1993 +, pages = "418--429" +, comments = "Fixes bug in original proof \cite{eos-calha-86}" +, succeeds = "ess-ztha-91" +, update = "98.03 mitchell, 96.05 agarwal, 95.09 agarwal+devillers, 93.09 erickson+matousek+rote" } @inproceedings{es-itfwr-92 -, author = "H. Edelsbrunner and N. R. Shah" -, title = "Incremental topological flipping works for regular triangulations" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "43--52" -, cites = "a-pdpaa-87, a-vdsfg-91, bm-sdcs-71, cs-arscg-89, d-slsv-34, e-acg-87, e-atccd-90, eks-sspp-83, em-sstcd-90, em-tdas-92, gks-ricdv-90, j-3dtlt-89, j-ctddt-91, l-gtgac-72, l-scsi-77, l-pndt-86, l-rtp-91, ps-cgi-85, r-mkkde-21, r-odtr-91, s-udzvd-28, s-chdch-86, v-nadpc-07, ZZZ" -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner and N. R. Shah" +, title = "Incremental topological flipping works for regular triangulations" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "43--52" +, cites = "a-pdpaa-87, a-vdsfg-91, bm-sdcs-71, cs-arscg-89, d-slsv-34, e-acg-87, e-atccd-90, eks-sspp-83, em-sstcd-90, em-tdas-92, gks-ricdv-90, j-3dtlt-89, j-ctddt-91, l-gtgac-72, l-scsi-77, l-pndt-86, l-rtp-91, ps-cgi-85, r-mkkde-21, r-odtr-91, s-udzvd-28, s-chdch-86, v-nadpc-07, ZZZ" +, update = "97.11 bibrelex" } @article{es-itfwr-96 -, author = "H. Edelsbrunner and N. R. Shah" -, title = "Incremental topological flipping works for regular triangulations" -, journal = "Algorithmica" -, volume = 15 -, year = 1996 -, pages = "223--241" -, update = "96.05 smid" +, author = "H. Edelsbrunner and N. R. Shah" +, title = "Incremental topological flipping works for regular triangulations" +, journal = "Algorithmica" +, volume = 15 +, year = 1996 +, pages = "223--241" +, update = "96.05 smid" } @inproceedings{es-tts-94 -, author = "H. Edelsbrunner and N. R. Shah" -, title = "Triangulating Topological Spaces" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "285--292" -, precedes = "es-tts-97" -, cites = "b-sat3m-64, bt-dfat-82, b-rgsdd-93, c-gqmgc-93, cf-hcc-67, d-slsv-34, e-acg-87, e-ubids-93, em-sstcd-90, gp-dt-74, h-dt-76, ks-sts-93, l-slfde-45, lw-tcc-69, ms-chrfm-, m-tfc-75, m-eat-84, ps-cgi-85, r-iat-88, rs-iplt-72, sf-afem-73, v-nadpc-07, w-tl-62, y-stgd-90, ZZZ" -, update = "00.03 devillers, 98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "H. Edelsbrunner and N. R. Shah" +, title = "Triangulating Topological Spaces" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "285--292" +, precedes = "es-tts-97" +, cites = "b-sat3m-64, bt-dfat-82, b-rgsdd-93, c-gqmgc-93, cf-hcc-67, d-slsv-34, e-acg-87, e-ubids-93, em-sstcd-90, gp-dt-74, h-dt-76, ks-sts-93, l-slfde-45, lw-tcc-69, ms-chrfm-, m-tfc-75, m-eat-84, ps-cgi-85, r-iat-88, rs-iplt-72, sf-afem-73, v-nadpc-07, w-tl-62, y-stgd-90, ZZZ" +, update = "00.03 devillers, 98.03 bibrelex, 94.09 jones, 94.01 jones" } @article{es-tts-97 -, author = "H. Edelsbrunner and N. R. Shah" -, title = "Triangulating Topological Spaces" -, journal = "Int. J. on Comp. Geom." -, volume = 7 -, year = 1997 -, pages = "365--378" -, succeeds = "es-tts-94" -, update = "00.03 devillers" +, author = "H. Edelsbrunner and N. R. Shah" +, title = "Triangulating Topological Spaces" +, journal = "Int. J. on Comp. Geom." +, volume = 7 +, year = 1997 +, pages = "365--378" +, succeeds = "es-tts-94" +, update = "00.03 devillers" } @inproceedings{es-hipac-90 -, author = "H. Edelsbrunner and Micha Sharir" -, title = "A hyperplane incidence problem with applications to counting distances" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "419--428" -, precedes = "es-hipac-91" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Micha Sharir" +, title = "A hyperplane incidence problem with applications to counting distances" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "419--428" +, precedes = "es-hipac-91" +, update = "98.03 mitchell" } @inproceedings{es-hipac-91 -, author = "H. Edelsbrunner and Micha Sharir" -, title = "A hyperplane incidence problem with applications to counting distances" -, editor = "P. Gritzman and B. Sturmfels" -, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 4 -, publisher = "AMS Press" -, address = "Providence, RI" -, year = 1991 -, pages = "253--263" -, succeeds = "es-hipac-90" -, update = "98.07 agarwal, 98.03 mitchell, 93.09 erickson" +, author = "H. Edelsbrunner and Micha Sharir" +, title = "A hyperplane incidence problem with applications to counting distances" +, editor = "P. Gritzman and B. Sturmfels" +, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 4 +, publisher = "AMS Press" +, address = "Providence, RI" +, year = 1991 +, pages = "253--263" +, succeeds = "es-hipac-90" +, update = "98.07 agarwal, 98.03 mitchell, 93.09 erickson" } @techreport{es-mnwsn-87 -, author = "H. Edelsbrunner and Micha Sharir" -, title = "The maximum number of ways to stab $n$ convex non-intersecting sets in the plane is $2n-2$" -, type = "Report" -, number = 281 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1987 -, keywords = "combinatorial geometry, stabbing, convex, Davenport-Schinzel sequences, divide-and-conquer" -, precedes = "es-mnwsn-90" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Micha Sharir" +, title = "The maximum number of ways to stab $n$ convex non-intersecting sets in the plane is $2n-2$" +, type = "Report" +, number = 281 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1987 +, keywords = "combinatorial geometry, stabbing, convex, Davenport-Schinzel sequences, divide-and-conquer" +, precedes = "es-mnwsn-90" +, update = "98.03 mitchell" } @article{es-mnwsn-90 -, author = "Herbert Edelsbrunner and Micha Sharir" -, title = "The maximum number of ways to stab $n$ convex non-intersecting sets in the plane is $2n-2$" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "35--42" -, keywords = "combinatorial geometry, stabbing, convex, Davenport-Schinzel sequences, divide-and-conquer" -, succeeds = "es-mnwsn-87" -, update = "98.11 aronov+bibrelex, 98.03 mitchell" +, author = "Herbert Edelsbrunner and Micha Sharir" +, title = "The maximum number of ways to stab $n$ convex non-intersecting sets in the plane is $2n-2$" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "35--42" +, keywords = "combinatorial geometry, stabbing, convex, Davenport-Schinzel sequences, divide-and-conquer" +, succeeds = "es-mnwsn-87" +, update = "98.11 aronov+bibrelex, 98.03 mitchell" } @article{es-otatd-91 -, author = "H. Edelsbrunner and W. Shi" -, title = "An {$O(n \log^{2} h)$} time algorithm for the three-dimensional convex hull problem" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "259--277" +, author = "H. Edelsbrunner and W. Shi" +, title = "An {$O(n \log^{2} h)$} time algorithm for the three-dimensional convex hull problem" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "259--277" } @article{es-nfnpp-? -, author = "H. Edelsbrunner and Steven S. Skiena" -, title = "On the number of furthest neighbour pairs in a point set" -, journal = "Amer. Math. Monthly" -, volume = "?" -, year = "?" -, pages = "?" -, keywords = "pointset, furthest pair" -, succeeds = "es-nfnpp-86" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "H. Edelsbrunner and Steven S. Skiena" +, title = "On the number of furthest neighbour pairs in a point set" +, journal = "Amer. Math. Monthly" +, volume = "?" +, year = "?" +, pages = "?" +, keywords = "pointset, furthest pair" +, succeeds = "es-nfnpp-86" +, update = "98.03 mitchell, 95.09 korneenko" } @techreport{es-nfnpp-86 -, author = "H. Edelsbrunner and Steven S. Skiena" -, title = "On the number of furthest neighbour pairs in a point set" -, type = "Report" -, number = "UIUCDCS-R-86-1312" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1986 -, precedes = "es-nfnpp-?" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "H. Edelsbrunner and Steven S. Skiena" +, title = "On the number of furthest neighbour pairs in a point set" +, type = "Report" +, number = "UIUCDCS-R-86-1312" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1986 +, precedes = "es-nfnpp-?" +, update = "98.03 mitchell, 95.09 korneenko" } @techreport{es-pcpxr-86 -, author = "H. Edelsbrunner and Steven S. Skiena" -, title = "Probing convex polygons with $x$-rays" -, type = "Report" -, number = "UIUCDCS-R-86-1306" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1986 -, keywords = "discrete geometry, robotics, probing, worst-case analysis, polygons, convex, two-dimensional" -, precedes = "es-pcpxr-88" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Steven S. Skiena" +, title = "Probing convex polygons with $x$-rays" +, type = "Report" +, number = "UIUCDCS-R-86-1306" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1986 +, keywords = "discrete geometry, robotics, probing, worst-case analysis, polygons, convex, two-dimensional" +, precedes = "es-pcpxr-88" +, update = "98.03 mitchell" } @article{es-pcpxr-88 -, author = "H. Edelsbrunner and Steven S. Skiena" -, title = "Probing convex polygons with $x$-rays" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "870--882" -, keywords = "discrete geometry, robotics, probing, worst-case analysis, polygons, convex, two-dimensional" -, succeeds = "es-pcpxr-86" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Steven S. Skiena" +, title = "Probing convex polygons with $x$-rays" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "870--882" +, keywords = "discrete geometry, robotics, probing, worst-case analysis, polygons, convex, two-dimensional" +, succeeds = "es-pcpxr-86" +, update = "98.03 mitchell" } @article{es-cmsrl-90 -, author = "H. Edelsbrunner and D. L. Souvaine" -, title = "Computing median-of-squares regression lines and guided topological sweep" -, journal = "J. Amer. Statist. Assoc." -, volume = 85 -, year = 1990 -, pages = "115--119" -, keywords = "statistics, optimization, plane-sweep, topological sweep, geometric transformations, binary search, points, lines" +, author = "H. Edelsbrunner and D. L. Souvaine" +, title = "Computing median-of-squares regression lines and guided topological sweep" +, journal = "J. Amer. Statist. Assoc." +, volume = 85 +, year = 1990 +, pages = "115--119" +, keywords = "statistics, optimization, plane-sweep, topological sweep, geometric transformations, binary search, points, lines" } @article{es-nepfp-86 -, author = "H. Edelsbrunner and G. St{\"o}ckl" -, title = "The number of extreme pairs of finite point sets in {Euclidean} spaces" -, journal = "J. Combin. Theory" -, volume = 43 -, number = 2 -, year = 1986 -, pages = "344--349" -, keywords = "points, combinatorial geometry" -, update = "95.09 korneenko" +, author = "H. Edelsbrunner and G. St{\"o}ckl" +, title = "The number of extreme pairs of finite point sets in {Euclidean} spaces" +, journal = "J. Combin. Theory" +, volume = 43 +, number = 2 +, year = 1986 +, pages = "344--349" +, keywords = "points, combinatorial geometry" +, update = "95.09 korneenko" } @inproceedings{et-qtaml-91 -, author = "H. Edelsbrunner and T. S. Tan" -, title = "A quadratic time algorithm for the minmax length triangulation" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "414--423" -, precedes = "et-qtaml-93" -, update = "93.09 rote" +, author = "H. Edelsbrunner and T. S. Tan" +, title = "A quadratic time algorithm for the minmax length triangulation" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "414--423" +, precedes = "et-qtaml-93" +, update = "93.09 rote" } @article{et-qtaml-93 -, author = "H. Edelsbrunner and T. S. Tan" -, title = "A quadratic time algorithm for the minmax length triangulation" -, journal = "SIAM J. Comput." -, volume = 22 -, year = 1993 -, pages = "527--551" -, succeeds = "et-qtaml-91" -, update = "93.09 rote" +, author = "H. Edelsbrunner and T. S. Tan" +, title = "A quadratic time algorithm for the minmax length triangulation" +, journal = "SIAM J. Comput." +, volume = 22 +, year = 1993 +, pages = "527--551" +, succeeds = "et-qtaml-91" +, update = "93.09 rote" } @inproceedings{et-ubcdt-92 -, author = "H. Edelsbrunner and T. S. Tan" -, title = "An upper bound for conforming {Delaunay} triangulations" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "53--62" -, succeeds = "et-ubcdt-93" -, cites = "beg-pgmg-90, be-psntp-91, bfl-rsddt-88i, b-srpcs-88, c-atapd-74, clr-ia-90, ds-oiti-89, d-slsv-34, e-acg-87, ea-lacvp-81, f-savd-87, gks-ricdv-90, gs-pmgsc-85, js-clvpa-87, l-scsi-77, l-vsp-83, ll-gdtpg-86, ns-ppdtp-91, o-tavc-91, ps-cgi-85, r-odtr-91, r-mrpdt-90, s-der-91, s-cdtvd-88, s-let-78, sf-afem-73, v-nadpc-08, ZZZ" -, update = "98.07 bibrelex, 97.11 bibrelex, 95.09 korneenko" +, author = "H. Edelsbrunner and T. S. Tan" +, title = "An upper bound for conforming {Delaunay} triangulations" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "53--62" +, succeeds = "et-ubcdt-93" +, cites = "beg-pgmg-90, be-psntp-91, bfl-rsddt-88i, b-srpcs-88, c-atapd-74, clr-ia-90, ds-oiti-89, d-slsv-34, e-acg-87, ea-lacvp-81, f-savd-87, gks-ricdv-90, gs-pmgsc-85, js-clvpa-87, l-scsi-77, l-vsp-83, ll-gdtpg-86, ns-ppdtp-91, o-tavc-91, ps-cgi-85, r-odtr-91, r-mrpdt-90, s-der-91, s-cdtvd-88, s-let-78, sf-afem-73, v-nadpc-08, ZZZ" +, update = "98.07 bibrelex, 97.11 bibrelex, 95.09 korneenko" } @article{et-ubcdt-93 -, author = "H. Edelsbrunner and T. S. Tan" -, title = "An upper bound for conforming {Delaunay} triangulations" -, journal = "Discrete Comput. Geom." -, volume = 10 -, number = 2 -, year = 1993 -, pages = "197--213" -, update = "95.09 korneenko" +, author = "H. Edelsbrunner and T. S. Tan" +, title = "An upper bound for conforming {Delaunay} triangulations" +, journal = "Discrete Comput. Geom." +, volume = 10 +, number = 2 +, year = 1993 +, pages = "197--213" +, update = "95.09 korneenko" } @inproceedings{etw-otama-90 -, author = "H. Edelsbrunner and T. S. Tan and R. Waupotitsch" -, title = "An {$O(n^{2} \log n)$} time algorithm for the minmax angle triangulation" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "44--52" -, cites = "ahu-daca-74, ba-acfem-76, c-atapd-74, d-slsv-34, e-acg-87, f-savd-87, gs-pmgsc-85, h-ep-82, k-mtpd-80, l-gtgac-72, l-scsi-77, ll-gdtpg-86, ph-hta-87, ps-pqat-77, ps-cgi-85, s-cdtvd-88, sh-cpp-75, s-let-78, sf-afem-73, ZZZ" -, update = "97.11 bibrelex" +, author = "H. Edelsbrunner and T. S. Tan and R. Waupotitsch" +, title = "An {$O(n^{2} \log n)$} time algorithm for the minmax angle triangulation" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "44--52" +, cites = "ahu-daca-74, ba-acfem-76, c-atapd-74, d-slsv-34, e-acg-87, f-savd-87, gs-pmgsc-85, h-ep-82, k-mtpd-80, l-gtgac-72, l-scsi-77, ll-gdtpg-86, ph-hta-87, ps-pqat-77, ps-cgi-85, s-cdtvd-88, sh-cpp-75, s-let-78, sf-afem-73, ZZZ" +, update = "97.11 bibrelex" } @article{etw-otama-92 -, author = "Herbert Edelsbrunner and Tiow Seng Tan and Roman Waupotitsch" -, title = "${O}({N}^2 \log {N})$ Time Algorithm For The Minmax Angle Triangulation" -, journal = "SIAM J. Sci. Statist. Comput." -, volume = 13 -, number = 4 -, month = jul -, year = 1992 -, pages = "994--1008" -, succeeds = "etw-otama-90" -, annote = "Basically a generalization of switching. If we can't - improve the worst triangle by a switching look for a an - edge splitting the largest angle that crosses several - edges." +, author = "Herbert Edelsbrunner and Tiow Seng Tan and Roman Waupotitsch" +, title = "${O}({N}^2 \log {N})$ Time Algorithm For The Minmax Angle Triangulation" +, journal = "SIAM J. Sci. Statist. Comput." +, volume = 13 +, number = 4 +, month = jul +, year = 1992 +, pages = "994--1008" +, succeeds = "etw-otama-90" +, annote = "Basically a generalization of switching. If we can't + improve the worst triangle by a switching look for a an + edge splitting the largest angle that crosses several + edges." } @inproceedings{evw-cdpsh-94 -, author = "H. Edelsbrunner and P. Valtr and Emo Welzl" -, title = "Cutting Dense Point Sets in Half" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "203--210" -, cites = "a-gmtud-90, akp-mscpr-89, ap-ieggs-86, acegsw-ptphp-91, bfl-nhp-89, c-sscg-86, cp-hrsaa-86, csy-khrp-87, de-ctchp-93, e-ibith-91, ew-nlsfs-85, ew-cbtda-86, elss-dgpps-73, gps-crotr-89, gps-iscir-90, l-nhl-71, pss-ubnpk-92, r-n3sfp-93, s-iggp-76, v-ppsbr-94, v-cis7h-92, vz-ctpci-92, ZZZ" -, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" +, author = "H. Edelsbrunner and P. Valtr and Emo Welzl" +, title = "Cutting Dense Point Sets in Half" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "203--210" +, cites = "a-gmtud-90, akp-mscpr-89, ap-ieggs-86, acegsw-ptphp-91, bfl-nhp-89, c-sscg-86, cp-hrsaa-86, csy-khrp-87, de-ctchp-93, e-ibith-91, ew-nlsfs-85, ew-cbtda-86, elss-dgpps-73, gps-crotr-89, gps-iscir-90, l-nhl-71, pss-ubnpk-92, r-n3sfp-93, s-iggp-76, v-ppsbr-94, v-cis7h-92, vz-ctpci-92, ZZZ" +, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" } @article{evw-cdpsh-97 -, author = "H. Edelsbrunner and P. Valtr and Emo Welzl" -, title = "Cutting Dense Point Sets in Half" -, journal = "Discrete Comput. Geom." -, volume = 17 -, year = 1997 -, pages = "243--255" -, update = "98.07 agarwal" +, author = "H. Edelsbrunner and P. Valtr and Emo Welzl" +, title = "Cutting Dense Point Sets in Half" +, journal = "Discrete Comput. Geom." +, volume = 17 +, year = 1997 +, pages = "243--255" +, update = "98.07 agarwal" } @article{evl-madsb-80 -, author = "H. Edelsbrunner and J. {van Leeuwen}" -, title = "Multidimensional algorithms and data structures (bibliography)" -, journal = "Bull. EATCS" -, volume = 11 -, year = 1980 -, pages = "46--74" -, keywords = "searching, data structuring, $d$-dimensional" -, update = "95.09 korneenko" +, author = "H. Edelsbrunner and J. {van Leeuwen}" +, title = "Multidimensional algorithms and data structures (bibliography)" +, journal = "Bull. EATCS" +, volume = 11 +, year = 1980 +, pages = "46--74" +, keywords = "searching, data structuring, $d$-dimensional" +, update = "95.09 korneenko" } @article{ew-cac-97 -, author = "H. Edelsbrunner and E. Waupotitsch" -, title = "A combinatorial approach to cartograms" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "343--360" -, succeeds = "ew-cac-95" -, update = "97.07 devillers" +, author = "H. Edelsbrunner and E. Waupotitsch" +, title = "A combinatorial approach to cartograms" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "343--360" +, succeeds = "ew-cac-95" +, update = "97.07 devillers" } @inproceedings{ew-cac-95 -, author = "Herbert Edelsbrunner and Roman Waupotitsch" -, title = "A Combinatorial Approach to Cartograms" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "98--108" -, keywords = "topology, homeomorphism" -, precedes = "ew-cac-97" -, cites = "clr-ia-90, d-mdcm-93, dcn-accac-85, g-gsh-81, gl-mc-89, gw-hcg-93a, gw-hcg-93b, m-mdscg-84, m-eat-84, s-t-93, t-ctud-73, t-aciho-88, wg-plrsm-85, ZZZ" -, update = "98.03 bibrelex, 97.07 devillers, 95.09 mitchell" +, author = "Herbert Edelsbrunner and Roman Waupotitsch" +, title = "A Combinatorial Approach to Cartograms" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "98--108" +, keywords = "topology, homeomorphism" +, precedes = "ew-cac-97" +, cites = "clr-ia-90, d-mdcm-93, dcn-accac-85, g-gsh-81, gl-mc-89, gw-hcg-93a, gw-hcg-93b, m-mdscg-84, m-eat-84, s-t-93, t-ctud-73, t-aciho-88, wg-plrsm-85, ZZZ" +, update = "98.03 bibrelex, 97.07 devillers, 95.09 mitchell" } @article{ew-chsct-86 -, author = "H. Edelsbrunner and R. Waupotitsch" -, title = "Computing a ham-sandwich cut in two dimensions" -, journal = "J. Symbolic Comput." -, volume = 2 -, year = 1986 -, pages = "171--178" -, keywords = "design of algorithms, construction, partition, prune-and-search, geometric transformations, worst-case analysis, points, lines, two-dimensional" +, author = "H. Edelsbrunner and R. Waupotitsch" +, title = "Computing a ham-sandwich cut in two dimensions" +, journal = "J. Symbolic Comput." +, volume = 2 +, year = 1986 +, pages = "171--178" +, keywords = "design of algorithms, construction, partition, prune-and-search, geometric transformations, worst-case analysis, points, lines, two-dimensional" } @article{ew-cbtda-86 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "Constructing belts in two-dimensional arrangements with applications" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "271--284" -, keywords = "design of algorithms, combinatorial geometry, plane-sweep, repeated search, arrangements, two-dimensional, counting, approximation, range search, arrangements" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "Constructing belts in two-dimensional arrangements with applications" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "271--284" +, keywords = "design of algorithms, combinatorial geometry, plane-sweep, repeated search, arrangements, two-dimensional, counting, approximation, range search, arrangements" +, update = "98.03 mitchell" } @techreport{ew-hre-82 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "Halfplanar range estimation" -, type = "Report" -, number = "F98" -, institution = "Inst. Informationsverarb., Univ. Graz" -, address = "Graz, Austria" -, year = 1982 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "Halfplanar range estimation" +, type = "Report" +, number = "F98" +, institution = "Inst. Informationsverarb., Univ. Graz" +, address = "Graz, Austria" +, year = 1982 +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{ew-hrsls-83 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "Halfplanar range search in linear space and {$O(n^{0.695})$} query time" -, type = "Report" -, number = "F111" -, institution = "Inst. Informationsverarb., Univ. Graz" -, address = "Graz, Austria" -, year = 1983 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "Halfplanar range search in linear space and {$O(n^{0.695})$} query time" +, type = "Report" +, number = "F111" +, institution = "Inst. Informationsverarb., Univ. Graz" +, address = "Graz, Austria" +, year = 1983 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ew-hrsls-86 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "Halfplanar range search in linear space and {$O(n^{0.695})$} query time" -, journal = "Inform. Process. Lett." -, volume = 23 -, year = 1986 -, pages = "289--293" -, keywords = "data structuring, discrete geometry, searching, partition, range search, trees, subdivisions, two-dimensional, reporting, counting" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "Halfplanar range search in linear space and {$O(n^{0.695})$} query time" +, journal = "Inform. Process. Lett." +, volume = 23 +, year = 1986 +, pages = "289--293" +, keywords = "data structuring, discrete geometry, searching, partition, range search, trees, subdivisions, two-dimensional, reporting, counting" +, update = "98.03 mitchell" } @incollection{ew-mesla-84 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "Monotone edge sequences in line arrangements, with applications" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 176 -, year = 1984 -, pages = "265--273" -, keywords = "lines, arrangement" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "Monotone edge sequences in line arrangements, with applications" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 176 +, year = 1984 +, pages = "265--273" +, keywords = "lines, arrangement" +, update = "98.03 mitchell, 95.09 korneenko" } @article{ew-mnemf-86 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "On the maximal number of edges of many faces in an arrangement" -, journal = "J. Combin. Theory Ser. A" -, volume = 41 -, year = 1986 -, pages = "159--166" -, keywords = "arrangements, complexity of faces" -, update = "98.03 mitchell" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "On the maximal number of edges of many faces in an arrangement" +, journal = "J. Combin. Theory Ser. A" +, volume = 41 +, year = 1986 +, pages = "159--166" +, keywords = "arrangements, complexity of faces" +, update = "98.03 mitchell" } @incollection{ew-nessp-83 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "On the number of equal-sized semispaces of a set of points in the plane" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 154 -, year = 1983 -, pages = "182--187" -, keywords = "points, combinatorial geometry" -, update = "98.03 mitchell, 95.09 korneenko" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "On the number of equal-sized semispaces of a set of points in the plane" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 154 +, year = 1983 +, pages = "182--187" +, keywords = "points, combinatorial geometry" +, update = "98.03 mitchell, 95.09 korneenko" } @techreport{ew-nlsfs-82 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "On the number of line-separations of a finite set in the plane" -, type = "Report" -, number = "F97" -, institution = "Inst. Informationsverarb., Univ. Graz" -, address = "Graz, Austria" -, year = 1982 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "On the number of line-separations of a finite set in the plane" +, type = "Report" +, number = "F97" +, institution = "Inst. Informationsverarb., Univ. Graz" +, address = "Graz, Austria" +, year = 1982 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ew-nlsfs-85 -, author = "H. Edelsbrunner and Emo Welzl" -, title = "On the number of line separations of a finite set in the plane" -, journal = "J. Combin. Theory Ser. A" -, volume = 40 -, year = 1985 -, pages = "15--29" -, update = "98.03 agarwal+mitchell" +, author = "H. Edelsbrunner and Emo Welzl" +, title = "On the number of line separations of a finite set in the plane" +, journal = "J. Combin. Theory Ser. A" +, volume = 40 +, year = 1985 +, pages = "15--29" +, update = "98.03 agarwal+mitchell" } @inproceedings{e-dum-91 -, author = "J. Edmonds" -, title = "Decomposition using {Minkowski}" -, booktitle = "Abstracts of the 14th Internat. Sympos. on Mathematical Programming" -, site = "Amsterdam, Netherlands" -, year = 1991 -, update = "98.07 bibrelex" +, author = "J. Edmonds" +, title = "Decomposition using {Minkowski}" +, booktitle = "Abstracts of the 14th Internat. Sympos. on Mathematical Programming" +, site = "Amsterdam, Netherlands" +, year = 1991 +, update = "98.07 bibrelex" } @article{e-mmpv-65 -, author = "J. Edmonds" -, title = "Maximum matching and a polyhedron with (0,1) vertices" -, journal = "J. Res. National Bureau of Standards" -, volume = "??" -, year = 1965 -, pages = "125--130" -, update = "98.03 bibrelex" +, author = "J. Edmonds" +, title = "Maximum matching and a polyhedron with (0,1) vertices" +, journal = "J. Res. National Bureau of Standards" +, volume = "??" +, year = 1965 +, pages = "125--130" +, update = "98.03 bibrelex" } @article{e-mpmis-65 -, author = "J. Edmonds" -, title = "Minimum partition of a matroid into independent sets" -, journal = "Research of th NBS" -, volume = 69 -, year = 1965 -, pages = "67--72" -, update = "01.07 devillers, 98.11 bibrelex" +, author = "J. Edmonds" +, title = "Minimum partition of a matroid into independent sets" +, journal = "Research of th NBS" +, volume = 69 +, year = 1965 +, pages = "67--72" +, update = "01.07 devillers, 98.11 bibrelex" } @article{e-sdrla-67 -, author = "J. Edmonds" -, title = "Systems of distinct representatives and linear algebra" -, journal = "J. Res. National Bureau of Standards" -, volume = 71 -, number = "B" -, year = 1967 -, pages = "241--245" -, update = "98.07 bibrelex" +, author = "J. Edmonds" +, title = "Systems of distinct representatives and linear algebra" +, journal = "J. Res. National Bureau of Standards" +, volume = 71 +, number = "B" +, year = 1967 +, pages = "241--245" +, update = "98.07 bibrelex" } @article{ek-tiaen-72 -, author = "J. Edmonds and R. M. Karp" -, title = "Theoretical improvements in algorithmic efficiency for network flow problems" -, journal = "J. ACM" -, volume = 19 -, year = 1972 -, pages = "248--264" -, update = "97.11 bibrelex" +, author = "J. Edmonds and R. M. Karp" +, title = "Theoretical improvements in algorithmic efficiency for network flow problems" +, journal = "J. ACM" +, volume = 19 +, year = 1972 +, pages = "248--264" +, update = "97.11 bibrelex" } @article{e-crps-60 -, author = "R. Edmonds" -, title = "A combinatorial representation for polyhedral surfaces" -, journal = "Notices Amer. Math. Soc." -, volume = 7 -, year = 1960 -, pages = 646 +, author = "R. Edmonds" +, title = "A combinatorial representation for polyhedral surfaces" +, journal = "Notices Amer. Math. Soc." +, volume = 7 +, year = 1960 +, pages = 646 } @article{ecms-gcla-97 -, author = "S. Edmondson and J. Christensen and J. Marks and S. M. Schieber" -, title = "A general cartographic labeling algorithm" -, journal = "Cartographica" -, volume = "??" -, year = 1997 -, note = "To appear" -, update = "98.07 bibrelex" +, author = "S. Edmondson and J. Christensen and J. Marks and S. M. Schieber" +, title = "A general cartographic labeling algorithm" +, journal = "Cartographica" +, volume = "??" +, year = 1997 +, note = "To appear" +, update = "98.07 bibrelex" } @book{ep-cag-86 -, author = "C. H. {Edwards, Jr.} and D. E. Penny" -, title = "Calculus and Analytic Geometry" -, edition = "2nd" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1986 +, author = "C. H. {Edwards, Jr.} and D. E. Penny" +, title = "Calculus and Analytic Geometry" +, edition = "2nd" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1986 } @article{e-ltawm-93 -, author = "P. Effernan" -, title = "Linear time algorithms for weakly monotone polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "121--137" -, update = "96.09 devillers" +, author = "P. Effernan" +, title = "Linear time algorithms for weakly monotone polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "121--137" +, update = "96.09 devillers" } @mastersthesis{e-samcp-93 -, author = "A. Efrat" -, title = "A simple algorithm for maintaining the center of a planar point set" -, school = "Technion IIT" -, address = "Haifa, Israel" -, year = 1993 -, keywords = "master thesis" -, precedes = "bei-samcp-93" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "A. Efrat" +, title = "A simple algorithm for maintaining the center of a planar point set" +, school = "Technion IIT" +, address = "Haifa, Israel" +, year = 1993 +, keywords = "master thesis" +, precedes = "bei-samcp-93" +, update = "98.11 bibrelex, 97.11 bibrelex" } @unpublished{e-famps-95 -, author = "A. Efrat" -, title = "Finding approximate matching of points and segments under translation" -, year = 1995 -, note = "Unpublished manuscript" -, update = "95.09 agarwal" +, author = "A. Efrat" +, title = "Finding approximate matching of points and segments under translation" +, year = 1995 +, note = "Unpublished manuscript" +, update = "95.09 agarwal" } @inproceedings{eg-siruc-93 -, author = "A. Efrat and C. Gotsman" -, title = "Subpixel image registration using circular fiducials" -, booktitle = "Proc. 2nd Israel Sympos. Theory Computing and Systems" -, year = 1993 -, pages = "48--47" -, precedes = "eg-siruc-94" -, update = "96.09 devillers, 93.09 efrat" +, author = "A. Efrat and C. Gotsman" +, title = "Subpixel image registration using circular fiducials" +, booktitle = "Proc. 2nd Israel Sympos. Theory Computing and Systems" +, year = 1993 +, pages = "48--47" +, precedes = "eg-siruc-94" +, update = "96.09 devillers, 93.09 efrat" } @article{eg-siruc-94 -, author = "A. Efrat and C. Gotsman" -, title = "Subpixel image registration using circular fiducials" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "403--422" -, keywords = "computer vision, registration, fiducials, lattice geometry, number theory" -, succeeds = "eg-siruc-93" -, update = "98.07 rote, 96.09 devillers" +, author = "A. Efrat and C. Gotsman" +, title = "Subpixel image registration using circular fiducials" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "403--422" +, keywords = "computer vision, registration, fiducials, lattice geometry, number theory" +, succeeds = "eg-siruc-93" +, update = "98.07 rote, 96.09 devillers" } @inproceedings{eh-fcmfc-98 -, author = "Alon Efrat and Sariel Har-Peled" -, title = "Fly Cheaply: {On} the Minimum Fuel-Consumption Problem" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "to appear" -, update = "98.03 mitchell" +, author = "Alon Efrat and Sariel Har-Peled" +, title = "Fly Cheaply: {On} the Minimum Fuel-Consumption Problem" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "to appear" +, update = "98.03 mitchell" } @inproceedings{ehks-cspre-00 -, author = "Alon Efrat and Frank Hoffmann and Klaus Kriegel and Christof Schultz" -, title = "Covering Simple Polygonal Regions by Ellipses" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "89--92" -, update = "00.03 bibrelex" +, author = "Alon Efrat and Frank Hoffmann and Klaus Kriegel and Christof Schultz" +, title = "Covering Simple Polygonal Regions by Ellipses" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "89--92" +, update = "00.03 bibrelex" } @inproceedings{ei-ibmrp-96 -, author = "Alon Efrat and Alon Itai" -, title = "Improvements on Bottleneck Matching and Related Problems Using Geometry" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "301--310" -, cites = "aass-sdp-93, aes-vdsl3-95, am-rsps-93, aks-scps-83, abb-amps-91, amww-cssgo-88, akmsw-mpnrc-91, amnsw-oaann-94, b-ttgt-57, by-lotmc-94, ctl-sebmp-92, ck-igpmp-92, cdek-gpmds-95, cghkkk-gpmem-93, c-sdsno-87, d-aspmf-70, egs-oplms-86, ek-tiaen-72, esz-cskec-94, e-famps-95, fj-gsrsm-84, hs-adaps-92, h-gaaps-93, hs-asdch-90, hs-ftp-91, hk-nammb-73, hk-cmhdp-90, hks-uevsi-93, ia-eaggs-86, k-ecbmf-73, k-iagoe-95, k-hmap-55, l-conm-76, lp-mt-86, m-apcad-83, t-dsna-83, v-ghm-88, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Alon Efrat and Alon Itai" +, title = "Improvements on Bottleneck Matching and Related Problems Using Geometry" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "301--310" +, cites = "aass-sdp-93, aes-vdsl3-95, am-rsps-93, aks-scps-83, abb-amps-91, amww-cssgo-88, akmsw-mpnrc-91, amnsw-oaann-94, b-ttgt-57, by-lotmc-94, ctl-sebmp-92, ck-igpmp-92, cdek-gpmds-95, cghkkk-gpmem-93, c-sdsno-87, d-aspmf-70, egs-oplms-86, ek-tiaen-72, esz-cskec-94, e-famps-95, fj-gsrsm-84, hs-adaps-92, h-gaaps-93, hs-asdch-90, hs-ftp-91, hk-nammb-73, hk-cmhdp-90, hks-uevsi-93, ia-eaggs-86, k-ecbmf-73, k-iagoe-95, k-hmap-55, l-conm-76, lp-mt-86, m-apcad-83, t-dsna-83, v-ghm-88, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @unpublished{ei-ibmrp-97 -, author = "A. Efrat and A. Itai and M. J. Katz" -, title = "Improvements on Bottleneck Matching and Related Problems Using Geometry" -, year = 1997 -, note = "Unpublished manuscript" -, succeeds = "ei-ibmrp-96" -, update = "97.11 katz" +, author = "A. Efrat and A. Itai and M. J. Katz" +, title = "Improvements on Bottleneck Matching and Related Problems Using Geometry" +, year = 1997 +, note = "Unpublished manuscript" +, succeeds = "ei-ibmrp-96" +, update = "97.11 katz" } @inproceedings{ek-cfbmg-96 -, author = "A. Efrat and M. J. Katz" -, title = "Computing Fair and Bottleneck Matchings in Geometric Graphs" -, booktitle = "Proc. 7th Annu. Internat. Sympos. Algorithms Comput." -, year = 1996 -, pages = "115--125" -, update = "97.11 katz" +, author = "A. Efrat and M. J. Katz" +, title = "Computing Fair and Bottleneck Matchings in Geometric Graphs" +, booktitle = "Proc. 7th Annu. Internat. Sympos. Algorithms Comput." +, year = 1996 +, pages = "115--125" +, update = "97.11 katz" } @unpublished{ek-ebmhd-97 -, author = "A. Efrat and M. J. Katz" -, title = "Euclidean Bottleneck Matching in Higher Dimensions" -, year = 1997 -, note = "Unpublished manuscript" -, update = "97.11 katz" +, author = "A. Efrat and M. J. Katz" +, title = "Euclidean Bottleneck Matching in Higher Dimensions" +, year = 1997 +, note = "Unpublished manuscript" +, update = "97.11 katz" } @inproceedings{ekns-ddsfo-97 -, author = "A. Efrat and M. J. Katz and F. Nielsen and M. Sharir" -, title = "Dynamic Data Structures for Fat Objects and Their Applications" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "297--306" -, precedes = "ekns-ddsfo-00" -, update = "00.03 smid, 98.03 bibrelex+mitchell, 97.11 katz, 97.07 agarwal" +, author = "A. Efrat and M. J. Katz and F. Nielsen and M. Sharir" +, title = "Dynamic Data Structures for Fat Objects and Their Applications" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "297--306" +, precedes = "ekns-ddsfo-00" +, update = "00.03 smid, 98.03 bibrelex+mitchell, 97.11 katz, 97.07 agarwal" } @article{ekns-ddsfo-00 -, author = "A. Efrat and M. J. Katz and F. Nielsen and M. Sharir" -, title = "Dynamic data structures for fat objects and their applications" -, journal = "Comput. Geom. Theory Appl." -, volume = 15 -, year = 2000 -, pages = "215--227" -, succeeds = "ekns-ddsfo-97" -, update = "00.03 smid" +, author = "A. Efrat and M. J. Katz and F. Nielsen and M. Sharir" +, title = "Dynamic data structures for fat objects and their applications" +, journal = "Comput. Geom. Theory Appl." +, volume = 15 +, year = 2000 +, pages = "215--227" +, succeeds = "ekns-ddsfo-97" +, update = "00.03 smid" } @inproceedings{els-fmcsh-93 -, author = "A. Efrat and M. Lindenbaum and Micha Sharir" -, title = "Finding maximally consistent sets of halfspaces" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "432--436" -, cites = "boo-dspir-91, bklo-gasra-87, ce-oails-92, cs-arscg-89, csy-khrp-87, dk-fdpi-83, e-acg-87, ew-cbtda-86, eg-siruc-93, es-blbda-93t, lb-rpdcd-, m-lpltw-84, m-fppa-90, m-lavd-91, o-olafs-81, pss-ubnpk-92, s-ksacs-91, sd-ddcps-91, w-mksfs-86, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 94.01 matousek, 93.09 milone+mitchell" +, author = "A. Efrat and M. Lindenbaum and Micha Sharir" +, title = "Finding maximally consistent sets of halfspaces" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "432--436" +, cites = "boo-dspir-91, bklo-gasra-87, ce-oails-92, cs-arscg-89, csy-khrp-87, dk-fdpi-83, e-acg-87, ew-cbtda-86, eg-siruc-93, es-blbda-93t, lb-rpdcd-, m-lpltw-84, m-fppa-90, m-lavd-91, o-olafs-81, pss-ubnpk-92, s-ksacs-91, sd-ddcps-91, w-mksfs-86, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 94.01 matousek, 93.09 milone+mitchell" } @techreport{ers-ufwsc- -, author = "A. Efrat and G{\"u}nter Rote and Micha Sharir" -, title = "On the union of fat wedges and separating a collection of segments by a line" -, type = "manuscript" -, precedes = "ers-ufwsc-93a, ers-ufwsc-93b" -, update = "98.11 bibrelex" +, author = "A. Efrat and G{\"u}nter Rote and Micha Sharir" +, title = "On the union of fat wedges and separating a collection of segments by a line" +, type = "manuscript" +, precedes = "ers-ufwsc-93a, ers-ufwsc-93b" +, update = "98.11 bibrelex" } @inproceedings{ers-ufwsc-93a -, author = "A. Efrat and G{\"u}nter Rote and Micha Sharir" -, title = "On the union of fat wedges and separating a collection of segments by a line" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "115--120" -, succeeds = "ers-ufwsc-" -, precedes = "ers-ufwsc-93b" -, cites = "afkmnsu-ampcb-90, abp-oabcu-90, ce-oails-92, cs-arscg-89, e-acg-87, egs-ccmfa-90, es-blbda-93, fmp-csua-90, go-nhpcg-93t, gm-osacv-91, h-fuenl-89, k-fpfcu-93t, ms-ericu-91, m-fppa-90, mpssw-ftdlm-94, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 97.11 bibrelex, 97.03 rote, 96.09 devillers, 94.05 sharir, 93.09 milone+mitchell+rote" +, author = "A. Efrat and G{\"u}nter Rote and Micha Sharir" +, title = "On the union of fat wedges and separating a collection of segments by a line" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "115--120" +, succeeds = "ers-ufwsc-" +, precedes = "ers-ufwsc-93b" +, cites = "afkmnsu-ampcb-90, abp-oabcu-90, ce-oails-92, cs-arscg-89, e-acg-87, egs-ccmfa-90, es-blbda-93, fmp-csua-90, go-nhpcg-93t, gm-osacv-91, h-fuenl-89, k-fpfcu-93t, ms-ericu-91, m-fppa-90, mpssw-ftdlm-94, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 97.11 bibrelex, 97.03 rote, 96.09 devillers, 94.05 sharir, 93.09 milone+mitchell+rote" } @article{ers-ufwsc-93b -, author = "A. Efrat and G{\"u}nter Rote and Micha Sharir" -, title = "On the union of fat wedges and separating a collection of segments by a line" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "277--288" -, succeeds = "ers-ufwsc-93a, ers-ufwsc-" -, cites = "mpssw-ftdlm-94" -, update = "98.11 bibrelex, 98.03 mitchell, 97.11 bibrelex, 97.03 rote" -, abstract = "We call a line $l$ a separator for a set $S$ of objects in - the plane if $l$ avoids all the objects and - partitions $S$ into two nonempty subsets, one consisting - of objects lying above $l$ and the - other of objects lying below $l$. We present an - $O(n log n)$-time algorithm for - finding a separator line for a set of $n$ segments, provided - the ratio between the diameter of the set of segments and - the length of the smallest segment is bounded. - No subquadratic algorithms are known for the general case. - Our algorithm is based on the recent results of - Matousek, Pach, Sharir, Sifrony, and Welzl (1994) concerning - the union of fat triangles, but we also include an analysis - which improves the bounds obtained by Matousek et al." +, author = "A. Efrat and G{\"u}nter Rote and Micha Sharir" +, title = "On the union of fat wedges and separating a collection of segments by a line" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "277--288" +, succeeds = "ers-ufwsc-93a, ers-ufwsc-" +, cites = "mpssw-ftdlm-94" +, update = "98.11 bibrelex, 98.03 mitchell, 97.11 bibrelex, 97.03 rote" +, abstract = "We call a line $l$ a separator for a set $S$ of objects in + the plane if $l$ avoids all the objects and + partitions $S$ into two nonempty subsets, one consisting + of objects lying above $l$ and the + other of objects lying below $l$. We present an + $O(n log n)$-time algorithm for + finding a separator line for a set of $n$ segments, provided + the ratio between the diameter of the set of segments and + the length of the smallest segment is bounded. + No subquadratic algorithms are known for the general case. + Our algorithm is based on the recent results of + Matousek, Pach, Sharir, Sifrony, and Welzl (1994) concerning + the union of fat triangles, but we also include an analysis + which improves the bounds obtained by Matousek et al." } @inproceedings{es-nlaps-94 -, author = "A. Efrat and Micha Sharir" -, title = "A near-linear algorithm for the planar segment center problem" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "87--97" -, update = "98.03 mitchell, 94.05 sharir" +, author = "A. Efrat and Micha Sharir" +, title = "A near-linear algorithm for the planar segment center problem" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "87--97" +, update = "98.03 mitchell, 94.05 sharir" } @article{es-nlaps-96 -, author = "A. Efrat and Micha Sharir" -, title = "A near-linear algorithm for the planar segment center problem" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "239--257" -, update = "98.03 mitchell, 97.03 agarwal" +, author = "A. Efrat and Micha Sharir" +, title = "A near-linear algorithm for the planar segment center problem" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "239--257" +, update = "98.03 mitchell, 97.03 agarwal" } @inproceedings{es-cufop-97 -, author = "A. Efrat and M. Sharir" -, title = "On the Complexity of the Union of Fat Objects in the Plane" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "104--112" -, cites = "aks-cdorp-95, cs-arscg-89, esz-cskec-94, hs-atubs-95, k-3vrs2-??, kos-ehsro-92, klps-ujrcf-86, lps-ctc-95, mpssw-ftdlm-94, ps-rivbu-97, s-ksacs-91, s-atubl-94, s-mpafo-94, k-fpfcu-93, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "A. Efrat and M. Sharir" +, title = "On the Complexity of the Union of Fat Objects in the Plane" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "104--112" +, cites = "aks-cdorp-95, cs-arscg-89, esz-cskec-94, hs-atubs-95, k-3vrs2-??, kos-ehsro-92, klps-ujrcf-86, lps-ctc-95, mpssw-ftdlm-94, ps-rivbu-97, s-ksacs-91, s-atubl-94, s-mpafo-94, k-fpfcu-93, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @article{es-cufop-00 -, author = "A. Efrat and M. Sharir" -, title = "On the Complexity of the Union of Fat Objects in the Plane" -, journal = "Discrete Comput. Geom." -, volume = 23 -, year = 2000 -, pages = "171--189" -, update = "01.07 orourke" +, author = "A. Efrat and M. Sharir" +, title = "On the Complexity of the Union of Fat Objects in the Plane" +, journal = "Discrete Comput. Geom." +, volume = 23 +, year = 2000 +, pages = "171--189" +, update = "01.07 orourke" } @techreport{esz-cskec-93t -, author = "A. Efrat and Micha Sharir and A. Ziv" -, title = "Computing the Smallest $k$-Enclosing Circle and Related Problems" -, type = "Report" -, number = "CIS-9309" -, institution = "Faculty of Computer Science, Technion - IIT" -, address = "Haifa, Israel" -, year = 1993 -, update = "98.03 mitchell, 93.05 efrat" +, author = "A. Efrat and Micha Sharir and A. Ziv" +, title = "Computing the Smallest $k$-Enclosing Circle and Related Problems" +, type = "Report" +, number = "CIS-9309" +, institution = "Faculty of Computer Science, Technion - IIT" +, address = "Haifa, Israel" +, year = 1993 +, update = "98.03 mitchell, 93.05 efrat" } @inproceedings{esz-cskec-93i -, author = "A. Efrat and Micha Sharir and A. Ziv" -, title = "Computing the Smallest $k$-Enclosing Circle and Related Problems" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "325--336" -, precedes = "esz-cskec-94" -, update = "98.03 mitchell, 96.09 agarwal+devillers, 96.05 agarwal, 93.09 smid, 93.05 jones" +, author = "A. Efrat and Micha Sharir and A. Ziv" +, title = "Computing the Smallest $k$-Enclosing Circle and Related Problems" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "325--336" +, precedes = "esz-cskec-94" +, update = "98.03 mitchell, 96.09 agarwal+devillers, 96.05 agarwal, 93.09 smid, 93.05 jones" } @article{esz-cskec-94 -, author = "A. Efrat and Micha Sharir and A. Ziv" -, title = "Computing the Smallest $k$-Enclosing Circle and Related Problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "119--136" -, succeeds = "esz-cskec-93i" -, update = "98.03 mitchell, 96.09 devillers" +, author = "A. Efrat and Micha Sharir and A. Ziv" +, title = "Computing the Smallest $k$-Enclosing Circle and Related Problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "119--136" +, succeeds = "esz-cskec-93i" +, update = "98.03 mitchell, 96.09 devillers" } @article{e-chrsp-65 -, author = "B. Efron" -, title = "The convex hull of a random set of points" -, journal = "Biometrika" -, volume = 52 -, number = 3 -, year = 1965 -, pages = "331--343" +, author = "B. Efron" +, title = "The convex hull of a random set of points" +, journal = "Biometrika" +, volume = 52 +, number = 3 +, year = 1965 +, pages = "331--343" } @article{e-ptnna-67 -, author = "B. Efron" -, title = "The problem of the two nearest neighbors (abstract)" -, journal = "Ann. Math. Statist." -, volume = 38 -, year = 1967 -, pages = 298 +, author = "B. Efron" +, title = "The problem of the two nearest neighbors (abstract)" +, journal = "Ann. Math. Statist." +, volume = 38 +, year = 1967 +, pages = 298 } @article{eg-cipsc-96 -, author = "{\"O}. E{\u{g}}ecio{\u{g}}lu and T. Gonzalez" -, title = "A computationally intractable problem on simplicial complexes" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "85--98" -, update = "97.07 devillers" +, author = "{\"O}. E{\u{g}}ecio{\u{g}}lu and T. Gonzalez" +, title = "A computationally intractable problem on simplicial complexes" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "85--98" +, update = "97.07 devillers" } @article{ek-adspe-89 -, author = "O. Egecioglu and B. Kalantari" -, title = "Approximating the diameter of a set of points in the {Euclidean} space" -, journal = "Inform. Process. Lett." -, volume = 32 -, year = 1989 -, pages = "205--211" -, keywords = "approximation, diameter, points, $d$-dimensional" -, update = "95.09 korneenko" +, author = "O. Egecioglu and B. Kalantari" +, title = "Approximating the diameter of a set of points in the {Euclidean} space" +, journal = "Inform. Process. Lett." +, volume = 32 +, year = 1989 +, pages = "205--211" +, keywords = "approximation, diameter, points, $d$-dimensional" +, update = "95.09 korneenko" } @article{esb-agtuo-95 -, author = "D. Eggert and L. Stark and K. Bowyer" -, title = "Aspect graphs and their use in object recognition" -, journal = "Ann. Math. Artif. Intell." -, volume = 13 -, year = 1995 -, pages = "347--376" -, keywords = "matching, shape recognition, vision" -, update = "98.07 bibrelex, 95.09 mitchell" +, author = "D. Eggert and L. Stark and K. Bowyer" +, title = "Aspect graphs and their use in object recognition" +, journal = "Ann. Math. Artif. Intell." +, volume = 13 +, year = 1995 +, pages = "347--376" +, keywords = "matching, shape recognition, vision" +, update = "98.07 bibrelex, 95.09 mitchell" } @book{e-c-58 -, author = "H. G. Eggleston" -, title = "Convexity" -, publisher = "Cambridge University Press" -, address = "Cambridge, England" -, year = 1958 +, author = "H. G. Eggleston" +, title = "Convexity" +, publisher = "Cambridge University Press" +, address = "Cambridge, England" +, year = 1958 } @article{e-rdg-86 -, author = "R. B. Eggleton" -, title = "Rectilinear Drawings of Graphs" -, journal = "Utilitas Math." -, volume = 29 -, year = 1986 -, pages = "146--172" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. B. Eggleton" +, title = "Rectilinear Drawings of Graphs" +, journal = "Utilitas Math." +, volume = 29 +, year = 1986 +, pages = "146--172" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ek-iodc-90 -, author = "V. M. Egorov and E. G. Kostov" -, title = "Integrated optical digital computers" -, journal = "Appl. Optics" -, volume = 29 -, number = 8 -, year = 1990 -, pages = "1178--1185" -, update = "98.03 bibrelex" +, author = "V. M. Egorov and E. G. Kostov" +, title = "Integrated optical digital computers" +, journal = "Appl. Optics" +, volume = 29 +, number = 8 +, year = 1990 +, pages = "1178--1185" +, update = "98.03 bibrelex" } @article{e-hsrpc-88 -, author = "P. Egyed" -, title = "Hidden-surface removal in polyhedral cross-sections" -, journal = "Visual Comput." -, volume = 3 -, year = 1988 -, pages = "329--343" -, keywords = "hidden line/surface elimination" -, succeeds = "e-trpah-88" +, author = "P. Egyed" +, title = "Hidden-surface removal in polyhedral cross-sections" +, journal = "Visual Comput." +, volume = 3 +, year = 1988 +, pages = "329--343" +, keywords = "hidden line/surface elimination" +, succeeds = "e-trpah-88" } @inproceedings{e-trpah-88 -, author = "P. Egyed" -, title = "Theoretical results on the priority approach to hidden-surface removal" -, booktitle = "Proc. Graphics Interface '88" -, year = 1988 -, pages = "236--245" -, precedes = "e-hsrpc-88" +, author = "P. Egyed" +, title = "Theoretical results on the priority approach to hidden-surface removal" +, booktitle = "Proc. Graphics Interface '88" +, year = 1988 +, pages = "236--245" +, precedes = "e-hsrpc-88" } @inproceedings{ew-ospdc-89 -, author = "P. Egyed and R. Wenger" -, title = "Ordered stabbing of pairwise disjoint convex sets in linear time" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 23 -, succeeds = "ew-ospdc-91" -, update = "95.09 korneenko" +, author = "P. Egyed and R. Wenger" +, title = "Ordered stabbing of pairwise disjoint convex sets in linear time" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 23 +, succeeds = "ew-ospdc-91" +, update = "95.09 korneenko" } @article{ew-ospdc-91 -, author = "P. Egyed and R. Wenger" -, title = "Ordered stabbing of pairwise disjoint convex sets in linear time" -, journal = "Discrete Appl. Math." -, volume = 31 -, number = 2 -, year = 1991 -, pages = "133--140" -, keywords = "stabbing convex line transversal" -, precedes = "ew-ospdc-89" -, update = "95.09 korneenko" +, author = "P. Egyed and R. Wenger" +, title = "Ordered stabbing of pairwise disjoint convex sets in linear time" +, journal = "Discrete Appl. Math." +, volume = 31 +, number = 2 +, year = 1991 +, pages = "133--140" +, keywords = "stabbing convex line transversal" +, precedes = "ew-ospdc-89" +, update = "95.09 korneenko" } @inproceedings{ew-spdtl-89 -, author = "P. Egyed and R. Wenger" -, title = "Stabbing pairwise-disjoint translates in linear time" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "364--369" -, cites = "ahu-daca-74, ab-eact-87, ad-ahdsp-87, arw-lbls-89, d-ltatt-84, e-ftssg-85, e-acg-87, egs-ueplf-87, emprww-sls-82, es-mnwsn-87, hdk-cgp-64, h-fuenl-89, k-cgct-86, kll-gpct-86, kll-gpdt-87, klz-gpcs-85, ks-upcha-86, l-tcctc-80, m-ltalp-83, m-lpltw-84, o-olafs-81, ps-cgi-85, s-ossac-86, t-pgcct-89, w-ghtti-90, ZZZ" -, update = "98.03 bibrelex" +, author = "P. Egyed and R. Wenger" +, title = "Stabbing pairwise-disjoint translates in linear time" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "364--369" +, cites = "ahu-daca-74, ab-eact-87, ad-ahdsp-87, arw-lbls-89, d-ltatt-84, e-ftssg-85, e-acg-87, egs-ueplf-87, emprww-sls-82, es-mnwsn-87, hdk-cgp-64, h-fuenl-89, k-cgct-86, kll-gpct-86, kll-gpdt-87, klz-gpcs-85, ks-upcha-86, l-tcctc-80, m-ltalp-83, m-lpltw-84, o-olafs-81, ps-cgi-85, s-ossac-86, t-pgcct-89, w-ghtti-90, ZZZ" +, update = "98.03 bibrelex" } @article{e-sap-80 -, author = "E. Ehrhart" -, title = "Solution to Advanced Problems" -, journal = "Amer. Math. Monthly" -, volume = 87 -, number = 10 -, month = dec -, year = 1980 -, pages = 826 -, update = "98.11 bibrelex" +, author = "E. Ehrhart" +, title = "Solution to Advanced Problems" +, journal = "Amer. Math. Monthly" +, volume = 87 +, number = 10 +, month = dec +, year = 1980 +, pages = 826 +, update = "98.11 bibrelex" } @article{eet-igcp-76 -, author = "C. Ehrlich and S. Even and R. E. Tarjan" -, title = "Intersection graphs of curves in the plane" -, journal = "J. Combin. Theory Ser. B" -, volume = 21 -, number = 1 -, year = 1976 -, pages = "8--20" -, keywords = "intersection graph, curves, graph" -, update = "95.09 korneenko" +, author = "C. Ehrlich and S. Even and R. E. Tarjan" +, title = "Intersection graphs of curves in the plane" +, journal = "J. Combin. Theory Ser. B" +, volume = 21 +, number = 1 +, year = 1976 +, pages = "8--20" +, keywords = "intersection graph, curves, graph" +, update = "95.09 korneenko" } @article{ei-drmwc-79 -, author = "P. E. Ehrlich and H.-C. {Im Hof}" -, title = "Dirichlet regions in manifolds without conjugate points" -, journal = "Comment. Math. Helvetici" -, volume = 54 -, year = 1979 -, pages = "642--658" -, update = "94.09 bernal" +, author = "P. E. Ehrlich and H.-C. {Im Hof}" +, title = "Dirichlet regions in manifolds without conjugate points" +, journal = "Comment. Math. Helvetici" +, volume = 54 +, year = 1979 +, pages = "642--658" +, update = "94.09 bernal" } @article{ek-iatdp-89 -, author = "N. Eichhorn and H. Kieselwetter" -, title = "{INTEGER} analysis of two-dimensional polygonal objects" -, journal = "Computing" -, volume = 42 -, number = 1 -, year = 1989 -, pages = "1--16" -, update = "95.09 korneenko" +, author = "N. Eichhorn and H. Kieselwetter" +, title = "{INTEGER} analysis of two-dimensional polygonal objects" +, journal = "Computing" +, volume = 42 +, number = 1 +, year = 1989 +, pages = "1--16" +, update = "95.09 korneenko" } @article{ed-copht-83 -, author = "G. Eichman and B. Z. Dong" -, title = "Coherent optical production of the {Hough} Transform" -, journal = "Appl. Optics" -, volume = 22 -, number = 6 -, year = 1983 -, pages = "830--834" -, update = "97.11 bibrelex" +, author = "G. Eichman and B. Z. Dong" +, title = "Coherent optical production of the {Hough} Transform" +, journal = "Appl. Optics" +, volume = 22 +, number = 6 +, year = 1983 +, pages = "830--834" +, update = "97.11 bibrelex" } @incollection{e-sifd-94 -, author = "Paul H. C. Eilers" -, title = "Smoothing and Interpolation with Finite Differences" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "241--250" -, keywords = "data smoothing, curve smoothing" -, update = "94.09 heckbert" -, annote = "Gives simple techniques for smoothing a set of uniformly +, author = "Paul H. C. Eilers" +, title = "Smoothing and Interpolation with Finite Differences" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "241--250" +, keywords = "data smoothing, curve smoothing" +, update = "94.09 heckbert" +, annote = "Gives simple techniques for smoothing a set of uniformly spaced samples. This can be used to remove noise from input data. Contains C code." } @article{ea--93 -, author = "F. Eisenhaber and P. J. Argos" -, title = "??" -, journal = "J. Comp. Chem." -, volume = 14 -, number = 11 -, year = 1993 -, pages = "1272--1280" -, update = "98.03 bibrelex" +, author = "F. Eisenhaber and P. J. Argos" +, title = "??" +, journal = "J. Comp. Chem." +, volume = 14 +, number = 11 +, year = 1993 +, pages = "1272--1280" +, update = "98.03 bibrelex" } @inproceedings{e-vasud-93 -, author = "Rudolf Eisenst{\"o}ck" -, title = "Visualization of Algebraic Surfaces Using the {Dexel} Model" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "48--51" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Rudolf Eisenst{\"o}ck" +, title = "Visualization of Algebraic Surfaces Using the {Dexel} Model" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "48--51" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{es-mters-76 -, author = "M. Eisner and D. Severance" -, title = "Mathematical techniques for efficient record segmentation in large shared databases" -, journal = "J. ACM" -, volume = 23 -, year = 1976 -, pages = "619--635" -, update = "96.05 agarwal" +, author = "M. Eisner and D. Severance" +, title = "Mathematical techniques for efficient record segmentation in large shared databases" +, journal = "J. ACM" +, volume = 23 +, year = 1976 +, pages = "619--635" +, update = "96.05 agarwal" } @incollection{e-fli-94 -, author = "Steven Eker" -, title = "Faster Linear Interpolation" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "526--533" -, keywords = "line drawing, Gouraud shading, integer arithmetic, image resampling" -, update = "94.09 heckbert" -, annote = "Gives optimized code for generic linear interpolation. +, author = "Steven Eker" +, title = "Faster Linear Interpolation" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "526--533" +, keywords = "line drawing, Gouraud shading, integer arithmetic, image resampling" +, update = "94.09 heckbert" +, annote = "Gives optimized code for generic linear interpolation. This is most useful for assembler language programming of graphics operations such as Gouraud shading and image scaling. Contains C code." } @inproceedings{ehlmrw-ddbg-93 -, author = "H. El-Gindy and M. Houle and W. Lenhart and Miller and D. Rappaport and S. Whitesides" -, title = "Dominance drawings of bipartite graphs" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "187--191" -, cites = "bcdtt-hdspd-92, bl-tcopi-76, dm-pos-41, et-adgab-89, g-agtpg-80, h-dpos-51, k-vrrpd-75, k-3ipos-77, ple-togip-71, t-dapsg, dtt-arsdp-92, y-cpodp-82, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "H. El-Gindy and M. Houle and W. Lenhart and Miller and D. Rappaport and S. Whitesides" +, title = "Dominance drawings of bipartite graphs" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "187--191" +, cites = "bcdtt-hdspd-92, bl-tcopi-76, dm-pos-41, et-adgab-89, g-agtpg-80, h-dpos-51, k-vrrpd-75, k-3ipos-77, ple-togip-71, t-dapsg, dtt-arsdp-92, y-cpodp-82, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{ev-tspve-98 -, author = "J. El-Sana and A. Varshney" -, title = "Topology Simplification for Polygonal Virtual Environments" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 4 -, number = 2 -, month = apr -, year = 1998 -, pages = "133--144" -, update = "98.11 held" +, author = "J. El-Sana and A. Varshney" +, title = "Topology Simplification for Polygonal Virtual Environments" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 4 +, number = 2 +, month = apr +, year = 1998 +, pages = "133--144" +, update = "98.11 held" } @article{es-cvdpu-90 -, author = "M. Elbaz and J.-C. Spehner" -, title = "Construction of {Voronoi} Diagrams in the Plane by using Maps" -, journal = "Theoret. Comput. Sci." -, volume = 77 -, number = 3 -, year = 1990 -, pages = "331--343" -, annote = "Basic d\&c algorithm for DT ala Guibas Stolfi. Only - difference is that it uses DCEL as data structure (it - calls this maps), and omits diagonals in cyclic - quads." -, abstract = "An algorithm by Guibas and Stolfi (1985) constructs, - for a finite set S of n sites in the plane, a - triangulation T(S) of S that strictly refines the - Delaunay diagram Del(S) when there exists a circle - passing through at least four points of S and none of - the sites is contained in its interior. For this - triangulation T(S) there exist isometries T such that - T(T(S)) does not equal T(T(S). The Voronoi diagram - Vor(S) is the straight-line dual of Del(S) and the - substitution of T(S) into Del(S) leads to needless - calculus, indeed to the creation of imaginary vertices - for Vor(S). We present here a variant of the Guibas and - Stolfi algorithm that determines, with the same - complexity, Del(S) and not a triangulation, and uses a - simpler data structure. We also give approximation - tests of collinearity and cocircularity so that for any - similitude T of the plane, Del(T(S)) equals T(Del(S)). - (Author abstract) 15 Refs." +, author = "M. Elbaz and J.-C. Spehner" +, title = "Construction of {Voronoi} Diagrams in the Plane by using Maps" +, journal = "Theoret. Comput. Sci." +, volume = 77 +, number = 3 +, year = 1990 +, pages = "331--343" +, annote = "Basic d\&c algorithm for DT ala Guibas Stolfi. Only + difference is that it uses DCEL as data structure (it + calls this maps), and omits diagonals in cyclic + quads." +, abstract = "An algorithm by Guibas and Stolfi (1985) constructs, + for a finite set S of n sites in the plane, a + triangulation T(S) of S that strictly refines the + Delaunay diagram Del(S) when there exists a circle + passing through at least four points of S and none of + the sites is contained in its interior. For this + triangulation T(S) there exist isometries T such that + T(T(S)) does not equal T(T(S). The Voronoi diagram + Vor(S) is the straight-line dual of Del(S) and the + substitution of T(S) into Del(S) leads to needless + calculus, indeed to the creation of imaginary vertices + for Vor(S). We present here a variant of the Guibas and + Stolfi algorithm that determines, with the same + complexity, Del(S) and not a triangulation, and uses a + simpler data structure. We also give approximation + tests of collinearity and cocircularity so that for any + similitude T of the plane, Del(T(S)) equals T(Del(S)). + (Author abstract) 15 Refs." } @article{ec-ebvdo-91 -, author = "G. Elber and E. Cohen" -, title = "Error bounded variable distance offset operator for free form curves and surfaces" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 1 -, year = 1991 -, pages = "67--78" -, keywords = "curve, surface, NURBS, offset" +, author = "G. Elber and E. Cohen" +, title = "Error bounded variable distance offset operator for free form curves and surfaces" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 1 +, year = 1991 +, pages = "67--78" +, keywords = "curve, surface, NURBS, offset" } @techreport{ek-bsfrs-96 -, author = "G. Elber and M. S. Kim" -, title = "The bisector surface of freedom rational space curves" -, type = "Technical {Report}" -, number = "CIS 9619" -, institution = "Dept. Comput. Sci., Technion" -, year = 1996 -, update = "98.07 bibrelex" +, author = "G. Elber and M. S. Kim" +, title = "The bisector surface of freedom rational space curves" +, type = "Technical {Report}" +, number = "CIS 9619" +, institution = "Dept. Comput. Sci., Technion" +, year = 1996 +, update = "98.07 bibrelex" } @inproceedings{ek-bsfrs-97 -, author = "G. Elber and M.-S. Kim" -, title = "The Bisector Surface of Freeform Rational Space Curves" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "473--474" -, keywords = "video review" -, cites = "dh-ssco-93, ek-bsfrs-96, fj-bpppc-94, fj-cpccc-94, h-dpsi-90, hv-eescs-91, -i6um-96, spb-amat3-96, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "G. Elber and M.-S. Kim" +, title = "The Bisector Surface of Freeform Rational Space Curves" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "473--474" +, keywords = "video review" +, cites = "dh-ssco-93, ek-bsfrs-96, fj-bpppc-94, fj-cpccc-94, h-dpsi-90, hv-eescs-91, -i6um-96, spb-amat3-96, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{e-giccv-86 -, author = "G. Elekes" -, title = "A geometric inequality and the complexity of computing the volume" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "289--292" -, keywords = "approximation, volume, convex" +, author = "G. Elekes" +, title = "A geometric inequality and the complexity of computing the volume" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "289--292" +, keywords = "approximation, volume, convex" } @article{e-nppcd-84 -, author = "G. Elekes" -, title = "$N$ points in the plane can determine $n^3/2$ unit circles" -, journal = "Combinatorica" -, volume = 4 -, number = "2--3" -, year = 1984 -, pages = 131 -, keywords = "points, circle, combinatorial geometry" -, update = "95.09 korneenko" +, author = "G. Elekes" +, title = "$N$ points in the plane can determine $n^3/2$ unit circles" +, journal = "Combinatorica" +, volume = 4 +, number = "2--3" +, year = 1984 +, pages = 131 +, keywords = "points, circle, combinatorial geometry" +, update = "95.09 korneenko" } @incollection{ee-scpg-94 -, author = "G. Elekes and P. Erd{\H o}s" -, title = "Similar configurations and pseudo grids" -, booktitle = "Intuitive Geometry" -, series = "Colloq. MAth. Sco. Janos Bolyai" -, volume = 63 -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1994 -, pages = "85--104" -, update = "98.07 bibrelex" +, author = "G. Elekes and P. Erd{\H o}s" +, title = "Similar configurations and pseudo grids" +, booktitle = "Intuitive Geometry" +, series = "Colloq. MAth. Sco. Janos Bolyai" +, volume = 63 +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1994 +, pages = "85--104" +, update = "98.07 bibrelex" } @unpublished{ee-scpps- -, author = "G. Elekes and P. Erd{\H o}s" -, title = "Similar Configurations in Planar Point Sets" -, note = "?" -, update = "97.11 bibrelex" +, author = "G. Elekes and P. Erd{\H o}s" +, title = "Similar Configurations in Planar Point Sets" +, note = "?" +, update = "97.11 bibrelex" } @article{e-cutm-79 -, author = "M. H. Elfick" -, title = "Contouring by Use of a Triangular Mesh" -, journal = "The Cartographic Journal" -, volume = 16 -, number = 1 -, year = 1979 -, pages = "24--29" -, annote = "DT by circumcircle algorithm. Points are ordered by - $x$ coordinate to limit search. Forced edges are dealt - with by extra points." +, author = "M. H. Elfick" +, title = "Contouring by Use of a Triangular Mesh" +, journal = "The Cartographic Journal" +, volume = 16 +, number = 1 +, year = 1979 +, pages = "24--29" +, annote = "DT by circumcircle algorithm. Points are ordered by + $x$ coordinate to limit search. Forced edges are dealt + with by extra points." } @techreport{e-paspp-86 -, author = "H. ElGindy" -, title = "A parallel algorithm for the shortest path problem in monotone polygons" -, type = "Report" -, number = "MC-CIS-86-49" -, institution = "Dept. Comput. Inform. Sci., Univ. Pennsylvania" -, address = "Philadelphia, PA" -, month = may -, year = 1986 -, update = "93.09 held" +, author = "H. ElGindy" +, title = "A parallel algorithm for the shortest path problem in monotone polygons" +, type = "Report" +, number = "MC-CIS-86-49" +, institution = "Dept. Comput. Inform. Sci., Univ. Pennsylvania" +, address = "Philadelphia, PA" +, month = may +, year = 1986 +, update = "93.09 held" } @unpublished{e-patsp-86 -, author = "H. ElGindy" -, title = "A Parallel Algorithm for Triangulating Simplicial Point Sets in Space with Optimal Speed-up" -, month = apr -, year = 1986 -, note = "(Manuscript)" -, succeeds = "e-patsp-86-c" -, update = "95.09 korneenko, 93.09 held" +, author = "H. ElGindy" +, title = "A Parallel Algorithm for Triangulating Simplicial Point Sets in Space with Optimal Speed-up" +, month = apr +, year = 1986 +, note = "(Manuscript)" +, succeeds = "e-patsp-86-c" +, update = "95.09 korneenko, 93.09 held" } @inproceedings{e-patsp-86-c -, author = "H. ElGindy" -, title = "A parallel algorithm for triangulating simplicial point sets in space with optimal speedup" -, booktitle = "Proc. 24th Allerton Conf. Commun. Control Comput." -, year = 1986 -, pages = "768--776" -, keywords = "parallel computations, $3$-dimensional, triangulation" -, precedes = "e-patsp-86" -, update = "95.09 korneenko" +, author = "H. ElGindy" +, title = "A parallel algorithm for triangulating simplicial point sets in space with optimal speedup" +, booktitle = "Proc. 24th Allerton Conf. Commun. Control Comput." +, year = 1986 +, pages = "768--776" +, keywords = "parallel computations, $3$-dimensional, triangulation" +, precedes = "e-patsp-86" +, update = "95.09 korneenko" } @techreport{e-eacwv-84 -, author = "H. ElGindy" -, title = "An efficient algorithm for computing the weak visibility polygon from an edge in simple polygons" -, type = "Manuscript" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1984 +, author = "H. ElGindy" +, title = "An efficient algorithm for computing the weak visibility polygon from an edge in simple polygons" +, type = "Manuscript" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1984 } @article{e-ospat-86 -, author = "H. ElGindy" -, title = "An optimal speedup parallel algorithm for triangulating simplicial point sets in space" -, journal = "Internat. J. Parallel Process." -, volume = 15 -, year = 1986 -, pages = "389--398" -, keywords = "parallel computations, $3$-dimensional, triangulation" -, update = "95.09 korneenko" -, abstract = "Zbl. Math. Vol. 681 no. 68069" +, author = "H. ElGindy" +, title = "An optimal speedup parallel algorithm for triangulating simplicial point sets in space" +, journal = "Internat. J. Parallel Process." +, volume = 15 +, year = 1986 +, pages = "389--398" +, keywords = "parallel computations, $3$-dimensional, triangulation" +, update = "95.09 korneenko" +, abstract = "Zbl. Math. Vol. 681 no. 68069" } @techreport{e-omtch-81 -, author = "H. ElGindy" -, title = "One more time: a convex hull algorithm for simple polygons" -, type = "Internal {Report}" -, number = "" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1981 -, update = "94.05 devillers" +, author = "H. ElGindy" +, title = "One more time: a convex hull algorithm for simple polygons" +, type = "Internal {Report}" +, number = "" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1981 +, update = "94.05 devillers" } @inproceedings{e-opatc-89 -, author = "H. ElGindy" -, title = "Optimal parallel algorithms for triangulating certain classes of polygons" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "131--135" -, keywords = "star-shaped, edge visible, monotone, radially monotone, polygons" -, update = "95.09 mitchell" +, author = "H. ElGindy" +, title = "Optimal parallel algorithms for triangulating certain classes of polygons" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "131--135" +, keywords = "star-shaped, edge visible, monotone, radially monotone, polygons" +, update = "95.09 mitchell" } @article{ea-lacvp-81 -, author = "H. ElGindy and D. Avis" -, title = "A linear algorithm for computing the visibility polygon from a point" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "186--197" -, keywords = "polygons, visibility, visibility graphs" +, author = "H. ElGindy and D. Avis" +, title = "A linear algorithm for computing the visibility polygon from a point" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "186--197" +, keywords = "polygons, visibility, visibility graphs" } @article{eat-atdhl-83 -, author = "H. ElGindy and D. Avis and G. T. Toussaint" -, title = "Applications of a two-dimensional hidden-line algorithm to other geometric problems" -, journal = "Computing" -, volume = 31 -, year = 1983 -, pages = "191--202" -, keywords = "visibility, polygons, triangulation, convex hull" +, author = "H. ElGindy and D. Avis and G. T. Toussaint" +, title = "Applications of a two-dimensional hidden-line algorithm to other geometric problems" +, journal = "Computing" +, volume = 31 +, year = 1983 +, pages = "191--202" +, keywords = "visibility, polygons, triangulation, convex hull" } @techreport{eg-paspp-87 -, author = "H. ElGindy and M. T. Goodrich" -, title = "Parallel algorithms for shortest path problems in polygons" -, type = "Report" -, number = "MS-CIS-87-20" -, institution = "Dept. Comput. Inform. Sci., Univ. Pennsylvania" -, address = "Philadelphia, PA" -, year = 1987 -, precedes = "eg-paspp-88" +, author = "H. ElGindy and M. T. Goodrich" +, title = "Parallel algorithms for shortest path problems in polygons" +, type = "Report" +, number = "MS-CIS-87-20" +, institution = "Dept. Comput. Inform. Sci., Univ. Pennsylvania" +, address = "Philadelphia, PA" +, year = 1987 +, precedes = "eg-paspp-88" } @article{eg-paspp-88 -, author = "H. ElGindy and M. T. Goodrich" -, title = "Parallel algorithms for shortest path problems in polygons" -, journal = "Visual Comput." -, volume = 3 -, year = 1988 -, pages = "371--378" -, keywords = "parallel computation, geodesic distance, polygons, simple, divide-and-conquer, two-dimensional" -, succeeds = "eg-paspp-87" +, author = "H. ElGindy and M. T. Goodrich" +, title = "Parallel algorithms for shortest path problems in polygons" +, journal = "Visual Comput." +, volume = 3 +, year = 1988 +, pages = "371--378" +, keywords = "parallel computation, geodesic distance, polygons, simple, divide-and-conquer, two-dimensional" +, succeeds = "eg-paspp-87" } @article{ek-eacmp-92 -, author = "H. ElGindy and J. M. Keil" -, title = "Efficient algorithms for the capacitated $1$-median problem" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "418--425" -, update = "98.03 mitchell, 96.05 agarwal" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "H. ElGindy and J. M. Keil" +, title = "Efficient algorithms for the capacitated $1$-median problem" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "418--425" +, update = "98.03 mitchell, 96.05 agarwal" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @inproceedings{ellmw-rridg-95 -, author = "H. ElGindy and G. Liotta and A. Lubiw and H. Meijer and S. H. Whitesides" -, title = "Recognizing Rectangle of Influence Drawable Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "352--363" -, keywords = "graph drawing, proximity" -, update = "95.01 tamassia" +, author = "H. ElGindy and G. Liotta and A. Lubiw and H. Meijer and S. H. Whitesides" +, title = "Recognizing Rectangle of Influence Drawable Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "352--363" +, keywords = "graph drawing, proximity" +, update = "95.01 tamassia" } @techreport{em-osrqa-91 -, author = "H. ElGindy and P. Mitra" -, title = "Orthogonal shortest route queries among axis parallel rectangular obstacles" -, number = "SOCS 91.07" -, month = jul -, year = 1991 -, keywords = "shortest path, parallel algorithm, computational geometry" -, precedes = "em-osrqa-94" -, update = "98.11 bibrelex, 96.09 devillers, 93.09 milone+mitchell" +, author = "H. ElGindy and P. Mitra" +, title = "Orthogonal shortest route queries among axis parallel rectangular obstacles" +, number = "SOCS 91.07" +, month = jul +, year = 1991 +, keywords = "shortest path, parallel algorithm, computational geometry" +, precedes = "em-osrqa-94" +, update = "98.11 bibrelex, 96.09 devillers, 93.09 milone+mitchell" } @article{em-osrqa-94 -, author = "H. ElGindy and P. Mitra" -, title = "Orthogonal shortest route queries among axis parallel rectangular obstacles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "3--24" -, keywords = "shortest path, parallel algorithm, computational geometry" -, succeeds = "em-osrqa-91" -, update = "98.11 bibrelex, 98.03 mitchell, 96.09 devillers" +, author = "H. ElGindy and P. Mitra" +, title = "Orthogonal shortest route queries among axis parallel rectangular obstacles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "3--24" +, keywords = "shortest path, parallel algorithm, computational geometry" +, succeeds = "em-osrqa-91" +, update = "98.11 bibrelex, 98.03 mitchell, 96.09 devillers" } @inproceedings{et-lvdis-88 -, author = "H. ElGindy and G. T. Toussaint" -, title = "Link {Voronoi} diagrams inside a simple polygon with applications" -, booktitle = "Internat. Symp. Math. Progr. Tokyo" -, year = 1988 -, keywords = "Voronoi diagram, polygons, link distance" -, update = "95.09 korneenko" +, author = "H. ElGindy and G. T. Toussaint" +, title = "Link {Voronoi} diagrams inside a simple polygon with applications" +, booktitle = "Internat. Symp. Math. Progr. Tokyo" +, year = 1988 +, keywords = "Voronoi diagram, polygons, link distance" +, update = "95.09 korneenko" } @article{et-gpprl-89 -, author = "Hossam ElGindy and Godfried T. Toussaint" -, title = "On geodesic properties of polygons relevant to linear time triangulation" -, journal = "Visual Comput." -, volume = 5 -, number = "1--2" -, year = 1989 -, pages = "68--74" -, abstract = "The paper provides a contribution to the problem of - finding optimal (linear time) algorithm for - triangulating simple polygons. Two new classes of - polygons, called palm polygons and crab polygons are - introduced. The class of palm polygons contains many - known classes of polygons for which linear time - triangulation algorithms are known and a linear time - algorithm for triangulating palm polygons is presented. - The class of crab polygons is shown to contain all - classes of polygons for which linear time triangulation - algorithms are known up to now. However, the problem of - linear time identification and triangulation of crab - polygons remains open" +, author = "Hossam ElGindy and Godfried T. Toussaint" +, title = "On geodesic properties of polygons relevant to linear time triangulation" +, journal = "Visual Comput." +, volume = 5 +, number = "1--2" +, year = 1989 +, pages = "68--74" +, abstract = "The paper provides a contribution to the problem of + finding optimal (linear time) algorithm for + triangulating simple polygons. Two new classes of + polygons, called palm polygons and crab polygons are + introduced. The class of palm polygons contains many + known classes of polygons for which linear time + triangulation algorithms are known and a linear time + algorithm for triangulating palm polygons is presented. + The class of crab polygons is shown to contain all + classes of polygons for which linear time triangulation + algorithms are known up to now. However, the problem of + linear time identification and triangulation of crab + polygons remains open" } @incollection{et-tpplt-88 -, author = "H. ElGindy and G. T. Toussaint" -, title = "On triangulating palm polygons in linear time" -, editor = "N. Magnenat-Thalmann and D. Thalmann" -, booktitle = "New Trends in Computer Graphics" -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "308--317" -, keywords = "polygons, triangulation" -, update = "97.03 schwarzkopf, 95.09 korneenko" +, author = "H. ElGindy and G. T. Toussaint" +, title = "On triangulating palm polygons in linear time" +, editor = "N. Magnenat-Thalmann and D. Thalmann" +, booktitle = "New Trends in Computer Graphics" +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "308--317" +, keywords = "polygons, triangulation" +, update = "97.03 schwarzkopf, 95.09 korneenko" } @phdthesis{e-hdpa-85 -, author = "H. A. ElGindy" -, title = "Hierarchical Decomposition of Polygons with Applications" -, school = "School of Computer Science, McGill University" -, year = 1985 -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "H. A. ElGindy" +, title = "Hierarchical Decomposition of Polygons with Applications" +, school = "School of Computer Science, McGill University" +, year = 1985 +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @incollection{et-crnds-88 -, author = "H. A. ElGindy and G. T. Toussaint" -, title = "Computing the relative neighbor decomposition of a simple polygon" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "53--70" +, author = "H. A. ElGindy and G. T. Toussaint" +, title = "Computing the relative neighbor decomposition of a simple polygon" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "53--70" } @inproceedings{et-eaide-85 -, author = "Hossam A. ElGindy and Godfried T. Toussaint" -, title = "Efficient Algorithms For Inserting And Deleting Edges From Triangulations" -, booktitle = "Proceedings, Foundations of Data Organization." -, publisher = "Organizing Committee of the Int Conference on Foundations of Data Organization" -, address = "Jpn" -, year = 1985 -, pages = "163--169" -, keywords = "line segments, triangulations, geometric complexity" -, abstract = "We address the problem of edge-updating a - triangulation of a point set efficiently. Given a - suitable representation of the triangulation of a - finite set P, how can one construct a triangulation of - P union left brace 1 right brace for some line segment - 1 (insertion problem), or how can one construct a - triangulation of P - left brace p,q right brace where p - and q are points in P that are connected by an edge in - the triangulation (deletion problem). (Author abstract) - 13 refs." +, author = "Hossam A. ElGindy and Godfried T. Toussaint" +, title = "Efficient Algorithms For Inserting And Deleting Edges From Triangulations" +, booktitle = "Proceedings, Foundations of Data Organization." +, publisher = "Organizing Committee of the Int Conference on Foundations of Data Organization" +, address = "Jpn" +, year = 1985 +, pages = "163--169" +, keywords = "line segments, triangulations, geometric complexity" +, abstract = "We address the problem of edge-updating a + triangulation of a point set efficiently. Given a + suitable representation of the triangulation of a + finite set P, how can one construct a triangulation of + P union left brace 1 right brace for some line segment + 1 (insertion problem), or how can one construct a + triangulation of P - left brace p,q right brace where p + and q are points in P that are connected by an edge in + the triangulation (deletion problem). (Author abstract) + 13 refs." } @inproceedings{et-cut-87 -, author = "Hossam A. ElGindy and Godfried T. Toussaint" -, title = "On Computing and Updating Triangulations" -, editor = "S. P. Ghosh and Y. Kanbayashi and K. Tanaka" -, booktitle = "Proc. Internat. Conf. Found. Data Organization" -, publisher = "Plenum Press" -, address = "New York" -, year = 1987 -, pages = "249--262" -, update = "98.11 bibrelex" -, annote = "$O(n \log n)$ algorithm for triangulation of a set of - line segments, and algorithms for inserting and - deleting from a set of line segments." +, author = "Hossam A. ElGindy and Godfried T. Toussaint" +, title = "On Computing and Updating Triangulations" +, editor = "S. P. Ghosh and Y. Kanbayashi and K. Tanaka" +, booktitle = "Proc. Internat. Conf. Found. Data Organization" +, publisher = "Plenum Press" +, address = "New York" +, year = 1987 +, pages = "249--262" +, update = "98.11 bibrelex" +, annote = "$O(n \log n)$ algorithm for triangulation of a set of + line segments, and algorithms for inserting and + deleting from a set of line segments." } @techreport{et-tls-84 -, author = "H. A. ElGindy and G. T. Toussaint" -, title = "On Triangulations of Line Segments" -, number = "SOCS 84.9" -, institution = "McGill University" -, year = 1984 -, annote = "Algorithms for constructing and modifying {\em a\/} triangulation of line segments." +, author = "H. A. ElGindy and G. T. Toussaint" +, title = "On Triangulations of Line Segments" +, number = "SOCS 84.9" +, institution = "McGill University" +, year = 1984 +, annote = "Algorithms for constructing and modifying {\em a\/} triangulation of line segments." } @book{e-cit-88 -, author = "R. Elliott" -, title = "Cast iron technology" -, publisher = "Butterworths" -, address = "London, UK" -, year = 1988 -, update = "98.03 bibrelex" +, author = "R. Elliott" +, title = "Cast iron technology" +, publisher = "Butterworths" +, address = "London, UK" +, year = 1988 +, update = "98.03 bibrelex" } @techreport{el-dssm-?? -, author = "R. J. Elliott and M. E. Lesk" -, title = "Data structures for street maps" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "R. J. Elliott and M. E. Lesk" +, title = "Data structures for street maps" +, year = "??" +, update = "93.09 milone+mitchell" } @techreport{el-rfsmc-?? -, author = "R. J. Elliott and M. E. Lesk" -, title = "Route finding in street maps by computers and people" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "R. J. Elliott and M. E. Lesk" +, title = "Route finding in street maps by computers and people" +, year = "??" +, update = "93.09 milone+mitchell" } @article{ekltmmv-rcerr-91 -, author = "J. L. Ellis and G. Kedem and T. C. Lyerly and D. G. Thielman and R. J. Marisa and J. P. Menon and H. B. Voelcker" -, title = "The ray casting engine and ray representations: a technical summary" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 4 -, year = 1991 -, pages = "347--380" -, keywords = "mechanical CAD CAM, solid modeling, parallel computation, ray representation" +, author = "J. L. Ellis and G. Kedem and T. C. Lyerly and D. G. Thielman and R. J. Marisa and J. P. Menon and H. B. Voelcker" +, title = "The ray casting engine and ray representations: a technical summary" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 4 +, year = 1991 +, pages = "347--380" +, keywords = "mechanical CAD CAM, solid modeling, parallel computation, ray representation" } @article{ee-nsnpa-76 -, author = "J. R. Ellis and M. Eden" -, title = "On the number of sides necessary for polygonal approximation of black-and-white figures in a plane" -, journal = "Inform. Control" -, volume = 30 -, year = 1976 -, pages = "169--186" -, keywords = "polygons, fitting" -, update = "95.09 korneenko" +, author = "J. R. Ellis and M. Eden" +, title = "On the number of sides necessary for polygonal approximation of black-and-white figures in a plane" +, journal = "Inform. Control" +, volume = 30 +, year = 1976 +, pages = "169--186" +, keywords = "polygons, fitting" +, update = "95.09 korneenko" } @inproceedings{e-atdrp-87 -, author = "R. E. Ellis" -, title = "Acquiring tactile data for the recognition of planar objects" -, booktitle = "Proc. Internat. Conf. Robots Autom." -, volume = 3 -, year = 1987 -, pages = "1799--1805" -, keywords = "probing, shape" -, update = "95.09 korneenko" +, author = "R. E. Ellis" +, title = "Acquiring tactile data for the recognition of planar objects" +, booktitle = "Proc. Internat. Conf. Robots Autom." +, volume = 3 +, year = 1987 +, pages = "1799--1805" +, keywords = "probing, shape" +, update = "95.09 korneenko" } @inproceedings{el-enmrt-92 -, author = "H. Elter and P. Lienhardt" -, title = "Extension of the notion of map for the representation of the topology of cellular complexes" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "65--70" -, cites = "adf-gmsou-85, ak-mdspl-89, b-prcv-75, b-rgsdd-89, dl-pmtds-87, e-acg-87, el-ascac-, fp-ebemp-91, fp-cst-90, gs-pmgsc-85, l-sndsn-89, l-tmbrc-91, m-ism-88, ro-sdimp-89i, s-ebrtd-89, s-mmp-91, w-ebdss-85, w-redst-86, ZZZ" -, update = "98.07 bibrelex" +, author = "H. Elter and P. Lienhardt" +, title = "Extension of the notion of map for the representation of the topology of cellular complexes" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "65--70" +, cites = "adf-gmsou-85, ak-mdspl-89, b-prcv-75, b-rgsdd-89, dl-pmtds-87, e-acg-87, el-ascac-, fp-ebemp-91, fp-cst-90, gs-pmgsc-85, l-sndsn-89, l-tmbrc-91, m-ism-88, ro-sdimp-89i, s-ebrtd-89, s-mmp-91, w-ebdss-85, w-redst-86, ZZZ" +, update = "98.07 bibrelex" } @techreport{el-ascac- -, author = "H. Elter and P. Lienhardt" -, title = "Form abstract simplicial complexes to abstract cellular complexes: construction of combinatorial models" -, type = "Research {Report}" -, institution = "Dept. Comput. Sci., Louis Pasteur Univ." -, address = "Strasbourg, France" -, year = "??" -, update = "98.07 bibrelex" +, author = "H. Elter and P. Lienhardt" +, title = "Form abstract simplicial complexes to abstract cellular complexes: construction of combinatorial models" +, type = "Research {Report}" +, institution = "Dept. Comput. Sci., Louis Pasteur Univ." +, address = "Strasbourg, France" +, year = "??" +, update = "98.07 bibrelex" } @article{eh-mcsp-72 -, author = "J. Elzinga and D. Hearn" -, title = "The minimum covering sphere problem" -, journal = "Manage. Sci." -, volume = 19 -, year = 1972 -, pages = "96--104" -, keywords = "facility location, optimization, points, sphere" -, update = "95.09 korneenko" +, author = "J. Elzinga and D. Hearn" +, title = "The minimum covering sphere problem" +, journal = "Manage. Sci." +, volume = 19 +, year = 1972 +, pages = "96--104" +, keywords = "facility location, optimization, points, sphere" +, update = "95.09 korneenko" } @article{eh-msccp-74 -, author = "J. Elzinga and D. Hearn" -, title = "The minimum sphere covering a convex polyhedron" -, journal = "Naval Res. Logist. Quart." -, volume = 21 -, year = 1974 -, pages = "715--718" +, author = "J. Elzinga and D. Hearn" +, title = "The minimum sphere covering a convex polyhedron" +, journal = "Naval Res. Logist. Quart." +, volume = 21 +, year = 1974 +, pages = "715--718" } @article{eh-gssml-72 -, author = "J. Elzinga and D. W. Hearn" -, title = "Geometrical solutions to some minimax location problems" -, journal = "Transp. Sci." -, volume = 6 -, year = 1972 -, pages = "379--394" -, keywords = "optimization, facility location, minmax" -, update = "95.09 korneenko" +, author = "J. Elzinga and D. W. Hearn" +, title = "Geometrical solutions to some minimax location problems" +, journal = "Transp. Sci." +, volume = 6 +, year = 1972 +, pages = "379--394" +, keywords = "optimization, facility location, minmax" +, update = "95.09 korneenko" } @article{e-mccp-15 -, author = "A. Emch" -, title = "On the medians of a closed convex polygon" -, journal = "Amer. J. Math." -, volume = 37 -, year = 1915 -, pages = "19--28" -, update = "98.07 bibrelex" +, author = "A. Emch" +, title = "On the medians of a closed convex polygon" +, journal = "Amer. J. Math." +, volume = 37 +, year = 1915 +, pages = "19--28" +, update = "98.07 bibrelex" } @article{e-spccc-13 -, author = "A. Emch" -, title = "Some properties of closed convex curves in a plane" -, journal = "Amer. J. Math." -, volume = 35 -, year = 1913 -, pages = "407--412" -, update = "98.07 bibrelex" +, author = "A. Emch" +, title = "Some properties of closed convex curves in a plane" +, journal = "Amer. J. Math." +, volume = 35 +, year = 1913 +, pages = "407--412" +, update = "98.07 bibrelex" } @techreport{e-anccp-82 -, author = "P. van {Emde Boas}" -, title = "Another {NP}-complete covering problem" -, type = "Report" -, number = "??" -, institution = "Univ. Amsterdam" -, address = "Amsterdam, Netherlands" -, year = 1982 -, update = "93.09 rote" +, author = "P. van {Emde Boas}" +, title = "Another {NP}-complete covering problem" +, type = "Report" +, number = "??" +, institution = "Univ. Amsterdam" +, address = "Amsterdam, Netherlands" +, year = 1982 +, update = "93.09 rote" } @article{e-olbch-80 -, author = "P. van {Emde Boas}" -, title = "On the {$\Omega(n \log n)$} lower-bound for convex hull and maximal vector determination" -, journal = "Inform. Process. Lett." -, volume = 10 -, year = 1980 -, pages = "132--136" -, update = "93.09 rote" +, author = "P. van {Emde Boas}" +, title = "On the {$\Omega(n \log n)$} lower-bound for convex hull and maximal vector determination" +, journal = "Inform. Process. Lett." +, volume = 10 +, year = 1980 +, pages = "132--136" +, update = "93.09 rote" } @article{e-pofll-77 -, author = "P. van {Emde Boas}" -, title = "Preserving order in a forest in less than logarithmic time and linear space" -, journal = "Inform. Process. Lett." -, volume = 6 -, year = 1977 -, pages = "80--82" -, update = "97.11 bibrelex" +, author = "P. van {Emde Boas}" +, title = "Preserving order in a forest in less than logarithmic time and linear space" +, journal = "Inform. Process. Lett." +, volume = 6 +, year = 1977 +, pages = "80--82" +, update = "97.11 bibrelex" } @article{ekz-diepq-77 -, author = "P. van {Emde Boas} and R. Kaas and E. Zijlstra" -, title = "Design and Implementation of an Efficient Priority Queue" -, journal = "Math. Syst. Theory" -, volume = 10 -, year = 1977 -, pages = "99--127" -, update = "93.09 rote" +, author = "P. van {Emde Boas} and R. Kaas and E. Zijlstra" +, title = "Design and Implementation of an Efficient Priority Queue" +, journal = "Math. Syst. Theory" +, volume = 10 +, year = 1977 +, pages = "99--127" +, update = "93.09 rote" } @article{ejla-csmcd-91 -, author = "A. F. Emery and O. Johansson and M. Lobo and A. Abrous" -, title = "A comparative study of methods for computing the diffuse radiation viewfactors for complex structures" -, journal = "Journal of Heath Transfer" -, volume = 113 -, year = 1991 -, pages = "412--421" -, update = "98.03 bibrelex" +, author = "A. F. Emery and O. Johansson and M. Lobo and A. Abrous" +, title = "A comparative study of methods for computing the diffuse radiation viewfactors for complex structures" +, journal = "Journal of Heath Transfer" +, volume = 113 +, year = 1991 +, pages = "412--421" +, update = "98.03 bibrelex" } @techreport{e-cicgd-96 -, author = "I. Emiris" -, title = "A Complete Implementation for Computing General Dimensional Convex Hulls" -, type = "Research {Report}" -, number = 2551 -, institution = "INRIA" -, year = 1996 -, url = "http://www.inria.fr/rapports/sophia/RR-2551.html" -, precedes = "e-cicgd-98" -, update = "98.11 devillers, 97.03 devillers" -, abstract = "We study two important, and often complementary, +, author = "I. Emiris" +, title = "A Complete Implementation for Computing General Dimensional Convex Hulls" +, type = "Research {Report}" +, number = 2551 +, institution = "INRIA" +, year = 1996 +, url = "http://www.inria.fr/rapports/sophia/RR-2551.html" +, precedes = "e-cicgd-98" +, update = "98.11 devillers, 97.03 devillers" +, abstract = "We study two important, and often complementary, issues in the implementation of geometric algorithms, namely exact arithmetic and degeneracy. We focus on integer arithmetic and propose a general and efficient method for its implementation based on modular @@ -54205,1554 +54205,1554 @@ @techreport{e-cicgd-96 } @article{e-cicgd-98 -, author = "I. Emiris" -, title = "A Complete Implementation for Computing General Dimensional Convex Hulls" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "33--36" -, succeeds = "e-cicgd-96" -, update = "99.11 bibrelex, 98.11 devillers, 98.07 bibrelex" +, author = "I. Emiris" +, title = "A Complete Implementation for Computing General Dimensional Convex Hulls" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "33--36" +, succeeds = "e-cicgd-96" +, update = "99.11 bibrelex, 98.11 devillers, 98.07 bibrelex" } @mastersthesis{e-eargd-91 -, author = "I. Emiris" -, title = "An efficient approach to removing geometric degeneracies" -, school = "Comput. Sci. Div., Univ. California" -, address = "Berkeley, CA" -, month = may -, year = 1991 -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "I. Emiris" +, title = "An efficient approach to removing geometric degeneracies" +, school = "Comput. Sci. Div., Univ. California" +, address = "Berkeley, CA" +, month = may +, year = 1991 +, keywords = "master thesis" +, update = "97.11 bibrelex" } @inproceedings{ec-gard-91 -, author = "I. Emiris and J. Canny" -, title = "A general approach to removing degeneracies" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "405--413" -, precedes = "ec-gard-95" -, update = "96.09 devillers" +, author = "I. Emiris and J. Canny" +, title = "A general approach to removing degeneracies" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "405--413" +, precedes = "ec-gard-95" +, update = "96.09 devillers" } @article{ec-gard-95 -, author = "I. Emiris and J. Canny" -, title = "A general approach to removing degeneracies" -, journal = "SIAM J. Comput." -, volume = 24 -, year = 1995 -, pages = "650--664" -, keywords = "input degeneracy, ill-conditioned problems, symbolic perturbation, infinitesimals, randomization, determinants, roots of polynomials, algorithmic complexity" -, succeeds = "ec-gard-91,ec-eargd-92" -, update = "96.09 devillers" +, author = "I. Emiris and J. Canny" +, title = "A general approach to removing degeneracies" +, journal = "SIAM J. Comput." +, volume = 24 +, year = 1995 +, pages = "650--664" +, keywords = "input degeneracy, ill-conditioned problems, symbolic perturbation, infinitesimals, randomization, determinants, roots of polynomials, algorithmic complexity" +, succeeds = "ec-gard-91,ec-eargd-92" +, update = "96.09 devillers" } @inproceedings{ec-eargd-92 -, author = "I. Emiris and J. Canny" -, title = "An efficient approach to removing geometric degeneracies" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "74--82" -, precedes = "ec-gard-95" -, cites = "ahu-daca-74, c-crsas-91, cl-rzp-82, d-lpe-63, d-afp-90, e-acg-87, eg-tsa-86, em-sstcd-90, ew-chsct-86, e-eargd-91, ec-gard-91, k-facp-85, ps-cgi-85, y-stgd-87, y-gctsp-88, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "I. Emiris and J. Canny" +, title = "An efficient approach to removing geometric degeneracies" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "74--82" +, precedes = "ec-gard-95" +, cites = "ahu-daca-74, c-crsas-91, cl-rzp-82, d-lpe-63, d-afp-90, e-acg-87, eg-tsa-86, em-sstcd-90, ew-chsct-86, e-eargd-91, ec-gard-91, k-facp-85, ps-cgi-85, y-stgd-87, y-gctsp-88, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers" } @inproceedings{e-cipms-00 -, author = "Ioannis Z. Emiris" -, title = "Computing Integer Points in {Minkowski} Sums" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "29--36" -, update = "00.11 jones" +, author = "Ioannis Z. Emiris" +, title = "Computing Integer Points in {Minkowski} Sums" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "29--36" +, update = "00.11 jones" } @article{ecs-ephgd-97 -, author = "I. Z. Emiris and J. F. Canny and R. Seidel" -, title = "Efficient Perturbations for Handling Geometric Degeneracies" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "219--242" -, update = "97.07 held" +, author = "I. Z. Emiris and J. F. Canny and R. Seidel" +, title = "Efficient Perturbations for Handling Geometric Degeneracies" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "219--242" +, update = "97.07 held" } @inproceedings{eg-dcmv-97 -, author = "Ioannis Z. Emiris and Thierry Giordano" -, title = "Distributed Computation of Mixed Volume" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "48--50" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Ioannis Z. Emiris and Thierry Giordano" +, title = "Distributed Computation of Mixed Volume" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "48--50" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{e-sshlp-70 -, author = "J. L. Encarnacao" -, title = "A survey of solutions of the hidden line problem" -, booktitle = "Proc. Interactive Comput. Graphics Conf." -, year = 1970 -, pages = "??" +, author = "J. L. Encarnacao" +, title = "A survey of solutions of the hidden line problem" +, booktitle = "Proc. Interactive Comput. Graphics Conf." +, year = 1970 +, pages = "??" } @book{e-cgpav-75 -, author = "J. L. Encarnacao" -, title = "Computer-Graphics: {Programmierung} and {Anwendung} von graphischen {Systemen}" -, publisher = "R. Oldenburg Verlag" -, address = "M{\"u}nchen, West Germany" -, year = 1975 +, author = "J. L. Encarnacao" +, title = "Computer-Graphics: {Programmierung} and {Anwendung} von graphischen {Systemen}" +, publisher = "R. Oldenburg Verlag" +, address = "M{\"u}nchen, West Germany" +, year = 1975 } @inproceedings{e-mpr-91 -, author = "Peter Engel" -, title = "On the morphology of polytopes in {$R^d$}" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "71--83" -, keywords = "combinatorial enumeration" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." -, abstract = "An algorithm to enumerate the combinatorial types of +, author = "Peter Engel" +, title = "On the morphology of polytopes in {$R^d$}" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "71--83" +, keywords = "combinatorial enumeration" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." +, abstract = "An algorithm to enumerate the combinatorial types of $d$-spheres is described. A purely geometric condition is given to determine the non-polytopal spheres. New results are presented for $d=4$ and $5$." } @book{e-oaz-94 -, author = "P. Engel" -, title = "Origami from Angelfish to Zen" -, publisher = "Dover" -, year = 1994 -, update = "97.11 bibrelex" +, author = "P. Engel" +, title = "Origami from Angelfish to Zen" +, publisher = "Dover" +, year = 1994 +, update = "97.11 bibrelex" } @book{es-vims-98 -, title = "Voronoi's Impact on Modern Science" -, editor = "P. Engel and H. Syta" -, publisher = "Institute of Mathematics of the National Academy of Sciences of Ukraine" -, address = "Kyiv" -, year = 1998 -, update = "00.11 smid" -, annote = "Two books, contains a biography of Voronoi" +, title = "Voronoi's Impact on Modern Science" +, editor = "P. Engel and H. Syta" +, publisher = "Institute of Mathematics of the National Academy of Sciences of Ukraine" +, address = "Kyiv" +, year = 1998 +, update = "00.11 smid" +, annote = "Two books, contains a biography of Voronoi" } @article{elw-bggde-90 -, author = "J. Engelfriet and G. Leih and Emo Welzl" -, title = "Boundary graph grammars with dynamic edge relabeling" -, journal = "J. Comput. Syst. Sci." -, volume = 40 -, year = 1990 -, pages = "307--345" -, update = "98.03 mitchell, 97.03 gaertner+salinger" +, author = "J. Engelfriet and G. Leih and Emo Welzl" +, title = "Boundary graph grammars with dynamic edge relabeling" +, journal = "J. Comput. Syst. Sci." +, volume = 40 +, year = 1990 +, pages = "307--345" +, update = "98.03 mitchell, 97.03 gaertner+salinger" } @article{e-cma-89 -, author = "H. Englisch" -, title = "The circumpolygon with maximal area" -, journal = "Optimization" -, volume = 20 -, number = 4 -, year = 1989 -, pages = "503--508" -, keywords = "polygon, circuscribed, area, optimization" -, update = "95.09 korneenko" +, author = "H. Englisch" +, title = "The circumpolygon with maximal area" +, journal = "Optimization" +, volume = 20 +, number = 4 +, year = 1989 +, pages = "503--508" +, keywords = "polygon, circuscribed, area, optimization" +, update = "95.09 korneenko" } @article{ev-imacm-88 -, author = "H. Englisch and H. Voigt" -, title = "The inpolygon with minimal area and the circumpolygon with maximal perimeter" -, journal = "Optimization" -, volume = 19 -, number = 2 -, year = 1988 -, pages = "229--233" -, keywords = "polygon, circuscribed, inscribed, area, optimization, perimeter" -, update = "95.09 korneenko" +, author = "H. Englisch and H. Voigt" +, title = "The inpolygon with minimal area and the circumpolygon with maximal perimeter" +, journal = "Optimization" +, volume = 19 +, number = 2 +, year = 1988 +, pages = "229--233" +, keywords = "polygon, circuscribed, inscribed, area, optimization, perimeter" +, update = "95.09 korneenko" } @article{e-eadwf-84 -, author = "T. C. Enns" -, title = "An efficient algorithm determining when fabrics hang together" -, journal = "Geom. Dedicata" -, volume = 15 -, year = 1984 -, pages = "259--260" -, keywords = "fabrics, weavings" -, update = "95.09 korneenko" +, author = "T. C. Enns" +, title = "An efficient algorithm determining when fabrics hang together" +, journal = "Geom. Dedicata" +, volume = 15 +, year = 1984 +, pages = "259--260" +, keywords = "fabrics, weavings" +, update = "95.09 korneenko" } @article{esg-imgc-98 -, author = "M. T. Ensz and D. W. Storti and M. A. Ganter" -, title = "Implicit Methods for Geometry Creation" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "509--536" -, update = "98.11 devillers" +, author = "M. T. Ensz and D. W. Storti and M. A. Ganter" +, title = "Implicit Methods for Geometry Creation" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "509--536" +, update = "98.11 devillers" } @inproceedings{ek-tgpdr-87 -, author = "K. S. Eo and C. M. Kyung" -, title = "A two-dimensional geometric processor for design rule check applications" -, booktitle = "TENCON'87. IEEE Per.10 Conf.?" -, volume = 1 -, year = 1987 -, pages = "266--270" -, keywords = "parallel computations, isothetic, VLSI design" -, update = "95.09 korneenko" +, author = "K. S. Eo and C. M. Kyung" +, title = "A two-dimensional geometric processor for design rule check applications" +, booktitle = "TENCON'87. IEEE Per.10 Conf.?" +, volume = 1 +, year = 1987 +, pages = "266--270" +, keywords = "parallel computations, isothetic, VLSI design" +, update = "95.09 korneenko" } @article{e-amwst-94 -, author = "D. Eppstein" -, title = "Approximating the minimum weight {Steiner} triangulation" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "163--191" -, succeeds = "e-amwt-92" -, update = "96.09 aronov" +, author = "D. Eppstein" +, title = "Approximating the minimum weight {Steiner} triangulation" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "163--191" +, succeeds = "e-amwt-92" +, update = "96.09 aronov" } @techreport{e-amwt-91 -, author = "D. Eppstein" -, title = "Approximating the minimum weight triangulation" -, type = "Tech. Report" -, number = "91-55" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1991 -, precedes = "e-amwt-92" +, author = "D. Eppstein" +, title = "Approximating the minimum weight triangulation" +, type = "Tech. Report" +, number = "91-55" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1991 +, precedes = "e-amwt-92" } @inproceedings{e-amwt-92 -, author = "D. Eppstein" -, title = "Approximating the minimum weight triangulation" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "48--57" -, succeeds = "e-amwt-91" -, precedes = "e-amwst-94" -, update = "96.09 aronov" +, author = "D. Eppstein" +, title = "Approximating the minimum weight triangulation" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "48--57" +, succeeds = "e-amwt-91" +, precedes = "e-amwst-94" +, update = "96.09 aronov" } @article{e-acadg-96 -, author = "D. Eppstein" -, title = "Average case analysis of dynamic geometric optimization" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "45--68" -, update = "96.09 devillers" +, author = "D. Eppstein" +, title = "Average case analysis of dynamic geometric optimization" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "45--68" +, update = "96.09 devillers" } @article{e-demst-95 -, author = "D. Eppstein" -, title = "Dynamic {Euclidean} minimum spanning trees and extrema of binary functions" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "111--122" -, update = "96.05 smid" +, author = "D. Eppstein" +, title = "Dynamic {Euclidean} minimum spanning trees and extrema of binary functions" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "111--122" +, update = "96.05 smid" } @inproceedings{e-dtdlp-91 -, author = "D. Eppstein" -, title = "Dynamic three-dimensional linear programming" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "488--494" -, precedes = "e-dtdlp-92" -, update = "93.09 rote" +, author = "D. Eppstein" +, title = "Dynamic three-dimensional linear programming" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "488--494" +, precedes = "e-dtdlp-92" +, update = "93.09 rote" } @article{e-dtdlp-92 -, author = "D. Eppstein" -, title = "Dynamic three-dimensional linear programming" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "360--368" -, keywords = "optimization, cluster analysis" -, succeeds = "e-dtdlp-91" -, update = "98.03 mitchell, 93.09 rote" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "D. Eppstein" +, title = "Dynamic three-dimensional linear programming" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "360--368" +, keywords = "optimization, cluster analysis" +, succeeds = "e-dtdlp-91" +, update = "98.03 mitchell, 93.09 rote" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @inproceedings{e-fhcoa-98 -, author = "David Eppstein" -, title = "Fast Hierarchical Clustering and Other Applications of Dynamic Closest Pairs" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "619--628" -, update = "98.07 agarwal+mitchell" +, author = "David Eppstein" +, title = "Fast Hierarchical Clustering and Other Applications of Dynamic Closest Pairs" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "619--628" +, update = "98.07 agarwal+mitchell" } @article{e-fcpan-97 -, author = "D. Eppstein" -, title = "Faster Circle Packing with Application to Non-Obtuse Triangulation" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "485--492" -, update = "99.11 bibrelex, 98.11 devillers" +, author = "D. Eppstein" +, title = "Faster Circle Packing with Application to Non-Obtuse Triangulation" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "485--492" +, update = "99.11 bibrelex, 98.11 devillers" } @techreport{e-fcptc-96 -, author = "D. Eppstein" -, title = "Faster construction of planar two-centers" -, type = "Tech. Report" -, number = "96-12" -, institution = "Dept. Comput. Sci." -, address = "University of California, Irvine" -, year = 1996 -, update = "96.05 agarwal" +, author = "D. Eppstein" +, title = "Faster construction of planar two-centers" +, type = "Tech. Report" +, number = "96-12" +, institution = "Dept. Comput. Sci." +, address = "University of California, Irvine" +, year = 1996 +, update = "96.05 agarwal" } @inproceedings{e-fcptc-97 -, author = "D. Eppstein" -, title = "Faster construction of planar two-centers" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, update = "97.03 agarwal, 96.05 agarwal" +, author = "D. Eppstein" +, title = "Faster construction of planar two-centers" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, update = "97.03 agarwal, 96.05 agarwal" } @techreport{e-fgkma-95 -, author = "D. Eppstein" -, title = "Faster geometric $k$-point {MST} approximation" -, type = "Tech. Report" -, number = "95-13" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1995 -, keywords = "k-MST" -, precedes = "e-fgkma-97" -, update = "98.03 mitchell, 95.09 mitchell" +, author = "D. Eppstein" +, title = "Faster geometric $k$-point {MST} approximation" +, type = "Tech. Report" +, number = "95-13" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1995 +, keywords = "k-MST" +, precedes = "e-fgkma-97" +, update = "98.03 mitchell, 95.09 mitchell" } @article{e-fgkma-97 -, author = "D. Eppstein" -, title = "Faster geometric $k$-point {MST} approximation" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, number = 5 -, month = oct -, year = 1997 -, pages = "231--240" -, keywords = "k-MST" -, succeeds = "e-fgkma-95" -, update = "98.03 mitchell" +, author = "D. Eppstein" +, title = "Faster geometric $k$-point {MST} approximation" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, number = 5 +, month = oct +, year = 1997 +, pages = "231--240" +, keywords = "k-MST" +, succeeds = "e-fgkma-95" +, update = "98.03 mitchell" } @inproceedings{e-fksst-90 -, author = "D. Eppstein" -, title = "Finding the $k$ smallest spanning trees" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "38--47" +, author = "D. Eppstein" +, title = "Finding the $k$ smallest spanning trees" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "38--47" } @article{e-fksst-92 -, author = "D. Eppstein" -, title = "Finding the $k$ smallest spanning trees" -, journal = "BIT" -, volume = 32 -, year = 1992 -, pages = "237--248" +, author = "D. Eppstein" +, title = "Finding the $k$ smallest spanning trees" +, journal = "BIT" +, volume = 32 +, year = 1992 +, pages = "237--248" } @techreport{e-fdmem-92 -, author = "D. Eppstein" -, title = "Fully dynamic maintenance of {Euclidean} minimum spanning trees" -, type = "Tech. Report" -, number = "92-05" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1992 +, author = "D. Eppstein" +, title = "Fully dynamic maintenance of {Euclidean} minimum spanning trees" +, type = "Tech. Report" +, number = "92-05" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1992 } @inproceedings{e-glbpm-95 -, author = "D. Eppstein" -, title = "Geometric lower bounds for parametric matroid optimization" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, year = 1995 -, pages = "662--671" -, update = "95.09 smid" +, author = "D. Eppstein" +, title = "Geometric lower bounds for parametric matroid optimization" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, year = 1995 +, pages = "662--671" +, update = "95.09 smid" } @misc{e-ga- -, author = "David Eppstein" -, title = "Geometry in Action" -, url = "https://www.ics.uci.edu/~eppstein/geom.html" -, update = "97.03 tamassia" +, author = "David Eppstein" +, title = "Geometry in Action" +, url = "https://www.ics.uci.edu/~eppstein/geom.html" +, update = "97.03 tamassia" } @techreport{e-ibith-91 -, author = "D. Eppstein" -, title = "Improved bounds for intersecting triangles and halving planes" -, type = "Tech. Report" -, number = "91-53" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1991 -, comments = "To appear in J. Comb. Theory Ser. A" +, author = "D. Eppstein" +, title = "Improved bounds for intersecting triangles and halving planes" +, type = "Tech. Report" +, number = "91-53" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1991 +, comments = "To appear in J. Comb. Theory Ser. A" } @article{e-ibith-93 -, author = "D. Eppstein" -, title = "Improved bounds for intersecting triangles and halving planes" -, journal = "J. Combin. Theory Ser. A" -, volume = 62 -, year = 1993 -, pages = "176--182" -, update = "98.03 agarwal" +, author = "D. Eppstein" +, title = "Improved bounds for intersecting triangles and halving planes" +, journal = "J. Combin. Theory Ser. A" +, volume = 62 +, year = 1993 +, pages = "176--182" +, update = "98.03 agarwal" } @inproceedings{e-lchmg-96 -, author = "David Eppstein" -, title = "Linear Complexity Hexahedral Mesh Generation" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "58--67" -, cites = "bpmcs-cahat-95, b-ct-93, be-mgot-95, cs-bst-94, h-mgasi-83, h-srcc-95, jsk-actfm-91, bbmmt-hmgd-95, m-cqmsw-95, rrt-ctq-95, s-op-, t-hdp-93, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "David Eppstein" +, title = "Linear Complexity Hexahedral Mesh Generation" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "58--67" +, cites = "bpmcs-cahat-95, b-ct-93, be-mgot-95, cs-bst-94, h-mgasi-83, h-srcc-95, jsk-actfm-91, bbmmt-hmgd-95, m-cqmsw-95, rrt-ctq-95, s-op-, t-hdp-93, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @techreport{e-namak-91 -, author = "D. Eppstein" -, title = "New algorithms for minimum area $k$-gons" -, type = "Tech. Report" -, number = "91-59" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1991 +, author = "D. Eppstein" +, title = "New algorithms for minimum area $k$-gons" +, type = "Tech. Report" +, number = "91-59" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1991 } @inproceedings{e-namak-92 -, author = "D. Eppstein" -, title = "New algorithms for minimum area $k$-gons" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "83--88" +, author = "D. Eppstein" +, title = "New algorithms for minimum area $k$-gons" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "83--88" } @inproceedings{e-oadms-91 -, author = "D. Eppstein" -, title = "Offline algorithms for dynamic minimum spanning tree problems" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "392--399" -, keywords = "proximity, minimum spanning tree" -, precedes = "e-oadms-92" +, author = "D. Eppstein" +, title = "Offline algorithms for dynamic minimum spanning tree problems" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "392--399" +, keywords = "proximity, minimum spanning tree" +, precedes = "e-oadms-92" } @techreport{e-oadms-92 -, author = "D. Eppstein" -, title = "Offline algorithms for dynamic minimum spanning tree problems" -, type = "Tech. Report" -, number = "92-04" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1992 -, succeeds = "e-oadms-91" +, author = "D. Eppstein" +, title = "Offline algorithms for dynamic minimum spanning tree problems" +, type = "Tech. Report" +, number = "92-04" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1992 +, succeeds = "e-oadms-91" } @techreport{e-poasc-91 -, author = "D. Eppstein" -, title = "Persistence, offline algorithms, and space compaction" -, type = "Tech. Report" -, number = "91-54" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1991 +, author = "D. Eppstein" +, title = "Persistence, offline algorithms, and space compaction" +, type = "Tech. Report" +, number = "91-54" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1991 } @incollection{e-sts-00 -, author = "David Eppstein" -, title = "Spanning Trees and Spanners" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "425--461" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell, 98.03 agarwal" -, annote = "Chapter 9 of su-hcg-00" +, author = "David Eppstein" +, title = "Spanning Trees and Spanners" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "425--461" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell, 98.03 agarwal" +, annote = "Chapter 9 of su-hcg-00" } @techreport{e-sucsg-92 -, author = "D. Eppstein" -, title = "Speed-ups in constructive solid geometry" -, type = "Report" -, number = "92-87" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1992 -, update = "96.09 orourke" +, author = "D. Eppstein" +, title = "Speed-ups in constructive solid geometry" +, type = "Report" +, number = "92-87" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1992 +, update = "96.09 orourke" } @techreport{e-sntcp-91 -, author = "D. Eppstein" -, title = "Subquadratic nonobtuse triangulation of convex polygons" -, type = "Tech. Report" -, number = "91-61" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1991 +, author = "D. Eppstein" +, title = "Subquadratic nonobtuse triangulation of convex polygons" +, type = "Tech. Report" +, number = "91-61" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1991 } @techreport{e-dnng-92 -, author = "D. Eppstein" -, title = "The diameter of nearest neighbor graphs" -, type = "Tech. Report" -, number = "92-76" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, month = jul -, year = 1992 -, update = "98.11 bibrelex" +, author = "D. Eppstein" +, title = "The diameter of nearest neighbor graphs" +, type = "Tech. Report" +, number = "92-76" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, month = jul +, year = 1992 +, update = "98.11 bibrelex" } @techreport{e-fpdtm-90 -, author = "D. Eppstein" -, title = "The farthest point {Delaunay} triangulation minimizes angles" -, type = "Manuscript" -, year = 1990 -, update = "97.11 bibrelex" +, author = "D. Eppstein" +, title = "The farthest point {Delaunay} triangulation minimizes angles" +, type = "Manuscript" +, year = 1990 +, update = "97.11 bibrelex" } @article{e-fpdtm-92 -, author = "D. Eppstein" -, title = "The farthest point {Delaunay} triangulation minimizes angles" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, year = 1992 -, pages = "143--148" -, keywords = "Delaunay triangulation, Voronoi diagrams" +, author = "D. Eppstein" +, title = "The farthest point {Delaunay} triangulation minimizes angles" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, year = 1992 +, pages = "143--148" +, keywords = "Delaunay triangulation, Voronoi diagrams" } @techreport{e-twngk-92 -, author = "D. Eppstein" -, title = "Tree-weighted neighbors and geometric $k$ smallest spanning trees" -, type = "Tech. Report" -, number = "92-77" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1992 -, precedes = "e-twngk-94" -, update = "96.09 devillers" +, author = "D. Eppstein" +, title = "Tree-weighted neighbors and geometric $k$ smallest spanning trees" +, type = "Tech. Report" +, number = "92-77" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1992 +, precedes = "e-twngk-94" +, update = "96.09 devillers" } @article{e-twngk-94 -, author = "D. Eppstein" -, title = "Tree-weighted neighbors and geometric $k$ smallest spanning trees" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "229--238" -, keywords = "minimum spanning trees, spanning tree enumeration, geometric optimization, nearest neighbors" -, succeeds = "e-twngk-92" -, update = "96.09 devillers" +, author = "D. Eppstein" +, title = "Tree-weighted neighbors and geometric $k$ smallest spanning trees" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "229--238" +, keywords = "minimum spanning trees, spanning tree enumeration, geometric optimization, nearest neighbors" +, succeeds = "e-twngk-92" +, update = "96.09 devillers" } @techreport{ee-innfm-92 -, author = "D. Eppstein and J. Erickson" -, title = "Iterated nearest neighbors and finding minimal polytopes" -, type = "Tech. Report" -, number = "92-71" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1992 -, precedes = "ee-innfm-93" -, update = "93.09 rote" +, author = "D. Eppstein and J. Erickson" +, title = "Iterated nearest neighbors and finding minimal polytopes" +, type = "Tech. Report" +, number = "92-71" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1992 +, precedes = "ee-innfm-93" +, update = "93.09 rote" } @inproceedings{ee-innfm-93 -, author = "D. Eppstein and J. Erickson" -, title = "Iterated Nearest Neighbors and Finding Minimal Polytopes" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "64--73" -, keywords = "optimization" -, succeeds = "ee-innfm-92" -, update = "93.09 rote, 93.05 smid" +, author = "D. Eppstein and J. Erickson" +, title = "Iterated Nearest Neighbors and Finding Minimal Polytopes" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "64--73" +, keywords = "optimization" +, succeeds = "ee-innfm-92" +, update = "93.09 rote, 93.05 smid" } @article{ee-innfm-94 -, author = "D. Eppstein and J. Erickson" -, title = "Iterated nearest neighbors and finding minimal polytopes" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "321--350" -, succeeds = "ee-innfm-93" -, update = "95.01 matousek" +, author = "D. Eppstein and J. Erickson" +, title = "Iterated nearest neighbors and finding minimal polytopes" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "321--350" +, succeeds = "ee-innfm-93" +, update = "95.01 matousek" } @techreport{ee-namms-92 -, author = "D. Eppstein and J. Erickson" -, title = "New algorithms for minimum measure simplices and one-dimensional weighted {Voronoi} diagrams" -, type = "Tech. Report" -, number = "92-55" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1992 +, author = "D. Eppstein and J. Erickson" +, title = "New algorithms for minimum measure simplices and one-dimensional weighted {Voronoi} diagrams" +, type = "Tech. Report" +, number = "92-55" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1992 } @article{eg-patcc-88 -, author = "D. Eppstein and Z. Galil" -, title = "Parallel algorithmic techniques for combinatorial computation" -, journal = "Annu. Rev. Comput. Sci." -, volume = 3 -, year = 1988 -, pages = "233--283" -, update = "96.09 orourke" +, author = "D. Eppstein and Z. Galil" +, title = "Parallel algorithmic techniques for combinatorial computation" +, journal = "Annu. Rev. Comput. Sci." +, volume = 3 +, year = 1988 +, pages = "233--283" +, update = "96.09 orourke" } @inproceedings{egg-sudp-88 -, author = "D. Eppstein and Z. Galil and R. Giancarlo" -, title = "Speeding up dynamic programming" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "488--496" +, author = "D. Eppstein and Z. Galil and R. Giancarlo" +, title = "Speeding up dynamic programming" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "488--496" } @inproceedings{eggi-sdp-90 -, author = "D. Eppstein and Z. Galil and R. Giancarlo and G. F. Italiano" -, title = "Sparse dynamic programming" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "513--522" +, author = "D. Eppstein and Z. Galil and R. Giancarlo and G. F. Italiano" +, title = "Sparse dynamic programming" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "513--522" } @inproceedings{egis-sbsdp-93 -, author = "D. Eppstein and Z. Galil and G. Italiano and T. Spencer" -, title = "Separator Based Sparsification for Dynamic Planar Graph Algorithms" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "208--217" -, update = "95.05 tamassia" +, author = "D. Eppstein and Z. Galil and G. Italiano and T. Spencer" +, title = "Separator Based Sparsification for Dynamic Planar Graph Algorithms" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "208--217" +, update = "95.05 tamassia" } @inproceedings{egin-stsud-92 -, author = "D. Eppstein and Z. Galil and G. F. Italiano and A. Nissenzweig" -, title = "Sparsification: {A} Technique for Speeding up Dynamic Graph Algorithms" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "60--69" -, update = "94.01 tamassia" +, author = "D. Eppstein and Z. Galil and G. F. Italiano and A. Nissenzweig" +, title = "Sparsification: {A} Technique for Speeding up Dynamic Graph Algorithms" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "60--69" +, update = "94.01 tamassia" } @article{egis-sbspt-96 -, author = "D. Eppstein and Z. Galil and G. F. Italiano and T. H. Spencer" -, title = "Separator based sparsification I. planarity testing and minimum spanning trees" -, journal = "J. Comput. Syst. Sci." -, volume = 52 -, year = 1996 -, pages = "3--27" -, update = "96.05 smid" +, author = "D. Eppstein and Z. Galil and G. F. Italiano and T. H. Spencer" +, title = "Separator based sparsification I. planarity testing and minimum spanning trees" +, journal = "J. Comput. Syst. Sci." +, volume = 52 +, year = 1996 +, pages = "3--27" +, update = "96.05 smid" } @techreport{eh-spakl-97 -, author = "David Eppstein and David Hart" -, title = "Shortest Paths in an Arrangement with {$k$} Line Orientations" -, type = "Manuscript" -, institution = "University of California, Irvine" -, year = 1997 -, update = "98.03 mitchell" +, author = "David Eppstein and David Hart" +, title = "Shortest Paths in an Arrangement with {$k$} Line Orientations" +, type = "Manuscript" +, institution = "University of California, Irvine" +, year = 1997 +, update = "98.03 mitchell" } @article{eittwy-cmmsf-93 -, author = "D. Eppstein and G. F. Italiano and R. Tamassia and R. E. Tarjan and J. Westbrook and M. Yung" -, title = "Corrigendum ({M}aintenance of a Minimum Spanning Forest in a Dynamic Plane Graph)" -, journal = "J. Algorithms" -, volume = 15 -, number = 1 -, year = 1993 -, pages = 173 -, update = "98.07 tamassia+vismara" +, author = "D. Eppstein and G. F. Italiano and R. Tamassia and R. E. Tarjan and J. Westbrook and M. Yung" +, title = "Corrigendum ({M}aintenance of a Minimum Spanning Forest in a Dynamic Plane Graph)" +, journal = "J. Algorithms" +, volume = 15 +, number = 1 +, year = 1993 +, pages = 173 +, update = "98.07 tamassia+vismara" } @inproceedings{eittwy-mmsfd-90 -, author = "D. Eppstein and G. F. Italiano and R. Tamassia and R. E. Tarjan and J. Westbrook and M. Yung" -, title = "Maintenance of a minimum spanning forest in a dynamic planar graph" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "1--11" -, precedes = "eittwy-mmsfd-92" +, author = "D. Eppstein and G. F. Italiano and R. Tamassia and R. E. Tarjan and J. Westbrook and M. Yung" +, title = "Maintenance of a minimum spanning forest in a dynamic planar graph" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "1--11" +, precedes = "eittwy-mmsfd-92" } @article{eittwy-mmsfd-92 -, author = "D. Eppstein and G. F. Italiano and R. Tamassia and R. E. Tarjan and J. Westbrook and M. Yung" -, title = "Maintenance of a Minimum Spanning Forest in a Dynamic Plane Graph" -, journal = "J. Algorithms" -, volume = 13 -, number = 1 -, year = 1992 -, pages = "33--54" -, succeeds = "eittwy-mmsfd-90" -, update = "98.07 tamassia+vismara" -, annote = "Corrigendum in 15(1):173, 1993" +, author = "D. Eppstein and G. F. Italiano and R. Tamassia and R. E. Tarjan and J. Westbrook and M. Yung" +, title = "Maintenance of a Minimum Spanning Forest in a Dynamic Plane Graph" +, journal = "J. Algorithms" +, volume = 13 +, number = 1 +, year = 1992 +, pages = "33--54" +, succeeds = "eittwy-mmsfd-90" +, update = "98.07 tamassia+vismara" +, annote = "Corrigendum in 15(1):173, 1993" } @inproceedings{emt-dltag-93 -, author = "D. Eppstein and G. L. Miller and S.-H. Teng" -, title = "A deterministic linear time algorithm for geometric separators and its applications" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "99--108" -, cites = "b-mdc-80, beg-pgmg-90, cs-splg-88, d-scpps-92, dfn-mgma-84, fj-sbsem-86, fmt-sbpdc-92, g-ndrfe-73, gl-cslsp-81, ght-stgbg-84, gt-anda-87, hs-sugpm-90, hlp-i-52, hw-ensrq-87, hc-gi-52, jp-dhp-78, k-fa-73, k-sa-81, k-ss-73, lrt-gnd-79, lt-stpg-79, lt-apst-80, m-aogdc-91, mt-cppd-90, mttv-amp-92, mt-sttd-90, mtv-ugags-91, mv-dgs-91, pr-epsls-85, sf-afem-73, t-pssug-90, t-gt3m-88, vc-ucrfe-71, v-adptd-91, v-oaann-89, y-3spia-83, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "D. Eppstein and G. L. Miller and S.-H. Teng" +, title = "A deterministic linear time algorithm for geometric separators and its applications" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "99--108" +, cites = "b-mdc-80, beg-pgmg-90, cs-splg-88, d-scpps-92, dfn-mgma-84, fj-sbsem-86, fmt-sbpdc-92, g-ndrfe-73, gl-cslsp-81, ght-stgbg-84, gt-anda-87, hs-sugpm-90, hlp-i-52, hw-ensrq-87, hc-gi-52, jp-dhp-78, k-fa-73, k-sa-81, k-ss-73, lrt-gnd-79, lt-stpg-79, lt-apst-80, m-aogdc-91, mt-cppd-90, mttv-amp-92, mt-sttd-90, mtv-ugags-91, mv-dgs-91, pr-epsls-85, sf-afem-73, t-pssug-90, t-gt3m-88, vc-ucrfe-71, v-adptd-91, v-oaann-89, y-3spia-83, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{eorw-fmakg-92 -, author = "D. Eppstein and M. H. Overmars and G{\"u}nter Rote and G. Woeginger" -, title = "Finding minimum area $k$-gons" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "45--58" -, keywords = "optimization, reporting" -, update = "98.07 agarwal, 98.03 mitchell, 93.09 rote" +, author = "D. Eppstein and M. H. Overmars and G{\"u}nter Rote and G. Woeginger" +, title = "Finding minimum area $k$-gons" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "45--58" +, keywords = "optimization, reporting" +, update = "98.07 agarwal, 98.03 mitchell, 93.09 rote" } @mastersthesis{e-ggor-92 -, author = "P. Epstein" -, title = "Generating Geometric Objects at Random" -, school = "School of Computer Science, Carleton University" -, month = apr -, year = 1992 -, keywords = "master thesis" -, update = "98.11 bibrelex" +, author = "P. Epstein" +, title = "Generating Geometric Objects at Random" +, school = "School of Computer Science, Carleton University" +, month = apr +, year = 1992 +, keywords = "master thesis" +, update = "98.11 bibrelex" } @article{ekkmns-wcg-94 -, author = "P. Epstein and J. Kavanagh and A. Knight and J. May and T. Nguyen and J.-R. Sack" -, title = "A Workbench for Computational Geometry" -, journal = "Algorithmica" -, volume = 11 -, number = 4 -, month = apr -, year = 1994 -, pages = "404--428" -, update = "98.11 bibrelex, 98.07 bibrelex, 97.11 sack, 97.07 smid" +, author = "P. Epstein and J. Kavanagh and A. Knight and J. May and T. Nguyen and J.-R. Sack" +, title = "A Workbench for Computational Geometry" +, journal = "Algorithmica" +, volume = 11 +, number = 4 +, month = apr +, year = 1994 +, pages = "404--428" +, update = "98.11 bibrelex, 98.07 bibrelex, 97.11 sack, 97.07 smid" } @techreport{ekmns-wcg-90 -, author = "P. Epstein and A. Knight and J. May and T. Nguyen and J.-R. Sack" -, title = "A workbench for computational geometry" -, type = "Technical {Report}" -, number = "SCS-TR-180" -, institution = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "P. Epstein and A. Knight and J. May and T. Nguyen and J.-R. Sack" +, title = "A workbench for computational geometry" +, type = "Technical {Report}" +, number = "SCS-TR-180" +, institution = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1990 +, update = "93.09 milone+mitchell" } @inproceedings{es-gtr-92 -, author = "P. Epstein and J.-R. Sack" -, title = "Generating triangulations at random" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "305--310" -, cites = "as-gbtr-92, e-ggor-92, u-igfpc-80, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Epstein and J.-R. Sack" +, title = "Generating triangulations at random" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "305--310" +, cites = "as-gbtr-92, e-ggor-92, u-igfpc-80, ZZZ" +, update = "98.07 bibrelex" } @article{es-gtr-94 -, author = "P. Epstein and J.-R. Sack" -, title = "Generating Triangulations at Random" -, journal = "ACM Transaction on Modeling and Computer Simulation" -, volume = 4 -, number = 3 -, year = 1994 -, pages = "267--278" -, update = "97.11 sack" +, author = "P. Epstein and J.-R. Sack" +, title = "Generating Triangulations at Random" +, journal = "ACM Transaction on Modeling and Computer Simulation" +, volume = 4 +, number = 3 +, year = 1994 +, pages = "267--278" +, update = "97.11 sack" } @techreport{e-mpu-84 -, author = "M. Erdmann" -, title = "On motion planning with uncertainty" -, number = "MIT-AI-TR 810" -, institution = "Artificial Intelligence Laboratory, MIT" -, year = 1984 -, update = "98.03 bibrelex" +, author = "M. Erdmann" +, title = "On motion planning with uncertainty" +, number = "MIT-AI-TR 810" +, institution = "Artificial Intelligence Laboratory, MIT" +, year = 1984 +, update = "98.03 bibrelex" } @article{e-ubfmp-86 -, author = "M. Erdmann" -, title = "Using Backprojections for Fine Motion Planning with Uncertainty" -, journal = "Internat. J. Robot. Res." -, volume = 5 -, number = 1 -, year = 1986 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "M. Erdmann" +, title = "Using Backprojections for Fine Motion Planning with Uncertainty" +, journal = "Internat. J. Robot. Res." +, volume = 5 +, number = 1 +, year = 1986 +, pages = "??" +, update = "93.09 milone+mitchell" } @article{el-mmo-87 -, author = "M. Erdmann and T. Lozano-P{\'e}rez" -, title = "On multiple moving objects" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "477--521" +, author = "M. Erdmann and T. Lozano-P{\'e}rez" +, title = "On multiple moving objects" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "477--521" } @inproceedings{em-esm-86 -, author = "M. Erdmann and M. T. Mason" -, title = "An Exploration of Sensorless Manipulation" -, booktitle = "Proc. 3rd IEEE Internat. Conf. Robot. Autom." -, month = apr -, year = 1986 -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "M. Erdmann and M. T. Mason" +, title = "An Exploration of Sensorless Manipulation" +, booktitle = "Proc. 3rd IEEE Internat. Conf. Robot. Autom." +, month = apr +, year = 1986 +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{em-esm-88 -, author = "M. A. Erdmann and M. Mason" -, title = "An exploration of sensorless manipulation" -, journal = "Internat. J. Robot. Autom." -, volume = 4 -, number = 4 -, year = 1988 -, pages = "367--379" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "M. A. Erdmann and M. Mason" +, title = "An exploration of sensorless manipulation" +, journal = "Internat. J. Robot. Autom." +, volume = 4 +, number = 4 +, year = 1988 +, pages = "367--379" +, update = "98.11 bibrelex, 98.03 bibrelex" } @incollection{e-cpgnt-79 -, author = "P. Erd{\H o}s" -, title = "Combinatorial problems in geometry and number theory" -, booktitle = "??" -, series = "Proc. Symp. Pure Math." -, volume = 34 -, publisher = "American Mathematical Society" -, year = 1979 -, pages = "149--62" -, update = "98.03 bibrelex" +, author = "P. Erd{\H o}s" +, title = "Combinatorial problems in geometry and number theory" +, booktitle = "??" +, series = "Proc. Symp. Pure Math." +, volume = 34 +, publisher = "American Mathematical Society" +, year = 1979 +, pages = "149--62" +, update = "98.03 bibrelex" } @article{e-gtp-59 -, author = "P. Erd{\H o}s" -, title = "Graph theory and probability" -, journal = "Canad. J. Math." -, volume = 11 -, year = 1959 -, pages = "34--38" -, update = "98.03 bibrelex" +, author = "P. Erd{\H o}s" +, title = "Graph theory and probability" +, journal = "Canad. J. Math." +, volume = 11 +, year = 1959 +, pages = "34--38" +, update = "98.03 bibrelex" } @article{e-epggg-64 -, author = "P. Erd{\H o}s" -, title = "On extremal problems of graphs and generalized graphs" -, journal = "Israel J. Math." -, volume = 2 -, year = 1964 -, pages = "183--190" -, update = "98.03 bibrelex" +, author = "P. Erd{\H o}s" +, title = "On extremal problems of graphs and generalized graphs" +, journal = "Israel J. Math." +, volume = 2 +, year = 1964 +, pages = "183--190" +, update = "98.03 bibrelex" } @article{e-sdnp-46 -, author = "P. Erd{\H o}s" -, title = "On sets of distances of $n$ points" -, journal = "Amer. Math. Monthly" -, volume = 53 -, year = 1946 -, pages = "248--250" -, keywords = "combinatorial geometry, number theory, unit distances" -, update = "02.03 orourke" +, author = "P. Erd{\H o}s" +, title = "On sets of distances of $n$ points" +, journal = "Amer. Math. Monthly" +, volume = 53 +, year = 1946 +, pages = "248--250" +, keywords = "combinatorial geometry, number theory, unit distances" +, update = "02.03 orourke" } @article{e-sdnpe-60 -, author = "P. Erd{\H o}s" -, title = "On sets of distances of $n$ points in {Euclidean} space" -, journal = "Publications Mathematical Institute of Hungarian Academy of Sciences" -, volume = 5 -, year = 1960 -, pages = "165--169" -, keywords = "combinatorial geometry, number theory, unit distance" +, author = "P. Erd{\H o}s" +, title = "On sets of distances of $n$ points in {Euclidean} space" +, journal = "Publications Mathematical Institute of Hungarian Academy of Sciences" +, volume = 5 +, year = 1960 +, pages = "165--169" +, keywords = "combinatorial geometry, number theory, unit distance" } @article{e-sagtg-67 -, author = "P. Erd{\H o}s" -, title = "On some applications of graph theory to geometry" -, journal = "Canad. J. Math." -, volume = 19 -, year = 1967 -, pages = "968--971" -, keywords = "unit distance, extremal graph theory" +, author = "P. Erd{\H o}s" +, title = "On some applications of graph theory to geometry" +, journal = "Canad. J. Math." +, volume = 19 +, year = 1967 +, pages = "968--971" +, keywords = "unit distance, extremal graph theory" } @article{e-irpnn-62 -, author = "P. Erd{\H o}s" -, title = "On the integers relatively prime to $n$ and on a number theoretic function considered by {Jacobsthal}" -, journal = "Math. Scand." -, volume = 10 -, year = 1962 -, pages = "163--170" -, update = "97.11 bibrelex" +, author = "P. Erd{\H o}s" +, title = "On the integers relatively prime to $n$ and on a number theoretic function considered by {Jacobsthal}" +, journal = "Math. Scand." +, volume = 10 +, year = 1962 +, pages = "163--170" +, update = "97.11 bibrelex" } @book{e-peac-73 -, author = "P. Erd{\H o}s" -, title = "Paul Erd{\H o}s: {The} Art of Counting" -, editor = "J. H. Spencer" -, publisher = "MIT Press" -, year = 1973 -, update = "97.11 bibrelex" +, author = "P. Erd{\H o}s" +, title = "Paul Erd{\H o}s: {The} Art of Counting" +, editor = "J. H. Spencer" +, publisher = "MIT Press" +, year = 1973 +, update = "97.11 bibrelex" } @article{e-p3763-35 -, author = "P. Erd{\H o}s" -, title = "Problem 3763" -, journal = "Amer. Math. Monthly" -, volume = 42 -, year = 1935 -, pages = 627 -, comments = "See sn-sp3763-39." -, update = "98.11 orourke" -, annote = "Flipping polygon pockets." +, author = "P. Erd{\H o}s" +, title = "Problem 3763" +, journal = "Amer. Math. Monthly" +, volume = 42 +, year = 1935 +, pages = 627 +, comments = "See sn-sp3763-39." +, update = "98.11 orourke" +, annote = "Flipping polygon pockets." } @article{e-pn4-44 -, author = "P. Erd{\H o}s" -, title = "Problem No 4065" -, journal = "Amer. Math. Monthly" -, volume = 51 -, year = 1944 -, pages = 169 -, update = "98.03 devillers" +, author = "P. Erd{\H o}s" +, title = "Problem No 4065" +, journal = "Amer. Math. Monthly" +, volume = 51 +, year = 1944 +, pages = 169 +, update = "98.03 devillers" } @article{e-smpeg-78 -, author = "Paul Erd{{\H o}}s" -, title = "Some more problems on elementary geometry" -, journal = "Austral. Math. Soc. Gaz." -, volume = 5 -, year = 1978 -, pages = "52--54" -, update = "02.03 devillers" +, author = "Paul Erd{{\H o}}s" +, title = "Some more problems on elementary geometry" +, journal = "Austral. Math. Soc. Gaz." +, volume = 5 +, year = 1978 +, pages = "52--54" +, update = "02.03 devillers" } @article{efrs-srn-78 -, author = "P. Erd{\H o}s and R. J. Faudree and C. C. Rousseau and R. H. Schelp" -, title = "The size {Ramsey} number" -, journal = "Periodica Mathematica Hungarica" -, volume = 9 -, year = 1978 -, pages = "145--161" -, update = "97.11 bibrelex" +, author = "P. Erd{\H o}s and R. J. Faudree and C. C. Rousseau and R. H. Schelp" +, title = "The size {Ramsey} number" +, journal = "Periodica Mathematica Hungarica" +, volume = 9 +, year = 1978 +, pages = "145--161" +, update = "97.11 bibrelex" } @article{ef-mpsme-97 -, author = "P. Erd{\H o}s and P. Fishburn" -, title = "Minimum planar sets with maximum equidistance counts" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "207--218" -, update = "97.07 devillers" +, author = "P. Erd{\H o}s and P. Fishburn" +, title = "Minimum planar sets with maximum equidistance counts" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "207--218" +, update = "97.07 devillers" } @book{egh-lp-89 -, author = "P. Erd{\H o}s and P. M. Gruber and J. Hammer" -, title = "Lattice Points" -, publisher = "Longman Scientific \& Technical" -, year = 1989 -, update = "98.03 bibrelex" +, author = "P. Erd{\H o}s and P. M. Gruber and J. Hammer" +, title = "Lattice Points" +, publisher = "Longman Scientific \& Technical" +, year = 1989 +, update = "98.03 bibrelex" } @article{eg-cnp-73 -, author = "P. Erd{\H o}s and R. K. Guy" -, title = "Crossing number problems" -, journal = "Amer. Math. Monthly" -, volume = 80 -, year = 1973 -, pages = "52--58" -, update = "97.11 bibrelex" +, author = "P. Erd{\H o}s and R. K. Guy" +, title = "Crossing number problems" +, journal = "Amer. Math. Monthly" +, volume = 80 +, year = 1973 +, pages = "52--58" +, update = "97.11 bibrelex" } @article{eg-vcmp-95 -, author = "P. Erd{\H o}s and A. Gy{\'a}rf{\'a}s" -, title = "Vertex covering with monochromatic paths" -, journal = "Mathematica Pannonica" -, volume = 6 -, year = 1995 -, pages = "7--10" -, update = "97.11 bibrelex" +, author = "P. Erd{\H o}s and A. Gy{\'a}rf{\'a}s" +, title = "Vertex covering with monochromatic paths" +, journal = "Mathematica Pannonica" +, volume = 6 +, year = 1995 +, pages = "7--10" +, update = "97.11 bibrelex" } @article{egp-vcmct-91 -, author = "P. Erd{\H o}s and A. Gy{\'a}rf{\'a}s and L. Pyber" -, title = "Vertex coverings by monochromatic cycles and trees" -, journal = "J. Combin. Theory Ser. B" -, volume = 51 -, year = 1991 -, pages = "90--95" -, update = "97.11 bibrelex" +, author = "P. Erd{\H o}s and A. Gy{\'a}rf{\'a}s and L. Pyber" +, title = "Vertex coverings by monochromatic cycles and trees" +, journal = "J. Combin. Theory Ser. B" +, volume = 51 +, year = 1991 +, pages = "90--95" +, update = "97.11 bibrelex" } @article{ek-cdrr-90 -, author = "P. Erd{\H o}s and P. Komj{\'a}th" -, title = "Countable decompositions of {$\Re^2$} and {$\Re^3$}" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "325--331" +, author = "P. Erd{\H o}s and P. Komj{\'a}th" +, title = "Countable decompositions of {$\Re^2$} and {$\Re^3$}" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "325--331" } @incollection{elss-dgpps-73 -, author = "P. Erd{\H o}s and L. Lov{\'a}sz and A. Simmons and E. Straus" -, title = "Dissection graphs of planar point sets" -, editor = "J. N. Srivastava" -, booktitle = "A Survey of Combinatorial Theory" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1973 -, pages = "139--154" -, keywords = "$k$-sets" +, author = "P. Erd{\H o}s and L. Lov{\'a}sz and A. Simmons and E. Straus" +, title = "Dissection graphs of planar point sets" +, editor = "J. N. Srivastava" +, booktitle = "A Survey of Combinatorial Theory" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1973 +, pages = "139--154" +, keywords = "$k$-sets" } @article{elv-gld-89 -, author = "P. Erd{\H o}s and L. Lov{\'a}sz and K. Vesztergombi" -, title = "On the graph of large distances" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "541--549" +, author = "P. Erd{\H o}s and L. Lov{\'a}sz and K. Vesztergombi" +, title = "On the graph of large distances" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "541--549" } @article{ep-vtrd-90 -, author = "P. Erd{\H o}s and J. Pach" -, title = "Variations on the theme of repeated distances" -, journal = "Combinatorica" -, volume = 10 -, year = 1990 -, pages = "261--269" -, keywords = "combinatorial geometry, unit distance" +, author = "P. Erd{\H o}s and J. Pach" +, title = "Variations on the theme of repeated distances" +, journal = "Combinatorica" +, volume = 10 +, year = 1990 +, pages = "261--269" +, keywords = "combinatorial geometry, unit distance" } @article{ep-sepg-71 -, author = "P. Erd{\H o}s and G. Purdy" -, title = "Some extremal problems in geometry" -, journal = "J. Combin. Theory" -, volume = 10 -, number = 3 -, year = 1971 -, pages = "246--252" -, update = "98.07 bibrelex" +, author = "P. Erd{\H o}s and G. Purdy" +, title = "Some extremal problems in geometry" +, journal = "J. Combin. Theory" +, volume = 10 +, number = 3 +, year = 1971 +, pages = "246--252" +, update = "98.07 bibrelex" } @article{er-ag-63 -, author = "P. Erd{\H o}s and A. Renyi" -, title = "Asymmetric Graphs" -, journal = "Acta Math. Acad. Sci. Hungar." -, volume = 14 -, year = 1963 -, pages = "295--315" -, update = "97.11 bibrelex" +, author = "P. Erd{\H o}s and A. Renyi" +, title = "Asymmetric Graphs" +, journal = "Acta Math. Acad. Sci. Hungar." +, volume = 14 +, year = 1963 +, pages = "295--315" +, update = "97.11 bibrelex" } @article{es-sgh-83 -, author = "P. Erd{\H o}s and M. Simonovits" -, title = "Supersaturated graphs and hypergraphs" -, journal = "Combinatorica" -, volume = 3 -, year = 1983 -, pages = "181--192" -, update = "98.03 bibrelex" +, author = "P. Erd{\H o}s and M. Simonovits" +, title = "Supersaturated graphs and hypergraphs" +, journal = "Combinatorica" +, volume = 3 +, year = 1983 +, pages = "181--192" +, update = "98.03 bibrelex" } @book{es-pmc-74 -, author = "P. Erd{\H o}s and J. Spencer" -, title = "Probabilistic Methods in Combinatorics" -, publisher = "Academic Press" -, year = 1974 +, author = "P. Erd{\H o}s and J. Spencer" +, title = "Probabilistic Methods in Combinatorics" +, publisher = "Academic Press" +, year = 1974 } @article{es-cpg-35 -, author = "P. Erd{\H o}s and G. Szekeres" -, title = "A combinatorial problem in geometry" -, journal = "Compositio Math." -, volume = 2 -, year = 1935 -, pages = "463--470" -, update = "93.09 rote" +, author = "P. Erd{\H o}s and G. Szekeres" +, title = "A combinatorial problem in geometry" +, journal = "Compositio Math." +, volume = 2 +, year = 1935 +, pages = "463--470" +, update = "93.09 rote" } @article{es-sepeg-60 -, author = "P. Erd{\H o}s and G. Szekeres" -, title = "On Some Extremeum Problem in Geometry" -, journal = "Ann. Univ. Sci. Budapest" -, volume = "3-4" -, year = 1960 -, pages = "53--62" -, update = "97.11 bibrelex" +, author = "P. Erd{\H o}s and G. Szekeres" +, title = "On Some Extremeum Problem in Geometry" +, journal = "Ann. Univ. Sci. Budapest" +, volume = "3-4" +, year = 1960 +, pages = "53--62" +, update = "97.11 bibrelex" } @article{et-psant-41 -, author = "P. Erd{\H o}s and P. Tur{\'a}n" -, title = "On aproblem of {Sidon} in additive number theory, and on some related problems" -, journal = "Proc. London Math. Soc." -, volume = 16 -, year = 1941 -, pages = "212--215" -, update = "98.03 bibrelex" +, author = "P. Erd{\H o}s and P. Tur{\'a}n" +, title = "On aproblem of {Sidon} in additive number theory, and on some related problems" +, journal = "Proc. London Math. Soc." +, volume = 16 +, year = 1941 +, pages = "212--215" +, update = "98.03 bibrelex" } @book{eg-orcrg-90 -, author = "W. Eric and L. Grimson" -, title = "Object Recognition by Computer: The Role of Geometric Constraints" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1990 -, update = "98.07 agarwal" +, author = "W. Eric and L. Grimson" +, title = "Object Recognition by Computer: The Role of Geometric Constraints" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1990 +, update = "98.07 agarwal" } @misc{e-cgp- -, author = "Jeff Erickson" -, title = "Computational Geometry Pages" -, url = "http://www.cs.duke.edu/~jeffe/compgeom/" -, update = "97.03 tamassia" +, author = "Jeff Erickson" +, title = "Computational Geometry Pages" +, url = "http://www.cs.duke.edu/~jeffe/compgeom/" +, update = "97.03 tamassia" } @inproceedings{e-lblsp-95 -, author = "Jeff Erickson" -, title = "Lower Bounds for Linear Satisfiability Problems" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "388--395" -, keywords = "lower bounds, decision trees" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "Jeff Erickson" +, title = "Lower Bounds for Linear Satisfiability Problems" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "388--395" +, keywords = "lower bounds, decision trees" +, update = "96.09 agarwal, 96.05 mitchell" } @inproceedings{e-nlbch-96 -, author = "Jeff Erickson" -, title = "New Lower Bounds for Convex Hull Problems in Odd Dimensions" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, site = "" -, year = 1996 -, pages = "1--9" -, cites = "am-rsps-93, af-pachv-92, b-lbact-83, c-osrch-95, csy-oscpf-95, ck-acp-70, c-ochaa-93, cm-dosch-92, c-mosga-94, cs-arscg-89, e-lblsp-95, es-blbda-95, go-copcg-95, g-ncp-63, g-eadch-72, g-cp-67, j-dfaed-41, ks-upcha-86, ms-rscp-93, m-loq-93, ph-chfsp-77, r-dchhd-92, s-uekvm-01, s-chaop-81, s-mplbc-85, s-chdch-86, s-sdlpc-91, s-opgfg-91, s-fchff-85, y-lbfch-81, z-lp-94, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Jeff Erickson" +, title = "New Lower Bounds for Convex Hull Problems in Odd Dimensions" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, site = "" +, year = 1996 +, pages = "1--9" +, cites = "am-rsps-93, af-pachv-92, b-lbact-83, c-osrch-95, csy-oscpf-95, ck-acp-70, c-ochaa-93, cm-dosch-92, c-mosga-94, cs-arscg-89, e-lblsp-95, es-blbda-95, go-copcg-95, g-ncp-63, g-eadch-72, g-cp-67, j-dfaed-41, ks-upcha-86, ms-rscp-93, m-loq-93, ph-chfsp-77, r-dchhd-92, s-uekvm-01, s-chaop-81, s-mplbc-85, s-chdch-86, s-sdlpc-91, s-opgfg-91, s-fchff-85, y-lbfch-81, z-lp-94, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{e-nlbch-99 -, author = "J. Erickson" -, title = "New Lower Bounds for Convex Hull Problems in Odd Dimensions" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1999 -, pages = "1198--1214" -, update = "99.11 smid" +, author = "J. Erickson" +, title = "New Lower Bounds for Convex Hull Problems in Odd Dimensions" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1999 +, pages = "1198--1214" +, update = "99.11 smid" } @inproceedings{e-nlbhe-96 -, author = "Jeff Erickson" -, title = "New Lower Bounds for Halfspace Emptiness" -, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1996 -, pages = "472--481" -, keywords = "partition graph, partitioning algorithm, range searching, incidences" -, update = "97.07 agarwal" +, author = "Jeff Erickson" +, title = "New Lower Bounds for Halfspace Emptiness" +, booktitle = "Proc. 37th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1996 +, pages = "472--481" +, keywords = "partition graph, partitioning algorithm, range searching, incidences" +, update = "97.07 agarwal" } @inproceedings{e-nlbhp-95 -, author = "Jeff Erickson" -, title = "New Lower Bounds for {Hopcroft's} Problem" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "127--137" -, keywords = "partitioning algorithms" -, cites = "a-pal2a-90, aaas-cvgbr-93, b-lbact-83, bos-cvdo-92, bs-ca-92, c-rcsi-86, c-lbcpr-89, c-chdc-93, c-lbolr-95, csw-qoubs-92, cegsw-ccbac-90, csy-khrp-87, e-acg-87, eghsssw-irals-89, egs-cmcap-90, es-hipac-91, e-rcsgp-95, es-blbda-95, f-lbcso-81, hw-tn-65, l-ccs-90, m-rsehc-93, sy-lbadt-82, s-opgfg-91, st-epdg-83, t-clc-75, t-cgcbs-84, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Jeff Erickson" +, title = "New Lower Bounds for {Hopcroft's} Problem" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "127--137" +, keywords = "partitioning algorithms" +, cites = "a-pal2a-90, aaas-cvgbr-93, b-lbact-83, bos-cvdo-92, bs-ca-92, c-rcsi-86, c-lbcpr-89, c-chdc-93, c-lbolr-95, csw-qoubs-92, cegsw-ccbac-90, csy-khrp-87, e-acg-87, eghsssw-irals-89, egs-cmcap-90, es-hipac-91, e-rcsgp-95, es-blbda-95, f-lbcso-81, hw-tn-65, l-ccs-90, m-rsehc-93, sy-lbadt-82, s-opgfg-91, st-epdg-83, t-clc-75, t-cgcbs-84, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{e-nlbhp-96 -, author = "Jeff Erickson" -, title = "New Lower Bounds for {Hopcroft's} Problem" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "389--418" -, keywords = "range searching, incidence, partitioning algorithm, partition graph" -, update = "97.07 agarwal" +, author = "Jeff Erickson" +, title = "New Lower Bounds for {Hopcroft's} Problem" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "389--418" +, keywords = "range searching, incidence, partitioning algorithm, partition graph" +, update = "97.07 agarwal" } @techreport{e-npsch-01 -, author = "Jeff Erickson" -, title = "Nice point sets can have nasty {Delaunay} triangulations" -, institution = "University of Illinois, Urbana-Champaign" -, year = 2001 -, update = "01.07 devillers" +, author = "Jeff Erickson" +, title = "Nice point sets can have nasty {Delaunay} triangulations" +, institution = "University of Illinois, Urbana-Champaign" +, year = 2001 +, update = "01.07 devillers" } @inproceedings{e-npsch-01i -, author = "Jeff Erickson" -, title = "Nice point sets can have nasty {Delaunay} triangulations" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "96--105" -, update = "01.07 devillers" +, author = "Jeff Erickson" +, title = "Nice point sets can have nasty {Delaunay} triangulations" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "96--105" +, update = "01.07 devillers" } @inproceedings{e-rcsgp-95 -, author = "Jeff Erickson" -, title = "On the Relative Complexities of Some Geometric Problems" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "85--90" -, update = "95.09 jones" +, author = "Jeff Erickson" +, title = "On the Relative Complexities of Some Geometric Problems" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "85--90" +, update = "95.09 jones" } @article{e-pc-97 -, author = "Jeff Erickson" -, title = "Pl{\"u}cker coordinates" -, journal = "Ray Tracing News" -, volume = 10 -, number = 3 -, month = dec -, year = 1997 -, pages = "electronic" -, url = "http://www.acm.org/tog/resources/RTNews/html/rtnv10n3.html" -, update = "98.07 orourke" +, author = "Jeff Erickson" +, title = "Pl{\"u}cker coordinates" +, journal = "Ray Tracing News" +, volume = 10 +, number = 3 +, month = dec +, year = 1997 +, pages = "electronic" +, url = "http://www.acm.org/tog/resources/RTNews/html/rtnv10n3.html" +, update = "98.07 orourke" } @inproceedings{e-stteq-97 -, author = "Jeff Erickson" -, title = "Space-Time Tradeoffs for Emptiness Queries" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "304--313" -, keywords = "lower bounds, range searching, partition graph" -, cites = "a-rs-96, am-rsps-93, ahl-sqrpc-90, b-lbact-83, bos-cvdo-94, bcp-hhihr-93, c-fdlpq-96, c-osrch-96, c-lbcpr-89, c-chdc-93, cegs-ablsp-94, cf-plhur-94, cgl-pgd-85, cr-srrpm-96, c-lbolr-97, dk-dsppu-90, de-mee-96, e-nlbhe-96, e-nlbhp-96, f-lbcso-81, m-ept-92, m-rph-92, m-loq-93, m-vrsa-93, m-rsehc-93, m-grs-94, ms-rscp-93, pa-cg-95, ps-cgi-85, t-cawrn-79, y-cmps-85, ZZZ" -, update = "98.07 bibrelex, 97.07 agarwal+efrat" +, author = "Jeff Erickson" +, title = "Space-Time Tradeoffs for Emptiness Queries" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "304--313" +, keywords = "lower bounds, range searching, partition graph" +, cites = "a-rs-96, am-rsps-93, ahl-sqrpc-90, b-lbact-83, bos-cvdo-94, bcp-hhihr-93, c-fdlpq-96, c-osrch-96, c-lbcpr-89, c-chdc-93, cegs-ablsp-94, cf-plhur-94, cgl-pgd-85, cr-srrpm-96, c-lbolr-97, dk-dsppu-90, de-mee-96, e-nlbhe-96, e-nlbhp-96, f-lbcso-81, m-ept-92, m-rph-92, m-loq-93, m-vrsa-93, m-rsehc-93, m-grs-94, ms-rscp-93, pa-cg-95, ps-cgi-85, t-cawrn-79, y-cmps-85, ZZZ" +, update = "98.07 bibrelex, 97.07 agarwal+efrat" } @article{e-stteq-00 -, author = "J. Erickson" -, title = "Space-time tradeoffs for emptiness queries" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "1968--1996" -, update = "01.04 smid" +, author = "J. Erickson" +, title = "Space-time tradeoffs for emptiness queries" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "1968--1996" +, update = "01.04 smid" } @techreport{es-blbda-93t -, author = "Jeff Erickson and Raimund Seidel" -, title = "Better Lower Bounds on Detecting Affine and Spherical Degeneracies" -, type = "manuscript" -, year = 1993 -, precedes = "es-blbda-93, es-blbda-95" -, update = "98.11 bibrelex" +, author = "Jeff Erickson and Raimund Seidel" +, title = "Better Lower Bounds on Detecting Affine and Spherical Degeneracies" +, type = "manuscript" +, year = 1993 +, precedes = "es-blbda-93, es-blbda-95" +, update = "98.11 bibrelex" } @inproceedings{es-blbda-93 -, author = "Jeff Erickson and Raimund Seidel" -, title = "Better Lower Bounds on Detecting Affine and Spherical Degeneracies" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "528--536" -, succeeds = "es-blbda-93t" -, update = "98.11 bibrelex, 98.07 bibrelex, 97.03 agarwal, 94.01 orourke+smid, 93.09 erickson+milone+mitchell" +, author = "Jeff Erickson and Raimund Seidel" +, title = "Better Lower Bounds on Detecting Affine and Spherical Degeneracies" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "528--536" +, succeeds = "es-blbda-93t" +, update = "98.11 bibrelex, 98.07 bibrelex, 97.03 agarwal, 94.01 orourke+smid, 93.09 erickson+milone+mitchell" } @article{es-blbda-95 -, author = "J. Erickson and R. Seidel" -, title = "Better lower bounds on detecting affine and spherical degeneracies" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "41--57" -, succeeds = "es-blbda-93t" -, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 smid" +, author = "J. Erickson and R. Seidel" +, title = "Better lower bounds on detecting affine and spherical degeneracies" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "41--57" +, succeeds = "es-blbda-93t" +, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 smid" } @article{eo-etpnm-90 -, author = "L. Ericson and C. {\'O}'D{\'u}nlaing" -, title = "Enumeration of tree properties by naive methods" -, journal = "Algorithms Rev." -, volume = 1 -, number = 3 -, year = 1990 -, pages = "119--124" +, author = "L. Ericson and C. {\'O}'D{\'u}nlaing" +, title = "Enumeration of tree properties by naive methods" +, journal = "Algorithms Rev." +, volume = 1 +, number = 3 +, year = 1990 +, pages = "119--124" } @techreport{e-tcgep-87 -, author = "L. W. Ericson" -, title = "Topologically correct graphical editing in the plane" -, type = "Technical {Report}" -, number = 97 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, month = jan -, year = 1987 -, update = "98.03 bibrelex" +, author = "L. W. Ericson" +, title = "Topologically correct graphical editing in the plane" +, type = "Technical {Report}" +, number = 97 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, month = jan +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{ey-dlge-88 -, author = "L. W. Ericson and C. K. Yap" -, title = "The design of {LINETOOL}, a geometric editor" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "83--92" -, cites = "-pltc-85, a-ggar-88, a-grla-88, b-tcosl-79, bdmpw-gas-87, b-bdn-87, b-wcgbd-89, b-gbamp-85, bcla-casac-83, bl-as-83, cgh-snebc-88, c-pegtu-84, c-cmpr-71, c-qercf-75, cb-enaaa-80, d-smbgb-87, dmy-aobgn-86, e-tfcgc-88, e-tcgep-87, f-gcest-88, g-seppi-84, g-ac-83, km-gr-89, ks-agtpu-86, l-cae-83, m-vigau-89i, my-ngb-86, mm-chf-83, n-jcbgs-85, n-cte-83, p-lfg-66, ram-tm-84, s-fpavp-80, ss-pmp2g-83, ss-ccsm-85, s-rmes-40, s-dicpl-80, sb-ooptv-85, s-smmgc-63, u-te-48, w-eidag-73, v-ltg-80, y-snegi-79, gy-frcg-86, -m4rm-85, ZZZ" -, update = "99.11 bibrelex, 99.03 forrest, 98.03 bibrelex" +, author = "L. W. Ericson and C. K. Yap" +, title = "The design of {LINETOOL}, a geometric editor" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "83--92" +, cites = "-pltc-85, a-ggar-88, a-grla-88, b-tcosl-79, bdmpw-gas-87, b-bdn-87, b-wcgbd-89, b-gbamp-85, bcla-casac-83, bl-as-83, cgh-snebc-88, c-pegtu-84, c-cmpr-71, c-qercf-75, cb-enaaa-80, d-smbgb-87, dmy-aobgn-86, e-tfcgc-88, e-tcgep-87, f-gcest-88, g-seppi-84, g-ac-83, km-gr-89, ks-agtpu-86, l-cae-83, m-vigau-89i, my-ngb-86, mm-chf-83, n-jcbgs-85, n-cte-83, p-lfg-66, ram-tm-84, s-fpavp-80, ss-pmp2g-83, ss-ccsm-85, s-rmes-40, s-dicpl-80, sb-ooptv-85, s-smmgc-63, u-te-48, w-eidag-73, v-ltg-80, y-snegi-79, gy-frcg-86, -m4rm-85, ZZZ" +, update = "99.11 bibrelex, 99.03 forrest, 98.03 bibrelex" } @inproceedings{e-immpe-99 -, author = "Ulf Erikson" -, title = "Implementing Main-Memory Point-Enclosure Algorithms" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "117--118" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Ulf Erikson" +, title = "Implementing Main-Memory Point-Enclosure Algorithms" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "117--118" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{e-dpp-90 -, author = "E. Erkut" -, title = "The discrete $p$-dispersion problem" -, journal = "European J. Oper. Res." -, volume = 46 -, number = 1 -, year = 1990 -, pages = "48--60" -, keywords = "facility location, points, minmax, NP-completeness" -, update = "95.09 korneenko" +, author = "E. Erkut" +, title = "The discrete $p$-dispersion problem" +, journal = "European J. Oper. Res." +, volume = 46 +, number = 1 +, year = 1990 +, pages = "48--60" +, keywords = "facility location, points, minmax, NP-completeness" +, update = "95.09 korneenko" } @article{ebh-dplp-90 -, author = "E. Erkut and T. Baptie and B. {von Hohenbalken}" -, title = "The discrete $p$-maxian location problem" -, journal = "Comput. Oper. Res." -, volume = 17 -, number = 1 -, year = 1990 -, pages = "51--61" -, keywords = "facility location, points" -, update = "95.09 korneenko" +, author = "E. Erkut and T. Baptie and B. {von Hohenbalken}" +, title = "The discrete $p$-maxian location problem" +, journal = "Comput. Oper. Res." +, volume = 17 +, number = 1 +, year = 1990 +, pages = "51--61" +, keywords = "facility location, points" +, update = "95.09 korneenko" } @article{en-amluf-89 -, author = "E. Erkut and S. Neuman" -, title = "Analytical models for locating undesirable facilities" -, journal = "European J. Oper. Res." -, volume = 40 -, number = 3 -, year = 1989 -, pages = "275--291" -, keywords = "facility location, points, maxmin" -, update = "95.09 korneenko" +, author = "E. Erkut and S. Neuman" +, title = "Analytical models for locating undesirable facilities" +, journal = "European J. Oper. Res." +, volume = 40 +, number = 3 +, year = 1989 +, pages = "275--291" +, keywords = "facility location, points, maxmin" +, update = "95.09 korneenko" } @techreport{ekn-mstap-80 -, author = "J. Ernvall and J. Katajainen and O. Nevalainen" -, title = "A minimal spanning tree algorithm for a point set in {Euclidean} space" -, type = "Report" -, number = 24 -, institution = "Dept. Comput. Sci., Univ. Turku" -, address = "Turku, Finland" -, year = 1980 +, author = "J. Ernvall and J. Katajainen and O. Nevalainen" +, title = "A minimal spanning tree algorithm for a point set in {Euclidean} space" +, type = "Report" +, number = 24 +, institution = "Dept. Comput. Sci., Univ. Turku" +, address = "Turku, Finland" +, year = 1980 } @article{en-elmst-84 -, author = "J. Ernvall and O. Nevalainen" -, title = "Estimating the length of minimal spanning trees in compression of files" -, journal = "BIT" -, volume = 24 -, year = 1984 -, pages = "19--32" +, author = "J. Ernvall and O. Nevalainen" +, title = "Estimating the length of minimal spanning trees in compression of files" +, journal = "BIT" +, volume = 24 +, year = 1984 +, pages = "19--32" } @article{e-espsn-95 -, author = "Martin Erwig" -, title = "Encoding shortest paths in spatial networks" -, journal = "Networks" -, volume = 26 -, year = 1995 -, pages = "291--303" -, keywords = "point location, shortest paths, subdivision simplification" -, update = "96.01 mitchell" +, author = "Martin Erwig" +, title = "Encoding shortest paths in spatial networks" +, journal = "Networks" +, volume = 26 +, year = 1995 +, pages = "291--303" +, keywords = "point location, shortest paths, subdivision simplification" +, update = "96.01 mitchell" } @article{ebc-adddc-89 -, author = "G. Eshel and M. M. Barash and V. Chandru" -, title = "Automatic design of a deep-drawn circumscribing preform" -, journal = "Internat. J. Robot. Autom." -, volume = 5 -, number = 2 -, year = 1989 -, pages = "208--222" -, update = "95.09 korneenko" +, author = "G. Eshel and M. M. Barash and V. Chandru" +, title = "Automatic design of a deep-drawn circumscribing preform" +, journal = "Internat. J. Robot. Autom." +, volume = 5 +, number = 2 +, year = 1989 +, pages = "208--222" +, update = "95.09 korneenko" } @techreport{ew-mmcfs-99 -, author = "W. Espelage and E. Wanke" -, title = "Movement Optimization in Conveyor Flow Shop Processing with one Worker" -, type = "Manuscript" -, institution = "University of D{\"u}sseldorf, Department of Computer Science" -, year = 1999 -, update = "00.03 bibrelex" +, author = "W. Espelage and E. Wanke" +, title = "Movement Optimization in Conveyor Flow Shop Processing with one Worker" +, type = "Manuscript" +, institution = "University of D{\"u}sseldorf, Department of Computer Science" +, year = 1999 +, update = "00.03 bibrelex" } @inproceedings{es-romov-94 -, author = "C. Esperanca and H. Samet" -, title = "Representing Orthogonal Multidimensional Objects by Vertex Lists" -, editor = "C. Arcelli and L. P. Cordella and G. Sanniti di Baja" -, booktitle = "Aspects of Visual Form Processing" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1994 -, pages = "209--220" -, update = "96.05 efrat" +, author = "C. Esperanca and H. Samet" +, title = "Representing Orthogonal Multidimensional Objects by Vertex Lists" +, editor = "C. Arcelli and L. P. Cordella and G. Sanniti di Baja" +, booktitle = "Aspects of Visual Form Processing" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1994 +, pages = "209--220" +, update = "96.05 efrat" } @inproceedings{e-cespd-91 -, author = "M. Espie" -, title = "Computing efficiently shortest paths for degenerate metrics" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "149--152" -, cites = "f-gmt-70, c-pt-90i, b-sdg-87, ps-cgi-85, bm-sg-70, rlw-rsppr-89, ZZZ" -, update = "98.07 bibrelex" +, author = "M. Espie" +, title = "Computing efficiently shortest paths for degenerate metrics" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "149--152" +, cites = "f-gmt-70, c-pt-90i, b-sdg-87, ps-cgi-85, bm-sg-70, rlw-rsppr-89, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{e-uasdc-90 -, author = "M. Espie" -, title = "Un algorithme simple de calcul de plus court chemin en norme $L_1$ dans des regions simplement connexes" -, booktitle = "Journees de Geometrie Algorithmique. Pap. Conf. Sophia-Antipolis. INRIA" -, year = 1990 -, pages = "72--79" -, keywords = "$L_1$-metrics, shortest paths" -, update = "95.09 korneenko" +, author = "M. Espie" +, title = "Un algorithme simple de calcul de plus court chemin en norme $L_1$ dans des regions simplement connexes" +, booktitle = "Journees de Geometrie Algorithmique. Pap. Conf. Sophia-Antipolis. INRIA" +, year = 1990 +, pages = "72--79" +, keywords = "$L_1$-metrics, shortest paths" +, update = "95.09 korneenko" } @article{e-ggtp-88 -, author = "C. Esposito" -, title = "Graph Graphics: Theory and Practice" -, journal = "Comput. Math. Appl." -, volume = 15 -, number = 4 -, year = 1988 -, pages = "247--253" -, keywords = "graph drawing" -, update = "96.09 devillers, 93.09 tamassia" +, author = "C. Esposito" +, title = "Graph Graphics: Theory and Practice" +, journal = "Comput. Math. Appl." +, volume = 15 +, number = 4 +, year = 1988 +, pages = "247--253" +, keywords = "graph drawing" +, update = "96.09 devillers, 93.09 tamassia" } @techreport{eoux-ipvf-94 -, author = "V. Estivill-Castro and J. O'Rourke and J. Urrutia and D. Xu" -, title = "Illumination of polygons with vertex floodlights" -, type = "Technical {Report}" -, number = 037 -, institution = "Dept. Comput. Sci., Smith College" -, month = aug -, year = 1994 -, keywords = "visibility, floodlights" -, precedes = "eoux-ipvf-95" -, update = "96.01 orourke, 94.09 orourke" +, author = "V. Estivill-Castro and J. O'Rourke and J. Urrutia and D. Xu" +, title = "Illumination of polygons with vertex floodlights" +, type = "Technical {Report}" +, number = 037 +, institution = "Dept. Comput. Sci., Smith College" +, month = aug +, year = 1994 +, keywords = "visibility, floodlights" +, precedes = "eoux-ipvf-95" +, update = "96.01 orourke, 94.09 orourke" } @article{eoux-ipvf-95 -, author = "V. Estivill-Castro and J. O'Rourke and J. Urrutia and D. Xu" -, title = "Illumination of polygons with vertex floodlights" -, journal = "Inform. Process. Lett." -, volume = 56 -, year = 1995 -, pages = "9--13" -, keywords = "visibility, floodlights" -, succeeds = "eoux-ipvf-94" -, update = "96.01 orourke" +, author = "V. Estivill-Castro and J. O'Rourke and J. Urrutia and D. Xu" +, title = "Illumination of polygons with vertex floodlights" +, journal = "Inform. Process. Lett." +, volume = 56 +, year = 1995 +, pages = "9--13" +, keywords = "visibility, floodlights" +, succeeds = "eoux-ipvf-94" +, update = "96.01 orourke" } @techreport{er-evfof-90 -, author = "V. Estivill-Castro and V. Raman" -, title = "Edge visibility for finitely oriented figures" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, year = 1990 -, note = "In preparation" -, update = "98.07 bibrelex" +, author = "V. Estivill-Castro and V. Raman" +, title = "Edge visibility for finitely oriented figures" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, year = 1990 +, note = "In preparation" +, update = "98.07 bibrelex" } @inproceedings{er-vfop-90 -, author = "V. Estivill-Castro and V. Raman" -, title = "Visibility in finitely oriented polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "181--185" -, precedes = "er-vfop-93" -, cites = "at-oadvp-81, deo-secp-88, er-evfof-90, g-scop-83, g-dcopi-84a, js-clvpa-87, l-vsp-83, lw-apcfp-79, o-agta-87, rw-ocfoc-87, rw-rocs-89, srw-gtv-89, www-dpcgf-85, wwsw-suipp-86, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "V. Estivill-Castro and V. Raman" +, title = "Visibility in finitely oriented polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "181--185" +, precedes = "er-vfop-93" +, cites = "at-oadvp-81, deo-secp-88, er-evfof-90, g-scop-83, g-dcopi-84a, js-clvpa-87, l-vsp-83, lw-apcfp-79, o-agta-87, rw-ocfoc-87, rw-rocs-89, srw-gtv-89, www-dpcgf-85, wwsw-suipp-86, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @techreport{er-vfop-93 -, author = "V. Estivill-Castro and V. Raman" -, title = "Visibility in finitely oriented polygons" -, type = "Technical Report" -, number = "LANIA RT-7-93" -, institution = "Laboratorio Nacional de Inform{\'a}tica Avanzada" -, year = 1993 -, note = "also in: Proc. 2nd Canad. Conf. Comput. Geom." -, succeeds = "er-vfop-90" -, update = "98.11 bibrelex" +, author = "V. Estivill-Castro and V. Raman" +, title = "Visibility in finitely oriented polygons" +, type = "Technical Report" +, number = "LANIA RT-7-93" +, institution = "Laboratorio Nacional de Inform{\'a}tica Avanzada" +, year = 1993 +, note = "also in: Proc. 2nd Canad. Conf. Comput. Geom." +, succeeds = "er-vfop-90" +, update = "98.11 bibrelex" } @inproceedings{eu-ofioa-94 -, author = "V. Estivill-Castro and J. Urrutia" -, title = "Optimal floodlight illumination of orthogonal art galleries" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "81--86" -, keywords = "visibility, floodlights" -, cites = "bglosu-fp-93, c-tsplt-91a, cru-ofipt-93, er-vfop-93, o-agta-87, r-erog-87, s-rrag-92, kkk-tgrfw-83, ZZZ" -, update = "98.11 bibrelex, 94.09 orourke" +, author = "V. Estivill-Castro and J. Urrutia" +, title = "Optimal floodlight illumination of orthogonal art galleries" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "81--86" +, keywords = "visibility, floodlights" +, cites = "bglosu-fp-93, c-tsplt-91a, cru-ofipt-93, er-vfop-93, o-agta-87, r-erog-87, s-rrag-92, kkk-tgrfw-83, ZZZ" +, update = "98.11 bibrelex, 94.09 orourke" } @inproceedings{eu-tficp-95 -, author = "V. Estivill-Castro and J. Urrutia" -, title = "Two-Floodlight Illumination of Convex Polygons" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "62--73" -, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" +, author = "V. Estivill-Castro and J. Urrutia" +, title = "Two-Floodlight Illumination of Convex Polygons" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "62--73" +, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" } @techreport{er-bsacv-96 -, author = "Michal Etzion and Ari Rappoport" -, title = "A Boundary Sampling Algorithm for Computing the {Voronoi} Graph of a {2-D} Polygon" -, type = "Technical Report" -, institution = "Institute of Computer Science, The Hebrew University" -, year = 1996 -, update = "98.03 mitchell" -, abstract = "The Voronoi graph of a set of sites contains the +, author = "Michal Etzion and Ari Rappoport" +, title = "A Boundary Sampling Algorithm for Computing the {Voronoi} Graph of a {2-D} Polygon" +, type = "Technical Report" +, institution = "Institute of Computer Science, The Hebrew University" +, year = 1996 +, update = "98.03 mitchell" +, abstract = "The Voronoi graph of a set of sites contains the complete symbolic information of the Voronoi diagram of the sites without the latter's geometry. The Voronoi graph is important for two reasons. First, there are applications that need only the symbolic @@ -55770,15 +55770,15 @@ @techreport{er-bsacv-96 } @article{er-csdsp-97 -, author = "Michal Etzion and Ari Rappoport" -, title = "On Compatible Star Decompositions of Simple Polygons" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 3 -, number = 1 -, year = 1997 -, pages = "87--95" -, update = "98.03 mitchell" -, abstract = "We introduce the notion of compatible star +, author = "Michal Etzion and Ari Rappoport" +, title = "On Compatible Star Decompositions of Simple Polygons" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 3 +, number = 1 +, year = 1997 +, pages = "87--95" +, update = "98.03 mitchell" +, abstract = "We introduce the notion of compatible star decompositions of simple polygons. In general, given two polygons with a correspondence between their vertices, two polygonal decompositions of the two polygons are said to be compatible if there exists a @@ -55807,16 +55807,16 @@ @article{er-csdsp-97 } @article{sr-sbuss-95 -, author = "Michal Shapira (Etzion) and Ari Rappoport" -, title = "Shape Blending Using the Star-Skeleton Representation" -, journal = "IEEE Comput. Graph. Appl." -, volume = 15 -, number = 2 -, month = mar -, year = 1995 -, pages = "44--50" -, update = "98.03 mitchell, 96.01 held" -, abstract = "We present a novel approach to the problem of generating +, author = "Michal Shapira (Etzion) and Ari Rappoport" +, title = "Shape Blending Using the Star-Skeleton Representation" +, journal = "IEEE Comput. Graph. Appl." +, volume = 15 +, number = 2 +, month = mar +, year = 1995 +, pages = "44--50" +, update = "98.03 mitchell, 96.01 held" +, abstract = "We present a novel approach to the problem of generating a polygon sequence that blends two simple polygons given a correspondence between their boundaries. Previous approaches to this problem, including direct vertex interpolation and an interpolation @@ -55843,1448 +55843,1448 @@ @article{sr-sbuss-95 } @inproceedings{egt-cal-92 -, author = "D. Eu and E. Gu{\'e}vremont and G. Toussaint" -, title = "On classes of arrangements of lines" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "109--114" -, cites = "cl-fdsl-85, csss-otass-89, eat-atdhl-83, et-gpprl-89, hv-splsp-49, k-sades-91a, s-cesl-85, t-slaic-85, v-cbrdf-87, z-fuafc-75, ZZZ" -, update = "98.07 bibrelex" +, author = "D. Eu and E. Gu{\'e}vremont and G. Toussaint" +, title = "On classes of arrangements of lines" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "109--114" +, cites = "cl-fdsl-85, csss-otass-89, eat-atdhl-83, et-gpprl-89, hv-splsp-49, k-sades-91a, s-cesl-85, t-slaic-85, v-cbrdf-87, z-fuafc-75, ZZZ" +, update = "98.07 bibrelex" } @techreport{egt-eal-93 -, author = "D. Eu and E. Gu{\'e}vremont and G. T. Toussaint" -, title = "On envelopes of arrangements of lines" -, type = "Technical Report" -, number = "SOCS 93.10" -, institution = "McGill University, School of Computer Science" -, month = nov -, year = 1993 -, precedes = "egt-eal-96" -, update = "98.11 bibrelex" +, author = "D. Eu and E. Gu{\'e}vremont and G. T. Toussaint" +, title = "On envelopes of arrangements of lines" +, type = "Technical Report" +, number = "SOCS 93.10" +, institution = "McGill University, School of Computer Science" +, month = nov +, year = 1993 +, precedes = "egt-eal-96" +, update = "98.11 bibrelex" } @article{egt-eal-96 -, author = "D. Eu and E. Gu{\'e}vremont and G. T. Toussaint" -, title = "On envelopes of arrangements of lines" -, journal = "J. Algorithms" -, volume = 21 -, year = 1996 -, pages = "111--148" -, succeeds = "egt-eal-93" -, update = "98.11 bibrelex, 96.09 smid" +, author = "D. Eu and E. Gu{\'e}vremont and G. T. Toussaint" +, title = "On envelopes of arrangements of lines" +, journal = "J. Algorithms" +, volume = 21 +, year = 1996 +, pages = "111--148" +, succeeds = "egt-eal-93" +, update = "98.11 bibrelex, 96.09 smid" } @article{et-apctt-94 -, author = "D. Eu and G. T. Toussaint" -, title = "On approximating polygonal curves in two and three dimensions" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 56 -, number = 3 -, month = may -, year = 1994 -, pages = "231--246" -, update = "96.09 kreveld+orourke" +, author = "D. Eu and G. T. Toussaint" +, title = "On approximating polygonal curves in two and three dimensions" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 56 +, number = 3 +, month = may +, year = 1994 +, pages = "231--246" +, update = "96.09 kreveld+orourke" } @book{e-e-56 -, author = "Euclid" -, title = "Elements" -, publisher = "Dover" -, year = 1956 -, note = "Translated by Sir Thomas L.~Heath" +, author = "Euclid" +, title = "Elements" +, publisher = "Dover" +, year = 1956 +, note = "Translated by Sir Thomas L.~Heath" } @article{els-htmai-97 -, author = "G. Evangelidis and D. B. Lomet and B. Salzberg" -, title = "The ${{\rm h{B}}^\Pi}$-tree: {A} multi-attribute index supporting concurrency, recovery and node consolidation" -, journal = "VLDB Journal" -, volume = 6 -, year = 1997 -, pages = "1--25" -, update = "97.07 agarwal" +, author = "G. Evangelidis and D. B. Lomet and B. Salzberg" +, title = "The ${{\rm h{B}}^\Pi}$-tree: {A} multi-attribute index supporting concurrency, recovery and node consolidation" +, journal = "VLDB Journal" +, volume = 6 +, year = 1997 +, pages = "1--25" +, update = "97.07 agarwal" } @inproceedings{ets-adtdr-94 -, author = "B. L. Evans and J. Teich and C. Schwarz" -, title = "Automated design of two-dimensional rational decimation systems" -, booktitle = "IEEE Asilomar Conference on Signals, Systems, and Computers" -, site = "Pacific Grove, CA" -, year = 1994 -, pages = "498--502" -, url = "https://ptolemy.berkeley.edu/" -, update = "98.03 bibrelex" +, author = "B. L. Evans and J. Teich and C. Schwarz" +, title = "Automated design of two-dimensional rational decimation systems" +, booktitle = "IEEE Asilomar Conference on Signals, Systems, and Computers" +, site = "Pacific Grove, CA" +, year = 1994 +, pages = "498--502" +, url = "https://ptolemy.berkeley.edu/" +, update = "98.03 bibrelex" } @article{ej-dvaip-87 -, author = "D. G. Evans and S. M. Jones" -, title = "Detecting {Voronoi} (Area-of-Influence) Polygons" -, journal = "Mathematical Geology" -, volume = 19 -, number = 6 -, year = 1987 -, pages = "523--537" -, annote = "Least squares to find the points that would have a - given set of polygons as their VPs. Gives a simple - measure to find the closeness of fit." +, author = "D. G. Evans and S. M. Jones" +, title = "Detecting {Voronoi} (Area-of-Influence) Polygons" +, journal = "Mathematical Geology" +, volume = 19 +, number = 6 +, year = 1987 +, pages = "523--537" +, annote = "Least squares to find the points that would have a + given set of polygons as their VPs. Gives a simple + measure to find the closeness of fit." } @article{em-tpach-85 -, author = "D. J. Evans and S. Mai" -, title = "Two parallel algorithms for the convex hull problem in a two dimensional space" -, journal = "Parallel Comput." -, volume = 2 -, year = 1985 -, pages = "313--326" +, author = "D. J. Evans and S. Mai" +, title = "Two parallel algorithms for the convex hull problem in a two dimensional space" +, journal = "Parallel Comput." +, volume = 2 +, year = 1985 +, pages = "313--326" } @article{es-pcvd-89 -, author = "D. J. Evans and I. Stojmenovic" -, title = "On parallel computation of {Voronoi} diagrams" -, journal = "Parallel Comput." -, volume = 12 -, number = 1 -, year = 1989 -, pages = "121--125" -, keywords = "Voronoi diagram, parallel computations" -, update = "95.09 korneenko" +, author = "D. J. Evans and I. Stojmenovic" +, title = "On parallel computation of {Voronoi} diagrams" +, journal = "Parallel Comput." +, volume = 12 +, number = 1 +, year = 1989 +, pages = "121--125" +, keywords = "Voronoi diagram, parallel computations" +, update = "95.09 korneenko" } @article{ey-appqm-85 -, author = "D. J. Evans and N. Y. Yousif" -, title = "Analysis of the performance of the parallel quicksort method" -, journal = "BIT" -, volume = 25 -, year = 1985 -, pages = "106--112" -, update = "96.09 orourke" +, author = "D. J. Evans and N. Y. Yousif" +, title = "Analysis of the performance of the parallel quicksort method" +, journal = "BIT" +, volume = 25 +, year = 1985 +, pages = "106--112" +, update = "96.09 orourke" } @inproceedings{esv-otsfr-96 -, author = "F. Evans and Steven S. Skiena and A. Varshney" -, title = "Optimizing Triangle Strips for Fast Rendering" -, booktitle = "IEEE Visualization '96 Proceedings" -, month = oct -, year = 1996 -, pages = "319--326" -, issn = "0-89791-864-9" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "F. Evans and Steven S. Skiena and A. Varshney" +, title = "Optimizing Triangle Strips for Fast Rendering" +, booktitle = "IEEE Visualization '96 Proceedings" +, month = oct +, year = 1996 +, pages = "319--326" +, issn = "0-89791-864-9" +, update = "98.07 bibrelex, 98.03 mitchell" } @article{emm-sc2ma-98 -, author = "G. Evans and A. Middleditch and N. Miles" -, title = "Stable Computation of the 2D Medial Axis Transform" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "577--598" -, update = "98.11 devillers" +, author = "G. Evans and A. Middleditch and N. Miles" +, title = "Stable Computation of the 2D Medial Axis Transform" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "577--598" +, update = "98.11 devillers" } @article{e-sci-77 -, author = "I. S. Evans" -, title = "The Selection of Class Intervals" -, journal = "Trans. Inst. Br. Geogrs." -, volume = 2 -, year = 1977 -, pages = "98--124" -, update = "96.09 kreveld" +, author = "I. S. Evans" +, title = "The Selection of Class Intervals" +, journal = "Trans. Inst. Br. Geogrs." +, volume = 2 +, year = 1977 +, pages = "98--124" +, update = "96.09 kreveld" } @article{ekr-sgoct-87 -, author = "R. C. Evans and G. Koppelman and V. T. Rajan" -, title = "Shaping geometric objects by cumulative translational sweeps" -, journal = "IBM J. Res. Develop." -, volume = 31 -, year = 1987 -, pages = "343--360" +, author = "R. C. Evans and G. Koppelman and V. T. Rajan" +, title = "Shaping geometric objects by cumulative translational sweeps" +, journal = "IBM J. Res. Develop." +, volume = 31 +, year = 1987 +, pages = "343--360" } @inproceedings{e-rpamt-95 -, author = "William Evans" -, title = "Regular Polygons are Most Tolerant" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "109--113" -, update = "95.09 jones" +, author = "William Evans" +, title = "Regular Polygons are Most Tolerant" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "109--113" +, update = "95.09 jones" } @book{e-ac-73 -, author = "S. Even" -, title = "Algorithmic Combinatorics" -, publisher = "Macmillan" -, address = "New York, NY" -, year = 1973 +, author = "S. Even" +, title = "Algorithmic Combinatorics" +, publisher = "Macmillan" +, address = "New York, NY" +, year = 1973 } @book{e-ga-79 -, author = "S. Even" -, title = "Graph Algorithms" -, publisher = "Computer Science Press" -, address = "Potomac, Maryland" -, year = 1979 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "S. Even" +, title = "Graph Algorithms" +, publisher = "Computer Science Press" +, address = "Potomac, Maryland" +, year = 1979 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{ee-eingl-97 -, author = "S. Even and G. Even" -, title = "Embedding Interconnection Networks in Grids via the Layered Cross Product" -, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1203 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "" -, keywords = "Invited talk" -, update = "00.03 devillers, 98.03 mitchell" +, author = "S. Even and G. Even" +, title = "Embedding Interconnection Networks in Grids via the Layered Cross Product" +, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1203 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "" +, keywords = "Invited talk" +, update = "00.03 devillers, 98.03 mitchell" } @inproceedings{eg-glbdb-95 -, author = "S. Even and G. Granot" -, title = "Grid Layouts of Block Diagrams --- Bounding the Number of Bends in Each Connection" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "64--75" -, keywords = "graph drawing, orthogonal, planar" -, update = "95.01 tamassia" +, author = "S. Even and G. Granot" +, title = "Grid Layouts of Block Diagrams --- Bounding the Number of Bends in Each Connection" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "64--75" +, keywords = "graph drawing, orthogonal, planar" +, update = "95.01 tamassia" } @techreport{eg-rpdfb-94 -, author = "S. Even and G. Granot" -, title = "Rectilinear Planar Drawings with Few Bends in Each Edge" -, type = "Technical Report" -, number = 797 -, institution = "Computer Science Dept., Technion" -, year = 1994 -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "S. Even and G. Granot" +, title = "Rectilinear Planar Drawings with Few Bends in Each Edge" +, type = "Technical Report" +, number = 797 +, institution = "Computer Science Dept., Technion" +, year = 1994 +, keywords = "graph drawing" +, update = "95.01 tamassia" } @article{eis-ctmfp-76 -, author = "S. Even and A. Itai and A. Shamir" -, title = "On the complexity of timetable and multicommodity flow problems" -, journal = "SIAM J. Comput." -, volume = 5 -, year = 1976 -, pages = "691--703" -, update = "97.11 bibrelex" +, author = "S. Even and A. Itai and A. Shamir" +, title = "On the complexity of timetable and multicommodity flow problems" +, journal = "SIAM J. Comput." +, volume = 5 +, year = 1976 +, pages = "691--703" +, update = "97.11 bibrelex" } @article{es-oledp-81 -, author = "S. Even and Y. Shiloach" -, title = "An On-Line Edge Deletion Problem" -, journal = "J. ACM" -, volume = 28 -, year = 1981 -, pages = "1--4" -, update = "94.01 tamassia" +, author = "S. Even and Y. Shiloach" +, title = "An On-Line Edge Deletion Problem" +, journal = "J. ACM" +, volume = 28 +, year = 1981 +, pages = "1--4" +, update = "94.01 tamassia" } @article{et-csn-76 -, author = "S. Even and R. E. Tarjan" -, title = "Computing an st-Numbering" -, journal = "Theoret. Comput. Sci." -, volume = 2 -, year = 1976 -, pages = "339--344" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "S. Even and R. E. Tarjan" +, title = "Computing an st-Numbering" +, journal = "Theoret. Comput. Sci." +, volume = 2 +, year = 1976 +, pages = "339--344" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{et-nftgc-75 -, author = "S. Even and R. E. Tarjan" -, title = "Network Flow and Testing Graph Connectivity" -, journal = "SIAM J. Comput." -, volume = 4 -, year = 1975 -, pages = "507--518" -, update = "95.05 tamassia" +, author = "S. Even and R. E. Tarjan" +, title = "Network Flow and Testing Graph Connectivity" +, journal = "SIAM J. Comput." +, volume = 4 +, year = 1975 +, pages = "507--518" +, update = "95.05 tamassia" } @techreport{e-hpnrg-86 -, author = "H. Everett" -, title = "Hamiltonian paths in non-rectangular grid graphs" -, type = "Report" -, number = "86-1" -, institution = "Dept. Comput. Sci., Univ. Toronto" -, address = "Toronto, ON" -, year = 1986 -, update = "95.09 mitchell" +, author = "H. Everett" +, title = "Hamiltonian paths in non-rectangular grid graphs" +, type = "Report" +, number = "86-1" +, institution = "Dept. Comput. Sci., Univ. Toronto" +, address = "Toronto, ON" +, year = 1986 +, update = "95.09 mitchell" } @inproceedings{e-vgsp-89 -, author = "H. Everett" -, title = "The visibility graphs of spiral polygons" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 47 -, precedes = "ec-rvgsp-90" +, author = "H. Everett" +, title = "The visibility graphs of spiral polygons" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 47 +, precedes = "ec-rvgsp-90" } @techreport{e-vgr-90 -, author = "H. Everett" -, title = "Visibility Graph Recognition" -, type = "Report" -, number = "231/90" -, institution = "Dept. Comput. Sci., Univ. Toronto" -, address = "Toronto, ON" -, year = 1990 -, note = "Ph.D. Thesis" -, update = "96.09 orourke" +, author = "H. Everett" +, title = "Visibility Graph Recognition" +, type = "Report" +, number = "231/90" +, institution = "Dept. Comput. Sci., Univ. Toronto" +, address = "Toronto, ON" +, year = 1990 +, note = "Ph.D. Thesis" +, update = "96.09 orourke" } @article{ec-nrcvg-95 -, author = "H. Everett and D. G. Corneil" -, title = "Negative results on characterizing visibility graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "51--63" -, update = "96.09 devillers" +, author = "H. Everett and D. G. Corneil" +, title = "Negative results on characterizing visibility graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "51--63" +, update = "96.09 devillers" } @article{ec-rvgsp-90 -, author = "H. Everett and D. G. Corneil" -, title = "Recognizing visibility graphs of spiral polygons" -, journal = "J. Algorithms" -, volume = 11 -, year = 1990 -, pages = "1--26" -, succeeds = "e-vgsp-89" +, author = "H. Everett and D. G. Corneil" +, title = "Recognizing visibility graphs of spiral polygons" +, journal = "J. Algorithms" +, volume = 11 +, year = 1990 +, pages = "1--26" +, succeeds = "e-vgsp-89" } @inproceedings{ehkn-psvg-97 -, author = "Hazel Everett and Chinh Hoang and Kyri Kilakos and Marc Noy" -, title = "Planar Segment Visibility Graphs" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "65--69" -, update = "97.11 jones" +, author = "Hazel Everett and Chinh Hoang and Kyri Kilakos and Marc Noy" +, title = "Planar Segment Visibility Graphs" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "65--69" +, update = "97.11 jones" } @article{ehkn-psvg-00 -, author = "H. Everett and C. T. Hoang and K. Kilakos and M. Noy" -, title = "Planar segment visibility graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 16 -, year = 2000 -, pages = "235--243" -, update = "01.04 smid" +, author = "H. Everett and C. T. Hoang and K. Kilakos and M. Noy" +, title = "Planar segment visibility graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 16 +, year = 2000 +, pages = "235--243" +, update = "01.04 smid" } @inproceedings{ehn-sisp-96 -, author = "H. Everett and F. Hurtado and M. Noy" -, title = "Stabbing information of a simple polygon" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "74--79" -, update = "96.09 mitchell" +, author = "H. Everett and F. Hurtado and M. Noy" +, title = "Stabbing information of a simple polygon" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "74--79" +, update = "96.09 mitchell" } @inproceedings{elrss-cssp-98 -, author = "H. Everett and S. Lazard and S. Robbins and H. Schr{{\"o}}der and S. Whitesides" -, title = "Convexifying Star-Shaped Polygons" -, booktitle = "Proc. 10th Canad. Conf. Comput. Geom." -, year = 1998 -, pages = "2--3" -, update = "98.11 orourke" +, author = "H. Everett and S. Lazard and S. Robbins and H. Schr{{\"o}}der and S. Whitesides" +, title = "Convexifying Star-Shaped Polygons" +, booktitle = "Proc. 10th Canad. Conf. Comput. Geom." +, year = 1998 +, pages = "2--3" +, update = "98.11 orourke" } @inproceedings{elosu-scqp-92 -, author = "H. Everett and W. Lenhart and M. H. Overmars and T. Shermer and J. Urrutia" -, title = "Strictly convex quadrilateralizations of polygons" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "77--83" -, cites = "bg-tph-90, beg-pgmg-90, c-tsplt-90i, kkk-tgrfw-83, l-dprcq-85, o-agta-87, st-ltadr-81, ZZZ" -, update = "98.07 agarwal+bibrelex" +, author = "H. Everett and W. Lenhart and M. H. Overmars and T. Shermer and J. Urrutia" +, title = "Strictly convex quadrilateralizations of polygons" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "77--83" +, cites = "bg-tph-90, beg-pgmg-90, c-tsplt-90i, kkk-tgrfw-83, l-dprcq-85, o-agta-87, st-ltadr-81, ZZZ" +, update = "98.07 agarwal+bibrelex" } @techreport{elo-rchev-93t -, author = "H. Everett and A. Lubiw and J. O'Rourke" -, title = "Recovery of convex hulls from external visibility graphs" -, type = "Technical Report" -, number = 024 -, institution = "Smith College" -, month = jan -, year = 1993 -, precedes = "elo-rchev-93" -, update = "98.11 bibrelex" +, author = "H. Everett and A. Lubiw and J. O'Rourke" +, title = "Recovery of convex hulls from external visibility graphs" +, type = "Technical Report" +, number = 024 +, institution = "Smith College" +, month = jan +, year = 1993 +, precedes = "elo-rchev-93" +, update = "98.11 bibrelex" } @inproceedings{elo-rchev-93 -, author = "H. Everett and A. Lubiw and J. O'Rourke" -, title = "Recovery of convex hulls from external visibility graphs" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "309--314" -, succeeds = "elo-rchev-93t" -, cites = "elo-rchev-93t, o-agta-87, o-rcvg-90, o-cgc18-93, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "H. Everett and A. Lubiw and J. O'Rourke" +, title = "Recovery of convex hulls from external visibility graphs" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "309--314" +, succeeds = "elo-rchev-93t" +, cites = "elo-rchev-93t, o-agta-87, o-rcvg-90, o-cgc18-93, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{elrs-ist-91 -, author = "H. Everett and K. Lyons and B. Reed and D. Souvaine" -, title = "Illuminating squares on a transversal" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "118--121" -, cites = "cru-irtp-89, e-ftssg-85, eos-smcga-84t, f-icd-77, h-ragp-90, ZZZ" -, update = "98.07 bibrelex" +, author = "H. Everett and K. Lyons and B. Reed and D. Souvaine" +, title = "Illuminating squares on a transversal" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "118--121" +, cites = "cru-irtp-89, e-ftssg-85, eos-smcga-84t, f-icd-77, h-ragp-90, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{er-egtpt-94 -, author = "H. Everett and E. Rivera-Campo" -, title = "Edge Guarding a Triangulated Polyhedral Terrain" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "293--295" -, precedes = "er-egpt-97" -, cites = "ah-epmfc-77, bstz-gpt-92, o-agta-87, ZZZ" -, update = "98.11 bibrelex, 97.03 devillers, 94.09 jones" +, author = "H. Everett and E. Rivera-Campo" +, title = "Edge Guarding a Triangulated Polyhedral Terrain" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "293--295" +, precedes = "er-egpt-97" +, cites = "ah-epmfc-77, bstz-gpt-92, o-agta-87, ZZZ" +, update = "98.11 bibrelex, 97.03 devillers, 94.09 jones" } @article{er-egpt-97 -, author = "H. Everett and E. Rivera-Campo" -, title = "Edge Guarding Polyhedral Terrain" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "201--203" -, succeeds = "er-egtpt-94" -, update = "97.11 bibrelex, 97.03 devillers" +, author = "H. Everett and E. Rivera-Campo" +, title = "Edge Guarding Polyhedral Terrain" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "201--203" +, succeeds = "er-egtpt-94" +, update = "97.11 bibrelex, 97.03 devillers" } @inproceedings{erk-oalla-93 -, author = "H. Everett and J.-M. Robert and M. van Kreveld" -, title = "An optimal algorithm for the $({\leq} k)$-levels, with applications to separation and transversal problems" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "38--46" -, cites = "ass-sulbl-89, ag-nssfs-86, c-clps-85, ce-oails-92, c-narsc-87, csy-khrp-87, e-acg-87, eg-tsa-89, emprww-sls-82, ew-cbtda-86, elss-dgpps-73, h-awwss-89b, m-ltalp-83, m-fppa1-88, m-fppa2-89, m-lavd-91, o-olafs-81, ol-mcp-81, pss-ubnpk-89, s-ksacs-91, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "H. Everett and J.-M. Robert and M. van Kreveld" +, title = "An optimal algorithm for the $({\leq} k)$-levels, with applications to separation and transversal problems" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "38--46" +, cites = "ass-sulbl-89, ag-nssfs-86, c-clps-85, ce-oails-92, c-narsc-87, csy-khrp-87, e-acg-87, eg-tsa-89, emprww-sls-82, ew-cbtda-86, elss-dgpps-73, h-awwss-89b, m-ltalp-83, m-fppa1-88, m-fppa2-89, m-lavd-91, o-olafs-81, ol-mcp-81, pss-ubnpk-89, s-ksacs-91, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{erk-oalla-96 -, author = "H. Everett and J.-M. Robert and M. van Kreveld" -, title = "An optimal algorithm for the $({\leq} k)$-levels, with applications to separation and transversal problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "247--261" -, succeeds = "erk-oalla-93" -, update = "97.03 agarwal+devillers" +, author = "H. Everett and J.-M. Robert and M. van Kreveld" +, title = "An optimal algorithm for the $({\leq} k)$-levels, with applications to separation and transversal problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "247--261" +, succeeds = "erk-oalla-93" +, update = "97.03 agarwal+devillers" } @techreport{ew-falc3-91t -, author = "H. Everett and S. Whitesides" -, title = "Finding all the largest circles in a $3$-dimensional box" -, type = "Technical Report" -, number = "TR-SOCS-91.4" -, institution = "School of Computer Science, McGill University" -, address = "Montreal" -, month = jun -, year = 1991 -, precedes = "ew-falc3-91" -, update = "98.11 bibrelex" +, author = "H. Everett and S. Whitesides" +, title = "Finding all the largest circles in a $3$-dimensional box" +, type = "Technical Report" +, number = "TR-SOCS-91.4" +, institution = "School of Computer Science, McGill University" +, address = "Montreal" +, month = jun +, year = 1991 +, precedes = "ew-falc3-91" +, update = "98.11 bibrelex" } @inproceedings{ew-falc3-91 -, author = "H. Everett and S. Whitesides" -, title = "Finding all the largest circles in a $3$-dimensional box" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "84--87" -, succeeds = "ew-falc3-91t" -, cites = "agss-ltacv-87, k-nptal-84a, m-lpltw-84, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "H. Everett and S. Whitesides" +, title = "Finding all the largest circles in a $3$-dimensional box" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "84--87" +, succeeds = "ew-falc3-91t" +, cites = "agss-ltacv-87, k-nptal-84a, m-lpltw-84, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @article{elr-ogdi-91 -, author = "K. Ewacha and W. Li and I. Rival" -, title = "Order, genus and diagram invariance" -, journal = "Order" -, volume = 8 -, year = 1991 -, pages = "107--113" -, update = "98.07 bibrelex" +, author = "K. Ewacha and W. Li and I. Rival" +, title = "Order, genus and diagram invariance" +, journal = "Order" +, volume = 8 +, year = 1991 +, pages = "107--113" +, update = "98.07 bibrelex" } @article{e-hcsc-73 -, author = "G. Ewald" -, title = "{Hamiltonian} circuits in simplicial complexes" -, journal = "Geom. Dedicata" -, volume = 2 -, number = 1 -, month = sep -, year = 1973 -, pages = "115--125" -, update = "98.11 bibrelex" +, author = "G. Ewald" +, title = "{Hamiltonian} circuits in simplicial complexes" +, journal = "Geom. Dedicata" +, volume = 2 +, number = 1 +, month = sep +, year = 1973 +, pages = "115--125" +, update = "98.11 bibrelex" } @article{e-ctfv-88 -, author = "G. Ewald" -, title = "On the classification of toric {Fano} varieties" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "49--54" +, author = "G. Ewald" +, title = "On the classification of toric {Fano} varieties" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "49--54" } @article{e-scntv-86 -, author = "G. Ewald" -, title = "Spherical complexes and nonprojective toric varieties" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "115--122" +, author = "G. Ewald" +, title = "Spherical complexes and nonprojective toric varieties" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "115--122" } @article{elr-dlsrd-70 -, author = "G. Ewald and D. G. Larman and C. A. Rogers" -, title = "The directions of the line segments and of the $r$-dimensional balls on the boundary of a convex body in {Euclidean} space" -, journal = "Mathematika" -, volume = 17 -, year = 1970 -, pages = "1--20" -, update = "98.03 smid, 97.11 bibrelex" +, author = "G. Ewald and D. G. Larman and C. A. Rogers" +, title = "The directions of the line segments and of the $r$-dimensional balls on the boundary of a convex body in {Euclidean} space" +, journal = "Mathematika" +, volume = 17 +, year = 1970 +, pages = "1--20" +, update = "98.03 smid, 97.11 bibrelex" } @book{e-cva-85 -, author = "G. M. Ewing" -, title = "Calculus of variations with applications" -, publisher = "MIT Press" -, year = 1985 -, update = "97.11 bibrelex" +, author = "G. M. Ewing" +, title = "Calculus of variations with applications" +, publisher = "MIT Press" +, year = 1985 +, update = "97.11 bibrelex" } @techreport{fo-ttpne-86 -, author = "G. Fabella and J. O'Rourke" -, title = "Twenty-two points with no empty hexagon" -, type = "Report" -, number = "JHU 86-03" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = jan -, year = 1986 -, keywords = "arrangements" +, author = "G. Fabella and J. O'Rourke" +, title = "Twenty-two points with no empty hexagon" +, type = "Report" +, number = "JHU 86-03" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = jan +, year = 1986 +, keywords = "arrangements" } @phdthesis{f-gapmr -, author = "A. Fabri" -, title = "G{\'e}om{\'e}trie algorithmique en parall{\`e}le sur des machines r{\'e}elles" -, type = "Th\`{e}se de doctorat en sciences" -, school = "{\'E}cole Nationale Sup\'erieure des Mines de Paris" -, address = "France" -, year = 1994 -, keywords = "doctoral thesis" -, update = "98.07 devillers" +, author = "A. Fabri" +, title = "G{\'e}om{\'e}trie algorithmique en parall{\`e}le sur des machines r{\'e}elles" +, type = "Th\`{e}se de doctorat en sciences" +, school = "{\'E}cole Nationale Sup\'erieure des Mines de Paris" +, address = "France" +, year = 1994 +, keywords = "doctoral thesis" +, update = "98.07 devillers" } @article{fgkss-dccga-00 -, author = "A. Fabri and G.-J. Giezeman and L. Kettner and S. Schirra and S. Sch{\"o}nherr" -, title = "On the Design of {CGAL} a Computational Geometry Algorithms Library" -, journal = "Softw. -- Pract. Exp." -, volume = 30 -, number = 11 -, year = 2000 -, pages = "1167--1202" -, succeeds = "fgkss-ckbgc-96, fgkss-dccga-98" -, update = "01.04 vismara" -, annote = "Special Issue on Discrete Algorithm Engineering" +, author = "A. Fabri and G.-J. Giezeman and L. Kettner and S. Schirra and S. Sch{\"o}nherr" +, title = "On the Design of {CGAL} a Computational Geometry Algorithms Library" +, journal = "Softw. -- Pract. Exp." +, volume = 30 +, number = 11 +, year = 2000 +, pages = "1167--1202" +, succeeds = "fgkss-ckbgc-96, fgkss-dccga-98" +, update = "01.04 vismara" +, annote = "Special Issue on Discrete Algorithm Engineering" } @techreport{fgkss-dccga-98 -, author = "A. Fabri and G.-J. Giezeman and L. Kettner and S. Schirra and S. Sch{\"o}nherr" -, title = "On the Design of {CGAL}, the {C}omputational {G}eometry {A}lgorithms {L}ibrary" -, type = "Research Report" -, number = "MPI-I-98-1-007" -, institution = "Max--Planck--Institut f{\"u}r Informatik" -, month = feb -, year = 1998 -, url = "http://data.mpi-sb.mpg.de/internet/reports.nsf/NumberView/1998-1-007" -, update = "99.07 vismara" +, author = "A. Fabri and G.-J. Giezeman and L. Kettner and S. Schirra and S. Sch{\"o}nherr" +, title = "On the Design of {CGAL}, the {C}omputational {G}eometry {A}lgorithms {L}ibrary" +, type = "Research Report" +, number = "MPI-I-98-1-007" +, institution = "Max--Planck--Institut f{\"u}r Informatik" +, month = feb +, year = 1998 +, url = "http://data.mpi-sb.mpg.de/internet/reports.nsf/NumberView/1998-1-007" +, update = "99.07 vismara" } @inproceedings{fgkss-ckbgc-96 -, author = "Andreas Fabri and Geert-Jan Giezeman and Lutz Kettner and Stefan Schirra and Sven Sch{\"o}nherr" -, title = "The {CGAL} Kernel: {A} Basis for Geometric Computation" -, editor = "M. C. Lin and D. Manocha" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, series = "Lecture Notes Comput. Sci." -, volume = 1148 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "191--202" -, url = "http://www.cs.uu.nl/CGAL/Papers/wacg.ps.gz" -, update = "98.11 bibrelex, 97.03 tamassia" +, author = "Andreas Fabri and Geert-Jan Giezeman and Lutz Kettner and Stefan Schirra and Sven Sch{\"o}nherr" +, title = "The {CGAL} Kernel: {A} Basis for Geometric Computation" +, editor = "M. C. Lin and D. Manocha" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, series = "Lecture Notes Comput. Sci." +, volume = 1148 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "191--202" +, url = "http://www.cs.uu.nl/CGAL/Papers/wacg.ps.gz" +, update = "98.11 bibrelex, 97.03 tamassia" } @article{f-eeccp-82 -, author = "Fr. Fabricius-Bjerre" -, title = "On enclosing and enclosed conics for convex polygons and curves" -, journal = "Geom. Dedicata" -, volume = 12 -, year = 1982 -, pages = "131--136" +, author = "Fr. Fabricius-Bjerre" +, title = "On enclosing and enclosed conics for convex polygons and curves" +, journal = "Geom. Dedicata" +, volume = 12 +, year = 1982 +, pages = "131--136" } @inproceedings{ff-acdpf-97 -, author = "A. E. Fabris and A. R. Forrest" -, title = "Antialiasing of Curves by Discrete Pre-filtering" -, booktitle = "Proc. SIGGRAPH '97" -, organization = "ACM SIGGRAPH" -, publisher = "ACM Press/Addison-Wesley" -, address = "Los Angeles, California" -, month = aug -, year = 1997 -, pages = "317--326" -, note = "ISBN 0-89791-896-7" -, keywords = "anti-aliasing, curves, Bezier curves, sampling, filtering, reconstruction" -, update = "99.03 forrest" +, author = "A. E. Fabris and A. R. Forrest" +, title = "Antialiasing of Curves by Discrete Pre-filtering" +, booktitle = "Proc. SIGGRAPH '97" +, organization = "ACM SIGGRAPH" +, publisher = "ACM Press/Addison-Wesley" +, address = "Los Angeles, California" +, month = aug +, year = 1997 +, pages = "317--326" +, note = "ISBN 0-89791-896-7" +, keywords = "anti-aliasing, curves, Bezier curves, sampling, filtering, reconstruction" +, update = "99.03 forrest" } @inproceedings{ff-hqrtd-97 -, author = "A. E. Fabris and A. R. Forrest" -, title = "High Quality Rendering of Two-dimensional Continuous Curves" -, editor = "L. H. de Figueiredo and M. Lobo Nt." -, booktitle = "Proceedings of SIBGRAPI '97" -, site = "Campos do Jord{\~a}o" -, organization = "SBC-Sociedade Brasileira de Computa{\,c}{\~a}o" -, publisher = "IEEE Computer Society" -, address = "Campos do Jord{\~a}o" -, month = oct -, year = 1997 -, pages = "10--17" -, note = "ISBN 0-8186-8102-0" -, isbn = "0-8186-8102-0" -, keywords = "rendering, anti-aliasing, curves" -, update = "99.03 forrest" +, author = "A. E. Fabris and A. R. Forrest" +, title = "High Quality Rendering of Two-dimensional Continuous Curves" +, editor = "L. H. de Figueiredo and M. Lobo Nt." +, booktitle = "Proceedings of SIBGRAPI '97" +, site = "Campos do Jord{\~a}o" +, organization = "SBC-Sociedade Brasileira de Computa{\,c}{\~a}o" +, publisher = "IEEE Computer Society" +, address = "Campos do Jord{\~a}o" +, month = oct +, year = 1997 +, pages = "10--17" +, note = "ISBN 0-8186-8102-0" +, isbn = "0-8186-8102-0" +, keywords = "rendering, anti-aliasing, curves" +, update = "99.03 forrest" } @inproceedings{fsf-efans-97 -, author = "A. E. Fabris and L. Silva and A. R. Forrest" -, title = "An Efficient Filling Algorithm for Non-simple Closed Curves using the Point Containment Paradigm" -, editor = "L. H. de Figueiredo and M. Lobo Nt." -, booktitle = "Proceedings of SIBGRAPI '97" -, site = "Campos do Jord{\~a}o" -, organization = "SBC-Sociedade Brasileira de Computa{\,c}{\~a}o" -, publisher = "IEEE Computer Society" -, address = "Campos do Jord{\~a}o" -, month = oct -, year = 1997 -, pages = "2--9" -, note = "ISBN 0-8186-8102-0" -, isbn = "0-8186-8102-0" -, keywords = "area filling, point containment, rendering" -, update = "99.03 forrest" +, author = "A. E. Fabris and L. Silva and A. R. Forrest" +, title = "An Efficient Filling Algorithm for Non-simple Closed Curves using the Point Containment Paradigm" +, editor = "L. H. de Figueiredo and M. Lobo Nt." +, booktitle = "Proceedings of SIBGRAPI '97" +, site = "Campos do Jord{\~a}o" +, organization = "SBC-Sociedade Brasileira de Computa{\,c}{\~a}o" +, publisher = "IEEE Computer Society" +, address = "Campos do Jord{\~a}o" +, month = oct +, year = 1997 +, pages = "2--9" +, note = "ISBN 0-8186-8102-0" +, isbn = "0-8186-8102-0" +, keywords = "area filling, point containment, rendering" +, update = "99.03 forrest" } @inproceedings{fsf-sdpbc-98 -, author = "A. E. Fabris and L. Silva and A. R. Forrest" -, title = "Stroking Discrete Polynomial B{\'e}zier Curves via Point Containment Paradigm" -, editor = "L. da F. Cost and G. C{\^a}mara" -, booktitle = "Proceedings of SIBGRAPI '98" -, site = "IMPA, Rio de Janeiro" -, organization = "SBC-Sociedade Brasileira de Computa{\,c}{\~a}o" -, publisher = "IEEE Computer Society" -, address = "Rio de Janeiro" -, month = oct -, year = 1998 -, pages = "94--101" -, note = "International Symposium of Computer Graphics and Image Processing" -, isbn = "0-8186-9215-4" -, keywords = "area filling, point containment, rendering" -, update = "00.11 smid, 00.07 icking, 99.03 forrest" +, author = "A. E. Fabris and L. Silva and A. R. Forrest" +, title = "Stroking Discrete Polynomial B{\'e}zier Curves via Point Containment Paradigm" +, editor = "L. da F. Cost and G. C{\^a}mara" +, booktitle = "Proceedings of SIBGRAPI '98" +, site = "IMPA, Rio de Janeiro" +, organization = "SBC-Sociedade Brasileira de Computa{\,c}{\~a}o" +, publisher = "IEEE Computer Society" +, address = "Rio de Janeiro" +, month = oct +, year = 1998 +, pages = "94--101" +, note = "International Symposium of Computer Graphics and Image Processing" +, isbn = "0-8186-9215-4" +, keywords = "area filling, point containment, rendering" +, update = "00.11 smid, 00.07 icking, 99.03 forrest" } @article{f-iradr-95 -, author = "M. A. Facello" -, title = "Implementation of a Randomized Algorithm for {Delaunay} and Regular Triangulations in Three Dimensions" -, journal = "Comput. Aided Geom. Design" -, volume = 12 -, number = 4 -, month = jun -, year = 1995 -, pages = "349--370" -, update = "97.07 held" +, author = "M. A. Facello" +, title = "Implementation of a Randomized Algorithm for {Delaunay} and Regular Triangulations in Three Dimensions" +, journal = "Comput. Aided Geom. Design" +, volume = 12 +, number = 4 +, month = jun +, year = 1995 +, pages = "349--370" +, update = "97.07 held" } @techreport{f-irtmc-90 -, author = "M. A. Facello" -, title = "Improved Ray Tracing Methods for {CSG} Modeling Systems" -, type = "Report" -, number = "JHU-90/05" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1990 -, update = "93.09 goodrich" +, author = "M. A. Facello" +, title = "Improved Ray Tracing Methods for {CSG} Modeling Systems" +, type = "Report" +, number = "JHU-90/05" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1990 +, update = "93.09 goodrich" } @inproceedings{fpf-stgrl-88 -, author = "K. M. Fairchild and S. E. Poltrock and G. W. Furnas" -, title = "SemNet: Three-Dimensional Graphic Representation of Large Knowledge Bases" -, editor = "R. Guindon" -, booktitle = "Cognitive Science and its Applications for Human-Computer Interaction" -, publisher = "Lawrence Erlbaum Associates" -, year = 1988 -, pages = "201--233" -, keywords = "graph drawing, 3D" -, update = "96.09 tamassia, 96.04 garg" +, author = "K. M. Fairchild and S. E. Poltrock and G. W. Furnas" +, title = "SemNet: Three-Dimensional Graphic Representation of Large Knowledge Bases" +, editor = "R. Guindon" +, booktitle = "Cognitive Science and its Applications for Human-Computer Interaction" +, publisher = "Lawrence Erlbaum Associates" +, year = 1988 +, pages = "201--233" +, keywords = "graph drawing, 3D" +, update = "96.09 tamassia, 96.04 garg" } @inproceedings{f-caisu-85 -, author = "John Fairfield" -, title = "Cellular Approach For Image Segmentation Using {Voronoi} Diagrams" -, booktitle = "1985 IEEE Computer Society Workshop on Computer Architecture for Pattern Analysis and Image Database Management." -, publisher = "IEEE" -, address = "New York, NY" -, year = 1985 -, pages = "237--241" -, keywords = "image segmentation, cellular automata, Voronoi diagrams, Delaunay triangulation" -, annote = "Cellular automata to compute VD" -, abstract = "Cellular representations of Voronoi diagrams are - calculated simply by cellular automata. A cellular - automation is presented that segments the image on the - basis of a cellular representation of the Voronoi - diagram. The output of the automation is a fuzzy subset - of the Delaunay triangulation, which, when graphed with - the strength of the line proportional to the strength - of membership, segments the image. To within cell - granularity, the segmentation is independent of - rotation, translation, and magnification of the image. - 5 refs." +, author = "John Fairfield" +, title = "Cellular Approach For Image Segmentation Using {Voronoi} Diagrams" +, booktitle = "1985 IEEE Computer Society Workshop on Computer Architecture for Pattern Analysis and Image Database Management." +, publisher = "IEEE" +, address = "New York, NY" +, year = 1985 +, pages = "237--241" +, keywords = "image segmentation, cellular automata, Voronoi diagrams, Delaunay triangulation" +, annote = "Cellular automata to compute VD" +, abstract = "Cellular representations of Voronoi diagrams are + calculated simply by cellular automata. A cellular + automation is presented that segments the image on the + basis of a cellular representation of the Voronoi + diagram. The output of the automation is a fuzzy subset + of the Delaunay triangulation, which, when graphed with + the strength of the line proportional to the strength + of membership, segments the image. To within cell + granularity, the segmentation is independent of + rotation, translation, and magnification of the image. + 5 refs." } @inproceedings{f-csgft-79 -, author = "J. Fairfield" -, title = "Contoured shape generation: forms that people see in dot patterns" -, booktitle = "Proc. IEEE Conf. Systems Man Cybernet." -, year = 1979 -, pages = "60--64" +, author = "J. Fairfield" +, title = "Contoured shape generation: forms that people see in dot patterns" +, booktitle = "Proc. IEEE Conf. Systems Man Cybernet." +, year = 1979 +, pages = "60--64" } @article{f-sdpvd-83 -, author = "J. Fairfield" -, title = "Segmenting dot patterns by {Voronoi} diagram concavity" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-32" -, year = 1983 -, pages = "104--110" +, author = "J. Fairfield" +, title = "Segmenting dot patterns by {Voronoi} diagram concavity" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-32" +, year = 1983 +, pages = "104--110" } @article{fp-nsacs-90 -, author = "B. Falcidieno and C. Pienovi" -, title = "Natural Surface Approximation by Constrained Stochastic Interpolation" -, journal = "Comput. Aided Design" -, volume = 22 -, number = 3 -, year = 1990 -, pages = "167--172" -, annote = "First we build a CDT of constraint edges and important - points. Then any points where error is too high are - inserted in the triangulation by dividing the relevant - triangle into three pieces. Then any triangles that are - too big are broken into four with the midpoint randomly - perturbed (like with fractals)." +, author = "B. Falcidieno and C. Pienovi" +, title = "Natural Surface Approximation by Constrained Stochastic Interpolation" +, journal = "Comput. Aided Design" +, volume = 22 +, number = 3 +, year = 1990 +, pages = "167--172" +, annote = "First we build a CDT of constraint edges and important + points. Then any points where error is too high are + inserted in the triangulation by dividing the relevant + triangle into three pieces. Then any triangles that are + too big are broken into four with the midpoint randomly + perturbed (like with fractals)." } @article{f-hxpsm-83 -, author = "K. J. Falconer" -, title = "Hammer's x-ray problem and the stable manifold theorem" -, journal = "J. London Math. Soc." -, volume = 2 -, number = 28 -, year = 1983 -, pages = "149--160" -, update = "98.11 bibrelex" +, author = "K. J. Falconer" +, title = "Hammer's x-ray problem and the stable manifold theorem" +, journal = "J. London Math. Soc." +, volume = 2 +, number = 28 +, year = 1983 +, pages = "149--160" +, update = "98.11 bibrelex" } @article{f-xpps-83 -, author = "K. J. Falconer" -, title = "X-ray problems for point sources" -, journal = "Proc. London Math. Soc." -, volume = 3 -, number = 46 -, year = 1983 -, pages = "241--262" -, update = "98.11 bibrelex" +, author = "K. J. Falconer" +, title = "X-ray problems for point sources" +, journal = "Proc. London Math. Soc." +, volume = 3 +, number = 46 +, year = 1983 +, pages = "241--262" +, update = "98.11 bibrelex" } @incollection{fr-hta-87 -, author = "M. Falk and R. Randell" -, title = "On the homotopy theory in arrangements" -, booktitle = "Complex Analytic Singularities" -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 1987 -, pages = "101--124" -, update = "98.07 agarwal" +, author = "M. Falk and R. Randell" +, title = "On the homotopy theory in arrangements" +, booktitle = "Complex Analytic Singularities" +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 1987 +, pages = "101--124" +, update = "98.07 agarwal" } @article{f-gcpmr-88 -, author = "C. Faloutsos" -, title = "Gray codes for partial match and range queries" -, journal = "IEEE Trans. Softw. Eng." -, volume = 44 -, year = 1988 -, pages = "1381--1393" -, update = "97.07 agarwal" +, author = "C. Faloutsos" +, title = "Gray codes for partial match and range queries" +, journal = "IEEE Trans. Softw. Eng." +, volume = 44 +, year = 1988 +, pages = "1381--1393" +, update = "97.07 agarwal" } @inproceedings{fg-andqu-96 -, author = "C. Faloutsos and V. Gaede" -, title = "Analysis of $n$-dimensional quadtrees using the {Hausdorff} fractal dimension" -, booktitle = "Proc. 22nd VLDB Conference" -, year = 1996 -, pages = "40--50" -, update = "99.07 bibrelex, 97.07 agarwal" +, author = "C. Faloutsos and V. Gaede" +, title = "Analysis of $n$-dimensional quadtrees using the {Hausdorff} fractal dimension" +, booktitle = "Proc. 22nd VLDB Conference" +, year = 1996 +, pages = "40--50" +, update = "99.07 bibrelex, 97.07 agarwal" } @inproceedings{fl-ffaid-95 -, author = "C. Faloutsos and K.-I. Lin" -, title = "{FastMap}: {A} fast algorithm for indexing, data-mining and visualization of traditional and multimedia databases" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1995 -, pages = "163--173" -, update = "99.07 bibrelex, 97.07 agarwal" +, author = "C. Faloutsos and K.-I. Lin" +, title = "{FastMap}: {A} fast algorithm for indexing, data-mining and visualization of traditional and multimedia databases" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1995 +, pages = "163--173" +, update = "99.07 bibrelex, 97.07 agarwal" } @inproceedings{frm-fsmts-94 -, author = "C. Faloutsos and M. Ranganathan and Y. Manolopoulos" -, title = "Fast subsequence matching in time-series databases" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1994 -, pages = "86--93" -, update = "97.07 agarwal" +, author = "C. Faloutsos and M. Ranganathan and Y. Manolopoulos" +, title = "Fast subsequence matching in time-series databases" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1994 +, pages = "86--93" +, update = "97.07 agarwal" } @inproceedings{fr-dsamu-91 -, author = "C. Faloutsos and Y. Rong" -, title = "{DOT}: {A} spatial access method using fractals" -, booktitle = "Proc. 7th IEEE Internat. Conf. Data Eng." -, year = 1991 -, pages = "152--158" -, update = "97.07 agarwal" +, author = "C. Faloutsos and Y. Rong" +, title = "{DOT}: {A} spatial access method using fractals" +, booktitle = "Proc. 7th IEEE Internat. Conf. Data Eng." +, year = 1991 +, pages = "152--158" +, update = "97.07 agarwal" } @inproceedings{fr-fskr-89 -, author = "C. Faloutsos and S. Roseman" -, title = "Fractals for secondary key retrieval" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1989 -, pages = "247--252" -, update = "97.07 agarwal" +, author = "C. Faloutsos and S. Roseman" +, title = "Fractals for secondary key retrieval" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1989 +, pages = "247--252" +, update = "97.07 agarwal" } @inproceedings{fsr-aoosa-87 -, author = "C. Faloutsos and T. Sellis and N. Roussopoulos" -, title = "Analysis of Object Oriented Spatial Access Methods" -, booktitle = "Proc. SIGMOD Conf. on Management of Data" -, year = 1987 -, pages = "426--439" -, update = "97.07 agarwal, 96.09 kreveld" +, author = "C. Faloutsos and T. Sellis and N. Roussopoulos" +, title = "Analysis of Object Oriented Spatial Access Methods" +, booktitle = "Proc. SIGMOD Conf. on Management of Data" +, year = 1987 +, pages = "426--439" +, update = "97.07 agarwal, 96.09 kreveld" } @techreport{f-qpvmc-87 -, author = "B. Faltings" -, title = "Qualitative place vocabularies for mechanisms in configuration space" -, type = "Report" -, number = 1360 -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1987 -, keywords = "artificial intelligence" +, author = "B. Faltings" +, title = "Qualitative place vocabularies for mechanisms in configuration space" +, type = "Report" +, number = 1360 +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1987 +, keywords = "artificial intelligence" } @inproceedings{fh-cfaia-82 -, author = "J. Q. Fang and T. S. Huang" -, title = "A corner finding algorithm for image analysis and registration" -, booktitle = "Proc. AAAI Conf." -, year = 1982 -, pages = "46--49" -, update = "98.11 bibrelex" +, author = "J. Q. Fang and T. S. Huang" +, title = "A corner finding algorithm for image analysis and registration" +, booktitle = "Proc. AAAI Conf." +, year = 1982 +, pages = "46--49" +, update = "98.11 bibrelex" } @inproceedings{fb-rgmtb-91 -, author = "Shiaofen Fang and Beat Br{\"u}derlin" -, title = "Robustness in geometric modeling --- tolerance-based methods" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "85--101" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Shiaofen Fang and Beat Br{\"u}derlin" +, title = "Robustness in geometric modeling --- tolerance-based methods" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "85--101" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @article{fp-acdt-94 -, author = "T.-P. Fang and L. A. Piegl" -, title = "Algorithm for Constrained {Delaunay} Triangulation" -, journal = "Visual Comput." -, volume = 10 -, number = 5 -, year = 1994 -, pages = "255--265" -, update = "96.01 held" +, author = "T.-P. Fang and L. A. Piegl" +, title = "Algorithm for Constrained {Delaunay} Triangulation" +, journal = "Visual Comput." +, volume = 10 +, number = 5 +, year = 1994 +, pages = "255--265" +, update = "96.01 held" } @article{fp-adtch-92 -, author = "T.-P. Fang and L. A. Piegl" -, title = "Algorithm for {Delaunay} Triangulation and Convex-hull Computation Using Sparse Matrix" -, journal = "Comput. Aided Design" -, volume = 24 -, number = 8 -, month = aug -, year = 1992 -, pages = "425--436" -, annote = "Circumcircle algorithm. Sorts by $x$-coord to speed - search. Timings given seem to fit this pattern." +, author = "T.-P. Fang and L. A. Piegl" +, title = "Algorithm for {Delaunay} Triangulation and Convex-hull Computation Using Sparse Matrix" +, journal = "Comput. Aided Design" +, volume = 24 +, number = 8 +, month = aug +, year = 1992 +, pages = "425--436" +, annote = "Circumcircle algorithm. Sorts by $x$-coord to speed + search. Timings given seem to fit this pattern." } @article{fp-dttd-95 -, author = "T. P. Fang and L. A. Piegl" -, title = "Delaunay Triangulation in Three Dimensions" -, journal = "IEEE Comput. Graph. Appl." -, volume = 15 -, number = 5 -, month = sep -, year = 1995 -, pages = "62--69" -, update = "96.01 held" +, author = "T. P. Fang and L. A. Piegl" +, title = "Delaunay Triangulation in Three Dimensions" +, journal = "IEEE Comput. Graph. Appl." +, volume = 15 +, number = 5 +, month = sep +, year = 1995 +, pages = "62--69" +, update = "96.01 held" } @article{fp-dtuug-93 -, author = "T.-P. Fang and L. A. Piegl" -, title = "{Delaunay} Triangulation Using a Uniform Grid" -, journal = "IEEE Comput. Graph. Appl." -, volume = 13 -, number = 3 -, month = may -, year = 1993 -, pages = "36--48" -, update = "93.09 held" -, annote = "Circumcircle algorithm with buckets. DFS starting at +, author = "T.-P. Fang and L. A. Piegl" +, title = "{Delaunay} Triangulation Using a Uniform Grid" +, journal = "IEEE Comput. Graph. Appl." +, volume = 13 +, number = 3 +, month = may +, year = 1993 +, pages = "36--48" +, update = "93.09 held" +, annote = "Circumcircle algorithm with buckets. DFS starting at middle point, deleting points as they are surrounded. Claims that 16/9 points per bucket (on average) is fastest." } @article{fst-gcfcs-95 -, author = "A. O. Farahat and P. F. Stiller and J. C. Trinkle" -, title = "On the Geometry of Contact Formation Cells for Systems of Polygons" -, journal = "IEEE Trans. Robot. Autom." -, volume = 11 -, number = 4 -, month = aug -, year = 1995 -, pages = "522--536" -, update = "96.01 held" +, author = "A. O. Farahat and P. F. Stiller and J. C. Trinkle" +, title = "On the Geometry of Contact Formation Cells for Systems of Polygons" +, journal = "IEEE Trans. Robot. Autom." +, volume = 11 +, number = 4 +, month = aug +, year = 1995 +, pages = "522--536" +, update = "96.01 held" } @article{f-cvccp-82 -, author = "G. Farin" -, title = "A construction for visual {$C^{1}$} continuity of polynomial surface patches" -, journal = "Comput. Graph. Image Process." -, volume = 20 -, year = 1982 -, pages = "272--282" +, author = "G. Farin" +, title = "A construction for visual {$C^{1}$} continuity of polynomial surface patches" +, journal = "Comput. Graph. Image Process." +, volume = 20 +, year = 1982 +, pages = "272--282" } @book{f-cscag-93 -, author = "G. Farin" -, title = "Curves and Surfaces for Computer Aided Geometric Design: A Practical Guide" -, publisher = "Academic Press" -, year = 1993 -, update = "97.11 bibrelex" +, author = "G. Farin" +, title = "Curves and Surfaces for Computer Aided Geometric Design: A Practical Guide" +, publisher = "Academic Press" +, year = 1993 +, update = "97.11 bibrelex" } @book{f-ncspg-95 -, author = "G. Farin" -, title = "NURB Curves and Surfaces, from Projective Geometry to Practical Use" -, publisher = "A.K. Peters" -, year = 1995 -, update = "98.07 bibrelex" +, author = "G. Farin" +, title = "NURB Curves and Surfaces, from Projective Geometry to Practical Use" +, publisher = "A.K. Peters" +, year = 1995 +, update = "98.07 bibrelex" } @inproceedings{f-sbvd-97 -, author = "Gerald Farin" -, title = "Surfaces Based on {Voronoi} Diagrams" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 33 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Gerald Farin" +, title = "Surfaces Based on {Voronoi} Diagrams" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 33 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{f-sodt-90 -, author = "G. Farin" -, title = "Surfaces over {Dirichlet} Tessellations" -, journal = "Comput. Aided Geom. Design" -, volume = 7 -, year = 1990 -, pages = "281--292" -, update = "00.03 bibrelex+devillers" +, author = "G. Farin" +, title = "Surfaces over {Dirichlet} Tessellations" +, journal = "Comput. Aided Geom. Design" +, volume = 7 +, year = 1990 +, pages = "281--292" +, update = "00.03 bibrelex+devillers" } @article{f-eopss-85 -, author = "R. Farouki" -, title = "Exact offset procedures for simple solids" -, journal = "Comput. Aided Geom. Design" -, volume = 2 -, year = 1985 -, pages = "257--279" -, update = "98.07 bibrelex" +, author = "R. Farouki" +, title = "Exact offset procedures for simple solids" +, journal = "Comput. Aided Geom. Design" +, volume = 2 +, year = 1985 +, pages = "257--279" +, update = "98.07 bibrelex" } @incollection{fj-cpccc-94 -, author = "R. Farouki and J. Johnstone" -, title = "Computing point/curve and curve/curve bisectors" -, editor = "R. B. Fisher" -, booktitle = "Design and Application of Curves and Surfaces: Mathematics of Surfaces V" -, series = "327--354" -, publisher = "Oxford University Press" -, year = 1994 -, update = "98.07 bibrelex" +, author = "R. Farouki and J. Johnstone" +, title = "Computing point/curve and curve/curve bisectors" +, editor = "R. B. Fisher" +, booktitle = "Design and Application of Curves and Surfaces: Mathematics of Surfaces V" +, series = "327--354" +, publisher = "Oxford University Press" +, year = 1994 +, update = "98.07 bibrelex" } @techreport{fj-bpppc-91 -, author = "R. Farouki and J. K. Johnstone" -, title = "The bisector of a point and a plane parametric curve" -, type = "Technical {Report}" -, number = "JHU-91-21" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = nov -, year = 1991 +, author = "R. Farouki and J. K. Johnstone" +, title = "The bisector of a point and a plane parametric curve" +, type = "Technical {Report}" +, number = "JHU-91-21" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = nov +, year = 1991 } @techreport{f-tsaei-86 -, author = "R. T. Farouki" -, title = "Trimmed surface algorithms for the evaluation and interrogation of solid boundary representations" -, type = "Report" -, number = "RC 12052" -, institution = "Manufacturing Res. Dept., IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1986 +, author = "R. T. Farouki" +, title = "Trimmed surface algorithms for the evaluation and interrogation of solid boundary representations" +, type = "Report" +, number = "RC 12052" +, institution = "Manufacturing Res. Dept., IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1986 } @article{fj-bpppc-94 -, author = "R. T. Farouki and J. K. Johnstone" -, title = "The Bisector of a Point and a Plane Parametric Curve" -, journal = "Comput. Aided Geom. Design" -, volume = 11 -, year = 1994 -, pages = "117--151" -, update = "95.05 held" +, author = "R. T. Farouki and J. K. Johnstone" +, title = "The Bisector of a Point and a Plane Parametric Curve" +, journal = "Comput. Aided Geom. Design" +, volume = 11 +, year = 1994 +, pages = "117--151" +, update = "95.05 held" } % ### also claimed pages 101--127 @article{fn-appoc-90 -, author = "R. T. Farouki and C. A. Neff" -, title = "Analytic Properties of Plane Offset Curves" -, journal = "Comput. Aided Geom. Design" -, volume = 7 -, number = "1--4" -, month = jun -, year = 1990 -, pages = "83--99" -, update = "95.05 held" +, author = "R. T. Farouki and C. A. Neff" +, title = "Analytic Properties of Plane Offset Curves" +, journal = "Comput. Aided Geom. Design" +, volume = 7 +, number = "1--4" +, month = jun +, year = 1990 +, pages = "83--99" +, update = "95.05 held" } @techreport{fr-apbf-87 -, author = "R. T. Farouki and V. T. Rajan" -, title = "Algorithms for polynomials in {Bernstein} form" -, type = "Report" -, number = "??" -, institution = "Manufacturing Res. Dept., IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1987 +, author = "R. T. Farouki and V. T. Rajan" +, title = "Algorithms for polynomials in {Bernstein} form" +, type = "Report" +, number = "??" +, institution = "Manufacturing Res. Dept., IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1987 } @article{fr-spccc-98 -, author = "R. T. Farouki and R. Ramamurthy" -, title = "Specified-Precision Computation of Curve/Curve Bisectors" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "599--619" -, update = "98.11 devillers" +, author = "R. T. Farouki and R. Ramamurthy" +, title = "Specified-Precision Computation of Curve/Curve Bisectors" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "599--619" +, update = "98.11 devillers" } @article{fm-rpdsa-85 -, author = "N. Farvardin and J. W. Modestino" -, title = "Rate-distortion performance of {DPCM} schemes for autoregresssive sources" -, journal = "IEEE Trans. Inform. Theory" -, volume = 31 -, year = 1985 -, pages = "402--418" -, update = "98.03 bibrelex" +, author = "N. Farvardin and J. W. Modestino" +, title = "Rate-distortion performance of {DPCM} schemes for autoregresssive sources" +, journal = "IEEE Trans. Inform. Theory" +, volume = 31 +, year = 1985 +, pages = "402--418" +, update = "98.03 bibrelex" } % journal??? @article{f-slrpg-48 -, author = "I. Fary" -, title = "On Straight Lines Representation of Planar Graphs" -, journal = "Acta Sci. Math. Szeged" -, volume = 11 -, year = 1948 -, pages = "229--233" -, keywords = "graph drawing" -, update = "97.11 bibrelex, 93.09 tamassia" +, author = "I. Fary" +, title = "On Straight Lines Representation of Planar Graphs" +, journal = "Acta Sci. Math. Szeged" +, volume = 11 +, year = 1948 +, pages = "229--233" +, keywords = "graph drawing" +, update = "97.11 bibrelex, 93.09 tamassia" } @book{f-tdcvg-93 -, author = "Olivier Faugeras" -, title = "Three-Dimensional Computer Vision: A Geometric Viewpoint" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1993 +, author = "Olivier Faugeras" +, title = "Three-Dimensional Computer Vision: A Geometric Viewpoint" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1993 } @article{fhmb-pa3do-84 -, author = "O. Faugeras and M. Hebert and P. Mussi and J.-D. Boissonnat" -, title = "Polyhedral approximation of 3-{D} objects without holes" -, journal = "Comput. Vision Graph. Image Process." -, volume = 25 -, year = 1984 -, pages = "169--183" +, author = "O. Faugeras and M. Hebert and P. Mussi and J.-D. Boissonnat" +, title = "Polyhedral approximation of 3-{D} objects without holes" +, journal = "Comput. Vision Graph. Image Process." +, volume = 25 +, year = 1984 +, pages = "169--183" } @article{flb-rsddt-90 -, author = "O. D. Faugeras and E. {Le Bras-Mehlman} and J. D. Boissonnat" -, title = "Representing Stereo Data With The {Delaunay} Triangulation" -, journal = "Artif. Intell." -, volume = 44 -, number = "1--2" -, month = jul -, year = 1990 -, pages = "41--87" -, keywords = "stereo data, Delaunay triangulation, stereo vision, probabilistic geometry" -, annote = "CDT algorithm via inserting extra points on compulsory - line segments. Uses bucketing for speed." -, abstract = "This article proposes a coherent way of interpolating - three-dimensional data obtained by stero, for example, - with a simplical polyhedral surface. The proposed - method is based on the use of the constrained Delaunay - triangulation; the polyhedral surface is obtained by - using a simple visibility property to mark tetrahedra - likely to be empty. The method is intrinsically - discontinuity-preserving, works for multiple viewpoints - and yields both a surface representation of objects and - a volume representation of free space which may be - useful in robotics. Algorithms to implement the method - are described and their complexity analyzed in the - worst-case and average-case situations where tools of - probabilistic geometry are used. (Author abstract) 37 - Refs." +, author = "O. D. Faugeras and E. {Le Bras-Mehlman} and J. D. Boissonnat" +, title = "Representing Stereo Data With The {Delaunay} Triangulation" +, journal = "Artif. Intell." +, volume = 44 +, number = "1--2" +, month = jul +, year = 1990 +, pages = "41--87" +, keywords = "stereo data, Delaunay triangulation, stereo vision, probabilistic geometry" +, annote = "CDT algorithm via inserting extra points on compulsory + line segments. Uses bucketing for speed." +, abstract = "This article proposes a coherent way of interpolating + three-dimensional data obtained by stero, for example, + with a simplical polyhedral surface. The proposed + method is based on the use of the constrained Delaunay + triangulation; the polyhedral surface is obtained by + using a simple visibility property to mark tetrahedra + likely to be empty. The method is intrinsically + discontinuity-preserving, works for multiple viewpoints + and yields both a surface representation of objects and + a volume representation of free space which may be + useful in robotics. Algorithms to implement the method + are described and their complexity analyzed in the + worst-case and average-case situations where tools of + probabilistic geometry are used. (Author abstract) 37 + Refs." } @article{fp-ochr3-84 -, author = "O. D. Faugeras and J. Ponce" -, title = "An object-centered hierarchical representation for $3$-d objects: {The} prism-tree" -, journal = "Special Issue of Topics on Computational Geometry" -, volume = 38 -, number = 1 -, month = apr -, year = 1984 -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "O. D. Faugeras and J. Ponce" +, title = "An object-centered hierarchical representation for $3$-d objects: {The} prism-tree" +, journal = "Special Issue of Topics on Computational Geometry" +, volume = 38 +, number = 1 +, month = apr +, year = 1984 +, update = "98.11 bibrelex, 97.11 bibrelex" } @book{fp-cgdm-79 -, author = "I. D. Faux and M. J. Pratt" -, title = "Computational Geometry for Design and Manufacture" -, publisher = "Ellis Horwood" -, address = "Chichester, UK" -, year = 1979 -, update = "97.03 schwarzkopf" +, author = "I. D. Faux and M. J. Pratt" +, title = "Computational Geometry for Design and Manufacture" +, publisher = "Ellis Horwood" +, address = "Chichester, UK" +, year = 1979 +, update = "97.03 schwarzkopf" } @article{fv-sappm-85 -, author = "J.-P. Faye and J. Vignes" -, title = "Stochastic Approach of the Permutation-Perturbation Method for Round-off Error Analysis" -, journal = "Applied Numerical Mathematics" -, volume = 1 -, year = 1985 -, pages = "349--362" -, update = "98.03 bibrelex" +, author = "J.-P. Faye and J. Vignes" +, title = "Stochastic Approach of the Permutation-Perturbation Method for Round-off Error Analysis" +, journal = "Applied Numerical Mathematics" +, volume = 1 +, year = 1985 +, pages = "349--362" +, update = "98.03 bibrelex" } @article{f-crdua-83 -, author = "R. Featherstone" -, title = "The calculation of robot dynamics using articulated-body inertias" -, journal = "Internat. J. Robot. Res." -, volume = 2 -, number = 1 -, year = 1983 -, pages = "13--30" -, update = "97.11 bibrelex" +, author = "R. Featherstone" +, title = "The calculation of robot dynamics using articulated-body inertias" +, journal = "Internat. J. Robot. Res." +, volume = 2 +, number = 1 +, year = 1983 +, pages = "13--30" +, update = "97.11 bibrelex" } @techreport{fg-oaac-88t -, author = "T. Feder and D. H. Greene" -, title = "Optimal Algorithms for Approximate Clustering" -, institution = "Dept. of Computer Science, Stanford University" -, year = 1988 -, keywords = "clustering" -, update = "95.01 smid, 93.09 milone+mitchell" +, author = "T. Feder and D. H. Greene" +, title = "Optimal Algorithms for Approximate Clustering" +, institution = "Dept. of Computer Science, Stanford University" +, year = 1988 +, keywords = "clustering" +, update = "95.01 smid, 93.09 milone+mitchell" } @inproceedings{fg-oaac-88i -, author = "T. Feder and D. H. Greene" -, title = "Optimal Algorithms for Approximate Clustering" -, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." -, year = 1988 -, pages = "434--444" -, update = "95.01 smid" +, author = "T. Feder and D. H. Greene" +, title = "Optimal Algorithms for Approximate Clustering" +, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." +, year = 1988 +, pages = "434--444" +, update = "95.01 smid" } @inproceedings{fm-cpgcs-91 -, author = "T. Feder and R. Motwani" -, title = "Clique partitions, graph compression, and speeding up algoithms" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "123--133" -, update = "97.11 bibrelex" +, author = "T. Feder and R. Motwani" +, title = "Clique partitions, graph compression, and speeding up algoithms" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "123--133" +, update = "97.11 bibrelex" } @book{f-gmt-70 -, author = "H. Federer" -, title = "Geometric Measure Theory" -, publisher = "Springer-Verlag" -, year = 1970 -, update = "98.07 bibrelex" +, author = "H. Federer" +, title = "Geometric Measure Theory" +, publisher = "Springer-Verlag" +, year = 1970 +, update = "98.07 bibrelex" } @incollection{f-dpsds-82 -, author = "P. J. Federico" -, title = "Descartes on polyhedra: {A} study of the {De} {Solidorum} {Elementis}" -, booktitle = "Sources in the History of Mathematics and Physical Sciences" -, volume = 4 -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1982 -, update = "97.11 bibrelex" +, author = "P. J. Federico" +, title = "Descartes on polyhedra: {A} study of the {De} {Solidorum} {Elementis}" +, booktitle = "Sources in the History of Mathematics and Physical Sciences" +, volume = 4 +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1982 +, update = "97.11 bibrelex" } @techreport{f-cspoo-87 -, author = "E. B. Feinberg" -, title = "Characterizing the Shortest Path of an Object Among Obstacles" -, type = "Manuscript" -, institution = "AT\& T Bell Labs" -, year = 1987 -, succeeds = "f-cspoo-89" -, update = "95.09 korneenko, 93.09 milone+mitchell" +, author = "E. B. Feinberg" +, title = "Characterizing the Shortest Path of an Object Among Obstacles" +, type = "Manuscript" +, institution = "AT\& T Bell Labs" +, year = 1987 +, succeeds = "f-cspoo-89" +, update = "95.09 korneenko, 93.09 milone+mitchell" } @article{f-cspoo-89 -, author = "E. B. Feinberg" -, title = "Characterizing the shortest path of an object among obstacles" -, journal = "Inform. Process. Lett." -, volume = 31 -, year = 1989 -, pages = "257--264" -, keywords = "motion planning, ladder" -, precedes = "f-cspoo-87" -, update = "95.09 korneenko" +, author = "E. B. Feinberg" +, title = "Characterizing the shortest path of an object among obstacles" +, journal = "Inform. Process. Lett." +, volume = 31 +, year = 1989 +, pages = "257--264" +, keywords = "motion planning, ladder" +, precedes = "f-cspoo-87" +, update = "95.09 korneenko" } @article{fp-ffptp-89 -, author = "E. B. Feinberg and C. H. Papadimitriou" -, title = "Finding feasible paths for a two-point body" -, journal = "J. Algorithms" -, volume = 10 -, year = 1989 -, pages = "109--119" +, author = "E. B. Feinberg and C. H. Papadimitriou" +, title = "Finding feasible paths for a two-point body" +, journal = "J. Algorithms" +, volume = 10 +, year = 1989 +, pages = "109--119" } @book{f-ocscs-88 -, author = "D. G. Feitelson" -, title = "Optical computing: {A} survey for computer scientists" -, publisher = "MIT Press" -, address = "Cambridge, Massachusetts, London, England" -, year = 1988 -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "D. G. Feitelson" +, title = "Optical computing: {A} survey for computer scientists" +, publisher = "MIT Press" +, address = "Cambridge, Massachusetts, London, England" +, year = 1988 +, update = "98.07 bibrelex, 97.11 bibrelex" } @article{ft-itgp-97 -, author = "F. R. Feito and J. C. Torres" -, title = "Inclusion Test for General Polyhedra" -, journal = "Comput. \& Graphics" -, volume = 21 -, number = 1 -, month = jan -, year = 1997 -, pages = "23--30" -, update = "97.11 held" +, author = "F. R. Feito and J. C. Torres" +, title = "Inclusion Test for General Polyhedra" +, journal = "Comput. \& Graphics" +, volume = 21 +, number = 1 +, month = jan +, year = 1997 +, pages = "23--30" +, update = "97.11 held" } @article{f-fctcs-87 -, author = "G. {Fejes T{\'o}th}" -, title = "Finite covering by translates of centrally symmetric convex domains" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "353--363" -, update = "93.09 erickson" +, author = "G. {Fejes T{\'o}th}" +, title = "Finite covering by translates of centrally symmetric convex domains" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "353--363" +, update = "93.09 erickson" } @article{fgw-fspsc-89 -, author = "G. {Fejes T{\'o}th} and P. Gritzmann and J. M. Wills" -, title = "Finite sphere packing and sphere covering" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "19--40" -, update = "93.09 erickson" +, author = "G. {Fejes T{\'o}th} and P. Gritzmann and J. M. Wills" +, title = "Finite sphere packing and sphere covering" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "19--40" +, update = "93.09 erickson" } @incollection{fk-srrtp-93 -, author = "G. {Fejes T{\'o}th} and W. Kuperberg" -, title = "A Survey of Recent Results in the Theory of Packing and Covering" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "251--279" -, keywords = "survey paper, discrete geometry, packing, covering, tiling" -, update = "93.09 erickson" +, author = "G. {Fejes T{\'o}th} and W. Kuperberg" +, title = "A Survey of Recent Results in the Theory of Packing and Covering" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "251--279" +, keywords = "survey paper, discrete geometry, packing, covering, tiling" +, update = "93.09 erickson" } @article{f-dptut-86 -, author = "L. {Fejes T{\'o}th}" -, title = "Densest packing of translates of the union of two circles" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "307--314" -, update = "93.09 erickson" +, author = "L. {Fejes T{\'o}th}" +, title = "Densest packing of translates of the union of two circles" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "307--314" +, update = "93.09 erickson" } @article{f-ecd-78 -, author = "L. {Fejes T{\'o}th}" -, title = "Evading convex discs" -, journal = "Studia Scientiarum Mathematicarum Hungarica" -, volume = 13 -, year = 1978 -, pages = "453--461" -, update = "93.09 milone+mitchell" +, author = "L. {Fejes T{\'o}th}" +, title = "Evading convex discs" +, journal = "Studia Scientiarum Mathematicarum Hungarica" +, volume = 13 +, year = 1978 +, pages = "453--461" +, update = "93.09 milone+mitchell" } @article{f-icd-77 -, author = "L. {Fejes T{\'o}th}" -, title = "Illumination of convex discs" -, journal = "Acta Math. Acad. Sci. Hungar." -, volume = 29 -, number = "3--4" -, year = 1977 -, pages = "355--360" -, update = "93.09 erickson" +, author = "L. {Fejes T{\'o}th}" +, title = "Illumination of convex discs" +, journal = "Acta Math. Acad. Sci. Hungar." +, volume = 29 +, number = "3--4" +, year = 1977 +, pages = "355--360" +, update = "93.09 erickson" } @book{f-lidea-53 -, author = "L. {Fejes T{\'o}th}" -, title = "{Lagerungen} in der {Ebene}, auf der {Kugel} und im {Raum}" -, edition = "1st" -, publisher = "Springer-Verlag" -, year = 1953 -, update = "97.11 bibrelex" +, author = "L. {Fejes T{\'o}th}" +, title = "{Lagerungen} in der {Ebene}, auf der {Kugel} und im {Raum}" +, edition = "1st" +, publisher = "Springer-Verlag" +, year = 1953 +, update = "97.11 bibrelex" } @book{f-ldead-72 -, author = "L. {Fejes T{\'o}th}" -, title = "Lagerungen in der Ebene, auf der Kugel und im Raum" -, edition = "2nd" -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1972 -, update = "93.09 erickson" +, author = "L. {Fejes T{\'o}th}" +, title = "Lagerungen in der Ebene, auf der Kugel und im Raum" +, edition = "2nd" +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1972 +, update = "93.09 erickson" } @article{f-plcl-66 -, author = "L. {Fejes T{\'o}th}" -, title = "On the Permeability of a Layer of Circle-layer" -, journal = "Studia Scientiarum Mathematicarum Hungarica" -, volume = 1 -, year = 1966 -, pages = "5--10" -, update = "93.09 milone+mitchell" +, author = "L. {Fejes T{\'o}th}" +, title = "On the Permeability of a Layer of Circle-layer" +, journal = "Studia Scientiarum Mathematicarum Hungarica" +, volume = 1 +, year = 1966 +, pages = "5--10" +, update = "93.09 milone+mitchell" } @article{f-plp-68 -, author = "L. {Fejes T{\'o}th}" -, title = "On the Permeability of a Layer of Parallelograms" -, journal = "Studia Scientiarum Mathematicarum Hungarica" -, volume = 3 -, year = 1968 -, pages = "195--200" -, update = "93.09 milone+mitchell" +, author = "L. {Fejes T{\'o}th}" +, title = "On the Permeability of a Layer of Parallelograms" +, journal = "Studia Scientiarum Mathematicarum Hungarica" +, volume = 3 +, year = 1968 +, pages = "195--200" +, update = "93.09 milone+mitchell" } @article{f-icd-50 -, author = "L. {Fejes T{\'o}th}" -, title = "Some packing and covering theorems" -, journal = "Acta Sci. Math. Szeged" -, volume = "12/A" -, year = 1950 -, pages = "62--67" -, update = "97.11 bibrelex, 97.03 pocchiola, 96.05 pocchiola" +, author = "L. {Fejes T{\'o}th}" +, title = "Some packing and covering theorems" +, journal = "Acta Sci. Math. Szeged" +, volume = "12/A" +, year = 1950 +, pages = "62--67" +, update = "97.11 bibrelex, 97.03 pocchiola, 96.05 pocchiola" } @article{fh-usk-63 -, author = "L. {Fejes T{\'o}th} and A. Heppes" -, title = "{\"U}ber stabile {K{\"o}rpersysteme}" -, journal = "Compositio Mathematica" -, volume = 15 -, number = 2 -, year = 1963 -, pages = "119--126" -, update = "98.03 bibrelex" +, author = "L. {Fejes T{\'o}th} and A. Heppes" +, title = "{\"U}ber stabile {K{\"o}rpersysteme}" +, journal = "Compositio Mathematica" +, volume = 15 +, number = 2 +, year = 1963 +, pages = "119--126" +, update = "98.03 bibrelex" } @mastersthesis{f-dpmp-89 -, author = "S{\'a}ndor P. Fekete" -, title = "Das Piano Movers' Problem" -, type = "Diplom Thesis" -, school = "Mathematisches Institut der Universit{\"a}t zu K{\"o}ln" -, year = 1989 -, keywords = "master thesis" -, update = "98.03 mitchell" +, author = "S{\'a}ndor P. Fekete" +, title = "Das Piano Movers' Problem" +, type = "Diplom Thesis" +, school = "Mathematisches Institut der Universit{\"a}t zu K{\"o}ln" +, year = 1989 +, keywords = "master thesis" +, update = "98.03 mitchell" } @inproceedings{f-faasc-92 -, author = "S{\'a}ndor P. Fekete" -, title = "Finding all anchored squares in a convex polygon in subquadratic time" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "71--76" -, cites = "c-kiikf-50, dko-fliet-87, dj-nlbma-89, e-spccc-13, e-mccp-15, kw-onupp-91, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "S{\'a}ndor P. Fekete" +, title = "Finding all anchored squares in a convex polygon in subquadratic time" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "71--76" +, cites = "c-kiikf-50, dko-fliet-87, dj-nlbma-89, e-spccc-13, e-mccp-15, kw-onupp-91, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @techreport{f-fmlte-98 -, author = "S{\'a}ndor P. Fekete" -, title = "Finding Maximum Length Tours under {Euclidean} Metrics" -, type = "Technical Report" -, number = "98-317" -, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" -, year = 1998 -, update = "98.03 mitchell" -, annote = "Proves NP-hardness of max-TSP under Euclidean norms in 3 +, author = "S{\'a}ndor P. Fekete" +, title = "Finding Maximum Length Tours under {Euclidean} Metrics" +, type = "Technical Report" +, number = "98-317" +, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" +, year = 1998 +, update = "98.03 mitchell" +, annote = "Proves NP-hardness of max-TSP under Euclidean norms in 3 or higher dimension. Contrast with the recent polynomial-time algorithm of Barvinoki et al \cite{bjww-ptamp-98} for polytope distance @@ -57293,37 +57293,37 @@ @techreport{f-fmlte-98 } @phdthesis{f-gtsp-92 -, author = "S{\'a}ndor P. Fekete" -, title = "Geometry and the Travelling Salesman Problem" -, type = "Ph.{D}. Thesis" -, school = "Department of Combinatorics and Optimization, University of Waterloo" -, address = "Waterloo, ON" -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.03 mitchell" +, author = "S{\'a}ndor P. Fekete" +, title = "Geometry and the Travelling Salesman Problem" +, type = "Ph.{D}. Thesis" +, school = "Department of Combinatorics and Optimization, University of Waterloo" +, address = "Waterloo, ON" +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.03 mitchell" } @techreport{f-cmlrb-92 -, author = "S{\'a}ndor P. Fekete" -, title = "On the complexity of min-link red-blue separation" -, type = "Manuscript" -, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" -, year = 1992 -, update = "98.03 mitchell, 95.09 mitchell" +, author = "S{\'a}ndor P. Fekete" +, title = "On the complexity of min-link red-blue separation" +, type = "Manuscript" +, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" +, year = 1992 +, update = "98.03 mitchell, 95.09 mitchell" } @techreport{f-oasp-97 -, author = "S{\'a}ndor P. Fekete" -, title = "Optimizing the area of simple polygons" -, number = "97-256" -, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" -, year = 1997 -, url = "ftp://ftp.zpr.uni-koeln.de/pub/paper/zpr97-256.ps.gz" -, keywords = "geometric optimization, area, simple polygons, point separation, complexity, approximation, Traveling Salesman Problem, Pick's theorem, grid points, polyhedra; 90C28, 68Q25" -, succeeds = "fp-aosp-93" -, update = "00.11 smid, 00.07 smid, 98.03 mitchell" -, annote = "Submitted to DCG for publication." -, abstract = "We discuss problems of optimizing the area of a simple polygon for a +, author = "S{\'a}ndor P. Fekete" +, title = "Optimizing the area of simple polygons" +, number = "97-256" +, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" +, year = 1997 +, url = "ftp://ftp.zpr.uni-koeln.de/pub/paper/zpr97-256.ps.gz" +, keywords = "geometric optimization, area, simple polygons, point separation, complexity, approximation, Traveling Salesman Problem, Pick's theorem, grid points, polyhedra; 90C28, 68Q25" +, succeeds = "fp-aosp-93" +, update = "00.11 smid, 00.07 smid, 98.03 mitchell" +, annote = "Submitted to DCG for publication." +, abstract = "We discuss problems of optimizing the area of a simple polygon for a given set of vertices P and show that these problems are very closely related to problems of optimizing the number of points from a set Q in a simple polygon with vertex set P. We prove that it is NP-complete @@ -57349,105 +57349,105 @@ @techreport{f-oasp-97 } @techreport{f-shmts-98 -, author = "S{\'a}ndor P. Fekete" -, title = "Simplicity and Hardness of the Maximum Traveling Salesman Problem under Geometric Distances" -, type = "Manuscript (submitted)" -, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" -, year = 1998 -, keywords = "geometric optimization, complexity, Traveling Salesman Problem" -, update = "98.07 mitchell" +, author = "S{\'a}ndor P. Fekete" +, title = "Simplicity and Hardness of the Maximum Traveling Salesman Problem under Geometric Distances" +, type = "Manuscript (submitted)" +, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" +, year = 1998 +, keywords = "geometric optimization, complexity, Traveling Salesman Problem" +, update = "98.07 mitchell" } @inproceedings{fhw-nrvrg-96 -, author = "S{\'a}ndor P. Fekete and M. E. Houle and S. Whitesides" -, title = "New results on a visibility representation of graphs in 3-D" -, editor = "F. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "234--241" -, keywords = "visibility graphs" -, precedes = "behflmrrswz-vrg3d-98" -, update = "98.11 bibrelex, 98.07 rote, 98.03 mitchell, 97.03 rote, 96.09 orourke" +, author = "S{\'a}ndor P. Fekete and M. E. Houle and S. Whitesides" +, title = "New results on a visibility representation of graphs in 3-D" +, editor = "F. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "234--241" +, keywords = "visibility graphs" +, precedes = "behflmrrswz-vrg3d-98" +, update = "98.11 bibrelex, 98.07 rote, 98.03 mitchell, 97.03 rote, 96.09 orourke" } @inproceedings{fhw-wleph-97 -, author = "S{\'a}ndor P. Fekete and Michael E. Houle and Sue Whitesides" -, title = "The Wobbly Logic Engine: Proving Hardness of Non-rigid Geometric Graph Representation Problems" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "272--283" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "S{\'a}ndor P. Fekete and Michael E. Houle and Sue Whitesides" +, title = "The Wobbly Logic Engine: Proving Hardness of Non-rigid Geometric Graph Representation Problems" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "272--283" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{fm-rbvg3-96 -, author = "S{\'a}ndor P. Fekete and Henk Meijer" -, title = "Rectangle and Box Visibility Graphs in 3D" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "31--34" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "S{\'a}ndor P. Fekete and Henk Meijer" +, title = "Rectangle and Box Visibility Graphs in 3D" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "31--34" +, update = "00.03 bibrelex, 99.03 bibrelex" } @unpublished{fm-gaim-93 -, author = "S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" -, title = "Geometric Aspects of Injection Molding" -, year = 1993 -, note = "Workshop on Geometric and Computational Aspects of +, author = "S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" +, title = "Geometric Aspects of Injection Molding" +, year = 1993 +, note = "Workshop on Geometric and Computational Aspects of Injection Molding, Bellairs Research Institute, February 5--12" -, update = "98.03 mitchell, 95.01 mitchell" +, update = "98.03 mitchell, 95.01 mitchell" } @techreport{fm-hds-97 -, author = "S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" -, title = "Histogram Decomposition and Stereolithography" -, type = "Technical Report" -, number = "97-280" -, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" -, year = 1997 -, update = "98.03 mitchell" +, author = "S{\'a}ndor P. Fekete and Joseph S. B. Mitchell" +, title = "Histogram Decomposition and Stereolithography" +, type = "Technical Report" +, number = "97-280" +, institution = "Mathematisches Institut, Universit{\"a}t zu K{\"o}ln" +, year = 1997 +, update = "98.03 mitchell" } @inproceedings{fmw-cwkmp-00 -, author = "Sandor P. Fekete and Joseph S. B. Mitchell and Karin Weinbrecht" -, title = "On the Continuous {Weber} and $k$-Median Problems" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "70--79" -, update = "00.11 jones" +, author = "Sandor P. Fekete and Joseph S. B. Mitchell and Karin Weinbrecht" +, title = "On the Continuous {Weber} and $k$-Median Problems" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "70--79" +, update = "00.11 jones" } @inproceedings{fp-aosp-93 -, author = "S{\'a}ndor P. Fekete and W. R. Pulleyblank" -, title = "Area optimization of simple polygons" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "173--182" -, precedes = "f-aosp-97" -, cites = "aiks-fkpmd-91, bddg-fep-85, c-tsplt-91a, c-ig-61, ddg-fsp-83, dj-nlbma-89, eorw-fmakg-92, egh-lp-89, f-gtsp-92, ggj-sncgp-76, gj-cigtn-79, o-pom3d-80, p-gzz-99, p-nchcp-79, rt-rplbo-86, ZZZ" -, update = "98.03 bibrelex+mitchell, 93.09 jones" +, author = "S{\'a}ndor P. Fekete and W. R. Pulleyblank" +, title = "Area optimization of simple polygons" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "173--182" +, precedes = "f-aosp-97" +, cites = "aiks-fkpmd-91, bddg-fep-85, c-tsplt-91a, c-ig-61, ddg-fsp-83, dj-nlbma-89, eorw-fmakg-92, egh-lp-89, f-gtsp-92, ggj-sncgp-76, gj-cigtn-79, o-pom3d-80, p-gzz-99, p-nchcp-79, rt-rplbo-86, ZZZ" +, update = "98.03 bibrelex+mitchell, 93.09 jones" } @article{fw-artp-97 -, author = "S{\'a}ndor P. Fekete and Gerhard J. Woeginger" -, title = "Angle-Restricted Tours in the Plane" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, number = 4 -, year = 1997 -, pages = "195--218" -, update = "98.03 mitchell" -, abstract = "For a given set $A\subseteq\ (-\pi;+\pi]$ of angles, the problem ``Angle-Restricted Tour'' (ART) is to decide whether a set $P$ of $n$ points in the +, author = "S{\'a}ndor P. Fekete and Gerhard J. Woeginger" +, title = "Angle-Restricted Tours in the Plane" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, number = 4 +, year = 1997 +, pages = "195--218" +, update = "98.03 mitchell" +, abstract = "For a given set $A\subseteq\ (-\pi;+\pi]$ of angles, the problem ``Angle-Restricted Tour'' (ART) is to decide whether a set $P$ of $n$ points in the Euclidean plane allows a closed directed tour consisting of straight line segments, such that all angles between consecutive line segments are from the set $A$. \par @@ -57456,2835 +57456,2835 @@ @article{fw-artp-97 } @article{ft-ousls-86 -, author = "A. Feldstein and P. R. Turner" -, title = "Overflow, underflow, and severe loss of significance in floating-point addition and subtraction" -, journal = "IMA J. Numer. Analysis" -, volume = 6 -, year = 1986 -, pages = "241--251" -, update = "98.11 bibrelex" +, author = "A. Feldstein and P. R. Turner" +, title = "Overflow, underflow, and severe loss of significance in floating-point addition and subtraction" +, journal = "IMA J. Numer. Analysis" +, volume = 6 +, year = 1986 +, pages = "241--251" +, update = "98.11 bibrelex" } @inproceedings{ft-alfdp-85 -, author = "P. Di Felice and R. Tamassia" -, title = "Automatic Layout of Flow Diagrams: Preliminary Analysis" -, booktitle = "Proc. ISMM" -, year = 1985 -, pages = "263--267" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Di Felice and R. Tamassia" +, title = "Automatic Layout of Flow Diagrams: Preliminary Analysis" +, booktitle = "Proc. ISMM" +, year = 1985 +, pages = "263--267" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{f-iptia-68 -, author = "W. Feller" -, title = "An introduction to probability theory and its applications" -, edition = "3rd" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1968 -, update = "98.03 bibrelex" +, author = "W. Feller" +, title = "An introduction to probability theory and its applications" +, edition = "3rd" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1968 +, update = "98.03 bibrelex" } @incollection{f-pc6ck-89 -, author = "M. Fellows" -, title = "Problem Corner: 6. The complexity of knot triviality and the {Arf} invariant" -, booktitle = "Proc. AMS-IMS-SIAM Joint Summer Research Conf." -, series = "Contemporary Mathematics" -, publisher = "American Mathematical Society" -, year = 1989 -, pages = "189--190" -, update = "97.11 bibrelex" +, author = "M. Fellows" +, title = "Problem Corner: 6. The complexity of knot triviality and the {Arf} invariant" +, booktitle = "Proc. AMS-IMS-SIAM Joint Summer Research Conf." +, series = "Contemporary Mathematics" +, publisher = "American Mathematical Society" +, year = 1989 +, pages = "189--190" +, update = "97.11 bibrelex" } @incollection{fhw-dpmtw-93 -, author = "Michael R. Fellows and Michael T. Hallett and H. Todd Wareham" -, title = "DNA Physical Mapping: {Three} Ways Difficult" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "157--168" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "Michael R. Fellows and Michael T. Hallett and H. Todd Wareham" +, title = "DNA Physical Mapping: {Three} Ways Difficult" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "157--168" +, update = "94.01 smid, 93.09 milone+mitchell" } @article{f-3iipo-94 -, author = "S. Felsner" -, title = "3-Interval Irreducible Partially Ordered Sets" -, journal = "Order" -, volume = 11 -, year = 1994 -, pages = "97--125" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner" +, title = "3-Interval Irreducible Partially Ordered Sets" +, journal = "Order" +, volume = 11 +, year = 1994 +, pages = "97--125" +, update = "97.03 gaertner+salinger" } @inproceedings{f-nap-96 -, author = "Stefan Felsner" -, title = "On the Number of Arrangements of Pseudolines" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "30--37" -, cites = "bepy-htlp-91, blwsz-om-93, eg-bt-87, eg-tsa-89, g-pcbgs-80, gp-sccca-84, gp-asotd-93, g-as-72, k-ah-92, s-nrdec-84, w-mksfs-86, ZZZ" -, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 efrat" +, author = "Stefan Felsner" +, title = "On the Number of Arrangements of Pseudolines" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "30--37" +, cites = "bepy-htlp-91, blwsz-om-93, eg-bt-87, eg-tsa-89, g-pcbgs-80, gp-sccca-84, gp-asotd-93, g-as-72, k-ah-92, s-nrdec-84, w-mksfs-86, ZZZ" +, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 efrat" } @article{f-nap-97 -, author = "Stefan Felsner" -, title = "On the Number of Arrangements of Pseudolines" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "257--267" -, update = "98.03 agarwal" +, author = "Stefan Felsner" +, title = "On the Number of Arrangements of Pseudolines" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "257--267" +, update = "98.03 agarwal" } @article{f-osdg-93 -, author = "S. Felsner" -, title = "Orthogonal Structures in Directed Graphs" -, journal = "J. Combin. Theory (B)" -, volume = 57 -, year = 1993 -, pages = "309--321" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner" +, title = "Orthogonal Structures in Directed Graphs" +, journal = "J. Combin. Theory (B)" +, volume = 57 +, year = 1993 +, pages = "309--321" +, update = "97.03 gaertner+salinger" } @inproceedings{f-tgo-93 -, author = "S. Felsner" -, title = "Tolerance Graphs and Orders" -, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 657 -, year = 1993 -, pages = "17--26" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner" +, title = "Tolerance Graphs and Orders" +, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 657 +, year = 1993 +, pages = "17--26" +, update = "97.03 gaertner+salinger" } @article{fgmr-ccd-94 -, author = "S. Felsner and J. Gustedt and M. Morvan and J. X. Rampon" -, title = "Constructing Colorings for Diagrams" -, journal = "Discrete Appl. Math." -, volume = 51 -, year = 1994 -, pages = "85--93" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner and J. Gustedt and M. Morvan and J. X. Rampon" +, title = "Constructing Colorings for Diagrams" +, journal = "Discrete Appl. Math." +, volume = 51 +, year = 1994 +, pages = "85--93" +, update = "97.03 gaertner+salinger" } @article{fhm-iidd-94 -, author = "S. Felsner and M. Habib and R. H. M{\"o}ring" -, title = "On the Interplay of Interval Dimension and Dimension" -, journal = "SIAM J. Discrete Math." -, volume = 7 -, year = 1994 -, pages = "32--40" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner and M. Habib and R. H. M{\"o}ring" +, title = "On the Interplay of Interval Dimension and Dimension" +, journal = "SIAM J. Discrete Math." +, volume = 7 +, year = 1994 +, pages = "32--40" +, update = "97.03 gaertner+salinger" } @inproceedings{fk-tea-98 -, author = "Stefan Felsner and Klaus Kriegel" -, title = "Triangles in {Euclidean} Arrangements" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Stefan Felsner and Klaus Kriegel" +, title = "Triangles in {Euclidean} Arrangements" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{fm-ish-01 -, author = "Stefan Felsner and Nicole Morawe" -, title = "Infeasibility of Systems of Halfspaces" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "63--65" -, update = "01.04 icking" +, author = "Stefan Felsner and Nicole Morawe" +, title = "Infeasibility of Systems of Halfspaces" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "63--65" +, update = "01.04 icking" } @inproceedings{fmw-tggga-94 -, author = "S. Felsner and R. M{\"u}ller and L. Wernisch" -, title = "Trapezoid Graphs and Generalizations: Geometry and Algorithms" -, booktitle = "Proc. 4th Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 824 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "143--154" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner and R. M{\"u}ller and L. Wernisch" +, title = "Trapezoid Graphs and Generalizations: Geometry and Algorithms" +, booktitle = "Proc. 4th Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 824 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "143--154" +, update = "97.03 gaertner+salinger" } @article{ft-cdioa-95 -, author = "S. Felsner and W. T. Trotter" -, title = "Colorings of Diagrams of Interval Orders and $\alpha$-Sequences of Sets" -, journal = "Discrete Math." -, volume = 144 -, year = 1995 -, pages = "23--32" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner and W. T. Trotter" +, title = "Colorings of Diagrams of Interval Orders and $\alpha$-Sequences of Sets" +, journal = "Discrete Math." +, volume = 144 +, year = 1995 +, pages = "23--32" +, update = "97.03 gaertner+salinger" } @article{ft-fdpos-94 -, author = "S. Felsner and W. T. Trotter" -, title = "On the Fractional Dimension of Partially Ordered Sets" -, journal = "Discrete Math." -, volume = 136 -, year = 1994 -, pages = "101--117" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner and W. T. Trotter" +, title = "On the Fractional Dimension of Partially Ordered Sets" +, journal = "Discrete Math." +, volume = 136 +, year = 1994 +, pages = "101--117" +, update = "97.03 gaertner+salinger" } @inproceedings{fw-cpop-93 -, author = "S. Felsner and D. Wagner" -, title = "On the Complexity of Partial Order Properties" -, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 657 -, year = 1993 -, pages = "225--235" -, update = "97.03 gaertner+salinger" +, author = "S. Felsner and D. Wagner" +, title = "On the Complexity of Partial Order Properties" +, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 657 +, year = 1993 +, pages = "225--235" +, update = "97.03 gaertner+salinger" } @inproceedings{fw-sahbo-98 -, author = "Stefan Felsner and Helmut Weil" -, title = "Sweeps, Arrangements and Higher {Bruhat} Orders" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = 77 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Stefan Felsner and Helmut Weil" +, title = "Sweeps, Arrangements and Higher {Bruhat} Orders" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = 77 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{fw-mkcpp-93 -, author = "S. Felsner and L. Wernisch" -, title = "Maximum $k$-Chains in Planar Point Sets: {Combinatorial} Structure and Algorithms" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "??" +, author = "S. Felsner and L. Wernisch" +, title = "Maximum $k$-Chains in Planar Point Sets: {Combinatorial} Structure and Algorithms" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "??" } @article{fs-lda1-35 -, author = "W. Fenchel and J. Sutherland" -, title = "L{\"o}sung der {Aufgabe} $167$" -, journal = "Jahresbericht Deutsch. Math. Verein" -, volume = 45 -, year = 1935 -, pages = "33--35" -, update = "98.03 bibrelex" +, author = "W. Fenchel and J. Sutherland" +, title = "L{\"o}sung der {Aufgabe} $167$" +, journal = "Jahresbericht Deutsch. Math. Verein" +, volume = 45 +, year = 1935 +, pages = "33--35" +, update = "98.03 bibrelex" } @article{fp-dpscf-75 -, author = "H. Y. F. Feng and T. Pavlidis" -, title = "Decomposition of polygons into simpler components: feature generation for syntactic pattern recognition" -, journal = "IEEE Trans. Comput." -, volume = "C-24" -, year = 1975 -, pages = "636--650" +, author = "H. Y. F. Feng and T. Pavlidis" +, title = "Decomposition of polygons into simpler components: feature generation for syntactic pattern recognition" +, journal = "IEEE Trans. Comput." +, volume = "C-24" +, year = 1975 +, pages = "636--650" } @techreport{fh-rcgtt-91 -, author = "S. C. Feng and T. H. Hopp" -, title = "A review of current geometric tolerancing theories and inspection data analysis algorithms" -, type = "Technical {Report}" -, number = "NISTIR-4509" -, institution = "Factory Automation Systems Division, U.S. Department of Commerce, National Institute of Standards and Technology" -, address = "Gaithersburg, MD" -, month = feb -, year = 1991 -, update = "98.07 bibrelex" +, author = "S. C. Feng and T. H. Hopp" +, title = "A review of current geometric tolerancing theories and inspection data analysis algorithms" +, type = "Technical {Report}" +, number = "NISTIR-4509" +, institution = "Factory Automation Systems Division, U.S. Department of Commerce, National Institute of Standards and Technology" +, address = "Gaithersburg, MD" +, month = feb +, year = 1991 +, update = "98.07 bibrelex" } @inproceedings{f-lsavd-91 -, author = "P. Ferianc" -, title = "Linear systolic array for {Voronoi} diagram construction in linear time" -, booktitle = "Proc. Geobild '91" -, series = "Research in Informatics" -, volume = 4 -, publisher = "Akademie-Verlag" -, year = 1991 -, pages = "120--125" -, keywords = "parallel computations, Voronoi diagram" -, update = "95.09 korneenko" +, author = "P. Ferianc" +, title = "Linear systolic array for {Voronoi} diagram construction in linear time" +, booktitle = "Proc. Geobild '91" +, series = "Research in Informatics" +, volume = 4 +, publisher = "Akademie-Verlag" +, year = 1991 +, pages = "120--125" +, keywords = "parallel computations, Voronoi diagram" +, update = "95.09 korneenko" } @inproceedings{f-ssapo-90 -, author = "D. Fern{\'a}ndez-Baca" -, title = "Space-sweep algorithms for parametric optimization" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "264--275" +, author = "D. Fern{\'a}ndez-Baca" +, title = "Space-sweep algorithms for parametric optimization" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "264--275" } @article{fm-pmapt -, author = "D. Fern{\'a}ndez-Baca and A. Medepalli" -, title = "Parametric module allocation on partial $k$-trees" -, journal = "IEEE Trans. Comput." -, volume = 42 -, year = 1993 -, pages = "738--742" -, update = "96.05 agarwal" +, author = "D. Fern{\'a}ndez-Baca and A. Medepalli" +, title = "Parametric module allocation on partial $k$-trees" +, journal = "IEEE Trans. Comput." +, volume = 42 +, year = 1993 +, pages = "738--742" +, update = "96.05 agarwal" } @techreport{fm-dgmnc-69 -, author = "D. Ferrari and L. Mezzalira" -, title = "On Drawing a Graph with the Minimum Number of Crossings" -, number = "69-11" -, institution = "Istituto di Elettrotecnica ed Elettronica, Politecnico di Milano" -, year = 1969 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. Ferrari and L. Mezzalira" +, title = "On Drawing a Graph with the Minimum Number of Crossings" +, number = "69-11" +, institution = "Istituto di Elettrotecnica ed Elettronica, Politecnico di Milano" +, year = 1969 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{fss-mrpdb-80 -, author = "L. Ferrari and P. V. Sankar and J. Sklansky" -, title = "Minimal rectangular partitions of digitized blobs" -, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn." -, year = 1980 -, pages = "1040--1043" -, precedes = "fss-mrpdb-84" -, update = "97.11 bibrelex" +, author = "L. Ferrari and P. V. Sankar and J. Sklansky" +, title = "Minimal rectangular partitions of digitized blobs" +, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn." +, year = 1980 +, pages = "1040--1043" +, precedes = "fss-mrpdb-84" +, update = "97.11 bibrelex" } @article{fss-mrpdb-84 -, author = "L. Ferrari and P. V. Sankar and J. Sklansky" -, title = "Minimal rectangular partitions of digitized blobs" -, journal = "Comput. Vision Graph. Image Process." -, volume = 28 -, number = 1 -, year = 1984 -, pages = "58--71" -, keywords = "isothetic polygons, partition, rectangles" -, precedes = "fss-mrpdb-80" -, update = "97.11 bibrelex, 95.09 korneenko" +, author = "L. Ferrari and P. V. Sankar and J. Sklansky" +, title = "Minimal rectangular partitions of digitized blobs" +, journal = "Comput. Vision Graph. Image Process." +, volume = 28 +, number = 1 +, year = 1984 +, pages = "58--71" +, keywords = "isothetic polygons, partition, rectangles" +, precedes = "fss-mrpdb-80" +, update = "97.11 bibrelex, 95.09 korneenko" } @inproceedings{fp-fsprp-91 -, author = "A. Ferreira and J. G. Peters" -, title = "Finding smallest paths in rectilinear polygons on a hypercube multiprocessor" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "162--165" -, cites = "acgoy-pcg-88, acg-cdctd-89, cp-dsnlt-90, d-rld-89, dfr-pfchm-89, dr-idshm-90, kr-pasmm-90, mp-spsrp-89, s-rcg-84, ZZZ" -, update = "98.07 bibrelex" +, author = "A. Ferreira and J. G. Peters" +, title = "Finding smallest paths in rectilinear polygons on a hypercube multiprocessor" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "162--165" +, cites = "acgoy-pcg-88, acg-cdctd-89, cp-dsnlt-90, d-rld-89, dfr-pfchm-89, dr-idshm-90, kr-pasmm-90, mp-spsrp-89, s-rcg-84, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{forv-hvvnp-94 -, author = "V. Ferrucci and M. H. Overmars and A. Rao and J. Vleugels" -, title = "Hunting {Voronoi} Vertices in Non-Polygonal Domains" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "45--50" -, precedes = "vfor-hvv-96" -, cites = "ay-aampt2-90, a-vdsfg-91, bpv-ocdat-84, g-cp-67, hss-pgcrm-87, ks-tpscv-93, k-eccs-79, km-st-76, l-rmp-91, ly-ptic-75, osy-rnamp-83, obs-stcav-92, o-ramp-92, y-oavds-87, g-plpg-93, ZZZ" -, update = "98.11 bibrelex, 98.07 agarwal, 97.03 devillers+smid, 94.09 jones" +, author = "V. Ferrucci and M. H. Overmars and A. Rao and J. Vleugels" +, title = "Hunting {Voronoi} Vertices in Non-Polygonal Domains" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "45--50" +, precedes = "vfor-hvv-96" +, cites = "ay-aampt2-90, a-vdsfg-91, bpv-ocdat-84, g-cp-67, hss-pgcrm-87, ks-tpscv-93, k-eccs-79, km-st-76, l-rmp-91, ly-ptic-75, osy-rnamp-83, obs-stcav-92, o-ramp-92, y-oavds-87, g-plpg-93, ZZZ" +, update = "98.11 bibrelex, 98.07 agarwal, 97.03 devillers+smid, 94.09 jones" } @article{fp-ebemp-91 -, author = "V. Ferrucci and A. Paoluzzi" -, title = "An extrusion and boundary evaluation for multidimensional polyhedra" -, journal = "Comput. Aided Design" -, volume = 23 -, number = 1 -, year = 1991 -, pages = "40--50" -, update = "98.07 bibrelex" +, author = "V. Ferrucci and A. Paoluzzi" +, title = "An extrusion and boundary evaluation for multidimensional polyhedra" +, journal = "Comput. Aided Design" +, volume = 23 +, number = 1 +, year = 1991 +, pages = "40--50" +, update = "98.07 bibrelex" } @phdthesis{f-gcago-88 -, author = "R. A. Ferstenberg" -, title = "Geometric considerations for automatic generation of optimized cutter paths for $3$-axis numerically controlled milling" -, type = "Ph.{D}. Thesis" -, school = "Sibley School Mech. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1988 -, keywords = "doctoral thesis" +, author = "R. A. Ferstenberg" +, title = "Geometric considerations for automatic generation of optimized cutter paths for $3$-axis numerically controlled milling" +, type = "Ph.{D}. Thesis" +, school = "Sibley School Mech. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1988 +, keywords = "doctoral thesis" } @techreport{fm-gp-94 -, author = "E. Feuerstein and A. Marchetti-Spaccamela" -, title = "Graph Paging" -, number = "" -, institution = "Universit\`a di Roma, La Sapienza" -, year = 1994 -, update = "95.01 devillers" +, author = "E. Feuerstein and A. Marchetti-Spaccamela" +, title = "Graph Paging" +, number = "" +, institution = "Universit\`a di Roma, La Sapienza" +, year = 1994 +, update = "95.01 devillers" } @article{fhmst-spcd-01 -, author = "Thomas Fevens and Antonio Hernandez and Antonio Mesa and Michael Soss and Godfried Toussaint" -, title = "Simple polygons that cannot be deflated" -, journal = "Beitr{\"a}ge zur Algebra und Geometrie (Contributions to Algebra and Geometry)" -, volume = "??" -, year = 2001 -, note = "To appear" -, comments = "Manuscript. School of Computer Science, McGill University +, author = "Thomas Fevens and Antonio Hernandez and Antonio Mesa and Michael Soss and Godfried Toussaint" +, title = "Simple polygons that cannot be deflated" +, journal = "Beitr{\"a}ge zur Algebra und Geometrie (Contributions to Algebra and Geometry)" +, volume = "??" +, year = 2001 +, note = "To appear" +, comments = "Manuscript. School of Computer Science, McGill University June 2000 \url{http://cgm.cs.mcgill.ca/~godfried/publications/deflation.ps.gz}" -, update = "02.03 orourke" +, update = "02.03 orourke" } @inproceedings{fmr-mcpcp-98 -, author = "Thomas Fevens and Henk Meijer and David Rappaport" -, title = "Minimum Convex Partition of a Constrained Point Set" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "79--81" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Thomas Fevens and Henk Meijer and David Rappaport" +, title = "Minimum Convex Partition of a Constrained Point Set" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "79--81" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{f-splrt-55 -, author = "L. Few" -, title = "The shortest path and the shortest road through $n$ points in a region" -, journal = "Mathematika" -, volume = 2 -, year = 1955 -, pages = "141--144" -, update = "00.03 smid, 98.03 smid, 97.11 bibrelex" +, author = "L. Few" +, title = "The shortest path and the shortest road through $n$ points in a region" +, journal = "Mathematika" +, volume = 2 +, year = 1955 +, pages = "141--144" +, update = "00.03 smid, 98.03 smid, 97.11 bibrelex" } @book{fls-flp-63 -, author = "?? Feynmann and ?? Leighton and ?? Sands" -, title = "The {Feynmann} Lectures on Physics" -, volume = 1 -, publisher = "Addison-Wesley" -, year = 1963 -, update = "01.07 devillers, 98.07 bibrelex" +, author = "?? Feynmann and ?? Leighton and ?? Sands" +, title = "The {Feynmann} Lectures on Physics" +, volume = 1 +, publisher = "Addison-Wesley" +, year = 1963 +, update = "01.07 devillers, 98.07 bibrelex" } @proceedings{fks-p8ccc-96 -, title = "Proc. 8th Canadian Conference on Computational Geometry" -, editor = "F. Fiala and E. Kranakis and J.-R. Sack" -, series = 5 -, publisher = "International Informatics" -, year = 1996 -, update = "97.11 sack" +, title = "Proc. 8th Canadian Conference on Computational Geometry" +, editor = "F. Fiala and E. Kranakis and J.-R. Sack" +, series = 5 +, publisher = "International Informatics" +, year = 1996 +, update = "97.11 sack" } @article{fs-hfb-89 -, author = "A. Fiat and A. Shamir" -, title = "How to find a battleship" -, journal = "Networks" -, volume = 19 -, year = 1989 -, pages = "361--371" -, keywords = "probing" -, update = "95.09 korneenko" +, author = "A. Fiat and A. Shamir" +, title = "How to find a battleship" +, journal = "Networks" +, volume = 19 +, year = 1989 +, pages = "361--371" +, keywords = "probing" +, update = "95.09 korneenko" } @book{fw-ola-98 -, title = "Online Algorithms: The State of the Art" -, editor = "Amos Fiat and Gerhard Woeginger" -, series = "Lecture Notes Comput. Sci." -, volume = 1442 -, publisher = "Springer-Verlag" -, year = 1998 -, isbn = "3-540-64917-4" -, update = "02.03 icking, 99.03 bibrelex, 97.03 icking" +, title = "Online Algorithms: The State of the Art" +, editor = "Amos Fiat and Gerhard Woeginger" +, series = "Lecture Notes Comput. Sci." +, volume = 1442 +, publisher = "Springer-Verlag" +, year = 1998 +, isbn = "3-540-64917-4" +, update = "02.03 icking, 99.03 bibrelex, 97.03 icking" } @techreport{ffg-eacw0-92 -, author = "M. Fidrich and J. Frenk and J. Gromicho" -, title = "An efficient algorithm to check whether $0$ belongs to the convex hull of a finite number of {$L_p$}-circles" -, number = "9204/a" -, institution = "Econometric Institute" -, address = "Netherlands" -, year = 1992 -, update = "93.09 milone+mitchell" +, author = "M. Fidrich and J. Frenk and J. Gromicho" +, title = "An efficient algorithm to check whether $0$ belongs to the convex hull of a finite number of {$L_p$}-circles" +, number = "9204/a" +, institution = "Econometric Institute" +, address = "Netherlands" +, year = 1992 +, update = "93.09 milone+mitchell" } @techreport{f-fdta-87 -, author = "D. Field" -, title = "A Flexible {Delaunay} Triangulation Algorithm" -, type = "Research Publication" -, number = "GMR-5675" -, institution = "General Motors" -, year = 1987 -, annote = "Extends Watson's algorithm to (2 and 3 D) to allow - point deletion. Uses this for Laplacian smoothing." +, author = "D. Field" +, title = "A Flexible {Delaunay} Triangulation Algorithm" +, type = "Research Publication" +, number = "GMR-5675" +, institution = "General Motors" +, year = 1987 +, annote = "Extends Watson's algorithm to (2 and 3 D) to allow + point deletion. Uses this for Laplacian smoothing." } @article{f-nndsp-87 -, author = "D. A. Field" -, title = "A note on a new data structure for in-the-past queries" -, journal = "Inform. Process. Lett." -, volume = 24 -, year = 1987 -, pages = "95--96" +, author = "D. A. Field" +, title = "A note on a new data structure for in-the-past queries" +, journal = "Inform. Process. Lett." +, volume = 24 +, year = 1987 +, pages = "95--96" } @article{f-gdtaf-91 -, author = "D. A. Field" -, title = "Generic {Delaunay} Triangulation Algorithm For Finite Element Meshes" -, journal = "Advances in Engineering Software and Workstations" -, volume = 13 -, number = "5--6" -, month = sep -, year = 1991 -, pages = "263--272" -, keywords = "generic Delaunay triangulation algorithms, finite element meshes, Voronoi diagrams" -, update = "97.07 devillers" -, annote = "About $k/d$ Dts. These are $k$-simplices with empty - hypersphere property, embedded in $d$-dimensional - space. (A subset of regular Dt). Watson's to - construct." -, abstract = "A mathematical framework for the construction of k - dimensional meshes embedded in n dimensions is - provided. By extending Delaunay triangulations a - generic triangulation algorithm is stated along with - methods for assessing the shapes of simplices. Planar - surface and solid meshes illustrate the algorithm. - (Author abstract) 31 Refs." +, author = "D. A. Field" +, title = "Generic {Delaunay} Triangulation Algorithm For Finite Element Meshes" +, journal = "Advances in Engineering Software and Workstations" +, volume = 13 +, number = "5--6" +, month = sep +, year = 1991 +, pages = "263--272" +, keywords = "generic Delaunay triangulation algorithms, finite element meshes, Voronoi diagrams" +, update = "97.07 devillers" +, annote = "About $k/d$ Dts. These are $k$-simplices with empty + hypersphere property, embedded in $d$-dimensional + space. (A subset of regular Dt). Watson's to + construct." +, abstract = "A mathematical framework for the construction of k + dimensional meshes embedded in n dimensions is + provided. By extending Delaunay triangulations a + generic triangulation algorithm is stated along with + methods for assessing the shapes of simplices. Planar + surface and solid meshes illustrate the algorithm. + (Author abstract) 31 Refs." } @inproceedings{f-iwatd-86 -, author = "D. A. Field" -, title = "Implementing {Watson}'s algorithm in three dimensions" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "246--259" -, keywords = "Delaunay triangulations, implementing algorithms, three-dimensional" -, cites = "bg-gimha-84, cff-aatdf-85, ff-atmg-86, k-isasm-82, w-cnddt-81, z-fem-77, ZZZ" -, update = "98.03 bibrelex" +, author = "D. A. Field" +, title = "Implementing {Watson}'s algorithm in three dimensions" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "246--259" +, keywords = "Delaunay triangulations, implementing algorithms, three-dimensional" +, cites = "bg-gimha-84, cff-aatdf-85, ff-atmg-86, k-isasm-82, w-cnddt-81, z-fem-77, ZZZ" +, update = "98.03 bibrelex" } @article{f-lsdt-88 -, author = "David A. Field" -, title = "{Laplacian} Smoothing And {Delaunay} Triangulations" -, journal = "Communications in Applied Numerical Methods" -, volume = 4 -, number = 6 -, month = nov -, year = 1988 -, pages = "709--712" -, keywords = "laplacian smoothing, Delaunay triangulations" -, annote = "After each step of Laplacian smoothing, do a local - retriangulation." -, abstract = "In contrast to most triangulation algorithms which - implicitly assume that triangulation point locations - are fixed, 'Laplacian' smoothing focuses on moving - point locations to improve triangulation. Laplacian - smoothing is attractive for its simplicity but it does - require an existing triangulation. In this paper the - effect of Laplacian smoothing on Delaunay - triangulations is explored. It will become clear that - constraining Laplacian smoothing to maintain a Delaunay - triangulation measurably improves Laplacian smoothing. - (Author abstract) 11 Refs." +, author = "David A. Field" +, title = "{Laplacian} Smoothing And {Delaunay} Triangulations" +, journal = "Communications in Applied Numerical Methods" +, volume = 4 +, number = 6 +, month = nov +, year = 1988 +, pages = "709--712" +, keywords = "laplacian smoothing, Delaunay triangulations" +, annote = "After each step of Laplacian smoothing, do a local + retriangulation." +, abstract = "In contrast to most triangulation algorithms which + implicitly assume that triangulation point locations + are fixed, 'Laplacian' smoothing focuses on moving + point locations to improve triangulation. Laplacian + smoothing is attractive for its simplicity but it does + require an existing triangulation. In this paper the + effect of Laplacian smoothing on Delaunay + triangulations is explored. It will become clear that + constraining Laplacian smoothing to maintain a Delaunay + triangulation measurably improves Laplacian smoothing. + (Author abstract) 11 Refs." } @techreport{ff-atmg-86 -, author = "D. A. Field and W. H. Frey" -, title = "Automation of tetrahedral mesh generation" -, number = "GMR-4967" -, institution = "General Motors Research Laboratories, Warren" -, year = 1986 -, update = "98.03 bibrelex" +, author = "D. A. Field and W. H. Frey" +, title = "Automation of tetrahedral mesh generation" +, number = "GMR-4967" +, institution = "General Motors Research Laboratories, Warren" +, year = 1986 +, update = "98.03 bibrelex" } @inproceedings{fn-sttm-92 -, author = "David A. Field and Thomas W. Nehl" -, title = "Stitching Together Tetrahedral Meshes" -, booktitle = "Proceedings of the SIAM Regional Conference on Geometric Aspects of Industrial Design" -, publisher = "Soc. for Industrial \& Applied Mathematics" -, address = "Philadelphia, PA" -, year = 1992 -, pages = "25--38" -, keywords = "Delaunay based stitching algorithm, tetrahedral meshes, Delaunay criterion of two dimensional triangular meshes, magnetostatics fields" -, update = "93.09 rote" -, annote = "3D Dt is constrained to fit 2D Dt of surface. Watson's - alg." -, abstract = "A Delaunay based algorithm has been developed for - stitching together two tetrahedral meshes separated by - a planar gap of finite thickness. It is assumed that - the tetrahedral faces on either side of the planar gap - satisfy the Delaunay criterion of two dimensional - triangular meshes. The stitching algorithm is applied - to a first order tetrahedral finite element mesh model - of a prototype magnetostatics problems. Intended for - the finite element analysis of three dimensional - magnetostatics fields, this mesh is generated in two - parts and, due to geometric differences, is stitched - together in a narrow air gap region which separates - them. In addition to preserving the structure of an - existing tetrahedral mesh, material boundaries are - preserved and severe length scale problems are - overcome. (Author abstract) 10 Refs." +, author = "David A. Field and Thomas W. Nehl" +, title = "Stitching Together Tetrahedral Meshes" +, booktitle = "Proceedings of the SIAM Regional Conference on Geometric Aspects of Industrial Design" +, publisher = "Soc. for Industrial \& Applied Mathematics" +, address = "Philadelphia, PA" +, year = 1992 +, pages = "25--38" +, keywords = "Delaunay based stitching algorithm, tetrahedral meshes, Delaunay criterion of two dimensional triangular meshes, magnetostatics fields" +, update = "93.09 rote" +, annote = "3D Dt is constrained to fit 2D Dt of surface. Watson's + alg." +, abstract = "A Delaunay based algorithm has been developed for + stitching together two tetrahedral meshes separated by + a planar gap of finite thickness. It is assumed that + the tetrahedral faces on either side of the planar gap + satisfy the Delaunay criterion of two dimensional + triangular meshes. The stitching algorithm is applied + to a first order tetrahedral finite element mesh model + of a prototype magnetostatics problems. Intended for + the finite element analysis of three dimensional + magnetostatics fields, this mesh is generated in two + parts and, due to geometric differences, is stitched + together in a narrow air gap region which separates + them. In addition to preserving the structure of an + existing tetrahedral mesh, material boundaries are + preserved and severe length scale problems are + overcome. (Author abstract) 10 Refs." } @article{fs-gtfem-91 -, author = "David A. Field and Warren D. Smith" -, title = "Graded Tetrahedral Finite Element Meshes" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 31 -, number = 3 -, year = 1991 -, pages = "413--425" -, annote = "Uses octree based on body centred cubic lattice of - tetras. (Typical bcc tetra has vertices $(-1,0,0), - (0,1,-1), (0,1,1), (1,0,0)$)" -, abstract = "Vertices in the body centred cubic (bcc) lattice are - used to create a tetrahedral spatial decomposition. - With this spatial decomposition an octree approach is - combined with Delaunay triangulations to decompose - solids into tetrahedral finite element meshes. Solids - must have their surfaces triangulated and the vertices - in the triangulation are finite element nodes. Local - densities of interior tetrahedra are controlled by the - densities of surface triangles. Accuracy of the - decomposition into finite elements depends on the - accuracy of the surface triangulation which can be - constructed with state of the art computer aided design - systems. (Author abstract) 22 Refs." +, author = "David A. Field and Warren D. Smith" +, title = "Graded Tetrahedral Finite Element Meshes" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 31 +, number = 3 +, year = 1991 +, pages = "413--425" +, annote = "Uses octree based on body centred cubic lattice of + tetras. (Typical bcc tetra has vertices $(-1,0,0), + (0,1,-1), (0,1,1), (1,0,0)$)" +, abstract = "Vertices in the body centred cubic (bcc) lattice are + used to create a tetrahedral spatial decomposition. + With this spatial decomposition an octree approach is + combined with Delaunay triangulations to decompose + solids into tetrahedral finite element meshes. Solids + must have their surfaces triangulated and the vertices + in the triangulation are finite element nodes. Local + densities of interior tetrahedra are controlled by the + densities of surface triangles. Accuracy of the + decomposition into finite elements depends on the + accuracy of the surface triangulation which can be + constructed with state of the art computer aided design + systems. (Author abstract) 22 Refs." } @techreport{f-adlct-82 -, author = "D. E. Field" -, title = "Algorithms for drawing lines, curves, and triangles" -, type = "Report" -, number = "TR310" -, institution = "Dept. Elect. Engrg. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1982 -, keywords = "aliasing, anti-aliasing, filtering techniques" +, author = "D. E. Field" +, title = "Algorithms for drawing lines, curves, and triangles" +, type = "Report" +, number = "TR310" +, institution = "Dept. Elect. Engrg. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1982 +, keywords = "aliasing, anti-aliasing, filtering techniques" } @phdthesis{f-adsgo-83 -, author = "D. E. Field" -, title = "Algorithms for drawing simple geometric objects on raster devices" -, type = "Ph.{D}. Thesis" -, school = "Dept. Elect. Engrg. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1983 -, note = "Technical Report TR314" -, keywords = "doctoral thesis" -, comments = "UMI PRH83-18698, 146 pp." -, update = "93.09 jones" +, author = "D. E. Field" +, title = "Algorithms for drawing simple geometric objects on raster devices" +, type = "Ph.{D}. Thesis" +, school = "Dept. Elect. Engrg. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1983 +, note = "Technical Report TR314" +, keywords = "doctoral thesis" +, comments = "UMI PRH83-18698, 146 pp." +, update = "93.09 jones" } @article{ff-famwt-90 -, author = "M. C. Fields and G. N. Frederickson" -, title = "A faster algorithm for the maximum weighted tardiness problem" -, journal = "Inform. Process. Lett." -, volume = 36 -, number = 1 -, year = 1990 -, pages = "39--44" -, keywords = "convex hull, dynamizing, lines, geometric transformations" -, update = "96.09 agarwal, 95.09 korneenko" +, author = "M. C. Fields and G. N. Frederickson" +, title = "A faster algorithm for the maximum weighted tardiness problem" +, journal = "Inform. Process. Lett." +, volume = 36 +, number = 1 +, year = 1990 +, pages = "39--44" +, keywords = "convex hull, dynamizing, lines, geometric transformations" +, update = "96.09 agarwal, 95.09 korneenko" } @unpublished{fo-fdmm- -, author = "G.-J. Fiezeman and M. H. Overmars" -, title = "Fast display of molecular models" -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "G.-J. Fiezeman and M. H. Overmars" +, title = "Fast display of molecular models" +, note = "In preparation" +, update = "98.03 bibrelex" } @article{fg-cmc-95 -, author = "L. H. de Figueiredo and J. de Miranda Gomes" -, title = "Computational morphology of curves" -, journal = "Visual Comput." -, volume = 11 -, year = 1995 -, pages = "105--112" -, update = "00.03 orourke" +, author = "L. H. de Figueiredo and J. de Miranda Gomes" +, title = "Computational morphology of curves" +, journal = "Visual Comput." +, volume = 11 +, year = 1995 +, pages = "105--112" +, update = "00.03 orourke" } @article{fmm-saubd-86 -, author = "D. Filip and R. Magedson and R. Markot" -, title = "Surface algorithms using bounds on derivatives" -, journal = "Comput. Aided Geom. Design" -, volume = 3 -, year = 1986 -, pages = "295--311" -, update = "97.11 bibrelex" +, author = "D. Filip and R. Magedson and R. Markot" +, title = "Surface algorithms using bounds on derivatives" +, journal = "Comput. Aided Geom. Design" +, volume = 3 +, year = 1986 +, pages = "295--311" +, update = "97.11 bibrelex" } @article{fyp-cmbs-93 -, author = "P. C. Filkins and S. T. Tuohy and N. M. Patrikalakis" -, title = "Computational Methods for Blending Surface Approximation" -, journal = "Engineering with Computers" -, volume = 9 -, number = 1 -, year = 1993 -, pages = "49--62" -, update = "95.05 abrams" +, author = "P. C. Filkins and S. T. Tuohy and N. M. Patrikalakis" +, title = "Computational Methods for Blending Surface Approximation" +, journal = "Engineering with Computers" +, volume = 9 +, number = 1 +, year = 1993 +, pages = "49--62" +, update = "95.05 abrams" } @article{f-eapp-90 -, author = "P. Filliman" -, title = "Exterior algebra and projections of polytopes" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "305--322" +, author = "P. Filliman" +, title = "Exterior algebra and projections of polytopes" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "305--322" } @article{f-epz-88 -, author = "P. Filliman" -, title = "Extremum problems for zonotopes" -, journal = "Geom. Dedicata" -, volume = 27 -, number = 3 -, year = 1988 -, pages = "251--262" -, update = "95.09 korneenko" +, author = "P. Filliman" +, title = "Extremum problems for zonotopes" +, journal = "Geom. Dedicata" +, volume = 27 +, number = 3 +, year = 1988 +, pages = "251--262" +, update = "95.09 korneenko" } @unpublished{f-pp-87 -, author = "P. Filliman" -, title = "Projections of polytopes" -, month = mar -, year = 1987 -, note = "Submitted for publication" -, update = "98.03 bibrelex" +, author = "P. Filliman" +, title = "Projections of polytopes" +, month = mar +, year = 1987 +, note = "Submitted for publication" +, update = "98.03 bibrelex" } @article{f-aicgt-80 -, author = "I. S. Filotti" -, title = "An algorithm for imbedding cubic graphs in the torus" -, journal = "J. Comput. Syst. Sci." -, volume = 20 -, year = 1980 -, pages = "255--276" -, succeeds = "f-eadwc-78" +, author = "I. S. Filotti" +, title = "An algorithm for imbedding cubic graphs in the torus" +, journal = "J. Comput. Syst. Sci." +, volume = 20 +, year = 1980 +, pages = "255--276" +, succeeds = "f-eadwc-78" } @inproceedings{f-eadwc-78 -, author = "I. S. Filotti" -, title = "An efficient algorithm for determining whether a cubic graph is toroidal" -, booktitle = "Proc. 10th Annu. ACM Sympos. Theory Comput." -, year = 1978 -, pages = "133--141" -, precedes = "f-aicgt-80" +, author = "I. S. Filotti" +, title = "An efficient algorithm for determining whether a cubic graph is toroidal" +, booktitle = "Proc. 10th Annu. ACM Sympos. Theory Comput." +, year = 1978 +, pages = "133--141" +, precedes = "f-aicgt-80" } @techreport{fmr-dggo-79 -, author = "I. S. Filotti and G. L. Miller and J. Reif" -, title = "On determining the genus of a graph in {$O(v^{O(g)})$}" -, type = "Manuscript" -, institution = "??" -, year = 1979 +, author = "I. S. Filotti and G. L. Miller and J. Reif" +, title = "On determining the genus of a graph in {$O(v^{O(g)})$}" +, type = "Manuscript" +, institution = "??" +, year = 1979 } @article{fw-utpf-81 -, author = "N. J. Fine and H. S. Wilf" -, title = "Uniqueness theorems for periodic functions" -, journal = "Proc. Amer. Math. Soc." -, volume = 16 -, year = 1981 -, pages = "109--114" -, update = "98.07 bibrelex" +, author = "N. J. Fine and H. S. Wilf" +, title = "Uniqueness theorems for periodic functions" +, journal = "Proc. Amer. Math. Soc." +, volume = 16 +, year = 1981 +, pages = "109--114" +, update = "98.07 bibrelex" } @inproceedings{fw-gh-96 -, author = "E. Fink and D. Wood" -, title = "Generalizing halfspaces" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "211--216" -, update = "96.09 mitchell" +, author = "E. Fink and D. Wood" +, title = "Generalizing halfspaces" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "211--216" +, update = "96.09 mitchell" } @inproceedings{fw-tdroc-96 -, author = "E. Fink and D. Wood" -, title = "Three-dimensional restricted-orientation convexity" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "258--263" -, update = "96.09 mitchell" +, author = "E. Fink and D. Wood" +, title = "Three-dimensional restricted-orientation convexity" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "258--263" +, update = "96.09 mitchell" } @inproceedings{fw-tdroc-96c -, author = "Eugene Fink and Derick Wood" -, title = "Three-Dimensional Restricted-Orientation Convexity" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "7--10" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Eugene Fink and Derick Wood" +, title = "Three-Dimensional Restricted-Orientation Convexity" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "7--10" +, update = "00.03 bibrelex, 99.03 bibrelex" } @phdthesis{f-afv-94 -, author = "U. Finke" -, title = "Algorithmen f{\"u}r {Verschneidungsoperationen}" -, school = "University of Siegen" -, address = "Siegen, Germany" -, year = 1994 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "U. Finke" +, title = "Algorithmen f{\"u}r {Verschneidungsoperationen}" +, school = "University of Siegen" +, address = "Siegen, Germany" +, year = 1994 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{fh-oscps-95 -, author = "Ulrich Finke and Klaus Hinrichs" -, title = "Overlaying simply connected planar subdivisions in linear time" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "119--126" -, keywords = "red-blue segment intersection" -, cites = "c-stsar-94, c-tsplt-91a, f-afv-94, gs-ccrs-86, gs-pmgsc-85, s-sfira-91, w-vfgi-94, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Ulrich Finke and Klaus Hinrichs" +, title = "Overlaying simply connected planar subdivisions in linear time" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "119--126" +, keywords = "red-blue segment intersection" +, cites = "c-stsar-94, c-tsplt-91a, f-afv-94, gs-ccrs-86, gs-pmgsc-85, s-sfira-91, w-vfgi-94, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{fh-qvdsr-95 -, author = "U. Finke and K. H. Hinrichs" -, title = "The Quad View Data Structure: a Representation for Planar Subdivisions" -, booktitle = "Proc. 6th? Sympos. Advances in Spatial Databases" -, series = "Lecture Notes Comput. Sci." -, number = 951 -, year = 1995 -, pages = "29--46" -, update = "96.09 kreveld" +, author = "U. Finke and K. H. Hinrichs" +, title = "The Quad View Data Structure: a Representation for Planar Subdivisions" +, booktitle = "Proc. 6th? Sympos. Advances in Spatial Databases" +, series = "Lecture Notes Comput. Sci." +, number = 951 +, year = 1995 +, pages = "29--46" +, update = "96.09 kreveld" } @article{fb-qtdsr-74 -, author = "R. A. Finkel and J. L. Bentley" -, title = "Quad trees: a data structure for retrieval on composite keys" -, journal = "Acta Inform." -, volume = 4 -, year = 1974 -, pages = "1--9" +, author = "R. A. Finkel and J. L. Bentley" +, title = "Quad trees: a data structure for retrieval on composite keys" +, journal = "Acta Inform." +, volume = 4 +, year = 1974 +, pages = "1--9" } @inproceedings{fm-rprpr-97 -, author = "U. Finkler and K. Mehlhorn" -, title = "Runtime Prediction of Real Programs on Real Machines" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1997 -, pages = "380--389" -, update = "97.03 held" +, author = "U. Finkler and K. Mehlhorn" +, title = "Runtime Prediction of Real Programs on Real Machines" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1997 +, pages = "380--389" +, update = "97.03 held" } @inproceedings{fb-pagtc-92 -, author = "G. D. Finlayson and B. K. Bhattacharya" -, title = "A practical algorithm for the greedy triangulation of a convex polygon" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "347--352" -, cites = "fbf-afbml-77, k-mtpd-80, lp-annpc-78, ll-abgtc-87, ll-fagt-90, h-mg-73, ZZZ" -, update = "98.07 bibrelex" +, author = "G. D. Finlayson and B. K. Bhattacharya" +, title = "A practical algorithm for the greedy triangulation of a convex polygon" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "347--352" +, cites = "fbf-afbml-77, k-mtpd-80, lp-annpc-78, ll-abgtc-87, ll-fagt-90, h-mg-73, ZZZ" +, update = "98.07 bibrelex" } @incollection{fhklmsv-gmfl-96 -, author = "P. Finn and D. Halperin and L. Kavraki and J.-C. Latombe and R. Motwani and C. Shelton and S. Venkatsubramanian" -, title = "Geometric manipulation of flexible ligands" -, editor = "M. C. Lin and D. Manocha" -, booktitle = "Applied Computational Geometry: Towards Geometric Engineering" -, series = "Lecture Notes Comput. Sci." -, volume = 1148 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "67--78" -, update = "98.07 bibrelex" +, author = "P. Finn and D. Halperin and L. Kavraki and J.-C. Latombe and R. Motwani and C. Shelton and S. Venkatsubramanian" +, title = "Geometric manipulation of flexible ligands" +, editor = "M. C. Lin and D. Manocha" +, booktitle = "Applied Computational Geometry: Towards Geometric Engineering" +, series = "Lecture Notes Comput. Sci." +, volume = 1148 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "67--78" +, update = "98.07 bibrelex" } @inproceedings{fklmsvy-rrpid-97 -, author = "P. Finn and L. E. Kavraki and J.-C. Latombe and R. Motwani and C. Shelton and S. Venkatasubramanian and A. Yao" -, title = "RAPID: randomized pharmacophore identification for drug design" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "324--333" -, cites = "a-dcpsh-94, ah-alcsl-94, att-ddtps-97, ag-dgsmi-96, amww-cssgo-88, ahb-lsft3-87, a-oagc-87, bmb-pmmca-94, bgss-icfcm-96, bd-glihf-93, b-amm-90, b-afzef-71, bk-facus-73, cgs-icmcm-89, ccfm-icdir-97, cegsw-ccbac-90, ch-dgmc-88, d-fpfnh-93, dl-msp-76, fhklmsv-gmfl-96, gj-cigtn-79, gkpt-csmsm-93, gmhhwsbr-cads5-95, gs-rclcd-70, g-cmmid-85, gbe-pcsai-92, hs-pssaa-97, ityik-msrdd-95, k-rncsf-95, kmy-aalcs-95, km-femgb-94, l-smscs-91, l-arpmb-93, ls-mmpmm-88, l-csbsu-90, mzw-camcu-95, mbddl-fnapm-93, mbw-sdtds-90, mr-ra-95, p-ota-86, ir-cerrp-96, rl-pspmd-95, skt-acc1v-95, w-sppdt-95, ZZZ" -, update = "98.11 bibrelex, 98.07 agarwal+bibrelex, 97.07 efrat" +, author = "P. Finn and L. E. Kavraki and J.-C. Latombe and R. Motwani and C. Shelton and S. Venkatasubramanian and A. Yao" +, title = "RAPID: randomized pharmacophore identification for drug design" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "324--333" +, cites = "a-dcpsh-94, ah-alcsl-94, att-ddtps-97, ag-dgsmi-96, amww-cssgo-88, ahb-lsft3-87, a-oagc-87, bmb-pmmca-94, bgss-icfcm-96, bd-glihf-93, b-amm-90, b-afzef-71, bk-facus-73, cgs-icmcm-89, ccfm-icdir-97, cegsw-ccbac-90, ch-dgmc-88, d-fpfnh-93, dl-msp-76, fhklmsv-gmfl-96, gj-cigtn-79, gkpt-csmsm-93, gmhhwsbr-cads5-95, gs-rclcd-70, g-cmmid-85, gbe-pcsai-92, hs-pssaa-97, ityik-msrdd-95, k-rncsf-95, kmy-aalcs-95, km-femgb-94, l-smscs-91, l-arpmb-93, ls-mmpmm-88, l-csbsu-90, mzw-camcu-95, mbddl-fnapm-93, mbw-sdtds-90, mr-ra-95, p-ota-86, ir-cerrp-96, rl-pspmd-95, skt-acc1v-95, w-sppdt-95, ZZZ" +, update = "98.11 bibrelex, 98.07 agarwal+bibrelex, 97.07 efrat" } @article{fklmsvy-rrpid-98 -, author = "P. W. Finn and L. E. Kavraki and J.-C. Latombe and R. Motwani and C. Shelton and S. Venkatasubramanian and A. Yao" -, title = "RAPID: Randomized pharmacophore identification for drug design" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "263--272" -, succeeds = "fklmsvy-rrpid-97" -, update = "98.11 devillers" +, author = "P. W. Finn and L. E. Kavraki and J.-C. Latombe and R. Motwani and C. Shelton and S. Venkatasubramanian and A. Yao" +, title = "RAPID: Randomized pharmacophore identification for drug design" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "263--272" +, succeeds = "fklmsvy-rrpid-97" +, update = "98.11 devillers" } @article{f-pcvp-79 -, author = "J. L. Finney" -, title = "A Procedure for the Construction of {Voronoi} Polyhedra" -, journal = "J. Comput. Phys." -, volume = 32 -, year = 1979 -, pages = "137--143" -, annote = "3D Voronoi diagram. To build one polyhedron: consider - all triples within $N_c$ of centre and check for empty - circumspheres. (only points within $N_s$ ($>N_c$) are - checked). Time $O(N^2+ N_c^3N_sN)$. Once vertices are - found, they are sorted into the polygon." +, author = "J. L. Finney" +, title = "A Procedure for the Construction of {Voronoi} Polyhedra" +, journal = "J. Comput. Phys." +, volume = 32 +, year = 1979 +, pages = "137--143" +, annote = "3D Voronoi diagram. To build one polyhedron: consider + all triples within $N_c$ of centre and check for empty + circumspheres. (only points within $N_s$ ($>N_c$) are + checked). Time $O(N^2+ N_c^3N_sN)$. Once vertices are + found, they are sorted into the polygon." } @book{fj-cesr-89 -, author = "J.-C. Fiorot and P. Jeannin" -, title = "Courbes et Surfaces Rationelles" -, series = "RMA" -, volume = 12 -, publisher = "Masson" -, year = 1989 -, update = "98.07 bibrelex" +, author = "J.-C. Fiorot and P. Jeannin" +, title = "Courbes et Surfaces Rationelles" +, series = "RMA" +, volume = 12 +, publisher = "Masson" +, year = 1989 +, update = "98.07 bibrelex" } @book{fj-csr-92 -, author = "J.-C. Fiorot and P. Jeannin" -, title = "Courbes Splines Rationelles" -, series = "RMA" -, volume = 24 -, publisher = "Masson" -, year = 1992 -, update = "98.07 bibrelex" +, author = "J.-C. Fiorot and P. Jeannin" +, title = "Courbes Splines Rationelles" +, series = "RMA" +, volume = 24 +, publisher = "Masson" +, year = 1992 +, update = "98.07 bibrelex" } @inproceedings{fp-pannd-70 -, author = "F. P. Fischer and E. A. Patrick" -, title = "A preprocessing algorithm for nearest neighbor decision rules" -, booktitle = "Proc. XXVI Nat. Electron. Conf." -, publisher = "Illinois Inst. Tech." -, year = 1970 -, pages = "481--485" +, author = "F. P. Fischer and E. A. Patrick" +, title = "A preprocessing algorithm for nearest neighbor decision rules" +, booktitle = "Proc. XXVI Nat. Electron. Conf." +, publisher = "Illinois Inst. Tech." +, year = 1970 +, pages = "481--485" } @article{fsh-eaeha-88 -, author = "H. C. Fischer and G. Schumacher and R. Haggenmuller" -, title = "Evaluation of arithmetic expressions with high accuracy" -, journal = "Computing" -, volume = "suppl" -, year = 1988 -, pages = "149--157" -, keywords = "robustness" -, update = "95.09 korneenko" +, author = "H. C. Fischer and G. Schumacher and R. Haggenmuller" +, title = "Evaluation of arithmetic expressions with high accuracy" +, journal = "Computing" +, volume = "suppl" +, year = 1988 +, pages = "149--157" +, keywords = "robustness" +, update = "95.09 korneenko" } @inproceedings{flz-gswaw-98 -, author = "M. Fischer and T. Lukovszki and M. Ziegler" -, title = "Geometric searching in walkthrough animations with weak spanners in real time" -, booktitle = "Proc. 6th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1461 -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1998 -, pages = "163--174" -, update = "00.11 smid, 00.07 smid" +, author = "M. Fischer and T. Lukovszki and M. Ziegler" +, title = "Geometric searching in walkthrough animations with weak spanners in real time" +, booktitle = "Proc. 6th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1461 +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1998 +, pages = "163--174" +, update = "00.11 smid, 00.07 smid" } @inproceedings{flz-pnsmo-98 -, author = "M. Fischer and T. Lukovszki and M. Ziegler" -, title = "Partitioned neighborhood spanners of minimal outdegree" -, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." -, year = 1999 -, pages = "47--50" -, update = "00.11 smid, 00.07 smid" +, author = "M. Fischer and T. Lukovszki and M. Ziegler" +, title = "Partitioned neighborhood spanners of minimal outdegree" +, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." +, year = 1999 +, pages = "47--50" +, update = "00.11 smid, 00.07 smid" } @inproceedings{flz-scsns-99 -, author = "Matthias Fischer and Tam{\'a}s Lukovszki and Martin Ziegler" -, title = "Space Complexity of Sectoral Neighborhood Spanners" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "105--108" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Matthias Fischer and Tam{\'a}s Lukovszki and Martin Ziegler" +, title = "Space Complexity of Sectoral Neighborhood Spanners" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "105--108" +, update = "00.03 bibrelex, 99.07 bibrelex" } @incollection{fp-dmpps-85 -, author = "M. J. Fischer and M. S. Paterson" -, title = "Dynamic monotone priorities on planar sets" -, booktitle = "Proc. Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "289--292" -, keywords = "searching, dynamizing" -, update = "95.09 korneenko" +, author = "M. J. Fischer and M. S. Paterson" +, title = "Dynamic monotone priorities on planar sets" +, booktitle = "Proc. Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "289--292" +, keywords = "searching, dynamizing" +, update = "95.09 korneenko" } @inproceedings{f-fmcp-93 -, author = "P. Fischer" -, title = "Finding Maximum Convex Polygons" -, booktitle = "Proc. 9th Internat. Conf. Fund. Comput. Theory" -, site = "Szeged, Hungary" -, series = "Lecture Notes Comput. Sci." -, volume = 710 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "234--243" -, precedes = "f-spafm-97" -, update = "99.11 bibrelex, 97.03 devillers, 94.09 smid, 93.09 milone+mitchell" +, author = "P. Fischer" +, title = "Finding Maximum Convex Polygons" +, booktitle = "Proc. 9th Internat. Conf. Fund. Comput. Theory" +, site = "Szeged, Hungary" +, series = "Lecture Notes Comput. Sci." +, volume = 710 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "234--243" +, precedes = "f-spafm-97" +, update = "99.11 bibrelex, 97.03 devillers, 94.09 smid, 93.09 milone+mitchell" } @article{f-spafm-97 -, author = "P. Fischer" -, title = "Sequential and parallel algorithms for finding a maximum convex polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "187--200" -, succeeds = "f-fmcp-93" -, update = "97.03 devillers" +, author = "P. Fischer" +, title = "Sequential and parallel algorithms for finding a maximum convex polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "187--200" +, succeeds = "f-fmcp-93" +, update = "97.03 devillers" } @article{fh-cmaar-94 -, author = "P. Fischer and K.-U. H{\"o}ffgen" -, title = "Computing a maximum axis-aligned rectangle in a convex polygon" -, journal = "Inform. Process. Lett." -, volume = 51 -, year = 1994 -, pages = "189--193" -, update = "94.09 smid" +, author = "P. Fischer and K.-U. H{\"o}ffgen" +, title = "Computing a maximum axis-aligned rectangle in a convex polygon" +, journal = "Inform. Process. Lett." +, volume = 51 +, year = 1994 +, pages = "189--193" +, update = "94.09 smid" } @inproceedings{fhll-aaar-93 -, author = "P. Fischer and K.-U. H{\"o}ffgen and H. Lefmann and T. Luczak" -, title = "Approximations with Axis-Aligned Rectangles" -, booktitle = "Proc. 9th Internat. Conf. Fund. Comput. Theory" -, site = "Szeged, Hungary" -, series = "Lecture Notes Comput. Sci." -, volume = 710 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "244--255" -, update = "99.11 bibrelex, 94.09 smid, 93.09 milone+mitchell" +, author = "P. Fischer and K.-U. H{\"o}ffgen and H. Lefmann and T. Luczak" +, title = "Approximations with Axis-Aligned Rectangles" +, booktitle = "Proc. 9th Internat. Conf. Fund. Comput. Theory" +, site = "Szeged, Hungary" +, series = "Lecture Notes Comput. Sci." +, volume = 710 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "244--255" +, update = "99.11 bibrelex, 94.09 smid, 93.09 milone+mitchell" } @article{f-lbpvd-89 -, author = "T. Fischer" -, title = "Lower bound proofs via {Voronoi} diagrams" -, journal = "J. Inform. Process. Cybern." -, volume = 25 -, number = "5--6" -, year = 1989 -, pages = "233--238" -, keywords = "lower bounds, Voronoi diagrams, $d$-dimensional" -, update = "95.09 korneenko" +, author = "T. Fischer" +, title = "Lower bound proofs via {Voronoi} diagrams" +, journal = "J. Inform. Process. Cybern." +, volume = 25 +, number = "5--6" +, year = 1989 +, pages = "233--238" +, keywords = "lower bounds, Voronoi diagrams, $d$-dimensional" +, update = "95.09 korneenko" } @techreport{f-crips-86 -, author = "T. Fischer" -, title = "On the complexity of rectangle intersection problems under structural constraints" -, type = "Preprint" -, number = 37 -, institution = "Akad. Wissensch. DDR Inst. Math." -, year = 1986 -, keywords = "rectangles, intersection" -, update = "99.11 bibrelex, 98.07 bibrelex, 95.09 korneenko" +, author = "T. Fischer" +, title = "On the complexity of rectangle intersection problems under structural constraints" +, type = "Preprint" +, number = 37 +, institution = "Akad. Wissensch. DDR Inst. Math." +, year = 1986 +, keywords = "rectangles, intersection" +, update = "99.11 bibrelex, 98.07 bibrelex, 95.09 korneenko" } @incollection{f-rbcss-86 -, author = "T. Fischer" -, title = "Refined bounds on the complexity of sorting and selection in $d$-dimensional space" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 233 -, publisher = "Springer-Verlag" -, year = 1986 -, pages = "308--314" -, update = "96.05 agarwal, 95.09 korneenko" +, author = "T. Fischer" +, title = "Refined bounds on the complexity of sorting and selection in $d$-dimensional space" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 233 +, publisher = "Springer-Verlag" +, year = 1986 +, pages = "308--314" +, update = "96.05 agarwal, 95.09 korneenko" } @techreport{f-trcgs-86 -, author = "T. Fischer" -, title = "Towards a refined classification of geometric search and computation problems" -, type = "Preprint" -, institution = "Akad. Wissensch. DDR. Inst. Math." -, year = 1986 -, succeeds = "f-trcgs-89" -, update = "98.07 bibrelex, 95.09 korneenko" +, author = "T. Fischer" +, title = "Towards a refined classification of geometric search and computation problems" +, type = "Preprint" +, institution = "Akad. Wissensch. DDR. Inst. Math." +, year = 1986 +, succeeds = "f-trcgs-89" +, update = "98.07 bibrelex, 95.09 korneenko" } @inproceedings{f-trcgs-89 -, author = "T. Fischer" -, title = "Towards refined classification of geometric search and computation problems" -, editor = "J. H. Davenport" -, booktitle = "European Conference on Computer Algebra" -, nickname = "EUROCAL '87" -, site = "Leipzig" -, series = "Lecture Notes Comput. Sci." -, volume = 378 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "426--437" -, keywords = "lower bounds, searching, $d$-dimensional" -, precedes = "f-trcgs-86" -, update = "97.11 bibrelex, 96.05 agarwal, 95.09 korneenko" +, author = "T. Fischer" +, title = "Towards refined classification of geometric search and computation problems" +, editor = "J. H. Davenport" +, booktitle = "European Conference on Computer Algebra" +, nickname = "EUROCAL '87" +, site = "Leipzig" +, series = "Lecture Notes Comput. Sci." +, volume = 378 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "426--437" +, keywords = "lower bounds, searching, $d$-dimensional" +, precedes = "f-trcgs-86" +, update = "97.11 bibrelex, 96.05 agarwal, 95.09 korneenko" } @incollection{fw-icgpd-86 -, author = "T. Fischer and K. Wolfrum" -, title = "The inherent complexity of geometric problems in $d$-space" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 233 -, publisher = "Springer-Verlag" -, year = 1986 -, pages = "315--324" -, keywords = "lower bounds, $d$-dimensional" -, update = "96.05 agarwal, 95.09 korneenko" +, author = "T. Fischer and K. Wolfrum" +, title = "The inherent complexity of geometric problems in $d$-space" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 233 +, publisher = "Springer-Verlag" +, year = 1986 +, pages = "315--324" +, keywords = "lower bounds, $d$-dimensional" +, update = "96.05 agarwal, 95.09 korneenko" } @article{f-fatmd-80 -, author = "M. A. Fischler" -, title = "Fast algorithms for two maximal distance problems with applications to image analysis" -, journal = "Pattern Recogn." -, volume = 12 -, year = 1980 -, pages = "35--40" +, author = "M. A. Fischler" +, title = "Fast algorithms for two maximal distance problems with applications to image analysis" +, journal = "Pattern Recogn." +, volume = 12 +, year = 1980 +, pages = "35--40" } @article{fb-rscpm-81 -, author = "M. A. Fischler and R. C. Bolles" -, title = "Random sample consensus: A paradigm for model fitting with applications to image analysis and automated cartography" -, journal = "Commun. ACM" -, volume = 24 -, number = 6 -, year = 1981 -, pages = "381--395" -, update = "97.11 bibrelex" +, author = "M. A. Fischler and R. C. Bolles" +, title = "Random sample consensus: A paradigm for model fitting with applications to image analysis and automated cartography" +, journal = "Commun. ACM" +, volume = 24 +, number = 6 +, year = 1981 +, pages = "381--395" +, update = "97.11 bibrelex" } @book{f-peg-69 -, author = "W. T. Fishback" -, title = "Projective and {Euclidean} Geometry" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1969 -, update = "99.11 bibrelex" +, author = "W. T. Fishback" +, title = "Projective and {Euclidean} Geometry" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1969 +, update = "99.11 bibrelex" } @article{f-cpfid-95 -, author = "P. Fishburn" -, title = "Convex polygons with few intervertex distances" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "65--93" -, update = "96.09 devillers" +, author = "P. Fishburn" +, title = "Convex polygons with few intervertex distances" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "65--93" +, update = "96.09 devillers" } @article{f-ioco-88 -, author = "P. C. Fishburn" -, title = "Interval orders and circle orders" -, journal = "Order" -, volume = 5 -, year = 1988 -, pages = "225--234" -, update = "98.03 bibrelex" +, author = "P. C. Fishburn" +, title = "Interval orders and circle orders" +, journal = "Order" +, volume = 5 +, year = 1988 +, pages = "225--234" +, update = "98.03 bibrelex" } @book{f-ioig-85 -, author = "P. C. Fishburn" -, title = "Interval Orders and Interval Graphs" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1985 -, update = "99.11 bibrelex, 94.05 franciosa" +, author = "P. C. Fishburn" +, title = "Interval Orders and Interval Graphs" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1985 +, update = "99.11 bibrelex, 94.05 franciosa" } @article{fr-udbvc-92 -, author = "P. C. Fishburn and J. A. Reeds" -, title = "Unit distances between vertices of a convex polygon" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "81--91" +, author = "P. C. Fishburn and J. A. Reeds" +, title = "Unit distances between vertices of a convex polygon" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "81--91" } @inproceedings{fl-cstds-86 -, author = "A. D. Fisher and J. N. Lee" -, title = "The current status of two-dimensional spatial light modulator technology" -, booktitle = "Proc. of SPIE" -, volume = 634 -, year = 1986 -, pages = "352--371" -, update = "98.07 bibrelex" +, author = "A. D. Fisher and J. N. Lee" +, title = "The current status of two-dimensional spatial light modulator technology" +, booktitle = "Proc. of SPIE" +, volume = 634 +, year = 1986 +, pages = "352--371" +, update = "98.07 bibrelex" } @incollection{fw-rvnsh-94 -, author = "Frederick Fisher and Andrew Woo" -, title = "{R.E} versus {N.H} Specular Highlights" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "388--400" -, keywords = "Phong illumination, specular reflection" -, update = "94.09 heckbert" -, annote = "Compares two common variants of Phong's specular +, author = "Frederick Fisher and Andrew Woo" +, title = "{R.E} versus {N.H} Specular Highlights" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "388--400" +, keywords = "Phong illumination, specular reflection" +, update = "94.09 heckbert" +, annote = "Compares two common variants of Phong's specular reflection formula and derives a surprising relationship between them." } @article{frs-pp-85 -, author = "J. C. Fisher and D. Ruoff and J. Shilleto" -, title = "Perpendicular polygons" -, journal = "Amer. Math. Monthly" -, volume = 92 -, year = 1985 -, pages = "23--37" -, update = "95.09 korneenko" +, author = "J. C. Fisher and D. Ruoff and J. Shilleto" +, title = "Perpendicular polygons" +, journal = "Amer. Math. Monthly" +, volume = 92 +, year = 1985 +, pages = "23--37" +, update = "95.09 korneenko" } @article{f-aiuva-93 -, author = "P. F. Fisher" -, title = "Algorithm and Implementation Uncertainty in Viewshed Analysis" -, journal = "Internat. J. Geogr. Inform. Syst." -, volume = 7 -, year = 1993 -, pages = "331--347" -, keywords = "viewshed, uncertainty, terrains" -, update = "96.09 kreveld" +, author = "P. F. Fisher" +, title = "Algorithm and Implementation Uncertainty in Viewshed Analysis" +, journal = "Internat. J. Geogr. Inform. Syst." +, volume = 7 +, year = 1993 +, pages = "331--347" +, keywords = "viewshed, uncertainty, terrains" +, update = "96.09 kreveld" } @article{f-rvftm-96 -, author = "P. F. Fisher" -, title = "Reconsideration of the viewshed function in terrain modelling" -, journal = "Geogr. Syst." -, volume = 3 -, year = 1996 -, pages = "33--58" -, keywords = "viewshed, uncertainty, terrains" -, update = "96.09 kreveld" +, author = "P. F. Fisher" +, title = "Reconsideration of the viewshed function in terrain modelling" +, journal = "Geogr. Syst." +, volume = 3 +, year = 1996 +, pages = "33--58" +, keywords = "viewshed, uncertainty, terrains" +, update = "96.09 kreveld" } @inproceedings{f-sv-94 -, author = "P. F. Fisher" -, title = "Stretching the Viewshed" -, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" -, year = 1994 -, pages = "725--738" -, update = "96.09 kreveld" +, author = "P. F. Fisher" +, title = "Stretching the Viewshed" +, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" +, year = 1994 +, pages = "725--738" +, update = "96.09 kreveld" } @article{f-edpsp-40 -, author = "R. A. Fisher" -, title = "An examination of the different possible solutions of a problem in incomplete blocks" -, journal = "Annals of Eugenics" -, volume = 10 -, year = 1940 -, pages = "52--75" -, update = "98.03 bibrelex" +, author = "R. A. Fisher" +, title = "An examination of the different possible solutions of a problem in incomplete blocks" +, journal = "Annals of Eugenics" +, volume = 10 +, year = 1940 +, pages = "52--75" +, update = "98.03 bibrelex" } @article{f-spcwt-78 -, author = "S. Fisk" -, title = "A short proof of {Chv\'atal's} watchman theorem" -, journal = "J. Combin. Theory Ser. B" -, volume = 24 -, year = 1978 -, pages = 374 -, update = "97.03 pocchiola, 94.05 devillers" +, author = "S. Fisk" +, title = "A short proof of {Chv\'atal's} watchman theorem" +, journal = "J. Combin. Theory Ser. B" +, volume = 24 +, year = 1978 +, pages = 374 +, update = "97.03 pocchiola, 94.05 devillers" } @article{f-spcrd-86 -, author = "S. Fisk" -, title = "Separating points by circles and the recognition of digital discs" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 8 -, number = 4 -, year = 1986 -, pages = "554--556" -, keywords = "points, partition" -, update = "95.09 korneenko" +, author = "S. Fisk" +, title = "Separating points by circles and the recognition of digital discs" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 8 +, number = 4 +, year = 1986 +, pages = "554--556" +, keywords = "points, partition" +, update = "95.09 korneenko" } @inproceedings{f-agcg-97 -, author = "Eugene Fiume" -, title = "Applied Geometry for Computer Graphics" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "181--186" -, update = "97.11 jones" +, author = "Eugene Fiume" +, title = "Applied Geometry for Computer Graphics" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "181--186" +, update = "97.11 jones" } @book{f-msrg-89 -, author = "E. Fiume" -, title = "The Mathematical Structure of Raster Graphics" -, publisher = "Academic Press" -, address = "San Diego" -, year = 1989 -, update = "98.11 ghali" +, author = "E. Fiume" +, title = "The Mathematical Structure of Raster Graphics" +, publisher = "Academic Press" +, address = "San Diego" +, year = 1989 +, update = "98.11 ghali" } @techreport{ff-rtiph-85 -, author = "E. Fiume and A. Fournier" -, title = "Ray-tracing is {$PSPACE$}-hard" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Toronto" -, address = "Toronto, ON" -, year = 1985 +, author = "E. Fiume and A. Fournier" +, title = "Ray-tracing is {$PSPACE$}-hard" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Toronto" +, address = "Toronto, ON" +, year = 1985 } @techreport{ff-vspsc-85 -, author = "E. Fiume and A. Fournier" -, title = "The visible surface problem: semantics and complexity" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Toronto" -, address = "Toronto, ON" -, year = 1985 +, author = "E. Fiume and A. Fournier" +, title = "The visible surface problem: semantics and complexity" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Toronto" +, address = "Toronto, ON" +, year = 1985 } @incollection{ff-vspag-88 -, author = "E. Fiume and A. Fournier" -, title = "The visible surface problem under abstract graphics models" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "575--586" -, update = "99.11 bibrelex" +, author = "E. Fiume and A. Fournier" +, title = "The visible surface problem under abstract graphics models" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "575--586" +, update = "99.11 bibrelex" } @article{ffr-pscaa-83 -, author = "E. Fiume and A. Fournier and L. Rudolph" -, title = "A parallel scan conversion algorithm with anti-aliasing for a general-purpose ultra-computer" -, journal = "ACM Comput. Graph." -, volume = 17 -, number = 3 -, month = jul -, year = 1983 -, pages = "141--150" -, update = "97.11 bibrelex" +, author = "E. Fiume and A. Fournier and L. Rudolph" +, title = "A parallel scan conversion algorithm with anti-aliasing for a general-purpose ultra-computer" +, journal = "ACM Comput. Graph." +, volume = 17 +, number = 3 +, month = jul +, year = 1983 +, pages = "141--150" +, update = "97.11 bibrelex" } @phdthesis{f-iffss-85 -, author = "Per-Olof Fj{\"a}llstr{\"o}m" -, title = "Integration of free-form surfaces and solid modelling" -, school = "?" -, year = 1985 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "Per-Olof Fj{\"a}llstr{\"o}m" +, title = "Integration of free-form surfaces and solid modelling" +, school = "?" +, year = 1985 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{f-pabf-91 -, author = "P.-O. Fj{\"a}llstr{\"o}m" -, title = "Polyhedral approximation of bivariate functions" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "187--190" -, keywords = "Computational geometry, {Delaunay} triangulation, polyhedral approximation" -, cites = "d-pdstb-89, f-sditm-82, gs-cdtp-78, l-scsi-77, l-gdtan-86, m-tdird-76, ps-cgi-85, w-cnddt-81, w-rit-86, ZZZ" -, update = "98.07 bibrelex" +, author = "P.-O. Fj{\"a}llstr{\"o}m" +, title = "Polyhedral approximation of bivariate functions" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "187--190" +, keywords = "Computational geometry, {Delaunay} triangulation, polyhedral approximation" +, cites = "d-pdstb-89, f-sditm-82, gs-cdtp-78, l-scsi-77, l-gdtan-86, m-tdird-76, ps-cgi-85, w-cnddt-81, w-rit-86, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{f-spm-86 -, author = "P. O. Fjallstrom" -, title = "Smoothing of polyhedral models" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "226--235" -, cites = "br-cagd-74, bbl-ntc-78, cc-rgbss-78, cg-pspca-84, fp-cgdm-79, ck-dsffs-83, f-iffss-85, gc-tipca-80, s-nrsps-83, ZZZ" -, update = "98.03 bibrelex" +, author = "P. O. Fjallstrom" +, title = "Smoothing of polyhedral models" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "226--235" +, cites = "br-cagd-74, bbl-ntc-78, cc-rgbss-78, cg-pspca-84, fp-cgdm-79, ck-dsffs-83, f-iffss-85, gc-tipca-80, s-nrsps-83, ZZZ" +, update = "98.03 bibrelex" } @article{fklp-scha-90 -, author = "P.-O. Fj{\"a}llstr{\"o}m and J. Katajainen and C. Levcopoulos and C. Petersson" -, title = "A sublogarithmic convex hull algorithm" -, journal = "BIT" -, volume = 30 -, number = 3 -, year = 1990 -, pages = "378--384" -, keywords = "convex hull, parallel computations" -, update = "95.09 korneenko" +, author = "P.-O. Fj{\"a}llstr{\"o}m and J. Katajainen and C. Levcopoulos and C. Petersson" +, title = "A sublogarithmic convex hull algorithm" +, journal = "BIT" +, volume = 30 +, number = 3 +, year = 1990 +, pages = "378--384" +, keywords = "convex hull, parallel computations" +, update = "95.09 korneenko" } @techreport{fp-eagcs-93 -, author = "P. O. Fj{\"a}llstr{\"o}m and J. Petersson" -, title = "Evaluation of algorithms for geometrical contact-searching problems" -, type = "Manuscript" -, institution = "??" -, year = 1993 -, update = "98.03 bibrelex" +, author = "P. O. Fj{\"a}llstr{\"o}m and J. Petersson" +, title = "Evaluation of algorithms for geometrical contact-searching problems" +, type = "Manuscript" +, institution = "??" +, year = 1993 +, update = "98.03 bibrelex" } @unpublished{fp-eorsm-94 -, author = "Per-Olof Fj{\"a}llstr{\"o}m and Jan Petersson" -, title = "Evaluation of orthogonal range-searching methods for geometric contact searching" -, institution = "Dept. Computer Science, Link{\"o}ping Univ." -, year = 1994 -, note = "Manuscript (submitted)" -, update = "97.11 icking, 95.01 mitchell" +, author = "Per-Olof Fj{\"a}llstr{\"o}m and Jan Petersson" +, title = "Evaluation of orthogonal range-searching methods for geometric contact searching" +, institution = "Dept. Computer Science, Link{\"o}ping Univ." +, year = 1994 +, note = "Manuscript (submitted)" +, update = "97.11 icking, 95.01 mitchell" } @article{fpnz-ersmc-98 -, author = "P. O. Fj{\"a}llstr{\"o}m and J. Petersson and L. Nilsson and Z.-H. Zhong" -, title = "Evaluation of Range Searching Methods for Contact Searching in Mechanical Engineering" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "67--84" -, update = "98.11 devillers" +, author = "P. O. Fj{\"a}llstr{\"o}m and J. Petersson and L. Nilsson and Z.-H. Zhong" +, title = "Evaluation of Range Searching Methods for Contact Searching in Mechanical Engineering" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "67--84" +, update = "98.11 devillers" } @techreport{f-addmd-79 -, author = "P. Flajolet" -, title = "Analyse d'algorithmes de manilulations d'arbres et de fichiers" -, number = "Cahier 34-35" -, institution = "B.U.R.O." -, year = 1979 -, note = "Cahiers du B.U.R.O. serie Recherche" -, update = "97.11 bibrelex" +, author = "P. Flajolet" +, title = "Analyse d'algorithmes de manilulations d'arbres et de fichiers" +, number = "Cahier 34-35" +, institution = "B.U.R.O." +, year = 1979 +, note = "Cahiers du B.U.R.O. serie Recherche" +, update = "97.11 bibrelex" } @article{f-sdscm-85 -, author = "P. Flajolet" -, title = "Singular differential systems + {Cauchy} = multidimensional search" -, journal = "Bull. EATCS" -, volume = 26 -, year = 1985 -, pages = "157--158" +, author = "P. Flajolet" +, title = "Singular differential systems + {Cauchy} = multidimensional search" +, journal = "Bull. EATCS" +, volume = 26 +, year = 1985 +, pages = "157--158" } @inproceedings{fgpr-amsqt-91 -, author = "P. Flajolet and G. Gonnet and C. Puech and J. M. Robson" -, title = "The analysis of multidimensional searching in quad-trees" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "100--109" -, keywords = "quad trees" +, author = "P. Flajolet and G. Gonnet and C. Puech and J. M. Robson" +, title = "The analysis of multidimensional searching in quad-trees" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "100--109" +, keywords = "quad trees" } @article{fsz-aacaa-91 -, author = "P. Flajolet and B. Salvy and P. Zimmerman" -, title = "Automatic average-case analysis of algorithms" -, journal = "Theoret. Comput. Sci." -, volume = 79 -, year = 1991 -, pages = "37--109" -, keywords = "recurrence, generating function, asymptotic analysis, combinatorial enumeration" -, comments = "general reference for a powerful automatic asymptotic analyzer" -, update = "94.01 matousek" +, author = "P. Flajolet and B. Salvy and P. Zimmerman" +, title = "Automatic average-case analysis of algorithms" +, journal = "Theoret. Comput. Sci." +, volume = 79 +, year = 1991 +, pages = "37--109" +, keywords = "recurrence, generating function, asymptotic analysis, combinatorial enumeration" +, comments = "general reference for a powerful automatic asymptotic analyzer" +, update = "94.01 matousek" } @article{fs-ppmta-83 -, author = "P. Flajolet and J.-M. Steyaert" -, title = "Pattern and pattern-matching in trees: {An} analysis" -, journal = "Inform. Control" -, volume = 58 -, number = "1-3" -, year = 1983 -, pages = "18--58" -, update = "97.11 bibrelex" +, author = "P. Flajolet and J.-M. Steyaert" +, title = "Pattern and pattern-matching in trees: {An} analysis" +, journal = "Inform. Control" +, volume = 58 +, number = "1-3" +, year = 1983 +, pages = "18--58" +, update = "97.11 bibrelex" } @article{fcm-eergm-87 -, author = "J. Flaquer and A. Carbajal and M. A. Mendez" -, title = "Edge-edge relationships in geometric modelling" -, journal = "Comput. Aided Design" -, volume = 19 -, number = 5 -, year = 1987 -, pages = "237--244" -, keywords = "polyhedra, geometric modelling" -, update = "95.09 korneenko" +, author = "J. Flaquer and A. Carbajal and M. A. Mendez" +, title = "Edge-edge relationships in geometric modelling" +, journal = "Comput. Aided Design" +, volume = 19 +, number = 5 +, year = 1987 +, pages = "237--244" +, keywords = "polyhedra, geometric modelling" +, update = "95.09 korneenko" } @inproceedings{fs-erqnn-95 -, author = "Robin Y. Flatland and Charles V. Stewart" -, title = "Extending Range Queries and Nearest Neighbours" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "267--272" -, update = "95.09 jones" +, author = "Robin Y. Flatland and Charles V. Stewart" +, title = "Extending Range Queries and Nearest Neighbours" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "267--272" +, update = "95.09 jones" } @article{fs-erqnn-00 -, author = "R. Y. Flatland and C. V. Stewart" -, title = "Extending range queries and nearest neighbours" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "3--24" -, update = "01.04 smid" +, author = "R. Y. Flatland and C. V. Stewart" +, title = "Extending range queries and nearest neighbours" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "3--24" +, update = "01.04 smid" } @inproceedings{fs-errrq-96 -, author = "R. Y. Flatland and C. V. Stewart" -, title = "Extending rectangular range reporting with query sensitive analysis" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "319--324" -, update = "96.09 mitchell" +, author = "R. Y. Flatland and C. V. Stewart" +, title = "Extending rectangular range reporting with query sensitive analysis" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "319--324" +, update = "96.09 mitchell" } @inproceedings{fh-recpm-00 -, author = "Eyal Flato and Dan Halperin" -, title = "Robust and Efficient Construction of Planar {Minkowski} Sums" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "85--88" -, update = "00.03 bibrelex" +, author = "Eyal Flato and Dan Halperin" +, title = "Robust and Efficient Construction of Planar {Minkowski} Sums" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "85--88" +, update = "00.03 bibrelex" } @inproceedings{fhhn-dipmc-99 -, author = "Eyal Flato and Dan Halperin and Iddo Hanniel and Oren Nechushtan" -, title = "The Design and Implementation of Planar Maps in {CGAL}" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "169--172" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Eyal Flato and Dan Halperin and Iddo Hanniel and Oren Nechushtan" +, title = "The Design and Implementation of Planar Maps in {CGAL}" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "169--172" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{f-sbstw-92 -, author = "Rudolf Fleischer" -, title = "A Simple Balanced Search Tree With {$O(1)$} Worst-Case Update Time" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "77--80" -, update = "00.03 bibrelex" +, author = "Rudolf Fleischer" +, title = "A Simple Balanced Search Tree With {$O(1)$} Worst-Case Update Time" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "77--80" +, update = "00.03 bibrelex" } @inproceedings{f-dtonr-93 -, author = "R. Fleischer" -, title = "Decision Trees: {Old} and New Results" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "468--477" -, update = "97.03 smid" +, author = "R. Fleischer" +, title = "Decision Trees: {Old} and New Results" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "468--477" +, update = "97.03 smid" } @article{f-dtonr-99 -, author = "R. Fleischer" -, title = "Decision trees: {Old} and new results" -, journal = "Inform. Comput." -, volume = 152 -, year = 1999 -, pages = "44--61" -, update = "00.11 smid" +, author = "R. Fleischer" +, title = "Decision trees: {Old} and new results" +, journal = "Inform. Comput." +, volume = 152 +, year = 1999 +, pages = "44--61" +, update = "00.11 smid" } @inproceedings{fmrwy-sioas-90 -, author = "R. Fleischer and K. Mehlhorn and G{\"u}nter Rote and Emo Welzl and C. K. Yap" -, title = "On simultaneous inner and outer approximation of shapes" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "216--224" -, precedes = "fmrwy-sioas-92" -, cites = "acy-macp-85, afkmnsu-ampcb-90, c-pcp-83, ds-gmmmc-79, g-acb-83, j-episc-48, l-udaek-59, m-tgis-82, sfrw-acfpr-90, f-lidea-53, y-amp-87, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 93.09 rote" +, author = "R. Fleischer and K. Mehlhorn and G{\"u}nter Rote and Emo Welzl and C. K. Yap" +, title = "On simultaneous inner and outer approximation of shapes" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "216--224" +, precedes = "fmrwy-sioas-92" +, cites = "acy-macp-85, afkmnsu-ampcb-90, c-pcp-83, ds-gmmmc-79, g-acb-83, j-episc-48, l-udaek-59, m-tgis-82, sfrw-acfpr-90, f-lidea-53, y-amp-87, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 93.09 rote" } @article{fmrwy-sioas-92 -, author = "R. Fleischer and K. Mehlhorn and G{\"u}nter Rote and Emo Welzl and C. K. Yap" -, title = "Simultaneous inner and outer approximation of shapes" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "365--389" -, keywords = "convex, Banach-Mazur distance, homothetic" -, succeeds = "fmrwy-sioas-90" -, update = "98.03 mitchell, 93.09 rote" +, author = "R. Fleischer and K. Mehlhorn and G{\"u}nter Rote and Emo Welzl and C. K. Yap" +, title = "Simultaneous inner and outer approximation of shapes" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "365--389" +, keywords = "convex, Banach-Mazur distance, homothetic" +, succeeds = "fmrwy-sioas-90" +, update = "98.03 mitchell, 93.09 rote" } @inproceedings{ft-orlt-00 -, author = "Rudolf Fleischer and Gerhard Trippen" -, title = "Optimal Robot Localization in Trees" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "373--374" -, keywords = "video review" -, update = "00.11 jones" +, author = "Rudolf Fleischer and Gerhard Trippen" +, title = "Optimal Robot Localization in Trees" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "373--374" +, keywords = "video review" +, update = "00.11 jones" } @article{f-rglpr-86 -, author = "U. Flemming" -, title = "On the representation and generation of loosely packed rectangles" -, journal = "Environ. \& Plan., Ser. B" -, volume = 13 -, year = 1986 -, pages = "189--205" -, keywords = "rectangles, packing, data structuring" -, update = "95.09 korneenko" +, author = "U. Flemming" +, title = "On the representation and generation of loosely packed rectangles" +, journal = "Environ. \& Plan., Ser. B" +, volume = 13 +, year = 1986 +, pages = "189--205" +, keywords = "rectangles, packing, data structuring" +, update = "95.09 korneenko" } @article{f-wrrda-80 -, author = "U. Flemming" -, title = "Wall representations of rectangular dissections: additional results" -, journal = "Environ. \& Plan., Ser. B" -, volume = 7 -, year = 1980 -, pages = "247--251" -, keywords = "rectangles, isothetic polygons, partition" -, update = "95.09 korneenko" +, author = "U. Flemming" +, title = "Wall representations of rectangular dissections: additional results" +, journal = "Environ. \& Plan., Ser. B" +, volume = 7 +, year = 1980 +, pages = "247--251" +, keywords = "rectangles, isothetic polygons, partition" +, update = "95.09 korneenko" } @article{fk-ratss-88 -, author = "L. A. Fletcher and R. Kasturi" -, title = "A robust algorithm for text string separation from mixed text/graph images" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 10 -, number = 6 -, year = 1988 -, pages = "910--918" -, keywords = "image analysis, rectangles, clustering" -, update = "95.09 korneenko" +, author = "L. A. Fletcher and R. Kasturi" +, title = "A robust algorithm for text string separation from mixed text/graph images" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 10 +, number = 6 +, year = 1988 +, pages = "910--918" +, keywords = "image analysis, rectangles, clustering" +, update = "95.09 korneenko" } @article{fs-qbic-95 -, author = "M. Flickner and H. Sawhney and W. Niblack and J. Ashley and Q. Huang and B. Dom and M. Gorkani and J. Hafner and D. Lee and D. Petkovic and D. Steele and P. Yanker" -, title = "Query by Image and Video Content: The {QBIC} System" -, journal = "Computer" -, volume = 28 -, year = 1995 -, pages = "23--32" -, update = "98.07 agarwal" +, author = "M. Flickner and H. Sawhney and W. Niblack and J. Ashley and Q. Huang and B. Dom and M. Gorkani and J. Hafner and D. Lee and D. Petkovic and D. Steele and P. Yanker" +, title = "Query by Image and Video Content: The {QBIC} System" +, journal = "Computer" +, volume = 28 +, year = 1995 +, pages = "23--32" +, update = "98.07 agarwal" } @article{fj-scdnn-81 -, author = "B. E. Flinchbaugh and L. K. Jones" -, title = "Strong connectivity in directional nearest-neighbor graphs" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 2 -, number = 4 -, year = 1981 -, pages = "461--463" -, keywords = "closeness, nearest neighbor graph" -, update = "95.09 korneenko" +, author = "B. E. Flinchbaugh and L. K. Jones" +, title = "Strong connectivity in directional nearest-neighbor graphs" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 2 +, number = 4 +, year = 1981 +, pages = "461--463" +, keywords = "closeness, nearest neighbor graph" +, update = "95.09 korneenko" } @article{f-undkd- -, author = "A. Flores" -, title = "{\"U}ber $n$-dimensionale {Komplexe} die im {$R_{2n+1}$} absolut selbstverschlungen sind" -, journal = "Ergeb. Math. Kolloq." -, volume = 6 -, year = "1932/1934" -, pages = "4--7" -, update = "95.01 matousek" +, author = "A. Flores" +, title = "{\"U}ber $n$-dimensionale {Komplexe} die im {$R_{2n+1}$} absolut selbstverschlungen sind" +, journal = "Ergeb. Math. Kolloq." +, volume = 6 +, year = "1932/1934" +, pages = "4--7" +, update = "95.01 matousek" } @article{f-acdp-86 -, author = "A. Florian" -, title = "Approximation of convex discs by polygons" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "241--263" +, author = "A. Florian" +, title = "Approximation of convex discs by polygons" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "241--263" } @article{f-pld-78 -, author = "A. Florian" -, title = "On the permeability of layers of discs" -, journal = "Studia Scientiarum Mathematicarum Hungarica" -, volume = 13 -, year = 1978 -, pages = "125--132" -, update = "93.09 milone+mitchell" +, author = "A. Florian" +, title = "On the permeability of layers of discs" +, journal = "Studia Scientiarum Mathematicarum Hungarica" +, volume = 13 +, year = 1978 +, pages = "125--132" +, update = "93.09 milone+mitchell" } @article{fs-zvddm-87 -, author = "A. Florian and W. M. Schmidt" -, title = "Zerlegung von {Dreiecken} in {Dreiecke} mit {Nebenbedigungen}" -, journal = "Geom. Dedicata" -, volume = 24 -, year = 1987 -, pages = "363--369" -, keywords = "triangle, covering, convex" -, update = "95.09 korneenko" +, author = "A. Florian and W. M. Schmidt" +, title = "Zerlegung von {Dreiecken} in {Dreiecke} mit {Nebenbedigungen}" +, journal = "Geom. Dedicata" +, volume = 24 +, year = 1987 +, pages = "363--369" +, keywords = "triangle, covering, convex" +, update = "95.09 korneenko" } @inproceedings{ffpan-vbmtf-86 -, author = "L. De Floriani and B. Falcidieno and C. Pienovi and D. Allen and G. Nagy" -, title = "A visibility-based model for terrain features" -, booktitle = "Proc. 2nd Internat. Sympos. Spatial Data Handling" -, year = 1986 -, pages = "235--250" -, update = "96.09 kreveld" +, author = "L. De Floriani and B. Falcidieno and C. Pienovi and D. Allen and G. Nagy" +, title = "A visibility-based model for terrain features" +, booktitle = "Proc. 2nd Internat. Sympos. Spatial Data Handling" +, year = 1986 +, pages = "235--250" +, update = "96.09 kreveld" } @inproceedings{fmp-seset-99 -, author = "Leila De Floriani and Paola Magillo and Enrico Puppo" -, title = "A Simple and Efficient Sequential Encoding for Triangle Meshes" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "129--133" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Leila De Floriani and Paola Magillo and Enrico Puppo" +, title = "A Simple and Efficient Sequential Encoding for Triangle Meshes" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "129--133" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{fnp-clsnt-92 -, author = "L. De Floriani and G. Nagy and E. Puppo" -, title = "Computing a Line-of-Sight Network on a Terrain Model" -, booktitle = "Proc. 5th Internat. Sympos. Spatial Data Handling" -, year = 1992 -, pages = "672--681" -, update = "96.09 kreveld" +, author = "L. De Floriani and G. Nagy and E. Puppo" +, title = "Computing a Line-of-Sight Network on a Terrain Model" +, booktitle = "Proc. 5th Internat. Sympos. Spatial Data Handling" +, year = 1992 +, pages = "672--681" +, update = "96.09 kreveld" } @inproceedings{fy-okvd-01 -, author = "Julia Fl{\"o}totto and Mariette Yvinec" -, title = "Order-$k$ {Voronoi} Diagrams" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "109--112" -, update = "01.04 icking" +, author = "Julia Fl{\"o}totto and Mariette Yvinec" +, title = "Order-$k$ {Voronoi} Diagrams" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "109--112" +, update = "01.04 icking" } @article{fr-aasfs-75 -, author = "R. Floyd and R. Rivest" -, title = "Algorithm 489: The Algorithm {SELECT} for finding the {$i$}th smallest of {$n$} elements" -, journal = "Commun. ACM" -, volume = 8 -, year = 1973 -, pages = 173 -, update = "98.11 bibrelex" +, author = "R. Floyd and R. Rivest" +, title = "Algorithm 489: The Algorithm {SELECT} for finding the {$i$}th smallest of {$n$} elements" +, journal = "Commun. ACM" +, volume = 8 +, year = 1973 +, pages = 173 +, update = "98.11 bibrelex" } @article{fr-etbs-75 -, author = "R. Floyd and R. Rivest" -, title = "Expected time bounds for selection" -, journal = "Commun. ACM" -, volume = 18 -, year = 1975 -, pages = "165--172" -, update = "97.11 bibrelex" +, author = "R. Floyd and R. Rivest" +, title = "Expected time bounds for selection" +, journal = "Commun. ACM" +, volume = 18 +, year = 1975 +, pages = "165--172" +, update = "97.11 bibrelex" } @techreport{f-enphp-?? -, author = "R. W. Floyd" -, title = "Expected number of points on hull of points drawn from triangle" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "R. W. Floyd" +, title = "Expected number of points on hull of points drawn from triangle" +, type = "Manuscript" +, institution = "??" +, year = "??" } @techreport{f-scptd-89 -, author = "S. Foldes" -, title = "Separability by convection and permeability in two-dimensional velocity fields" -, number = "G-89-32" -, institution = "GERAD and {\'E}cole des Hautes {\'E}tudes Commerciales" -, address = "Montr{\'e}al" -, month = sep -, year = 1989 -, update = "98.07 bibrelex" +, author = "S. Foldes" +, title = "Separability by convection and permeability in two-dimensional velocity fields" +, number = "G-89-32" +, institution = "GERAD and {\'E}cole des Hautes {\'E}tudes Commerciales" +, address = "Montr{\'e}al" +, month = sep +, year = 1989 +, update = "98.07 bibrelex" } @techreport{f-ssdco-89 -, author = "S. Foldes" -, title = "Sequential separability of directionally convex objects with restricted motion" -, number = "G-89-21" -, institution = "GERAD and {\'E}cole des Hautes {\'E}tudes Commerciales" -, address = "Montr{\'e}al" -, month = jun -, year = 1989 -, update = "98.07 bibrelex" +, author = "S. Foldes" +, title = "Sequential separability of directionally convex objects with restricted motion" +, number = "G-89-21" +, institution = "GERAD and {\'E}cole des Hautes {\'E}tudes Commerciales" +, address = "Montr{\'e}al" +, month = jun +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{f-soplo-90 -, author = "S. Foldes" -, title = "Spherical orders, planar lattices and obstruction graphs in abstract convection systems" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "134--137" -, cites = "fru-lsoso-88, f-ssdco-89, f-scptd-89, gy-tsr-80, ru-roptc-88, ZZZ" -, update = "98.07 bibrelex" +, author = "S. Foldes" +, title = "Spherical orders, planar lattices and obstruction graphs in abstract convection systems" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "134--137" +, cites = "fru-lsoso-88, f-ssdco-89, f-scptd-89, gy-tsr-80, ru-roptc-88, ZZZ" +, update = "98.07 bibrelex" } @techreport{fru-lsoso-88 -, author = "S. Foldes and I. Rival and J. Urrutia" -, title = "Light sources, obstructions and spherical orders" -, number = "G-88-30" -, institution = "GERAD and {\'E}cole des Hautes {\'E}tudes Commerciales" -, address = "Montr{\'e}al" -, year = 1988 -, update = "98.07 bibrelex" +, author = "S. Foldes and I. Rival and J. Urrutia" +, title = "Light sources, obstructions and spherical orders" +, number = "G-88-30" +, institution = "GERAD and {\'E}cole des Hautes {\'E}tudes Commerciales" +, address = "Montr{\'e}al" +, year = 1988 +, update = "98.07 bibrelex" } @article{fru-lsoso-92 -, author = "S. Foldes and I. Rival and J. Urrutia" -, title = "Light sources, obstructions and spherical orders" -, journal = "Discrete Math." -, volume = 102 -, year = 1992 -, pages = "13--23" -, update = "95.01 franciosa" +, author = "S. Foldes and I. Rival and J. Urrutia" +, title = "Light sources, obstructions and spherical orders" +, journal = "Discrete Math." +, volume = 102 +, year = 1992 +, pages = "13--23" +, update = "95.01 franciosa" } @book{fd-ficg-82 -, author = "J. D. Foley and A. van Dam" -, title = "Fundamentals of Interactive Computer Graphics" -, publisher = "Addison-Wesley" -, address = "Reading, Mass." -, year = 1982 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. D. Foley and A. van Dam" +, title = "Fundamentals of Interactive Computer Graphics" +, publisher = "Addison-Wesley" +, address = "Reading, Mass." +, year = 1982 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{fdfh-cgpp-90 -, author = "J. D. Foley and A. van Dam and S. K. Feiner and J. F. Hughes" -, title = "Computer Graphics: Principles and Practice" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1990 -, note = "second edition" -, update = "98.11 bibrelex, 94.09 lambert" +, author = "J. D. Foley and A. van Dam and S. K. Feiner and J. F. Hughes" +, title = "Computer Graphics: Principles and Practice" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1990 +, note = "second edition" +, update = "98.11 bibrelex, 94.09 lambert" } @book{fdfhp-icg-93 -, author = "J. D. Foley and A. van Dam and S. K. Feiner and J. F. Hughes and Phillips" -, title = "Introduction to Computer Graphics" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1993 -, update = "94.09 lambert, 94.05 devillers" +, author = "J. D. Foley and A. van Dam and S. K. Feiner and J. F. Hughes and Phillips" +, title = "Introduction to Computer Graphics" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1993 +, update = "94.09 lambert, 94.05 devillers" } @article{f-tsisd-84 -, author = "T. A. Foley" -, title = "Three-stage interpolation to scattered data" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "141--150" +, author = "T. A. Foley" +, title = "Three-stage interpolation to scattered data" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "141--150" } @article{f-wbsir-87 -, author = "T. A. Foley" -, title = "Weighted bicubic spline interpolation to rapidly varying data" -, journal = "ACM Trans. Graph." -, volume = 6 -, year = 1987 -, pages = "1--18" +, author = "T. A. Foley" +, title = "Weighted bicubic spline interpolation to rapidly varying data" +, journal = "ACM Trans. Graph." +, volume = 6 +, year = 1987 +, pages = "1--18" } @inproceedings{f-mlar3-95 -, author = "Frank Follert" -, title = "Maxmin Location of an Anchored Ray in $3$-Space and Related Problems" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "7--12" -, update = "95.09 jones" +, author = "Frank Follert" +, title = "Maxmin Location of an Anchored Ray in $3$-Space and Related Problems" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "7--12" +, update = "95.09 jones" } @inproceedings{f-vsswm-96 -, author = "F. Follert" -, title = "Viewing a set of spheres while moving on a linear flightpath" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "137--142" -, update = "96.09 mitchell" +, author = "F. Follert" +, title = "Viewing a set of spheres while moving on a linear flightpath" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "137--142" +, update = "96.09 mitchell" } @inproceedings{fss-sawmf-95 -, author = "Frank Follert and Elmar Sch{\"o}mer and J{\"u}rgen Sellen" -, title = "Subquadratic Algorithms for the Weighted Maximin Facility Location Problem" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "1--6" -, update = "95.09 jones" +, author = "Frank Follert and Elmar Sch{\"o}mer and J{\"u}rgen Sellen" +, title = "Subquadratic Algorithms for the Weighted Maximin Facility Location Problem" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "1--6" +, update = "95.09 jones" } @techreport{fssst-cleac-95t -, author = "F. Follert and E. Sch{\"o}mer and J. Sellen and M. Smid and C. Thiel" -, title = "Computing a largest empty anchored cylinder, and related problems" -, type = "Report" -, number = "MPI-I-95-1-001" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1995 -, update = "96.01 smid, 95.05 smid" +, author = "F. Follert and E. Sch{\"o}mer and J. Sellen and M. Smid and C. Thiel" +, title = "Computing a largest empty anchored cylinder, and related problems" +, type = "Report" +, number = "MPI-I-95-1-001" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1995 +, update = "96.01 smid, 95.05 smid" } @inproceedings{fssst-cleac-95i -, author = "F. Follert and E. Sch{\"o}mer and J. Sellen and M. Smid and C. Thiel" -, title = "Computing a largest empty anchored cylinder, and related problems" -, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1026 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "428--442" -, update = "97.03 agarwal, 96.01 smid" +, author = "F. Follert and E. Sch{\"o}mer and J. Sellen and M. Smid and C. Thiel" +, title = "Computing a largest empty anchored cylinder, and related problems" +, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1026 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "428--442" +, update = "97.03 agarwal, 96.01 smid" } @article{fssst-cleac-97 -, author = "F. Follert and E. Sch{\"o}mer and J. Sellen and M. Smid and C. Thiel" -, title = "Computing a largest empty anchored cylinder, and related problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "563--580" -, update = "98.03 smid" +, author = "F. Follert and E. Sch{\"o}mer and J. Sellen and M. Smid and C. Thiel" +, title = "Computing a largest empty anchored cylinder, and related problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "563--580" +, update = "98.03 smid" } @article{fc-sprap-90 -, author = "D. Y.-S. Fong and J.-L. Chu" -, title = "A string pattern recognition approach to polygon clipping" -, journal = "Pattern Recogn." -, volume = 23 -, number = 8 -, year = 1990 -, pages = "879--892" -, keywords = "polygons, clipping" -, update = "95.09 korneenko" +, author = "D. Y.-S. Fong and J.-L. Chu" +, title = "A string pattern recognition approach to polygon clipping" +, journal = "Pattern Recogn." +, volume = 23 +, number = 8 +, year = 1990 +, pages = "879--892" +, keywords = "polygons, clipping" +, update = "95.09 korneenko" } @techreport{f-gta-92 -, author = "A. B. Forbes" -, title = "Geometric tolerance assessment" -, type = "Technical {Report}" -, number = "DITC 210/92" -, institution = "Division of Information Technology and Computing, National Physical Laboratory" -, address = "Teddington, UK" -, month = oct -, year = 1992 -, update = "98.07 bibrelex" +, author = "A. B. Forbes" +, title = "Geometric tolerance assessment" +, type = "Technical {Report}" +, number = "DITC 210/92" +, institution = "Division of Information Technology and Computing, National Physical Laboratory" +, address = "Teddington, UK" +, month = oct +, year = 1992 +, update = "98.07 bibrelex" } @book{ff-fn-62 -, author = "L. Ford and D. Fulkerson" -, title = "Flows in Networks" -, publisher = "Princeton University Press" -, year = 1962 -, update = "97.11 bibrelex" +, author = "L. Ford and D. Fulkerson" +, title = "Flows in Networks" +, publisher = "Princeton University Press" +, year = 1962 +, update = "97.11 bibrelex" } @phdthesis{f-agpsp-92 -, author = "M. Formann" -, title = "Algorithms for geometric packing and scaling problems" -, school = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" -, address = "Berling, Germany" -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "M. Formann" +, title = "Algorithms for geometric packing and scaling problems" +, school = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" +, address = "Berling, Germany" +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @techreport{f-wcp-92 -, author = "M. Formann" -, title = "Weighted closest pairs" -, type = "Report" -, number = "B-92-04" -, institution = "Fachber. Math., Free Univ. Berlin" -, month = feb -, year = 1992 -, precedes = "f-wcp-93" -, update = "93.05 smid" +, author = "M. Formann" +, title = "Weighted closest pairs" +, type = "Report" +, number = "B-92-04" +, institution = "Fachber. Math., Free Univ. Berlin" +, month = feb +, year = 1992 +, precedes = "f-wcp-93" +, update = "93.05 smid" } @inproceedings{f-wcp-92c -, author = "Michael Formann" -, title = "Weighted Closest Pairs" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "59--60" -, update = "00.03 bibrelex" +, author = "Michael Formann" +, title = "Weighted Closest Pairs" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "59--60" +, update = "00.03 bibrelex" } @inproceedings{f-wcp-93 -, author = "M. Formann" -, title = "Weighted closest pairs" -, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 665 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "270--281" -, succeeds = "f-wcp-92" -, update = "93.05 smid" +, author = "M. Formann" +, title = "Weighted closest pairs" +, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 665 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "270--281" +, succeeds = "f-wcp-92" +, update = "93.05 smid" } @techreport{fhhklsww-dgphr-90t -, author = "M. Formann and T. Hagerup and J. Haralambides and M. Kaufmann and F. T. Leighton and A. Simvonis and Emo Welzl and G. Woeginger" -, title = "Drawing graphs in the plane with high resolution" -, type = "Technical {Report}" -, number = "B-90-10" -, institution = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, month = dec -, year = 1990 -, precedes = "fhhklsww-dgphr-90i" -, update = "98.07 rote, 98.03 mitchell, 93.09 milone+mitchell" +, author = "M. Formann and T. Hagerup and J. Haralambides and M. Kaufmann and F. T. Leighton and A. Simvonis and Emo Welzl and G. Woeginger" +, title = "Drawing graphs in the plane with high resolution" +, type = "Technical {Report}" +, number = "B-90-10" +, institution = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, month = dec +, year = 1990 +, precedes = "fhhklsww-dgphr-90i" +, update = "98.07 rote, 98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{fhhklsww-dgphr-90i -, author = "M. Formann and T. Hagerup and J. Haralambides and M. Kaufmann and F. T. Leighton and A. Simvonis and Emo Welzl and G. Woeginger" -, title = "Drawing Graphs in the Plane with High Resolution" -, booktitle = "Proc. 31th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "86--95" -, keywords = "graph drawing" -, succeeds = "fhhklsww-dgphr-90t" -, precedes = "fhhklsww-dgphr-93" -, update = "98.11 bibrelex, 98.07 rote, 98.03 mitchell, 94.05 franciosa, 93.09 tamassia" +, author = "M. Formann and T. Hagerup and J. Haralambides and M. Kaufmann and F. T. Leighton and A. Simvonis and Emo Welzl and G. Woeginger" +, title = "Drawing Graphs in the Plane with High Resolution" +, booktitle = "Proc. 31th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "86--95" +, keywords = "graph drawing" +, succeeds = "fhhklsww-dgphr-90t" +, precedes = "fhhklsww-dgphr-93" +, update = "98.11 bibrelex, 98.07 rote, 98.03 mitchell, 94.05 franciosa, 93.09 tamassia" } @article{fhhklsww-dgphr-93 -, author = "M. Formann and T. Hagerup and J. Haralambides and M. Kaufmann and F. T. Leighton and A. Simvonis and Emo Welzl and G. Woeginger" -, title = "Drawing Graphs in the Plane with High Resolution" -, journal = "SIAM J. Comput." -, volume = 22 -, year = 1993 -, pages = "1035--1052" -, keywords = "graph drawing" -, succeeds = "fhhklsww-dgphr-90i" -, update = "98.03 mitchell, 94.05 franciosa" +, author = "M. Formann and T. Hagerup and J. Haralambides and M. Kaufmann and F. T. Leighton and A. Simvonis and Emo Welzl and G. Woeginger" +, title = "Drawing Graphs in the Plane with High Resolution" +, journal = "SIAM J. Comput." +, volume = 22 +, year = 1993 +, pages = "1035--1052" +, keywords = "graph drawing" +, succeeds = "fhhklsww-dgphr-90i" +, update = "98.03 mitchell, 94.05 franciosa" } @inproceedings{fww-rtdcm-91 -, author = "M. Formann and D. Wagner and F. Wagner" -, title = "Routing through a dense channel with minimum total wire length" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "475--482" +, author = "M. Formann and D. Wagner and F. Wagner" +, title = "Routing through a dense channel with minimum total wire length" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "475--482" } @article{fww-rtdcm-93 -, author = "M. Formann and D. Wagner and F. Wagner" -, title = "Routing through a Dense Channel with Minimum Total Wire Length" -, journal = "J. Algorithms" -, volume = 15 -, year = 1993 -, pages = "267--283" -, update = "97.03 gaertner+salinger" +, author = "M. Formann and D. Wagner and F. Wagner" +, title = "Routing through a Dense Channel with Minimum Total Wire Length" +, journal = "J. Algorithms" +, volume = 15 +, year = 1993 +, pages = "267--283" +, update = "97.03 gaertner+salinger" } @unpublished{fw--90 -, author = "M. Formann and F. Wagner" -, year = 1990 -, note = "Unpublished note" -, update = "97.11 bibrelex" +, author = "M. Formann and F. Wagner" +, year = 1990 +, note = "Unpublished note" +, update = "97.11 bibrelex" } @inproceedings{fw-ppalm-91 -, author = "M. Formann and F. Wagner" -, title = "A packing problem with applications to lettering of maps" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "281--288" -, keywords = "packing, optimization" -, cites = "b-lbact-83, e-ddsoi-80, eis-ctmfp-76, gj-cigtn-79, ia-eaggs-86, i-pnm-75, y-laml-72, ZZZ" -, update = "97.11 bibrelex" +, author = "M. Formann and F. Wagner" +, title = "A packing problem with applications to lettering of maps" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "281--288" +, keywords = "packing, optimization" +, cites = "b-lbact-83, e-ddsoi-80, eis-ctmfp-76, gj-cigtn-79, ia-eaggs-86, i-pnm-75, y-laml-72, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{fw-vlpve-91 -, author = "M. Formann and F. Wagner" -, title = "The {VLSI} Layout Problem in Various Embedding Models" -, booktitle = "Proc. 16th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 484 -, year = 1991 -, pages = "130--139" -, update = "97.03 gaertner+salinger" +, author = "M. Formann and F. Wagner" +, title = "The {VLSI} Layout Problem in Various Embedding Models" +, booktitle = "Proc. 16th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 484 +, year = 1991 +, pages = "130--139" +, update = "97.03 gaertner+salinger" } @techreport{f-bcg-84 -, author = "A. R. Forrest" -, title = "Bibliography on computational geometry" -, type = "Internal {Report}" -, number = "CSA-8-1984/Memo CGP84-1" -, institution = "Comput. Geom. Project, School Comput. Studies Accountancy, Univ. East Anglia" -, year = 1984 +, author = "A. R. Forrest" +, title = "Bibliography on computational geometry" +, type = "Internal {Report}" +, number = "CSA-8-1984/Memo CGP84-1" +, institution = "Comput. Geom. Project, School Comput. Studies Accountancy, Univ. East Anglia" +, year = 1984 } @article{f-cg-71 -, author = "A. R. Forrest" -, title = "Computational geometry" -, journal = "Proc. Roy. Soc. Lond. Ser. A" -, volume = 321 -, year = 1971 -, pages = "187--195" +, author = "A. R. Forrest" +, title = "Computational geometry" +, journal = "Proc. Roy. Soc. Lond. Ser. A" +, volume = 321 +, year = 1971 +, pages = "187--195" } @incollection{f-cgap-74 -, author = "A. R. Forrest" -, title = "Computational geometry: achievements and problems" -, editor = "R. E. Barnhill and R. F. Riesenfeld" -, booktitle = "Comput. Aided Geom. Design" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1974 -, pages = "17--44" +, author = "A. R. Forrest" +, title = "Computational geometry: achievements and problems" +, editor = "R. E. Barnhill and R. F. Riesenfeld" +, booktitle = "Comput. Aided Geom. Design" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1974 +, pages = "17--44" } @incollection{f-cgset-87 -, author = "A. R. Forrest" -, title = "Computational Geometry and Software Engineering: Towards a Geometric Computing Environment" -, editor = "D. F. Rogers and R. A. Earnshaw" -, booktitle = "Techniques for Computer Graphics" -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "23--37" -, isbn = "3-540-96492-4" -, update = "93.09 held" +, author = "A. R. Forrest" +, title = "Computational Geometry and Software Engineering: Towards a Geometric Computing Environment" +, editor = "D. F. Rogers and R. A. Earnshaw" +, booktitle = "Techniques for Computer Graphics" +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "23--37" +, isbn = "3-540-96492-4" +, update = "93.09 held" } @incollection{f-cgpractice-85 -, author = "A. R. Forrest" -, title = "Computational geometry in practice" -, editor = "R. A. Earnshaw" -, booktitle = "Fundamental Algorithms for Computer Graphics" -, series = "NATO ASI" -, volume = "F17" -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "707--724" +, author = "A. R. Forrest" +, title = "Computational geometry in practice" +, editor = "R. A. Earnshaw" +, booktitle = "Fundamental Algorithms for Computer Graphics" +, series = "NATO ASI" +, volume = "F17" +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "707--724" } @incollection{f-gcest-88 -, author = "A. R. Forrest" -, title = "Geometric computing environments: some tentative thoughts" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "185--198" -, keywords = "implementing algorithms" -, update = "99.11 bibrelex" +, author = "A. R. Forrest" +, title = "Geometric computing environments: some tentative thoughts" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "185--198" +, keywords = "implementing algorithms" +, update = "99.11 bibrelex" } @incollection{f-rwga-80 -, author = "A. R. Forrest" -, title = "Recent work on geometric algorithms" -, editor = "K. W. Brodlie" -, booktitle = "Mathematical Methods in Computer Graphics and Design" -, publisher = "Academic Press" -, address = "London, England" -, year = 1980 -, pages = "105--121" +, author = "A. R. Forrest" +, title = "Recent work on geometric algorithms" +, editor = "K. W. Brodlie" +, booktitle = "Mathematical Methods in Computer Graphics and Design" +, publisher = "Academic Press" +, address = "London, England" +, year = 1980 +, pages = "105--121" } @book{f-wd-71 -, author = "J. W. Forrester" -, title = "World Dynamics" -, publisher = "Wright-Allen" -, address = "Cambridge, Mass." -, year = 1971 -, keywords = "graph drawing, example" -, update = "96.09 tamassia, 96.04 garg" +, author = "J. W. Forrester" +, title = "World Dynamics" +, publisher = "Wright-Allen" +, address = "Cambridge, Mass." +, year = 1971 +, keywords = "graph drawing, example" +, update = "96.09 tamassia, 96.04 garg" } @article{f-gcen-32 -, author = "R. M. Forster" -, title = "Geometrical Circuits of Electrical Networks" -, journal = "Trans. Amer. Inst. Elec. Engrs." -, volume = 51 -, year = 1932 -, pages = "309--317" -, update = "97.11 bibrelex" +, author = "R. M. Forster" +, title = "Geometrical Circuits of Electrical Networks" +, journal = "Trans. Amer. Inst. Elec. Engrs." +, volume = 51 +, year = 1932 +, pages = "309--317" +, update = "97.11 bibrelex" } @book{fm-cslas-67 -, author = "G. Forsythe and C. Moler" -, title = "Computer solutions of linear algebraic systems" -, publisher = "Prentice Hall" -, year = 1967 -, update = "97.03 devillers" +, author = "G. Forsythe and C. Moler" +, title = "Computer solutions of linear algebraic systems" +, publisher = "Prentice Hall" +, year = 1967 +, update = "97.03 devillers" } @inproceedings{f-btapi-96 -, author = "S. Fortune" -, title = "A beam-tracing algorithm for prediction of indoor radio propagation" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, site = "Philadelphia, PA" -, month = may -, year = 1996 -, pages = "76--81" -, update = "98.07 bibrelex" +, author = "S. Fortune" +, title = "A beam-tracing algorithm for prediction of indoor radio propagation" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, site = "Philadelphia, PA" +, month = may +, year = 1996 +, pages = "76--81" +, update = "98.07 bibrelex" } @inproceedings{f-savd-86 -, author = "S. Fortune" -, title = "A sweepline algorithm for {Voronoi} diagrams" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "313--322" -, precedes = "f-savd-87" -, cites = "ae-oacwv-84, bwy-oetac-80, cd-vdbcd-85, f-fapct-85, gs-cdtp-78, k-eccs-79, ld-gvdp-81, ls-tacdt-80, ls-ippvd-87, ls-pptmc-85, l-matps-82, oim-iimvd-84, p-masp-77, sh-cpp-75, s-a-83, st-pplup-86, y-oavds-84, ZZZ" -, update = "98.03 bibrelex" +, author = "S. Fortune" +, title = "A sweepline algorithm for {Voronoi} diagrams" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "313--322" +, precedes = "f-savd-87" +, cites = "ae-oacwv-84, bwy-oetac-80, cd-vdbcd-85, f-fapct-85, gs-cdtp-78, k-eccs-79, ld-gvdp-81, ls-tacdt-80, ls-ippvd-87, ls-pptmc-85, l-matps-82, oim-iimvd-84, p-masp-77, sh-cpp-75, s-a-83, st-pplup-86, y-oavds-84, ZZZ" +, update = "98.03 bibrelex" } @article{f-nsa2d-95 -, author = "S. Fortune" -, title = "Numerical stability of algorithms for $2$-d {Delaunay} triangulations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, number = "1--2" -, year = 1995 -, pages = "193--213" -, keywords = "robustness, numerical precision" -, succeeds = "f-nsa2d-92" -, update = "98.07 tamassia, 96.01 liotta" +, author = "S. Fortune" +, title = "Numerical stability of algorithms for $2$-d {Delaunay} triangulations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, number = "1--2" +, year = 1995 +, pages = "193--213" +, keywords = "robustness, numerical precision" +, succeeds = "f-nsa2d-92" +, update = "98.07 tamassia, 96.01 liotta" } @inproceedings{f-nsa2d-92 -, author = "S. Fortune" -, title = "Numerical stability of algorithms for $2$-d {Delaunay} triangulations and {Voronoi} diagrams" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "83--92" -, cites = "dba-nm-74, f-savd-87, f-smpst-89, f-pcg-93, gs-cdtp-78, gs-pmgsc-85, h-pargc-89, l-scsi-77, m-vigau-88a, m-vigau-88p, si-gafpa-88, si-cvd10-89, ZZZ" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "S. Fortune" +, title = "Numerical stability of algorithms for $2$-d {Delaunay} triangulations and {Voronoi} diagrams" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "83--92" +, cites = "dba-nm-74, f-savd-87, f-smpst-89, f-pcg-93, gs-cdtp-78, gs-pmgsc-85, h-pargc-89, l-scsi-77, m-vigau-88a, m-vigau-88p, si-gafpa-88, si-cvd10-89, ZZZ" +, update = "98.07 bibrelex, 97.11 bibrelex" } @article{f-pmmia-97 -, author = "S. Fortune" -, title = "Polyhedral Modeling with Multiprecision Integer Arithmetic" -, journal = "Comput. Aided Design" -, volume = 29 -, number = 2 -, year = 1997 -, pages = "123--133" -, update = "98.07 held" +, author = "S. Fortune" +, title = "Polyhedral Modeling with Multiprecision Integer Arithmetic" +, journal = "Comput. Aided Design" +, volume = 29 +, number = 2 +, year = 1997 +, pages = "123--133" +, update = "98.07 held" } @incollection{f-pcg-93 -, author = "S. Fortune" -, title = "Progress in Computational Geometry" -, editor = "R. Martin" -, booktitle = "Directions in Computational Geometry" -, publisher = "Information Geometers" -, year = 1993 -, pages = "81--128" -, keywords = "survey paper" -, update = "98.03 mitchell, 93.05 orourke" +, author = "S. Fortune" +, title = "Progress in Computational Geometry" +, editor = "R. Martin" +, booktitle = "Directions in Computational Geometry" +, publisher = "Information Geometers" +, year = 1993 +, pages = "81--128" +, keywords = "survey paper" +, update = "98.03 mitchell, 93.05 orourke" } @inproceedings{f-riga-96 -, author = "S. Fortune" -, title = "Robustness Issues in Geometric Algorithms" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, site = "Philadelphia, PA, USA" -, month = may -, year = 1996 -, pages = "20--23" -, update = "97.11 held" +, author = "S. Fortune" +, title = "Robustness Issues in Geometric Algorithms" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, site = "Philadelphia, PA, USA" +, month = may +, year = 1996 +, pages = "20--23" +, update = "97.11 held" } @incollection{f-riga-96i -, author = "S. Fortune" -, title = "Robustness issues in geometric algorithms" -, editor = "M. C. Lin and D. Manocha" -, booktitle = "Applied Computational Geometry: Towards Geometric Engineering" -, series = "Lecture Notes Comput. Sci." -, volume = 1148 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "9--14" -, update = "98.07 bibrelex" +, author = "S. Fortune" +, title = "Robustness issues in geometric algorithms" +, editor = "M. C. Lin and D. Manocha" +, booktitle = "Applied Computational Geometry: Towards Geometric Engineering" +, series = "Lecture Notes Comput. Sci." +, volume = 1148 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "9--14" +, update = "98.07 bibrelex" } @techreport{f-smpst-90 -, author = "S. Fortune" -, title = "Stable Maintenance of Point-Set Triangulation in Two Dimensions" -, type = "Manuscript" -, institution = "AT\&T Bell Laboratories" -, year = 1990 -, update = "97.11 bibrelex" +, author = "S. Fortune" +, title = "Stable Maintenance of Point-Set Triangulation in Two Dimensions" +, type = "Manuscript" +, institution = "AT\&T Bell Laboratories" +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{f-smpst-89 -, author = "S. Fortune" -, title = "Stable maintenance of point set triangulations in two dimensions" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, month = oct -, year = 1989 -, pages = "494--505" -, update = "98.11 bibrelex" +, author = "S. Fortune" +, title = "Stable maintenance of point set triangulations in two dimensions" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, month = oct +, year = 1989 +, pages = "494--505" +, update = "98.11 bibrelex" } @article{f-vrtdp-99 -, author = "S. Fortune" -, title = "Vertex-Rounding a Three-Dimensional Polyhedral Subdivision" -, journal = "Discrete Comput. Geom." -, volume = 22 -, number = 4 -, year = 1999 -, pages = "593--618" -, update = "99.11 held" +, author = "S. Fortune" +, title = "Vertex-Rounding a Three-Dimensional Polyhedral Subdivision" +, journal = "Discrete Comput. Geom." +, volume = 22 +, number = 4 +, year = 1999 +, pages = "593--618" +, update = "99.11 held" } @incollection{f-vddt-92 -, author = "S. Fortune" -, title = "Voronoi diagrams and {Delaunay} triangulations" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, edition = "1st" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1992 -, pages = "193--233" -, keywords = "survey paper, Voronoi diagrams, Delaunay triangulations" -, precedes = "f-vddt-95" -, update = "98.03 bibrelex, 97.11 bibrelex, 93.09 erickson" +, author = "S. Fortune" +, title = "Voronoi diagrams and {Delaunay} triangulations" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, edition = "1st" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1992 +, pages = "193--233" +, keywords = "survey paper, Voronoi diagrams, Delaunay triangulations" +, precedes = "f-vddt-95" +, update = "98.03 bibrelex, 97.11 bibrelex, 93.09 erickson" } @incollection{f-vddt-95 -, author = "S. Fortune" -, title = "Voronoi diagrams and {Delaunay} triangulations" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "225--265" -, keywords = "survey paper, Voronoi diagrams, Delaunay triangulations" -, succeeds = "f-vddt-92" -, update = "99.11 bibrelex, 98.07 icking, 98.03 bibrelex, 97.11 bibrelex, 97.03 pocchiola" +, author = "S. Fortune" +, title = "Voronoi diagrams and {Delaunay} triangulations" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "225--265" +, keywords = "survey paper, Voronoi diagrams, Delaunay triangulations" +, succeeds = "f-vddt-92" +, update = "99.11 bibrelex, 98.07 icking, 98.03 bibrelex, 97.11 bibrelex, 97.03 pocchiola" } @incollection{f-vddt-97 -, author = "S. Fortune" -, title = "Voronoi diagrams and {Delaunay} triangulations" -, chapter = 20 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "377--388" -, update = "97.11 orourke" +, author = "S. Fortune" +, title = "Voronoi diagrams and {Delaunay} triangulations" +, chapter = 20 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "377--388" +, update = "97.11 orourke" } @inproceedings{fm-nsala-91 -, author = "S. Fortune and V. Milenkovic" -, title = "Numerical stability of algorithms for line arrangements" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, site = "North Conway, N.H." -, month = jun -, year = 1991 -, pages = "334--341" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "arrangements, implementing algorithms, robust geometric computation" -, cites = "cgl-pgd-83, eg-tsa-86, eos-calha-86, f-smpst-90, gt-tgt-87, g-as-72, gss-egbra-89, gs-pmgsc-85, h-pargc-89, hhk-tirgc-88, hk-prga-89, k-rmrs-89, lm-cschu-90, m-dpggt-89, m-vigau-88p, m-vigau-88a, m-utcpc-89, si-gafpa-88, si-cvd10-89, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 daniels" +, author = "S. Fortune and V. Milenkovic" +, title = "Numerical stability of algorithms for line arrangements" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, site = "North Conway, N.H." +, month = jun +, year = 1991 +, pages = "334--341" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "arrangements, implementing algorithms, robust geometric computation" +, cites = "cgl-pgd-83, eg-tsa-86, eos-calha-86, f-smpst-90, gt-tgt-87, g-as-72, gss-egbra-89, gs-pmgsc-85, h-pargc-89, hhk-tirgc-88, hk-prga-89, k-rmrs-89, lm-cschu-90, m-dpggt-89, m-vigau-88p, m-vigau-88a, m-utcpc-89, si-gafpa-88, si-cvd10-89, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 daniels" } @inproceedings{fv-eeacg-93 -, author = "S. Fortune and C. J. {Van Wyk}" -, title = "Efficient exact arithmetic for computational geometry" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, month = may -, year = 1993 -, pages = "163--172" -, succeeds = "fw-eeacg-92" -, cites = "b-csmpi-72, bkv-eccm-91, c-sede-92, cms-frric-92i, f-nsa2d-92, f-vddt-92, gs-pmgsc-85, h-gsm-89, kln-edtur-91, k-sa-81, l-scsi-77, m-vigau-88a, m-maia-79, svh-bpepa-89, sh-cpp-75, si-gafpa-88, si-cvd10-89, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" +, author = "S. Fortune and C. J. {Van Wyk}" +, title = "Efficient exact arithmetic for computational geometry" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, month = may +, year = 1993 +, pages = "163--172" +, succeeds = "fw-eeacg-92" +, cites = "b-csmpi-72, bkv-eccm-91, c-sede-92, cms-frric-92i, f-nsa2d-92, f-vddt-92, gs-pmgsc-85, h-gsm-89, kln-edtur-91, k-sa-81, l-scsi-77, m-vigau-88a, m-maia-79, svh-bpepa-89, sh-cpp-75, si-gafpa-88, si-cvd10-89, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" } @article{fv-sayee-96 -, author = "S. Fortune and C. J. {Van Wyk}" -, title = "Static Analysis Yields Efficient Exact Integer Arithmetic for Computational Geometry" -, journal = "ACM Trans. Graph." -, volume = 15 -, number = 3 -, month = jul -, year = 1996 -, pages = "223--248" -, update = "98.07 bibrelex, 97.03 held" +, author = "S. Fortune and C. J. {Van Wyk}" +, title = "Static Analysis Yields Efficient Exact Integer Arithmetic for Computational Geometry" +, journal = "ACM Trans. Graph." +, volume = 15 +, number = 3 +, month = jul +, year = 1996 +, pages = "223--248" +, update = "98.07 bibrelex, 97.03 held" } @inproceedings{fw-pcm-88 -, author = "S. Fortune and G. Wilfong" -, title = "Planning constrained motion" -, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." -, year = 1988 -, pages = "445--459" -, precedes = "fw-pcm-91" -, update = "98.03 mitchell" +, author = "S. Fortune and G. Wilfong" +, title = "Planning constrained motion" +, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." +, year = 1988 +, pages = "445--459" +, precedes = "fw-pcm-91" +, update = "98.03 mitchell" } @article{fw-pcm-91 -, author = "S. Fortune and G. Wilfong" -, title = "Planning constrained motion" -, journal = "Annals of Math. and AI" -, volume = 3 -, year = 1991 -, pages = "21--82" -, succeeds = "fw-pcm-88" -, update = "98.03 mitchell" +, author = "S. Fortune and G. Wilfong" +, title = "Planning constrained motion" +, journal = "Annals of Math. and AI" +, volume = 3 +, year = 1991 +, pages = "21--82" +, succeeds = "fw-pcm-88" +, update = "98.03 mitchell" } @inproceedings{fwy-cmtra-86 -, author = "S. Fortune and G. Wilfong and C. Yap" -, title = "Coordinated motion of two robot arms" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1986 -, pages = "1216--1223" -, keywords = "motion planning" -, update = "00.03 agarwal" +, author = "S. Fortune and G. Wilfong and C. Yap" +, title = "Coordinated motion of two robot arms" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1986 +, pages = "1216--1223" +, keywords = "motion planning" +, update = "00.03 agarwal" } @techreport{fw-eeacg-92 -, author = "S. Fortune and C. Van Wyk" -, title = "Efficient Exact Arithmetic for Comutational Geometry" -, type = "manuscript" -, year = 1992 -, precedes = "fv-eeacg-93" -, update = "98.11 bibrelex" +, author = "S. Fortune and C. Van Wyk" +, title = "Efficient Exact Arithmetic for Comutational Geometry" +, type = "manuscript" +, year = 1992 +, precedes = "fv-eeacg-93" +, update = "98.11 bibrelex" } @manual{fw-lnum-93 -, author = "S. Fortune and C. Van Wyk" -, title = "{LN} User Manual" -, organization = "AT\&T Bell Laboratories" -, year = 1993 -, update = "98.11 bibrelex" +, author = "S. Fortune and C. Van Wyk" +, title = "{LN} User Manual" +, organization = "AT\&T Bell Laboratories" +, year = 1993 +, update = "98.11 bibrelex" } @inproceedings{f-fapct-85 -, author = "S. J. Fortune" -, title = "A fast algorithm for polygon containment by translation" -, booktitle = "Proc. 12th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 194 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "189--198" -, keywords = "motion planning, Voronoi diagrams, polygons" +, author = "S. J. Fortune" +, title = "A fast algorithm for polygon containment by translation" +, booktitle = "Proc. 12th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 194 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "189--198" +, keywords = "motion planning, Voronoi diagrams, polygons" } @techreport{f-nddf-87 -, author = "S. J. Fortune" -, title = "A note on {Delaunay} diagonal flips" -, type = "Manuscript" -, institution = "AT\&T Bell Lab." -, address = "Murray Hill, NJ" -, year = 1987 +, author = "S. J. Fortune" +, title = "A note on {Delaunay} diagonal flips" +, type = "Manuscript" +, institution = "AT\&T Bell Lab." +, address = "Murray Hill, NJ" +, year = 1987 } @article{f-savd-87 -, author = "S. J. Fortune" -, title = "A sweepline algorithm for {Voronoi} diagrams" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "153--174" -, keywords = "plane-sweep, geometric transformations, Voronoi diagrams, Delaunay triangulations" -, succeeds = "f-savd-86" +, author = "S. J. Fortune" +, title = "A sweepline algorithm for {Voronoi} diagrams" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "153--174" +, keywords = "plane-sweep, geometric transformations, Voronoi diagrams, Delaunay triangulations" +, succeeds = "f-savd-86" } @article{fh-nrnna-79 -, author = "S. J. Fortune and J. E. Hopcroft" -, title = "A note on {Rabin}'s nearest-neighbor algorithm" -, journal = "Inform. Process. Lett." -, volume = 8 -, number = 1 -, year = 1979 -, pages = "20--23" -, keywords = "bucketing" -, update = "98.11 bibrelex" +, author = "S. J. Fortune and J. E. Hopcroft" +, title = "A note on {Rabin}'s nearest-neighbor algorithm" +, journal = "Inform. Process. Lett." +, volume = 8 +, number = 1 +, year = 1979 +, pages = "20--23" +, keywords = "bucketing" +, update = "98.11 bibrelex" } @inproceedings{f-iogda-97 -, author = "Ulrich F{\"o}{\ss}meier" -, title = "Interactive Orthogonal Graph Drawing: Algorithms and Bounds" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "111--123" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Ulrich F{\"o}{\ss}meier" +, title = "Interactive Orthogonal Graph Drawing: Algorithms and Bounds" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "111--123" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{fhk-iod4a-98 -, author = "U. F{\"o}{\ss}meier and C. Hess and M. Kaufmann" -, title = "On Improving Orthogonal Drawings: The {4M}-Algorithm" -, editor = "S. H. Whitesides" -, booktitle = "Graph Drawing (Proc. GD~'98)" -, series = "Lecture Notes Comput. Sci." -, volume = 1547 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "125--137" -, update = "99.07 vismara, 99.03 vismara" +, author = "U. F{\"o}{\ss}meier and C. Hess and M. Kaufmann" +, title = "On Improving Orthogonal Drawings: The {4M}-Algorithm" +, editor = "S. H. Whitesides" +, booktitle = "Graph Drawing (Proc. GD~'98)" +, series = "Lecture Notes Comput. Sci." +, volume = 1547 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "125--137" +, update = "99.07 vismara, 99.03 vismara" } @inproceedings{fk-aabno-97 -, author = "Ulrich F{\"o}{\ss}meier and Michael Kaufmann" -, title = "Algorithms and Area Bounds for Nonplanar Orthogonal Drawings" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "134--145" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Ulrich F{\"o}{\ss}meier and Michael Kaufmann" +, title = "Algorithms and Area Bounds for Nonplanar Orthogonal Drawings" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "134--145" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{fk-dhdgl-96 -, author = "Ulrich F{\"o}{\ss}meier and Michael Kaufmann" -, title = "Drawing High Degree Graphs with Low Bend Numbers" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, nickname = "GD '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "254--266" -, keywords = "graph drawing, planar, orthogonal" -, update = "99.03 patrignani+vismara" +, author = "Ulrich F{\"o}{\ss}meier and Michael Kaufmann" +, title = "Drawing High Degree Graphs with Low Bend Numbers" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, nickname = "GD '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "254--266" +, keywords = "graph drawing, planar, orthogonal" +, update = "99.03 patrignani+vismara" } @inproceedings{fk-ndpbg-97 -, author = "U. F{\"o}ssmeier and M. Kaufmann" -, title = "Nice Drawings for Planar Bipartite Graphs" -, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1203 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "" -, update = "00.03 devillers, 98.03 mitchell" +, author = "U. F{\"o}ssmeier and M. Kaufmann" +, title = "Nice Drawings for Planar Bipartite Graphs" +, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1203 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "" +, update = "00.03 devillers, 98.03 mitchell" } @inproceedings{fk-bmoud-95 -, author = "U. F{\"o}{\ss}meier and M. Kaufmann" -, title = "On Bend-Minimum Orthogonal Upward Drawing of Directed Planar Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "52--63" -, keywords = "graph drawing, planar, orthogonal, upward" -, update = "95.01 tamassia" +, author = "U. F{\"o}{\ss}meier and M. Kaufmann" +, title = "On Bend-Minimum Orthogonal Upward Drawing of Directed Planar Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "52--63" +, keywords = "graph drawing, planar, orthogonal, upward" +, update = "95.01 tamassia" } @inproceedings{fk-esrsp-97 -, author = "U. F{\"o}ssmeier and M. Kaufmann" -, title = "On Exact Solutions for the Rectilinear {Steiner} Problem" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "436--438" -, cites = "a-ptase-96, br-iastp-92, fk-esrsp-96, gc-orsmt-94, gj-rstpi-77, h-sprd-66, h-smtrd-76, hrw-stp-92, kps-stvl-90, l-caicl-90, r-fhars-89, sw-tfprs-95, s-hfsmt-92, z-1aasp-92, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "U. F{\"o}ssmeier and M. Kaufmann" +, title = "On Exact Solutions for the Rectilinear {Steiner} Problem" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "436--438" +, cites = "a-ptase-96, br-iastp-92, fk-esrsp-96, gc-orsmt-94, gj-rstpi-77, h-sprd-66, h-smtrd-76, hrw-stp-92, kps-stvl-90, l-caicl-90, r-fhars-89, sw-tfprs-95, s-hfsmt-92, z-1aasp-92, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{fk-esrsp-96 -, author = "U. F{\"o}ssmeier and M. Kaufmann" -, title = "On exact solutions for the rectilinear {Steiner} problem. {Part} {I}: {Theoretical} results" -, type = "Technical {Report}" -, number = "WSI-96-09" -, institution = "Universit{\"a}t T{\"u}bingen" -, address = "T{\"u}bingen, Germany" -, year = 1996 -, update = "98.07 bibrelex" +, author = "U. F{\"o}ssmeier and M. Kaufmann" +, title = "On exact solutions for the rectilinear {Steiner} problem. {Part} {I}: {Theoretical} results" +, type = "Technical {Report}" +, number = "WSI-96-09" +, institution = "Universit{\"a}t T{\"u}bingen" +, address = "T{\"u}bingen, Germany" +, year = 1996 +, update = "98.07 bibrelex" } @inproceedings{fkz-faars-93 -, author = "Ulrich F{\"o}{\ss}meier and Michael Kaufmann and Alexander Zelikovsky" -, title = "Faster Approximation Algorithms for the Rectilinear {Steiner} Tree Problem" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "533--542" -, precedes = "fkz-faars-97" -, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Ulrich F{\"o}{\ss}meier and Michael Kaufmann and Alexander Zelikovsky" +, title = "Faster Approximation Algorithms for the Rectilinear {Steiner} Tree Problem" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "533--542" +, precedes = "fkz-faars-97" +, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 94.05 devillers+smid, 93.09 milone+mitchell" } @article{fkz-faars-97 -, author = "Ulrich F{\"o}{\ss}meier and Michael Kaufmann and Alexander Zelikovsky" -, title = "Faster Approximation Algorithms for the Rectilinear {Steiner} Tree Problem" -, journal = "Discrete Comput. Geom." -, volume = 18 -, number = 1 -, year = 1997 -, pages = "93--109" -, succeeds = "fkz-faars-93" -, update = "98.03 mitchell" +, author = "Ulrich F{\"o}{\ss}meier and Michael Kaufmann and Alexander Zelikovsky" +, title = "Faster Approximation Algorithms for the Rectilinear {Steiner} Tree Problem" +, journal = "Discrete Comput. Geom." +, volume = 18 +, number = 1 +, year = 1997 +, pages = "93--109" +, succeeds = "fkz-faars-93" +, update = "98.03 mitchell" } @book{f-gm2ag-82 -, author = "L. W. Foster" -, title = "GEO-METRICS {II}: {The} application of geometric tolerancing techniques" -, publisher = "Addison-Wesley" -, year = 1982 -, update = "98.07 bibrelex" +, author = "L. W. Foster" +, title = "GEO-METRICS {II}: {The} application of geometric tolerancing techniques" +, publisher = "Addison-Wesley" +, year = 1982 +, update = "98.07 bibrelex" } @book{fr-sag-94 -, author = "S. Fotheringham and P. Rogerson" -, title = "Spatial analysis and {GIS}" -, publisher = "Taylor \& Francis" -, address = "Bristol, PA" -, year = 1994 -, update = "96.09 orourke" +, author = "S. Fotheringham and P. Rogerson" +, title = "Spatial analysis and {GIS}" +, publisher = "Taylor \& Francis" +, address = "Bristol, PA" +, year = 1994 +, update = "96.09 orourke" } @article{fgg-gthfl-85 -, author = "L. R. Foulds and P. B. Gibbons and J. W. Giffin" -, title = "Graph Theoretic Heuristics for the Facilities Layout Problem: An Experimental Comparison" -, journal = "Oper. Res." -, volume = "??" -, year = 1985 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "L. R. Foulds and P. B. Gibbons and J. W. Giffin" +, title = "Graph Theoretic Heuristics for the Facilities Layout Problem: An Experimental Comparison" +, journal = "Oper. Res." +, volume = "??" +, year = 1985 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{fhp-gtadm-79 -, author = "L. R. Foulds and M. D. Hendy and D. Penny" -, title = "A graph theoretic approach to the development of minimal phylogenetic trees" -, journal = "J. Mol. Evol." -, volume = 13 -, year = 1979 -, pages = "127--149" -, update = "97.11 bibrelex" +, author = "L. R. Foulds and M. D. Hendy and D. Penny" +, title = "A graph theoretic approach to the development of minimal phylogenetic trees" +, journal = "J. Mol. Evol." +, volume = 13 +, year = 1979 +, pages = "127--149" +, update = "97.11 bibrelex" } % what is this?? L.R.I. UA410 CNRS @techreport{ffgs-ucasb-87 -, author = "J. M. Fourneau and I. Fournier and A. Germa and D. Sotteau" -, title = "Unicorn: {A} Computer-Aided Scratch Book for Graph Theory" -, number = 381 -, institution = "Univ. Paris Sud" -, year = 1987 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. M. Fourneau and I. Fournier and A. Germa and D. Sotteau" +, title = "Unicorn: {A} Computer-Aided Scratch Book for Graph Theory" +, number = 381 +, institution = "Univ. Paris Sud" +, year = 1987 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{f-cchfs-79 -, author = "A. Fournier" -, title = "Comments on convex hull of a finite set of points in two dimensions" -, journal = "Inform. Process. Lett." -, volume = 8 -, year = 1979 -, pages = 173 +, author = "A. Fournier" +, title = "Comments on convex hull of a finite set of points in two dimensions" +, journal = "Inform. Process. Lett." +, volume = 8 +, year = 1979 +, pages = 173 } @article{ffc-crsm-82 -, author = "A. Fournier and D. Fussell and L. Carpenter" -, title = "Computer rendering of stochastic models" -, journal = "Commun. ACM" -, volume = 25 -, number = 6 -, year = 1982 -, pages = "371--384" +, author = "A. Fournier and D. Fussell and L. Carpenter" +, title = "Computer rendering of stochastic models" +, journal = "Commun. ACM" +, volume = 25 +, number = 6 +, year = 1982 +, pages = "371--384" } @article{fk-cannp-79 -, author = "A. Fournier and Z. M. Kedem" -, title = "Comments on the all nearest-neighbor problem for convex polygons" -, journal = "Inform. Process. Lett." -, volume = 9 -, year = 1979 -, pages = "105--107" +, author = "A. Fournier and Z. M. Kedem" +, title = "Comments on the all nearest-neighbor problem for convex polygons" +, journal = "Inform. Process. Lett." +, volume = 9 +, year = 1979 +, pages = "105--107" } @article{fm-tspep-84 -, author = "A. Fournier and D. Y. Montuno" -, title = "Triangulating simple polygons and equivalent problems" -, journal = "ACM Trans. Graph." -, volume = 3 -, number = 2 -, year = 1984 -, pages = "153--174" +, author = "A. Fournier and D. Y. Montuno" +, title = "Triangulating simple polygons and equivalent problems" +, journal = "ACM Trans. Graph." +, volume = 3 +, number = 2 +, year = 1984 +, pages = "153--174" } @article{fw-bpo-83 -, author = "A. Fournier and M. A. Wesley" -, title = "Bending polyhedral objects" -, journal = "Comput. Aided Design" -, volume = 15 -, number = 2 -, year = 1983 -, pages = "79--87" -, note = "Proc. 6th IFIP Internat. Sympos. Comput. Hardware" -, update = "97.11 bibrelex" +, author = "A. Fournier and M. A. Wesley" +, title = "Bending polyhedral objects" +, journal = "Comput. Aided Design" +, volume = 15 +, number = 2 +, year = 1983 +, pages = "79--87" +, note = "Proc. 6th IFIP Internat. Sympos. Comput. Hardware" +, update = "97.11 bibrelex" } @inproceedings{fk-rvdb-87 -, author = "D. R. Fowler and J. M. Keil" -, title = "The rectilinear {Voronoi} diagram with barriers" -, booktitle = "Proc. 25th Allerton Conf. Commun. Control Comput." -, year = 1987 -, pages = "889--897" -, keywords = "Voronoi diagrams" +, author = "D. R. Fowler and J. M. Keil" +, title = "The rectilinear {Voronoi} diagram with barriers" +, booktitle = "Proc. 25th Allerton Conf. Commun. Control Comput." +, year = 1987 +, pages = "889--897" +, keywords = "Voronoi diagrams" } @article{f-egavp-83 -, author = "G. Fowler" -, title = "Efficient Graph Automorphism by Vertex Partitioning" -, journal = "Artif. Intell." -, volume = 21 -, year = 1983 -, pages = "245--269" -, update = "97.11 bibrelex" +, author = "G. Fowler" +, title = "Efficient Graph Automorphism by Vertex Partitioning" +, journal = "Artif. Intell." +, volume = 21 +, year = 1983 +, pages = "245--269" +, update = "97.11 bibrelex" } @inproceedings{fps-mgemc-95 -, author = "P. W. Fowler and T. Pisanski and J. Shawe-Taylor" -, title = "Molecular Graph Eigenvectors for Molecular Coordinates" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "282--285" -, keywords = "graph drawing, system, 3D, force-directed" -, update = "95.01 tamassia" +, author = "P. W. Fowler and T. Pisanski and J. Shawe-Taylor" +, title = "Molecular Graph Eigenvectors for Molecular Coordinates" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "282--285" +, keywords = "graph drawing, system, 3D, force-directed" +, update = "95.01 tamassia" } @techreport{f-dpicd-?? -, author = "R. J. Fowler" -, title = "Deltri: a program for inductively computing {Delaunay} triangulations" -, type = "Technical {Report}" -, number = 18 -, institution = "Data Struct. Project, Dept. Geog., Simon Fraser Univ." -, address = "Burnaby, BC" -, year = "??" +, author = "R. J. Fowler" +, title = "Deltri: a program for inductively computing {Delaunay} triangulations" +, type = "Technical {Report}" +, number = 18 +, institution = "Data Struct. Project, Dept. Geog., Simon Fraser Univ." +, address = "Burnaby, BC" +, year = "??" } @article{fl-aeind-79 -, author = "R. J. Fowler and J. J. Little" -, title = "Automatic Extraction of Irregular Network Digital Terrain Models" -, journal = "Comput. Graph." -, volume = 13 -, number = 2 -, month = aug -, year = 1979 -, pages = "199--207" -, update = "96.09 devillers" -, annote = "Builds a triangulation to represent the surface from - dense raster model. Uses incremental Delaunay - triangulation." +, author = "R. J. Fowler and J. J. Little" +, title = "Automatic Extraction of Irregular Network Digital Terrain Models" +, journal = "Comput. Graph." +, volume = 13 +, number = 2 +, month = aug +, year = 1979 +, pages = "199--207" +, update = "96.09 devillers" +, annote = "Builds a triangulation to represent the surface from + dense raster model. Uses incremental Delaunay + triangulation." } @article{fpt-opcpa-81 -, author = "R. J. Fowler and M. S. Paterson and S. L. Tanimoto" -, title = "Optimal packing and covering in the plane are {NP}-complete" -, journal = "Inform. Process. Lett." -, volume = 12 -, number = 3 -, year = 1981 -, pages = "133--137" +, author = "R. J. Fowler and M. S. Paterson and S. L. Tanimoto" +, title = "Optimal packing and covering in the plane are {NP}-complete" +, journal = "Inform. Process. Lett." +, volume = 12 +, number = 3 +, year = 1981 +, pages = "133--137" } @article{d-fcpmp-00 -, author = "P. Di Francesco" -, title = "Folding and coloring problems in mathematics and physics" -, journal = "Bull. Amer. Math. Soc." -, volume = 37 -, number = 3 -, month = jul -, year = 2000 -, pages = "251--307" -, update = "00.11 smid, 00.07 orourke" +, author = "P. Di Francesco" +, title = "Folding and coloring problems in mathematics and physics" +, journal = "Bull. Amer. Math. Soc." +, volume = 37 +, number = 3 +, month = jul +, year = 2000 +, pages = "251--307" +, update = "00.11 smid, 00.07 orourke" } @phdthesis{f-asdh-94 -, author = "P. G. Franciosa" -, title = "Adaptive spatial data handling" -, type = "Ph.{D}. Thesis" -, school = "Dipartimento di Informatica e Sistemistica, Univ. of Rome ``La Sapienza''" -, address = "Rome, Italy" -, year = 1994 -, keywords = "doctoral thesis" -, update = "94.05 franciosa" +, author = "P. G. Franciosa" +, title = "Adaptive spatial data handling" +, type = "Ph.{D}. Thesis" +, school = "Dipartimento di Informatica e Sistemistica, Univ. of Rome ``La Sapienza''" +, address = "Rome, Italy" +, year = 1994 +, keywords = "doctoral thesis" +, update = "94.05 franciosa" } @article{fggt-chapa-94 -, author = "P. G. Franciosa and C. Gaibisso and G. Gambosi and M. Talamo" -, title = "A convex hull algorithm for points with approximately known positions" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, number = 2 -, year = 1994 -, pages = "153--163" -, update = "95.01 franciosa" +, author = "P. G. Franciosa and C. Gaibisso and G. Gambosi and M. Talamo" +, title = "A convex hull algorithm for points with approximately known positions" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, number = 2 +, year = 1994 +, pages = "153--163" +, update = "95.01 franciosa" } @techreport{fgt-assdh-93 -, author = "P. G. Franciosa and C. Gaibisso and M. Talamo" -, title = "Adaptive strategies for spatial data handling: an application to the maxima problem" -, type = "" -, number = "RAP.10.93" -, institution = "Universit{\`a} di Roma ``La Sapienza''" -, address = "Dipartimento di Informatica e Sistemistica" -, month = oct -, year = 1993 -, update = "94.05 franciosa" +, author = "P. G. Franciosa and C. Gaibisso and M. Talamo" +, title = "Adaptive strategies for spatial data handling: an application to the maxima problem" +, type = "" +, number = "RAP.10.93" +, institution = "Universit{\`a} di Roma ``La Sapienza''" +, address = "Dipartimento di Informatica e Sistemistica" +, month = oct +, year = 1993 +, update = "94.05 franciosa" } @techreport{fgt-olcha-92 -, author = "P. G. Franciosa and C. Gaibisso and M. Talamo" -, title = "An on-line convex hull algorithm on reals" -, type = "Report" -, number = "R. 301" -, institution = "Istituto di Analisi dei Sistemi ed Informatica" -, address = "Rome, Italy" -, year = 1992 -, update = "94.05 franciosa" +, author = "P. G. Franciosa and C. Gaibisso and M. Talamo" +, title = "An on-line convex hull algorithm on reals" +, type = "Report" +, number = "R. 301" +, institution = "Istituto di Analisi dei Sistemi ed Informatica" +, address = "Rome, Italy" +, year = 1992 +, update = "94.05 franciosa" } @inproceedings{fgt-oamsp-92 -, author = "Paolo Giulio Franciosa and Carlo Gaibisso and Maurizio Talamo" -, title = "An Optimal Algorithm for the Maxima Set Problem for Data in Motion" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "17--21" -, update = "00.03 bibrelex" +, author = "Paolo Giulio Franciosa and Carlo Gaibisso and Maurizio Talamo" +, title = "An Optimal Algorithm for the Maxima Set Problem for Data in Motion" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "17--21" +, update = "00.03 bibrelex" } @inproceedings{ft-oksfh-94 -, author = "P. G. Franciosa and M. Talamo" -, title = "Orders, $k$-sets and fast halfplane search on paged memory" -, booktitle = "Proc. Workshop on Orders, Algorithms and Applications" -, nickname = "ORDAL '94" -, series = "Lecture Notes Comput. Sci." -, volume = 831 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "117--127" -, update = "98.07 bibrelex, 94.09 franciosa, 94.05 franciosa" -, abstract = "We investigate the properties of the poset defined by +, author = "P. G. Franciosa and M. Talamo" +, title = "Orders, $k$-sets and fast halfplane search on paged memory" +, booktitle = "Proc. Workshop on Orders, Algorithms and Applications" +, nickname = "ORDAL '94" +, series = "Lecture Notes Comput. Sci." +, volume = 831 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "117--127" +, update = "98.07 bibrelex, 94.09 franciosa, 94.05 franciosa" +, abstract = "We investigate the properties of the poset defined by the set inclusion relation on the set of possible answers to an halfplane search problem. We use these properties to design a static data structure for $n$ points stored in pages of size $b$ @@ -60299,6908 +60299,6908 @@ @inproceedings{ft-oksfh-94 } @article{f-nolnm-61 -, author = "R. Francis" -, title = "A note on the optimum location of new machines" -, journal = "J. Indust. Eng." -, volume = 12 -, year = 1961 -, pages = "41--47" -, update = "98.03 bibrelex" +, author = "R. Francis" +, title = "A note on the optimum location of new machines" +, journal = "J. Indust. Eng." +, volume = 12 +, year = 1961 +, pages = "41--47" +, update = "98.03 bibrelex" } @article{f-samlp-67 -, author = "R. Francis" -, title = "Some aspects of minimax location problem" -, journal = "Oper. Res." -, volume = 15 -, year = 1967 -, pages = "1163--1168" -, update = "98.03 bibrelex" +, author = "R. Francis" +, title = "Some aspects of minimax location problem" +, journal = "Oper. Res." +, volume = 15 +, year = 1967 +, pages = "1163--1168" +, update = "98.03 bibrelex" } @book{fw-fll-74 -, author = "R. L. Francis and J. A. White" -, title = "Facility Layout and Location" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1974 -, keywords = "book" +, author = "R. L. Francis and J. A. White" +, title = "Facility Layout and Location" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1974 +, keywords = "book" } @article{fp-ppepq-92 -, author = "R. S. Francis and L. J. H. Pannan" -, title = "A parallel partition for enhanced parallel quicksort" -, journal = "Parallel Comput." -, volume = 18 -, year = 1992 -, pages = "543--550" -, update = "96.09 orourke" +, author = "R. S. Francis and L. J. H. Pannan" +, title = "A parallel partition for enhanced parallel quicksort" +, journal = "Parallel Comput." +, volume = 18 +, year = 1992 +, pages = "543--550" +, update = "96.09 orourke" } @incollection{f-on4ac-83 -, author = "A. Frank" -, title = "An $O(n^4)$ algorithm to construct all {Voronoi} diagrams for $k$ nearest neighbor searching" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 154 -, publisher = "Springer-Verlag" -, year = 1983 -, pages = "160--172" -, keywords = "Voronoi diagram" -, update = "96.05 agarwal, 95.09 korneenko" +, author = "A. Frank" +, title = "An $O(n^4)$ algorithm to construct all {Voronoi} diagrams for $k$ nearest neighbor searching" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 154 +, publisher = "Springer-Verlag" +, year = 1983 +, pages = "160--172" +, keywords = "Voronoi diagram" +, update = "96.05 agarwal, 95.09 korneenko" } @article{f-dprg-82 -, author = "A. Frank" -, title = "Disjoint paths in a rectilinear grid" -, journal = "Combinatorica" -, volume = 2 -, number = 4 -, year = 1982 -, pages = "361--371" -, keywords = "graphs, paths" -, update = "95.09 korneenko" +, author = "A. Frank" +, title = "Disjoint paths in a rectilinear grid" +, journal = "Combinatorica" +, volume = 2 +, number = 4 +, year = 1982 +, pages = "361--371" +, keywords = "graphs, paths" +, update = "95.09 korneenko" } @article{f-edppg-85 -, author = "A. Frank" -, title = "Edge-disjoint paths in planar graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 39 -, year = 1985 -, pages = "164--178" -, keywords = "graphs, paths" -, update = "95.09 korneenko" +, author = "A. Frank" +, title = "Edge-disjoint paths in planar graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 39 +, year = 1985 +, pages = "164--178" +, keywords = "graphs, paths" +, update = "95.09 korneenko" } @article{f-hmdsc-81 -, author = "A. Frank" -, title = "How to Make a Digraph Strongly Connected" -, journal = "Combinatorica" -, volume = 1 -, number = 2 -, year = 1981 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "A. Frank" +, title = "How to Make a Digraph Strongly Connected" +, journal = "Combinatorica" +, volume = 1 +, number = 2 +, year = 1981 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @incollection{f-pgdrs-91 -, author = "A. Frank" -, title = "Properties of geographic data: requirement for spatial access methods" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 525 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "225--234" -, update = "96.05 agarwal, 95.09 korneenko" +, author = "A. Frank" +, title = "Properties of geographic data: requirement for spatial access methods" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 525 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "225--234" +, update = "96.05 agarwal, 95.09 korneenko" } @inproceedings{fhkk-rgosi-96 -, author = "Andrew Frank and Peter Haunold and Werner Kuhn and Gabriel Kuper" -, title = "Representation of Geometric Objects as Set of Inequalities" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "51--56" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Andrew Frank and Peter Haunold and Werner Kuhn and Gabriel Kuper" +, title = "Representation of Geometric Objects as Set of Inequalities" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "51--56" +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{fk-cgpcm-86 -, author = "A. U. Frank and W. Kuhn" -, title = "Cell {Graphs}: a provable correct method for the storage of geometry" -, booktitle = "Proc. 2nd Internat. Sympos. Spatial Data Handling" -, site = "Seattle, WA" -, year = 1986 -, pages = "??" +, author = "A. U. Frank and W. Kuhn" +, title = "Cell {Graphs}: a provable correct method for the storage of geometry" +, booktitle = "Proc. 2nd Internat. Sympos. Spatial Data Handling" +, site = "Seattle, WA" +, year = 1986 +, pages = "??" } @article{f-sditm-82 -, author = "R. Franke" -, title = "Scattered data interpolation: tests of some methods" -, journal = "Math. Comput." -, volume = 38 -, year = 1982 -, pages = "181--200" -, update = "98.07 bibrelex" +, author = "R. Franke" +, title = "Scattered data interpolation: tests of some methods" +, journal = "Math. Comput." +, volume = 38 +, year = 1982 +, pages = "181--200" +, update = "98.07 bibrelex" } @techreport{fn-silss-79 -, author = "R. Franke and G. Nielson" -, title = "Smooth interpolation of large sets of scattered data" -, type = "Report" -, number = "NPS-53-79-005" -, institution = "Naval Postgraduate School" -, address = "Monterey, CA" -, year = 1979 +, author = "R. Franke and G. Nielson" +, title = "Smooth interpolation of large sets of scattered data" +, type = "Report" +, number = "NPS-53-79-005" +, institution = "Naval Postgraduate School" +, address = "Monterey, CA" +, year = 1979 } @article{fm-cdg-88 -, author = "P. Frankl and H. Maehara" -, title = "On the contact dimensions of graphs" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "89--96" +, author = "P. Frankl and H. Maehara" +, title = "On the contact dimensions of graphs" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "89--96" } @article{fm-sgabd-90 -, author = "P. Frankl and H. Maehara" -, title = "Some geometric applications of the beta distribution" -, journal = "Ann. Inst. Stat. Math" -, volume = 42 -, year = 1990 -, pages = "463--474" -, update = "00.11 smid, 00.07 agarwal" +, author = "P. Frankl and H. Maehara" +, title = "Some geometric applications of the beta distribution" +, journal = "Ann. Inst. Stat. Math" +, volume = 42 +, year = 1990 +, pages = "463--474" +, update = "00.11 smid, 00.07 agarwal" } @article{fm-jllss-88 -, author = "P. Frankl and H. Maehara" -, title = "The {Johnson-Lindenstrauss} lemmas and the sphericity of some graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 44 -, year = 1988 -, pages = "355--362" -, update = "00.11 smid, 00.07 agarwal" +, author = "P. Frankl and H. Maehara" +, title = "The {Johnson-Lindenstrauss} lemmas and the sphericity of some graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 44 +, year = 1988 +, pages = "355--362" +, update = "00.11 smid, 00.07 agarwal" } @article{fr-hdnj-84 -, author = "P. Frankl and V. R{\"o}dl" -, title = "Hypergraphs do not jump" -, journal = "Combinatorica" -, volume = 4 -, year = 1984 -, pages = "149--159" -, update = "98.03 bibrelex" +, author = "P. Frankl and V. R{\"o}dl" +, title = "Hypergraphs do not jump" +, journal = "Combinatorica" +, volume = 4 +, year = 1984 +, pages = "149--159" +, update = "98.03 bibrelex" } @article{f-ltehs-80 -, author = "W. R. Franklin" -, title = "A linear time exact hidden surface algorithm" -, journal = "Comput. Graph." -, volume = 14 -, number = 3 -, year = 1980 -, pages = "117--123" -, note = "Proc. SIGGRAPH '80" -, keywords = "computer graphics, hidden line/surface elimination" -, precedes = "f-ltehs-88" -, update = "93.09 franklin" +, author = "W. R. Franklin" +, title = "A linear time exact hidden surface algorithm" +, journal = "Comput. Graph." +, volume = 14 +, number = 3 +, year = 1980 +, pages = "117--123" +, note = "Proc. SIGGRAPH '80" +, keywords = "computer graphics, hidden line/surface elimination" +, precedes = "f-ltehs-88" +, update = "93.09 franklin" } % ### others? @incollection{f-ltehs-88 -, author = "W. R. Franklin" -, title = "A linear time exact hidden surface algorithm" -, editor = "Kenneth I. Joy and others" -, booktitle = "Tutorial: Computer Graphics: Image Synthesis" -, publisher = "" -, year = 1988 -, pages = "218--224" -, keywords = "computer graphics, hidden line/surface elimination" -, succeeds = "f-ltehs-80" -, precedes = "f-ehsat-81" -, update = "93.09 franklin" +, author = "W. R. Franklin" +, title = "A linear time exact hidden surface algorithm" +, editor = "Kenneth I. Joy and others" +, booktitle = "Tutorial: Computer Graphics: Image Synthesis" +, publisher = "" +, year = 1988 +, pages = "218--224" +, keywords = "computer graphics, hidden line/surface elimination" +, succeeds = "f-ltehs-80" +, precedes = "f-ehsat-81" +, update = "93.09 franklin" } @article{f-ehsat-81 -, author = "W. R. Franklin" -, title = "An exact hidden sphere algorithm that operates in linear time" -, journal = "Comput. Graph. Image Process." -, volume = 15 -, year = 1981 -, pages = "364--379" -, keywords = "computer graphics, hidden line/surface elimination" -, succeeds = "f-ltehs-80" -, update = "93.09 franklin" +, author = "W. R. Franklin" +, title = "An exact hidden sphere algorithm that operates in linear time" +, journal = "Comput. Graph. Image Process." +, volume = 15 +, year = 1981 +, pages = "364--379" +, keywords = "computer graphics, hidden line/surface elimination" +, succeeds = "f-ltehs-80" +, update = "93.09 franklin" } @techreport{f-chsa-78 -, author = "W. R. Franklin" -, title = "Combinatorics of hidden surface algorithms" -, type = "Technical {Report}" -, number = "TR-12-78" -, institution = "Center Res. Comput., Harvard Univ." -, address = "Cambridge, MA" -, year = 1978 -, keywords = "computer graphics, hidden line/surface elimination" -, comments = "Thesis w/o appendices available as a TR from CRCT. +, author = "W. R. Franklin" +, title = "Combinatorics of hidden surface algorithms" +, type = "Technical {Report}" +, number = "TR-12-78" +, institution = "Center Res. Comput., Harvard Univ." +, address = "Cambridge, MA" +, year = 1978 +, keywords = "computer graphics, hidden line/surface elimination" +, comments = "Thesis w/o appendices available as a TR from CRCT. Complete thesis available only on microfilm from Harvard, since Harvard did not then subscribe to UMI." -, update = "93.09 franklin" +, update = "93.09 franklin" } @techreport{f-lporh-78 -, author = "W. R. Franklin" -, title = "Locating a point in overlapping regions of hyperspace" -, type = "Report" -, number = "CRL-64" -, institution = "ECSE Dept. Rensselaer Polytech. Inst." -, address = "Troy, NY" -, year = 1978 -, keywords = "point location" -, update = "93.09 franklin" +, author = "W. R. Franklin" +, title = "Locating a point in overlapping regions of hyperspace" +, type = "Report" +, number = "CRL-64" +, institution = "ECSE Dept. Rensselaer Polytech. Inst." +, address = "Troy, NY" +, year = 1978 +, keywords = "point location" +, update = "93.09 franklin" } @inproceedings{f-ppcvn-87 -, author = "W. R. Franklin" -, title = "Polygon properties calculated from the vertex neighborhoods" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "110--118" -, keywords = "rays, measure, polygons" -, cites = "b-mrsdh-, cb-accwf-86, ey-eafui-72, f-epiu-82, f-rnrpp-83, gs-pmgsc-83, ms-gsmeo-82, m-nmseo-84, w-tsgm-86, w-nmpo-77, ZZZ" -, update = "98.03 bibrelex, 93.09 franklin" +, author = "W. R. Franklin" +, title = "Polygon properties calculated from the vertex neighborhoods" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "110--118" +, keywords = "rays, measure, polygons" +, cites = "b-mrsdh-, cb-accwf-86, ey-eafui-72, f-epiu-82, f-rnrpp-83, gs-pmgsc-83, ms-gsmeo-82, m-nmseo-84, w-tsgm-86, w-nmpo-77, ZZZ" +, update = "98.03 bibrelex, 93.09 franklin" } @inproceedings{fa-wcusp-87 -, author = "W. R. Franklin and V. Akman" -, title = "A workbench to compute unobstructed shortest paths in three-space" -, booktitle = "Proc. 1st Internat. Conf. Indust. Applied Math." -, site = "Paris, France" -, year = 1987 -, pages = "1--38" -, keywords = "motion planning" -, update = "93.09 franklin" +, author = "W. R. Franklin and V. Akman" +, title = "A workbench to compute unobstructed shortest paths in three-space" +, booktitle = "Proc. 1st Internat. Conf. Indust. Applied Math." +, site = "Paris, France" +, year = 1987 +, pages = "1--38" +, keywords = "motion planning" +, update = "93.09 franklin" } @article{fav-vdbpm-85 -, author = "W. Randolph Franklin and Varol Akman and Colin Verrilli" -, title = "Voronoi diagrams with barriers and on polyhedra for minimal path planning" -, journal = "Visual Comput." -, volume = 1 -, number = 2 -, month = oct -, year = 1985 -, pages = "133--150" -, keywords = "robotics, planar partitions, motion planning, Voronoi diagrams" -, update = "93.09 franklin" +, author = "W. Randolph Franklin and Varol Akman and Colin Verrilli" +, title = "Voronoi diagrams with barriers and on polyhedra for minimal path planning" +, journal = "Visual Comput." +, volume = 1 +, number = 2 +, month = oct +, year = 1985 +, pages = "133--150" +, keywords = "robotics, planar partitions, motion planning, Voronoi diagrams" +, update = "93.09 franklin" } @inproceedings{f-3dgdu-81 -, author = "Wm. Randolph Franklin" -, title = "3-{D} Geometric Databases Using Hierarchies of Inscribing Boxes" -, booktitle = "Proceedings of the 7th Canadian Man-Computer Conference" -, site = "Waterloo, Ontario, Canada" -, month = jun -, year = 1981 -, pages = "173--180" -, keywords = "computer graphics, CAD" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "3-{D} Geometric Databases Using Hierarchies of Inscribing Boxes" +, booktitle = "Proceedings of the 7th Canadian Man-Computer Conference" +, site = "Waterloo, Ontario, Canada" +, month = jun +, year = 1981 +, pages = "173--180" +, keywords = "computer graphics, CAD" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @inproceedings{f-smoa-83 -, author = "Wm. Randolph Franklin" -, title = "A Simplified Map Overlay Algorithm" -, booktitle = "Harvard Computer Graphics Conference" -, site = "Cambridge, Mass, USA" -, month = jul -, year = 1983 -, keywords = "intersection" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "A Simplified Map Overlay Algorithm" +, booktitle = "Harvard Computer Graphics Conference" +, site = "Cambridge, Mass, USA" +, month = jul +, year = 1983 +, keywords = "intersection" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @inproceedings{f-aggo-83 -, author = "Wm. Randolph Franklin" -, title = "Adaptive Grids for geometric operations" -, booktitle = "Proc. 6th International Symposium on Automated Cartography" -, site = "Ottawa" -, year = 1983 -, pages = "230--239" -, keywords = "intersection, grids" -, precedes = "f-aggo-84" -, update = "97.11 bibrelex, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Adaptive Grids for geometric operations" +, booktitle = "Proc. 6th International Symposium on Automated Cartography" +, site = "Ottawa" +, year = 1983 +, pages = "230--239" +, keywords = "intersection, grids" +, precedes = "f-aggo-84" +, update = "97.11 bibrelex, 93.09 franklin" } @article{f-aggo-84 -, author = "Wm. Randolph Franklin" -, title = "Adaptive Grids for geometric operations" -, journal = "Cartographica" -, volume = 21 -, number = "2--3" -, year = 1984 -, pages = "161--167" -, note = "monograph 32--33" -, keywords = "intersection, grids" -, succeeds = "f-aggo-83" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Adaptive Grids for geometric operations" +, journal = "Cartographica" +, volume = 21 +, number = "2--3" +, year = 1984 +, pages = "161--167" +, note = "monograph 32--33" +, keywords = "intersection, grids" +, succeeds = "f-aggo-83" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @inproceedings{f-cmopa-90 -, author = "Wm. Randolph Franklin" -, title = "Calculating Map Overlay Polygon Areas Without Explicitly Calculating the Polygons --- Implementation" -, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" -, site = "Z{\"u}rich" -, month = jul -, year = 1990 -, pages = "151--160" -, keywords = "intersection, area, grids, measure, polygons" -, precedes = "fsskn-ofmop-93" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Calculating Map Overlay Polygon Areas Without Explicitly Calculating the Polygons --- Implementation" +, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" +, site = "Z{\"u}rich" +, month = jul +, year = 1990 +, pages = "151--160" +, keywords = "intersection, area, grids, measure, polygons" +, precedes = "fsskn-ofmop-93" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @inproceedings{f-cesua-84 -, author = "Wm. Randolph Franklin" -, title = "Cartographic Errors Symptomatic of Underlying Algebra Problems" -, booktitle = "Proc. Internat. Sympos. Spatial Data Handling" -, site = "Z{\"u}rich" -, volume = 1 -, month = aug -, year = 1984 -, pages = "190--208" -, keywords = "robustness" -, update = "00.11 smid, 00.07 icking, 95.09 korneenko, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Cartographic Errors Symptomatic of Underlying Algebra Problems" +, booktitle = "Proc. Internat. Sympos. Spatial Data Handling" +, site = "Z{\"u}rich" +, volume = 1 +, month = aug +, year = 1984 +, pages = "190--208" +, keywords = "robustness" +, update = "00.11 smid, 00.07 icking, 95.09 korneenko, 93.09 franklin" } @incollection{f-cgprolog-85 -, author = "Wm. Randolph Franklin" -, title = "Computational Geometry in {Prolog}" -, booktitle = "Proceedings of the NATO Advanced Study Institute on Fundamental Algorithms for Computer Graphics" -, series = "NATO ASI Series F" -, volume = 17 -, publisher = "Springer-Verlag" -, address = "Ilkley, Yorkshire, England" -, month = mar -, year = 1985 -, pages = "737--749" -, keywords = "artificial intelligence" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Computational Geometry in {Prolog}" +, booktitle = "Proceedings of the NATO Advanced Study Institute on Fundamental Algorithms for Computer Graphics" +, series = "NATO ASI Series F" +, volume = 17 +, publisher = "Springer-Verlag" +, address = "Ilkley, Yorkshire, England" +, month = mar +, year = 1985 +, pages = "737--749" +, keywords = "artificial intelligence" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @incollection{f-cslld-91 -, author = "Wm. Randolph Franklin" -, title = "Computer Systems and Low Level Data Structures for {GIS}" -, editor = "David Maguire and David Rhind and Mike Goodchild" -, booktitle = "GIS: Principles and Practice" -, volume = 1 -, publisher = "Longman Higher Education and Reference" -, address = "London UK" -, year = 1991 -, pages = "215--225" -, keywords = "tutorial" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Computer Systems and Low Level Data Structures for {GIS}" +, editor = "David Maguire and David Rhind and Mike Goodchild" +, booktitle = "GIS: Principles and Practice" +, volume = 1 +, publisher = "Longman Higher Education and Reference" +, address = "London UK" +, year = 1991 +, pages = "215--225" +, keywords = "tutorial" +, update = "93.09 franklin" } @inproceedings{f-eicld-89 -, author = "Wm. Randolph Franklin" -, title = "Efficient Intersection Calculations in Large Databases" -, booktitle = "International Cartographic Association 14th World Conference" -, site = "Budapest" -, month = aug -, year = 1989 -, pages = "A62 -- A63" -, keywords = "intersection, grids" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Efficient Intersection Calculations in Large Databases" +, booktitle = "International Cartographic Association 14th World Conference" +, site = "Budapest" +, month = aug +, year = 1989 +, pages = "A62 -- A63" +, keywords = "intersection, grids" +, update = "93.09 franklin" } @inproceedings{f-epiu-82 -, author = "Wm. Randolph Franklin" -, title = "Efficient polyhedron intersection and union" -, booktitle = "Proc. Graphics Interface" -, site = "Toronto" -, year = 1982 -, pages = "73--80" -, keywords = "intersection, CAD" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Efficient polyhedron intersection and union" +, booktitle = "Proc. Graphics Interface" +, site = "Toronto" +, year = 1982 +, pages = "73--80" +, keywords = "intersection, CAD" +, update = "93.09 franklin" } @article{f-ero-83 -, author = "Wm. Randolph Franklin" -, title = "Efficient Rotation of an Object" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, number = 11 -, month = nov -, year = 1983 -, pages = "1064--1067" -, keywords = "computer graphics, CAD" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Efficient Rotation of an Object" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, number = 11 +, month = nov +, year = 1983 +, pages = "1064--1067" +, keywords = "computer graphics, CAD" +, update = "93.09 franklin" } @article{f-eadvp-79 -, author = "Wm. Randolph Franklin" -, title = "Evaluation of Algorithms to Display Vector Plots on Raster Devices" -, journal = "Comput. Graph. Image Process." -, volume = 11 -, number = 4 -, month = dec -, year = 1979 -, pages = "377--397" -, keywords = "computer graphics, CAD, discrete geometry" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Evaluation of Algorithms to Display Vector Plots on Raster Devices" +, journal = "Comput. Graph. Image Process." +, volume = 11 +, number = 4 +, month = dec +, year = 1979 +, pages = "377--397" +, keywords = "computer graphics, CAD, discrete geometry" +, update = "93.09 franklin" } @inproceedings{f-moaap-92 -, author = "Wm. Randolph Franklin" -, title = "Map Overlay Area Animation and Parallel Simulation" -, editor = "David H. Douglas" -, booktitle = "Proceedings, SORSA'92 Symposium and Workshop" -, month = jul -, year = 1992 -, pages = "200--203" -, keywords = "parallel computation, intersection, area" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Map Overlay Area Animation and Parallel Simulation" +, editor = "David H. Douglas" +, booktitle = "Proceedings, SORSA'92 Symposium and Workshop" +, month = jul +, year = 1992 +, pages = "200--203" +, keywords = "parallel computation, intersection, area" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @incollection{f-prga-86 -, author = "Wm. Randolph Franklin" -, title = "Problems with Raster Graphics Algorithms" -, editor = "L. R. A. Kessener and F. J. Peters and M. L. P. van Lierop" -, booktitle = "Data Structures for Raster Graphics (Proceedings of a Workshop held at Steensel, The Netherlands, June 24--28, 1985)" -, publisher = "Springer-Verlag Eurographic Seminars" -, year = 1986 -, keywords = "computer graphics, discrete geometry" -, comments = "(invited presentation)" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Problems with Raster Graphics Algorithms" +, editor = "L. R. A. Kessener and F. J. Peters and M. L. P. van Lierop" +, booktitle = "Data Structures for Raster Graphics (Proceedings of a Workshop held at Steensel, The Netherlands, June 24--28, 1985)" +, publisher = "Springer-Verlag Eurographic Seminars" +, year = 1986 +, keywords = "computer graphics, discrete geometry" +, comments = "(invited presentation)" +, update = "93.09 franklin" } @article{f-rnrpp-83 -, author = "Wm. Randolph Franklin" -, title = "RAYS -- New Representation for Polygons and Polyhedra" -, journal = "Comput. Graph. Image Process." -, volume = 22 -, year = 1983 -, pages = "327--338" -, keywords = "measure, polygons, rays" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "RAYS -- New Representation for Polygons and Polyhedra" +, journal = "Comput. Graph. Image Process." +, volume = 22 +, year = 1983 +, pages = "327--338" +, keywords = "measure, polygons, rays" +, update = "93.09 franklin" } @inproceedings{f-tcfg-92 -, author = "Wm. Randolph Franklin" -, title = "Tutorial on Curve Fitting for {GIS}" -, editor = "David H. Douglas" -, booktitle = "Proceedings, SORSA'92 Symposium and Workshop" -, month = jul -, year = 1992 -, pages = "235--250" -, keywords = "splines, tutorial" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin" +, title = "Tutorial on Curve Fitting for {GIS}" +, editor = "David H. Douglas" +, booktitle = "Proceedings, SORSA'92 Symposium and Workshop" +, month = jul +, year = 1992 +, pages = "235--250" +, keywords = "splines, tutorial" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @article{fa-sehla-87 -, author = "Wm. Randolph Franklin and Varol Akman" -, title = "A simple and efficient haloed line algorithm for hidden line elimination" -, journal = "Comput. Graph. Forum" -, volume = 6 -, number = 2 -, month = may -, year = 1987 -, pages = "103--109" -, keywords = "computer graphics, hidden line/surface elimination" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Varol Akman" +, title = "A simple and efficient haloed line algorithm for hidden line elimination" +, journal = "Comput. Graph. Forum" +, volume = 6 +, number = 2 +, month = may +, year = 1987 +, pages = "103--109" +, keywords = "computer graphics, hidden line/surface elimination" +, update = "93.09 franklin" } @article{fa-agpvo-88 -, author = "Wm. Randolph Franklin and Varol Akman" -, title = "Adaptive Grid for polyhedral visibility in object space, an implementation" -, journal = "Comput. J." -, volume = 31 -, number = 1 -, month = feb -, year = 1988 -, pages = "56--60" -, keywords = "computer graphics, hidden line/surface elimination" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Varol Akman" +, title = "Adaptive Grid for polyhedral visibility in object space, an implementation" +, journal = "Comput. J." +, volume = 31 +, number = 1 +, month = feb +, year = 1988 +, pages = "56--60" +, keywords = "computer graphics, hidden line/surface elimination" +, update = "93.09 franklin" } @inproceedings{fa-bosp-85i -, author = "Wm. Randolph Franklin and Varol Akman" -, title = "Building an Octree from a Set of Parallelepipeds" -, booktitle = "Graphics Interface" -, year = 1985 -, keywords = "computer graphics, oct trees, CAD" -, precedes = "fa-bosp-85j" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Varol Akman" +, title = "Building an Octree from a Set of Parallelepipeds" +, booktitle = "Graphics Interface" +, year = 1985 +, keywords = "computer graphics, oct trees, CAD" +, precedes = "fa-bosp-85j" +, update = "93.09 franklin" } @article{fa-bosp-85j -, author = "Wm. Randolph Franklin and Varol Akman" -, title = "Building an Octree from a Set of Parallelepipeds" -, journal = "IEEE Comput. Graph. Appl." -, volume = 5 -, number = 10 -, month = oct -, year = 1985 -, pages = "58--64" -, keywords = "computer graphics, oct trees" -, succeeds = "fa-bosp-85i" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Varol Akman" +, title = "Building an Octree from a Set of Parallelepipeds" +, journal = "IEEE Comput. Graph. Appl." +, volume = 5 +, number = 10 +, month = oct +, year = 1985 +, pages = "58--64" +, keywords = "computer graphics, oct trees" +, succeeds = "fa-bosp-85i" +, update = "93.09 franklin" } @incollection{fa-odscs-85 -, author = "Wm. Randolph Franklin and Varol Akman" -, title = "Octree Data Structures and Creation by Stacking" -, editor = "Nadia Magenat-Thalmann" -, booktitle = "Computer Generated Images, State of the Art" -, publisher = "Springer-Verlag" -, year = 1985 -, keywords = "computer graphics, oct trees" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Varol Akman" +, title = "Octree Data Structures and Creation by Stacking" +, editor = "Nadia Magenat-Thalmann" +, booktitle = "Computer Generated Images, State of the Art" +, publisher = "Springer-Verlag" +, year = 1985 +, keywords = "computer graphics, oct trees" +, update = "93.09 franklin" } @article{fa-rvrvs-86 -, author = "Wm. Randolph Franklin and Varol Akman" -, title = "Reconstructing Visible Regions From Visible Segments" -, journal = "BIT" -, volume = 26 -, year = 1986 -, pages = "430--441" -, keywords = "computer graphics, hidden line/surface elimination" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Varol Akman" +, title = "Reconstructing Visible Regions From Visible Segments" +, journal = "BIT" +, volume = 26 +, year = 1986 +, pages = "430--441" +, keywords = "computer graphics, hidden line/surface elimination" +, update = "93.09 franklin" } @inproceedings{fa-spbsg-84 -, author = "Wm. Randolph Franklin and Varol Akman" -, title = "Shortest Paths Between Source and Goal Points Located On/Around a Convex Polyhedron" -, booktitle = "Proc. 22nd Allerton Conf. Commun. Control Comput." -, site = "Urbana, Illinois, USA" -, month = oct -, year = 1984 -, keywords = "motion planning" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin and Varol Akman" +, title = "Shortest Paths Between Source and Goal Points Located On/Around a Convex Polyhedron" +, booktitle = "Proc. 22nd Allerton Conf. Commun. Control Comput." +, site = "Urbana, Illinois, USA" +, month = oct +, year = 1984 +, keywords = "motion planning" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @incollection{fa-sp3sv-85 -, author = "Wm. Randolph Franklin and Varol Akman" -, title = "Shortest Paths in 3-Space, {Voronoi} Diagrams with Barriers, and Related Complexity and Algebraic Issues" -, booktitle = "Proceedings of the NATO Advanced Study Institute on Fundamental Algorithms for Computer Graphics" -, series = "NATO ASI Series F" -, volume = 17 -, publisher = "Springer-Verlag" -, address = "Ilkley, Yorkshire, England" -, month = mar -, year = 1985 -, pages = "895--917" -, keywords = "motion planning" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin and Varol Akman" +, title = "Shortest Paths in 3-Space, {Voronoi} Diagrams with Barriers, and Related Complexity and Algebraic Issues" +, booktitle = "Proceedings of the NATO Advanced Study Institute on Fundamental Algorithms for Computer Graphics" +, series = "NATO ASI Series F" +, volume = 17 +, publisher = "Springer-Verlag" +, address = "Ilkley, Yorkshire, England" +, month = mar +, year = 1985 +, pages = "895--917" +, keywords = "motion planning" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @incollection{fckaw-egoc-90 -, author = "Wm. Randolph Franklin and Narayanaswami Chandrasekhar and Mohan Kankanhalli and Varol Akman and Peter Y. F. Wu" -, title = "Efficient Geometric Operations for {CAD}" -, editor = "Michael J. Wozny and Joshua U. Turner and K. Preiss" -, booktitle = "Geometric Modeling for Product Engineering" -, publisher = "Elsevier Science Publishers B.V. (North-Holland)" -, year = 1990 -, pages = "485--498" -, note = "Selected and expanded papers from the IFIP WG 5.2/NSF Working Conference on Geometric Modeling, Rensselaerville, USA, 18-22 September 1988" -, keywords = "intersection, CAD, grids" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Narayanaswami Chandrasekhar and Mohan Kankanhalli and Varol Akman and Peter Y. F. Wu" +, title = "Efficient Geometric Operations for {CAD}" +, editor = "Michael J. Wozny and Joshua U. Turner and K. Preiss" +, booktitle = "Geometric Modeling for Product Engineering" +, publisher = "Elsevier Science Publishers B.V. (North-Holland)" +, year = 1990 +, pages = "485--498" +, note = "Selected and expanded papers from the IFIP WG 5.2/NSF Working Conference on Geometric Modeling, Rensselaerville, USA, 18-22 September 1988" +, keywords = "intersection, CAD, grids" +, update = "93.09 franklin" } @incollection{fcksa-eugid-88 -, author = "Wm. Randolph Franklin and Narayanaswami Chandrasekhar and Mohan Kankanhalli and Manoj Seshan and Varol Akman" -, title = "Efficiency of uniform grids for intersection detection on serial and parallel machines" -, editor = "Nadia Magnenat-Thalmann and D. Thalmann" -, booktitle = "New Trends in Computer Graphics (Proc. Computer Graphics International'88)" -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "288--297" -, keywords = "parallel computation, intersection, grids" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Narayanaswami Chandrasekhar and Mohan Kankanhalli and Manoj Seshan and Varol Akman" +, title = "Efficiency of uniform grids for intersection detection on serial and parallel machines" +, editor = "Nadia Magnenat-Thalmann and D. Thalmann" +, booktitle = "New Trends in Computer Graphics (Proc. Computer Graphics International'88)" +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "288--297" +, keywords = "parallel computation, intersection, grids" +, update = "93.09 franklin" } @article{fk-poshs-90 -, author = "Wm. Randolph Franklin and Mohan Kankanhalli" -, title = "Parallel Object-Space Hidden Surface Removal" -, journal = "Comput. Graph." -, volume = 24 -, number = 4 -, month = aug -, year = 1990 -, pages = "87--94" -, note = "Proc. SIGGRAPH '90" -, keywords = "computer graphics, parallel computation, hidden line/surface elimination, grids" -, comments = "Dallas, Texas" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Mohan Kankanhalli" +, title = "Parallel Object-Space Hidden Surface Removal" +, journal = "Comput. Graph." +, volume = 24 +, number = 4 +, month = aug +, year = 1990 +, pages = "87--94" +, note = "Proc. SIGGRAPH '90" +, keywords = "computer graphics, parallel computation, hidden line/surface elimination, grids" +, comments = "Dallas, Texas" +, update = "93.09 franklin" } @inproceedings{fkn-epgol-89 -, author = "Wm. Randolph Franklin and Mohan Kankanhalli and Chandrasekhar Narayanaswami" -, title = "Efficient Primitive Geometric Operations on Large Databases" -, booktitle = "Proceedings National Conference Challenge for the 1990s GIS Geographic Information Systems" -, site = "Ottawa" -, organization = "Canadian Institute of Surveying and Mapping" -, month = feb -, year = 1989 -, pages = "1247--1256" -, keywords = "intersection, CAD, grids" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin and Mohan Kankanhalli and Chandrasekhar Narayanaswami" +, title = "Efficient Primitive Geometric Operations on Large Databases" +, booktitle = "Proceedings National Conference Challenge for the 1990s GIS Geographic Information Systems" +, site = "Ottawa" +, organization = "Canadian Institute of Surveying and Mapping" +, month = feb +, year = 1989 +, pages = "1247--1256" +, keywords = "intersection, CAD, grids" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @incollection{fk-vo3dt-93 -, author = "Wm. Randolph Franklin and Mohan S. Kankanhalli" -, title = "Volumes From Overlaying 3-{D} Triangulations in Parallel" -, editor = "D. Abel and B. C. Ooi" -, booktitle = "Proc. 3rd Sympos. Advances in Spatial Databases" -, series = "Lecture Notes Comput. Sci." -, volume = 692 -, publisher = "Springer-Verlag" -, month = jun -, year = 1993 -, pages = "477--489" -, keywords = "parallel computation, intersection, volume, CAD" -, comments = "SSD = Symp on Large Spatial DBs, Singapore" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Mohan S. Kankanhalli" +, title = "Volumes From Overlaying 3-{D} Triangulations in Parallel" +, editor = "D. Abel and B. C. Ooi" +, booktitle = "Proc. 3rd Sympos. Advances in Spatial Databases" +, series = "Lecture Notes Comput. Sci." +, volume = 692 +, publisher = "Springer-Verlag" +, month = jun +, year = 1993 +, pages = "477--489" +, keywords = "parallel computation, intersection, volume, CAD" +, comments = "SSD = Symp on Large Spatial DBs, Singapore" +, update = "93.09 franklin" } @article{fl-3dgdd-78 -, author = "Wm. Randolph Franklin and Harry R. Lewis" -, title = "3-{D} Graphic Display of Discrete Spatial Data By Prism Maps" -, journal = "Comput. Graph." -, volume = 12 -, number = 3 -, month = aug -, year = 1978 -, pages = "70--75" -, note = "Proc. SIGGRAPH '78" -, keywords = "computer graphics, hidden line/surface elimination" -, update = "96.09 devillers, 93.09 franklin" +, author = "Wm. Randolph Franklin and Harry R. Lewis" +, title = "3-{D} Graphic Display of Discrete Spatial Data By Prism Maps" +, journal = "Comput. Graph." +, volume = 12 +, number = 3 +, month = aug +, year = 1978 +, pages = "70--75" +, note = "Proc. SIGGRAPH '78" +, keywords = "computer graphics, hidden line/surface elimination" +, update = "96.09 devillers, 93.09 franklin" } @inproceedings{fnkszw-ugtid-89 -, author = "Wm. Randolph Franklin and Chandrasekhar Narayanaswami and Mohan Kankanhalli and David Sun and Meng-Chu Zhou and Peter Y. F. Wu" -, title = "Uniform Grids: A Technique for Intersection Detection on Serial and Parallel Machines" -, booktitle = "Proceedings 9th International Symposium on Computer-Assisted Cartography" -, site = "Baltimore, Maryland" -, month = apr -, year = 1989 -, pages = "100--109" -, keywords = "parallel computation, intersection, CAD, grids" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin and Chandrasekhar Narayanaswami and Mohan Kankanhalli and David Sun and Meng-Chu Zhou and Peter Y. F. Wu" +, title = "Uniform Grids: A Technique for Intersection Detection on Serial and Parallel Machines" +, booktitle = "Proceedings 9th International Symposium on Computer-Assisted Cartography" +, site = "Baltimore, Maryland" +, month = apr +, year = 1989 +, pages = "100--109" +, keywords = "parallel computation, intersection, CAD, grids" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @inproceedings{fnsw-eupg-86 -, author = "Wm. Randolph Franklin and Margaret Nichols and Sumitro Samaddar and Peter Y. F. Wu" -, title = "Experiences with Using {Prolog} for Geometry" -, booktitle = "Proceedings of Graphics Interface'86, Vision Interface'86" -, site = "Vancouver, BC" -, month = may -, year = 1986 -, pages = "26--31" -, keywords = "computer graphics, artificial intelligence" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin and Margaret Nichols and Sumitro Samaddar and Peter Y. F. Wu" +, title = "Experiences with Using {Prolog} for Geometry" +, booktitle = "Proceedings of Graphics Interface'86, Vision Interface'86" +, site = "Vancouver, BC" +, month = may +, year = 1986 +, pages = "26--31" +, keywords = "computer graphics, artificial intelligence" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @inproceedings{fr-hinbv-94 -, author = "Wm. Randolph Franklin and C. K. Ray" -, title = "Higher Isn't Necessarily Better: Visibility Algorithms and Experiments" -, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" -, year = 1994 -, pages = "751--763" -, keywords = "visibility, terrains" -, update = "96.09 kreveld" +, author = "Wm. Randolph Franklin and C. K. Ray" +, title = "Higher Isn't Necessarily Better: Visibility Algorithms and Experiments" +, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" +, year = 1994 +, pages = "751--763" +, keywords = "visibility, terrains" +, update = "96.09 kreveld" } @inproceedings{fs-ocamo-90 -, author = "Wm. Randolph Franklin and Venkatesh Sivaswami" -, title = "{OVERPROP} --- Calculating Areas of Map Overlay Polygons without Calculating the Overlay" -, booktitle = "Second National Conference on Geographic Information Systems" -, site = "Ottawa" -, month = mar -, year = 1990 -, pages = "1646--1654" -, keywords = "intersection, area, grids" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin and Venkatesh Sivaswami" +, title = "{OVERPROP} --- Calculating Areas of Map Overlay Polygons without Calculating the Overlay" +, booktitle = "Second National Conference on Geographic Information Systems" +, site = "Ottawa" +, month = mar +, year = 1990 +, pages = "1646--1654" +, keywords = "intersection, area, grids" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @article{fsskn-ofmop-93 -, author = "Wm. Randolph Franklin and Venkateshkumar Sivaswami and David Sun and Mohan Kankanhalli and Chandrasekhar Narayanaswami" -, title = "{OVERPROP} --- Finding Map Overlay Polygons' Areas Without Finding The Polygons" -, journal = "Cartography and Geographic Information Systems" -, volume = "??" -, year = 1993 -, keywords = "intersection, grids, area" -, succeeds = "f-cmopa-90" -, update = "97.11 bibrelex, 93.09 franklin" +, author = "Wm. Randolph Franklin and Venkateshkumar Sivaswami and David Sun and Mohan Kankanhalli and Chandrasekhar Narayanaswami" +, title = "{OVERPROP} --- Finding Map Overlay Polygons' Areas Without Finding The Polygons" +, journal = "Cartography and Geographic Information Systems" +, volume = "??" +, year = 1993 +, keywords = "intersection, grids, area" +, succeeds = "f-cmopa-90" +, update = "97.11 bibrelex, 93.09 franklin" } @inproceedings{fw-posp-87 -, author = "Wm. Randolph Franklin and Peter Y. F. Wu" -, title = "A Polygon Overlay System in {Prolog}" -, booktitle = "Proceedings of the 8th International Symposium on Computer-Assisted Cartography" -, site = "Baltimore, Maryland" -, month = mar -, year = 1987 -, pages = "97--106" -, keywords = "intersection, artificial intelligence" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Wm. Randolph Franklin and Peter Y. F. Wu" +, title = "A Polygon Overlay System in {Prolog}" +, booktitle = "Proceedings of the 8th International Symposium on Computer-Assisted Cartography" +, site = "Baltimore, Maryland" +, month = mar +, year = 1987 +, pages = "97--106" +, keywords = "intersection, artificial intelligence" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @inproceedings{fwsn-gp-86 -, author = "Wm. Randolph Franklin and Peter Y. F. Wu and Sumitro Samaddar and Margaret Nichols" -, title = "Geometry in {Prolog}" -, editor = "Tosiyasu Kunii" -, booktitle = "Advanced Computer Graphics, Proceedings of Computer Graphics Tokyo 86" -, month = apr -, year = 1986 -, pages = "71--78" -, keywords = "computer graphics, artificial intelligence" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Peter Y. F. Wu and Sumitro Samaddar and Margaret Nichols" +, title = "Geometry in {Prolog}" +, editor = "Tosiyasu Kunii" +, booktitle = "Advanced Computer Graphics, Proceedings of Computer Graphics Tokyo 86" +, month = apr +, year = 1986 +, pages = "71--78" +, keywords = "computer graphics, artificial intelligence" +, update = "93.09 franklin" } @article{fwsn-pgp-86 -, author = "Wm. Randolph Franklin and Peter Y. F. Wu and Sumitro Samaddar and Margaret Nichols" -, title = "Prolog and Geometry Projects" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, month = nov -, year = 1986 -, pages = "46--55" -, keywords = "computer graphics, artificial intelligence" -, update = "93.09 franklin" +, author = "Wm. Randolph Franklin and Peter Y. F. Wu and Sumitro Samaddar and Margaret Nichols" +, title = "Prolog and Geometry Projects" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, month = nov +, year = 1986 +, pages = "46--55" +, keywords = "computer graphics, artificial intelligence" +, update = "93.09 franklin" } @article{f-fpe-94 -, author = "Marc Frantz" -, title = "A focusing property of the ellipse" -, journal = "Amer. Math. Monthly" -, volume = 101 -, year = 1994 -, pages = "250--258" -, update = "01.04 orourke" +, author = "Marc Frantz" +, title = "A focusing property of the ellipse" +, journal = "Amer. Math. Monthly" +, volume = 101 +, year = 1994 +, pages = "250--258" +, update = "01.04 orourke" } @article{f-pgslh-89 -, author = "D. Franzblau" -, title = "Performance guarantees on a sweep-line heuristic for covering rectilinear polygons with rectangles" -, journal = "SIAM J. Discrete Math." -, volume = 2 -, number = 3 -, year = 1989 -, pages = "307--321" -, keywords = "isothetic polygons, covering, rectangles" -, update = "95.09 korneenko" +, author = "D. Franzblau" +, title = "Performance guarantees on a sweep-line heuristic for covering rectilinear polygons with rectangles" +, journal = "SIAM J. Discrete Math." +, volume = 2 +, number = 3 +, year = 1989 +, pages = "307--321" +, keywords = "isothetic polygons, covering, rectangles" +, update = "95.09 korneenko" } @inproceedings{fk-acrri-84 -, author = "D. Franzblau and D. Kleitman" -, title = "An algorithm for constructing regions with rectangles: independence and minimum generating sets for collections of intervals" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "167--174" -, precedes = "fk-acpr-84" +, author = "D. Franzblau and D. Kleitman" +, title = "An algorithm for constructing regions with rectangles: independence and minimum generating sets for collections of intervals" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "167--174" +, precedes = "fk-acpr-84" } @article{fk-acpr-84 -, author = "D. Franzblau and D. Kleitman" -, title = "An algorithm for covering polygons with rectangles" -, journal = "Inform. Control" -, volume = 63 -, year = 1984 -, pages = "164--189" -, succeeds = "fk-acrri-84" +, author = "D. Franzblau and D. Kleitman" +, title = "An algorithm for covering polygons with rectangles" +, journal = "Inform. Control" +, volume = 63 +, year = 1984 +, pages = "164--189" +, succeeds = "fk-acrri-84" } @phdthesis{f-gcp-85 -, author = "D. S. Franzblau" -, title = "Geometric covering and partitioning" -, type = "Ph.{D}. Thesis" -, school = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1985 -, keywords = "doctoral thesis" +, author = "D. S. Franzblau" +, title = "Geometric covering and partitioning" +, type = "Ph.{D}. Thesis" +, school = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1985 +, keywords = "doctoral thesis" } @article{f-tbppf-77 -, author = "A. R. Fraser" -, title = "Triangle Based Probability Polygons for Forest Sampling" -, journal = "Forest Science" -, volume = 23 -, year = 1977 -, pages = "111--121" -, annote = "Uses Least Diagonal Neighbour Triangulation and Linear - approximation over triangles to weighted VD to estimate - area of weighted VD polygon of a given tree." +, author = "A. R. Fraser" +, title = "Triangle Based Probability Polygons for Forest Sampling" +, journal = "Forest Science" +, volume = 23 +, year = 1977 +, pages = "111--121" +, annote = "Uses Least Diagonal Neighbour Triangulation and Linear + approximation over triangles to weighted VD to estimate + area of weighted VD polygon of a given tree." } @article{fk-plsn-92 -, author = "H. Fraysseix and P. Kuntz" -, title = "Pagination of large-scale networks" -, journal = "Algorithms Rev." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "105--112" +, author = "H. Fraysseix and P. Kuntz" +, title = "Pagination of large-scale networks" +, journal = "Algorithms Rev." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "105--112" } @inproceedings{fm-spgp-97 -, author = "H. de Fraysseix and P. O. de Mendez" -, title = "A Short Proof of a Gauss Problem" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "230--235" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "H. de Fraysseix and P. O. de Mendez" +, title = "A Short Proof of a Gauss Problem" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "230--235" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{fm-roaa-95 -, author = "H. de Fraysseix and P. O. de Mendez" -, title = "Regular Orientations, Arboricity, and Augmentation" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "111--118" -, keywords = "graph drawing, planar, orientation" -, update = "95.01 tamassia" +, author = "H. de Fraysseix and P. O. de Mendez" +, title = "Regular Orientations, Arboricity, and Augmentation" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "111--118" +, keywords = "graph drawing, planar, orientation" +, update = "95.01 tamassia" } @techreport{fmr-bor-93 -, author = "H. de Fraysseix and P. O. de Mendez and P. Rosenstiehl" -, title = "Bipolar Orientations Revisited" -, number = "C.A.M.S. P089" -, institution = "EHESS, Paris" -, year = 1993 -, update = "94.05 tamassia" +, author = "H. de Fraysseix and P. O. de Mendez and P. Rosenstiehl" +, title = "Bipolar Orientations Revisited" +, number = "C.A.M.S. P089" +, institution = "EHESS, Paris" +, year = 1993 +, update = "94.05 tamassia" } @article{fmr-bor-95 -, author = "H. de Fraysseix and P. O. de Mendez and P. Rosenstiehl" -, title = "Bipolar Orientations Revisited" -, journal = "Discrete Appl. Math." -, volume = 56 -, year = 1995 -, pages = "157--179" -, update = "98.07 tamassia+vismara" +, author = "H. de Fraysseix and P. O. de Mendez and P. Rosenstiehl" +, title = "Bipolar Orientations Revisited" +, journal = "Discrete Appl. Math." +, volume = 56 +, year = 1995 +, pages = "157--179" +, update = "98.07 tamassia+vismara" } @misc{fmr-poo-92 -, author = "H. de Fraysseix and P. O. de Mendez and P. Rosenstiehl" -, title = "Partial Orders and Orientation" -, year = 1992 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "H. de Fraysseix and P. O. de Mendez and P. Rosenstiehl" +, title = "Partial Orders and Orientation" +, year = 1992 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{fpp-hdpgg-90 -, author = "H. de Fraysseix and J. Pach and R. Pollack" -, title = "How to Draw a Planar Graph on a Grid" -, journal = "Combinatorica" -, volume = 10 -, number = 1 -, year = 1990 -, pages = "41--51" -, keywords = "graph drawing" -, update = "98.07 tamassia, 93.09 tamassia" +, author = "H. de Fraysseix and J. Pach and R. Pollack" +, title = "How to Draw a Planar Graph on a Grid" +, journal = "Combinatorica" +, volume = 10 +, number = 1 +, year = 1990 +, pages = "41--51" +, keywords = "graph drawing" +, update = "98.07 tamassia, 93.09 tamassia" } @inproceedings{fpp-sssfe-88 -, author = "H. de Fraysseix and J. Pach and R. Pollack" -, title = "Small Sets Supporting {Fary} Embeddings of Planar Graphs" -, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." -, year = 1988 -, pages = "426--433" -, keywords = "graph drawing" -, update = "94.01 tamassia, 93.09 tamassia" +, author = "H. de Fraysseix and J. Pach and R. Pollack" +, title = "Small Sets Supporting {Fary} Embeddings of Planar Graphs" +, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." +, year = 1988 +, pages = "426--433" +, keywords = "graph drawing" +, update = "94.01 tamassia, 93.09 tamassia" } @article{fr-dfscp-82 -, author = "H. de Fraysseix and P. Rosenstiehl" -, title = "A Depth-First-Search Characterization of Planarity" -, journal = "Ann. Discrete Math." -, volume = 13 -, year = 1982 -, pages = "75--80" -, keywords = "graph drawing" -, update = "96.09 devillers, 93.09 tamassia" +, author = "H. de Fraysseix and P. Rosenstiehl" +, title = "A Depth-First-Search Characterization of Planarity" +, journal = "Ann. Discrete Math." +, volume = 13 +, year = 1982 +, pages = "75--80" +, keywords = "graph drawing" +, update = "96.09 devillers, 93.09 tamassia" } % is this the publisher?? @inproceedings{fr-scpdt-84 -, author = "H. de Fraysseix and P. Rosenstiehl" -, title = "Structures Combinatoires pour des Traces Automatiques de Reseaux" -, booktitle = "Proc. 3rd European Conf. on CAD/CAM and Computer Graphics (Paris)" -, publisher = "Hermes" -, year = 1984 -, pages = "332--337" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "H. de Fraysseix and P. Rosenstiehl" +, title = "Structures Combinatoires pour des Traces Automatiques de Reseaux" +, booktitle = "Proc. 3rd European Conf. on CAD/CAM and Computer Graphics (Paris)" +, publisher = "Hermes" +, year = 1984 +, pages = "332--337" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{fm-ssams-70 -, author = "W. D. Frazer and A. C. McKellar" -, title = "Samplesort: A sampling approach to minimal storage tree sorting" -, journal = "J. ACM" -, volume = 17 -, number = 3 -, year = 1970 -, pages = "496--507" -, update = "96.09 orourke" +, author = "W. D. Frazer and A. C. McKellar" +, title = "Samplesort: A sampling approach to minimal storage tree sorting" +, journal = "J. ACM" +, volume = 17 +, number = 3 +, year = 1970 +, pages = "496--507" +, update = "96.09 orourke" } @article{f-sqpdc-06 -, author = "M. Fr{\'e}chet" -, title = "Sur quelques points du calcul fonctionnel" -, journal = "Rendiconti del Circolo Mathematico di Palermo" -, volume = 22 -, year = 1906 -, pages = "1--74" -, update = "97.11 bibrelex" +, author = "M. Fr{\'e}chet" +, title = "Sur quelques points du calcul fonctionnel" +, journal = "Rendiconti del Circolo Mathematico di Palermo" +, volume = 22 +, year = 1906 +, pages = "1--74" +, update = "97.11 bibrelex" } @book{ff-ict-34 -, author = "M. Fr{\'e}chet and K. Fan" -, title = "Initiation to Combinatorial Topology" -, publisher = "Prindle, Weber and Schmidt, Inc." -, address = "Boston, MA" -, year = 1934 -, note = "Translated from French, with notes by Howard E. Eves" -, update = "97.11 bibrelex" +, author = "M. Fr{\'e}chet and K. Fan" +, title = "Initiation to Combinatorial Topology" +, publisher = "Prindle, Weber and Schmidt, Inc." +, address = "Boston, MA" +, year = 1934 +, note = "Translated from French, with notes by Howard E. Eves" +, update = "97.11 bibrelex" } @article{fwe-tdamg-70 -, author = "C. O. Frederick and Y. C. Wong and F. W. Edge" -, title = "Two-dimensional Automatic Mesh Generation for Structural Analysis" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 2 -, year = 1970 -, pages = "133--144" -, annote = "Triangulation of set of specified points. Builds - triangles on edges to surround each point in turn. When - building on edge $AB$ point $C$ which maximizes $\angle - ACB$ is picked. DT!" +, author = "C. O. Frederick and Y. C. Wong and F. W. Edge" +, title = "Two-dimensional Automatic Mesh Generation for Structural Analysis" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 2 +, year = 1970 +, pages = "133--144" +, annote = "Triangulation of set of specified points. Builds + triangles on edges to surround each point in turn. When + building on edge $AB$ point $C$ which maximizes $\angle + ACB$ is picked. DT!" } @article{fm-nbkck-78 -, author = "H. Fredericksen and J. Maiorana" -, title = "Necklaces of beads in $k$ colours and $k$-ary {DeBruin} sequences" -, journal = "Discrete Math." -, volume = 23 -, year = 1978 -, pages = "207--210" -, update = "97.11 bibrelex" +, author = "H. Fredericksen and J. Maiorana" +, title = "Necklaces of beads in $k$ colours and $k$-ary {DeBruin} sequences" +, journal = "Discrete Math." +, volume = 23 +, year = 1978 +, pages = "207--210" +, update = "97.11 bibrelex" } @book{f-dpf-97 -, author = "Greg Frederickson" -, title = "Dissections: Plane and Fancy" -, publisher = "Cambridge University Press" -, year = 1997 -, update = "01.07 orourke" +, author = "Greg Frederickson" +, title = "Dissections: Plane and Fancy" +, publisher = "Cambridge University Press" +, year = 1997 +, update = "01.07 orourke" } @inproceedings{f-dsdmr-93 -, author = "G. N. Frederickson" -, title = "A data structure for dynamically maintaining rooted trees" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "175--184" -, update = "96.01 tamassia" +, author = "G. N. Frederickson" +, title = "A data structure for dynamically maintaining rooted trees" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "175--184" +, update = "96.01 tamassia" } @article{f-dsdmr-97 -, author = "Greg N. Frederickson" -, title = "A Data Structure for Dynamically Maintaining Rooted Trees" -, journal = "J. Algorithms" -, volume = 24 -, year = 1997 -, pages = "37--65" -, keywords = "topology tree" -, succeeds = "f-dsdmr-93" -, update = "98.07 cheong" +, author = "Greg N. Frederickson" +, title = "A Data Structure for Dynamically Maintaining Rooted Trees" +, journal = "J. Algorithms" +, volume = 24 +, year = 1997 +, pages = "37--65" +, keywords = "topology tree" +, succeeds = "f-dsdmr-93" +, update = "98.07 cheong" } @incollection{f-naaps-87 -, author = "G. N. Frederickson" -, title = "A new approach to all pairs shortest paths in planar graphs" -, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." -, year = 1987 -, pages = "19--28" -, keywords = "shortest paths, graphs" -, update = "95.09 korneenko" +, author = "G. N. Frederickson" +, title = "A new approach to all pairs shortest paths in planar graphs" +, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." +, year = 1987 +, pages = "19--28" +, keywords = "shortest paths, graphs" +, update = "95.09 korneenko" } @inproceedings{f-adsd2-91 -, author = "G. N. Frederickson" -, title = "Ambivalent Data Structures for Dynamic 2-Edge Connectivity and $k$-Smallest Spanning Trees" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "632--641" -, update = "94.01 tamassia" +, author = "G. N. Frederickson" +, title = "Ambivalent Data Structures for Dynamic 2-Edge Connectivity and $k$-Smallest Spanning Trees" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "632--641" +, update = "94.01 tamassia" } @article{f-adsd2-97 -, author = "Greg N. Frederickson" -, title = "Ambivalent Data Structures for Dynamic 2-Edge-Connectivity and $k$ Smallest Spanning Trees" -, journal = "SIAM J. Comput." -, volume = 26 -, year = 1997 -, pages = "484--538" -, keywords = "topology tree" -, succeeds = "f-adsd2-91" -, update = "98.07 cheong" +, author = "Greg N. Frederickson" +, title = "Ambivalent Data Structures for Dynamic 2-Edge-Connectivity and $k$ Smallest Spanning Trees" +, journal = "SIAM J. Comput." +, volume = 26 +, year = 1997 +, pages = "484--538" +, keywords = "topology tree" +, succeeds = "f-adsd2-91" +, update = "98.07 cheong" } @article{f-dsolu-85 -, author = "G. N. Frederickson" -, title = "Data Structures for On-Line Updating of Minimum Spanning Trees, with Applications" -, journal = "SIAM J. Comput." -, volume = 14 -, number = 4 -, year = 1985 -, pages = "781--798" -, update = "94.01 tamassia" +, author = "G. N. Frederickson" +, title = "Data Structures for On-Line Updating of Minimum Spanning Trees, with Applications" +, journal = "SIAM J. Comput." +, volume = 14 +, number = 4 +, year = 1985 +, pages = "781--798" +, update = "94.01 tamassia" } @article{f-faspp-87 -, author = "G. N. Frederickson" -, title = "Fast algorithms for shortest paths in planar graphs, with applications" -, journal = "SIAM J. Comput." -, volume = 16 -, number = 6 -, year = 1987 -, pages = "1004--1022" -, keywords = "shortest paths, graphs" -, update = "96.09 agarwal, 95.09 korneenko" +, author = "G. N. Frederickson" +, title = "Fast algorithms for shortest paths in planar graphs, with applications" +, journal = "SIAM J. Comput." +, volume = 16 +, number = 6 +, year = 1987 +, pages = "1004--1022" +, keywords = "shortest paths, graphs" +, update = "96.09 agarwal, 95.09 korneenko" } @inproceedings{f-oatp-91 -, author = "G. N. Frederickson" -, title = "Optimal algorithms for tree partitioning" -, booktitle = "Proc. 2nd ACM-SIAM Symp. Discr. Algo." -, year = 1991 -, pages = "168--177" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "G. N. Frederickson" +, title = "Optimal algorithms for tree partitioning" +, booktitle = "Proc. 2nd ACM-SIAM Symp. Discr. Algo." +, year = 1991 +, pages = "168--177" +, update = "96.09 agarwal, 96.05 agarwal" } @techreport{fg-nempt-89 -, author = "G. N. Frederickson and D. J. Guan" -, title = "Nonpreemptive ensemble motion planning on a tree" -, type = "Technical {Report}" -, institution = "Purdue Univ." -, address = "W. Lafayette, IN" -, month = aug -, year = 1989 -, update = "96.09 agarwal, 93.09 milone+mitchell" +, author = "G. N. Frederickson and D. J. Guan" +, title = "Nonpreemptive ensemble motion planning on a tree" +, type = "Technical {Report}" +, institution = "Purdue Univ." +, address = "W. Lafayette, IN" +, month = aug +, year = 1989 +, update = "96.09 agarwal, 93.09 milone+mitchell" } @techreport{fg-pempt-89 -, author = "G. N. Frederickson and D. J. Guan" -, title = "Preemptive ensemble motion planning on a tree" -, type = "Technical {Report}" -, institution = "Purdue Univ." -, address = "W. Lafayette, IN" -, month = aug -, year = 1989 -, update = "96.09 agarwal, 93.09 milone+mitchell" +, author = "G. N. Frederickson and D. J. Guan" +, title = "Preemptive ensemble motion planning on a tree" +, type = "Technical {Report}" +, institution = "Purdue Univ." +, address = "W. Lafayette, IN" +, month = aug +, year = 1989 +, update = "96.09 agarwal, 93.09 milone+mitchell" } @techreport{fh-plaog-87 -, author = "G. N. Frederickson and S. E. Hambrusch" -, title = "Planar linear arrangements of outerplanar graphs" -, type = "Technical {Report}" -, institution = "Purdue Univ." -, address = "W. Lafayette, IN" -, month = mar -, year = 1987 -, update = "96.09 agarwal, 93.09 milone+mitchell" +, author = "G. N. Frederickson and S. E. Hambrusch" +, title = "Planar linear arrangements of outerplanar graphs" +, type = "Technical {Report}" +, institution = "Purdue Univ." +, address = "W. Lafayette, IN" +, month = mar +, year = 1987 +, update = "96.09 agarwal, 93.09 milone+mitchell" } @article{fj-fkppc-83 -, author = "G. N. Frederickson and D. B. Johnson" -, title = "Finding $k$th paths and $p$-centers by generating and searching good data structures" -, journal = "J. Algorithms" -, volume = 4 -, year = 1983 -, pages = "61--80" +, author = "G. N. Frederickson and D. B. Johnson" +, title = "Finding $k$th paths and $p$-centers by generating and searching good data structures" +, journal = "J. Algorithms" +, volume = 4 +, year = 1983 +, pages = "61--80" } @article{fj-gsrsm-84 -, author = "G. N. Frederickson and D. B. Johnson" -, title = "Generalized selection and ranking: sorted matrices" -, journal = "SIAM J. Comput." -, volume = 13 -, year = 1984 -, pages = "14--30" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "G. N. Frederickson and D. B. Johnson" +, title = "Generalized selection and ranking: sorted matrices" +, journal = "SIAM J. Comput." +, volume = 13 +, year = 1984 +, pages = "14--30" +, update = "96.09 agarwal, 96.05 agarwal" } @article{fj-csrxm-82 -, author = "G. N. Frederickson and D. B. Johnson" -, title = "The complexity of selection and ranking in {$X+Y$} and matrices with sorted rows and columns" -, journal = "J. Comput. Syst. Sci." -, volume = 24 -, year = 1982 -, pages = "197--208" +, author = "G. N. Frederickson and D. B. Johnson" +, title = "The complexity of selection and ranking in {$X+Y$} and matrices with sorted rows and columns" +, journal = "J. Comput. Syst. Sci." +, volume = 24 +, year = 1982 +, pages = "197--208" } @techreport{fr-nadmm-87 -, author = "G. N. Frederickson and S. Rodger" -, title = "A new approach to the dynamic maintenance of maximal points in a plane" -, type = "Report" -, number = "CSD-TR-658" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1987 -, precedes = "fr-nadmm-90" -, update = "96.09 agarwal" +, author = "G. N. Frederickson and S. Rodger" +, title = "A new approach to the dynamic maintenance of maximal points in a plane" +, type = "Report" +, number = "CSD-TR-658" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1987 +, precedes = "fr-nadmm-90" +, update = "96.09 agarwal" } @article{fr-nadmm-90 -, author = "G. N. Frederickson and S. Rodger" -, title = "A new approach to the dynamic maintenance of maximal points in a plane" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "365--374" -, succeeds = "fr-nadmm-87" -, update = "96.09 agarwal" +, author = "G. N. Frederickson and S. Rodger" +, title = "A new approach to the dynamic maintenance of maximal points in a plane" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "365--374" +, succeeds = "fr-nadmm-87" +, update = "96.09 agarwal" } @inproceedings{fs-dsolu-84 -, author = "G. N. Frederickson and M. A. Srinivas" -, title = "Data structures for on-line updating of matroid intersection solutions" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "383--390" -, precedes = "fs-olusc-87" -, update = "97.11 bibrelex" +, author = "G. N. Frederickson and M. A. Srinivas" +, title = "Data structures for on-line updating of matroid intersection solutions" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "383--390" +, precedes = "fs-olusc-87" +, update = "97.11 bibrelex" } @article{fs-olusc-87 -, author = "G. N. Frederickson and M. A. Srinivas" -, title = "On-line updating of solutions to a class of matroid intersection problems" -, journal = "Inform. Comput." -, volume = 74 -, year = 1987 -, pages = "113--139" -, succeeds = "fs-dsolu-84" +, author = "G. N. Frederickson and M. A. Srinivas" +, title = "On-line updating of solutions to a class of matroid intersection problems" +, journal = "Inform. Comput." +, volume = 74 +, year = 1987 +, pages = "113--139" +, succeeds = "fs-dsolu-84" } @inproceedings{fg-empt-89 -, author = "H. N. Frederickson and D. J. Guan" -, title = "Esemble motion planning in trees" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "66--71" +, author = "H. N. Frederickson and D. J. Guan" +, title = "Esemble motion planning in trees" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "66--71" } @inproceedings{fhk-aasrp-76 -, author = "H. N. Frederickson and M. S. Hecht and C. E. Kim" -, title = "Approximation algorithms for some routing problems" -, booktitle = "Proc. 17th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1976 -, pages = "216--227" -, precedes = "fhk-aasrp-78" +, author = "H. N. Frederickson and M. S. Hecht and C. E. Kim" +, title = "Approximation algorithms for some routing problems" +, booktitle = "Proc. 17th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1976 +, pages = "216--227" +, precedes = "fhk-aasrp-78" } @article{fhk-aasrp-78 -, author = "H. N. Frederickson and M. S. Hecht and C. E. Kim" -, title = "Approximation algorithms for some routing problems" -, journal = "SIAM J. Comput." -, volume = 7 -, year = 1978 -, pages = "178--193" -, succeeds = "fhk-aasrp-76" +, author = "H. N. Frederickson and M. S. Hecht and C. E. Kim" +, title = "Approximation algorithms for some routing problems" +, journal = "SIAM J. Comput." +, volume = 7 +, year = 1978 +, pages = "178--193" +, succeeds = "fhk-aasrp-76" } @inproceedings{fj-sbsem-86 -, author = "F. N. Fredickson and R. Janardan" -, title = "Separator-based strategies for efficient message routing" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "428--437" -, update = "98.03 bibrelex" +, author = "F. N. Fredickson and R. Janardan" +, title = "Separator-based strategies for efficient message routing" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "428--437" +, update = "98.03 bibrelex" } @inproceedings{f-idswd-81 -, author = "G. N. Fredickson" -, title = "Implicit data structures for the weighted dictionary problem" -, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1981 -, pages = "133--139" -, update = "97.11 bibrelex" +, author = "G. N. Fredickson" +, title = "Implicit data structures for the weighted dictionary problem" +, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1981 +, pages = "133--139" +, update = "97.11 bibrelex" } @article{fw-sitbf-93 -, author = "F. W. Fredman and D. E. Willard" -, title = "Surpassing the information theoretic bound with fusion trees" -, journal = "J. Comput. Syst. Sci." -, volume = 48 -, number = 3 -, year = 1993 -, pages = "424--436" -, update = "97.07 agarwal" +, author = "F. W. Fredman and D. E. Willard" +, title = "Surpassing the information theoretic bound with fusion trees" +, journal = "J. Comput. Syst. Sci." +, volume = 48 +, number = 3 +, year = 1993 +, pages = "424--436" +, update = "97.07 agarwal" } @inproceedings{fw-tdams-90 -, author = "F. W. Fredman and D. E. Willard" -, title = "Trans-dichotomous algorithms for minimum spanning trees and shortest paths" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "719--725" +, author = "F. W. Fredman and D. E. Willard" +, title = "Trans-dichotomous algorithms for minimum spanning trees and shortest paths" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "719--725" } @article{f-lbcor-81 -, author = "M. L. Fredman" -, title = "A lower bound on the complexity of orthogonal range queries" -, journal = "J. ACM" -, volume = 28 -, year = 1981 -, pages = "696--705" +, author = "M. L. Fredman" +, title = "A lower bound on the complexity of orthogonal range queries" +, journal = "J. ACM" +, volume = 28 +, year = 1981 +, pages = "696--705" } @inproceedings{f-nodst-79 -, author = "M. L. Fredman" -, title = "A near-optimal data structure for a type of range query problem" -, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." -, year = 1979 -, pages = "62--66" -, precedes = "f-cmaci-79" +, author = "M. L. Fredman" +, title = "A near-optimal data structure for a type of range query problem" +, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." +, year = 1979 +, pages = "62--66" +, precedes = "f-cmaci-79" } @article{f-hgiit-76 -, author = "M. L. Fredman" -, title = "How good is the information theory bound in sorting?" -, journal = "Theoret. Comput. Sci." -, volume = 1 -, year = 1976 -, pages = "355--361" -, update = "93.09 erickson" +, author = "M. L. Fredman" +, title = "How good is the information theory bound in sorting?" +, journal = "Theoret. Comput. Sci." +, volume = 1 +, year = 1976 +, pages = "355--361" +, update = "93.09 erickson" } @inproceedings{f-icrqp-79 -, author = "M. L. Fredman" -, title = "Inherent complexity of range query problems" -, booktitle = "Proc. 17th Allerton Conf. Commun. Control Comput." -, year = 1979 -, pages = "231--240" +, author = "M. L. Fredman" +, title = "Inherent complexity of range query problems" +, booktitle = "Proc. 17th Allerton Conf. Commun. Control Comput." +, year = 1979 +, pages = "231--240" } @article{f-lbcso-81 -, author = "M. L. Fredman" -, title = "Lower bounds on the complexity of some optimal data structures" -, journal = "SIAM J. Comput." -, volume = 10 -, year = 1981 -, pages = "1--10" +, author = "M. L. Fredman" +, title = "Lower bounds on the complexity of some optimal data structures" +, journal = "SIAM J. Comput." +, volume = 10 +, year = 1981 +, pages = "1--10" } @article{f-cmaci-79 -, author = "M. L. Fredman" -, title = "The complexity of maintaining an array and computing its partial sums" -, journal = "J. ACM" -, volume = 29 -, year = 1979 -, pages = "250--260" -, succeeds = "f-nodst-79" +, author = "M. L. Fredman" +, title = "The complexity of maintaining an array and computing its partial sums" +, journal = "J. ACM" +, volume = 29 +, year = 1979 +, pages = "250--260" +, succeeds = "f-nodst-79" } @inproceedings{f-icdds-80 -, author = "M. L. Fredman" -, title = "The inherent complexity of dynamic data structures which accommodate range queries" -, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1980 -, pages = "191--199" -, comments = "Split into three journal papers: \cite{f-lbcso-81}, - \cite{f-lbcor-81}, and \cite{f-sbmrq-81}" +, author = "M. L. Fredman" +, title = "The inherent complexity of dynamic data structures which accommodate range queries" +, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1980 +, pages = "191--199" +, comments = "Split into three journal papers: \cite{f-lbcso-81}, + \cite{f-lbcor-81}, and \cite{f-sbmrq-81}" } @article{f-sbmrq-81 -, author = "M. L. Fredman" -, title = "The spanning bound as a measure of range query complexity" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "77--87" +, author = "M. L. Fredman" +, title = "The spanning bound as a measure of range query complexity" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "77--87" } @inproceedings{fks-sstwc-82 -, author = "M. L. Fredman and J. Komlos and E. Szemeredi" -, title = "Storing a sparse table with {$O(1)$} worst -case access time" -, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1982 -, pages = "165--170" -, update = "00.11 smid, 97.11 bibrelex" +, author = "M. L. Fredman and J. Komlos and E. Szemeredi" +, title = "Storing a sparse table with {$O(1)$} worst -case access time" +, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1982 +, pages = "165--170" +, update = "00.11 smid, 97.11 bibrelex" } @article{fks-sstwc-84 -, author = "M. L. Fredman and J. Komlos and E. Szemeredi" -, title = "Storing a sparse table with {$O(1)$} worst case access time" -, journal = "J. ACM" -, volume = 31 -, number = 3 -, month = jul -, year = 1984 -, pages = "538--544" -, update = "00.11 smid, 98.11 bibrelex, 98.03 smid" +, author = "M. L. Fredman and J. Komlos and E. Szemeredi" +, title = "Storing a sparse table with {$O(1)$} worst case access time" +, journal = "J. ACM" +, volume = 31 +, number = 3 +, month = jul +, year = 1984 +, pages = "538--544" +, update = "00.11 smid, 98.11 bibrelex, 98.03 smid" } @inproceedings{ft-fhtu-84 -, author = "M. L. Fredman and R. E. Tarjan" -, title = "{Fibonacchi} heaps and their uses" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "338--346" -, update = "97.11 bibrelex" +, author = "M. L. Fredman and R. E. Tarjan" +, title = "{Fibonacchi} heaps and their uses" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "338--346" +, update = "97.11 bibrelex" } @article{ft-fhtui-87 -, author = "M. L. Fredman and R. E. Tarjan" -, title = "Fibonacci heaps and their uses in improved network optimization algorithms" -, journal = "J. ACM" -, volume = 34 -, year = 1987 -, pages = "596--615" -, update = "00.11 smid, 00.07 smid" +, author = "M. L. Fredman and R. E. Tarjan" +, title = "Fibonacci heaps and their uses in improved network optimization algorithms" +, journal = "J. ACM" +, volume = 34 +, year = 1987 +, pages = "596--615" +, update = "00.11 smid, 00.07 smid" } @article{fv-qtvrt-81 -, author = "M. L. Fredman and D. J. Volper" -, title = "Query time versus redundancy trade-offs for range queries" -, journal = "J. Comput. Syst. Sci." -, volume = 23 -, year = 1981 -, pages = "355--365" +, author = "M. L. Fredman and D. J. Volper" +, title = "Query time versus redundancy trade-offs for range queries" +, journal = "J. Comput. Syst. Sci." +, volume = 23 +, year = 1981 +, pages = "355--365" } @article{fv-cpmrd-82 -, author = "M. L. Fredman and D. J. Volper" -, title = "The complexity of partial match retrieval in a dynamic setting" -, journal = "J. Algorithms" -, volume = 3 -, year = 1982 -, pages = "68--78" +, author = "M. L. Fredman and D. J. Volper" +, title = "The complexity of partial match retrieval in a dynamic setting" +, journal = "J. Algorithms" +, volume = 3 +, year = 1982 +, pages = "68--78" } @article{fw-ccmb-78 -, author = "M. L. Fredman and B. Weide" -, title = "On the complexity of computing the measure of $\bigcup[{a_{i}},b_{i}]$" -, journal = "Commun. ACM" -, volume = 21 -, year = 1978 -, pages = "540--544" +, author = "M. L. Fredman and B. Weide" +, title = "On the complexity of computing the measure of $\bigcup[{a_{i}},b_{i}]$" +, journal = "Commun. ACM" +, volume = 21 +, year = 1978 +, pages = "540--544" } @inproceedings{fw-bitbf-90 -, author = "M. L. Fredman and D. E. Willard" -, title = "Blasting through the information theoretic barrier with fusion trees" -, booktitle = "STOC '90" -, year = 1990 -, pages = "1--7" -, update = "98.11 bibrelex" +, author = "M. L. Fredman and D. E. Willard" +, title = "Blasting through the information theoretic barrier with fusion trees" +, booktitle = "STOC '90" +, year = 1990 +, pages = "1--7" +, update = "98.11 bibrelex" } @article{f-pldps-87 -, author = "M. H. Freedman" -, title = "A power law for the distortion of planar sets" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "345--351" +, author = "M. H. Freedman" +, title = "A power law for the distortion of planar sets" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "345--351" } @incollection{f-cnp-91 -, author = "H. Freeman" -, title = "Computer Name Placement" -, editor = "D. J. Maguire and M. F. Goodchild and D. W. Rhind" -, booktitle = "Geographical Information Systems: Principles and Applications" -, publisher = "Longman" -, address = "London" -, year = 1991 -, pages = "445--456" -, update = "96.09 kreveld" +, author = "H. Freeman" +, title = "Computer Name Placement" +, editor = "D. J. Maguire and M. F. Goodchild and D. W. Rhind" +, booktitle = "Geographical Information Systems: Principles and Applications" +, publisher = "Longman" +, address = "London" +, year = 1991 +, pages = "445--456" +, update = "96.09 kreveld" } @article{f-cpldi-74 -, author = "H. Freeman" -, title = "Computer processing of line-drawing images" -, journal = "ACM Comput. Surv." -, volume = 6 -, year = 1974 -, pages = "57--97" +, author = "H. Freeman" +, title = "Computer processing of line-drawing images" +, journal = "ACM Comput. Surv." +, volume = 6 +, year = 1974 +, pages = "57--97" } @article{f-lccs-80 -, author = "H. Freeman" -, title = "Lines, curves, and the characterization of shapes" -, journal = "Inform. Process. Lett." -, volume = 80 -, year = 1980 -, pages = "629--639" +, author = "H. Freeman" +, title = "Lines, curves, and the characterization of shapes" +, journal = "Inform. Process. Lett." +, volume = 80 +, year = 1980 +, pages = "629--639" } @inproceedings{f-past-75 -, author = "H. Freeman" -, title = "On the packing of arbitrary shaped templates" -, booktitle = "Proc. 2nd USA-Japan Comput. Conf." -, year = 1975 -, pages = "102--107" -, update = "98.03 bibrelex" +, author = "H. Freeman" +, title = "On the packing of arbitrary shaped templates" +, booktitle = "Proc. 2nd USA-Japan Comput. Conf." +, year = 1975 +, pages = "102--107" +, update = "98.03 bibrelex" } @article{fl-atdhl-67 -, author = "H. Freeman and P. P. Loutrel" -, title = "An algorithm for the two dimensional ``hidden line'' problem" -, journal = "IEEE Trans. Electron. Comput." -, volume = "EC-16" -, year = 1967 -, pages = "784--790" +, author = "H. Freeman and P. P. Loutrel" +, title = "An algorithm for the two dimensional ``hidden line'' problem" +, journal = "IEEE Trans. Electron. Comput." +, volume = "EC-16" +, year = 1967 +, pages = "784--790" } @article{fm-scmgt-67 -, author = "H. Freeman and S. P. Morse" -, title = "On searching a contour map for a given terrain profile" -, journal = "J. of the Franklin Institute" -, volume = 248 -, year = 1967 -, pages = "1--25" -, update = "98.07 bibrelex" +, author = "H. Freeman and S. P. Morse" +, title = "On searching a contour map for a given terrain profile" +, journal = "J. of the Franklin Institute" +, volume = 248 +, year = 1967 +, pages = "1--25" +, update = "98.07 bibrelex" } @article{fs-dmaer-75 -, author = "H. Freeman and R. Shapira" -, title = "Determining the minimum-area encasing rectangle for an arbitrary closed curve" -, journal = "Commun. ACM" -, volume = 18 -, year = 1975 -, pages = "409--413" +, author = "H. Freeman and R. Shapira" +, title = "Determining the minimum-area encasing rectangle for an arbitrary closed curve" +, journal = "Commun. ACM" +, volume = 18 +, year = 1975 +, pages = "409--413" } @inproceedings{f-bfnkg-87 -, author = "H. Freeston" -, title = "The {BANG} file: a new kind of grid file" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1987 -, pages = "260--269" -, keywords = "data structuring" -, update = "97.07 agarwal, 95.09 korneenko" +, author = "H. Freeston" +, title = "The {BANG} file: a new kind of grid file" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1987 +, pages = "260--269" +, keywords = "data structuring" +, update = "97.07 agarwal, 95.09 korneenko" } @inproceedings{f-gsndb-95 -, author = "M. Freestone" -, title = "A general solution of the $n$-dimensional {B}-tree problem" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1995 -, pages = "80--91" -, update = "97.07 agarwal" +, author = "M. Freestone" +, title = "A general solution of the $n$-dimensional {B}-tree problem" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1995 +, pages = "80--91" +, update = "97.07 agarwal" } @techreport{f-bwlss-91 -, author = "R. Freimer" -, title = "Bisectors of weakly linearly separable sets" -, type = "Report" -, number = "RC 16817" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, month = apr -, year = 1991 -, keywords = "Voronoi diagrams" +, author = "R. Freimer" +, title = "Bisectors of weakly linearly separable sets" +, type = "Report" +, number = "RC 16817" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, month = apr +, year = 1991 +, keywords = "Voronoi diagrams" } @techreport{f-scph-91t -, author = "R. Freimer" -, title = "Shattering configurations of points with hyperplanes" -, type = "Technical {Report}" -, number = "TR~91-1199" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1991 -, keywords = "arrangements, separation" -, precedes = "f-scph-91i" +, author = "R. Freimer" +, title = "Shattering configurations of points with hyperplanes" +, type = "Technical {Report}" +, number = "TR~91-1199" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1991 +, keywords = "arrangements, separation" +, precedes = "f-scph-91i" } @inproceedings{f-scph-91i -, author = "R. Freimer" -, title = "Shattering configurations of points with hyperplanes" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "220--223" -, keywords = "arrangements, separation" -, succeeds = "f-scph-91t" -, cites = "e-acg-87, fmp-csua-90, ZZZ" -, update = "98.07 bibrelex" +, author = "R. Freimer" +, title = "Shattering configurations of points with hyperplanes" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "220--223" +, keywords = "arrangements, separation" +, succeeds = "f-scph-91t" +, cites = "e-acg-87, fmp-csua-90, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{fkmprs-lofp-94 -, author = "R. Freimer and S. Khuller and Joseph S. B. Mitchell and C. Piatko and K. Romanik and D. Souvaine" -, title = "Localizing an Object with Finger Probes" -, editor = "Robert A. Melter and Angela Y. Wu" -, booktitle = "Proceedings of Vision Geometry III" -, publisher = "SPIE - The International Society for Optical Engineering" -, month = nov -, year = 1994 -, pages = "272--283" -, note = "part of SPIE's Intl. Symp. Photonics for Industrial Appl." -, keywords = "probing, finger probes, localization" -, update = "98.03 mitchell, 96.09 romanik" +, author = "R. Freimer and S. Khuller and Joseph S. B. Mitchell and C. Piatko and K. Romanik and D. Souvaine" +, title = "Localizing an Object with Finger Probes" +, editor = "Robert A. Melter and Angela Y. Wu" +, booktitle = "Proceedings of Vision Geometry III" +, publisher = "SPIE - The International Society for Optical Engineering" +, month = nov +, year = 1994 +, pages = "272--283" +, note = "part of SPIE's Intl. Symp. Photonics for Industrial Appl." +, keywords = "probing, finger probes, localization" +, update = "98.03 mitchell, 96.09 romanik" } @inproceedings{fmp-csua-90 -, author = "R. Freimer and J. S. B. Mitchell and C. D. Piatko" -, title = "On the complexity of shattering using arrangements" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, month = aug -, year = 1990 -, pages = "218--222" -, keywords = "arrangements, separation, NP-hardness" -, precedes = "fmp-csua-91" -, cites = "e-acg-87, eow-gfcs-83, ers-ccsno-90, ew-hrsls-86, gm-osacv-87, hm-aahos-88, m-cps-88, mt-cllfp-82, mw-dmvgi-90, sv-ecrps-89, w-ubgpc-90, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "R. Freimer and J. S. B. Mitchell and C. D. Piatko" +, title = "On the complexity of shattering using arrangements" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, month = aug +, year = 1990 +, pages = "218--222" +, keywords = "arrangements, separation, NP-hardness" +, precedes = "fmp-csua-91" +, cites = "e-acg-87, eow-gfcs-83, ers-ccsno-90, ew-hrsls-86, gm-osacv-87, hm-aahos-88, m-cps-88, mt-cllfp-82, mw-dmvgi-90, sv-ecrps-89, w-ubgpc-90, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @techreport{fmp-csua-91 -, author = "R. Freimer and Joseph S. B. Mitchell and C. D. Piatko" -, title = "On the complexity of shattering using arrangements" -, type = "Technical {Report}" -, number = "TR~91-1197" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = apr -, year = 1991 -, keywords = "arrangements, separation, NP-hardness, approximation" -, succeeds = "fmp-csua-90" -, update = "98.03 mitchell" +, author = "R. Freimer and Joseph S. B. Mitchell and C. D. Piatko" +, title = "On the complexity of shattering using arrangements" +, type = "Technical {Report}" +, number = "TR~91-1197" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = apr +, year = 1991 +, keywords = "arrangements, separation, NP-hardness, approximation" +, succeeds = "fmp-csua-90" +, update = "98.03 mitchell" } @inproceedings{fjp-epams-95 -, author = "Lori Freitag and Mark Jones and Paul Plassmann" -, title = "An Efficient Parallel Algorithm for Mesh Smoothing" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "47--58" -, update = "96.01 samitchell" +, author = "Lori Freitag and Mark Jones and Paul Plassmann" +, title = "An Efficient Parallel Algorithm for Mesh Smoothing" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "47--58" +, update = "96.01 samitchell" } @inproceedings{fo-ctmit-96 -, author = "Lori Freitag and Carl Ollivier-Gooch" -, title = "A comparison of tetrahedral mesh improvement techniques" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "87--100" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Lori Freitag and Carl Ollivier-Gooch" +, title = "A comparison of tetrahedral mesh improvement techniques" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "87--100" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @article{fsg-famg3-94 -, author = "P. Frey and B. Sarter and M. Gautherie" -, title = "Fully automatic mesh generation for 3d domains based upon voxel sets" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 37 -, year = 1994 -, pages = "2735--2754" -, update = "97.11 bibrelex" +, author = "P. Frey and B. Sarter and M. Gautherie" +, title = "Fully automatic mesh generation for 3d domains based upon voxel sets" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 37 +, year = 1994 +, pages = "2735--2754" +, update = "97.11 bibrelex" } @inproceedings{fbg-dtuaf-96 -, author = "Pascal J. Frey and H. Borouchaki and Paul-Louis George" -, title = "Delaunay tetrahedrization using an advancing-front approach" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "31--43" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Pascal J. Frey and H. Borouchaki and Paul-Louis George" +, title = "Delaunay tetrahedrization using an advancing-front approach" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "31--43" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @book{fg-taef-99 -, author = "Pascal J. Frey and Paul-Louis George" -, title = "Maillages. Applications aux {\'el\'ements} finis" -, publisher = "Hermes" -, address = "Paris, France" -, year = 1999 -, update = "01.07 devillers" +, author = "Pascal J. Frey and Paul-Louis George" +, title = "Maillages. Applications aux {\'el\'ements} finis" +, publisher = "Hermes" +, address = "Paris, France" +, year = 1999 +, update = "01.07 devillers" } @techreport{ff-mrnti- -, author = "W. Frey and D. Field" -, title = "Mesh Relaxation: {A} new technique for improving triangulations" -, type = "Research {Publication}" -, institution = "General Motors" -, year = "??" -, update = "97.11 bibrelex" +, author = "W. Frey and D. Field" +, title = "Mesh Relaxation: {A} new technique for improving triangulations" +, type = "Research {Publication}" +, institution = "General Motors" +, year = "??" +, update = "97.11 bibrelex" } @article{f-srnsa-87 -, author = "William H. Frey" -, title = "Selective Refinement: {A} New Strategy For Automatic Node Placement In Graded Triangular Meshes" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 24 -, number = 11 -, month = nov -, year = 1987 -, pages = "2183--2200" -, keywords = "automatic node placement, graded triangular meshes, mesh generation" -, annote = "Refines mesh by adding new point at $\rho O + - (1-\rho)I$ where $I$ is the incentre and $O$ - circumcentre and $\rho =2r/R$. Mentions $r/R$ as - triangle quality measure." -, abstract = "Automating triangular finite element mesh generation - involves two interrelated tasks: generating a - distribution of well-placed nodes on the boundary and - in the interior of a domain, and constructing a - triangulation of these nodes. For a given distribution - of nodes the Delaunay triangulation generally provides - a suitable mesh, and Watson's algorithm provides a - flexible means of constructing it. In this paper, a new - method is described for automating node placement in a - Delaunay triangulation by selective refinement of an - initial triangulation. Grading of the mesh is - controlled by an explicit or implicit node spacing - function. Although this paper describes the technique - only in the planar context the method generalizes to - three dimensions as well. (Author abstract) 26 refs." +, author = "William H. Frey" +, title = "Selective Refinement: {A} New Strategy For Automatic Node Placement In Graded Triangular Meshes" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 24 +, number = 11 +, month = nov +, year = 1987 +, pages = "2183--2200" +, keywords = "automatic node placement, graded triangular meshes, mesh generation" +, annote = "Refines mesh by adding new point at $\rho O + + (1-\rho)I$ where $I$ is the incentre and $O$ + circumcentre and $\rho =2r/R$. Mentions $r/R$ as + triangle quality measure." +, abstract = "Automating triangular finite element mesh generation + involves two interrelated tasks: generating a + distribution of well-placed nodes on the boundary and + in the interior of a domain, and constructing a + triangulation of these nodes. For a given distribution + of nodes the Delaunay triangulation generally provides + a suitable mesh, and Watson's algorithm provides a + flexible means of constructing it. In this paper, a new + method is described for automating node placement in a + Delaunay triangulation by selective refinement of an + initial triangulation. Grading of the mesh is + controlled by an explicit or implicit node spacing + function. Although this paper describes the technique + only in the planar context the method generalizes to + three dimensions as well. (Author abstract) 26 refs." } @article{ff-mrnti-91 -, author = "William H. Frey and David A. Field" -, title = "Mesh Relaxation. {A} New Technique For Improving Triangulations" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 31 -, number = 6 -, month = may -, year = 1991 -, pages = "1121--1133" -, keywords = "mathematical color shaded surface generation, mesh relaxation, laplacian smoothing techniques, planar domain triangulation" -, annote = "Flips to get degrees of interior nodes as close to 6 - as possible, then Laplacian smoothing. Mesh - irregularity is $\sum_k(d_k-6)^2$." -, abstract = "Given a list of points defining a domain boundary, a - three-stage process is often used to triangulate a - domain. First, an appropriate distribution of interior - points is generated. Next the points are connected to - form triangles. And, finally, the connectivity data are - used to reposition the interior points using the - Laplacian smoothing technique, thereby usually - improving the shapes of the triangles. This paper - describes a new technique for mesh - improvement--adjusting the connection structure during - the second stage of this process. The new scheme, which - we call mesh relaxation, consists of a procedure for - iteratively making the mesh topology more regular by - edge swapping. For each interior edge, a relaxation - index is computed that depends on the degrees of its - end points and adjacent points. Any edge for which this - index exceeds a prescribed threshold will be swapped, - i.e. replaced by a new edge connecting the adjacent - points of the original edge. After all edge swaps are - completed, Laplacian smoothing is applied to the mesh. - Examples show that, when the mesh point density varies - smoothly and due care is taken in the vicinity of the - boundary, mesh relaxation can dramatically increase the - regularity of the mesh and produce improved triangle - shapes. (Author abstract)" +, author = "William H. Frey and David A. Field" +, title = "Mesh Relaxation. {A} New Technique For Improving Triangulations" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 31 +, number = 6 +, month = may +, year = 1991 +, pages = "1121--1133" +, keywords = "mathematical color shaded surface generation, mesh relaxation, laplacian smoothing techniques, planar domain triangulation" +, annote = "Flips to get degrees of interior nodes as close to 6 + as possible, then Laplacian smoothing. Mesh + irregularity is $\sum_k(d_k-6)^2$." +, abstract = "Given a list of points defining a domain boundary, a + three-stage process is often used to triangulate a + domain. First, an appropriate distribution of interior + points is generated. Next the points are connected to + form triangles. And, finally, the connectivity data are + used to reposition the interior points using the + Laplacian smoothing technique, thereby usually + improving the shapes of the triangles. This paper + describes a new technique for mesh + improvement--adjusting the connection structure during + the second stage of this process. The new scheme, which + we call mesh relaxation, consists of a procedure for + iteratively making the mesh topology more regular by + edge swapping. For each interior edge, a relaxation + index is computed that depends on the degrees of its + end points and adjacent points. Any edge for which this + index exceeds a prescribed threshold will be swapped, + i.e. replaced by a new edge connecting the adjacent + points of the original edge. After all edge swaps are + completed, Laplacian smoothing is applied to the mesh. + Examples show that, when the mesh point density varies + smoothly and due care is taken in the vicinity of the + boundary, mesh relaxation can dramatically increase the + regularity of the mesh and produce improved triangle + shapes. (Author abstract)" } @inproceedings{ff-mrit-92 -, author = "William H. Frey and David A. Field" -, title = "Mesh Relaxation For Improving Triangulations" -, booktitle = "Proceedings of the SIAM Regional Conference on Geometric Aspects of Industrial Design" -, publisher = "Soc. for Industrial \& Applied Mathematics" -, address = "Philadelphia, PA" -, year = 1992 -, pages = "11--24" -, keywords = "mesh relaxation, connection structure, edge swaps, laplacian smoothing, mesh point density, relaxation index" -, update = "93.09 rote" -, annote = "Uses min angle, max angle, and min (r/R) to measure - mesh quality." -, abstract = "This paper describes a new technique for improving a - triangulation by modifying its connection structure. - The new scheme, which we call mesh relaxation, consists - of a systematic procedure for iteratively making the - mesh topology more regular by edge swapping. Interior - edges that are good candidates for swapping are - identified by computing a relaxation index for each - edge that depends on the degrees of its end points and - adjacent points. Any edge whose index exceeds a - prescribed threshold will be swapped, i.e. replaced by - a new edge connecting the points adjacent to the - original edge. After all edge swaps are completed, - Laplacian smoothing is applied to the mesh. Examples - show that when the mesh point density varies smoothly - and due care is taken in the vicinity of the boundary, - mesh relaxation can dramatically increase the - regularity of the connection structure and produce - improved triangle shapes. (Author abstract) 12 Refs." +, author = "William H. Frey and David A. Field" +, title = "Mesh Relaxation For Improving Triangulations" +, booktitle = "Proceedings of the SIAM Regional Conference on Geometric Aspects of Industrial Design" +, publisher = "Soc. for Industrial \& Applied Mathematics" +, address = "Philadelphia, PA" +, year = 1992 +, pages = "11--24" +, keywords = "mesh relaxation, connection structure, edge swaps, laplacian smoothing, mesh point density, relaxation index" +, update = "93.09 rote" +, annote = "Uses min angle, max angle, and min (r/R) to measure + mesh quality." +, abstract = "This paper describes a new technique for improving a + triangulation by modifying its connection structure. + The new scheme, which we call mesh relaxation, consists + of a systematic procedure for iteratively making the + mesh topology more regular by edge swapping. Interior + edges that are good candidates for swapping are + identified by computing a relaxation index for each + edge that depends on the degrees of its end points and + adjacent points. Any edge whose index exceeds a + prescribed threshold will be swapped, i.e. replaced by + a new edge connecting the points adjacent to the + original edge. After all edge swaps are completed, + Laplacian smoothing is applied to the mesh. Examples + show that when the mesh point density varies smoothly + and due care is taken in the vicinity of the boundary, + mesh relaxation can dramatically increase the + regularity of the connection structure and produce + improved triangle shapes. (Author abstract) 12 Refs." } @inproceedings{f-ubnhn-97 -, author = "Arne Frick" -, title = "Upper Bounds on the Number of Hidden Nodes in Sugiyama's Algorithm" -, editor = "Stephen North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "169--183" -, update = "98.11 bibrelex, 98.07 tamassia+vismara" +, author = "Arne Frick" +, title = "Upper Bounds on the Number of Hidden Nodes in Sugiyama's Algorithm" +, editor = "Stephen North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "169--183" +, update = "98.11 bibrelex, 98.07 tamassia+vismara" } @inproceedings{fkv-ida-97 -, author = "A. Frick and C. Keskin and V. Vogelmann" -, title = "Integration of Declarative Approaches" -, editor = "S. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "184--192" -, keywords = "graph drawing, 3D" -, update = "98.07 patrignani" +, author = "A. Frick and C. Keskin and V. Vogelmann" +, title = "Integration of Declarative Approaches" +, editor = "S. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "184--192" +, keywords = "graph drawing, 3D" +, update = "98.07 patrignani" } @inproceedings{flm-falau-95 -, author = "A. Frick and A. Ludwig and H. Mehldau" -, title = "A Fast Adaptive Layout Algorithm for Undirected Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "388--403" -, keywords = "graph drawing, force-directed, system" -, update = "95.01 tamassia" +, author = "A. Frick and A. Ludwig and H. Mehldau" +, title = "A Fast Adaptive Layout Algorithm for Undirected Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "388--403" +, keywords = "graph drawing, force-directed, system" +, update = "95.01 tamassia" } @book{f-eidg-82 -, author = "F. Fricker" -, title = "Einf{\"u}hrung in die {Gitterpunktlehre}" -, publisher = "Birkh{\"a}user" -, year = 1982 -, update = "97.11 bibrelex" +, author = "F. Fricker" +, title = "Einf{\"u}hrung in die {Gitterpunktlehre}" +, publisher = "Birkh{\"a}user" +, year = 1982 +, update = "97.11 bibrelex" } @article{f-cfemg-72 -, author = "I. Fried" -, title = "Condition of finite element matrices generated from nonuniform meshes" -, journal = "AIAA J." -, volume = 10 -, year = 1972 -, pages = "219--221" -, update = "97.11 bibrelex" +, author = "I. Fried" +, title = "Condition of finite element matrices generated from nonuniform meshes" +, journal = "AIAA J." +, volume = 10 +, year = 1972 +, pages = "219--221" +, update = "97.11 bibrelex" } @article{f-fass-86 -, author = "A. Friedberg" -, title = "Finding axes of skewed symmetry" -, journal = "Comput. Vision Graph. Image Process." -, volume = 34 -, number = 2 -, year = 1986 -, pages = "138--154" -, keywords = "symmetry" -, update = "95.09 korneenko" +, author = "A. Friedberg" +, title = "Finding axes of skewed symmetry" +, journal = "Comput. Vision Graph. Image Process." +, volume = 34 +, number = 2 +, year = 1986 +, pages = "138--154" +, keywords = "symmetry" +, update = "95.09 korneenko" } @article{fw-spsrc-89 -, author = "J. Friedel and P. Widmayer" -, title = "A simple proof of the {Steiner} ratio conjecture for five points" -, journal = "SIAM J. Appl. Math." -, volume = 49 -, number = 3 -, year = 1989 -, pages = "960--967" -, keywords = "Steiner tree, graphs" -, update = "95.09 korneenko" +, author = "J. Friedel and P. Widmayer" +, title = "A simple proof of the {Steiner} ratio conjecture for five points" +, journal = "SIAM J. Appl. Math." +, volume = 49 +, number = 3 +, year = 1989 +, pages = "960--967" +, keywords = "Steiner tree, graphs" +, update = "95.09 korneenko" } @inproceedings{fs-ddhsu-90 -, author = "O. Frieder and M. R. Stytz" -, title = "Dynamic detection of hidden-surfaces using a {MIMD} multiprocessor" -, booktitle = "Proc. Annu. IEEE Symp. Computer-Based Med. Syst." -, year = 1990 -, pages = "44--51" -, keywords = "parallel computations, hidden line/serface elimination" -, update = "95.09 korneenko" +, author = "O. Frieder and M. R. Stytz" +, title = "Dynamic detection of hidden-surfaces using a {MIMD} multiprocessor" +, booktitle = "Proc. Annu. IEEE Symp. Computer-Based Med. Syst." +, year = 1990 +, pages = "44--51" +, keywords = "parallel computations, hidden line/serface elimination" +, update = "95.09 korneenko" } @inproceedings{fhs-cmsp-89 -, author = "J. Friedman and J. Hershberger and J. Snoeyink" -, title = "Compliant motion in a simple polygon" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "175--186" -, cites = "b-ptcms-87, c-namrm-87, cr-nlbtr-87, ctv-flvat-88i, dghs-eafcr-88, d-cpcmp-88, d-edrrm-87, egs-oplms-86, e-ubfmp-86, em-esm-88, fw-pcm-88, fm-tspep-84, gy-fchsp-83, gss-gmppt-88, hm-ndsrs-82, k-osps-83, l-mpupb-88, lmt-asfms-84, lw-apcfp-79, m-olcch-87, n-moo-86, hss-pgcrm-87, tv-otats-88, ta-chapi-82, ZZZ" -, update = "98.03 bibrelex" +, author = "J. Friedman and J. Hershberger and J. Snoeyink" +, title = "Compliant motion in a simple polygon" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "175--186" +, cites = "b-ptcms-87, c-namrm-87, cr-nlbtr-87, ctv-flvat-88i, dghs-eafcr-88, d-cpcmp-88, d-edrrm-87, egs-oplms-86, e-ubfmp-86, em-esm-88, fw-pcm-88, fm-tspep-84, gy-fchsp-83, gss-gmppt-88, hm-ndsrs-82, k-osps-83, l-mpupb-88, lmt-asfms-84, lw-apcfp-79, m-olcch-87, n-moo-86, hss-pgcrm-87, tv-otats-88, ta-chapi-82, ZZZ" +, update = "98.03 bibrelex" } @article{fhs-epcmp-96 -, author = "J. Friedman and J. Hershberger and J. Snoeyink" -, title = "Efficiently planning compliant motion in the plane" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "562--599" -, update = "96.09 smid" +, author = "J. Friedman and J. Hershberger and J. Snoeyink" +, title = "Efficiently planning compliant motion in the plane" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "562--599" +, update = "96.09 smid" } @inproceedings{fhs-iscmp-90 -, author = "J. Friedman and J. Hershberger and J. Snoeyink" -, title = "Input-sensitive compliant motion in the plane" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "225--237" +, author = "J. Friedman and J. Hershberger and J. Snoeyink" +, title = "Input-sensitive compliant motion in the plane" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "225--237" } @inproceedings{fhs-cmtm-90 -, author = "J. Friedman and J. Hershberger and J. Snoeyink" -, title = "On coordinated motion through a maze" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "120--124" -, cites = "cr-nlbtr-87, d-cpcmp-90, em-esm-88, fhs-iscmp-90, gb-ompcc-75, hu-iatlc-79, lmt-asfms-84, n-moo-86, s-rbndt-70, hss-pgcrm-87, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "J. Friedman and J. Hershberger and J. Snoeyink" +, title = "On coordinated motion through a maze" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "120--124" +, cites = "cr-nlbtr-87, d-cpcmp-90, em-esm-88, fhs-iscmp-90, gb-ompcc-75, hu-iatlc-79, lmt-asfms-84, n-moo-86, s-rbndt-70, hss-pgcrm-87, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @article{fbs-afnn-75 -, author = "J. H. Friedman and F. Baskett and L. J. Shustek" -, title = "An algorithm for finding nearest neighbors" -, journal = "IEEE Trans. Comput." -, volume = "C-24" -, year = 1975 -, pages = "1000--1006" +, author = "J. H. Friedman and F. Baskett and L. J. Shustek" +, title = "An algorithm for finding nearest neighbors" +, journal = "IEEE Trans. Comput." +, volume = "C-24" +, year = 1975 +, pages = "1000--1006" } @article{fbf-afbml-77 -, author = "J. H. Friedman and J. L. Bentley and R. A. Finkel" -, title = "An algorithm for finding best matches in logarithmic expected time" -, journal = "ACM Trans. Math. Softw." -, volume = 3 -, year = 1977 -, pages = "209--226" -, keywords = "range search" +, author = "J. H. Friedman and J. L. Bentley and R. A. Finkel" +, title = "An algorithm for finding best matches in logarithmic expected time" +, journal = "ACM Trans. Math. Softw." +, volume = 3 +, year = 1977 +, pages = "209--226" +, keywords = "range search" } @mastersthesis{f-zepud-85 -, author = "O. Fries" -, title = "Zerlegung einer planaren {Unterteilung} der {Ebene} und ihre {Anwendungen}" -, type = "M.{S}. Thesis" -, school = "Inst. Angew. Math. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1985 -, keywords = "master thesis" +, author = "O. Fries" +, title = "Zerlegung einer planaren {Unterteilung} der {Ebene} und ihre {Anwendungen}" +, type = "M.{S}. Thesis" +, school = "Inst. Angew. Math. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1985 +, keywords = "master thesis" } @inproceedings{fmn-dgds-85 -, author = "O. Fries and K. Mehlhorn and S. N{\"a}her" -, title = "Dynamization of geometric data structures" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "168--176" -, cites = "cg-fc-85, egs-oplms-84, hm-ndsrs-82, ia-dsisa-84, k-osps-83, lt-apst-77, lp-lppsi-77, l-dsorq-78, ms-hbt-79, m-dsa-84, vw-rlsil-82, w-ndsor-85, w-ndsor-78, ekz-diepq-77, l-fmprp-83, ZZZ" -, update = "97.11 bibrelex" +, author = "O. Fries and K. Mehlhorn and S. N{\"a}her" +, title = "Dynamization of geometric data structures" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "168--176" +, cites = "cg-fc-85, egs-oplms-84, hm-ndsrs-82, ia-dsisa-84, k-osps-83, lt-apst-77, lp-lppsi-77, l-dsorq-78, ms-hbt-79, m-dsa-84, vw-rlsil-82, w-ndsor-85, w-ndsor-78, ekz-diepq-77, l-fmprp-83, ZZZ" +, update = "97.11 bibrelex" } @article{fmnt-ldsts-86 -, author = "O. Fries and K. Mehlhorn and S. N{\"a}her and A. Tsakalidis" -, title = "A $\log\log n$ data structure for three-sided range queries" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1986 -, pages = "269--273" +, author = "O. Fries and K. Mehlhorn and S. N{\"a}her and A. Tsakalidis" +, title = "A $\log\log n$ data structure for three-sided range queries" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1986 +, pages = "269--273" } @article{fmr-gml-91 -, author = "A. Frieze and C. McDiarmid and B. Reed" -, title = "Greedy matching on the line" -, journal = "SIAM J. Comput." -, volume = 19 -, number = 4 -, year = 1991 -, pages = "666--672" -, keywords = "graph, matching, optimization" -, update = "95.09 korneenko" +, author = "A. Frieze and C. McDiarmid and B. Reed" +, title = "Greedy matching on the line" +, journal = "SIAM J. Comput." +, volume = 19 +, number = 4 +, year = 1991 +, pages = "666--672" +, keywords = "graph, matching, optimization" +, update = "95.09 korneenko" } @inproceedings{fmt-sbpdc-92 -, author = "A. Frieze and G. Miller and S.-H. Teng" -, title = "Separator Based Parallel Divide and Conquer in Computational Geometry" -, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." -, year = 1992 -, pages = "??" -, update = "93.09 rote" +, author = "A. Frieze and G. Miller and S.-H. Teng" +, title = "Separator Based Parallel Divide and Conquer in Computational Geometry" +, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." +, year = 1992 +, pages = "??" +, update = "93.09 rote" } @article{fp-iglc-89 -, author = "J. C. Frinkle and R. P. Paul" -, title = "The initial grasp liftability chart" -, journal = "Internat. J. Robot. Autom." -, volume = 5 -, number = 1 -, year = 1989 -, pages = "47--52" -, keywords = "grasp" -, update = "95.09 korneenko" +, author = "J. C. Frinkle and R. P. Paul" +, title = "The initial grasp liftability chart" +, journal = "Internat. J. Robot. Autom." +, volume = 5 +, number = 1 +, year = 1989 +, pages = "47--52" +, keywords = "grasp" +, update = "95.09 korneenko" } @book{fp-cst-90 -, author = "R. Fritsch and R. A. Piccinini" -, title = "Cellular Structures in Topology" -, publisher = "Cambridge University Press" -, year = 1990 -, update = "98.07 bibrelex" +, author = "R. Fritsch and R. A. Piccinini" +, title = "Cellular Structures in Topology" +, publisher = "Cambridge University Press" +, year = 1990 +, update = "98.07 bibrelex" } @inproceedings{fw-digvs-95 -, author = "M. Fr{\"o}hlich and M. Werner" -, title = "Demonstration of the Interactive Graph-Visualization System {\em daVinci}" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "266--269" -, keywords = "graph drawing, system" -, update = "95.01 tamassia" +, author = "M. Fr{\"o}hlich and M. Werner" +, title = "Demonstration of the Interactive Graph-Visualization System {\em daVinci}" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "266--269" +, keywords = "graph drawing, system" +, update = "95.01 tamassia" } @book{fgs-tddea-90 -, author = "C. Froidevaux and M. C. Gaudel and M. Soria" -, title = "Type de donn{\'e}es et algorithmes" -, publisher = "McGraw-Hill" -, address = "Paris" -, year = 1990 -, keywords = "algorithms, complexity, data type" -, update = "93.09 devillers" +, author = "C. Froidevaux and M. C. Gaudel and M. Soria" +, title = "Type de donn{\'e}es et algorithmes" +, publisher = "McGraw-Hill" +, address = "Paris" +, year = 1990 +, keywords = "algorithms, complexity, data type" +, update = "93.09 devillers" } @article{ft-csmet-88 -, author = "H. J. Frost and C. V. Thompson" -, title = "Computer simulation of microstructural evolution in thin films" -, journal = "J. Electronic Materials" -, volume = "??" -, year = 1988 -, update = "97.11 bibrelex" +, author = "H. J. Frost and C. V. Thompson" +, title = "Computer simulation of microstructural evolution in thin films" +, journal = "J. Electronic Materials" +, volume = "??" +, year = 1988 +, update = "97.11 bibrelex" } @inproceedings{ft-dmtf-87 -, author = "H. J. Frost and C. V. Thompson" -, title = "Development of microstructure in thin films" -, booktitle = "Proc. SPIE" -, year = 1987 -, update = "97.11 bibrelex" +, author = "H. J. Frost and C. V. Thompson" +, title = "Development of microstructure in thin films" +, booktitle = "Proc. SPIE" +, year = 1987 +, update = "97.11 bibrelex" } @article{f-gdtga-49 -, author = "R. Frucht" -, title = "Graphs of Degree Three with a given Abstract Group" -, journal = "Canad. J. Math." -, volume = 1 -, year = 1949 -, pages = "365--378" -, update = "97.11 bibrelex" +, author = "R. Frucht" +, title = "Graphs of Degree Three with a given Abstract Group" +, journal = "Canad. J. Math." +, volume = 1 +, year = 1949 +, pages = "365--378" +, update = "97.11 bibrelex" } @article{f-hdg-70 -, author = "R. Frucht" -, title = "How to Describe a Graph" -, journal = "Ann. New York Acad. Sci." -, volume = 175 -, year = 1970 -, pages = "159--167" -, update = "97.11 bibrelex" +, author = "R. Frucht" +, title = "How to Describe a Graph" +, journal = "Ann. New York Acad. Sci." +, volume = 175 +, year = 1970 +, pages = "159--167" +, update = "97.11 bibrelex" } @article{f-grg-49 -, author = "R. Frucht" -, title = "On the Groups of Repeated Graphs" -, journal = "Bull. Amer. Math. Soc." -, volume = 55 -, year = 1949 -, pages = "418--420" -, update = "97.11 bibrelex" +, author = "R. Frucht" +, title = "On the Groups of Repeated Graphs" +, journal = "Bull. Amer. Math. Soc." +, volume = 55 +, year = 1949 +, pages = "418--420" +, update = "97.11 bibrelex" } @article{fr-gdfdp-91 -, author = "T. Fruchterman and E. Reingold" -, title = "Graph Drawing by Force-Directed Placement" -, journal = "Softw. -- Pract. Exp." -, volume = 21 -, number = 11 -, year = 1991 -, pages = "1129--1164" -, keywords = "graph drawing" -, update = "95.05 tamassia, 93.09 tamassia" +, author = "T. Fruchterman and E. Reingold" +, title = "Graph Drawing by Force-Directed Placement" +, journal = "Softw. -- Pract. Exp." +, volume = 21 +, number = 11 +, year = 1991 +, pages = "1129--1164" +, keywords = "graph drawing" +, update = "95.05 tamassia, 93.09 tamassia" } @article{fbr-accab-89 -, author = "B. Fruhwirth and R. E. Burkard and G{\"u}nter Rote" -, title = "Approximation of convex curves with application to the bicriteral minimum cost flow problem" -, journal = "European J. Oper. Res." -, volume = 42 -, year = 1989 -, pages = "326--338" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "B. Fruhwirth and R. E. Burkard and G{\"u}nter Rote" +, title = "Approximation of convex curves with application to the bicriteral minimum cost flow problem" +, journal = "European J. Oper. Res." +, volume = 42 +, year = 1989 +, pages = "326--338" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @article{fl-mstmp-91 -, author = "J.-J. Fu and R. C. T. Lee" -, title = "Minimal spanning trees of moving points in the plane" -, journal = "IEEE Trans. Comput." -, volume = "C-40" -, number = 1 -, year = 1991 -, pages = "113--118" -, keywords = "graphs, closeness, minimal spanning tree, points" -, update = "95.09 agarwal+korneenko" +, author = "J.-J. Fu and R. C. T. Lee" +, title = "Minimal spanning trees of moving points in the plane" +, journal = "IEEE Trans. Comput." +, volume = "C-40" +, number = 1 +, year = 1991 +, pages = "113--118" +, keywords = "graphs, closeness, minimal spanning tree, points" +, update = "95.09 agarwal+korneenko" } @inproceedings{fl-vdmpp-90 -, author = "Jyh-Jong Fu and R. C. T. Lee" -, title = "{Voronoi} Diagrams of Moving Points in the Plane" -, booktitle = "Proc. 10th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1990 -, pages = "238--254" -, precedes = "fl-vdmpp-91" -, update = "96.09 agarwal" +, author = "Jyh-Jong Fu and R. C. T. Lee" +, title = "{Voronoi} Diagrams of Moving Points in the Plane" +, booktitle = "Proc. 10th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1990 +, pages = "238--254" +, precedes = "fl-vdmpp-91" +, update = "96.09 agarwal" } @article{fl-vdmpp-91 -, author = "J.-J. Fu and R. C. T. Lee" -, title = "Voronoi diagrams of moving points in the plane" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 1 -, year = 1991 -, pages = "23--32" -, succeeds = "fl-vdmpp-90" +, author = "J.-J. Fu and R. C. T. Lee" +, title = "Voronoi diagrams of moving points in the plane" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 1 +, year = 1991 +, pages = "23--32" +, succeeds = "fl-vdmpp-90" } @article{fl-eafcf-90 -, author = "L.-C. Fu and D.-Y. Liu" -, title = "An efficient algorithm for finding a collision-free path among polyhedral obstacles" -, journal = "J. Robot. Syst." -, volume = "??" -, year = 1990 -, keywords = "motion planning" -, update = "95.09 korneenko" +, author = "L.-C. Fu and D.-Y. Liu" +, title = "An efficient algorithm for finding a collision-free path among polyhedral obstacles" +, journal = "J. Robot. Syst." +, volume = "??" +, year = 1990 +, keywords = "motion planning" +, update = "95.09 korneenko" } @article{fag-nrtsd-83 -, author = "H. Fuchs and G. D. Abrams and E. D. Grant" -, title = "Near Real-Time Shaded Display of Rigid Objects" -, journal = "Comput. Graph." -, volume = 17 -, number = 3 -, year = 1983 -, pages = "65--72" -, note = "Proc. SIGGRAPH '83" -, update = "97.11 bibrelex" +, author = "H. Fuchs and G. D. Abrams and E. D. Grant" +, title = "Near Real-Time Shaded Display of Rigid Objects" +, journal = "Comput. Graph." +, volume = 17 +, number = 3 +, year = 1983 +, pages = "65--72" +, note = "Proc. SIGGRAPH '83" +, update = "97.11 bibrelex" } @article{fkn-vsgpt-80 -, author = "H. Fuchs and Z. M. Kedem and B. Naylor" -, title = "On visible surface generation by a priori tree structures" -, journal = "Comput. Graph." -, volume = 14 -, number = 3 -, year = 1980 -, pages = "124--133" -, note = "Proc. SIGGRAPH '80" +, author = "H. Fuchs and Z. M. Kedem and B. Naylor" +, title = "On visible surface generation by a priori tree structures" +, journal = "Comput. Graph." +, volume = 14 +, number = 3 +, year = 1980 +, pages = "124--133" +, note = "Proc. SIGGRAPH '80" } @article{fku-osrpc-77 -, author = "H. Fuchs and Z. M. Kedem and S. P. Uselton" -, title = "Optimal surface reconstruction from planar contours" -, journal = "Commun. ACM" -, volume = 20 -, year = 1977 -, pages = "693--702" +, author = "H. Fuchs and Z. M. Kedem and S. P. Uselton" +, title = "Optimal surface reconstruction from planar contours" +, journal = "Commun. ACM" +, volume = 20 +, year = 1977 +, pages = "693--702" } @article{fpeggemtti-pp5hm-89 -, author = "H. Fuchs and J. Poulton and J. Eyles and T. Greer and J. Goldfeather and D. Ellsworth and S. Molnar and G. Turk and B. Tebbs and L. Israel" -, title = "Pixel-planes 5: {A} heterogeneous multiprocessor graphics system using processor-enhanced memories" -, journal = "Comput. Graph." -, volume = 23 -, number = 3 -, year = 1989 -, pages = "79--88" -, note = "Proc. SIGGRAPH '89" -, update = "98.03 bibrelex" +, author = "H. Fuchs and J. Poulton and J. Eyles and T. Greer and J. Goldfeather and D. Ellsworth and S. Molnar and G. Turk and B. Tebbs and L. Israel" +, title = "Pixel-planes 5: {A} heterogeneous multiprocessor graphics system using processor-enhanced memories" +, journal = "Comput. Graph." +, volume = 23 +, number = 3 +, year = 1989 +, pages = "79--88" +, note = "Proc. SIGGRAPH '89" +, update = "98.03 bibrelex" } @article{f-nmc-71 -, author = "M. Fuchs" -, title = "A note on mapping cylinders" -, journal = "Mich. Math. J." -, volume = 18 -, year = 1971 -, pages = "289--290" -, update = "98.03 bibrelex" +, author = "M. Fuchs" +, title = "A note on mapping cylinders" +, journal = "Mich. Math. J." +, volume = 18 +, year = 1971 +, pages = "289--290" +, update = "98.03 bibrelex" } @article{f-fshc-87 -, author = "S. F{\"u}dadi" -, title = "Fixing system and homothetic covering" -, journal = "Acta Math. Acad. Sci. Hungar." -, volume = 50 -, year = 1987 -, pages = "203--225" -, update = "96.09 devillers, 95.09 korneenko" +, author = "S. F{\"u}dadi" +, title = "Fixing system and homothetic covering" +, journal = "Acta Math. Acad. Sci. Hungar." +, volume = 50 +, year = 1987 +, pages = "203--225" +, update = "96.09 devillers, 95.09 korneenko" } @article{fh-cpgcs-96 -, author = "I. Fudos and C. Hoffmann" -, title = "Correctness proof of a geometric constraint solver" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "405--420" -, update = "97.03 devillers" +, author = "I. Fudos and C. Hoffmann" +, title = "Correctness proof of a geometric constraint solver" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "405--420" +, update = "97.03 devillers" } @article{fh-gcass-97 -, author = "I. Fudos and C. M. Hoffmann" -, title = "A Graph-constructive Approach to Solving Systems of Geometric Constraints" -, journal = "ACM Trans. Graph." -, volume = 16 -, number = 2 -, month = apr -, year = 1997 -, pages = "179--216" -, update = "97.11 held" +, author = "I. Fudos and C. M. Hoffmann" +, title = "A Graph-constructive Approach to Solving Systems of Geometric Constraints" +, journal = "ACM Trans. Graph." +, volume = 16 +, number = 2 +, month = apr +, year = 1997 +, pages = "179--216" +, update = "97.11 held" } @inproceedings{f-trprp-97 -, author = "Artur Fuhrmann" -, title = "Testing Roundness of a Polytope and Related Problems" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "169--174" -, update = "97.11 jones" +, author = "Artur Fuhrmann" +, title = "Testing Roundness of a Polytope and Related Problems" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "169--174" +, update = "97.11 jones" } @techreport{f-pmtve-91 -, author = "K. Fujimura" -, title = "On Planning Motion in a Time-Varying Environment" -, institution = "Oak Ridge National Laboratory" -, year = 1991 -, keywords = "motion planing, time-dependent obstacles, time-minimal motion" -, update = "93.09 milone+mitchell" +, author = "K. Fujimura" +, title = "On Planning Motion in a Time-Varying Environment" +, institution = "Oak Ridge National Laboratory" +, year = 1991 +, keywords = "motion planing, time-dependent obstacles, time-minimal motion" +, update = "93.09 milone+mitchell" } @techreport{fk-prais-84 -, author = "K. Fujimura and T. L. Kunii" -, title = "A polytree; representation and algorithms to integrate solid and boundary models" -, type = "Report" -, number = "??" -, institution = "Dept. Inform. Sci., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1984 +, author = "K. Fujimura and T. L. Kunii" +, title = "A polytree; representation and algorithms to integrate solid and boundary models" +, type = "Report" +, number = "??" +, institution = "Dept. Inform. Sci., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1984 } @article{fs-hsppm-89 -, author = "K. Fujimura and H. Samet" -, title = "A hierarchical strategy for path planning among moving obstacles" -, journal = "IEEE Trans. Robot. Autom." -, volume = 5 -, number = 1 -, month = feb -, year = 1989 -, pages = "61--19" -, update = "96.05 efrat" +, author = "K. Fujimura and H. Samet" +, title = "A hierarchical strategy for path planning among moving obstacles" +, journal = "IEEE Trans. Robot. Autom." +, volume = 5 +, number = 1 +, month = feb +, year = 1989 +, pages = "61--19" +, update = "96.05 efrat" } @inproceedings{fs-anapp-88 -, author = "K. Fujimura and H. Samet" -, title = "Accessibility: A New Approach to Path Planning among Moving Obstacles" -, booktitle = "Proceedings of the CVPR88 Conference" -, site = "Ann Arbor, Michigan" -, month = jun -, year = 1988 -, pages = "803--807" -, update = "96.05 efrat" +, author = "K. Fujimura and H. Samet" +, title = "Accessibility: A New Approach to Path Planning among Moving Obstacles" +, booktitle = "Proceedings of the CVPR88 Conference" +, site = "Ann Arbor, Michigan" +, month = jun +, year = 1988 +, pages = "803--807" +, update = "96.05 efrat" } @inproceedings{fs-mpdd-90 -, author = "K. Fujimura and H. Samet" -, title = "Motion planning in a dynamic domain" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Cincinnati, OH" -, volume = 1 -, month = may -, year = 1990 -, pages = "324--330" -, update = "96.05 efrat" +, author = "K. Fujimura and H. Samet" +, title = "Motion planning in a dynamic domain" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Cincinnati, OH" +, volume = 1 +, month = may +, year = 1990 +, pages = "324--330" +, update = "96.05 efrat" } @inproceedings{fs-ppmou-88 -, author = "K. Fujimura and H. Samet" -, title = "Path Planning among Moving Obstacles Using Spatial Indexing" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Philadelphia, Pennsylvania" -, month = apr -, year = 1988 -, pages = "1662--1667" -, update = "96.05 efrat" +, author = "K. Fujimura and H. Samet" +, title = "Path Planning among Moving Obstacles Using Spatial Indexing" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Philadelphia, Pennsylvania" +, month = apr +, year = 1988 +, pages = "1662--1667" +, update = "96.05 efrat" } @article{fs-ptmmm-93 -, author = "K. Fujimura and H. Samet" -, title = "Planning a Time-Minimal Motion among Moving Obstacles" -, journal = "Algorithmica" -, volume = 10 -, year = 1993 -, pages = "41--63" -, update = "96.05 efrat" +, author = "K. Fujimura and H. Samet" +, title = "Planning a Time-Minimal Motion among Moving Obstacles" +, journal = "Algorithmica" +, volume = 10 +, year = 1993 +, pages = "41--63" +, update = "96.05 efrat" } @techreport{fs-tmpmo-88 -, author = "K. Fujimura and H. Samet" -, title = "Time-Minimal Paths Among Moving Obstacles" -, type = "Technical {Report}" -, number = "CS-TR-2124" -, institution = "Computer Science, Univ. of Maryland" -, year = 1988 -, update = "93.09 milone+mitchell" +, author = "K. Fujimura and H. Samet" +, title = "Time-Minimal Paths Among Moving Obstacles" +, type = "Technical {Report}" +, number = "CS-TR-2124" +, institution = "Computer Science, Univ. of Maryland" +, year = 1988 +, update = "93.09 milone+mitchell" } @inproceedings{fs-tmpmo-89 -, author = "K. Fujimura and H. Samet" -, title = "Time-Minimal Paths Among Moving Obstacles" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Scottsdale, Arizona" -, month = may -, year = 1989 -, pages = "1110--1115" -, update = "96.05 efrat" +, author = "K. Fujimura and H. Samet" +, title = "Time-Minimal Paths Among Moving Obstacles" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Scottsdale, Arizona" +, month = may +, year = 1989 +, pages = "1110--1115" +, update = "96.05 efrat" } @inproceedings{ftyk-oasm-83 -, author = "K. Fujimura and H. Toriya and K. Tamaguchi and T. L. Kunii" -, title = "Octree algorithms for solid modeling" -, booktitle = "Proc. Intergraphics '83" -, volume = "B2-1" -, year = 1983 -, pages = "1--15" -, update = "97.11 bibrelex" +, author = "K. Fujimura and H. Toriya and K. Tamaguchi and T. L. Kunii" +, title = "Octree algorithms for solid modeling" +, booktitle = "Proc. Intergraphics '83" +, volume = "B2-1" +, year = 1983 +, pages = "1--15" +, update = "97.11 bibrelex" } @inproceedings{ftyk-eotds-83 -, author = "K. Fujimura and H. Toriya and K. Yamaguchi and T. L. Kunii" -, title = "An enhanced oct-tree data structure and operation for solid modeling" -, booktitle = "Proc. Comput. Aided Geom. Modeling Sympos." -, site = "Hampton" -, month = apr -, year = 1983 -, update = "97.11 bibrelex" +, author = "K. Fujimura and H. Toriya and K. Yamaguchi and T. L. Kunii" +, title = "An enhanced oct-tree data structure and operation for solid modeling" +, booktitle = "Proc. Comput. Aided Geom. Modeling Sympos." +, site = "Hampton" +, month = apr +, year = 1983 +, update = "97.11 bibrelex" } @article{f-skgk-20 -, author = "M. Fujiwara" -, title = "Ein Satz {\"uber} konvexe geschlosene Kurven" -, journal = "Sci. Repts. {T\^hoku} Univ." -, volume = 9 -, year = 1920 -, pages = "289--294" -, update = "98.11 bibrelex" +, author = "M. Fujiwara" +, title = "Ein Satz {\"uber} konvexe geschlosene Kurven" +, journal = "Sci. Repts. {T\^hoku} Univ." +, volume = 9 +, year = 1920 +, pages = "289--294" +, update = "98.11 bibrelex" } @article{fn-rtisa-90 -, author = "H. Fujiware and K. Nakagawa" -, title = "Real-time image subtraction and addition using two cross-polarized phase-conjugate waves" -, journal = "Optics Commun." -, volume = 79 -, number = "1,2" -, year = 1990 -, pages = "6--10" -, update = "97.11 bibrelex" +, author = "H. Fujiware and K. Nakagawa" +, title = "Real-time image subtraction and addition using two cross-polarized phase-conjugate waves" +, journal = "Optics Commun." +, volume = 79 +, number = "1,2" +, year = 1990 +, pages = "6--10" +, update = "97.11 bibrelex" } @techreport{fp-jtgp-89 -, author = "Hidetosi Fukagawa and Dan Pedoe" -, title = "Japanese Temple Geometry Problems" -, institution = "The Charles Babbage Research Centre" -, address = "Winnipeg" -, year = 1989 -, update = "98.11 bibrelex" +, author = "Hidetosi Fukagawa and Dan Pedoe" +, title = "Japanese Temple Geometry Problems" +, institution = "The Charles Babbage Research Centre" +, address = "Winnipeg" +, year = 1989 +, update = "98.11 bibrelex" } @incollection{fs-amgfe-72 -, author = "J. Fukuda and J. Suhara" -, title = "Automatic Mesh Generation for Finite Element Analysis" -, editor = "J. T. Oden and R. W. Clough and Y. Yamamoto" -, booktitle = "Advances in Computational Methods in Structural Mechanics and Design" -, publisher = "UAU Press" -, address = "Hunstville, Alabama" -, year = 1972 -, annote = "Two phases. First randomly generates points in polygon - to required density, then triangulates points by - horribly complicated algorithm. Picks five points - minimizing triangle edge length. Discards triangle - intersecting or containing. Then picks point making - this triangle and the next one as equilateral as - possible." +, author = "J. Fukuda and J. Suhara" +, title = "Automatic Mesh Generation for Finite Element Analysis" +, editor = "J. T. Oden and R. W. Clough and Y. Yamamoto" +, booktitle = "Advances in Computational Methods in Structural Mechanics and Design" +, publisher = "UAU Press" +, address = "Hunstville, Alabama" +, year = 1972 +, annote = "Two phases. First randomly generates points in polygon + to required density, then triangulates points by + horribly complicated algorithm. Picks five points + minimizing triangle edge length. Discards triangle + intersecting or containing. Then picks point making + this triangle and the next one as equilateral as + possible." } @manual{f-crmv0- -, author = "K. Fukuda" -, title = "CDD Reference Manual, Version 0.52b" -, organization = "EPFL" -, address = "Lausanne, Switzerland" -, update = "98.03 bibrelex" +, author = "K. Fukuda" +, title = "CDD Reference Manual, Version 0.52b" +, organization = "EPFL" +, address = "Lausanne, Switzerland" +, update = "98.03 bibrelex" } @phdthesis{f-omp-82 -, author = "K. Fukuda" -, title = "Oriented Matroid Programming" -, school = "University of Waterloo" -, year = 1982 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "K. Fukuda" +, title = "Oriented Matroid Programming" +, school = "University of Waterloo" +, year = 1982 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @article{flm-abalv-97 -, author = "K. Fukuda and T. Liebling and F. Margot" -, title = "Analysis of backtrack algorithms for listig all vertices and all faces of a convex polyhedron" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "1--12" -, update = "97.07 devillers" +, author = "K. Fukuda and T. Liebling and F. Margot" +, title = "Analysis of backtrack algorithms for listig all vertices and all faces of a convex polyhedron" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "1--12" +, update = "97.07 devillers" } @article{fll-ech-01 -, author = "K. Fukuda and T. M. Liebling and C. L{\"u}tolf" -, title = "Extended convex hull" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "13--23" -, update = "01.11 smid" +, author = "K. Fukuda and T. M. Liebling and C. L{\"u}tolf" +, title = "Extended convex hull" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "13--23" +, update = "01.11 smid" } @article{fm-fccm-91 -, author = "K. Fukuda and T. Matsui" -, title = "On the finiteness of the criss-cross method" -, journal = "European J. Oper. Res." -, volume = 52 -, year = 1991 -, pages = "119--124" -, update = "97.03 gaertner+salinger" +, author = "K. Fukuda and T. Matsui" +, title = "On the finiteness of the criss-cross method" +, journal = "European J. Oper. Res." +, volume = 52 +, year = 1991 +, pages = "119--124" +, update = "97.03 gaertner+salinger" } @article{fr-cfecp-94 -, author = "K. Fukuda and V. Rosta" -, title = "Combinatorial face enumeration in convex polytopes" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "191--198" -, update = "96.09 devillers" +, author = "K. Fukuda and V. Rosta" +, title = "Combinatorial face enumeration in convex polytopes" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "191--198" +, update = "96.09 devillers" } @inproceedings{fst-cfeao-89 -, author = "K. Fukuda and S. Saito and A. Tamura" -, title = "Combinatorial face enumeration in arrangements and oriented matroids" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 4 -, precedes = "fst-cfeao-91" -, update = "95.09 korneenko" +, author = "K. Fukuda and S. Saito and A. Tamura" +, title = "Combinatorial face enumeration in arrangements and oriented matroids" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 4 +, precedes = "fst-cfeao-91" +, update = "95.09 korneenko" } @article{fst-cfeao-91 -, author = "K. Fukuda and S. Saito and A. Tamura" -, title = "Combinatorial face enumeration in arrangements and oriented matroids" -, journal = "Discrete Appl. Math." -, volume = 31 -, number = 2 -, year = 1991 -, pages = "141--149" -, keywords = "comb, arrangement, sphereset, hyperplaneset, flat, matroid, $n$-dimensional" -, succeeds = "fst-cfeao-89" -, update = "95.09 korneenko" +, author = "K. Fukuda and S. Saito and A. Tamura" +, title = "Combinatorial face enumeration in arrangements and oriented matroids" +, journal = "Discrete Appl. Math." +, volume = 31 +, number = 2 +, year = 1991 +, pages = "141--149" +, keywords = "comb, arrangement, sphereset, hyperplaneset, flat, matroid, $n$-dimensional" +, succeeds = "fst-cfeao-89" +, update = "95.09 korneenko" } @inproceedings{fstt-bnkfa-89 -, author = "K. Fukuda and S. Saito and A. Tamura and T. Tokuyama" -, title = "Bounding the number of $k$-faces in arrangements of hyperplanes" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 3 -, precedes = "fstt-bnkfa-91" -, update = "97.11 bibrelex, 95.09 korneenko" +, author = "K. Fukuda and S. Saito and A. Tamura and T. Tokuyama" +, title = "Bounding the number of $k$-faces in arrangements of hyperplanes" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 3 +, precedes = "fstt-bnkfa-91" +, update = "97.11 bibrelex, 95.09 korneenko" } @article{fstt-bnkfa-91 -, author = "K. Fukuda and S. Saito and A. Tamura and T. Tokuyama" -, title = "Bounding the number of $k$-faces in arrangements of hyperplanes" -, journal = "Discrete Appl. Math." -, volume = 31 -, number = 2 -, year = 1991 -, pages = "151--165" -, keywords = "comb, arrangement, hyperplaneset, flat, sphereset, matroid, face, $n$-dimensional" -, succeeds = "fstt-bnkfa-89" -, update = "97.11 bibrelex, 95.09 korneenko" +, author = "K. Fukuda and S. Saito and A. Tamura and T. Tokuyama" +, title = "Bounding the number of $k$-faces in arrangements of hyperplanes" +, journal = "Discrete Appl. Math." +, volume = 31 +, number = 2 +, year = 1991 +, pages = "151--165" +, keywords = "comb, arrangement, hyperplaneset, flat, sphereset, matroid, face, $n$-dimensional" +, succeeds = "fstt-bnkfa-89" +, update = "97.11 bibrelex, 95.09 korneenko" } @article{fn-bback-75 -, author = "K. Fukunaga and P. M. Narendra" -, title = "A branch and bound algorithm for computing $k$-nearest neighbors" -, journal = "IEEE Trans. Comput." -, volume = "C-24" -, year = 1975 -, pages = "750--753" +, author = "K. Fukunaga and P. M. Narendra" +, title = "A branch and bound algorithm for computing $k$-nearest neighbors" +, journal = "IEEE Trans. Comput." +, volume = "C-24" +, year = 1975 +, pages = "750--753" } @article{f-ipcfc-74 -, author = "B. E. Fullbright" -, title = "Intersectional properties of certain families of compact convex sets" -, journal = "Pacific J. Math." -, volume = 50 -, year = 1974 -, pages = "57--62" -, update = "97.11 bibrelex" +, author = "B. E. Fullbright" +, title = "Intersectional properties of certain families of compact convex sets" +, journal = "Pacific J. Math." +, volume = 50 +, year = 1974 +, pages = "57--62" +, update = "97.11 bibrelex" } @book{f-it-84 -, author = "W. Fulton" -, title = "Intersection Theory" -, publisher = "Springer-Verlag" -, year = 1984 -, update = "97.11 bibrelex" +, author = "W. Fulton" +, title = "Intersection Theory" +, publisher = "Springer-Verlag" +, year = 1984 +, update = "97.11 bibrelex" } @techreport{fntv-sltjs-88 -, author = "K. Y. Fung and T. M. Nicholl and R. E. Tarjan and C. J. {Van Wyk}" -, title = "Simplified linear-time {Jordan} sorting and polygon clipping" -, type = "Technical {Report}" -, number = "CS-TR-189-88" -, institution = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1988 -, precedes = "fntv-sltjs-90" +, author = "K. Y. Fung and T. M. Nicholl and R. E. Tarjan and C. J. {Van Wyk}" +, title = "Simplified linear-time {Jordan} sorting and polygon clipping" +, type = "Technical {Report}" +, number = "CS-TR-189-88" +, institution = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1988 +, precedes = "fntv-sltjs-90" } @article{fntv-sltjs-90 -, author = "K. Y. Fung and T. M. Nicholl and R. E. Tarjan and C. J. {Van Wyk}" -, title = "Simplified linear-time {Jordan} sorting and polygon clipping" -, journal = "Inform. Process. Lett." -, volume = 35 -, year = 1990 -, pages = "85--92" -, succeeds = "fntv-sltjs-88" +, author = "K. Y. Fung and T. M. Nicholl and R. E. Tarjan and C. J. {Van Wyk}" +, title = "Simplified linear-time {Jordan} sorting and polygon clipping" +, journal = "Inform. Process. Lett." +, volume = 35 +, year = 1990 +, pages = "85--92" +, succeeds = "fntv-sltjs-88" } @inproceedings{fm-llook-00 -, author = "Stefan Funke and Kurt Mehlhorn" -, title = "LOOK: A Lazy Object-Oriented Kernel for Geometric Computation" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "156--165" -, update = "00.11 jones" +, author = "Stefan Funke and Kurt Mehlhorn" +, title = "LOOK: A Lazy Object-Oriented Kernel for Geometric Computation" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "156--165" +, update = "00.11 jones" } @inproceedings{fst-mladi-92 -, author = "T. Funkhouser and C. S{\'e}quin and S. Teller" -, title = "Management of Large Amounts of Data in Interactive Building Walkthroughs" -, booktitle = "Proc. 1992 Workshop on Interactive 3D Graphics" -, year = 1992 -, pages = "11--20" -, update = "97.11 bibrelex" +, author = "T. Funkhouser and C. S{\'e}quin and S. Teller" +, title = "Management of Large Amounts of Data in Interactive Building Walkthroughs" +, booktitle = "Proc. 1992 Workshop on Interactive 3D Graphics" +, year = 1992 +, pages = "11--20" +, update = "97.11 bibrelex" } @article{f-rpddc-86 -, author = "Z. F{\"u}redi" -, title = "Random polytopes in the $d$-dimensional cube" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "315--319" +, author = "Z. F{\"u}redi" +, title = "Random polytopes in the $d$-dimensional cube" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "315--319" } @article{f-dpecp-91 -, author = "Z. F{\"u}redi" -, title = "The densest packing of equal circles into a parallel strip" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "95--106" +, author = "Z. F{\"u}redi" +, title = "The densest packing of equal circles into a parallel strip" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "95--106" } @article{f-mnudc-90 -, author = "Z. F{\"u}redi" -, title = "The maximum number of unit distances in a convex $n$-gon" -, journal = "J. Combin. Theory Ser. A" -, volume = 55 -, year = 1990 -, pages = "316--320" -, keywords = "combinatorial geometry, convex" +, author = "Z. F{\"u}redi" +, title = "The maximum number of unit distances in a convex $n$-gon" +, journal = "J. Combin. Theory Ser. A" +, volume = 55 +, year = 1990 +, pages = "316--320" +, keywords = "combinatorial geometry, convex" } @techreport{fh-dstm-89 -, author = "Z. F{\"u}redi and P. Hajnal" -, title = "Davenport-Schinzel Theory of Matrices" -, type = "Technical {Report}" -, institution = "DIMACS, Rutgers Univ." -, year = 1989 -, update = "95.09 agarwal, 93.09 milone+mitchell" +, author = "Z. F{\"u}redi and P. Hajnal" +, title = "Davenport-Schinzel Theory of Matrices" +, type = "Technical {Report}" +, institution = "DIMACS, Rutgers Univ." +, year = 1989 +, update = "95.09 agarwal, 93.09 milone+mitchell" } @article{fh-dstm-92 -, author = "Z. F{\"u}redi and P. Hajnal" -, title = "{Davenport}-{Schinzel} Theory of Matrices" -, journal = "Discrete Math." -, volume = 103 -, year = 1992 -, pages = "233--251" -, update = "95.09 agarwal, 93.09 milone+mitchell" +, author = "Z. F{\"u}redi and P. Hajnal" +, title = "{Davenport}-{Schinzel} Theory of Matrices" +, journal = "Discrete Math." +, volume = 103 +, year = 1992 +, pages = "233--251" +, update = "95.09 agarwal, 93.09 milone+mitchell" } @article{fk-pyp-94 -, author = "Z. {F\"uredi} and D. Kleitman" -, title = "The prison yard problem" -, journal = "Combinatorica" -, volume = 14 -, year = 1994 -, pages = "287--300" -, update = "97.07 orourke" +, author = "Z. {F\"uredi} and D. Kleitman" +, title = "The prison yard problem" +, journal = "Combinatorica" +, volume = 14 +, year = 1994 +, pages = "287--300" +, update = "97.07 orourke" } @inproceedings{fhkr-owpas-92 -, author = "M. F{\"u}rer and X. He and M.-Y. Kao and B. Raghavachari" -, title = "${O}(n \log\log n)$-Work Parallel Algorithms for Straight-Line Grid Embeddings of Planar Graphs" -, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." -, year = 1992 -, pages = "410--419" -, keywords = "graph drawing, planar, straight-line, grid, parallel" -, update = "96.09 tamassia" +, author = "M. F{\"u}rer and X. He and M.-Y. Kao and B. Raghavachari" +, title = "${O}(n \log\log n)$-Work Parallel Algorithms for Straight-Line Grid Embeddings of Planar Graphs" +, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." +, year = 1992 +, pages = "410--419" +, keywords = "graph drawing, planar, straight-line, grid, parallel" +, update = "96.09 tamassia" } @inproceedings{fr-amdst-92 -, author = "M. Furer and B. Raghavachari" -, title = "Approximating the Minimum Degree Spanning Tree to Within One from the Optimal Degree" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '92" -, year = 1992 -, pages = "317--324" -, update = "99.07 bibrelex, 98.07 bibrelex" +, author = "M. Furer and B. Raghavachari" +, title = "Approximating the Minimum Degree Spanning Tree to Within One from the Optimal Degree" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '92" +, year = 1992 +, pages = "317--324" +, update = "99.07 bibrelex, 98.07 bibrelex" } @inproceedings{fhl-ptapg-80 -, author = "M. Furst and J. Hopcroft and E. Luks" -, title = "Polynomial Time Algorithm for Permutation Groups" -, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1980 -, pages = "36--41" -, update = "97.11 bibrelex" +, author = "M. Furst and J. Hopcroft and E. Luks" +, title = "Polynomial Time Algorithm for Permutation Groups" +, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1980 +, pages = "36--41" +, update = "97.11 bibrelex" } @article{fa-rcfsc-96 -, author = "M. Furukata and K. Asano" -, title = "Reporting the crossing-free segments of a complete graph" -, journal = "Internat. J. Comput. Math." -, volume = 62 -, year = 1996 -, pages = "163--170" -, update = "97.03 smid" +, author = "M. Furukata and K. Asano" +, title = "Reporting the crossing-free segments of a complete graph" +, journal = "Internat. J. Comput. Math." +, volume = 62 +, year = 1996 +, pages = "163--170" +, update = "97.03 smid" } @article{frt-ftclr-93 -, author = "D. Fussell and V. Ramachandran and R. Thurimella" -, title = "Finding Triconnected Components by Local Replacement" -, journal = "SIAM J. Comput." -, volume = 26 -, number = 3 -, year = 1993 -, pages = "587--616" -, keywords = "parallel algorithm, triconnectivity, PRAM, graph, vertex connectivity" -, succeeds = "frt-ftclr-89" -, update = "98.07 patrignani" +, author = "D. Fussell and V. Ramachandran and R. Thurimella" +, title = "Finding Triconnected Components by Local Replacement" +, journal = "SIAM J. Comput." +, volume = 26 +, number = 3 +, year = 1993 +, pages = "587--616" +, keywords = "parallel algorithm, triconnectivity, PRAM, graph, vertex connectivity" +, succeeds = "frt-ftclr-89" +, update = "98.07 patrignani" } @inproceedings{frt-ftclr-89 -, author = "D. Fussell and V. Ramachandran and R. Thurimella" -, title = "Finding Triconnected Components by Local Replacements" -, booktitle = "Automata, Languages and Programming (Proc. 16th ICALP)" -, series = "Lecture Notes Comput. Sci." -, volume = 372 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "379--393" -, precedes = "frt-ftclr-93" -, update = "98.07 patrignani, 96.05 agarwal, 95.01 tamassia" +, author = "D. Fussell and V. Ramachandran and R. Thurimella" +, title = "Finding Triconnected Components by Local Replacements" +, booktitle = "Automata, Languages and Programming (Proc. 16th ICALP)" +, series = "Lecture Notes Comput. Sci." +, volume = 372 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "379--393" +, precedes = "frt-ftclr-93" +, update = "98.07 patrignani, 96.05 agarwal, 95.01 tamassia" } @inproceedings{ghs-rcgpt-85 -, author = "C. P. Gabor and W.-L. Hsu and K. J. Supowit" -, title = "Recognizing circle graphs in polynomial time" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "106--116" -, keywords = "circles, graph theory" -, precedes = "ghs-rcgpt-89" +, author = "C. P. Gabor and W.-L. Hsu and K. J. Supowit" +, title = "Recognizing circle graphs in polynomial time" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "106--116" +, keywords = "circles, graph theory" +, precedes = "ghs-rcgpt-89" } @article{ghs-rcgpt-89 -, author = "C. P. Gabor and W.-L. Hsu and K. J. Supowit" -, title = "Recognizing circle graphs in polynomial time" -, journal = "J. ACM" -, volume = 36 -, year = 1989 -, pages = "435--473" -, succeeds = "ghs-rcgpt-85" +, author = "C. P. Gabor and W.-L. Hsu and K. J. Supowit" +, title = "Recognizing circle graphs in polynomial time" +, journal = "J. ACM" +, volume = 36 +, year = 1989 +, pages = "435--473" +, succeeds = "ghs-rcgpt-85" } @inproceedings{gt-ltasc-83 -, author = "H. Gabow and R. Tarjan" -, title = "A linear time algorithm for a special case of disjoint set union" -, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." -, year = 1983 -, pages = "246--251" -, update = "98.07 bibrelex" +, author = "H. Gabow and R. Tarjan" +, title = "A linear time algorithm for a special case of disjoint set union" +, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." +, year = 1983 +, pages = "246--251" +, update = "98.07 bibrelex" } @article{gt-ltasc-85 -, author = "H. Gabow and R. Tarjan" -, title = "A linear time algorithm for a special case of disjoint set union" -, journal = "J. Comput. Syst. Sci." -, volume = 30 -, year = 1985 -, pages = "209--221" -, update = "97.11 bibrelex" +, author = "H. Gabow and R. Tarjan" +, title = "A linear time algorithm for a special case of disjoint set union" +, journal = "J. Comput. Syst. Sci." +, volume = 30 +, year = 1985 +, pages = "209--221" +, update = "97.11 bibrelex" } @article{gt-fsanp-89 -, author = "H. Gabow and R. Tarjan" -, title = "Faster scaling algorithms for network problems" -, journal = "SIAM J. Comput." -, volume = 18 -, year = 1989 -, pages = "1013--1036" -, update = "97.11 bibrelex" +, author = "H. Gabow and R. Tarjan" +, title = "Faster scaling algorithms for network problems" +, journal = "SIAM J. Comput." +, volume = 18 +, year = 1989 +, pages = "1013--1036" +, update = "97.11 bibrelex" } @inproceedings{gbt-srtgp-84 -, author = "H. N. Gabow and J. L. Bentley and R. E. Tarjan" -, title = "Scaling and related techniques for geometry problems" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "135--143" +, author = "H. N. Gabow and J. L. Bentley and R. E. Tarjan" +, title = "Scaling and related techniques for geometry problems" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "135--143" } @article{ggst-eamst-86 -, author = "H. N. Gabow and Z. Galil and T. H. Spencer and R. E. Tarjan" -, title = "Efficient Algorithms for Minimum Spanning Trees on Directed and Undirected Graphs" -, journal = "Combinatorica" -, volume = 6 -, year = 1986 -, pages = "109--122" -, update = "97.11 bibrelex" +, author = "H. N. Gabow and Z. Galil and T. H. Spencer and R. E. Tarjan" +, title = "Efficient Algorithms for Minimum Spanning Trees on Directed and Undirected Graphs" +, journal = "Combinatorica" +, volume = 6 +, year = 1986 +, pages = "109--122" +, update = "97.11 bibrelex" } @article{gt-ltafm-88 -, author = "H. N. Gabow and R. E. Tarjan" -, title = "A linear-time algorithm for finding a minimum spanning pseudoforest" -, journal = "Inform. Process. Lett." -, volume = 27 -, year = 1988 -, pages = "259--263" -, update = "98.07 bibrelex" +, author = "H. N. Gabow and R. E. Tarjan" +, title = "A linear-time algorithm for finding a minimum spanning pseudoforest" +, journal = "Inform. Process. Lett." +, volume = 27 +, year = 1988 +, pages = "259--263" +, update = "98.07 bibrelex" } @article{gs-nsagv-69 -, author = "K. R. Gabriel and R. R. Sokal" -, title = "A new statistical approach to geographic variation analysis" -, journal = "Systematic Zoology" -, volume = 18 -, year = 1969 -, pages = "259--278" +, author = "K. R. Gabriel and R. R. Sokal" +, title = "A new statistical approach to geographic variation analysis" +, journal = "Systematic Zoology" +, volume = 18 +, year = 1969 +, pages = "259--278" } @article{gv-cssps-95 -, author = "A. Gabrielov and N. Vorobjov" -, title = "Complexity of stratification of semi-pfaffian sets" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "71--91" -, update = "98.03 agarwal" +, author = "A. Gabrielov and N. Vorobjov" +, title = "Complexity of stratification of semi-pfaffian sets" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "71--91" +, update = "98.03 agarwal" } @techreport{gz-fgnim-86 -, author = "M. E. Gaddis and M. J. Zyda" -, title = "The fractal geometry of nature: its mathematical basis and application to computer graphics" -, type = "Report" -, number = "NPS52-86-008" -, institution = "Naval Postgraduate School" -, address = "Monterey, CA" -, year = 1986 +, author = "M. E. Gaddis and M. J. Zyda" +, title = "The fractal geometry of nature: its mathematical basis and application to computer graphics" +, type = "Report" +, number = "NPS52-86-008" +, institution = "Naval Postgraduate School" +, address = "Monterey, CA" +, year = 1986 } @inproceedings{g-prpt-93 -, author = "Noud Gademann" -, title = "Linear Programming in Random Polynomial Time" -, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" -, month = jun -, year = 1993 -, pages = "??" -, update = "00.03 devillers, 93.09 milone+mitchell" +, author = "Noud Gademann" +, title = "Linear Programming in Random Polynomial Time" +, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" +, month = jun +, year = 1993 +, pages = "??" +, update = "00.03 devillers, 93.09 milone+mitchell" } @article{gg-mam-98 -, author = "V. Gaede and O. G{\"u}nther" -, title = "Multidimensional Access Methods" -, journal = "ACM Comput. Surv." -, volume = 30 -, year = 1998 -, pages = "170--231" -, keywords = "survey paper" -, update = "98.11 pocchiola" +, author = "V. Gaede and O. G{\"u}nther" +, title = "Multidimensional Access Methods" +, journal = "ACM Comput. Surv." +, volume = 30 +, year = 1998 +, pages = "170--231" +, keywords = "survey paper" +, update = "98.11 pocchiola" } @techreport{go-nhpcg-93t -, author = "A. Gajentaan and M. Overmars" -, title = "$n^2$-Hard Problems in Computational Geometry" -, type = "manuscript" -, year = 1993 -, precedes = "go-nhpcg-93, go-copcg-95" -, update = "98.11 bibrelex" +, author = "A. Gajentaan and M. Overmars" +, title = "$n^2$-Hard Problems in Computational Geometry" +, type = "manuscript" +, year = 1993 +, precedes = "go-nhpcg-93, go-copcg-95" +, update = "98.11 bibrelex" } @techreport{go-nhpcg-93 -, author = "A. Gajentaan and M. H. Overmars" -, title = "$n^2$-Hard Problems in Computational Geometry" -, type = "Report" -, number = "RUU-CS-93-15" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, month = apr -, year = 1993 -, succeeds = "go-nhpcg-93t" -, update = "98.11 bibrelex, 93.09 erickson+goodrich+milone+mitchell" +, author = "A. Gajentaan and M. H. Overmars" +, title = "$n^2$-Hard Problems in Computational Geometry" +, type = "Report" +, number = "RUU-CS-93-15" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, month = apr +, year = 1993 +, succeeds = "go-nhpcg-93t" +, update = "98.11 bibrelex, 93.09 erickson+goodrich+milone+mitchell" } @article{go-copcg-95 -, author = "A. Gajentaan and M. H. Overmars" -, title = "On a class of ${O}(n^2)$ problems in computational geometry" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "165--185" -, succeeds = "go-nhpcg-93t" -, update = "99.07 smid, 98.11 bibrelex, 96.01 smid" +, author = "A. Gajentaan and M. H. Overmars" +, title = "On a class of ${O}(n^2)$ problems in computational geometry" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "165--185" +, succeeds = "go-nhpcg-93t" +, update = "99.07 smid, 98.11 bibrelex, 96.01 smid" } @incollection{g-csg-89 -, author = "Shmuel Gal" -, title = "Continous Search Games" -, booktitle = "Search theory: some recent developments." -, series = "Lecture Notes in pure and applied mathematics" -, volume = 112 -, publisher = "Dekker" -, address = "New York, NY" -, year = 1989 -, pages = "33--53" -, update = "00.03 bibrelex" +, author = "Shmuel Gal" +, title = "Continous Search Games" +, booktitle = "Search theory: some recent developments." +, series = "Lecture Notes in pure and applied mathematics" +, volume = 112 +, publisher = "Dekker" +, address = "New York, NY" +, year = 1989 +, pages = "33--53" +, update = "00.03 bibrelex" } @book{g-sg-80 -, author = "Shmuel Gal" -, title = "Search Games" -, series = "Mathematics in Science and Engeneering" -, volume = 149 -, publisher = "Academic Press" -, address = "New York" -, year = 1980 -, update = "98.07 bibrelex+icking" +, author = "Shmuel Gal" +, title = "Search Games" +, series = "Mathematics in Science and Engeneering" +, volume = 149 +, publisher = "Academic Press" +, address = "New York" +, year = 1980 +, update = "98.07 bibrelex+icking" } @article{g-hsli-69 -, author = "D. Gala" -, title = "How to solve linear inequalities" -, journal = "Amer. Math. Monthly" -, volume = 76 -, year = 1969 -, pages = "589--599" -, update = "93.09 milone+mitchell" +, author = "D. Gala" +, title = "How to solve linear inequalities" +, journal = "Amer. Math. Monthly" +, volume = 76 +, year = 1969 +, pages = "589--599" +, update = "93.09 milone+mitchell" } @article{g-cpcli-51 -, author = "D. Gale" -, title = "Convex Polyhedral Cones and Linear Inequalities" -, journal = "Cowles Commission Monograph" -, volume = 13 -, year = 1951 -, pages = "287--297" -, update = "97.11 bibrelex" +, author = "D. Gale" +, title = "Convex Polyhedral Cones and Linear Inequalities" +, journal = "Cowles Commission Monograph" +, volume = 13 +, year = 1951 +, pages = "287--297" +, update = "97.11 bibrelex" } @incollection{g-ncp-63 -, author = "D. Gale" -, title = "Neighborly and cyclic polytopes" -, editor = "V. Klee" -, booktitle = "Convexity" -, series = "Proc. Symp. Pure Math." -, volume = 7 -, publisher = "American Mathematical Society" -, year = 1963 -, pages = "225--232" -, update = "97.11 bibrelex" +, author = "D. Gale" +, title = "Neighborly and cyclic polytopes" +, editor = "V. Klee" +, booktitle = "Convexity" +, series = "Proc. Symp. Pure Math." +, volume = 7 +, publisher = "American Mathematical Society" +, year = 1963 +, pages = "225--232" +, update = "97.11 bibrelex" } @inproceedings{g-namfp-87 -, author = "Z. Galil" -, title = "A new algorithm for the maximal flow problem" -, booktitle = "Proc. 19th Annu. IEEE Sympos. Found. Comput. Sci." -, month = oct -, year = 1987 -, pages = "231--245" -, update = "98.03 bibrelex" +, author = "Z. Galil" +, title = "A new algorithm for the maximal flow problem" +, booktitle = "Proc. 19th Annu. IEEE Sympos. Found. Comput. Sci." +, month = oct +, year = 1987 +, pages = "231--245" +, update = "98.03 bibrelex" } @article{gg-sudpa-89 -, author = "Z. Galil and R. Giancarlo" -, title = "Speeding Up Dynamic Programming with Applications to Molecular Biology" -, journal = "Theoret. Comput. Sci." -, volume = 64 -, year = 1989 -, pages = "107--118" +, author = "Z. Galil and R. Giancarlo" +, title = "Speeding Up Dynamic Programming with Applications to Molecular Biology" +, journal = "Theoret. Comput. Sci." +, volume = 64 +, year = 1989 +, pages = "107--118" } @article{gi-dsads-91 -, author = "Z. Galil and G. F. Italiano" -, title = "Data Structures and Algorithms for Disjoint Set Union Problems" -, journal = "ACM Comput. Surv." -, volume = 23 -, number = 3 -, year = 1991 -, pages = "319--344" -, update = "97.03 tamassia" +, author = "Z. Galil and G. F. Italiano" +, title = "Data Structures and Algorithms for Disjoint Set Union Problems" +, journal = "ACM Comput. Surv." +, volume = 23 +, number = 3 +, year = 1991 +, pages = "319--344" +, update = "97.03 tamassia" } @inproceedings{gi-fdaec-91 -, author = "Z. Galil and G. F. Italiano" -, title = "Fully Dynamic Algorithms for Edge Connectivity Problems" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "317--327" -, update = "98.07 tamassia+vismara, 94.01 tamassia" +, author = "Z. Galil and G. F. Italiano" +, title = "Fully Dynamic Algorithms for Edge Connectivity Problems" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "317--327" +, update = "98.07 tamassia+vismara, 94.01 tamassia" } @inproceedings{gi-mbcdp-91 -, author = "Z. Galil and G. F. Italiano" -, title = "Maintaining Biconnected Components of Dynamic Planar Graphs" -, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 510 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "339--350" -, update = "93.09 rote" +, author = "Z. Galil and G. F. Italiano" +, title = "Maintaining Biconnected Components of Dynamic Planar Graphs" +, booktitle = "Proc. 18th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 510 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "339--350" +, update = "93.09 rote" } @inproceedings{gis-fdpt-92 -, author = "Z. Galil and G. F. Italiano and N. Sarnak" -, title = "Fully dynamic planarity testing" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "495--506" +, author = "Z. Galil and G. F. Italiano and N. Sarnak" +, title = "Fully dynamic planarity testing" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "495--506" } @article{gm-fsapo-79 -, author = "Z. Galil and N. Megiddo" -, title = "A fast selection algorithm and the problem of optimum distribution of effort" -, journal = "J. ACM" -, volume = 26 -, year = 1979 -, pages = "58--64" -, update = "98.07 mitchell, 97.11 bibrelex" +, author = "Z. Galil and N. Megiddo" +, title = "A fast selection algorithm and the problem of optimum distribution of effort" +, journal = "J. ACM" +, volume = 26 +, year = 1979 +, pages = "58--64" +, update = "98.07 mitchell, 97.11 bibrelex" } @article{gm-ahle-69 -, author = "R. Galimberti and U. Montanari" -, title = "An algorithm for hidden-line elimination" -, journal = "Commun. ACM" -, volume = 12 -, year = 1969 -, pages = 206 +, author = "R. Galimberti and U. Montanari" +, title = "An algorithm for hidden-line elimination" +, journal = "Commun. ACM" +, volume = 12 +, year = 1969 +, pages = 206 } @techreport{gk-mpcd2-84 -, author = "V. V. Galitsky and A. A. Kzylov" -, title = "Modelling of plant community dynamics: $2$-d model of one-species even-aged community" -, type = "Report" -, number = "??" -, institution = "Sci. Center Sislogical Res., Inst. Soil Sci. Photosynthesis, USSR Acad. Sci." -, year = 1984 -, pages = "480--485" +, author = "V. V. Galitsky and A. A. Kzylov" +, title = "Modelling of plant community dynamics: $2$-d model of one-species even-aged community" +, type = "Report" +, number = "??" +, institution = "Sci. Center Sislogical Res., Inst. Soil Sci. Photosynthesis, USSR Acad. Sci." +, year = 1984 +, pages = "480--485" } @techreport{gm-vmpca-81 -, author = "V. V. Galitsky and E. V. Mironenko" -, title = "Voronoi {Mosaic} on the plane, construction algorithm: materials on software" -, type = "Report" -, number = "??" -, institution = "Sci. Center Sislogical Res., Inst. Soil Sci. Photosynthesis, USSR Acad. Sci." -, year = 1981 +, author = "V. V. Galitsky and E. V. Mironenko" +, title = "Voronoi {Mosaic} on the plane, construction algorithm: materials on software" +, type = "Report" +, number = "??" +, institution = "Sci. Center Sislogical Res., Inst. Soil Sci. Photosynthesis, USSR Acad. Sci." +, year = 1981 } @article{g-spn4-44 -, author = "T. Gallai" -, title = "Solution to Problem No 4065" -, journal = "Amer. Math. Monthly" -, volume = 51 -, year = 1944 -, pages = "169--171" -, succeeds = "e-pn4-44" -, update = "98.07 devillers" +, author = "T. Gallai" +, title = "Solution to Problem No 4065" +, journal = "Amer. Math. Monthly" +, volume = 51 +, year = 1944 +, pages = "169--171" +, succeeds = "e-pn4-44" +, update = "98.07 devillers" } @article{gf-iea-64 -, author = "B. A. Galler and M. J. Fischer" -, title = "An Improved Equivalence Algorithm" -, journal = "Commun. ACM" -, volume = 7 -, year = 1964 -, pages = "301--303" -, update = "98.03 bibrelex" +, author = "B. A. Galler and M. J. Fischer" +, title = "An Improved Equivalence Algorithm" +, journal = "Commun. ACM" +, volume = 7 +, year = 1964 +, pages = "301--303" +, update = "98.03 bibrelex" } @inproceedings{g-dcrs-97 -, author = "J. Gallier" -, title = "Drawing closed rational surfaces" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "370--372" -, cites = "a-tdmrt-41, br-tdarp-94, br-frrpc-95, b-g-87, f-cscag-93, f-ncspg-95, fj-cesr-89, fj-csr-92, g-adcrs-96, g-csgai-97, hl-cagd-93, r-bcdas-87, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "J. Gallier" +, title = "Drawing closed rational surfaces" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "370--372" +, cites = "a-tdmrt-41, br-tdarp-94, br-frrpc-95, b-g-87, f-cscag-93, f-ncspg-95, fj-cesr-89, fj-csr-92, g-adcrs-96, g-csgai-97, hl-cagd-93, r-bcdas-87, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{g-adcrs-96 -, author = "J. H. Gallier" -, title = "Algorithms for drawing closed rational surfaces" -, type = "Technical {Report}" -, institution = "Univ. Pennsylvania" -, address = "Philadelphia, PA" -, year = 1996 -, update = "98.07 bibrelex" +, author = "J. H. Gallier" +, title = "Algorithms for drawing closed rational surfaces" +, type = "Technical {Report}" +, institution = "Univ. Pennsylvania" +, address = "Philadelphia, PA" +, year = 1996 +, update = "98.07 bibrelex" } @techreport{g-csgai-97 -, author = "J. H. Gallier" -, title = "Curves and surfaces: {Geometry}, algorithms, and implementation in {Mathematica}" -, type = "Technical {Report}" -, institution = "Univ. Pennsylvania" -, address = "Philadelphia, PA" -, year = 1997 -, update = "98.07 bibrelex" +, author = "J. H. Gallier" +, title = "Curves and surfaces: {Geometry}, algorithms, and implementation in {Mathematica}" +, type = "Technical {Report}" +, institution = "Univ. Pennsylvania" +, address = "Philadelphia, PA" +, year = 1997 +, update = "98.07 bibrelex" } @article{ggt-fpmfa-89 -, author = "G. Gallo and M. D. Grigoriadis and R. E. Tarjan" -, title = "A fast parametric maximum flow algorithm" -, journal = "SIAM J. Comput." -, volume = 18 -, year = 1989 -, pages = "30--55" -, update = "97.11 bibrelex" +, author = "G. Gallo and M. D. Grigoriadis and R. E. Tarjan" +, title = "A fast parametric maximum flow algorithm" +, journal = "SIAM J. Comput." +, volume = 18 +, year = 1989 +, pages = "30--55" +, update = "97.11 bibrelex" } @incollection{gm-eabwr-91 -, author = "G. Gallo and B. Mishra" -, title = "Efficient algorithms and bounds for {Wu}-{Ritt} characteristic sets" -, editor = "T. Mora and C. Traverso" -, booktitle = "Effective Methods on Algebraic Geometry" -, series = "Progress in Mathematics" -, volume = 94 -, publisher = "Birkh{\"a}user" -, year = 1991 -, pages = "119--142" -, update = "98.03 bibrelex" +, author = "G. Gallo and B. Mishra" +, title = "Efficient algorithms and bounds for {Wu}-{Ritt} characteristic sets" +, editor = "T. Mora and C. Traverso" +, booktitle = "Effective Methods on Algebraic Geometry" +, series = "Progress in Mathematics" +, volume = 94 +, publisher = "Birkh{\"a}user" +, year = 1991 +, pages = "119--142" +, update = "98.03 bibrelex" } @article{gkt-lioppb-95 -, author = "G. Galperin and T. Kr{\"u}ger and S. Troubetzkoy" -, title = "Local instability of orbits in polygonal and polyhedral billiards" -, journal = "Commun. Math. Phys." -, volume = 169 -, year = 1995 -, pages = "463--473" -, update = "01.04 orourke" +, author = "G. Galperin and T. Kr{\"u}ger and S. Troubetzkoy" +, title = "Local instability of orbits in polygonal and polyhedral billiards" +, journal = "Commun. Math. Phys." +, volume = 169 +, year = 1995 +, pages = "463--473" +, update = "01.04 orourke" } @inproceedings{gg-pwmsp-96 -, author = "Jerome Galtier and Paul Louis George" -, title = "Prepartitioning as a way to mesh subdomains in parallel" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "107--121" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Jerome Galtier and Paul Louis George" +, title = "Prepartitioning as a way to mesh subdomains in parallel" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "107--121" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{gp-pfpt-99 -, author = "J{\'e}r{\^o}me Galtier and St{\'e}phane Perennes" -, title = "Parallel Flips on Planar Triangulations" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "81--86" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "J{\'e}r{\^o}me Galtier and St{\'e}phane Perennes" +, title = "Parallel Flips on Planar Triangulations" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "81--86" +, update = "00.03 bibrelex, 99.07 bibrelex" } @misc{ghj-gpma-67 -, author = "R. Gambini and D. L. Huff and G. F. Jenks" -, title = "Geometric properties of market areas" -, howpublished = "Regional Science Association: Papers" -, year = 1967 -, update = "97.11 bibrelex" +, author = "R. Gambini and D. L. Huff and G. F. Jenks" +, title = "Geometric properties of market areas" +, howpublished = "Regional Science Association: Papers" +, year = 1967 +, update = "97.11 bibrelex" } @techreport{gt-amatd-85 -, author = "G. Gambosi and M. Talamo" -, title = "An application of $m$-ary trees to the design of data structures for geometric searching problems" -, type = "Report" -, number = "??" -, institution = "Centro Nazionale Ricerche, Instituto Analisi Sistemi Inform." -, year = 1985 +, author = "G. Gambosi and M. Talamo" +, title = "An application of $m$-ary trees to the design of data structures for geometric searching problems" +, type = "Report" +, number = "??" +, institution = "Centro Nazionale Ricerche, Instituto Analisi Sistemi Inform." +, year = 1985 } @book{ghjv-dp-95 -, author = "Erich Gamma and Richard Helm and Ralph Johnson and John Vlissides" -, title = "Design Patterns" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1995 -, keywords = "object-oriented programming, patterns, reuse" -, update = "97.03 tamassia" +, author = "Erich Gamma and Richard Helm and Ralph Johnson and John Vlissides" +, title = "Design Patterns" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1995 +, keywords = "object-oriented programming, patterns, reuse" +, update = "97.03 tamassia" } @article{gd-ngtmp-82 -, author = "S. Ganapathy and T. G. Dennehy" -, title = "A new general triangulation method for planar contours" -, journal = "ACS Trans. Comput. Graph." -, volume = 16 -, year = 1982 -, pages = "69--75" -, update = "98.03 bibrelex" +, author = "S. Ganapathy and T. G. Dennehy" +, title = "A new general triangulation method for planar contours" +, journal = "ACS Trans. Comput. Graph." +, volume = 16 +, year = 1982 +, pages = "69--75" +, update = "98.03 bibrelex" } @article{gt-admff-86 -, author = "M. V. Gandhi and B. S. Thompson" -, title = "Automated design of modular fixtures for flexible manufacturing systems" -, journal = "J. of Manufacturing Systems" -, volume = 5 -, number = 4 -, year = 1986 -, update = "98.03 bibrelex" +, author = "M. V. Gandhi and B. S. Thompson" +, title = "Automated design of modular fixtures for flexible manufacturing systems" +, journal = "J. of Manufacturing Systems" +, volume = 5 +, number = 4 +, year = 1986 +, update = "98.03 bibrelex" } @phdthesis{g-cpsps-01 -, author = "Pierre-Marie Gandoin" -, title = "Compression progressive sans perte de structures g{\'e}om{\'e}triques" -, type = "Th\`{e}se de doctorat en sciences" -, school = "universit\'e de {Nice-Sophia Antipolis}" -, address = "France" -, year = 2001 -, keywords = "doctoral thesis" -, update = "02.03 devillers" +, author = "Pierre-Marie Gandoin" +, title = "Compression progressive sans perte de structures g{\'e}om{\'e}triques" +, type = "Th\`{e}se de doctorat en sciences" +, school = "universit\'e de {Nice-Sophia Antipolis}" +, address = "France" +, year = 2001 +, keywords = "doctoral thesis" +, update = "02.03 devillers" } @book{gs-ssa-79 -, author = "G. Gane and T. Sarson" -, title = "Structured Systems Analysis" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1979 -, update = "98.07 vismara, 98.03 bibrelex, 95.01 tamassia" +, author = "G. Gane and T. Sarson" +, title = "Structured Systems Analysis" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1979 +, update = "98.07 vismara, 98.03 bibrelex, 95.01 tamassia" } @inproceedings{gc-fdpae-94 -, author = "J. L. Ganley and J. P. Cohoon" -, title = "A faster dynamic programming algorithm for exact rectilinear {Steiner} minimal trees" -, booktitle = "Proc. 4th Great Lakes Sympos. VLSI" -, year = 1994 -, pages = "238--241" -, update = "98.11 bibrelex" +, author = "J. L. Ganley and J. P. Cohoon" +, title = "A faster dynamic programming algorithm for exact rectilinear {Steiner} minimal trees" +, booktitle = "Proc. 4th Great Lakes Sympos. VLSI" +, year = 1994 +, pages = "238--241" +, update = "98.11 bibrelex" } @article{gc-icors-97 -, author = "J. L. Ganley and J. P. Cohoon" -, title = "Improved Computation of Optimal Rectilinear {Steiner} Minimal Trees" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "457--472" -, succeeds = "gc-orsmt-94" -, update = "98.11 devillers" +, author = "J. L. Ganley and J. P. Cohoon" +, title = "Improved Computation of Optimal Rectilinear {Steiner} Minimal Trees" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "457--472" +, succeeds = "gc-orsmt-94" +, update = "98.11 devillers" } @inproceedings{gc-orsmt-94 -, author = "J. L. Ganley and J. P. Cohoon" -, title = "Optimal Rectilinear {Steiner} Minimal Trees in {$O(n^2 2.62^n)$} Time" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "308--313" -, precedes = "gc-icors-97" -, cites = "ch-ecsmt-86, ch-icpsm-92, dw-spg-72, gc-fdpae-94, gj-rstpi-77, h-sprd-66, hu-iatlc-79, h-smtrd-76, sw-ersta-93, s-hfsmt-92, tac-rsmw-92, w-aspep-85, hrw-stp-92, ZZZ" -, update = "98.11 bibrelex+devillers, 94.09 jones" +, author = "J. L. Ganley and J. P. Cohoon" +, title = "Optimal Rectilinear {Steiner} Minimal Trees in {$O(n^2 2.62^n)$} Time" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "308--313" +, precedes = "gc-icors-97" +, cites = "ch-ecsmt-86, ch-icpsm-92, dw-spg-72, gc-fdpae-94, gj-rstpi-77, h-sprd-66, hu-iatlc-79, h-smtrd-76, sw-ersta-93, s-hfsmt-92, tac-rsmw-92, w-aspep-85, hrw-stp-92, ZZZ" +, update = "98.11 bibrelex+devillers, 94.09 jones" } @article{gknv-tddg-93 -, author = "E. R. Gansner and E. Koutsofios and S. C. North and K. P. Vo" -, title = "A Technique for Drawing Directed Graphs" -, journal = "IEEE Trans. Softw. Eng." -, volume = 19 -, year = 1993 -, pages = "214--230" -, keywords = "graph drawing" -, update = "95.05 tamassia, 93.09 tamassia" +, author = "E. R. Gansner and E. Koutsofios and S. C. North and K. P. Vo" +, title = "A Technique for Drawing Directed Graphs" +, journal = "IEEE Trans. Softw. Eng." +, volume = 19 +, year = 1993 +, pages = "214--230" +, keywords = "graph drawing" +, update = "95.05 tamassia, 93.09 tamassia" } @inproceedings{gknv-gvsa-92 -, author = "E. R. Gansner and E. Koutsofios and S. C. North and K. P. Vo" -, title = "Graph Visualization in Software Analysis" -, booktitle = "Proc. IEEE Symposium on Assessment of Quality Software Development Tools" -, month = may -, year = 1992 -, pages = "" -, keywords = "graph drawing" -, update = "94.05 devillers, 93.09 tamassia" +, author = "E. R. Gansner and E. Koutsofios and S. C. North and K. P. Vo" +, title = "Graph Visualization in Software Analysis" +, booktitle = "Proc. IEEE Symposium on Assessment of Quality Software Development Tools" +, month = may +, year = 1992 +, pages = "" +, keywords = "graph drawing" +, update = "94.05 devillers, 93.09 tamassia" } @article{gnv-dptdd-88 -, author = "E. R. Gansner and S. C. North and K. P. Vo" -, title = "{DAG} -- {A} Program that Draws Directed Graphs" -, journal = "Softw. -- Pract. Exp." -, volume = 18 -, number = 11 -, year = 1988 -, pages = "1047--1062" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. R. Gansner and S. C. North and K. P. Vo" +, title = "{DAG} -- {A} Program that Draws Directed Graphs" +, journal = "Softw. -- Pract. Exp." +, volume = 18 +, number = 11 +, year = 1988 +, pages = "1047--1062" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{gu-gssco-85 -, author = "M. A. Gantner and J. J. {Uicker, Jr.}" -, title = "Generating swept solids for convex objects" -, type = "Report" -, number = "??" -, institution = "Dept. Mech. Engrg., Univ. Wisconsin" -, address = "Madison, WI" -, year = 1985 +, author = "M. A. Gantner and J. J. {Uicker, Jr.}" +, title = "Generating swept solids for convex objects" +, type = "Report" +, number = "??" +, institution = "Dept. Mech. Engrg., Univ. Wisconsin" +, address = "Madison, WI" +, year = 1985 } @inproceedings{gdg-tlbsr-94 -, author = "B. Gao and D.-Z. Du and R. L. Graham" -, title = "A Tight Lower Bound for the {Steiner} Ratio in {Minkowski} Planes" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "183--191" -, cites = "achlkkmh-sspmn-91, cg-fpms-85, c-srbmp-90, c-sp-67, d-src-91, dgglw-mstnp-, dh-pgpcs-92, dh-rspns-92, ggj-ccsmt-77, gj-rstpi-77, gp-smt-68, gh-rsmt-76, h-smtrd-76, lm-pcasi-91, ld-smtld-92, m-ccm-76, sr-lvsta-75, sw-hstcu-, sg-smtus-82, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "B. Gao and D.-Z. Du and R. L. Graham" +, title = "A Tight Lower Bound for the {Steiner} Ratio in {Minkowski} Planes" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "183--191" +, cites = "achlkkmh-sspmn-91, cg-fpms-85, c-srbmp-90, c-sp-67, d-src-91, dgglw-mstnp-, dh-pgpcs-92, dh-rspns-92, ggj-ccsmt-77, gj-rstpi-77, gp-smt-68, gh-rsmt-76, h-smtrd-76, lm-pcasi-91, ld-smtld-92, m-ccm-76, sr-lvsta-75, sw-hstcu-, sg-smtus-82, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @inproceedings{gjkmrs-cholr-4scg-88 -, author = "S. Gao and M. Jerrum and M. Kaufmann and K. Mehlhorn and W. R{\"u}lling and C. Storb" -, title = "On continuous homotopic one layer routing" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "392--402" -, succeeds = "gjkmrs-cholr-cga-88" -, cites = "cs-rreww-83, lm-artrp-85, m-slwr-87, st-ldt-47, t-oswrp-81, ZZZ" -, update = "98.03 bibrelex" +, author = "S. Gao and M. Jerrum and M. Kaufmann and K. Mehlhorn and W. R{\"u}lling and C. Storb" +, title = "On continuous homotopic one layer routing" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "392--402" +, succeeds = "gjkmrs-cholr-cga-88" +, cites = "cs-rreww-83, lm-artrp-85, m-slwr-87, st-ldt-47, t-oswrp-81, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{gjkmrs-cholr-cga-88 -, author = "S. Gao and M. Jerrum and M. Kaufmann and K. Mehlhorn and W. R{\"u}lling and C. Storb" -, title = "On continuous homotopic one layer routing" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "55--70" -, precedes = "gjkmrs-cholr-4scg-88" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "S. Gao and M. Jerrum and M. Kaufmann and K. Mehlhorn and W. R{\"u}lling and C. Storb" +, title = "On continuous homotopic one layer routing" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "55--70" +, precedes = "gjkmrs-cholr-4scg-88" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @inproceedings{gk-crmn-87 -, author = "S. Gao and M. Kaufmann" -, title = "Channel routing of multiterminal nets" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "316--325" +, author = "S. Gao and M. Kaufmann" +, title = "Channel routing of multiterminal nets" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "316--325" } @inproceedings{gkm-ahlc-89 -, author = "S. Gao and M. Kaufmann and F. M. Maley" -, title = "Advances in homotopic layout compaction" -, booktitle = "Proc. 1st ACM Sympos. Parallel Algorithms Architect." -, year = 1989 -, pages = "273--282" +, author = "S. Gao and M. Kaufmann and F. M. Maley" +, title = "Advances in homotopic layout compaction" +, booktitle = "Proc. 1st ACM Sympos. Parallel Algorithms Architect." +, year = 1989 +, pages = "273--282" } @article{gc-npcs-91 -, author = "X. S. Gao and S. C. Chou" -, title = "On the normal parametrization of curves and surfaces" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 2 -, year = 1991 -, pages = "125--136" -, keywords = "normal parametric equation, inversion map, conic, conicoid, computer modeling" +, author = "X. S. Gao and S. C. Chou" +, title = "On the normal parametrization of curves and surfaces" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 2 +, year = 1991 +, pages = "125--136" +, keywords = "normal parametric equation, inversion map, conic, conicoid, computer modeling" } @inproceedings{ghhnt-ptpg-97 -, author = "A. Garc{\'{\i}}a and C. Hernando and F. Hurtado and M. Noy and J. Tejel" -, title = "Packing Trees into Planar Graphs" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "383--390" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "A. Garc{\'{\i}}a and C. Hernando and F. Hurtado and M. Noy and J. Tejel" +, title = "Packing Trees into Planar Graphs" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "383--390" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{gnt-lbncf-95 -, author = "Alfredo Garc{\'\i}a and Marc Noy and Javier Tejel" -, title = "Lower Bounds for the Number of Crossing-Free Subgraphs of {$K_n$}" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "97--102" -, update = "95.09 jones" +, author = "Alfredo Garc{\'\i}a and Marc Noy and Javier Tejel" +, title = "Lower Bounds for the Number of Crossing-Free Subgraphs of {$K_n$}" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "97--102" +, update = "95.09 jones" } @article{gnt-lbncf-00 -, author = "A. Garc{\'\i}a and M. Noy and J. Tejel" -, title = "Lower bounds on the number of crossing-free subgraphs of {$K_N$}" -, journal = "Comput. Geom. Theory Appl." -, volume = 16 -, year = 2000 -, pages = "211--221" -, update = "01.04 smid" +, author = "A. Garc{\'\i}a and M. Noy and J. Tejel" +, title = "Lower bounds on the number of crossing-free subgraphs of {$K_N$}" +, journal = "Comput. Geom. Theory Appl." +, volume = 16 +, year = 2000 +, pages = "211--221" +, update = "01.04 smid" } @article{gsf-scdp-94 -, author = "A. Garcia-Alonso and N. Serrano and J. Flaquer" -, title = "Solving the Collision Detection Problem" -, journal = "IEEE Comput. Graph. Appl." -, volume = 14 -, month = may -, year = 1994 -, pages = "36--43" -, update = "95.01 mitchell" +, author = "A. Garcia-Alonso and N. Serrano and J. Flaquer" +, title = "Solving the Collision Detection Problem" +, journal = "IEEE Comput. Graph. Appl." +, volume = 14 +, month = may +, year = 1994 +, pages = "36--43" +, update = "95.01 mitchell" } @inproceedings{gr-mcsp-96 -, author = "Jesus Garcia and Pedro A. Ramos" -, title = "Measuring Circularity of a Set of Points" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = 75 -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Jesus Garcia and Pedro A. Ramos" +, title = "Measuring Circularity of a Set of Points" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = 75 +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{gm-afegg-88 -, author = "Luis F. Garcia and Osama A. Mohammed" -, title = "Automatic Finite Element Grid Generation In Electromagnetics" -, booktitle = "1988 IEEE Southeastcon, Conference Proceedings." -, publisher = "IEEE" -, address = "New York, NY" -, year = 1988 -, pages = "571--575" -, keywords = "grid generation, field region, finite-element meshes, triangulation, finite- element grids" -, annote = "Basic incremental switching algorithm." -, abstract = "An automatic two-dimensional finite-element grid - generator, which would greatly assist in improving - preprocessing operations, and geometry handling, for - electromagnetic field computations is presented. The - algorithm developed iteratively triangulates a set of - points, defining a field region, into optimal - finite-element meshes. The mathematical procedure used - in developing the algorithm is based on the concept of - Delaunay triangulation and variational principles. The - main objective of this algorithm is to efficiently - reconstruct complicated field regions in terms of a set - of points, known to the user, and generate optimal - finite- element grids. The algorithm would also assist - in preparing the geometrical and material - characteristic-field regions to obtain numerical - solutions. The algorithm is executed interactively. 20 - refs." +, author = "Luis F. Garcia and Osama A. Mohammed" +, title = "Automatic Finite Element Grid Generation In Electromagnetics" +, booktitle = "1988 IEEE Southeastcon, Conference Proceedings." +, publisher = "IEEE" +, address = "New York, NY" +, year = 1988 +, pages = "571--575" +, keywords = "grid generation, field region, finite-element meshes, triangulation, finite- element grids" +, annote = "Basic incremental switching algorithm." +, abstract = "An automatic two-dimensional finite-element grid + generator, which would greatly assist in improving + preprocessing operations, and geometry handling, for + electromagnetic field computations is presented. The + algorithm developed iteratively triangulates a set of + points, defining a field region, into optimal + finite-element meshes. The mathematical procedure used + in developing the algorithm is based on the concept of + Delaunay triangulation and variational principles. The + main objective of this algorithm is to efficiently + reconstruct complicated field regions in terms of a set + of points, known to the user, and generate optimal + finite- element grids. The algorithm would also assist + in preparing the geometrical and material + characteristic-field regions to obtain numerical + solutions. The algorithm is executed interactively. 20 + refs." } @inproceedings{gr-cvs-93 -, author = "J. Garc{'i}a-L{'o}pez and P. Ramos-Alonso" -, title = "Circular visibility and seability" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "18--23" -, cites = "as-cssp-93, as-cvspf-93, c-tsplt-91a, ghlst-ltavs-87, gy-fchsp-83, ps-cgi-85, t-cg-85, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "J. Garc{'i}a-L{'o}pez and P. Ramos-Alonso" +, title = "Circular visibility and seability" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "18--23" +, cites = "as-cssp-93, as-cvspf-93, c-tsplt-91a, ghlst-ltavs-87, gy-fchsp-83, ps-cgi-85, t-cg-85, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{gr-fspc-97 -, author = "J. Garc{\'i}a-Lopez and P. Ramos" -, title = "Fitting a set of points by a circle" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "139--146" -, precedes = "grs-fspc-98" -, cites = "ast-apsgo-94, agss-ltacv-89, efnn-rauvd-89, egs-oplms-86, f-gm2ag-82, ll-orpr-91, ps-cgi-85, r-ac-79, rz-epccm-92, sy-pncrr-95, sj-wrspp-95, slw-oardc-95, y-ecgtm-95, ZZZ" -, update = "99.07 devillers, 98.07 bibrelex, 97.07 efrat" +, author = "J. Garc{\'i}a-Lopez and P. Ramos" +, title = "Fitting a set of points by a circle" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "139--146" +, precedes = "grs-fspc-98" +, cites = "ast-apsgo-94, agss-ltacv-89, efnn-rauvd-89, egs-oplms-86, f-gm2ag-82, ll-orpr-91, ps-cgi-85, r-ac-79, rz-epccm-92, sy-pncrr-95, sj-wrspp-95, slw-oardc-95, y-ecgtm-95, ZZZ" +, update = "99.07 devillers, 98.07 bibrelex, 97.07 efrat" } @article{grs-fspc-98 -, author = "Jes{\'u}s Garc{\'i}a-L{\'o}pez and Pedro Ramos and Jack Snoeyink" -, title = "Fitting a set of points by a circle" -, journal = "Discrete Comput. Geom." -, volume = 20 -, year = 1998 -, pages = "389--402" -, succeeds = "gr-fspc-97" -, update = "99.07 devillers" +, author = "Jes{\'u}s Garc{\'i}a-L{\'o}pez and Pedro Ramos and Jack Snoeyink" +, title = "Fitting a set of points by a circle" +, journal = "Discrete Comput. Geom." +, volume = 20 +, year = 1998 +, pages = "389--402" +, succeeds = "gr-fspc-97" +, update = "99.07 devillers" } @incollection{g-tc-92 -, author = "M. Gardner" -, title = "Tangent Circles" -, booktitle = "Fractal Music and Hypercards" -, publisher = "W. H. Freeman" -, year = 1992 -, pages = "149--166" -, update = "97.11 bibrelex" +, author = "M. Gardner" +, title = "Tangent Circles" +, booktitle = "Fractal Music and Hypercards" +, publisher = "W. H. Freeman" +, year = 1992 +, pages = "149--166" +, update = "97.11 bibrelex" } @book{g-gt-95 -, author = "R. J. Gardner" -, title = "Geometric Tomography" -, publisher = "Cambridge University Press" -, year = 1995 -, update = "96.05 orourke" +, author = "R. J. Gardner" +, title = "Geometric Tomography" +, publisher = "Cambridge University Press" +, year = 1995 +, update = "96.05 orourke" } @article{g-sxpcb-83 -, author = "R. J. Gardner" -, title = "Symmetrals and x-rays of planar convex bodies" -, journal = "Arch. Math." -, volume = 41 -, year = 1983 -, pages = "183--189" -, update = "98.11 bibrelex" +, author = "R. J. Gardner" +, title = "Symmetrals and x-rays of planar convex bodies" +, journal = "Arch. Math." +, volume = 41 +, year = 1983 +, pages = "183--189" +, update = "98.11 bibrelex" } @article{g-xrp-92 -, author = "R. J. Gardner" -, title = "{X}-rays of polygons" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "281--293" +, author = "R. J. Gardner" +, title = "{X}-rays of polygons" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "281--293" } @inproceedings{gg-dfsxr-96 -, author = "R. J. Gardner and Peter Gritzmann" -, title = "Determination of Finite Sets by {X}-Rays" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "71--72" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "R. J. Gardner and Peter Gritzmann" +, title = "Determination of Finite Sets by {X}-Rays" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "71--72" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{gm-hxp-80 -, author = "R. J. Gardner and P. {McMullen}" -, title = "On {Hammer's} x-ray problem" -, journal = "J. London Math. Soc." -, volume = 21 -, year = 1980 -, pages = "171--175" -, update = "98.11 bibrelex" +, author = "R. J. Gardner and P. {McMullen}" +, title = "On {Hammer's} x-ray problem" +, journal = "J. London Math. Soc." +, volume = 21 +, year = 1980 +, pages = "171--175" +, update = "98.11 bibrelex" } @inproceedings{gfp-porqm-89 -, author = "D. Gardy and P. Flajolet and C. Puech" -, title = "On the Performance of Orthogonal Range Queries in Multiattribute and Doubly Chained Trees" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "218--229" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "D. Gardy and P. Flajolet and C. Puech" +, title = "On the Performance of Orthogonal Range Queries in Multiattribute and Doubly Chained Trees" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "218--229" +, update = "94.01 smid, 93.09 milone+mitchell" } @techreport{gg-esdss-90 -, author = "D. Gardy and D. Gouyou-Beauchamps" -, title = "Enumeration of some {Davenport}-{Schinzel} sequences" -, type = "Report" -, number = 564 -, institution = "Universit{\'e} de Paris-Sud" -, address = "Paris" -, year = 1990 -, update = "95.09 agarwal, 95.05 agarwal" +, author = "D. Gardy and D. Gouyou-Beauchamps" +, title = "Enumeration of some {Davenport}-{Schinzel} sequences" +, type = "Report" +, number = 564 +, institution = "Universit{\'e} de Paris-Sud" +, address = "Paris" +, year = 1990 +, update = "95.09 agarwal, 95.05 agarwal" } @article{g-obip-72 -, author = "M. Garey" -, title = "Optimal binary identification procedures" -, journal = "SIAM J. Appl. Math." -, volume = 23 -, year = 1972 -, pages = "173--186" -, update = "98.03 bibrelex" +, author = "M. Garey" +, title = "Optimal binary identification procedures" +, journal = "SIAM J. Appl. Math." +, volume = 23 +, year = 1972 +, pages = "173--186" +, update = "98.03 bibrelex" } @article{gjs-agcpc-76 -, author = "M. Garey and D. Johnson and H. So" -, title = "An Apllication of Graph Coloring to Printed Circuit Testing" -, journal = "IEEE Trans. Circuits Syst." -, volume = "CAS-23" -, number = 10 -, month = oct -, year = 1976 -, pages = "591--598" -, update = "97.11 bibrelex" +, author = "M. Garey and D. Johnson and H. So" +, title = "An Apllication of Graph Coloring to Printed Circuit Testing" +, journal = "IEEE Trans. Circuits Syst." +, volume = "CAS-23" +, number = 10 +, month = oct +, year = 1976 +, pages = "591--598" +, update = "97.11 bibrelex" } @inproceedings{ggj-sncgp-76 -, author = "M. R. Garey and R. L. Graham and D. S. Johnson" -, title = "Some {NP}-complete geometric problems" -, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." -, year = 1976 -, pages = "10--22" +, author = "M. R. Garey and R. L. Graham and D. S. Johnson" +, title = "Some {NP}-complete geometric problems" +, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." +, year = 1976 +, pages = "10--22" } @article{ggj-ccsmt-77 -, author = "M. R. Garey and R. L. Graham and D. S. Johnson" -, title = "The complexity of computing {Steiner} minimal trees" -, journal = "SIAM J. Appl. Math." -, volume = 32 -, year = 1977 -, pages = "835--859" +, author = "M. R. Garey and R. L. Graham and D. S. Johnson" +, title = "The complexity of computing {Steiner} minimal trees" +, journal = "SIAM J. Appl. Math." +, volume = 32 +, year = 1977 +, pages = "835--859" } % also claimed address = "San Francisco, CA" @book{gj-cigtn-79 -, author = "M. R. Garey and D. S. Johnson" -, title = "Computers and Intractability: {A} Guide to the Theory of {NP}-Completeness" -, publisher = "W. H. Freeman" -, address = "New York, NY" -, year = 1979 -, keywords = "NP-completeness" +, author = "M. R. Garey and D. S. Johnson" +, title = "Computers and Intractability: {A} Guide to the Theory of {NP}-Completeness" +, publisher = "W. H. Freeman" +, address = "New York, NY" +, year = 1979 +, keywords = "NP-completeness" } @article{gj-cninc-83 -, author = "M. R. Garey and D. S. Johnson" -, title = "Crossing Number is {NP}-Complete" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 4 -, number = 3 -, year = 1983 -, pages = "312--316" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. R. Garey and D. S. Johnson" +, title = "Crossing Number is {NP}-Complete" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 4 +, number = 3 +, year = 1983 +, pages = "312--316" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{gj-rstpi-77 -, author = "M. R. Garey and D. S. Johnson" -, title = "The rectilinear {Steiner} tree problem is {NP}-complete" -, journal = "SIAM J. Appl. Math." -, volume = 32 -, year = 1977 -, pages = "826--834" +, author = "M. R. Garey and D. S. Johnson" +, title = "The rectilinear {Steiner} tree problem is {NP}-complete" +, journal = "SIAM J. Appl. Math." +, volume = 32 +, year = 1977 +, pages = "826--834" } @article{gjpt-tsp-78 -, author = "M. R. Garey and D. S. Johnson and F. P. Preparata and R. E. Tarjan" -, title = "Triangulating a simple polygon" -, journal = "Inform. Process. Lett." -, volume = 7 -, number = 4 -, year = 1978 -, pages = "175--179" -, update = "98.11 bibrelex" +, author = "M. R. Garey and D. S. Johnson and F. P. Preparata and R. E. Tarjan" +, title = "Triangulating a simple polygon" +, journal = "Inform. Process. Lett." +, volume = 7 +, number = 4 +, year = 1978 +, pages = "175--179" +, update = "98.11 bibrelex" } @article{gjt-phcpn-76 -, author = "M. R. Garey and D. S. Johnson and R. E. Tarjan" -, title = "The planar {Hamiltonian} circuit problem is {NP}-complete" -, journal = "SIAM J. Comput." -, volume = 5 -, number = 4 -, year = 1976 -, pages = "704--714" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "M. R. Garey and D. S. Johnson and R. E. Tarjan" +, title = "The planar {Hamiltonian} circuit problem is {NP}-complete" +, journal = "SIAM J. Comput." +, volume = 5 +, number = 4 +, year = 1976 +, pages = "704--714" +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{gp-oswsc-84 -, author = "M. R. Garey and R. Y. Pinter" -, title = "Optimum scan-width selection under containment constraints" -, journal = "AT\&T Bell Lab. Tech. J." -, volume = 63 -, year = 1984 -, pages = "1191--1212" +, author = "M. R. Garey and R. Y. Pinter" +, title = "Optimum scan-width selection under containment constraints" +, journal = "AT\&T Bell Lab. Tech. J." +, volume = 63 +, year = 1984 +, pages = "1191--1212" } @article{g-nrdag-98 -, author = "A. Garg" -, title = "New results on Drawing Angle Graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, number = "1--2" -, year = 1998 -, pages = "43--82" -, note = "Special Issue on Geometric Representations of +, author = "A. Garg" +, title = "New results on Drawing Angle Graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, number = "1--2" +, year = 1998 +, pages = "43--82" +, note = "Special Issue on Geometric Representations of Graphs, G.~{Di Battista} and R.~Tamassia, editors" -, succeeds = "g-dag-95" -, update = "98.07 vismara" +, succeeds = "g-dag-95" +, update = "98.07 vismara" } @inproceedings{g-dag-95 -, author = "A. Garg" -, title = "On Drawing Angle Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "84--95" -, keywords = "graph drawing, planar, straight-line, NP-hardness" -, update = "95.01 tamassia" +, author = "A. Garg" +, title = "On Drawing Angle Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "84--95" +, keywords = "graph drawing, planar, straight-line, NP-hardness" +, update = "95.01 tamassia" } @inproceedings{ggt-aeutd-93 -, author = "A. Garg and M. T. Goodrich and R. Tamassia" -, title = "Area-efficient upward tree drawings" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "359--368" -, keywords = "graph drawing" -, precedes = "ggt-putdo-96" -, cites = "bc-cmwlv-87, bl-fsvgl-84, bm-gta-76, b-ndgta-88, bk-abtl-80, c-tpca-82, cdttb-fdgd-92, cdp-noaau-92, dtt-arsdp-92, dett-adgab-93, dv-aptg-93, fpp-sssfe-88, ell-ttdc-90, ghlst-ltavs-87, fhkr-owpas-92, k-dpgul-92, l-aeglv-80, mp-arpg-92, o-cgc18-93, rt-tdt-81, sr-cdtn-83, rt-rplbo-86, s-epgg-90, tt-uavrp-86, t-hdg-63, v-ucvc-81, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex, 97.03 devillers, 93.09 tamassia" +, author = "A. Garg and M. T. Goodrich and R. Tamassia" +, title = "Area-efficient upward tree drawings" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "359--368" +, keywords = "graph drawing" +, precedes = "ggt-putdo-96" +, cites = "bc-cmwlv-87, bl-fsvgl-84, bm-gta-76, b-ndgta-88, bk-abtl-80, c-tpca-82, cdttb-fdgd-92, cdp-noaau-92, dtt-arsdp-92, dett-adgab-93, dv-aptg-93, fpp-sssfe-88, ell-ttdc-90, ghlst-ltavs-87, fhkr-owpas-92, k-dpgul-92, l-aeglv-80, mp-arpg-92, o-cgc18-93, rt-tdt-81, sr-cdtn-83, rt-rplbo-86, s-epgg-90, tt-uavrp-86, t-hdg-63, v-ucvc-81, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex, 97.03 devillers, 93.09 tamassia" } @article{ggt-putdo-96 -, author = "A. Garg and M. T. Goodrich and R. Tamassia" -, title = "Planar upward tree drawings with optimal area" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "333--356" -, url = "https://www.cs.brown.edu/cgc/papers/ggt-aoutd-96.ps.gz" -, keywords = "graph drawing, tree, planar, upward" -, succeeds = "ggt-aeutd-93" -, update = "97.03 devillers+tamassia" +, author = "A. Garg and M. T. Goodrich and R. Tamassia" +, title = "Planar upward tree drawings with optimal area" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "333--356" +, url = "https://www.cs.brown.edu/cgc/papers/ggt-aoutd-96.ps.gz" +, keywords = "graph drawing, tree, planar, upward" +, succeeds = "ggt-aeutd-93" +, update = "97.03 devillers+tamassia" } @techreport{gt-nmcfa-96 -, author = "A. Garg and R. Tamassia" -, title = "A New Minimum Cost Flow Algorithm with Applications to Graph Drawing" -, type = "Manuscript" -, institution = "Dept. of Computer Sci., Brown University" -, year = 1996 -, keywords = "graph drawing, orthogonal, planar" -, update = "96.09 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "A New Minimum Cost Flow Algorithm with Applications to Graph Drawing" +, type = "Manuscript" +, institution = "Dept. of Computer Sci., Brown University" +, year = 1996 +, keywords = "graph drawing, orthogonal, planar" +, update = "96.09 tamassia" } @inproceedings{gt-nmcfa-97 -, author = "A. Garg and R. Tamassia" -, title = "A New Minimum Cost Flow Algorithm with Applications to Graph Drawing" -, editor = "S. C. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "201--216" -, url = "https://www.cs.brown.edu/cgc/papers/gt-nmcfa-97.ps.gz" -, keywords = "graph drawing, planar, orthogonal, grid" -, update = "99.03 vismara, 97.03 tamassia, 96.09 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "A New Minimum Cost Flow Algorithm with Applications to Graph Drawing" +, editor = "S. C. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "201--216" +, url = "https://www.cs.brown.edu/cgc/papers/gt-nmcfa-97.ps.gz" +, keywords = "graph drawing, planar, orthogonal, grid" +, update = "99.03 vismara, 97.03 tamassia, 96.09 tamassia" } @inproceedings{gt-agd-94 -, author = "A. Garg and R. Tamassia" -, title = "Advances in Graph Drawing" -, booktitle = "Algorithms and Complexity" -, nickname = "CIAC '94" -, series = "Lecture Notes Comput. Sci." -, volume = 778 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "12--21" -, url = "https://www.cs.brown.edu/cgc/papers/gt-agd-94.ps.gz" -, keywords = "graph drawing" -, update = "97.11 bibrelex, 97.03 tamassia, 94.05 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "Advances in Graph Drawing" +, booktitle = "Algorithms and Complexity" +, nickname = "CIAC '94" +, series = "Lecture Notes Comput. Sci." +, volume = 778 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "12--21" +, url = "https://www.cs.brown.edu/cgc/papers/gt-agd-94.ps.gz" +, keywords = "graph drawing" +, update = "97.11 bibrelex, 97.03 tamassia, 94.05 tamassia" } @techreport{gt-arpd-93 -, author = "A. Garg and R. Tamassia" -, title = "Angular Resolution of Planar Drawings" -, institution = "Brown Univ., Dept. of Computer Science" -, year = 1993 -, keywords = "graph drawing" -, update = "94.01 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "Angular Resolution of Planar Drawings" +, institution = "Brown Univ., Dept. of Computer Science" +, year = 1993 +, keywords = "graph drawing" +, update = "94.01 tamassia" } @techreport{gt-evhst-96 -, author = "A. Garg and R. Tamassia" -, title = "Effective Visualization of Hierarchical Structures in {3D}" -, type = "Manuscript" -, institution = "Dept. of Computer Sci., Brown University" -, year = 1996 -, note = "Available at \url{https://www.cs.brown.edu/people/rt/fadiva/giotto3d.html}" -, url = "https://www.cs.brown.edu/people/rt/fadiva/giotto3d.html" -, keywords = "graph drawing, 3D" -, update = "97.03 tamassia, 96.09 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "Effective Visualization of Hierarchical Structures in {3D}" +, type = "Manuscript" +, institution = "Dept. of Computer Sci., Brown University" +, year = 1996 +, note = "Available at \url{https://www.cs.brown.edu/people/rt/fadiva/giotto3d.html}" +, url = "https://www.cs.brown.edu/people/rt/fadiva/giotto3d.html" +, keywords = "graph drawing, 3D" +, update = "97.03 tamassia, 96.09 tamassia" } @inproceedings{gt-ecpsl-93 -, author = "A. Garg and R. Tamassia" -, title = "Efficient Computation of Planar Straight-Line Upward Drawings" -, booktitle = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" -, site = "Paris, France" -, year = 1993 -, keywords = "graph drawing, planar, upward, straight-line" -, update = "95.05 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "Efficient Computation of Planar Straight-Line Upward Drawings" +, booktitle = "Graph Drawing '93 (Proc. ALCOM Workshop on Graph Drawing)" +, site = "Paris, France" +, year = 1993 +, keywords = "graph drawing, planar, upward, straight-line" +, update = "95.05 tamassia" } @inproceedings{gt-gsvhs-97 -, author = "A. Garg and R. Tamassia" -, title = "{GIOTTO3D}: A System for Visualizing Hierarchical Structures in {3D}" -, editor = "S. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1997 -, url = "https://www.cs.brown.edu/cgc/papers/gt-gsvhs-97.ps.gz" -, keywords = "graph drawing, upward, 3D, CGC, Brown" -, update = "99.11 bibrelex, 97.03 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "{GIOTTO3D}: A System for Visualizing Hierarchical Structures in {3D}" +, editor = "S. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1997 +, url = "https://www.cs.brown.edu/cgc/papers/gt-gsvhs-97.ps.gz" +, keywords = "graph drawing, upward, 3D, CGC, Brown" +, update = "99.11 bibrelex, 97.03 tamassia" } @techreport{gt-cupt-93 -, author = "A. Garg and R. Tamassia" -, title = "On the Complexity of Upward Planarity Testing" -, institution = "Brown Univ., Dept. of Computer Science" -, year = 1993 -, keywords = "graph drawing" -, update = "94.01 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "On the Complexity of Upward Planarity Testing" +, institution = "Brown Univ., Dept. of Computer Science" +, year = 1993 +, keywords = "graph drawing" +, update = "94.01 tamassia" } @techreport{gt-ccurp-94 -, author = "A. Garg and R. Tamassia" -, title = "On the Computational Complexity of Upward and Rectilinear Planarity Testing" -, type = "Report" -, number = "CS-94-10" -, institution = "Comput. Sci. Dept., Brown Univ." -, address = "Providence, RI" -, year = 1994 -, update = "94.05 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "On the Computational Complexity of Upward and Rectilinear Planarity Testing" +, type = "Report" +, number = "CS-94-10" +, institution = "Comput. Sci. Dept., Brown Univ." +, address = "Providence, RI" +, year = 1994 +, update = "94.05 tamassia" } @unpublished{gt-ccurp-s-95 -, author = "A. Garg and R. Tamassia" -, title = "On the Computational Complexity of Upward and Rectilinear Planarity Testing" -, year = 1995 -, note = "Submitted to {\em SIAM Journal on Computing}" -, keywords = "graph drawing, planar upward, orthogonal" -, update = "96.09 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "On the Computational Complexity of Upward and Rectilinear Planarity Testing" +, year = 1995 +, note = "Submitted to {\em SIAM Journal on Computing}" +, keywords = "graph drawing, planar upward, orthogonal" +, update = "96.09 tamassia" } @inproceedings{gt-ccurp-95 -, author = "A. Garg and R. Tamassia" -, title = "On the Computational Complexity of Upward and Rectilinear Planarity Testing" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "286--297" -, url = "https://www.cs.brown.edu/cgc/papers/gt-ccurp-95.ps.gz" -, keywords = "graph drawing, planar, upward, rectilinear, orthogonal, NP-hardness" -, update = "97.03 tamassia, 95.01 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "On the Computational Complexity of Upward and Rectilinear Planarity Testing" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "286--297" +, url = "https://www.cs.brown.edu/cgc/papers/gt-ccurp-95.ps.gz" +, keywords = "graph drawing, planar, upward, rectilinear, orthogonal, NP-hardness" +, update = "97.03 tamassia, 95.01 tamassia" } @inproceedings{gt-pdara-94 -, author = "A. Garg and R. Tamassia" -, title = "Planar Drawings and Angular Resolution: Algorithms and Bounds" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, nickname = "ESA '94" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "12--23" -, keywords = "graph drawing, planar, straight-line, angular resolution" -, update = "95.05 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "Planar Drawings and Angular Resolution: Algorithms and Bounds" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, nickname = "ESA '94" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "12--23" +, keywords = "graph drawing, planar, straight-line, angular resolution" +, update = "95.05 tamassia" } @article{gt-upt-95 -, author = "A. Garg and R. Tamassia" -, title = "Upward Planarity Testing" -, journal = "Order" -, volume = 12 -, year = 1995 -, pages = "109--133" -, url = "https://www.cs.brown.edu/cgc/papers/gt-upt-95.ps.gz" -, keywords = "graph drawing, planar, upward, survey" -, update = "97.03 tamassia, 96.09 tamassia, 95.09 tamassia, 95.05 tamassia" +, author = "A. Garg and R. Tamassia" +, title = "Upward Planarity Testing" +, journal = "Order" +, volume = 12 +, year = 1995 +, pages = "109--133" +, url = "https://www.cs.brown.edu/cgc/papers/gt-upt-95.ps.gz" +, keywords = "graph drawing, planar, upward, survey" +, update = "97.03 tamassia, 96.09 tamassia, 95.09 tamassia, 95.05 tamassia" } @inproceedings{gtv-dc-96 -, author = "A. Garg and R. Tamassia and P. Vocca" -, title = "Drawing with Colors" -, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" -, nickname = "ESA '96" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "12--26" -, url = "https://www.cs.brown.edu/cgc/papers/gtv-dc-96.ps.gz" -, keywords = "graph drawing, 3D, straight-line" -, update = "97.03 smid+tamassia" +, author = "A. Garg and R. Tamassia and P. Vocca" +, title = "Drawing with Colors" +, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" +, nickname = "ESA '96" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "12--26" +, url = "https://www.cs.brown.edu/cgc/papers/gtv-dc-96.ps.gz" +, keywords = "graph drawing, 3D, straight-line" +, update = "97.03 smid+tamassia" } @inproceedings{gh-oaakm-94 -, author = "Naveen Garg and Dorit S. Hochbaum" -, title = "An ${O}(\log k)$ Approximation Algorithm for the $k$ Minimum Spanning Tree Problem in the Plane" -, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '94" -, year = 1994 -, pages = "432--438" -, update = "98.07 bibrelex, 97.03 agarwal, 95.01 mitchell" +, author = "Naveen Garg and Dorit S. Hochbaum" +, title = "An ${O}(\log k)$ Approximation Algorithm for the $k$ Minimum Spanning Tree Problem in the Plane" +, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '94" +, year = 1994 +, pages = "432--438" +, update = "98.07 bibrelex, 97.03 agarwal, 95.01 mitchell" } @inproceedings{gkr-paags-98 -, author = "Naveen Garg and Goran Konjevod and R. Ravi" -, title = "A Polylogarithmic Approximation Algorithm for the Group {Steiner} Problem" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "253--259" -, update = "99.07 bibrelex, 98.07 mitchell" +, author = "Naveen Garg and Goran Konjevod and R. Ravi" +, title = "A Polylogarithmic Approximation Algorithm for the Group {Steiner} Problem" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "253--259" +, update = "99.07 bibrelex, 98.07 mitchell" } @article{g-ewrq-82 -, author = "I. Gargantini" -, title = "An Effective Way to Represent Quadtrees" -, journal = "Commun. ACM" -, volume = 25 -, number = 12 -, month = dec -, year = 1982 -, pages = "905--910" -, update = "97.11 bibrelex" +, author = "I. Gargantini" +, title = "An Effective Way to Represent Quadtrees" +, journal = "Commun. ACM" +, volume = 25 +, number = 12 +, month = dec +, year = 1982 +, pages = "905--910" +, update = "97.11 bibrelex" } @article{ga-rtone-93 -, author = "I. Gargantini and H. H. Atkinson" -, title = "Ray Tracing an Octree: Numerical Evaluation of the First Intersection" -, journal = "Comput. Graph. Forum" -, volume = 12 -, number = 4 -, month = oct -, year = 1993 -, pages = "199--210" -, update = "96.01 held" +, author = "I. Gargantini and H. H. Atkinson" +, title = "Ray Tracing an Octree: Numerical Evaluation of the First Intersection" +, journal = "Comput. Graph. Forum" +, volume = 12 +, number = 4 +, month = oct +, year = 1993 +, pages = "199--210" +, update = "96.01 held" } @inproceedings{gs-tmgme-95 -, author = "Rao Garimella and Mark S. Shephard" -, title = "Tetrahedral Mesh Generation with Multiple Elements Through the Thickness" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "321--334" -, update = "96.01 samitchell" +, author = "Rao Garimella and Mark S. Shephard" +, title = "Tetrahedral Mesh Generation with Multiple Elements Through the Thickness" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "321--334" +, update = "96.01 samitchell" } @inproceedings{gh-ssqem-97 -, author = "M. Garland and P. S. Heckbert" -, title = "Surface simplification using quadric error metrics" -, booktitle = "Proc. SIGGRAPH '97" -, year = 1997 -, pages = "209--216" -, update = "98.07 orourke" +, author = "M. Garland and P. S. Heckbert" +, title = "Surface simplification using quadric error metrics" +, booktitle = "Proc. SIGGRAPH '97" +, year = 1997 +, pages = "209--216" +, update = "98.07 orourke" } @inproceedings{gbw-ivlgd-90 -, author = "B. Garlick and D. Baum and J. Winget" -, title = "Interactive viewing of large geometric databases using multiprocessor graphics workstations" -, booktitle = "SIGGRAPH '90 Course Notes: Parallel Algorithms and Architectures for 3D Image Generation" -, year = 1990 -, update = "98.07 bibrelex" +, author = "B. Garlick and D. Baum and J. Winget" +, title = "Interactive viewing of large geometric databases using multiprocessor graphics workstations" +, booktitle = "SIGGRAPH '90 Course Notes: Parallel Algorithms and Architectures for 3D Image Generation" +, year = 1990 +, update = "98.07 bibrelex" } @misc{gg-sdvpx-92 -, author = "R. J. Garnder and P. Gritzmann" -, title = "Successive determination and verification of polytopes by their x-rays" -, year = 1992 -, note = "preprint" -, update = "98.11 bibrelex" +, author = "R. J. Garnder and P. Gritzmann" +, title = "Successive determination and verification of polytopes by their x-rays" +, year = 1992 +, note = "preprint" +, update = "98.11 bibrelex" } @inproceedings{gm-eggsm-97 -, author = "M. A. Garrido and A. M{\'a}rquez" -, title = "Embedding a Graph in the Grid of a Surface with the Minimum Number of Bends is {NP-hard}" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "124--133" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "M. A. Garrido and A. M{\'a}rquez" +, title = "Embedding a Graph in the Grid of a Surface with the Minimum Number of Bends is {NP-hard}" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "124--133" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{gmpr-otp-99 -, author = "Maria Angeles Garrido and Alberto M{\'a}rquez and Jose Ramon Portillo and Pedro Reyes" -, title = "Orthogonal Triangles in the Plane" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "165--167" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Maria Angeles Garrido and Alberto M{\'a}rquez and Jose Ramon Portillo and Pedro Reyes" +, title = "Orthogonal Triangles in the Plane" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "165--167" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{gw-cipas-87 -, author = "T. Garrity and J. Warren" -, title = "On Computing the Intersection of a Pair of Algebraic Surfaces" -, journal = "Comput. Aided Geom. Design" -, volume = "??" -, year = 1987 -, update = "97.11 bibrelex" +, author = "T. Garrity and J. Warren" +, title = "On Computing the Intersection of a Pair of Algebraic Surfaces" +, journal = "Comput. Aided Geom. Design" +, volume = "??" +, year = 1987 +, update = "97.11 bibrelex" } @book{gb-amgd-92 -, author = "G. D. Garson and R. S. Biggs" -, title = "Analytic Mapping and Geographic Databases" -, publisher = "Sage Publications" -, address = "Newbury Park" -, year = 1992 -, update = "96.09 kreveld" +, author = "G. D. Garson and R. S. Biggs" +, title = "Analytic Mapping and Geographic Databases" +, publisher = "Sage Publications" +, address = "Newbury Park" +, year = 1992 +, update = "96.09 kreveld" } @inproceedings{g-saaop-92 -, author = "Bernd G{\"a}rtner" -, title = "A Subexponential Algorithm for Abstract Optimization Problems" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "464--472" -, keywords = "geometric optimization, randomized algorithm, smallest enclosing ball, distance of convex polyhedra" -, update = "94.01 smid, 93.09 matousek+milone+mitchell" +, author = "Bernd G{\"a}rtner" +, title = "A Subexponential Algorithm for Abstract Optimization Problems" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "464--472" +, keywords = "geometric optimization, randomized algorithm, smallest enclosing ball, distance of convex polyhedra" +, update = "94.01 smid, 93.09 matousek+milone+mitchell" } @techreport{g-saaop-93 -, author = "Bernd G{\"a}rtner" -, title = "A Subexponential Algorithm for Abstract Optimization Problems" -, institution = "Princeton University" -, month = feb -, year = 1993 -, comments = "DIMACS Workshop on Randomized Algorithms for Combinatorial Optimization" -, update = "93.09 milone+mitchell" +, author = "Bernd G{\"a}rtner" +, title = "A Subexponential Algorithm for Abstract Optimization Problems" +, institution = "Princeton University" +, month = feb +, year = 1993 +, comments = "DIMACS Workshop on Randomized Algorithms for Combinatorial Optimization" +, update = "93.09 milone+mitchell" } @article{g-saaop-95 -, author = "Bernd G{\"a}rtner" -, title = "A Subexponential Algorithm for Abstract Optimization Problems" -, journal = "SIAM J. Comput." -, volume = 24 -, year = 1995 -, pages = "1018--1035" -, keywords = "geometric optimization, randomized algorithm, smallest enclosing ball, distance of convex polyhedra" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "Bernd G{\"a}rtner" +, title = "A Subexponential Algorithm for Abstract Optimization Problems" +, journal = "SIAM J. Comput." +, volume = 24 +, year = 1995 +, pages = "1018--1035" +, keywords = "geometric optimization, randomized algorithm, smallest enclosing ball, distance of convex polyhedra" +, update = "96.09 agarwal, 96.05 agarwal" } @inproceedings{g-ealcc-98 -, author = "Bernd G{\"a}rtner" -, title = "Exact Arithmetic at Low Cost: {A} Case Study in Linear Programming" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "157--166" -, update = "99.07 bibrelex, 98.07 mitchell" +, author = "Bernd G{\"a}rtner" +, title = "Exact Arithmetic at Low Cost: {A} Case Study in Linear Programming" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "157--166" +, update = "99.07 bibrelex, 98.07 mitchell" } @inproceedings{g-pcpd-00 -, author = "Bernd G{\"a}rtner" -, title = "Pitfalls in Computing with Pseudorandom Determinants" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "148--155" -, update = "00.11 jones" +, author = "Bernd G{\"a}rtner" +, title = "Pitfalls in Computing with Pseudorandom Determinants" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "148--155" +, update = "00.11 jones" } @phdthesis{g-rostm-95 -, author = "B. G{\"a}rtner" -, title = "Randomized Optimization by Simplex-Type Methods" -, school = "Freie Universit{\"a}t Berlin" -, year = 1995 -, keywords = "doctoral thesis" -, update = "97.03 gaertner+salinger" +, author = "B. G{\"a}rtner" +, title = "Randomized Optimization by Simplex-Type Methods" +, school = "Freie Universit{\"a}t Berlin" +, year = 1995 +, keywords = "doctoral thesis" +, update = "97.03 gaertner+salinger" } @mastersthesis{g-ssbvc-91 -, author = "B. G{\"a}rtner" -, title = "Set Systems of Bounded {Vapnik}-{Chervonenkis} Dimension and a Relation to Arrangements" -, type = "Masters Thesis" -, school = "Fachbereich Mathematik, Freie Univ. Berlin" -, address = "Berlin, Germany" -, year = 1991 -, keywords = "masters thesis" -, update = "97.03 gaertner+salinger" +, author = "B. G{\"a}rtner" +, title = "Set Systems of Bounded {Vapnik}-{Chervonenkis} Dimension and a Relation to Arrangements" +, type = "Masters Thesis" +, school = "Fachbereich Mathematik, Freie Univ. Berlin" +, address = "Berlin, Germany" +, year = 1991 +, keywords = "masters thesis" +, update = "97.03 gaertner+salinger" } @inproceedings{gs-eegqp-00 -, author = "Bernd G{\"a}rtner and Svend Sch{\"o}nherr" -, title = "An Efficient, Exact, and Generic Quadratic Programming Solver for Geometric Optimization" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "110--118" -, update = "00.11 jones" +, author = "Bernd G{\"a}rtner and Svend Sch{\"o}nherr" +, title = "An Efficient, Exact, and Generic Quadratic Programming Solver for Geometric Optimization" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "110--118" +, update = "00.11 jones" } @inproceedings{gs-epsee-97 -, author = "B. G{\"a}rtner and S. Sch{\"o}nherr" -, title = "Exact Primitives for Smallest Enclosing Ellipses" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "430--432" -, cites = "as-rssua-93, dll-udleu-57, d-ccpac-92, gs-seefe-97t, j-episc-48, msw-sblp-92, p-cmse-82, s-bkeup-94, st-mce-80, s-ac-57, t-odsga-75, w-sedbe-91a, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "B. G{\"a}rtner and S. Sch{\"o}nherr" +, title = "Exact Primitives for Smallest Enclosing Ellipses" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "430--432" +, cites = "as-rssua-93, dll-udleu-57, d-ccpac-92, gs-seefe-97t, j-episc-48, msw-sblp-92, p-cmse-82, s-bkeup-94, st-mce-80, s-ac-57, t-odsga-75, w-sedbe-91a, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{gs-seefe-97t -, author = "B. G{\"a}rtner and S. Sch{\"o}nherr" -, title = "Smallest enclosing ellipses - fast and exact" -, type = "Technical {Report}" -, institution = "Free University Berlin" -, address = "Berlin, Germany" -, year = 1997 -, update = "98.07 bibrelex" +, author = "B. G{\"a}rtner and S. Sch{\"o}nherr" +, title = "Smallest enclosing ellipses - fast and exact" +, type = "Technical {Report}" +, institution = "Free University Berlin" +, address = "Berlin, Germany" +, year = 1997 +, update = "98.07 bibrelex" } @inproceedings{gw-lpraf-96 -, author = "Bernd G{\"a}rtner and Emo Welzl" -, title = "Linear Programming -- Randomization and Abstract Frameworks" -, booktitle = "Proc. 13th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1046 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "669--687" -, keywords = "survey paper, linear programming, randomization, abstract frameworks" -, update = "97.03 agarwal+gaertner+salinger+pocchiola" +, author = "Bernd G{\"a}rtner and Emo Welzl" +, title = "Linear Programming -- Randomization and Abstract Frameworks" +, booktitle = "Proc. 13th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1046 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "669--687" +, keywords = "survey paper, linear programming, randomization, abstract frameworks" +, update = "97.03 agarwal+gaertner+salinger+pocchiola" } @inproceedings{gw-rsgon-00 -, author = "Bernd G{\" a}rtner and Emo Welzl" -, title = "Random sampling in geometric optimization: {N}ew insights and applications" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "91--99" -, update = "00.11 smid, 00.07 agarwal" +, author = "Bernd G{\" a}rtner and Emo Welzl" +, title = "Random sampling in geometric optimization: {N}ew insights and applications" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "91--99" +, update = "00.11 smid, 00.07 agarwal" } @article{gw-vcdph-94 -, author = "B. G{\"a}rtner and Emo Welzl" -, title = "{Vapnik}-{Chervonenkis} Dimension and (Pseudo-)Hyperplane Arrangements" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "399--432" -, update = "98.03 mitchell, 97.03 gaertner+salinger" +, author = "B. G{\"a}rtner and Emo Welzl" +, title = "{Vapnik}-{Chervonenkis} Dimension and (Pseudo-)Hyperplane Arrangements" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "399--432" +, update = "98.03 mitchell, 97.03 gaertner+salinger" } @inproceedings{gz-rsakm-94 -, author = "B. G{\"a}rtner and G. Ziegler" -, title = "Randomized Simplex Algorithms on {Klee}-{Minty} Cubes" -, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1994 -, pages = "502--510" -, update = "97.03 gaertner+salinger" +, author = "B. G{\"a}rtner and G. Ziegler" +, title = "Randomized Simplex Algorithms on {Klee}-{Minty} Cubes" +, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1994 +, pages = "502--510" +, update = "97.03 gaertner+salinger" } @article{gs-capof-55 -, author = "Saul I. Gass and Thomas Saaty" -, title = "The computational algorithm for the parametric objective function" -, journal = "Naval Research Logistics" -, volume = 2 -, year = 1955 -, pages = "39--45" -, update = "97.11 bibrelex" +, author = "Saul I. Gass and Thomas Saaty" +, title = "The computational algorithm for the parametric objective function" +, journal = "Naval Research Logistics" +, volume = 2 +, year = 1955 +, pages = "39--45" +, update = "97.11 bibrelex" } @article{gl-trluo-84 -, author = "P. Gaston and T. Lozano-Perez" -, title = "Tactile recognition and localization using object models: {The} case of polyhedra on a plane" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-6" -, month = may -, year = 1984 -, pages = "257--266" -, update = "98.03 bibrelex" +, author = "P. Gaston and T. Lozano-Perez" +, title = "Tactile recognition and localization using object models: {The} case of polyhedra on a plane" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-6" +, month = may +, year = 1984 +, pages = "257--266" +, update = "98.03 bibrelex" } @incollection{g-act-88 -, author = "Joachim von zur Gathen" -, title = "Algebraic Complexity Theory" -, booktitle = "Annu. Rev. Comput. Sci." -, volume = 3 -, publisher = "Annual Reviews" -, address = "Palo Alto, CA" -, year = 1988 -, pages = "317--347" -, update = "97.07 agarwal" +, author = "Joachim von zur Gathen" +, title = "Algebraic Complexity Theory" +, booktitle = "Annu. Rev. Comput. Sci." +, volume = 3 +, publisher = "Annual Reviews" +, address = "Palo Alto, CA" +, year = 1988 +, pages = "317--347" +, update = "97.07 agarwal" } @article{g-amcmc-72 -, author = "F. Gavril" -, title = "Algorithms for Minimum Coloring, Maximum Clique, Minimum Covering by Cliques and Maximum Independent Set of a Chordal Graph" -, journal = "SIAM J. Comput." -, volume = 1 -, number = 2 -, year = 1972 -, pages = "180--187" -, update = "98.03 bibrelex" +, author = "F. Gavril" +, title = "Algorithms for Minimum Coloring, Maximum Clique, Minimum Covering by Cliques and Maximum Independent Set of a Chordal Graph" +, journal = "SIAM J. Comput." +, volume = 1 +, number = 2 +, year = 1972 +, pages = "180--187" +, update = "98.03 bibrelex" } @article{g-acag-74 -, author = "F. Gavril" -, title = "Algorithms on circular-arc graphs" -, journal = "Networks" -, volume = 4 -, year = 1974 -, pages = "357--369" -, update = "98.07 bibrelex" +, author = "F. Gavril" +, title = "Algorithms on circular-arc graphs" +, journal = "Networks" +, volume = 4 +, year = 1974 +, pages = "357--369" +, update = "98.07 bibrelex" } @inproceedings{g-sncpg-77 -, author = "F. Gavril" -, title = "Some {NP}-complete problems on graphs" -, booktitle = "Proc. 11th Conf. Inform. Sci. Syst." -, site = "Baltimore, MD" -, organization = "Johns Hopkins University" -, year = 1977 -, pages = "91--95" -, update = "98.07 bibrelex" +, author = "F. Gavril" +, title = "Some {NP}-complete problems on graphs" +, booktitle = "Proc. 11th Conf. Inform. Sci. Syst." +, site = "Baltimore, MD" +, organization = "Johns Hopkins University" +, year = 1977 +, pages = "91--95" +, update = "98.07 bibrelex" } @article{g-igsec-74 -, author = "F. Gavril" -, title = "The intersection graphs of subtrees is exactly the chordal graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 16 -, year = 1974 -, pages = "47--56" -, update = "98.11 bibrelex" +, author = "F. Gavril" +, title = "The intersection graphs of subtrees is exactly the chordal graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 16 +, year = 1974 +, pages = "47--56" +, update = "98.11 bibrelex" } @article{grr-ecvdd-00 -, author = "M. Gavrilova and H. Ratschek and J. Rokne" -, title = "Exact Computation of {Voronoi} Diagram and {Delaunay} Triangulation" -, journal = "J. Reliable Computing" -, volume = 6 -, number = 1 -, year = 2000 -, pages = "39--60" -, update = "00.11 smid, 00.07 held" +, author = "M. Gavrilova and H. Ratschek and J. Rokne" +, title = "Exact Computation of {Voronoi} Diagram and {Delaunay} Triangulation" +, journal = "J. Reliable Computing" +, volume = 6 +, number = 1 +, year = 2000 +, pages = "39--60" +, update = "00.11 smid, 00.07 held" } @inproceedings{grg-dcdac-96 -, author = "Marina Gavrilova and Jon Rokne and Dmitri Gavrilov" -, title = "Dynamic Collision Detection Algorithms in Computational Geometry" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "103--106" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Marina Gavrilova and Jon Rokne and Dmitri Gavrilov" +, title = "Dynamic Collision Detection Algorithms in Computational Geometry" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "103--106" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{g-iaspg-86 -, author = "H. Gazit" -, title = "An Improved Algorithm for Separating a Planar Graph" -, type = "Manuscript" -, institution = "Univ. Southern California" -, address = "Los Ageles, CA" -, year = 1986 -, update = "97.11 bibrelex" +, author = "H. Gazit" +, title = "An Improved Algorithm for Separating a Planar Graph" +, type = "Manuscript" +, institution = "Univ. Southern California" +, address = "Los Ageles, CA" +, year = 1986 +, update = "97.11 bibrelex" } @inproceedings{gm-psen-90 -, author = "H. Gazit and G. L. Miller" -, title = "Planar separators and the {Euclidean} norm" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, site = "Tokyo, Japan" -, organization = "Information Processing Society of Japan" -, publisher = "Springer-Verlag" -, month = aug -, year = 1990 -, update = "97.11 bibrelex" +, author = "H. Gazit and G. L. Miller" +, title = "Planar separators and the {Euclidean} norm" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, site = "Tokyo, Japan" +, organization = "Information Processing Society of Japan" +, publisher = "Springer-Verlag" +, month = aug +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{gm-eha3s-87 -, author = "P. Gburzynski and M. McLeish" -, title = "An efficient heuristic algorithm for a $3$-space $n$-partitioning problem used in polygon retrieval and non-parametric statistics" -, booktitle = "Proc. Allerton Conf." -, year = 1987 -, pages = "908--916" -, update = "98.07 bibrelex" +, author = "P. Gburzynski and M. McLeish" +, title = "An efficient heuristic algorithm for a $3$-space $n$-partitioning problem used in polygon retrieval and non-parametric statistics" +, booktitle = "Proc. Allerton Conf." +, year = 1987 +, pages = "908--916" +, update = "98.07 bibrelex" } @book{g-nivpo-71 -, author = "W. C. Gear" -, title = "Numerical Initial Value Problems in Ordinary Differential Equations" -, publisher = "Prentice Hall" -, year = 1971 -, update = "97.11 bibrelex" +, author = "W. C. Gear" +, title = "Numerical Initial Value Problems in Ordinary Differential Equations" +, publisher = "Prentice Hall" +, year = 1971 +, update = "97.11 bibrelex" } @article{get-hpfrt-89 -, author = "J. N. Gederquist and M. T. Eismann and A. M. Tai" -, title = "Holographic polar formatting and real-time optical processing of synthetic radar data" -, journal = "Appl. Optics" -, volume = 1928 -, number = 19 -, year = 1989 -, pages = "4182--4189" -, update = "97.11 bibrelex" +, author = "J. N. Gederquist and M. T. Eismann and A. M. Tai" +, title = "Holographic polar formatting and real-time optical processing of synthetic radar data" +, journal = "Appl. Optics" +, volume = 1928 +, number = 19 +, year = 1989 +, pages = "4182--4189" +, update = "97.11 bibrelex" } @article{gt-cghgt-84 -, author = "J. N. Gederquist and A. M. Tai" -, title = "Computer-generated holograms for geometric transformations" -, journal = "Appl. Optics" -, volume = 23 -, number = 18 -, year = 1984 -, pages = "3099--3104" -, update = "97.11 bibrelex" +, author = "J. N. Gederquist and A. M. Tai" +, title = "Computer-generated holograms for geometric transformations" +, journal = "Appl. Optics" +, volume = 23 +, number = 18 +, year = 1984 +, pages = "3099--3104" +, update = "97.11 bibrelex" } @inproceedings{g-cnugc-95 -, author = "Carl Van Geem" -, title = "Computation of a Non-Uniform Grid on the Configuration Space of a Robot Arm Amidst Obstacles: Intersection Problem" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "75--78" -, update = "00.03 bibrelex" +, author = "Carl Van Geem" +, title = "Computation of a Non-Uniform Grid on the Configuration Space of a Robot Arm Amidst Obstacles: Intersection Problem" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "75--78" +, update = "00.03 bibrelex" } @inproceedings{g-tfsmg-94 -, author = "Carl van Geem" -, title = "Towards a Fast Solution Method for the General Robot Motion Planning Problem Using a {Manhattan}-like Distance Function on a Non-Uniform Grid in Configuration Space" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "73--76" -, cites = "ZZZ" -, update = "00.11 smid, 00.07 icking" +, author = "Carl van Geem" +, title = "Towards a Fast Solution Method for the General Robot Motion Planning Problem Using a {Manhattan}-like Distance Function on a Non-Uniform Grid in Configuration Space" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "73--76" +, cites = "ZZZ" +, update = "00.11 smid, 00.07 icking" } @inproceedings{g-3dmud-95 -, author = "Bernhard Geiger" -, title = "{3D} {Modeling} Using the {Delaunay} Triangulation" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "V11--V12" -, keywords = "video review" -, cites = "bg-tdrcs-93, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Bernhard Geiger" +, title = "{3D} {Modeling} Using the {Delaunay} Triangulation" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "V11--V12" +, keywords = "video review" +, cites = "bg-tdrcs-93, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @techreport{g-tdmho-93b -, author = "Bernhard Geiger" -, title = "Three-dimensional modeling of human organs and its application to diagnosis and surgical planning" -, type = "Report" -, number = 2105 -, institution = "INRIA Sophia-Antipolis" -, address = "Valbonne, France" -, year = 1993 -, succeeds = "g-tdmho-93" -, update = "99.07 devillers, 94.05 devillers" +, author = "Bernhard Geiger" +, title = "Three-dimensional modeling of human organs and its application to diagnosis and surgical planning" +, type = "Report" +, number = 2105 +, institution = "INRIA Sophia-Antipolis" +, address = "Valbonne, France" +, year = 1993 +, succeeds = "g-tdmho-93" +, update = "99.07 devillers, 94.05 devillers" } @phdthesis{g-tdmho-93 -, author = "Bernhard Geiger" -, title = "Three-dimensional modeling of human organs and its application to diagnosis and surgical planning" -, type = "Th\`{e}se de Doctorat en Sciences" -, school = "Ecole Nationale Sup\'erieure des Mines de Paris" -, address = "France" -, year = 1993 -, keywords = "doctoral thesis" -, precedes = "g-tdmho-93b" -, update = "99.07 devillers, 94.05 devillers, 93.09 devillers" +, author = "Bernhard Geiger" +, title = "Three-dimensional modeling of human organs and its application to diagnosis and surgical planning" +, type = "Th\`{e}se de Doctorat en Sciences" +, school = "Ecole Nationale Sup\'erieure des Mines de Paris" +, address = "France" +, year = 1993 +, keywords = "doctoral thesis" +, precedes = "g-tdmho-93b" +, update = "99.07 devillers, 94.05 devillers, 93.09 devillers" } @book{s-5hbc-38 -, author = "{Dr. Seuss} [Theodore Seuss Geisel]" -, title = "The 500 Hats of Bartholomew Cubbins" -, publisher = "Vanguard Press" -, year = 1938 -, comments = "Early recursion [Jeff Erickson]" -, update = "01.11 orourke" +, author = "{Dr. Seuss} [Theodore Seuss Geisel]" +, title = "The 500 Hats of Bartholomew Cubbins" +, publisher = "Vanguard Press" +, year = 1938 +, comments = "Early recursion [Jeff Erickson]" +, update = "01.11 orourke" } @book{s-chcb-58 -, author = "{Dr. Seuss} [Theodore Seuss Geisel]" -, title = "The Cat in the Hat Comes Back" -, series = "Beginner Books" -, publisher = "Random House" -, year = 1958 -, comments = "Early recursion [Jeff Erickson]" -, update = "01.11 orourke" +, author = "{Dr. Seuss} [Theodore Seuss Geisel]" +, title = "The Cat in the Hat Comes Back" +, series = "Beginner Books" +, publisher = "Random House" +, year = 1958 +, comments = "Early recursion [Jeff Erickson]" +, update = "01.11 orourke" } @incollection{g-rgtpm-63 -, author = "H. Gelernter" -, title = "Realization of a geometry theorem proving machine" -, editor = "E. A. Feigenbaum and J. E. Feldman" -, booktitle = "Computers and Thought" -, publisher = "McGraw-Hill" -, address = "New York, NY" -, year = 1963 -, update = "98.03 bibrelex" +, author = "H. Gelernter" +, title = "Realization of a geometry theorem proving machine" +, editor = "E. A. Feigenbaum and J. E. Feldman" +, booktitle = "Computers and Thought" +, publisher = "McGraw-Hill" +, address = "New York, NY" +, year = 1963 +, update = "98.03 bibrelex" } @book{gkz-drmd-94 -, author = "I. M. Gelfand and M. M. Kapranov and A. V. Zelevinski" -, title = "Discriminants, Resultants and Mulidimensional Determinants" -, publisher = "Birkh{\"a}user" -, address = "Boston, MA" -, year = 1994 -, update = "97.11 bibrelex" +, author = "I. M. Gelfand and M. M. Kapranov and A. V. Zelevinski" +, title = "Discriminants, Resultants and Mulidimensional Determinants" +, publisher = "Birkh{\"a}user" +, address = "Boston, MA" +, year = 1994 +, update = "97.11 bibrelex" } @inproceedings{ggt-tdsdp-98 -, author = "Natasha Gelfand and Michael T. Goodrich and Roberto Tamassia" -, title = "Teaching Data Structure Design Patterns" -, booktitle = "Proc. ACM Symp. Computer Science Education" -, year = 1998 -, update = "98.11 tamassia" +, author = "Natasha Gelfand and Michael T. Goodrich and Roberto Tamassia" +, title = "Teaching Data Structure Design Patterns" +, booktitle = "Proc. ACM Symp. Computer Science Education" +, year = 1998 +, update = "98.11 tamassia" } @inproceedings{gt-apogd-98 -, author = "Natasha Gelfand and Roberto Tamassia" -, title = "Algorithmic Patterns for Orthogonal Graph Drawing" -, editor = "S. H. Whitesides" -, booktitle = "Graph Drawing (Proc. GD~'98)" -, series = "Lecture Notes Comput. Sci." -, volume = 1547 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "138--152" -, keywords = "graph drawing, planar, orthogonal, system" -, update = "99.07 vismara, 99.03 vismara, 98.11 tamassia" +, author = "Natasha Gelfand and Roberto Tamassia" +, title = "Algorithmic Patterns for Orthogonal Graph Drawing" +, editor = "S. H. Whitesides" +, booktitle = "Graph Drawing (Proc. GD~'98)" +, series = "Lecture Notes Comput. Sci." +, volume = 1547 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "138--152" +, keywords = "graph drawing, planar, orthogonal, system" +, update = "99.07 vismara, 99.03 vismara, 98.11 tamassia" } @book{g-vcem-77 -, title = "The {VNR} Concise Encyclopedia of Mathematics" -, editor = "Gellert" -, publisher = "Van Nostrand Reinhold" -, year = 1977 -, update = "98.03 bibrelex" +, title = "The {VNR} Concise Encyclopedia of Mathematics" +, editor = "Gellert" +, publisher = "Van Nostrand Reinhold" +, year = 1977 +, update = "98.03 bibrelex" } @book{gghkk-vcem-89 -, author = "W. Gellert and S. Gottwald and M. Hellwich and H. K{\"a}stner and H. K{\"u}stner" -, title = "The {VNR} Concise Encyclopedia of Mathematics" -, edition = "2nd" -, publisher = "Van Nostrand Reinhold" -, address = "New York" -, year = 1989 -, update = "98.11 bibrelex" +, author = "W. Gellert and S. Gottwald and M. Hellwich and H. K{\"a}stner and H. K{\"u}stner" +, title = "The {VNR} Concise Encyclopedia of Mathematics" +, edition = "2nd" +, publisher = "Van Nostrand Reinhold" +, address = "New York" +, year = 1989 +, update = "98.11 bibrelex" } @article{gd-bsrsc-95 -, author = "S. M. Gelston and D. Dutta" -, title = "Boundary Surface Recovery from Skeleton Curves and Surfaces" -, journal = "Comput. Aided Geom. Design" -, volume = 12 -, number = 1 -, month = feb -, year = 1995 -, pages = "27--51" -, update = "97.07 held" +, author = "S. M. Gelston and D. Dutta" +, title = "Boundary Surface Recovery from Skeleton Curves and Surfaces" +, journal = "Comput. Aided Geom. Design" +, volume = 12 +, number = 1 +, month = feb +, year = 1995 +, pages = "27--51" +, update = "97.07 held" } @article{gp-1stp-87 -, author = "G. Georgakopoulos and C. H. Papadimitriou" -, title = "The $1$-{Steiner} tree problem" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "122--130" +, author = "G. Georgakopoulos and C. H. Papadimitriou" +, title = "The $1$-{Steiner} tree problem" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "122--130" } @article{g-ndrfe-73 -, author = "J. A. George" -, title = "Nested dissection of a regular finite element mesh" -, journal = "SIAM J. Numer. Anal." -, volume = 10 -, year = 1973 -, pages = "345--363" -, update = "98.03 bibrelex" +, author = "J. A. George" +, title = "Nested dissection of a regular finite element mesh" +, journal = "SIAM J. Numer. Anal." +, volume = 10 +, year = 1973 +, pages = "345--363" +, update = "98.03 bibrelex" } @book{gl-cslsp-81 -, author = "J. A. George and J. W. Liu" -, title = "Computer Solution of Large Sparse Positive Definite Systems" -, publisher = "Prentice Hall" -, year = 1981 -, update = "97.11 bibrelex" +, author = "J. A. George and J. W. Liu" +, title = "Computer Solution of Large Sparse Positive Definite Systems" +, publisher = "Prentice Hall" +, year = 1981 +, update = "97.11 bibrelex" } @book{gb-tdmae-97 -, author = "Paul-Louis George and Houman Borouchaki" -, title = "Triangulation de {Delaunay} et maillage. Applications aux \'el\'ements finis" -, publisher = "Hermes" -, address = "Paris, France" -, year = 1997 -, update = "00.03 devillers" +, author = "Paul-Louis George and Houman Borouchaki" +, title = "Triangulation de {Delaunay} et maillage. Applications aux \'el\'ements finis" +, publisher = "Hermes" +, address = "Paris, France" +, year = 1997 +, update = "00.03 devillers" } @article{ghs-amgsb-91 -, author = "P. L. George and F. Hecht and E. Saltel" -, title = "Automatic Mesh Generator With Specified Boundary" -, journal = "Computer Methods in Applied Mechanics and Engineering" -, volume = 92 -, number = 3 -, month = nov -, year = 1991 -, pages = "269--288" -, keywords = "finite element mesh generation, automatic mesh generators, finite element boundary fitting, two-dimensional domain meshing, three-dimensional domain meshing, Voronoi's theory" -, abstract = "For the purpose of finite element computation for 2D - or 3D geometry, one needs an appropriate mesh of the - considered domain. A class of fully automatic methods, - derived from Voronoi's theory, is suitable for - generating a mesh of any shape via a set of points - describing the geometry. Such methods, providing - triangles in 2D and tetrahedra in 3D, can be seen, - after an adequate initialization, as the merger of each - given point in an existing mesh using an updating - process. Unfortunately, this mesh, which contains all - the given points, does not contain, in general, the - edges (or the faces) of the boundary which are the - natural data to be satisfied. The aim of this paper is, - after a brief survey of the different steps of the - above-mentioned method, to point out the problem of the - exact fitting of the given boundary and to present a - method which guarantees this crucial property. (Edited - author abstract) 18 Refs." +, author = "P. L. George and F. Hecht and E. Saltel" +, title = "Automatic Mesh Generator With Specified Boundary" +, journal = "Computer Methods in Applied Mechanics and Engineering" +, volume = 92 +, number = 3 +, month = nov +, year = 1991 +, pages = "269--288" +, keywords = "finite element mesh generation, automatic mesh generators, finite element boundary fitting, two-dimensional domain meshing, three-dimensional domain meshing, Voronoi's theory" +, abstract = "For the purpose of finite element computation for 2D + or 3D geometry, one needs an appropriate mesh of the + considered domain. A class of fully automatic methods, + derived from Voronoi's theory, is suitable for + generating a mesh of any shape via a set of points + describing the geometry. Such methods, providing + triangles in 2D and tetrahedra in 3D, can be seen, + after an adequate initialization, as the merger of each + given point in an existing mesh using an updating + process. Unfortunately, this mesh, which contains all + the given points, does not contain, in general, the + edges (or the faces) of the boundary which are the + natural data to be satisfied. The aim of this paper is, + after a brief survey of the different steps of the + above-mentioned method, to point out the problem of the + exact fitting of the given boundary and to present a + method which guarantees this crucial property. (Edited + author abstract) 18 Refs." } @article{ghv-cipvt-91 -, author = "P. L. George and F. Hecht and M. G. Vallet" -, title = "Creation Of Internal Points In {Voronoi's} Type Method. Control Adaptation" -, journal = "Advances in Engineering Software and Workstations" -, volume = 13 -, number = "5--6" -, month = sep -, year = 1991 -, pages = "303--312" -, keywords = "Voronoi's method, control adaptation, mesh generation, finite element automatic meshes, isotropic and anisotropic meshes" -, annote = "Inside flip insertion. Extra points added - adaptively." -, abstract = "Devoted to mesh generation based upon a variant of the - Delaunay-Voronoi type of method, this paper briefly - recalls the different steps of such a process with - special attention paid to the process concerning the - creation of internal points. A general background is - introduced which makes the control and the adaptation - of the meshes so created according to some special - specifications possible both for 2D and 3D situations. - (Author abstract) 16 Refs." +, author = "P. L. George and F. Hecht and M. G. Vallet" +, title = "Creation Of Internal Points In {Voronoi's} Type Method. Control Adaptation" +, journal = "Advances in Engineering Software and Workstations" +, volume = 13 +, number = "5--6" +, month = sep +, year = 1991 +, pages = "303--312" +, keywords = "Voronoi's method, control adaptation, mesh generation, finite element automatic meshes, isotropic and anisotropic meshes" +, annote = "Inside flip insertion. Extra points added + adaptively." +, abstract = "Devoted to mesh generation based upon a variant of the + Delaunay-Voronoi type of method, this paper briefly + recalls the different steps of such a process with + special attention paid to the process concerning the + creation of internal points. A general background is + introduced which makes the control and the adaptation + of the meshes so created according to some special + specifications possible both for 2D and 3D situations. + (Author abstract) 16 Refs." } @article{gh-dmcpd-92 -, author = "P. L. George and F. Hermeline" -, title = "Delaunay's Mesh of a Convex Polyhedron In Dimension $d$. Application To Arbitrary Polyhedra" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 33 -, number = 5 -, month = apr -, year = 1992 -, pages = "975--995" -, keywords = "Delaunay triangulation, mesh generation, polyhedra" -, annote = "Watson's in arbitrary dimensions. Hybrid approach for - robustness -- calculation of simplex volumes is done - exactly but not cc tests. Result is therefore - guaranteed to be a valid mesh." -, abstract = "This paper presents a method for creating a Delaunay - triangulation connected to a set of specified points. - The theoretical aspect is recalled for an arbitrary - dimension and the method is discussed in order to - derive a practical approach, valid for dimensions 2 and - 3, which is simple, robust and well adapted to - computation. Convex polyhedral and arbitrary polyhedral - situations are introduced. (Author abstract) 22 Refs." +, author = "P. L. George and F. Hermeline" +, title = "Delaunay's Mesh of a Convex Polyhedron In Dimension $d$. Application To Arbitrary Polyhedra" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 33 +, number = 5 +, month = apr +, year = 1992 +, pages = "975--995" +, keywords = "Delaunay triangulation, mesh generation, polyhedra" +, annote = "Watson's in arbitrary dimensions. Hybrid approach for + robustness -- calculation of simplex volumes is done + exactly but not cc tests. Result is therefore + guaranteed to be a valid mesh." +, abstract = "This paper presents a method for creating a Delaunay + triangulation connected to a set of specified points. + The theoretical aspect is recalled for an arbitrary + dimension and the method is discussed in order to + derive a practical approach, valid for dimensions 2 and + 3, which is simple, robust and well adapted to + computation. Convex polyhedral and arbitrary polyhedral + situations are introduced. (Author abstract) 22 Refs." } @inproceedings{gs-cedsb-96 -, author = "Alexandros Gerbessiotis and Constantinos Siniolakis" -, title = "Communication Efficient Data Structures on the BSP Model with Applications in Computational Geometry" -, booktitle = "Proceedings of EUROPAR'96" -, month = aug -, year = 1996 -, keywords = "BSP Model, Data Structures" -, update = "96.09 orourke" +, author = "Alexandros Gerbessiotis and Constantinos Siniolakis" +, title = "Communication Efficient Data Structures on the BSP Model with Applications in Computational Geometry" +, booktitle = "Proceedings of EUROPAR'96" +, month = aug +, year = 1996 +, keywords = "BSP Model, Data Structures" +, update = "96.09 orourke" } @article{gv-dbspa-94 -, author = "A. V. Gerbessiotis and L. G. Valiant" -, title = "Direct bulk-synchronous parallel algorithms" -, journal = "J. Parallel Distrib. Comput." -, volume = 22 -, year = 1994 -, pages = "251--267" -, update = "96.09 orourke" +, author = "A. V. Gerbessiotis and L. G. Valiant" +, title = "Direct bulk-synchronous parallel algorithms" +, journal = "J. Parallel Distrib. Comput." +, volume = 22 +, year = 1994 +, pages = "251--267" +, update = "96.09 orourke" } @article{gg-rtp-67 -, author = "L. Gerencs{\'e}r and A. Gy{\'a}rf{\'a}s" -, title = "On {Ramsey}-type problems" -, journal = "Annales Universitatis Scientarium Budapestinensis Roland E{\H o}tv{\H o}s, Sectio Mathematica" -, volume = 10 -, year = 1967 -, pages = "167--170" -, update = "97.11 bibrelex" +, author = "L. Gerencs{\'e}r and A. Gy{\'a}rf{\'a}s" +, title = "On {Ramsey}-type problems" +, journal = "Annales Universitatis Scientarium Budapestinensis Roland E{\H o}tv{\H o}s, Sectio Mathematica" +, volume = 10 +, year = 1967 +, pages = "167--170" +, update = "97.11 bibrelex" } @book{gg-vqsc-91 -, author = "A. Gersho and R. M. Gray" -, title = "Vector Quantization and Signal Compression" -, publisher = "Kluwer Academic Publishers" -, year = 1991 -, update = "98.03 bibrelex" +, author = "A. Gersho and R. M. Gray" +, title = "Vector Quantization and Signal Compression" +, publisher = "Kluwer Academic Publishers" +, year = 1991 +, update = "98.03 bibrelex" } @article{g-dpnet-84 -, author = "J. L. Gerver" -, title = "The dissection of a polygon into nearly equilateral triangles" -, journal = "Geom. Dedicata" -, volume = 16 -, year = 1984 -, pages = "93--106" -, update = "97.11 bibrelex" +, author = "J. L. Gerver" +, title = "The dissection of a polygon into nearly equilateral triangles" +, journal = "Geom. Dedicata" +, volume = 16 +, year = 1984 +, pages = "93--106" +, update = "97.11 bibrelex" } @book{gb-msp-78 -, author = "A. Getis and B. Boots" -, title = "Models of Spatial Processes" -, publisher = "Cambridge University Press" -, year = 1978 -, update = "97.11 bibrelex" +, author = "A. Getis and B. Boots" +, title = "Models of Spatial Processes" +, publisher = "Cambridge University Press" +, year = 1978 +, update = "97.11 bibrelex" } @incollection{g-frtuc-89 -, author = "P. Getto" -, title = "Fast Ray Tracing of Unevaluated Constructive Solid Geometry Models" -, editor = "R. A. Earnshaw and B. Wyvill" -, booktitle = "New Advances in Computer Graphics: Proc. of Computer Graphics International '89" -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "563--578" -, update = "93.09 goodrich" +, author = "P. Getto" +, title = "Fast Ray Tracing of Unevaluated Constructive Solid Geometry Models" +, editor = "R. A. Earnshaw and B. Wyvill" +, booktitle = "New Advances in Computer Graphics: Proc. of Computer Graphics International '89" +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "563--578" +, update = "93.09 goodrich" } @inproceedings{g-cbnnn-94 -, author = "N. H. Getz" -, title = "Control of balance for a nonlinear nonholonomic nonminimum-phase model of a bicycle" -, booktitle = "American Control Conference" -, site = "Baltimore, MD" -, organization = "American Automatic Control Council" -, month = jun -, year = 1994 -, update = "97.11 bibrelex" +, author = "N. H. Getz" +, title = "Control of balance for a nonlinear nonholonomic nonminimum-phase model of a bicycle" +, booktitle = "American Control Conference" +, site = "Baltimore, MD" +, organization = "American Automatic Control Council" +, month = jun +, year = 1994 +, update = "97.11 bibrelex" } @phdthesis{g-eappv-89 -, author = "L. Gewali" -, title = "Efficient Algorithms for Path Planning and Visibility Problems" -, type = "Ph.{D}. Dissertation" -, school = "Computer Science, Univ. of Texas at Dallas" -, month = aug -, year = 1989 -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "L. Gewali" +, title = "Efficient Algorithms for Path Planning and Visibility Problems" +, type = "Ph.{D}. Dissertation" +, school = "Computer Science, Univ. of Texas at Dallas" +, month = aug +, year = 1989 +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @unpublished{g-cscvp-93 -, author = "L. Gewali" -, title = "On Computing Stair-Case Visibility Polygon" -, year = 1993 -, note = "to appear in Proc. Vision Geometry {II} (SPIE)" -, precedes = "gg-cscvp-93" -, update = "98.11 bibrelex" +, author = "L. Gewali" +, title = "On Computing Stair-Case Visibility Polygon" +, year = 1993 +, note = "to appear in Proc. Vision Geometry {II} (SPIE)" +, precedes = "gg-cscvp-93" +, update = "98.11 bibrelex" } @inproceedings{g-mmvp-93 -, author = "L. Gewali" -, title = "On minimum and maximum visibility problem" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "240--245" -, cites = "c-tsplt-90i, ea-lacvp-81, g-cscvp-93, fm-tspep-84, gkn-copss-92, gn-cgopp-93, ha-gmps-92, ll-ccagp-86, l-vsp-83, mrs-copsp-89, nt-opg-91, o-agta-87, rc-csopm-87, t-cm-88, s-rrag-92, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "L. Gewali" +, title = "On minimum and maximum visibility problem" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "240--245" +, cites = "c-tsplt-90i, ea-lacvp-81, g-cscvp-93, fm-tspep-84, gkn-copss-92, gn-cgopp-93, ha-gmps-92, ll-ccagp-86, l-vsp-83, mrs-copsp-89, nt-opg-91, o-agta-87, rc-csopm-87, t-cm-88, s-rrag-92, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{g-pgiop-96 -, author = "L. Gewali" -, title = "Placing guards inside orthogonal polygons" -, journal = "Inform. Sci." -, volume = 88 -, year = 1996 -, pages = "1--14" -, update = "97.07 gewali" +, author = "L. Gewali" +, title = "Placing guards inside orthogonal polygons" +, journal = "Inform. Sci." +, volume = 88 +, year = 1996 +, pages = "1--14" +, update = "97.07 gewali" } @inproceedings{g-rssp-94 -, author = "L. Gewali" -, title = "Recognizing S-Star Polygons" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "183--188" -, cites = "a-eafvp-85, bt-gcaim-92, ea-lacvp-81, fm-tspep-84, gg-cscvp-93, gn-cgopp-93, ha-gmps-92, o-agta-87, ps-cgi-85, s-rrag-92, srw-gsv-cccg-91, sw-gkph-93, t-cm-88, lp-oafkp-79, mrs-copsp-89, rc-csopm-87, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "L. Gewali" +, title = "Recognizing S-Star Polygons" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "183--188" +, cites = "a-eafvp-85, bt-gcaim-92, ea-lacvp-81, fm-tspep-84, gg-cscvp-93, gn-cgopp-93, ha-gmps-92, o-agta-87, ps-cgi-85, s-rrag-92, srw-gsv-cccg-91, sw-gkph-93, t-cm-88, lp-oafkp-79, mrs-copsp-89, rc-csopm-87, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{g-rssp-95 -, author = "L. Gewali" -, title = "Recognizing $s$-star polygons" -, journal = "Pattern Recogn." -, volume = 28 -, year = 1995 -, pages = "1019--1032" -, update = "97.07 gewali" +, author = "L. Gewali" +, title = "Recognizing $s$-star polygons" +, journal = "Pattern Recogn." +, volume = 28 +, year = 1995 +, pages = "1019--1032" +, update = "97.07 gewali" } @inproceedings{gg-cscvp-93 -, author = "L. Gewali and D. Glasser" -, title = "On Computing Stair-Case Visibility Polygon" -, booktitle = "Proc. of the 1993 Systems Science Conf." -, site = "Las Vegas" -, year = 1993 -, succeeds = "g-cscvp-93" -, update = "98.11 bibrelex" +, author = "L. Gewali and D. Glasser" +, title = "On Computing Stair-Case Visibility Polygon" +, booktitle = "Proc. of the 1993 Systems Science Conf." +, site = "Las Vegas" +, year = 1993 +, succeeds = "g-cscvp-93" +, update = "98.11 bibrelex" } @article{gkn-copss-92 -, author = "L. Gewali and Mark Keil and S. Ntafos" -, title = "On covering orthogonal polygons with star-shaped polygons" -, journal = "Inform. Sci." -, volume = 65 -, year = 1992 -, pages = "45--63" -, update = "97.07 gewali" +, author = "L. Gewali and Mark Keil and S. Ntafos" +, title = "On covering orthogonal polygons with star-shaped polygons" +, journal = "Inform. Sci." +, volume = 65 +, year = 1992 +, pages = "45--63" +, update = "97.07 gewali" } @inproceedings{gmmn-pp0wr-88 -, author = "L. Gewali and A. Meng and Joseph S. B. Mitchell and S. Ntafos" -, title = "Path planning in $0/1/\infty$ weighted regions with applications" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "266--278" -, keywords = "maximum concealment, shortest paths, Voronoi diagrams, continuous Dijkstra, visibility" -, precedes = "gmmn-pp0wr-90" -, cites = "aaghi-vpses-85, aai-spbts-87, cr-nlbtr-87, cn-owr-88, cn-wrsp-87, ea-lacvp-81, ft-fhtu-84, gm-osacv-87, l-prp-78, lc-pgdr-85, m-psp-86, m-aaspt-88, m-spozc-87, m-mcp-, m-mfpd-88, mmp-dgp-87, mp-wrp-85, o-agta-87, rs-spesp-85, r-naspa-86, ss-spps-86, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "L. Gewali and A. Meng and Joseph S. B. Mitchell and S. Ntafos" +, title = "Path planning in $0/1/\infty$ weighted regions with applications" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "266--278" +, keywords = "maximum concealment, shortest paths, Voronoi diagrams, continuous Dijkstra, visibility" +, precedes = "gmmn-pp0wr-90" +, cites = "aaghi-vpses-85, aai-spbts-87, cr-nlbtr-87, cn-owr-88, cn-wrsp-87, ea-lacvp-81, ft-fhtu-84, gm-osacv-87, l-prp-78, lc-pgdr-85, m-psp-86, m-aaspt-88, m-spozc-87, m-mcp-, m-mfpd-88, mmp-dgp-87, mp-wrp-85, o-agta-87, rs-spesp-85, r-naspa-86, ss-spps-86, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{gmmn-pp0wr-90 -, author = "L. Gewali and A. Meng and Joseph S. B. Mitchell and S. Ntafos" -, title = "Path planning in $0/1/\infty$ weighted regions with applications" -, journal = "ORSA J. Comput." -, volume = 2 -, number = 3 -, year = 1990 -, pages = "253--272" -, keywords = "maximum concealment, shortest paths, Voronoi diagrams, continuous Dijkstra, visibility" -, succeeds = "gmmn-pp0wr-88" -, update = "00.11 smid, 00.07 icking, 98.03 mitchell" +, author = "L. Gewali and A. Meng and Joseph S. B. Mitchell and S. Ntafos" +, title = "Path planning in $0/1/\infty$ weighted regions with applications" +, journal = "ORSA J. Comput." +, volume = 2 +, number = 3 +, year = 1990 +, pages = "253--272" +, keywords = "maximum concealment, shortest paths, Voronoi diagrams, continuous Dijkstra, visibility" +, succeeds = "gmmn-pp0wr-88" +, update = "00.11 smid, 00.07 icking, 98.03 mitchell" } @techreport{gnt-pppvo-89 -, author = "L. Gewali and S. Ntafos and I. G. Tollis" -, title = "Path Planning in the Presence of Vertical Obstacles" -, type = "Technical Report" -, institution = "Computer Science, University of Texas at Dallas" -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "L. Gewali and S. Ntafos and I. G. Tollis" +, title = "Path Planning in the Presence of Vertical Obstacles" +, type = "Technical Report" +, institution = "Computer Science, University of Texas at Dallas" +, year = 1989 +, update = "93.09 milone+mitchell" } @article{gs-cewrp-94 -, author = "L. Gewali and I. Stojmenovi{\'c}" -, title = "Computing external watchman routes on {PRAM}, {BSR}, and interconnection models of parallel computation" -, journal = "Parallel Processing Letters" -, volume = 4 -, year = 1994 -, pages = "83--93" -, update = "97.07 gewali" +, author = "L. Gewali and I. Stojmenovi{\'c}" +, title = "Computing external watchman routes on {PRAM}, {BSR}, and interconnection models of parallel computation" +, journal = "Parallel Processing Letters" +, volume = 4 +, year = 1994 +, pages = "83--93" +, update = "97.07 gewali" } @techreport{gv-oacmg-92 -, author = "L. Gewali and R. Venkatasubramanian" -, title = "An Optimum Algorithm for Computing Maximum Grazing Area" -, type = "Technical Report" -, number = "CS-92-023" -, institution = "Dept. of Comput. Sci., UNLV" -, address = "Las Vegas, Nevada" -, month = jun -, year = 1992 -, update = "98.11 bibrelex" +, author = "L. Gewali and R. Venkatasubramanian" +, title = "An Optimum Algorithm for Computing Maximum Grazing Area" +, type = "Technical Report" +, number = "CS-92-023" +, institution = "Dept. of Comput. Sci., UNLV" +, address = "Las Vegas, Nevada" +, month = jun +, year = 1992 +, update = "98.11 bibrelex" } @article{gn-cgopp-93 -, author = "L. P. Gewali and S. Ntafos" -, title = "Covering grids and orthogonal polygons with periscope guards" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, year = 1993 -, pages = "309--334" -, update = "96.09 devillers" +, author = "L. P. Gewali and S. Ntafos" +, title = "Covering grids and orthogonal polygons with periscope guards" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, year = 1993 +, pages = "309--334" +, update = "96.09 devillers" } @inproceedings{gn-mcgop-90 -, author = "L. P. Gewali and S. Ntafos" -, title = "Minimum covers for grids and orthogonal polygons by periscope guards" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "358--361" -, cites = "cr-dduap-87, k-mchco-86, mrs-copsp-88, n-gwg-86, o-agta-87, st-gprp-88, ZZZ" -, update = "98.07 bibrelex" +, author = "L. P. Gewali and S. Ntafos" +, title = "Minimum covers for grids and orthogonal polygons by periscope guards" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "358--361" +, cites = "cr-dduap-87, k-mchco-86, mrs-copsp-88, n-gwg-86, o-agta-87, st-gprp-88, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{gn-wrppc-95 -, author = "Laxmi P. Gewali and Simeon Ntafos" -, title = "Watchman Routes in the Presence of a Pair of Convex Polygons" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "127--132" -, update = "95.09 jones" +, author = "Laxmi P. Gewali and Simeon Ntafos" +, title = "Watchman Routes in the Presence of a Pair of Convex Polygons" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "127--132" +, update = "95.09 jones" } @inproceedings{g-cmvsp-98 -, author = "S. Ghali" -, title = "Computation and Maintenance of Visibility and Shadows in the Plane" -, booktitle = "Sixth Int. Conf. in Central Europe on Computer Graphics and Visualization, WSCG '98" -, month = feb -, year = 1998 -, pages = "117--124" -, url = "http://www.dgp.toronto.edu/~ghali/papers/wscg98.ps.gz" -, keywords = "visibility, shadows, dynamic algorithms, class hierarchy" -, update = "98.03 ghali" +, author = "S. Ghali" +, title = "Computation and Maintenance of Visibility and Shadows in the Plane" +, booktitle = "Sixth Int. Conf. in Central Europe on Computer Graphics and Visualization, WSCG '98" +, month = feb +, year = 1998 +, pages = "117--124" +, url = "http://www.dgp.toronto.edu/~ghali/papers/wscg98.ps.gz" +, keywords = "visibility, shadows, dynamic algorithms, class hierarchy" +, update = "98.03 ghali" } @inproceedings{gs-iuvms-96 -, author = "Sherif Ghali and A. James Stewart" -, title = "Incremental update of the visibility map as seen by a moving viewpoint in two dimensions" -, booktitle = "Seventh International Eurographics Workshop on Computer Animation and Simulation" -, month = aug -, year = 1996 -, pages = "1--11" -, update = "98.03 mitchell" +, author = "Sherif Ghali and A. James Stewart" +, title = "Incremental update of the visibility map as seen by a moving viewpoint in two dimensions" +, booktitle = "Seventh International Eurographics Workshop on Computer Animation and Simulation" +, month = aug +, year = 1996 +, pages = "1--11" +, update = "98.03 mitchell" } @inproceedings{gs-mssvm-96 -, author = "Sherif Ghali and A. James Stewart" -, title = "Maintenance of the set of segments visible from a moving viewpoint in two dimensions" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V3--V4" -, cites = "bdeg-vmpv-90, gm-osacv-87, mn-lpcgc-95, ol-dmcp-80, ow-nmcvg-88, p-gfr-90, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Sherif Ghali and A. James Stewart" +, title = "Maintenance of the set of segments visible from a moving viewpoint in two dimensions" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V3--V4" +, cites = "bdeg-vmpv-90, gm-osacv-87, mn-lpcgc-95, ol-dmcp-80, ow-nmcvg-88, p-gfr-90, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{ggr-ngptd-87 -, author = "G. Ghione and R. D. Graglia and C. Rosati" -, title = "New General-Purpose Two-Dimensional Mesh Generator For Finite Elements, Generalized Finite Differences, And Moment Method Applications" -, journal = "IEEE Trans. Magn." -, volume = 24 -, number = 1 -, month = jan -, year = 1987 -, pages = "307--310" -, keywords = "2-d mesh generator, finite elements, generalized finite differences, moment method" -, annote = "Radial sweep for initial triangulation then switching - as in Mirante." -, abstract = "Numerical techniques such as finite elements, - generalized finite differences and moment method for - the solution of two-dimensional-field boundary-value - problems pose different constraints as far as the - discretization of the solution domain is concerned. A - general-purpose, two- dimensional grid generator is - described that produces region triangularizations well - suited to each of the aforementioned methods. The - triangularization is based on the radial sweep - algorithm, which was developed by A. Mirante and N. - Weingarten (1982) for solving topological modelling - problems. Some application results are presented. 13 - refs." +, author = "G. Ghione and R. D. Graglia and C. Rosati" +, title = "New General-Purpose Two-Dimensional Mesh Generator For Finite Elements, Generalized Finite Differences, And Moment Method Applications" +, journal = "IEEE Trans. Magn." +, volume = 24 +, number = 1 +, month = jan +, year = 1987 +, pages = "307--310" +, keywords = "2-d mesh generator, finite elements, generalized finite differences, moment method" +, annote = "Radial sweep for initial triangulation then switching + as in Mirante." +, abstract = "Numerical techniques such as finite elements, + generalized finite differences and moment method for + the solution of two-dimensional-field boundary-value + problems pose different constraints as far as the + discretization of the solution domain is concerned. A + general-purpose, two- dimensional grid generator is + described that produces region triangularizations well + suited to each of the aforementioned methods. The + triangularization is based on the radial sweep + algorithm, which was developed by A. Mirante and N. + Weingarten (1982) for solving topological modelling + problems. Some application results are presented. 13 + refs." } @article{gkpt-csmsm-93 -, author = "A. Ghos and J. Kowalcyk and M. Peterson and A. Treasurywala" -, title = "Conformational searching methods for small molecules: {I} study of the sybyl search method" -, journal = "J. Comput. Chemistry" -, volume = 14 -, number = 9 -, year = 1993 -, pages = "1050--1065" -, update = "98.07 bibrelex" +, author = "A. Ghos and J. Kowalcyk and M. Peterson and A. Treasurywala" +, title = "Conformational searching methods for small molecules: {I} study of the sybyl search method" +, journal = "J. Comput. Chemistry" +, volume = 14 +, number = 9 +, year = 1993 +, pages = "1050--1065" +, update = "98.07 bibrelex" } @phdthesis{g-ctfsr-86 -, author = "P. K. Ghosh" -, title = "A Computational Theoretic Framework for Shape Representation and Analysis using the {Minkowski} Addition and Decomposition Operators" -, school = "Tata Institute of Fundamental Research" -, address = "Bombay" -, year = 1986 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "P. K. Ghosh" +, title = "A Computational Theoretic Framework for Shape Representation and Analysis using the {Minkowski} Addition and Decomposition Operators" +, school = "Tata Institute of Fundamental Research" +, address = "Bombay" +, year = 1986 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @incollection{g-vgmo-91 -, author = "P. K. Ghosh" -, title = "Vision, geometry, and {Minkowski} operators" -, booktitle = "Contemporary Mathematics" -, volume = 119 -, year = 1991 -, pages = "63--83" -, update = "98.07 bibrelex, 96.05 ramkumar" +, author = "P. K. Ghosh" +, title = "Vision, geometry, and {Minkowski} operators" +, booktitle = "Contemporary Mathematics" +, volume = 119 +, year = 1991 +, pages = "63--83" +, update = "98.07 bibrelex, 96.05 ramkumar" } @inproceedings{gh-mmtdo-93 -, author = "P. K. Ghosh and R. M. Haralick" -, title = "Mathematical morphology of three-dimensional objects: the slope diagrammatic approach" -, booktitle = "Proc. SPIE" -, year = 1993 -, pages = "2--13" -, update = "96.05 ramkumar" +, author = "P. K. Ghosh and R. M. Haralick" +, title = "Mathematical morphology of three-dimensional objects: the slope diagrammatic approach" +, booktitle = "Proc. SPIE" +, year = 1993 +, pages = "2--13" +, update = "96.05 ramkumar" } @techreport{gm-ctfma-85 -, author = "P. K. Ghosh and S. P. Mudur" -, title = "A computational theoretic framework for {Minkowski} addition and decomposition of boundary represented regions" -, type = "Report" -, number = "??" -, institution = "National Centre Softw. Develop. Comput. Tech., Tata Inst. Fund. Res." -, address = "Bombay, India" -, year = 1985 +, author = "P. K. Ghosh and S. P. Mudur" +, title = "A computational theoretic framework for {Minkowski} addition and decomposition of boundary represented regions" +, type = "Report" +, number = "??" +, institution = "National Centre Softw. Develop. Comput. Tech., Tata Inst. Fund. Res." +, address = "Bombay, India" +, year = 1985 } @article{gm-pcgds-83 -, author = "P. K. Ghosh and S. P. Mudur" -, title = "Parametric curves for graphic design systems" -, journal = "Comput. J." -, volume = 26 -, year = 1983 -, pages = "312--219" +, author = "P. K. Ghosh and S. P. Mudur" +, title = "Parametric curves for graphic design systems" +, journal = "Comput. J." +, volume = 26 +, year = 1983 +, pages = "312--219" } @article{gm-btafs-84 -, author = "P. K. Ghosh and S. P. Mudur" -, title = "The brush-trajectory approach to figure specification: {Some} algebraic solutions" -, journal = "ACM Trans. Graph." -, volume = 3 -, number = 2 -, year = 1984 -, pages = "110--134" +, author = "P. K. Ghosh and S. P. Mudur" +, title = "The brush-trajectory approach to figure specification: {Some} algebraic solutions" +, journal = "ACM Trans. Graph." +, volume = 3 +, number = 2 +, year = 1984 +, pages = "110--134" } @techreport{g-fasva-87 -, author = "S. K. Ghosh" -, title = "A few applications of the set-visibility algorithm" -, type = "Report" -, number = "CAR-TR-273" -, institution = "Center Automat. Res., Univ. Maryland" -, address = "College Park, MD" -, year = 1987 -, update = "94.05 ghosh" +, author = "S. K. Ghosh" +, title = "A few applications of the set-visibility algorithm" +, type = "Report" +, number = "CAR-TR-273" +, institution = "Center Automat. Res., Univ. Maryland" +, address = "College Park, MD" +, year = 1987 +, update = "94.05 ghosh" } @inproceedings{g-ltadm-83 -, author = "S. K. Ghosh" -, title = "A linear time algorithm for decomposing a monotone polygon into star-shaped polygons" -, booktitle = "Proc. 3rd Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "India" -, year = 1983 -, pages = "505--519" +, author = "S. K. Ghosh" +, title = "A linear time algorithm for decomposing a monotone polygon into star-shaped polygons" +, booktitle = "Proc. 3rd Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "India" +, year = 1983 +, pages = "505--519" } @incollection{g-ltadi-84 -, author = "S. K. Ghosh" -, title = "A linear time algorithm for determining the intersection type of two star polygons" -, booktitle = "Proc. 4th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 181 -, publisher = "Springer-Verlag" -, year = 1984 -, pages = "317--330" +, author = "S. K. Ghosh" +, title = "A linear time algorithm for determining the intersection type of two star polygons" +, booktitle = "Proc. 4th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 181 +, publisher = "Springer-Verlag" +, year = 1984 +, pages = "317--330" } @article{g-ncha-86 -, author = "S. K. Ghosh" -, title = "A note on convex hull algorithms" -, journal = "Pattern Recogn." -, volume = 19 -, year = 1986 -, pages = 75 +, author = "S. K. Ghosh" +, title = "A note on convex hull algorithms" +, journal = "Pattern Recogn." +, volume = 19 +, year = 1986 +, pages = 75 } @inproceedings{g-aaagp-87 -, author = "S. K. Ghosh" -, title = "Approximation algorithms for art gallery problems" -, booktitle = "Proc. Canadian Inform. Process. Soc. Congress" -, year = 1987 -, pages = "??" +, author = "S. K. Ghosh" +, title = "Approximation algorithms for art gallery problems" +, booktitle = "Proc. Canadian Inform. Process. Soc. Congress" +, year = 1987 +, pages = "??" } @inproceedings{g-cvspi-88 -, author = "S. K. Ghosh" -, title = "Computing a Viewpoint of a Set of Points Inside a Polygon" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 338 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "18--29" -, update = "96.05 agarwal, 94.05 ghosh" +, author = "S. K. Ghosh" +, title = "Computing a Viewpoint of a Set of Points Inside a Polygon" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 338 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "18--29" +, update = "96.05 agarwal, 94.05 ghosh" } @techreport{g-cvspi-90 -, author = "S. K. Ghosh" -, title = "Computing a Viewpoint of a Set of Points Inside a Polygon" -, type = "Technical {Report}" -, institution = "Computer Science, Tata Inst." -, address = "Bombay, India" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "S. K. Ghosh" +, title = "Computing a Viewpoint of a Set of Points Inside a Polygon" +, type = "Technical {Report}" +, institution = "Computer Science, Tata Inst." +, address = "Bombay, India" +, year = 1990 +, update = "93.09 milone+mitchell" } @techreport{g-cvpcs-86 -, author = "S. K. Ghosh" -, title = "Computing the visibility polygon from a convex set" -, type = "Report" -, number = "CAR-TR-246" -, institution = "Center Automat. Res., Univ. Maryland" -, address = "College Park, MD" -, year = 1986 +, author = "S. K. Ghosh" +, title = "Computing the visibility polygon from a convex set" +, type = "Report" +, number = "CAR-TR-246" +, institution = "Center Automat. Res., Univ. Maryland" +, address = "College Park, MD" +, year = 1986 } @article{g-cvpcs-91 -, author = "S. K. Ghosh" -, title = "Computing visibility polygon from a convex set and related problems" -, journal = "J. Algorithms" -, volume = 12 -, year = 1991 -, pages = "75--95" -, keywords = "polygon, visibility" -, update = "94.05 ghosh" +, author = "S. K. Ghosh" +, title = "Computing visibility polygon from a convex set and related problems" +, journal = "J. Algorithms" +, volume = 12 +, year = 1991 +, pages = "75--95" +, keywords = "polygon, visibility" +, update = "94.05 ghosh" } @techreport{g-rcvgs-86 -, author = "S. K. Ghosh" -, title = "On recognizing and characterizing visibility graphs of simple polygons" -, type = "Report" -, number = "JHU/EECS-86/14" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1986 -, precedes = "g-rcvgs-88" +, author = "S. K. Ghosh" +, title = "On recognizing and characterizing visibility graphs of simple polygons" +, type = "Report" +, number = "JHU/EECS-86/14" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1986 +, precedes = "g-rcvgs-88" } @inproceedings{g-rcvgs-88 -, author = "S. K. Ghosh" -, title = "On recognizing and characterizing visibility graphs of simple polygons" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "96--104" -, succeeds = "g-rcvgs-86" +, author = "S. K. Ghosh" +, title = "On recognizing and characterizing visibility graphs of simple polygons" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "96--104" +, succeeds = "g-rcvgs-86" } @article{g-rcvgs-97 -, author = "S. K. Ghosh" -, title = "On recognizing and characterizing visibility graphs of simple polygons" -, journal = "Discrete Comput. Geom." -, volume = 17 -, year = 1997 -, pages = "143--162" -, succeeds = "g-rcvgs-88" -, update = "97.11 orourke" +, author = "S. K. Ghosh" +, title = "On recognizing and characterizing visibility graphs of simple polygons" +, journal = "Discrete Comput. Geom." +, volume = 17 +, year = 1997 +, pages = "143--162" +, succeeds = "g-rcvgs-88" +, update = "97.11 orourke" } @phdthesis{g-pcg-87 -, author = "S. K. Ghosh" -, title = "Problems in Computational Geometry" -, type = "Ph.{D}. Thesis" -, school = "Univ. Bombay" -, year = 1987 -, keywords = "doctoral thesis" -, update = "94.05 ghosh" +, author = "S. K. Ghosh" +, title = "Problems in Computational Geometry" +, type = "Ph.{D}. Thesis" +, school = "Univ. Bombay" +, year = 1987 +, keywords = "doctoral thesis" +, update = "94.05 ghosh" } @inproceedings{gb-olaeu-97 -, author = "Subir K. Ghosh and Joel W. Burdick" -, title = "An On--line Algorithm for Exploring an Unknown Polygonal Environment by a Point Robot" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "100--105" -, update = "97.11 jones" +, author = "Subir K. Ghosh and Joel W. Burdick" +, title = "An On--line Algorithm for Exploring an Unknown Polygonal Environment by a Point Robot" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "100--105" +, update = "97.11 jones" } @inproceedings{gb-udvra-97 -, author = "Subir K. Ghosh and Joel W. Burdick" -, title = "Understanding Discrete Visibility and related Approximation Algorithms" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "106--111" -, update = "97.11 jones" +, author = "Subir K. Ghosh and Joel W. Burdick" +, title = "Understanding Discrete Visibility and related Approximation Algorithms" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "106--111" +, update = "97.11 jones" } @techreport{gm-oacmn-90t -, author = "S. K. Ghosh and A. Maheshwari" -, title = "An Optimal Algorithm for Computing a Minimum Nested Nonconvex Polygon" -, type = "Technical {Report}" -, number = "CS-90/2" -, institution = "Tata Inst." -, year = 1990 -, precedes = "gm-oacmn-90a" -, update = "93.09 milone+mitchell" +, author = "S. K. Ghosh and A. Maheshwari" +, title = "An Optimal Algorithm for Computing a Minimum Nested Nonconvex Polygon" +, type = "Technical {Report}" +, number = "CS-90/2" +, institution = "Tata Inst." +, year = 1990 +, precedes = "gm-oacmn-90a" +, update = "93.09 milone+mitchell" } % precise title ? @article{gm-oacmn-90a -, author = "S. K. Ghosh and A. Maheshwari" -, title = "An Optimal Algorithm for Computing a Minimum Nested Nonconvex Polygon" -, journal = "Inform. Process. Lett." -, volume = 36 -, year = 1990 -, pages = "277--280" -, keywords = "Computational geometry, nested polygon, link path, relative convex hull" -, update = "93.09 milone+mitchell+rote" +, author = "S. K. Ghosh and A. Maheshwari" +, title = "An Optimal Algorithm for Computing a Minimum Nested Nonconvex Polygon" +, journal = "Inform. Process. Lett." +, volume = 36 +, year = 1990 +, pages = "277--280" +, keywords = "Computational geometry, nested polygon, link path, relative convex hull" +, update = "93.09 milone+mitchell+rote" } @techreport{gm-opadi-90 -, author = "S. K. Ghosh and A. Maheshwari" -, title = "An optimal parallel algorithm for determining the intersection type of two star-shaped polygons" -, type = "Technical {Report}" -, institution = "TATA Inst." -, address = "Bombay, India" -, month = mar -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "S. K. Ghosh and A. Maheshwari" +, title = "An optimal parallel algorithm for determining the intersection type of two star-shaped polygons" +, type = "Technical {Report}" +, institution = "TATA Inst." +, address = "Bombay, India" +, month = mar +, year = 1990 +, update = "93.09 milone+mitchell" } @inproceedings{gm-opadi-91 -, author = "S. K. Ghosh and A. Maheshwari" -, title = "An optimal parallel algorithm for determining the intersection type of two star-shaped polygons" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "2--6" -, cites = "ac-opavs-89, acg-cdctd-89, cg-opapp-88, g-ltadi-84, hr-omsep-89, kr-spasm-88t, v-ismaa-83, ZZZ" -, update = "98.07 bibrelex" +, author = "S. K. Ghosh and A. Maheshwari" +, title = "An optimal parallel algorithm for determining the intersection type of two star-shaped polygons" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "2--6" +, cites = "ac-opavs-89, acg-cdctd-89, cg-opapp-88, g-ltadi-84, hr-omsep-89, kr-spasm-88t, v-ismaa-83, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{gm-paaml-92 -, author = "S. K. Ghosh and A. Maheshwari" -, title = "Parallel algorithms for all minimum link paths and link center problems" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "106--117" +, author = "S. K. Ghosh and A. Maheshwari" +, title = "Parallel algorithms for all minimum link paths and link center problems" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "106--117" } @article{gmpsv-crwvp-93 -, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and S. Saluja and C. E. {Veni Madhavan}" -, title = "Characterizing and recognizing weak visibility polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "213--233" -, update = "94.05 ghosh" +, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and S. Saluja and C. E. {Veni Madhavan}" +, title = "Characterizing and recognizing weak visibility polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "213--233" +, update = "94.05 ghosh" } @techreport{gmpsv-cwvpr-90t -, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and S. Saluja and C. E. {Veni Madhavan}" -, title = "Characterizing weak visibility polygons and related problems" -, type = "Technical {Report}" -, number = "IISc-CSA-90-1" -, institution = "Dept. Comput. Sci. Auto., Indian Inst. Sci." -, year = 1990 -, update = "97.11 bibrelex" +, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and S. Saluja and C. E. {Veni Madhavan}" +, title = "Characterizing weak visibility polygons and related problems" +, type = "Technical {Report}" +, number = "IISc-CSA-90-1" +, institution = "Dept. Comput. Sci. Auto., Indian Inst. Sci." +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{gmpsv-cwvpr-90 -, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and S. Saluja and C. E. {Veni Madhavan}" -, title = "Characterizing weak visibility polygons and related problems" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "93--97" -, cites = "at-oadvp-81, c-tsplt-90t, g-cvpcs-91, ghlst-ltavs-87, gmpsv-cwvpr-90t, hm-svpap-90, gpv-awvp-90, s-hpp-87, t-spsee-86, ZZZ" -, update = "98.07 bibrelex" +, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and S. Saluja and C. E. {Veni Madhavan}" +, title = "Characterizing weak visibility polygons and related problems" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "93--97" +, cites = "at-oadvp-81, c-tsplt-90t, g-cvpcs-91, ghlst-ltavs-87, gmpsv-cwvpr-90t, hm-svpap-90, gpv-awvp-90, s-hpp-87, t-spsee-86, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{gmpsv-csptw-91 -, author = "Subir Kumar Ghosh and Anil Maheshwari and Sudebkumar Prasant Pal and Sanjeev Saluja and C. E. {Veni Madhavan}" -, title = "Computing the Shortest Path Tree in a Weak Visibility Polygon" -, booktitle = "Proc. 11th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 560 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "369--389" -, update = "94.09 lambert, 94.05 ghosh, 93.09 milone+mitchell" +, author = "Subir Kumar Ghosh and Anil Maheshwari and Sudebkumar Prasant Pal and Sanjeev Saluja and C. E. {Veni Madhavan}" +, title = "Computing the Shortest Path Tree in a Weak Visibility Polygon" +, booktitle = "Proc. 11th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 560 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "369--389" +, update = "94.09 lambert, 94.05 ghosh, 93.09 milone+mitchell" } @inproceedings{gmpv-arpp-90 -, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and C. E. {Veni Madhavan}" -, title = "An algorithm for recognizing palm polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "246--251" -, cites = "c-tsplt-90t, et-gpprl-89, h-ovgat-89, lp-oafkp-79, ZZZ" -, update = "01.04 icking, 98.07 bibrelex, 95.01 smid, 94.05 ghosh" +, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and C. E. {Veni Madhavan}" +, title = "An algorithm for recognizing palm polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "246--251" +, cites = "c-tsplt-90t, et-gpprl-89, h-ovgat-89, lp-oafkp-79, ZZZ" +, update = "01.04 icking, 98.07 bibrelex, 95.01 smid, 94.05 ghosh" } @article{gmpv-arpp-94 -, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and C. E. {Veni Madhavan}" -, title = "An algorithm for recognizing palm polygons" -, journal = "Visual Comput." -, volume = 10 -, year = 1994 -, pages = "443--451" -, update = "95.01 smid" +, author = "S. K. Ghosh and A. Maheshwari and S. P. Pal and C. E. {Veni Madhavan}" +, title = "An algorithm for recognizing palm polygons" +, journal = "Visual Comput." +, volume = 10 +, year = 1994 +, pages = "443--451" +, update = "95.01 smid" } @techreport{gm-osacv-87t -, author = "S. K. Ghosh and D. M. Mount" -, title = "An output sensitive algorithm for computing visibility graphs" -, number = "CS-TR-1874" -, institution = "Department of Computer Science, University of Maryland" -, month = jul -, year = 1987 -, update = "98.03 bibrelex" +, author = "S. K. Ghosh and D. M. Mount" +, title = "An output sensitive algorithm for computing visibility graphs" +, number = "CS-TR-1874" +, institution = "Department of Computer Science, University of Maryland" +, month = jul +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{gm-osacv-87 -, author = "S. K. Ghosh and D. M. Mount" -, title = "An output sensitive algorithm for computing visibility graphs" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "11--19" -, precedes = "gm-osacv-91" +, author = "S. K. Ghosh and D. M. Mount" +, title = "An output sensitive algorithm for computing visibility graphs" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "11--19" +, precedes = "gm-osacv-91" } @article{gm-osacv-91 -, author = "S. K. Ghosh and D. M. Mount" -, title = "An output-sensitive algorithm for computing visibility graphs" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "888--910" -, keywords = "visibility, two-dimensional, line segments, polygons, output-dependent" -, succeeds = "gm-osacv-87" -, annote = "weak visibility between edges of polygonal obstacles; - $O(n \log n + E)$ time" +, author = "S. K. Ghosh and D. M. Mount" +, title = "An output-sensitive algorithm for computing visibility graphs" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "888--910" +, keywords = "visibility, two-dimensional, line segments, polygons, output-dependent" +, succeeds = "gm-osacv-87" +, annote = "weak visibility between edges of polygonal obstacles; + $O(n \log n + E)$ time" } @techreport{gpv-awvp-90 -, author = "S. K. Ghosh and S. P. Pal and C. E. {Veni Madhavan}" -, title = "Algorithms for weak visibility polygons" -, type = "Technical {Report}" -, number = "IISc-CSA-90-2" -, institution = "TATA Inst." -, address = "Bombay, India" -, month = jan -, year = 1990 -, update = "94.09 lambert, 93.09 milone+mitchell" +, author = "S. K. Ghosh and S. P. Pal and C. E. {Veni Madhavan}" +, title = "Algorithms for weak visibility polygons" +, type = "Technical {Report}" +, number = "IISc-CSA-90-2" +, institution = "TATA Inst." +, address = "Bombay, India" +, month = jan +, year = 1990 +, update = "94.09 lambert, 93.09 milone+mitchell" } @techreport{gpv-cwvpr-90 -, author = "S. K. Ghosh and S. P. Pal and C. E. {Veni Madhavan}" -, title = "Characterizing weak visibility polygons and related problems" -, type = "Technical {Report}" -, number = "IISc-CSA-90-1" -, institution = "TATA Inst." -, address = "Bombay, India" -, month = jan -, year = 1990 -, update = "94.09 lambert, 93.09 milone+mitchell" +, author = "S. K. Ghosh and S. P. Pal and C. E. {Veni Madhavan}" +, title = "Characterizing weak visibility polygons and related problems" +, type = "Technical {Report}" +, number = "IISc-CSA-90-1" +, institution = "TATA Inst." +, address = "Bombay, India" +, month = jan +, year = 1990 +, update = "94.09 lambert, 93.09 milone+mitchell" } @techreport{gs-oolaw-95 -, author = "S. K. Ghosh and S. Saluja" -, title = "Optimal on-line algorithms for walking with minimum number of turns in unknown streets" -, type = "Manuscript" -, number = "RCS-94-2" -, institution = "TATA Institute of Fundamental Research" -, address = "Bombay, India" -, year = 1995 -, keywords = "link distance, shortest paths, competitive ratio, visibility, simple polygons" -, precedes = "gs-oolaw-97" -, update = "98.03 bibrelex+mitchell, 95.09 mitchell" +, author = "S. K. Ghosh and S. Saluja" +, title = "Optimal on-line algorithms for walking with minimum number of turns in unknown streets" +, type = "Manuscript" +, number = "RCS-94-2" +, institution = "TATA Institute of Fundamental Research" +, address = "Bombay, India" +, year = 1995 +, keywords = "link distance, shortest paths, competitive ratio, visibility, simple polygons" +, precedes = "gs-oolaw-97" +, update = "98.03 bibrelex+mitchell, 95.09 mitchell" } @article{gs-oolaw-97 -, author = "S. K. Ghosh and S. Saluja" -, title = "Optimal on-line algorithms for walking with minimum number of turns in unknown streets" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, number = 5 -, month = oct -, year = 1997 -, pages = "241--266" -, keywords = "link distance, shortest paths, competitive ratio, visibility, simple polygons" -, succeeds = "gs-oolaw-95" -, update = "98.03 mitchell" +, author = "S. K. Ghosh and S. Saluja" +, title = "Optimal on-line algorithms for walking with minimum number of turns in unknown streets" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, number = 5 +, month = oct +, year = 1997 +, pages = "241--266" +, keywords = "link distance, shortest paths, competitive ratio, visibility, simple polygons" +, succeeds = "gs-oolaw-95" +, update = "98.03 mitchell" } @article{gs-ltacc-84 -, author = "S. K. Ghosh and R. K. Shyamasundar" -, title = "A linear time algorithm for computing the convex hull of an ordered crossing polygon" -, journal = "Pattern Recogn." -, volume = 17 -, year = 1984 -, pages = "351--358" +, author = "S. K. Ghosh and R. K. Shyamasundar" +, title = "A linear time algorithm for computing the convex hull of an ordered crossing polygon" +, journal = "Pattern Recogn." +, volume = 17 +, year = 1984 +, pages = "351--358" } @article{gs-ltaoc-83 -, author = "S. K. Ghosh and R. K. Shyamasundar" -, title = "A linear time algorithm for obtaining the convex hull of a simple polygon" -, journal = "Pattern Recogn." -, volume = 16 -, year = 1983 -, pages = "587--592" +, author = "S. K. Ghosh and R. K. Shyamasundar" +, title = "A linear time algorithm for obtaining the convex hull of a simple polygon" +, journal = "Pattern Recogn." +, volume = 16 +, year = 1983 +, pages = "587--592" } @article{ga-afgfo-68 -, author = "S. P. Ghosh and C. T. Abraham" -, title = "Application of finite geometry in file organization for records with multiple-valued attributes" -, journal = "IBM J. Res. Develop." -, volume = 12 -, year = 1968 -, pages = "180--187" +, author = "S. P. Ghosh and C. T. Abraham" +, title = "Application of finite geometry in file organization for records with multiple-valued attributes" +, journal = "IBM J. Res. Develop." +, volume = 12 +, year = 1968 +, pages = "180--187" } @article{gg-frpmp-97 -, author = "M. Ghouse and M. Goodrich" -, title = "Fast randomized parallel methods for planar convex hull construction" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "219--236" -, update = "97.07 devillers" +, author = "M. Ghouse and M. Goodrich" +, title = "Fast randomized parallel methods for planar convex hull construction" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "219--236" +, update = "97.07 devillers" } @inproceedings{gg-eeprs-93 -, author = "Mujtaba Ghouse and Michael T. Goodrich" -, title = "Experimental Evidence for the Power of Random Sampling in Practical Parallel Algorithms" -, booktitle = "??" -, publisher = "IEEE Computer Society" -, year = 1993 -, pages = "549--556" -, update = "94.01 jones, 93.09 milone+mitchell" +, author = "Mujtaba Ghouse and Michael T. Goodrich" +, title = "Experimental Evidence for the Power of Random Sampling in Practical Parallel Algorithms" +, booktitle = "??" +, publisher = "IEEE Computer Society" +, year = 1993 +, pages = "549--556" +, update = "94.01 jones, 93.09 milone+mitchell" } @inproceedings{gg-ptpch-91 -, author = "M. Ghouse and M. T. Goodrich" -, title = "In-place techniques for parallel convex hull algorithms" -, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Architect." -, year = 1991 -, pages = "192--203" +, author = "M. Ghouse and M. T. Goodrich" +, title = "In-place techniques for parallel convex hull algorithms" +, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Architect." +, year = 1991 +, pages = "192--203" } @inproceedings{gi-d23cpg-92 -, author = "D. Giammarresi and G. F. Italiano" -, title = "Dynamic 2- and 3-Connectivity on Planar Graphs" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "221--232" -, update = "95.05 tamassia" +, author = "D. Giammarresi and G. F. Italiano" +, title = "Dynamic 2- and 3-Connectivity on Planar Graphs" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "221--232" +, update = "95.05 tamassia" } @book{g-agt-85 -, author = "A. Gibbons" -, title = "Algorithmic Graph Theory" -, publisher = "Cambridge University Press" -, address = "Cambridge" -, year = 1985 -, keywords = "graph theory, graph algorithms" -, update = "00.03 bibrelex, 98.07 tamassia, 97.06 tollis" +, author = "A. Gibbons" +, title = "Algorithmic Graph Theory" +, publisher = "Cambridge University Press" +, address = "Cambridge" +, year = 1985 +, keywords = "graph theory, graph algorithms" +, update = "00.03 bibrelex, 98.07 tamassia, 97.06 tollis" } @book{gr-epa-88 -, author = "A. Gibbons and W. Rytter" -, title = "Efficient Parallel Algorithms" -, publisher = "Cambridge University Press" -, address = "New York" -, year = 1988 -, update = "96.09 orourke" +, author = "A. Gibbons and W. Rytter" +, title = "Efficient Parallel Algorithms" +, publisher = "Cambridge University Press" +, address = "New York" +, year = 1988 +, update = "96.09 orourke" } @inproceedings{g-mppm-89 -, author = "P. B. Gibbons" -, title = "A more practical {PRAM} model" -, booktitle = "Proc. 1st ACM Sympos. Parallel Algorithms Architect." -, year = 1989 -, pages = "158--168" -, update = "96.09 orourke" +, author = "P. B. Gibbons" +, title = "A more practical {PRAM} model" +, booktitle = "Proc. 1st ACM Sympos. Parallel Algorithms Architect." +, year = 1989 +, pages = "158--168" +, update = "96.09 orourke" } @inproceedings{gmr-qpacp-94 -, author = "P. B. Gibbons and Y. Matias and V. Ramachandran" -, title = "The {QRQW} {PRAM}: Accounting for contention in parallel algorithms" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "" -, update = "96.09 orourke" +, author = "P. B. Gibbons and Y. Matias and V. Ramachandran" +, title = "The {QRQW} {PRAM}: Accounting for contention in parallel algorithms" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "" +, update = "96.09 orourke" } @book{g-gsh-77 -, author = "P. J. Giblin" -, title = "Graphs, Surfaces and Homology" -, edition = "1st" -, publisher = "Chapman and Hall" -, address = "London" -, year = 1977 -, update = "98.03 bibrelex, 94.05 devillers" +, author = "P. J. Giblin" +, title = "Graphs, Surfaces and Homology" +, edition = "1st" +, publisher = "Chapman and Hall" +, address = "London" +, year = 1977 +, update = "98.03 bibrelex, 94.05 devillers" } @book{g-gsh-81 -, author = "P. J. Giblin" -, title = "Graphs, Surfaces and Homology" -, edition = "2nd" -, publisher = "Chapman and Hall" -, address = "London, UK" -, year = 1981 -, update = "98.03 bibrelex" +, author = "P. J. Giblin" +, title = "Graphs, Surfaces and Homology" +, edition = "2nd" +, publisher = "Chapman and Hall" +, address = "London, UK" +, year = 1981 +, update = "98.03 bibrelex" } @article{gvw-rwgsi-96 -, author = "G. A. Gibson and J. S. Vitter and J. Wilkes" -, title = "Report of the Working Group on Storage {I/O} Issues in Large-Scale Computing" -, journal = "ACM Comput. Surv." -, volume = 28 -, number = 4 -, month = dec -, year = 1996 -, note = "Also available as - \url{http://www.cs.duke.edu/~jsv/report.ps}" -, update = "97.03 murali" +, author = "G. A. Gibson and J. S. Vitter and J. Wilkes" +, title = "Report of the Working Group on Storage {I/O} Issues in Large-Scale Computing" +, journal = "ACM Comput. Surv." +, volume = 28 +, number = 4 +, month = dec +, year = 1996 +, note = "Also available as + \url{http://www.cs.duke.edu/~jsv/report.ps}" +, update = "97.03 murali" } @article{ghjst-chtm-98 -, author = "T. S. Gieng and B. Hamann and K. I. Joy and G. L. Schussman and I. J. Trotts" -, title = "Constructing Hierarchies for Triangle Meshes" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 4 -, number = 2 -, month = apr -, year = 1998 -, pages = "145--161" -, update = "98.11 held" +, author = "T. S. Gieng and B. Hamann and K. I. Joy and G. L. Schussman and I. J. Trotts" +, title = "Constructing Hierarchies for Triangle Meshes" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 4 +, number = 2 +, month = apr +, year = 1998 +, pages = "145--161" +, update = "98.11 held" } @article{g-beess-62 -, author = "O. Giering" -, title = "Bestimmung von Eibereichen und Eik{\"o}rpern durch {Steiner} Symmetrisierungen" -, journal = "Sber. Bayer. Akad. Wiss. M{\"u}nchen, Math.-Nat. Kl." -, volume = "??" -, year = 1962 -, pages = "225--253" -, update = "98.11 bibrelex" +, author = "O. Giering" +, title = "Bestimmung von Eibereichen und Eik{\"o}rpern durch {Steiner} Symmetrisierungen" +, journal = "Sber. Bayer. Akad. Wiss. M{\"u}nchen, Math.-Nat. Kl." +, volume = "??" +, year = 1962 +, pages = "225--253" +, update = "98.11 bibrelex" } @inproceedings{g-crtspmtl-99 -, author = "J. Giesen" -, title = "Curve reconstruction, the {TSP}, and {Menger}'s theorem on length" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "207--216" -, update = "00.03 orourke" +, author = "J. Giesen" +, title = "Curve reconstruction, the {TSP}, and {Menger}'s theorem on length" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "207--216" +, update = "00.03 orourke" } @techreport{g-plpg-93 -, author = "G.-J. Giezeman" -, title = "{PlaGeo} - A Library for Planar Geometry" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, month = aug -, year = 1993 -, update = "98.11 bibrelex" +, author = "G.-J. Giezeman" +, title = "{PlaGeo} - A Library for Planar Geometry" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, month = aug +, year = 1993 +, update = "98.11 bibrelex" } @article{gcs-ecrag-91 -, author = "Z. Gigus and J. Canny and R. Seidel" -, title = "Efficiently computing and representing aspect graphs of polyhedral objects" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 13 -, number = 6 -, month = jun -, year = 1991 -, pages = "542--551" -, keywords = "visibility, aspect graphs" -, update = "98.11 bibrelex, 96.09 devillers, 94.09 orourke" +, author = "Z. Gigus and J. Canny and R. Seidel" +, title = "Efficiently computing and representing aspect graphs of polyhedral objects" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 13 +, number = 6 +, month = jun +, year = 1991 +, pages = "542--551" +, keywords = "visibility, aspect graphs" +, update = "98.11 bibrelex, 96.09 devillers, 94.09 orourke" } @article{gm-cagld-90 -, author = "Z. Gigus and J. Malik" -, title = "Computing the Aspect Graph for Line Drawings of Polyhedral Objects" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 12 -, number = 2 -, year = 1990 -, pages = "113--122" -, update = "98.03 smid, 97.11 bibrelex" +, author = "Z. Gigus and J. Malik" +, title = "Computing the Aspect Graph for Line Drawings of Polyhedral Objects" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 12 +, number = 2 +, year = 1990 +, pages = "113--122" +, update = "98.03 smid, 97.11 bibrelex" } @inproceedings{gmv-ttnct-92 -, author = "J. Gil and Y. Matias and U. Vishkin" -, title = "Towards a theory of nearly constant time parallel algorithms" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, update = "98.03 bibrelex" +, author = "J. Gil and Y. Matias and U. Vishkin" +, title = "Towards a theory of nearly constant time parallel algorithms" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, update = "98.03 bibrelex" } @inproceedings{gsw-sgm-89 -, author = "J. Gil and W. Steiger and A. Wigderson" -, title = "Some geometric medians" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 5 +, author = "J. Gil and W. Steiger and A. Wigderson" +, title = "Some geometric medians" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 5 } @article{gw-c2dmm-93 -, author = "Y. Gil and M. Werman" -, title = "Computing 2D Min, Max and Median Filters" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 15 -, year = 1993 -, pages = "504--507" -, update = "96.01 werman" +, author = "Y. Gil and M. Werman" +, title = "Computing 2D Min, Max and Median Filters" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 15 +, year = 1993 +, pages = "504--507" +, update = "96.01 werman" } @article{gm-vlbe-59 -, author = "E. Gilbert and E. Moore" -, title = "Variable-length binary encoding" -, journal = "Bell Syst. Tech. J." -, volume = 38 -, year = 1959 -, pages = "933--968" -, update = "98.03 bibrelex" +, author = "E. Gilbert and E. Moore" +, title = "Variable-length binary encoding" +, journal = "Bell Syst. Tech. J." +, volume = 38 +, year = 1959 +, pages = "933--968" +, update = "98.03 bibrelex" } @article{gf-cdgco-90 -, author = "E. G. Gilbert and C. P. Foo" -, title = "Computing the Distance between General Convex Objects in Three-Dimensional Space" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, number = 1 -, month = feb -, year = 1990 -, pages = "53--61" -, update = "98.11 bibrelex" +, author = "E. G. Gilbert and C. P. Foo" +, title = "Computing the Distance between General Convex Objects in Three-Dimensional Space" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, number = 1 +, month = feb +, year = 1990 +, pages = "53--61" +, update = "98.11 bibrelex" } @article{gj-dfarp-85 -, author = "E. G. Gilbert and D. W. Johnson" -, title = "Distance functions and their application to robot path planning in the presence of obstacles" -, journal = "Internat. J. Robot. Autom." -, volume = "RA-1" -, year = 1985 -, pages = "21--30" -, update = "98.07 bibrelex" +, author = "E. G. Gilbert and D. W. Johnson" +, title = "Distance functions and their application to robot path planning in the presence of obstacles" +, journal = "Internat. J. Robot. Autom." +, volume = "RA-1" +, year = 1985 +, pages = "21--30" +, update = "98.07 bibrelex" } @article{gjk-fpcdb-88 -, author = "E. G. Gilbert and D. W. Johnson and S. S. Keerthi" -, title = "A fast procedure for computing the distance between complex objects" -, journal = "Internat. J. Robot. Autom." -, volume = 4 -, number = 2 -, year = 1988 -, pages = "193--203" -, update = "98.07 bibrelex" +, author = "E. G. Gilbert and D. W. Johnson and S. S. Keerthi" +, title = "A fast procedure for computing the distance between complex objects" +, journal = "Internat. J. Robot. Autom." +, volume = 4 +, number = 2 +, year = 1988 +, pages = "193--203" +, update = "98.07 bibrelex" } @techreport{gjk-fpcdb-?? -, author = "E. G. Gilbert and D. W. Johnson and S. S. Keerthi" -, title = "A fast procedure for computing the distance between complex objects in three space" -, type = "Report" -, number = "??" -, institution = "Univ. Michigan" -, address = "Ann Arbor, MI" -, year = "??" +, author = "E. G. Gilbert and D. W. Johnson and S. S. Keerthi" +, title = "A fast procedure for computing the distance between complex objects in three space" +, type = "Report" +, number = "??" +, institution = "Univ. Michigan" +, address = "Ann Arbor, MI" +, year = "??" } @article{g-gcpnc-58 -, author = "E. N. Gilbert" -, title = "Gray Codes and Paths on the $n$-cube" -, journal = "Bell Syst. Tech. J." -, volume = "??" -, year = 1958 -, pages = "815--826" -, update = "97.11 bibrelex" +, author = "E. N. Gilbert" +, title = "Gray Codes and Paths on the $n$-cube" +, journal = "Bell Syst. Tech. J." +, volume = "??" +, year = 1958 +, pages = "815--826" +, update = "97.11 bibrelex" } @article{g-rssc-62 -, author = "E. N. Gilbert" -, title = "Random subdivisions of space into crystals" -, journal = "Ann. Math. Statist." -, volume = 33 -, year = 1962 -, pages = "958--972" +, author = "E. N. Gilbert" +, title = "Random subdivisions of space into crystals" +, journal = "Ann. Math. Statist." +, volume = 33 +, year = 1962 +, pages = "958--972" } @article{g-pc2sn-65 -, author = "E. N. Gilbert" -, title = "The probability of covering $2$ sphere with {$N$} circular caps" -, journal = "Biometrika" -, volume = 52 -, year = 1965 -, pages = "323--330" +, author = "E. N. Gilbert" +, title = "The probability of covering $2$ sphere with {$N$} circular caps" +, journal = "Biometrika" +, volume = 52 +, year = 1965 +, pages = "323--330" } @article{gp-smt-68 -, author = "E. N. Gilbert and H. O. Pollak" -, title = "Steiner minimal trees" -, journal = "SIAM J. Appl. Math." -, volume = 16 -, number = 1 -, year = 1968 -, pages = "1--29" +, author = "E. N. Gilbert and H. O. Pollak" +, title = "Steiner minimal trees" +, journal = "SIAM J. Appl. Math." +, volume = 16 +, number = 1 +, year = 1968 +, pages = "1--29" } @techreport{gs-tde-74 -, author = "E. N. Gilbert and L. A. Shepp" -, title = "Textures for discrimination experiments" -, number = "TM-74-1218-6, TM-74-1215-15" -, institution = "Bell Laboratories" -, address = "Murray Hill, NJ" -, month = apr -, year = 1974 -, update = "97.11 bibrelex" +, author = "E. N. Gilbert and L. A. Shepp" +, title = "Textures for discrimination experiments" +, number = "TM-74-1218-6, TM-74-1215-15" +, institution = "Bell Laboratories" +, address = "Murray Hill, NJ" +, month = apr +, year = 1974 +, update = "97.11 bibrelex" } @article{ght-stgbg-84 -, author = "J. R. Gilbert and J. P. Hutchinson and R. E. Tarjan" -, title = "A separation theorem for graphs of bounded genus" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "391--407" -, update = "01.07 devillers, 98.03 bibrelex" +, author = "J. R. Gilbert and J. P. Hutchinson and R. E. Tarjan" +, title = "A separation theorem for graphs of bounded genus" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "391--407" +, update = "01.07 devillers, 98.03 bibrelex" } @techreport{gmt-gampi-92 -, author = "J. R. Gilbert and G. L. Miller and S.-H. Teng" -, title = "A Geometric Approach to Mesh Partitioning: {Implementation} and Experiments" -, type = "Technical {Report}" -, institution = "Xerox Palo Alto Research Center" -, address = "Palo Alto, CA" -, year = 1992 -, update = "98.03 bibrelex" +, author = "J. R. Gilbert and G. L. Miller and S.-H. Teng" +, title = "A Geometric Approach to Mesh Partitioning: {Implementation} and Experiments" +, type = "Technical {Report}" +, institution = "Xerox Palo Alto Research Center" +, address = "Palo Alto, CA" +, year = 1992 +, update = "98.03 bibrelex" } @article{gt-anda-87 -, author = "J. R. Gilbert and R. E. Tarjan" -, title = "The analysis of a nested dissection algorithm" -, journal = "Numer. Math." -, volume = 50 -, year = 1987 -, pages = "377--404" -, update = "97.11 bibrelex" +, author = "J. R. Gilbert and R. E. Tarjan" +, title = "The analysis of a nested dissection algorithm" +, journal = "Numer. Math." +, volume = 50 +, year = 1987 +, pages = "377--404" +, update = "97.11 bibrelex" } @techreport{g-nrpt-79 -, author = "P. D. Gilbert" -, title = "New results in planar triangulations" -, type = "Report" -, number = "R-850" -, institution = "Coordinated Sci. Lab., Univ. Illinois" -, address = "Urbana, IL" -, year = 1979 +, author = "P. D. Gilbert" +, title = "New results in planar triangulations" +, type = "Report" +, number = "R-850" +, institution = "Coordinated Sci. Lab., Univ. Illinois" +, address = "Urbana, IL" +, year = 1979 } @book{gmw-po-81 -, author = "P. E. Gill and W. Murray and M. H. Wright" -, title = "Practical Optimization" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1981 -, update = "97.11 bibrelex" +, author = "P. E. Gill and W. Murray and M. H. Wright" +, title = "Practical Optimization" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1981 +, update = "97.11 bibrelex" } @inproceedings{gd-tdsgi-81 -, author = "R. Gillespie and W. A. Davis" -, title = "Tree data structures for graphics and image processing" -, booktitle = "Proc. Canad. Man-Computer Comm. Soc. Conf." -, site = "Waterloo, Canada" -, year = 1981 -, pages = "155--162" -, update = "97.11 bibrelex" +, author = "R. Gillespie and W. A. Davis" +, title = "Tree data structures for graphics and image processing" +, booktitle = "Proc. Canad. Man-Computer Comm. Soc. Conf." +, site = "Waterloo, Canada" +, year = 1981 +, pages = "155--162" +, update = "97.11 bibrelex" } @article{gg-sosvm-64 -, author = "P. C. Gilmore and R. E. Gomory" -, title = "Sequencing a one-state variable machine: {A} solvable case of the traveling salesman problem" -, journal = "Oper. Res." -, volume = 12 -, year = 1964 -, pages = "655--679" -, update = "98.07 bibrelex" +, author = "P. C. Gilmore and R. E. Gomory" +, title = "Sequencing a one-state variable machine: {A} solvable case of the traveling salesman problem" +, journal = "Oper. Res." +, volume = 12 +, year = 1964 +, pages = "655--679" +, update = "98.07 bibrelex" } @book{g-icgds-78 -, author = "W. K. Giloi" -, title = "Interactive Computer Graphics: Data Structures, Algorithms, Languages" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1978 +, author = "W. K. Giloi" +, title = "Interactive Computer Graphics: Data Structures, Algorithms, Languages" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1978 } @inproceedings{gn-tpot-90 -, author = "D. Girault-Beauquier and M. Nivat" -, title = "Tiling the plane with one tile" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "128--138" -, precedes = "bn-toptp-91" -, cites = "bg-gd-72, b-udp-66, gs-tp-87, g-p-66, h-etiah-86, p-p-78, r-untp-71, s-tleup-78, w-glc-65, wl-avpss-84, ZZZ" -, update = "97.11 bibrelex" +, author = "D. Girault-Beauquier and M. Nivat" +, title = "Tiling the plane with one tile" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "128--138" +, precedes = "bn-toptp-91" +, cites = "bg-gd-72, b-udp-66, gs-tp-87, g-p-66, h-etiah-86, p-p-78, r-untp-71, s-tleup-78, w-glc-65, wl-avpss-84, ZZZ" +, update = "97.11 bibrelex" } @techreport{gos-rpps-93 -, author = "C. Gitlin and J. O'Rourke and V. Subramanian" -, title = "On reconstructing polyhedra from parallel slices" -, type = "Technical {Report}" -, number = 025 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = mar -, year = 1993 -, keywords = "triangulations, polyhedra, surface reconstruction" -, update = "94.01 orourke" +, author = "C. Gitlin and J. O'Rourke and V. Subramanian" +, title = "On reconstructing polyhedra from parallel slices" +, type = "Technical {Report}" +, number = 025 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = mar +, year = 1993 +, keywords = "triangulations, polyhedra, surface reconstruction" +, update = "94.01 orourke" } @article{gos-rpps-96 -, author = "C. Gitlin and J. O'Rourke and V. Subramanian" -, title = "On reconstructing polyhedra from parallel slices" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, number = 1 -, year = 1996 -, pages = "103--122" -, keywords = "triangulations, polyhedra, surface reconstruction" -, update = "96.09 orourke, 96.05 orourke, 96.01 orourke, 95.05 orourke, 94.09 orourke, 94.01 orourke" -, annote = "Gives an example of two polygons in parallel planes - that cannot be connected to form a simple polyhedron - on the same set of vertices. One polygon is a triangle, - the other a complicated spiraling shape of 63 vertices." +, author = "C. Gitlin and J. O'Rourke and V. Subramanian" +, title = "On reconstructing polyhedra from parallel slices" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, number = 1 +, year = 1996 +, pages = "103--122" +, keywords = "triangulations, polyhedra, surface reconstruction" +, update = "96.09 orourke, 96.05 orourke, 96.01 orourke, 95.05 orourke, 94.09 orourke, 94.01 orourke" +, annote = "Gives an example of two polygons in parallel planes + that cannot be connected to form a simple polyhedron + on the same set of vertices. One polygon is a triangle, + the other a complicated spiraling shape of 63 vertices." } @inproceedings{gj-mv3du-96 -, author = "Carole S. Gitlin and Christopher R. Johnson" -, title = "MeshView: visualizing 3D unstructured meshes" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "333--345" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Carole S. Gitlin and Christopher R. Johnson" +, title = "MeshView: visualizing 3D unstructured meshes" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "333--345" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @book{g-fa3dg-94 -, author = "G. Glaeser" -, title = "Fast Algorithms for {3D}-Graphics" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1994 -, isbn = "0-387-94288-2" -, update = "96.09 agarwal, 95.09 mitchell" +, author = "G. Glaeser" +, title = "Fast Algorithms for {3D}-Graphics" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1994 +, isbn = "0-387-94288-2" +, update = "96.09 agarwal, 95.09 mitchell" } @inproceedings{gn-aep47-95 -, author = "Steve Glassman and Greg Nelson" -, title = "An Animation of {Euclid's} Proposition 47: {The} {Pythagorean} Theorem" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "V3--V4" -, keywords = "video review" -, cites = "b-1saf-93, e-e-56, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Steve Glassman and Greg Nelson" +, title = "An Animation of {Euclid's} Proposition 47: {The} {Pythagorean} Theorem" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "V3--V4" +, keywords = "video review" +, cites = "b-1saf-93, e-e-56, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @incollection{g-bvnup-94 -, author = "Andrew Glassner" -, title = "Building Vertex Normals from an Unstructured Polygon List" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "60--73" -, keywords = "smooth shading, topology, polyhedron" -, update = "94.09 heckbert" -, annote = "Solves a fairly common rendering problem: if one is given +, author = "Andrew Glassner" +, title = "Building Vertex Normals from an Unstructured Polygon List" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "60--73" +, keywords = "smooth shading, topology, polyhedron" +, update = "94.09 heckbert" +, annote = "Solves a fairly common rendering problem: if one is given a set of polygons in raw form, with no topological (adjacency) information, and asked to do smooth shading (Gouraud or Phong shading) of them, one must infer topology and compute vertex normals. Contains C code." } @incollection{gh-chfvl-94 -, author = "Andrew Glassner and Eric Haines" -, title = "{C} Header File and Vector Library" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "558--570" -, keywords = "vector algebra, root-finding" -, update = "94.09 heckbert" -, annote = "Revised version of the ``Graphics Gems'' subroutine +, author = "Andrew Glassner and Eric Haines" +, title = "{C} Header File and Vector Library" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "558--570" +, keywords = "vector algebra, root-finding" +, update = "94.09 heckbert" +, annote = "Revised version of the ``Graphics Gems'' subroutine library, used in several other Gems in the book. Contains C code." } @book{g-irt-89 -, author = "A. S. Glassner" -, title = "An Introduction to Ray Tracing" -, publisher = "Academic Press" -, year = 1989 -, update = "98.03 bibrelex, 96.05 pocchiola" +, author = "A. S. Glassner" +, title = "An Introduction to Ray Tracing" +, publisher = "Academic Press" +, year = 1989 +, update = "98.03 bibrelex, 96.05 pocchiola" } @book{g-gg-90 -, title = "Graphics Gems {I}" -, editor = "Andrew S. Glassner" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1990 -, update = "98.11 bibrelex, 98.07 tamassia+vismara" +, title = "Graphics Gems {I}" +, editor = "Andrew S. Glassner" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1990 +, update = "98.11 bibrelex, 98.07 tamassia+vismara" } @article{g-ssfrt-84 -, author = "A. S. Glassner" -, title = "Space Subdivision for Fast Ray Tracing" -, journal = "IEEE Comput. Graph. Appl." -, volume = 4 -, number = 10 -, month = oct -, year = 1984 -, pages = "15--22" -, update = "97.11 bibrelex" +, author = "A. S. Glassner" +, title = "Space Subdivision for Fast Ray Tracing" +, journal = "IEEE Comput. Graph. Appl." +, volume = 4 +, number = 10 +, month = oct +, year = 1984 +, pages = "15--22" +, update = "97.11 bibrelex" } @incollection{gchhhr-irt-87 -, author = "Andrew S. Glassner and Robert L. Cook and Eric Haines and Pat Hanrahan and Paul Heckbert and L. Richard Speer" -, title = "Introduction to Ray Tracing" -, booktitle = "SIGGRAPH '87 Introduction to Ray Tracing" -, year = 1987 -, update = "98.03 agarwal" +, author = "Andrew S. Glassner and Robert L. Cook and Eric Haines and Pat Hanrahan and Paul Heckbert and L. Richard Speer" +, title = "Introduction to Ray Tracing" +, booktitle = "SIGGRAPH '87 Introduction to Ray Tracing" +, year = 1987 +, update = "98.03 agarwal" } @article{gmhhwsbr-cads5-95 -, author = "R. Glen and G. Martin and A. Hill and R. Hyde and P. Wollard and J. Salmon and J. Buckingham and A. Robertson" -, title = "Computer-aided design and sythesis of $5$-substituted tryptamines and their pharmacology at the $5-{HT}_{10}$ receptor: {Discovery} of compounds with potential anti-migraine properties" -, journal = "J. Medical Chemistry" -, volume = 38 -, year = 1995 -, pages = "3566--3580" -, update = "98.07 bibrelex" +, author = "R. Glen and G. Martin and A. Hill and R. Hyde and P. Wollard and J. Salmon and J. Buckingham and A. Robertson" +, title = "Computer-aided design and sythesis of $5$-substituted tryptamines and their pharmacology at the $5-{HT}_{10}$ receptor: {Discovery} of compounds with potential anti-migraine properties" +, journal = "J. Medical Chemistry" +, volume = 38 +, year = 1995 +, pages = "3566--3580" +, update = "98.07 bibrelex" } @techreport{ggglsttz-ftttd-96 -, author = "J. Glimm and M. J. Graham and J. Grove and X. L. Li and T. M. Smith and D. Tan and F. Tangerman and Q. Zhang" -, title = "Front Tracking in Two and Three Dimensions" -, type = "Technical {Report}" -, number = "SUNYSB-AMS-96-12" -, institution = "Applied Mathematics and Statistics, University at Stony Brook" -, year = 1996 -, update = "98.03 mitchell" +, author = "J. Glimm and M. J. Graham and J. Grove and X. L. Li and T. M. Smith and D. Tan and F. Tangerman and Q. Zhang" +, title = "Front Tracking in Two and Three Dimensions" +, type = "Technical {Report}" +, number = "SUNYSB-AMS-96-12" +, institution = "Applied Mathematics and Statistics, University at Stony Brook" +, year = 1996 +, update = "98.03 mitchell" } @article{g-mmbg-67 -, author = "F. Glover" -, title = "Maximum Matching in bipartite Graph" -, journal = "Naval Res. Logist. Quart." -, volume = "??" -, year = 1967 -, update = "98.03 bibrelex" +, author = "F. Glover" +, title = "Maximum Matching in bipartite Graph" +, journal = "Naval Res. Logist. Quart." +, volume = "??" +, year = 1967 +, update = "98.03 bibrelex" } @article{gks-cdrcp-99 -, author = "A. Glozman and K. Kedem and G. Shpitalnik" -, title = "Computing a double-ray center for a planar point set" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, year = 1999 -, pages = "109--123" -, update = "99.07 smid" +, author = "A. Glozman and K. Kedem and G. Shpitalnik" +, title = "Computing a double-ray center for a planar point set" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, year = 1999 +, pages = "109--123" +, update = "99.07 smid" } @inproceedings{gks-sgsop-95 -, author = "Alex Glozman and Klara Kedem and Gregory Shpitalnik" -, title = "On some Geometric Selection and Optimization Problems via Sorted Matrices" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "26--37" -, update = "99.07 bibrelex, 96.01 devillers+smid, 95.05 mitchell" +, author = "Alex Glozman and Klara Kedem and Gregory Shpitalnik" +, title = "On some Geometric Selection and Optimization Problems via Sorted Matrices" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "26--37" +, update = "99.07 bibrelex, 96.01 devillers+smid, 95.05 mitchell" } @article{gks-sgsop-98 -, author = "Alex Glozman and Klara Kedem and Gregory Shpitalnik" -, title = "On some geometric selection and optimization problems via sorted matrices" -, journal = "Comput. Geom. Theory Appl." -, volume = 11 -, year = 1998 -, pages = "17--28" -, succeeds = "gks-sgsop-95" -, update = "98.11 devillers" +, author = "Alex Glozman and Klara Kedem and Gregory Shpitalnik" +, title = "On some geometric selection and optimization problems via sorted matrices" +, journal = "Comput. Geom. Theory Appl." +, volume = 11 +, year = 1998 +, pages = "17--28" +, succeeds = "gks-sgsop-95" +, update = "98.11 devillers" } @article{ggsbcg-ocrot-89 -, author = "A. F. Gmitro and J. E. Greivenkamp and W. Swindell and H. H. Barett and M. Y. Chiu and S. K. Gordon" -, title = "Optical computers for reconstructing objects from their x-ray projections" -, journal = "Optical. Engineering" -, volume = 19 -, number = 3 -, year = 1989 -, pages = "260--272" -, update = "97.11 bibrelex" +, author = "A. F. Gmitro and J. E. Greivenkamp and W. Swindell and H. H. Barett and M. Y. Chiu and S. K. Gordon" +, title = "Optical computers for reconstructing objects from their x-ray projections" +, journal = "Optical. Engineering" +, volume = 19 +, number = 3 +, year = 1989 +, pages = "260--272" +, update = "97.11 bibrelex" } @article{gs-rclcd-70 -, author = "N. Go and H. Scherga" -, title = "Ring closure and local conformational deformations of chain molecules" -, journal = "Macromolecules" -, volume = 3 -, number = 2 -, year = 1970 -, pages = "178--187" -, update = "98.07 bibrelex" +, author = "N. Go and H. Scherga" +, title = "Ring closure and local conformational deformations of chain molecules" +, journal = "Macromolecules" +, volume = 3 +, number = 2 +, year = 1970 +, pages = "178--187" +, update = "98.07 bibrelex" } @article{g-spaph-82 -, author = "C. Goad" -, title = "Special Purpose Automatic Programming for Hidden Surface Elimination" -, journal = "Comput. Graph." -, volume = 16 -, number = 3 -, month = jul -, year = 1982 -, pages = "167--178" -, note = "Proc. SIGGRAPH '82" -, update = "97.11 bibrelex" +, author = "C. Goad" +, title = "Special Purpose Automatic Programming for Hidden Surface Elimination" +, journal = "Comput. Graph." +, volume = 16 +, number = 3 +, month = jul +, year = 1982 +, pages = "167--178" +, note = "Proc. SIGGRAPH '82" +, update = "97.11 bibrelex" } @inproceedings{g-nmccd-91 -, author = "M. Godau" -, title = "A Natural Metric for Curves -- Computing the Distance for Polygonal Chains and Approximation Algorithms" -, booktitle = "Proc. 8th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 480 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "127--136" -, update = "97.03 gaertner+salinger" +, author = "M. Godau" +, title = "A Natural Metric for Curves -- Computing the Distance for Polygonal Chains and Approximation Algorithms" +, booktitle = "Proc. 8th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 480 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "127--136" +, update = "97.03 gaertner+salinger" } @mastersthesis{g-fmpaa-91 -, author = "M. Godau" -, title = "Die {Fr{\'e}chet}-{Metrik} f{\"u}r {P}olygonz{\"u}ge -- {Algorithmen} zur {Abstandsmessung} und {Approximation}" -, type = "Masters Thesis" -, school = "Fachbereich Mathematik, Freie Univ. Berlin" -, address = "Berlin, Germany" -, year = 1991 -, keywords = "masters thesis" -, update = "97.03 gaertner+salinger" +, author = "M. Godau" +, title = "Die {Fr{\'e}chet}-{Metrik} f{\"u}r {P}olygonz{\"u}ge -- {Algorithmen} zur {Abstandsmessung} und {Approximation}" +, type = "Masters Thesis" +, school = "Fachbereich Mathematik, Freie Univ. Berlin" +, address = "Berlin, Germany" +, year = 1991 +, keywords = "masters thesis" +, update = "97.03 gaertner+salinger" } @inproceedings{g-depgi-95 -, author = "M. Godau" -, title = "On the Difficulty of Embedding Planar Graphs with Inaccuracies" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "254--261" -, keywords = "graph drawing, placement, NP-hardness" -, update = "95.01 tamassia" +, author = "M. Godau" +, title = "On the Difficulty of Embedding Planar Graphs with Inaccuracies" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "254--261" +, keywords = "graph drawing, placement, NP-hardness" +, update = "95.01 tamassia" } @techreport{gkk-fdsp- -, author = "W. Goddard and M. Katchalski and D. J. Kleitman" -, title = "Forcing disjoint segments in the plane" -, type = "Manuscript" -, institution = "??" -, year = "??" -, update = "98.03 bibrelex" +, author = "W. Goddard and M. Katchalski and D. J. Kleitman" +, title = "Forcing disjoint segments in the plane" +, type = "Manuscript" +, institution = "??" +, year = "??" +, update = "98.03 bibrelex" } @article{g-qwcet-88 -, author = "L. Goddyn" -, title = "Quantizers and the worst-case {Euclidean} traveling salesman problem" -, journal = "J. Combin. Theory Ser. B" -, volume = 50 -, year = 1988 -, pages = "65--81" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "L. Goddyn" +, title = "Quantizers and the worst-case {Euclidean} traveling salesman problem" +, journal = "J. Combin. Theory Ser. B" +, volume = 50 +, year = 1988 +, pages = "65--81" +, update = "98.11 bibrelex, 97.11 bibrelex" } @article{gw-agatc-95 -, author = "Michel X. Goemans and David P. Williamson" -, title = "A General Approximation Technique for Constrained Forest Problems" -, journal = "SIAM J. Comput." -, volume = 24 -, number = 2 -, year = 1995 -, pages = "296--317" -, update = "98.03 agarwal" +, author = "Michel X. Goemans and David P. Williamson" +, title = "A General Approximation Technique for Constrained Forest Problems" +, journal = "SIAM J. Comput." +, volume = 24 +, number = 2 +, year = 1995 +, pages = "296--317" +, update = "98.03 agarwal" } @book{gt-smmp-60 -, author = "G. Goertzel and N. Tralli" -, title = "Some Mathematical Methods of Physics" -, publisher = "McGraw-Hill" -, year = 1960 -, update = "98.03 bibrelex" +, author = "G. Goertzel and N. Tralli" +, title = "Some Mathematical Methods of Physics" +, publisher = "McGraw-Hill" +, year = 1960 +, update = "98.03 bibrelex" } @article{g-rmssl-80 -, author = "J. L. Goffin" -, title = "The Relaxation Method for Solving Systems of Linear Inequalities" -, journal = "Math. Oper. Res." -, volume = 5 -, number = 3 -, month = aug -, year = 1980 -, pages = "388--414" -, update = "97.11 bibrelex" +, author = "J. L. Goffin" +, title = "The Relaxation Method for Solving Systems of Linear Inequalities" +, journal = "Math. Oper. Res." +, volume = 5 +, number = 3 +, month = aug +, year = 1980 +, pages = "388--414" +, update = "97.11 bibrelex" } @article{g-pboot-81 -, author = "I. Golan" -, title = "Performance bounds for orthogonal oriented two-dimensional packing algorithms" -, journal = "SIAM J. Comput." -, volume = 10 -, year = 1981 -, pages = "571--582" +, author = "I. Golan" +, title = "Performance bounds for orthogonal oriented two-dimensional packing algorithms" +, journal = "SIAM J. Comput." +, volume = 10 +, year = 1981 +, pages = "571--582" } @inproceedings{g-cac-99 -, author = "C. Gold" -, title = "Crust and anti-crust: {A} one-step boundary and skeleton extraction algorithm" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "189--196" -, update = "00.03 orourke" +, author = "C. Gold" +, title = "Crust and anti-crust: {A} one-step boundary and skeleton extraction algorithm" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "189--196" +, update = "00.03 orourke" } @inproceedings{gc-sontr-86 -, author = "C. Gold and S. Cormack" -, title = "Spatially ordered networks and topographic reconstructions" -, booktitle = "Proc. 2nd Internat. Sympos. Spatial Data Handling" -, year = 1986 -, pages = "74--85" -, update = "97.11 bibrelex" +, author = "C. Gold and S. Cormack" +, title = "Spatially ordered networks and topographic reconstructions" +, booktitle = "Proc. 2nd Internat. Sympos. Spatial Data Handling" +, year = 1986 +, pages = "74--85" +, update = "97.11 bibrelex" } @inproceedings{g-odsma-92 -, author = "C. M. Gold" -, title = "An object-based dynamic spatial model, and its application in the development of a user-friendly digitizing system" -, booktitle = "Proc. 5th Internat. Sympos. Spatial Data Handling" -, site = "Charleston" -, year = 1992 -, pages = "495--504" -, update = "98.11 bibrelex" +, author = "C. M. Gold" +, title = "An object-based dynamic spatial model, and its application in the development of a user-friendly digitizing system" +, booktitle = "Proc. 5th Internat. Sympos. Spatial Data Handling" +, site = "Charleston" +, year = 1992 +, pages = "495--504" +, update = "98.11 bibrelex" } @inproceedings{g-dsdsv-92 -, author = "C. M. Gold" -, title = "Dynamic spatial data structures -- the {Voronoi} approach" -, booktitle = "Proc. Canad. Conf. GIS" -, site = "Ottawa" -, year = 1992 -, pages = "245--255" -, update = "93.05 freimer" +, author = "C. M. Gold" +, title = "Dynamic spatial data structures -- the {Voronoi} approach" +, booktitle = "Proc. Canad. Conf. GIS" +, site = "Ottawa" +, year = 1992 +, pages = "245--255" +, update = "93.05 freimer" } @inproceedings{g-fsdss-93 -, author = "C. M. Gold" -, title = "Forestry spatial decision support system classification and the flight simulator approach" -, booktitle = "Proc. GIS'93" -, site = "Vancouver" -, year = 1993 -, pages = "797--802" -, update = "98.11 bibrelex" +, author = "C. M. Gold" +, title = "Forestry spatial decision support system classification and the flight simulator approach" +, booktitle = "Proc. GIS'93" +, site = "Vancouver" +, year = 1993 +, pages = "797--802" +, update = "98.11 bibrelex" } @inproceedings{g-ovdtu-87 -, author = "C. M. Gold" -, title = "Ordering of {Voronoi} diagrams and their use in terrain database management" -, booktitle = "Proc. 8th Internat. Sympos. Comput.-Assist. Cartog." -, site = "Baltimore" -, year = 1987 -, pages = "185--194" -, update = "93.05 freimer" +, author = "C. M. Gold" +, title = "Ordering of {Voronoi} diagrams and their use in terrain database management" +, booktitle = "Proc. 8th Internat. Sympos. Comput.-Assist. Cartog." +, site = "Baltimore" +, year = 1987 +, pages = "185--194" +, update = "93.05 freimer" } @inproceedings{g-psrsd-94 -, author = "C. M. Gold" -, title = "Persistent Spatial Relations - a Systems Design Objective" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "219--224" -, cites = "a-vdsfg-91, bb-dvddt-90, cegss-cfals-91, f-savd-87, g-sdsed-90, g-srbb-90, g-odsma-92, g-fsdss-93, gcr-acmut-77, gks-ricdv-92, k-eccs-79, as-sdcav-94, obs-stcav-92, pc-cds-75, r-vdds-90, r-vdds-93, s-dmgsm-91, sh-cpp-75, t-tdrac-93, tcm-chgd-76, w-dpo-78, b-dgs-70, gc-sdsig-94, gmr-vdmpp-92, ZZZ" -, update = "99.11 bibrelex, 98.11 bibrelex, 94.09 jones" +, author = "C. M. Gold" +, title = "Persistent Spatial Relations - a Systems Design Objective" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "219--224" +, cites = "a-vdsfg-91, bb-dvddt-90, cegss-cfals-91, f-savd-87, g-sdsed-90, g-srbb-90, g-odsma-92, g-fsdss-93, gcr-acmut-77, gks-ricdv-92, k-eccs-79, as-sdcav-94, obs-stcav-92, pc-cds-75, r-vdds-90, r-vdds-93, s-dmgsm-91, sh-cpp-75, t-tdrac-93, tcm-chgd-76, w-dpo-78, b-dgs-70, gc-sdsig-94, gmr-vdmpp-92, ZZZ" +, update = "99.11 bibrelex, 98.11 bibrelex, 94.09 jones" } @article{g-phsdv-91 -, author = "C. M. Gold" -, title = "Problems with handling spatial data -- {The Voronoi} approach" -, journal = "CISM Journal ACSGC" -, volume = 45 -, number = 1 -, year = 1991 -, pages = "65--80" -, keywords = "GIS, geography, surfaces, approximation" -, update = "95.01 mitchell" +, author = "C. M. Gold" +, title = "Problems with handling spatial data -- {The Voronoi} approach" +, journal = "CISM Journal ACSGC" +, volume = 45 +, number = 1 +, year = 1991 +, pages = "65--80" +, keywords = "GIS, geography, surfaces, approximation" +, update = "95.01 mitchell" } @inproceedings{g-srbb-90 -, author = "C. M. Gold" -, title = "Space revisited: back to the basics" -, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" -, site = "Z{\"u}rich" -, year = 1990 -, pages = "175--189" -, update = "98.11 bibrelex" +, author = "C. M. Gold" +, title = "Space revisited: back to the basics" +, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" +, site = "Z{\"u}rich" +, year = 1990 +, pages = "175--189" +, update = "98.11 bibrelex" } @incollection{g-sdsed-90 -, author = "C. M. Gold" -, title = "Spatial data structures: the extension from one to two dimensions" -, editor = "L. F. Pau" -, booktitle = "Mapping and Spatial Modelling in Navigation" -, series = "NATO ASI Series F" -, volume = 65 -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1990 -, pages = "11--39" -, update = "98.11 bibrelex" +, author = "C. M. Gold" +, title = "Spatial data structures: the extension from one to two dimensions" +, editor = "L. F. Pau" +, booktitle = "Mapping and Spatial Modelling in Navigation" +, series = "NATO ASI Series F" +, volume = 65 +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1990 +, pages = "11--39" +, update = "98.11 bibrelex" } @techreport{g-sovnt-85 -, author = "C. M. Gold" -, title = "Spatial ordering of {Voronoi} networks and their use in terrain modeling" -, type = "Report" -, number = "??" -, institution = "Contoursoft Corp." -, address = "Edmonton, AB" -, year = 1985 +, author = "C. M. Gold" +, title = "Spatial ordering of {Voronoi} networks and their use in terrain modeling" +, type = "Report" +, number = "??" +, institution = "Contoursoft Corp." +, address = "Edmonton, AB" +, year = 1985 } @inproceedings{g-sivsa-92 -, author = "C. M. Gold" -, title = "Surface interpolation as a {Voronoi} spatial adjacency problem" -, booktitle = "Proc. Canad. Conf. GIS" -, site = "Ottawa" -, year = 1992 -, pages = "419--431" -, update = "93.05 freimer" +, author = "C. M. Gold" +, title = "Surface interpolation as a {Voronoi} spatial adjacency problem" +, booktitle = "Proc. Canad. Conf. GIS" +, site = "Ottawa" +, year = 1992 +, pages = "419--431" +, update = "93.05 freimer" } @article{g-vsmtt-92 -, author = "C. M. Gold" -, title = "The {Voronoi} spatial model -- two and three dimensional applications in image analysis" -, journal = "ITC J." -, volume = "??" -, year = 1992 -, note = "To appear" -, update = "93.05 freimer" +, author = "C. M. Gold" +, title = "The {Voronoi} spatial model -- two and three dimensional applications in image analysis" +, journal = "ITC J." +, volume = "??" +, year = 1992 +, note = "To appear" +, update = "93.05 freimer" } @article{gcr-acmut-77 -, author = "C. M. Gold and T. D. Charters and J. Ramsden" -, title = "Automated Contour Mapping Using Triangular Element Data Structures and an Interpolant Over Each Irregular Triangular Domain" -, journal = "Comput. Graph." -, volume = 11 -, number = 2 -, year = 1977 -, pages = "170--175" -, update = "96.09 devillers" -, annote = "Fits surface to irregular points by triangulating and - then using a polynomial over each triangle. An initial - triangulation is found by subdividing the triangle - enclosing each new point into four. The triangulation - is then improved by switchings (empirical tests suggest - time $3\log t$ for switchings). Switchings based on - ``Maximize minimum triangle height''." +, author = "C. M. Gold and T. D. Charters and J. Ramsden" +, title = "Automated Contour Mapping Using Triangular Element Data Structures and an Interpolant Over Each Irregular Triangular Domain" +, journal = "Comput. Graph." +, volume = 11 +, number = 2 +, year = 1977 +, pages = "170--175" +, update = "96.09 devillers" +, annote = "Fits surface to irregular points by triangulating and + then using a polynomial over each triangle. An initial + triangulation is found by subdividing the triangle + enclosing each new point into four. The triangulation + is then improved by switchings (empirical tests suggest + time $3\log t$ for switchings). Switchings based on + ``Maximize minimum triangle height''." } @article{gc-sdsig-94 -, author = "C. M. Gold and A. R. Condal" -, title = "A spatial data structure integrating GIS and simulation in a marine environment" -, journal = "Marine Geodesy" -, volume = "??" -, year = 1994 -, note = "submitted" -, update = "98.11 bibrelex" +, author = "C. M. Gold and A. R. Condal" +, title = "A spatial data structure integrating GIS and simulation in a marine environment" +, journal = "Marine Geodesy" +, volume = "??" +, year = 1994 +, note = "submitted" +, update = "98.11 bibrelex" } @inproceedings{gm-tsocc-78 -, author = "C. M. Gold and U. Maydell" -, title = "Triangulation and spatial ordering in computer cartography" -, booktitle = "Proc. Canad. Cardographic Association Annu. Meeting" -, year = 1978 -, pages = "69--81" -, update = "97.11 bibrelex" +, author = "C. M. Gold and U. Maydell" +, title = "Triangulation and spatial ordering in computer cartography" +, booktitle = "Proc. Canad. Cardographic Association Annu. Meeting" +, year = 1978 +, pages = "69--81" +, update = "97.11 bibrelex" } @inproceedings{grr-vdlsm-95 -, author = "Christopher M. Gold and Peter M. Remmele and Thomas Roos" -, title = "Voronoi Diagrams of Line Segments Made Easy" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "223--228" -, update = "95.09 jones" +, author = "Christopher M. Gold and Peter M. Remmele and Thomas Roos" +, title = "Voronoi Diagrams of Line Segments Made Easy" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "223--228" +, update = "95.09 jones" } @proceedings{gr-p7ccc-95 -, title = "Proc. 7th Canad. Conf. Comput. Geom." -, editor = "Christopher M. Gold and Jean-Marc Robert" -, publisher = "Geomatics Research Centre, Univ. Laval" -, address = "Qu\'ebec, QC" -, month = aug -, year = 1995 -, url = "http://www.uqac.uquebec.ca/DIM/prof/jmrobert/Proceedings_e.html" -, update = "95.09 jones" +, title = "Proc. 7th Canad. Conf. Comput. Geom." +, editor = "Christopher M. Gold and Jean-Marc Robert" +, publisher = "Geomatics Research Centre, Univ. Laval" +, address = "Qu\'ebec, QC" +, month = aug +, year = 1995 +, url = "http://www.uqac.uquebec.ca/DIM/prof/jmrobert/Proceedings_e.html" +, update = "95.09 jones" } @article{gykd-cdma3-91 -, author = "J. A. Goldak and X. Yu and A. Knight and L. Dong" -, title = "Constructing discrete medial axis of {3-D} objects" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 3 -, year = 1991 -, pages = "327--339" -, keywords = "Delaunay triangulation, medial axis" +, author = "J. A. Goldak and X. Yu and A. Knight and L. Dong" +, title = "Constructing discrete medial axis of {3-D} objects" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 3 +, year = 1991 +, pages = "327--339" +, keywords = "Delaunay triangulation, medial axis" } @inproceedings{gpst-ipmpc-89 -, author = "A. V. Goldberg and S. A. Plotkin and D. B. Shmoys and E. Tardos" -, title = "Interior-point methods in parallel computation" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "350--355" -, comments = "Submitted to SIAM J. Comput." +, author = "A. V. Goldberg and S. A. Plotkin and D. B. Shmoys and E. Tardos" +, title = "Interior-point methods in parallel computation" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "350--355" +, comments = "Submitted to SIAM J. Comput." } @incollection{gtt-nfa-90 -, author = "A. V. Goldberg and E. Tardos and R. E. Tarjan" -, title = "Network flow algorithms" -, editor = "B. Korte and L. Lov{\'a}sz and H. J. Pr{\"o}mel and A. Schrijver" -, booktitle = "Paths, Flows, and VLSI-Layout" -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "101--164" -, update = "97.11 bibrelex" +, author = "A. V. Goldberg and E. Tardos and R. E. Tarjan" +, title = "Network flow algorithms" +, editor = "B. Korte and L. Lov{\'a}sz and H. J. Pr{\"o}mel and A. Schrijver" +, booktitle = "Paths, Flows, and VLSI-Layout" +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "101--164" +, update = "97.11 bibrelex" } @inproceedings{gt-namfp-86 -, author = "A. V. Goldberg and R. E. Tarjan" -, title = "A new approach to the maximum flow problem" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "136--146" -, update = "98.03 bibrelex" +, author = "A. V. Goldberg and R. E. Tarjan" +, title = "A new approach to the maximum flow problem" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "136--146" +, update = "98.03 bibrelex" } @article{gt-namfp-88 -, author = "A. V. Goldberg and R. E. Tarjan" -, title = "A new approach to the maximum flow problem" -, journal = "J. ACM" -, volume = 35 -, year = 1988 -, pages = "921--940" -, update = "97.11 bibrelex" +, author = "A. V. Goldberg and R. E. Tarjan" +, title = "A new approach to the maximum flow problem" +, journal = "J. ACM" +, volume = 35 +, year = 1988 +, pages = "921--940" +, update = "97.11 bibrelex" } @article{g-wecss-91 -, author = "D. Goldberg" -, title = "What Every Computer Scientist Should Know About Floating-Point Arithmetic" -, journal = "ACM Comput. Surv." -, volume = 23 -, number = 1 -, month = mar -, year = 1991 -, pages = "5--48" -, keywords = "numerical precision, stability, robustness" -, update = "97.11 bibrelex, 93.09 held" +, author = "D. Goldberg" +, title = "What Every Computer Scientist Should Know About Floating-Point Arithmetic" +, journal = "ACM Comput. Surv." +, volume = 23 +, number = 1 +, month = mar +, year = 1991 +, pages = "5--48" +, keywords = "numerical precision, stability, robustness" +, update = "97.11 bibrelex, 93.09 held" } @book{ghlw-afr-95 -, title = "Algorithmic Foundations of Robotics" -, editor = "K. Goldberg and D. Halperin and J.-C. Latombe and R. Wilson" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1995 -, update = "97.03 schwarzkopf" +, title = "Algorithmic Foundations of Robotics" +, editor = "K. Goldberg and D. Halperin and J.-C. Latombe and R. Wilson" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1995 +, update = "97.03 schwarzkopf" } @article{g-oppws-93 -, author = "Kenneth Y. Goldberg" -, title = "Orienting Polygonal Parts Without Sensors" -, journal = "Algorithmica" -, volume = 10 -, year = 1993 -, pages = "201--225" -, keywords = "part orientation, parallel-jaw gripper" -, update = "96.09 romanik" +, author = "Kenneth Y. Goldberg" +, title = "Orienting Polygonal Parts Without Sensors" +, journal = "Algorithmica" +, volume = 10 +, year = 1993 +, pages = "201--225" +, keywords = "part orientation, parallel-jaw gripper" +, update = "96.09 romanik" } @phdthesis{g-sprm-90 -, author = "K. Y. Goldberg" -, title = "Stochastic plans for robotic manipulation" -, school = "School Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, month = aug -, year = 1990 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "K. Y. Goldberg" +, title = "Stochastic plans for robotic manipulation" +, school = "School Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, month = aug +, year = 1990 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @inproceedings{gme-gsppp-91 -, author = "K. Y. Goldberg and M. T. Mason and M. A. Erdmann" -, title = "Generating stochastic plans for a programmable parts feeder" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, month = apr -, year = 1991 -, update = "98.07 bibrelex" +, author = "K. Y. Goldberg and M. T. Mason and M. A. Erdmann" +, title = "Generating stochastic plans for a programmable parts feeder" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, month = apr +, year = 1991 +, update = "98.07 bibrelex" } @article{g-ipp-35 -, author = "M. Goldberg" -, title = "The isoperimetric problem for polyhedra" -, journal = "Tohoku Mathematics Journal" -, volume = 40 -, year = 1935 -, pages = "226--236" -, update = "97.11 bibrelex" +, author = "M. Goldberg" +, title = "The isoperimetric problem for polyhedra" +, journal = "Tohoku Mathematics Journal" +, volume = 40 +, year = 1935 +, pages = "226--236" +, update = "97.11 bibrelex" } @article{g-mpmmm-73 -, author = "M. Goldberg" -, title = "The minimum path and the minimum motion of a moved line segments" -, journal = "Math. Mag." -, volume = 46 -, year = 1973 -, pages = "31--34" -, update = "98.03 bibrelex" +, author = "M. Goldberg" +, title = "The minimum path and the minimum motion of a moved line segments" +, journal = "Math. Mag." +, volume = 46 +, year = 1973 +, pages = "31--34" +, update = "98.03 bibrelex" } @inproceedings{gz-odapp-95 -, author = "T. Goldberg and U. Zwick" -, title = "Optimal Deterministic Approximate Parallel Prefix Sums and Their Applications" -, booktitle = "Proc. 4th IEEE Israel Symp. on Theory of Computing and Systems" -, year = 1995 -, pages = "220--228" -, update = "96.09 orourke" +, author = "T. Goldberg and U. Zwick" +, title = "Optimal Deterministic Approximate Parallel Prefix Sums and Their Applications" +, booktitle = "Proc. 4th IEEE Israel Symp. on Theory of Computing and Systems" +, year = 1995 +, pages = "220--228" +, update = "96.09 orourke" } @article{glv-op-91 -, author = "Bruce L. Golden and Larry Levy and Rakesh Vohra" -, title = "The Orienteering Problem" -, journal = "Naval Res. Logistics" -, volume = 34 -, year = 1991 -, pages = "307--318" -, keywords = "TSP, generalized TSP" -, update = "98.03 mitchell" +, author = "Bruce L. Golden and Larry Levy and Rakesh Vohra" +, title = "The Orienteering Problem" +, journal = "Naval Res. Logistics" +, volume = 34 +, year = 1991 +, pages = "307--318" +, keywords = "TSP, generalized TSP" +, update = "98.03 mitchell" } @inproceedings{g-ocsa-93 -, author = "D. Goldfarb" -, title = "On the complexity of the simplex algorithm" -, editor = "S. Gomez" -, booktitle = "IV. Workshop on Numerical Analysis and Optimization" -, site = "Oaxaca, Mexico" -, year = 1993 -, update = "97.03 gaertner+salinger" +, author = "D. Goldfarb" +, title = "On the complexity of the simplex algorithm" +, editor = "S. Gomez" +, booktitle = "IV. Workshop on Numerical Analysis and Optimization" +, site = "Oaxaca, Mexico" +, year = 1993 +, update = "97.03 gaertner+salinger" } @inproceedings{g-csa-94 -, author = "Donald Goldfarb" -, title = "On the complexity of the simplex algorithm" -, booktitle = "Advances in optimization and numerical analysis" -, publisher = "Kluwer" -, address = "Dordrecht" -, year = 1994 -, pages = "25--38" -, update = "97.11 bibrelex" +, author = "Donald Goldfarb" +, title = "On the complexity of the simplex algorithm" +, booktitle = "Advances in optimization and numerical analysis" +, publisher = "Kluwer" +, address = "Dordrecht" +, year = 1994 +, pages = "25--38" +, update = "97.11 bibrelex" } @techreport{g-wccsv-83 -, author = "D. Goldfarb" -, title = "Worst case complexity of the shadow vertex simplex al\-go\-rithm" -, type = "Preprint" -, institution = "Co\-lum\-bia University" -, year = 1983 -, update = "97.03 gaertner+salinger" +, author = "D. Goldfarb" +, title = "Worst case complexity of the shadow vertex simplex al\-go\-rithm" +, type = "Preprint" +, institution = "Co\-lum\-bia University" +, year = 1983 +, update = "97.03 gaertner+salinger" } @article{gs-wcbse-79 -, author = "D. Goldfarb and W. Y. Sit" -, title = "Worst case behavior of the steepest edge simplex method" -, journal = "Discrete Appl. Math." -, volume = 1 -, year = 1979 -, pages = "277--285" -, update = "97.03 gaertner+salinger" +, author = "D. Goldfarb and W. Y. Sit" +, title = "Worst case behavior of the steepest edge simplex method" +, journal = "Discrete Appl. Math." +, volume = 1 +, year = 1979 +, pages = "277--285" +, update = "97.03 gaertner+salinger" } @article{gmtf-nrtcr-89 -, author = "J. Goldfeather and S. Molnar and G. Turk and H. Fuchs" -, title = "Near Real-Time {CSG} Rendering Using Tree Normalization and Geometric Pruning" -, journal = "IEEE Comput. Graph. Appl." -, volume = 9 -, number = 3 -, year = 1989 -, pages = "20--28" -, update = "93.09 goodrich" +, author = "J. Goldfeather and S. Molnar and G. Turk and H. Fuchs" +, title = "Near Real-Time {CSG} Rendering Using Tree Normalization and Geometric Pruning" +, journal = "IEEE Comput. Graph. Appl." +, volume = 9 +, number = 3 +, year = 1989 +, pages = "20--28" +, update = "93.09 goodrich" } @article{g-idppr-67 -, author = "J. R. Goldman" -, title = "Infinitely divisible point processes in {$R^{n}$}" -, journal = "J. Math. Anal. Appl." -, volume = 17 -, year = 1967 -, pages = "133--146" +, author = "J. R. Goldman" +, title = "Infinitely divisible point processes in {$R^{n}$}" +, journal = "J. Math. Anal. Appl." +, volume = 17 +, year = 1967 +, pages = "133--146" } @incollection{g-rssm-87 -, author = "R. Goldman" -, title = "The role of surfaces in solid geometric modeling" -, editor = "G. E. Farin" -, booktitle = "Geometric Modeling: Algorithms and New Trends" -, publisher = "Society for Industrial and Appliced Mathematics" -, year = 1987 -, pages = "69--90" -, update = "98.07 bibrelex" +, author = "R. Goldman" +, title = "The role of surfaces in solid geometric modeling" +, editor = "G. E. Farin" +, booktitle = "Geometric Modeling: Algorithms and New Trends" +, publisher = "Society for Industrial and Appliced Mathematics" +, year = 1987 +, pages = "69--90" +, update = "98.07 bibrelex" } @article{g-mrtii-85 -, author = "R. N. Goldman" -, title = "The methods of resolvents: a technique for the implicitization, inversion and intersection of non-planar, parametric, rational cubic curves" -, journal = "Comput. Aided Geom. Design" -, volume = "??" -, year = 1985 -, update = "98.03 bibrelex" +, author = "R. N. Goldman" +, title = "The methods of resolvents: a technique for the implicitization, inversion and intersection of non-planar, parametric, rational cubic curves" +, journal = "Comput. Aided Geom. Design" +, volume = "??" +, year = 1985 +, update = "98.03 bibrelex" } @article{gs-sarpc-85 -, author = "Ronald N. Goldman and Thomas W. Sederberg" -, title = "Some Applications of Resultants to Problems in Computational Geometry" -, journal = "Visual Comput." -, volume = 1 -, number = 2 -, month = oct -, year = 1985 -, pages = "101--107" +, author = "Ronald N. Goldman and Thomas W. Sederberg" +, title = "Some Applications of Resultants to Problems in Computational Geometry" +, journal = "Visual Comput." +, volume = 1 +, number = 2 +, month = oct +, year = 1985 +, pages = "101--107" } @article{g-segta-89 -, author = "S. Goldman" -, title = "A Space Efficient Greedy Triangulation Algorithm" -, journal = "Inform. Process. Lett." -, volume = 31 -, number = 4 -, year = 1989 -, pages = "191--196" -, annote = "CDT is used to compute GT. DT is constrained to - include all the edges of the GT so far. Next edge can - be found in time O(n)." -, abstract = "We show that the greedy triangulation of n points in - the plane can be computed in O(n**2 log n) time and - O(n) memory and storage. In particular we show that, by - maintaining a generalized Delaunay triangulation, the - next edge to be added to the greedy triangulation can - be found in O(n) time. Furthermore, if the generalized - Delaunay triangulation of a simple polygon could be - computed in O(n) time, our algorithm would compute the - greedy triangulation in O(n**2) time. (Author abstract) - 13 Refs." +, author = "S. Goldman" +, title = "A Space Efficient Greedy Triangulation Algorithm" +, journal = "Inform. Process. Lett." +, volume = 31 +, number = 4 +, year = 1989 +, pages = "191--196" +, annote = "CDT is used to compute GT. DT is constrained to + include all the edges of the GT so far. Next edge can + be found in time O(n)." +, abstract = "We show that the greedy triangulation of n points in + the plane can be computed in O(n**2 log n) time and + O(n) memory and storage. In particular we show that, by + maintaining a generalized Delaunay triangulation, the + next edge to be added to the greedy triangulation can + be found in O(n) time. Furthermore, if the generalized + Delaunay triangulation of a simple polygon could be + computed in O(n) time, our algorithm would compute the + greedy triangulation in O(n**2) time. (Author abstract) + 13 Refs." } @article{gsa-vetii-84 -, author = "R. Goldmann and T. Sederberg and R. Anderson" -, title = "Vector elimination: a technique for implicitization, inversion and intersection of planar parametric rational polynomial curves" -, journal = "Comput. Aided Geom. Design" -, volume = 1 -, year = 1984 -, pages = "327--356" -, update = "98.03 bibrelex" +, author = "R. Goldmann and T. Sederberg and R. Anderson" +, title = "Vector elimination: a technique for implicitization, inversion and intersection of planar parametric rational polynomial curves" +, journal = "Comput. Aided Geom. Design" +, volume = 1 +, year = 1984 +, pages = "327--356" +, update = "98.03 bibrelex" } @article{gs-acohr-87 -, author = "J. Goldsmith and J. Salmon" -, title = "Automatic Creation of Object Hierarchies for Ray Tracing" -, journal = "IEEE Comput. Graph. Appl." -, volume = 7 -, year = 1987 -, pages = "14--20" -, update = "98.03 mitchell" +, author = "J. Goldsmith and J. Salmon" +, title = "Automatic Creation of Object Hierarchies for Ray Tracing" +, journal = "IEEE Comput. Graph. Appl." +, volume = 7 +, year = 1987 +, pages = "14--20" +, update = "98.03 mitchell" } @book{g-cra-67 -, author = "A. A. Goldstein" -, title = "Constructive Real Analysis" -, publisher = "Harper \& Row Publishers" -, address = "New York, NY" -, year = 1967 -, update = "98.03 bibrelex" +, author = "A. A. Goldstein" +, title = "Constructive Real Analysis" +, publisher = "Harper \& Row Publishers" +, address = "New York, NY" +, year = 1967 +, update = "98.03 bibrelex" } @techreport{gr-ibtsp-87 -, author = "A. S. Goldstein and E. M. Reingold" -, title = "Improved bounds on the traveling salesman problem in the unit cube" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1987 -, update = "97.11 bibrelex" +, author = "A. S. Goldstein and E. M. Reingold" +, title = "Improved bounds on the traveling salesman problem in the unit cube" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1987 +, update = "97.11 bibrelex" } @book{g-cm-80 -, author = "H. Goldstein" -, title = "Classical Mechanics" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1980 -, update = "98.07 bibrelex" +, author = "H. Goldstein" +, title = "Classical Mechanics" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1980 +, update = "98.07 bibrelex" } @inproceedings{grsy-pqlc-97 -, author = "J. Goldstein and R. Ramakrishnan and U. Shaft and J.-B. Yu" -, title = "Processing queries by linear constraints" -, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." -, year = 1997 -, pages = "257--267" -, update = "97.07 agarwal" +, author = "J. Goldstein and R. Ramakrishnan and U. Shaft and J.-B. Yu" +, title = "Processing queries by linear constraints" +, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." +, year = 1997 +, pages = "257--267" +, update = "97.07 agarwal" } @techreport{gpsw-3dwmu-87 -, author = "M. Goldstein and F. G. Pin and G. de Saussure and C. R. Weisbin" -, title = "3-D World Modeling With Updating Capability Based on Combinatorial Geometry" -, type = "Technical {Report}" -, number = "CESAR-87/02" -, institution = "Oak Ridge National Laboratory" -, year = 1987 -, update = "93.09 milone+mitchell" +, author = "M. Goldstein and F. G. Pin and G. de Saussure and C. R. Weisbin" +, title = "3-D World Modeling With Updating Capability Based on Combinatorial Geometry" +, type = "Technical {Report}" +, number = "CESAR-87/02" +, institution = "Oak Ridge National Laboratory" +, year = 1987 +, update = "93.09 milone+mitchell" } @article{g-aslpr-95 -, author = "M. Goldwasser" -, title = "A survey of linear programming in randomized subexponential time" -, journal = "SIGACT News" -, volume = 26 -, number = 2 -, year = 1995 -, pages = "96--104" -, update = "97.03 agarwal+gaertner+salinger" +, author = "M. Goldwasser" +, title = "A survey of linear programming in randomized subexponential time" +, journal = "SIGACT News" +, volume = 26 +, number = 2 +, year = 1995 +, pages = "96--104" +, update = "97.03 agarwal+gaertner+salinger" } @inproceedings{g-imap-95 -, author = "Michael Goldwasser" -, title = "An Implementation for Maintaining Arrangements of Polygons" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C32--C33" -, keywords = "randomized incremental algorithm" -, cites = "ci-tsc-84, egs-oplms-86, m-cgitr-93, rggr-esaac-94, s-sfira-91, s-opgfg-91, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Michael Goldwasser" +, title = "An Implementation for Maintaining Arrangements of Polygons" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C32--C33" +, keywords = "randomized incremental algorithm" +, cites = "ci-tsc-84, egs-oplms-86, m-cgitr-93, rggr-esaac-94, s-sfira-91, s-opgfg-91, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @techreport{g-pacpa-88 -, author = "M. Golin" -, title = "Probabilistic analysis of a closest pair algorithm" -, type = "Technical {Report}" -, number = "TR-194-88" -, institution = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, month = dec -, year = 1988 -, update = "98.07 bibrelex" +, author = "M. Golin" +, title = "Probabilistic analysis of a closest pair algorithm" +, type = "Technical {Report}" +, number = "TR-194-88" +, institution = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, month = dec +, year = 1988 +, update = "98.07 bibrelex" } @techreport{grss-rdsdc-93t -, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" -, title = "Randomized data structures for the dynamic closest-pair problem" -, type = "Report" -, number = "MPI-I-93-102" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 +, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" +, title = "Randomized data structures for the dynamic closest-pair problem" +, type = "Report" +, number = "MPI-I-93-102" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 } @inproceedings{grss-rdsdc-93i -, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" -, title = "Randomized Data Structures for the Dynamic Closest-Pair Problem" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1993 -, pages = "301--310" -, update = "98.11 bibrelex, 93.05 smid" +, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" +, title = "Randomized Data Structures for the Dynamic Closest-Pair Problem" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1993 +, pages = "301--310" +, update = "98.11 bibrelex, 93.05 smid" } @article{grss-rdsdc-98 -, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" -, title = "Randomized Data Structures for the Dynamic Closest-Pair Problem" -, journal = "SIAM J. Comput." -, volume = 27 -, year = 1998 -, pages = "1036--1072" -, update = "98.07 smid" +, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" +, title = "Randomized Data Structures for the Dynamic Closest-Pair Problem" +, journal = "SIAM J. Comput." +, volume = 27 +, year = 1998 +, pages = "1036--1072" +, update = "98.07 smid" } @techreport{grss-sracp-92 -, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" -, title = "Simple randomized algorithms for closest pair problems" -, type = "Report" -, number = "MPI-I-92-155" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 -, precedes = "grss-sracp-93" -, update = "98.11 bibrelex" +, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" +, title = "Simple randomized algorithms for closest pair problems" +, type = "Report" +, number = "MPI-I-92-155" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 +, precedes = "grss-sracp-93" +, update = "98.11 bibrelex" } @inproceedings{grss-sracp-93 -, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" -, title = "Simple randomized algorithms for closest pair problems" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "246--251" -, succeeds = "grss-sracp-92" -, cites = "b-lbact-83, bs-dcms-76, dm-nuchf-90, cms-frric-92i, grss-rdsdc-93i, km-srsac-91, ls-ekcpo-92i, sss-oaolc-92, s-sdlpc-91, r-pa-76, s-barg-92, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" +, title = "Simple randomized algorithms for closest pair problems" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "246--251" +, succeeds = "grss-sracp-92" +, cites = "b-lbact-83, bs-dcms-76, dm-nuchf-90, cms-frric-92i, grss-rdsdc-93i, km-srsac-91, ls-ekcpo-92i, sss-oaolc-92, s-sdlpc-91, r-pa-76, s-barg-92, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{grss-sracp-95 -, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" -, title = "Simple randomized algorithms for closest pair problems" -, journal = "Nordic J. Comput." -, volume = 2 -, year = 1995 -, pages = "3--27" -, update = "95.09 smid" +, author = "M. Golin and R. Raman and C. Schwarz and M. Smid" +, title = "Simple randomized algorithms for closest pair problems" +, journal = "Nordic J. Comput." +, volume = 2 +, year = 1995 +, pages = "3--27" +, update = "95.09 smid" } @inproceedings{gs-asyec-88 -, author = "M. Golin and R. Sedgewick" -, title = "Analysis of a simple yet efficient convex hull algorithm" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "153--163" -, cites = "bs-dclet-78, dt-nleta-81, e-nchap-77, gs-prp-85, ol-fcbch-80, ps-cgi-85, rs-udkhv-63, r-pma-76, s-a-83, ZZZ" -, update = "98.03 bibrelex" +, author = "M. Golin and R. Sedgewick" +, title = "Analysis of a simple yet efficient convex hull algorithm" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "153--163" +, cites = "bs-dclet-78, dt-nleta-81, e-nchap-77, gs-prp-85, ol-fcbch-80, ps-cgi-85, rs-udkhv-63, r-pma-76, s-a-83, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{g-dcppa-92 -, author = "M. J. Golin" -, title = "Dynamic closest pairs -- a probabilistic approach" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "340--351" -, update = "94.01 smid" +, author = "M. J. Golin" +, title = "Dynamic closest pairs -- a probabilistic approach" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "340--351" +, update = "94.01 smid" } @article{g-hmmcb-93 -, author = "M. J. Golin" -, title = "How many maxima can there be?" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, year = 1993 -, pages = "335--353" -, update = "96.09 devillers" +, author = "M. J. Golin" +, title = "How many maxima can there be?" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, year = 1993 +, pages = "335--353" +, update = "96.09 devillers" } @inproceedings{g-ltmwt-96 -, author = "Mordecai J. Golin" -, title = "Limit theorems for minimum-weight triangulations, other {Euclidean} functionals, and probabilistic recurrence relations" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "252--260" -, keywords = "uniform distribution, MWT, degree probabilities of Delaunay triangulations" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Mordecai J. Golin" +, title = "Limit theorems for minimum-weight triangulations, other {Euclidean} functionals, and probabilistic recurrence relations" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "252--260" +, keywords = "uniform distribution, MWT, degree probabilities of Delaunay triangulations" +, update = "96.09 agarwal, 96.01 mitchell" } @inproceedings{g-mcr-92 -, author = "Mordecai J. Golin" -, title = "Maxima in Convex Regions" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "23--27" -, update = "00.03 bibrelex" +, author = "Mordecai J. Golin" +, title = "Maxima in Convex Regions" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "23--27" +, update = "00.03 bibrelex" } @inproceedings{g-mcr-93 -, author = "M. J. Golin" -, title = "Maxima in Convex Regions" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "352--360" -, keywords = "probabilistic geometry" -, update = "93.09 rote, 93.05 smid" +, author = "M. J. Golin" +, title = "Maxima in Convex Regions" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "352--360" +, keywords = "probabilistic geometry" +, update = "93.09 rote, 93.05 smid" } @techreport{g-pacpa-91 -, author = "M. J. Golin" -, title = "Probabilistic analyses of closest pair algorithms" -, type = "Report" -, number = 1471 -, institution = "INRIA" -, address = "Rocquencourt, France" -, year = 1991 +, author = "M. J. Golin" +, title = "Probabilistic analyses of closest pair algorithms" +, type = "Report" +, number = 1471 +, institution = "INRIA" +, address = "Rocquencourt, France" +, year = 1991 } @phdthesis{g-paga-90 -, author = "M. J. Golin" -, title = "Probabilistic analysis of geometric algorithms" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NY" -, year = 1990 -, keywords = "doctoral thesis" -, update = "93.05 smid" +, author = "M. J. Golin" +, title = "Probabilistic analysis of geometric algorithms" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NY" +, year = 1990 +, keywords = "doctoral thesis" +, update = "93.05 smid" } @inproceedings{gn-ac3vd-01 -, author = "Mordecai J. Golin and Hyeon-Suk Na" -, title = "On the Average Complexity of 3D-Voronoi Diagrams of Random Points on Convex Polytopes" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "127--135" -, update = "02.03 devillers" +, author = "Mordecai J. Golin and Hyeon-Suk Na" +, title = "On the Average Complexity of 3D-Voronoi Diagrams of Random Points on Convex Polytopes" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "127--135" +, update = "02.03 devillers" } @inproceedings{gss-fdcg-92 -, author = "M. J. Golin and C. Schwarz and M. Smid" -, title = "Further dynamic computational geometry" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "154--159" -, cites = "ako-iqco-91, a-dcg-83, dsst-mdsp-89, fl-vdmpp-91, ps-cgi-85, k-nrdsc-92, st-pplup-86, st-dsdt-83, ZZZ" -, update = "98.07 bibrelex" +, author = "M. J. Golin and C. Schwarz and M. Smid" +, title = "Further dynamic computational geometry" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "154--159" +, cites = "ako-iqco-91, a-dcg-83, dsst-mdsp-89, fl-vdmpp-91, ps-cgi-85, k-nrdsc-92, st-pplup-86, st-dsdt-83, ZZZ" +, update = "98.07 bibrelex" } @book{g-p-65 -, author = "S. W. Golomb" -, title = "Polyominoes" -, publisher = "Charles Scribner's Sons" -, address = "New York" -, year = 1965 -, update = "98.07 bibrelex" +, author = "S. W. Golomb" +, title = "Polyominoes" +, publisher = "Charles Scribner's Sons" +, address = "New York" +, year = 1965 +, update = "98.07 bibrelex" } @book{g-p-66 -, author = "S. W. Golomb" -, title = "Polyominoes" -, publisher = "Georges Allen and Unwin Ltd" -, address = "London, UK" -, year = 1966 -, update = "97.11 bibrelex" +, author = "S. W. Golomb" +, title = "Polyominoes" +, publisher = "Georges Allen and Unwin Ltd" +, address = "London, UK" +, year = 1966 +, update = "97.11 bibrelex" } @book{gl-mc-83 -, author = "G. Golub and C. van Loan" -, title = "Matrix Computations" -, publisher = "Johns Hopkins Univ. Press" -, address = "Baltimore, MA" -, year = 1983 -, update = "97.11 bibrelex" +, author = "G. Golub and C. van Loan" +, title = "Matrix Computations" +, publisher = "Johns Hopkins Univ. Press" +, address = "Baltimore, MA" +, year = 1983 +, update = "97.11 bibrelex" } @book{gl-mc-89 -, author = "G. H. Golub and C. F. van Loan" -, title = "Matrix computations" -, edition = "2nd" -, publisher = "Johns Hopkins University Press" -, address = "Baltimore, MD" -, year = 1989 -, update = "98.03 bibrelex" +, author = "G. H. Golub and C. F. van Loan" +, title = "Matrix computations" +, edition = "2nd" +, publisher = "Johns Hopkins University Press" +, address = "Baltimore, MD" +, year = 1989 +, update = "98.03 bibrelex" } @book{gg-smts-73 -, author = "M. Golubitsky and V. Guillemin" -, title = "Stable mappings and their singularities" -, publisher = "Springer-Verlag" -, year = 1973 -, update = "97.11 bibrelex" +, author = "M. Golubitsky and V. Guillemin" +, title = "Stable mappings and their singularities" +, publisher = "Springer-Verlag" +, year = 1973 +, update = "97.11 bibrelex" } @book{g-agtpg-80 -, author = "M. C. Golumbic" -, title = "Algorithmic Graph Theory and Perfect Graphs" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1980 +, author = "M. C. Golumbic" +, title = "Algorithmic Graph Theory and Perfect Graphs" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1980 } @inproceedings{gm-gigt-82 -, author = "M. C. Golumbic and C. L. Monma" -, title = "A generalization of interval graphs with tolerances" -, booktitle = "Proc. 13th Southeastern Conf. on Combinatorics, Graph Theory and Computing" -, site = "Winnipeg" -, series = "Congr. Numer." -, volume = 35 -, organization = "Utilitas Math." -, year = 1982 -, pages = "321--331" -, update = "98.11 bibrelex" +, author = "M. C. Golumbic and C. L. Monma" +, title = "A generalization of interval graphs with tolerances" +, booktitle = "Proc. 13th Southeastern Conf. on Combinatorics, Graph Theory and Computing" +, site = "Winnipeg" +, series = "Congr. Numer." +, volume = 35 +, organization = "Utilitas Math." +, year = 1982 +, pages = "321--331" +, update = "98.11 bibrelex" } @article{gmt-tg-84 -, author = "M. C. Golumbic and C. L. Monma and W. T. Trotter" -, title = "Tolerance graphs" -, journal = "Discrete Appl. Math." -, volume = 9 -, year = 1984 -, pages = "157--170" -, update = "98.11 bibrelex" +, author = "M. C. Golumbic and C. L. Monma and W. T. Trotter" +, title = "Tolerance graphs" +, journal = "Discrete Appl. Math." +, volume = 9 +, year = 1984 +, pages = "157--170" +, update = "98.11 bibrelex" } @article{gg-dmtds-79 -, author = "D. Gomez and A. Guzman" -, title = "Digital Model for Three-Dimensional Surface Representation" -, journal = "Geo-Process." -, volume = 1 -, year = 1979 -, pages = "53--70" -, update = "98.11 bibrelex" +, author = "D. Gomez and A. Guzman" +, title = "Digital Model for Three-Dimensional Surface Representation" +, journal = "Geo-Process." +, volume = 1 +, year = 1979 +, pages = "53--70" +, update = "98.11 bibrelex" } @inproceedings{g-lttii-95 -, author = "Teresa G{\'o}mez-Diaz" -, title = "Let {$T$} be a Triangle, Is It Isosceles?" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "47--51" -, update = "00.03 bibrelex" +, author = "Teresa G{\'o}mez-Diaz" +, title = "Let {$T$} be a Triangle, Is It Isosceles?" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "47--51" +, update = "00.03 bibrelex" } @inproceedings{ghrst-icp-98 -, author = "Francisco G{\'o}mez and Ferran Hurtado and Suneeta Ramaswami and Vera Sacrist{\'a}n and Godfried Toussaint" -, title = "Implicit Convex Polygons" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "83--85" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Francisco G{\'o}mez and Ferran Hurtado and Suneeta Ramaswami and Vera Sacrist{\'a}n and Godfried Toussaint" +, title = "Implicit Convex Polygons" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "83--85" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{grt-rnacg-97 -, author = "F. Gomez and S. Ramaswami and G. Toussaint" -, title = "On Removing Non-degeneracy Assumptions in Computational Geometry" -, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1203 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "86--99" -, update = "00.03 devillers, 98.03 mitchell" +, author = "F. Gomez and S. Ramaswami and G. Toussaint" +, title = "On Removing Non-degeneracy Assumptions in Computational Geometry" +, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1203 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "86--99" +, update = "00.03 devillers, 98.03 mitchell" } @book{gb-hads-91 -, author = "G. H. Gonnet and R. Baeza-Yates" -, title = "Handbook of Algorithms and Data Structures" -, publisher = "Addison-Wesley" -, year = 1991 -, update = "97.03 tamassia" +, author = "G. H. Gonnet and R. Baeza-Yates" +, title = "Handbook of Algorithms and Data Structures" +, publisher = "Addison-Wesley" +, year = 1991 +, update = "97.03 tamassia" } @article{gmw-ddssl-83 -, author = "G. H. Gonnet and J. I. Munro and D. Wood" -, title = "Direct dynamic structures for some line segment problems" -, journal = "Comput. Vision Graph. Image Process." -, volume = "??" -, year = 1983 -, pages = "178--186" +, author = "G. H. Gonnet and J. I. Munro and D. Wood" +, title = "Direct dynamic structures for some line segment problems" +, journal = "Comput. Vision Graph. Image Process." +, volume = "??" +, year = 1983 +, pages = "178--186" } @book{g-itsn-86 -, author = "Harry Gonshor" -, title = "An introduction to the theory of surreal numbers" -, series = "London Mathematical Society lecture note series" -, volume = 110 -, publisher = "Cambridge University Press" -, address = "Cambridge" -, year = 1986 -, update = "98.11 bibrelex" +, author = "Harry Gonshor" +, title = "An introduction to the theory of surreal numbers" +, series = "London Mathematical Society lecture note series" +, volume = 110 +, publisher = "Cambridge University Press" +, address = "Cambridge" +, year = 1986 +, update = "98.11 bibrelex" } @article{g-sdilp-91 -, author = "C. C. Gonzaga" -, title = "Search directions for interior linear-programming methods" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "153--181" +, author = "C. C. Gonzaga" +, title = "Search directions for interior linear-programming methods" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "153--181" } @techreport{grsz-odgpa-89 -, author = "T. M. Gonzales and M. Razzazi and M. Shing and S. Zheng" -, title = "On optimal $d$-guillotine partitions approximating hyperrectangular partitions" -, type = "Technical {Report}" -, number = "89-25" -, institution = "Dept. Comput. Sci., Univ. California" -, address = "Santa Barbara, CA" -, month = oct -, year = 1989 -, update = "98.07 bibrelex" +, author = "T. M. Gonzales and M. Razzazi and M. Shing and S. Zheng" +, title = "On optimal $d$-guillotine partitions approximating hyperrectangular partitions" +, type = "Technical {Report}" +, number = "89-25" +, institution = "Dept. Comput. Sci., Univ. California" +, address = "Santa Barbara, CA" +, month = oct +, year = 1989 +, update = "98.07 bibrelex" } @techreport{g-asrp-75 -, author = "T. Gonzalez" -, title = "Algorithms on sets and related problems" -, type = "Technical {Report}" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Oklahoma" -, address = "Norman, OK" -, year = 1975 +, author = "T. Gonzalez" +, title = "Algorithms on sets and related problems" +, type = "Technical {Report}" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Oklahoma" +, address = "Norman, OK" +, year = 1975 } @article{g-cmmid-85 -, author = "T. Gonzalez" -, title = "Clustering to minimize the maximum intercluster distance" -, journal = "Theoret. Comput. Sci." -, volume = 38 -, year = 1985 -, pages = "293--306" -, update = "96.05 agarwal" +, author = "T. Gonzalez" +, title = "Clustering to minimize the maximum intercluster distance" +, journal = "Theoret. Comput. Sci." +, volume = 38 +, year = 1985 +, pages = "293--306" +, update = "96.05 agarwal" } @article{g-cspms-91 -, author = "T. Gonzalez" -, title = "Covering a set of points in multidimensional space" -, journal = "Inform. Process. Lett." -, volume = 40 -, year = 1991 -, pages = "181--188" -, update = "96.09 devillers, 96.05 agarwal" +, author = "T. Gonzalez" +, title = "Covering a set of points in multidimensional space" +, journal = "Inform. Process. Lett." +, volume = 40 +, year = 1991 +, pages = "181--188" +, update = "96.09 devillers, 96.05 agarwal" } @inproceedings{gr-aaphp-91 -, author = "T. Gonzalez and M. Razzazi" -, title = "An approximation algorithm for partitioning a hyperrectilinear polytope with holes" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "183--186" -, keywords = "orthogonal hyperplane segments" -, cites = "dc-fhmel-86, dps-melgr-86, grz-edcaa-89, gz-bprp-85, gz-aaprp-85, gz-ibrgp-89, l-hmelr-83, lprs-melpr-82, l-mltfr-85, l-fhmlr-86, r-ppis-82, ZZZ" -, update = "98.07 bibrelex" +, author = "T. Gonzalez and M. Razzazi" +, title = "An approximation algorithm for partitioning a hyperrectilinear polytope with holes" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "183--186" +, keywords = "orthogonal hyperplane segments" +, cites = "dc-fhmel-86, dps-melgr-86, grz-edcaa-89, gz-bprp-85, gz-aaprp-85, gz-ibrgp-89, l-hmelr-83, lprs-melpr-82, l-mltfr-85, l-fhmlr-86, r-ppis-82, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{gr-pacdt-91 -, author = "Teofilo Gonzalez and Mohammadreza Razzazi" -, title = "Properties and algorithms for constrained {Delaunay} triangulations" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "114--117" -, cites = "c-tpca-82, c-cdt-87, j-oacdt-88, j-ccdt-88, f-savd-87, gs-pmgsc-85, l-scsi-77, ls-tacdt-80, ll-gdtpg-86, nf-scbut-83, ps-cgi-85, s-cdtvd-89, sh-cpp-75, ws-oacdt-87, ZZZ" -, update = "98.07 bibrelex" +, author = "Teofilo Gonzalez and Mohammadreza Razzazi" +, title = "Properties and algorithms for constrained {Delaunay} triangulations" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "114--117" +, cites = "c-tpca-82, c-cdt-87, j-oacdt-88, j-ccdt-88, f-savd-87, gs-pmgsc-85, l-scsi-77, ls-tacdt-80, ll-gdtpg-86, nf-scbut-83, ps-cgi-85, s-cdtvd-89, sh-cpp-75, ws-oacdt-87, ZZZ" +, update = "98.07 bibrelex" } @article{grsz-ogpao-94 -, author = "T. Gonzalez and M. Razzazi and M.-T. Shing and S.-Q. Zheng" -, title = "On optimal guillotine partitions approximating optimal {$d$}-box partitions" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, number = 1 -, year = 1994 -, pages = "1--12" -, keywords = "approximation algorithms, d-box partitions, polynomial time complexity, guillotine partitions" -, update = "98.03 mitchell" -, annote = "Abstract: +, author = "T. Gonzalez and M. Razzazi and M.-T. Shing and S.-Q. Zheng" +, title = "On optimal guillotine partitions approximating optimal {$d$}-box partitions" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, number = 1 +, year = 1994 +, pages = "1--12" +, keywords = "approximation algorithms, d-box partitions, polynomial time complexity, guillotine partitions" +, update = "98.03 mitchell" +, annote = "Abstract: Given a set of n points, P, in E(d)(the plane when d = 2) that lie inside a d-box (rectangle when d = 2) R, we study the problem of partitioning R into d-boxes by introducing a set of orthogonal @@ -67218,5035 +67218,5035 @@ @article{grsz-ogpao-94 } @techreport{grz-edcaa-89 -, author = "T. Gonzalez and M. Razzazi and S.-Q. Zheng" -, title = "An efficient divide-and-conquer approximation algorithm for hyperrectangular partitions" -, type = "Report" -, number = "TR-89-24" -, institution = "CS Dept., UCSB" -, month = oct -, year = 1989 -, precedes = "grz-edcaa-90, gz-edcap-93" -, update = "98.07 bibrelex" +, author = "T. Gonzalez and M. Razzazi and S.-Q. Zheng" +, title = "An efficient divide-and-conquer approximation algorithm for hyperrectangular partitions" +, type = "Report" +, number = "TR-89-24" +, institution = "CS Dept., UCSB" +, month = oct +, year = 1989 +, precedes = "grz-edcaa-90, gz-edcap-93" +, update = "98.07 bibrelex" } @inproceedings{grz-edcaa-90 -, author = "T. Gonzalez and M. Razzazi and S.-Q. Zheng" -, title = "An efficient divide-and-conquer approximation algorithm for hyperrectangular partitions" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "214--217" -, succeeds = "grz-edcaa-89" -, precedes = "gz-edcap-93" -, cites = "dc-fhmel-86, dps-melgr-86, grsz-odgpa-89, gz-bprp-85, gz-aaprp-85, gz-ibrgp-89, k-ubsir-80, l-hmelr-83, lprs-melpr-82, l-mltfr-85, l-fhmlr-86, r-ppis-82, ZZZ" -, update = "98.07 bibrelex" +, author = "T. Gonzalez and M. Razzazi and S.-Q. Zheng" +, title = "An efficient divide-and-conquer approximation algorithm for hyperrectangular partitions" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "214--217" +, succeeds = "grz-edcaa-89" +, precedes = "gz-edcap-93" +, cites = "dc-fhmel-86, dps-melgr-86, grsz-odgpa-89, gz-bprp-85, gz-aaprp-85, gz-ibrgp-89, k-ubsir-80, l-hmelr-83, lprs-melpr-82, l-mltfr-85, l-fhmlr-86, r-ppis-82, ZZZ" +, update = "98.07 bibrelex" } @article{gz-edcap-93 -, author = "T. Gonzalez and S.-Q. Zheng" -, title = "An efficient divide and conquer approximation algorithm for partitioning into {D}-boxes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "417--428" -, succeeds = "grz-edcaa-89, grz-edcaa-90" -, update = "98.07 bibrelex, 96.09 devillers" +, author = "T. Gonzalez and S.-Q. Zheng" +, title = "An efficient divide and conquer approximation algorithm for partitioning into {D}-boxes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "417--428" +, succeeds = "grz-edcaa-89, grz-edcaa-90" +, update = "98.07 bibrelex, 96.09 devillers" } @article{gz-aapri-90 -, author = "T. Gonzalez and S.-Q. Zheng" -, title = "Approximation algorithms for partitioning a rectangle with interior points" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "11--42" -, succeeds = "gz-bprp-85" +, author = "T. Gonzalez and S.-Q. Zheng" +, title = "Approximation algorithms for partitioning a rectangle with interior points" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "11--42" +, succeeds = "gz-bprp-85" } @techreport{gz-aaprp-85 -, author = "T. Gonzalez and S.-Q. Zheng" -, title = "Approximation Algorithms for Partitioning Rectilinear Polygons" -, type = "Technical {Report}" -, institution = "Univ. California" -, address = "Santa Barbara, CA" -, month = mar -, year = 1985 -, update = "97.11 bibrelex" +, author = "T. Gonzalez and S.-Q. Zheng" +, title = "Approximation Algorithms for Partitioning Rectilinear Polygons" +, type = "Technical {Report}" +, institution = "Univ. California" +, address = "Santa Barbara, CA" +, month = mar +, year = 1985 +, update = "97.11 bibrelex" } @inproceedings{gz-bprp-85 -, author = "T. Gonzalez and S.-Q. Zheng" -, title = "Bounds for partitioning rectilinear polygons" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "281--287" -, precedes = "gz-aapri-90" -, cites = "ahu-daca-74, at-eadps-81, cd-dpicp-79, gjpt-tsp-78, gz-aaprp-85, lllmp-tddo2-79, llmp-tddo1-79, lprs-melpr-82, r-ppis-82, s-oadrp-82, ZZZ" -, update = "97.11 bibrelex" +, author = "T. Gonzalez and S.-Q. Zheng" +, title = "Bounds for partitioning rectilinear polygons" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "281--287" +, precedes = "gz-aapri-90" +, cites = "ahu-daca-74, at-eadps-81, cd-dpicp-79, gjpt-tsp-78, gz-aaprp-85, lllmp-tddo2-79, llmp-tddo1-79, lprs-melpr-82, r-ppis-82, s-oadrp-82, ZZZ" +, update = "97.11 bibrelex" } @article{gz-ibrgp-89 -, author = "T. Gonzalez and S.-Q. Zheng" -, title = "Improved Bounds for Rectangular and Guillotine Partitions" -, journal = "J. Symbolic Comput." -, volume = 7 -, year = 1989 -, pages = "591--610" -, update = "95.01 mitchell" +, author = "T. Gonzalez and S.-Q. Zheng" +, title = "Improved Bounds for Rectangular and Guillotine Partitions" +, journal = "J. Symbolic Comput." +, volume = 7 +, year = 1989 +, pages = "591--610" +, update = "95.01 mitchell" } @inproceedings{g-olddd-92 -, author = "Teofilo F. Gonzalez" -, title = "The On-Line $d$-Dimensional Dictionary Problem" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "376--385" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "Teofilo F. Gonzalez" +, title = "The On-Line $d$-Dimensional Dictionary Problem" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "376--385" +, update = "94.01 smid, 93.09 milone+mitchell" } @article{gg-tpgnt-85 -, author = "V. Ramirez Gonzalez and M. L. Marquez Garcia" -, title = "Triangulation in the plane with given nodes. Triangulacion en el plano con nodos arbitrarios. Triangulation in der Ebene mit vorgegebenen Knoten" -, journal = "Epsilon" -, volume = 5 -, month = sep -, year = 1985 -, pages = "57--64" -, abstract = "An algorithm for triangulation in the plane with given - nodes is presented, as well as a program in BASIC and a - calculated example. Es wird ein Algorithmus entwickelt, - der bei gegebenen Punkten in der Ebene eine Zerlegung - des Polygons in Dreiecke berechnet. Ein Programm in - BASIC und ein Beispiel sind beigegeben." +, author = "V. Ramirez Gonzalez and M. L. Marquez Garcia" +, title = "Triangulation in the plane with given nodes. Triangulacion en el plano con nodos arbitrarios. Triangulation in der Ebene mit vorgegebenen Knoten" +, journal = "Epsilon" +, volume = 5 +, month = sep +, year = 1985 +, pages = "57--64" +, abstract = "An algorithm for triangulation in the plane with given + nodes is presented, as well as a program in BASIC and a + calculated example. Es wird ein Algorithmus entwickelt, + der bei gegebenen Punkten in der Ebene eine Zerlegung + des Polygons in Dreiecke berechnet. Ein Programm in + BASIC und ein Beispiel sind beigegeben." } @inproceedings{gl-spbce-94 -, author = "Laureano Gonz{\'a}lez-Vega and Henri Lombardi" -, title = "Splines and {Pierce-Birkhoff} Conjecture: The Evaluation of Continuous and Piecewise Polynomial Functions" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "49--52" -, update = "00.11 smid, 00.07 icking" +, author = "Laureano Gonz{\'a}lez-Vega and Henri Lombardi" +, title = "Splines and {Pierce-Birkhoff} Conjecture: The Evaluation of Continuous and Piecewise Polynomial Functions" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "49--52" +, update = "00.11 smid, 00.07 icking" } @book{gps-emg-93 -, author = "M. F. Goodchild and B. O. Parks and L. T. Steyaert" -, title = "Environmental Modeling with GIS" -, publisher = "Oxford University Press" -, address = "New York" -, year = 1993 -, update = "98.03 agarwal" +, author = "M. F. Goodchild and B. O. Parks and L. T. Steyaert" +, title = "Environmental Modeling with GIS" +, publisher = "Oxford University Press" +, address = "New York" +, year = 1993 +, update = "98.03 agarwal" } @article{g-he-83 -, author = "P. R. Goodey" -, title = "Homothetic Ellipsoids" -, journal = "Math. Proc. Camb. Phil. Soc." -, volume = 93 -, year = 1983 -, pages = "25--34" -, update = "99.03 bibrelex" +, author = "P. R. Goodey" +, title = "Homothetic Ellipsoids" +, journal = "Math. Proc. Camb. Phil. Soc." +, volume = 93 +, year = 1983 +, pages = "25--34" +, update = "99.03 bibrelex" } @article{g-lcpcn-81 -, author = "J. E. Goodman" -, title = "On the largest convex polygon contained in a non-convex $n$-gon or how to peel a potato" -, journal = "Geom. Dedicata" -, volume = 11 -, year = 1981 -, pages = "99--106" +, author = "J. E. Goodman" +, title = "On the largest convex polygon contained in a non-convex $n$-gon or how to peel a potato" +, journal = "Geom. Dedicata" +, volume = 11 +, year = 1981 +, pages = "99--106" } @article{g-pcbgs-80 -, author = "J. E. Goodman" -, title = "Proof of a conjecture of {Burr}, {Gr{\"u}nbaum} and {Sloane}" -, journal = "Discrete Math." -, volume = 32 -, year = 1980 -, pages = "27--35" -, update = "97.11 bibrelex" +, author = "J. E. Goodman" +, title = "Proof of a conjecture of {Burr}, {Gr{\"u}nbaum} and {Sloane}" +, journal = "Discrete Math." +, volume = 32 +, year = 1980 +, pages = "27--35" +, update = "97.11 bibrelex" } @incollection{g-pa-97 -, author = "J. E. Goodman" -, title = "Pseudoline arrangements" -, chapter = 5 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "83--110" -, update = "97.11 orourke" +, author = "J. E. Goodman" +, title = "Pseudoline arrangements" +, chapter = 5 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "83--110" +, update = "97.11 orourke" } @inproceedings{g-cots-89 -, author = "J. E. Goodman" -, title = "The complexity of order types: a survey" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 1 +, author = "J. E. Goodman" +, title = "The complexity of order types: a survey" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 1 } @book{go-chdcg-97 -, title = "Handbook of Discrete and Computational Geometry" -, editor = "J. E. Goodman and J. O'Rourke" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, comments = "52 chapters, xiv + 991 pages; +, title = "Handbook of Discrete and Computational Geometry" +, editor = "J. E. Goodman and J. O'Rourke" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, comments = "52 chapters, xiv + 991 pages; published July 1997" -, update = "97.11 icking+orourke, 97.07 orourke, 97.03 orourke+tamassia" +, update = "97.11 icking+orourke, 97.07 orourke, 97.03 orourke+tamassia" } @article{gp-cdpb-88 -, author = "J. E. Goodman and J. Pach" -, title = "Cell decomposition of polytopes by bending" -, journal = "Israel J. Math." -, volume = 64 -, number = 2 -, year = 1988 -, pages = "129--138" -, update = "98.11 bibrelex, 96.09 orourke" +, author = "J. E. Goodman and J. Pach" +, title = "Cell decomposition of polytopes by bending" +, journal = "Israel J. Math." +, volume = 64 +, number = 2 +, year = 1988 +, pages = "129--138" +, update = "98.11 bibrelex, 96.09 orourke" } @article{gpy-mclmr-89 -, author = "J. E. Goodman and J. Pach and C. K. Yap" -, title = "Mountain climbing, ladder moving, and the ring width of a polygon" -, journal = "Amer. Math. Monthly" -, volume = 96 -, year = 1989 -, pages = "494--510" +, author = "J. E. Goodman and J. Pach and C. K. Yap" +, title = "Mountain climbing, ladder moving, and the ring width of a polygon" +, journal = "Amer. Math. Monthly" +, volume = 96 +, year = 1989 +, pages = "494--510" } @article{gp-tod-82 -, author = "J. E. Goodman and R. Pollack" -, title = "A theorem of ordered duality" -, journal = "Geom. Dedicata" -, volume = 12 -, year = 1982 -, pages = "63--74" +, author = "J. E. Goodman and R. Pollack" +, title = "A theorem of ordered duality" +, journal = "Geom. Dedicata" +, volume = 12 +, year = 1982 +, pages = "63--74" } @incollection{gp-asotd-93 -, author = "J. E. Goodman and R. Pollack" -, title = "Allowable Sequences and Order Types in Discrete and Computational Geometry" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "103--134" -, keywords = "survey paper, allowable sequences, order types, pseudolines, stretchability, geometric sorting, isotopy conjecture, lattice realization" -, update = "93.09 erickson" +, author = "J. E. Goodman and R. Pollack" +, title = "Allowable Sequences and Order Types in Discrete and Computational Geometry" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "103--134" +, keywords = "survey paper, allowable sequences, order types, pseudolines, stretchability, geometric sorting, isotopy conjecture, lattice realization" +, update = "93.09 erickson" } @article{gp-ftcagm-95 -, author = "Jacob E. Goodman and Richard Pollack" -, title = "Foundations of a Theory of Convexity on Affine {G}rassmann Manifolds" -, journal = "Mathematika" -, volume = 42 -, year = 1995 -, pages = "305--328" -, update = "01.07 wenger" +, author = "Jacob E. Goodman and Richard Pollack" +, title = "Foundations of a Theory of Convexity on Affine {G}rassmann Manifolds" +, journal = "Mathematika" +, volume = 42 +, year = 1995 +, pages = "305--328" +, update = "01.07 wenger" } @book{gp-gs-82 -, author = "J. E. Goodman and R. Pollack" -, title = "Geometric Sorting" -, series = "Annals of Discrete Geometry and Convexity" -, publisher = "New York Academie of Sciences" -, year = 1982 -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "Geometric Sorting" +, series = "Annals of Discrete Geometry and Convexity" +, publisher = "New York Academie of Sciences" +, year = 1982 +, update = "97.11 bibrelex" } @techreport{gp-htthd-86 -, author = "J. E. Goodman and R. Pollack" -, title = "Hadwiger's Transversal Theorem in Higher Dimensions" -, type = "Manuscript" -, institution = "??" -, year = 1986 -, update = "98.03 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "Hadwiger's Transversal Theorem in Higher Dimensions" +, type = "Manuscript" +, institution = "??" +, year = 1986 +, update = "98.03 bibrelex" } @article{gp-htthd-88 -, author = "J. E. Goodman and R. Pollack" -, title = "{Hadwiger}'s transversal theorem in higher dimensions" -, journal = "J. Amer. Math. Soc." -, volume = 1 -, year = 1988 -, pages = "301--309" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "{Hadwiger}'s transversal theorem in higher dimensions" +, journal = "J. Amer. Math. Soc." +, volume = 1 +, year = 1988 +, pages = "301--309" +, update = "97.11 bibrelex" } @article{gp-httpa-82 -, author = "J. E. Goodman and R. Pollack" -, title = "Helly-type theorems for pseudoline arrangements in {$P^{2}$}" -, journal = "J. Combin. Theory Ser. A" -, volume = 32 -, year = 1982 -, pages = "1--19" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "Helly-type theorems for pseudoline arrangements in {$P^{2}$}" +, journal = "J. Combin. Theory Ser. A" +, volume = 32 +, year = 1982 +, pages = "1--19" +, update = "97.11 bibrelex" } @inproceedings{gp-mpc-85 -, author = "J. E. Goodman and R. Pollack" -, title = "Modelling planar configurations" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "121--124" -, cites = "ag-nssfs-86, bp-ddnpp-79, c-sutds-82, c-ddnpp-83, eos-calha-83, ew-nlsfs-85, gp-ccncp-82, gp-httpa-82, gp-nkssn-84, gp-ms-83, gp-ubcpr-86, g-as-72, s-nrdec-84, u-2nnpd-82, ZZZ" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "Modelling planar configurations" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "121--124" +, cites = "ag-nssfs-86, bp-ddnpp-79, c-sutds-82, c-ddnpp-83, eos-calha-83, ew-nlsfs-85, gp-ccncp-82, gp-httpa-82, gp-nkssn-84, gp-ms-83, gp-ubcpr-86, g-as-72, s-nrdec-84, u-2nnpd-82, ZZZ" +, update = "97.11 bibrelex" } @article{gp-ms-83 -, author = "J. E. Goodman and R. Pollack" -, title = "Multidimensional sorting" -, journal = "SIAM J. Comput." -, volume = 12 -, number = 3 -, month = aug -, year = 1983 -, pages = "484--507" -, update = "98.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "Multidimensional sorting" +, journal = "SIAM J. Comput." +, volume = 12 +, number = 3 +, month = aug +, year = 1983 +, pages = "484--507" +, update = "98.11 bibrelex" } @article{gp-ccncp-80 -, author = "J. E. Goodman and R. Pollack" -, title = "On the combinatorial classification of nondegenerate configurations in the plane" -, journal = "J. Combin. Theory Ser. A" -, volume = 29 -, year = 1980 -, pages = "220--235" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "On the combinatorial classification of nondegenerate configurations in the plane" +, journal = "J. Combin. Theory Ser. A" +, volume = 29 +, year = 1980 +, pages = "220--235" +, update = "97.11 bibrelex" } @article{gp-ccncp-82 -, author = "J. E. Goodman and R. Pollack" -, title = "On the combinatorial classification of nondegenerate configurations in the plane" -, journal = "J. Combin. Theory Ser. A" -, volume = 29 -, year = 1982 -, pages = "63--74" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "On the combinatorial classification of nondegenerate configurations in the plane" +, journal = "J. Combin. Theory Ser. A" +, volume = 29 +, year = 1982 +, pages = "63--74" +, update = "97.11 bibrelex" } @article{gp-nkssn-84 -, author = "J. E. Goodman and R. Pollack" -, title = "On the number of $k$-subsets of a set of $n$ points in the plane" -, journal = "J. Combin. Theory Ser. A" -, volume = 36 -, year = 1984 -, pages = "101--104" -, update = "94.09 bernal" +, author = "J. E. Goodman and R. Pollack" +, title = "On the number of $k$-subsets of a set of $n$ points in the plane" +, journal = "J. Combin. Theory Ser. A" +, volume = 36 +, year = 1984 +, pages = "101--104" +, update = "94.09 bernal" } @article{gp-prpa-85 -, author = "J. E. Goodman and R. Pollack" -, title = "Polynomial realization of pseudoline arrangements" -, journal = "Commun. Pure Appl. Math." -, volume = 38 -, year = 1985 -, pages = "725--732" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "Polynomial realization of pseudoline arrangements" +, journal = "Commun. Pure Appl. Math." +, volume = 38 +, year = 1985 +, pages = "725--732" +, update = "97.11 bibrelex" } @article{gp-pgcsc-80 -, author = "J. E. Goodman and R. Pollack" -, title = "Proof of {Gr{\"u}nbaum}'s conjecture on the stretchability of certain arrangements of pseudolines" -, journal = "J. Combin. Theory Ser. A" -, volume = 29 -, year = 1980 -, pages = "385--390" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "Proof of {Gr{\"u}nbaum}'s conjecture on the stretchability of certain arrangements of pseudolines" +, journal = "J. Combin. Theory Ser. A" +, volume = 29 +, year = 1980 +, pages = "385--390" +, update = "97.11 bibrelex" } @article{gp-sccca-84 -, author = "J. E. Goodman and R. Pollack" -, title = "Semispaces of Configurations, Cell Complexes of Arrangements" -, journal = "J. Combin. Theory Ser. A" -, volume = 37 -, year = 1984 -, pages = "257--293" -, update = "96.05 orourke" +, author = "J. E. Goodman and R. Pollack" +, title = "Semispaces of Configurations, Cell Complexes of Arrangements" +, journal = "J. Combin. Theory Ser. A" +, volume = 37 +, year = 1984 +, pages = "257--293" +, update = "96.05 orourke" } @article{gp-taafp-86 -, author = "J. E. Goodman and R. Pollack" -, title = "There are asymptotically fewer polytopes than we thought" -, journal = "Bull. Amer. Math. Soc." -, volume = 14 -, year = 1986 -, pages = "127--129" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "There are asymptotically fewer polytopes than we thought" +, journal = "Bull. Amer. Math. Soc." +, volume = 14 +, year = 1986 +, pages = "127--129" +, update = "97.11 bibrelex" } @article{gp-tpdnd-81 -, author = "J. E. Goodman and R. Pollack" -, title = "Three points do not determine a (pseudo-) plane" -, journal = "J. Combin. Theory Ser. A" -, volume = 31 -, year = 1981 -, pages = "215--218" -, update = "01.07 wenger, 98.03 bibrelex" +, author = "J. E. Goodman and R. Pollack" +, title = "Three points do not determine a (pseudo-) plane" +, journal = "J. Combin. Theory Ser. A" +, volume = 31 +, year = 1981 +, pages = "215--218" +, update = "01.07 wenger, 98.03 bibrelex" } @article{gp-ubcpr-86 -, author = "J. E. Goodman and R. Pollack" -, title = "Upper bounds for configurations and polytopes in {$\Re^d$}" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "219--227" +, author = "J. E. Goodman and R. Pollack" +, title = "Upper bounds for configurations and polytopes in {$\Re^d$}" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "219--227" } @book{gps-dcgpdsy-91 -, title = "Discrete and Computational Geometry: Papers from the Dimacs Special Year" -, editor = "J. E. Goodman and R. Pollack and W. Steiger" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, publisher = "American Mathematical Society, Association for Computing Machinery" -, year = 1991 -, update = "99.11 bibrelex, 96.05 pocchiola" +, title = "Discrete and Computational Geometry: Papers from the Dimacs Special Year" +, editor = "J. E. Goodman and R. Pollack and W. Steiger" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, publisher = "American Mathematical Society, Association for Computing Machinery" +, year = 1991 +, update = "99.11 bibrelex, 96.05 pocchiola" } @inproceedings{gps-crotr-89 -, author = "J. E. Goodman and R. Pollack and B. Sturmfels" -, title = "Coordinate representation of order types requires exponential storage" -, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." -, year = 1989 -, pages = "405--410" -, precedes = "gps-iscir-90" +, author = "J. E. Goodman and R. Pollack and B. Sturmfels" +, title = "Coordinate representation of order types requires exponential storage" +, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." +, year = 1989 +, pages = "405--410" +, precedes = "gps-iscir-90" } @article{gps-iscir-90 -, author = "J. E. Goodman and R. Pollack and B. Sturmfels" -, title = "The intrinsic spread of a configuration in {$\Re^d$}" -, journal = "J. Amer. Math. Soc." -, volume = 3 -, year = 1990 -, pages = "639--651" -, succeeds = "gps-crotr-89" -, update = "97.03 rote" +, author = "J. E. Goodman and R. Pollack and B. Sturmfels" +, title = "The intrinsic spread of a configuration in {$\Re^d$}" +, journal = "J. Amer. Math. Soc." +, volume = 3 +, year = 1990 +, pages = "639--651" +, succeeds = "gps-crotr-89" +, update = "97.03 rote" } @inproceedings{gpw-bngpi-94 -, author = "J. E. Goodman and R. Pollack and R. Wenger" -, title = "Bounding the Number of Geometric Permutations Induced by $k$-Transversals" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "192--197" -, cites = "bpr-ncdfp-95, bcr-gar-87, cgppsw-ccht-90, es-mnwsn-90, gp-ubcpr-86, gpw-gtt-93, kll-dwsdc-92, l-it-49, w-ubgpc-90, ZZZ" -, update = "98.03 bibrelex, 95.09 wenger, 94.09 jones, 94.01 jones" +, author = "J. E. Goodman and R. Pollack and R. Wenger" +, title = "Bounding the Number of Geometric Permutations Induced by $k$-Transversals" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "192--197" +, cites = "bpr-ncdfp-95, bcr-gar-87, cgppsw-ccht-90, es-mnwsn-90, gp-ubcpr-86, gpw-gtt-93, kll-dwsdc-92, l-it-49, w-ubgpc-90, ZZZ" +, update = "98.03 bibrelex, 95.09 wenger, 94.09 jones, 94.01 jones" } @article{gpw-bngpi-96 -, author = "Jacob E. Goodman and Richard Pollack and Rephael Wenger" -, title = "Bounding the Number of Geometric Permutations Induced by $k$-Transversals" -, journal = "J. Combin. Theory Ser. A" -, volume = 75 -, year = 1996 -, pages = "187--197" -, update = "01.07 wenger" +, author = "Jacob E. Goodman and Richard Pollack and Rephael Wenger" +, title = "Bounding the Number of Geometric Permutations Induced by $k$-Transversals" +, journal = "J. Combin. Theory Ser. A" +, volume = 75 +, year = 1996 +, pages = "187--197" +, update = "01.07 wenger" } @techreport{gpw-gtt-91 -, author = "J. E. Goodman and R. Pollack and R. Wenger" -, title = "Geometric Transversal Theory" -, type = "Technical {Report}" -, number = "91-76" -, institution = "DIMACS, Rutgers Univ." -, year = 1991 -, precedes = "gpw-gtt-93" -, update = "95.09 wenger, 93.09 milone+mitchell" +, author = "J. E. Goodman and R. Pollack and R. Wenger" +, title = "Geometric Transversal Theory" +, type = "Technical {Report}" +, number = "91-76" +, institution = "DIMACS, Rutgers Univ." +, year = 1991 +, precedes = "gpw-gtt-93" +, update = "95.09 wenger, 93.09 milone+mitchell" } @incollection{gpw-gtt-93 -, author = "J. E. Goodman and R. Pollack and R. Wenger" -, title = "Geometric Transversal Theory" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, address = "Heidelberg, Germany" -, year = 1993 -, pages = "163--198" -, keywords = "survey paper, transversal, Helly's theorem, Hadwiger's theorem, combinatorial complexity, Davenport-Schinzel sequences" -, succeeds = "gpw-gtt-91" -, update = "95.09 wenger, 93.09 erickson" +, author = "J. E. Goodman and R. Pollack and R. Wenger" +, title = "Geometric Transversal Theory" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, address = "Heidelberg, Germany" +, year = 1993 +, pages = "163--198" +, keywords = "survey paper, transversal, Helly's theorem, Hadwiger's theorem, combinatorial complexity, Davenport-Schinzel sequences" +, succeeds = "gpw-gtt-91" +, update = "95.09 wenger, 93.09 erickson" } @article{gpw-occsl-95 -, author = "J. E. Goodman and R. Pollack and R. Wenger" -, title = "On the Connected Components of the Space of Line Transversals to a Family of Convex Sets" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "469--476" -, update = "95.09 wenger" +, author = "J. E. Goodman and R. Pollack and R. Wenger" +, title = "On the Connected Components of the Space of Line Transversals to a Family of Convex Sets" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "469--476" +, update = "95.09 wenger" } @article{gpwz-atp-94 -, author = "J. E. Goodman and R. Pollack and R. Wenger and T. Zamfirescu" -, title = "Arrangements and Topological Planes" -, journal = "Amer. Math. Monthly" -, volume = 101 -, number = 10 -, year = 1994 -, pages = "866--878" -, update = "95.09 agarwal, 93.09 erickson" +, author = "J. E. Goodman and R. Pollack and R. Wenger and T. Zamfirescu" +, title = "Arrangements and Topological Planes" +, journal = "Amer. Math. Monthly" +, volume = 101 +, number = 10 +, year = 1994 +, pages = "866--878" +, update = "95.09 agarwal, 93.09 erickson" } @inproceedings{gpwz-eaes-91 -, author = "J. E. Goodman and R. Pollack and R. Wenger and T. Zamfirescu" -, title = "Every arrangement extends to a spread" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "191--194" -, cites = "g-as-72, s-cm-51, ZZZ" -, update = "98.07 bibrelex" +, author = "J. E. Goodman and R. Pollack and R. Wenger and T. Zamfirescu" +, title = "Every arrangement extends to a spread" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "191--194" +, cites = "g-as-72, s-cm-51, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{gpwz-tiutp-92 -, author = "J. E. Goodman and R. Pollack and R. Wenger and T. Zamfirescu" -, title = "There is a universal topological plane" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "171--176" -, cites = "eg-tsa-89, gp-pgcsc-80, gpwz-eaes-91, g-as-72, h-m-35, h-fggdg-71, l-dtdpe-26, sh-sac-91, ZZZ" -, update = "97.11 bibrelex" +, author = "J. E. Goodman and R. Pollack and R. Wenger and T. Zamfirescu" +, title = "There is a universal topological plane" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "171--176" +, cites = "eg-tsa-89, gp-pgcsc-80, gpwz-eaes-91, g-as-72, h-m-35, h-fggdg-71, l-dtdpe-26, sh-sac-91, ZZZ" +, update = "97.11 bibrelex" } @book{g-ifo-68 -, author = "J. W. Goodman" -, title = "Introduction to {Fourier} optics" -, publisher = "McGraw-Hill" -, address = "New York, NY" -, year = 1968 -, update = "97.11 bibrelex" +, author = "J. W. Goodman" +, title = "Introduction to {Fourier} optics" +, publisher = "McGraw-Hill" +, address = "New York, NY" +, year = 1968 +, update = "97.11 bibrelex" } @article{gr-ssaip-88 -, author = "S. D. Goodman and W. T. Rhodes" -, title = "Symbolic substituiton applications to image processing" -, journal = "Applied Optics" -, volume = 27 -, year = 1988 -, pages = "1708--1714" -, update = "98.07 bibrelex" +, author = "S. D. Goodman and W. T. Rhodes" +, title = "Symbolic substituiton applications to image processing" +, journal = "Applied Optics" +, volume = 27 +, year = 1988 +, pages = "1708--1714" +, update = "98.07 bibrelex" } @inproceedings{gght-srlse-97 -, author = "M. Goodrich and L. J. Guibas and J. Hershberger and P. Tanenbaum" -, title = "Snap Rounding Line Segments Efficiently in Two and Three Dimensions" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "284--293" -, cites = "am-rsss-94, abdpy-enmcs-95, bo-arcgi-79, b-carcg-81, c-rga-92, cms-frric-93, em-sstcd-90, f-nsa2d-95, fm-nsala-91, gy-frcg-86, gm-rad-95, gks-ricdv-92, gss-egbra-89, gs-pmgsc-85, h-psifp-93, hhk-tirgc-88, lpt-rpqiv-96, ms-temsi-92, m-dpggt-89, m-fppap-88, s-barga-93, si-gafpa-88, si-tdpga-89" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "M. Goodrich and L. J. Guibas and J. Hershberger and P. Tanenbaum" +, title = "Snap Rounding Line Segments Efficiently in Two and Three Dimensions" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "284--293" +, cites = "am-rsss-94, abdpy-enmcs-95, bo-arcgi-79, b-carcg-81, c-rga-92, cms-frric-93, em-sstcd-90, f-nsa2d-95, fm-nsala-91, gy-frcg-86, gm-rad-95, gks-ricdv-92, gss-egbra-89, gs-pmgsc-85, h-psifp-93, hhk-tirgc-88, lpt-rpqiv-96, ms-temsi-92, m-dpggt-89, m-fppap-88, s-barga-93, si-gafpa-88, si-tdpga-89" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @book{gks-cg-99 -, title = "Computational Geometry" -, editor = "Michael Goodrich and Rolf Klein and Raimund Seidel" -, series = "Dagstuhl-Seminar-Report" -, volume = 233 -, publisher = "Internat. Begegnungs- und Forschungszentrum f{\"u}r Informatik" -, address = "Schloss Dagstuhl, Germany" -, year = 1999 -, url = "ftp://ftp.dagstuhl.de/pub/Reports/99/99102.ps.gz" -, update = "01.04 icking" +, title = "Computational Geometry" +, editor = "Michael Goodrich and Rolf Klein and Raimund Seidel" +, series = "Dagstuhl-Seminar-Report" +, volume = 233 +, publisher = "Internat. Begegnungs- und Forschungszentrum f{\"u}r Informatik" +, address = "Schloss Dagstuhl, Germany" +, year = 1999 +, url = "ftp://ftp.dagstuhl.de/pub/Reports/99/99102.ps.gz" +, update = "01.04 icking" } @inproceedings{gt-dtdpl-91 -, author = "M. Goodrich and R. Tamassia" -, title = "Dynamic trees and dynamic point location" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "523--533" -, keywords = "point location, on-line" +, author = "M. Goodrich and R. Tamassia" +, title = "Dynamic trees and dynamic point location" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "523--533" +, keywords = "point location, on-line" } @article{agk-paess-94 -, author = "M. J. Atallah Michael T. Goodrich and S .R. Kosaraju" -, title = "Parallel Algorithms for Evaluating Sequences of Set-Manipulation Operations" -, journal = "J. ACM" -, volume = 41 -, number = 6 -, year = 1994 -, pages = "1049--1088" -, update = "97.03 tamassia" +, author = "M. J. Atallah Michael T. Goodrich and S .R. Kosaraju" +, title = "Parallel Algorithms for Evaluating Sequences of Set-Manipulation Operations" +, journal = "J. ACM" +, volume = 41 +, number = 6 +, year = 1994 +, pages = "1049--1088" +, update = "97.03 tamassia" } @article{g-pahlh-92 -, author = "M. T. Goodrich" -, title = "A Polygonal Approach to Hidden-Line and Hidden-Surface Elimination" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 54 -, number = 1 -, year = 1992 -, pages = "1--12" -, update = "94.01 goodrich" +, author = "M. T. Goodrich" +, title = "A Polygonal Approach to Hidden-Line and Hidden-Surface Elimination" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 54 +, number = 1 +, year = 1992 +, pages = "1--12" +, update = "94.01 goodrich" } @techreport{g-pahle-87 -, author = "M. T. Goodrich" -, title = "A polygonal approach to hidden-line elimination" -, type = "Report" -, number = "TR 87-18" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1987 +, author = "M. T. Goodrich" +, title = "A polygonal approach to hidden-line elimination" +, type = "Report" +, number = "TR 87-18" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1987 } @inproceedings{g-pahle-87i -, author = "M. T. Goodrich" -, title = "A polygonal approach to hidden line elimination" -, booktitle = "Proc. 25th Allerton Conf. Commun. Control Comput." -, year = 1987 -, pages = "849--858" -, update = "97.11 bibrelex" +, author = "M. T. Goodrich" +, title = "A polygonal approach to hidden line elimination" +, booktitle = "Proc. 25th Allerton Conf. Commun. Control Comput." +, year = 1987 +, pages = "849--858" +, update = "97.11 bibrelex" } @article{g-airsm-98 -, author = "M. T. Goodrich" -, title = "An improved ray shooting method for constructive solid geometry models via tree contraction" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1998 -, pages = "1--24" -, update = "98.11 devillers, 97.03 tamassia" +, author = "M. T. Goodrich" +, title = "An improved ray shooting method for constructive solid geometry models via tree contraction" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1998 +, pages = "1--24" +, update = "98.11 devillers, 97.03 tamassia" } @techreport{g-opaan-85 -, author = "M. T. Goodrich" -, title = "An Optimal Parallel Algorithm for the All Nearest-neighbor Problem for a Convex Polygon" -, number = "CSD-TR-533" -, institution = "Dept. Computer Science, Purdue University" -, address = "USA" -, year = 1985 -, update = "93.09 held" +, author = "M. T. Goodrich" +, title = "An Optimal Parallel Algorithm for the All Nearest-neighbor Problem for a Convex Polygon" +, number = "CSD-TR-533" +, institution = "Dept. Computer Science, Purdue University" +, address = "USA" +, year = 1985 +, update = "93.09 held" } @inproceedings{g-apptc-90 -, author = "M. T. Goodrich" -, title = "Applying parallel processing techniques to classification problems in constructive solid geometry" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "118--128" +, author = "M. T. Goodrich" +, title = "Applying parallel processing techniques to classification problems in constructive solid geometry" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "118--128" } @techreport{g-ceps-95 -, author = "M. T. Goodrich" -, title = "Communication-Efficient Parallel Sorting" -, type = "Technical {Report}" -, institution = "Dept. of Computer Science, Johns Hopkins Univeristy" -, year = 1995 -, update = "96.09 orourke" +, author = "M. T. Goodrich" +, title = "Communication-Efficient Parallel Sorting" +, type = "Technical {Report}" +, institution = "Dept. of Computer Science, Johns Hopkins Univeristy" +, year = 1995 +, update = "96.09 orourke" } @techreport{g-ceps-97 -, author = "M. T. Goodrich" -, title = "Communication-efficient parallel sorting" -, type = "Research {Report}, under submission to {\it SICOMP}" -, institution = "Center for Geometric Computing" -, address = "Johns Hopkins Univ." -, year = 1997 -, update = "97.03 tamassia" +, author = "M. T. Goodrich" +, title = "Communication-efficient parallel sorting" +, type = "Research {Report}, under submission to {\it SICOMP}" +, institution = "Center for Geometric Computing" +, address = "Johns Hopkins Univ." +, year = 1997 +, update = "97.03 tamassia" } @inproceedings{g-caop-91 -, author = "M. T. Goodrich" -, title = "Constructing arrangements optimally in parallel" -, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Architect." -, year = 1991 -, pages = "169--179" +, author = "M. T. Goodrich" +, title = "Constructing arrangements optimally in parallel" +, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Architect." +, year = 1991 +, pages = "169--179" } @article{g-caop-93 -, author = "M. T. Goodrich" -, title = "Constructing arrangements optimally in parallel" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "371--385" -, succeeds = "g-caop-91" -, update = "94.01 goodrich" +, author = "M. T. Goodrich" +, title = "Constructing arrangements optimally in parallel" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "371--385" +, succeeds = "g-caop-91" +, update = "94.01 goodrich" } @techreport{g-cchps-91 -, author = "M. T. Goodrich" -, title = "Constructing the convex hull of a partially sorted set of points" -, type = "Technical {Report}" -, number = "91-10" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1991 +, author = "M. T. Goodrich" +, title = "Constructing the convex hull of a partially sorted set of points" +, type = "Technical {Report}" +, number = "91-10" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1991 } @article{g-cchps-93 -, author = "M. T. Goodrich" -, title = "Constructing the Convex Hull of a Partially Sorted Set of Points" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 5 -, month = mar -, year = 1993 -, pages = "267--278" -, update = "93.09 held" +, author = "M. T. Goodrich" +, title = "Constructing the Convex Hull of a Partially Sorted Set of Points" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 5 +, month = mar +, year = 1993 +, pages = "267--278" +, update = "93.09 held" } @phdthesis{g-eptcg-87 -, author = "M. T. Goodrich" -, title = "Efficient parallel techniques for computational geometry" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1987 -, keywords = "parallel computation, convex hull, triangulation, domination, visibility, diameter, proximity, intersection, fractional cascading, doctoral thesis" +, author = "M. T. Goodrich" +, title = "Efficient parallel techniques for computational geometry" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1987 +, keywords = "parallel computation, convex hull, triangulation, domination, visibility, diameter, proximity, intersection, fractional cascading, doctoral thesis" } @inproceedings{g-eplfa-94 -, author = "M. T. Goodrich" -, title = "Efficient Piecewise-Linear Function Approximation Using the Uniform Metric" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "322--331" -, cites = "aaakss-cefns-91, aass-sdp-90, am-rsps-92, ast-apsgo-92, abosy-fmcnp-85, ams-olpqs-92, a-gvdps-89, br-cfssl-69, br-matmm-86, cegghss-rspug-91, cegs-dwclp-92, c-lpot-86, c-sdsno-87, c-pms-88, csss-otass-89, cb-enaaa-80, clr-ia-90, d-ia-63, d-csfs-93, d-ltatt-84, e-acg-87, eg-paspp-88, g-cvpcs-91, gm-paaml-92, gt-drssp-93, gh-ospqs-87, gh-ospqs-89, ghlst-ltavs-87, ghms-apsml-91, hs-fpfsp-91, h-ndssp-91, hs-cmlpg-91, ii-cgmpa-86, ii-oaapl-86a, ii-pacfa-88, j-adsfk-78, k-ealdp-89, lp-esppr-84, lpsssstwy-clcsp-88, msw-sblp-92, m-apcad-83, m-ltalp-83, m-lpltw-84, mo-pca-88, m-aaspt-88, mmp-dgp-87, mpa-csklp-92, mrw-mlpop-90, ms-saps-92, o-agta-87, ps-cgi-85, rt-laso-92, s-sdlpc-91, s-ltaml-86, s-mlppr-87, s-cgfns-89, t-capcp-85, whcl-psapa-93, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "M. T. Goodrich" +, title = "Efficient Piecewise-Linear Function Approximation Using the Uniform Metric" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "322--331" +, cites = "aaakss-cefns-91, aass-sdp-90, am-rsps-92, ast-apsgo-92, abosy-fmcnp-85, ams-olpqs-92, a-gvdps-89, br-cfssl-69, br-matmm-86, cegghss-rspug-91, cegs-dwclp-92, c-lpot-86, c-sdsno-87, c-pms-88, csss-otass-89, cb-enaaa-80, clr-ia-90, d-ia-63, d-csfs-93, d-ltatt-84, e-acg-87, eg-paspp-88, g-cvpcs-91, gm-paaml-92, gt-drssp-93, gh-ospqs-87, gh-ospqs-89, ghlst-ltavs-87, ghms-apsml-91, hs-fpfsp-91, h-ndssp-91, hs-cmlpg-91, ii-cgmpa-86, ii-oaapl-86a, ii-pacfa-88, j-adsfk-78, k-ealdp-89, lp-esppr-84, lpsssstwy-clcsp-88, msw-sblp-92, m-apcad-83, m-ltalp-83, m-lpltw-84, mo-pca-88, m-aaspt-88, mmp-dgp-87, mpa-csklp-92, mrw-mlpop-90, ms-saps-92, o-agta-87, ps-cgi-85, rt-laso-92, s-sdlpc-91, s-ltaml-86, s-mlppr-87, s-cgfns-89, t-capcp-85, whcl-psapa-93, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @article{g-eplfa-95 -, author = "M. T. Goodrich" -, title = "Efficient Piecewise-Linear Function Approximation Using the Uniform Metric" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "445--462" -, succeeds = "g-eplfa-94" -, update = "96.01 smid" +, author = "M. T. Goodrich" +, title = "Efficient Piecewise-Linear Function Approximation Using the Uniform Metric" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "445--462" +, succeeds = "g-eplfa-94" +, update = "96.01 smid" } @article{g-fchsp-87 -, author = "M. T. Goodrich" -, title = "Finding the convex hull of a sorted point set in parallel" -, journal = "Inform. Process. Lett." -, volume = 26 -, year = 1987 -, pages = "176--179" -, keywords = "parallel computation, convex hull, points, divide-and-conquer, two-dimensional" +, author = "M. T. Goodrich" +, title = "Finding the convex hull of a sorted point set in parallel" +, journal = "Inform. Process. Lett." +, volume = 26 +, year = 1987 +, pages = "176--179" +, keywords = "parallel computation, convex hull, points, divide-and-conquer, two-dimensional" } @inproceedings{g-fdplp-96 -, author = "Michael T. Goodrich" -, title = "Fixed-dimensional parallel linear programming via relative epsilon-approximations" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "132--141" -, keywords = "CRCW, PRAM, derandomization, {$\epsilon$}-approximation, geometric random samples, independence" -, update = "97.03 smid, 96.09 agarwal, 96.01 mitchell" +, author = "Michael T. Goodrich" +, title = "Fixed-dimensional parallel linear programming via relative epsilon-approximations" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "132--141" +, keywords = "CRCW, PRAM, derandomization, {$\epsilon$}-approximation, geometric random samples, independence" +, update = "97.03 smid, 96.09 agarwal, 96.01 mitchell" } @inproceedings{g-gpmee-93 -, author = "M. T. Goodrich" -, title = "Geometric partitioning made easier, even in parallel" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "73--82" -, cites = "a-gpia-91t, aass-sdp-90, ast-apsgo-92, as-pm-92, ap-p3dch-92, av-fpahc-79, brs-enasc-89, c-ochan-91, cf-dvrsi-90, cm-dosch-95, cm-ltdao-93, cegs-dwclp-92, c-maeth-52, c-racpq-88, cs-arscg-89, c-sdsno-87, c-pms-88, cg-opapp-92, csss-otass-89, csy-khrp-87, cz-opabd-90, clr-ia-90, dk-pcsh-89, dd-ekdnp-91, dc-hcpc-80, e-acg-87, g-caop-93, hr-gtcb-90, hw-ensrq-87, j-ipa-92, kr-pasmm-90, l-spami-86, l-rrpcw-88, m-cha-91, m-aogdc-91, m-ept-92, mww-deabv-91, m-apcad-83, mnn-pmydp-89, rs-oprat-92, r-tclir-90, sss-chbal-93, s-dfs-72, vc-ucrfe-71, y-ptptc-88, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" +, author = "M. T. Goodrich" +, title = "Geometric partitioning made easier, even in parallel" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "73--82" +, cites = "a-gpia-91t, aass-sdp-90, ast-apsgo-92, as-pm-92, ap-p3dch-92, av-fpahc-79, brs-enasc-89, c-ochan-91, cf-dvrsi-90, cm-dosch-95, cm-ltdao-93, cegs-dwclp-92, c-maeth-52, c-racpq-88, cs-arscg-89, c-sdsno-87, c-pms-88, cg-opapp-92, csss-otass-89, csy-khrp-87, cz-opabd-90, clr-ia-90, dk-pcsh-89, dd-ekdnp-91, dc-hcpc-80, e-acg-87, g-caop-93, hr-gtcb-90, hw-ensrq-87, j-ipa-92, kr-pasmm-90, l-spami-86, l-rrpcw-88, m-cha-91, m-aogdc-91, m-ept-92, mww-deabv-91, m-apcad-83, mnn-pmydp-89, rs-oprat-92, r-tclir-90, sss-chbal-93, s-dfs-72, vc-ucrfe-71, y-ptptc-88, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" } @inproceedings{g-ilspo-89 -, author = "M. T. Goodrich" -, title = "Intersectin line segments in parallel with an output sensitive number of processors" -, booktitle = "Proc. 1st ACM Sympos. Parallel Algorithms Architect." -, year = 1989 -, pages = "127--137" -, update = "97.11 bibrelex" +, author = "M. T. Goodrich" +, title = "Intersectin line segments in parallel with an output sensitive number of processors" +, booktitle = "Proc. 1st ACM Sympos. Parallel Algorithms Architect." +, year = 1989 +, pages = "127--137" +, update = "97.11 bibrelex" } @article{g-ilspo-91 -, author = "M. T. Goodrich" -, title = "Intersecting line segments in parallel with an output-sensitive number of processors" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "737--755" +, author = "M. T. Goodrich" +, title = "Intersecting line segments in parallel with an output-sensitive number of processors" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "737--755" } @incollection{g-pag-97 -, author = "M. T. Goodrich" -, title = "Parallel algorithms in geometry" -, chapter = 36 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "669--682" -, update = "97.11 orourke" +, author = "M. T. Goodrich" +, title = "Parallel algorithms in geometry" +, chapter = 36 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "669--682" +, update = "97.11 orourke" } @inproceedings{g-psppt-92 -, author = "M. T. Goodrich" -, title = "Planar separators and parallel polygon triangulation" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "507--516" +, author = "M. T. Goodrich" +, title = "Planar separators and parallel polygon triangulation" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "507--516" } @article{g-psppt-95 -, author = "M. T. Goodrich" -, title = "Planar separators and parallel polygon triangulation" -, journal = "J. Comput. Syst. Sci." -, volume = 51 -, number = 3 -, year = 1995 -, pages = "374--389" -, update = "97.11 bibrelex, 97.03 tamassia" +, author = "M. T. Goodrich" +, title = "Planar separators and parallel polygon triangulation" +, journal = "J. Comput. Syst. Sci." +, volume = 51 +, number = 3 +, year = 1995 +, pages = "374--389" +, update = "97.11 bibrelex, 97.03 tamassia" } @inproceedings{g-rfsbt-97 -, author = "M. T. Goodrich" -, title = "Randomized fully-scalable {BSP} techniques for multi-searching and convex hull construction" -, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "767--776" -, update = "97.03 tamassia" +, author = "M. T. Goodrich" +, title = "Randomized fully-scalable {BSP} techniques for multi-searching and convex hull construction" +, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "767--776" +, update = "97.03 tamassia" } @techreport{g-tpp-87 -, author = "M. T. Goodrich" -, title = "Triangulating a polygon in parallel" -, type = "Report" -, number = "TR-679" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1987 -, precedes = "g-tpp-89" +, author = "M. T. Goodrich" +, title = "Triangulating a polygon in parallel" +, type = "Report" +, number = "TR-679" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1987 +, precedes = "g-tpp-89" } @article{g-tpp-89 -, author = "M. T. Goodrich" -, title = "Triangulating a polygon in parallel" -, journal = "J. Algorithms" -, volume = 10 -, year = 1989 -, pages = "327--351" -, keywords = "parallel computation, triangulation, polygons, simple, divide-and-conquer, two-dimensional" -, succeeds = "g-tpp-87" +, author = "M. T. Goodrich" +, title = "Triangulating a polygon in parallel" +, journal = "J. Algorithms" +, volume = 10 +, year = 1989 +, pages = "327--351" +, keywords = "parallel computation, triangulation, polygons, simple, divide-and-conquer, two-dimensional" +, succeeds = "g-tpp-87" } @inproceedings{g-uaadp-91 -, author = "M. T. Goodrich" -, title = "Using approximation algorithms to design parallel algorithms that may ignore processor allocation" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "711--722" +, author = "M. T. Goodrich" +, title = "Using approximation algorithms to design parallel algorithms that may ignore processor allocation" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "711--722" } @inproceedings{gao-isost-90 -, author = "M. T. Goodrich and M. J. Atallah and M. H. Overmars" -, title = "An input-size/output-size trade-off in the time complexity of rectilinear hidden-surface removal" -, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 443 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "689--702" -, update = "98.07 agarwal" +, author = "M. T. Goodrich and M. J. Atallah and M. H. Overmars" +, title = "An input-size/output-size trade-off in the time complexity of rectilinear hidden-surface removal" +, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 443 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "689--702" +, update = "98.07 agarwal" } @techreport{gao-osmrh-90 -, author = "M. T. Goodrich and M. J. Atallah and M. H. Overmars" -, title = "Output-Sensitive Methods for Rectilinear Hidden Surface Removal" -, type = "Technical {Report}" -, number = "90-13" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "M. T. Goodrich and M. J. Atallah and M. H. Overmars" +, title = "Output-Sensitive Methods for Rectilinear Hidden Surface Removal" +, type = "Technical {Report}" +, number = "90-13" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, update = "93.09 milone+mitchell" } @article{gao-osmrh-93 -, author = "M. T. Goodrich and M. J. Atallah and M. H. Overmars" -, title = "Output-Sensitive Methods for Rectilinear Hidden Surface Removal" -, journal = "Inform. Comput." -, volume = 107 -, year = 1993 -, pages = "1--24" -, update = "94.01 smid" +, author = "M. T. Goodrich and M. J. Atallah and M. H. Overmars" +, title = "Output-Sensitive Methods for Rectilinear Hidden Surface Removal" +, journal = "Inform. Comput." +, volume = 107 +, year = 1993 +, pages = "1--24" +, update = "94.01 smid" } @inproceedings{ggb-gsmpc-90 -, author = "M. T. Goodrich and M. Ghouse and J. Bright" -, title = "Generalized sweep methods for parallel computational geometry" -, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "280--289" +, author = "M. T. Goodrich and M. Ghouse and J. Bright" +, title = "Generalized sweep methods for parallel computational geometry" +, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "280--289" } @article{ggb-smpcg- -, author = "M. T. Goodrich and M. Ghouse and J. Bright" -, title = "Sweep Methods for Parallel Computational Geometry" -, journal = "Algorithmica" -, note = "To appear" -, update = "97.03 tamassia" +, author = "M. T. Goodrich and M. Ghouse and J. Bright" +, title = "Sweep Methods for Parallel Computational Geometry" +, journal = "Algorithmica" +, note = "To appear" +, update = "97.03 tamassia" } @inproceedings{ghht-apids-98 -, author = "M. T. Goodrich and M. Handy and B. Hudson and R. Tamassia" -, title = "Abstracting Positional Information in Data Structures: Locators and Positions in {JDSL}" -, booktitle = "OOPSLA '98 Technical Notes" -, year = 1998 -, update = "98.11 tamassia" +, author = "M. T. Goodrich and M. Handy and B. Hudson and R. Tamassia" +, title = "Abstracting Positional Information in Data Structures: Locators and Positions in {JDSL}" +, booktitle = "OOPSLA '98 Technical Notes" +, year = 1998 +, update = "98.11 tamassia" } @inproceedings{ghht-aiods-99 -, author = "M. T. Goodrich and M. Handy and B. Hudson and R. Tamassia" -, title = "Accessing the Internal Organization of Data Structures in the {JDSL} Library" -, editor = "M. T. Goodrich and C. C. McGeoch" -, booktitle = "Proc. Workshop on Algorithm Engineering and Experimentation" -, nickname = "ALENEX '99" -, series = "Lecture Notes Comput. Sci." -, volume = 1619 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "124--139" -, update = "00.03 vismara, 99.07 vismara, 98.11 tamassia" +, author = "M. T. Goodrich and M. Handy and B. Hudson and R. Tamassia" +, title = "Accessing the Internal Organization of Data Structures in the {JDSL} Library" +, editor = "M. T. Goodrich and C. C. McGeoch" +, booktitle = "Proc. Workshop on Algorithm Engineering and Experimentation" +, nickname = "ALENEX '99" +, series = "Lecture Notes Comput. Sci." +, volume = 1619 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "124--139" +, update = "00.03 vismara, 99.07 vismara, 98.11 tamassia" } @inproceedings{gk-sppma-89 -, author = "M. T. Goodrich and S. R. Kosaraju" -, title = "Sorting on a parallel pointer machine with applications to set expression evaluation" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "190--196" -, update = "97.03 tamassia" +, author = "M. T. Goodrich and S. R. Kosaraju" +, title = "Sorting on a parallel pointer machine with applications to set expression evaluation" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "190--196" +, update = "97.03 tamassia" } @article{gk-sppma- -, author = "M. T. Goodrich and S. R. Kosaraju" -, title = "Sorting on a Parallel Pointer Machine with Applications to Set Expression Evaluation" -, journal = "J. ACM" -, volume = "??" -, year = "to appear" -, pages = "" -, update = "96.09 orourke" +, author = "M. T. Goodrich and S. R. Kosaraju" +, title = "Sorting on a Parallel Pointer Machine with Applications to Set Expression Evaluation" +, journal = "J. ACM" +, volume = "??" +, year = "to appear" +, pages = "" +, update = "96.09 orourke" } @inproceedings{gmv-appci-93 -, author = "Michael T. Goodrich and Yossi Matias and Uzi Vishkin" -, title = "Approximate Parallel Prefix Computation and Its Applications" -, booktitle = "??" -, publisher = "IEEE Computer Society" -, year = 1993 -, pages = "318--325" -, update = "94.01 jones, 93.09 milone+mitchell" +, author = "Michael T. Goodrich and Yossi Matias and Uzi Vishkin" +, title = "Approximate Parallel Prefix Computation and Its Applications" +, booktitle = "??" +, publisher = "IEEE Computer Society" +, year = 1993 +, pages = "318--325" +, update = "94.01 jones, 93.09 milone+mitchell" } @inproceedings{gmv-opaps-94 -, author = "M. T. Goodrich and Y. Matias and U. Vishkin" -, title = "Optimal Parallel Approximation for Prefix Sums and Integer Sorting" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "241--250" -, update = "96.09 orourke" +, author = "M. T. Goodrich and Y. Matias and U. Vishkin" +, title = "Optimal Parallel Approximation for Prefix Sums and Integer Sorting" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "241--250" +, update = "96.09 orourke" } @techreport{gmos-dtcfd-95 -, author = "M. T. Goodrich and V. Mirelli and M. Orletsky and J. Salowe" -, title = "Decision tree construction in fixed dimensions: being global is hard but local greed is good" -, type = "Technical {Report}" -, institution = "Dept. Computer Sci., Johns Hopkins Univ." -, year = 1995 -, update = "95.05 agarwal" +, author = "M. T. Goodrich and V. Mirelli and M. Orletsky and J. Salowe" +, title = "Decision tree construction in fixed dimensions: being global is hard but local greed is good" +, type = "Technical {Report}" +, institution = "Dept. Computer Sci., Johns Hopkins Univ." +, year = 1995 +, update = "95.05 agarwal" } @article{gmo-pmagp-?? -, author = "M. T. Goodrich and Joseph S. B. Mitchell and M. W. Orletsky" -, title = "Practical Methods for Approximate Geometric Pattern Matching under Rigid Motion" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "??" -, number = "??" -, year = "??" -, pages = "to appear" -, succeeds = "gmo-pmagp-94" -, update = "98.03 mitchell" +, author = "M. T. Goodrich and Joseph S. B. Mitchell and M. W. Orletsky" +, title = "Practical Methods for Approximate Geometric Pattern Matching under Rigid Motion" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "??" +, number = "??" +, year = "??" +, pages = "to appear" +, succeeds = "gmo-pmagp-94" +, update = "98.03 mitchell" } @inproceedings{gmo-pmagp-94 -, author = "M. T. Goodrich and Joseph S. B. Mitchell and M. W. Orletsky" -, title = "Practical Methods for Approximate Geometric Pattern Matching under Rigid Motion" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "103--112" -, precedes = "gmo-pmagp-??" -, cites = "aass-sdp-90, abb-amps-91, amww-cssgo-88, akmsw-mppdn-92, amnsw-oaann-94, cghkkk-gpmem-93, ck-igpmp-92, c-sdsno-84, c-pms-88, csss-otass-89, clr-ia-90, e-acg-87, fd-ficg-82, gj-cigtn-79, gt-dtdpl-91, h-gaaps-93, hs-adaps-92, hk-cmhdp-90, hkk-dvdmh-92i, hks-uevsi-91, isi-mgftc-89, m-apcad-83, m-mdscg-84, ps-cgi-85, r-cmhdb-91, r-lbchd-93, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" +, author = "M. T. Goodrich and Joseph S. B. Mitchell and M. W. Orletsky" +, title = "Practical Methods for Approximate Geometric Pattern Matching under Rigid Motion" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "103--112" +, precedes = "gmo-pmagp-??" +, cites = "aass-sdp-90, abb-amps-91, amww-cssgo-88, akmsw-mppdn-92, amnsw-oaann-94, cghkkk-gpmem-93, ck-igpmp-92, c-sdsno-84, c-pms-88, csss-otass-89, clr-ia-90, e-acg-87, fd-ficg-82, gj-cigtn-79, gt-dtdpl-91, h-gaaps-93, hs-adaps-92, hk-cmhdp-90, hkk-dvdmh-92i, hks-uevsi-91, isi-mgftc-89, m-apcad-83, m-mdscg-84, ps-cgi-85, r-cmhdb-91, r-lbchd-93, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" } @inproceedings{goy-cvdsl-89 -, author = "M. T. Goodrich and C. {\'O}'D{\'u}nlaing and C. Yap" -, title = "Constructing the {Voronoi} diagram of a set of line segments in parallel" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "12--23" +, author = "M. T. Goodrich and C. {\'O}'D{\'u}nlaing and C. Yap" +, title = "Constructing the {Voronoi} diagram of a set of line segments in parallel" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "12--23" } @article{goy-cvdsl-93 -, author = "M. T. Goodrich and C. {\'O}'D{\'u}nlaing and C. Yap" -, title = "Constructing the {Voronoi} Diagram of a Set of Line Segments in Parallel" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "128--141" -, succeeds = "goy-cvdsl-89" -, update = "97.11 bibrelex, 94.01 goodrich" +, author = "M. T. Goodrich and C. {\'O}'D{\'u}nlaing and C. Yap" +, title = "Constructing the {Voronoi} Diagram of a Set of Line Segments in Parallel" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "128--141" +, succeeds = "goy-cvdsl-89" +, update = "97.11 bibrelex, 94.01 goodrich" } @techreport{goy-fpavd-85 -, author = "M. T. Goodrich and C. {\'O}'Dunlaing and C. K. Yap" -, title = "Fast Parallel Algorithms for {Voronoi} Diagrams" -, number = "CSD-TR-538" -, institution = "Dept. Computer Science, Purdue University" -, address = "USA" -, year = 1985 -, update = "00.03 bibrelex, 93.09 held" +, author = "M. T. Goodrich and C. {\'O}'Dunlaing and C. K. Yap" +, title = "Fast Parallel Algorithms for {Voronoi} Diagrams" +, number = "CSD-TR-538" +, institution = "Dept. Computer Science, Purdue University" +, address = "USA" +, year = 1985 +, update = "00.03 bibrelex, 93.09 held" } @inproceedings{gor-mafqt-97 -, author = "M. T. Goodrich and M. Orletsky and K. Ramaiyer" -, title = "Methods for Achieving Fast Query Times in Point Location Data Structures" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "757--766" -, update = "97.03 held+tamassia" +, author = "M. T. Goodrich and M. Orletsky and K. Ramaiyer" +, title = "Methods for Achieving Fast Query Times in Point Location Data Structures" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "757--766" +, update = "97.03 held+tamassia" } @incollection{gr-gds-00 -, author = "Michael T. Goodrich and Kumar Ramaiyer" -, title = "Geometric Data Structures" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "463--489" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 tamassia, 98.07 mitchell" -, annote = "Chapter 10 of su-hcg-00" +, author = "Michael T. Goodrich and Kumar Ramaiyer" +, title = "Geometric Data Structures" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "463--489" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 tamassia, 98.07 mitchell" +, annote = "Chapter 10 of su-hcg-00" } @article{gr-bidgp-97 -, author = "M. T. Goodrich and E. A. Ramos" -, title = "Bounded-independence derandomization of geometric partitioning with applications to parallel fixed-dimensional linear programming" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "397--420" -, update = "98.07 agarwal, 97.03 tamassia" +, author = "M. T. Goodrich and E. A. Ramos" +, title = "Bounded-independence derandomization of geometric partitioning with applications to parallel fixed-dimensional linear programming" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "397--420" +, update = "98.07 agarwal, 97.03 tamassia" } @article{gsg-apmvs-93 -, author = "M. T. Goodrich and S. Shauck and S. Guha" -, title = "Addendum to ``Parallel methods for visibility and shortest path problems in simple polygons''" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "515--516" -, succeeds = "gsg-pmvsp-90" -, update = "94.01 goodrich" +, author = "M. T. Goodrich and S. Shauck and S. Guha" +, title = "Addendum to ``Parallel methods for visibility and shortest path problems in simple polygons''" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "515--516" +, succeeds = "gsg-pmvsp-90" +, update = "94.01 goodrich" } @article{gsg-pmvsp-92 -, author = "M. T. Goodrich and S. Shauck and S. Guha" -, title = "Parallel methods for visibility and shortest path problems in simple polygons" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "461--486" -, succeeds = "gsg-pmvsp-90" -, update = "94.01 goodrich" +, author = "M. T. Goodrich and S. Shauck and S. Guha" +, title = "Parallel methods for visibility and shortest path problems in simple polygons" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "461--486" +, succeeds = "gsg-pmvsp-90" +, update = "94.01 goodrich" } @techreport{gsg-pmvsp-89 -, author = "M. T. Goodrich and S. B. Shauck and S. Guha" -, title = "Parallel methods for visibility and shortest path problems in simple polygons" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Johns Hopkins University" -, address = "Baltimore, MD" -, year = 1989 -, update = "97.11 bibrelex" +, author = "M. T. Goodrich and S. B. Shauck and S. Guha" +, title = "Parallel methods for visibility and shortest path problems in simple polygons" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Johns Hopkins University" +, address = "Baltimore, MD" +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{gsg-pmvsp-90 -, author = "M. T. Goodrich and S. B. Shauck and S. Guha" -, title = "Parallel methods for visibility and shortest path problems in simple polygons" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "73--82" -, cites = "ap-psmma-89, am-dplr-88, ac-opavs-89, acg-cdctd-89, at-oadvp-81, bn-absop-89, c-tpca-82, c-iies-84, c-ept-90, cg-fc1ds-86, cg-vippg-88, e-acg-87, emprww-sls-82, ea-lacvp-81, eg-paspp-88, gjpt-tsp-78, g-tpp-89, g-ilspo-89, gh-ospqs-89, ghlst-ltavs-86, grs-kfcg-83, h-ovgat-89, krs-ppp-85, lf-ppc-80, lp-esppr-84, mp-fitcp-78, ol-mcp-81, ps-cgi-85, r-plsir-89, s-opg-87, s-cgfns-89, tv-opatc-89, tv-otats-86, y-ptptc-87, ZZZ" -, update = "01.04 icking, 97.11 bibrelex" +, author = "M. T. Goodrich and S. B. Shauck and S. Guha" +, title = "Parallel methods for visibility and shortest path problems in simple polygons" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "73--82" +, cites = "ap-psmma-89, am-dplr-88, ac-opavs-89, acg-cdctd-89, at-oadvp-81, bn-absop-89, c-tpca-82, c-iies-84, c-ept-90, cg-fc1ds-86, cg-vippg-88, e-acg-87, emprww-sls-82, ea-lacvp-81, eg-paspp-88, gjpt-tsp-78, g-tpp-89, g-ilspo-89, gh-ospqs-89, ghlst-ltavs-86, grs-kfcg-83, h-ovgat-89, krs-ppp-85, lf-ppc-80, lp-esppr-84, mp-fitcp-78, ol-mcp-81, ps-cgi-85, r-plsir-89, s-opg-87, s-cgfns-89, tv-opatc-89, tv-otats-86, y-ptptc-87, ZZZ" +, update = "01.04 icking, 97.11 bibrelex" } @article{gs-spscp-90 -, author = "M. T. Goodrich and J. Snoeyink" -, title = "Stabbing parallel segments with a convex polygon" -, journal = "Comput. Vision Graph. Image Process." -, volume = 49 -, year = 1990 -, pages = "152--170" -, succeeds = "gs-spscp-89" +, author = "M. T. Goodrich and J. Snoeyink" +, title = "Stabbing parallel segments with a convex polygon" +, journal = "Comput. Vision Graph. Image Process." +, volume = 49 +, year = 1990 +, pages = "152--170" +, succeeds = "gs-spscp-89" } @techreport{gs-svscp-87 -, author = "M. T. Goodrich and J. Snoeyink" -, title = "Stabbing vertical segments with a convex polygon" -, type = "Report" -, number = "JHU 87-19" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1987 -, precedes = "gs-spscp-89" +, author = "M. T. Goodrich and J. Snoeyink" +, title = "Stabbing vertical segments with a convex polygon" +, type = "Report" +, number = "JHU 87-19" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1987 +, precedes = "gs-spscp-89" } @inproceedings{gs-spscp-89 -, author = "M. T. Goodrich and J. S. Snoeyink" -, title = "Stabbing parallel segments with a convex polygon" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "231--242" -, succeeds = "gs-svscp-87" -, precedes = "gs-spscp-90" +, author = "M. T. Goodrich and J. S. Snoeyink" +, title = "Stabbing parallel segments with a convex polygon" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "231--242" +, succeeds = "gs-svscp-87" +, precedes = "gs-spscp-90" } @book{gt-dsaj-98 -, author = "Michael T. Goodrich and Roberto Tamassia" -, title = "Data Structures and Algorithms in Java" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1998 -, update = "99.11 bibrelex, 98.11 tamassia" +, author = "Michael T. Goodrich and Roberto Tamassia" +, title = "Data Structures and Algorithms in Java" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1998 +, update = "99.11 bibrelex, 98.11 tamassia" } @book{gt-dsaj-01 -, author = "M. T. Goodrich and R. Tamassia" -, title = "Data Structures and Algorithms in {J}ava" -, edition = "2nd" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 2001 -, update = "01.04 vismara" +, author = "M. T. Goodrich and R. Tamassia" +, title = "Data Structures and Algorithms in {J}ava" +, edition = "2nd" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 2001 +, update = "01.04 vismara" } @article{gt-drssp-97 -, author = "M. T. Goodrich and R. Tamassia" -, title = "Dynamic ray shooting and shortest paths in planar subdivisions via balanced geodesic triangulations" -, journal = "J. Algorithms" -, volume = 23 -, year = 1997 -, pages = "51--73" -, update = "97.07 smid" +, author = "M. T. Goodrich and R. Tamassia" +, title = "Dynamic ray shooting and shortest paths in planar subdivisions via balanced geodesic triangulations" +, journal = "J. Algorithms" +, volume = 23 +, year = 1997 +, pages = "51--73" +, update = "97.07 smid" } @inproceedings{gt-drssp-93 -, author = "M. T. Goodrich and R. Tamassia" -, title = "Dynamic ray shooting and shortest paths via balanced geodesic triangulations" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "318--327" -, cites = "as-anps-91, cegghss-rspug-91, cg-vippg-89, cpt-uadpl-93, cj-nrdpl-90, cj-sersi-91, clr-ia-90, eittwy-mmsfd-90, fmn-dgds-85, ggb-gsmpc-90, gt-dtdpl-91, gh-ospqs-89, ghlst-ltavs-86, gs-dfbt-78, h-opats-92, hs-parss-93, l-cspc-72, lp-esppr-84, m-pst-85, m-ss-84, o-ddds-83, ps-cgi-85, st-dsdt-83, stt-rdthg-88, t-dsna-83, wl-arrcd-85, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "M. T. Goodrich and R. Tamassia" +, title = "Dynamic ray shooting and shortest paths via balanced geodesic triangulations" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "318--327" +, cites = "as-anps-91, cegghss-rspug-91, cg-vippg-89, cpt-uadpl-93, cj-nrdpl-90, cj-sersi-91, clr-ia-90, eittwy-mmsfd-90, fmn-dgds-85, ggb-gsmpc-90, gt-dtdpl-91, gh-ospqs-89, ghlst-ltavs-86, gs-dfbt-78, h-opats-92, hs-parss-93, l-cspc-72, lp-esppr-84, m-pst-85, m-ss-84, o-ddds-83, ps-cgi-85, st-dsdt-83, stt-rdthg-88, t-dsna-83, wl-arrcd-85, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{gt-dtdpl-98 -, author = "M. T. Goodrich and R. Tamassia" -, title = "Dynamic trees and dynamic point location" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1998 -, pages = "612--636" -, update = "99.07 smid, 98.11 tamassia, 97.03 tamassia" +, author = "M. T. Goodrich and R. Tamassia" +, title = "Dynamic trees and dynamic point location" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1998 +, pages = "612--636" +, update = "99.07 smid, 98.11 tamassia, 97.03 tamassia" } @inproceedings{gt-taavp-98 -, author = "M. T. Goodrich and R. Tamassia" -, title = "Teaching the Analysis of Algorithms with Visual Proofs" -, booktitle = "Proc. ACM Symp. Computer Science Education" -, year = 1998 -, update = "98.11 tamassia" +, author = "M. T. Goodrich and R. Tamassia" +, title = "Teaching the Analysis of Algorithms with Visual Proofs" +, booktitle = "Proc. ACM Symp. Computer Science Education" +, year = 1998 +, update = "98.11 tamassia" } @inproceedings{gtvv-emcg-93 -, author = "Michael T. Goodrich and Jyh-Jong Tsay and Darren E. Vengroff and Jeffrey Scott Vitter" -, title = "External-Memory Computational Geometry" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "714--723" -, update = "98.07 bibrelex, 97.03 agarwal, 95.01 franciosa, 94.01 smid, 93.09 milone+mitchell+vengroff" +, author = "Michael T. Goodrich and Jyh-Jong Tsay and Darren E. Vengroff and Jeffrey Scott Vitter" +, title = "External-Memory Computational Geometry" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "714--723" +, update = "98.07 bibrelex, 97.03 agarwal, 95.01 franciosa, 94.01 smid, 93.09 milone+mitchell+vengroff" } @article{g-sp-92 -, author = "P. Goossens" -, title = "Shelling pseudopolyhedra" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "207--215" +, author = "P. Goossens" +, title = "Shelling pseudopolyhedra" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "207--215" } @inproceedings{gks-srbld-00 -, author = "M. Gopi and S. Krishnan and C. T. Silva" -, title = "Surface reconstruction based on lower dimensional localized {Delaunay} triangulation" -, booktitle = "Eurographics" -, year = 2000 -, pages = "" -, update = "01.07 devillers" +, author = "M. Gopi and S. Krishnan and C. T. Silva" +, title = "Surface reconstruction based on lower dimensional localized {Delaunay} triangulation" +, booktitle = "Eurographics" +, year = 2000 +, pages = "" +, update = "01.07 devillers" } @article{gh-3drpr-74 -, author = "R. Gordon and G. T. Herman" -, title = "$3$-d reconstruction from projections: a review of algorithms" -, journal = "Internat. Review Cytology" -, volume = 38 -, year = 1974 -, pages = "111--151" +, author = "R. Gordon and G. T. Herman" +, title = "$3$-d reconstruction from projections: a review of algorithms" +, journal = "Internat. Review Cytology" +, volume = 38 +, year = 1974 +, pages = "111--151" } @incollection{gr-bscs-74 -, author = "W. J. Gordon and R. F. Riesenfeld" -, title = "{B}-Spline Curves and Surfaces" -, editor = "F. Barnhill and R. Riesenfeld" -, booktitle = "Comput. Aided Geom. Design" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1974 -, pages = "95--120" -, update = "98.03 bibrelex" +, author = "W. J. Gordon and R. F. Riesenfeld" +, title = "{B}-Spline Curves and Surfaces" +, editor = "F. Barnhill and R. Riesenfeld" +, booktitle = "Comput. Aided Geom. Design" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1974 +, pages = "95--120" +, update = "98.03 bibrelex" } @book{gm-smt-87 -, author = "M. Goresky and R. MacPherson" -, title = "Stratified {Morse} theory" -, publisher = "Springer-Verlag" -, year = 1987 -, update = "97.11 bibrelex" +, author = "M. Goresky and R. MacPherson" +, title = "Stratified {Morse} theory" +, publisher = "Springer-Verlag" +, year = 1987 +, update = "97.11 bibrelex" } @article{g-spcsp-90 -, author = "P. K. Gosh" -, title = "A Solution of Polygon Containment Spatial Planning and Other Related Problems Using {Minkowski} Operators" -, journal = "Comput. Vision Graph. Image Process." -, volume = 49 -, year = 1990 -, pages = "1--35" -, update = "93.09 held" +, author = "P. K. Gosh" +, title = "A Solution of Polygon Containment Spatial Planning and Other Related Problems Using {Minkowski} Operators" +, journal = "Comput. Vision Graph. Image Process." +, volume = 49 +, year = 1990 +, pages = "1--35" +, update = "93.09 held" } @phdthesis{g-ac-83 -, author = "J. Gosling" -, title = "Algebraic constraints" -, school = "Dept. Comput. Sci., Carnegie Mellon Univ." -, address = "Pittsburgh, PA" -, month = may -, year = 1983 -, note = "Technical Report CMU-CS-83-132" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "J. Gosling" +, title = "Algebraic constraints" +, school = "Dept. Comput. Sci., Carnegie Mellon Univ." +, address = "Pittsburgh, PA" +, month = may +, year = 1983 +, note = "Technical Report CMU-CS-83-132" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @book{gy-japi-96 -, author = "J. Gosling and F. Yellin and {The J}ava Team" -, title = "The {J}ava Application Programming Interface: Window Toolkit and Applets" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1996 -, update = "98.07 tamassia" +, author = "J. Gosling and F. Yellin and {The J}ava Team" +, title = "The {J}ava Application Programming Interface: Window Toolkit and Applets" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1996 +, update = "98.07 tamassia" } @article{gsf-oocuf-99 -, author = "C. Gotsman and O. Sudarsky and J. A. Fayman" -, title = "Optimized Occlusion Culling Using Five-Dimensional Subdivision" -, journal = "Comput. \& Graphics" -, volume = 23 -, number = 5 -, month = oct -, year = 1999 -, pages = "645--654" -, update = "00.03 held" +, author = "C. Gotsman and O. Sudarsky and J. A. Fayman" +, title = "Optimized Occlusion Culling Using Five-Dimensional Subdivision" +, journal = "Comput. \& Graphics" +, volume = 23 +, number = 5 +, month = oct +, year = 1999 +, pages = "645--654" +, update = "00.03 held" } @article{gw-ratpc-93 -, author = "C. Gotsman and M. Werman" -, title = "Recognition of Affine Transformed Planar Curves by Extremal Geometric Properties" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, year = 1993 -, pages = "183--202" -, update = "96.01 werman" +, author = "C. Gotsman and M. Werman" +, title = "Recognition of Affine Transformed Planar Curves by Extremal Geometric Properties" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, year = 1993 +, pages = "183--202" +, update = "96.01 werman" } @article{glm-othsr-96 -, author = "S. Gottschalk and M. C. Lin and D. Manocha" -, title = "{OBB}-Tree: {A} Hierarchical Structure for Rapid Interference Detection" -, journal = "Comput. Graph." -, volume = "??" -, year = 1996 -, pages = "171--180" -, note = "Proc. SIGGRAPH '96" -, keywords = "collision detection" -, update = "98.07 mitchell, 96.09 devillers, 96.05 klosowski" +, author = "S. Gottschalk and M. C. Lin and D. Manocha" +, title = "{OBB}-Tree: {A} Hierarchical Structure for Rapid Interference Detection" +, journal = "Comput. Graph." +, volume = "??" +, year = 1996 +, pages = "171--180" +, note = "Proc. SIGGRAPH '96" +, keywords = "collision detection" +, update = "98.07 mitchell, 96.09 devillers, 96.05 klosowski" } @article{cg-prca-83 -, author = "K. D. Gourley and D. M. Green" -, title = "A Polygon-to-Rectangle Conversion Algorithm" -, journal = "IEEE Comput. Graph. Appl." -, volume = 3 -, year = 1983 -, pages = "31--36" -, update = "98.03 bibrelex" +, author = "K. D. Gourley and D. M. Green" +, title = "A Polygon-to-Rectangle Conversion Algorithm" +, journal = "IEEE Comput. Graph. Appl." +, volume = 3 +, year = 1983 +, pages = "31--36" +, update = "98.03 bibrelex" } @article{gr-crsas-93 -, author = "L. Gournay and J.-J. Risler" -, title = "Construction of roadmaps in semi-algebraic sets" -, journal = "Appl. Algebra Engrg. Comm. Comput." -, volume = 4 -, year = 1993 -, pages = "239--252" -, update = "98.07 agarwal" +, author = "L. Gournay and J.-J. Risler" +, title = "Construction of roadmaps in semi-algebraic sets" +, journal = "Appl. Algebra Engrg. Comm. Comput." +, volume = 4 +, year = 1993 +, pages = "239--252" +, update = "98.07 agarwal" } @article{g-hcppc-82 -, author = "D. Gouyou-Beauchamps" -, title = "The {Hamiltonian} circuit problem is polynomial for 4-connected planar graphs" -, journal = "SIAM J. Comput." -, volume = 11 -, year = 1982 -, pages = "529--539" -, update = "99.07 forrest, 98.11 bibrelex" +, author = "D. Gouyou-Beauchamps" +, title = "The {Hamiltonian} circuit problem is polynomial for 4-connected planar graphs" +, journal = "SIAM J. Comput." +, volume = 11 +, year = 1982 +, pages = "529--539" +, update = "99.07 forrest, 98.11 bibrelex" } @mastersthesis{g-dpcg-80 -, author = "I. G. Gowda" -, title = "Dynamic problems in computational geometry" -, type = "M.{Sc}. Thesis" -, school = "Dept. Comput. Sci., Univ. British Columbia" -, address = "Vancouver, BC" -, year = 1980 -, keywords = "master thesis" +, author = "I. G. Gowda" +, title = "Dynamic problems in computational geometry" +, type = "M.{Sc}. Thesis" +, school = "Dept. Comput. Sci., Univ. British Columbia" +, address = "Vancouver, BC" +, year = 1980 +, keywords = "master thesis" } @inproceedings{gk-elmes-80 -, author = "I. G. Gowda and D. G. Kirkpatrick" -, title = "Exploiting linear merging and extra storage in the maintenance of fully dynamic geometric data structures" -, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." -, year = 1980 -, pages = "1--10" -, keywords = "data structuring, dynamizing data structures, Voronoi diagrams, convex hull" +, author = "I. G. Gowda and D. G. Kirkpatrick" +, title = "Exploiting linear merging and extra storage in the maintenance of fully dynamic geometric data structures" +, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." +, year = 1980 +, pages = "1--10" +, keywords = "data structuring, dynamizing data structures, Voronoi diagrams, convex hull" } @article{gkln-dvd-83 -, author = "I. G. Gowda and D. G. Kirkpatrick and D. T. Lee and A. Naamad" -, title = "Dynamic {Voronoi} diagrams" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-29" -, year = 1983 -, pages = "724--731" -, keywords = "data structuring, dynamizing data structures, Voronoi diagrams" +, author = "I. G. Gowda and D. G. Kirkpatrick and D. T. Lee and A. Naamad" +, title = "Dynamic {Voronoi} diagrams" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-29" +, year = 1983 +, pages = "724--731" +, keywords = "data structuring, dynamizing data structures, Voronoi diagrams" } @article{gk-cnnru-79 -, author = "K. C. Gowda and G. Krishna" -, title = "The condensed nearest neighbor rule using the concept of mutual nearest neighborhood" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-25" -, year = 1979 -, pages = "488--490" +, author = "K. C. Gowda and G. Krishna" +, title = "The condensed nearest neighbor rule using the concept of mutual nearest neighborhood" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-25" +, year = 1979 +, pages = "488--490" } @techreport{gh-psaan-92 -, author = "T. Graf and K. Hinrichs" -, title = "A plane sweep algorithm for the all nearest neighbors problem for a set of convex planar objects" -, type = "Report" -, number = "17/92-I" -, institution = "Angew. Math. Inform., Univ. M{\"u}nster" -, address = "M{\"u}nster, Germany" -, year = 1992 +, author = "T. Graf and K. Hinrichs" +, title = "A plane sweep algorithm for the all nearest neighbors problem for a set of convex planar objects" +, type = "Report" +, number = "17/92-I" +, institution = "Angew. Math. Inform., Univ. M{\"u}nster" +, address = "M{\"u}nster, Germany" +, year = 1992 } @inproceedings{gh-psaan-93 -, author = "Thorsten Graf and Klaus Hinrichs" -, title = "A Plane-Sweep Algorithm for the All-Nearest-Neighbors Problem for a Set of Convex Planar Objects" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "349--360" -, succeeds = "gh-psaan-93p" -, update = "97.11 icking, 96.05 agarwal, 93.09 milone+mitchell+smid, 93.05 jones" +, author = "Thorsten Graf and Klaus Hinrichs" +, title = "A Plane-Sweep Algorithm for the All-Nearest-Neighbors Problem for a Set of Convex Planar Objects" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "349--360" +, succeeds = "gh-psaan-93p" +, update = "97.11 icking, 96.05 agarwal, 93.09 milone+mitchell+smid, 93.05 jones" } @inproceedings{gh-psaan-93p -, author = "Thorsten Graf and Klaus Hinrichs" -, title = "A Plane-Sweep Algorithm for the All-Nearest-Neighbors Problem for a Set of Convex Planar Objects" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "74--77" -, precedes = "gh-psaan-93" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" +, author = "Thorsten Graf and Klaus Hinrichs" +, title = "A Plane-Sweep Algorithm for the All-Nearest-Neighbors Problem for a Set of Convex Planar Objects" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "74--77" +, precedes = "gh-psaan-93" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" } @techreport{gh-appcp-92 -, author = "T. Graf and K. Hinrichs" -, title = "Algorithms for proximity problems on colored point sets" -, type = "Report" -, number = "18/92-I" -, institution = "Angew. Math. Inform., Univ. M{\"u}nster" -, address = "M{\"u}nster, Germany" -, year = 1992 -, precedes = "gh-appcp-93" -, update = "98.11 bibrelex" +, author = "T. Graf and K. Hinrichs" +, title = "Algorithms for proximity problems on colored point sets" +, type = "Report" +, number = "18/92-I" +, institution = "Angew. Math. Inform., Univ. M{\"u}nster" +, address = "M{\"u}nster, Germany" +, year = 1992 +, precedes = "gh-appcp-93" +, update = "98.11 bibrelex" } @inproceedings{gh-appcp-93 -, author = "T. Graf and K. Hinrichs" -, title = "Algorithms for proximity problems on colored point sets" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "420--425" -, succeeds = "gh-appcp-93p, gh-appcp-92" -, cites = "aert-otbsp-92, hns-arsa2-92, lw-vdllm-80, m-pst-85, o-ncbbs-82, iko-pstsm-88, s-raplg-91, v-famst-84, y-cmstk-82, ZZZ" -, update = "98.11 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "T. Graf and K. Hinrichs" +, title = "Algorithms for proximity problems on colored point sets" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "420--425" +, succeeds = "gh-appcp-93p, gh-appcp-92" +, cites = "aert-otbsp-92, hns-arsa2-92, lw-vdllm-80, m-pst-85, o-ncbbs-82, iko-pstsm-88, s-raplg-91, v-famst-84, y-cmstk-82, ZZZ" +, update = "98.11 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @inproceedings{gh-appcp-93p -, author = "Thorsten Graf and Klaus Hinrichs" -, title = "Algorithms for proximity problems on colored point sets" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "78--81" -, precedes = "gh-appcp-93" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Thorsten Graf and Klaus Hinrichs" +, title = "Algorithms for proximity problems on colored point sets" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "78--81" +, precedes = "gh-appcp-93" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @inproceedings{gh-daanf-94 -, author = "T. Graf and K. Hinrichs" -, title = "Distribution algorithms for the all-nearest-foreign-neighbors problem in arbitrary {$L^t$} metrics" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "69--74" -, cites = "aert-otbsp-92, gh-appcp-93, hns-arsa2-92, l-tdvdl-80, ow-ad-93, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "T. Graf and K. Hinrichs" +, title = "Distribution algorithms for the all-nearest-foreign-neighbors problem in arbitrary {$L^t$} metrics" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "69--74" +, cites = "aert-otbsp-92, gh-appcp-93, hns-arsa2-92, l-tdvdl-80, ow-ad-93, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{gh-ssnfn-94 -, author = "Thorsten Graf and Klaus Hinrichs" -, title = "Simple Search for Nearest Foreign Neighbors in Arbitrary {$L^t$}-Metrics" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "25--28" -, update = "00.11 smid, 00.07 icking" +, author = "Thorsten Graf and Klaus Hinrichs" +, title = "Simple Search for Nearest Foreign Neighbors in Arbitrary {$L^t$}-Metrics" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "25--28" +, update = "00.11 smid, 00.07 icking" } @inproceedings{gk-oacvn-98 -, author = "T. Graf and V. Kamakoti" -, title = "An Optimal Algorithm for Computing Visible Nearest Foreign Neighbors Among Colored Line Segments" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "59--70" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "T. Graf and V. Kamakoti" +, title = "An Optimal Algorithm for Computing Visible Nearest Foreign Neighbors Among Colored Line Segments" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "59--70" +, update = "99.03 bibrelex, 98.07 mitchell" } % see http://www.cs.auc.dk/icalp98/ @inproceedings{gk-mspop-98 -, author = "T. Graf and V. Kamakoti" -, title = "Morphing Simple Polygons Optimally -- {A} Proof for an Improved Conjecture" -, booktitle = "Proc. 25th Internat. Colloq. Automata Lang. Prog." -, nickname = "ICALP '98" -, series = "Lecture Notes Comput. Sci." -, volume = "??" -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "??" -, update = "98.03 mitchell" -, annote = "To appear, July 13-17 in Aalborg, Denmark" +, author = "T. Graf and V. Kamakoti" +, title = "Morphing Simple Polygons Optimally -- {A} Proof for an Improved Conjecture" +, booktitle = "Proc. 25th Internat. Colloq. Automata Lang. Prog." +, nickname = "ICALP '98" +, series = "Lecture Notes Comput. Sci." +, volume = "??" +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "??" +, update = "98.03 mitchell" +, annote = "To appear, July 13-17 in Aalborg, Denmark" } @inproceedings{g-vscfa-81 -, author = "N. Graham" -, title = "The visual system does a crude {Fourier} analysis of patterns" -, booktitle = "SIAM-AMS Proc." -, volume = 13 -, year = 1981 -, pages = "1--16" -, update = "98.11 bibrelex" +, author = "N. Graham" +, title = "The visual system does a crude {Fourier} analysis of patterns" +, booktitle = "SIAM-AMS Proc." +, volume = 13 +, year = 1981 +, pages = "1--16" +, update = "98.11 bibrelex" } @book{grs-rt-80 -, author = "R. Graham and B. Rothschild and J. Spencer" -, title = "Ramsey Theory" -, publisher = "Wiley-Interscience" -, address = "New York" -, year = 1980 -, update = "95.05 agarwal" +, author = "R. Graham and B. Rothschild and J. Spencer" +, title = "Ramsey Theory" +, publisher = "Wiley-Interscience" +, address = "New York" +, year = 1980 +, update = "95.05 agarwal" } @article{gy-wtcg-90 -, author = "R. Graham and F. Yao" -, title = "A whirlwind tour of computational geometry" -, journal = "Amer. Math. Monthly" -, volume = 97 -, number = 8 -, year = 1990 -, pages = "687--701" -, keywords = "survey paper, Voronoi diagrams, convex hull" +, author = "R. Graham and F. Yao" +, title = "A whirlwind tour of computational geometry" +, journal = "Amer. Math. Monthly" +, volume = 97 +, number = 8 +, year = 1990 +, pages = "687--701" +, keywords = "survey paper, Voronoi diagrams, convex hull" } @article{g-eadch-72 -, author = "R. L. Graham" -, title = "An efficient algorithm for determining the convex hull of a finite planar set" -, journal = "Inform. Process. Lett." -, volume = 1 -, year = 1972 -, pages = "132--133" -, keywords = "design of algorithms, convex hull, worst-case analysis" -, precedes = "gs-ngcha-87" -, annote = "$O(n \log n)$ time, polar sorting" +, author = "R. L. Graham" +, title = "An efficient algorithm for determining the convex hull of a finite planar set" +, journal = "Inform. Process. Lett." +, volume = 1 +, year = 1972 +, pages = "132--133" +, keywords = "design of algorithms, convex hull, worst-case analysis" +, precedes = "gs-ngcha-87" +, annote = "$O(n \log n)$ time, polar sorting" } @incollection{g-ert-97 -, author = "R. L. Graham" -, title = "Euclidean {Ramsey} theory" -, chapter = 8 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "153--166" -, update = "97.11 orourke" +, author = "R. L. Graham" +, title = "Euclidean {Ramsey} theory" +, chapter = 8 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "153--166" +, update = "97.11 orourke" } @article{g-p855e-85 -, author = "R. L. Graham" -, title = "Problem 85-5/{EATCS}: {Euclidean} minimum spanning trees" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = 285 +, author = "R. L. Graham" +, title = "Problem 85-5/{EATCS}: {Euclidean} minimum spanning trees" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = 285 } @article{g-lsh-75 -, author = "R. L. Graham" -, title = "The largest small hexagon" -, journal = "J. Combin. Theory" -, volume = 18 -, year = 1975 -, pages = "165--170" -, update = "98.03 bibrelex" +, author = "R. L. Graham" +, title = "The largest small hexagon" +, journal = "J. Combin. Theory" +, volume = 18 +, year = 1975 +, pages = "165--170" +, update = "98.03 bibrelex" } @article{gh-hmstp-85 -, author = "R. L. Graham and P. Hell" -, title = "On the history of the minimum spanning tree problem" -, journal = "Annals of the History of Computing" -, volume = 7 -, year = 1985 -, pages = "43--57" -, update = "98.03 bibrelex" +, author = "R. L. Graham and P. Hell" +, title = "On the history of the minimum spanning tree problem" +, journal = "Annals of the History of Computing" +, volume = 7 +, year = 1985 +, pages = "43--57" +, update = "98.03 bibrelex" } @article{gh-rsmt-76 -, author = "R. L. Graham and F. K. Hwang" -, title = "Remarks on {Steiner} minimum trees" -, journal = "Bull. Inst. Math. acad. Sinica" -, volume = 4 -, year = 1976 -, pages = "177--182" -, update = "98.03 bibrelex" +, author = "R. L. Graham and F. K. Hwang" +, title = "Remarks on {Steiner} minimum trees" +, journal = "Bull. Inst. Math. acad. Sinica" +, volume = 4 +, year = 1976 +, pages = "177--182" +, update = "98.03 bibrelex" } @book{gkp-cm-89 -, author = "R. L. Graham and D. E. Knuth and O. Patashnik" -, title = "Concrete Mathematics" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1989 -, precedes = "gkp-cm-94" -, update = "00.03 bibrelex, 97.03 gaertner+salinger" +, author = "R. L. Graham and D. E. Knuth and O. Patashnik" +, title = "Concrete Mathematics" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1989 +, precedes = "gkp-cm-94" +, update = "00.03 bibrelex, 97.03 gaertner+salinger" } @book{gkp-cm-94 -, author = "Ronald L. Graham and Donald E. Knuth and Oren Patashnik" -, title = "Concrete Mathematics" -, edition = "second" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1994 -, succeeds = "gkp-cm-89" -, update = "00.03 bibrelex" +, author = "Ronald L. Graham and Donald E. Knuth and Oren Patashnik" +, title = "Concrete Mathematics" +, edition = "second" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1994 +, succeeds = "gkp-cm-89" +, update = "00.03 bibrelex" } @book{grs-rt-90 -, author = "R. L. Graham and B. L. Rothschild and J. Spencer" -, title = "Ramsey Theory" -, publisher = "John Wiley \& Sons" -, year = 1990 -, update = "99.11 bibrelex, 95.01 matousek" +, author = "R. L. Graham and B. L. Rothschild and J. Spencer" +, title = "Ramsey Theory" +, publisher = "John Wiley \& Sons" +, year = 1990 +, update = "99.11 bibrelex, 95.01 matousek" } @article{gs-pptdc-90 -, author = "R. L. Graham and N. J. A. Sloane" -, title = "Penny-packing and two-dimensional codes" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "1--11" +, author = "R. L. Graham and N. J. A. Sloane" +, title = "Penny-packing and two-dimensional codes" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "1--11" } @article{gy-fchsp-83 -, author = "R. L. Graham and F. F. Yao" -, title = "Finding the convex hull of a simple polygon" -, journal = "J. Algorithms" -, volume = 4 -, year = 1983 -, pages = "324--331" -, keywords = "designing algorithms, convex hull, two-dimensional, worst-case analysis" -, annote = "$O(n)$ time where points are ordered vertices" +, author = "R. L. Graham and F. F. Yao" +, title = "Finding the convex hull of a simple polygon" +, journal = "J. Algorithms" +, volume = 4 +, year = 1983 +, pages = "324--331" +, keywords = "designing algorithms, convex hull, two-dimensional, worst-case analysis" +, annote = "$O(n)$ time where points are ordered vertices" } @misc{g-ggmpa -, author = "Torbj{\"o}rn Granlund" -, title = "{GMP}, The {GNU} Multiple Precision Arithmetic Library" -, url = "https://gmplib.org/" -, update = "02.03 devillers" +, author = "Torbj{\"o}rn Granlund" +, title = "{GMP}, The {GNU} Multiple Precision Arithmetic Library" +, url = "https://gmplib.org/" +, update = "02.03 devillers" } @manual{g-ggmpa-96 -, author = "Torbj{\"o}rn Granlund" -, title = "{GMP}, The {GNU} Multiple Precision Arithmetic Library" -, edition = "2.0.2" -, year = 1996 -, url = "https://gmplib.org/" -, update = "02.03 devillers, 00.03 devillers" +, author = "Torbj{\"o}rn Granlund" +, title = "{GMP}, The {GNU} Multiple Precision Arithmetic Library" +, edition = "2.0.2" +, year = 1996 +, url = "https://gmplib.org/" +, update = "02.03 devillers, 00.03 devillers" } @book{g-cof-01 -, author = "Jack E. Graver" -, title = "Counting on Frameworks: Mathematics to Aid the Design of Rigid Structures" -, publisher = "Mathematical Association of America" -, year = 2001 -, location = "Washington, D.C." -, update = "02.03 orourke" +, author = "Jack E. Graver" +, title = "Counting on Frameworks: Mathematics to Aid the Design of Rigid Structures" +, publisher = "Mathematical Association of America" +, year = 2001 +, location = "Washington, D.C." +, update = "02.03 orourke" } @book{gw-cetg-77 -, author = "J. E. Graver and M. E. Watkins" -, title = "Combinatorics with Emphasis on the Theory of Graphs" -, publisher = "Springer-Verlag" -, year = 1977 -, update = "97.11 bibrelex" +, author = "J. E. Graver and M. E. Watkins" +, title = "Combinatorics with Emphasis on the Theory of Graphs" +, publisher = "Springer-Verlag" +, year = 1977 +, update = "97.11 bibrelex" } @article{g-asleb-97 -, author = "J. Gravesen" -, title = "Adaptive subdivision and the length and energy of {B\'ezier} curves" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "13--31" -, update = "97.07 devillers" +, author = "J. Gravesen" +, title = "Adaptive subdivision and the length and energy of {B\'ezier} curves" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "13--31" +, update = "97.07 devillers" } @inproceedings{gblp-dcrao-96 -, author = "J. Gray and A. Bosworth and A. Layman and H. Patel" -, title = "Data cube: {A} relational aggregation operator generalizing group-by, cross-tab, and sub-totals" -, booktitle = "Proc. 12th IEEE Internat. Conf. Data Eng." -, year = 1996 -, pages = "152--159" -, update = "97.07 agarwal" +, author = "J. Gray and A. Bosworth and A. Layman and H. Patel" +, title = "Data cube: {A} relational aggregation operator generalizing group-by, cross-tab, and sub-totals" +, booktitle = "Proc. 12th IEEE Internat. Conf. Data Eng." +, year = 1996 +, pages = "152--159" +, update = "97.07 agarwal" } @article{gmi-hibef-90 -, author = "L. Gray and L. Martha and A. Ingraffea" -, title = "Hypersingular integrals in boundary element fracture analysis" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 20 -, year = 1990 -, pages = "1135--1158" -, update = "97.11 bibrelex" +, author = "L. Gray and L. Martha and A. Ingraffea" +, title = "Hypersingular integrals in boundary element fracture analysis" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 20 +, year = 1990 +, pages = "1135--1158" +, update = "97.11 bibrelex" } @phdthesis{g-tsdg-93 -, author = "J. Green-Cottingham" -, title = "Thrackles, Surfaces and Drawings of Graphs" -, school = "Clemson Univ." -, year = 1993 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "J. Green-Cottingham" +, title = "Thrackles, Surfaces and Drawings of Graphs" +, school = "Clemson Univ." +, year = 1993 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @techreport{g-chabd-80 -, author = "P. J. Green" -, title = "Convex hulls in the analysis of bivariate data" -, type = "Paper read at the conference ``{Looking} at {Multivariate} {Data}''" -, institution = "Univ. Durham" -, address = "Sheffield, England" -, year = 1980 +, author = "P. J. Green" +, title = "Convex hulls in the analysis of bivariate data" +, type = "Paper read at the conference ``{Looking} at {Multivariate} {Data}''" +, institution = "Univ. Durham" +, address = "Sheffield, England" +, year = 1980 } @incollection{g-pbd-81 -, author = "P. J. Green" -, title = "Peeling Bivariate Data" -, editor = "Vic Barnet" -, booktitle = "Interpreting Multivariate Data" -, publisher = "John Wiley \& Sons" -, address = "Chichester" -, year = 1981 -, pages = "3--19" -, update = "99.11 bibrelex" -, annote = "Suggested Delaunay peeling, successive removing layers - from DT" +, author = "P. J. Green" +, title = "Peeling Bivariate Data" +, editor = "Vic Barnet" +, booktitle = "Interpreting Multivariate Data" +, publisher = "John Wiley \& Sons" +, address = "Chichester" +, year = 1981 +, pages = "3--19" +, update = "99.11 bibrelex" +, annote = "Suggested Delaunay peeling, successive removing layers + from DT" } @article{gs-cdtp-78 -, author = "P. J. Green and R. R. Sibson" -, title = "Computing {Dirichlet} tessellations in the plane" -, journal = "Comput. J." -, volume = 21 -, year = 1978 -, pages = "168--173" -, keywords = "implementing algorithms, Delaunay triangulations, two-dimensional" +, author = "P. J. Green and R. R. Sibson" +, title = "Computing {Dirichlet} tessellations in the plane" +, journal = "Comput. J." +, volume = 21 +, year = 1978 +, pages = "168--173" +, keywords = "implementing algorithms, Delaunay triangulations, two-dimensional" } @article{gs-cchsp-79 -, author = "P. J. Green and B. W. Silverman" -, title = "Constructing the convex hull of a set of points in the plane" -, journal = "Comput. J." -, volume = 22 -, year = 1979 -, pages = "262--266" -, keywords = "implementing algorithms, convex hull, two-dimensional" -, annote = "Implementation notes and benchmarks for Eddy's - algorithm [e-nchap-77]" +, author = "P. J. Green and B. W. Silverman" +, title = "Constructing the convex hull of a set of points in the plane" +, journal = "Comput. J." +, volume = 22 +, year = 1979 +, pages = "262--266" +, keywords = "implementing algorithms, convex hull, two-dimensional" +, annote = "Implementation notes and benchmarks for Eddy's + algorithm [e-nchap-77]" } @book{g-lat-67 -, author = "M. Greenberg" -, title = "Lectures on Algebraic Topology" -, publisher = "Benjamin" -, address = "Reading, MA" -, year = 1967 -, update = "95.05 agarwal" +, author = "M. Greenberg" +, title = "Lectures on Algebraic Topology" +, publisher = "Benjamin" +, address = "Reading, MA" +, year = 1967 +, update = "95.05 agarwal" } @book{gh-atfc-81 -, author = "M. Greenberg and J. Harper" -, title = "Algebraic Topology: {A} First Course" -, publisher = "Benjamin-Cummings" -, address = "Reading, MA" -, year = 1981 -, update = "98.03 bibrelex" +, author = "M. Greenberg and J. Harper" +, title = "Algebraic Topology: {A} First Course" +, publisher = "Benjamin-Cummings" +, address = "Reading, MA" +, year = 1981 +, update = "98.03 bibrelex" } @inproceedings{ghs-paslc-93 -, author = "Ronald I. Greenberg and Shih-Chuan Hung and Jau-Der Shih" -, title = "Parallel Algorithms for Single-Layer Channel Routing" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "456--465" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Ronald I. Greenberg and Shih-Chuan Hung and Jau-Der Shih" +, title = "Parallel Algorithms for Single-Layer Channel Routing" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "456--465" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @article{gl-rrft-89 -, author = "R. I. Greenberg and C. E. Leiserson" -, title = "Randomized routing on fat-trees" -, journal = "Adv. Comput. Res." -, volume = 5 -, year = 1989 -, pages = "345--374" -, update = "98.03 bibrelex" +, author = "R. I. Greenberg and C. E. Leiserson" +, title = "Randomized routing on fat-trees" +, journal = "Adv. Comput. Res." +, volume = 5 +, year = 1989 +, pages = "345--374" +, update = "98.03 bibrelex" } @inproceedings{g-aipas-89 -, author = "D. Greene" -, title = "An implementation and performance analysis of spatial data access methods" -, booktitle = "Proc. 5th IEEE Internat. Conf. Data Eng." -, year = 1989 -, pages = "606--615" -, update = "97.07 agarwal" +, author = "D. Greene" +, title = "An implementation and performance analysis of spatial data access methods" +, booktitle = "Proc. 5th IEEE Internat. Conf. Data Eng." +, year = 1989 +, pages = "606--615" +, update = "97.07 agarwal" } @unpublished{g-ilsi- -, author = "D. H. Greene" -, title = "Integer line segment intersection" -, note = "Unpublished Manuscript" -, update = "98.03 bibrelex" +, author = "D. H. Greene" +, title = "Integer line segment intersection" +, note = "Unpublished Manuscript" +, update = "98.03 bibrelex" } @incollection{g-dpcp-83 -, author = "Daniel H. Greene" -, title = "The Decomposition of Polygons into Convex Parts" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "235--259" -, update = "01.04 icking" -, annote = "minimal decomposition; finds optimal in $O(n^{4})$ - time, constant-factor in $O(n \log n)$" +, author = "Daniel H. Greene" +, title = "The Decomposition of Polygons into Convex Parts" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "235--259" +, update = "01.04 icking" +, annote = "minimal decomposition; finds optimal in $O(n^{4})$ + time, constant-factor in $O(n \log n)$" } @book{gk-maa-82 -, author = "D. H. Greene and D. E. Knuth" -, title = "Mathematics for the analysis of algorithms" -, publisher = "Birkh{\"a}user" -, address = "Boston" -, year = 1982 -, update = "97.11 bibrelex" +, author = "D. H. Greene and D. E. Knuth" +, title = "Mathematics for the analysis of algorithms" +, publisher = "Birkh{\"a}user" +, address = "Boston" +, year = 1982 +, update = "97.11 bibrelex" } @inproceedings{gy-frcg-86 -, author = "D. H. Greene and F. F. Yao" -, title = "Finite-resolution computational geometry" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "143--152" +, author = "D. H. Greene and F. F. Yao" +, title = "Finite-resolution computational geometry" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "143--152" } @incollection{g-dirsc-94 -, author = "Ned Greene" -, title = "Detecting Intersection of a Rectangular Solid and a Convex Polyhedron" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "74--82" -, keywords = "collision detection, octree, computational geometry" -, update = "94.09 heckbert" -, annote = "Presents an optimized technique to test for intersection +, author = "Ned Greene" +, title = "Detecting Intersection of a Rectangular Solid and a Convex Polyhedron" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "74--82" +, keywords = "collision detection, octree, computational geometry" +, update = "94.09 heckbert" +, annote = "Presents an optimized technique to test for intersection between a convex polyhedron and a box. This is useful when comparing bounding boxes against a viewing frustum in a rendering program, for instance. Contains pseudocode." } @inproceedings{gkm-hzbv-93 -, author = "N. Greene and M. Kass and G. Miller" -, title = "Hierachical Z-Buffer Visibility" -, booktitle = "Computer Graphics Proceedings, Annu. Conference Series, 1993" -, year = 1993 -, pages = "273--278" -, update = "97.11 bibrelex" +, author = "N. Greene and M. Kass and G. Miller" +, title = "Hierachical Z-Buffer Visibility" +, booktitle = "Computer Graphics Proceedings, Annu. Conference Series, 1993" +, year = 1993 +, pages = "273--278" +, update = "97.11 bibrelex" } @article{g-nsnbp-90 -, author = "L. Greengard" -, title = "The numerical solution of the {N}-body problem" -, journal = "Computers in Physics" -, volume = "??" -, year = 1990 -, pages = "142--152" -, update = "97.07 agarwal" +, author = "L. Greengard" +, title = "The numerical solution of the {N}-body problem" +, journal = "Computers in Physics" +, volume = "??" +, year = 1990 +, pages = "142--152" +, update = "97.07 agarwal" } @book{g-repfp-88 -, author = "L. Greengard" -, title = "The rapid evaluation of potential fields in particle systems" -, publisher = "MIT Press" -, address = "Cambridge" -, year = 1988 -, update = "97.07 agarwal" +, author = "L. Greengard" +, title = "The rapid evaluation of potential fields in particle systems" +, publisher = "MIT Press" +, address = "Cambridge" +, year = 1988 +, update = "97.07 agarwal" } @article{g-dawp-60 -, author = "M. Greenlinger" -, title = "Dehn's algorithm for the word problem" -, journal = "Commun. Pure Appl. Math." -, volume = 13 -, year = 1960 -, pages = "67--83" -, update = "98.07 bibrelex" +, author = "M. Greenlinger" +, title = "Dehn's algorithm for the word problem" +, journal = "Commun. Pure Appl. Math." +, volume = 13 +, year = 1960 +, pages = "67--83" +, update = "98.07 bibrelex" } @article{g-ulebt-89 -, author = "A. Gregori" -, title = "Unit Length Embedding of Binary Trees on a Square Grid" -, journal = "Inform. Process. Lett." -, volume = 31 -, year = 1989 -, pages = "167--172" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "A. Gregori" +, title = "Unit Length Embedding of Binary Trees on a Square Grid" +, journal = "Inform. Process. Lett." +, volume = 31 +, year = 1989 +, pages = "167--172" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @incollection{g-eblit-75 -, author = "J. Gregory" -, title = "Error bounds for linear interpolation on triangles" -, editor = "J. R. Whiteman" -, booktitle = "The Mathematics of Finite Elements and Applications II" -, publisher = "Academic Press" -, year = 1975 -, pages = "163--170" -, update = "97.11 bibrelex" +, author = "J. Gregory" +, title = "Error bounds for linear interpolation on triangles" +, editor = "J. R. Whiteman" +, booktitle = "The Mathematics of Finite Elements and Applications II" +, publisher = "Academic Press" +, year = 1975 +, pages = "163--170" +, update = "97.11 bibrelex" } @article{gc-tipca-80 -, author = "J. A. Gregory and Charrot" -, title = "A $C^1$ triangular interpolation patch for computer-aided geometric design" -, journal = "Comput. Graph. Image Process." -, volume = 13 -, year = 1980 -, pages = "80--87" -, update = "98.03 bibrelex" +, author = "J. A. Gregory and Charrot" +, title = "A $C^1$ triangular interpolation patch for computer-aided geometric design" +, journal = "Comput. Graph. Image Process." +, volume = 13 +, year = 1980 +, pages = "80--87" +, update = "98.03 bibrelex" } @article{g-sgtpa-73 -, author = "U. Grenander" -, title = "Statistical geometry: a tool for pattern analysis" -, journal = "Bull. Amer. Math. Soc." -, volume = 79 -, year = 1973 -, pages = "829--856" +, author = "U. Grenander" +, title = "Statistical geometry: a tool for pattern analysis" +, journal = "Bull. Amer. Math. Soc." +, volume = 79 +, year = 1973 +, pages = "829--856" } @incollection{gck-ccs-91 -, author = "U. Grenander and Y. Chow and D. M. Keenan" -, title = "Connectivity of Configuration Space" -, chapter = "D" -, booktitle = "Hands: A Pattern Theoretic Study of Biological Shapes" -, type = "Appendix" -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "108--128" -, update = "02.03 orourke" +, author = "U. Grenander and Y. Chow and D. M. Keenan" +, title = "Connectivity of Configuration Space" +, chapter = "D" +, booktitle = "Hands: A Pattern Theoretic Study of Biological Shapes" +, type = "Appendix" +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "108--128" +, update = "02.03 orourke" } @article{gks-ecstv-90 -, author = "J. Gretenkort and P. Kleinschmidt and B. Sturmfels" -, title = "On the existence of certain smooth toric varieties" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "255--262" +, author = "J. Gretenkort and P. Kleinschmidt and B. Sturmfels" +, title = "On the existence of certain smooth toric varieties" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "255--262" } @article{gs-ngcha-87 -, author = "D. Gries and I. Stojmenovi{\'c}" -, title = "A note on {Graham}'s convex hull algorithm" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "323--327" -, succeeds = "g-eadch-72" +, author = "D. Gries and I. Stojmenovi{\'c}" +, title = "A note on {Graham}'s convex hull algorithm" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "323--327" +, succeeds = "g-eadch-72" } @book{g-sap-87 -, author = "D. A. Griffith" -, title = "Spatial Autocorrelation: a primer" -, publisher = "Association of American Cartographers" -, address = "Washington" -, year = 1987 -, update = "96.09 kreveld" +, author = "D. A. Griffith" +, title = "Spatial Autocorrelation: a primer" +, publisher = "Association of American Cartographers" +, address = "Washington" +, year = 1987 +, update = "96.09 kreveld" } @article{g-eheld-79 -, author = "J. G. Griffith" -, title = "Eliminating hidden edges in line drawing" -, journal = "Comput. Aided Design" -, volume = 11 -, year = 1979 -, pages = "71--78" +, author = "J. G. Griffith" +, title = "Eliminating hidden edges in line drawing" +, journal = "Comput. Aided Design" +, volume = 11 +, year = 1979 +, pages = "71--78" } @article{g-cvrtp-81 -, author = "H. Griffiths" -, title = "Cayley's version of the resultant of two polynomials" -, journal = "Amer. Math. Monthly" -, volume = "??" -, month = may -, year = 1981 -, pages = "328--338" -, update = "98.03 bibrelex" +, author = "H. Griffiths" +, title = "Cayley's version of the resultant of two polynomials" +, journal = "Amer. Math. Monthly" +, volume = "??" +, month = may +, year = 1981 +, pages = "328--338" +, update = "98.03 bibrelex" } @inproceedings{gkp-aspgt-95 -, author = "M. Grigni and E. Koutsoupias and C. H. Papadimitriou" -, title = "An approximation scheme for planar graph {TSP}" -, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '95" -, year = 1995 -, pages = "640--645" -, update = "00.03 bibrelex, 97.03 agarwal+bibrelex, 95.09 mitchell" +, author = "M. Grigni and E. Koutsoupias and C. H. Papadimitriou" +, title = "An approximation scheme for planar graph {TSP}" +, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '95" +, year = 1995 +, pages = "640--645" +, update = "00.03 bibrelex, 97.03 agarwal+bibrelex, 95.09 mitchell" } @article{gv-cccsa-92 -, author = "Dima Grigor{\'e}v and Nicolai Vorobjov" -, title = "Counting connected components of a semi-algebraic set in subexponential time" -, journal = "Comput. Complexity" -, volume = 2 -, year = 1992 -, pages = "133--186" -, update = "98.07 agarwal" +, author = "Dima Grigor{\'e}v and Nicolai Vorobjov" +, title = "Counting connected components of a semi-algebraic set in subexponential time" +, journal = "Comput. Complexity" +, volume = 2 +, year = 1992 +, pages = "133--186" +, update = "98.07 agarwal" } @inproceedings{gkms-lbrad-96 -, author = "Dima Grigoriev and Marek Karpinski and {Friedhelm Meyer auf der Heide} and Roman Smolensky" -, title = "A Lower Bound for Randomized Algebraic Decision Trees" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, year = 1996 -, pages = "612--619" -, update = "01.07 orourke" +, author = "Dima Grigoriev and Marek Karpinski and {Friedhelm Meyer auf der Heide} and Roman Smolensky" +, title = "A Lower Bound for Randomized Algebraic Decision Trees" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, year = 1996 +, pages = "612--619" +, update = "01.07 orourke" } @inproceedings{gkv-clbtm-94 -, author = "Dima Grigoriev and Marek Karpinski and Nicolai Vorobjov" -, title = "Complexity Lower Bounds on Testing Membership to a Polyhedron by Algebraic Decision Trees" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "" -, update = "94.01 jones" +, author = "Dima Grigoriev and Marek Karpinski and Nicolai Vorobjov" +, title = "Complexity Lower Bounds on Testing Membership to a Polyhedron by Algebraic Decision Trees" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "" +, update = "94.01 jones" } @article{gv-clbct-96 -, author = "Dima Grigoriev and Nicolai Vorobjov" -, title = "Complexity lower bounds for computation trees with elementary transcendental function gates" -, journal = "Theoret. Comput. Sci." -, volume = 157 -, year = 1996 -, pages = "185--214" -, comments = "Proves an $\Omega(\sqrt{log N})$ lower bound for testing +, author = "Dima Grigoriev and Nicolai Vorobjov" +, title = "Complexity lower bounds for computation trees with elementary transcendental function gates" +, journal = "Theoret. Comput. Sci." +, volume = 157 +, year = 1996 +, pages = "185--214" +, comments = "Proves an $\Omega(\sqrt{log N})$ lower bound for testing membership in a set whose sum of Betti numbers is $N$, or membership in a polyhedron with $N$ faces (of all dimensions). The model of computation generalizes Ben-Or's algebraic computation trees by also allowing the computation of Pfaffian functions such as exp, log, sin, cos, etc." -, update = "97.07 agarwal" +, update = "97.07 agarwal" } @article{g-cdta-87 -, author = "D. Y. Grigoryev" -, title = "Complexity of deciding {Tarski} algebra" -, journal = "J. Symbolic Comput." -, volume = "??" -, year = 1987 -, note = "To appear" -, update = "98.03 bibrelex" +, author = "D. Y. Grigoryev" +, title = "Complexity of deciding {Tarski} algebra" +, journal = "J. Symbolic Comput." +, volume = "??" +, year = 1987 +, note = "To appear" +, update = "98.03 bibrelex" } @inproceedings{gmo-laapc-98 -, author = "C. I. Grima and A. M{\'a}rquez and L. Ortega" -, title = "A Locus Approach to Angle Problems in Computational Geometry" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = 87 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "C. I. Grima and A. M{\'a}rquez and L. Ortega" +, title = "A Locus Approach to Angle Problems in Computational Geometry" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = 87 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{gmo-pdgo-99 -, author = "Clara I. Grima and Alberto M{\'a}rquez and Lidia Ortega" -, title = "Polar Diagrams of Geometric Objects" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "149--151" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Clara I. Grima and Alberto M{\'a}rquez and Lidia Ortega" +, title = "Polar Diagrams of Geometric Objects" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "149--151" +, update = "00.03 bibrelex, 99.07 bibrelex" } @book{gs-prp-85 -, author = "G. R. Grimmet and D. R. Stirzaker" -, title = "Probability and Random Processes" -, publisher = "Clarendon Press" -, address = "Oxford, UK" -, year = 1985 -, update = "98.03 bibrelex" +, author = "G. R. Grimmet and D. R. Stirzaker" +, title = "Probability and Random Processes" +, publisher = "Clarendon Press" +, address = "Oxford, UK" +, year = 1985 +, update = "98.03 bibrelex" } @article{g-clcmb-86 -, author = "W. E. Grimson" -, title = "The combinatorics of local constraints in model-based recognition and localization from sparse data" -, journal = "J. ACM" -, volume = 33 -, year = 1986 -, pages = "658--686" -, update = "98.03 bibrelex" +, author = "W. E. Grimson" +, title = "The combinatorics of local constraints in model-based recognition and localization from sparse data" +, journal = "J. ACM" +, volume = 33 +, year = 1986 +, pages = "658--686" +, update = "98.03 bibrelex" } @article{gl-lopsi-87 -, author = "W. E. Grimson and T. Lozano-Perez" -, title = "Localizing overlapping parts by searching the interpretation tree" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-9" -, year = 1987 -, pages = "469--482" -, update = "98.03 bibrelex" +, author = "W. E. Grimson and T. Lozano-Perez" +, title = "Localizing overlapping parts by searching the interpretation tree" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-9" +, year = 1987 +, pages = "469--482" +, update = "98.03 bibrelex" } @book{g-iscsh-81 -, author = "W. E. L. Grimson" -, title = "Form Images to Surfaces: A Computational Study of the Human Early Visual System" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1981 -, update = "97.11 bibrelex" +, author = "W. E. L. Grimson" +, title = "Form Images to Surfaces: A Computational Study of the Human Early Visual System" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1981 +, update = "97.11 bibrelex" } @inproceedings{gh-sgh-90 -, author = "W. E. L. Grimson and D. P. Huttenlocher" -, title = "On the sensitivity of geometric hashing" -, booktitle = "Proc. 3rd Internat. Conf. Comput. Vision" -, year = 1990 -, pages = "334--338" -, update = "98.07 rote, 97.11 bibrelex" +, author = "W. E. L. Grimson and D. P. Huttenlocher" +, title = "On the sensitivity of geometric hashing" +, booktitle = "Proc. 3rd Internat. Conf. Comput. Vision" +, year = 1990 +, pages = "334--338" +, update = "98.07 rote, 97.11 bibrelex" } @techreport{gc-cspum-93 -, author = "R. Grinde and T. Cavalier" -, title = "Containment of a single polygon using mathematical programming" -, type = "Technical {Report} {IMSE} {Working} {Paper}" -, number = "92-164" -, institution = "Dept. Industrial and Management Systems Engineering, Pennsylvania State Univ." -, year = 1993 -, update = "98.07 bibrelex" +, author = "R. Grinde and T. Cavalier" +, title = "Containment of a single polygon using mathematical programming" +, type = "Technical {Report} {IMSE} {Working} {Paper}" +, number = "92-164" +, institution = "Dept. Industrial and Management Systems Engineering, Pennsylvania State Univ." +, year = 1993 +, update = "98.07 bibrelex" } @article{gc-natpc-96 -, author = "R. Grinde and T. M. Cavalier" -, title = "A new algorithm for the two-polygon containment problem" -, journal = "Comput. Oper. Res." -, volume = "??" -, year = 1996 -, note = "To appear" -, update = "98.07 bibrelex" +, author = "R. Grinde and T. M. Cavalier" +, title = "A new algorithm for the two-polygon containment problem" +, journal = "Comput. Oper. Res." +, volume = "??" +, year = 1996 +, note = "To appear" +, update = "98.07 bibrelex" } @article{g-tprc2-81 -, author = "P. Gritzmann" -, title = "Tight polyhedral realizations of closed $2$-dimensional manifolds in {$R^{3}$}" -, journal = "J. Geom." -, volume = 17 -, year = 1981 -, pages = "69--76" +, author = "P. Gritzmann" +, title = "Tight polyhedral realizations of closed $2$-dimensional manifolds in {$R^{3}$}" +, journal = "J. Geom." +, volume = 17 +, year = 1981 +, pages = "69--76" } @article{ghk-gbrcp-91 -, author = "P. Gritzmann and L. Habsieger and V. Klee" -, title = "Good and bad radii of convex polygons" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "395--403" +, author = "P. Gritzmann and L. Habsieger and V. Klee" +, title = "Good and bad radii of convex polygons" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "395--403" } @inproceedings{gh-ptamr-95 -, author = "Peter Gritzmann and Alexander Hufnagel" -, title = "A Polynomial Time Algorithm for {Minkowski} Reconstruction" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "1--9" -, keywords = "polytopes, convexity, computer vision, facet volumes" -, cites = "df-ccv-88, dgh-ccmv-94, gj-cigtn-79, gh-acmrt-94, gk-csbpc-94, g-immv-90, g-sgi-93, gls-gaco-88, h-egi-84, h-rv-86, h-apbmt-95, l-pvc-91, l-imrcp-83, l-egimv-85, m-aludk-97, m-vuo-03, s-mv-93, s-cbbmt-93, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Peter Gritzmann and Alexander Hufnagel" +, title = "A Polynomial Time Algorithm for {Minkowski} Reconstruction" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "1--9" +, keywords = "polytopes, convexity, computer vision, facet volumes" +, cites = "df-ccv-88, dgh-ccmv-94, gj-cigtn-79, gh-acmrt-94, gk-csbpc-94, g-immv-90, g-sgi-93, gls-gaco-88, h-egi-84, h-rv-86, h-apbmt-95, l-pvc-91, l-imrcp-83, l-egimv-85, m-aludk-97, m-vuo-03, s-mv-93, s-cbbmt-93, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @techreport{gh-acmrt-94 -, author = "P. Gritzmann and A. Hufnagel" -, title = "On the algorithmic complexity of {Minkowski}'s reconstruction theorem" -, type = "Manuscript" -, institution = "??" -, year = 1994 -, update = "98.03 bibrelex" +, author = "P. Gritzmann and A. Hufnagel" +, title = "On the algorithmic complexity of {Minkowski}'s reconstruction theorem" +, type = "Manuscript" +, institution = "??" +, year = 1994 +, update = "98.03 bibrelex" } @article{gk-ccioj-93 -, author = "P. Gritzmann and V. Klee" -, title = "Computational complexity of inner and outer $j$-radii of polytopes in finite-dimensional normed spaces" -, journal = "Math. Program." -, volume = 59 -, year = 1993 -, pages = "163--213" -, update = "93.09 smid" +, author = "P. Gritzmann and V. Klee" +, title = "Computational complexity of inner and outer $j$-radii of polytopes in finite-dimensional normed spaces" +, journal = "Math. Program." +, volume = 59 +, year = 1993 +, pages = "163--213" +, update = "93.09 smid" } @incollection{gk-cc-97 -, author = "P. Gritzmann and V. Klee" -, title = "Computational convexity" -, chapter = 27 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "491--516" -, update = "97.11 orourke" +, author = "P. Gritzmann and V. Klee" +, title = "Computational convexity" +, chapter = 27 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "491--516" +, update = "97.11 orourke" } @article{gk-iojrc-92 -, author = "P. Gritzmann and V. Klee" -, title = "Inner and outer $j$-radii of convex bodies in finite-dimensional normed spaces" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "255--280" +, author = "P. Gritzmann and V. Klee" +, title = "Inner and outer $j$-radii of convex bodies in finite-dimensional normed spaces" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "255--280" } @incollection{gk-csbpc-94 -, author = "P. Gritzmann and V. Klee" -, title = "On the complexity of some basic problems in computational convexity: {II}. {Volume} and mixed volumes" -, editor = "T. Bisztriczky and P. McMullen and R. Schneider and A. I. Weiss" -, booktitle = "Polytopes: Abstract, Convex and Computational" -, publisher = "Kluwer Academic Publischers" -, year = 1994 -, pages = "373--466" -, update = "98.03 bibrelex" +, author = "P. Gritzmann and V. Klee" +, title = "On the complexity of some basic problems in computational convexity: {II}. {Volume} and mixed volumes" +, editor = "T. Bisztriczky and P. McMullen and R. Schneider and A. I. Weiss" +, booktitle = "Polytopes: Abstract, Convex and Computational" +, publisher = "Kluwer Academic Publischers" +, year = 1994 +, pages = "373--466" +, update = "98.03 bibrelex" } @inproceedings{gkw-lplpo-90 -, author = "P. Gritzmann and V. Klee and J. Westwater" -, title = "On the limited power of linear probes and other optimization oracles" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "92--101" -, cites = "bb-ca-85, cy-sp-87, dey-pcp-86, gls-gaco-88, sk-ctnmx-78, s-gp-88, s-pgp-89, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "P. Gritzmann and V. Klee and J. Westwater" +, title = "On the limited power of linear probes and other optimization oracles" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "92--101" +, cites = "bb-ca-85, cy-sp-87, dey-pcp-86, gls-gaco-88, sk-ctnmx-78, s-gp-88, s-pgp-89, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex" } @inproceedings{gkw-pcdlp-93 -, author = "Peter Gritzmann and Victor Klee and John Westwater" -, title = "Polytope Containment And Determination By Linear Probes" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "59--60" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Peter Gritzmann and Victor Klee and John Westwater" +, title = "Polytope Containment And Determination By Linear Probes" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "59--60" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{gl-emwpi-89 -, author = "P. Gritzmann and M. Lassak" -, title = "Estimates for the minimal width polytopes inscribed in convex bodies" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "627--635" +, author = "P. Gritzmann and M. Lassak" +, title = "Estimates for the minimal width polytopes inscribed in convex bodies" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "627--635" } @article{gmpp-eptvs-91 -, author = "P. Gritzmann and B. Mohar and J. Pach and R. Pollack" -, title = "Embedding a Planar Triangulation with Vertices at Specified Points" -, journal = "Amer. Math. Monthly" -, volume = 98 -, number = 2 -, year = 1991 -, pages = "165--166" -, update = "98.11 bibrelex, 93.09 held" +, author = "P. Gritzmann and B. Mohar and J. Pach and R. Pollack" +, title = "Embedding a Planar Triangulation with Vertices at Specified Points" +, journal = "Amer. Math. Monthly" +, volume = 98 +, number = 2 +, year = 1991 +, pages = "165--166" +, update = "98.11 bibrelex, 93.09 held" } @article{gs-mapcc-93 -, author = "P. Gritzmann and B. Sturmfels" -, title = "Minkowski addition of polytopes: Computational complexity and applications" -, journal = "SIAM J. Discrete Math." -, volume = 6 -, year = 1993 -, pages = "246--269" -, update = "94.05 matousek" +, author = "P. Gritzmann and B. Sturmfels" +, title = "Minkowski addition of polytopes: Computational complexity and applications" +, journal = "SIAM J. Discrete Math." +, volume = 6 +, year = 1993 +, pages = "246--269" +, update = "94.05 matousek" } @article{g-immv-90 -, author = "H. Groemer" -, title = "On an inequality of {Minkowski} for mixed volumes" -, journal = "Geom. Dedicata" -, volume = 33 -, year = 1990 -, pages = "117--122" -, update = "98.03 bibrelex" +, author = "H. Groemer" +, title = "On an inequality of {Minkowski} for mixed volumes" +, journal = "Geom. Dedicata" +, volume = 33 +, year = 1990 +, pages = "117--122" +, update = "98.03 bibrelex" } @article{g-cbtpp-90 -, author = "H. Groemer" -, title = "On convex bodies that permit packings of high density" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "357--364" +, author = "H. Groemer" +, title = "On convex bodies that permit packings of high density" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "357--364" } @article{g-sbppc-86 -, author = "H. Groemer" -, title = "Some basic properties of packing and covering constants" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "183--193" +, author = "H. Groemer" +, title = "Some basic properties of packing and covering constants" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "183--193" } @incollection{g-sgi-93 -, author = "H. Groemer" -, title = "Stability of geometric inequalities" -, editor = "P. M. Gruber and J. M. Wills" -, booktitle = "Handbook of Convex Geometry" -, volume = "A" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1993 -, pages = "125--150" -, update = "98.03 bibrelex" +, author = "H. Groemer" +, title = "Stability of geometric inequalities" +, editor = "P. M. Gruber and J. M. Wills" +, booktitle = "Handbook of Convex Geometry" +, volume = "A" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1993 +, pages = "125--150" +, update = "98.03 bibrelex" } @article{gvdk-sbap-81 -, author = "F. C. A. Groen and P. W. Verbeek and N. DeJong and J. W. Klumper" -, title = "The Smallest Box Around a Package" -, journal = "Pattern Recogn." -, volume = 14 -, number = "1--6" -, year = 1981 -, pages = "173--178" -, update = "94.01 jones, 93.09 held" +, author = "F. C. A. Groen and P. W. Verbeek and N. DeJong and J. W. Klumper" +, title = "The Smallest Box Around a Package" +, journal = "Pattern Recogn." +, volume = 14 +, number = "1--6" +, year = 1981 +, pages = "173--178" +, update = "94.01 jones, 93.09 held" } @techreport{gh-epfpk-84 -, author = "U. Groh and G. Hotz" -, title = "Ein {Planarit{\"a}tstest} f{\"u}r planar-konvexe {Grapheneinbettungen} mit linearer {Komplexit{\"a}t}" -, type = "Report" -, number = "??" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1984 +, author = "U. Groh and G. Hotz" +, title = "Ein {Planarit{\"a}tstest} f{\"u}r planar-konvexe {Grapheneinbettungen} mit linearer {Komplexit{\"a}t}" +, type = "Report" +, number = "??" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1984 } @techreport{g-lbds-85 -, author = "V. Grolmusz" -, title = "A lower bound to diameter searching" -, type = "Report" -, number = "??" -, institution = "Comput. Sci. Dept., E{\"o}tv{\"o}s Lora{\'a}nd Univ." -, address = "Budapest, Hungary" -, year = 1985 +, author = "V. Grolmusz" +, title = "A lower bound to diameter searching" +, type = "Report" +, number = "??" +, institution = "Comput. Sci. Dept., E{\"o}tv{\"o}s Lora{\'a}nd Univ." +, address = "Budapest, Hungary" +, year = 1985 } @article{g-sih-69 -, author = "M. L. Gromov" -, title = "Simplexes Inscribed on a Hypersurface" -, journal = "Mat. Zametki" -, volume = 5 -, year = 1969 -, pages = "81--89" -, note = "In Russian. English translation in Transl. Math. Notes Acad. Sci. USSR 5:52--56, 1969." -, update = "99.11 bibrelex" +, author = "M. L. Gromov" +, title = "Simplexes Inscribed on a Hypersurface" +, journal = "Mat. Zametki" +, volume = 5 +, year = 1969 +, pages = "81--89" +, note = "In Russian. English translation in Transl. Math. Notes Acad. Sci. USSR 5:52--56, 1969." +, update = "99.11 bibrelex" } @book{gz-cccad-84 -, author = "M. P. Groover and E. W. Zimmers" -, title = "{CAD}/{CAM}: {Computer} Aided Design and Manufacturing" -, publisher = "Prentice Hall" -, year = 1984 -, update = "98.03 bibrelex" +, author = "M. P. Groover and E. W. Zimmers" +, title = "{CAD}/{CAM}: {Computer} Aided Design and Manufacturing" +, publisher = "Prentice Hall" +, year = 1984 +, update = "98.03 bibrelex" } @inproceedings{g-cgc-30 -, author = "Harald Gropp" -, title = "Configurations between Geometry and Combinatorics" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "30--32" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Harald Gropp" +, title = "Configurations between Geometry and Combinatorics" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "30--32" +, update = "00.03 bibrelex, 98.07 bibrelex" } @techreport{gj-oqdsi-80 -, author = "W. I. Grosky and R. Jain" -, title = "On optimizing quadtrees, a data structure for image representation" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Wayne State Univ." -, address = "Detroit, MI" -, year = 1980 +, author = "W. I. Grosky and R. Jain" +, title = "On optimizing quadtrees, a data structure for image representation" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Wayne State Univ." +, address = "Detroit, MI" +, year = 1980 } @article{g-vg-74 -, author = "J. L. Gross" -, title = "Voltage graphs" -, journal = "Discrete Math." -, volume = 9 -, year = 1974 -, pages = "239--246" +, author = "J. L. Gross" +, title = "Voltage graphs" +, journal = "Discrete Math." +, volume = 9 +, year = 1974 +, pages = "239--246" } @article{ga-ttcg-74 -, author = "J. L. Gross and S. R. Alpert" -, title = "The topological theory of current graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 17 -, year = 1974 -, pages = "218--233" +, author = "J. L. Gross and S. R. Alpert" +, title = "The topological theory of current graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 17 +, year = 1974 +, pages = "218--233" } @article{gr-ltpa2-79 -, author = "J. L. Gross and R. H. Rosen" -, title = "A linear time planarity algorithm for $2$-complexes" -, journal = "J. ACM" -, volume = 26 -, year = 1979 -, pages = "611--617" +, author = "J. L. Gross and R. H. Rosen" +, title = "A linear time planarity algorithm for $2$-complexes" +, journal = "J. ACM" +, volume = 26 +, year = 1979 +, pages = "611--617" } @book{gt-tgt-87 -, author = "J. L. Gross and T. W. Tucker" -, title = "Topological Graph Theory" -, publisher = "John Wiley \& Sons" -, year = 1987 -, update = "97.11 bibrelex" +, author = "J. L. Gross and T. W. Tucker" +, title = "Topological Graph Theory" +, publisher = "John Wiley \& Sons" +, year = 1987 +, update = "97.11 bibrelex" } @article{gt-gagcp-77 -, author = "J. L. Gross and W. Tucker" -, title = "Generating all graph coverings by permutation voltage assignments" -, journal = "Discrete Math." -, volume = 18 -, year = 1977 -, pages = "273--283" +, author = "J. L. Gross and W. Tucker" +, title = "Generating all graph coverings by permutation voltage assignments" +, journal = "Discrete Math." +, volume = 18 +, year = 1977 +, pages = "273--283" } @inproceedings{gpp-odpmr-98 -, author = "Roberto Grossi and Andrea Pietracaprina and Geppino Pucci" -, title = "Optimal Deterministic Protocols for Mobile Robots on a Grid" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "181--192" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "Roberto Grossi and Andrea Pietracaprina and Geppino Pucci" +, title = "Optimal Deterministic Protocols for Mobile Robots on a Grid" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "181--192" +, update = "99.03 bibrelex, 98.07 mitchell" } @article{g-orncm-86 -, author = "D. D. Grossman" -, title = "Opportunities for Research on Numerical Control Machining" -, journal = "Commun. ACM" -, volume = 29 -, number = 6 -, month = jun -, year = 1986 -, pages = "515--522" -, update = "98.03 bibrelex" +, author = "D. D. Grossman" +, title = "Opportunities for Research on Numerical Control Machining" +, journal = "Commun. ACM" +, volume = 29 +, number = 6 +, month = jun +, year = 1986 +, pages = "515--522" +, update = "98.03 bibrelex" } @article{gb-ompcc-75 -, author = "D. D. Grossman and M. W. Blasgen" -, title = "Orienting mechanical parts by computer-controlled manipulator" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-5" -, number = 5 -, year = 1975 -, pages = "561--565" -, update = "98.07 bibrelex" +, author = "D. D. Grossman and M. W. Blasgen" +, title = "Orienting mechanical parts by computer-controlled manipulator" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-5" +, number = 5 +, year = 1975 +, pages = "561--565" +, update = "98.07 bibrelex" } @book{gm-gtg-64 -, author = "I. Grossman and W. Magnus" -, title = "Groups and their Graphs" -, publisher = "Random House" -, year = 1964 -, update = "97.11 bibrelex" +, author = "I. Grossman and W. Magnus" +, title = "Groups and their Graphs" +, publisher = "Random House" +, year = 1964 +, update = "97.11 bibrelex" } @book{g-ttn-66 -, author = "E. Grosswald" -, title = "Topics from the Theory of Numbers" -, publisher = "Macmillan" -, address = "New York, NY" -, year = 1966 -, update = "97.11 bibrelex" +, author = "E. Grosswald" +, title = "Topics from the Theory of Numbers" +, publisher = "Macmillan" +, address = "New York, NY" +, year = 1966 +, update = "97.11 bibrelex" } @book{gls-gaco-88 -, author = "M. Gr{\"o}tschel and L. Lov{\'a}sz and A. Schrijver" -, title = "Geometric Algorithms and Combinatorial Optimization" -, series = "Algorithms and Combinatorics" -, volume = 2 -, publisher = "Springer-Verlag" -, address = "Berlin Heidelberg" -, year = 1988 -, note = "2nd edition 1994" -, update = "97.11 bibrelex, 97.03 gaertner+salinger" +, author = "M. Gr{\"o}tschel and L. Lov{\'a}sz and A. Schrijver" +, title = "Geometric Algorithms and Combinatorial Optimization" +, series = "Algorithms and Combinatorics" +, volume = 2 +, publisher = "Springer-Verlag" +, address = "Berlin Heidelberg" +, year = 1988 +, note = "2nd edition 1994" +, update = "97.11 bibrelex, 97.03 gaertner+salinger" } @incollection{gls-papg -, author = "M. Gr{\"o}tschel and L. Lov{\'a}sz and A. Schrijver" -, title = "Polynomial Algorithms for Perfect Graphs" -, editor = "C. Berge and V. Chv{\'a}tal" -, booktitle = "Topics on Perfect Graphs" -, series = "Ann. Discrete Math." -, volume = 21 -, publisher = "North-Holland" -, year = 1984 -, update = "98.11 bibrelex" +, author = "M. Gr{\"o}tschel and L. Lov{\'a}sz and A. Schrijver" +, title = "Polynomial Algorithms for Perfect Graphs" +, editor = "C. Berge and V. Chv{\'a}tal" +, booktitle = "Topics on Perfect Graphs" +, series = "Ann. Discrete Math." +, volume = 21 +, publisher = "North-Holland" +, year = 1984 +, update = "98.11 bibrelex" } @article{gls-emicc-81 -, author = "M. Gr{\"o}tschel and L. Lov{\'a}z and A. Schrijver" -, title = "The Ellipsoid Method and its Consequences on Combinatorial Optimization" -, journal = "Combinatorica" -, volume = 1 -, year = 1981 -, pages = "169--197" -, update = "98.03 bibrelex" +, author = "M. Gr{\"o}tschel and L. Lov{\'a}z and A. Schrijver" +, title = "The Ellipsoid Method and its Consequences on Combinatorial Optimization" +, journal = "Combinatorica" +, volume = 1 +, year = 1981 +, pages = "169--197" +, update = "98.03 bibrelex" } @inproceedings{gmv-ocmhs-95 -, author = "Edward F. Grove and T. M. Murali and Jeffrey Scott Vitter" -, title = "The Object Complexity Model for Hidden-Surface Elimination" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "273--278" -, update = "95.09 jones" +, author = "Edward F. Grove and T. M. Murali and Jeffrey Scott Vitter" +, title = "The Object Complexity Model for Hidden-Surface Elimination" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "273--278" +, update = "95.09 jones" } @article{gmv-ocmhs-99 -, author = "E. F. Grove and T. M. Murali and J. S. Vitter" -, title = "The Object Complexity Model for Hidden-Surface Removal" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, number = 2 -, month = apr -, year = 1999 -, pages = "207--217" -, update = "99.07 held+smid" +, author = "E. F. Grove and T. M. Murali and J. S. Vitter" +, title = "The Object Complexity Model for Hidden-Surface Removal" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, number = 2 +, month = apr +, year = 1999 +, pages = "207--217" +, update = "99.07 held+smid" } % pages correct? @incollection{g-acb-83 -, author = "P. M. Gruber" -, title = "Approximation of convex bodies" -, editor = "Peter M. Gruber and J. M. Wills" -, booktitle = "Convexity and its Applications" -, publisher = "Birkh{\"a}user" -, address = "Basel, Switzerland" -, year = 1983 -, pages = "131--162" -, keywords = "survey paper" -, update = "93.09 milone+mitchell+rote" +, author = "P. M. Gruber" +, title = "Approximation of convex bodies" +, editor = "Peter M. Gruber and J. M. Wills" +, booktitle = "Convexity and its Applications" +, publisher = "Birkh{\"a}user" +, address = "Basel, Switzerland" +, year = 1983 +, pages = "131--162" +, keywords = "survey paper" +, update = "93.09 milone+mitchell+rote" } @incollection{g-aacb-93 -, author = "P. M. Gruber" -, title = "Aspects of approximation of convex bodies" -, chapter = "1.10" -, editor = "Peter M. Gruber and J. M. Wills" -, booktitle = "Handbook of Convex Geometry" -, volume = "A" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1993 -, pages = "319--345" -, keywords = "survey paper" -, update = "93.09 rote" +, author = "P. M. Gruber" +, title = "Aspects of approximation of convex bodies" +, chapter = "1.10" +, editor = "Peter M. Gruber and J. M. Wills" +, booktitle = "Handbook of Convex Geometry" +, volume = "A" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1993 +, pages = "319--345" +, keywords = "survey paper" +, update = "93.09 rote" } @incollection{g-hc-93 -, author = "P. M. Gruber" -, title = "History of Convexity" -, editor = "P. M. Gruber and J. M. Wills" -, booktitle = "Handbook of Convex Geometry" -, publisher = "North-Holland" -, year = 1993 -, update = "99.11 bibrelex, 97.03 pocchiola" +, author = "P. M. Gruber" +, title = "History of Convexity" +, editor = "P. M. Gruber and J. M. Wills" +, booktitle = "Handbook of Convex Geometry" +, publisher = "North-Holland" +, year = 1993 +, update = "99.11 bibrelex, 97.03 pocchiola" } @book{gl-gn-87 -, author = "Peter M. Gruber and C. G. Lekkerkerker" -, title = "Geometry of Numbers" -, edition = "2nd" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1987 -, succeeds = "l-gn-69" -, update = "93.09 rote" +, author = "Peter M. Gruber and C. G. Lekkerkerker" +, title = "Geometry of Numbers" +, edition = "2nd" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1987 +, succeeds = "l-gn-69" +, update = "93.09 rote" } @book{gw-cia-83 -, title = "Convexity and its Applications" -, editor = "Peter M. Gruber and J. M. Wills" -, publisher = "Birkh{\"a}user" -, address = "Basel, Switzerland" -, year = 1983 -, keywords = "collection, survey papers" -, update = "93.09 rote" +, title = "Convexity and its Applications" +, editor = "Peter M. Gruber and J. M. Wills" +, publisher = "Birkh{\"a}user" +, address = "Basel, Switzerland" +, year = 1983 +, keywords = "collection, survey papers" +, update = "93.09 rote" } @book{gw-hcg-93a -, title = "Handbook of Convex Geometry" -, editor = "Peter M. Gruber and J. M. Wills" -, volume = "A" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1993 -, keywords = "collection, survey papers" -, update = "93.09 rote" +, title = "Handbook of Convex Geometry" +, editor = "Peter M. Gruber and J. M. Wills" +, volume = "A" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1993 +, keywords = "collection, survey papers" +, update = "93.09 rote" } @book{gw-hcg-93b -, title = "Handbook of Convex Geometry" -, editor = "Peter M. Gruber and J. M. Wills" -, volume = "B" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1993 -, keywords = "collection, survey papers" -, update = "93.09 rote" +, title = "Handbook of Convex Geometry" +, editor = "Peter M. Gruber and J. M. Wills" +, volume = "B" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1993 +, keywords = "collection, survey papers" +, update = "93.09 rote" } @article{g-pvc-56 -, author = "B. Gr{\"u}nbaum" -, title = "A proof of {V{\'a}zsonyi}'s conjecture" -, journal = "Bull. Research Council Israel, Section A" -, volume = 6 -, year = 1956 -, pages = "77--78" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "B. Gr{\"u}nbaum" +, title = "A proof of {V{\'a}zsonyi}'s conjecture" +, journal = "Bull. Research Council Israel, Section A" +, volume = 6 +, year = 1956 +, pages = "77--78" +, update = "96.09 agarwal, 96.05 agarwal" } @book{g-as-72 -, author = "B. Gr{\"u}nbaum" -, title = "Arrangements and Spreads" -, series = "Regional Conf. Ser. Math." -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1972 -, update = "98.03 agarwal" +, author = "B. Gr{\"u}nbaum" +, title = "Arrangements and Spreads" +, series = "Regional Conf. Ser. Math." +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1972 +, update = "98.03 agarwal" } @article{g-ah-71 -, author = "B. Gr{\"u}nbaum" -, title = "Arrangements of hyperplanes" -, journal = "Congr. Numer." -, volume = 3 -, year = 1971 -, pages = "41--106" -, comments = "Louisiana Conf. on Comb., Graph Theory \& Comput." +, author = "B. Gr{\"u}nbaum" +, title = "Arrangements of hyperplanes" +, journal = "Congr. Numer." +, volume = 3 +, year = 1971 +, pages = "41--106" +, comments = "Louisiana Conf. on Comb., Graph Theory \& Comput." } @book{g-cp-67 -, author = "B. Gr{\"u}nbaum" -, title = "Convex Polytopes" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1967 -, update = "99.11 bibrelex" +, author = "B. Gr{\"u}nbaum" +, title = "Convex Polytopes" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1967 +, update = "99.11 bibrelex" } @article{g-hcp-95 -, author = "B. Gr{\"u}nbaum" -, title = "How to convexify a polygon" -, journal = "Geombinatorics" -, volume = 5 -, month = jul -, year = 1995 -, pages = "24--30" -, update = "98.11 orourke" +, author = "B. Gr{\"u}nbaum" +, title = "How to convexify a polygon" +, journal = "Geombinatorics" +, volume = 5 +, month = jul +, year = 1995 +, pages = "24--30" +, update = "98.11 orourke" } @techreport{g-lcg-74 -, author = "B. Gr{\"u}nbaum" -, title = "Lectures on Combinatorial Geometry" -, type = "Mimeographed {Note}" -, institution = "Univ. Washington" -, address = "Seattle, WA" -, year = 1974 -, update = "97.11 bibrelex" +, author = "B. Gr{\"u}nbaum" +, title = "Lectures on Combinatorial Geometry" +, type = "Mimeographed {Note}" +, institution = "Univ. Washington" +, address = "Seattle, WA" +, year = 1974 +, update = "97.11 bibrelex" } @article{g-ts-55 -, author = "B. Gr{\"u}nbaum" -, title = "On a theorem of L. A. Santalo" -, journal = "Pacific J. Math." -, volume = 5 -, year = 1955 -, pages = "351--359" -, update = "98.03 bibrelex" +, author = "B. Gr{\"u}nbaum" +, title = "On a theorem of L. A. Santalo" +, journal = "Pacific J. Math." +, volume = 5 +, year = 1955 +, pages = "351--359" +, update = "98.03 bibrelex" } @article{g-ct-58 -, author = "B. Gr{\"u}nbaum" -, title = "On common transversals" -, journal = "Arch. Math." -, volume = 9 -, year = 1958 -, pages = "465--469" +, author = "B. Gr{\"u}nbaum" +, title = "On common transversals" +, journal = "Arch. Math." +, volume = 9 +, year = 1958 +, pages = "465--469" } @article{g-iss-59 -, author = "B. Gr{\"u}nbaum" -, title = "On intersections of similar sets" -, journal = "Portugal Math." -, volume = 18 -, year = 1959 -, pages = "155--164" -, update = "97.11 bibrelex" +, author = "B. Gr{\"u}nbaum" +, title = "On intersections of similar sets" +, journal = "Portugal Math." +, volume = 18 +, year = 1959 +, pages = "155--164" +, update = "97.11 bibrelex" } @inproceedings{g-ibs-70 -, author = "B. Gr{\"u}nbaum" -, title = "The importance of being straight" -, booktitle = "Proceedings of the 12th Biennial Seminar of the Canadian Mathematical Congress on TimeSeries and Stochastic Processes; Convexity and Combinatorics" -, year = 1970 -, pages = "243--254" -, update = "98.03 bibrelex" +, author = "B. Gr{\"u}nbaum" +, title = "The importance of being straight" +, booktitle = "Proceedings of the 12th Biennial Seminar of the Canadian Mathematical Congress on TimeSeries and Stochastic Processes; Convexity and Combinatorics" +, year = 1970 +, pages = "243--254" +, update = "98.03 bibrelex" } @article{gm-csfs-61 -, author = "B. Gr{\"u}nbaum and T. S. Motzkin" -, title = "On components in some families of sets" -, journal = "Proc. Amer. Math. Soc." -, volume = 12 -, year = 1961 -, pages = "607--613" -, update = "98.03 bibrelex" +, author = "B. Gr{\"u}nbaum and T. S. Motzkin" +, title = "On components in some families of sets" +, journal = "Proc. Amer. Math. Soc." +, volume = 12 +, year = 1961 +, pages = "607--613" +, update = "98.03 bibrelex" } @article{gs-rwnpc-90 -, author = "B. Gr{\"u}nbaum and G. C. Shephard" -, title = "Rotation and winding numbers for polygons and curves" -, journal = "Trans. Amer. Math. Soc." -, volume = 322 -, number = 1 -, year = 1990 -, pages = "169--187" -, update = "98.11 bibrelex" +, author = "B. Gr{\"u}nbaum and G. C. Shephard" +, title = "Rotation and winding numbers for polygons and curves" +, journal = "Trans. Amer. Math. Soc." +, volume = 322 +, number = 1 +, year = 1990 +, pages = "169--187" +, update = "98.11 bibrelex" } @article{gs-spp-87 -, author = "B. Gr{\"u}nbaum and G. C. Shephard" -, title = "Some problems on polyhedra" -, journal = "J. Geom." -, volume = 29 -, number = 2 -, month = aug -, year = 1987 -, pages = "182--190" -, update = "97.11 bibrelex" +, author = "B. Gr{\"u}nbaum and G. C. Shephard" +, title = "Some problems on polyhedra" +, journal = "J. Geom." +, volume = 29 +, number = 2 +, month = aug +, year = 1987 +, pages = "182--190" +, update = "97.11 bibrelex" } @inproceedings{gs-gpg-81 -, author = "B. Gr{\"u}nbaum and G. C. Shephard" -, title = "The geometry of planar graphs" -, booktitle = "Proc. 8-th British Combinatorial Conference" -, year = 1981 -, update = "97.11 bibrelex" +, author = "B. Gr{\"u}nbaum and G. C. Shephard" +, title = "The geometry of planar graphs" +, booktitle = "Proc. 8-th British Combinatorial Conference" +, year = 1981 +, update = "97.11 bibrelex" } @book{gs-tp-87 -, author = "B. Gr{\"u}nbaum and G. C. Shephard" -, title = "Tilings and Patterns" -, publisher = "W. H. Freeman" -, address = "New York, NY" -, year = 1987 +, author = "B. Gr{\"u}nbaum and G. C. Shephard" +, title = "Tilings and Patterns" +, publisher = "W. H. Freeman" +, address = "New York, NY" +, year = 1987 } @techreport{gz-cpff-98 -, author = "Branko Gr{\"u}nbaum and Joseph Zaks" -, title = "Convexification of polygons by flips and by flipturns" -, number = "6/4/98" -, institution = "Department of Mathematics, University of Washington" -, address = "Seattle" -, year = 1998 -, update = "02.03 orourke" +, author = "Branko Gr{\"u}nbaum and Joseph Zaks" +, title = "Convexification of polygons by flips and by flipturns" +, number = "6/4/98" +, institution = "Department of Mathematics, University of Washington" +, address = "Seattle" +, year = 1998 +, update = "02.03 orourke" } @article{g-dcrcf-57 -, author = "A. Grzegorczyk" -, title = "On the definition of computable real continuous functions" -, journal = "Fund. math." -, volume = 44 -, year = 1957 -, pages = "61--71" -, update = "98.11 bibrelex" +, author = "A. Grzegorczyk" +, title = "On the definition of computable real continuous functions" +, journal = "Fund. math." +, volume = 44 +, year = 1957 +, pages = "61--71" +, update = "98.11 bibrelex" } @techreport{gm-radhd-89 -, author = "D. J. Gschwind and T. P. Murtagh" -, title = "A Recursive Algorithm for Drawing Hierarchical Directed Graphs" -, number = "CS-89-02" -, institution = "Department of Computer Science, Williams College" -, year = 1989 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. J. Gschwind and T. P. Murtagh" +, title = "A Recursive Algorithm for Drawing Hierarchical Directed Graphs" +, number = "CS-89-02" +, institution = "Department of Computer Science, Williams College" +, year = 1989 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{gchhzy-otmo-92 -, author = "C. Gu and S. Campbell and J. Hong and Q. He and D. Zhang and P. Yeh" -, title = "Optical thresholding and maximum operations" -, journal = "Appl. Optics" -, volume = 31 -, number = 26 -, year = 1992 -, pages = "5661--5665" -, update = "98.11 bibrelex" +, author = "C. Gu and S. Campbell and J. Hong and Q. He and D. Zhang and P. Yeh" +, title = "Optical thresholding and maximum operations" +, journal = "Appl. Optics" +, volume = 31 +, number = 26 +, year = 1992 +, pages = "5661--5665" +, update = "98.11 bibrelex" } @inproceedings{gh-ecbcp-00 -, author = "Roser Gu{\`a}rdia and Ferran Hurtado" -, title = "On the Equipartitions of Convex Bodies and Convex Polygons" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "47--50" -, update = "00.03 bibrelex" +, author = "Roser Gu{\`a}rdia and Ferran Hurtado" +, title = "On the Equipartitions of Convex Bodies and Convex Polygons" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "47--50" +, update = "00.03 bibrelex" } @article{gk-shfmp-70 -, author = "M. D. Guay and D. C. Kay" -, title = "On sets having finitely many points of local nonconvexity" -, journal = "Israel J. Math." -, volume = "??" -, year = 1970 -, pages = "39--52" -, update = "97.11 bibrelex" +, author = "M. D. Guay and D. C. Kay" +, title = "On sets having finitely many points of local nonconvexity" +, journal = "Israel J. Math." +, volume = "??" +, year = 1970 +, pages = "39--52" +, update = "97.11 bibrelex" } @techreport{gl-faatn-97 -, author = "Joachim Gudmundsson and Christos Levcopoulos" -, title = "A Fast Approximation Algorithm for {TSP} with Neighborhoods" -, type = "Technical Report" -, number = "LU-CS-TR:97-195" -, institution = "Dept. of Comp. Sci., Lund University" -, year = 1997 -, update = "98.03 mitchell" +, author = "Joachim Gudmundsson and Christos Levcopoulos" +, title = "A Fast Approximation Algorithm for {TSP} with Neighborhoods" +, type = "Technical Report" +, number = "LU-CS-TR:97-195" +, institution = "Dept. of Comp. Sci., Lund University" +, year = 1997 +, update = "98.03 mitchell" } @article{gl-faatn-99 -, author = "J. Gudmundsson and C. Levcopoulos" -, title = "A Fast Approximation Algorithm for {TSP} with Neighborhoods" -, journal = "Nordic J. Comput." -, volume = 6 -, year = 1999 -, pages = "469--488" -, update = "01.11 smid" +, author = "J. Gudmundsson and C. Levcopoulos" +, title = "A Fast Approximation Algorithm for {TSP} with Neighborhoods" +, journal = "Nordic J. Comput." +, volume = 6 +, year = 1999 +, pages = "469--488" +, update = "01.11 smid" } @article{gl-paamw-00 -, author = "J. Gudmundsson and C. Levcopoulos" -, title = "A Parallel Approximation Algorithm for Minimum Weight Triangulation" -, journal = "Nordic J. Comput." -, volume = 7 -, year = 2000 -, pages = "32--57" -, update = "01.11 smid" +, author = "J. Gudmundsson and C. Levcopoulos" +, title = "A Parallel Approximation Algorithm for Minimum Weight Triangulation" +, journal = "Nordic J. Comput." +, volume = 7 +, year = 2000 +, pages = "32--57" +, update = "01.11 smid" } @article{gln-ammn-01 -, author = "J. Gudmundsson and C. Levcopoulos and G. Narasimhan" -, title = "Approximating a minimum {Manhattan} network" -, journal = "Nordic J. Comput." -, volume = 8 -, year = 2001 -, pages = "219--232" -, update = "01.11 smid" +, author = "J. Gudmundsson and C. Levcopoulos and G. Narasimhan" +, title = "Approximating a minimum {Manhattan} network" +, journal = "Nordic J. Comput." +, volume = 8 +, year = 2001 +, pages = "219--232" +, update = "01.11 smid" } @inproceedings{gln-igacs-00 -, author = "J. Gudmundsson and C. Levcopoulos and G. Narasimhan" -, title = "Improved greedy algorithms for constructing sparse geometric spanners" -, booktitle = "Proc. 7th Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 1851 -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 2000 -, pages = "314--327" -, update = "00.11 smid" +, author = "J. Gudmundsson and C. Levcopoulos and G. Narasimhan" +, title = "Improved greedy algorithms for constructing sparse geometric spanners" +, booktitle = "Proc. 7th Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 1851 +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 2000 +, pages = "314--327" +, update = "00.11 smid" } @inproceedings{glns-adogg-02 -, author = "J. Gudmundsson and C. Levcopoulos and G. Narasimhan and M. Smid" -, title = "Approximate distance oracles for geometric graphs" -, booktitle = "Proc. 13th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '02" -, year = 2002 -, pages = "828--837" -, update = "02.03 smid" +, author = "J. Gudmundsson and C. Levcopoulos and G. Narasimhan and M. Smid" +, title = "Approximate distance oracles for geometric graphs" +, booktitle = "Proc. 13th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '02" +, year = 2002 +, pages = "828--837" +, update = "02.03 smid" } @article{g-rst-83 -, author = "A. Gu{\'e}noche" -, title = "Random spanning tree" -, journal = "J. Algorithms" -, volume = 4 -, year = 1983 -, pages = "214--220" +, author = "A. Gu{\'e}noche" +, title = "Random spanning tree" +, journal = "J. Algorithms" +, volume = 4 +, year = 1983 +, pages = "214--220" } @inproceedings{gs-rellt-92 -, author = "E. Guevremont and J. Snoeyink" -, title = "Recognizing an Envelope of Lines in Linear Time" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "370--377" -, update = "94.09 smid, 93.09 milone+mitchell" +, author = "E. Guevremont and J. Snoeyink" +, title = "Recognizing an Envelope of Lines in Linear Time" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "370--377" +, update = "94.09 smid, 93.09 milone+mitchell" } @book{g-agglc-77 -, author = "H. W. Guggenheimer" -, title = "Applicable Geometry: global and local convexity" -, publisher = "R. E. Krieger" -, address = "Huntington, NY" -, year = 1977 -, update = "98.07 orourke" +, author = "H. W. Guggenheimer" +, title = "Applicable Geometry: global and local convexity" +, publisher = "R. E. Krieger" +, address = "Huntington, NY" +, year = 1977 +, update = "98.07 orourke" } @book{g-dg-63 -, author = "H. W. Guggenheimer" -, title = "Differential Geometry" -, publisher = "McGraw-Hill" -, address = "New York, NY" -, year = 1963 -, update = "01.04 icking, 00.11 smid, 00.07 orourke, 97.11 bibrelex" +, author = "H. W. Guggenheimer" +, title = "Differential Geometry" +, publisher = "McGraw-Hill" +, address = "New York, NY" +, year = 1963 +, update = "01.04 icking, 00.11 smid, 00.07 orourke, 97.11 bibrelex" } @article{g-opaue-93 -, author = "S. Guha" -, title = "An optimal parallel algorithm using exclusive read/writes for the rectilinear {Voronoi} diagram" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, number = "" -, year = 1993 -, pages = "37--52" -, keywords = "parallel algorithm, rectilinear metric, Voronoi diagram" -, update = "93.09 guha" +, author = "S. Guha" +, title = "An optimal parallel algorithm using exclusive read/writes for the rectilinear {Voronoi} diagram" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, number = "" +, year = 1993 +, pages = "37--52" +, keywords = "parallel algorithm, rectilinear metric, Voronoi diagram" +, update = "93.09 guha" } @inproceedings{g-omcas-93 -, author = "Sumanta Guha" -, title = "Optimal Mesh Computer Algorithms for Simple Polygons" -, booktitle = "Proc. 7th IEEE Internat. Parallel Process. Sympos." -, publisher = "IEEE Computer Society" -, year = 1993 -, pages = "182--187" -, update = "93.09 guha" +, author = "Sumanta Guha" +, title = "Optimal Mesh Computer Algorithms for Simple Polygons" +, booktitle = "Proc. 7th IEEE Internat. Parallel Process. Sympos." +, publisher = "IEEE Computer Society" +, year = 1993 +, pages = "182--187" +, update = "93.09 guha" } @inproceedings{g-paapp-93 -, author = "Sumanta Guha" -, title = "Parallel Analog Algorithms for Processing Polygonal Images on a Systolic Screen" -, booktitle = "Proc. 7th IEEE Internat. Parallel Process. Sympos." -, publisher = "IEEE Computer Society" -, year = 1993 -, pages = "557--562" -, update = "93.09 guha" +, author = "Sumanta Guha" +, title = "Parallel Analog Algorithms for Processing Polygonal Images on a Systolic Screen" +, booktitle = "Proc. 7th IEEE Internat. Parallel Process. Sympos." +, publisher = "IEEE Computer Society" +, year = 1993 +, pages = "557--562" +, update = "93.09 guha" } @techreport{g-pcief-91 -, author = "S. Guha" -, title = "Parallel computation of internal and external farthest neighbors in simple polygons" -, type = "Manuscript" -, institution = "EECS Dept., Univ. Michigan" -, address = "Ann Arbor, MI" -, year = 1991 -, update = "97.11 bibrelex" +, author = "S. Guha" +, title = "Parallel computation of internal and external farthest neighbors in simple polygons" +, type = "Manuscript" +, institution = "EECS Dept., Univ. Michigan" +, address = "Ann Arbor, MI" +, year = 1991 +, update = "97.11 bibrelex" } @article{g-pcief-92 -, author = "S. Guha" -, title = "Parallel computation of internal and external farthest neighbours in simple polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "175--190" -, keywords = "parallel algorithm, simple polygons, farthest neighbors" +, author = "S. Guha" +, title = "Parallel computation of internal and external farthest neighbours in simple polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "175--190" +, keywords = "parallel algorithm, simple polygons, farthest neighbors" } @techreport{ghlst-ltavs-86t -, author = "L. Guibas and J. Hershberger and D. Leven and M. Sharir and R. E. Tarjan" -, title = "Linear time algorithm for visibility and shortest path problems inside a triangulated simple polygon" -, type = "Technical {Report}" -, number = 218 -, institution = "Dept. Comput Sci., Courant Institute" -, address = "New York, NY" -, month = apr -, year = 1986 -, update = "98.03 bibrelex" +, author = "L. Guibas and J. Hershberger and D. Leven and M. Sharir and R. E. Tarjan" +, title = "Linear time algorithm for visibility and shortest path problems inside a triangulated simple polygon" +, type = "Technical {Report}" +, number = 218 +, institution = "Dept. Comput Sci., Courant Institute" +, address = "New York, NY" +, month = apr +, year = 1986 +, update = "98.03 bibrelex" } @unpublished{ghs-btdsc-88 -, author = "L. Guibas and J. Hershberger and J. Snoeyink" -, title = "Bridge trees: a data structure for convex hulls" -, year = 1988 -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "L. Guibas and J. Hershberger and J. Snoeyink" +, title = "Bridge trees: a data structure for convex hulls" +, year = 1988 +, note = "In preparation" +, update = "98.03 bibrelex" } @inproceedings{ghsz-kcud-00 -, author = "Leonidas Guibas and John Hershberger and Subash Suri and Li Zhang" -, title = "Kinetic Connectivity for Unit Disks" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "331--340" -, update = "00.11 jones" +, author = "Leonidas Guibas and John Hershberger and Subash Suri and Li Zhang" +, title = "Kinetic Connectivity for Unit Disks" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "331--340" +, update = "00.11 jones" } @inproceedings{gm-rad-95 -, author = "Leonidas Guibas and David Marimont" -, title = "Rounding Arrangements Dynamically" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "190--199" -, keywords = "robustness, randomized incremental algorithm" -, precedes = "gm-rad-98" -, cites = "bo-arcgi-79, ce-oails-92, cs-arscg-89, f-smpst-89, fm-nsala-91, g-ilsi-, gy-frcg-86, h-psifp-94, hhk-tirgc-88, m-grs-93, m-vigau-88p, m-fppa-90, m-cgitr-93, gss-egbra-89, si-gafpa-88, ZZZ" -, update = "98.11 devillers, 98.03 bibrelex, 95.09 mitchell" +, author = "Leonidas Guibas and David Marimont" +, title = "Rounding Arrangements Dynamically" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "190--199" +, keywords = "robustness, randomized incremental algorithm" +, precedes = "gm-rad-98" +, cites = "bo-arcgi-79, ce-oails-92, cs-arscg-89, f-smpst-89, fm-nsala-91, g-ilsi-, gy-frcg-86, h-psifp-94, hhk-tirgc-88, m-grs-93, m-vigau-88p, m-fppa-90, m-cgitr-93, gss-egbra-89, si-gafpa-88, ZZZ" +, update = "98.11 devillers, 98.03 bibrelex, 95.09 mitchell" } @article{gm-rad-98 -, author = "Leonidas Guibas and David Marimont" -, title = "Rounding Arrangements Dynamically" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "157--176" -, succeeds = "gm-rad-95" -, update = "98.11 devillers" +, author = "Leonidas Guibas and David Marimont" +, title = "Rounding Arrangements Dynamically" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "157--176" +, succeeds = "gm-rad-95" +, update = "98.11 devillers" } @techreport{gos-ilsrs-88t -, author = "L. Guibas and M. H. Overmars and M. Sharir" -, title = "Intersecting line segments, ray shooting and other applications of geometric partitioning techniques" -, number = "RUU-CS-88" -, institution = "Dept. Computer Science, University of Utrecht" -, year = 1988 -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "L. Guibas and M. H. Overmars and M. Sharir" +, title = "Intersecting line segments, ray shooting and other applications of geometric partitioning techniques" +, number = "RUU-CS-88" +, institution = "Dept. Computer Science, University of Utrecht" +, year = 1988 +, update = "98.07 agarwal, 98.03 bibrelex" } @techreport{gp-narlp-92 -, author = "L. Guibas and M. Pellegrini" -, title = "New algorithmic results for lines-in-3-space problems" -, type = "Technical Report" -, number = "TR-92-005" -, institution = "Int. Comput. Sci. Institute" -, year = 1992 -, update = "98.11 bibrelex" +, author = "L. Guibas and M. Pellegrini" +, title = "New algorithmic results for lines-in-3-space problems" +, type = "Technical Report" +, number = "TR-92-005" +, institution = "Int. Comput. Sci. Institute" +, year = 1992 +, update = "98.11 bibrelex" } @techreport{gs-lncg-83 -, author = "L. Guibas and J. Stolfi" -, title = "Lecture notes on computational geometry" -, number = "CS 445" -, institution = "Stanford University" -, address = "Stanford, California" -, year = 1983 -, update = "98.07 bibrelex" +, author = "L. Guibas and J. Stolfi" +, title = "Lecture notes on computational geometry" +, number = "CS 445" +, institution = "Stanford University" +, address = "Stanford, California" +, year = 1983 +, update = "98.07 bibrelex" } @techreport{gs-pms- -, author = "L. Guibas and J. Stolfi" -, title = "Primitives for the Manipulation of Subdivisions" -, type = "Technical {Report}" -, institution = "DEC" -, year = "??" -, update = "98.03 bibrelex" +, author = "L. Guibas and J. Stolfi" +, title = "Primitives for the Manipulation of Subdivisions" +, type = "Technical {Report}" +, institution = "DEC" +, year = "??" +, update = "98.03 bibrelex" } @article{g-cgvpi-?? -, author = "Leonidas J. Guibas" -, title = "Computational geometry and visualization: {Problems} at the interface" -, journal = "??" -, volume = "??" -, year = "??" -, pages = "45--59" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "Leonidas J. Guibas" +, title = "Computational geometry and visualization: {Problems} at the interface" +, journal = "??" +, volume = "??" +, year = "??" +, pages = "45--59" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{g-igar-96 -, author = "Leonidas J. Guibas" -, title = "Implementing Geometric Algorithms Robustly" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, site = "Philadelphia, PA, USA" -, month = may -, year = 1996 -, pages = "24--28" -, update = "98.03 mitchell, 97.11 held" +, author = "Leonidas J. Guibas" +, title = "Implementing Geometric Algorithms Robustly" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, site = "Philadelphia, PA, USA" +, month = may +, year = 1996 +, pages = "24--28" +, update = "98.03 mitchell, 97.11 held" } @incollection{g-kdssar-98 -, author = "L. J. Guibas" -, title = "Kinetic data structures --- a state of the art report" -, editor = "P. K. Agarwal and L. E. Kavraki and M. Mason" -, booktitle = "Proc. Workshop Algorithmic Found. Robot." -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1998 -, pages = "191--209" -, update = "00.03 agarwal" +, author = "L. J. Guibas" +, title = "Kinetic data structures --- a state of the art report" +, editor = "P. K. Agarwal and L. E. Kavraki and M. Mason" +, booktitle = "Proc. Workshop Algorithmic Found. Robot." +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1998 +, pages = "191--209" +, update = "00.03 agarwal" } @inproceedings{g-mgcco-97 -, author = "Leonidas J. Guibas" -, title = "Maintenance of Geometric Configurations under Continuous Object Motion" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 10 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Leonidas J. Guibas" +, title = "Maintenance of Geometric Configurations under Continuous Object Motion" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 10 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @techreport{ag-dgsmi-96 -, author = "Leonidas J. Guibas and Helmut Alt" -, title = "Discrete Geometric Shapes: {Matching}, Interpolation, and Approximation" -, number = "Report B 96-11" -, institution = "Institut {f\"ur} Informatik, Freie Universit{\"a}t Berlin" -, year = 1996 -, url = "https://www.inf.fu-berlin.de/pub/reports/tr-b-96-11.ps.gz, https://www.inf.fu-berlin.de/inst/pubs/tr-b-96-11.abstract.html" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and Helmut Alt" +, title = "Discrete Geometric Shapes: {Matching}, Interpolation, and Approximation" +, number = "Report B 96-11" +, institution = "Institut {f\"ur} Informatik, Freie Universit{\"a}t Berlin" +, year = 1996 +, url = "https://www.inf.fu-berlin.de/pub/reports/tr-b-96-11.ps.gz, https://www.inf.fu-berlin.de/inst/pubs/tr-b-96-11.abstract.html" +, update = "98.03 mitchell" } @inproceedings{ghhlw-sepap-95 -, author = "Leonidas J. Guibas and D. Halperin and H. Hirukawa and J.-C. Latombe and R. H. Wilson" -, title = "A simple and efficient procedure for assembly partitioning under infinitesimal motions" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1995 -, pages = "2553--2560" -, keywords = "robotics, assembly planning, separability, polytopes" -, update = "98.03 mitchell, 95.09 halperin" +, author = "Leonidas J. Guibas and D. Halperin and H. Hirukawa and J.-C. Latombe and R. H. Wilson" +, title = "A simple and efficient procedure for assembly partitioning under infinitesimal motions" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1995 +, pages = "2553--2560" +, keywords = "robotics, assembly planning, separability, polytopes" +, update = "98.03 mitchell, 95.09 halperin" } @article{ghhlw-papum-98 -, author = "Leonidas J. Guibas and D. Halperin and H. Hirukawa and J.-C. Latombe and R. H. Wilson" -, title = "Polyhedral Assembly Partitioning Using Maximally Covered Cells in Arrangements of Convex Polytopes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "179--200" -, update = "98.11 devillers" +, author = "Leonidas J. Guibas and D. Halperin and H. Hirukawa and J.-C. Latombe and R. H. Wilson" +, title = "Polyhedral Assembly Partitioning Using Maximally Covered Cells in Arrangements of Convex Polytopes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "179--200" +, update = "98.11 devillers" } @inproceedings{ghms-vdahf-93 -, author = "Leonidas J. Guibas and D. Halperin and J. Matou{\v s}ek and Micha Sharir" -, title = "On vertical decomposition of arrangements of hyperplanes in four dimensions" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "127--132" -, cites = "c-racpq-88, ams-sscch-91, a-caecc-87, cegs-sessr-91, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 96.09 agarwal, 93.09 milone+mitchell" +, author = "Leonidas J. Guibas and D. Halperin and J. Matou{\v s}ek and Micha Sharir" +, title = "On vertical decomposition of arrangements of hyperplanes in four dimensions" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "127--132" +, cites = "c-racpq-88, ams-sscch-91, a-caecc-87, cegs-sessr-91, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 96.09 agarwal, 93.09 milone+mitchell" } @article{ghms-vdahf-95 -, author = "Leonidas J. Guibas and D. Halperin and J. Matou{\v s}ek and Micha Sharir" -, title = "On vertical decomposition of arrangements of hyperplanes in four dimensions" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "113--122" -, update = "98.03 mitchell, 97.11 aronov" +, author = "Leonidas J. Guibas and D. Halperin and J. Matou{\v s}ek and Micha Sharir" +, title = "On vertical decomposition of arrangements of hyperplanes in four dimensions" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "113--122" +, update = "98.03 mitchell, 97.11 aronov" } @article{gh-cvgnl-85 -, author = "Leonidas J. Guibas and J. Hershberger" -, title = "Computing the visibility graph of $n$ line segments in {$O(n^{2})$} time" -, journal = "Bull. EATCS" -, volume = 26 -, year = 1985 -, pages = "13--20" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and J. Hershberger" +, title = "Computing the visibility graph of $n$ line segments in {$O(n^{2})$} time" +, journal = "Bull. EATCS" +, volume = 26 +, year = 1985 +, pages = "13--20" +, update = "98.03 mitchell" } @inproceedings{gh-msp-94 -, author = "Leonidas J. Guibas and J. Hershberger" -, title = "Morphing Simple Polygons" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "267--276" -, cites = "cr-tgsps-85, cw-nstsm-82, kr-sidc-92, sgwm-2dsbi-93, sg-pba2d-92, stt-rdthg-86, t-dpg-83, v-gpga-86, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "Leonidas J. Guibas and J. Hershberger" +, title = "Morphing Simple Polygons" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "267--276" +, cites = "cr-tgsps-85, cw-nstsm-82, kr-sidc-92, sgwm-2dsbi-93, sg-pba2d-92, stt-rdthg-86, t-dpg-83, v-gpga-86, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @inproceedings{gh-ospqs-87 -, author = "Leonidas J. Guibas and J. Hershberger" -, title = "Optimal shortest path queries in a simple polygon" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "50--63" -, precedes = "gh-ospqs-89" -, cites = "aaghi-vdp-86, akmsw-gamsa-86, bt-ladts-86, egs-oplms-86, c-tpca-82, cg-vippg-85, ghlst-ltavs-86, lp-esppr-84, ol-mcp-81, ps-cgi-85, rs-spesp-85, s-agfnp-87, tv-otats-86, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Leonidas J. Guibas and J. Hershberger" +, title = "Optimal shortest path queries in a simple polygon" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "50--63" +, precedes = "gh-ospqs-89" +, cites = "aaghi-vdp-86, akmsw-gamsa-86, bt-ladts-86, egs-oplms-86, c-tpca-82, cg-vippg-85, ghlst-ltavs-86, lp-esppr-84, ol-mcp-81, ps-cgi-85, rs-spesp-85, s-agfnp-87, tv-otats-86, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{gh-ospqs-89 -, author = "Leonidas J. Guibas and J. Hershberger" -, title = "Optimal shortest path queries in a simple polygon" -, journal = "J. Comput. Syst. Sci." -, volume = 39 -, number = 2 -, month = oct -, year = 1989 -, pages = "126--152" -, succeeds = "gh-ospqs-87" -, update = "01.04 icking, 98.11 bibrelex, 98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and J. Hershberger" +, title = "Optimal shortest path queries in a simple polygon" +, journal = "J. Comput. Syst. Sci." +, volume = 39 +, number = 2 +, month = oct +, year = 1989 +, pages = "126--152" +, succeeds = "gh-ospqs-87" +, update = "01.04 icking, 98.11 bibrelex, 98.03 mitchell, 97.11 bibrelex" } @inproceedings{ghlst-ltavs-86 -, author = "Leonidas J. Guibas and J. Hershberger and D. Leven and Micha Sharir and R. E. Tarjan" -, title = "Linear time algorithms for visibility and shortest path problems inside simple polygons" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "1--13" -, precedes = "ghlst-ltavs-87" -, cites = "a-eafvp, at-oadvp-81, c-tpca-82, cg-vippg-85, egs-oplms-86, e-eacwv-84, ea-lacvp-81, f-spcrd-86, fm-tspep-84, gjpt-tsp-78, gmpr-nrll-77, grs-kfcg-83, gy-fchsp-83, h-ep-82, hm-ndsrs-82, k-osps-83, l-vsp-83, ll-cvpe-86, lp-esppr-84, ma-lafch-79, ps-rgpcr-86, ps-tspm-81, s-ltaml-86, t-dsna-83, tv-ltats-86, t-spsee-85, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and J. Hershberger and D. Leven and Micha Sharir and R. E. Tarjan" +, title = "Linear time algorithms for visibility and shortest path problems inside simple polygons" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "1--13" +, precedes = "ghlst-ltavs-87" +, cites = "a-eafvp, at-oadvp-81, c-tpca-82, cg-vippg-85, egs-oplms-86, e-eacwv-84, ea-lacvp-81, f-spcrd-86, fm-tspep-84, gjpt-tsp-78, gmpr-nrll-77, grs-kfcg-83, gy-fchsp-83, h-ep-82, hm-ndsrs-82, k-osps-83, l-vsp-83, ll-cvpe-86, lp-esppr-84, ma-lafch-79, ps-rgpcr-86, ps-tspm-81, s-ltaml-86, t-dsna-83, tv-ltats-86, t-spsee-85, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ghlst-ltavs-87 -, author = "Leonidas J. Guibas and J. Hershberger and D. Leven and Micha Sharir and R. E. Tarjan" -, title = "Linear-time algorithms for visibility and shortest path problems inside triangulated simple polygons" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "209--233" -, keywords = "polygons, simple, shortest paths, visibility, finger search trees" -, succeeds = "ghlst-ltavs-86" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and J. Hershberger and D. Leven and Micha Sharir and R. E. Tarjan" +, title = "Linear-time algorithms for visibility and shortest path problems inside triangulated simple polygons" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "209--233" +, keywords = "polygons, simple, shortest paths, visibility, finger search trees" +, succeeds = "ghlst-ltavs-86" +, update = "98.03 mitchell" } @inproceedings{ghs-citds-90 -, author = "Leonidas J. Guibas and J. Hershberger and J. Snoeyink" -, title = "Compact interval trees: a data structure for convex hulls" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "169--178" -, precedes = "ghs-citds-91" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and J. Hershberger and J. Snoeyink" +, title = "Compact interval trees: a data structure for convex hulls" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "169--178" +, precedes = "ghs-citds-91" +, update = "98.03 mitchell" } @article{ghs-citds-91 -, author = "Leonidas J. Guibas and J. Hershberger and J. Snoeyink" -, title = "Compact interval trees: a data structure for convex hulls" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 1 -, year = 1991 -, pages = "1--22" -, keywords = "data structures, convex hull, lower bounds, common tangents" -, succeeds = "ghs-citds-90" -, update = "98.03 mitchell, 94.01 rote" -, annote = "replaces the bridge tree data structure used in eghsssw-irals-89" +, author = "Leonidas J. Guibas and J. Hershberger and J. Snoeyink" +, title = "Compact interval trees: a data structure for convex hulls" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 1 +, year = 1991 +, pages = "1--22" +, keywords = "data structures, convex hull, lower bounds, common tangents" +, succeeds = "ghs-citds-90" +, update = "98.03 mitchell, 94.01 rote" +, annote = "replaces the bridge tree data structure used in eghsssw-irals-89" } @inproceedings{ghms-apsml-91 -, author = "Leonidas J. Guibas and J. E. Hershberger and Joseph S. B. Mitchell and J. S. Snoeyink" -, title = "Approximating polygons and subdivisions with minimum link paths" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "151--162" -, precedes = "ghms-apsml-93" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "Leonidas J. Guibas and J. E. Hershberger and Joseph S. B. Mitchell and J. S. Snoeyink" +, title = "Approximating polygons and subdivisions with minimum link paths" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "151--162" +, precedes = "ghms-apsml-93" +, update = "98.03 mitchell, 95.01 mitchell" } @article{ghms-apsml-93 -, author = "Leonidas J. Guibas and J. E. Hershberger and Joseph S. B. Mitchell and J. S. Snoeyink" -, title = "Approximating Polygons and Subdivisions with Minimum Link Paths" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, number = 4 -, month = dec -, year = 1993 -, pages = "383--415" -, succeeds = "ghms-apsml-91" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "Leonidas J. Guibas and J. E. Hershberger and Joseph S. B. Mitchell and J. S. Snoeyink" +, title = "Approximating Polygons and Subdivisions with Minimum Link Paths" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, number = 4 +, month = dec +, year = 1993 +, pages = "383--415" +, succeeds = "ghms-apsml-91" +, update = "98.03 mitchell, 95.01 mitchell" } @techreport{gks-ricdv-89 -, author = "Leonidas J. Guibas and D. Knuth and Micha Sharir" -, title = "Randomized incremental construction of {Delaunay} and {Voronoi} diagrams" -, type = "Technical {Report}" -, number = 481 -, institution = "Courant institute of mathematical sciences" -, month = dec -, year = 1989 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and D. Knuth and Micha Sharir" +, title = "Randomized incremental construction of {Delaunay} and {Voronoi} diagrams" +, type = "Technical {Report}" +, number = 481 +, institution = "Courant institute of mathematical sciences" +, month = dec +, year = 1989 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{gks-ricdv-90 -, author = "Leonidas J. Guibas and Donald E. Knuth and Micha Sharir" -, title = "Randomized Incremental Construction of {Delaunay} and {Voronoi} Diagrams" -, editor = "M. S. Paterson" -, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 443 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "414--431" -, precedes = "gks-ricdv-92" -, update = "99.11 bibrelex, 96.09 agarwal, 93.09 rote" -, annote = "Main result: If the order of point insertion is - randomized, then the total number of changes to DT - when insertion algorithm is used is $O(n)$. By keeping - previous triangulations around and searching in old - triangulations first, the point location problem takes - $O(\log n)$ expected time, meaning that insertion - algorithm takes $O(n \log n)$ on average." +, author = "Leonidas J. Guibas and Donald E. Knuth and Micha Sharir" +, title = "Randomized Incremental Construction of {Delaunay} and {Voronoi} Diagrams" +, editor = "M. S. Paterson" +, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 443 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "414--431" +, precedes = "gks-ricdv-92" +, update = "99.11 bibrelex, 96.09 agarwal, 93.09 rote" +, annote = "Main result: If the order of point insertion is + randomized, then the total number of changes to DT + when insertion algorithm is used is $O(n)$. By keeping + previous triangulations around and searching in old + triangulations first, the point location problem takes + $O(\log n)$ expected time, meaning that insertion + algorithm takes $O(n \log n)$ on average." } @article{gks-ricdv-92 -, author = "Leonidas J. Guibas and D. E. Knuth and Micha Sharir" -, title = "Randomized incremental construction of {Delaunay} and {Voronoi} diagrams" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "381--413" -, succeeds = "gks-ricdv-90" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and D. E. Knuth and Micha Sharir" +, title = "Randomized incremental construction of {Delaunay} and {Voronoi} diagrams" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "381--413" +, succeeds = "gks-ricdv-90" +, update = "98.03 mitchell" } @inproceedings{gmpr-nrll-77 -, author = "Leonidas J. Guibas and E. McCreight and M. Plass and J. Roberts" -, title = "A new representation for linear lists" -, booktitle = "Proc. 9th Annu. ACM Sympos. Theory Comput." -, year = 1977 -, pages = "49--60" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and E. McCreight and M. Plass and J. Roberts" +, title = "A new representation for linear lists" +, booktitle = "Proc. 9th Annu. ACM Sympos. Theory Comput." +, year = 1977 +, pages = "49--60" +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{gmr-vdmpp-91t -, author = "Leonidas J. Guibas and Joseph S. B. Mitchell and T. Roos" -, title = "Voronoi diagrams of moving points in the plane" -, type = "manuscript" -, year = 1991 -, precedes = "gmr-vdmpp-92, agmr-vdmp-98" -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "Leonidas J. Guibas and Joseph S. B. Mitchell and T. Roos" +, title = "Voronoi diagrams of moving points in the plane" +, type = "manuscript" +, year = 1991 +, precedes = "gmr-vdmpp-92, agmr-vdmp-98" +, update = "99.11 bibrelex, 98.11 bibrelex" } @inproceedings{gmr-vdmpp-92 -, author = "Leonidas J. Guibas and Joseph S. B. Mitchell and T. Roos" -, title = "Voronoi diagrams of moving points in the plane" -, booktitle = "Proc. 17th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 570 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "113--125" -, keywords = "Voronoi diagrams, Davenport-Schinzel sequences" -, succeeds = "gmr-vdmpp-91t" -, precedes = "agmr-vdmp-98" -, update = "00.03 bibrelex, 99.11 bibrelex, 98.11 bibrelex, 98.03 mitchell" +, author = "Leonidas J. Guibas and Joseph S. B. Mitchell and T. Roos" +, title = "Voronoi diagrams of moving points in the plane" +, booktitle = "Proc. 17th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 570 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "113--125" +, keywords = "Voronoi diagrams, Davenport-Schinzel sequences" +, succeeds = "gmr-vdmpp-91t" +, precedes = "agmr-vdmp-98" +, update = "00.03 bibrelex, 99.11 bibrelex, 98.11 bibrelex, 98.03 mitchell" } @article{gmr-rlp-97 -, author = "Leonidas J. Guibas and R. Motwani and P. Raghavan" -, title = "The robot localization problem" -, journal = "SIAM J. Comput." -, volume = 26 -, number = 4 -, month = aug -, year = 1997 -, pages = "1120--1138" -, update = "98.03 mitchell, 97.11 smid" +, author = "Leonidas J. Guibas and R. Motwani and P. Raghavan" +, title = "The robot localization problem" +, journal = "SIAM J. Comput." +, volume = 26 +, number = 4 +, month = aug +, year = 1997 +, pages = "1120--1138" +, update = "98.03 mitchell, 97.11 smid" } @inproceedings{gmr-rlptd-92 -, author = "Leonidas J. Guibas and R. Motwani and P. Raghavan" -, title = "The robot localization problem in two dimensions" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "259--268" -, precedes = "gmr-rlp-97" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and R. Motwani and P. Raghavan" +, title = "The robot localization problem in two dimensions" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "259--268" +, precedes = "gmr-rlp-97" +, update = "98.03 mitchell" } @inproceedings{gor-efpp-91 -, author = "Leonidas J. Guibas and M. H. Overmars and J.-M. Robert" -, title = "The exact fitting problem for points" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "171--174" -, precedes = "gor-efpp-96" -, cites = "a-pal2a-90, bb-atp-88, b-gtfga-80, cegsw-ccbac-90, e-acg-87, eg-tsa-89, hiiry-owlll-90, m-cha-90i, mg-fre-82, st-epdg-83, ZZZ" -, update = "98.07 agarwal+bibrelex, 98.03 mitchell, 96.09 devillers" +, author = "Leonidas J. Guibas and M. H. Overmars and J.-M. Robert" +, title = "The exact fitting problem for points" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "171--174" +, precedes = "gor-efpp-96" +, cites = "a-pal2a-90, bb-atp-88, b-gtfga-80, cegsw-ccbac-90, e-acg-87, eg-tsa-89, hiiry-owlll-90, m-cha-90i, mg-fre-82, st-epdg-83, ZZZ" +, update = "98.07 agarwal+bibrelex, 98.03 mitchell, 96.09 devillers" } @article{gor-efpp-96 -, author = "Leonidas J. Guibas and M. H. Overmars and J.-M. Robert" -, title = "The exact fitting problem for points" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "215--230" -, succeeds = "gor-efpp-91" -, update = "98.07 agarwal, 98.03 mitchell, 97.11 bibrelex, 96.09 devillers" +, author = "Leonidas J. Guibas and M. H. Overmars and J.-M. Robert" +, title = "The exact fitting problem for points" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "215--230" +, succeeds = "gor-efpp-91" +, update = "98.07 agarwal, 98.03 mitchell, 97.11 bibrelex, 96.09 devillers" } @techreport{gos-crial-89 -, author = "Leonidas J. Guibas and M. H. Overmars and Micha Sharir" -, title = "Counting and reporting intersections in arrangements of line segments" -, type = "Technical {Report}" -, number = 434 -, institution = "Dept. Comput. Sci, New York Univ." -, address = "New York, NY" -, month = mar -, year = 1989 -, update = "98.07 agarwal, 98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and M. H. Overmars and Micha Sharir" +, title = "Counting and reporting intersections in arrangements of line segments" +, type = "Technical {Report}" +, number = 434 +, institution = "Dept. Comput. Sci, New York Univ." +, address = "New York, NY" +, month = mar +, year = 1989 +, update = "98.07 agarwal, 98.03 mitchell, 97.11 bibrelex" } @inproceedings{gos-ilsrs-88 -, author = "Leonidas J. Guibas and M. H. Overmars and Micha Sharir" -, title = "Intersecting line segments, ray shooting, and other applications of geometric partitioning techniques" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "64--73" -, update = "98.07 agarwal, 98.03 mitchell" +, author = "Leonidas J. Guibas and M. H. Overmars and Micha Sharir" +, title = "Intersecting line segments, ray shooting, and other applications of geometric partitioning techniques" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "64--73" +, update = "98.07 agarwal, 98.03 mitchell" } @techreport{gos-rsipl-89 -, author = "Leonidas J. Guibas and M. H. Overmars and Micha Sharir" -, title = "Ray shooting, implicit point location, and related queries in arrangements of segments" -, type = "Report" -, number = 433 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, month = mar -, year = 1989 -, keywords = "random sampling, ray tracing, arrangements, point location" -, update = "98.07 agarwal, 98.03 mitchell" +, author = "Leonidas J. Guibas and M. H. Overmars and Micha Sharir" +, title = "Ray shooting, implicit point location, and related queries in arrangements of segments" +, type = "Report" +, number = 433 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, month = mar +, year = 1989 +, keywords = "random sampling, ray tracing, arrangements, point location" +, update = "98.07 agarwal, 98.03 mitchell" } @inproceedings{grs-kfcg-83 -, author = "Leonidas J. Guibas and L. Ramshaw and J. Stolfi" -, title = "A kinetic framework for computational geometry" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "100--111" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and L. Ramshaw and J. Stolfi" +, title = "A kinetic framework for computational geometry" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "100--111" +, update = "98.03 mitchell" } @inproceedings{gss-cscah-90 -, author = "Leonidas J. Guibas and D. Salesin and J. Stolfi" -, title = "Constructing strongly convex approximate hulls with inaccurate primitives" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "261--270" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and D. Salesin and J. Stolfi" +, title = "Constructing strongly convex approximate hulls with inaccurate primitives" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "261--270" +, update = "98.03 mitchell" } @article{gss-cscah-93 -, author = "Leonidas J. Guibas and D. Salesin and J. Stolfi" -, title = "Constructing strongly convex approximate hulls with inaccurate primitives" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "534--560" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and D. Salesin and J. Stolfi" +, title = "Constructing strongly convex approximate hulls with inaccurate primitives" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "534--560" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{gss-egbra-89 -, author = "Leonidas J. Guibas and D. Salesin and J. Stolfi" -, title = "Epsilon geometry: building robust algorithms from imprecise computations" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "208--217" -, cites = "em-sstcd-88, gy-frcg-86, hhk-tirgc-88, grs-kfcg-83, k-acp-73, m-vigau-88a, mk-impgo-84, otu-nsga-87, y-gctsp-88, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Leonidas J. Guibas and D. Salesin and J. Stolfi" +, title = "Epsilon geometry: building robust algorithms from imprecise computations" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "208--217" +, cites = "em-sstcd-88, gy-frcg-86, hhk-tirgc-88, grs-kfcg-83, k-acp-73, m-vigau-88a, mk-impgo-84, otu-nsga-87, y-gctsp-88, ZZZ" +, update = "98.03 bibrelex+mitchell" } @techreport{gs-sp801-82 -, author = "Leonidas J. Guibas and J. Saxe" -, title = "Solution to problem 80-15: computing the connected components of a collection of rectangles" -, type = "Report" -, number = "??" -, institution = "Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1982 -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and J. Saxe" +, title = "Solution to problem 80-15: computing the connected components of a collection of rectangles" +, type = "Report" +, number = "??" +, institution = "Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1982 +, update = "98.03 mitchell" } @inproceedings{gs-dfbt-78 -, author = "Leonidas J. Guibas and R. Sedgewick" -, title = "A dichromatic framework for balanced trees" -, booktitle = "Proc. 19th Annu. IEEE Sympos. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1978 -, pages = "8--21" -, update = "98.03 mitchell, 96.05 agarwal, 94.01 tamassia" +, author = "Leonidas J. Guibas and R. Sedgewick" +, title = "A dichromatic framework for balanced trees" +, booktitle = "Proc. 19th Annu. IEEE Sympos. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1978 +, pages = "8--21" +, update = "98.03 mitchell, 96.05 agarwal, 94.01 tamassia" } @inproceedings{gs-ccrs-86 -, author = "Leonidas J. Guibas and R. Seidel" -, title = "Computing convolutions by reciprocal search" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "90--99" -, keywords = "intersection, subdivisions, plane-sweep" -, precedes = "gs-ccrs-87" -, cites = "bo-arcgi-79, c-fsnaq-86, eg-tsa-86, g-cp-67, grs-kfcg-83, gs-pmgsc-85, np-psaig-82, s-at-66, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and R. Seidel" +, title = "Computing convolutions by reciprocal search" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "90--99" +, keywords = "intersection, subdivisions, plane-sweep" +, precedes = "gs-ccrs-87" +, cites = "bo-arcgi-79, c-fsnaq-86, eg-tsa-86, g-cp-67, grs-kfcg-83, gs-pmgsc-85, np-psaig-82, s-at-66, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{gs-ccrs-87 -, author = "Leonidas J. Guibas and R. Seidel" -, title = "Computing convolutions by reciprocal search" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "175--193" -, keywords = "intersection, subdivisions, plane-sweep" -, succeeds = "gs-ccrs-86" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and R. Seidel" +, title = "Computing convolutions by reciprocal search" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "175--193" +, keywords = "intersection, subdivisions, plane-sweep" +, succeeds = "gs-ccrs-86" +, update = "98.03 mitchell" } @techreport{gs-atlrp-90 -, author = "Leonidas J. Guibas and Micha Sharir" -, title = "Arrangements of Thick Lines and Related problems" -, type = "Manuscript" -, year = 1990 -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "Leonidas J. Guibas and Micha Sharir" +, title = "Arrangements of Thick Lines and Related problems" +, type = "Manuscript" +, year = 1990 +, update = "98.03 mitchell, 93.09 milone+mitchell" } @techreport{gs-caa-90 -, author = "Leonidas J. Guibas and Micha Sharir" -, title = "Combinatorics and algorithms of arrangements" -, type = "Manuscript" -, year = 1990 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and Micha Sharir" +, title = "Combinatorics and algorithms of arrangements" +, type = "Manuscript" +, year = 1990 +, update = "98.03 mitchell, 97.11 bibrelex" } @incollection{gs-caa-93 -, author = "Leonidas J. Guibas and Micha Sharir" -, title = "Combinatorics and Algorithms of Arrangements" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, address = "Heidelberg" -, year = 1993 -, pages = "9--36" -, keywords = "survey paper, arrangements, lower envelopes, Davenport-Shinzel sequences, face complexity, partitioning" -, update = "98.07 agarwal, 98.03 mitchell, 93.09 erickson" +, author = "Leonidas J. Guibas and Micha Sharir" +, title = "Combinatorics and Algorithms of Arrangements" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, address = "Heidelberg" +, year = 1993 +, pages = "9--36" +, keywords = "survey paper, arrangements, lower envelopes, Davenport-Shinzel sequences, face complexity, partitioning" +, update = "98.07 agarwal, 98.03 mitchell, 93.09 erickson" } @inproceedings{gss-gmppt-88 -, author = "Leonidas J. Guibas and Micha Sharir and S. Sifrony" -, title = "On the general motion planning problem with two degrees of freedom" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "289--298" -, precedes = "gss-gmppt-89" -, cites = "ass-sulbl-87, as-tsbac-88, a-dcg-83, bo-arcgi-79, cg-vippg-85, dsst-mdsp-86, eg-tsa-86, egppss-acptc-88, eghppsss-ajati-88, egs-cmfal-88, es-mnwsn-87, fwy-cmtra-86, ghlst-ltavs-87, hs-ndssg-86, ks-eapcf-85, ks-empac-90, klps-ujrcf-86, ls-esmpa-87, ls-pptmc-87, lw-apcfp-79, osy-gvdl-86, osy-gvdl-87, oy-rmpmd-85, ps-ueplf-87, pss-stsps-88, ss-pmp1c-83, ss-pmp2g-83, ss-pmp3c-83, ss-pmp5c-84, s-tddsp-85, sa-pmp4v-84, s-alubl-87, s-ilbld-88, ss-cmpti-88, ss-nempa-87, ws-prnds-88, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Leonidas J. Guibas and Micha Sharir and S. Sifrony" +, title = "On the general motion planning problem with two degrees of freedom" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "289--298" +, precedes = "gss-gmppt-89" +, cites = "ass-sulbl-87, as-tsbac-88, a-dcg-83, bo-arcgi-79, cg-vippg-85, dsst-mdsp-86, eg-tsa-86, egppss-acptc-88, eghppsss-ajati-88, egs-cmfal-88, es-mnwsn-87, fwy-cmtra-86, ghlst-ltavs-87, hs-ndssg-86, ks-eapcf-85, ks-empac-90, klps-ujrcf-86, ls-esmpa-87, ls-pptmc-87, lw-apcfp-79, osy-gvdl-86, osy-gvdl-87, oy-rmpmd-85, ps-ueplf-87, pss-stsps-88, ss-pmp1c-83, ss-pmp2g-83, ss-pmp3c-83, ss-pmp5c-84, s-tddsp-85, sa-pmp4v-84, s-alubl-87, s-ilbld-88, ss-cmpti-88, ss-nempa-87, ws-prnds-88, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{gss-gmppt-89 -, author = "Leonidas J. Guibas and Micha Sharir and S. Sifrony" -, title = "On the general motion planning problem with two degrees of freedom" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "491--521" -, keywords = "motion planning, arrangements" -, succeeds = "gss-gmppt-88" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and Micha Sharir and S. Sifrony" +, title = "On the general motion planning problem with two degrees of freedom" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "491--521" +, keywords = "motion planning, arrangements" +, succeeds = "gss-gmppt-88" +, update = "98.03 mitchell" } @techreport{gs-ncg-82 -, author = "Leonidas J. Guibas and J. Stolfi" -, title = "Notes on Computational Geometry" -, institution = "XEROX PARK" -, year = 1982 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Leonidas J. Guibas and J. Stolfi" +, title = "Notes on Computational Geometry" +, institution = "XEROX PARK" +, year = 1982 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{gs-canen-83 -, author = "Leonidas J. Guibas and J. Stolfi" -, title = "On computing all north-east nearest neighbors in the {$L_{1}$} metric" -, journal = "Inform. Process. Lett." -, volume = 17 -, year = 1983 -, pages = "219--223" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and J. Stolfi" +, title = "On computing all north-east nearest neighbors in the {$L_{1}$} metric" +, journal = "Inform. Process. Lett." +, volume = 17 +, year = 1983 +, pages = "219--223" +, update = "98.03 mitchell" } @inproceedings{gs-pmgsc-83 -, author = "Leonidas J. Guibas and J. Stolfi" -, title = "Primitives for the manipulation of general subdivisions and the computation of {Voronoi} diagrams" -, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." -, year = 1983 -, pages = "221--234" -, precedes = "gs-pmgsc-85" -, update = "98.03 mitchell" +, author = "Leonidas J. Guibas and J. Stolfi" +, title = "Primitives for the manipulation of general subdivisions and the computation of {Voronoi} diagrams" +, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." +, year = 1983 +, pages = "221--234" +, precedes = "gs-pmgsc-85" +, update = "98.03 mitchell" } @article{gs-pmgsc-85 -, author = "Leonidas J. Guibas and J. Stolfi" -, title = "Primitives for the manipulation of general subdivisions and the computation of {Voronoi} diagrams" -, journal = "ACM Trans. Graph." -, volume = 4 -, number = 2 -, month = apr -, year = 1985 -, pages = "74--123" -, keywords = "design of algorithms, data structuring" -, succeeds = "gs-pmgsc-83" -, update = "98.07 bibrelex+tamassia, 98.03 mitchell" -, annote = "data structure for convex hull" +, author = "Leonidas J. Guibas and J. Stolfi" +, title = "Primitives for the manipulation of general subdivisions and the computation of {Voronoi} diagrams" +, journal = "ACM Trans. Graph." +, volume = 4 +, number = 2 +, month = apr +, year = 1985 +, pages = "74--123" +, keywords = "design of algorithms, data structuring" +, succeeds = "gs-pmgsc-83" +, update = "98.07 bibrelex+tamassia, 98.03 mitchell" +, annote = "data structure for convex hull" } @incollection{gs-rccda-88 -, author = "Leonidas J. Guibas and J. Stolfi" -, title = "Ruler, compass and computer: the design and analysis of geometric algorithms" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "111--165" -, keywords = "survey paper" -, update = "98.03 mitchell, 97.03 pocchiola+schwarzkopf" +, author = "Leonidas J. Guibas and J. Stolfi" +, title = "Ruler, compass and computer: the design and analysis of geometric algorithms" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "111--165" +, keywords = "survey paper" +, update = "98.03 mitchell, 97.03 pocchiola+schwarzkopf" } @article{gsc-srttd-87 -, author = "Leonidas J. Guibas and J. Stolfi and K. Clarkson" -, title = "Solving related two- and three-dimensional linear programming in logarithmic time" -, journal = "Theoret. Comput. Sci." -, volume = 49 -, number = 1 -, year = 1987 -, pages = "81--84" -, update = "98.03 mitchell, 93.09 matousek" +, author = "Leonidas J. Guibas and J. Stolfi and K. Clarkson" +, title = "Solving related two- and three-dimensional linear programming in logarithmic time" +, journal = "Theoret. Comput. Sci." +, volume = 49 +, number = 1 +, year = 1987 +, pages = "81--84" +, update = "98.03 mitchell, 93.09 matousek" } @inproceedings{gy-tsr-80 -, author = "Leonidas J. Guibas and F. Frances Yao" -, title = "On Translating a Set of Rectangles" -, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." -, year = 1980 -, pages = "154--160" -, precedes = "gy-tsr-83" -, update = "01.04 icking, 98.03 mitchell" +, author = "Leonidas J. Guibas and F. Frances Yao" +, title = "On Translating a Set of Rectangles" +, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." +, year = 1980 +, pages = "154--160" +, precedes = "gy-tsr-83" +, update = "01.04 icking, 98.03 mitchell" } @incollection{gy-tsr-83 -, author = "Leonidas J. Guibas and F. Frances Yao" -, title = "On Translating a Set of Rectangles" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "61--77" -, succeeds = "gy-tsr-80" -, update = "01.04 icking, 98.03 mitchell" +, author = "Leonidas J. Guibas and F. Frances Yao" +, title = "On Translating a Set of Rectangles" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "61--77" +, succeeds = "gy-tsr-80" +, update = "01.04 icking, 98.03 mitchell" } @article{gbe-pcsai-92 -, author = "W. Guida and R. Bohacek and M. Erion" -, title = "Probing the conformational space available to inhibitors on the thermolysin active site using {Monte}-{Carlo}/energy minimization techniques" -, journal = "J. Comput. Chemistry" -, volume = 13 -, number = 2 -, year = 1992 -, pages = "214--228" -, update = "98.07 bibrelex" +, author = "W. Guida and R. Bohacek and M. Erion" +, title = "Probing the conformational space available to inhibitors on the thermolysin active site using {Monte}-{Carlo}/energy minimization techniques" +, journal = "J. Comput. Chemistry" +, volume = 13 +, number = 2 +, year = 1992 +, pages = "214--228" +, update = "98.07 bibrelex" } @book{gp-dt-74 -, author = "V. Guillemin and A. Pollack" -, title = "Differential Topology" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1974 -, update = "97.11 bibrelex" +, author = "V. Guillemin and A. Pollack" +, title = "Differential Topology" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1974 +, update = "97.11 bibrelex" } @inproceedings{g-seppi-84 -, author = "M. Guisti" -, title = "Some Effectivity Problems in Polynomial Ideal Theory" -, booktitle = "Proc. EUROSAM 84" -, series = "Lecture Notes Comput. Sci." -, volume = 174 -, publisher = "Springer-Verlag" -, year = 1984 -, pages = "159--171" -, update = "97.11 bibrelex" +, author = "M. Guisti" +, title = "Some Effectivity Problems in Polynomial Ideal Theory" +, booktitle = "Proc. EUROSAM 84" +, series = "Lecture Notes Comput. Sci." +, volume = 174 +, publisher = "Springer-Verlag" +, year = 1984 +, pages = "159--171" +, update = "97.11 bibrelex" } @inproceedings{gs-rtctm-98 -, author = "S. Gumhold and W. Stra{\ss}er" -, title = "Real Time Compression of Triangle Mesh Connectivity" -, booktitle = "Proc. SIGGRAPH '98" -, site = "Orlando, FL" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, month = jul -, year = 1998 -, pages = "133--140" -, update = "98.11 held" +, author = "S. Gumhold and W. Stra{\ss}er" +, title = "Real Time Compression of Triangle Mesh Connectivity" +, booktitle = "Proc. SIGGRAPH '98" +, site = "Orlando, FL" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, month = jul +, year = 1998 +, pages = "133--140" +, update = "98.11 held" } @inproceedings{g-lbtaa-88 -, author = "O. G{\"u}nther" -, title = "A lower bound and two approximative algorithms for the $k$-partitioning of rectilinear polygons" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "86--95" +, author = "O. G{\"u}nther" +, title = "A lower bound and two approximative algorithms for the $k$-partitioning of rectilinear polygons" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "86--95" } @book{g-esgdm-88 -, author = "O. G{\"u}nther" -, title = "Efficient Structures for Geometric Data Management" -, series = "Lecture Notes Comput. Sci." -, volume = 337 -, publisher = "Springer-Verlag" -, year = 1988 -, isbn = "3-540-50463-X" -, update = "96.05 agarwal, 93.09 held" +, author = "O. G{\"u}nther" +, title = "Efficient Structures for Geometric Data Management" +, series = "Lecture Notes Comput. Sci." +, volume = 337 +, publisher = "Springer-Verlag" +, year = 1988 +, isbn = "3-540-50463-X" +, update = "96.05 agarwal, 93.09 held" } @article{g-mkprp-90 -, author = "O. G{\"u}nther" -, title = "Minimum $k$-Partitioning of Rectilinear Polygons" -, journal = "J. Symbolic Comput." -, volume = 9 -, number = 4 -, month = apr -, year = 1990 -, pages = "457--483" -, update = "93.09 held" +, author = "O. G{\"u}nther" +, title = "Minimum $k$-Partitioning of Rectilinear Polygons" +, journal = "J. Symbolic Comput." +, volume = 9 +, number = 4 +, month = apr +, year = 1990 +, pages = "457--483" +, update = "93.09 held" } @inproceedings{g-tdcto-89 -, author = "O. G{\"u}nther" -, title = "The design of the cell tree: {An} object oriented index structure for geometric data bases" -, booktitle = "Proc. 5th IEEE Internat. Conf. Data Eng." -, year = 1989 -, pages = "598--605" -, update = "99.07 bibrelex, 97.07 agarwal" +, author = "O. G{\"u}nther" +, title = "The design of the cell tree: {An} object oriented index structure for geometric data bases" +, booktitle = "Proc. 5th IEEE Internat. Conf. Data Eng." +, year = 1989 +, pages = "598--605" +, update = "99.07 bibrelex, 97.07 agarwal" } @article{gb-tbams-91 -, author = "O. G{\"u}nther and J. Bilmes" -, title = "Tree based access methods for spatial databases: {Implementation} and performance evaluation" -, journal = "IEEE Trans. Knowledge and Data Enginerring" -, volume = 3 -, year = 1991 -, pages = "342--356" -, update = "99.07 bibrelex, 97.07 agarwal" +, author = "O. G{\"u}nther and J. Bilmes" +, title = "Tree based access methods for spatial databases: {Implementation} and performance evaluation" +, journal = "IEEE Trans. Knowledge and Data Enginerring" +, volume = 3 +, year = 1991 +, pages = "342--356" +, update = "99.07 bibrelex, 97.07 agarwal" } @article{gw-dadpi-91 -, author = "O. G{\"u}nther and E. Wong" -, title = "A Dual Approach to Detect Polyhedral Intersections in Arbitrary Dimensions" -, journal = "Bit" -, volume = 31 -, number = 1 -, year = 1991 -, pages = "2--14" -, update = "98.11 bibrelex" +, author = "O. G{\"u}nther and E. Wong" +, title = "A Dual Approach to Detect Polyhedral Intersections in Arbitrary Dimensions" +, journal = "Bit" +, volume = 31 +, number = 1 +, year = 1991 +, pages = "2--14" +, update = "98.11 bibrelex" } @inproceedings{gw-dsrgd-87 -, author = "O. G{\"u}nther and E. Wong" -, title = "A Dual Space Representation for Geometric Data" -, booktitle = "Proc. 13th VLDB Conference" -, year = 1987 -, pages = "501--506" -, update = "99.07 bibrelex, 97.07 agarwal" +, author = "O. G{\"u}nther and E. Wong" +, title = "A Dual Space Representation for Geometric Data" +, booktitle = "Proc. 13th VLDB Conference" +, year = 1987 +, pages = "501--506" +, update = "99.07 bibrelex, 97.07 agarwal" } @article{g-uptom-96 -, author = "H. G{\"u}nzel" -, title = "The universal partition theorem for oriented matroids" -, journal = "Discrete Comput. Geom." -, note = "(to appear)" -, update = "96.05 pocchiola" +, author = "H. G{\"u}nzel" +, title = "The universal partition theorem for oriented matroids" +, journal = "Discrete Comput. Geom." +, note = "(to appear)" +, update = "96.05 pocchiola" } @inproceedings{g-ffsmu-90 -, author = "B. Guo" -, title = "Free-form surface modeling using implicit patches" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "176--180" -, cites = "hk-crcs-85i, hh-gpbs-88, w-asmgc-86, bi-hiura-89, p-dlsfas-87, s-pasp-85, d-spqs-, d-pimcc-85, f-spm-86, p-lssic-, ZZZ" -, update = "98.07 bibrelex" +, author = "B. Guo" +, title = "Free-form surface modeling using implicit patches" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "176--180" +, cites = "hk-crcs-85i, hh-gpbs-88, w-asmgc-86, bi-hiura-89, p-dlsfas-87, s-pasp-85, d-spqs-, d-pimcc-85, f-spm-86, p-lssic-, ZZZ" +, update = "98.07 bibrelex" } @article{g-ddcps-96 -, author = "B. Guo" -, title = "On the difficulty of deciding the convexity of polynomials over simplexes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "227--230" -, update = "96.09 devillers" +, author = "B. Guo" +, title = "On the difficulty of deciding the convexity of polynomials over simplexes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "227--230" +, update = "96.09 devillers" } @article{gmw-sruas-97 -, author = "B. Guo and J. Menon and B. Willette" -, title = "Surface Reconstruction Using Alpha Shapes" -, journal = "Comput. Graph. Forum" -, volume = 16 -, number = 4 -, month = oct -, year = 1997 -, pages = "177--190" -, update = "98.07 held" +, author = "B. Guo and J. Menon and B. Willette" +, title = "Surface Reconstruction Using Alpha Shapes" +, journal = "Comput. Graph. Forum" +, volume = 16 +, number = 4 +, month = oct +, year = 1997 +, pages = "177--190" +, update = "98.07 held" } @inproceedings{ghru-hso-97 -, author = "H. Gupta and V. Harinarayan and A. Rajaraman and J. D. Ullman" -, title = "Index selection for {OLAP}" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1996 -, pages = "205--216" -, update = "97.07 agarwal" +, author = "H. Gupta and V. Harinarayan and A. Rajaraman and J. D. Ullman" +, title = "Index selection for {OLAP}" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1996 +, pages = "205--216" +, update = "97.07 agarwal" } @inproceedings{gw-cpdp-97 -, author = "Himanshu Gupta and Rephael Wenger" -, title = "Constructing Pairwise Disjoint Paths with Few Links" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, site = "Halifax, Canada" -, year = 1997 -, update = "01.07 wenger" +, author = "Himanshu Gupta and Rephael Wenger" +, title = "Constructing Pairwise Disjoint Paths with Few Links" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, site = "Halifax, Canada" +, year = 1997 +, update = "01.07 wenger" } @article{gw-cplh-97 -, author = "Himanshu Gupta and Rephael Wenger" -, title = "Constructing Piecewise Linear Homeomorphisms of Simple Polygons" -, journal = "J. Algorithms" -, volume = 22 -, year = 1997 -, pages = "142--157" -, update = "01.07 wenger" +, author = "Himanshu Gupta and Rephael Wenger" +, title = "Constructing Piecewise Linear Homeomorphisms of Simple Polygons" +, journal = "J. Algorithms" +, volume = 22 +, year = 1997 +, pages = "142--157" +, update = "01.07 wenger" } @inproceedings{gs-fospc-96 -, author = "Neelima Gupta and Sandeep Sen" -, title = "Faster Output-Sensitive Parallel Convex Hulls for $d \le 3$: Optimal Sublogarithmic Algorithms for Small Outputs" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "176--185" -, cites = "acgoy-pcg-85, agr-pahdc-94, a-oacch-84, ag-epssg-86, ag-pasft-88, ap-p3dch-92, bh-fpsae-93, cd-icott-87, c-pagp-80, c-osrch-95, csy-oscpf-95, cf-dvrsi-90, cm-dosch-92, c-oesa-87, cs-arscg-89, d-opalp-90, dk-pcsh-89, e-acg-87, gg-ptpch-91, g-gpmee-93, g-fdplp-96, g-eadch-72, h-fdpa-93, hr-wmhtb-92, hw-ensrq-87, gz-odapp-95, kr-lbmcl-89, ks-upcha-86, mv-chpnc-91, ph-chfsp-77, p-ortap-79, ps-cgi-85, rs-oprat-92, rs-rstpa-93, rs-rabsl-94, s-lbadt-94, s-pmsua-96, s-cg-78, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Neelima Gupta and Sandeep Sen" +, title = "Faster Output-Sensitive Parallel Convex Hulls for $d \le 3$: Optimal Sublogarithmic Algorithms for Small Outputs" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "176--185" +, cites = "acgoy-pcg-85, agr-pahdc-94, a-oacch-84, ag-epssg-86, ag-pasft-88, ap-p3dch-92, bh-fpsae-93, cd-icott-87, c-pagp-80, c-osrch-95, csy-oscpf-95, cf-dvrsi-90, cm-dosch-92, c-oesa-87, cs-arscg-89, d-opalp-90, dk-pcsh-89, e-acg-87, gg-ptpch-91, g-gpmee-93, g-fdplp-96, g-eadch-72, h-fdpa-93, hr-wmhtb-92, hw-ensrq-87, gz-odapp-95, kr-lbmcl-89, ks-upcha-86, mv-chpnc-91, ph-chfsp-77, p-ortap-79, ps-cgi-85, rs-oprat-92, rs-rstpa-93, rs-rabsl-94, s-lbadt-94, s-pmsua-96, s-cg-78, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @phdthesis{g-eadsg-95 -, author = "P. Gupta" -, title = "Efficient algorithms and data structures for geometric intersection problems" -, type = "Ph.{D}. Thesis" -, school = "University of Minnesota" -, address = "Minneapolis" -, year = 1995 -, keywords = "doctoral thesis" -, update = "96.01 smid" +, author = "P. Gupta" +, title = "Efficient algorithms and data structures for geometric intersection problems" +, type = "Ph.{D}. Thesis" +, school = "University of Minnesota" +, address = "Minneapolis" +, year = 1995 +, keywords = "doctoral thesis" +, update = "96.01 smid" } @inproceedings{gjmw-egawo-95 -, author = "Prosenjit Gupta and Ravi Janardan and Jayanth Majhi and Tony Woo" -, title = "Efficient Geometric Algorithms for Workpiece Orientation in 4- and 5-Axis {NC}-Machining" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "171--182" -, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" +, author = "Prosenjit Gupta and Ravi Janardan and Jayanth Majhi and Tony Woo" +, title = "Efficient Geometric Algorithms for Workpiece Orientation in 4- and 5-Axis {NC}-Machining" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "171--182" +, update = "99.07 bibrelex, 96.01 smid, 95.05 mitchell" } @article{gjmw-egawo-96 -, author = "P. Gupta and R. Janardan and J. Majhi and T. C. Woo" -, title = "Efficient Geometric Algorithms for Workpiece Orientation in 4- and 5-axis {NC} Machining" -, journal = "Comput. Aided Design" -, volume = 28 -, number = 8 -, month = aug -, year = 1996 -, pages = "577--587" -, update = "96.09 held" +, author = "P. Gupta and R. Janardan and J. Majhi and T. C. Woo" +, title = "Efficient Geometric Algorithms for Workpiece Orientation in 4- and 5-axis {NC} Machining" +, journal = "Comput. Aided Design" +, volume = 28 +, number = 8 +, month = aug +, year = 1996 +, pages = "577--587" +, update = "96.09 held" } @techreport{gjs-atarr-96 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "A technique for adding range restrictions to generalized searching problems" -, type = "Report" -, number = "MPI-I-96-1-017" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1996 -, update = "96.09 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "A technique for adding range restrictions to generalized searching problems" +, type = "Report" +, number = "MPI-I-96-1-017" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1996 +, update = "96.09 smid" } @article{gjs-atarr-97 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "A technique for adding range restrictions to generalized searching problems" -, journal = "Inform. Process. Lett." -, volume = 64 -, year = 1997 -, pages = "263--269" -, update = "98.03 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "A technique for adding range restrictions to generalized searching problems" +, journal = "Inform. Process. Lett." +, volume = 64 +, year = 1997 +, pages = "263--269" +, update = "98.03 smid" } @article{gjs-aghrs-96 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Algorithms for generalized halfspace range searching and other intersection searching problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1996 -, pages = "321--340" -, update = "96.09 devillers+smid, 96.05 smid" -, annote = "also published (erroneously) in Volume 6 (1996), pp. 1--19" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Algorithms for generalized halfspace range searching and other intersection searching problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1996 +, pages = "321--340" +, update = "96.09 devillers+smid, 96.05 smid" +, annote = "also published (erroneously) in Volume 6 (1996), pp. 1--19" } @article{gjs-asisp-99 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Algorithms for some intersection searching problems involving circular objects" -, journal = "International Journal of Mathematical Algorithms" -, volume = 1 -, year = 1999 -, pages = "35--52" -, update = "99.11 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Algorithms for some intersection searching problems involving circular objects" +, journal = "International Journal of Mathematical Algorithms" +, volume = 1 +, year = 1999 +, pages = "35--52" +, update = "99.11 smid" } @techreport{gjs-eacrp-96t -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Efficient algorithms for counting and reporting pairwise intersections between convex polygons" -, type = "Report" -, number = "TR 96-03" -, institution = "Department of Computer Science, King's College" -, address = "London, UK" -, year = 1996 -, update = "96.09 mitchell, 96.05 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Efficient algorithms for counting and reporting pairwise intersections between convex polygons" +, type = "Report" +, number = "TR 96-03" +, institution = "Department of Computer Science, King's College" +, address = "London, UK" +, year = 1996 +, update = "96.09 mitchell, 96.05 smid" } @inproceedings{gjs-eacrp-96i -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Efficient algorithms for counting and reporting pairwise intersections between convex polygons" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "8--13" -, update = "97.03 smid, 96.09 mitchell" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Efficient algorithms for counting and reporting pairwise intersections between convex polygons" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "8--13" +, update = "97.03 smid, 96.09 mitchell" } @article{gjs-eacrp-99 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Efficient algorithms for counting and reporting pairwise intersections between convex polygons" -, journal = "Inform. Process. Lett." -, volume = 69 -, year = 1999 -, pages = "7--13" -, update = "99.07 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Efficient algorithms for counting and reporting pairwise intersections between convex polygons" +, journal = "Inform. Process. Lett." +, volume = 69 +, year = 1999 +, pages = "7--13" +, update = "99.07 smid" } @techreport{gjs-eagis-93 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Efficient algorithms for generalized intersection searching on non-iso-oriented objects" -, type = "Report" -, number = "MPI-I-93-166" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, update = "94.01 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Efficient algorithms for generalized intersection searching on non-iso-oriented objects" +, type = "Report" +, number = "MPI-I-93-166" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, update = "94.01 smid" } @inproceedings{gjs-eagis-94 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Efficient Algorithms for Generalized Intersection Searching on Non-Iso-Oriented Objects" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "369--378" -, cites = "ahl-sqrpc-90, ak-ccspi-93, ako-iqco-93, cgl-pgd-85, ds-tamol-87, dsst-mdsp-89, e-acg-87, gjs-frgis-93, gjs-ispic-93, gjs-eagis-93, jl-gisp-93, m-cha-91, m-ept-92, m-rsehc-92, m-cgitr-93, oy-nubkm-88, ZZZ" -, update = "98.03 bibrelex, 94.09 smid, 94.01 jones" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Efficient Algorithms for Generalized Intersection Searching on Non-Iso-Oriented Objects" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "369--378" +, cites = "ahl-sqrpc-90, ak-ccspi-93, ako-iqco-93, cgl-pgd-85, ds-tamol-87, dsst-mdsp-89, e-acg-87, gjs-frgis-93, gjs-ispic-93, gjs-eagis-93, jl-gisp-93, m-cha-91, m-ept-92, m-rsehc-92, m-cgitr-93, oy-nubkm-88, ZZZ" +, update = "98.03 bibrelex, 94.09 smid, 94.01 jones" } @techreport{gjs-facpp-94t -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Fast algorithms for collision and proximity problems involving moving geometric objects" -, type = "Report" -, number = "MPI-I-94-113" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "95.01 smid, 94.05 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Fast algorithms for collision and proximity problems involving moving geometric objects" +, type = "Report" +, number = "MPI-I-94-113" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "95.01 smid, 94.05 smid" } @inproceedings{gjs-facpp-94i -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Fast algorithms for collision and proximity problems involving moving geometric objects" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, nickname = "ESA '94" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "278--289" -, precedes = "gjs-facpp-96" -, update = "97.03 devillers, 95.01 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Fast algorithms for collision and proximity problems involving moving geometric objects" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, nickname = "ESA '94" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "278--289" +, precedes = "gjs-facpp-96" +, update = "97.03 devillers, 95.01 smid" } @article{gjs-facpp-96 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Fast algorithms for collision and proximity problems involving moving geometric objects" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "371--391" -, succeeds = "gjs-facpp-94i" -, update = "97.03 devillers+smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Fast algorithms for collision and proximity problems involving moving geometric objects" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "371--391" +, succeeds = "gjs-facpp-94i" +, update = "97.03 devillers+smid" } @techreport{gjs-frgis-92 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Further results on generalized intersection searching problems: counting, reporting and dynamization" -, type = "Report" -, number = "MPI-I-92-154" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Further results on generalized intersection searching problems: counting, reporting and dynamization" +, type = "Report" +, number = "MPI-I-92-154" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 } @inproceedings{gjs-frgis-93 -, author = "Prosenjit Gupta and Ravi Janardan and Michiel Smid" -, title = "Further Results on Generalized Intersection Searching Problems: {Counting}, Reporting, and Dynamization" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "361--372" -, update = "95.01 smid, 93.09 milone+mitchell+smid, 93.05 jones" +, author = "Prosenjit Gupta and Ravi Janardan and Michiel Smid" +, title = "Further Results on Generalized Intersection Searching Problems: {Counting}, Reporting, and Dynamization" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "361--372" +, update = "95.01 smid, 93.09 milone+mitchell+smid, 93.05 jones" } @article{gjs-frgis-95 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "Further results on generalized intersection searching problems: counting, reporting and dynamization" -, journal = "J. Algorithms" -, volume = 19 -, year = 1995 -, pages = "282--317" -, update = "96.01 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "Further results on generalized intersection searching problems: counting, reporting and dynamization" +, journal = "J. Algorithms" +, volume = 19 +, year = 1995 +, pages = "282--317" +, update = "96.01 smid" } @techreport{gjs-ispic-93 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "On intersection searching problems involving curved objects" -, type = "Report" -, number = "MPI-I-93-124" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, update = "93.09 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "On intersection searching problems involving curved objects" +, type = "Report" +, number = "MPI-I-93-124" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, update = "93.09 smid" } @inproceedings{gjs-ispic-94 -, author = "P. Gupta and R. Janardan and M. Smid" -, title = "On intersection searching problems involving curved objects" -, booktitle = "Proc. 4th Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 824 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "183--194" -, update = "94.09 smid" +, author = "P. Gupta and R. Janardan and M. Smid" +, title = "On intersection searching problems involving curved objects" +, booktitle = "Proc. 4th Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 824 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "183--194" +, update = "94.09 smid" } @techreport{gjsd-repdp-94 -, author = "P. Gupta and R. Janardan and M. Smid and B. Dasgupta" -, title = "The rectangle enclosure and point-dominance problems revisited" -, type = "Report" -, number = "MPI-I-94-142" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "94.09 smid" +, author = "P. Gupta and R. Janardan and M. Smid and B. Dasgupta" +, title = "The rectangle enclosure and point-dominance problems revisited" +, type = "Report" +, number = "MPI-I-94-142" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "94.09 smid" } @inproceedings{gjsd-repdp-95 -, author = "Prosenjit Gupta and Ravi Janardan and Michiel Smid and Bhaskar Dasgupta" -, title = "The Rectangle Enclosure and Point-Dominance Problems Revisited" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "162--171" -, keywords = "" -, cites = "eo-esrp-82, gjsd-repdp-94, ko-sag-88, lp-iarep-82, lw-firrs-81, m-pst-85, pl-pdavs-88, ps-cgi-85, ekz-diepq-77, e-pofll-77, vw-dsrce-80, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Prosenjit Gupta and Ravi Janardan and Michiel Smid and Bhaskar Dasgupta" +, title = "The Rectangle Enclosure and Point-Dominance Problems Revisited" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "162--171" +, keywords = "" +, cites = "eo-esrp-82, gjsd-repdp-94, ko-sag-88, lp-iarep-82, lw-firrs-81, m-pst-85, pl-pdavs-88, ps-cgi-85, ekz-diepq-77, e-pofll-77, vw-dsrce-80, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{gjsd-repdp-97 -, author = "Prosenjit Gupta and Ravi Janardan and Michiel Smid and Bhaskar Dasgupta" -, title = "The Rectangle Enclosure and Point-Dominance Problems Revisited" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "437--455" -, update = "98.03 smid" +, author = "Prosenjit Gupta and Ravi Janardan and Michiel Smid and Bhaskar Dasgupta" +, title = "The Rectangle Enclosure and Point-Dominance Problems Revisited" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "437--455" +, update = "98.03 smid" } @techreport{gs-oappg-96 -, author = "P. Gupta and S. Saluja" -, title = "Optimal algorithms for some proximity problems on the {Gaussian} sphere with applications" -, type = "Report" -, number = "MPI-I-96-1-022" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1996 -, update = "96.09 smid" +, author = "P. Gupta and S. Saluja" +, title = "Optimal algorithms for some proximity problems on the {Gaussian} sphere with applications" +, type = "Report" +, number = "MPI-I-96-1-022" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1996 +, update = "96.09 smid" } @inproceedings{gk-gsbif-98 -, author = "S. Gupta and S. Khuller" -, title = "Greedy strikes back: {I}mproved facility location problems" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1998 -, pages = "649--657" -, update = "98.07 agarwal" +, author = "S. Gupta and S. Khuller" +, title = "Greedy strikes back: {I}mproved facility location problems" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1998 +, pages = "649--657" +, update = "98.07 agarwal" } @article{g-smbop-99 -, author = "Satyandra K. Gupta" -, title = "Sheet metal bending operation planning: {U}sing virtual node generation to improve search efficiency" -, journal = "J. Manuf. Sys." -, volume = 18 -, number = 2 -, year = 1999 -, pages = "127--139" -, update = "02.03 orourke" +, author = "Satyandra K. Gupta" +, title = "Sheet metal bending operation planning: {U}sing virtual node generation to improve search efficiency" +, journal = "J. Manuf. Sys." +, volume = 18 +, number = 2 +, year = 1999 +, pages = "127--139" +, update = "02.03 orourke" } @article{gbkk-appsmbo-98 -, author = "S. K. Gupta and D. A. Bourne and K. H. Kim and S. S. Krishnan" -, title = "Automated process planning for sheet metal bending operations" -, journal = "J. Manufacturing Systems" -, volume = 17 -, number = 5 -, year = 1998 -, pages = "338--360" -, keywords = "manufacturing" -, update = "99.03 orourke, 98.11 orourke" +, author = "S. K. Gupta and D. A. Bourne and K. H. Kim and S. S. Krishnan" +, title = "Automated process planning for sheet metal bending operations" +, journal = "J. Manufacturing Systems" +, volume = 17 +, number = 5 +, year = 1998 +, pages = "338--360" +, keywords = "manufacturing" +, update = "99.03 orourke, 98.11 orourke" } @article{gn-saamm-95 -, author = "Satyandra K. Gupta and Dana S. Nau" -, title = "Systematic approach to analysing the manufacturability of machined parts" -, journal = "Comput. Aided Design" -, volume = 27 -, number = 5 -, year = 1995 -, pages = "323--342" -, keywords = "design for manufacturability, CAM, CAD, feature-based models" -, update = "98.03 mitchell" +, author = "Satyandra K. Gupta and Dana S. Nau" +, title = "Systematic approach to analysing the manufacturability of machined parts" +, journal = "Comput. Aided Design" +, volume = 27 +, number = 5 +, year = 1995 +, pages = "323--342" +, keywords = "design for manufacturability, CAM, CAD, feature-based models" +, update = "98.03 mitchell" } @article{g-meds-75 -, author = "A. B. Gurevich" -, title = "The 'most economical' displacement of a segment" -, journal = "Differential Equations" -, volume = 11 -, year = 1975 -, pages = "1583--1589" -, update = "98.03 bibrelex" +, author = "A. B. Gurevich" +, title = "The 'most economical' displacement of a segment" +, journal = "Differential Equations" +, volume = 11 +, year = 1975 +, pages = "1583--1589" +, update = "98.03 bibrelex" } @phdthesis{g-simat-89 -, author = "H. N. G{\"u}rsoy" -, title = "Shape Interrogation by Medial Axis Transform for Automated Analysis" -, type = "Ph.{D}. Thesis" -, school = "Dept. Ocean Engineering, MIT" -, address = "Cambridge, MA" -, month = nov -, year = 1989 -, keywords = "doctoral thesis" -, update = "95.09 korneenko, 93.09 held" +, author = "H. N. G{\"u}rsoy" +, title = "Shape Interrogation by Medial Axis Transform for Automated Analysis" +, type = "Ph.{D}. Thesis" +, school = "Dept. Ocean Engineering, MIT" +, address = "Cambridge, MA" +, month = nov +, year = 1989 +, keywords = "doctoral thesis" +, update = "95.09 korneenko, 93.09 held" } @article{gp-aiass-91 -, author = "H. N. G{\"u}rsoy and N. M. Patrialakis" -, title = "Automated Interrogation and Adaptive Subdivision of Shape Using Medial Axis Transform" -, journal = "Advances in Engineering Software and Workstations" -, volume = 13 -, number = "5--6" -, month = sep -, year = 1991 -, pages = "287--302" -, annote = "Vd of region is used break it up into quads and tris, - which are then triangulated." +, author = "H. N. G{\"u}rsoy and N. M. Patrialakis" +, title = "Automated Interrogation and Adaptive Subdivision of Shape Using Medial Axis Transform" +, journal = "Advances in Engineering Software and Workstations" +, volume = 13 +, number = "5--6" +, month = sep +, year = 1991 +, pages = "287--302" +, annote = "Vd of region is used break it up into quads and tris, + which are then triangulated." } @article{gp-acfsm1-92 -, author = "H. N. G{\"u}rsoy and N. M. Patrikalakis" -, title = "An Automatic Coarse and Fine Surface Mesh Generation Scheme Based on Medial Axis Transform: Part {I} Algorithm" -, journal = "Engineering with Computers" -, volume = 8 -, year = 1992 -, pages = "121--137" -, update = "93.09 held" +, author = "H. N. G{\"u}rsoy and N. M. Patrikalakis" +, title = "An Automatic Coarse and Fine Surface Mesh Generation Scheme Based on Medial Axis Transform: Part {I} Algorithm" +, journal = "Engineering with Computers" +, volume = 8 +, year = 1992 +, pages = "121--137" +, update = "93.09 held" } @article{gp-acfsm2-92 -, author = "H. N. G{\"u}rsoy and N. M. Patrikalakis" -, title = "An Automatic Coarse and Fine Surface Mesh Generation Scheme Based on Medial Axis Transform: Part {II} Implementation" -, journal = "Engineering with Computers" -, volume = 8 -, year = 1992 -, pages = "179--196" -, update = "93.09 held" +, author = "H. N. G{\"u}rsoy and N. M. Patrikalakis" +, title = "An Automatic Coarse and Fine Surface Mesh Generation Scheme Based on Medial Axis Transform: Part {II} Implementation" +, journal = "Engineering with Computers" +, volume = 8 +, year = 1992 +, pages = "179--196" +, update = "93.09 held" } @inproceedings{g-bpstp-79 -, author = "D. Gusfield" -, title = "Bounds for the parametric spanning tree problem" -, booktitle = "Proc. West Coast Conf. Combinatorics, Graph Theory and Comput." -, year = 1979 -, pages = "173--181" -, update = "98.03 agarwal, 97.11 bibrelex" +, author = "D. Gusfield" +, title = "Bounds for the parametric spanning tree problem" +, booktitle = "Proc. West Coast Conf. Combinatorics, Graph Theory and Comput." +, year = 1979 +, pages = "173--181" +, update = "98.03 agarwal, 97.11 bibrelex" } @article{g-pccpp-83 -, author = "D. Gusfield" -, title = "Parametric combinatorial computing and a problem in program module allocation" -, journal = "J. ACM" -, volume = 30 -, year = 1983 -, pages = "551--563" -, update = "96.05 agarwal" +, author = "D. Gusfield" +, title = "Parametric combinatorial computing and a problem in program module allocation" +, journal = "J. ACM" +, volume = 30 +, year = 1983 +, pages = "551--563" +, update = "96.05 agarwal" } @techreport{g-saco-80 -, author = "D. Gusfield" -, title = "Sensitivity analysis for combinatorial optimization" -, number = "UCB/ERLM80/22" -, institution = "Univ. of California" -, address = "Berkeley, CA" -, year = 1980 -, update = "96.05 agarwal" +, author = "D. Gusfield" +, title = "Sensitivity analysis for combinatorial optimization" +, number = "UCB/ERLM80/22" +, institution = "Univ. of California" +, address = "Berkeley, CA" +, year = 1980 +, update = "96.05 agarwal" } @article{gbn-posa-94 -, author = "D. Gusfield and K. Balasubramanian and D. Naor" -, title = "Parametric optimization of sequence alignment" -, journal = "Algorithmica" -, volume = 12 -, year = 1994 -, pages = "312--326" -, update = "96.05 agarwal" +, author = "D. Gusfield and K. Balasubramanian and D. Naor" +, title = "Parametric optimization of sequence alignment" +, journal = "Algorithmica" +, volume = 12 +, year = 1994 +, pages = "312--326" +, update = "96.05 agarwal" } @article{gi-psmmc-89 -, author = "D. Gusfield and R. Irving" -, title = "Parametric stable marriage and minimum cuts" -, journal = "Inform. Process. Lett." -, volume = 30 -, year = 1989 -, pages = "255--259" -, update = "97.11 bibrelex" +, author = "D. Gusfield and R. Irving" +, title = "Parametric stable marriage and minimum cuts" +, journal = "Inform. Process. Lett." +, volume = 30 +, year = 1989 +, pages = "255--259" +, update = "97.11 bibrelex" } @techreport{gm-fagpm-89 -, author = "D. Gusfield and C. Martel" -, title = "A fast algorithm for the generalized parametric minimum cut problem and applications" -, type = "Technical {Report}" -, number = "CSE-89-21" -, institution = "UC Davis" -, year = 1989 -, update = "97.11 bibrelex" +, author = "D. Gusfield and C. Martel" +, title = "A fast algorithm for the generalized parametric minimum cut problem and applications" +, type = "Technical {Report}" +, number = "CSE-89-21" +, institution = "UC Davis" +, year = 1989 +, update = "97.11 bibrelex" } @techreport{g-mlsdf-83 -, author = "R. H. G{\"u}ting" -, title = "A message to the line sweeper: don't forget divide-and-conquer" -, type = "Report" -, number = 170 -, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" -, address = "Dortmund, West Germany" -, year = 1983 +, author = "R. H. G{\"u}ting" +, title = "A message to the line sweeper: don't forget divide-and-conquer" +, type = "Report" +, number = 170 +, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" +, address = "Dortmund, West Germany" +, year = 1983 } @techreport{g-audfg-84 -, author = "R. H. G{\"u}ting" -, title = "Algorithmen und {Datenstrukturen} f{\"u}r geometrische {Probleme}" -, type = "Report" -, number = "SS 84-1984" -, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" -, address = "Dortmund, West Germany" -, year = 1984 +, author = "R. H. G{\"u}ting" +, title = "Algorithmen und {Datenstrukturen} f{\"u}r geometrische {Probleme}" +, type = "Report" +, number = "SS 84-1984" +, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" +, address = "Dortmund, West Germany" +, year = 1984 } @article{g-isds-94 -, author = "R. H. G{\"u}ting" -, title = "An introduction to spatial database systems" -, journal = "VLDB Journal" -, volume = 4 -, year = 1994 -, pages = "357--399" -, update = "97.07 agarwal" +, author = "R. H. G{\"u}ting" +, title = "An introduction to spatial database systems" +, journal = "VLDB Journal" +, volume = 4 +, year = 1994 +, pages = "357--399" +, update = "97.07 agarwal" } @article{g-ocaio-84 -, author = "R. H. G{\"u}ting" -, title = "An optimal contour algorithm for iso-oriented rectangles" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "303--326" +, author = "R. H. G{\"u}ting" +, title = "An optimal contour algorithm for iso-oriented rectangles" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "303--326" } @phdthesis{g-cceac-83 -, author = "R. H. G{\"u}ting" -, title = "Conquering contours: {Efficient} algorithms for computational geometry" -, type = "Ph.{D}. Thesis" -, school = "Abteilung Inform., Dortmund Univ." -, address = "Dortmund, West Germany" -, year = 1983 -, keywords = "doctoral thesis" -, update = "96.05 smid" +, author = "R. H. G{\"u}ting" +, title = "Conquering contours: {Efficient} algorithms for computational geometry" +, type = "Ph.{D}. Thesis" +, school = "Abteilung Inform., Dortmund Univ." +, address = "Dortmund, West Germany" +, year = 1983 +, keywords = "doctoral thesis" +, update = "96.05 smid" } @techreport{g-dcopi-84 -, author = "R. H. G{\"u}ting" -, title = "Dynamic C-oriented polygonal intersection searching" -, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" -, address = "Dortmund, Germany" -, year = 1984 -, update = "97.11 bibrelex" +, author = "R. H. G{\"u}ting" +, title = "Dynamic C-oriented polygonal intersection searching" +, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" +, address = "Dortmund, Germany" +, year = 1984 +, update = "97.11 bibrelex" } @article{g-dcopi-84a -, author = "R. H. G{\"u}ting" -, title = "Dynamic {C}-oriented polygonal intersection searching" -, journal = "Inform. Control" -, volume = 63 -, year = 1984 -, pages = "143--163" -, update = "98.07 bibrelex" +, author = "R. H. G{\"u}ting" +, title = "Dynamic {C}-oriented polygonal intersection searching" +, journal = "Inform. Control" +, volume = 63 +, year = 1984 +, pages = "143--163" +, update = "98.07 bibrelex" } @article{g-fdiss-85 -, author = "R. H. G{\"u}ting" -, title = "Fast dynamic intersection searching in a set of isothetic line segments" -, journal = "Inform. Process. Lett." -, volume = 21 -, year = 1985 -, pages = "165--171" +, author = "R. H. G{\"u}ting" +, title = "Fast dynamic intersection searching in a set of isothetic line segments" +, journal = "Inform. Process. Lett." +, volume = 21 +, year = 1985 +, pages = "165--171" } @techreport{g-fdlsi-84 -, author = "R. H. G{\"u}ting" -, title = "Fast dynamic line segment intersection searching" -, type = "Report" -, number = 87 -, institution = "Forschungsberichte Fachber. Inform., Univ. Dortmund" -, address = "Dortmund, West Germany" -, year = 1984 -, keywords = "intersection searching, line segment, segment tree, range tree, halfobject technique" +, author = "R. H. G{\"u}ting" +, title = "Fast dynamic line segment intersection searching" +, type = "Report" +, number = 87 +, institution = "Forschungsberichte Fachber. Inform., Univ. Dortmund" +, address = "Dortmund, West Germany" +, year = 1984 +, keywords = "intersection searching, line segment, segment tree, range tree, halfobject technique" } @inproceedings{g-gramq-cga-88 -, author = "R. H. G{\"u}ting" -, title = "Geo-relational algebra: a model and query language for geometric database systems" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "90--96" -, comments = "extended abstract" -, precedes = "g-gramq-edbt-88" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "R. H. G{\"u}ting" +, title = "Geo-relational algebra: a model and query language for geometric database systems" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "90--96" +, comments = "extended abstract" +, precedes = "g-gramq-edbt-88" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @incollection{g-gramq-edbt-88 -, author = "R. H. G{\"u}ting" -, title = "Geo-relational algebra: a model and query language for geometric database systems" -, booktitle = "Advances in Database Technology: EDBT '88" -, series = "Lecture Notes Comput. Sci." -, volume = 303 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "506--527" -, succeeds = "g-gramq-cga-88" +, author = "R. H. G{\"u}ting" +, title = "Geo-relational algebra: a model and query language for geometric database systems" +, booktitle = "Advances in Database Technology: EDBT '88" +, series = "Lecture Notes Comput. Sci." +, volume = 303 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "506--527" +, succeeds = "g-gramq-cga-88" } @techreport{g-graiv-86 -, author = "R. H. G{\"u}ting" -, title = "Geo-relational algebra: an integrated view of geometric and standard data in databases" -, type = "Report" -, number = 226 -, institution = "Fachber. Inform., Univ. Dortmund" -, address = "Dortmund, West Germany" -, year = 1986 +, author = "R. H. G{\"u}ting" +, title = "Geo-relational algebra: an integrated view of geometric and standard data in databases" +, type = "Report" +, number = 226 +, institution = "Fachber. Inform., Univ. Dortmund" +, address = "Dortmund, West Germany" +, year = 1986 } @article{g-odccm-84 -, author = "R. H. G{\"u}ting" -, title = "Optimal divide-and-conquer to compute measure and contour for a set of iso-rectangles" -, journal = "Acta Inform." -, volume = 21 -, year = 1984 -, pages = "271--291" -, update = "96.05 smid" +, author = "R. H. G{\"u}ting" +, title = "Optimal divide-and-conquer to compute measure and contour for a set of iso-rectangles" +, journal = "Acta Inform." +, volume = 21 +, year = 1984 +, pages = "271--291" +, update = "96.05 smid" } @article{g-scop-83 -, author = "R. H. G{\"u}ting" -, title = "Stabbing $c$-oriented polygons" -, journal = "Inform. Process. Lett." -, volume = 16 -, year = 1983 -, pages = "35--40" +, author = "R. H. G{\"u}ting" +, title = "Stabbing $c$-oriented polygons" +, journal = "Inform. Process. Lett." +, volume = 16 +, year = 1983 +, pages = "35--40" } @inproceedings{gk-dkdms-81 -, author = "R. H. G{\"u}ting and H. P. Kriegel" -, title = "Dynamic $k$-dimensional multiway search under time-varying access frequencies" -, booktitle = "Proc. 5th GI Conf. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 104 -, publisher = "Springer-Verlag" -, year = 1981 -, pages = "135--145" +, author = "R. H. G{\"u}ting and H. P. Kriegel" +, title = "Dynamic $k$-dimensional multiway search under time-varying access frequencies" +, booktitle = "Proc. 5th GI Conf. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 104 +, publisher = "Springer-Verlag" +, year = 1981 +, pages = "135--145" } @inproceedings{gk-mbted-80 -, author = "R. H. G{\"u}ting and H. P. Kriegel" -, title = "Multidimensional {$B$}-tree: {An} efficient dynamic file structure for exact match queries" -, booktitle = "Proc. 10th GI Conf." -, publisher = "Springer-Verlag" -, year = 1980 -, pages = "375--388" +, author = "R. H. G{\"u}ting and H. P. Kriegel" +, title = "Multidimensional {$B$}-tree: {An} efficient dynamic file structure for exact match queries" +, booktitle = "Proc. 10th GI Conf." +, publisher = "Springer-Verlag" +, year = 1980 +, pages = "375--388" } @article{gno-faded-89 -, author = "R. H. G{\"u}ting and O. Nurmi and T. Ottmann" -, title = "Fast algorithms for direct enclosures and direct dominances" -, journal = "J. Algorithms" -, volume = 10 -, year = 1989 -, pages = "170--186" -, succeeds = "gno-ddp-85" +, author = "R. H. G{\"u}ting and O. Nurmi and T. Ottmann" +, title = "Fast algorithms for direct enclosures and direct dominances" +, journal = "J. Algorithms" +, volume = 10 +, year = 1989 +, pages = "170--186" +, succeeds = "gno-ddp-85" } @inproceedings{gno-ddp-85 -, author = "R. H. G{\"u}ting and O. Nurmi and T. Ottmann" -, title = "The direct dominance problem" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "81--88" -, precedes = "gno-faded-89" -, cites = "b-skrp-77, em-ioo-81, eo-esrp-82, gw-pt-82, k-ddp-85, klp-fmsv-75, lp-iarep-82, l-tarrc-79, m-eaeii-80, nr-bstbb-73, vw-dsrce-80, w-isbt-79, ZZZ" -, update = "97.11 bibrelex" +, author = "R. H. G{\"u}ting and O. Nurmi and T. Ottmann" +, title = "The direct dominance problem" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "81--88" +, precedes = "gno-faded-89" +, cites = "b-skrp-77, em-ioo-81, eo-esrp-82, gw-pt-82, k-ddp-85, klp-fmsv-75, lp-iarep-82, l-tarrc-79, m-eaeii-80, nr-bstbb-73, vw-dsrce-80, w-isbt-79, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{go-nasch-85 -, author = "R. H. G{\"u}ting and T. Ottmann" -, title = "New Algorithms for Special Cases of the Hidden Line Elimination" -, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." -, year = 1985 -, update = "98.03 bibrelex" +, author = "R. H. G{\"u}ting and T. Ottmann" +, title = "New Algorithms for Special Cases of the Hidden Line Elimination" +, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." +, year = 1985 +, update = "98.03 bibrelex" } @techreport{go-nasch-84 -, author = "R. H. G{\"u}ting and T. Ottmann" -, title = "New algorithms for special cases of the hidden line elimination problem" -, type = "Report" -, number = 184 -, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" -, address = "Dortmund, West Germany" -, year = 1984 -, precedes = "go-nasch-87" +, author = "R. H. G{\"u}ting and T. Ottmann" +, title = "New algorithms for special cases of the hidden line elimination problem" +, type = "Report" +, number = 184 +, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" +, address = "Dortmund, West Germany" +, year = 1984 +, precedes = "go-nasch-87" } @article{go-nasch-87 -, author = "R. H. G{\"u}ting and T. Ottmann" -, title = "New algorithms for special cases of the hidden line elimination problem" -, journal = "Comput. Vision Graph. Image Process." -, volume = 40 -, year = 1987 -, pages = "188--204" -, succeeds = "go-nasch-84" +, author = "R. H. G{\"u}ting and T. Ottmann" +, title = "New algorithms for special cases of the hidden line elimination problem" +, journal = "Comput. Vision Graph. Image Process." +, volume = 40 +, year = 1987 +, pages = "188--204" +, succeeds = "go-nasch-84" } @techreport{gs-pdcar-85 -, author = "R. H. G{\"u}ting and W. Schilling" -, title = "A practical divide-and conquer algorithm for the rectangle intersection problem" -, type = "Report" -, number = 196 -, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" -, address = "Dortmund, West Germany" -, year = 1985 +, author = "R. H. G{\"u}ting and W. Schilling" +, title = "A practical divide-and conquer algorithm for the rectangle intersection problem" +, type = "Report" +, number = 196 +, institution = "Lehrstuhl Inform. VI, Univ. Dortmund" +, address = "Dortmund, West Germany" +, year = 1985 } @techreport{gw-fridc-82 -, author = "R. H. G{\"u}ting and D. Wood" -, title = "Finding rectangle intersections by divide-and-conquer" -, type = "Report" -, number = "82-CS-04" -, institution = "Unit Comput. Sci., McMaster Univ." -, address = "Hamilton, ON" -, year = 1982 -, precedes = "gw-fridc-84" +, author = "R. H. G{\"u}ting and D. Wood" +, title = "Finding rectangle intersections by divide-and-conquer" +, type = "Report" +, number = "82-CS-04" +, institution = "Unit Comput. Sci., McMaster Univ." +, address = "Hamilton, ON" +, year = 1982 +, precedes = "gw-fridc-84" } @article{gw-fridc-84 -, author = "R. H. G{\"u}ting and D. Wood" -, title = "Finding rectangle intersections by divide-and-conquer" -, journal = "IEEE Trans. Comput." -, volume = "C-33" -, year = 1984 -, pages = "671--675" -, succeeds = "gw-fridc-82" +, author = "R. H. G{\"u}ting and D. Wood" +, title = "Finding rectangle intersections by divide-and-conquer" +, journal = "IEEE Trans. Comput." +, volume = "C-33" +, year = 1984 +, pages = "671--675" +, succeeds = "gw-fridc-82" } @article{gw-pt-82 -, author = "R. H. G{\"u}ting and D. Wood" -, title = "The parenthesis tree" -, journal = "Inform. Sci." -, volume = 27 -, year = 1982 -, pages = "151--162" +, author = "R. H. G{\"u}ting and D. Wood" +, title = "The parenthesis tree" +, journal = "Inform. Sci." +, volume = 27 +, year = 1982 +, pages = "151--162" } @inproceedings{gww-pgc-89 -, author = "W. Gutjahr and Emo Welzl and G. Woeginger" -, title = "Polynomial graph-colorings" -, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 349 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "108--119" -, update = "98.03 mitchell, 97.03 gaertner+salinger" +, author = "W. Gutjahr and Emo Welzl and G. Woeginger" +, title = "Polynomial graph-colorings" +, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 349 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "108--119" +, update = "98.03 mitchell, 97.03 gaertner+salinger" } @article{gww-pgc-92 -, author = "W. Gutjahr and Emo Welzl and G. Woeginger" -, title = "Polynomial Graph-Colorings" -, journal = "Discrete Appl. Math." -, volume = 8 -, year = 1992 -, pages = "29--45" -, update = "98.03 mitchell, 97.03 gaertner+salinger" +, author = "W. Gutjahr and Emo Welzl and G. Woeginger" +, title = "Polynomial Graph-Colorings" +, journal = "Discrete Appl. Math." +, volume = 8 +, year = 1992 +, pages = "29--45" +, update = "98.03 mitchell, 97.03 gaertner+salinger" } @article{g-bp-86 -, author = "E. Gutkin" -, title = "Billards in polygons" -, journal = "Physica D" -, volume = 19 -, year = 1986 -, pages = "311--333" -, update = "98.03 bibrelex" +, author = "E. Gutkin" +, title = "Billards in polygons" +, journal = "Physica D" +, volume = 19 +, year = 1986 +, pages = "311--333" +, update = "98.03 bibrelex" } % jsbm changed the page numbers from "569--592" to "47--57" % and removed "SIGACT"; please confirm @inproceedings{g-rtdis-84 -, author = "A. Guttman" -, title = "R-Trees: {A} Dynamic Index Structure for Spatial Searching" -, booktitle = "Proc. ACM SIGMOD Conf. Principles Database Systems" -, year = 1984 -, pages = "47--57" -, update = "98.03 mitchell, 94.05 franciosa" +, author = "A. Guttman" +, title = "R-Trees: {A} Dynamic Index Structure for Spatial Searching" +, booktitle = "Proc. ACM SIGMOD Conf. Principles Database Systems" +, year = 1984 +, pages = "47--57" +, update = "98.03 mitchell, 94.05 franciosa" } @book{g-ims-72 -, author = "A. G. Guy" -, title = "Introduction to Materials Science" -, publisher = "McGraw-Hill" -, year = 1972 -, update = "97.11 bibrelex" +, author = "A. G. Guy" +, title = "Introduction to Materials Science" +, publisher = "McGraw-Hill" +, year = 1972 +, update = "97.11 bibrelex" } @incollection{g-cng-72 -, author = "R. K. Guy" -, title = "Crossing Numbers of Graphs" -, booktitle = "Graph Theory and Applications" -, series = "Lecture Notes Math." -, volume = 303 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1972 -, pages = "111--124" -, keywords = "graph drawing" -, update = "96.09 agarwal, 93.09 tamassia" +, author = "R. K. Guy" +, title = "Crossing Numbers of Graphs" +, booktitle = "Graph Theory and Applications" +, series = "Lecture Notes Math." +, volume = 303 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1972 +, pages = "111--124" +, keywords = "graph drawing" +, update = "96.09 agarwal, 93.09 tamassia" } @inproceedings{g-ao2am-89 -, author = "M. K. Guyder" -, title = "Automating the Optimization of {$2{1\over 2}$}-Axis Milling" -, editor = "F. Kimura and A. Rolstad{\aa}s" -, booktitle = "Proc. Computer Applications in Production and Engineering" -, nickname = "CAPE '89" -, publisher = "North-Holland" -, month = oct -, year = 1989 -, pages = "(supplement)" -, keywords = "survey, pocket machining, milling" -, comments = "This paper doesn't have page numbers. It was a supplement to the +, author = "M. K. Guyder" +, title = "Automating the Optimization of {$2{1\over 2}$}-Axis Milling" +, editor = "F. Kimura and A. Rolstad{\aa}s" +, booktitle = "Proc. Computer Applications in Production and Engineering" +, nickname = "CAPE '89" +, publisher = "North-Holland" +, month = oct +, year = 1989 +, pages = "(supplement)" +, keywords = "survey, pocket machining, milling" +, comments = "This paper doesn't have page numbers. It was a supplement to the printed proceeding. (For whatever reasons, it did not get included into the printed proceedings.)" -, update = "98.07 bibrelex, 98.03 mitchell" +, update = "98.07 bibrelex, 98.03 mitchell" } @incollection{g-ccgmp-89 -, author = "A. Gy{\'a}rf{\'a}s" -, title = "Covering complete graphs by monochromatic paths" -, editor = "G. Hal{\'a}sz and V. T. S{\'o}s" -, booktitle = "Irregularities of Partitions" -, series = "Algorithms and Combinatorics" -, volume = 8 -, publisher = "Springer-Verlag" -, address = "Heidelberg" -, year = 1989 -, pages = "89--91" -, update = "97.11 bibrelex" +, author = "A. Gy{\'a}rf{\'a}s" +, title = "Covering complete graphs by monochromatic paths" +, editor = "G. Hal{\'a}sz and V. T. S{\'o}s" +, booktitle = "Irregularities of Partitions" +, series = "Algorithms and Combinatorics" +, volume = 8 +, publisher = "Springer-Verlag" +, address = "Heidelberg" +, year = 1989 +, pages = "89--91" +, update = "97.11 bibrelex" } @article{g-vcmpc-83 -, author = "A. Gy{\'a}rf{\'a}s" -, title = "Vertex coverings by monochromatic paths and cycles" -, journal = "J. Graph Theory" -, volume = 7 -, year = 1983 -, pages = "131--135" -, update = "97.11 bibrelex" +, author = "A. Gy{\'a}rf{\'a}s" +, title = "Vertex coverings by monochromatic paths and cycles" +, journal = "J. Graph Theory" +, volume = 7 +, year = 1983 +, pages = "131--135" +, update = "97.11 bibrelex" } @article{gl-ccpri-85 -, author = "A. Gy{\'a}rf{\'a}s and J. Lehel" -, title = "Covering and coloring problems for relatives of intervals" -, journal = "Discrete Math." -, volume = 55 -, year = 1985 -, pages = "167--180" -, update = "98.03 bibrelex" +, author = "A. Gy{\'a}rf{\'a}s and J. Lehel" +, title = "Covering and coloring problems for relatives of intervals" +, journal = "Discrete Math." +, volume = 55 +, year = 1985 +, pages = "167--180" +, update = "98.03 bibrelex" } @article{gl-ofcg-88 -, author = "A. Gyarfas and J. Lehel" -, title = "On-line and First-Fit Colorings of Graphs" -, journal = "J. Graph Theory" -, volume = 12 -, number = 2 -, year = 1988 -, pages = "217--227" -, update = "98.07 bibrelex" +, author = "A. Gyarfas and J. Lehel" +, title = "On-line and First-Fit Colorings of Graphs" +, journal = "J. Graph Theory" +, volume = 12 +, number = 2 +, year = 1988 +, pages = "217--227" +, update = "98.07 bibrelex" } @article{g-sprag-86 -, author = "E. Gy{\"o}ri" -, title = "A Short Proof of the Rectilinear Art Gallery Theorem" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 7 -, year = 1986 -, pages = "452--454" -, update = "98.11 bibrelex" +, author = "E. Gy{\"o}ri" +, title = "A Short Proof of the Rectilinear Art Gallery Theorem" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 7 +, year = 1986 +, pages = "452--454" +, update = "98.11 bibrelex" } @techreport{ghks-ggprp-94t -, author = "Ervin Gy{\"o}ri and Frank Hoffman and Klaus Kriegel and Thomas Shermer" -, title = "Generalized Guarding and Partitioning for Rectilinear Polygons" -, type = "Technical Report" -, number = "CMPT94-01" -, institution = "School of Computing Science, Simon Fraser University" -, month = jan -, year = 1994 -, succeeds = "ghks-ggprp-94, ghks-ggprp-96" -, update = "98.11 bibrelex" +, author = "Ervin Gy{\"o}ri and Frank Hoffman and Klaus Kriegel and Thomas Shermer" +, title = "Generalized Guarding and Partitioning for Rectilinear Polygons" +, type = "Technical Report" +, number = "CMPT94-01" +, institution = "School of Computing Science, Simon Fraser University" +, month = jan +, year = 1994 +, succeeds = "ghks-ggprp-94, ghks-ggprp-96" +, update = "98.11 bibrelex" } @techreport{ghks-ggprp-93 -, author = "E. Gy{\"o}ri and F. Hoffmann and K. Kriegel and T. Shermer" -, title = "Generalized Guarding and Partitioning for Rectilinear Polygon" -, type = "Technical Report" -, number = "B 93-17" -, institution = "Frei Universit{\"a}t Berlin, FB Mathematik-Informatik" -, month = dec -, year = 1993 -, update = "98.11 bibrelex" +, author = "E. Gy{\"o}ri and F. Hoffmann and K. Kriegel and T. Shermer" +, title = "Generalized Guarding and Partitioning for Rectilinear Polygon" +, type = "Technical Report" +, number = "B 93-17" +, institution = "Frei Universit{\"a}t Berlin, FB Mathematik-Informatik" +, month = dec +, year = 1993 +, update = "98.11 bibrelex" } @inproceedings{ghks-ggprp-94 -, author = "E. Gy{\H o}ri and F. Hoffmann and K. Kriegel and T. Shermer" -, title = "Generalized Guarding and Partitioning for Rectilinear Polygons" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "302--307" -, precedes = "ghks-ggprp-96, ghks-ggprp-94t" -, cites = "a-agpiv-84, c-tsplt-91a, g-sprag-86, ghks-ggprp-93, h-ragp-90, hkk-agtph-91, kkk-tgrfw-83, o-aprag-83, o-agta-87, s-rrag-92, s-cgpul-91, s-cgopl-91, bs-tbgph-91, eow-sgrag-84, ZZZ" -, update = "98.11 bibrelex, 96.09 devillers, 95.09 agarwal, 94.09 jones" +, author = "E. Gy{\H o}ri and F. Hoffmann and K. Kriegel and T. Shermer" +, title = "Generalized Guarding and Partitioning for Rectilinear Polygons" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "302--307" +, precedes = "ghks-ggprp-96, ghks-ggprp-94t" +, cites = "a-agpiv-84, c-tsplt-91a, g-sprag-86, ghks-ggprp-93, h-ragp-90, hkk-agtph-91, kkk-tgrfw-83, o-aprag-83, o-agta-87, s-rrag-92, s-cgpul-91, s-cgopl-91, bs-tbgph-91, eow-sgrag-84, ZZZ" +, update = "98.11 bibrelex, 96.09 devillers, 95.09 agarwal, 94.09 jones" } @article{ghks-ggprp-96 -, author = "E. Gy{\H o}ri and F. Hoffmann and K. Kriegel and T. Shermer" -, title = "Generalized Guarding and Partitioning for Rectilinear Polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "21--44" -, succeeds = "ghks-ggprp-94" -, update = "96.09 devillers" +, author = "E. Gy{\H o}ri and F. Hoffmann and K. Kriegel and T. Shermer" +, title = "Generalized Guarding and Partitioning for Rectilinear Polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "21--44" +, succeeds = "ghks-ggprp-94" +, update = "96.09 devillers" } @inproceedings{hbb-chnnr-80 -, author = "H. P. A. Haas and E. Backer and I. J. Boxma" -, title = "Convex hull nearest neighbor rule" -, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." -, year = 1980 -, pages = "87--90" +, author = "H. P. A. Haas and E. Backer and I. J. Boxma" +, title = "Convex hull nearest neighbor rule" +, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." +, year = 1980 +, pages = "87--90" } @techreport{hkm-cigno-92 -, author = "M. Habib and D. Kelly and R. H. M{\"o}hring" -, title = "Comparability invariance of geometric notion of order dimension" -, type = "Technical {Report}" -, number = "320/1992" -, institution = "Technical University of Berlin" -, address = "Berlin, Germany" -, year = 1992 -, update = "94.05 franciosa" +, author = "M. Habib and D. Kelly and R. H. M{\"o}hring" +, title = "Comparability invariance of geometric notion of order dimension" +, type = "Technical {Report}" +, number = "320/1992" +, institution = "Technical University of Berlin" +, address = "Berlin, Germany" +, year = 1992 +, update = "94.05 franciosa" } @article{h-ca112-62 -, author = "R. Hacker" -, title = "Certification of algorithm 112: position of point relative to polygon" -, journal = "Commun. ACM" -, volume = 5 -, year = 1962 -, pages = 606 +, author = "R. Hacker" +, title = "Certification of algorithm 112: position of point relative to polygon" +, journal = "Commun. ACM" +, volume = 5 +, year = 1962 +, pages = 606 } @article{h-esfde-68 -, author = "H. Hadwiger" -, title = "Eine {Schnittrekursion} f{\"u}r die {Eulersche} {Charakteristik} euklidischer {Polyeder} mit {Anwendungen} innerhalb der kombinatorischen {Geometrie}" -, journal = "Elem. Math." -, volume = 23 -, year = 1968 -, pages = "121--132" -, update = "96.09 devillers" +, author = "H. Hadwiger" +, title = "Eine {Schnittrekursion} f{\"u}r die {Eulersche} {Charakteristik} euklidischer {Polyeder} mit {Anwendungen} innerhalb der kombinatorischen {Geometrie}" +, journal = "Elem. Math." +, volume = 23 +, year = 1968 +, pages = "121--132" +, update = "96.09 devillers" } @article{h-ecukg-55 -, author = "H. Hadwiger" -, title = "Eulers {Charakteristik} und kombinatorische {Geometrie}" -, journal = "J. Reine Angew. Math." -, volume = 134 -, year = 1955 -, pages = "101--110" +, author = "H. Hadwiger" +, title = "Eulers {Charakteristik} und kombinatorische {Geometrie}" +, journal = "J. Reine Angew. Math." +, volume = 134 +, year = 1955 +, pages = "101--110" } @article{h-uegt-57 -, author = "H. Hadwiger" -, title = "{\"U}ber Eibereiche mit gemeinsamer Treffgeraden" -, journal = "Portugal Math." -, volume = 6 -, year = 1957 -, pages = "23--29" -, update = "98.03 bibrelex" +, author = "H. Hadwiger" +, title = "{\"U}ber Eibereiche mit gemeinsamer Treffgeraden" +, journal = "Portugal Math." +, volume = 6 +, year = 1957 +, pages = "23--29" +, update = "98.03 bibrelex" } @book{hd-kgde-60 -, author = "H. Hadwiger and H. Debrunner" -, title = "Kombinatorische Geometrie in der Ebene" -, series = "Monograph. Enseign. Math." -, volume = 2 -, publisher = "Enseignement Mathematique" -, address = "Geneva, Switzerland" -, year = 1960 -, precedes = "hdk-cgp-64" +, author = "H. Hadwiger and H. Debrunner" +, title = "Kombinatorische Geometrie in der Ebene" +, series = "Monograph. Enseign. Math." +, volume = 2 +, publisher = "Enseignement Mathematique" +, address = "Geneva, Switzerland" +, year = 1960 +, precedes = "hdk-cgp-64" } @article{hd-uevzh-57 -, author = "H. Hadwiger and H. Debrunner" -, title = "{\"U}ber eine {Variante} zum {Helly}'schen {Satz}" -, journal = "Arch. Math." -, volume = 8 -, year = 1957 -, pages = "309--313" -, update = "97.11 bibrelex" +, author = "H. Hadwiger and H. Debrunner" +, title = "{\"U}ber eine {Variante} zum {Helly}'schen {Satz}" +, journal = "Arch. Math." +, volume = 8 +, year = 1957 +, pages = "309--313" +, update = "97.11 bibrelex" } @book{hdk-cgp-64 -, author = "H. Hadwiger and H. Debrunner and V. Klee" -, title = "Combinatorial Geometry in the Plane" -, publisher = "Holt, Rinehart \& Winston" -, address = "New York" -, year = 1964 -, succeeds = "hd-kgde-60" +, author = "H. Hadwiger and H. Debrunner and V. Klee" +, title = "Combinatorial Geometry in the Plane" +, publisher = "Holt, Rinehart \& Winston" +, address = "New York" +, year = 1964 +, succeeds = "hd-kgde-60" } @inproceedings{hr-tcpp-93 -, author = "J. Hagauer and G{\"u}nter Rote" -, title = "Three-clustering of points in the plane" -, editor = "T. Lengauer" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, nickname = "ESA '93" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "192--199" -, precedes = "hr-tcpp-97" -, update = "98.03 mitchell, 97.03 rote, 94.01 rote+smid, 93.09 rote" +, author = "J. Hagauer and G{\"u}nter Rote" +, title = "Three-clustering of points in the plane" +, editor = "T. Lengauer" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, nickname = "ESA '93" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "192--199" +, precedes = "hr-tcpp-97" +, update = "98.03 mitchell, 97.03 rote, 94.01 rote+smid, 93.09 rote" } @article{hr-tcpp-97 -, author = "J. Hagauer and G{\"u}nter Rote" -, title = "Three-clustering of points in the plane" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "87--95" -, update = "98.07 bibrelex+rote, 98.03 mitchell, 97.03 rote" -, abstract = "Given $n$ points in the plane, we partition them into - three classes such that the maximum distance between - two points in the same class is minimized. - The algorithm takes $O(n^2 \log^2 n)$ time." +, author = "J. Hagauer and G{\"u}nter Rote" +, title = "Three-clustering of points in the plane" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "87--95" +, update = "98.07 bibrelex+rote, 98.03 mitchell, 97.03 rote" +, abstract = "Given $n$ points in the plane, we partition them into + three classes such that the maximum distance between + two points in the same class is minimized. + The algorithm takes $O(n^2 \log^2 n)$ time." } @inproceedings{hov-raism-00 -, author = "Michiel Hagedoorn and Mark Overmars and Remco C. Veltkamp" -, title = "A Robust Affine Invariant Similarity Measure Based on Visibility" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "112--116" -, update = "00.03 bibrelex" +, author = "Michiel Hagedoorn and Mark Overmars and Remco C. Veltkamp" +, title = "A Robust Affine Invariant Similarity Measure Based on Visibility" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "112--116" +, update = "00.03 bibrelex" } @inproceedings{hv-gmpps-97 -, author = "M. Hagedoorn and R. Veltkamp" -, title = "A general method for partial point set matching" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "406--408" -, cites = "hks-uevsi-93, hr-mrtci-92, cghkkk-gpmem-93, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "M. Hagedoorn and R. Veltkamp" +, title = "A general method for partial point set matching" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "406--408" +, cites = "hks-uevsi-93, hr-mrtci-92, cghkkk-gpmem-93, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{hv-repma-97 -, author = "Michiel Hagedoorn and Remco C. Veltkamp" -, title = "Reliable and efficient pattern matching using an affine invariant metric" -, number = "UU-CS-1997-33" -, institution = "Utrecht University, Department of Computing Science" -, month = oct -, year = 1997 -, update = "97.11 oostrum" +, author = "Michiel Hagedoorn and Remco C. Veltkamp" +, title = "Reliable and efficient pattern matching using an affine invariant metric" +, number = "UU-CS-1997-33" +, institution = "Utrecht University, Department of Computing Science" +, month = oct +, year = 1997 +, update = "97.11 oostrum" } @inproceedings{h-gmss-88 -, author = "H. Hagen" -, title = "Geometric modeling of smooth surfaces" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "158--167" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "H. Hagen" +, title = "Geometric modeling of smooth surfaces" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "158--167" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @inproceedings{h-ofa-89 -, author = "H. Hagen" -, title = "{Offset}-{Fl{\"a}chen}-{Algorithmen}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "H. Hagen" +, title = "{Offset}-{Fl{\"a}chen}-{Algorithmen}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{h-qa-90 -, author = "Hans Hagen" -, title = "{Qualit{\"a}tsanalyse}-{Algorithmen}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 10 -, update = "00.03 bibrelex" +, author = "Hans Hagen" +, title = "{Qualit{\"a}tsanalyse}-{Algorithmen}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 10 +, update = "00.03 bibrelex" } @inproceedings{h-vsdsi-93 -, author = "Hans Hagen" -, title = "Variational Surface Design and Surface Interrogation" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "52--55" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Hans Hagen" +, title = "Variational Surface Design and Surface Interrogation" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "52--55" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @book{hmn-fsv-93 -, author = "H. Hagen and H. M{\"u}ller and G. M. Nielson" -, title = "Focus on Scientific Visualization" -, publisher = "Springer-Verlag" -, year = 1993 -, update = "98.03 bibrelex" +, author = "H. Hagen and H. M{\"u}ller and G. M. Nielson" +, title = "Focus on Scientific Visualization" +, publisher = "Springer-Verlag" +, year = 1993 +, update = "98.03 bibrelex" } @inproceedings{h-fdpa-93 -, author = "T. Hagerup" -, title = "Fast deterministic processor allocation" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "1--10" -, update = "97.11 bibrelex" +, author = "T. Hagerup" +, title = "Fast deterministic processor allocation" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "1--10" +, update = "97.11 bibrelex" } @inproceedings{hjw-epcah-90 -, author = "T. Hagerup and H. Jung and Emo Welzl" -, title = "Efficient parallel computation of arrangements of hyperplanes in $d$ dimensions" -, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "290--297" -, update = "98.03 mitchell, 97.03 gaertner+salinger" +, author = "T. Hagerup and H. Jung and Emo Welzl" +, title = "Efficient parallel computation of arrangements of hyperplanes in $d$ dimensions" +, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "290--297" +, update = "98.03 mitchell, 97.03 gaertner+salinger" } @inproceedings{hr-wmhtb-92 -, author = "T. Hagerup and R. Raman" -, title = "Waste makes haste: Tight bounds for loose, parallel sorting" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "628--637" -, update = "97.11 bibrelex" +, author = "T. Hagerup and R. Raman" +, title = "Waste makes haste: Tight bounds for loose, parallel sorting" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "628--637" +, update = "97.11 bibrelex" } @article{hr-gtcb-90 -, author = "T. Hagerup and C. R{\"u}b" -, title = "A guided tour of {Chernoff} bounds" -, journal = "Inform. Process. Lett." -, volume = 33 -, year = 1990 -, pages = "305--308" -, update = "96.09 orourke" +, author = "T. Hagerup and C. R{\"u}b" +, title = "A guided tour of {Chernoff} bounds" +, journal = "Inform. Process. Lett." +, volume = 33 +, year = 1990 +, pages = "305--308" +, update = "96.09 orourke" } @article{hr-omsep-89 -, author = "T. Hagerup and C. R{\"u}b" -, title = "Optimal Merging and Sorting on the EREW PRAM" -, journal = "Inform. Process. Lett." -, volume = 33 -, year = 1989 -, pages = "181--185" -, update = "96.09 orourke" +, author = "T. Hagerup and C. R{\"u}b" +, title = "Optimal Merging and Sorting on the EREW PRAM" +, journal = "Inform. Process. Lett." +, volume = 33 +, year = 1989 +, pages = "181--185" +, update = "96.09 orourke" } @article{h-rarb-88 -, author = "J. K. Hahn" -, title = "Realistic animation of rigid bodies" -, journal = "Comput. Graph." -, volume = 22 -, number = 4 -, year = 1988 -, pages = "299--308" -, update = "98.07 bibrelex" +, author = "J. K. Hahn" +, title = "Realistic animation of rigid bodies" +, journal = "Comput. Graph." +, volume = 22 +, number = 4 +, year = 1988 +, pages = "299--308" +, update = "98.07 bibrelex" } @article{h-sretn-91 -, author = "M. Haiman" -, title = "A simple and relatively efficient triangulation of the $n$-cube" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "287--289" +, author = "M. Haiman" +, title = "A simple and relatively efficient triangulation of the $n$-cube" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "287--289" } @incollection{h-pps-94 -, author = "Eric Haines" -, title = "Point in Polygon Strategies" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "24--46" -, keywords = "computational geometry, inclusion testing, ray-polygon intersection testing" -, update = "94.09 heckbert" -, annote = "Provides algorithms for testing if a point is inside a +, author = "Eric Haines" +, title = "Point in Polygon Strategies" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "24--46" +, keywords = "computational geometry, inclusion testing, ray-polygon intersection testing" +, update = "94.09 heckbert" +, annote = "Provides algorithms for testing if a point is inside a polygon, a task known as point inclusion testing in computational geometry. Point-in-polygon testing is a basic task when ray tracing polygonal models, so these methods are useful for 3D as well as 2D graphics. Haines surveys a @@ -72256,652 +72256,652 @@ @incollection{h-pps-94 } @inproceedings{haa-nrmwt-97 -, author = "Reinhard Hainz and Oswin Aichholzer and Franz Aurenhammer" -, title = "New Results on Minimum Weight Triangulations and the {LMT}-Skeleton" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "4--6" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Reinhard Hainz and Oswin Aichholzer and Franz Aurenhammer" +, title = "New Results on Minimum Weight Triangulations and the {LMT}-Skeleton" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "4--6" +, update = "00.03 bibrelex, 98.07 bibrelex" } @incollection{hkss-decic-87 -, author = "A. Hajnal and P. Komj{\'a}th and L. Soukup and I. Szalkai" -, title = "Decompositions of edge colored infinite complete graphs" -, booktitle = "Combinatorics" -, series = "Colloquia Mathematica Societatis J{\'a}nos Bolyai" -, volume = 52 -, year = 1987 -, pages = "277--280" -, update = "97.11 bibrelex" +, author = "A. Hajnal and P. Komj{\'a}th and L. Soukup and I. Szalkai" +, title = "Decompositions of edge colored infinite complete graphs" +, booktitle = "Combinatorics" +, series = "Colloquia Mathematica Societatis J{\'a}nos Bolyai" +, volume = 52 +, year = 1987 +, pages = "277--280" +, update = "97.11 bibrelex" } @article{h-ag-57 -, author = "G. H{\"a}jos" -, title = "{\"U}ber eine Art von Graphen" -, journal = "Intern. Math. Nachr." -, volume = 11 -, year = 1957 -, note = "Problem 65" -, update = "98.11 bibrelex" +, author = "G. H{\"a}jos" +, title = "{\"U}ber eine Art von Graphen" +, journal = "Intern. Math. Nachr." +, volume = 11 +, year = 1957 +, note = "Problem 65" +, update = "98.11 bibrelex" } @inproceedings{h-rtkpd-97 -, author = "Wolfgang Haken" -, title = "Recognizing the Trivial Knot by Planar Diagrams" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "44--45" -, update = "97.11 jones" +, author = "Wolfgang Haken" +, title = "Recognizing the Trivial Knot by Planar Diagrams" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "44--45" +, update = "97.11 jones" } @article{h-tdnei-61 -, author = "W. Haken" -, title = "{Theorie} der {Normalfl{\"a}chen}: {Ein} {Isotopiekriterium} f{\"u}r den {Kreisknoten}" -, journal = "Acta Math." -, volume = 105 -, year = 1961 -, pages = "245--375" -, update = "97.11 bibrelex" +, author = "W. Haken" +, title = "{Theorie} der {Normalfl{\"a}chen}: {Ein} {Isotopiekriterium} f{\"u}r den {Kreisknoten}" +, journal = "Acta Math." +, volume = 105 +, year = 1961 +, pages = "245--375" +, update = "97.11 bibrelex" } @inproceedings{h-prf-88 -, author = "S. l. Hakimi" -, title = "A Problem on Rectangular Floorplans" -, booktitle = "Proc. Int. Sympos. on Circuits and Systems" -, year = 1988 -, pages = "1533--1536" -, update = "98.11 bibrelex" +, author = "S. l. Hakimi" +, title = "A Problem on Rectangular Floorplans" +, booktitle = "Proc. Int. Sympos. on Circuits and Systems" +, year = 1988 +, pages = "1533--1536" +, update = "98.11 bibrelex" } @article{hls-vpnil-92 -, author = "S. Louis Hakimi and Martine Labb{\'e} and Edward Schmeichel" -, title = "The {Voronoi} Partition of a Network and Its Implications in Location Theory" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "412--417" -, update = "98.03 mitchell" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "S. Louis Hakimi and Martine Labb{\'e} and Edward Schmeichel" +, title = "The {Voronoi} Partition of a Network and Its Implications in Location Theory" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "412--417" +, update = "98.03 mitchell" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @article{hs-fpfsp-91 -, author = "S. L. Hakimi and E. F. Schmeichel" -, title = "Fitting polygonal functions to a set of points in the plane" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 53 -, number = 2 -, year = 1991 -, pages = "132--136" -, update = "96.09 devillers, 93.09 goodrich" +, author = "S. L. Hakimi and E. F. Schmeichel" +, title = "Fitting polygonal functions to a set of points in the plane" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 53 +, number = 2 +, year = 1991 +, pages = "132--136" +, update = "96.09 devillers, 93.09 goodrich" } @article{hh-opbtot-00 -, author = "Lorenz Halbelsen and Norbert Hungerb{\"u}hler" -, title = "On periodic billiard trajectories in obtuse triangles" -, journal = "SIAM Rev." -, volume = 42 -, number = 4 -, year = 2000 -, pages = "657--670" -, update = "01.04 orourke" +, author = "Lorenz Halbelsen and Norbert Hungerb{\"u}hler" +, title = "On periodic billiard trajectories in obtuse triangles" +, journal = "SIAM Rev." +, volume = 42 +, number = 4 +, year = 2000 +, pages = "657--670" +, update = "01.04 orourke" } @incollection{hr-s-83 -, author = "H. Halberstam and K. F. Roth" -, title = "Sequences" -, booktitle = "??" -, publisher = "Springer-Verlag" -, address = "NY" -, year = 1983 -, pages = 90 -, update = "98.11 bibrelex" +, author = "H. Halberstam and K. F. Roth" +, title = "Sequences" +, booktitle = "??" +, publisher = "Springer-Verlag" +, address = "NY" +, year = 1983 +, pages = 90 +, update = "98.11 bibrelex" } @inproceedings{h-fata-80 -, author = "W. K. Hale" -, title = "Frequency Assignment: Theory and Applications" -, booktitle = "Proc. IEEE" -, volume = 68 -, year = 1980 -, pages = "1497--1514" -, update = "98.07 bibrelex" +, author = "W. K. Hale" +, title = "Frequency Assignment: Theory and Applications" +, booktitle = "Proc. IEEE" +, volume = 68 +, year = 1980 +, pages = "1497--1514" +, update = "98.07 bibrelex" } @book{hs-et-55 -, author = "D. W. Hall and G. Spencer" -, title = "Elementary Topology" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1955 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "D. W. Hall and G. Spencer" +, title = "Elementary Topology" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1955 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{hw-apids-90 -, author = "M. Hall and J. Warren" -, title = "Adaptive Polygonalization of Implicitly Defined Surfaces" -, journal = "IEEE Comput. Graph. Appl." -, volume = 10 -, number = 6 -, year = 1990 -, pages = "33--40" -, annote = "3D tetrahedronization." +, author = "M. Hall and J. Warren" +, title = "Adaptive Polygonalization of Implicitly Defined Surfaces" +, journal = "IEEE Comput. Graph. Appl." +, volume = 10 +, number = 6 +, year = 1990 +, pages = "33--40" +, annote = "3D tetrahedronization." } @book{h-ct-67 -, author = "M. {Hall, Jr.}" -, title = "Combinatoial Theory" -, publisher = "John Wiley \& Sons" -, year = 1967 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "M. {Hall, Jr.}" +, title = "Combinatoial Theory" +, publisher = "John Wiley \& Sons" +, year = 1967 +, update = "99.11 bibrelex, 98.03 bibrelex" } @phdthesis{h-ampac-92 -, author = "D. Halperin" -, title = "Algorithmic Motion Planning via Arrangements of Curves and of Surfaces" -, type = "Ph.{D}. Thesis" -, school = "Computer Science Department, Tel-Aviv University" -, address = "Tel Aviv" -, month = jul -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex, 95.05 agarwal" +, author = "D. Halperin" +, title = "Algorithmic Motion Planning via Arrangements of Curves and of Surfaces" +, type = "Ph.{D}. Thesis" +, school = "Computer Science Department, Tel-Aviv University" +, address = "Tel Aviv" +, month = jul +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex, 95.05 agarwal" } @incollection{h-a-97 -, author = "D. Halperin" -, title = "Arrangements" -, chapter = 21 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "389--412" -, update = "97.11 orourke" +, author = "D. Halperin" +, title = "Arrangements" +, chapter = 21 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "389--412" +, update = "97.11 orourke" } @inproceedings{h-cscca-91 -, author = "D. Halperin" -, title = "On the complexity of a single cell in certain arrangements of surfaces in $3$-space" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "314--323" -, cites = "aa-cfi-89, ao-ampps-87, as-tsbac-90, as-cocat-91, a-pdpaa-87, c-crmp-87, cegss-cfals-91, cy-olmpm-89, egs-ccmfa-90, gs-caa-90, gss-gmppt-89, hos-empls-88, hs-icbet-90, klps-ujrcf-86, ks-empac-90, ls-esmpa-87, ps-ueplf-89, p-rmmpc-81, pss-stsps-88, ss-nempa-87, ws-prnds-88, ZZZ" -, update = "97.11 bibrelex" +, author = "D. Halperin" +, title = "On the complexity of a single cell in certain arrangements of surfaces in $3$-space" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "314--323" +, cites = "aa-cfi-89, ao-ampps-87, as-tsbac-90, as-cocat-91, a-pdpaa-87, c-crmp-87, cegss-cfals-91, cy-olmpm-89, egs-ccmfa-90, gs-caa-90, gss-gmppt-89, hos-empls-88, hs-icbet-90, klps-ujrcf-86, ks-empac-90, ls-esmpa-87, ps-ueplf-89, p-rmmpc-81, pss-stsps-88, ss-nempa-87, ws-prnds-88, ZZZ" +, update = "97.11 bibrelex" } @article{h-cscca-94 -, author = "D. Halperin" -, title = "On the complexity of a single cell in certain arrangements of surfaces related to motion planning" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "1--34" -, succeeds = "h-cscca-91" -, update = "95.01 matousek" +, author = "D. Halperin" +, title = "On the complexity of a single cell in certain arrangements of surfaces related to motion planning" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "1--34" +, succeeds = "h-cscca-91" +, update = "95.01 matousek" } @article{h-rmpsc-94 -, author = "D. Halperin" -, title = "Robot Motion Planning and the Single Cell Problem in Arrangements" -, journal = "Journal of Intelligent and Robotic Systems" -, volume = 11 -, year = 1994 -, pages = "45--65" -, update = "98.11 halperin" +, author = "D. Halperin" +, title = "Robot Motion Planning and the Single Cell Problem in Arrangements" +, journal = "Journal of Intelligent and Robotic Systems" +, volume = 11 +, year = 1994 +, pages = "45--65" +, update = "98.11 halperin" } @incollection{hkl-r-97 -, author = "D. Halperin and L. E. Kavraki and J.-C. Latombe" -, title = "Robotics" -, chapter = 41 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "755--778" -, update = "98.07 agarwal, 97.11 orourke" +, author = "D. Halperin and L. E. Kavraki and J.-C. Latombe" +, title = "Robotics" +, chapter = 41 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "755--778" +, update = "98.07 agarwal, 97.11 orourke" } @incollection{hlm-dmks-97 -, author = "D. Halperin and J.-C. Latombe and R. Motwani" -, title = "Dynamic Maintenance of Kinematic Structures" -, editor = "J. P. Laumond and M. Overmars" -, booktitle = "Robotic Motion and Manipulation" -, publisher = "A. K. Peters" -, pages = "155--170" -, note = "WAFR 2" -, update = "99.11 bibrelex, 98.11 halperin" +, author = "D. Halperin and J.-C. Latombe and R. Motwani" +, title = "Dynamic Maintenance of Kinematic Structures" +, editor = "J. P. Laumond and M. Overmars" +, booktitle = "Robotic Motion and Manipulation" +, publisher = "A. K. Peters" +, pages = "155--170" +, note = "WAFR 2" +, update = "99.11 bibrelex, 98.11 halperin" } @unpublished{hlw-gfapm-97 -, author = "D. Halperin and J.-C. Latombe and R. H. Wilson" -, title = "A general framework for assembly planning: {T}he motion space approach" -, year = 1997 -, note = "unpublished manuscript" -, update = "98.03 agarwal" +, author = "D. Halperin and J.-C. Latombe and R. H. Wilson" +, title = "A general framework for assembly planning: {T}he motion space approach" +, year = 1997 +, note = "unpublished manuscript" +, update = "98.03 agarwal" } @inproceedings{ho-empls-89 -, author = "D. Halperin and M. H. Overmars" -, title = "Efficient motion planning for an {L}-shaped object" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "156--166" -, precedes = "hos-empls-92" -, cites = "abf-pempa-89, as-tsbac-88, ao-ampps-87, c-crmp-87, gss-gmppt-88, ko-lbmlt-87a, ko-cst-88, ks-eapcf-85, ks-empac-90, ls-esmpa-87, lw-apcfp-79, m-mdscg-84, oy-rmpmd-85, o-gdscg-88, ss-nempa-87, ss-pmp1c-83, ZZZ" -, update = "98.03 bibrelex" +, author = "D. Halperin and M. H. Overmars" +, title = "Efficient motion planning for an {L}-shaped object" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "156--166" +, precedes = "hos-empls-92" +, cites = "abf-pempa-89, as-tsbac-88, ao-ampps-87, c-crmp-87, gss-gmppt-88, ko-lbmlt-87a, ko-cst-88, ks-eapcf-85, ks-empac-90, ls-esmpa-87, lw-apcfp-79, m-mdscg-84, oy-rmpmd-85, o-gdscg-88, ss-nempa-87, ss-pmp1c-83, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{ho-smhsr-94 -, author = "D. Halperin and M. H. Overmars" -, title = "Spheres, Molecules, and Hidden Surface Removal" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "113--122" -, cites = "abbkw-pdb-87, bkwmbrkst-pdbcb-77, cegs-sessr-91, cegsw-ccbac-90, c-saspn-83, b-rsdoh-93, dkmmrt-dphul-88, fp-eagcs-93, fo-fdmm-, gs-pmgsc-85, s-hb-70, kos-ehsro-92, klps-ujrcf-86, lr-ipses-71, mmpssw-ftdlm-91, m-ms-90, o-plfs-92, ps-cgi-85, s-atubl-93, sho-cfsrm-93, vb-facrs-93, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "D. Halperin and M. H. Overmars" +, title = "Spheres, Molecules, and Hidden Surface Removal" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "113--122" +, cites = "abbkw-pdb-87, bkwmbrkst-pdbcb-77, cegs-sessr-91, cegsw-ccbac-90, c-saspn-83, b-rsdoh-93, dkmmrt-dphul-88, fp-eagcs-93, fo-fdmm-, gs-pmgsc-85, s-hb-70, kos-ehsro-92, klps-ujrcf-86, lr-ipses-71, mmpssw-ftdlm-91, m-ms-90, o-plfs-92, ps-cgi-85, s-atubl-93, sho-cfsrm-93, vb-facrs-93, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @techreport{hos-empls-88 -, author = "D. Halperin and M. H. Overmars and Micha Sharir" -, title = "Efficient motion planning for an {L}-shaped object" -, type = "Technical {Report}" -, number = 418 -, institution = "Courant Institute of Mathematical Science" -, year = 1988 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "D. Halperin and M. H. Overmars and Micha Sharir" +, title = "Efficient motion planning for an {L}-shaped object" +, type = "Technical {Report}" +, number = 418 +, institution = "Courant Institute of Mathematical Science" +, year = 1988 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{hos-empls-92 -, author = "D. Halperin and M. H. Overmars and Micha Sharir" -, title = "Efficient motion planning for an {L}-shaped object" -, journal = "SIAM J. Comput." -, volume = 21 -, year = 1992 -, pages = "1--23" -, succeeds = "ho-empls-89" -, update = "98.03 mitchell" +, author = "D. Halperin and M. H. Overmars and Micha Sharir" +, title = "Efficient motion planning for an {L}-shaped object" +, journal = "SIAM J. Comput." +, volume = 21 +, year = 1992 +, pages = "1--23" +, succeeds = "ho-empls-89" +, update = "98.03 mitchell" } @article{hs-nqapm-96 -, author = "D. Halperin and Micha Sharir" -, title = "A near-quadratic algorithm for planning the motion of a polygon in a polygonal environment" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "121--134" -, succeeds = "hs-nqbmp-93t" -, update = "98.11 bibrelex, 98.03 mitchell, 97.03 smid" +, author = "D. Halperin and Micha Sharir" +, title = "A near-quadratic algorithm for planning the motion of a polygon in a polygonal environment" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "121--134" +, succeeds = "hs-nqbmp-93t" +, update = "98.11 bibrelex, 98.03 mitchell, 97.03 smid" } @inproceedings{hs-atubs-94 -, author = "D. Halperin and Micha Sharir" -, title = "Almost Tight Upper Bounds for the Single Cell and Zone Problems in Three Dimensions" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "11--20" -, precedes = "hs-atubs-95" -, cites = "ass-sulbl-89, ams-sscch-91, aps-zsha-93, as-tsbac-90, as-car-92, as-tmp3s-94, bcr-gar-87, cegss-cfals-93, cs-arscg-89, bgh-vdt3s-94, e-acg-87, egppss-acptc-92, ess-ztha-93, gss-gmppt-89, h-ampac-92, hs-nblet-93, hs-nqbmp-93, hs-ndssg-86, h-ag-77, h-dt-76, m-mnfcp-70, ps-ueplf-89, pr-ncdsp-93, ss-tddsp-90, s-ksacs-91, s-atubl-93, ZZZ" -, update = "98.03 bibrelex+mitchell, 97.11 aronov, 94.09 jones, 94.01 jones" +, author = "D. Halperin and Micha Sharir" +, title = "Almost Tight Upper Bounds for the Single Cell and Zone Problems in Three Dimensions" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "11--20" +, precedes = "hs-atubs-95" +, cites = "ass-sulbl-89, ams-sscch-91, aps-zsha-93, as-tsbac-90, as-car-92, as-tmp3s-94, bcr-gar-87, cegss-cfals-93, cs-arscg-89, bgh-vdt3s-94, e-acg-87, egppss-acptc-92, ess-ztha-93, gss-gmppt-89, h-ampac-92, hs-nblet-93, hs-nqbmp-93, hs-ndssg-86, h-ag-77, h-dt-76, m-mnfcp-70, ps-ueplf-89, pr-ncdsp-93, ss-tddsp-90, s-ksacs-91, s-atubl-93, ZZZ" +, update = "98.03 bibrelex+mitchell, 97.11 aronov, 94.09 jones, 94.01 jones" } -% also claimed, pages = "313--326" +% also claimed, pages = "313--326" @article{hs-atubs-95 -, author = "D. Halperin and Micha Sharir" -, title = "Almost Tight Upper Bounds for the Single Cell and Zone Problems in Three Dimensions" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "385--410" -, succeeds = "hs-atubs-94" -, update = "98.03 mitchell, 97.11 aronov+bibrelex" +, author = "D. Halperin and Micha Sharir" +, title = "Almost Tight Upper Bounds for the Single Cell and Zone Problems in Three Dimensions" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "385--410" +, succeeds = "hs-atubs-94" +, update = "98.03 mitchell, 97.11 aronov+bibrelex" } @incollection{hs-atarr-95 -, author = "D. Halperin and Micha Sharir" -, title = "Arrangements and their applications in robotics: Recent developments" -, editor = "K. Goldberg and D. Halperin and J.-C. Latombe and R. Wilson" -, booktitle = "Algorithmic Foundations of Robotics" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1995 -, pages = "495--511" -, update = "99.11 bibrelex, 98.07 agarwal, 98.03 agarwal+mitchell, 95.09 agarwal, 95.05 agarwal" +, author = "D. Halperin and Micha Sharir" +, title = "Arrangements and their applications in robotics: Recent developments" +, editor = "K. Goldberg and D. Halperin and J.-C. Latombe and R. Wilson" +, booktitle = "Algorithmic Foundations of Robotics" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1995 +, pages = "495--511" +, update = "99.11 bibrelex, 98.07 agarwal, 98.03 agarwal+mitchell, 95.09 agarwal, 95.05 agarwal" } @article{hs-cdcca-94 -, author = "D. Halperin and Micha Sharir" -, title = "Corrigendum: On disjoint concave chains in arrangements of (pseudo) lines" -, journal = "Inform. Process. Lett." -, volume = 51 -, year = 1994 -, pages = "53--56" -, keywords = "polygonal chains, tight bounds, combinatorial complexity, line arrangements" -, succeeds = "hs-dccap-91" -, update = "98.11 aronov, 98.03 mitchell, 97.07 aronov" +, author = "D. Halperin and Micha Sharir" +, title = "Corrigendum: On disjoint concave chains in arrangements of (pseudo) lines" +, journal = "Inform. Process. Lett." +, volume = 51 +, year = 1994 +, pages = "53--56" +, keywords = "polygonal chains, tight bounds, combinatorial complexity, line arrangements" +, succeeds = "hs-dccap-91" +, update = "98.11 aronov, 98.03 mitchell, 97.07 aronov" } @techreport{hs-icbet-90t -, author = "D. Halperin and M. Sharir" -, title = "Improved combinatorial bounds and efficient techniques for certain motion planning problems with three degrees of freedom" -, type = "Technical {Report}" -, number = "176/90" -, institution = "Eskenasy Inst. Comput. Sci., Tel-Aviv Univ." -, address = "Tel-Aviv, Israel" -, year = 1990 -, update = "98.07 bibrelex" +, author = "D. Halperin and M. Sharir" +, title = "Improved combinatorial bounds and efficient techniques for certain motion planning problems with three degrees of freedom" +, type = "Technical {Report}" +, number = "176/90" +, institution = "Eskenasy Inst. Comput. Sci., Tel-Aviv Univ." +, address = "Tel-Aviv, Israel" +, year = 1990 +, update = "98.07 bibrelex" } @inproceedings{hs-icbet-90 -, author = "D. Halperin and M. Sharir" -, title = "Improved combinatorial bounds and efficient techniques for certain motion planning problems with three degrees of freedom" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "98--101" -, precedes = "hs-icbet-92" -, cites = "ao-ampps-87, as-tsbac-90, cegsw-ccbac-90, hos-empls-88, hs-icbet-90t, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "D. Halperin and M. Sharir" +, title = "Improved combinatorial bounds and efficient techniques for certain motion planning problems with three degrees of freedom" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "98--101" +, precedes = "hs-icbet-92" +, cites = "ao-ampps-87, as-tsbac-90, cegsw-ccbac-90, hos-empls-88, hs-icbet-90t, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @article{hs-icbet-92 -, author = "D. Halperin and Micha Sharir" -, title = "Improved combinatorial bounds and efficient techniques for certain motion planning problems with three degrees of freedom" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 5 -, year = 1992 -, pages = "269--303" -, keywords = "robotics, motion planning, arrangements, configuration space" -, succeeds = "hs-icbet-90" -, update = "98.03 mitchell" +, author = "D. Halperin and Micha Sharir" +, title = "Improved combinatorial bounds and efficient techniques for certain motion planning problems with three degrees of freedom" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 5 +, year = 1992 +, pages = "269--303" +, keywords = "robotics, motion planning, arrangements, configuration space" +, succeeds = "hs-icbet-90" +, update = "98.03 mitchell" } @techreport{hs-nqbmp-93t -, author = "D. Halperin and Micha Sharir" -, title = "Near-Quadratic Bounds for the Motion Planning Problem for a Polygon in a Polygonal Environment" -, type = "manuscript" -, year = 1993 -, precedes = "hs-nqbmp-93, hs-nqapm-96" -, update = "98.11 bibrelex" +, author = "D. Halperin and Micha Sharir" +, title = "Near-Quadratic Bounds for the Motion Planning Problem for a Polygon in a Polygonal Environment" +, type = "manuscript" +, year = 1993 +, precedes = "hs-nqbmp-93, hs-nqapm-96" +, update = "98.11 bibrelex" } @inproceedings{hs-nqbmp-93 -, author = "D. Halperin and Micha Sharir" -, title = "Near-Quadratic Bounds for the Motion Planning Problem for a Polygon in a Polygonal Environment" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "382--391" -, succeeds = "hs-nqbmp-93t" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 96.09 orourke, 94.01 smid, 93.09 milone+mitchell" +, author = "D. Halperin and Micha Sharir" +, title = "Near-Quadratic Bounds for the Motion Planning Problem for a Polygon in a Polygonal Environment" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "382--391" +, succeeds = "hs-nqbmp-93t" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 96.09 orourke, 94.01 smid, 93.09 milone+mitchell" } @inproceedings{hs-nblet-93 -, author = "D. Halperin and Micha Sharir" -, title = "New bounds for lower envelopes in three dimensions, with applications to visibility in terrains" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "11--18" -, cites = "ass-sulbl-89, bhok-sanvp-92, cegs-sessr-89, cegs-lscaa-89, cegsw-ccbac-90, cs-arscg-89, cs-vppt-89, h-ampac-92, hs-nqbmp-93, hs-ndssg-86, ps-ueplf-89, p-lmps3-93, ss-tddsp-90, s-ksacs-91, s-atubl-93, sa-dsstg-95, ZZZ" -, update = "98.03 bibrelex+mitchell, 93.09 devillers" +, author = "D. Halperin and Micha Sharir" +, title = "New bounds for lower envelopes in three dimensions, with applications to visibility in terrains" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "11--18" +, cites = "ass-sulbl-89, bhok-sanvp-92, cegs-sessr-89, cegs-lscaa-89, cegsw-ccbac-90, cs-arscg-89, cs-vppt-89, h-ampac-92, hs-nqbmp-93, hs-ndssg-86, ps-ueplf-89, p-lmps3-93, ss-tddsp-90, s-ksacs-91, s-atubl-93, sa-dsstg-95, ZZZ" +, update = "98.03 bibrelex+mitchell, 93.09 devillers" } %, number = 3 @article{hs-nblet-94 -, author = "D. Halperin and Micha Sharir" -, title = "New bounds for lower envelopes in three dimensions, with applications to visibility in terrains" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "313--326" -, succeeds = "hs-nblet-93" -, update = "98.03 mitchell, 95.01 orourke+smid" +, author = "D. Halperin and Micha Sharir" +, title = "New bounds for lower envelopes in three dimensions, with applications to visibility in terrains" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "313--326" +, succeeds = "hs-nblet-93" +, update = "98.03 mitchell, 95.01 orourke+smid" } @article{hs-dccap-91 -, author = "D. Halperin and Micha Sharir" -, title = "On disjoint concave chains in arrangements of (pseudo) lines" -, journal = "Inform. Process. Lett." -, volume = 40 -, number = 4 -, year = 1991 -, pages = "189--192" -, keywords = "polygonal chains, tight bounds, combinatorial complexity, line arrangements" -, precedes = "hs-cdcca-94" -, update = "98.03 mitchell, 97.07 aronov" +, author = "D. Halperin and Micha Sharir" +, title = "On disjoint concave chains in arrangements of (pseudo) lines" +, journal = "Inform. Process. Lett." +, volume = 40 +, number = 4 +, year = 1991 +, pages = "189--192" +, keywords = "polygonal chains, tight bounds, combinatorial complexity, line arrangements" +, precedes = "hs-cdcca-94" +, update = "98.03 mitchell, 97.07 aronov" } @unpublished{hs-cscas -, author = "D. Halperin and M. Sharir" -, title = "On the complexity of a single cell in an arrangement of surfaces in 3 dimensions" -, note = "in preparation" -, update = "98.11 bibrelex" +, author = "D. Halperin and M. Sharir" +, title = "On the complexity of a single cell in an arrangement of surfaces in 3 dimensions" +, note = "in preparation" +, update = "98.11 bibrelex" } @inproceedings{hsg-tcpo-00 -, author = "Dan Halperin and Micha Sharir and Ken Goldberg" -, title = "The 2-Center problem with obstacles" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "80--90" -, update = "00.11 smid, 00.07 agarwal" +, author = "Dan Halperin and Micha Sharir and Ken Goldberg" +, title = "The 2-Center problem with obstacles" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "80--90" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{hs-pssaa-97 -, author = "D. Halperin and C. Shelton" -, title = "A perturbation scheme for spherical arrangements with application to molecular modeling" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "183--192" -, cites = "bmb-pmmca-94, c-amsc-83, c-msr-96, e-acg-87, em-sstcd-90, fhklmsv-gmfl-96, fklmsvy-rrpid-97, f-riga-96i, fv-sayee-96, g-imap-95, gy-frcg-86, gs-pmgsc-85, ho-smhsr-94, h-gsm-89, h-pargc-89, m-ms-90, m-vigau-88a, ps-cgi-85, sos-frcms-95, s-rafpg-96, s-fprgo-89, si-tdpga-89, vbw-csms-94, yd-ecp-95, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "D. Halperin and C. Shelton" +, title = "A perturbation scheme for spherical arrangements with application to molecular modeling" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "183--192" +, cites = "bmb-pmmca-94, c-amsc-83, c-msr-96, e-acg-87, em-sstcd-90, fhklmsv-gmfl-96, fklmsvy-rrpid-97, f-riga-96i, fv-sayee-96, g-imap-95, gy-frcg-86, gs-pmgsc-85, ho-smhsr-94, h-gsm-89, h-pargc-89, m-ms-90, m-vigau-88a, ps-cgi-85, sos-frcms-95, s-rafpg-96, s-fprgo-89, si-tdpga-89, vbw-csms-94, yd-ecp-95, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{hs-pssaa-98 -, author = "Dan Halperin and Christian R. Shelton" -, title = "A perturbation scheme for spherical arrangements with application to molecular modeling" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "273--287" -, succeeds = "hs-pssaa-97" -, update = "98.11 devillers" +, author = "Dan Halperin and Christian R. Shelton" +, title = "A perturbation scheme for spherical arrangements with application to molecular modeling" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "273--287" +, succeeds = "hs-pssaa-97" +, update = "98.11 devillers" } @inproceedings{hw-apasp-95 -, author = "D. Halperin and R. H. Wilson" -, title = "Assembly partitioning along simple paths: the case of multiple translations" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1995 -, pages = "1585--1592" -, keywords = "robotics, assembly planning, separability, arrangements" -, update = "95.09 halperin" +, author = "D. Halperin and R. H. Wilson" +, title = "Assembly partitioning along simple paths: the case of multiple translations" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1995 +, pages = "1585--1592" +, keywords = "robotics, assembly planning, separability, arrangements" +, update = "95.09 halperin" } @article{hw-apasp-97 -, author = "D. Halperin and R. H. Wilson" -, title = "Assembly Partitioning along Simple Paths: the Case of Multiple Translations" -, journal = "Advanced Robotics" -, volume = 11 -, year = 1997 -, pages = "127--145" -, update = "98.11 halperin" +, author = "D. Halperin and R. H. Wilson" +, title = "Assembly Partitioning along Simple Paths: the Case of Multiple Translations" +, journal = "Advanced Robotics" +, volume = 11 +, year = 1997 +, pages = "127--145" +, update = "98.11 halperin" } @inproceedings{hy-cctbp-93 -, author = "D. Halperin and C.-K. Yap" -, title = "Combinatorial complexity of translating a box in polyhedral $3$-space" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "29--37" -, cites = "as-car-92, ck-hcmpc-90, gss-gmppt-89, h-ampac-92, hs-ndssg-86, ko-amltd-87, klps-ujrcf-86, ks-empac-90, l-rmp-91, ls-ncfcc-87, ls-pptmc-87, s-eappt-87, s-ampr-89, y-amp-87, ZZZ" -, update = "98.03 bibrelex, 93.09 devillers" +, author = "D. Halperin and C.-K. Yap" +, title = "Combinatorial complexity of translating a box in polyhedral $3$-space" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "29--37" +, cites = "as-car-92, ck-hcmpc-90, gss-gmppt-89, h-ampac-92, hs-ndssg-86, ko-amltd-87, klps-ujrcf-86, ks-empac-90, l-rmp-91, ls-ncfcc-87, ls-pptmc-87, s-eappt-87, s-ampr-89, y-amp-87, ZZZ" +, update = "98.03 bibrelex, 93.09 devillers" } @article{hy-cctbp-98 -, author = "D. Halperin and C.-K. Yap" -, title = "Combinatorial complexity of translating a box in polyhedral $3$-space" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, year = 1998 -, pages = "181--196" -, update = "98.03 smid" +, author = "D. Halperin and C.-K. Yap" +, title = "Combinatorial complexity of translating a box in polyhedral $3$-space" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, year = 1998 +, pages = "181--196" +, update = "98.03 smid" } @inproceedings{hz-orltc-94 -, author = "S. Halperin and U. Zwick" -, title = "An optimal randomized logarithmic time connectivity algorithm for the EREW PRAM" -, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." -, year = 1994 -, pages = "1--10" -, update = "96.09 orourke" +, author = "S. Halperin and U. Zwick" +, title = "An optimal randomized logarithmic time connectivity algorithm for the EREW PRAM" +, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." +, year = 1994 +, pages = "1--10" +, update = "96.09 orourke" } @article{h-ecqsp-60 -, author = "J. H. Halton" -, title = "On the efficiency of certain quasirandom sequences of points in evaluating multidimensional integrals" -, journal = "Numer. Math." -, volume = 2 -, year = 1960 -, pages = "84--90" -, update = "98.03 bibrelex" +, author = "J. H. Halton" +, title = "On the efficiency of certain quasirandom sequences of points in evaluating multidimensional integrals" +, journal = "Numer. Math." +, volume = 2 +, year = 1960 +, pages = "84--90" +, update = "98.03 bibrelex" } @article{ht-faets-82 -, author = "J. H. Halton and R. Terada" -, title = "A fast algorithm for the {Euclidean} traveling salesman problem, optimal with probability one" -, journal = "SIAM J. Comput." -, volume = 11 -, year = 1982 -, pages = "28--46" +, author = "J. H. Halton and R. Terada" +, title = "A fast algorithm for the {Euclidean} traveling salesman problem, optimal with probability one" +, journal = "SIAM J. Comput." +, volume = 11 +, year = 1982 +, pages = "28--46" } @techreport{ht-asoae-78 -, author = "J. H. Halton and R. Terada" -, title = "An almost surely optimal algorithm for the {Euclidean} traveling salesman problem" -, type = "Report" -, number = 335 -, institution = "Dept. Comput. Sci., Univ. Wisconsin" -, address = "Madison, WI" -, year = 1978 +, author = "J. H. Halton and R. Terada" +, title = "An almost surely optimal algorithm for the {Euclidean} traveling salesman problem" +, type = "Report" +, number = 335 +, institution = "Dept. Comput. Sci., Univ. Wisconsin" +, address = "Madison, WI" +, year = 1978 } @inproceedings{h-gmla-97 -, author = "Horst W. Hamacher" -, title = "Geometric Methods in Location Analysis" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 16 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Horst W. Hamacher" +, title = "Geometric Methods in Location Analysis" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 16 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @book{h-mlps-95 -, author = "Horst W. Hamacher" -, title = "{Mathematische} {L{\"o}sungsverfahren} f{\"u}r planare {Standortprobleme}" -, publisher = "Verlag Vieweg" -, address = "Wiesbaden" -, year = 1995 -, update = "97.03 icking" +, author = "Horst W. Hamacher" +, title = "{Mathematische} {L{\"o}sungsverfahren} f{\"u}r planare {Standortprobleme}" +, publisher = "Verlag Vieweg" +, address = "Wiesbaden" +, year = 1995 +, update = "97.03 icking" } @article{h-drsts-94 -, author = "B. Hamann" -, title = "A Data Reduction Scheme for Triangulated Surfaces" -, journal = "Comput. Aided Geom. Design" -, volume = 11 -, year = 1994 -, pages = "197--214" -, update = "95.01 mitchell" +, author = "B. Hamann" +, title = "A Data Reduction Scheme for Triangulated Surfaces" +, journal = "Comput. Aided Geom. Design" +, volume = 11 +, year = 1994 +, pages = "197--214" +, update = "95.01 mitchell" } @inproceedings{hd-dmkwc-92 -, author = "S. Hambrusch and F. Dehne" -, title = "Determining maximum $k$-width connectivity on meshes" -, booktitle = "Proc. IEEE Internat. Parallel Process. Sympos." -, year = 1992 -, pages = "" -, update = "94.01 dehne" +, author = "S. Hambrusch and F. Dehne" +, title = "Determining maximum $k$-width connectivity on meshes" +, booktitle = "Proc. IEEE Internat. Parallel Process. Sympos." +, year = 1992 +, pages = "" +, update = "94.01 dehne" } @article{hd-dmkwc-94 -, author = "S. Hambrusch and F. Dehne" -, title = "Determining maximum $k$-width-connectivity on meshes" -, journal = "Comput. Geom. Theory Appl." -, volume = "??" -, year = 1993 -, pages = "91--105" -, update = "96.09 devillers, 94.01 dehne" +, author = "S. Hambrusch and F. Dehne" +, title = "Determining maximum $k$-width-connectivity on meshes" +, journal = "Comput. Geom. Theory Appl." +, volume = "??" +, year = 1993 +, pages = "91--105" +, update = "96.09 devillers, 94.01 dehne" } @article{ht-f1dcf-92 -, author = "S. Hambrusch and H.-Y. Tu" -, title = "A framework for 1-{D} compaction with forbidden region avoidance" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 4 -, year = 1992 -, pages = "203--226" -, keywords = "analysis of algorithms, compaction, forbidden regions, visibility graphs, VLSI layouts" +, author = "S. Hambrusch and H.-Y. Tu" +, title = "A framework for 1-{D} compaction with forbidden region avoidance" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 4 +, year = 1992 +, pages = "203--226" +, keywords = "analysis of algorithms, compaction, forbidden regions, visibility graphs, VLSI layouts" } @inproceedings{ht-namlw-93 -, author = "Susanne E. Hambrusch and Hung-Yi Tony Tu" -, title = "New Algorithms for Minimizing the Longest Wire Length during Circuit Compaction" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "446--455" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Susanne E. Hambrusch and Hung-Yi Tony Tu" +, title = "New Algorithms for Minimizing the Longest Wire Length during Circuit Compaction" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "446--455" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @book{h-eq-69 -, author = "W. R. Hamilton" -, title = "Elements of Quaternions" -, publisher = "Chelsea Publishing Cl." -, address = "N. Y." -, year = 1969 -, update = "98.11 bibrelex" +, author = "W. R. Hamilton" +, title = "Elements of Quaternions" +, publisher = "Chelsea Publishing Cl." +, address = "N. Y." +, year = 1969 +, update = "98.11 bibrelex" } @article{hg-rshsa-77 -, author = "G. Hamlin and C. W. Gear" -, title = "Raster-scan hidden surface algorithm techniques" -, journal = "Comput. Graph." -, volume = 11 -, number = 2 -, year = 1977 -, pages = "206--213" -, note = "Proc. SIGGRAPH '77" +, author = "G. Hamlin and C. W. Gear" +, title = "Raster-scan hidden surface algorithm techniques" +, journal = "Comput. Graph." +, volume = 11 +, number = 2 +, year = 1977 +, pages = "206--213" +, note = "Proc. SIGGRAPH '77" } @inproceedings{hn-ctbes-97 -, author = "M. Hammar and Bengt J. Nilsson" -, title = "Concerning the Time Bounds of Existing Shortest Watchman Route Algorithms" -, booktitle = "Proc. 11th International Symposium on Fundamentals of Computation Theory" -, nickname = "FCT '97" -, site = "Krakow, Poland" -, series = "Lecture Notes Comput. Sci." -, volume = 1279 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "210--221" -, comments = "LU-CS-TR:97-186, LUNDFD6/(NFCS-3119)/1-18/1997" -, update = "02.03 icking, 00.11 smid, 00.07 icking, 99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" -, annote = " +, author = "M. Hammar and Bengt J. Nilsson" +, title = "Concerning the Time Bounds of Existing Shortest Watchman Route Algorithms" +, booktitle = "Proc. 11th International Symposium on Fundamentals of Computation Theory" +, nickname = "FCT '97" +, site = "Krakow, Poland" +, series = "Lecture Notes Comput. Sci." +, volume = 1279 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "210--221" +, comments = "LU-CS-TR:97-186, LUNDFD6/(NFCS-3119)/1-18/1997" +, update = "02.03 icking, 00.11 smid, 00.07 icking, 99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, annote = " An error was discovered in the earlier papers on watchman routes: It turns out that the ``adjustment'' algorithm that modifies a route in order to achieve the reflection property at essential cuts may in fact @@ -72910,5851 +72910,5851 @@ @inproceedings{hn-ctbes-97 } @inproceedings{hns-psmr-99 -, author = "Mikael Hammar and Bengt J. Nilsson and Sven Schuierer" -, title = "Parallel Searching on $m$ Rays" -, booktitle = "Proc. 16th Sympos. Theoret. Aspects Comput. Sci." -, nickname = "STACS '99" -, site = "Trier" -, series = "Lecture Notes Comput. Sci." -, volume = 1563 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "132--142" -, succeeds = "ikl-ocsws-98" -, update = "99.07 bibrelex" +, author = "Mikael Hammar and Bengt J. Nilsson and Sven Schuierer" +, title = "Parallel Searching on $m$ Rays" +, booktitle = "Proc. 16th Sympos. Theoret. Aspects Comput. Sci." +, nickname = "STACS '99" +, site = "Trier" +, series = "Lecture Notes Comput. Sci." +, volume = 1563 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "132--142" +, succeeds = "ikl-ocsws-98" +, update = "99.07 bibrelex" } @article{hns-psmr-01 -, author = "M. Hammar and B. J. Nilsson and S. Schuierer" -, title = "Parallel Searching on $m$ Rays" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "125--139" -, update = "01.07 smid" +, author = "M. Hammar and B. J. Nilsson and S. Schuierer" +, title = "Parallel Searching on $m$ Rays" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "125--139" +, update = "01.07 smid" } @article{h-etdf-63 -, author = "P. C. Hammer" -, title = "Extended Topology: Domain Finiteness" -, journal = "Indagationes Mathematicae" -, volume = 25 -, year = 1963 -, pages = "200--212" -, update = "98.07 bibrelex" +, author = "P. C. Hammer" +, title = "Extended Topology: Domain Finiteness" +, journal = "Indagationes Mathematicae" +, volume = 25 +, year = 1963 +, pages = "200--212" +, update = "98.07 bibrelex" } @inproceedings{h-p2-63 -, author = "P. C. Hammer" -, title = "Problem 2" -, booktitle = "Proc. Sympos. Pure Math. vol VII" -, organization = "Amer. Math. Soc." -, year = 1963 -, pages = "498--499" -, update = "98.11 bibrelex" +, author = "P. C. Hammer" +, title = "Problem 2" +, booktitle = "Proc. Sympos. Pure Math. vol VII" +, organization = "Amer. Math. Soc." +, year = 1963 +, pages = "498--499" +, update = "98.11 bibrelex" } @book{hhkr-ctvc-95 -, author = "R. Hammer and M. Hocks and U. Kulisch and D. Ratz" -, title = "C++ Toolbox for Verified Computing" -, publisher = "Springer" -, year = 1995 -, update = "00.03 devillers" +, author = "R. Hammer and M. Hocks and U. Kulisch and D. Ratz" +, title = "C++ Toolbox for Verified Computing" +, publisher = "Springer" +, year = 1995 +, update = "00.03 devillers" } @techreport{hs-sugpm-90 -, author = "S. Hammond and R. Schreiber" -, title = "Solving unstructured grid problems on massively parallel computers" -, type = "Technical {Report}" -, number = "90.22" -, institution = "Research Institute for Advanced Computer Science" -, year = 1990 -, update = "98.03 bibrelex" +, author = "S. Hammond and R. Schreiber" +, title = "Solving unstructured grid problems on massively parallel computers" +, type = "Technical {Report}" +, number = "90.22" +, institution = "Research Institute for Advanced Computer Science" +, year = 1990 +, update = "98.03 bibrelex" } @book{hrrs-rsabi-86 -, author = "F. R. Hampel and E. M. Ronchetti and P. J. Rousseeuw and W. A. Stahel" -, title = "Robust Statistics: The Approach Based on Influence Functions" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1986 -, update = "98.11 bibrelex" +, author = "F. R. Hampel and E. M. Ronchetti and P. J. Rousseeuw and W. A. Stahel" +, title = "Robust Statistics: The Approach Based on Influence Functions" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1986 +, update = "98.11 bibrelex" } @inproceedings{hm-iorac-96 -, author = "Kyung-Ah Han and Sung-Hyun Myaeng" -, title = "Image Organization and Retrieval with Automatically Constructed Feature Vectors" -, editor = "Hans-Peter Frei and Donna Harman and Peter Sch{\"a}uble and Ross Wilkinson" -, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" -, publisher = "ACM Press" -, address = "New York" -, month = aug -, year = 1996 -, pages = "157--165" -, update = "98.07 agarwal" +, author = "Kyung-Ah Han and Sung-Hyun Myaeng" +, title = "Image Organization and Retrieval with Automatically Constructed Feature Vectors" +, editor = "Hans-Peter Frei and Donna Harman and Peter Sch{\"a}uble and Ross Wilkinson" +, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" +, publisher = "ACM Press" +, address = "New York" +, month = aug +, year = 1996 +, pages = "157--165" +, update = "98.07 agarwal" } @book{hk-mic-94 -, author = "T. Han and K. Kobayashi" -, title = "Mathematical Information and Code" -, publisher = "Iwanami Publisher" -, address = "Japan" -, year = 1994 -, note = "In Japanese" -, update = "98.07 bibrelex" +, author = "T. Han and K. Kobayashi" +, title = "Mathematical Information and Code" +, publisher = "Iwanami Publisher" +, address = "Japan" +, year = 1994 +, note = "In Japanese" +, update = "98.07 bibrelex" } @article{h-sprd-66 -, author = "M. Hanan" -, title = "On {Steiner's} problem with rectilinear distance" -, journal = "SIAM J. Appl. Math." -, volume = 14 -, year = 1966 -, pages = "255--265" -, update = "97.11 bibrelex" +, author = "M. Hanan" +, title = "On {Steiner's} problem with rectilinear distance" +, journal = "SIAM J. Appl. Math." +, volume = 14 +, year = 1966 +, pages = "255--265" +, update = "97.11 bibrelex" } @book{h-ei-17 -, author = "H. Hancock" -, title = "Elliptic Integrals" -, publisher = "Dover Publications" -, address = "New York, NY" -, year = 1917 -, update = "98.03 bibrelex" +, author = "H. Hancock" +, title = "Elliptic Integrals" +, publisher = "Dover Publications" +, address = "New York, NY" +, year = 1917 +, update = "98.03 bibrelex" } @inproceedings{h-ldtud-93 -, author = "Thomas R. Hancock" -, title = "Learning Decision Trees on the Uniform Distribution" -, booktitle = "Proc. 6th ACM Conf. Comput. Learning Theory" -, nickname = "COLT '93" -, month = jul -, year = 1993 -, pages = "??" -, update = "98.07 bibrelex, 93.09 milone+mitchell" +, author = "Thomas R. Hancock" +, title = "Learning Decision Trees on the Uniform Distribution" +, booktitle = "Proc. 6th ACM Conf. Comput. Learning Theory" +, nickname = "COLT '93" +, month = jul +, year = 1993 +, pages = "??" +, update = "98.07 bibrelex, 93.09 milone+mitchell" } @book{hm-lnta-79 -, author = "G. Y. Handler and P. B. Mirchandani" -, title = "Location of networks: {Theory} and algorithms" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1979 -, update = "98.03 bibrelex" +, author = "G. Y. Handler and P. B. Mirchandani" +, title = "Location of networks: {Theory} and algorithms" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1979 +, update = "98.03 bibrelex" } @article{h-epcha-85 -, author = "C. C. Handley" -, title = "Efficient planar convex hull algorithm" -, journal = "Image Vision Comput." -, volume = 3 -, year = 1985 -, pages = "29--35" +, author = "C. C. Handley" +, title = "Efficient planar convex hull algorithm" +, journal = "Image Vision Comput." +, volume = 3 +, year = 1985 +, pages = "29--35" } @inproceedings{hos-efdt-96 -, author = "Sabine Hanke and Thomas Ottmann and Sven Schuierer" -, title = "The Edge-Flipping Distance of Triangulations" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "15--18" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Sabine Hanke and Thomas Ottmann and Sven Schuierer" +, title = "The Edge-Flipping Distance of Triangulations" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "15--18" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{h-hgc-84 -, author = "P. Hanrahan" -, title = "A homogeneous geometry calculator" -, type = "Technical {Memo}" -, number = "3{D}-7" -, institution = "Comput. Graph. Lab., New York Inst. Tech." -, address = "New York, NY" -, year = 1984 +, author = "P. Hanrahan" +, title = "A homogeneous geometry calculator" +, type = "Technical {Memo}" +, number = "3{D}-7" +, institution = "Comput. Graph. Lab., New York Inst. Tech." +, address = "New York, NY" +, year = 1984 } @incollection{h-srsia-89 -, author = "P. Hanrahan" -, title = "A survey of ray-surface intersection algorithms" -, editor = "A. Glassner" -, booktitle = "An introduction to ray tracing" -, publisher = "Academic Press" -, year = 1989 -, update = "98.11 bibrelex" +, author = "P. Hanrahan" +, title = "A survey of ray-surface intersection algorithms" +, editor = "A. Glassner" +, booktitle = "An introduction to ray tracing" +, publisher = "Academic Press" +, year = 1989 +, update = "98.11 bibrelex" } @article{h-cvmev-82 -, author = "P. Hanrahan" -, title = "Creating volume models from edge-vertex graphs" -, journal = "Comput. Graph." -, volume = 16 -, number = 3 -, year = 1982 -, pages = "77--84" -, note = "Proc. SIGGRAPH '82" -, update = "98.07 bibrelex" +, author = "P. Hanrahan" +, title = "Creating volume models from edge-vertex graphs" +, journal = "Comput. Graph." +, volume = 16 +, number = 3 +, year = 1982 +, pages = "77--84" +, note = "Proc. SIGGRAPH '82" +, update = "98.07 bibrelex" } @phdthesis{h-tsm-85 -, author = "P. Hanrahan" -, title = "Topological Shape Models" -, school = "University of Wisconsin" -, address = "Madison, WI" -, year = 1985 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "P. Hanrahan" +, title = "Topological Shape Models" +, school = "University of Wisconsin" +, address = "Madison, WI" +, year = 1985 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @article{hsa-rhra-91 -, author = "P. Hanrahan and D. Salzman and L. Aupperle" -, title = "A rapid hierarchical radiosity algorithm" -, journal = "Comput. Graph." -, volume = 25 -, number = 4 -, year = 1991 -, pages = "197--206" -, note = "Proc. SIGGRAPH '91" -, update = "98.03 bibrelex" +, author = "P. Hanrahan and D. Salzman and L. Aupperle" +, title = "A rapid hierarchical radiosity algorithm" +, journal = "Comput. Graph." +, volume = 25 +, number = 4 +, year = 1991 +, pages = "197--206" +, note = "Proc. SIGGRAPH '91" +, update = "98.03 bibrelex" } @article{ha-agntp-92 -, author = "A. Hansen and F. Arbab" -, title = "An Algorithm for Generating {NC} Tool Paths for Arbitrarily Shaped Pockets with Islands" -, journal = "ACM Trans. Graph." -, volume = 11 -, number = 2 -, month = apr -, year = 1992 -, pages = "152--182" -, update = "93.09 held" +, author = "A. Hansen and F. Arbab" +, title = "An Algorithm for Generating {NC} Tool Paths for Arbitrarily Shaped Pockets with Islands" +, journal = "ACM Trans. Graph." +, volume = 11 +, number = 2 +, month = apr +, year = 1992 +, pages = "152--182" +, update = "93.09 held" } @phdthesis{h-tppga-89 -, author = "A. B. Hansen" -, title = "Tool Positioning and Path Generation Algorithms for Computer-Aided Manufacturing" -, school = "CS Dept., U. of Southern California, Los Angeles, CA 90089, USA" -, year = 1989 -, keywords = "doctoral thesis" -, update = "93.09 held" +, author = "A. B. Hansen" +, title = "Tool Positioning and Path Generation Algorithms for Computer-Aided Manufacturing" +, school = "CS Dept., U. of Southern California, Los Angeles, CA 90089, USA" +, year = 1989 +, keywords = "doctoral thesis" +, update = "93.09 held" } @techreport{ha-agntp-89 -, author = "A. B. Hansen and F. Arbab" -, title = "An Algorithm for Generating {NC} Tool Paths for Arbitrarily Shaped Pockets with Islands" -, number = "CS 88-51" -, institution = "CS Dept., U. of Southern California, Los Angeles, CA 90089, USA" -, year = 1989 -, update = "93.09 held" +, author = "A. B. Hansen and F. Arbab" +, title = "An Algorithm for Generating {NC} Tool Paths for Arbitrarily Shaped Pockets with Islands" +, number = "CS 88-51" +, institution = "CS Dept., U. of Southern California, Los Angeles, CA 90089, USA" +, year = 1989 +, update = "93.09 held" } @article{hl-cdmg-92 -, author = "A. J. Hansen and P. L. Levin" -, title = "On Conforming {Delaunay} Mesh Generation" -, journal = "Adv. Eng. Softw." -, volume = 14 -, number = 2 -, year = 1992 -, pages = "129--135" -, update = "94.09 lambert, 93.09 held" +, author = "A. J. Hansen and P. L. Levin" +, title = "On Conforming {Delaunay} Mesh Generation" +, journal = "Adv. Eng. Softw." +, volume = 14 +, number = 2 +, year = 1992 +, pages = "129--135" +, update = "94.09 lambert, 93.09 held" } @inproceedings{h-aagep-89 -, author = "M. D. Hansen" -, title = "Approximation algorithms for geometric embeddings in the plane with applications to parallel processing problems" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "604--609" +, author = "M. D. Hansen" +, title = "Approximation algorithms for geometric embeddings in the plane with applications to parallel processing problems" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "604--609" } @incollection{h-bpp-80 -, author = "P. Hansen" -, title = "Bicriteria Path Problems" -, booktitle = "Multiple Criteria Decision Making: Theory and Applications" -, series = "Lecture Notes in Economics and Mathematical Systems" -, volume = 177 -, publisher = "Springer" -, address = "Heidelberg" -, year = 1980 -, pages = "109--127" -, update = "98.07 bibrelex" +, author = "P. Hansen" +, title = "Bicriteria Path Problems" +, booktitle = "Multiple Criteria Decision Making: Theory and Applications" +, series = "Lecture Notes in Economics and Mathematical Systems" +, volume = 177 +, publisher = "Springer" +, address = "Heidelberg" +, year = 1980 +, pages = "109--127" +, update = "98.07 bibrelex" } @techreport{hj-mssc-88 -, author = "P. Hansen and B. Jaumard" -, title = "Maximum sum of splits clustering" -, type = "Technical {Report}" -, institution = "RUTCOR, Ruters University" -, address = "New Brunswick, New Jersey" -, month = mar -, year = 1988 -, update = "93.09 milone+mitchell" +, author = "P. Hansen and B. Jaumard" +, title = "Maximum sum of splits clustering" +, type = "Technical {Report}" +, institution = "RUTCOR, Ruters University" +, address = "New Brunswick, New Jersey" +, month = mar +, year = 1988 +, update = "93.09 milone+mitchell" } @article{hpt-sltcw-81 -, author = "P. Hansen and D. Peeters and J. F. Thisse" -, title = "Some Localization Theorems for a Constrained {Weber} Problem" -, journal = "Journal of Regional Science" -, volume = 21 -, year = 1981 -, pages = "103--115" -, update = "93.09 milone+mitchell" +, author = "P. Hansen and D. Peeters and J. F. Thisse" +, title = "Some Localization Theorems for a Constrained {Weber} Problem" +, journal = "Journal of Regional Science" +, volume = 21 +, year = 1981 +, pages = "103--115" +, update = "93.09 milone+mitchell" } @article{h-ncmmt-90 -, author = "Dianne Hansford" -, title = "The Neutral Case for the Min-Max Triangulation" -, journal = "Comput. Aided Geom. Design" -, volume = 7 -, year = 1990 -, pages = "431--438" -, annote = "Constructs contour for the minimize maximum angle - criterion." +, author = "Dianne Hansford" +, title = "The Neutral Case for the Min-Max Triangulation" +, journal = "Comput. Aided Geom. Design" +, volume = 7 +, year = 1990 +, pages = "431--438" +, annote = "Constructs contour for the minimize maximum angle + criterion." } @incollection{h-gndg-94 -, author = "Andrew J. Hanson" -, title = "Geometry for {N}-Dimensional Graphics" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "149--170" -, keywords = "geometry, hyperplane, determinant, Levi-Civita, volume" -, update = "94.09 heckbert" -, annote = "A tutorial on n-dimensional geometry. Hanson generalizes a +, author = "Andrew J. Hanson" +, title = "Geometry for {N}-Dimensional Graphics" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "149--170" +, keywords = "geometry, hyperplane, determinant, Levi-Civita, volume" +, update = "94.09 heckbert" +, annote = "A tutorial on n-dimensional geometry. Hanson generalizes a number of familiar concepts, such as plane equations, clipping, volume, and rotation, to n-D." } @inproceedings{h-islds-91 -, author = "E. N. Hanson" -, title = "The interval skip list: a data structure for finding all intervals that overlap a point" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "153--164" -, keywords = "data structuring" +, author = "E. N. Hanson" +, title = "The interval skip list: a data structure for finding all intervals that overlap a point" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "153--164" +, keywords = "data structuring" } @article{h-osadc-98 -, author = "Sariel Har-Peled" -, title = "An output sensitive algorithm for discrete convex hulls" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "125--138" -, update = "98.11 devillers" +, author = "Sariel Har-Peled" +, title = "An output sensitive algorithm for discrete convex hulls" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "125--138" +, update = "98.11 devillers" } @article{h-aspgd-??a -, author = "S. Har-Peled" -, title = "Approximate Shortest Paths and Geodesic Diameters on Convex Polytopes in Three Dimensions" -, journal = "Discrete Comput. Geom." -, volume = "??" -, number = "??" -, year = "??" -, pages = "to appear" -, succeeds = "h-aspgd-97i" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "S. Har-Peled" +, title = "Approximate Shortest Paths and Geodesic Diameters on Convex Polytopes in Three Dimensions" +, journal = "Discrete Comput. Geom." +, volume = "??" +, number = "??" +, year = "??" +, pages = "to appear" +, succeeds = "h-aspgd-97i" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{h-aspgd-97i -, author = "S. Har-Peled" -, title = "Approximate Shortest Paths and Geodesic Diameters on Convex Polytopes in Three Dimensions" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "359--365" -, precedes = "h-aspgd-??a" -, cites = "aaos-supa-97, ahsv-aspcp-96, ch-spp-96, c-aaspm-87, cr-nlbtr-87, csy-aesp3-94, dk-ladsc-85, dk-dsppu-90, h-caspm-97, hs-pmasp-95, mmp-dgp-87, p-aspmt-85, p-egcs-73, rs-seubf-94, s-spacp-87, ss-spps-86, va-aspp-96, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.06 efrat" +, author = "S. Har-Peled" +, title = "Approximate Shortest Paths and Geodesic Diameters on Convex Polytopes in Three Dimensions" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "359--365" +, precedes = "h-aspgd-??a" +, cites = "aaos-supa-97, ahsv-aspcp-96, ch-spp-96, c-aaspm-87, cr-nlbtr-87, csy-aesp3-94, dk-ladsc-85, dk-dsppu-90, h-caspm-97, hs-pmasp-95, mmp-dgp-87, p-aspmt-85, p-egcs-73, rs-seubf-94, s-spacp-87, ss-spps-86, va-aspp-96, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.06 efrat" } @inproceedings{h-caspm-98 -, author = "Sariel Har-Peled" -, title = "Constructing approximate shortest path maps in three dimensions" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "383--391" -, keywords = "shortest paths, approximation algorithms, polyhedral obstacles" -, update = "99.11 smid, 98.03 mitchell" +, author = "Sariel Har-Peled" +, title = "Constructing approximate shortest path maps in three dimensions" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "383--391" +, keywords = "shortest paths, approximation algorithms, polyhedral obstacles" +, update = "99.11 smid, 98.03 mitchell" } @article{h-caspm-99 -, author = "S. Har-Peled" -, title = "Constructing approximate shortest path maps in three dimensions" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1999 -, pages = "1182--1197" -, succeeds = "h-caspm-98" -, update = "99.11 smid" +, author = "S. Har-Peled" +, title = "Constructing approximate shortest path maps in three dimensions" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1999 +, pages = "1182--1197" +, succeeds = "h-caspm-98" +, update = "99.11 smid" } @techreport{h-caspm-97 -, author = "S. Har-Peled" -, title = "Constructing approximate shortest paths maps in three dimensions" -, type = "Manuscript" -, institution = "??" -, year = 1997 -, update = "98.07 bibrelex" +, author = "S. Har-Peled" +, title = "Constructing approximate shortest paths maps in three dimensions" +, type = "Manuscript" +, institution = "??" +, year = 1997 +, update = "98.07 bibrelex" } @inproceedings{h-cctp-98 -, author = "S. Har-Peled" -, title = "Constructing cuttings in theory and practice" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "327--334" -, keywords = "cuttings" -, update = "98.11 pocchiola, 98.03 agarwal" +, author = "S. Har-Peled" +, title = "Constructing cuttings in theory and practice" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "327--334" +, keywords = "cuttings" +, update = "98.11 pocchiola, 98.03 agarwal" } @article{h-cpctp-00 -, author = "S. Har-Peled" -, title = "Constructing planar cuttings in theory and practice" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "2016--2039" -, update = "01.04 smid" +, author = "S. Har-Peled" +, title = "Constructing planar cuttings in theory and practice" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "2016--2039" +, update = "01.04 smid" } @inproceedings{h-twpa-99 -, author = "S. Har-Peled" -, title = "Taking a walk in a planar arrangement" -, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS 99" -, year = 1999 -, pages = "100--110" -, update = "01.11 pocchiola" +, author = "S. Har-Peled" +, title = "Taking a walk in a planar arrangement" +, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS 99" +, year = 1999 +, pages = "100--110" +, update = "01.11 pocchiola" } @article{h-twpa-00 -, author = "S. Har-Peled" -, title = "Taking a walk in a planar arrangement" -, journal = "SIAM J. Comput." -, volume = 30 -, year = 2000 -, pages = "1341--1367" -, update = "02.03 pocchiola" +, author = "S. Har-Peled" +, title = "Taking a walk in a planar arrangement" +, journal = "SIAM J. Comput." +, volume = 30 +, year = 2000 +, pages = "1341--1367" +, update = "02.03 pocchiola" } @mastersthesis{h-cmco-95 -, author = "S. Har-Peled" -, title = "The Complexity of Many Cells in the Overlay of Many Arrangements" -, type = "{M.S.} Thesis" -, school = "Dept. Computer Science, Tel Aviv University" -, address = "Tel Aviv, Israel" -, year = 1995 -, keywords = "master thesis" -, update = "95.09 agarwal" +, author = "S. Har-Peled" +, title = "The Complexity of Many Cells in the Overlay of Many Arrangements" +, type = "{M.S.} Thesis" +, school = "Dept. Computer Science, Tel Aviv University" +, address = "Tel Aviv, Israel" +, year = 1995 +, keywords = "master thesis" +, update = "95.09 agarwal" } @inproceedings{hcahs-csfms-95 -, author = "Sariel Har-Peled and Timothy M. Chan and Boris Aronov and Dan Halperin and Jack Snoeyink" -, title = "The Complexity of a Single Face of a {Minkowski} Sum" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "91--96" -, update = "95.09 agarwal+jones" +, author = "Sariel Har-Peled and Timothy M. Chan and Boris Aronov and Dan Halperin and Jack Snoeyink" +, title = "The Complexity of a Single Face of a {Minkowski} Sum" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "91--96" +, update = "95.09 agarwal+jones" } @inproceedings{hi-wccam-00 -, author = "S. Har-Peled and P. Indyk" -, title = "When crossings count: Approximating the minimum spanning tree" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, note = "166--175" -, update = "00.11 smid, 00.07 agarwal" +, author = "S. Har-Peled and P. Indyk" +, title = "When crossings count: Approximating the minimum spanning tree" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, note = "166--175" +, update = "00.11 smid, 00.07 agarwal" } @article{hs-oplpa-01 -, author = "S. Har-Peled and M. Sharir" -, title = "Online Point Location in Planar Arrangements and Its Applications" -, journal = "Discrete Comput. Geom." -, volume = 26 -, year = 2001 -, pages = "19--40" -, update = "02.03 pocchiola" +, author = "S. Har-Peled and M. Sharir" +, title = "Online Point Location in Planar Arrangements and Its Applications" +, journal = "Discrete Comput. Geom." +, volume = 26 +, year = 2001 +, pages = "19--40" +, update = "02.03 pocchiola" } @inproceedings{hsv-aspcp-96 -, author = "Sariel Har-Peled and Micha Sharir and Kasturi R. Varadarajan" -, title = "Approximate Shortest Paths on a Convex Polytope in Three Dimensions" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "329--338" -, cites = "a-lbvsc-63, b-acspp-85, bs-spbtc-88, bv-nclp-92, cr-nlbtr-87, ch-spp-90, c-aaspm-87, dk-ladsc-85, e-acg-87, hs-pmasp-95, mmp-dgp-87, p-aspmt-85, p-egcs-73, ps-cgi-85, rs-seubf-94, s-spacp-87, ss-spps-86, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Sariel Har-Peled and Micha Sharir and Kasturi R. Varadarajan" +, title = "Approximate Shortest Paths on a Convex Polytope in Three Dimensions" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "329--338" +, cites = "a-lbvsc-63, b-acspp-85, bs-spbtc-88, bv-nclp-92, cr-nlbtr-87, ch-spp-90, c-aaspm-87, dk-ladsc-85, e-acg-87, hs-pmasp-95, mmp-dgp-87, p-aspmt-85, p-egcs-73, ps-cgi-85, rs-seubf-94, s-spacp-87, ss-spps-86, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @techreport{hkrw-ihdrt-81 -, author = "Y. Hara and A. Keller and P. Rathmann and G. Wiederhold" -, title = "Implementing Hypertext Database Relationships through Aggregations and Exceptions" -, type = "Technical Report" -, number = "STAN-CS-91-1381" -, institution = "Stanford University" -, year = 1981 -, keywords = "graph drawing" -, update = "96.09 tamassia, 96.04 garg" +, author = "Y. Hara and A. Keller and P. Rathmann and G. Wiederhold" +, title = "Implementing Hypertext Database Relationships through Aggregations and Exceptions" +, type = "Technical Report" +, number = "STAN-CS-91-1381" +, institution = "Stanford University" +, year = 1981 +, keywords = "graph drawing" +, update = "96.09 tamassia, 96.04 garg" } @inproceedings{hs-dpsc-77 -, author = "R. M. Haralick and L. G. Shapiro" -, title = "Decomposition of polygonal shapes by clustering" -, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn. Image Process." -, year = 1977 -, pages = "183--190" +, author = "R. M. Haralick and L. G. Shapiro" +, title = "Decomposition of polygonal shapes by clustering" +, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn. Image Process." +, year = 1977 +, pages = "183--190" } @book{h-gt-69 -, author = "F. Harary" -, title = "Graph Theory" -, publisher = "Addison-Wesley" -, address = "Reading, Mass." -, year = 1969 -, keywords = "graph drawing" -, precedes = "h-gt-72" -, update = "97.11 bibrelex, 93.09 tamassia" +, author = "F. Harary" +, title = "Graph Theory" +, publisher = "Addison-Wesley" +, address = "Reading, Mass." +, year = 1969 +, keywords = "graph drawing" +, precedes = "h-gt-72" +, update = "97.11 bibrelex, 93.09 tamassia" } @book{h-gt-72 -, author = "F. Harary" -, title = "Graph Theory" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1972 -, succeeds = "h-gt-69" -, update = "97.11 bibrelex" +, author = "F. Harary" +, title = "Graph Theory" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1972 +, succeeds = "h-gt-69" +, update = "97.11 bibrelex" } @article{ht-ogpm-66 -, author = "F. Haray and W. T. Tutte" -, title = "On the Order of the Group of a Planar Map" -, journal = "J. Combin.Theory" -, volume = 1 -, year = 1966 -, pages = "394--395" -, update = "97.11 bibrelex" +, author = "F. Haray and W. T. Tutte" +, title = "On the Order of the Group of a Planar Map" +, journal = "J. Combin.Theory" +, volume = 1 +, year = 1966 +, pages = "394--395" +, update = "97.11 bibrelex" } @article{h-kfiep-78 -, author = "H. Harborth" -, title = "Konvexe {F{\"u}nfecke} in ebenen {Punktmengen}" -, journal = "Elem. Math." -, volume = 33 -, year = 1979 -, pages = "116--118" -, cites = "ar-clecs-85" -, update = "97.11 bibrelex" +, author = "H. Harborth" +, title = "Konvexe {F{\"u}nfecke} in ebenen {Punktmengen}" +, journal = "Elem. Math." +, volume = 33 +, year = 1979 +, pages = "116--118" +, cites = "ar-clecs-85" +, update = "97.11 bibrelex" } @article{h-sp664-74 -, author = "H. Harborth" -, title = "Solution to problem 664{A}" -, journal = "Elemente der Mathematik" -, volume = 29 -, year = 1974 -, pages = "14--15" -, keywords = "combinatorial geometry, proximity" +, author = "H. Harborth" +, title = "Solution to problem 664{A}" +, journal = "Elemente der Mathematik" +, volume = 29 +, year = 1974 +, pages = "14--15" +, keywords = "combinatorial geometry, proximity" } @article{hm-ewcdc-74 -, author = "H. Harborth and I. Mengersen" -, title = "Edges Without Crossings in Drawings of Complete Graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 17 -, number = 3 -, year = 1974 -, pages = "229--311" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "H. Harborth and I. Mengersen" +, title = "Edges Without Crossings in Drawings of Complete Graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 17 +, number = 3 +, year = 1974 +, pages = "229--311" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{hs-nacod-93 -, author = "R. H. Hardin and N. J. A. Sloane" -, title = "A new approach to the construction of optimal designs" -, journal = "J. Statistical Planning and Inference" -, volume = 37 -, year = 1993 -, pages = "339--369" -, note = "Also DIMACS Technical Report 93-47, August 1993." -, update = "97.07 orourke" +, author = "R. H. Hardin and N. J. A. Sloane" +, title = "A new approach to the construction of optimal designs" +, journal = "J. Statistical Planning and Inference" +, volume = 37 +, year = 1993 +, pages = "339--369" +, note = "Also DIMACS Technical Report 93-47, August 1993." +, update = "97.07 orourke" } @book{hlp-i-52 -, author = "G. Hardy and J. E. Littlewood and G. P{\'o}lya" -, title = "Inequalities" -, edition = "2nd" -, publisher = "Cambridge University Press" -, year = 1952 -, precedes = "hlp-i-64" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "G. Hardy and J. E. Littlewood and G. P{\'o}lya" +, title = "Inequalities" +, edition = "2nd" +, publisher = "Cambridge University Press" +, year = 1952 +, precedes = "hlp-i-64" +, update = "98.11 bibrelex, 97.11 bibrelex" } @book{hlp-i-64 -, author = "G. Hardy and J. E. Littlewood and G. P{\'o}lya" -, title = "Inequalities" -, edition = "1st" -, publisher = "Cambridge University Press" -, year = 1967 -, succeeds = "hlp-i-52" -, update = "98.11 bibrelex" +, author = "G. Hardy and J. E. Littlewood and G. P{\'o}lya" +, title = "Inequalities" +, edition = "1st" +, publisher = "Cambridge University Press" +, year = 1967 +, succeeds = "hlp-i-52" +, update = "98.11 bibrelex" } @book{hw-tn-65 -, author = "G. Hardy and E. Wright" -, title = "The Theory of Numbers" -, edition = "4th" -, publisher = "Oxford University Press" -, address = "London, England" -, year = 1965 +, author = "G. Hardy and E. Wright" +, title = "The Theory of Numbers" +, edition = "4th" +, publisher = "Oxford University Press" +, address = "London, England" +, year = 1965 } @book{hw-itn-68 -, author = "G. H. Hardy and E. M. Wright" -, title = "An Introduction to the Theory of Numbers" -, publisher = "Oxford University Press" -, address = "New York" -, year = 1968 -, precedes = "hw-itn-79" -, update = "98.07 bibrelex" +, author = "G. H. Hardy and E. M. Wright" +, title = "An Introduction to the Theory of Numbers" +, publisher = "Oxford University Press" +, address = "New York" +, year = 1968 +, precedes = "hw-itn-79" +, update = "98.07 bibrelex" } @book{hw-itn-79 -, author = "G. H. Hardy and E. M. Wright" -, title = "An Introduction to the Theory of Numbers" -, publisher = "Oxford Science Publications" -, year = 1979 -, succeeds = "hw-itn-68" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "G. H. Hardy and E. M. Wright" +, title = "An Introduction to the Theory of Numbers" +, publisher = "Oxford Science Publications" +, year = 1979 +, succeeds = "hw-itn-68" +, update = "98.07 bibrelex, 97.11 bibrelex" } @article{hk-crp-71 -, author = "W. R. Hare and J. W. Kenelly" -, title = "Characterizations of Radon partitions" -, journal = "Pacific J. Math." -, volume = 36 -, year = 1971 -, pages = "159--164" -, update = "98.03 bibrelex" +, author = "W. R. Hare and J. W. Kenelly" +, title = "Characterizations of Radon partitions" +, journal = "Pacific J. Math." +, volume = 36 +, year = 1971 +, pages = "159--164" +, update = "98.03 bibrelex" } @inproceedings{h-ltalc-80 -, author = "D. Harel" -, title = "A linear time algorithm for the lowest common ancestors problem" -, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1980 -, pages = "308--319" -, precedes = "ht-fafnc-84" +, author = "D. Harel" +, title = "A linear time algorithm for the lowest common ancestors problem" +, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1980 +, pages = "308--319" +, precedes = "ht-fafnc-84" } @article{h-etiah-86 -, author = "D. Harel" -, title = "Effective transformations on infinite, with applications to high undecidability, dominoes and fairness" -, journal = "J. ACM" -, volume = 33 -, year = 1986 -, pages = "224--248" -, update = "97.11 bibrelex" +, author = "D. Harel" +, title = "Effective transformations on infinite, with applications to high undecidability, dominoes and fairness" +, journal = "J. ACM" +, volume = 33 +, year = 1986 +, pages = "224--248" +, update = "97.11 bibrelex" } @article{h-vf-88 -, author = "D. Harel" -, title = "On Visual Formalisms" -, journal = "Commun. ACM" -, volume = 31 -, number = 5 -, year = 1988 -, pages = "514--530" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. Harel" +, title = "On Visual Formalisms" +, journal = "Commun. ACM" +, volume = 31 +, number = 5 +, year = 1988 +, pages = "514--530" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{hs-rgdhd-95 -, author = "D. Harel and M. Sardas" -, title = "Randomized Graph Drawing with Heavy-Duty Preprocessing" -, journal = "J. Visual Lang. Comput." -, volume = 6 -, number = 3 -, year = 1995 -, pages = "233--253" -, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" -, keywords = "graph drawing, physical simulation, planarization" -, update = "98.07 vismara, 95.09 agarwal+devillers, 95.05 tamassia" +, author = "D. Harel and M. Sardas" +, title = "Randomized Graph Drawing with Heavy-Duty Preprocessing" +, journal = "J. Visual Lang. Comput." +, volume = 6 +, number = 3 +, year = 1995 +, pages = "233--253" +, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" +, keywords = "graph drawing, physical simulation, planarization" +, update = "98.07 vismara, 95.09 agarwal+devillers, 95.05 tamassia" } @article{ht-fafnc-84 -, author = "D. Harel and R. E. Tarjan" -, title = "Fast algorithms for finding nearest common ancestors" -, journal = "SIAM J. Comput." -, volume = 13 -, number = 2 -, year = 1984 -, pages = "338--355" -, succeeds = "h-ltalc-80" -, update = "98.11 bibrelex" +, author = "D. Harel and R. E. Tarjan" +, title = "Fast algorithms for finding nearest common ancestors" +, journal = "SIAM J. Comput." +, volume = 13 +, number = 2 +, year = 1984 +, pages = "338--355" +, succeeds = "h-ltalc-80" +, update = "98.11 bibrelex" } @inproceedings{hru-idce-96 -, author = "V. Harinarayan and A. Rajaraman and J. D. Ullman" -, title = "Implementing data cubes efficiently" -, booktitle = "Proc. 13th IEEE Internat. Conf. Data Eng." -, year = 1997 -, pages = "208--219" -, update = "97.07 agarwal" +, author = "V. Harinarayan and A. Rajaraman and J. D. Ullman" +, title = "Implementing data cubes efficiently" +, booktitle = "Proc. 13th IEEE Internat. Conf. Data Eng." +, year = 1997 +, pages = "208--219" +, update = "97.07 agarwal" } @article{hpss-sxoc-75 -, author = "L. H. Harper and T. H. Payne and J. E. Savage and E. Strauss" -, title = "Sorting $X+Y$ in $O(n^2)$ comparisons" -, journal = "Commun. ACM" -, volume = 18 -, number = 6 -, year = 1975 -, pages = "347--349" -, update = "98.11 bibrelex, 97.03 devillers" +, author = "L. H. Harper and T. H. Payne and J. E. Savage and E. Strauss" +, title = "Sorting $X+Y$ in $O(n^2)$ comparisons" +, journal = "Commun. ACM" +, volume = 18 +, number = 6 +, year = 1975 +, pages = "347--349" +, update = "98.11 bibrelex, 97.03 devillers" } @techreport{h-fafch-78 -, author = "B. Harris" -, title = "A fast algorithm for finding the convex hull of a set of points in the plane" -, type = "Internal {Report}" -, number = "" -, institution = "School Public Urban Policy, Univ. Pennsylvania" -, address = "Philadelphia, PA" -, year = 1978 -, update = "94.05 devillers" +, author = "B. Harris" +, title = "A fast algorithm for finding the convex hull of a set of points in the plane" +, type = "Internal {Report}" +, number = "" +, institution = "School Public Urban Policy, Univ. Pennsylvania" +, address = "Philadelphia, PA" +, year = 1978 +, update = "94.05 devillers" } @book{h-agfc-92 -, author = "J. Harris" -, title = "Algebraic Geometry (A First Course)" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1992 -, update = "96.09 agarwal, 95.01 matousek" +, author = "J. Harris" +, title = "Algebraic Geometry (A First Course)" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1992 +, update = "96.09 agarwal, 95.01 matousek" } @incollection{h-de-94 -, author = "John C. Hart" -, title = "Distance to an Ellipsoid" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "113--119" -, keywords = "ray tracing, ellipse" -, update = "94.09 heckbert" -, annote = "Gives the formulas necessary to find the distance from a +, author = "John C. Hart" +, title = "Distance to an Ellipsoid" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "113--119" +, keywords = "ray tracing, ellipse" +, update = "94.09 heckbert" +, annote = "Gives the formulas necessary to find the distance from a point to an ellipsoid, or from a point to an ellipse. These formulas can be useful for geometric modeling or for ray tracing." } @techreport{h-otdrq-81 -, author = "J. M. Hart" -, title = "Optimal two dimensional range queries using binary range lists" -, type = "Report" -, number = "76-81" -, institution = "Dept. Comput. Sci., Univ. Kentucky" -, address = "Lexington, KY" -, year = 1981 +, author = "J. M. Hart" +, title = "Optimal two dimensional range queries using binary range lists" +, type = "Report" +, number = "76-81" +, institution = "Dept. Comput. Sci., Univ. Kentucky" +, address = "Lexington, KY" +, year = 1981 } @article{h-pimcd-82 -, author = "J. M. Hart" -, title = "Permutation inversions and multidimensional cumulative distribution functions" -, journal = "Inform. Process. Lett." -, volume = 14 -, year = 1982 -, pages = "218--222" +, author = "J. M. Hart" +, title = "Permutation inversions and multidimensional cumulative distribution functions" +, journal = "Inform. Process. Lett." +, volume = 14 +, year = 1982 +, pages = "218--222" } @article{h-cnnr-68 -, author = "P. E. Hart" -, title = "The condensed nearest neighbor rule" -, journal = "IEEE Trans. Inform. Theory" -, volume = "??" -, year = 1968 -, pages = "515--516" -, update = "97.11 bibrelex" +, author = "P. E. Hart" +, title = "The condensed nearest neighbor rule" +, journal = "IEEE Trans. Inform. Theory" +, volume = "??" +, year = 1968 +, pages = "515--516" +, update = "97.11 bibrelex" } @article{hnr-fbhdm-68 -, author = "P. E. Hart and N. J. Nilsson and B. Raphael" -, title = "A Formal Basis for the Heuristic Determination of Minimum Cost Paths" -, journal = "IEEE Trans. Syst. Sci. Cybern." -, volume = "SCC-4" -, number = 2 -, year = 1968 -, pages = "100--107" -, update = "96.09 devillers" +, author = "P. E. Hart and N. J. Nilsson and B. Raphael" +, title = "A Formal Basis for the Heuristic Determination of Minimum Cost Paths" +, journal = "IEEE Trans. Syst. Sci. Cybern." +, volume = "SCC-4" +, number = 2 +, year = 1968 +, pages = "100--107" +, update = "96.09 devillers" } @inproceedings{hs-ndssg-84 -, author = "S. Hart and Micha Sharir" -, title = "Nonlinearity of {Davenport}-{Schinzel} sequences and of generalized path compression schemes" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "313--319" -, precedes = "hs-ndssg-86" -, update = "98.03 mitchell" +, author = "S. Hart and Micha Sharir" +, title = "Nonlinearity of {Davenport}-{Schinzel} sequences and of generalized path compression schemes" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "313--319" +, precedes = "hs-ndssg-86" +, update = "98.03 mitchell" } @article{hs-ndssg-86 -, author = "S. Hart and Micha Sharir" -, title = "Nonlinearity of {Davenport}-{Schinzel} sequences and of generalized path compression schemes" -, journal = "Combinatorica" -, volume = 6 -, year = 1986 -, pages = "151--177" -, keywords = "Davenport-Schinzel sequences" -, succeeds = "hs-ndssg-84" -, update = "98.03 mitchell" +, author = "S. Hart and Micha Sharir" +, title = "Nonlinearity of {Davenport}-{Schinzel} sequences and of generalized path compression schemes" +, journal = "Combinatorica" +, volume = 6 +, year = 1986 +, pages = "151--177" +, keywords = "Davenport-Schinzel sequences" +, succeeds = "hs-ndssg-84" +, update = "98.03 mitchell" } @book{h-tdicl-91 -, author = "A. C. Harter" -, title = "Three-dimensional integrated circuit layout" -, publisher = "Cambridge University Press" -, address = "New York, NY" -, year = 1991 -, update = "98.03 bibrelex" +, author = "A. C. Harter" +, title = "Three-dimensional integrated circuit layout" +, publisher = "Cambridge University Press" +, address = "New York, NY" +, year = 1991 +, update = "98.03 bibrelex" } @book{h-ca-75 -, author = "J. A. Hartigan" -, title = "Clustering Algorithms" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1975 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "J. A. Hartigan" +, title = "Clustering Algorithms" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1975 +, update = "99.11 bibrelex, 98.03 bibrelex" } @book{h-ag-77 -, author = "R. Hartshorne" -, title = "Algebraic Geometry" -, series = "Graduate texts in Mathematics" -, volume = 52 -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1977 -, update = "98.03 icking, 97.11 bibrelex" +, author = "R. Hartshorne" +, title = "Algebraic Geometry" +, series = "Graduate texts in Mathematics" +, volume = 52 +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1977 +, update = "98.03 icking, 97.11 bibrelex" } @article{h-rvdlp-92 -, author = "D. Hartvigsen" -, title = "Recognizing {Voronoi} diagrams with linear programming" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "369--374" -, update = "98.03 mitchell, 93.09 rote" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "D. Hartvigsen" +, title = "Recognizing {Voronoi} diagrams with linear programming" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "369--374" +, update = "98.03 mitchell, 93.09 rote" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @inproceedings{hvm-vwsh-95 -, author = "M. Hasan and D. Vista and A. Mendelzon" -, title = "Visual {Web} Surfing with {HY+}" -, booktitle = "Proc. CASCON'95" -, year = 1995 -, url = "http://www.db.toronto.edu:8020/" -, keywords = "graph drawing, system" -, update = "96.09 tamassia, 96.04 garg" +, author = "M. Hasan and D. Vista and A. Mendelzon" +, title = "Visual {Web} Surfing with {HY+}" +, booktitle = "Proc. CASCON'95" +, year = 1995 +, url = "http://www.db.toronto.edu:8020/" +, keywords = "graph drawing, system" +, update = "96.09 tamassia, 96.04 garg" } @inproceedings{hiikn-eavbk-93 -, author = "Susumu Hasegawa and Hiroshi Imai and Mary Inaba and Naoki Katoh and Jun Nakano" -, title = "Efficient algorithms for variance-based $k$-clustering" -, booktitle = "Proc. First Pacific Conf. Computer Graphics Appl., Seoul, Korea, vol. 1" -, volume = 1 -, publisher = "World Scientific Publishing Co." -, year = 1993 -, pages = "75--89" -, keywords = "clustering, proximity, computer graphics, Voronoi diagram, $k$th order Voronoi diagram, $d$-dimensional" -, update = "95.09 korneenko" +, author = "Susumu Hasegawa and Hiroshi Imai and Mary Inaba and Naoki Katoh and Jun Nakano" +, title = "Efficient algorithms for variance-based $k$-clustering" +, booktitle = "Proc. First Pacific Conf. Computer Graphics Appl., Seoul, Korea, vol. 1" +, volume = 1 +, publisher = "World Scientific Publishing Co." +, year = 1993 +, pages = "75--89" +, keywords = "clustering, proximity, computer graphics, Voronoi diagram, $k$th order Voronoi diagram, $d$-dimensional" +, update = "95.09 korneenko" } @inproceedings{hii-eakls-93 -, author = "S. Hasegawa and H. Imai and M. Ishiguro" -, title = "$\varepsilon$-approximations of $k$-label spaces" -, booktitle = "Proc. 4th Internat. Workshop in Algorithmic Learning Theory" -, series = "Lecture Notes in Artificial Intelligence" -, volume = 744 -, year = 1993 -, pages = "288--299" -, update = "98.03 bibrelex" +, author = "S. Hasegawa and H. Imai and M. Ishiguro" +, title = "$\varepsilon$-approximations of $k$-label spaces" +, booktitle = "Proc. 4th Internat. Workshop in Algorithmic Learning Theory" +, series = "Lecture Notes in Artificial Intelligence" +, volume = 744 +, year = 1993 +, pages = "288--299" +, update = "98.03 bibrelex" } @inproceedings{hs-nlbmm-86 -, author = "A. Hasham and J.-R. Sack" -, title = "A Note on Lower Bounds for Min-Max Heaps" -, booktitle = "Proc. 24th Allerton Conf. Commun. Control Comput." -, year = 1986 -, pages = "306--307" -, update = "97.11 sack" +, author = "A. Hasham and J.-R. Sack" +, title = "A Note on Lower Bounds for Min-Max Heaps" +, booktitle = "Proc. 24th Allerton Conf. Commun. Control Comput." +, year = 1986 +, pages = "306--307" +, update = "97.11 sack" } @inproceedings{hr-udfs-94 -, author = "S. M. Hashemi and I. Rival" -, title = "Upward Drawings to Fit Surfaces" -, booktitle = "Proc. Workshop on Orders, Algorithms and Applications" -, series = "Lecture Notes Comput. Sci." -, volume = 831 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "53--58" -, keywords = "graph drawing, 3D, upward" -, update = "95.05 tamassia" +, author = "S. M. Hashemi and I. Rival" +, title = "Upward Drawings to Fit Surfaces" +, booktitle = "Proc. Workshop on Orders, Algorithms and Applications" +, series = "Lecture Notes Comput. Sci." +, volume = 831 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "53--58" +, keywords = "graph drawing, 3D, upward" +, update = "95.05 tamassia" } @inproceedings{hst-uttst-99 -, author = "Joel Hass and Jack Snoeyink and William P. Thurston" -, title = "Using Train Tracks to Show that a Trivial Knot May Require Exponential-Size Spanning Disks" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "59--61" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Joel Hass and Jack Snoeyink and William P. Thurston" +, title = "Using Train Tracks to Show that a Trivial Knot May Require Exponential-Size Spanning Disks" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "59--61" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{hm-oafaj-85 -, author = "R. Hassin and N. Megiddo" -, title = "An optimal algorithm for finding all the jumps of a monotone step-function" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "265--274" -, keywords = "design of algorithms, binary search, worst-case analysis, prune-and-search, points, lines, two-dimensional" +, author = "R. Hassin and N. Megiddo" +, title = "An optimal algorithm for finding all the jumps of a monotone step-function" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "265--274" +, keywords = "design of algorithms, binary search, worst-case analysis, prune-and-search, points, lines, two-dimensional" } @techreport{hm-aahos-88 -, author = "R. Hassin and N. Megiddo" -, title = "Approximation algorithms for hitting objects by straight lines" -, type = "Technical {Report}" -, institution = "Tel Aviv Univ." -, address = "Tel Aviv, Israel" -, month = may -, year = 1988 -, update = "98.07 bibrelex" +, author = "R. Hassin and N. Megiddo" +, title = "Approximation algorithms for hitting objects by straight lines" +, type = "Technical {Report}" +, institution = "Tel Aviv Univ." +, address = "Tel Aviv, Israel" +, month = may +, year = 1988 +, update = "98.07 bibrelex" } @article{hm-aahos-91 -, author = "R. Hassin and N. Megiddo" -, title = "Approximation algorithms for hitting objects by straight lines" -, journal = "Discrete Appl. Math." -, volume = 30 -, year = 1991 -, pages = "29--42" -, keywords = "NP-Completeness, stabbing, approximation" -, update = "93.09 jones" +, author = "R. Hassin and N. Megiddo" +, title = "Approximation algorithms for hitting objects by straight lines" +, journal = "Discrete Appl. Math." +, volume = 30 +, year = 1991 +, pages = "29--42" +, keywords = "NP-Completeness, stabbing, approximation" +, update = "93.09 jones" } @techreport{hr-aamts-97 -, author = "R. Hassin and S. Rubinstein" -, title = "An approximation algorithm for the maximum traveling salesman problem" -, type = "Manuscript, submitted" -, institution = "Tel Aviv University" -, address = "Tel Aviv, Israel" -, year = 1997 -, update = "98.03 mitchell" -, annote = "Finds and fixes result of S.R. Kosaraju, J.K. Park, C. Stein" +, author = "R. Hassin and S. Rubinstein" +, title = "An approximation algorithm for the maximum traveling salesman problem" +, type = "Manuscript, submitted" +, institution = "Tel Aviv University" +, address = "Tel Aviv, Israel" +, year = 1997 +, update = "98.03 mitchell" +, annote = "Finds and fixes result of S.R. Kosaraju, J.K. Park, C. Stein" } @article{ht-dannc-96 -, author = "T. Hastie and R. Tibshirani" -, title = "Discriminant adaptive nearest neighbor classification" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 18 -, year = 1996 -, pages = "607--616" -, update = "97.07 agarwal" +, author = "T. Hastie and R. Tibshirani" +, title = "Discriminant adaptive nearest neighbor classification" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 18 +, year = 1996 +, pages = "607--616" +, update = "97.07 agarwal" } @mastersthesis{h-senea-93 -, author = "S. Haswgawa" -, title = "A study on $\varepsilon$-net and $\varepsilon$-approximation" -, school = "Dept. Inform. Sci., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1993 -, keywords = "master thesis" -, update = "98.03 bibrelex" +, author = "S. Haswgawa" +, title = "A study on $\varepsilon$-net and $\varepsilon$-approximation" +, school = "Dept. Inform. Sci., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1993 +, keywords = "master thesis" +, update = "98.03 bibrelex" } @book{h-at-01 -, author = "Allan Hatcher" -, title = "Algebraic Topology" -, publisher = "Cambridge University Press" -, year = 2001 -, url = "https://www.math.cornell.edu/~hatcher/" -, update = "01.11 orourke" +, author = "Allan Hatcher" +, title = "Algebraic Topology" +, publisher = "Cambridge University Press" +, year = 2001 +, url = "https://www.math.cornell.edu/~hatcher/" +, update = "01.11 orourke" } @book{h-m-35 -, author = "F. Hausdorff" -, title = "Mengenlehre" -, edition = "3rd" -, publisher = "DeGruyter" -, address = "Berlin, Germany" -, year = 1935 -, update = "97.11 bibrelex" +, author = "F. Hausdorff" +, title = "Mengenlehre" +, edition = "3rd" +, publisher = "DeGruyter" +, address = "Berlin, Germany" +, year = 1935 +, update = "97.11 bibrelex" } @proceedings{ht-nggcf-86 -, title = "Numerical Grid Generation in Computational Fluid Dynamics" -, editor = "J. Hauser and C. Taylor" -, publisher = "Pineridge Press" -, address = "Swansea, UK" -, year = 1986 -, update = "97.11 bibrelex" +, title = "Numerical Grid Generation in Computational Fluid Dynamics" +, editor = "J. Hauser and C. Taylor" +, publisher = "Pineridge Press" +, address = "Swansea, UK" +, year = 1986 +, update = "97.11 bibrelex" } @incollection{hd-mgvia-00 -, author = "Alejo Hausner and David P. Dobkin" -, title = "Making Geometry Visible: {An} Introduction to the Animation of Geometric Algorithms" -, chapter = 8 -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "389--423" -, keywords = "algorithm animation, visualization" -, update = "00.03 bibrelex+vismara, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell+tamassia, 97.03 tamassia" -, annote = "Chapter 8 of su-hcg-00" +, author = "Alejo Hausner and David P. Dobkin" +, title = "Making Geometry Visible: {An} Introduction to the Animation of Geometric Algorithms" +, chapter = 8 +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "389--423" +, keywords = "algorithm animation, visualization" +, update = "00.03 bibrelex+vismara, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell+tamassia, 97.03 tamassia" +, annote = "Chapter 8 of su-hcg-00" } @book{h-vsag-65 -, author = "M. Hausner" -, title = "A Vector Space Approach to Geometry" -, publisher = "Prentice Hall" -, year = 1965 -, update = "97.11 bibrelex" +, author = "M. Hausner" +, title = "A Vector Space Approach to Geometry" +, publisher = "Prentice Hall" +, year = 1965 +, update = "97.11 bibrelex" } @techreport{h-spnsb-91 -, author = "D. Haussler" -, title = "Sphere packing numbers for subsets of the {Boolean} $n$-cube with bounded {Vapnik}-{Chervonenkis} dimension" -, type = "Tech. Report" -, number = "UCSC-CRL-91-41" -, institution = "University of California at Santa Cruz" -, year = 1991 -, keywords = "Vapnik-Chervonenkis dimension, range spaces" -, comments = "related to spanning trees with small crossing number" -, update = "93.09 matousek" +, author = "D. Haussler" +, title = "Sphere packing numbers for subsets of the {Boolean} $n$-cube with bounded {Vapnik}-{Chervonenkis} dimension" +, type = "Tech. Report" +, number = "UCSC-CRL-91-41" +, institution = "University of California at Santa Cruz" +, year = 1991 +, keywords = "Vapnik-Chervonenkis dimension, range spaces" +, comments = "related to spanning trees with small crossing number" +, update = "93.09 matousek" } @inproceedings{hw-ensrq-86 -, author = "D. Haussler and Emo Welzl" -, title = "Epsilon-nets and simplex range queries" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "61--71" -, precedes = "hw-ensrq-87" -, cites = "cgl-pgd-83, cgl-pgd-83, c-papop-85, c-pps4d-85, de-opstt-84, dey-3spa-84, d-cltem-78, ew-hrsls-86, eh-dsptt-84, g-cp-67, vc-ucrfe-71, wd-ssvcc-81, w-pr-82, y-3spia-83, yy-gaddg-85, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "D. Haussler and Emo Welzl" +, title = "Epsilon-nets and simplex range queries" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "61--71" +, precedes = "hw-ensrq-87" +, cites = "cgl-pgd-83, cgl-pgd-83, c-papop-85, c-pps4d-85, de-opstt-84, dey-3spa-84, d-cltem-78, ew-hrsls-86, eh-dsptt-84, g-cp-67, vc-ucrfe-71, wd-ssvcc-81, w-pr-82, y-3spia-83, yy-gaddg-85, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{hw-ensrq-87 -, author = "D. Haussler and Emo Welzl" -, title = "Epsilon-nets and simplex range queries" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "127--151" -, keywords = "combinatorial geometry, probabilistic geometry, probability theory, reporting, counting, half spaces, simplices, $d$-dimensional" -, succeeds = "hw-ensrq-86" -, update = "98.03 mitchell" +, author = "D. Haussler and Emo Welzl" +, title = "Epsilon-nets and simplex range queries" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "127--151" +, keywords = "combinatorial geometry, probabilistic geometry, probability theory, reporting, counting, half spaces, simplices, $d$-dimensional" +, succeeds = "hw-ensrq-86" +, update = "98.03 mitchell" } @inproceedings{h-ubcpc-89 -, author = "W. Haverdings" -, title = "Use of the {BRL-CAD} package in the construction of a geometric model of the {General} {Dynamics} {F-16A} {Air} {Combat} {Fighter} for vulnerability assessments" -, booktitle = "Proc. BRL-CAD Symposium `89" -, publisher = "American Defense Preparadness Assoc." -, address = "Aberdeen Proving Ground, MD" -, year = 1989 -, pages = "170--193" -, update = "95.05 agarwal" +, author = "W. Haverdings" +, title = "Use of the {BRL-CAD} package in the construction of a geometric model of the {General} {Dynamics} {F-16A} {Air} {Combat} {Fighter} for vulnerability assessments" +, booktitle = "Proc. BRL-CAD Symposium `89" +, publisher = "American Defense Preparadness Assoc." +, address = "Aberdeen Proving Ground, MD" +, year = 1989 +, pages = "170--193" +, update = "95.05 agarwal" } @article{h-nccp-89 -, author = "R. Hayward" -, title = "A note on the circle containment problem" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "263--264" +, author = "R. Hayward" +, title = "A note on the circle containment problem" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "263--264" } @article{hrw-sercc-89 -, author = "R. Hayward and D. Rappaport and R. Wenger" -, title = "Some extremal results on circles containing points" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "253--258" +, author = "R. Hayward and D. Rappaport and R. Wenger" +, title = "Some extremal results on circles containing points" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "253--258" } @article{h-lbocf-87 -, author = "R. B. Hayward" -, title = "A lower bound for the optimal crossing-free {Hamiltonian} cycle problem" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "327--343" +, author = "R. B. Hayward" +, title = "A lower bound for the optimal crossing-free {Hamiltonian} cycle problem" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "327--343" } @article{h-wtg-85 -, author = "R. B. Hayward" -, title = "Weakly Triangulated Graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 39 -, year = 1985 -, pages = "200--209" -, update = "98.03 bibrelex" +, author = "R. B. Hayward" +, title = "Weakly Triangulated Graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 39 +, year = 1985 +, pages = "200--209" +, update = "98.03 bibrelex" } @techreport{hhm-owtg-87 -, author = "R. B. Hayward and C. Hoang and F. Maffrey" -, title = "Optimizing Weakly Triangulated Graphs" -, type = "Manuscript" -, institution = "??" -, year = 1987 -, update = "01.04 smid, 98.03 bibrelex" +, author = "R. B. Hayward and C. Hoang and F. Maffrey" +, title = "Optimizing Weakly Triangulated Graphs" +, type = "Manuscript" +, institution = "??" +, year = 1987 +, update = "01.04 smid, 98.03 bibrelex" } @techreport{hk-ing-93 -, author = "R. B. Hayward and P. Kearney" -, title = "Investigating {NeST} Graphs" -, number = "TR-CS-04-93" -, institution = "U. Lethbridge" -, year = 1993 -, update = "98.11 bibrelex" +, author = "R. B. Hayward and P. Kearney" +, title = "Investigating {NeST} Graphs" +, number = "TR-CS-04-93" +, institution = "U. Lethbridge" +, year = 1993 +, update = "98.11 bibrelex" } @inproceedings{hk-tfnr-94 -, author = "R. B. Hayward and P. Kearney" -, title = "Tolerance-Free {NeST} Representations" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "275--280" -, cites = "bc-tpg-84, bd-nstg-93, bilf-putg-91, g-igsec-74, g-agtpg-80, gm-gigt-82, gmt-tg-84, gls-papg, h-ag-57, h-wtg-85, hk-ing-93, k-nr-, mrt-ttg-88, r-ig-69, t-cbmal-83, bm-gta-76, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "R. B. Hayward and P. Kearney" +, title = "Tolerance-Free {NeST} Representations" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "275--280" +, cites = "bc-tpg-84, bd-nstg-93, bilf-putg-91, g-igsec-74, g-agtpg-80, gm-gigt-82, gmt-tg-84, gls-papg, h-ag-57, h-wtg-85, hk-ing-93, k-nr-, mrt-ttg-88, r-ig-69, t-cbmal-83, bm-gta-76, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{hafg-ecpmm-95 -, author = "V. Hayward and S. Aubry and A. Foisy and Y. Ghallab" -, title = "Efficient collision prediction among many moving objects" -, journal = "Internat. J. Robot. Res." -, volume = 14 -, number = 2 -, year = 1995 -, pages = "129--143" -, update = "98.07 bibrelex" +, author = "V. Hayward and S. Aubry and A. Foisy and Y. Ghallab" +, title = "Efficient collision prediction among many moving objects" +, journal = "Internat. J. Robot. Res." +, volume = 14 +, number = 2 +, year = 1995 +, pages = "129--143" +, update = "98.07 bibrelex" } @phdthesis{h-dcadd-88 -, author = "C. Hazelwood" -, title = "A Divide and Conquer Approach to $D$-dimensional Triangulations" -, school = "Department of Computer Science, University of Texas at Austin" -, year = 1988 -, keywords = "doctoral thesis" -, annote = "Contains Pascal code for algorithms" +, author = "C. Hazelwood" +, title = "A Divide and Conquer Approach to $D$-dimensional Triangulations" +, school = "Department of Computer Science, University of Texas at Austin" +, year = 1988 +, keywords = "doctoral thesis" +, annote = "Contains Pascal code for algorithms" } @article{h-act-93 -, author = "C. Hazlewood" -, title = "Approximating Constrained Tetrahedrizations" -, journal = "Comput. Aided Geom. Design" -, volume = 10 -, number = 1 -, month = jun -, year = 1993 -, pages = "67--87" -, update = "95.05 held" +, author = "C. Hazlewood" +, title = "Approximating Constrained Tetrahedrizations" +, journal = "Comput. Aided Geom. Design" +, volume = 10 +, number = 1 +, month = jun +, year = 1993 +, pages = "67--87" +, update = "95.05 held" } @inproceedings{hk-cdvm-97 -, author = "T. He and A. Kaufman" -, title = "Collision Detection for Volumetric Models" -, booktitle = "Proc. IEEE Visualization" -, site = "Phoenix, AZ" -, year = 1997 -, pages = "??" -, update = "98.03 mitchell" +, author = "T. He and A. Kaufman" +, title = "Collision Detection for Volumetric Models" +, booktitle = "Proc. IEEE Visualization" +, site = "Phoenix, AZ" +, year = 1997 +, pages = "??" +, update = "98.03 mitchell" } @inproceedings{hm-cgl-97 -, author = "Weiqing He and Kim Marriott" -, title = "Constrained Graph Layout" -, editor = "Stephen North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "217--232" -, keywords = "graph drawing, constraints" -, update = "98.11 bibrelex, 98.07 tamassia+vismara" +, author = "Weiqing He and Kim Marriott" +, title = "Constrained Graph Layout" +, editor = "Stephen North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "217--232" +, keywords = "graph drawing, constraints" +, update = "98.11 bibrelex, 98.07 tamassia+vismara" } @article{h-epafm-91 -, author = "Xin He" -, title = "An efficient parallel algorithm for finding minimum weight matching for points on a convex polygon" -, journal = "Inform. Process. Lett." -, volume = 37 -, number = 2 -, year = 1991 -, pages = "111--116" +, author = "Xin He" +, title = "An efficient parallel algorithm for finding minimum weight matching for points on a convex polygon" +, journal = "Inform. Process. Lett." +, volume = 37 +, number = 2 +, year = 1991 +, pages = "111--116" } @techreport{h-frdpt-90 -, author = "X. He" -, title = "On Finding the Rectangular Duals of Planar Triangulated Graphs" -, number = "90-24" -, institution = "Department of Computer Science, University of Buffalo" -, year = 1990 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "X. He" +, title = "On Finding the Rectangular Duals of Planar Triangulated Graphs" +, number = "90-24" +, institution = "Department of Computer Science, University of Buffalo" +, year = 1990 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{hk-pccoc-93 -, author = "Xin He and Ming-Yang Kao" -, title = "Parallel Construction of Canonical Ordering and Convex Drawing of Triconnected Planar Graphs" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "303--312" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Xin He and Ming-Yang Kao" +, title = "Parallel Construction of Canonical Ordering and Convex Drawing of Triconnected Planar Graphs" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "303--312" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @inproceedings{hk-reldp-95 -, author = "X. He and M.-Y. Kao" -, title = "Regular Edge Labelings and Drawings of Planar Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "96--103" -, keywords = "graph drawing, planar, straight-line, visibility, survey" -, update = "95.01 tamassia" +, author = "X. He and M.-Y. Kao" +, title = "Regular Edge Labelings and Drawings of Planar Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "96--103" +, keywords = "graph drawing, planar, straight-line, visibility, survey" +, update = "95.01 tamassia" } @inproceedings{h-otrpa-94 -, author = "Patrick Healy" -, title = "An {$O(n)$}-Time Rectangle Placement Algorithm" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "33--37" -, update = "00.11 smid, 00.07 icking" +, author = "Patrick Healy" +, title = "An {$O(n)$}-Time Rectangle Placement Algorithm" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "33--37" +, update = "00.11 smid, 00.07 icking" } @book{hb-cg-86 -, author = "D. Hearn and M. P. Baker" -, title = "Computer Graphics" -, publisher = "Prentice Hall" -, year = 1986 -, update = "97.11 bibrelex" +, author = "D. Hearn and M. P. Baker" +, title = "Computer Graphics" +, publisher = "Prentice Hall" +, year = 1986 +, update = "97.11 bibrelex" } @inproceedings{hp-rchsg-96 -, author = "M. A. Hearst and J. O. Pedersen" -, title = "Reexamining the Cluster Hypothesis: Scatter/Gather on Retrieval Results" -, editor = "Hans-Peter Frei and Donna Harman and Peter Sch{\"a}uble and Ross Wilkinson" -, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" -, publisher = "ACM Press" -, address = "New York" -, month = aug -, year = 1996 -, pages = "76--84" -, update = "98.07 agarwal" +, author = "M. A. Hearst and J. O. Pedersen" +, title = "Reexamining the Cluster Hypothesis: Scatter/Gather on Retrieval Results" +, editor = "Hans-Peter Frei and Donna Harman and Peter Sch{\"a}uble and Ross Wilkinson" +, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" +, publisher = "ACM Press" +, address = "New York" +, month = aug +, year = 1996 +, pages = "76--84" +, update = "98.07 agarwal" } @article{hk-cfmvc-93 -, author = "D. Heath and S. Kasif" -, title = "The complexity of finding minimal {Voronoi} covers with application to machine learning" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "289--305" -, update = "96.09 devillers" +, author = "D. Heath and S. Kasif" +, title = "The complexity of finding minimal {Voronoi} covers with application to machine learning" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "289--305" +, update = "96.09 devillers" } @inproceedings{h-epgsp-84 -, author = "L. Heath" -, title = "Embedding planar graphs in seven pages" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "74--83" +, author = "L. Heath" +, title = "Embedding planar graphs in seven pages" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "74--83" } @techreport{hp-nrmwt-92 -, author = "L. Heath and S. Pemmaraju" -, title = "New results for the minimum weight triangulation problem" -, type = "Technical {Report}" -, number = "92-30" -, institution = "Dept. Comput. Sci., Virginia Politechnic Inst. and State Univ." -, year = 1992 -, update = "98.03 bibrelex" +, author = "L. Heath and S. Pemmaraju" +, title = "New results for the minimum weight triangulation problem" +, type = "Technical {Report}" +, number = "92-30" +, institution = "Dept. Comput. Sci., Virginia Politechnic Inst. and State Univ." +, year = 1992 +, update = "98.03 bibrelex" } @article{hp-nrmwt-94 -, author = "L. Heath and S. Pemmaraju" -, title = "New results for the minimum weight triangulation problem" -, journal = "Algorithmica" -, volume = 12 -, year = 1994 -, pages = "533--552" -, update = "97.11 bibrelex" +, author = "L. Heath and S. Pemmaraju" +, title = "New results for the minimum weight triangulation problem" +, journal = "Algorithmica" +, volume = 12 +, year = 1994 +, pages = "533--552" +, update = "97.11 bibrelex" } @inproceedings{hpr-pfabv-90 -, author = "L. S. Heath and P. K. Paripati and J. W. Roach" -, title = "Polyhedra: faces are better than vertices" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "191--199" -, precedes = "hpr-rpfab-93" -, cites = "gt-tgt-87, g-cp-67, h-cvmev-82, m-ism-88, mw-fowf-80, p-prr-89, r-rrstm-80, rwr-sdi3d-86, rpw-csbsd-87, w-ebdss-85, ZZZ" -, update = "98.07 bibrelex, 96.09 devillers" +, author = "L. S. Heath and P. K. Paripati and J. W. Roach" +, title = "Polyhedra: faces are better than vertices" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "191--199" +, precedes = "hpr-rpfab-93" +, cites = "gt-tgt-87, g-cp-67, h-cvmev-82, m-ism-88, mw-fowf-80, p-prr-89, r-rrstm-80, rwr-sdi3d-86, rpw-csbsd-87, w-ebdss-85, ZZZ" +, update = "98.07 bibrelex, 96.09 devillers" } @article{hpr-rpfab-93 -, author = "L. S. Heath and P. K. Paripati and J. W. Roach" -, title = "Representing polyhedra: faces are better than vertices" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "327--351" -, succeeds = "hpr-pfabv-90" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "L. S. Heath and P. K. Paripati and J. W. Roach" +, title = "Representing polyhedra: faces are better than vertices" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "327--351" +, succeeds = "hpr-pfabv-90" +, update = "97.11 bibrelex, 96.09 devillers" } @mastersthesis{h-ciqfb-80 -, author = "P. Heckbert" -, title = "Color Image Quantization for Frame Buffer Display" -, school = "Department of Mathematics, Massachusetts Institute of Technology" -, year = 1980 -, note = "Bachelor's Thesis" -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "P. Heckbert" +, title = "Color Image Quantization for Frame Buffer Display" +, school = "Department of Mathematics, Massachusetts Institute of Technology" +, year = 1980 +, note = "Bachelor's Thesis" +, keywords = "master thesis" +, update = "97.11 bibrelex" } @article{h-ciqfb-82 -, author = "P. Heckbert" -, title = "Color image quantization frame buffer display" -, journal = "ACM Trans. Comput. Graph." -, volume = 16 -, number = 3 -, year = 1982 -, pages = "297--304" -, update = "98.03 bibrelex" +, author = "P. Heckbert" +, title = "Color image quantization frame buffer display" +, journal = "ACM Trans. Comput. Graph." +, volume = 16 +, number = 3 +, year = 1982 +, pages = "297--304" +, update = "98.03 bibrelex" } @inproceedings{h-dmr-92 -, author = "Paul Heckbert" -, title = "Discontinuity meshing for radiosity" -, booktitle = "3. Eurographics Workshop on Rendering" -, month = may -, year = 1992 -, pages = "203--215" -, update = "98.11 bibrelex" +, author = "Paul Heckbert" +, title = "Discontinuity meshing for radiosity" +, booktitle = "3. Eurographics Workshop on Rendering" +, month = may +, year = 1992 +, pages = "203--215" +, update = "98.11 bibrelex" } @book{h-gg4-94 -, title = "Graphics Gems {IV}" -, editor = "Paul Heckbert" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, note = "comes with either MAC or DOS floppy" -, keywords = "computer graphics, image processing" -, comments = "C code from books in Gems series available in subdirectories +, title = "Graphics Gems {IV}" +, editor = "Paul Heckbert" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, note = "comes with either MAC or DOS floppy" +, keywords = "computer graphics, image processing" +, comments = "C code from books in Gems series available in subdirectories of \url{ftp://princeton.edu/pub/Graphics/GraphicsGems}" -, update = "94.09 heckbert" +, update = "94.09 heckbert" } @incollection{h-mrt-94 -, author = "Paul S. Heckbert" -, title = "A Minimal Ray Tracer" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "375--381" -, keywords = "ray tracing, obfuscation" -, update = "94.09 heckbert" -, annote = "Answers the question: how short can a ray tracer be? +, author = "Paul S. Heckbert" +, title = "A Minimal Ray Tracer" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "375--381" +, keywords = "ray tracing, obfuscation" +, update = "94.09 heckbert" +, annote = "Answers the question: how short can a ray tracer be? Contains C code." } @incollection{h-bcpiw-94 -, author = "Paul S. Heckbert" -, title = "Bilinear {Coons} Patch Image Warping" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "438--446" -, keywords = "morph, resampling" -, update = "94.09 heckbert" -, annote = "Presents a fast technique to warp an image according to +, author = "Paul S. Heckbert" +, title = "Bilinear {Coons} Patch Image Warping" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "438--446" +, keywords = "morph, resampling" +, update = "94.09 heckbert" +, annote = "Presents a fast technique to warp an image according to four boundary curves. This can be used to correct distortions in images, or to introduce them, for special effects purposes. Contains C code." } @inproceedings{h-rf-92 -, author = "P. S. Heckbert" -, title = "Radiosity in flatland" -, booktitle = "Eurographics 92" -, site = "Cambridge, UK" -, month = sep -, year = 1992 -, pages = "181--192" -, update = "97.11 bibrelex" +, author = "P. S. Heckbert" +, title = "Radiosity in flatland" +, booktitle = "Eurographics 92" +, site = "Cambridge, UK" +, month = sep +, year = 1992 +, pages = "181--192" +, update = "97.11 bibrelex" } @phdthesis{h-sgiua-91 -, author = "P. S. Heckbert" -, title = "Simulating Global Illumination Using Adaptive Meshing" -, school = "University of California" -, address = "Berkeley, CA" -, month = jan -, year = 1991 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "P. S. Heckbert" +, title = "Simulating Global Illumination Using Adaptive Meshing" +, school = "University of California" +, address = "Berkeley, CA" +, month = jan +, year = 1991 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @techreport{hg-fpath-95 -, author = "P. S. Heckbert and M. Garland" -, title = "Fast polygonal approximation of terrains and height fields" -, type = "Report" -, number = "CMU-CS-95-181" -, institution = "Carnegie Mellon University" -, year = 1995 -, keywords = "surface approximation, mesh simplification, decimiation, terrains" -, update = "96.01 mitchell" +, author = "P. S. Heckbert and M. Garland" +, title = "Fast polygonal approximation of terrains and height fields" +, type = "Report" +, number = "CMU-CS-95-181" +, institution = "Carnegie Mellon University" +, year = 1995 +, keywords = "surface approximation, mesh simplification, decimiation, terrains" +, update = "96.01 mitchell" } @article{hh-btpo-84 -, author = "P. S. Heckbert and P. Hanrahan" -, title = "Beam Tracing Polygonal Objects" -, journal = "Comput. Graph." -, volume = 18 -, number = 3 -, year = 1984 -, pages = "119--127" -, note = "Proc. SIGGRAPH '84" -, update = "97.11 bibrelex" +, author = "P. S. Heckbert and P. Hanrahan" +, title = "Beam Tracing Polygonal Objects" +, journal = "Comput. Graph." +, volume = 18 +, number = 3 +, year = 1984 +, pages = "119--127" +, note = "Proc. SIGGRAPH '84" +, update = "97.11 bibrelex" } @inproceedings{hl-culbt-96 -, author = "R. Heckmann and T. Lengauer" -, title = "Computing upper and lower bounds on textile nesting problems" -, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "392--405" -, update = "97.03 smid" +, author = "R. Heckmann and T. Lengauer" +, title = "Computing upper and lower bounds on textile nesting problems" +, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "392--405" +, update = "97.03 smid" } @inproceedings{hk-esrpo-90 -, author = "S. Heep and H.-P. Kriegel" -, title = "Effiziente sekund{\"a}rspeichergeeignete {Randdarstellung} polygonaler {Objekte} und ihre algorithmische {Bearbeitung}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 11 -, update = "00.03 bibrelex" +, author = "S. Heep and H.-P. Kriegel" +, title = "Effiziente sekund{\"a}rspeichergeeignete {Randdarstellung} polygonaler {Objekte} und ihre algorithmische {Bearbeitung}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 11 +, update = "00.03 bibrelex" } @inproceedings{h-oatgp-93 -, author = "P. J. Heffernan" -, title = "An optimal algorithm for the two-guard problem" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "348--358" -, precedes = "h-oatgp-96" -, cites = "at-oadvp-81, c-tsplt-91a, cn-owr-86, c-ctpg-75, et-gpprl-89, f-spcwt-78, ghlst-ltavs-87, h-ltawm-90, ik-tgp-91, ll-ccagp-86, lp-esppr-84, lc-scvps-90, mw-omcpo-90i, o-agta-87, s-vpp-89, ZZZ" -, update = "98.03 bibrelex, 96.09 devillers, 93.09 jones" +, author = "P. J. Heffernan" +, title = "An optimal algorithm for the two-guard problem" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "348--358" +, precedes = "h-oatgp-96" +, cites = "at-oadvp-81, c-tsplt-91a, cn-owr-86, c-ctpg-75, et-gpprl-89, f-spcwt-78, ghlst-ltavs-87, h-ltawm-90, ik-tgp-91, ll-ccagp-86, lp-esppr-84, lc-scvps-90, mw-omcpo-90i, o-agta-87, s-vpp-89, ZZZ" +, update = "98.03 bibrelex, 96.09 devillers, 93.09 jones" } @article{h-oatgp-96 -, author = "P. J. Heffernan" -, title = "An optimal algorithm for the two-guard problem" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "15--44" -, succeeds = "h-oatgp-93" -, update = "96.09 devillers" +, author = "P. J. Heffernan" +, title = "An optimal algorithm for the two-guard problem" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "15--44" +, succeeds = "h-oatgp-93" +, update = "96.09 devillers" } @inproceedings{h-gaaps-93 -, author = "Paul J. Heffernan" -, title = "Generalized Approximate Algorithms for Point Set Congruence" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "373--384" -, update = "96.05 agarwal, 93.09 milone+mitchell+smid, 93.05 jones" +, author = "Paul J. Heffernan" +, title = "Generalized Approximate Algorithms for Point Set Congruence" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "373--384" +, update = "96.05 agarwal, 93.09 milone+mitchell+smid, 93.05 jones" } @inproceedings{h-ltawm-90 -, author = "P. J. Heffernan" -, title = "Linear-time algorithms for weakly-monotone polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "236--239" -, cites = "c-tsplt-90t, et-gpprl-89, gjpt-tsp-78, hm-svpap-90, kkt-ptots-90i, lp-oafkp-79, ps-tspm-81, t-ocspt-88, ZZZ" -, update = "98.07 bibrelex" +, author = "P. J. Heffernan" +, title = "Linear-time algorithms for weakly-monotone polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "236--239" +, cites = "c-tsplt-90t, et-gpprl-89, gjpt-tsp-78, hm-svpap-90, kkt-ptots-90i, lp-oafkp-79, ps-tspm-81, t-ocspt-88, ZZZ" +, update = "98.07 bibrelex" } @article{h-tsmac-91 -, author = "P. J. Heffernan" -, title = "The Translation Square Map and Approximate Congruence" -, journal = "Inform. Process. Lett." -, volume = 39 -, year = 1991 -, pages = "153--159" -, update = "93.09 milone+mitchell" +, author = "P. J. Heffernan" +, title = "The Translation Square Map and Approximate Congruence" +, journal = "Inform. Process. Lett." +, volume = 39 +, year = 1991 +, pages = "153--159" +, update = "93.09 milone+mitchell" } @phdthesis{h-tcgpm-91 -, author = "P. J. Heffernan" -, title = "Topics in computational geometry: point matching and polygonal visibility" -, type = "Ph.{D}. Thesis" -, school = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1991 -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "P. J. Heffernan" +, title = "Topics in computational geometry: point matching and polygonal visibility" +, type = "Ph.{D}. Thesis" +, school = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1991 +, keywords = "doctoral thesis" +, update = "93.05 jones" } @techreport{hm-oacvp-90 -, author = "P. J. Heffernan and Joseph S. B. Mitchell" -, title = "An optimal algorithm for computing visibility in the plane" -, type = "Technical {Report}" -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1990 -, keywords = "visibility" -, precedes = "hm-oacvp-91" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "P. J. Heffernan and Joseph S. B. Mitchell" +, title = "An optimal algorithm for computing visibility in the plane" +, type = "Technical {Report}" +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1990 +, keywords = "visibility" +, precedes = "hm-oacvp-91" +, update = "98.03 mitchell, 95.01 mitchell" } @inproceedings{hm-oacvp-91 -, author = "P. J. Heffernan and Joseph S. B. Mitchell" -, title = "An optimal algorithm for computing visibility in the plane" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "437--448" -, keywords = "visibility, lower envelopes, polygons with holes" -, succeeds = "hm-oacvp-90" -, precedes = "hm-oacvp-95" -, update = "98.03 mitchell, 96.05 mitchell" +, author = "P. J. Heffernan and Joseph S. B. Mitchell" +, title = "An optimal algorithm for computing visibility in the plane" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "437--448" +, keywords = "visibility, lower envelopes, polygons with holes" +, succeeds = "hm-oacvp-90" +, precedes = "hm-oacvp-95" +, update = "98.03 mitchell, 96.05 mitchell" } @article{hm-oacvp-95 -, author = "P. J. Heffernan and Joseph S. B. Mitchell" -, title = "An optimal algorithm for computing visibility in the plane" -, journal = "SIAM J. Comput." -, volume = 24 -, number = 1 -, year = 1995 -, pages = "184--201" -, keywords = "visibility, lower envelopes, polygons with holes" -, succeeds = "hm-oacvp-91" -, update = "98.03 mitchell, 96.05 mitchell" +, author = "P. J. Heffernan and Joseph S. B. Mitchell" +, title = "An optimal algorithm for computing visibility in the plane" +, journal = "SIAM J. Comput." +, volume = 24 +, number = 1 +, year = 1995 +, pages = "184--201" +, keywords = "visibility, lower envelopes, polygons with holes" +, succeeds = "hm-oacvp-91" +, update = "98.03 mitchell, 96.05 mitchell" } @inproceedings{hm-svpap-90 -, author = "P. J. Heffernan and Joseph S. B. Mitchell" -, title = "Structured visibility profiles with applications to problems in simple polygons" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "53--62" -, cites = "acm-mpoap-89, at-oadvp-81, bt-ladts-86, c-ept-90, cg-vippg-89, e-hdpa-85, ea-lacvp-81, fhs-cmsp-89, gjpt-tsp-78, g-cvpcs-86, gy-fchsp-83, ghlst-ltavs-87, js-clvpa-87, k-osps-83, kkt-ptots-90i, l-vsp-83, ll-cvpe-84, lp-esppr-84, ma-lafch-79, m-olcch-87, ps-rgpcr-86, ps-tspm-81, s-ltaml-86, tv-otats-88, t-ltass-86a, t-stsps-89, t-spsts-85, t-mss-85, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "P. J. Heffernan and Joseph S. B. Mitchell" +, title = "Structured visibility profiles with applications to problems in simple polygons" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "53--62" +, cites = "acm-mpoap-89, at-oadvp-81, bt-ladts-86, c-ept-90, cg-vippg-89, e-hdpa-85, ea-lacvp-81, fhs-cmsp-89, gjpt-tsp-78, g-cvpcs-86, gy-fchsp-83, ghlst-ltavs-87, js-clvpa-87, k-osps-83, kkt-ptots-90i, l-vsp-83, ll-cvpe-84, lp-esppr-84, ma-lafch-79, m-olcch-87, ps-rgpcr-86, ps-tspm-81, s-ltaml-86, tv-otats-88, t-ltass-86a, t-stsps-89, t-spsts-85, t-mss-85, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{hs-adaps-91 -, author = "P. J. Heffernan and S. Schirra" -, title = "Approximate decision algorithms for point set congruence" -, type = "Report" -, number = "MPI-I-91-110" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1991 -, precedes = "hs-adaps-92" +, author = "P. J. Heffernan and S. Schirra" +, title = "Approximate decision algorithms for point set congruence" +, type = "Report" +, number = "MPI-I-91-110" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1991 +, precedes = "hs-adaps-92" } @inproceedings{hs-adaps-92 -, author = "P. J. Heffernan and S. Schirra" -, title = "Approximate decision algorithms for point set congruence" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "93--101" -, succeeds = "hs-adaps-91" -, precedes = "hs-adaps-94" -, cites = "amww-cssgo-88, akmsw-mpnrc-91, amo-nf-90, amz-apmp-89, b-mbimu-84, b-azede-90, fm-cpgcs-91, gt-namfp-88, gtt-nfa-90, h-tsmac-91, hk-cmhdp-90, hks-uevsi-91, isi-mgftc-89, i-acsdp-90, krt-fdmfa-92, ls-ocmgc-91i, s-udbde-88, s-aaac-90, s-pma-90, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "P. J. Heffernan and S. Schirra" +, title = "Approximate decision algorithms for point set congruence" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "93--101" +, succeeds = "hs-adaps-91" +, precedes = "hs-adaps-94" +, cites = "amww-cssgo-88, akmsw-mpnrc-91, amo-nf-90, amz-apmp-89, b-mbimu-84, b-azede-90, fm-cpgcs-91, gt-namfp-88, gtt-nfa-90, h-tsmac-91, hk-cmhdp-90, hks-uevsi-91, isi-mgftc-89, i-acsdp-90, krt-fdmfa-92, ls-ocmgc-91i, s-udbde-88, s-aaac-90, s-pma-90, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers" } @article{hs-adaps-94 -, author = "P. J. Heffernan and S. Schirra" -, title = "Approximate decision algorithms for point set congruence" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "137--156" -, succeeds = "hs-adaps-92" -, update = "96.09 devillers" +, author = "P. J. Heffernan and S. Schirra" +, title = "Approximate decision algorithms for point set congruence" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "137--156" +, succeeds = "hs-adaps-92" +, update = "96.09 devillers" } @article{h-udpdn-81 -, author = "L. Heffter" -, title = "{\"U}ber das {Problem} der {Nachbargebiete}" -, journal = "Math. Ann." -, volume = 38 -, year = 1981 -, pages = "477--508" +, author = "L. Heffter" +, title = "{\"U}ber das {Problem} der {Nachbargebiete}" +, journal = "Math. Ann." +, volume = 38 +, year = 1981 +, pages = "477--508" } @article{h-acpr-82 -, author = "A. Heged{\"u}s" -, title = "Algorithms for Covering Polygons by Rectangles" -, journal = "Comput. Aided Design" -, volume = 14 -, year = 1982 -, update = "98.03 bibrelex" +, author = "A. Heged{\"u}s" +, title = "Algorithms for Covering Polygons by Rectangles" +, journal = "Comput. Aided Design" +, volume = 14 +, year = 1982 +, update = "98.03 bibrelex" } @article{hsb-tarms-90 -, author = "W. Heiden and M. Schlenkrich and J. Brickmann" -, title = "Triangulation algorithms for the representation of molecular surface properties" -, journal = "J. Comput. Aided Mol. Des." -, volume = 4 -, year = 1990 -, pages = "255--269" -, update = "98.03 bibrelex" +, author = "W. Heiden and M. Schlenkrich and J. Brickmann" +, title = "Triangulation algorithms for the representation of molecular surface properties" +, journal = "J. Comput. Aided Mol. Des." +, volume = 4 +, year = 1990 +, pages = "255--269" +, update = "98.03 bibrelex" } @inproceedings{hss-uccli-94 -, author = "W. Heidrich and P. Slusallek and H.-P. Seidel" -, title = "Using {C}++ class libraries from an interpreted language" -, booktitle = "Technology of Object-Oriented Languages and Systems" -, nickname = "TOOLS" -, site = "Santa Barbara, CA" -, year = 1994 -, pages = "397--408" -, update = "98.07 bibrelex" +, author = "W. Heidrich and P. Slusallek and H.-P. Seidel" +, title = "Using {C}++ class libraries from an interpreted language" +, booktitle = "Technology of Object-Oriented Languages and Systems" +, nickname = "TOOLS" +, site = "Santa Barbara, CA" +, year = 1994 +, pages = "397--408" +, update = "98.07 bibrelex" } @article{h-mgasi-83 -, author = "E. Heighway" -, title = "A mesh generator for automatically subdividing irregular polygons into quadrilaterals" -, journal = "IEEE Trans. Magn." -, volume = 19 -, number = 6 -, year = 1983 -, pages = "2535--2538" -, update = "97.11 bibrelex" +, author = "E. Heighway" +, title = "A mesh generator for automatically subdividing irregular polygons into quadrilaterals" +, journal = "IEEE Trans. Magn." +, volume = 19 +, number = 6 +, year = 1983 +, pages = "2535--2538" +, update = "97.11 bibrelex" } @article{hb-tdatm-82 -, author = "E. A. Heighway and C. S. Biddlecombe" -, title = "Two Dimensional Automatic Triangular Mesh Generation for the Finite Element Electromagnetic Package {PE2D}" -, journal = "IEEE Trans. Magn." -, volume = "MAG-18" -, year = 1982 -, pages = "594--598" -, annote = "``Poorness'' measure ``fractional difference of area - of element and equilateral triangle of same - perimeter''. Nodes are moved to fix this." +, author = "E. A. Heighway and C. S. Biddlecombe" +, title = "Two Dimensional Automatic Triangular Mesh Generation for the Finite Element Electromagnetic Package {PE2D}" +, journal = "IEEE Trans. Magn." +, volume = "MAG-18" +, year = 1982 +, pages = "594--598" +, annote = "``Poorness'' measure ``fractional difference of area + of element and equilateral triangle of same + perimeter''. Nodes are moved to fix this." } @inproceedings{h-tstel-01 -, author = "Laura Heinrich-Litan" -, title = "Time-Space Tradeoffs for Exact {$L_\infty$} Nearest Neighbor Search in High Dimensions" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "93--96" -, update = "01.04 icking" +, author = "Laura Heinrich-Litan" +, title = "Time-Space Tradeoffs for Exact {$L_\infty$} Nearest Neighbor Search in High Dimensions" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "93--96" +, update = "01.04 icking" } @incollection{hrr-araga-91 -, author = "J. Heintz and T. Reico and M.-F. Roy" -, title = "Algorithms in real algebraic geometry and applications to computational geometry" -, editor = "J. E. Goodman and R. Pollack and W. Steiger" -, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" -, publisher = "American Mathematical Society, Association for Computing Machinery" -, address = "Providence, RI" -, year = 1991 -, pages = "137--163" -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "J. Heintz and T. Reico and M.-F. Roy" +, title = "Algorithms in real algebraic geometry and applications to computational geometry" +, editor = "J. E. Goodman and R. Pollack and W. Steiger" +, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" +, publisher = "American Mathematical Society, Association for Computing Machinery" +, address = "Providence, RI" +, year = 1991 +, pages = "137--163" +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{hrs-dccss-94 -, author = "J. Heintz and M.-F. Roy and P. Solern{\'o}" -, title = "Description of the connected components of a semialgebraic set in single exponential time" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "121--140" -, update = "98.07 agarwal" +, author = "J. Heintz and M.-F. Roy and P. Solern{\'o}" +, title = "Description of the connected components of a semialgebraic set in single exponential time" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "121--140" +, update = "98.07 agarwal" } @inproceedings{hrs-ocss-89 -, author = "J. Heintz and M.-F. Roy and P. Solern{\'o}" -, title = "On the complexity of semialgebraic sets" -, booktitle = "Proc. IFIP San Francisco" -, year = 1989 -, pages = "293--298" -, update = "98.03 agarwal" +, author = "J. Heintz and M.-F. Roy and P. Solern{\'o}" +, title = "On the complexity of semialgebraic sets" +, booktitle = "Proc. IFIP San Francisco" +, year = 1989 +, pages = "293--298" +, update = "98.03 agarwal" } @incollection{hrs-sepfs-93 -, author = "J. Heintz and M.-F. Roy and P. Solern{\'o}" -, title = "Single exponential path finding in semi-algebraic sets {II}: {The} general case" -, editor = "C. Bajaj" -, booktitle = "Algebraic Geometry and its Applications" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1993 -, pages = "467--481" -, update = "98.07 agarwal" +, author = "J. Heintz and M.-F. Roy and P. Solern{\'o}" +, title = "Single exponential path finding in semi-algebraic sets {II}: {The} general case" +, editor = "C. Bajaj" +, booktitle = "Algebraic Geometry and its Applications" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1993 +, pages = "467--481" +, update = "98.07 agarwal" } @inproceedings{hp-brd-89 -, author = "G. Heinzinger and B. Paden" -, title = "Bounds on Robot Dynamics" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Scottsdale, AZ" -, month = may -, year = 1989 -, update = "97.11 bibrelex" +, author = "G. Heinzinger and B. Paden" +, title = "Bounds on Robot Dynamics" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Scottsdale, AZ" +, month = may +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{hl-eapni-93 -, author = "J. Heistermann and T. Lengauer" -, title = "Efficient Automatic Part Nesting on Irregular and Inhomogeneous Surfaces" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "251--259" -, keywords = "optimization, CAD, packing" -, update = "93.09 rote, 93.05 smid" +, author = "J. Heistermann and T. Lengauer" +, title = "Efficient Automatic Part Nesting on Irregular and Inhomogeneous Surfaces" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "251--259" +, keywords = "optimization, CAD, packing" +, update = "93.09 rote, 93.05 smid" } @inproceedings{h-fiacv-93 -, author = "Martin Held" -, title = "A Fast Incremental Algorithm for Computing the {Voronoi} Diagram of a Planar Shape" -, booktitle = "Communicating with Virtual Worlds" -, nickname = "CGI '93" -, publisher = "Springer-Verlag" -, address = "Lausanne, Switzerland" -, month = jun -, year = 1993 -, pages = "318--329" -, update = "98.07 bibrelex, 98.03 mitchell, 93.09 held" +, author = "Martin Held" +, title = "A Fast Incremental Algorithm for Computing the {Voronoi} Diagram of a Planar Shape" +, booktitle = "Communicating with Virtual Worlds" +, nickname = "CGI '93" +, publisher = "Springer-Verlag" +, address = "Lausanne, Switzerland" +, month = jun +, year = 1993 +, pages = "318--329" +, update = "98.07 bibrelex, 98.03 mitchell, 93.09 held" } @article{h-gbitp-91 -, author = "Martin Held" -, title = "A Geometry-Based Investigation of the Tool Path Generation for Zigzag Pocket Machining" -, journal = "Visual Comput." -, volume = 7 -, number = "5--6" -, month = sep -, year = 1991 -, pages = "296--308" -, update = "98.03 mitchell, 93.09 held" +, author = "Martin Held" +, title = "A Geometry-Based Investigation of the Tool Path Generation for Zigzag Pocket Machining" +, journal = "Visual Comput." +, volume = 7 +, number = "5--6" +, month = sep +, year = 1991 +, pages = "296--308" +, update = "98.03 mitchell, 93.09 held" } @inproceedings{h-ertp-98 -, author = "Martin Held" -, title = "Efficient and Reliable Triangulation of Polygons" -, booktitle = "Proc. Comput. Graphics Internat. 1998" -, site = "Hannover, Germany" -, month = jun -, year = 1998 -, pages = "633--643" -, update = "98.07 held+mitchell" +, author = "Martin Held" +, title = "Efficient and Reliable Triangulation of Polygons" +, booktitle = "Proc. Comput. Graphics Internat. 1998" +, site = "Hannover, Germany" +, month = jun +, year = 1998 +, pages = "633--643" +, update = "98.07 held+mitchell" } @techreport{h-eceri-96 -, author = "Martin Held" -, title = "{ERIT} -- {A} Collection of Efficient and Reliable Intersection Tests" -, type = "Technical {Report}" -, institution = "University at Stony Brook" -, year = 1996 -, update = "98.03 mitchell" -, annote = "Submitted for publication" +, author = "Martin Held" +, title = "{ERIT} -- {A} Collection of Efficient and Reliable Intersection Tests" +, type = "Technical {Report}" +, institution = "University at Stony Brook" +, year = 1996 +, update = "98.03 mitchell" +, annote = "Submitted for publication" } @techreport{h-ffist-98 -, author = "Martin Held" -, title = "{FIST}: {Fast} Industrial-Strength Triangulation of Polygons" -, institution = "University at Stony Brook" -, year = 1998 -, comments = "Submitted for publication" -, update = "98.07 mitchell" +, author = "Martin Held" +, title = "{FIST}: {Fast} Industrial-Strength Triangulation of Polygons" +, institution = "University at Stony Brook" +, year = 1998 +, comments = "Submitted for publication" +, update = "98.07 mitchell" } @inproceedings{h-gscgs-89 -, author = "Martin Held" -, title = "GeoPocket -- {A} Sophisticated Computational Geometry Solution of Geometrical and Technological Problems Arising from Pocket Machining" -, editor = "F. Kimura and A. Rolstad{\aa}s" -, booktitle = "Proc. Computer Applications in Production and Engineering" -, nickname = "CAPE '89" -, publisher = "North-Holland" -, month = oct -, year = 1989 -, pages = "283--293" -, update = "98.07 bibrelex, 98.03 mitchell, 93.09 held" +, author = "Martin Held" +, title = "GeoPocket -- {A} Sophisticated Computational Geometry Solution of Geometrical and Technological Problems Arising from Pocket Machining" +, editor = "F. Kimura and A. Rolstad{\aa}s" +, booktitle = "Proc. Computer Applications in Production and Engineering" +, nickname = "CAPE '89" +, publisher = "North-Holland" +, month = oct +, year = 1989 +, pages = "283--293" +, update = "98.07 bibrelex, 98.03 mitchell, 93.09 held" } @inproceedings{h-igvdp-93 -, author = "Martin Held" -, title = "Incremental Generation of {Voronoi} Diagrams of Planar Shapes" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "70--73" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" +, author = "Martin Held" +, title = "Incremental Generation of {Voronoi} Diagrams of Planar Shapes" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "70--73" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" } @inproceedings{h-cvdcp-94 -, author = "Martin Held" -, title = "On Computing {Voronoi} Diagrams of Convex Polyhedra by Means of Wavefront Propagation" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "128--133" -, cites = "a-am3sa-91, c-edt-92, gp-acfsm1-92, gykd-cdma3-91, h-fiacv-93, h-hcsco-90t, l-matps-82, m-rcvdp-93, ns-blss-91, obs-stcav-92, p-nmasp-78, p-masp-77, ps-cgi-90, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 94.09 jones" +, author = "Martin Held" +, title = "On Computing {Voronoi} Diagrams of Convex Polyhedra by Means of Wavefront Propagation" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "128--133" +, cites = "a-am3sa-91, c-edt-92, gp-acfsm1-92, gykd-cdma3-91, h-fiacv-93, h-hcsco-90t, l-matps-82, m-rcvdp-93, ns-blss-91, obs-stcav-92, p-nmasp-78, p-masp-77, ps-cgi-90, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 94.09 jones" } @book{h-cgpm-91 -, author = "Martin Held" -, title = "On the Computational Geometry of Pocket Machining" -, series = "Lecture Notes Comput. Sci." -, volume = 500 -, publisher = "Springer-Verlag" -, month = jun -, year = 1991 -, isbn = "3-540-54103-9" -, update = "98.03 mitchell, 93.09 held" +, author = "Martin Held" +, title = "On the Computational Geometry of Pocket Machining" +, series = "Lecture Notes Comput. Sci." +, volume = 500 +, publisher = "Springer-Verlag" +, month = jun +, year = 1991 +, isbn = "3-540-54103-9" +, update = "98.03 mitchell, 93.09 held" } @article{h-vdocc-98 -, author = "M. Held" -, title = "Voronoi Diagrams and Offset Curves of Curvilinear Polygons" -, journal = "Comput. Aided Design" -, volume = 30 -, number = 4 -, month = apr -, year = 1998 -, pages = "287--300" -, update = "98.07 held" +, author = "M. Held" +, title = "Voronoi Diagrams and Offset Curves of Curvilinear Polygons" +, journal = "Comput. Aided Design" +, volume = 30 +, number = 4 +, month = apr +, year = 1998 +, pages = "287--300" +, update = "98.07 held" } @article{h-veare-01 -, author = "M. Held" -, title = "VRONI: {An} engineering approach to the reliable and efficient computation of {Voronoi} diagrams of points and line segments" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "95--123" -, update = "01.07 smid" +, author = "M. Held" +, title = "VRONI: {An} engineering approach to the reliable and efficient computation of {Voronoi} diagrams of points and line segments" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "95--123" +, update = "01.07 smid" } @inproceedings{h-zcgzp-90 -, author = "Martin Held" -, title = "ZigPocket -- On the Computational Geometry of Zigzag Pocket Machining" -, editor = "T. S. Chua and T. L. Kunii" -, booktitle = "Proc. CG International '90" -, nickname = "CGI '90" -, publisher = "Springer-Verlag" -, month = jun -, year = 1990 -, pages = "281--296" -, update = "98.07 bibrelex, 98.03 mitchell, 93.09 held" +, author = "Martin Held" +, title = "ZigPocket -- On the Computational Geometry of Zigzag Pocket Machining" +, editor = "T. S. Chua and T. L. Kunii" +, booktitle = "Proc. CG International '90" +, nickname = "CGI '90" +, publisher = "Springer-Verlag" +, month = jun +, year = 1990 +, pages = "281--296" +, update = "98.07 bibrelex, 98.03 mitchell, 93.09 held" } @inproceedings{hkm-rtcdm-96 -, author = "M. Held and J. Klosowski and Joseph S. B. Mitchell" -, title = "Real-Time Collision Detection for Motion Simulation within Complex Environments" -, booktitle = "Proc. ACM SIGGRAPH'96 Visual Proceedings" -, site = "New Orleans, LA" -, year = 1996 -, pages = 151 -, precedes = "khmsz-ecdubv-98" -, update = "98.03 mitchell" +, author = "M. Held and J. Klosowski and Joseph S. B. Mitchell" +, title = "Real-Time Collision Detection for Motion Simulation within Complex Environments" +, booktitle = "Proc. ACM SIGGRAPH'96 Visual Proceedings" +, site = "New Orleans, LA" +, year = 1996 +, pages = 151 +, precedes = "khmsz-ecdubv-98" +, update = "98.03 mitchell" } @inproceedings{hkm-cdftv-96 -, author = "Martin Held and James T. Klosowski and Joseph S. B. Mitchell" -, title = "Collision detection for fly-throughs in virtual environments" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V13--V14" -, precedes = "hkm-ecdmv-95" -, cites = "clmp-ecdie-94, gsf-scdp-94, hkm-ecdmv-95, hkm-scgbb-95, hs-parss-93, h-cdiga-95, lm-fidgm-95, mms-qsrs-94, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat+mitchell" +, author = "Martin Held and James T. Klosowski and Joseph S. B. Mitchell" +, title = "Collision detection for fly-throughs in virtual environments" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V13--V14" +, precedes = "hkm-ecdmv-95" +, cites = "clmp-ecdie-94, gsf-scdp-94, hkm-ecdmv-95, hkm-scgbb-95, hs-parss-93, h-cdiga-95, lm-fidgm-95, mms-qsrs-94, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat+mitchell" } @techreport{hkm-ecdmv-94 -, author = "Martin Held and James T. Klosowski and Joseph S. B. Mitchell" -, title = "Evaluation of Collision Detection Methods for Virtual Reality Fly-Throughs" -, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" -, year = 1994 -, keywords = "mesh generation, stabbing number, BSP, R-star trees, R-tree" -, precedes = "hkm-ecdmv-95" -, update = "95.09 mitchell" +, author = "Martin Held and James T. Klosowski and Joseph S. B. Mitchell" +, title = "Evaluation of Collision Detection Methods for Virtual Reality Fly-Throughs" +, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" +, year = 1994 +, keywords = "mesh generation, stabbing number, BSP, R-star trees, R-tree" +, precedes = "hkm-ecdmv-95" +, update = "95.09 mitchell" } @inproceedings{hkm-ecdmv-95 -, author = "Martin Held and James T. Klosowski and Joseph S. B. Mitchell" -, title = "Evaluation of Collision Detection Methods for Virtual Reality Fly-Throughs" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "205--210" -, keywords = "mesh generation, stabbing number, BSP, R-star trees, R-tree" -, succeeds = "hkm-ecdmv-94" -, update = "96.05 mitchell, 95.09 jones+mitchell" +, author = "Martin Held and James T. Klosowski and Joseph S. B. Mitchell" +, title = "Evaluation of Collision Detection Methods for Virtual Reality Fly-Throughs" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "205--210" +, keywords = "mesh generation, stabbing number, BSP, R-star trees, R-tree" +, succeeds = "hkm-ecdmv-94" +, update = "96.05 mitchell, 95.09 jones+mitchell" } @unpublished{hkm-scgbb-95 -, author = "Martin Held and J. T. Klosowski and Joseph S. B. Mitchell" -, title = "Speed comparison of generalized bounding boxes" -, year = 1995 -, note = "??" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Martin Held and J. T. Klosowski and Joseph S. B. Mitchell" +, title = "Speed comparison of generalized bounding boxes" +, year = 1995 +, note = "??" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{hla-pmbcp-94 -, author = "Martin Held and G. Luk{\'a}cs and L. Andor" -, title = "Pocket Machining Based on Contour-Parallel Tool Paths Generated by Means of Proximity Maps" -, journal = "Comput. Aided Design" -, volume = 26 -, number = 3 -, month = mar -, year = 1994 -, pages = "189--203" -, update = "98.03 mitchell, 96.09 devillers, 95.01 held" +, author = "Martin Held and G. Luk{\'a}cs and L. Andor" +, title = "Pocket Machining Based on Contour-Parallel Tool Paths Generated by Means of Proximity Maps" +, journal = "Comput. Aided Design" +, volume = 26 +, number = 3 +, month = mar +, year = 1994 +, pages = "189--203" +, update = "98.03 mitchell, 96.09 devillers, 95.01 held" } % ### others? @incollection{h??-skcsn-95 -, author = "T. Helgason and others" -, title = "On shortest $k$-edge connected {Steiner} networks with rectilinear distance" -, editor = "Ding-Zhu Du and Panos M. Pardalos" -, booktitle = "Minmax and Applications" -, series = "Nonconvex Optimization and Applications" -, year = 1995 -, pages = "" -, keywords = "optimization, Steiner tree, $L_1$ metrics" -, update = "95.09 korneenko" +, author = "T. Helgason and others" +, title = "On shortest $k$-edge connected {Steiner} networks with rectilinear distance" +, editor = "Ding-Zhu Du and Panos M. Pardalos" +, booktitle = "Minmax and Applications" +, series = "Nonconvex Optimization and Applications" +, year = 1995 +, pages = "" +, keywords = "optimization, Steiner tree, $L_1$ metrics" +, update = "95.09 korneenko" } @inproceedings{h-taatm-90 -, author = "M. Heller" -, title = "Triangulation algorithms for adaptive terrain modeling" -, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" -, year = 1990 -, pages = "163--174" -, update = "98.07 devillers" +, author = "M. Heller" +, title = "Triangulation algorithms for adaptive terrain modeling" +, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" +, year = 1990 +, pages = "163--174" +, update = "98.07 devillers" } @inproceedings{hkp-oais-97 -, author = "J. H. Hellerstein and E. Koustsoupias and C. H. Papadimtriou" -, title = "On the analysis of indexing schemes" -, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." -, year = 1997 -, pages = "249--256" -, update = "97.07 agarwal" +, author = "J. H. Hellerstein and E. Koustsoupias and C. H. Papadimtriou" +, title = "On the analysis of indexing schemes" +, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." +, year = 1997 +, pages = "249--256" +, update = "97.07 agarwal" } @article{h-umkkm-23 -, author = "E. Helly" -, title = "{\"U}ber {Mengen} konvexer {K{\"o}rper} mit gemeinschaftlichen {Punkten}" -, journal = "Jahresbericht Deutsch. Math. Verein." -, volume = 32 -, year = 1923 -, pages = "175--176" -, update = "97.11 bibrelex" +, author = "E. Helly" +, title = "{\"U}ber {Mengen} konvexer {K{\"o}rper} mit gemeinschaftlichen {Punkten}" +, journal = "Jahresbericht Deutsch. Math. Verein." +, volume = 32 +, year = 1923 +, pages = "175--176" +, update = "97.11 bibrelex" } @article{h-usvam-30 -, author = "E. Helly" -, title = "{\"U}ber {Systeme} von abgeschlossenen {Mengen} mit gemeinschaftlichen {Punkten}" -, journal = "Monaths. Math. und Physik" -, volume = 37 -, year = 1930 -, pages = "281--302" -, update = "96.09 agarwal, 95.01 matousek" +, author = "E. Helly" +, title = "{\"U}ber {Systeme} von abgeschlossenen {Mengen} mit gemeinschaftlichen {Punkten}" +, journal = "Monaths. Math. und Physik" +, volume = 37 +, year = 1930 +, pages = "281--302" +, update = "96.09 agarwal, 95.01 matousek" } @book{h-lp-89 -, author = "Armin Hemmerling" -, title = "Labyrinth Problems: Labyrinth-Searching Abilities of Automata" -, publisher = "B. G. Teubner" -, address = "Leipzig" -, year = 1989 -, update = "99.11 bibrelex, 97.03 icking" +, author = "Armin Hemmerling" +, title = "Labyrinth Problems: Labyrinth-Searching Abilities of Automata" +, publisher = "B. G. Teubner" +, address = "Leipzig" +, year = 1989 +, update = "99.11 bibrelex, 97.03 icking" } @techreport{h-nwpcd-93 -, author = "Armin Hemmerling" -, title = "Navigation Without Perception of Coordinates and Distances" -, number = "TR-93-018" -, institution = "International Computer Science Institute" -, address = "Berkeley, California" -, year = 1993 -, precedes = "h-nwpcd-94" -, update = "97.03 icking" +, author = "Armin Hemmerling" +, title = "Navigation Without Perception of Coordinates and Distances" +, number = "TR-93-018" +, institution = "International Computer Science Institute" +, address = "Berkeley, California" +, year = 1993 +, precedes = "h-nwpcd-94" +, update = "97.03 icking" } @article{h-nwpcd-94 -, author = "Armin Hemmerling" -, title = "Navigation Without Perception of Coordinates and Distances" -, journal = "Mathematical Logic Quarterly" -, volume = 40 -, year = 1994 -, pages = "237--260" -, succeeds = "h-nwpcd-93" -, update = "97.03 icking" +, author = "Armin Hemmerling" +, title = "Navigation Without Perception of Coordinates and Distances" +, journal = "Mathematical Logic Quarterly" +, volume = 40 +, year = 1994 +, pages = "237--260" +, succeeds = "h-nwpcd-93" +, update = "97.03 icking" } @phdthesis{h-efitd-84 -, author = "M. R. Henderson" -, title = "Extraction of feature information from three dimensional {CAD} data" -, school = "Purdue Univ." -, address = "West Lafayette, IN" -, year = 1984 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "M. R. Henderson" +, title = "Extraction of feature information from three dimensional {CAD} data" +, school = "Purdue Univ." +, address = "West Lafayette, IN" +, year = 1984 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{ht-kdtre-82 -, author = "T. C. Henderson and E. Triendl" -, title = "The $k$-d tree representation of edge descriptions" -, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." -, site = "Munich, West Germany" -, year = 1982 -, pages = "806--809" +, author = "T. C. Henderson and E. Triendl" +, title = "The $k$-d tree representation of edge descriptions" +, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." +, site = "Munich, West Germany" +, year = 1982 +, pages = "806--809" } @article{h-sppto-85 -, author = "M. Henig" -, title = "The shortest path problem with two objective functions" -, journal = "European J. Oper. Res." -, volume = 25 -, year = 1985 -, pages = "281--291" -, keywords = "dynamic programming, networks, multiattribute utility" -, update = "93.09 milone+mitchell" +, author = "M. Henig" +, title = "The shortest path problem with two objective functions" +, journal = "European J. Oper. Res." +, volume = 25 +, year = 1985 +, pages = "281--291" +, keywords = "dynamic programming, networks, multiattribute utility" +, update = "93.09 milone+mitchell" } @incollection{hrgz-bpcp-97 -, author = "M. Henk and J. Richter-Gebert and G. M. Ziegler" -, title = "Basic properties of convex polytopes" -, chapter = 13 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "243--270" -, update = "97.11 orourke" +, author = "M. Henk and J. Richter-Gebert and G. M. Ziegler" +, title = "Basic properties of convex polytopes" +, chapter = 13 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "243--270" +, update = "97.11 orourke" } @book{h-cit-79 -, author = "M. Henle" -, title = "A Combinatorial Introduction to Topology" -, publisher = "W. H. Freeman" -, address = "San Francisco, CA" -, year = 1979 -, update = "93.05 orourke" +, author = "M. Henle" +, title = "A Combinatorial Introduction to Topology" +, publisher = "W. H. Freeman" +, address = "San Francisco, CA" +, year = 1979 +, update = "93.05 orourke" } @book{h-gsss-11 -, author = "L. Henneberg" -, title = "Die graphische Statik der starren Systeme" -, publisher = "Leipzig" -, year = 1911 -, update = "97.11 bibrelex" +, author = "L. Henneberg" +, title = "Die graphische Statik der starren Systeme" +, publisher = "Leipzig" +, year = 1911 +, update = "97.11 bibrelex" } @inproceedings{h-unsgd-90 -, author = "Andreas Henrich" -, title = "{Die} {Unterst{\"u}tzung} von {Nicht}-{Standardanfragen} in geometrischen {Datenbanksystemen} durch r{\"a}umliche {Zugriffsstrukturen}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 12 -, update = "00.03 bibrelex" +, author = "Andreas Henrich" +, title = "{Die} {Unterst{\"u}tzung} von {Nicht}-{Standardanfragen} in geometrischen {Datenbanksystemen} durch r{\"a}umliche {Zugriffsstrukturen}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 12 +, update = "00.03 bibrelex" } @inproceedings{h-ipmda-96 -, author = "A. Henrich" -, title = "Improving the performance of multi-dimensional access structures based on $kd$-trees" -, booktitle = "Proc. 12th IEEE Intl. Conf. on Data Engineering" -, year = 1996 -, pages = "68--74" -, update = "97.07 agarwal" +, author = "A. Henrich" +, title = "Improving the performance of multi-dimensional access structures based on $kd$-trees" +, booktitle = "Proc. 12th IEEE Intl. Conf. on Data Engineering" +, year = 1996 +, pages = "68--74" +, update = "97.07 agarwal" } @inproceedings{hsw-ltsam-89 -, author = "A. Henrich and H.-W. Six and P. Widmayer" -, title = "The {LSD} tree: {S}patial access to multidimensional point and non-point objects" -, booktitle = "Proc. 15th VLDB Conference" -, year = 1989 -, pages = "45--53" -, update = "97.07 agarwal" +, author = "A. Henrich and H.-W. Six and P. Widmayer" +, title = "The {LSD} tree: {S}patial access to multidimensional point and non-point objects" +, booktitle = "Proc. 15th VLDB Conference" +, year = 1989 +, pages = "45--53" +, update = "97.07 agarwal" } @book{h-acca-77 -, author = "P. Henrici" -, title = "Applied and computational complex analysis" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1977 -, update = "99.11 bibrelex, 97.11 bibrelex" +, author = "P. Henrici" +, title = "Applied and computational complex analysis" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1977 +, update = "99.11 bibrelex, 97.11 bibrelex" } @techreport{hh-vlg-90 -, author = "T. R. Henry and S. E. Hudson" -, title = "Viewing Large Graphs" -, number = "90-13" -, institution = "Department of Computer Science, University of Arizona" -, year = 1990 -, keywords = "graph drawing" -, update = "98.07 patrignani, 93.09 tamassia" +, author = "T. R. Henry and S. E. Hudson" +, title = "Viewing Large Graphs" +, number = "90-13" +, institution = "Department of Computer Science, University of Arizona" +, year = 1990 +, keywords = "graph drawing" +, update = "98.07 patrignani, 93.09 tamassia" } @book{h-tdaz-08 -, author = "K. Hensel" -, title = "Theorie der algebraischen {Zahlen}" -, publisher = "B. G. Teubner" -, address = "Leipzig" -, year = 1908 -, update = "99.11 bibrelex, 97.11 bibrelex" +, author = "K. Hensel" +, title = "Theorie der algebraischen {Zahlen}" +, publisher = "B. G. Teubner" +, address = "Leipzig" +, year = 1908 +, update = "99.11 bibrelex, 97.11 bibrelex" } @article{h-bevv-56 -, author = "A. Heppes" -, title = "Beweis einer {Vermutung} von {A}. {V{\'a}zsonyi}" -, journal = "Acta Math. Acad. Sci. Hungar." -, volume = 7 -, year = 1956 -, pages = "463--466" -, update = "96.09 agarwal+devillers+orourke, 96.05 agarwal" +, author = "A. Heppes" +, title = "Beweis einer {Vermutung} von {A}. {V{\'a}zsonyi}" +, journal = "Acta Math. Acad. Sci. Hungar." +, volume = 7 +, year = 1956 +, pages = "463--466" +, update = "96.09 agarwal+devillers+orourke, 96.05 agarwal" } @article{h-fdd-64 -, author = "A. Heppes" -, title = "Filling a domain by discs" -, journal = "Periodica Mathematica Hungarica" -, volume = 8 -, year = 1964 -, pages = "363--371" -, update = "96.05 pocchiola" +, author = "A. Heppes" +, title = "Filling a domain by discs" +, journal = "Periodica Mathematica Hungarica" +, volume = 8 +, year = 1964 +, pages = "363--371" +, update = "96.05 pocchiola" } @article{h-scpep-92 -, author = "A. Heppes" -, title = "Solid circle-packings in the {Euclidean} plane" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "29--43" +, author = "A. Heppes" +, title = "Solid circle-packings in the {Euclidean} plane" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "29--43" } @article{hjt-tdrgo-95 -, author = "M. J. Herbert and C. B. Jones and D. S. Tudhope" -, title = "Three-dimensional Reconstruction of Geoscientific Objects from Serial Sections" -, journal = "Visual Comput." -, volume = 11 -, number = 7 -, year = 1995 -, pages = "343--359" -, update = "96.01 held" +, author = "M. J. Herbert and C. B. Jones and D. S. Tudhope" +, title = "Three-dimensional Reconstruction of Geoscientific Objects from Serial Sections" +, journal = "Visual Comput." +, volume = 11 +, number = 7 +, year = 1995 +, pages = "343--359" +, update = "96.01 held" } @article{h-hmhat-80 -, author = "D. Herbison-Evans" -, title = "How to merge hidden arcs and then not draw them" -, journal = "Computers and Graphics" -, volume = 5 -, year = 1980 -, pages = "79--81" +, author = "D. Herbison-Evans" +, title = "How to merge hidden arcs and then not draw them" +, journal = "Computers and Graphics" +, volume = 5 +, year = 1980 +, pages = "79--81" } @book{h-irpfc-80 -, author = "G. T. Herman" -, title = "Image Reconstruction from Projections: the Fundamentals of Computerized Tomography" -, publisher = "Academic Press" -, address = "New York" -, year = 1980 -, update = "98.11 bibrelex" +, author = "G. T. Herman" +, title = "Image Reconstruction from Projections: the Fundamentals of Computerized Tomography" +, publisher = "Academic Press" +, address = "New York" +, year = 1980 +, update = "98.11 bibrelex" } @inproceedings{h-sict-83 -, author = "G. T. Herman" -, title = "The special issue on computerized tomography" -, booktitle = "Proc. IEEE" -, volume = 71 -, year = 1983 -, pages = "291--292" -, update = "98.11 bibrelex" +, author = "G. T. Herman" +, title = "The special issue on computerized tomography" +, booktitle = "Proc. IEEE" +, volume = 71 +, year = 1983 +, pages = "291--292" +, update = "98.11 bibrelex" } @book{hm-im-77 -, author = "R. Hermann and C. Martin" -, title = "Interdisciplinary Mathematics" -, volume = 13 -, publisher = "Math. Sci. Press" -, year = 1977 -, update = "98.03 bibrelex" +, author = "R. Hermann and C. Martin" +, title = "Interdisciplinary Mathematics" +, volume = 13 +, publisher = "Math. Sci. Press" +, year = 1977 +, update = "98.03 bibrelex" } @article{h-tadpe-82 -, author = "F. Hermeline" -, title = "Triangulation automatique d'un poly{\`e}dre en dimension {$N$}" -, journal = "RAIRO-Mathematical Modelling And Numerical Analysis-Modelisation Mathematique Et Analyse Numerique" -, volume = 16 -, number = 3 -, year = 1982 -, pages = "211--242" -, update = "93.09 rote" -, annote = "Incremental algorithm for NDVD." +, author = "F. Hermeline" +, title = "Triangulation automatique d'un poly{\`e}dre en dimension {$N$}" +, journal = "RAIRO-Mathematical Modelling And Numerical Analysis-Modelisation Mathematique Et Analyse Numerique" +, volume = 16 +, number = 3 +, year = 1982 +, pages = "211--242" +, update = "93.09 rote" +, annote = "Incremental algorithm for NDVD." } @inproceedings{b-foais-96 -, author = "A. {Hern{\'a}ndez Barrera}" -, title = "Finding an {$o(n^2 \log n)$} algorithm is sometimes hard" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "289--294" -, update = "96.09 mitchell" +, author = "A. {Hern{\'a}ndez Barrera}" +, title = "Finding an {$o(n^2 \log n)$} algorithm is sometimes hard" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "289--294" +, update = "96.09 mitchell" } @inproceedings{hna-mscpp-99 -, author = "Antonio Hern{\'a}ndez-Barrera and Subhas Chandra Nandy and Tetsuo Asano" -, title = "The {Minkowski} Sum of a Convex Polyhedron and a Polyhedral Terrain" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "135--136" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Antonio Hern{\'a}ndez-Barrera and Subhas Chandra Nandy and Tetsuo Asano" +, title = "The {Minkowski} Sum of a Convex Polyhedron and a Polyhedral Terrain" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "135--136" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{h-cg-94 -, author = "Gregorio Hern{\'a}ndez-Pe{\~n}alver" -, title = "Controlling Guards" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "387--392" -, succeeds = "h-cg-94c" -, cites = "c-ctpg-75, lhl-mcgpk-93, o-agta-87, o-gnfmg-83, s-rrag-92, s-hpp-89, ZZZ" -, update = "00.11 smid, 00.07 icking, 98.11 bibrelex, 94.09 jones" +, author = "Gregorio Hern{\'a}ndez-Pe{\~n}alver" +, title = "Controlling Guards" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "387--392" +, succeeds = "h-cg-94c" +, cites = "c-ctpg-75, lhl-mcgpk-93, o-agta-87, o-gnfmg-83, s-rrag-92, s-hpp-89, ZZZ" +, update = "00.11 smid, 00.07 icking, 98.11 bibrelex, 94.09 jones" } @inproceedings{h-cg-94c -, author = "Gregorio Hern{\'a}ndez-Pe{\~n}alver" -, title = "Controlling Guards" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "68--71" -, precedes = "h-cg-94" -, update = "00.11 smid, 00.07 icking" +, author = "Gregorio Hern{\'a}ndez-Pe{\~n}alver" +, title = "Controlling Guards" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "68--71" +, precedes = "h-cg-94" +, update = "00.11 smid, 00.07 icking" } @inproceedings{hhmmn-gtg-97 -, author = "C. Hernando and F. Hurtado and A. Marquez and M. Mora and M. Noy" -, title = "Geometric Tree Graphs" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "28--29" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "C. Hernando and F. Hurtado and A. Marquez and M. Mora and M. Noy" +, title = "Geometric Tree Graphs" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "28--29" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{hhn-gncm-99 -, author = "Maria del Carmen Hernando and Ferran Hurtado and Marc Noy" -, title = "Graphs of Non-Crossing Matchings" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "97--99" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Maria del Carmen Hernando and Ferran Hurtado and Marc Noy" +, title = "Graphs of Non-Crossing Matchings" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "97--99" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{h-fatcd-93 -, author = "J. Hershberger" -, title = "A faster algorithm for the two-center decision problem" -, journal = "Inform. Process. Lett." -, volume = 47 -, year = 1993 -, pages = "23--29" -, update = "96.05 agarwal" +, author = "J. Hershberger" +, title = "A faster algorithm for the two-center decision problem" +, journal = "Inform. Process. Lett." +, volume = 47 +, year = 1993 +, pages = "23--29" +, update = "96.05 agarwal" } @article{h-ndssp-91 -, author = "J. Hershberger" -, title = "A new data structure for shortest path queries in a simple polygon" -, journal = "Inform. Process. Lett." -, volume = 38 -, year = 1991 -, pages = "231--235" +, author = "J. Hershberger" +, title = "A new data structure for shortest path queries in a simple polygon" +, journal = "Inform. Process. Lett." +, volume = 38 +, year = 1991 +, pages = "231--235" } @article{h-ovgat-89 -, author = "J. Hershberger" -, title = "An Optimal Visibility Graph Algorithm for Triangulated Simple Polygons" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "141--155" -, succeeds = "h-fvgsp-87" -, update = "01.04 icking, 97.11 bibrelex" +, author = "J. Hershberger" +, title = "An Optimal Visibility Graph Algorithm for Triangulated Simple Polygons" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "141--155" +, succeeds = "h-fvgsp-87" +, update = "01.04 icking, 97.11 bibrelex" } @inproceedings{h-cmsp-93 -, author = "J. Hershberger" -, title = "Compliant motion in a simple polygon" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "397--398" -, keywords = "video review" -, cites = "b-zsaa-91, bh-csaa-92, fhs-cmsp-89, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "J. Hershberger" +, title = "Compliant motion in a simple polygon" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "397--398" +, keywords = "video review" +, cites = "b-zsaa-91, bh-csaa-92, fhs-cmsp-89, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{h-fuenl-89 -, author = "J. Hershberger" -, title = "Finding the upper envelope of $n$ line segments in {$O(n\log n)$} time" -, journal = "Inform. Process. Lett." -, volume = 33 -, year = 1989 -, pages = "169--174" -, update = "93.05 devillers" +, author = "J. Hershberger" +, title = "Finding the upper envelope of $n$ line segments in {$O(n\log n)$} time" +, journal = "Inform. Process. Lett." +, volume = 33 +, year = 1989 +, pages = "169--174" +, update = "93.05 devillers" } @inproceedings{h-fvgsp-87 -, author = "J. Hershberger" -, title = "Finding the Visibility Graph of a Simple Polygon in Time Proportional to its Size" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "11--20" -, precedes = "h-ovgat-89" -, cites = "aaghi-vdp-86, b-prcv-75, cg-vippg-85, ci-tsc-84, gjpt-tsp-78, ghlst-ltavs-86, gmpr-nrll-77, gs-pmgsc-85, hm-ftsp-83, hm-ndsrs-82, tv-otats-86, a-jschc-87, ZZZ" -, update = "01.04 icking, 98.03 bibrelex" +, author = "J. Hershberger" +, title = "Finding the Visibility Graph of a Simple Polygon in Time Proportional to its Size" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "11--20" +, precedes = "h-ovgat-89" +, cites = "aaghi-vdp-86, b-prcv-75, cg-vippg-85, ci-tsc-84, gjpt-tsp-78, ghlst-ltavs-86, gmpr-nrll-77, gs-pmgsc-85, hm-ftsp-83, hm-ndsrs-82, tv-otats-86, a-jschc-87, ZZZ" +, update = "01.04 icking, 98.03 bibrelex" } @inproceedings{h-msde-91 -, author = "J. Hershberger" -, title = "Minimizing the sum of diameters efficiently" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "62--65" -, precedes = "h-msde-92" -, cites = "agss-ltacv-89, abky-cabmm-88, ds-dcmdf-89, e-acg-87, egs-oplms-86, gt-ltasc-85, gj-cigtn-79, hs-ftp-89, j-nccog-82, k-osps-83, ms-cscgl-84, ms-ppgmm-91, ps-cgi-85, rw-gc-89, s-wcaso-90, ZZZ" -, update = "98.07 bibrelex" +, author = "J. Hershberger" +, title = "Minimizing the sum of diameters efficiently" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "62--65" +, precedes = "h-msde-92" +, cites = "agss-ltacv-89, abky-cabmm-88, ds-dcmdf-89, e-acg-87, egs-oplms-86, gt-ltasc-85, gj-cigtn-79, hs-ftp-89, j-nccog-82, k-osps-83, ms-cscgl-84, ms-ppgmm-91, ps-cgi-85, rw-gc-89, s-wcaso-90, ZZZ" +, update = "98.07 bibrelex" } @article{h-msde-92 -, author = "J. Hershberger" -, title = "Minimizing the sum of diameters efficiently" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "111--118" -, succeeds = "h-msde-91" +, author = "J. Hershberger" +, title = "Minimizing the sum of diameters efficiently" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "111--118" +, succeeds = "h-msde-91" } @inproceedings{h-opats-92 -, author = "J. Hershberger" -, title = "Optimal parallel algorithms for triangulated simple polygons" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "33--42" -, precedes = "h-opats-95" -, cites = "acg-cdctd-89, acw-opavs-91, ag-pasft-86, at-oadvp-81, bt-ladts-86, cgmrs-namlp-90, c-tpca-82, c-tsplt-91a, cegghss-rspug-91, cg-vippg-89, cg-fc1ds-86, cct-rpatd-91, c-pms-88, cv-acdto-88, dk-fdpi-82, gsg-pmvsp-90, g-pcief-91, gh-ospqs-89, ghlst-ltavs-87, ghs-citds-91, h-ndssp-91, hs-cmlpg-91, krs-ppp-85, lp-esppr-84, ps-rgpcr-85, ps-cgi-85, rr-ostrp-89, sv-flcas-88, s-sfira-90, sv-fmmsp-81, s-cgfns-89, tv-opatc-89, tv-epba-85, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "J. Hershberger" +, title = "Optimal parallel algorithms for triangulated simple polygons" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "33--42" +, precedes = "h-opats-95" +, cites = "acg-cdctd-89, acw-opavs-91, ag-pasft-86, at-oadvp-81, bt-ladts-86, cgmrs-namlp-90, c-tpca-82, c-tsplt-91a, cegghss-rspug-91, cg-vippg-89, cg-fc1ds-86, cct-rpatd-91, c-pms-88, cv-acdto-88, dk-fdpi-82, gsg-pmvsp-90, g-pcief-91, gh-ospqs-89, ghlst-ltavs-87, ghs-citds-91, h-ndssp-91, hs-cmlpg-91, krs-ppp-85, lp-esppr-84, ps-rgpcr-85, ps-cgi-85, rr-ostrp-89, sv-flcas-88, s-sfira-90, sv-fmmsp-81, s-cgfns-89, tv-opatc-89, tv-epba-85, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers" } @article{h-opats-95 -, author = "J. Hershberger" -, title = "Optimal parallel algorithms for triangulated simple polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "145--170" -, keywords = "parallel algorithms, simple polygons, shortest paths, shortest path queries, shortest path trees, ray shooting, relative convex hull" -, succeeds = "h-opats-92" -, update = "96.09 devillers" +, author = "J. Hershberger" +, title = "Optimal parallel algorithms for triangulated simple polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "145--170" +, keywords = "parallel algorithms, simple polygons, shortest paths, shortest path queries, shortest path trees, ray shooting, relative convex hull" +, succeeds = "h-opats-92" +, update = "96.09 devillers" } @inproceedings{h-ueop-90 -, author = "J. Hershberger" -, title = "Upper envelope onion peeling" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "368--379" -, precedes = "h-ueop-92" +, author = "J. Hershberger" +, title = "Upper envelope onion peeling" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "368--379" +, precedes = "h-ueop-92" } @article{h-ueop-92 -, author = "J. Hershberger" -, title = "Upper envelope onion peeling" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "93--110" -, succeeds = "h-ueop-90" +, author = "J. Hershberger" +, title = "Upper envelope onion peeling" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "93--110" +, succeeds = "h-ueop-90" } @article{hg-ospan-88 -, author = "J. Hershberger and Leonidas J. Guibas" -, title = "An {$O(n^{2})$} shortest path algorithm for a non-rotating convex body" -, journal = "J. Algorithms" -, volume = 9 -, year = 1988 -, pages = "18--46" -, update = "98.03 mitchell" +, author = "J. Hershberger and Leonidas J. Guibas" +, title = "An {$O(n^{2})$} shortest path algorithm for a non-rotating convex body" +, journal = "J. Algorithms" +, volume = 9 +, year = 1988 +, pages = "18--46" +, update = "98.03 mitchell" } @inproceedings{hrs-fd2ec-92 -, author = "J. Hershberger and M. Rauch and Subhash Suri" -, title = "Fully dynamic $2$-edge-connectivity in planar graphs" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "233--244" -, update = "98.03 mitchell" +, author = "J. Hershberger and M. Rauch and Subhash Suri" +, title = "Fully dynamic $2$-edge-connectivity in planar graphs" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "233--244" +, update = "98.03 mitchell" } @inproceedings{hs-eszp-94 -, author = "J. Hershberger and J. Snoeyink" -, title = "An Efficient Solution to the Zookeeper's Problem" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "104--109" -, cites = "cn-ozkr-89, gh-ospqs-89, h-ndssp-91, hs-cmlpg-91, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "J. Hershberger and J. Snoeyink" +, title = "An Efficient Solution to the Zookeeper's Problem" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "104--109" +, cites = "cn-ozkr-89, gh-ospqs-89, h-ndssp-91, hs-cmlpg-91, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{hs-oidpa-94 -, author = "J. Hershberger and J. Snoeyink" -, title = "An ${O}(n \log n)$ Implementation of the {Douglas}-{Peucker} Algorithm for Line Simplification" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "383--384" -, keywords = "video review" -, cites = "b-tcl-85, dghs-eafcr-93, dp-arnpr-73, hs-sudpl-92, m-samml-86, m-alg-87, m-olcch-87, r-ippap-, r-qcsaa-90, w-algau-85, ZZZ" -, update = "98.03 bibrelex, 94.09 jones" +, author = "J. Hershberger and J. Snoeyink" +, title = "An ${O}(n \log n)$ Implementation of the {Douglas}-{Peucker} Algorithm for Line Simplification" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "383--384" +, keywords = "video review" +, cites = "b-tcl-85, dghs-eafcr-93, dp-arnpr-73, hs-sudpl-92, m-samml-86, m-alg-87, m-olcch-87, r-ippap-, r-qcsaa-90, w-algau-85, ZZZ" +, update = "98.03 bibrelex, 94.09 jones" } @inproceedings{hs-aacsl-91 -, author = "J. Hershberger and J. Snoeyink" -, title = "Around and around: computing the shortest loop" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "157--161" -, cites = "hs-cmphc-90, bt-ladts-86, c-tpca-82, ceersstu-akp-91, ghlst-ltavs-87, lp-esppr-84, t-stsps-89, t-mss-85, ZZZ" -, update = "98.07 bibrelex" +, author = "J. Hershberger and J. Snoeyink" +, title = "Around and around: computing the shortest loop" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "157--161" +, cites = "hs-cmphc-90, bt-ladts-86, c-tpca-82, ceersstu-akp-91, ghlst-ltavs-87, lp-esppr-84, t-stsps-89, t-mss-85, ZZZ" +, update = "98.07 bibrelex" } @techreport{hs-cmphc-90 -, author = "J. Hershberger and J. Snoeyink" -, title = "Computing minimum length paths of a given homotopy class" -, type = "Technical Report" -, number = "RUU-CS-90-37" -, institution = "Utrecht University, Department of Computer Science" -, month = dec -, year = 1990 -, precedes = "hs-cmlpg-91, hs-cmlpg-94" -, update = "98.07 bibrelex" +, author = "J. Hershberger and J. Snoeyink" +, title = "Computing minimum length paths of a given homotopy class" +, type = "Technical Report" +, number = "RUU-CS-90-37" +, institution = "Utrecht University, Department of Computer Science" +, month = dec +, year = 1990 +, precedes = "hs-cmlpg-91, hs-cmlpg-94" +, update = "98.07 bibrelex" } @inproceedings{hs-cmlpg-91 -, author = "J. Hershberger and J. Snoeyink" -, title = "Computing minimum length paths of a given homotopy class" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "331--342" -, keywords = "path planning, topology" -, succeeds = "hs-cmphc-90" -, update = "98.07 bibrelex" +, author = "J. Hershberger and J. Snoeyink" +, title = "Computing minimum length paths of a given homotopy class" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "331--342" +, keywords = "path planning, topology" +, succeeds = "hs-cmphc-90" +, update = "98.07 bibrelex" } @article{hs-cmlpg-94 -, author = "J. Hershberger and J. Snoeyink" -, title = "Computing minimum length paths of a given homotopy class" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "63--98" -, succeeds = "hs-cmphc-90" -, update = "98.07 bibrelex, 95.01 devillers" +, author = "J. Hershberger and J. Snoeyink" +, title = "Computing minimum length paths of a given homotopy class" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "63--98" +, succeeds = "hs-cmphc-90" +, update = "98.07 bibrelex, 95.01 devillers" } @inproceedings{hs-cpmfl-92 -, author = "J. Hershberger and J. Snoeyink" -, title = "Convex polygons made from few lines and convex decompositions of polyhedra" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "376--387" +, author = "J. Hershberger and J. Snoeyink" +, title = "Convex polygons made from few lines and convex decompositions of polyhedra" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "376--387" } @inproceedings{hs-sudpl-92 -, author = "J. Hershberger and J. Snoeyink" -, title = "Speeding up the {Douglas-Peucker} line simplification algorithm" -, booktitle = "Proc. 5th Internat. Sympos. Spatial Data Handling" -, year = 1992 -, pages = "134--143" -, update = "97.11 bibrelex" +, author = "J. Hershberger and J. Snoeyink" +, title = "Speeding up the {Douglas-Peucker} line simplification algorithm" +, booktitle = "Proc. 5th Internat. Sympos. Spatial Data Handling" +, year = 1992 +, pages = "134--143" +, update = "97.11 bibrelex" } @inproceedings{hs-parss-93 -, author = "J. Hershberger and Subhash Suri" -, title = "A Pedestrian Approach to Ray Shooting: {Shoot} a Ray, Take a Walk" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1993 -, pages = "54--63" -, precedes = "hs-parss-95" -, update = "98.11 bibrelex, 98.03 mitchell, 96.05 mitchell, 93.05 smid" +, author = "J. Hershberger and Subhash Suri" +, title = "A Pedestrian Approach to Ray Shooting: {Shoot} a Ray, Take a Walk" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1993 +, pages = "54--63" +, precedes = "hs-parss-95" +, update = "98.11 bibrelex, 98.03 mitchell, 96.05 mitchell, 93.05 smid" } @article{hs-parss-95 -, author = "J. Hershberger and Subhash Suri" -, title = "A Pedestrian Approach to Ray Shooting: {Shoot} a Ray, Take a Walk" -, journal = "J. Algorithms" -, volume = 18 -, year = 1995 -, pages = "403--431" -, keywords = "mesh generation, triangulation, stabbing number" -, succeeds = "hs-parss-93" -, update = "98.03 mitchell, 96.05 mitchell+pocchiola" -, annote = "Special issue of selected papers from the +, author = "J. Hershberger and Subhash Suri" +, title = "A Pedestrian Approach to Ray Shooting: {Shoot} a Ray, Take a Walk" +, journal = "J. Algorithms" +, volume = 18 +, year = 1995 +, pages = "403--431" +, keywords = "mesh generation, triangulation, stabbing number" +, succeeds = "hs-parss-93" +, update = "98.03 mitchell, 96.05 mitchell+pocchiola" +, annote = "Special issue of selected papers from the 4th Symposium on Discrete Algorithms." } @article{hs-oaesp-?? -, author = "John Hershberger and Subhash Suri" -, title = "An optimal algorithm for {Euclidean} shortest paths in the plane" -, journal = "SIAM J. Comput." -, volume = "??" -, year = "??" -, pages = "To appear" -, succeeds = "hs-oaesp-95,hs-ecesp-93" -, update = "98.03 mitchell" +, author = "John Hershberger and Subhash Suri" +, title = "An optimal algorithm for {Euclidean} shortest paths in the plane" +, journal = "SIAM J. Comput." +, volume = "??" +, year = "??" +, pages = "To appear" +, succeeds = "hs-oaesp-95,hs-ecesp-93" +, update = "98.03 mitchell" } @techreport{hs-oaesp-95 -, author = "John Hershberger and Subhash Suri" -, title = "An optimal algorithm for {Euclidean} shortest paths in the plane" -, type = "Manuscript" -, institution = "Washington University" -, year = 1995 -, succeeds = "hs-ecesp-93" -, update = "97.03 smid, 96.05 mitchell" +, author = "John Hershberger and Subhash Suri" +, title = "An optimal algorithm for {Euclidean} shortest paths in the plane" +, type = "Manuscript" +, institution = "Washington University" +, year = 1995 +, succeeds = "hs-ecesp-93" +, update = "97.03 smid, 96.05 mitchell" } @article{hs-oaesp-99 -, author = "John Hershberger and Subhash Suri" -, title = "An optimal algorithm for {Euclidean} shortest paths in the plane" -, journal = "SIAM J. Comput." -, volume = 28 -, number = 6 -, year = 1999 -, pages = "2215--2256" -, update = "01.07 orourke" +, author = "John Hershberger and Subhash Suri" +, title = "An optimal algorithm for {Euclidean} shortest paths in the plane" +, journal = "SIAM J. Comput." +, volume = 28 +, number = 6 +, year = 1999 +, pages = "2215--2256" +, update = "01.07 orourke" } @inproceedings{hs-asdch-90 -, author = "J. Hershberger and Subhash Suri" -, title = "Applications of a semi-dynamic convex hull algorithm" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "380--392" -, update = "98.03 mitchell" +, author = "J. Hershberger and Subhash Suri" +, title = "Applications of a semi-dynamic convex hull algorithm" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "380--392" +, update = "98.03 mitchell" } @article{hs-asdch-92 -, author = "J. Hershberger and S. Suri" -, title = "Applications of a semi-dynamic convex hull algorithm" -, journal = "BIT" -, volume = 32 -, year = 1992 -, pages = "249--267" -, update = "98.03 bibrelex" +, author = "J. Hershberger and S. Suri" +, title = "Applications of a semi-dynamic convex hull algorithm" +, journal = "BIT" +, volume = 32 +, year = 1992 +, pages = "249--267" +, update = "98.03 bibrelex" } @inproceedings{hs-ebrpc-97 -, author = "J. Hershberger and S. Suri" -, title = "Efficient Breakout Routing in Printed Circuit Boards" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "460--462" -, cites = "cc-eafdp-97, clr-ia-90, dks-rrbs-91, m-slwrc-90, rbk-earvw-90, t-dsna-83, yd-slfrr-95, ydd-iprap-96, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "J. Hershberger and S. Suri" +, title = "Efficient Breakout Routing in Printed Circuit Boards" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "460--462" +, cites = "cc-eafdp-97, clr-ia-90, dks-rrbs-91, m-slwrc-90, rbk-earvw-90, t-dsna-83, yd-slfrr-95, ydd-iprap-96, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @inproceedings{hs-ecesp-93 -, author = "John Hershberger and Subhash Suri" -, title = "Efficient Computation of {Euclidean} Shortest Paths in the Plane" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "508--517" -, precedes = "hs-oaesp-95" -, update = "98.07 bibrelex, 97.11 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "John Hershberger and Subhash Suri" +, title = "Efficient Computation of {Euclidean} Shortest Paths in the Plane" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "508--517" +, precedes = "hs-oaesp-95" +, update = "98.07 bibrelex, 97.11 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @article{hs-fsdsp-97 -, author = "John Hershberger and Subhash Suri" -, title = "Finding a shortest diagonal of a simple polygon in linear time" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "149--160" -, update = "97.03 devillers" +, author = "John Hershberger and Subhash Suri" +, title = "Finding a shortest diagonal of a simple polygon in linear time" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "149--160" +, update = "97.03 devillers" } @inproceedings{hs-ftp-89 -, author = "J. Hershberger and Subhash Suri" -, title = "Finding tailored partitions" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "255--265" -, precedes = "hs-ftp-91" -, cites = "abky-cabmm-88, a-dp-86, c-clps-85, j-nccog-82, ms-cscgl-84, ms-ppgmm-91, ol-mcp-81, ph-chfsp-77, ps-cgi-85, yb-cf-61, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "J. Hershberger and Subhash Suri" +, title = "Finding tailored partitions" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "255--265" +, precedes = "hs-ftp-91" +, cites = "abky-cabmm-88, a-dp-86, c-clps-85, j-nccog-82, ms-cscgl-84, ms-ppgmm-91, ol-mcp-81, ph-chfsp-77, ps-cgi-85, yb-cf-61, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{hs-ftp-91 -, author = "J. Hershberger and Subhash Suri" -, title = "Finding tailored partitions" -, journal = "J. Algorithms" -, volume = 12 -, year = 1991 -, pages = "431--463" -, succeeds = "hs-ftp-89" -, update = "98.03 mitchell" +, author = "J. Hershberger and Subhash Suri" +, title = "Finding tailored partitions" +, journal = "J. Algorithms" +, volume = 12 +, year = 1991 +, pages = "431--463" +, succeeds = "hs-ftp-89" +, update = "98.03 mitchell" } @inproceedings{hs-msspm-93 -, author = "J. Hershberger and Subhash Suri" -, title = "Matrix Searching with the Shortest Path Metric" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '93" -, year = 1993 -, pages = "485--494" -, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 93.09 milone+mitchell" +, author = "J. Hershberger and Subhash Suri" +, title = "Matrix Searching with the Shortest Path Metric" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '93" +, year = 1993 +, pages = "485--494" +, update = "98.07 bibrelex, 98.03 mitchell, 97.03 agarwal, 93.09 milone+mitchell" } @article{hs-msspm-97 -, author = "J. Hershberger and Subhash Suri" -, title = "Matrix Searching with the Shortest Path Metric" -, journal = "SIAM J. Comput." -, volume = 26 -, number = 6 -, month = dec -, year = 1997 -, pages = "1612--1634" -, succeeds = "hs-msspm-93" -, update = "98.03 mitchell+smid" +, author = "J. Hershberger and Subhash Suri" +, title = "Matrix Searching with the Shortest Path Metric" +, journal = "SIAM J. Comput." +, volume = 26 +, number = 6 +, month = dec +, year = 1997 +, pages = "1612--1634" +, succeeds = "hs-msspm-93" +, update = "98.03 mitchell+smid" } @inproceedings{hs-mbt-95 -, author = "John Hershberger and Subhash Suri" -, title = "Morphing Binary Trees" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "396--404" -, keywords = "shape morphing, rotation distance, tree morphing" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "John Hershberger and Subhash Suri" +, title = "Morphing Binary Trees" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "396--404" +, keywords = "shape morphing, rotation distance, tree morphing" +, update = "96.09 agarwal, 96.05 mitchell" } @article{hs-olmpc-96 -, author = "J. Hershberger and Subhash Suri" -, title = "Off-Line maintenance of planar configurations" -, journal = "J. Algorithms" -, volume = 21 -, year = 1996 -, pages = "453--475" -, keywords = "dynamic convex hull" -, succeeds = "hs-ompc-91" -, update = "98.03 mitchell, 97.11 bibrelex, 97.03 smid" +, author = "J. Hershberger and Subhash Suri" +, title = "Off-Line maintenance of planar configurations" +, journal = "J. Algorithms" +, volume = 21 +, year = 1996 +, pages = "453--475" +, keywords = "dynamic convex hull" +, succeeds = "hs-ompc-91" +, update = "98.03 mitchell, 97.11 bibrelex, 97.03 smid" } @inproceedings{hs-ompc-91 -, author = "J. Hershberger and Subhash Suri" -, title = "Offline maintenance of planar configurations" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "32--41" -, keywords = "dynamic convex hull" -, update = "98.03 mitchell" -, annote = "$O(\log n)$ amortized time per operation" +, author = "J. Hershberger and Subhash Suri" +, title = "Offline maintenance of planar configurations" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "32--41" +, keywords = "dynamic convex hull" +, update = "98.03 mitchell" +, annote = "$O(\log n)$ amortized time per operation" } @inproceedings{hs-pmasp-95 -, author = "John Hershberger and Subhash Suri" -, title = "Practical Methods for Approximating Shortest Paths on a Convex Polytope in {$\Re^3$}" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "447--456" -, keywords = "geodesic paths, shortest paths, approximation algorithm" -, precedes = "hs-pmasp-98" -, update = "98.03 mitchell, 96.09 agarwal, 96.05 mitchell" +, author = "John Hershberger and Subhash Suri" +, title = "Practical Methods for Approximating Shortest Paths on a Convex Polytope in {$\Re^3$}" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "447--456" +, keywords = "geodesic paths, shortest paths, approximation algorithm" +, precedes = "hs-pmasp-98" +, update = "98.03 mitchell, 96.09 agarwal, 96.05 mitchell" } @article{hs-pmasp-98 -, author = "John Hershberger and Subhash Suri" -, title = "Practical Methods for Approximating Shortest Paths on a Convex Polytope in {$\Re^3$}" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, number = 1 -, year = 1998 -, pages = "31--46" -, succeeds = "hs-pmasp-95" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "John Hershberger and Subhash Suri" +, title = "Practical Methods for Approximating Shortest Paths on a Convex Polytope in {$\Re^3$}" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, number = 1 +, year = 1998 +, pages = "31--46" +, succeeds = "hs-pmasp-95" +, update = "98.07 bibrelex, 98.03 mitchell" } @techreport{hs-spp-96 -, author = "John Hershberger and Subhash Suri" -, title = "Shortest path problems" -, type = "Technical {Report}" -, institution = "Washington University" -, year = 1996 -, update = "00.03 smid, 96.05 mitchell" +, author = "John Hershberger and Subhash Suri" +, title = "Shortest path problems" +, type = "Technical {Report}" +, institution = "Washington University" +, year = 1996 +, update = "00.03 smid, 96.05 mitchell" } @phdthesis{h-easpv-87 -, author = "J. E. Hershberger" -, title = "Efficient algorithms for shortest path and visibility problems" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, year = 1987 -, note = "Report STAN-CS-87-1163" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "J. E. Hershberger" +, title = "Efficient algorithms for shortest path and visibility problems" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, year = 1987 +, note = "Report STAN-CS-87-1163" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @article{hs-ealcd-98 -, author = "J. E. Hershberger and J. S. Snoeyink" -, title = "Erased arrangements of lines and convex decompositions of polyhedra" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, year = 1998 -, pages = "129--143" -, update = "98.03 agarwal+smid" +, author = "J. E. Hershberger and J. S. Snoeyink" +, title = "Erased arrangements of lines and convex decompositions of polyhedra" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, year = 1998 +, pages = "129--143" +, update = "98.03 agarwal+smid" } @inproceedings{h-cap-01 -, author = "Susan Hert" -, title = "Connected Area Partitioning" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "35--38" -, update = "01.04 icking" +, author = "Susan Hert" +, title = "Connected Area Partitioning" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "35--38" +, update = "01.04 icking" } @inproceedings{hhkps-aegk-01 -, author = "Susan Hert and Michael Hoffmann and Lutz Kettner and Sylvain Pion and Michael Seel" -, title = "An Adaptable and Extensible Geometry Kernel" -, booktitle = "Proc. Workshop on Algorithm Engineering" -, nickname = "WAE '01" -, series = "Lecture Notes Comput. Sci." -, volume = 2141 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "79--90" -, update = "02.03 devillers" +, author = "Susan Hert and Michael Hoffmann and Lutz Kettner and Sylvain Pion and Michael Seel" +, title = "An Adaptable and Extensible Geometry Kernel" +, booktitle = "Proc. Workshop on Algorithm Engineering" +, nickname = "WAE '01" +, series = "Lecture Notes Comput. Sci." +, volume = 2141 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "79--90" +, update = "02.03 devillers" } @inproceedings{hl-dcptr-96 -, author = "S. Hert and V. Lumelsky" -, title = "Deforming curves in the plane for tethered-robot motion planning" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "125--130" -, update = "96.09 mitchell" +, author = "S. Hert and V. Lumelsky" +, title = "Deforming curves in the plane for tethered-robot motion planning" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "125--130" +, update = "96.09 mitchell" } @article{hl-pcrtr-97 -, author = "S. Hert and V. Lumelsky" -, title = "Planar curve routing for tethered-robot motion planning" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "225--252" -, update = "97.07 devillers" +, author = "S. Hert and V. Lumelsky" +, title = "Planar curve routing for tethered-robot motion planning" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "225--252" +, update = "97.07 devillers" } @article{hl-padmr-98 -, author = "S. Hert and V. Lumelsky" -, title = "Polygon Area Decomposition for Multiple-Robot Workspace Division" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "437--466" -, update = "98.11 devillers" +, author = "S. Hert and V. Lumelsky" +, title = "Polygon Area Decomposition for Multiple-Robot Workspace Division" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "437--466" +, update = "98.11 devillers" } @inproceedings{h-eappk-90 -, author = "E. Hertel" -, title = "{Einige} algorithmische {Probleme} in {Polyeder-} und {Konvexgeometrie}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 13 -, update = "00.03 bibrelex" +, author = "E. Hertel" +, title = "{Einige} algorithmische {Probleme} in {Polyeder-} und {Konvexgeometrie}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 13 +, update = "00.03 bibrelex" } @techreport{h-atcha-83 -, author = "S. Hertel" -, title = "An almost trivial convex hull algorithm for a presorted point set in the plane" -, type = "Report" -, number = "A83/08" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1983 +, author = "S. Hertel" +, title = "An almost trivial convex hull algorithm for a presorted point set in the plane" +, type = "Report" +, number = "A83/08" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1983 } @techreport{h-safpu-84 -, author = "S. Hertel" -, title = "Sweep-{Algorithmen} f{\"u}r {Polygone} und {Polyeder}" -, type = "Report" -, number = "??" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1984 -, update = "94.05 devillers" +, author = "S. Hertel" +, title = "Sweep-{Algorithmen} f{\"u}r {Polygone} und {Polyeder}" +, type = "Report" +, number = "??" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1984 +, update = "94.05 devillers" } @article{hmmn-sssic-84 -, author = "S. Hertel and M. M{\"a}ntyl{\"a} and K. Mehlhorn and J. Nievergelt" -, title = "Space sweep solves intersection of convex polyhedra" -, journal = "Acta Inform." -, volume = 21 -, year = 1984 -, pages = "501--519" +, author = "S. Hertel and M. M{\"a}ntyl{\"a} and K. Mehlhorn and J. Nievergelt" +, title = "Space sweep solves intersection of convex polyhedra" +, journal = "Acta Inform." +, volume = 21 +, year = 1984 +, pages = "501--519" } @inproceedings{hm-ftsp-83 -, author = "S. Hertel and K. Mehlhorn" -, title = "Fast triangulation of simple polygons" -, booktitle = "Proc. 4th Internat. Conf. Found. Comput. Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 158 -, publisher = "Springer-Verlag" -, year = 1983 -, pages = "207--218" -, precedes = "hm-ftprs-85" +, author = "S. Hertel and K. Mehlhorn" +, title = "Fast triangulation of simple polygons" +, booktitle = "Proc. 4th Internat. Conf. Found. Comput. Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 158 +, publisher = "Springer-Verlag" +, year = 1983 +, pages = "207--218" +, precedes = "hm-ftprs-85" } @article{hm-ftprs-85 -, author = "S. Hertel and K. Mehlhorn" -, title = "Fast triangulation of the plane with respect to simple polygons" -, journal = "Inform. Control" -, volume = 64 -, year = 1985 -, pages = "52--76" -, succeeds = "hm-ftsp-83" +, author = "S. Hertel and K. Mehlhorn" +, title = "Fast triangulation of the plane with respect to simple polygons" +, journal = "Inform. Control" +, volume = 64 +, year = 1985 +, pages = "52--76" +, succeeds = "hm-ftsp-83" } @techreport{h-tkfeb-93 -, author = "P. Hertling" -, title = "Topologische Komplexit{\"a}tsgrade von Funktionen mit endlichem Bild" -, type = "Report" -, number = 152 -, institution = "Fernuniversit{\"a}t" -, address = "Hagen" -, year = 1993 -, update = "98.11 bibrelex" +, author = "P. Hertling" +, title = "Topologische Komplexit{\"a}tsgrade von Funktionen mit endlichem Bild" +, type = "Report" +, number = 152 +, institution = "Fernuniversit{\"a}t" +, address = "Hagen" +, year = 1993 +, update = "98.11 bibrelex" } @inproceedings{hw-ldelc-94 -, author = "P. Hertling and K. Weihrauch" -, title = "Levels of Degeneracy and Exact Lower Complexity Bounds for Geometric Algorithms" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "237--242" -, cites = "a-ca-80, bb-ca-85, bss-tccrn-89, g-dcrcf-57, gy-frcg-86, gss-egbra-89, h-tkfeb-93, hhk-tirgc-88, k-ctrf-91, m-vigau-88a, pr-cap-88, ps-cgi-85, sh-gip-76, s-ta-87, s-aefsm-87, w-c-87, wk-uacra-84, y-stgd-90, h-pargc-89, td-cm-88, v-cdsmt-92, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "P. Hertling and K. Weihrauch" +, title = "Levels of Degeneracy and Exact Lower Complexity Bounds for Geometric Algorithms" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "237--242" +, cites = "a-ca-80, bb-ca-85, bss-tccrn-89, g-dcrcf-57, gy-frcg-86, gss-egbra-89, h-tkfeb-93, hhk-tirgc-88, k-ctrf-91, m-vigau-88a, pr-cap-88, ps-cgi-85, sh-gip-76, s-ta-87, s-aefsm-87, w-c-87, wk-uacra-84, y-stgd-90, h-pargc-89, td-cm-88, v-cdsmt-92, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @book{hkp-itnc-91 -, author = "J. Hertz and A. Krogh and R. G. Palmer" -, title = "Introduction to the Theory of Neural Computation" -, publisher = "Addison-Wesley" -, address = "New York" -, year = 1991 -, update = "00.03 bibrelex" +, author = "J. Hertz and A. Krogh and R. G. Palmer" +, title = "Introduction to the Theory of Neural Computation" +, publisher = "Addison-Wesley" +, address = "New York" +, year = 1991 +, update = "00.03 bibrelex" } @article{hb-atdis-87 -, author = "B. Von Herzen and A. H. Barr" -, title = "Accurate triangulations of deformed, intersecting surfaces" -, journal = "Comput. Graph." -, volume = 21 -, number = 4 -, month = jul -, year = 1987 -, pages = "103--110" -, update = "96.09 devillers, 95.01 mitchell" +, author = "B. Von Herzen and A. H. Barr" +, title = "Accurate triangulations of deformed, intersecting surfaces" +, journal = "Comput. Graph." +, volume = 21 +, number = 4 +, month = jul +, year = 1987 +, pages = "103--110" +, update = "96.09 devillers, 95.01 mitchell" } @article{hs-pvnlp-71 -, author = "F. Herzog and B. M. Steward" -, title = "Patterns of visible and nonvisible lattice points" -, journal = "Amer. Math. Monthly" -, volume = 78 -, year = 1971 -, pages = "487--496" -, update = "97.11 bibrelex" +, author = "F. Herzog and B. M. Steward" +, title = "Patterns of visible and nonvisible lattice points" +, journal = "Amer. Math. Monthly" +, volume = 78 +, year = 1971 +, pages = "487--496" +, update = "97.11 bibrelex" } @book{hs-cagcu-84 -, author = "D. Hestenes and G. Sobczyk" -, title = "Clifford algebra to geometric calculus: {A} unified language for mathematics and physics" -, publisher = "D. Reidel Publishing Co." -, address = "Dodrecht" -, year = 1984 -, update = "98.03 bibrelex" +, author = "D. Hestenes and G. Sobczyk" +, title = "Clifford algebra to geometric calculus: {A} unified language for mathematics and physics" +, publisher = "D. Reidel Publishing Co." +, address = "Dodrecht" +, year = 1984 +, update = "98.03 bibrelex" } @book{h-cvoct-66 -, author = "M. R. Hestens" -, title = "Calculus of Variations and Optimal Control Theory" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1966 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "M. R. Hestens" +, title = "Calculus of Variations and Optimal Control Theory" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1966 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{h-srcc-95 -, author = "G. Hetyai" -, title = "On the {Stanley} ring of a cubical complex" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "305--330" -, update = "97.11 bibrelex" +, author = "G. Hetyai" +, title = "On the {Stanley} ring of a cubical complex" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "305--330" +, update = "97.11 bibrelex" } @inproceedings{h-bvb-89 -, author = "H. Heusinger" -, title = "{Balancierung} von {Voronoi}-{B{\"a}umen}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "H. Heusinger" +, title = "{Balancierung} von {Voronoi}-{B{\"a}umen}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{hn-src-88 -, author = "H. Heusinger and H. Noltemeier" -, title = "On separable and rectangular clusterings" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "25--42" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "H. Heusinger and H. Noltemeier" +, title = "On separable and rectangular clusterings" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "25--42" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @article{hn-sc-89 -, author = "H. Heusinger and H. Noltemeier" -, title = "On separable clusterings" -, journal = "J. Algorithms" -, volume = 10 -, year = 1989 -, pages = "212--227" -, update = "00.03 bibrelex" +, author = "H. Heusinger and H. Noltemeier" +, title = "On separable clusterings" +, journal = "J. Algorithms" +, volume = 10 +, year = 1989 +, pages = "212--227" +, update = "00.03 bibrelex" } @techreport{h-oafms-83 -, author = "P. T. Highnam" -, title = "An optimal algorithm for finding the mirror symmetries of a planar point set" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1983 +, author = "P. T. Highnam" +, title = "An optimal algorithm for finding the mirror symmetries of a planar point set" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1983 } @techreport{h-oafsp-85 -, author = "P. T. Highnam" -, title = "Optimal algorithms for finding the symmetries of a planar point set" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1985 +, author = "P. T. Highnam" +, title = "Optimal algorithms for finding the symmetries of a planar point set" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1985 } @article{h-oafsp-86 -, author = "P. T. Highnam" -, title = "Optimal Algorithms for Finding the Symmetries of a Planar Point Set" -, journal = "Inform. Process. Lett." -, volume = 22 -, year = 1986 -, pages = "219--222" -, update = "98.03 bibrelex" +, author = "P. T. Highnam" +, title = "Optimal Algorithms for Finding the Symmetries of a Planar Point Set" +, journal = "Inform. Process. Lett." +, volume = 22 +, year = 1986 +, pages = "219--222" +, update = "98.03 bibrelex" } @article{h-ep-82 -, author = "P. T. Highnam" -, title = "The ears of a polygon" -, journal = "Inform. Process. Lett." -, volume = 15 -, number = 5 -, year = 1982 -, pages = "196--198" -, keywords = "two-dimensional, triangles, reporting, counting, triangulation, polygons" +, author = "P. T. Highnam" +, title = "The ears of a polygon" +, journal = "Inform. Process. Lett." +, volume = 15 +, number = 5 +, year = 1982 +, pages = "196--198" +, keywords = "two-dimensional, triangles, reporting, counting, triangulation, polygons" } @inproceedings{hpr-irslp-92 -, author = "W. L. Hightower and J. F. Prins and J. H. Reif" -, title = "Implementation of randomized sorting on large parallel machines" -, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." -, year = 1992 -, pages = "158--167" -, update = "96.09 orourke" +, author = "W. L. Hightower and J. F. Prins and J. H. Reif" +, title = "Implementation of randomized sorting on large parallel machines" +, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." +, year = 1992 +, pages = "158--167" +, update = "96.09 orourke" } @book{h-fggdg-71 -, author = "D. Hilbert" -, title = "Foundations of Geometry (Grundlagen der Geometrie)" -, publisher = "Open Court" -, year = 1971 -, note = "Tr. by Leo Unger" -, update = "93.09 erickson" +, author = "D. Hilbert" +, title = "Foundations of Geometry (Grundlagen der Geometrie)" +, publisher = "Open Court" +, year = 1971 +, note = "Tr. by Leo Unger" +, update = "93.09 erickson" } @book{hc-gi-52 -, author = "D. Hilbert and S. {Cohn-Vossen}" -, title = "Geometry and the Imagination" -, publisher = "Chelsea Publishing Company" -, address = "New York, NY" -, year = 1952 -, update = "98.03 bibrelex" +, author = "D. Hilbert and S. {Cohn-Vossen}" +, title = "Geometry and the Imagination" +, publisher = "Chelsea Publishing Company" +, address = "New York, NY" +, year = 1952 +, update = "98.03 bibrelex" } @article{h-cdtdp-81 -, author = "R. Hilbert" -, title = "Construction and display of three-dimensional polygon-histograms" -, journal = "Comput. Graph." -, volume = 15 -, number = 3 -, year = 1981 -, pages = "230--241" -, note = "Proc. SIGGRAPH '81" +, author = "R. Hilbert" +, title = "Construction and display of three-dimensional polygon-histograms" +, journal = "Comput. Graph." +, volume = 15 +, number = 3 +, year = 1981 +, pages = "230--241" +, note = "Proc. SIGGRAPH '81" } @article{h-trpsp-72 -, author = "J. Hilden" -, title = "Testing the relative position of several points on a circle" -, journal = "BIT" -, volume = 12 -, year = 1972 -, pages = "182--187" +, author = "J. Hilden" +, title = "Testing the relative position of several points on a circle" +, journal = "BIT" +, volume = 12 +, year = 1972 +, pages = "182--187" } @incollection{h-ppdp-94 -, author = "F. S. {Hill Jr.}" -, title = "The Pleasures of ``Perp Dot'' Products" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "138--148" -, keywords = "geometry, fillet, perp-dot product, projection" -, update = "94.09 heckbert" -, annote = "A tutorial on the ``perp dot product,'' which is the dot +, author = "F. S. {Hill Jr.}" +, title = "The Pleasures of ``Perp Dot'' Products" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "138--148" +, keywords = "geometry, fillet, perp-dot product, projection" +, update = "94.09 heckbert" +, annote = "A tutorial on the ``perp dot product,'' which is the dot product, in 2D, of one vector and the vector perpendicular to another." } @techreport{h-ebnef-81 -, author = "M. D. Hill" -, title = "An examination of the bounds of the number of edges and faces of a simple polyhedron (rough draft)" -, type = "Manuscript" -, institution = "??" -, year = 1981 +, author = "M. D. Hill" +, title = "An examination of the bounds of the number of edges and faces of a simple polyhedron (rough draft)" +, type = "Manuscript" +, institution = "??" +, year = 1981 } @techreport{h-tdp-81 -, author = "M. D. Hill" -, title = "Tetrahedral decomposition of polyhedra" -, type = "Manuscript" -, institution = "??" -, address = "Ann Arbor, MI" -, year = 1981 +, author = "M. D. Hill" +, title = "Tetrahedral decomposition of polyhedra" +, type = "Manuscript" +, institution = "??" +, address = "Ann Arbor, MI" +, year = 1981 } @incollection{h-tli-94 -, author = "Steve Hill" -, title = "Tri-linear Interpolation" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "521--525" -, keywords = "trilinear interpolation, bilinear interpolation, reconstruction" -, update = "94.09 heckbert" -, annote = "Gives optimized code for performing linear interpolation +, author = "Steve Hill" +, title = "Tri-linear Interpolation" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "521--525" +, keywords = "trilinear interpolation, bilinear interpolation, reconstruction" +, update = "94.09 heckbert" +, annote = "Gives optimized code for performing linear interpolation in a 3D grid. Trilinear interpolation is useful for volume rendering, and its 2D variant, bilinear interpolation, is a very common operation in image processing. Contains C code." } @techreport{h-dwgsa-72 -, author = "T. W. {Hill, Jr.}" -, title = "On Determining When a Graph Is The Skeleton Of an Abstract Polytope" -, type = "Research Memorandum" -, number = "72-4" -, institution = "School of Industrial Engineering, Purdue University" -, address = "West Lafayette, IN" -, year = 1972 -, update = "96.05 pascucci" +, author = "T. W. {Hill, Jr.}" +, title = "On Determining When a Graph Is The Skeleton Of an Abstract Polytope" +, type = "Research Memorandum" +, number = "72-4" +, institution = "School of Industrial Engineering, Purdue University" +, address = "West Lafayette, IN" +, year = 1972 +, update = "96.05 pascucci" } @book{hhp-mr-97 -, author = "Peter Hilton and Derek Holton and Jean Pedersen" -, title = "Mathematical Reflections: In a Room with Many Mirrors" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1997 -, update = "02.03 icking, 01.11 orourke" +, author = "Peter Hilton and Derek Holton and Jean Pedersen" +, title = "Mathematical Reflections: In a Room with Many Mirrors" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1997 +, update = "02.03 icking, 01.11 orourke" } @techreport{h-celag-94 -, author = "M. Himsolt" -, title = "Comparing and Evaluating Layout Algorithms within GraphEd" -, type = "Manuscript" -, institution = "Fakultat fur Mathematik und Informatik, Univ. Passau" -, year = 1994 -, url = "ftp://ftp.uni-passau.de/pub/local/graphed/papers/LayoutEvaluation.ps.Z" -, update = "95.01 tamassia" +, author = "M. Himsolt" +, title = "Comparing and Evaluating Layout Algorithms within GraphEd" +, type = "Manuscript" +, institution = "Fakultat fur Mathematik und Informatik, Univ. Passau" +, year = 1994 +, url = "ftp://ftp.uni-passau.de/pub/local/graphed/papers/LayoutEvaluation.ps.Z" +, update = "95.01 tamassia" } @article{h-celag-95 -, author = "M. Himsolt" -, title = "Comparing and Evaluating Layout Algorithms within {GraphEd}" -, journal = "J. Visual Lang. Comput." -, volume = 6 -, number = 3 -, year = 1995 -, pages = "255--273" -, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" -, keywords = "graph drawing, experiments" -, update = "97.03 tamassia, 95.09 agarwal+devillers, 95.05 tamassia" +, author = "M. Himsolt" +, title = "Comparing and Evaluating Layout Algorithms within {GraphEd}" +, journal = "J. Visual Lang. Comput." +, volume = 6 +, number = 3 +, year = 1995 +, pages = "255--273" +, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" +, keywords = "graph drawing, experiments" +, update = "97.03 tamassia, 95.09 agarwal+devillers, 95.05 tamassia" } @techreport{h-ggml-96 -, author = "M. Himsolt" -, title = "GML: Graph Modelling Language" -, type = "Manuscript" -, institution = "Universit{\"a}t Passau, Innstra\ss e 33, 94030 Passau, Germany" -, year = 1996 -, url = "https://www.uni-passau.de/~himsolt/Graphlet/GML" -, keywords = "graph drawing" -, update = "96.09 tamassia" +, author = "M. Himsolt" +, title = "GML: Graph Modelling Language" +, type = "Manuscript" +, institution = "Universit{\"a}t Passau, Innstra\ss e 33, 94030 Passau, Germany" +, year = 1996 +, url = "https://www.uni-passau.de/~himsolt/Graphlet/GML" +, keywords = "graph drawing" +, update = "96.09 tamassia" } @inproceedings{h-ggpig-95 -, author = "M. Himsolt" -, title = "{GraphEd}: a Graphical Platform for the Implementation of Graph Algorithms" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "182--193" -, keywords = "graph drawing, system, grammar" -, update = "95.01 tamassia" +, author = "M. Himsolt" +, title = "{GraphEd}: a Graphical Platform for the Implementation of Graph Algorithms" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "182--193" +, keywords = "graph drawing, system, grammar" +, update = "95.01 tamassia" } @inproceedings{h-gige-89 -, author = "M. Himsolt" -, title = "GraphEd: An Interactive Graph Editor" -, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 349 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "532--533" -, keywords = "graph drawing" -, comments = "Software in \url{ftp://ftp.uni-passau.de/pub/local/graphed}" -, update = "99.11 bibrelex, 96.09 agarwal, 94.09 jones, 93.09 tamassia" +, author = "M. Himsolt" +, title = "GraphEd: An Interactive Graph Editor" +, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 349 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "532--533" +, keywords = "graph drawing" +, comments = "Software in \url{ftp://ftp.uni-passau.de/pub/local/graphed}" +, update = "99.11 bibrelex, 96.09 agarwal, 94.09 jones, 93.09 tamassia" } @article{hm-mcedr-80 -, author = "A. L. Hinde and R. E. Miles" -, title = "{Monte}-{Carlo} Estimates of the Distributions of the Random Polygons of the {Voronoi} Tessellation With Respect to a {Poisson} Process" -, journal = "Journal of Statistics and Computer Simulation" -, volume = 10 -, year = 1980 -, pages = "205--223" -, annote = "Measurements of various statistics of two million - independent Voronoi polygons. Circumcircle algorithm - used to generate (one polygon)." +, author = "A. L. Hinde and R. E. Miles" +, title = "{Monte}-{Carlo} Estimates of the Distributions of the Random Polygons of the {Voronoi} Tessellation With Respect to a {Poisson} Process" +, journal = "Journal of Statistics and Computer Simulation" +, volume = 10 +, year = 1980 +, pages = "205--223" +, annote = "Measurements of various statistics of two million + independent Voronoi polygons. Circumcircle algorithm + used to generate (one polygon)." } @inproceedings{hkm-alsiq-96 -, author = "Andr{\'e} Hinkenjann and Markus Kukuk and Heinrich M{\"u}ller" -, title = "Answering Line Segment Intersection Queries Based on Sample Answers" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "65--68" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Andr{\'e} Hinkenjann and Markus Kukuk and Heinrich M{\"u}ller" +, title = "Answering Line Segment Intersection Queries Based on Sample Answers" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "65--68" +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{h-oscps-95 -, author = "Klaus Hinrichs" -, title = "Overlaying Simply Connected Planar Subdivision in Linear Time" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = 31 -, update = "00.03 bibrelex" +, author = "Klaus Hinrichs" +, title = "Overlaying Simply Connected Planar Subdivision in Linear Time" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = 31 +, update = "00.03 bibrelex" } @inproceedings{hn-gfdsd-83 -, author = "K. Hinrichs and J. Nievergelt" -, title = "The grid file: a data structure designed to support proximity queries on spatial objects" -, editor = "M. Nagl and J. Perl" -, booktitle = "Proc. 9th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '83" -, publisher = "Trauner Verlag" -, address = "Linz, Austria" -, year = 1983 -, pages = "100--113" -, update = "98.07 bibrelex" +, author = "K. Hinrichs and J. Nievergelt" +, title = "The grid file: a data structure designed to support proximity queries on spatial objects" +, editor = "M. Nagl and J. Perl" +, booktitle = "Proc. 9th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '83" +, publisher = "Trauner Verlag" +, address = "Linz, Austria" +, year = 1983 +, pages = "100--113" +, update = "98.07 bibrelex" } @inproceedings{hns-saiia-89 -, author = "K. Hinrichs and J. Nievergelt and P. Schorn" -, title = "A sweep algorithm and its implementation: {The} all-nearest-neighbors problem revisited" -, editor = "J. van Leuuwen" -, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput." -, site = "Amsterdam, Netherlands" -, series = "Lecture Notes Comput. Sci." -, volume = 344 -, publisher = "Springer-Verlag" -, year = 1989 -, update = "98.07 bibrelex" +, author = "K. Hinrichs and J. Nievergelt and P. Schorn" +, title = "A sweep algorithm and its implementation: {The} all-nearest-neighbors problem revisited" +, editor = "J. van Leuuwen" +, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput." +, site = "Amsterdam, Netherlands" +, series = "Lecture Notes Comput. Sci." +, volume = 344 +, publisher = "Springer-Verlag" +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{hns-saann-88 -, author = "K. Hinrichs and J. Nievergelt and P. Schorn" -, title = "A sweep algorithm for the all-nearest-neighbours problem" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "43--54" -, keywords = "proximity, points, two-dimensional, plane-sweep" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "K. Hinrichs and J. Nievergelt and P. Schorn" +, title = "A sweep algorithm for the all-nearest-neighbours problem" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "43--54" +, keywords = "proximity, points, two-dimensional, plane-sweep" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @article{hns-arsa2-92 -, author = "K. Hinrichs and J. Nievergelt and P. Schorn" -, title = "An all-round sweep algorithm for $2$-dimensional nearest-neighbors problems" -, journal = "Acta Inform." -, volume = 29 -, number = 4 -, year = 1992 -, pages = "383--394" -, update = "98.11 bibrelex, 97.11 smid" +, author = "K. Hinrichs and J. Nievergelt and P. Schorn" +, title = "An all-round sweep algorithm for $2$-dimensional nearest-neighbors problems" +, journal = "Acta Inform." +, volume = 29 +, number = 4 +, year = 1992 +, pages = "383--394" +, update = "98.11 bibrelex, 97.11 smid" } @inproceedings{hns-arsa2-90 -, author = "K. Hinrichs and J. Nievergelt and P. Schorn" -, title = "An all-round sweep algorithm for $2$-dimensional nearest-neighbour problems" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "343--346" -, cites = "f-savd-87, hns-saiia-89, v-oaann-89, ZZZ" -, update = "98.07 bibrelex" +, author = "K. Hinrichs and J. Nievergelt and P. Schorn" +, title = "An all-round sweep algorithm for $2$-dimensional nearest-neighbour problems" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "343--346" +, cites = "f-savd-87, hns-saiia-89, v-oaann-89, ZZZ" +, update = "98.07 bibrelex" } @article{hns-psscp-88 -, author = "K. Hinrichs and J. Nievergelt and P. Schorn" -, title = "Plane-sweep solves the closest pair problem elegantly" -, journal = "Inform. Process. Lett." -, volume = 26 -, year = 1988 -, pages = "255--261" +, author = "K. Hinrichs and J. Nievergelt and P. Schorn" +, title = "Plane-sweep solves the closest pair problem elegantly" +, journal = "Inform. Process. Lett." +, volume = 26 +, year = 1988 +, pages = "255--261" } @proceedings{h-ewcg-96 -, title = "Abstracts 12th European Workshop Comput. Geom." -, editor = "Klaus H. Hinrichs" -, nickname = "CG '96" -, site = "M{\"u}nster" -, volume = "7/96-I" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, update = "00.03 bibrelex" +, title = "Abstracts 12th European Workshop Comput. Geom." +, editor = "Klaus H. Hinrichs" +, nickname = "CG '96" +, site = "M{\"u}nster" +, volume = "7/96-I" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, update = "00.03 bibrelex" } @proceedings{h-iwcg-90 -, title = "Abstracts 6th Intern. Workshop Comput. Geom." -, editor = "Klaus H. Hinrichs" -, nickname = "CG '90" -, site = "Siegen" -, series = "Informatik-Berichte" -, volume = "90-01" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, update = "00.03 bibrelex" +, title = "Abstracts 6th Intern. Workshop Comput. Geom." +, editor = "Klaus H. Hinrichs" +, nickname = "CG '90" +, site = "Siegen" +, series = "Informatik-Berichte" +, volume = "90-01" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, update = "00.03 bibrelex" } @phdthesis{h-gfsic-85 -, author = "K. H. Hinrichs" -, title = "The grid file system: {I}mplementation and case studies of applications" -, school = "Dept. Information Science, ETH" -, address = "Z{\"u}rich" -, year = 1985 -, keywords = "doctoral thesis" -, comments = "Diss. ETH 7734" -, update = "97.07 agarwal" +, author = "K. H. Hinrichs" +, title = "The grid file system: {I}mplementation and case studies of applications" +, school = "Dept. Information Science, ETH" +, address = "Z{\"u}rich" +, year = 1985 +, keywords = "doctoral thesis" +, comments = "Diss. ETH 7734" +, update = "97.07 agarwal" } @inproceedings{h-ugigf-88 -, author = "H. Hinterberger" -, title = "Using graphical information from a grid file's directory to visualize patterns in {Cartesian} product spaces" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "1--14" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "H. Hinterberger" +, title = "Using graphical information from a grid file's directory to visualize patterns in {Cartesian} product spaces" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "1--14" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @techreport{hikl-hfplf-97 -, author = "Christoph Hipke and Christian Icking and Rolf Klein and Elmar Langetepe" -, title = "How to Find a Point on a Line within a Fixed Distance" -, number = 220 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1997 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr220.pdf" -, precedes = "hikl-hfplf-99" -, cites = "bcr-sp-93, brs-nugt-97, ik-csas-95, kp-caasu-93, krt-sueor-96, k-ag-97, ls-pinos-97, ZZZ" -, update = "00.03 bibrelex, 99.07 bibrelex, 98.07 icking" +, author = "Christoph Hipke and Christian Icking and Rolf Klein and Elmar Langetepe" +, title = "How to Find a Point on a Line within a Fixed Distance" +, number = 220 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1997 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr220.pdf" +, precedes = "hikl-hfplf-99" +, cites = "bcr-sp-93, brs-nugt-97, ik-csas-95, kp-caasu-93, krt-sueor-96, k-ag-97, ls-pinos-97, ZZZ" +, update = "00.03 bibrelex, 99.07 bibrelex, 98.07 icking" } @article{hikl-hfplf-99 -, author = "Christoph Hipke and Christian Icking and Rolf Klein and Elmar Langetepe" -, title = "How to Find a Point on a Line within a Fixed Distance" -, journal = "Discrete Appl. Math." -, volume = 93 -, year = 1999 -, pages = "67--73" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr220.pdf" -, succeeds = "hikl-hfplf-97" -, cites = "bcr-sp-93, brs-nugt-97, ik-csas-95, kp-caasu-93, krt-sueor-96, k-ag-97, ls-pinos-97, ZZZ" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Christoph Hipke and Christian Icking and Rolf Klein and Elmar Langetepe" +, title = "How to Find a Point on a Line within a Fixed Distance" +, journal = "Discrete Appl. Math." +, volume = 93 +, year = 1999 +, pages = "67--73" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr220.pdf" +, succeeds = "hikl-hfplf-97" +, cites = "bcr-sp-93, brs-nugt-97, ik-csas-95, kp-caasu-93, krt-sueor-96, k-ag-97, ls-pinos-97, ZZZ" +, update = "00.03 bibrelex, 99.07 bibrelex" } @incollection{h-dpos-51 -, author = "T. Hiraguchi" -, title = "On the dimension of partially ordered sets" -, booktitle = "Scientific {Report} 1" -, publisher = "Kanzawa University" -, year = 1951 -, pages = "77--94" -, update = "94.05 franciosa" +, author = "T. Hiraguchi" +, title = "On the dimension of partially ordered sets" +, booktitle = "Scientific {Report} 1" +, publisher = "Kanzawa University" +, year = 1951 +, pages = "77--94" +, update = "94.05 franciosa" } @inproceedings{hmtt-cpics-92 -, author = "T. Hirata and J. Matou{\v s}ek and X.-H. Tan and T. Tokuyama" -, title = "Complexity of projected images of convex subdivisions" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "121--126" -, precedes = "hmtt-cpics-94" -, cites = "abe-ap1sp-91, ce-oails-88, c-sssl-86, dl-msp-76, e-acg-87, s-nvapo-91, s-chdch-86, s-lpchm-90, thi-splia-90, ZZZ" -, update = "98.07 bibrelex, 96.09 agarwal+devillers" +, author = "T. Hirata and J. Matou{\v s}ek and X.-H. Tan and T. Tokuyama" +, title = "Complexity of projected images of convex subdivisions" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "121--126" +, precedes = "hmtt-cpics-94" +, cites = "abe-ap1sp-91, ce-oails-88, c-sssl-86, dl-msp-76, e-acg-87, s-nvapo-91, s-chdch-86, s-lpchm-90, thi-splia-90, ZZZ" +, update = "98.07 bibrelex, 96.09 agarwal+devillers" } @article{hmtt-cpics-94 -, author = "T. Hirata and J. Matou{\v s}ek and X.-H. Tan and T. Tokuyama" -, title = "Complexity of projected images of convex subdivisions" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "293--308" -, succeeds = "hmtt-cpics-92" -, update = "96.09 devillers" +, author = "T. Hirata and J. Matou{\v s}ek and X.-H. Tan and T. Tokuyama" +, title = "Complexity of projected images of convex subdivisions" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "293--308" +, succeeds = "hmtt-cpics-92" +, update = "96.09 devillers" } @article{hk-gsftq-91 -, author = "S. Hirose and O. Kunieda" -, title = "Generalized standard foot trajectory for a quadruped walking vehicle" -, journal = "Internat. J. Robot. Res." -, volume = 10 -, number = 1 -, month = feb -, year = 1991 -, update = "97.11 bibrelex" +, author = "S. Hirose and O. Kunieda" +, title = "Generalized standard foot trajectory for a quadruped walking vehicle" +, journal = "Internat. J. Robot. Res." +, volume = 10 +, number = 1 +, month = feb +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{hnku-agcqw-84 -, author = "S. Hirose and M. Nose and H. Kikuchi and Y. Umetani" -, title = "Adaptive gait control of a quadruped walking vehicle" -, booktitle = "Proc. Internat. Sympos. Robot. Res." -, publisher = "MIT Press" -, year = 1984 -, pages = "253--277" -, update = "97.11 bibrelex" +, author = "S. Hirose and M. Nose and H. Kikuchi and Y. Umetani" +, title = "Adaptive gait control of a quadruped walking vehicle" +, booktitle = "Proc. Internat. Sympos. Robot. Res." +, publisher = "MIT Press" +, year = 1984 +, pages = "253--277" +, update = "97.11 bibrelex" } @techreport{hs-ptard-94 -, author = "Tetsuya Hiroshima and Kokichi Sugihara" -, title = "Polynomial-Time Algorithm for Recognizing {Delaunay} Graphs" -, number = "{METR}~94-15" -, institution = "Department of Mathematical Engineering and Information Physics, University of Tokyo" -, month = sep -, year = 1994 -, update = "98.07 tamassia+vismara" +, author = "Tetsuya Hiroshima and Kokichi Sugihara" +, title = "Polynomial-Time Algorithm for Recognizing {Delaunay} Graphs" +, number = "{METR}~94-15" +, institution = "Department of Mathematical Engineering and Information Physics, University of Tokyo" +, month = sep +, year = 1994 +, update = "98.07 tamassia+vismara" } @book{h-dt-76 -, author = "M. W. Hirsch" -, title = "Differential Topology" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1976 -, update = "98.03 bibrelex" +, author = "M. W. Hirsch" +, title = "Differential Topology" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1976 +, update = "98.03 bibrelex" } @article{h-cssv-80 -, author = "D. S. Hirschberg" -, title = "On the complexity of searching a set of vectors" -, journal = "SIAM J. Comput." -, volume = 9 -, year = 1980 -, pages = "126--129" +, author = "D. S. Hirschberg" +, title = "On the complexity of searching a set of vectors" +, journal = "SIAM J. Comput." +, volume = 9 +, year = 1980 +, pages = "126--129" } @article{hl-tp-92 -, author = "D. S. Hirschberg and L. L. Larmore" -, title = "The traveler's problem" -, journal = "J. Algorithms" -, volume = 13 -, year = 1992 -, pages = "148--160" +, author = "D. S. Hirschberg and L. L. Larmore" +, title = "The traveler's problem" +, journal = "J. Algorithms" +, volume = 13 +, year = 1992 +, pages = "148--160" } @article{hv-iuq-87 -, author = "D. S. Hirschberg and D. J. Volper" -, title = "Improved update/query" -, journal = "Inform. Process. Lett." -, volume = 24 -, year = 1987 -, pages = "307--310" +, author = "D. S. Hirschberg and D. J. Volper" +, title = "Improved update/query" +, journal = "Inform. Process. Lett." +, volume = 24 +, year = 1987 +, pages = "307--310" } @inproceedings{h-adshf-95 -, author = "N. Hitschfeld" -, title = "Algorithms and Data Structures for Handling a Fully Flexible Refinement Approach in Mesh Generation" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "265--276" -, update = "96.01 samitchell" +, author = "N. Hitschfeld" +, title = "Algorithms and Data Structures for Handling a Fully Flexible Refinement Approach in Mesh Generation" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "265--276" +, update = "96.01 samitchell" } @inproceedings{hf-1ietm-96 -, author = "Nancy Hitschfeld and Rodrigo Farias" -, title = "1-irregular element tessellation in mixed element meshes for the control volume discretization method" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "195--204" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Nancy Hitschfeld and Rodrigo Farias" +, title = "1-irregular element tessellation in mixed element meshes for the control volume discretization method" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "195--204" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{hf-metgm-92 -, author = "Nancy Hitschfeld and Wolfgang Fichtner" -, title = "Mixed Element Trees: A Generalization of Modified Octrees for the Generation of {3-D} {Delaunay} Meshes" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "85--87" -, update = "00.03 bibrelex" +, author = "Nancy Hitschfeld and Wolfgang Fichtner" +, title = "Mixed Element Trees: A Generalization of Modified Octrees for the Generation of {3-D} {Delaunay} Meshes" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "85--87" +, update = "00.03 bibrelex" } @inproceedings{hs-dsufp-98 -, author = "Hisamoto Hiyoshi and Hiroshi Sekigawa" -, title = "Deciding the Sign Using Floating-Point Arithmetic" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "89--91" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Hisamoto Hiyoshi and Hiroshi Sekigawa" +, title = "Deciding the Sign Using Floating-Point Arithmetic" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "89--91" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{hs-vbihc-00 -, author = "Hisamoto Hiyoshi and Kokichi Sugihara" -, title = "Voronoi-Based Interpolation with Higher Continuity" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "242--250" -, update = "00.11 jones" +, author = "Hisamoto Hiyoshi and Kokichi Sugihara" +, title = "Voronoi-Based Interpolation with Higher Continuity" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "242--250" +, update = "00.11 jones" } @inproceedings{hs-rsd-95 -, author = "G. R. Hjaltason and H. Samet" -, title = "Ranking in spatial databases" -, editor = "M. J. Egenhofer and J. R. Herring" -, booktitle = "Advances in Spatial Databases - Fourth International Symposium" -, site = "Portland, ME" -, series = "Lecture Notes Comput. Sci." -, number = 951 -, month = aug -, year = 1995 -, pages = "83--95" -, update = "96.05 efrat" +, author = "G. R. Hjaltason and H. Samet" +, title = "Ranking in spatial databases" +, editor = "M. J. Egenhofer and J. R. Herring" +, booktitle = "Advances in Spatial Databases - Fourth International Symposium" +, site = "Portland, ME" +, series = "Lecture Notes Comput. Sci." +, number = 951 +, month = aug +, year = 1995 +, pages = "83--95" +, update = "96.05 efrat" } @inproceedings{h-tgub-97 -, author = "Petr Hlin{\v e}n{\'y}" -, title = "Touching Graphs of Unit Balls" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "350--358" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Petr Hlin{\v e}n{\'y}" +, title = "Touching Graphs of Unit Balls" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "350--358" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @techreport{hy-prsts-87 -, author = "C. Ho and C. K. Yap" -, title = "Polynomial Remainder Sequences and Theory of Subresultants" -, type = "Technical {Report}" -, number = 319 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1987 -, note = "Robotics Report No. 119" -, update = "97.11 bibrelex" +, author = "C. Ho and C. K. Yap" +, title = "Polynomial Remainder Sequences and Theory of Subresultants" +, type = "Technical {Report}" +, number = 319 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1987 +, note = "Robotics Report No. 119" +, update = "97.11 bibrelex" } @inproceedings{hams-rqodc-97 -, author = "C.-T. Ho and R. Agrawal and N. Megiddo and R. Srikant" -, title = "Range queries in {OLAP} data cubes" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1997 -, pages = "73--88" -, update = "97.07 agarwal" +, author = "C.-T. Ho and R. Agrawal and N. Megiddo and R. Srikant" +, title = "Range queries in {OLAP} data cubes" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1997 +, pages = "73--88" +, update = "97.07 agarwal" } @inproceedings{hba-psqod-97 -, author = "C.-T. Ho and J. Bruck and R. Agrawal" -, title = "Partial-sum queries in {OLAP} data cubes using covering codes" -, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." -, year = 1997 -, pages = "228--237" -, update = "97.07 agarwal" +, author = "C.-T. Ho and J. Bruck and R. Agrawal" +, title = "Partial-sum queries in {OLAP} data cubes using covering codes" +, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." +, year = 1997 +, pages = "228--237" +, update = "97.07 agarwal" } @article{h-dpt-76 -, author = "C.-W. Ho" -, title = "Decomposition of a polygon into triangles" -, journal = "Math. Gazette" -, volume = 60 -, year = 1976 -, pages = "132--134" -, keywords = "decomposition, polygon triangulation, elementary geometry" -, cites = "l-tsfpp-11" -, annote = "A short correct proof of decomposability." +, author = "C.-W. Ho" +, title = "Decomposition of a polygon into triangles" +, journal = "Math. Gazette" +, volume = 60 +, year = 1976 +, pages = "132--134" +, keywords = "decomposition, polygon triangulation, elementary geometry" +, cites = "l-tsfpp-11" +, annote = "A short correct proof of decomposability." } @inproceedings{hkms-aromt-92 -, author = "J. M. Ho and M. T. Ko and T. H. Ma and T. Y. Sung" -, title = "Algorithms for Rectilinear Optimal Multicast Tree Problem" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "106--115" -, update = "94.09 smid, 93.09 milone+mitchell" +, author = "J. M. Ho and M. T. Ko and T. H. Ma and T. Y. Sung" +, title = "Algorithms for Rectilinear Optimal Multicast Tree Problem" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "106--115" +, update = "94.09 smid, 93.09 milone+mitchell" } @inproceedings{hlcw-bdmst-89 -, author = "J.-M. Ho and D. T. Lee and C.-H. Chang and C. K. Wong" -, title = "Bounded-diameter minimum spanning trees and related problems" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "276--282" -, precedes = "hlcw-mdstr-91" -, cites = "ct-fmst-76, d-ltatt-84, egs-oplms-86, gj-cigtn-79, gkln-dvd-83, k-osps-83, l-fnvda-80, m-ltalp-83, p-nappl-81, p-scnsg-57, sh-cpp-75, ZZZ" -, update = "98.03 bibrelex" +, author = "J.-M. Ho and D. T. Lee and C.-H. Chang and C. K. Wong" +, title = "Bounded-diameter minimum spanning trees and related problems" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "276--282" +, precedes = "hlcw-mdstr-91" +, cites = "ct-fmst-76, d-ltatt-84, egs-oplms-86, gj-cigtn-79, gkln-dvd-83, k-osps-83, l-fnvda-80, m-ltalp-83, p-nappl-81, p-scnsg-57, sh-cpp-75, ZZZ" +, update = "98.03 bibrelex" } @article{hlcw-mdstr-91 -, author = "J.-M. Ho and D. T. Lee and C.-H. Chang and C. K. Wong" -, title = "Minimum diameter spanning trees and related problems" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "987--997" -, keywords = "design of algorithms, geometric graphs, two-dimensional, minimum spanning trees, Steiner trees, NP-completeness" -, succeeds = "hlcw-bdmst-89" +, author = "J.-M. Ho and D. T. Lee and C.-H. Chang and C. K. Wong" +, title = "Minimum diameter spanning trees and related problems" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "987--997" +, keywords = "design of algorithms, geometric graphs, two-dimensional, minimum spanning trees, Steiner trees, NP-completeness" +, succeeds = "hlcw-bdmst-89" } @article{hvw-narst-90 -, author = "J.-M. Ho and G. Vijayan and C. K. Wong" -, title = "New algorithms for the rectilinear {Steiner} tree problem" -, journal = "IEEE Trans. Comput. Aided Design" -, volume = 9 -, year = 1990 -, pages = "185--193" -, update = "98.03 bibrelex" +, author = "J.-M. Ho and G. Vijayan and C. K. Wong" +, title = "New algorithms for the rectilinear {Steiner} tree problem" +, journal = "IEEE Trans. Comput. Aided Design" +, volume = 9 +, year = 1990 +, pages = "185--193" +, update = "98.03 bibrelex" } @article{h-femgm-88 -, author = "K. Ho-Le" -, title = "Finite Element Mesh Generation Methods: {A} Review And Classification" -, journal = "Comput. Aided Design" -, volume = 20 -, number = 1 -, month = jan -, year = 1988 -, pages = "27--38" -, keywords = "finite element mesh generation methods, Delaunay triangulation, mesh topology, Voronoi diagram" -, annote = "Good survey paper." -, abstract = "An attempt is made to provide a clear overall picture - of the finite element mesh generation field. A scheme - for classifying mesh generation methods is proposed, - whereby seven major mesh generation approaches are - identified. The basis for classification is the - temporal order in which nodes and elements are created. - The published mesh generation methods are reviewed. - Only four approaches are found to have fully automatic - mesh generation methods. These approaches are compared - on the criteria of element types and shapes, mesh - density control, and time efficiency. (Author abstract) - 73 refs." +, author = "K. Ho-Le" +, title = "Finite Element Mesh Generation Methods: {A} Review And Classification" +, journal = "Comput. Aided Design" +, volume = 20 +, number = 1 +, month = jan +, year = 1988 +, pages = "27--38" +, keywords = "finite element mesh generation methods, Delaunay triangulation, mesh topology, Voronoi diagram" +, annote = "Good survey paper." +, abstract = "An attempt is made to provide a clear overall picture + of the finite element mesh generation field. A scheme + for classifying mesh generation methods is proposed, + whereby seven major mesh generation approaches are + identified. The basis for classification is the + temporal order in which nodes and elements are created. + The published mesh generation methods are reviewed. + Only four approaches are found to have fully automatic + mesh generation methods. These approaches are compared + on the criteria of element types and shapes, mesh + density control, and time efficiency. (Author abstract) + 73 refs." } @techreport{h-psifp-93 -, author = "J. Hobby" -, title = "Practical segment intersection with finite precision output" -, type = "Technical {Report}" -, number = "93/2-27" -, institution = "Bell Laboratories" -, year = 1993 -, update = "98.07 bibrelex" +, author = "J. Hobby" +, title = "Practical segment intersection with finite precision output" +, type = "Technical {Report}" +, number = "93/2-27" +, institution = "Bell Laboratories" +, year = 1993 +, update = "98.07 bibrelex" } @unpublished{h-psifp-94 -, author = "J. Hobby" -, title = "Practical segment intersection with finite precision output" -, year = 1994 -, note = "Manuscript" -, update = "97.11 bibrelex" +, author = "J. Hobby" +, title = "Practical segment intersection with finite precision output" +, year = 1994 +, note = "Manuscript" +, update = "97.11 bibrelex" } @inproceedings{h-patmn-93 -, author = "J. D. Hobby" -, title = "Polygonal Approximations that Minimize the Number of Inflections" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "93--102" -, update = "93.05 smid" +, author = "J. D. Hobby" +, title = "Polygonal Approximations that Minimize the Number of Inflections" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "93--102" +, update = "93.05 smid" } @article{h-psifp-99 -, author = "J. D. Hobby" -, title = "Practical Segment Intersection with Finite Precision Output" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, number = 4 -, month = oct -, year = 1999 -, pages = "199--214" -, update = "00.03 held+smid" +, author = "J. D. Hobby" +, title = "Practical Segment Intersection with Finite Precision Output" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, number = 4 +, month = oct +, year = 1999 +, pages = "199--214" +, update = "00.03 held+smid" } @article{h-rccw-89 -, author = "J. D. Hobby" -, title = "Rasterizing curves of constant width" -, journal = "J. ACM" -, volume = 36 -, year = 1989 -, pages = "209--229" +, author = "J. D. Hobby" +, title = "Rasterizing curves of constant width" +, journal = "J. ACM" +, volume = 36 +, year = 1989 +, pages = "209--229" } @article{h-secis-86 -, author = "J. D. Hobby" -, title = "Smooth, easy to compute interpolating splines" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "123--140" +, author = "J. D. Hobby" +, title = "Smooth, easy to compute interpolating splines" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "123--140" } @book{h-apncp-97 -, title = "Approximation Problems for {NP}-Complete Problems" -, editor = "Dorit Hochbaum" -, publisher = "PWS Publishing Company" -, address = "Boston, MA" -, year = 1997 -, update = "98.03 mitchell" +, title = "Approximation Problems for {NP}-Complete Problems" +, editor = "Dorit Hochbaum" +, publisher = "PWS Publishing Company" +, address = "Boston, MA" +, year = 1997 +, update = "98.03 mitchell" } @article{h-aascv-82 -, author = "D. S. Hochbaum" -, title = "Approximation algorithms of the set covering and vertex cover problems" -, journal = "SIAM J. Comput." -, volume = 11 -, number = 3 -, year = 1982 -, pages = "555--556" -, update = "97.11 bibrelex" +, author = "D. S. Hochbaum" +, title = "Approximation algorithms of the set covering and vertex cover problems" +, journal = "SIAM J. Comput." +, volume = 11 +, number = 3 +, year = 1982 +, pages = "555--556" +, update = "97.11 bibrelex" } @article{h-ebssv-83 -, author = "Dorit S. Hochbaum" -, title = "Efficient Bounds for the Stable Set, Vertex Cover and Set Packing Problems" -, journal = "Discrete Appl. Math." -, volume = 6 -, year = 1983 -, pages = "243--254" -, update = "98.07 bibrelex" +, author = "Dorit S. Hochbaum" +, title = "Efficient Bounds for the Stable Set, Vertex Cover and Set Packing Problems" +, journal = "Discrete Appl. Math." +, volume = 6 +, year = 1983 +, pages = "243--254" +, update = "98.07 bibrelex" } @article{hm-ascpp-85 -, author = "D. S. Hochbaum and W. Maas" -, title = "Approximation schemes for covering and packing problems in image processing and {VLSI}" -, journal = "J. ACM" -, volume = 32 -, year = 1985 -, pages = "130--136" -, update = "96.09 orourke" +, author = "D. S. Hochbaum and W. Maas" +, title = "Approximation schemes for covering and packing problems in image processing and {VLSI}" +, journal = "J. ACM" +, volume = 32 +, year = 1985 +, pages = "130--136" +, update = "96.09 orourke" } @techreport{hm-aacpp-84 -, author = "D. S. Hochbaum and W. Maass" -, title = "Approximation algorithms for covering and packing problems in robotics" -, type = "Report" -, number = "??" -, institution = "Univ. California Berkeley" -, address = "Berkeley, CA" -, year = 1984 -, update = "94.01 rote" +, author = "D. S. Hochbaum and W. Maass" +, title = "Approximation algorithms for covering and packing problems in robotics" +, type = "Report" +, number = "??" +, institution = "Univ. California Berkeley" +, address = "Berkeley, CA" +, year = 1984 +, update = "94.01 rote" } @article{hm-faanc-87 -, author = "D. S. Hochbaum and W. Maass" -, title = "Fast approximation algorithms for a nonconvex covering problem" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "305--323" -, update = "94.01 rote" +, author = "D. S. Hochbaum and W. Maass" +, title = "Fast approximation algorithms for a nonconvex covering problem" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "305--323" +, update = "94.01 rote" } @article{hs-bphkc-85 -, author = "D. S. Hochbaum and D. Shmoys" -, title = "A best possible heuristic for the $k$-center problem" -, journal = "Math. Oper. Res." -, volume = 10 -, year = 1985 -, pages = "180--184" -, update = "96.05 agarwal" +, author = "D. S. Hochbaum and D. Shmoys" +, title = "A best possible heuristic for the $k$-center problem" +, journal = "Math. Oper. Res." +, volume = 10 +, year = 1985 +, pages = "180--184" +, update = "96.05 agarwal" } @article{hs-uaaab-86 -, author = "D. S. Hochbaum and D. Shmoys" -, title = "A unified approach to approximation algorithms for bottleneck problems" -, journal = "J. ACM" -, volume = 33 -, year = 1986 -, pages = "533--550" -, update = "96.05 agarwal" +, author = "D. S. Hochbaum and D. Shmoys" +, title = "A unified approach to approximation algorithms for bottleneck problems" +, journal = "J. ACM" +, volume = 33 +, year = 1986 +, pages = "533--550" +, update = "96.05 agarwal" } @article{hrb-sicm-93 -, author = "R. J. Hocken and J. Raja and U. Babu" -, title = "Sampling issues in coordinate metrology" -, journal = "Manufacturing Review" -, volume = 6 -, number = 4 -, year = 1993 -, pages = "282--294" -, update = "97.03 agarwal" +, author = "R. J. Hocken and J. Raja and U. Babu" +, title = "Sampling issues in coordinate metrology" +, journal = "Manufacturing Review" +, volume = 6 +, number = 4 +, year = 1993 +, pages = "282--294" +, update = "97.03 agarwal" } @book{hy-t-61 -, author = "J. G. Hocking and G. S. Young" -, title = "Topology" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1961 -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "J. G. Hocking and G. S. Young" +, title = "Topology" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1961 +, update = "98.11 bibrelex, 98.07 bibrelex" } @techreport{h-sg-85 -, author = "L. Hodes" -, title = "Sphere graphs" -, type = "Report" -, number = "??" -, institution = "National Cancer Inst." -, address = "Bethseda, MD" -, year = 1985 +, author = "L. Hodes" +, title = "Sphere graphs" +, type = "Report" +, number = "??" +, institution = "National Cancer Inst." +, address = "Bethseda, MD" +, year = 1985 } @inproceedings{h-lcgpp-69 -, author = "L. Hodes" -, title = "The logical complexity of geometric properties in the plane" -, booktitle = "Proc. 1st Annu. ACM Sympos. Theory Comput." -, year = 1969 -, pages = "249--254" -, precedes = "h-lcgpp-70" +, author = "L. Hodes" +, title = "The logical complexity of geometric properties in the plane" +, booktitle = "Proc. 1st Annu. ACM Sympos. Theory Comput." +, year = 1969 +, pages = "249--254" +, precedes = "h-lcgpp-70" } @article{h-lcgpp-70 -, author = "L. Hodes" -, title = "The logical complexity of geometric properties in the plane" -, journal = "J. ACM" -, volume = 17 -, year = 1970 -, pages = "339--347" -, succeeds = "h-lcgpp-69" +, author = "L. Hodes" +, title = "The logical complexity of geometric properties in the plane" +, journal = "J. ACM" +, volume = 17 +, year = 1970 +, pages = "339--347" +, succeeds = "h-lcgpp-69" } @book{hp-mag-52 -, author = "W. V. D. Hodge and D. Pedoe" -, title = "Methods of algebraic geometry" -, publisher = "Cambridge University Press" -, year = 1952 -, update = "97.11 bibrelex" +, author = "W. V. D. Hodge and D. Pedoe" +, title = "Methods of algebraic geometry" +, publisher = "Cambridge University Press" +, year = 1952 +, update = "97.11 bibrelex" } @article{hwbo-aha-95 -, author = "J. K. Hodgins and W. L. Wooten and D. C. Brogan and J. F. O'Brien" -, title = "Animating human atheletics" -, journal = "Comput. Graph." -, volume = "??" -, year = 1995 -, pages = "71--78" -, note = "Proc. SIGGRAPH" -, update = "97.11 bibrelex" +, author = "J. K. Hodgins and W. L. Wooten and D. C. Brogan and J. F. O'Brien" +, title = "Animating human atheletics" +, journal = "Comput. Graph." +, volume = "??" +, year = 1995 +, pages = "71--78" +, note = "Proc. SIGGRAPH" +, update = "97.11 bibrelex" } @article{hr-cccph-93 -, author = "C. D. Hodgson and I. Rivin" -, title = "A characterization of compact convex polyhedra in hyperbolic 3-space" -, journal = "Inventiones Mathematicae" -, volume = 111 -, number = 1 -, month = jan -, year = 1993 -, pages = "77--111" -, update = "98.11 bibrelex" +, author = "C. D. Hodgson and I. Rivin" +, title = "A characterization of compact convex polyhedra in hyperbolic 3-space" +, journal = "Inventiones Mathematicae" +, volume = 111 +, number = 1 +, month = jan +, year = 1993 +, pages = "77--111" +, update = "98.11 bibrelex" } @article{hrs-cchpc-92 -, author = "C. D. Hodgson and I. Rivin and W. D. Smith" -, title = "A characterization of convex hyperbolic polyhedra and of convex polyhedra inscribed in the sphere" -, journal = "Bull. (New Series) of the AMS" -, volume = 27 -, number = 2 -, year = 1992 -, pages = "246--251" -, keywords = "graph drawing, convex, 3D" -, update = "98.07 tamassia+vismara, 96.09 tamassia" -, annote = "Erratum in 28(1):213, 1993" +, author = "C. D. Hodgson and I. Rivin and W. D. Smith" +, title = "A characterization of convex hyperbolic polyhedra and of convex polyhedra inscribed in the sphere" +, journal = "Bull. (New Series) of the AMS" +, volume = 27 +, number = 2 +, year = 1992 +, pages = "246--251" +, keywords = "graph drawing, convex, 3D" +, update = "98.07 tamassia+vismara, 96.09 tamassia" +, annote = "Erratum in 28(1):213, 1993" } @article{hrs-ecchpcpis-93 -, author = "C. D. Hodgson and I. Rivin and W. D. Smith" -, title = "Erratum ({A} Characterization of Convex Hyperbolic Polyhedra and of Convex Polyhedra Inscribed in the Sphere)" -, journal = "Bull. Amer. Math. Soc. (New Series)" -, volume = 28 -, number = 1 -, year = 1993 -, pages = 213 -, update = "98.07 tamassia+vismara" +, author = "C. D. Hodgson and I. Rivin and W. D. Smith" +, title = "Erratum ({A} Characterization of Convex Hyperbolic Polyhedra and of Convex Polyhedra Inscribed in the Sphere)" +, journal = "Bull. Amer. Math. Soc. (New Series)" +, volume = 28 +, number = 1 +, year = 1993 +, pages = 213 +, update = "98.07 tamassia+vismara" } @techreport{hs-adpso-94 -, author = "E. Hoel and H. Samet" -, title = "Algorithms for data-parallel spatial operations" -, type = "Computer Science Department" -, number = "CAR-TR-704" -, institution = "University of Maryland" -, month = feb -, year = 1994 -, update = "96.05 efrat" +, author = "E. Hoel and H. Samet" +, title = "Algorithms for data-parallel spatial operations" +, type = "Computer Science Department" +, number = "CAR-TR-704" +, institution = "University of Maryland" +, month = feb +, year = 1994 +, update = "96.05 efrat" } @inproceedings{hs-dpsja-94 -, author = "E. Hoel and H. Samet" -, title = "Data-Parallel Spatial Join Algorithms" -, booktitle = "Proc. 23rd Internat. Conf. Parallel Process." -, site = "St. Charles, Illinois" -, month = aug -, year = 1994 -, pages = "227--234" -, update = "96.05 efrat" +, author = "E. Hoel and H. Samet" +, title = "Data-Parallel Spatial Join Algorithms" +, booktitle = "Proc. 23rd Internat. Conf. Parallel Process." +, site = "St. Charles, Illinois" +, month = aug +, year = 1994 +, pages = "227--234" +, update = "96.05 efrat" } @inproceedings{hs-pdpso-94 -, author = "E. Hoel and H. Samet" -, title = "Performance of Data-Parallel Spatial Operations" -, editor = "J. Bocca and M. Jarke and C. Zaniolo" -, booktitle = "vldb94" -, site = "Santiago, Chile" -, month = sep -, year = 1994 -, pages = "156--167" -, update = "96.05 efrat" +, author = "E. Hoel and H. Samet" +, title = "Performance of Data-Parallel Spatial Operations" +, editor = "J. Bocca and M. Jarke and C. Zaniolo" +, booktitle = "vldb94" +, site = "Santiago, Chile" +, month = sep +, year = 1994 +, pages = "156--167" +, update = "96.05 efrat" } @inproceedings{hs-qcsds-92 -, author = "E. G. Hoel and H. Samet" -, title = "A qualitative comparison study of data structures for large line segment databases" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, site = "San Diego" -, year = 1992 -, pages = "205--214" -, update = "97.07 agarwal, 96.05 efrat" +, author = "E. G. Hoel and H. Samet" +, title = "A qualitative comparison study of data structures for large line segment databases" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, site = "San Diego" +, year = 1992 +, pages = "205--214" +, update = "97.07 agarwal, 96.05 efrat" } @inproceedings{hs-bsjos-95 -, author = "E. G. Hoel and H. Samet" -, title = "Benchmarking Spatial Join Operations with Spatial Output" -, editor = "U. Dayal and P. M. D. Gray and S. Nishio" -, booktitle = "Proceedings of the Twenty First International Conference on Very Large Data Bases" -, site = "Zurich" -, month = sep -, year = 1995 -, pages = "606--618" -, update = "96.05 efrat" +, author = "E. G. Hoel and H. Samet" +, title = "Benchmarking Spatial Join Operations with Spatial Output" +, editor = "U. Dayal and P. M. D. Gray and S. Nishio" +, booktitle = "Proceedings of the Twenty First International Conference on Very Large Data Bases" +, site = "Zurich" +, month = sep +, year = 1995 +, pages = "606--618" +, update = "96.05 efrat" } @inproceedings{hs-dppso-icpr-95 -, author = "E. G. Hoel and H. Samet" -, title = "Data-Parallel Primitives for Spatial Operations" -, booktitle = "Proc. 24th Internat. Conf. Parallel Process." -, site = "Oconomowoc, WI" -, volume = 3 -, month = aug -, year = 1995 -, pages = "184--191" -, update = "96.05 efrat" +, author = "E. G. Hoel and H. Samet" +, title = "Data-Parallel Primitives for Spatial Operations" +, booktitle = "Proc. 24th Internat. Conf. Parallel Process." +, site = "Oconomowoc, WI" +, volume = 3 +, month = aug +, year = 1995 +, pages = "184--191" +, update = "96.05 efrat" } @inproceedings{hs-dppso-camp-95 -, author = "E. G. Hoel and H. Samet" -, title = "Data-Parallel Primitives for Spatial Operations Using PM Quadtrees" -, editor = "V. Cantoni and L. Lombardi and M. Mosconi and M. Savini and A. Setti" -, booktitle = "Proceedings of Computer Architectures for Machine Perception '95" -, site = "Como, Italy" -, month = sep -, year = 1995 -, pages = "266--273" -, update = "96.05 efrat" +, author = "E. G. Hoel and H. Samet" +, title = "Data-Parallel Primitives for Spatial Operations Using PM Quadtrees" +, editor = "V. Cantoni and L. Lombardi and M. Mosconi and M. Savini and A. Setti" +, booktitle = "Proceedings of Computer Architectures for Machine Perception '95" +, site = "Como, Italy" +, month = sep +, year = 1995 +, pages = "266--273" +, update = "96.05 efrat" } @inproceedings{hs-dprta-93 -, author = "E. G. Hoel and H. Samet" -, title = "Data-Parallel R-tree Algorithms" -, booktitle = "Proc. 22nd Internat. Conf. Parallel Process." -, nickname = "ICPP '93" -, site = "St. Charles, IL" -, month = aug -, year = 1993 -, pages = "47--50" -, update = "98.07 bibrelex, 96.05 efrat" +, author = "E. G. Hoel and H. Samet" +, title = "Data-Parallel R-tree Algorithms" +, booktitle = "Proc. 22nd Internat. Conf. Parallel Process." +, nickname = "ICPP '93" +, site = "St. Charles, IL" +, month = aug +, year = 1993 +, pages = "47--50" +, update = "98.07 bibrelex, 96.05 efrat" } @incollection{hs-epsql-91 -, author = "E. G. Hoel and H. Samet" -, title = "Efficient processing of spatial queries in line segment databases" -, editor = "O. G{\"u}nther and H. J. Schek" -, booktitle = "Proc. 2rd Sympos. Advances in Spatial Databases" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1991 -, pages = "237--256" -, comments = "also Lecture Notes in Computer Science 525" -, update = "96.09 agarwal, 96.05 efrat" +, author = "E. G. Hoel and H. Samet" +, title = "Efficient processing of spatial queries in line segment databases" +, editor = "O. G{\"u}nther and H. J. Schek" +, booktitle = "Proc. 2rd Sympos. Advances in Spatial Databases" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1991 +, pages = "237--256" +, comments = "also Lecture Notes in Computer Science 525" +, update = "96.09 agarwal, 96.05 efrat" } @inproceedings{hkf-dsc-96 -, author = "Werner Hoelbling and Werner Kuhn and Andrew U. Frank" -, title = "Discrete Simplicial Complexes" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = 69 -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Werner Hoelbling and Werner Kuhn and Andrew U. Frank" +, title = "Discrete Simplicial Complexes" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = 69 +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{hcklm-fcgvd-00 -, author = "Kenneth E. {Hoff III} and Tim Culver and John Keyser and Ming Lin and Dinesh Manocha" -, title = "Fast Computation of Generalized {Voronoi} Diagrams Using Graphics Hardware" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "375--376" -, keywords = "video review" -, update = "00.11 jones" +, author = "Kenneth E. {Hoff III} and Tim Culver and John Keyser and Ming Lin and Dinesh Manocha" +, title = "Fast Computation of Generalized {Voronoi} Diagrams Using Graphics Hardware" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "375--376" +, keywords = "video review" +, update = "00.11 jones" } @article{h-bchn-79 -, author = "A. J. Hoffman" -, title = "Binding constraints and {Helly} numbers" -, journal = "Ann. New York Acad. Sci." -, volume = 319 -, year = 1979 -, pages = "284--288" -, update = "98.03 bibrelex" +, author = "A. J. Hoffman" +, title = "Binding constraints and {Helly} numbers" +, journal = "Ann. New York Acad. Sci." +, volume = 319 +, year = 1979 +, pages = "284--288" +, update = "98.03 bibrelex" } @article{hl-cnc-86 -, author = "A. J. Hoffman and C. W. Lee" -, title = "On the cone of nonnegative circuits" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "229--239" +, author = "A. J. Hoffman and C. W. Lee" +, title = "On the cone of nonnegative circuits" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "229--239" } @article{hh-gpbs-88 -, author = "C. Hoffman and J. Hopcroft" -, title = "The geometry of projective blending surfaces" -, journal = "Artif. Intell." -, volume = 37 -, year = 1988 -, pages = "357--376" -, update = "98.07 bibrelex" +, author = "C. Hoffman and J. Hopcroft" +, title = "The geometry of projective blending surfaces" +, journal = "Artif. Intell." +, volume = 37 +, year = 1988 +, pages = "357--376" +, update = "98.07 bibrelex" } @book{h-mf-87 -, author = "E. G. Hoffman" -, title = "Modular Fixturing" -, publisher = "Manufacturing Technology Press" -, address = "Lake Geneva, Wisconsin" -, year = 1987 -, update = "98.03 bibrelex" +, author = "E. G. Hoffman" +, title = "Modular Fixturing" +, publisher = "Manufacturing Technology Press" +, address = "Lake Geneva, Wisconsin" +, year = 1987 +, update = "98.03 bibrelex" } @article{h-dpsi-90 -, author = "C. Hoffmann" -, title = "A dimensionality paradigm for surface interrogations" -, journal = "Comput. Aided Geom. Design" -, volume = 7 -, number = 6 -, year = 1990 -, pages = "517--532" -, update = "98.07 bibrelex" +, author = "C. Hoffmann" +, title = "A dimensionality paradigm for surface interrogations" +, journal = "Comput. Aided Geom. Design" +, volume = 7 +, number = 6 +, year = 1990 +, pages = "517--532" +, update = "98.07 bibrelex" } @book{h-gsm-89 -, author = "C. Hoffmann" -, title = "Geometric and Solid Modeling" -, publisher = "Morgan-Kaufmann" -, address = "San Mateo, CA" -, year = 1989 -, update = "97.03 schwarzkopf, 93.05 orourke" +, author = "C. Hoffmann" +, title = "Geometric and Solid Modeling" +, publisher = "Morgan-Kaufmann" +, address = "San Mateo, CA" +, year = 1989 +, update = "97.03 schwarzkopf, 93.05 orourke" } @article{hh-asgca-85a -, author = "C. Hoffmann and J. Hopcroft" -, title = "Automatic Surface Generation in Computer Aided Design" -, journal = "Visual Comput." -, volume = 1 -, number = 2 -, year = 1985 -, pages = "92--100" -, update = "98.03 bibrelex" +, author = "C. Hoffmann and J. Hopcroft" +, title = "Automatic Surface Generation in Computer Aided Design" +, journal = "Visual Comput." +, volume = 1 +, number = 2 +, year = 1985 +, pages = "92--100" +, update = "98.03 bibrelex" } @techreport{hh-gabr-86 -, author = "C. Hoffmann and J. Hopcroft" -, title = "Geometric Ambiguities in Boundary Representation" -, number = "86-725" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1986 -, update = "98.03 bibrelex" +, author = "C. Hoffmann and J. Hopcroft" +, title = "Geometric Ambiguities in Boundary Representation" +, number = "86-725" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1986 +, update = "98.03 bibrelex" } @techreport{h-ac-85 -, author = "C. M. Hoffmann" -, title = "Algebraic Curves" -, number = "CSD-TR-675" -, institution = "Computer Science Department, Purdue University" -, year = 1985 -, update = "98.03 bibrelex" +, author = "C. M. Hoffmann" +, title = "Algebraic Curves" +, number = "CSD-TR-675" +, institution = "Computer Science Department, Purdue University" +, year = 1985 +, update = "98.03 bibrelex" } @techreport{h-cvdgc-91 -, author = "C. M. Hoffmann" -, title = "Computer Vision, Descriptive Geometry, and Classical Mechanics" -, number = "CSD-TR-91-073" -, institution = "Purdue University, CS Dept., West Lafayette, IN 47907, USA" -, month = oct -, year = 1991 -, keywords = "skeleton, Voronoi diagram, offsetting" -, update = "93.09 held" +, author = "C. M. Hoffmann" +, title = "Computer Vision, Descriptive Geometry, and Classical Mechanics" +, number = "CSD-TR-91-073" +, institution = "Purdue University, CS Dept., West Lafayette, IN 47907, USA" +, month = oct +, year = 1991 +, keywords = "skeleton, Voronoi diagram, offsetting" +, update = "93.09 held" } @techreport{h-gamg-93 -, author = "C. M. Hoffmann" -, title = "Geometric Approaches to Mesh Generation" -, number = "CSD-TR-93-053" -, institution = "CS Dept., Purdue U., West Lafayette, IN 48907, USA" -, month = aug -, year = 1993 -, update = "95.01 held" +, author = "C. M. Hoffmann" +, title = "Geometric Approaches to Mesh Generation" +, number = "CSD-TR-93-053" +, institution = "CS Dept., Purdue U., West Lafayette, IN 48907, USA" +, month = aug +, year = 1993 +, update = "95.01 held" } @inproceedings{h-hsism-96 -, author = "C. M. Hoffmann" -, title = "How solid is solid modeling?" -, editor = "M. C. Lina and D. Manocha" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, series = "Lecture Notes Comput. Sci." -, volume = 1148 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "1--8" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "C. M. Hoffmann" +, title = "How solid is solid modeling?" +, editor = "M. C. Lina and D. Manocha" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, series = "Lecture Notes Comput. Sci." +, volume = 1148 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "1--8" +, update = "98.11 bibrelex, 98.07 bibrelex" } @techreport{h-hcsco-90t -, author = "C. M. Hoffmann" -, title = "How to Construct the Skeleton of {CSG} Objects" -, type = "Technical Report" -, number = "CSD-TR-1014" -, institution = "CS Dept., Purdue Univ." -, address = "West Lafayette, IN 47907, USA" -, month = sep -, year = 1990 -, precedes = "h-hcsco-90" -, update = "98.11 bibrelex" +, author = "C. M. Hoffmann" +, title = "How to Construct the Skeleton of {CSG} Objects" +, type = "Technical Report" +, number = "CSD-TR-1014" +, institution = "CS Dept., Purdue Univ." +, address = "West Lafayette, IN 47907, USA" +, month = sep +, year = 1990 +, precedes = "h-hcsco-90" +, update = "98.11 bibrelex" } @inproceedings{h-hcsco-90 -, author = "C. M. Hoffmann" -, title = "How to Construct the Skeleton of {CSG} Objects" -, booktitle = "Proc. 4th IMA Conf. on The Mathematics of Surfaces" -, publisher = "Oxford University Press" -, address = "Bath, UK" -, year = 1990 -, pages = "??" -, succeeds = "h-hcsco-90t" -, update = "98.11 bibrelex, 93.09 held" +, author = "C. M. Hoffmann" +, title = "How to Construct the Skeleton of {CSG} Objects" +, booktitle = "Proc. 4th IMA Conf. on The Mathematics of Surfaces" +, publisher = "Oxford University Press" +, address = "Bath, UK" +, year = 1990 +, pages = "??" +, succeeds = "h-hcsco-90t" +, update = "98.11 bibrelex, 93.09 held" } @inproceedings{h-sggr-93 -, author = "C. M. Hoffmann" -, title = "On semantics of generative geometry representations" -, booktitle = "Proc. 19th ASME Design Automation Conference" -, year = 1993 -, pages = "411--420" -, update = "98.07 bibrelex" +, author = "C. M. Hoffmann" +, title = "On semantics of generative geometry representations" +, booktitle = "Proc. 19th ASME Design Automation Conference" +, year = 1993 +, pages = "411--420" +, update = "98.07 bibrelex" } @incollection{h-sm-97 -, author = "C. M. Hoffmann" -, title = "Solid modeling" -, chapter = 47 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "863--880" -, update = "97.11 orourke" +, author = "C. M. Hoffmann" +, title = "Solid modeling" +, chapter = 47 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "863--880" +, update = "97.11 orourke" } @techreport{h-pargc-88 -, author = "C. M. Hoffmann" -, title = "The problem of accuracy and robustness in geometric computation" -, type = "Report" -, number = "CSD-TR-771" -, institution = "Dept. Comput. Sci., Purdue Univ." -, address = "West Lafayette, IN" -, year = 1988 +, author = "C. M. Hoffmann" +, title = "The problem of accuracy and robustness in geometric computation" +, type = "Report" +, number = "CSD-TR-771" +, institution = "Dept. Comput. Sci., Purdue Univ." +, address = "West Lafayette, IN" +, year = 1988 } @article{h-pargc-89 -, author = "C. M. Hoffmann" -, title = "The Problems of Accuracy and Robustness in Geometric Computation" -, journal = "IEEE Computer" -, volume = 22 -, number = 3 -, month = mar -, year = 1989 -, pages = "31--41" -, keywords = "numerical precision, stability, robustness" -, update = "93.09 held" +, author = "C. M. Hoffmann" +, title = "The Problems of Accuracy and Robustness in Geometric Computation" +, journal = "IEEE Computer" +, volume = 22 +, number = 3 +, month = mar +, year = 1989 +, pages = "31--41" +, keywords = "numerical precision, stability, robustness" +, update = "93.09 held" } @techreport{hh-asgca-85t -, author = "C. M. Hoffmann and J. E. Hopcroft" -, title = "Automatic Surface Generation in Computer Aided Design" -, number = "85-661" -, institution = "Cornell University, Computer Science Department" -, year = 1985 -, update = "98.03 bibrelex" +, author = "C. M. Hoffmann and J. E. Hopcroft" +, title = "Automatic Surface Generation in Computer Aided Design" +, number = "85-661" +, institution = "Cornell University, Computer Science Department" +, year = 1985 +, update = "98.03 bibrelex" } @techreport{hh-qbs-85 -, author = "C. M. Hoffmann and J. E. Hopcroft" -, title = "Quadratic Blending Surfaces" -, number = "85-647" -, institution = "Cornell University, Computer Science Department" -, year = 1985 -, update = "98.03 bibrelex" +, author = "C. M. Hoffmann and J. E. Hopcroft" +, title = "Quadratic Blending Surfaces" +, number = "85-647" +, institution = "Cornell University, Computer Science Department" +, year = 1985 +, update = "98.03 bibrelex" } @article{hh-qbs-86 -, author = "C. M. Hoffmann and J. E. Hopcroft" -, title = "Quadratic blending surfaces" -, journal = "Comput. Aided Design" -, volume = 18 -, number = 6 -, year = 1986 -, pages = "301--306" -, update = "98.03 bibrelex" +, author = "C. M. Hoffmann and J. E. Hopcroft" +, title = "Quadratic blending surfaces" +, journal = "Comput. Aided Design" +, volume = 18 +, number = 6 +, year = 1986 +, pages = "301--306" +, update = "98.03 bibrelex" } @techreport{hh-pmbsc-85 -, author = "C. M. Hoffmann and J. E. Hopcroft" -, title = "The potential method for blending surfaces and corners" -, number = "85-699" -, institution = "Cornell University, Computer Science Department" -, year = 1985 -, update = "98.03 bibrelex" +, author = "C. M. Hoffmann and J. E. Hopcroft" +, title = "The potential method for blending surfaces and corners" +, number = "85-699" +, institution = "Cornell University, Computer Science Department" +, year = 1985 +, update = "98.03 bibrelex" } @inproceedings{hhk-tirgc-88 -, author = "C. M. Hoffmann and J. E. Hopcroft and M. S. Karasick" -, title = "Towards implementing robust geometric computations" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "106--117" -, cites = "d-cugr-86, eos-calha-86, gl-mc-83, gy-frcg-86, hhk-rsops-87, k-rmrs-89, l-ccsda-85, m-vigau-86i, otu-nsga-87, s-aefsm-87t, s-fprgo-87, ZZZ" -, update = "98.03 bibrelex" +, author = "C. M. Hoffmann and J. E. Hopcroft and M. S. Karasick" +, title = "Towards implementing robust geometric computations" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "106--117" +, cites = "d-cugr-86, eos-calha-86, gl-mc-83, gy-frcg-86, hhk-rsops-87, k-rmrs-89, l-ccsda-85, m-vigau-86i, otu-nsga-87, s-aefsm-87t, s-fprgo-87, ZZZ" +, update = "98.03 bibrelex" } @techreport{hhk-rsops-87 -, author = "C. M. Hoffmann and J. E. Hopcroft and M. T. Karasick" -, title = "Robust Set Operations on Polyhedral Solids" -, number = "87-875" -, institution = "Cornell University, Computer Science Department" -, address = "Ithaca, New York" -, month = oct -, year = 1987 -, update = "98.03 bibrelex" +, author = "C. M. Hoffmann and J. E. Hopcroft and M. T. Karasick" +, title = "Robust Set Operations on Polyhedral Solids" +, number = "87-875" +, institution = "Cornell University, Computer Science Department" +, address = "Ithaca, New York" +, month = oct +, year = 1987 +, update = "98.03 bibrelex" } @article{hhk-rsops-89 -, author = "C. M. Hoffmann and J. E. Hopcroft and M. T. Karasick" -, title = "Robust Set Operations on Polyhedral Solids" -, journal = "IEEE Comput. Graph. Appl." -, volume = 9 -, number = 6 -, month = nov -, year = 1989 -, pages = "50--59" -, keywords = "numerical precision, stability, robustness" -, update = "93.09 held" +, author = "C. M. Hoffmann and J. E. Hopcroft and M. T. Karasick" +, title = "Robust Set Operations on Polyhedral Solids" +, journal = "IEEE Comput. Graph. Appl." +, volume = 9 +, number = 6 +, month = nov +, year = 1989 +, pages = "50--59" +, keywords = "numerical precision, stability, robustness" +, update = "93.09 held" } @article{hr-rmsm-96 -, author = "C. M. Hoffmann and J. R. Rossignac" -, title = "A Road Map to Solid Modeling" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 2 -, number = 1 -, month = mar -, year = 1996 -, pages = "3--10" -, update = "96.09 held" +, author = "C. M. Hoffmann and J. R. Rossignac" +, title = "A Road Map to Solid Modeling" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 2 +, number = 1 +, month = mar +, year = 1996 +, pages = "3--10" +, update = "96.09 held" } @article{hv-ftgsm-91 -, author = "C. M. Hoffmann and G. Van{\v e}{\v c}ek" -, title = "Fundamental Techniques for Geometric and Solid Modeling" -, journal = "Control and Dynamic Systems" -, volume = 48 -, year = 1991 -, pages = "101--165" -, keywords = "skeleton, Voronoi diagram, offsetting" -, update = "93.09 held" +, author = "C. M. Hoffmann and G. Van{\v e}{\v c}ek" +, title = "Fundamental Techniques for Geometric and Solid Modeling" +, journal = "Control and Dynamic Systems" +, volume = 48 +, year = 1991 +, pages = "101--165" +, keywords = "skeleton, Voronoi diagram, offsetting" +, update = "93.09 held" } @inproceedings{hv-scp-95 -, author = "C. M. Hoffmann and P. J. Vermeer" -, title = "A spatial constraint problem" -, booktitle = "Computational Kinematics Workshop" -, site = "Nice, France" -, month = sep -, year = 1995 -, update = "98.07 bibrelex" +, author = "C. M. Hoffmann and P. J. Vermeer" +, title = "A spatial constraint problem" +, booktitle = "Computational Kinematics Workshop" +, site = "Nice, France" +, month = sep +, year = 1995 +, update = "98.07 bibrelex" } @article{hv-eescs-91 -, author = "C. M. Hoffmann and P. J. Vermeer" -, title = "Eliminating extraneous solutions in curve and surface operations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, year = 1991 -, pages = "47--66 and 345" -, keywords = "geometric modeling, faithful problem formulation, offsets, blends, equidistance surfaces, extraneous solutions" -, precedes = "hv-eeesc-91" -, update = "96.09 devillers" +, author = "C. M. Hoffmann and P. J. Vermeer" +, title = "Eliminating extraneous solutions in curve and surface operations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, year = 1991 +, pages = "47--66 and 345" +, keywords = "geometric modeling, faithful problem formulation, offsets, blends, equidistance surfaces, extraneous solutions" +, precedes = "hv-eeesc-91" +, update = "96.09 devillers" } @article{hv-eeesc-91 -, author = "C. M. Hoffmann and P. J. Vermeer" -, title = "Erratum --- Eliminating extraneous solutions in curve and surface operations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, year = 1991 -, pages = 345 -, succeeds = "hv-eescs-91" +, author = "C. M. Hoffmann and P. J. Vermeer" +, title = "Erratum --- Eliminating extraneous solutions in curve and surface operations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, year = 1991 +, pages = 345 +, succeeds = "hv-eescs-91" } @incollection{hv-gcsr2-95 -, author = "Christoph M. Hoffmann and Pamela J. Vermeer" -, title = "Geometric Constraint Solving in {$\Re^2$} and {$\Re^3$}" -, editor = "Ding-Zhu Du and Frank Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "266--298" -, keywords = "survey paper" -, update = "98.07 icking" +, author = "Christoph M. Hoffmann and Pamela J. Vermeer" +, title = "Geometric Constraint Solving in {$\Re^2$} and {$\Re^3$}" +, editor = "Ding-Zhu Du and Frank Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "266--298" +, keywords = "survey paper" +, update = "98.07 icking" } @inproceedings{h-ragp-90 -, author = "Frank Hoffmann" -, title = "On the Rectilinear Art Gallery Problem" -, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 443 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "717--728" -, update = "94.05 devillers, 93.09 milone+mitchell" +, author = "Frank Hoffmann" +, title = "On the Rectilinear Art Gallery Problem" +, booktitle = "Proc. 17th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 443 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "717--728" +, update = "94.05 devillers, 93.09 milone+mitchell" } @inproceedings{hikk-cslp-97 -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "A Competitive Strategy for Learning a Polygon" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1997 -, pages = "166--174" -, succeeds = "hikk-ecslp-96" -, update = "97.03 icking" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "A Competitive Strategy for Learning a Polygon" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1997 +, pages = "166--174" +, succeeds = "hikk-ecslp-96" +, update = "97.03 icking" } @techreport{hikk-ecslp-96 -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "An Efficient Competitive Strategy for Learning a Polygon" -, number = "B 96--01" -, institution = "Freie Universit{\"a}t Berlin, Fachbereich Mathematik" -, year = 1996 -, precedes = "hikk-cslp-97" -, update = "97.03 icking" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "An Efficient Competitive Strategy for Learning a Polygon" +, number = "B 96--01" +, institution = "Freie Universit{\"a}t Berlin, Fachbereich Mathematik" +, year = 1996 +, precedes = "hikk-cslp-97" +, update = "97.03 icking" } @inproceedings{hikk-ecslp-96c -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "An Efficient Competitive Strategy for Learning a Polygon" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "107--108" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "An Efficient Competitive Strategy for Learning a Polygon" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "107--108" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{hikk-maar-97 -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "Moving an Angle Around a Region" -, type = "Manuscript" -, institution = "FernUniversit{\"a}t Hagen" -, address = "Hagen, Germany" -, year = 1997 -, precedes = "hikk-maar-98" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "Moving an Angle Around a Region" +, type = "Manuscript" +, institution = "FernUniversit{\"a}t Hagen" +, address = "Hagen, Germany" +, year = 1997 +, precedes = "hikk-maar-98" +, update = "98.11 bibrelex, 98.03 mitchell" } @inproceedings{hikk-maar-98 -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "Moving an Angle Around a Region" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "71--82" -, succeeds = "hikk-maar-97" -, update = "98.11 bibrelex, 98.07 icking+mitchell" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "Moving an Angle Around a Region" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "71--82" +, succeeds = "hikk-maar-97" +, update = "98.11 bibrelex, 98.07 icking+mitchell" } @article{hikk-pep-01 -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "The Polygon Exploration Problem" -, journal = "SIAM J. Comput." -, volume = 31 -, year = 2001 -, pages = "577--600" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/hikk-pep-01.pdf" -, cites = "aaiklr-gsac-98p, aks-eueo-99, afm-aalmm-97, b-olsn-98, brs-nugt-97, cj-cswps-95, cjn-fswrs-93, co-rpwdu-00, cn-wrsp-91, bghosst-rgdu-95, dkp-hlue-91, dkp-hlue1-98, fw-ola-98, hn-ctbes-97, hikk-cslp-97, hikk-maar-98, hikk-pepns-98, ik-skpcs-95, ikl-ocsws-99, ikm-hlac-93, m-gspno-00, n-wrlv-90, rksi-rnut-93, r-cic-94, su-hcg-00, st-aelup-85, th-cswrd-93, thi-ciacs-99, ZZZ" -, update = "02.03 icking, 01.07 icking, 01.04 icking" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "The Polygon Exploration Problem" +, journal = "SIAM J. Comput." +, volume = 31 +, year = 2001 +, pages = "577--600" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/hikk-pep-01.pdf" +, cites = "aaiklr-gsac-98p, aks-eueo-99, afm-aalmm-97, b-olsn-98, brs-nugt-97, cj-cswps-95, cjn-fswrs-93, co-rpwdu-00, cn-wrsp-91, bghosst-rgdu-95, dkp-hlue-91, dkp-hlue1-98, fw-ola-98, hn-ctbes-97, hikk-cslp-97, hikk-maar-98, hikk-pepns-98, ik-skpcs-95, ikl-ocsws-99, ikm-hlac-93, m-gspno-00, n-wrlv-90, rksi-rnut-93, r-cic-94, su-hcg-00, st-aelup-85, th-cswrd-93, thi-ciacs-99, ZZZ" +, update = "02.03 icking, 01.07 icking, 01.04 icking" } @inproceedings{hikk-pepns-98 -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "The Polygon Exploration Problem: A New Strategy and a New Analysis Technique" -, booktitle = "Robotics: The Algorithmic Perspective, Proc. 3rd Workshop Algorithmic Found. Robot." -, nickname = "WAFR '98" -, site = "Houston" -, publisher = "A. K. Peters" -, year = 1998 -, pages = "211--222" -, comments = "Utilizes result in \cite{hikk-maar-98}" -, update = "99.03 bibrelex, 98.11 bibrelex, 98.07 bibrelex+icking, 98.03 icking+mitchell" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "The Polygon Exploration Problem: A New Strategy and a New Analysis Technique" +, booktitle = "Robotics: The Algorithmic Perspective, Proc. 3rd Workshop Algorithmic Found. Robot." +, nickname = "WAFR '98" +, site = "Houston" +, publisher = "A. K. Peters" +, year = 1998 +, pages = "211--222" +, comments = "Utilizes result in \cite{hikk-maar-98}" +, update = "99.03 bibrelex, 98.11 bibrelex, 98.07 bibrelex+icking, 98.03 icking+mitchell" } @techreport{hikk-pep1c-98 -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "The Polygon Exploration Problem {I}: A Competitive Strategy" -, number = 241 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1998 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr241.pdf" -, update = "98.11 bibrelex" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "The Polygon Exploration Problem {I}: A Competitive Strategy" +, number = 241 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1998 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr241.pdf" +, update = "98.11 bibrelex" } @techreport{hikk-pep2a-98 -, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" -, title = "The Polygon Exploration Problem {II}: The Angle Hull" -, number = 245 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1998 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr245.pdf" -, update = "99.03 bibrelex" +, author = "Frank Hoffmann and Christian Icking and Rolf Klein and Klaus Kriegel" +, title = "The Polygon Exploration Problem {II}: The Angle Hull" +, number = 245 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1998 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr245.pdf" +, update = "99.03 bibrelex" } @inproceedings{hkk-agtph-91 -, author = "F. Hoffmann and M. Kaufmann and K. Kriegel" -, title = "The art gallery theorem for polygons with holes" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "39--48" +, author = "F. Hoffmann and M. Kaufmann and K. Kriegel" +, title = "The art gallery theorem for polygons with holes" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "39--48" } @inproceedings{hk-gcric-93 -, author = "Frank Hoffmann and Klaus Kriegel" -, title = "A Graph Coloring Result and Its Consequences for some Guarding Problems" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "78--87" -, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" +, author = "Frank Hoffmann and Klaus Kriegel" +, title = "A Graph Coloring Result and Its Consequences for some Guarding Problems" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "78--87" +, update = "98.07 bibrelex, 94.05 devillers+smid, 93.09 milone+mitchell" } @inproceedings{hk-dpmc-93 -, author = "Frank Hoffmann and Klaus Kriegel" -, title = "Dominating Polygons by Many Colors" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Frank Hoffmann and Klaus Kriegel" +, title = "Dominating Polygons by Many Colors" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{hk-ertlt-88 -, author = "F. Hoffmann and K. Kriegel" -, title = "Embedding Rectilinear Graphs in Linear Time" -, journal = "Inform. Process. Lett." -, volume = 29 -, year = 1988 -, pages = "75--79" -, update = "99.03 vismara" +, author = "F. Hoffmann and K. Kriegel" +, title = "Embedding Rectilinear Graphs in Linear Time" +, journal = "Inform. Process. Lett." +, volume = 29 +, year = 1988 +, pages = "75--79" +, update = "99.03 vismara" } @inproceedings{hkw-gapi2-99 -, author = "Frank Hoffmann and Klaus Kriegel and Carola Wenk" -, title = "A Geometric Approach to Protein Identification in {2D} Electrophoretic Gel Images" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "173--174" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Frank Hoffmann and Klaus Kriegel and Carola Wenk" +, title = "A Geometric Approach to Protein Identification in {2D} Electrophoretic Gel Images" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "173--174" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{hkw-natc2-98 -, author = "Frank Hoffmann and Klaus Kriegel and Carola Wenk" -, title = "New Algorithmic Tools for Comparing {2D} Patterns of Protein Spots" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "93--95" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Frank Hoffmann and Klaus Kriegel and Carola Wenk" +, title = "New Algorithmic Tools for Comparing {2D} Patterns of Protein Spots" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "93--95" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{hm-ilsp-84 -, author = "K. Hoffmann and K. Mehlhorn" -, title = "Intersecting a line and a simple polygon" -, journal = "Bull. EATCS" -, volume = 22 -, month = feb -, year = 1984 -, pages = "120--121" -, update = "97.11 bibrelex" +, author = "K. Hoffmann and K. Mehlhorn" +, title = "Intersecting a line and a simple polygon" +, journal = "Bull. EATCS" +, volume = 22 +, month = feb +, year = 1984 +, pages = "120--121" +, update = "97.11 bibrelex" } @inproceedings{hmrt-sjslt-85 -, author = "K. Hoffmann and K. Mehlhorn and P. Rosenstiehl and R. E. Tarjan" -, title = "Sorting {Jordan} sequences in linear time" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "196--203" -, precedes = "hmrt-sjslt-86" -, cites = "bt-dadsr-80, e-pp-83, f-hgiit-76, hm-ilsp-84, hm-ndsrs-82, ms-hbt-81, m-ss-84, r-ppdti-84, t-acc-85, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "K. Hoffmann and K. Mehlhorn and P. Rosenstiehl and R. E. Tarjan" +, title = "Sorting {Jordan} sequences in linear time" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "196--203" +, precedes = "hmrt-sjslt-86" +, cites = "bt-dadsr-80, e-pp-83, f-hgiit-76, hm-ilsp-84, hm-ndsrs-82, ms-hbt-81, m-ss-84, r-ppdti-84, t-acc-85, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{hmrt-sjslt-86 -, author = "K. Hoffmann and K. Mehlhorn and P. Rosenstiehl and R. E. Tarjan" -, title = "Sorting {Jordan} sequences in linear time using level-linked search trees" -, journal = "Inform. Control" -, volume = 68 -, year = 1986 -, pages = "170--184" -, succeeds = "hmrt-sjslt-85" +, author = "K. Hoffmann and K. Mehlhorn and P. Rosenstiehl and R. E. Tarjan" +, title = "Sorting {Jordan} sequences in linear time using level-linked search trees" +, journal = "Inform. Control" +, volume = 68 +, year = 1986 +, pages = "170--184" +, succeeds = "hmrt-sjslt-85" } @inproceedings{h-cpfr-01 -, author = "Michael Hoffmann" -, title = "Covering Polygons with Few Rectangles" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "39--42" -, update = "01.04 icking" +, author = "Michael Hoffmann" +, title = "Covering Polygons with Few Rectangles" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "39--42" +, update = "01.04 icking" } @article{h-wirt-90 -, author = "Georg R. Hofmann" -, title = "Who Invented Ray Tracing?" -, journal = "Visual Comput." -, volume = 6 -, number = 3 -, month = jun -, year = 1990 -, pages = "120--4" +, author = "Georg R. Hofmann" +, title = "Who Invented Ray Tracing?" +, journal = "Visual Comput." +, volume = 6 +, number = 3 +, month = jun +, year = 1990 +, pages = "120--4" } @techreport{h-ffpsd1-75 -, author = "B. van Hohenbalken" -, title = "Finding faces of polytopes by simplicial decomposition, {Part} {I}: vertices and edges" -, type = "Report" -, number = 24 -, institution = "Dept. Econom., Univ. Alberta" -, address = "Edmonton, AB" -, year = 1975 +, author = "B. van Hohenbalken" +, title = "Finding faces of polytopes by simplicial decomposition, {Part} {I}: vertices and edges" +, type = "Report" +, number = 24 +, institution = "Dept. Econom., Univ. Alberta" +, address = "Edmonton, AB" +, year = 1975 } @techreport{h-ffpsd2-75 -, author = "B. van Hohenbalken" -, title = "Finding faces of polytopes by simplicial decomposition, {Part} {II}: higher-dimensional faces" -, type = "Report" -, number = 25 -, institution = "Dept. Econom., Univ. Alberta" -, address = "Edmonton, AB" -, year = 1975 +, author = "B. van Hohenbalken" +, title = "Finding faces of polytopes by simplicial decomposition, {Part} {II}: higher-dimensional faces" +, type = "Report" +, number = 25 +, institution = "Dept. Econom., Univ. Alberta" +, address = "Edmonton, AB" +, year = 1975 } @article{h-fssp-81 -, author = "B. van Hohenbalken" -, title = "Finding simplicial subdivisions of polytopes" -, journal = "Math. Program." -, volume = 21 -, year = 1981 -, pages = "233--234" +, author = "B. van Hohenbalken" +, title = "Finding simplicial subdivisions of polytopes" +, journal = "Math. Program." +, volume = 21 +, year = 1981 +, pages = "233--234" } @article{h-ldmsp-78 -, author = "B. van Hohenbalken" -, title = "Least distance methods for the scheme of polytopes" -, journal = "Math. Program." -, volume = 15 -, year = 1978 -, pages = "1--11" +, author = "B. van Hohenbalken" +, title = "Least distance methods for the scheme of polytopes" +, journal = "Math. Program." +, volume = 15 +, year = 1978 +, pages = "1--11" } @inproceedings{hc-faobg-95 -, author = "Michael Hohmeyer and Wayne Christopher" -, title = "Fully-Automated Object-Based Generation of Hexahedral Meshes" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "129--139" -, update = "96.01 samitchell" +, author = "Michael Hohmeyer and Wayne Christopher" +, title = "Fully-Automated Object-Based Generation of Hexahedral Meshes" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "129--139" +, update = "96.01 samitchell" } @article{h-siabl-91 -, author = "M. E. Hohmeyer" -, title = "A surface intersection algorithm based on loop detection" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 4 -, year = 1991 -, pages = "473--490" -, keywords = "surface, curve, intersection, computer aided design CAD, closed loops, linear programming" +, author = "M. E. Hohmeyer" +, title = "A surface intersection algorithm based on loop detection" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 4 +, year = 1991 +, pages = "473--490" +, keywords = "surface, curve, intersection, computer aided design CAD, closed loops, linear programming" } @techreport{hr-dcpbc-84 -, author = "D. H. Hoitsma and M. Roche" -, title = "The determination of the critical points on a bi-cubic patch relative to a plane" -, type = "Report" -, number = "??" -, institution = "Fairchild Republic, and Lundy Systems" -, year = 1984 +, author = "D. H. Hoitsma and M. Roche" +, title = "The determination of the critical points on a bi-cubic patch relative to a plane" +, type = "Report" +, number = "??" +, institution = "Fairchild Republic, and Lundy Systems" +, year = 1984 } @techreport{h-dsmt-83t -, author = "J. M. Hollerbach" -, title = "Dynamic scaling of Manipulator Trajectories" -, number = "A. I. Lab Memo 700" -, institution = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1983 -, update = "97.11 bibrelex" +, author = "J. M. Hollerbach" +, title = "Dynamic scaling of Manipulator Trajectories" +, number = "A. I. Lab Memo 700" +, institution = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1983 +, update = "97.11 bibrelex" } @inproceedings{h-dsmt-83 -, author = "J. M. Hollerbach" -, title = "Dynamic scaling of manipulator trajectories" -, booktitle = "Proc. ACC" -, site = "San Francisco, CA" -, organization = "American Automatic Control Council" -, month = jun -, year = 1983 -, pages = "752--756" -, update = "97.11 bibrelex" +, author = "J. M. Hollerbach" +, title = "Dynamic scaling of manipulator trajectories" +, booktitle = "Proc. ACC" +, site = "San Francisco, CA" +, organization = "American Automatic Control Council" +, month = jun +, year = 1983 +, pages = "752--756" +, update = "97.11 bibrelex" } @inproceedings{h-gmdsg-95 -, author = "David Holmes" -, title = "Generalized Method of Decomposing Solid Geometry into Hexahedron Finite Elements" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "141--152" -, update = "96.01 samitchell" +, author = "David Holmes" +, title = "Generalized Method of Decomposing Solid Geometry into Hexahedron Finite Elements" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "141--152" +, update = "96.01 samitchell" } @inproceedings{hl-atmcf-86 -, author = "D. Graham Holmes and Scott H. Lamson" -, title = "Adaptive Triangular Meshes for Compressible Flow Solutions" -, editor = "J. H{\"a}user and C. Taylor" -, booktitle = "Numerical Grid Generation in Computational Fluid Dynamics" -, publisher = "Pineridge Press" -, address = "Swansea, England" -, year = 1986 -, pages = "413--424" -, annote = "Insertion algorithm for CDT for mesh for fluid - dynamics FEM. Laplacian smoothing of mesh. Adaptive - refinement by splitting triangles into four pieces - along edge mid points." +, author = "D. Graham Holmes and Scott H. Lamson" +, title = "Adaptive Triangular Meshes for Compressible Flow Solutions" +, editor = "J. H{\"a}user and C. Taylor" +, booktitle = "Numerical Grid Generation in Computational Fluid Dynamics" +, publisher = "Pineridge Press" +, address = "Swansea, England" +, year = 1986 +, pages = "413--424" +, annote = "Insertion algorithm for CDT for mesh for fluid + dynamics FEM. Laplacian smoothing of mesh. Adaptive + refinement by splitting triangles into four pieces + along edge mid points." } @article{hs-ccagm-91 -, author = "L. S. {Homem de Mello} and A. C. Sanderson" -, title = "A correct and complete algorithm for the generation of mechanical assembly Sequences" -, journal = "IEEE Trans. Robot. Autom." -, volume = 7 -, year = 1991 -, pages = "228--240" -, update = "98.03 agarwal" +, author = "L. S. {Homem de Mello} and A. C. Sanderson" +, title = "A correct and complete algorithm for the generation of mechanical assembly Sequences" +, journal = "IEEE Trans. Robot. Autom." +, volume = 7 +, year = 1991 +, pages = "228--240" +, update = "98.03 agarwal" } @techreport{hs-agmas-88 -, author = "L. S. {Homem de Mello} and A. C. Sanderson" -, title = "Automatic Generation of Mechanical Assembly Sequences" -, type = "Technical {Report}" -, institution = "Robotics Institute, Carnegie Mellon University" -, month = dec -, year = 1988 -, update = "93.09 milone+mitchell" +, author = "L. S. {Homem de Mello} and A. C. Sanderson" +, title = "Automatic Generation of Mechanical Assembly Sequences" +, type = "Technical {Report}" +, institution = "Robotics Institute, Carnegie Mellon University" +, month = dec +, year = 1988 +, update = "93.09 milone+mitchell" } @inproceedings{hjss-cohdl-01 -, author = "M. C. Hon and R. Janardan and J. Schwerdt and M. Smid" -, title = "Computing optimal hatching directions in layered manufacturing" -, booktitle = "Proceedings International Conference on Computational Science" -, series = "Lecture Notes Comput. Sci." -, volume = 2073 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "683--692" -, update = "01.07 smid" +, author = "M. C. Hon and R. Janardan and J. Schwerdt and M. Smid" +, title = "Computing optimal hatching directions in layered manufacturing" +, booktitle = "Proceedings International Conference on Computational Science" +, series = "Lecture Notes Comput. Sci." +, volume = 2073 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "683--692" +, update = "01.07 smid" } @article{h-dcpdd-78 -, author = "H. Honda" -, title = "Description of Cellular Patterns by {Dirichlet} Domains: The Two-Dimensional Case" -, journal = "Journal of Theoretical Biology" -, volume = 72 -, year = 1978 -, pages = "523--543" -, annote = "VD as model of cell patterns. Tries to find centres to - create pattern. $O(n^2)$ algorithm to build VD." +, author = "H. Honda" +, title = "Description of Cellular Patterns by {Dirichlet} Domains: The Two-Dimensional Case" +, journal = "Journal of Theoretical Biology" +, volume = 72 +, year = 1978 +, pages = "523--543" +, annote = "VD as model of cell patterns. Tries to find centres to + create pattern. $O(n^2)$ algorithm to build VD." } @inproceedings{hw-imbmm-88 -, author = "J. Hong and H. J. Wolfson" -, title = "An improved model-based matching method using footprints" -, booktitle = "Proc. 9th IEEE Internat. Conf. Pattern Recogn." -, year = 1988 -, pages = "72--28" -, update = "98.03 bibrelex" +, author = "J. Hong and H. J. Wolfson" +, title = "An improved model-based matching method using footprints" +, booktitle = "Proc. 9th IEEE Internat. Conf. Pattern Recogn." +, year = 1988 +, pages = "72--28" +, update = "98.03 bibrelex" } @article{hcy-iatwm-90 -, author = "J. H. Hong and A. E. Chiou and P. Yeh" -, title = "Image amplification by two-wave mixing in photorefractive crystals" -, journal = "Appl. Optics" -, volume = 29 -, number = 20 -, year = 1990 -, pages = "3026--3029" -, update = "97.11 bibrelex" +, author = "J. H. Hong and A. E. Chiou and P. Yeh" +, title = "Image amplification by two-wave mixing in photorefractive crystals" +, journal = "Appl. Optics" +, volume = 29 +, number = 20 +, year = 1990 +, pages = "3026--3029" +, update = "97.11 bibrelex" } @article{hmr-ctoge-83 -, author = "J. W. Hong and K. Mehlhorn and A. L. Rosenberg" -, title = "Cost trade-offs in graph embedding with applications" -, journal = "J. ACM" -, volume = 30 -, year = 1983 -, pages = "709--728" +, author = "J. W. Hong and K. Mehlhorn and A. L. Rosenberg" +, title = "Cost trade-offs in graph embedding with applications" +, journal = "J. ACM" +, volume = 30 +, year = 1983 +, pages = "709--728" } @article{hskk-tbcua-98 -, author = "M. Hong and T. W. Sederberg and K. S. Klimaszewski and K. Kaneda" -, title = "Triangulation of Branching Contours Using Area Minimization" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "389--406" -, update = "98.11 devillers" +, author = "M. Hong and T. W. Sederberg and K. S. Klimaszewski and K. Kaneda" +, title = "Triangulation of Branching Contours Using Area Minimization" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "389--406" +, update = "98.11 devillers" } @techreport{hjss-mtpsv-01 -, author = "M. C. Hong and R. Janardan and J. Schwerdt and M. Smid" -, title = "Minimizing the total projection of a set of vectors, with applications to layered manufacturing" -, type = "Report" -, number = 4 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 2001 -, update = "01.04 smid" +, author = "M. C. Hong and R. Janardan and J. Schwerdt and M. Smid" +, title = "Minimizing the total projection of a set of vectors, with applications to layered manufacturing" +, type = "Report" +, number = 4 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 2001 +, update = "01.04 smid" } @article{hel-dspds-00 -, author = "S.-H. Hong and P. Eades and S.-H. Lee" -, title = "Drawing series parallel digraphs symmetrically" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "165--188" -, update = "01.04 smid" +, author = "S.-H. Hong and P. Eades and S.-H. Lee" +, title = "Drawing series parallel digraphs symmetrically" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "165--188" +, update = "01.04 smid" } @article{hs-drwsv-85 -, author = "T. H. Hong and M. Schneier" -, title = "Describing a robot's workspace using a sequence of views from a moving camera" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 7 -, year = 1985 -, pages = "721--726" -, update = "98.11 bibrelex" +, author = "T. H. Hong and M. Schneier" +, title = "Describing a robot's workspace using a sequence of views from a moving camera" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 7 +, year = 1985 +, pages = "721--726" +, update = "98.11 bibrelex" } @book{h-mg-73 -, author = "R. Honsberger" -, title = "Mathematical Gems I" -, series = "The Dolciani Mathematical Expositions" -, number = 1 -, publisher = "Math. Soc. of America" -, year = 1973 -, precedes = "h-mg-76,h-mg-85" -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "R. Honsberger" +, title = "Mathematical Gems I" +, series = "The Dolciani Mathematical Expositions" +, number = 1 +, publisher = "Math. Soc. of America" +, year = 1973 +, precedes = "h-mg-76,h-mg-85" +, update = "99.11 bibrelex, 98.11 bibrelex" } @book{h-mg-76 -, author = "R. Honsberger" -, title = "Mathematical Gems II" -, series = "The Dolciani Mathematical Expositions" -, number = 2 -, publisher = "Math. Soc. of America" -, year = 1976 -, succeeds = "h-mg-73" -, precedes = "h-mg-85" -, update = "99.11 bibrelex, 98.11 bibrelex, 97.11 bibrelex" +, author = "R. Honsberger" +, title = "Mathematical Gems II" +, series = "The Dolciani Mathematical Expositions" +, number = 2 +, publisher = "Math. Soc. of America" +, year = 1976 +, succeeds = "h-mg-73" +, precedes = "h-mg-85" +, update = "99.11 bibrelex, 98.11 bibrelex, 97.11 bibrelex" } @book{h-mg-85 -, author = "R. Honsberger" -, title = "Mathematical Gems III" -, series = "The Dolciani Mathematical Expositions" -, number = 9 -, publisher = "Math. Soc. of America" -, year = 1985 -, succeeds = "h-mg-73, h-mg-76" -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "R. Honsberger" +, title = "Mathematical Gems III" +, series = "The Dolciani Mathematical Expositions" +, number = 9 +, publisher = "Math. Soc. of America" +, year = 1985 +, succeeds = "h-mg-73, h-mg-76" +, update = "99.11 bibrelex, 98.11 bibrelex" } @article{h-srlp-82 -, author = "R. Honsberger" -, title = "Semi-regular lattice polygons" -, journal = "Two Year College Math. J." -, volume = 13 -, year = 1982 -, pages = "36--44" -, update = "97.11 bibrelex" +, author = "R. Honsberger" +, title = "Semi-regular lattice polygons" +, journal = "Two Year College Math. J." +, volume = 13 +, year = 1982 +, pages = "36--44" +, update = "97.11 bibrelex" } @article{hrwz-aairf-87 -, author = "S. J. Hood and R. C. Rosenberg and D. H. Withers and T. Zhou" -, title = "An algorithm for automatic identification of {$R$}-fields in bond graphs" -, journal = "IBM J. Res. Develop." -, volume = 31 -, year = 1987 -, pages = "382--390" +, author = "S. J. Hood and R. C. Rosenberg and D. H. Withers and T. Zhou" +, title = "An algorithm for automatic identification of {$R$}-fields in bond graphs" +, journal = "IBM J. Res. Develop." +, volume = 31 +, year = 1987 +, pages = "382--390" } @techreport{hk-prga-89 -, author = "J. Hopcroft and P. Kahn" -, title = "A Paradigm for Robust Geometric Algorithms" -, type = "Technical {Report}" -, number = "TR-89-1044" -, institution = "Cornell University" -, month = oct -, year = 1989 -, update = "97.11 bibrelex" +, author = "J. Hopcroft and P. Kahn" +, title = "A Paradigm for Robust Geometric Algorithms" +, type = "Technical {Report}" +, number = "TR-89-1044" +, institution = "Cornell University" +, month = oct +, year = 1989 +, update = "97.11 bibrelex" } @article{hk-nammb-73 -, author = "J. Hopcroft and R. M. Karp" -, title = "An $n^(5/2)$ algorithm for maximum matchings in bipartite graphs" -, journal = "SIAM J. Comput." -, volume = 2 -, number = 4 -, year = 1973 -, pages = "225--231" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "J. Hopcroft and R. M. Karp" +, title = "An $n^(5/2)$ algorithm for maximum matchings in bipartite graphs" +, journal = "SIAM J. Comput." +, volume = 2 +, number = 4 +, year = 1973 +, pages = "225--231" +, update = "98.07 bibrelex, 97.11 bibrelex" } @incollection{hk-crcs-85i -, author = "J. Hopcroft and D. Kraft" -, title = "The Challenge of Robotics for Computer Science" -, editor = "J. Schwartz and C. Yap" -, booktitle = "Advances in Robotics: {Algorithms} and Geometric Aspects of Robotics" -, volume = 1 -, publisher = "??" -, year = 1985 -, pages = "7--42" -, update = "97.11 bibrelex" +, author = "J. Hopcroft and D. Kraft" +, title = "The Challenge of Robotics for Computer Science" +, editor = "J. Schwartz and C. Yap" +, booktitle = "Advances in Robotics: {Algorithms} and Geometric Aspects of Robotics" +, volume = 1 +, publisher = "??" +, year = 1985 +, pages = "7--42" +, update = "97.11 bibrelex" } @article{ht-dgtc-73 -, author = "J. Hopcroft and R. E. Tarjan" -, title = "Dividing a Graph into Triconnected Components" -, journal = "SIAM J. Comput." -, volume = 2 -, number = 3 -, year = 1973 -, pages = "135--158" -, update = "98.07 tamassia, 95.01 tamassia" +, author = "J. Hopcroft and R. E. Tarjan" +, title = "Dividing a Graph into Triconnected Components" +, journal = "SIAM J. Comput." +, volume = 2 +, number = 3 +, year = 1973 +, pages = "135--158" +, update = "98.07 tamassia, 95.01 tamassia" } @article{ht-ept-74 -, author = "J. Hopcroft and R. E. Tarjan" -, title = "Efficient Planarity Testing" -, journal = "J. ACM" -, volume = 21 -, number = 4 -, year = 1974 -, pages = "549--568" -, keywords = "graph drawing" -, precedes = "d-nhtpa-76" -, update = "93.09 tamassia" +, author = "J. Hopcroft and R. E. Tarjan" +, title = "Efficient Planarity Testing" +, journal = "J. ACM" +, volume = 21 +, number = 4 +, year = 1974 +, pages = "549--568" +, keywords = "graph drawing" +, precedes = "d-nhtpa-76" +, update = "93.09 tamassia" } @article{hw-moc-86 -, author = "J. Hopcroft and G. Wilfong" -, title = "Motion of objects in contact" -, journal = "Internat. J. Robot. Res." -, volume = 4 -, number = 4 -, year = 1986 -, update = "98.03 bibrelex" +, author = "J. Hopcroft and G. Wilfong" +, title = "Motion of objects in contact" +, journal = "Internat. J. Robot. Res." +, volume = 4 +, number = 4 +, year = 1986 +, update = "98.03 bibrelex" } @inbook{hh-gicv-92 -, author = "J. E. Hopcroft and D. P. Huttenlocher" -, title = "Geometric invariance on computer vision" -, chapter = 18 -, publisher = "MIT Press" -, year = 1992 -, pages = "354--374" -, update = "97.11 bibrelex" +, author = "J. E. Hopcroft and D. P. Huttenlocher" +, title = "Geometric invariance on computer vision" +, chapter = 18 +, publisher = "MIT Press" +, year = 1992 +, pages = "354--374" +, update = "97.11 bibrelex" } @techreport{hh-ppmat-89 -, author = "J. E. Hopcroft and D. P. Huttenlocher" -, title = "On planar point matching under affine transformation" -, type = "Technical {Report}" -, number = "TR~89-986" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = apr -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "J. E. Hopcroft and D. P. Huttenlocher" +, title = "On planar point matching under affine transformation" +, type = "Technical {Report}" +, number = "TR~89-986" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = apr +, year = 1989 +, update = "93.09 milone+mitchell" } @inproceedings{hh-pmat-89 -, author = "J. E. Hopcroft and D. P. Huttenlocher" -, title = "Point matching under affine transformation" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 14 +, author = "J. E. Hopcroft and D. P. Huttenlocher" +, title = "Point matching under affine transformation" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 14 } @article{hjw-mp2dl-84 -, author = "J. E. Hopcroft and D. A. Joseph and S. H. Whitesides" -, title = "Movement problems for $2$-dimensional linkages" -, journal = "SIAM J. Comput." -, volume = 13 -, year = 1984 -, pages = "610--629" +, author = "J. E. Hopcroft and D. A. Joseph and S. H. Whitesides" +, title = "Movement problems for $2$-dimensional linkages" +, journal = "SIAM J. Comput." +, volume = 13 +, year = 1984 +, pages = "610--629" } @techreport{hjw-mra2d-82 -, author = "J. E. Hopcroft and D. A. Joseph and S. H. Whitesides" -, title = "On the movement of robot arms in $2$-dimensional bounded regions" -, type = "Technical {Report}" -, number = "TR~82-486" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1982 -, precedes = "hjw-mra2d-85" +, author = "J. E. Hopcroft and D. A. Joseph and S. H. Whitesides" +, title = "On the movement of robot arms in $2$-dimensional bounded regions" +, type = "Technical {Report}" +, number = "TR~82-486" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1982 +, precedes = "hjw-mra2d-85" } @article{hjw-mra2d-85 -, author = "J. E. Hopcroft and D. A. Joseph and S. H. Whitesides" -, title = "On the movement of robot arms in $2$-dimensional bounded regions" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "315--333" -, succeeds = "hjw-mra2d-82" +, author = "J. E. Hopcroft and D. A. Joseph and S. H. Whitesides" +, title = "On the movement of robot arms in $2$-dimensional bounded regions" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "315--333" +, succeeds = "hjw-mra2d-82" } @article{hk-prga-92 -, author = "J. E. Hopcroft and P. J. Kahn" -, title = "A paradigm for robust geometric algorithms" -, journal = "Algorithmica" -, volume = 7 -, number = 4 -, year = 1992 -, pages = "339--380" -, update = "98.07 tamassia" +, author = "J. E. Hopcroft and P. J. Kahn" +, title = "A paradigm for robust geometric algorithms" +, journal = "Algorithmica" +, volume = 7 +, number = 4 +, year = 1992 +, pages = "339--380" +, update = "98.07 tamassia" } @techreport{hk-crcs-85 -, author = "J. E. Hopcroft and D. B. Krafft" -, title = "The challenge of robotics for computer science" -, type = "Technical {Report}" -, number = "??" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1985 +, author = "J. E. Hopcroft and D. B. Krafft" +, title = "The challenge of robotics for computer science" +, type = "Technical {Report}" +, number = "??" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1985 } @article{hss-edis-83a -, author = "J. E. Hopcroft and J. T. Schwartz and Micha Sharir" -, title = "Efficient detection of intersections among spheres" -, journal = "Internat. J. Robot. Res." -, volume = 2 -, number = 4 -, year = 1983 -, pages = "77--80" -, keywords = "intersection, detection, spheres, three-dimensional" -, succeeds = "hss-edis-83t" -, update = "98.03 mitchell" +, author = "J. E. Hopcroft and J. T. Schwartz and Micha Sharir" +, title = "Efficient detection of intersections among spheres" +, journal = "Internat. J. Robot. Res." +, volume = 2 +, number = 4 +, year = 1983 +, pages = "77--80" +, keywords = "intersection, detection, spheres, three-dimensional" +, succeeds = "hss-edis-83t" +, update = "98.03 mitchell" } @techreport{hss-edis-83t -, author = "J. E. Hopcroft and J. T. Schwartz and Micha Sharir" -, title = "Efficient detections of intersections among spheres" -, type = "Report" -, number = 59 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, year = 1983 -, precedes = "hss-edis-83a" -, update = "98.03 mitchell" +, author = "J. E. Hopcroft and J. T. Schwartz and Micha Sharir" +, title = "Efficient detections of intersections among spheres" +, type = "Report" +, number = 59 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, year = 1983 +, precedes = "hss-edis-83a" +, update = "98.03 mitchell" } @article{hss-cmpmi-84 -, author = "J. E. Hopcroft and J. T. Schwartz and Micha Sharir" -, title = "On the complexity of motion planning for multiple independent objects: {P}-space hardness of the ``{Warehouseman}'s {Problem}''" -, journal = "Internat. J. Robot. Res." -, volume = 3 -, number = 4 -, year = 1984 -, pages = "76--88" -, keywords = "motion planning, lower bounds" -, update = "98.03 mitchell" +, author = "J. E. Hopcroft and J. T. Schwartz and Micha Sharir" +, title = "On the complexity of motion planning for multiple independent objects: {P}-space hardness of the ``{Warehouseman}'s {Problem}''" +, journal = "Internat. J. Robot. Res." +, volume = 3 +, number = 4 +, year = 1984 +, pages = "76--88" +, keywords = "motion planning, lower bounds" +, update = "98.03 mitchell" } @book{hss-pgcrm-87 -, author = "J. E. Hopcroft and J. T. Schwartz and Micha Sharir" -, title = "Planning, Geometry, and Complexity of Robot Motion" -, publisher = "Ablex Publishing" -, address = "Norwood, NJ" -, year = 1987 -, update = "98.03 mitchell" +, author = "J. E. Hopcroft and J. T. Schwartz and Micha Sharir" +, title = "Planning, Geometry, and Complexity of Robot Motion" +, publisher = "Ablex Publishing" +, address = "Norwood, NJ" +, year = 1987 +, update = "98.03 mitchell" } @book{hu-iatlc-79 -, author = "J. E. Hopcroft and J. D. Ullman" -, title = "Introduction to Automata Theory, Languages, and Computation" -, publisher = "Addison-Wesley" -, year = 1979 -, update = "98.07 bibrelex" +, author = "J. E. Hopcroft and J. D. Ullman" +, title = "Introduction to Automata Theory, Languages, and Computation" +, publisher = "Addison-Wesley" +, year = 1979 +, update = "98.07 bibrelex" } @techreport{hw-moc-84 -, author = "J. E. Hopcroft and G. T. Wilfong" -, title = "On the Motion of Objects in Contact" -, type = "Technical {Report}" -, number = "84-602" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = may -, year = 1984 -, update = "97.11 bibrelex" +, author = "J. E. Hopcroft and G. T. Wilfong" +, title = "On the Motion of Objects in Contact" +, type = "Technical {Report}" +, number = "84-602" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = may +, year = 1984 +, update = "97.11 bibrelex" } @techreport{hw-rmomp-84 -, author = "J. E. Hopcroft and G. T. Wilfong" -, title = "Reducing Multiple Object Motion Planning to Graph Searching" -, type = "Technical {Report}" -, number = "84-616" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = jul -, year = 1984 -, update = "97.11 bibrelex" +, author = "J. E. Hopcroft and G. T. Wilfong" +, title = "Reducing Multiple Object Motion Planning to Graph Searching" +, type = "Technical {Report}" +, number = "84-616" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = jul +, year = 1984 +, update = "97.11 bibrelex" } @article{hw-rmomp-86 -, author = "J. E. Hopcroft and G. T. Wilfong" -, title = "Reducing Multiple Object Motion Planning to Graph Searching" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "768--785" -, update = "00.03 agarwal" +, author = "J. E. Hopcroft and G. T. Wilfong" +, title = "Reducing Multiple Object Motion Planning to Graph Searching" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "768--785" +, update = "00.03 agarwal" } @article{h-pgdp-71 -, author = "A. K. Hope" -, title = "A Planar Graph Drawing Program" -, journal = "Softw. -- Pract. Exp." -, volume = 1 -, year = 1971 -, pages = "83--91" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "A. K. Hope" +, title = "A Planar Graph Drawing Program" +, journal = "Softw. -- Pract. Exp." +, volume = 1 +, year = 1971 +, pages = "83--91" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{hk-spcs-90 -, author = "R. Hope and M. Katchalski" -, title = "Separating plane convex sets" -, journal = "Math. Scand." -, volume = 66 -, year = 1990 -, pages = "44--46" -, update = "97.03 pocchiola" +, author = "R. Hope and M. Katchalski" +, title = "Separating plane convex sets" +, journal = "Math. Scand." +, volume = 66 +, year = 1990 +, pages = "44--46" +, update = "97.03 pocchiola" } @article{h-uzztu-53 -, author = "H. Hopf" -, title = "{\"U}ber {Zusammenh{\"a}nge} zwischen {Topologie} und {Metrik} im {Rahmen} der elementaren {Geometrie}" -, journal = "Mathematisch-Physikalische Semester Berichte" -, volume = 3 -, year = 1953 -, pages = "16--29" -, update = "97.11 bibrelex" +, author = "H. Hopf" +, title = "{\"U}ber {Zusammenh{\"a}nge} zwischen {Topologie} und {Metrik} im {Rahmen} der elementaren {Geometrie}" +, journal = "Mathematisch-Physikalische Semester Berichte" +, volume = 3 +, year = 1953 +, pages = "16--29" +, update = "97.11 bibrelex" } @article{hp-an1-34 -, author = "H. Hopf and E. Pannwitz" -, title = "Aufgabe {No.} $167$" -, journal = "Jahresbericht Deutsch. Math. Verein" -, volume = 43 -, year = 1934 -, pages = 114 -, update = "98.03 bibrelex" +, author = "H. Hopf and E. Pannwitz" +, title = "Aufgabe {No.} $167$" +, journal = "Jahresbericht Deutsch. Math. Verein" +, volume = 43 +, year = 1934 +, pages = 114 +, update = "98.03 bibrelex" } @article{h-ngrhc-84 -, author = "J. Hopfield" -, title = "Neurons with graded response have collective computational properties like those of two-state neurons" -, journal = "Proc. Nat. Acad. Sci. USA" -, volume = 81 -, year = 1984 -, pages = "2554--2558" -, update = "98.07 bibrelex" +, author = "J. Hopfield" +, title = "Neurons with graded response have collective computational properties like those of two-state neurons" +, journal = "Proc. Nat. Acad. Sci. USA" +, volume = 81 +, year = 1984 +, pages = "2554--2558" +, update = "98.07 bibrelex" } @article{ht-cncm-86 -, author = "J. Hopfield and D. Tank" -, title = "Computing with neural circuits: a model" -, journal = "Science" -, volume = 233 -, year = 1986 -, pages = "624--633" -, update = "98.07 bibrelex" +, author = "J. Hopfield and D. Tank" +, title = "Computing with neural circuits: a model" +, journal = "Science" +, volume = 233 +, year = 1986 +, pages = "624--633" +, update = "98.07 bibrelex" } @article{ht-ncdop-85 -, author = "J. Hopfield and D. Tank" -, title = "``Neural'' computation of decisions in optimization problems" -, journal = "Biological Cybernetics" -, volume = 52 -, year = 1985 -, pages = "141--152" -, update = "98.07 bibrelex" +, author = "J. Hopfield and D. Tank" +, title = "``Neural'' computation of decisions in optimization problems" +, journal = "Biological Cybernetics" +, volume = 52 +, year = 1985 +, pages = "141--152" +, update = "98.07 bibrelex" } @article{h-cm-93 -, author = "T. Hopp" -, title = "Computational metrology" -, journal = "Manufacturing Review" -, volume = 6 -, number = 4 -, year = 1993 -, pages = "295--304" -, update = "98.03 agarwal, 97.03 agarwal" +, author = "T. Hopp" +, title = "Computational metrology" +, journal = "Manufacturing Review" +, volume = 6 +, number = 4 +, year = 1993 +, pages = "295--304" +, update = "98.03 agarwal, 97.03 agarwal" } @inproceedings{h-pm-96 -, author = "H. Hoppe" -, title = "Progressive meshes" -, booktitle = "Proc. SIGGRAPH '96" -, year = 1996 -, pages = "99--108" -, update = "98.07 bibrelex+orourke" +, author = "H. Hoppe" +, title = "Progressive meshes" +, booktitle = "Proc. SIGGRAPH '96" +, year = 1996 +, pages = "99--108" +, update = "98.07 bibrelex+orourke" } @inproceedings{h-vdrpm-97 -, author = "Hugues Hoppe" -, title = "View-Dependent Refinement of Progressive Meshes" -, booktitle = "Proc. SIGGRAPH '97" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "ACM Press" -, month = aug -, year = 1997 -, pages = "189--198" -, update = "98.07 agarwal, 98.03 agarwal+mitchell" +, author = "Hugues Hoppe" +, title = "View-Dependent Refinement of Progressive Meshes" +, booktitle = "Proc. SIGGRAPH '97" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "ACM Press" +, month = aug +, year = 1997 +, pages = "189--198" +, update = "98.07 agarwal, 98.03 agarwal+mitchell" } @inproceedings{hddhjmss-pssr-94 -, author = "H. Hoppe and T. DeRose and T. Duchamp and M. Halstead and H. Jin and J. McDonald and J. Schweitzer and W. Stuetzle" -, title = "Piecewise Smooth Surface Reconstruction" -, booktitle = "Proc. SIGGRAPH 94" -, year = 1994 -, pages = "295--302" -, update = "97.03 agarwal, 95.01 mitchell" +, author = "H. Hoppe and T. DeRose and T. Duchamp and M. Halstead and H. Jin and J. McDonald and J. Schweitzer and W. Stuetzle" +, title = "Piecewise Smooth Surface Reconstruction" +, booktitle = "Proc. SIGGRAPH 94" +, year = 1994 +, pages = "295--302" +, update = "97.03 agarwal, 95.01 mitchell" } @inproceedings{hddms-mo-93 -, author = "H. Hoppe and T. DeRose and T. Duchamp and J. McDonald and W. Stuetzle" -, title = "Mesh Optimization" -, booktitle = "Proc. SIGGRAPH '93" -, year = 1993 -, pages = "19--26" -, update = "95.01 mitchell" +, author = "H. Hoppe and T. DeRose and T. Duchamp and J. McDonald and W. Stuetzle" +, title = "Mesh Optimization" +, booktitle = "Proc. SIGGRAPH '93" +, year = 1993 +, pages = "19--26" +, update = "95.01 mitchell" } @article{hddms-srup-92 -, author = "H. Hoppe and T. DeRose and T. Duchamp and J. McDonald and W. Stuetzle" -, title = "Surface reconstruction from unorganized points" -, journal = "Comput. Graphics" -, volume = 26 -, number = 2 -, year = 1992 -, pages = "71--78" -, note = "Proc. SIGGRAPH '92" -, update = "93.05 orourke" +, author = "H. Hoppe and T. DeRose and T. Duchamp and J. McDonald and W. Stuetzle" +, title = "Surface reconstruction from unorganized points" +, journal = "Comput. Graphics" +, volume = 26 +, number = 2 +, year = 1992 +, pages = "71--78" +, note = "Proc. SIGGRAPH '92" +, update = "93.05 orourke" } @article{ha-pppap-01 -, author = "K. Hormann and A. Agathos" -, title = "The point in polygon problem for arbitrary polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "131--144" -, update = "02.03 smid" +, author = "K. Hormann and A. Agathos" +, title = "The point in polygon problem for arbitrary polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "131--144" +, update = "02.03 smid" } @article{hv-splsp-49 -, author = "A. Horn and F. A. Valentine" -, title = "Some properties of L-sets in the plane" -, journal = "Duke Mathematics Journal" -, volume = 16 -, year = 1949 -, pages = "131--140" -, update = "98.03 bibrelex" +, author = "A. Horn and F. A. Valentine" +, title = "Some properties of L-sets in the plane" +, journal = "Duke Mathematics Journal" +, volume = 16 +, year = 1949 +, pages = "131--140" +, update = "98.03 bibrelex" } @inproceedings{h-egi-84 -, author = "B. K. P. Horn" -, title = "Extended {Gaussian} Images" -, booktitle = "Proc. IEEE" -, month = dec -, year = 1984 -, pages = "1671--1586" -, update = "97.11 bibrelex" +, author = "B. K. P. Horn" +, title = "Extended {Gaussian} Images" +, booktitle = "Proc. IEEE" +, month = dec +, year = 1984 +, pages = "1671--1586" +, update = "97.11 bibrelex" } @book{h-rv-86 -, author = "B. K. P. Horn" -, title = "Robot Vision" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1986 -, update = "97.11 bibrelex" +, author = "B. K. P. Horn" +, title = "Robot Vision" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1986 +, update = "97.11 bibrelex" } @article{ht-tdscp-89 -, author = "W. P. Horn and D. L. Taylor" -, title = "A theorem to determine the spatial containment of a point in a planar polyhedron" -, journal = "Comput. Graph. Image Process." -, volume = 45 -, year = 1989 -, pages = "106--116" -, keywords = "point location, polyhedron, winged-edge" -, update = "96.01 mitchell" +, author = "W. P. Horn and D. L. Taylor" +, title = "A theorem to determine the spatial containment of a point in a planar polyhedron" +, journal = "Comput. Graph. Image Process." +, volume = 45 +, year = 1989 +, pages = "106--116" +, keywords = "point location, polyhedron, winged-edge" +, update = "96.01 mitchell" } @book{hs-fds-83 -, author = "E. Horowitz and S. Sahni" -, title = "Fundamentals of Data Structures" -, publisher = "Computer Science Press" -, address = "Potomac, Maryland" -, year = 1983 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Horowitz and S. Sahni" +, title = "Fundamentals of Data Structures" +, publisher = "Computer Science Press" +, address = "Potomac, Maryland" +, year = 1983 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{hsa-fdsc-93 -, author = "E. Horowitz and S. Sahni and S. {Anderson-Freed}" -, title = "Fundamentals of Data Structures in {C}" -, publisher = "Computer Science Press" -, address = "New York" -, year = 1993 -, update = "98.11 bibrelex" +, author = "E. Horowitz and S. Sahni and S. {Anderson-Freed}" +, title = "Fundamentals of Data Structures in {C}" +, publisher = "Computer Science Press" +, address = "New York" +, year = 1993 +, update = "98.11 bibrelex" } @book{hsm-fdsc-95 -, author = "E. Horowitz and S. Sahni and D. Metha" -, title = "Fundamentals of Data Structures in C++" -, publisher = "Computer Science Press" -, year = 1995 -, update = "97.03 tamassia" +, author = "E. Horowitz and S. Sahni and D. Metha" +, title = "Fundamentals of Data Structures in C++" +, publisher = "Computer Science Press" +, year = 1995 +, update = "97.03 tamassia" } @techreport{h-cvdp-79 -, author = "R. N. Horspool" -, title = "Constructing the {Voronoi} diagram in the plane" -, type = "Report" -, number = "SOCS 79.12" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, month = jul -, year = 1979 -, update = "93.09 held" +, author = "R. N. Horspool" +, title = "Constructing the {Voronoi} diagram in the plane" +, type = "Report" +, number = "SOCS 79.12" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, month = jul +, year = 1979 +, update = "93.09 held" } @article{h-snec7-83 -, author = "J. D. Horton" -, title = "Sets with no empty convex $7$-gons" -, journal = "Canad. Math. Bull." -, volume = 26 -, year = 1983 -, pages = "482--484" +, author = "J. D. Horton" +, title = "Sets with no empty convex $7$-gons" +, journal = "Canad. Math. Bull." +, volume = 26 +, year = 1983 +, pages = "482--484" } % ### others? @article{ho-rcbsc-92 -, author = "T. Horvath and others" -, title = "Ray Coherence Between a Sphere and a Convex Polyhedron" -, journal = "Comput. Graph. Forum" -, volume = 11 -, number = 2 -, month = jun -, year = 1992 -, pages = "163--172" -, update = "93.09 held" +, author = "T. Horvath and others" +, title = "Ray Coherence Between a Sphere and a Convex Polyhedron" +, journal = "Comput. Graph. Forum" +, volume = 11 +, number = 2 +, month = jun +, year = 1992 +, pages = "163--172" +, update = "93.09 held" } @book{hd-pvd-94 -, author = "J. Hoschek and W. Dankwort" -, title = "Parametric and Variational Design" -, publisher = "B. G. Teubner" -, year = 1994 -, update = "98.07 bibrelex" +, author = "J. Hoschek and W. Dankwort" +, title = "Parametric and Variational Design" +, publisher = "B. G. Teubner" +, year = 1994 +, update = "98.07 bibrelex" } @book{hl-cagd-93 -, author = "J. Hoschek and D. Lasser" -, title = "Computer Aided Geometric Design" -, publisher = "A.K. Peters" -, year = 1993 -, update = "98.07 bibrelex" +, author = "J. Hoschek and D. Lasser" +, title = "Computer Aided Geometric Design" +, publisher = "A.K. Peters" +, year = 1993 +, update = "98.07 bibrelex" } @article{hy-cempk-82 -, author = "M. Hoshi and T. Yuba" -, title = "A counter example to a monotonicity property of $k$-d trees" -, journal = "Inform. Process. Lett." -, volume = 15 -, number = 4 -, year = 1982 -, pages = "169--173" +, author = "M. Hoshi and T. Yuba" +, title = "A counter example to a monotonicity property of $k$-d trees" +, journal = "Inform. Process. Lett." +, volume = 15 +, number = 4 +, year = 1982 +, pages = "169--173" } @article{hu-ndcqg-01 -, author = "K. Hosono and M. Urabe" -, title = "On the number of disjoint convex quadrilaterals for a given point set in the plane" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "97--104" -, update = "02.03 devillers" +, author = "K. Hosono and M. Urabe" +, title = "On the number of disjoint convex quadrilaterals for a given point set in the plane" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "97--104" +, update = "02.03 devillers" } @techreport{h-cthlra-89 -, author = "L. B. Hostetler" -, title = "A Comparison of Three Hidden Line Removal Algorithms" -, type = "Report" -, number = "TR--89--02" -, institution = "Department of Computer Science, Johns Hopkins University" -, year = 1989 -, update = "98.11 ghali" +, author = "L. B. Hostetler" +, title = "A Comparison of Three Hidden Line Removal Algorithms" +, type = "Report" +, number = "TR--89--02" +, institution = "Department of Computer Science, Johns Hopkins University" +, year = 1989 +, update = "98.11 ghali" } @book{hs-rt-67 -, author = "Hottel and Sarofim" -, title = "Radioactive Transfer" -, publisher = "McGraw-Hill" -, address = "New York, NY" -, year = 1967 -, update = "98.03 bibrelex" +, author = "Hottel and Sarofim" +, title = "Radioactive Transfer" +, publisher = "McGraw-Hill" +, address = "New York, NY" +, year = 1967 +, update = "98.03 bibrelex" } @inproceedings{htap-pgmis-91 -, author = "G. R. Hottel and S. T. Tuohy and P. G. Alourdas and N. M. Patrikalakis" -, title = "Praxiteles: A Geometric Modeling and Interrogation System" -, booktitle = "Proc. Marine Computers '91" -, year = 1991 -, pages = "CC4" -, update = "95.05 abrams" +, author = "G. R. Hottel and S. T. Tuohy and P. G. Alourdas and N. M. Patrikalakis" +, title = "Praxiteles: A Geometric Modeling and Interrogation System" +, booktitle = "Proc. Marine Computers '91" +, year = 1991 +, pages = "CC4" +, update = "95.05 abrams" } @techreport{hs-actbn-93 -, author = "G. Hotz and J. Sellen" -, title = "On algebraic computation trees and {Betti} numbers" -, type = "Manuscript" -, institution = "??" -, year = 1993 -, update = "98.03 bibrelex" +, author = "G. Hotz and J. Sellen" +, title = "On algebraic computation trees and {Betti} numbers" +, type = "Manuscript" +, institution = "??" +, year = 1993 +, update = "98.03 bibrelex" } @incollection{hm-fwecs-88 -, author = "M. Houle and A. Maciel" -, title = "Finding the widest empty corridor through a set of points" -, booktitle = "Snapshots of computational and discrete geometry" -, publisher = "Dept. of Computer Science, McGill University" -, address = "Montreal, Canada" -, year = 1988 -, pages = "201--213" -, note = "Technical Report SOCS-88.11" -, update = "98.11 bibrelex" +, author = "M. Houle and A. Maciel" +, title = "Finding the widest empty corridor through a set of points" +, booktitle = "Snapshots of computational and discrete geometry" +, publisher = "Dept. of Computer Science, McGill University" +, address = "Montreal, Canada" +, year = 1988 +, pages = "201--213" +, note = "Technical Report SOCS-88.11" +, update = "98.11 bibrelex" } @inproceedings{h-awwss-89a -, author = "M. E. Houle" -, title = "Algorithms for weak and wide separation of sets" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 25 -, precedes = "h-awwss-89b" -, update = "95.09 mitchell" +, author = "M. E. Houle" +, title = "Algorithms for weak and wide separation of sets" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 25 +, precedes = "h-awwss-89b" +, update = "95.09 mitchell" } @inproceedings{h-awwss-89b -, author = "M. E. Houle" -, title = "Algorithms for weak and wide separation of sets" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "61--68" -, keywords = "linear separation, red-blue separation, spherical separation" -, succeeds = "h-awwss-89a" -, update = "95.09 mitchell" +, author = "M. E. Houle" +, title = "Algorithms for weak and wide separation of sets" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "61--68" +, keywords = "linear separation, red-blue separation, spherical separation" +, succeeds = "h-awwss-89a" +, update = "95.09 mitchell" } @article{h-tess-91 -, author = "M. E. Houle" -, title = "Theorems on the existence of separating surfaces" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "49--56" +, author = "M. E. Houle" +, title = "Theorems on the existence of separating surfaces" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "49--56" } @inproceedings{hiir-wolla-89 -, author = "M. E. Houle and H. Imai and K. Imai and J.-M. Robert" -, title = "Weighted orthogonal linear {$L_{\infty}$}-approximation and applications" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "183--191" +, author = "M. E. Houle and H. Imai and K. Imai and J.-M. Robert" +, title = "Weighted orthogonal linear {$L_{\infty}$}-approximation and applications" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "183--191" } @article{hiiry-owllla-93 -, author = "M. E. Houle and H. Imai and K. Imai and J.-M. Robert and P. Yam amoto" -, title = "Orthogonal Weighted Linear {$L_{1}$} and {$L_{\infty}$} Approximation and Applications" -, journal = "Discrete Appl. Math." -, volume = 43 -, number = 3 -, month = jun -, year = 1993 -, pages = "217--232" -, succeeds = "hiiry-owlll-90" -, update = "00.11 smid, 00.07 smid, 98.07 bibrelex" +, author = "M. E. Houle and H. Imai and K. Imai and J.-M. Robert and P. Yam amoto" +, title = "Orthogonal Weighted Linear {$L_{1}$} and {$L_{\infty}$} Approximation and Applications" +, journal = "Discrete Appl. Math." +, volume = 43 +, number = 3 +, month = jun +, year = 1993 +, pages = "217--232" +, succeeds = "hiiry-owlll-90" +, update = "00.11 smid, 00.07 smid, 98.07 bibrelex" } @techreport{hiiry-owlll-90 -, author = "M. E. Houle and H. Imai and K. Imai and J.-M. Robert and P. Yamamoto" -, title = "Orthogonal Weighted Linear {$L_{1}$} and {$L_{\infty}$} Approximation and Applications" -, type = "Manuscript" -, year = 1990 -, precedes = "hiiry-owllla-93" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "M. E. Houle and H. Imai and K. Imai and J.-M. Robert and P. Yamamoto" +, title = "Orthogonal Weighted Linear {$L_{1}$} and {$L_{\infty}$} Approximation and Applications" +, type = "Manuscript" +, year = 1990 +, precedes = "hiiry-owllla-93" +, update = "98.07 bibrelex, 97.11 bibrelex" } @inproceedings{ht-cws-85 -, author = "M. E. Houle and G. T. Toussaint" -, title = "Computing the width of a set" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "1--7" -, precedes = "ht-cws-88" -, cites = "t-mss-84, s-cg-78, b-gtfga-80, ks-upcha-82t, mt-uchap-84, ma-lafch-79, l-fchsp-80, gs-ncg-82, k-osps-81, ph-chfsp-77, ik-spc-75, ii-cgmpa-85, kd-pamm-82, t-sgprc-83, t-apctd-, ZZZ" -, update = "97.11 bibrelex, 93.09 milone+mitchell" +, author = "M. E. Houle and G. T. Toussaint" +, title = "Computing the width of a set" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "1--7" +, precedes = "ht-cws-88" +, cites = "t-mss-84, s-cg-78, b-gtfga-80, ks-upcha-82t, mt-uchap-84, ma-lafch-79, l-fchsp-80, gs-ncg-82, k-osps-81, ph-chfsp-77, ik-spc-75, ii-cgmpa-85, kd-pamm-82, t-sgprc-83, t-apctd-, ZZZ" +, update = "97.11 bibrelex, 93.09 milone+mitchell" } @article{ht-cws-88 -, author = "M. E. Houle and G. T. Toussaint" -, title = "Computing the width of a set" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-10" -, number = 5 -, year = 1988 -, pages = "761--765" -, keywords = "two-dimensional, three-dimensional, rotating calipers, antipodal pairs, line fitting, plane fitting, approximation" -, succeeds = "ht-cws-85" -, update = "93.09 milone+mitchell+rote" -, annote = "$O(n \log n + I)$ time, where $I$ is the number of - antipodal pairs: - vertex-edge pairs in two dimensions ($I=O(n)$); - edge-edge pairs and $O(n)$ vertex-face pairs in three - dimensions ($I=O(n^2)$)" +, author = "M. E. Houle and G. T. Toussaint" +, title = "Computing the width of a set" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-10" +, number = 5 +, year = 1988 +, pages = "761--765" +, keywords = "two-dimensional, three-dimensional, rotating calipers, antipodal pairs, line fitting, plane fitting, approximation" +, succeeds = "ht-cws-85" +, update = "93.09 milone+mitchell+rote" +, annote = "$O(n \log n + I)$ time, where $I$ is the number of + antipodal pairs: + vertex-edge pairs in two dimensions ($I=O(n)$); + edge-edge pairs and $O(n)$ vertex-face pairs in three + dimensions ($I=O(n^2)$)" } @article{h-bsmbs-87 -, author = "Piet Houthuys" -, title = "Box Sort, a multidimensional binary sorting method for rectangular boxes, used for quick range searching" -, journal = "Visual Comput." -, volume = 3 -, number = 4 -, month = dec -, year = 1987 -, pages = "236--249" -, keywords = "multidimensional sorting, range searching, set operations on polygons" +, author = "Piet Houthuys" +, title = "Box Sort, a multidimensional binary sorting method for rectangular boxes, used for quick range searching" +, journal = "Visual Comput." +, volume = 3 +, number = 4 +, month = dec +, year = 1987 +, pages = "236--249" +, keywords = "multidimensional sorting, range searching, set operations on polygons" } @article{h-sp-68 -, author = "W. E. Howden" -, title = "The Sofa Problem" -, journal = "Comput. J." -, volume = 11 -, year = 1968 -, pages = "299--301" -, update = "97.11 bibrelex" +, author = "W. E. Howden" +, title = "The Sofa Problem" +, journal = "Comput. J." +, volume = 11 +, year = 1968 +, pages = "299--301" +, update = "97.11 bibrelex" } @phdthesis{h-ercsd-78 -, author = "A. E. Howe" -, title = "Estimating regions and clustering spatial data: analysis and implementation of methods using the {Voronoi} diagram" -, type = "Ph.{D}. Thesis" -, school = "Brown Univ." -, address = "Providence, RI" -, year = 1978 -, keywords = "doctoral thesis" +, author = "A. E. Howe" +, title = "Estimating regions and clustering spatial data: analysis and implementation of methods using the {Voronoi} diagram" +, type = "Ph.{D}. Thesis" +, school = "Brown Univ." +, address = "Providence, RI" +, year = 1978 +, keywords = "doctoral thesis" } @article{hb-mpaic-94 -, author = "C. T. Howie and E. H. Blake" -, title = "The mesh propagation algorithm for isosurface construction" -, journal = "Comput. Graph. Forum" -, volume = 13 -, year = 1994 -, pages = "65--74" -, update = "98.07 bibrelex" +, author = "C. T. Howie and E. H. Blake" +, title = "The mesh propagation algorithm for isosurface construction" +, journal = "Comput. Graph. Forum" +, volume = 13 +, year = 1994 +, pages = "65--74" +, update = "98.07 bibrelex" } @incollection{h-dqgpg-92 -, author = "W.-Y. Hsiang" -, title = "On the development of quantitative geometry from {Pythagoras} to {Grassman}" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, publisher = "World Scientific" -, address = "Singapore" -, year = 1992 -, pages = "1--21" -, keywords = "survey paper" -, precedes = "h-dqgpg-95" -, update = "98.07 icking" +, author = "W.-Y. Hsiang" +, title = "On the development of quantitative geometry from {Pythagoras} to {Grassman}" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, publisher = "World Scientific" +, address = "Singapore" +, year = 1992 +, pages = "1--21" +, keywords = "survey paper" +, precedes = "h-dqgpg-95" +, update = "98.07 icking" } @incollection{h-dqgpg-95 -, author = "Wu-Yi Hsiang" -, title = "On the Development of Quantitative Geometry from {Pythagoras} to {Grassmann}" -, editor = "Ding-Zhu Du and Frank Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "1--21" -, keywords = "survey paper" -, succeeds = "h-dqgpg-92" -, update = "98.07 icking" +, author = "Wu-Yi Hsiang" +, title = "On the Development of Quantitative Geometry from {Pythagoras} to {Grassmann}" +, editor = "Ding-Zhu Du and Frank Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "1--21" +, keywords = "survey paper" +, succeeds = "h-dqgpg-92" +, update = "98.07 icking" } @inproceedings{hklms-fnppr-98 -, author = "David Hsu and Lydia E. Kavraki and Jean-Claude Latombe and Rajeev Motwani and Stephen Sorkin" -, title = "On Finding Narrow Passages with Probabilistic Roadmap Planners" -, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." -, nickname = "WAFR '98" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1998 -, note = "To appear" -, update = "98.11 bibrelex, 98.07 agarwal+bibrelex, 98.03 agarwal+mitchell" +, author = "David Hsu and Lydia E. Kavraki and Jean-Claude Latombe and Rajeev Motwani and Stephen Sorkin" +, title = "On Finding Narrow Passages with Probabilistic Roadmap Planners" +, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." +, nickname = "WAFR '98" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1998 +, note = "To appear" +, update = "98.11 bibrelex, 98.07 agarwal+bibrelex, 98.03 agarwal+mitchell" } @article{hcl-paccv-92 -, author = "F. R. Hsu and R. C. Chang and R. C. T. Lee" -, title = "Parallel algorithms for computing the closest visible vertex pair between two polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "135--162" -, keywords = "parallel algorithm, visibility" -, update = "94.09 jones" +, author = "F. R. Hsu and R. C. Chang and R. C. T. Lee" +, title = "Parallel algorithms for computing the closest visible vertex pair between two polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "135--162" +, keywords = "parallel algorithm, visibility" +, update = "94.09 jones" } @techreport{hwh-cpr-85 -, author = "W.-J. Hsu and C.-C. Wang and K.-T. Huang" -, title = "Convex polygon retrieval" -, type = "Report" -, number = "??" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1985 +, author = "W.-J. Hsu and C.-C. Wang and K.-T. Huang" +, title = "Convex polygon retrieval" +, type = "Report" +, number = "??" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1985 } @article{hn-ehblp-79 -, author = "W. L. Hsu and G. L. Nemhauser" -, title = "Easy and Hard Bottleneck Location Problems" -, journal = "Discrete Appl. Math." -, volume = 1 -, year = 1979 -, pages = "209--215" -, update = "98.07 agarwal" +, author = "W. L. Hsu and G. L. Nemhauser" +, title = "Easy and Hard Bottleneck Location Problems" +, journal = "Discrete Appl. Math." +, volume = 1 +, year = 1979 +, pages = "209--215" +, update = "98.07 agarwal" } @inproceedings{hp-callc-79 -, author = "M. Y. Hsueh and D. O. Pederson" -, title = "Computer-Aided Layout of LSI Circuit Building-Blocks" -, booktitle = "Proc. IEEE Int. Symp. on Circuits and Systems" -, year = 1979 -, update = "98.03 bibrelex" +, author = "M. Y. Hsueh and D. O. Pederson" +, title = "Computer-Aided Layout of LSI Circuit Building-Blocks" +, booktitle = "Proc. IEEE Int. Symp. on Circuits and Systems" +, year = 1979 +, update = "98.03 bibrelex" } @phdthesis{h-trism-95 -, author = "C.-Y. Hu" -, title = "Towards Robust Interval Solid Modeling of Curved Objects" -, type = "Ph.{D}. Thesis" -, school = "Massachusetts Institute of Technology" -, address = "Cambridge, Massachusetts" -, year = 1995 -, keywords = "doctoral thesis" -, update = "95.05 abrams" +, author = "C.-Y. Hu" +, title = "Towards Robust Interval Solid Modeling of Curved Objects" +, type = "Ph.{D}. Thesis" +, school = "Massachusetts Institute of Technology" +, address = "Cambridge, Massachusetts" +, year = 1995 +, keywords = "doctoral thesis" +, update = "95.05 abrams" } @article{hpy-rismp1-96 -, author = "C.-Y. Hu and N. M. Patrikalakis and X. Ye" -, title = "Robust interval solid modeling, {Part} {I}: representations" -, journal = "CAD" -, volume = 28 -, year = 1996 -, pages = "807--818" -, update = "98.07 bibrelex" +, author = "C.-Y. Hu and N. M. Patrikalakis and X. Ye" +, title = "Robust interval solid modeling, {Part} {I}: representations" +, journal = "CAD" +, volume = 28 +, year = 1996 +, pages = "807--818" +, update = "98.07 bibrelex" } @article{hpy-rismp2-96 -, author = "C.-Y. Hu and N. M. Patrikalakis and X. Ye" -, title = "Robust interval solid modeling, {Part} {II}: boundary evaluation" -, journal = "CAD" -, volume = 28 -, year = 1996 -, pages = "819--830" -, update = "98.07 bibrelex" +, author = "C.-Y. Hu and N. M. Patrikalakis and X. Ye" +, title = "Robust interval solid modeling, {Part} {II}: boundary evaluation" +, journal = "CAD" +, volume = 28 +, year = 1996 +, pages = "819--830" +, update = "98.07 bibrelex" } @inproceedings{h-ntcmp-91 -, author = "Limin Hu" -, title = "A Novel Topology Control For Multihop Packet Radio Networks" -, booktitle = "Proceedings of the 10th Annual Joint Conference of the IEEE and Communications Societies, IEEE INFOCOM '91" -, publisher = "IEEE" -, address = "IEEE Service Center, Piscataway, NJ, USA (IEEE cat n 91CH2979-3)" -, year = 1991 -, pages = "1084--1093" -, keywords = "packet radio networks, topology control algorithms, data links" -, abstract = "A novel, distributed topology-control algorithm has - been developed for each node in a packet radio network - (PRN) to control its transmitting power and logical - neighbors in order to construct a reliable, - high-throughput topology. The algorithm first - constructs a planar triangulation from locations of all - nodes as a starting topology. Then, the minimum angles - of all triangles in the planar triangulation are - maximized by means of edge switching to improve - connectivity and throughput. The resulting Delaunay - triangulation can be determined locally at each node. - The topology is modified by negotiating among neighbors - to satisfy a design requirement on the nodal degree - parameter. Simulations show that (1) the final topology - is degree-bounded, (2) it has a rather regular and - uniform structure, and (3) its throughput and - reliability are greater than that of a number of - alternative topologies. 25 Refs." +, author = "Limin Hu" +, title = "A Novel Topology Control For Multihop Packet Radio Networks" +, booktitle = "Proceedings of the 10th Annual Joint Conference of the IEEE and Communications Societies, IEEE INFOCOM '91" +, publisher = "IEEE" +, address = "IEEE Service Center, Piscataway, NJ, USA (IEEE cat n 91CH2979-3)" +, year = 1991 +, pages = "1084--1093" +, keywords = "packet radio networks, topology control algorithms, data links" +, abstract = "A novel, distributed topology-control algorithm has + been developed for each node in a packet radio network + (PRN) to control its transmitting power and logical + neighbors in order to construct a reliable, + high-throughput topology. The algorithm first + constructs a planar triangulation from locations of all + nodes as a starting topology. Then, the minimum angles + of all triangles in the planar triangulation are + maximized by means of edge switching to improve + connectivity and throughput. The resulting Delaunay + triangulation can be determined locally at each node. + The topology is modified by negotiating among neighbors + to satisfy a design requirement on the nodal degree + parameter. Simulations show that (1) the final topology + is degree-bounded, (2) it has a rather regular and + uniform structure, and (3) its throughput and + reliability are greater than that of a number of + alternative topologies. 25 Refs." } @book{h-ipnf-69 -, author = "T. C. Hu" -, title = "Integer programming and network flows" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1969 -, update = "98.03 bibrelex" +, author = "T. C. Hu" +, title = "Integer programming and network flows" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1969 +, update = "98.03 bibrelex" } @techreport{hkr-orppg-92 -, author = "T. C. Hu and Andrew B. Kahng and Gabriel Robins" -, title = "Optimal Robust Path Planning in General Environments" -, type = "Manuscript" -, year = 1992 -, precedes = "hkr-orppg-93" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "T. C. Hu and Andrew B. Kahng and Gabriel Robins" +, title = "Optimal Robust Path Planning in General Environments" +, type = "Manuscript" +, year = 1992 +, precedes = "hkr-orppg-93" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @article{hkr-orppg-93 -, author = "T. C. Hu and Andrew B. Kahng and Gabriel Robins" -, title = "Optimal Robust Path Planning in General Environments" -, journal = "IEEE Trans. Robot. Autom." -, volume = 9 -, number = 6 -, month = dec -, year = 1993 -, pages = "775--784" -, succeeds = "hkr-orppg-92" -, update = "98.03 mitchell" -, abstract = " +, author = "T. C. Hu and Andrew B. Kahng and Gabriel Robins" +, title = "Optimal Robust Path Planning in General Environments" +, journal = "IEEE Trans. Robot. Autom." +, volume = 9 +, number = 6 +, month = dec +, year = 1993 +, pages = "775--784" +, succeeds = "hkr-orppg-92" +, update = "98.03 mitchell" +, abstract = " We address robust path planning for a mobile agent in a general environment by finding minimum cost source-destination paths having prescribed widths. The main result is a new approach that optimally @@ -78776,157 +78776,157 @@ @article{hkr-orppg-93 } @article{hs-oafno-81 -, author = "T. C. Hu and M.-T. Shing" -, title = "An {$O(n)$} algorithm to find a near-optimum partition of a convex polygon" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "122--138" +, author = "T. C. Hu and M.-T. Shing" +, title = "An {$O(n)$} algorithm to find a near-optimum partition of a convex polygon" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "122--138" } @inproceedings{h-odcbl-90 -, author = "A. Huang" -, title = "Optical digital computing at {Bell} {Labs}" -, booktitle = "1990 International Topical Meeting on Optical Computing" -, site = "Kobe, Japan" -, year = 1990 -, update = "98.03 bibrelex" +, author = "A. Huang" +, title = "Optical digital computing at {Bell} {Labs}" +, booktitle = "1990 International Topical Meeting on Optical Computing" +, site = "Kobe, Japan" +, year = 1990 +, update = "98.03 bibrelex" } @inproceedings{hmns-narp-95 -, author = "Jian Huang and Anil Maheshwari and Doron Nussbaum and J{\"o}rg-R{\"u}diger Sack" -, title = "A Note on Approximations of Rectilinear Polygons" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "43--48" -, update = "95.09 jones" +, author = "Jian Huang and Anil Maheshwari and Doron Nussbaum and J{\"o}rg-R{\"u}diger Sack" +, title = "A Note on Approximations of Rectilinear Polygons" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "43--48" +, update = "95.09 jones" } @techreport{hhh-icgts-85 -, author = "J. M. Huang and P. Huang and Y. P. Huang" -, title = "Interactive computer graphics in topographical simulation" -, type = "Manuscript" -, institution = "??" -, year = 1985 +, author = "J. M. Huang and P. Huang and Y. P. Huang" +, title = "Interactive computer graphics in topographical simulation" +, type = "Manuscript" +, institution = "??" +, year = 1985 } @inproceedings{hc-psdps-83 -, author = "J. S. Huang and Y. C. Chow" -, title = "Parallel sorting and data partitioning by sampling" -, booktitle = "Proc. IEEE 7th Int. Computer Software and Applications Conference" -, year = 1983 -, pages = "627--631" -, update = "96.09 orourke" +, author = "J. S. Huang and Y. C. Chow" +, title = "Parallel sorting and data partitioning by sampling" +, booktitle = "Proc. IEEE 7th Int. Computer Software and Applications Conference" +, year = 1983 +, pages = "627--631" +, update = "96.09 orourke" } @article{hl-ifsea-85 -, author = "M.-D. A. Huang and K. J. Lieberherr" -, title = "Implications of forbidden structures for extremal algorithmic problems" -, journal = "Theoret. Comput. Sci." -, volume = 40 -, year = 1985 -, pages = "195--210" +, author = "M.-D. A. Huang and K. J. Lieberherr" +, title = "Implications of forbidden structures for extremal algorithmic problems" +, journal = "Theoret. Comput. Sci." +, volume = 40 +, year = 1985 +, pages = "195--210" } @techreport{h-pcprn-91 -, author = "N.-F. Huang" -, title = "The power connecting problem on a radio network" -, institution = "Dept. of Comput. Sci., National Tsing Hua Univ., Hsinchu, Taiwan 300, Republic of China" -, year = 1991 -, update = "00.03 bibrelex" +, author = "N.-F. Huang" +, title = "The power connecting problem on a radio network" +, institution = "Dept. of Comput. Sci., National Tsing Hua Univ., Hsinchu, Taiwan 300, Republic of China" +, year = 1991 +, update = "00.03 bibrelex" } @inproceedings{hxc-gphds-01 -, author = "Y. Huang and J. Xu and D. Z. Chen" -, title = "Geometric Permutations of High Dimensional Spheres" -, booktitle = "Proc. 12th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '01" -, year = 2001 -, pages = "244--245" -, update = "01.04 orourke" +, author = "Y. Huang and J. Xu and D. Z. Chen" +, title = "Geometric Permutations of High Dimensional Spheres" +, booktitle = "Proc. 12th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '01" +, year = 2001 +, pages = "244--245" +, update = "01.04 orourke" } @article{h-tingt-89 -, author = "Yih-Ping Huang" -, title = "Triangular Irregular Network Generation and Topographical Modeling" -, journal = "Computers in Industry" -, volume = 12 -, year = 1989 -, pages = "203--213" -, annote = "Program for a CT. Three different measures of goodness - used in incompatible ways!! Initial triangulation is - built by on edges by taking the first point that - subtends a sufficiently angle (6 degrees seemed to work - well). Then a LOT based on shortest diagonal is - produced (but with an additional unspecified rule to - avoid really skinny triangles!). Finally a third - measure is used to evaluate the - triangulation---triangle quality is (area of - equilateral tri with same perimeter)/area. Then the - triangulation quality is the weighted-by-area average - of this (Note that this is a rotten measure---really - skinny triangles have low areas). Measured performance - is $O(n^{2.5})$. Oh yes, bucketing is used to speed the - search in triangle building. God knows how slow it - would have been without bucketing. (Like 2 cpu hours - for 1500 points!)" +, author = "Yih-Ping Huang" +, title = "Triangular Irregular Network Generation and Topographical Modeling" +, journal = "Computers in Industry" +, volume = 12 +, year = 1989 +, pages = "203--213" +, annote = "Program for a CT. Three different measures of goodness + used in incompatible ways!! Initial triangulation is + built by on edges by taking the first point that + subtends a sufficiently angle (6 degrees seemed to work + well). Then a LOT based on shortest diagonal is + produced (but with an additional unspecified rule to + avoid really skinny triangles!). Finally a third + measure is used to evaluate the + triangulation---triangle quality is (area of + equilateral tri with same perimeter)/area. Then the + triangulation quality is the weighted-by-area average + of this (Note that this is a rotten measure---really + skinny triangles have low areas). Measured performance + is $O(n^{2.5})$. Oh yes, bucketing is used to speed the + search in triangle building. God knows how slow it + would have been without bucketing. (Like 2 cpu hours + for 1500 points!)" } @inproceedings{hch-rfomr-86 -, author = "Y. Y. Huang and Z. Cao and E. l. Hall" -, title = "Region filling operations for mobile robots using computer graphics" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1986 -, pages = "1607--1614" -, update = "98.07 bibrelex" +, author = "Y. Y. Huang and Z. Cao and E. l. Hall" +, title = "Region filling operations for mobile robots using computer graphics" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1986 +, pages = "1607--1614" +, update = "98.07 bibrelex" } @techreport{hch-rfomr-85 -, author = "Y. Y. Huang and Z. L. Cao and E. L. Hall" -, title = "Region filling operations for mobile robots using computer graphics" -, type = "Report" -, number = "??" -, institution = "Center Rob. Res., Univ. Cincinnati" -, address = "Cincinnati, OH" -, year = 1985 +, author = "Y. Y. Huang and Z. L. Cao and E. L. Hall" +, title = "Region filling operations for mobile robots using computer graphics" +, type = "Report" +, number = "??" +, institution = "Center Rob. Res., Univ. Cincinnati" +, address = "Cincinnati, OH" +, year = 1985 } @article{h-apstc-96 -, author = "P. M. Hubbard" -, title = "Approximating Polyhedra with Spheres for Time-Critical Collision Detection" -, journal = "ACM Trans. Graph." -, volume = 15 -, number = 3 -, month = jul -, year = 1996 -, pages = "179--210" -, update = "97.03 held" +, author = "P. M. Hubbard" +, title = "Approximating Polyhedra with Spheres for Time-Critical Collision Detection" +, journal = "ACM Trans. Graph." +, volume = 15 +, number = 3 +, month = jul +, year = 1996 +, pages = "179--210" +, update = "97.03 held" } @article{h-cdiga-95 -, author = "Philip M. Hubbard" -, title = "Collision detection for interactive graphics applications" -, journal = "IEEE Trans. Visualization and Computer Graphics" -, volume = 1 -, number = 3 -, month = sep -, year = 1995 -, pages = "218--230" -, keywords = "collision detection, intersection detection, sphere trees" -, update = "96.09 devillers, 96.01 mitchell" +, author = "Philip M. Hubbard" +, title = "Collision detection for interactive graphics applications" +, journal = "IEEE Trans. Visualization and Computer Graphics" +, volume = 1 +, number = 3 +, month = sep +, year = 1995 +, pages = "218--230" +, keywords = "collision detection, intersection detection, sphere trees" +, update = "96.09 devillers, 96.01 mitchell" } @article{h-iarat-96 -, author = "Philip M. Hubbard" -, title = "Improving Accuracy in a Robust Algorithm for Three-Dimensional {Voronoi} Diagrams" -, journal = "Journal of Graphics Tools" -, volume = 1 -, number = 1 -, year = 1996 -, pages = "33--47" -, update = "96.09 held+hubbard" -, annote = "Extends \cite{iss-nriac-92}" -, abstract = "This paper describes extensions to a previous algorithm that +, author = "Philip M. Hubbard" +, title = "Improving Accuracy in a Robust Algorithm for Three-Dimensional {Voronoi} Diagrams" +, journal = "Journal of Graphics Tools" +, volume = 1 +, number = 1 +, year = 1996 +, pages = "33--47" +, update = "96.09 held+hubbard" +, annote = "Extends \cite{iss-nriac-92}" +, abstract = "This paper describes extensions to a previous algorithm that robustly builds three-dimensional Voronoi diagrams in the presence of inexact numerical computations. The extensions improve the algorithm's accuracy, making its results more @@ -78938,77 +78938,77 @@ @article{h-iarat-96 } @inproceedings{h-icd-93 -, author = "P. M. Hubbard" -, title = "Interactive Collision Detection" -, booktitle = "Proc. IEEE Symposium on Research Frontiers in Virtual Reality" -, year = 1993 -, pages = "24--31" -, update = "95.01 mitchell" +, author = "P. M. Hubbard" +, title = "Interactive Collision Detection" +, booktitle = "Proc. IEEE Symposium on Research Frontiers in Virtual Reality" +, year = 1993 +, pages = "24--31" +, update = "95.01 mitchell" } @techreport{h-stbcd-93 -, author = "P. M. Hubbard" -, title = "Space-Time Bounds for Collision Detection" -, type = "Technical Report CS-93-04" -, institution = "Dept. of Computer Science, Brown University" -, month = feb -, year = 1993 -, update = "95.01 mitchell" +, author = "P. M. Hubbard" +, title = "Space-Time Bounds for Collision Detection" +, type = "Technical Report CS-93-04" +, institution = "Dept. of Computer Science, Brown University" +, month = feb +, year = 1993 +, update = "95.01 mitchell" } @article{hw-rffam-68 -, author = "D. H. Hubel and T. N. Wiesel" -, title = "Receptive fields and functional architecture of monkey striate cortex" -, journal = "J. Physiol. (London)" -, volume = 195 -, year = 1968 -, pages = "215--243" -, update = "98.07 bibrelex" +, author = "D. H. Hubel and T. N. Wiesel" +, title = "Receptive fields and functional architecture of monkey striate cortex" +, journal = "J. Physiol. (London)" +, volume = 195 +, year = 1968 +, pages = "215--243" +, update = "98.07 bibrelex" } @article{hw-srgoc-74 -, author = "D. H. Hubel and T. N. Wiesel" -, title = "Sequence regularity and geometry of orientation columns in the monkey striate cortex" -, journal = "J. Comp. Neurol." -, volume = 158 -, year = 1974 -, pages = "267--293" -, update = "98.07 bibrelex" +, author = "D. H. Hubel and T. N. Wiesel" +, title = "Sequence regularity and geometry of orientation columns in the monkey striate cortex" +, journal = "J. Comp. Neurol." +, volume = 158 +, year = 1974 +, pages = "267--293" +, update = "98.07 bibrelex" } @mastersthesis{h-radeu-84 -, author = "F. Huber" -, title = "Rekursive {Aufteilungen} der {Ebene} und des {Raumes} f{\"u}r {Bereichsuchverfahren}" -, type = "{Dipl.-Ing.} master thesis" -, school = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1984 -, keywords = "master thesis" -, comments = "61 pp." -, update = "93.09 rote" +, author = "F. Huber" +, title = "Rekursive {Aufteilungen} der {Ebene} und des {Raumes} f{\"u}r {Bereichsuchverfahren}" +, type = "{Dipl.-Ing.} master thesis" +, school = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1984 +, keywords = "master thesis" +, comments = "61 pp." +, update = "93.09 rote" } @article{h-rsr-72 -, author = "P. J. Huber" -, title = "Robust statistics: a review" -, journal = "Ann. Math. Statist." -, volume = 43 -, number = 3 -, year = 1972 -, pages = "1041--1067" -, update = "98.07 bibrelex" +, author = "P. J. Huber" +, title = "Robust statistics: a review" +, journal = "Ann. Math. Statist." +, volume = 43 +, number = 3 +, year = 1972 +, pages = "1041--1067" +, update = "98.07 bibrelex" } @techreport{hr-cdr-97 -, author = "Mia Hubert and Peter J. Rousseeuw" -, title = "The Catline for Deep Regression" -, type = "Manuscript" -, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" -, year = 1997 -, keywords = "breakdown value, heteroscedasticity, influence function, regression depth, robust regression" -, comments = "to appear, Journal of Multivariate Analysis" -, update = "98.07 mitchell" -, abstract = " +, author = "Mia Hubert and Peter J. Rousseeuw" +, title = "The Catline for Deep Regression" +, type = "Manuscript" +, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" +, year = 1997 +, keywords = "breakdown value, heteroscedasticity, influence function, regression depth, robust regression" +, comments = "to appear, Journal of Multivariate Analysis" +, update = "98.07 mitchell" +, abstract = " Motivated by the notion of regression depth (Rousseeuw and Hubert 1996) we introduce the catline, a new method for simple linear regression. At any bivariate data set $Z_n=\{(x_i,y_i);i=1,...,n\}$ @@ -79028,3873 +79028,3873 @@ @techreport{hr-cdr-97 } @article{hkv-dchfs-81 -, author = "A. H{\"u}bler and R. Klette and K. Vob" -, title = "Determination of the convex hull of a finite set of planar points within linear time" -, journal = "Elektron. Informationsverarb. Kybernet." -, volume = 17 -, year = 1981 -, pages = "121--139" +, author = "A. H{\"u}bler and R. Klette and K. Vob" +, title = "Determination of the convex hull of a finite set of planar points within linear time" +, journal = "Elektron. Informationsverarb. Kybernet." +, volume = 17 +, year = 1981 +, pages = "121--139" } @article{hz-ffchs-82 -, author = "H. Hubschman and S. W. Zucker" -, title = "Frame-to-frame coherence and the hidden surface computation: constraints for a convex world" -, journal = "ACM Trans. Graph." -, volume = 1 -, year = 1982 -, pages = "129--162" +, author = "H. Hubschman and S. W. Zucker" +, title = "Frame-to-frame coherence and the hidden surface computation: constraints for a convex world" +, journal = "ACM Trans. Graph." +, volume = 1 +, year = 1982 +, pages = "129--162" } @inproceedings{h-gaa-88 -, author = "U. Huckenbeck" -, title = "Geometrical abstract automata" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "217--231" -, keywords = "computational model" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "U. Huckenbeck" +, title = "Geometrical abstract automata" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "217--231" +, keywords = "computational model" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @techreport{h-gm-86 -, author = "U. Huckenbeck" -, title = "Geometrische {Maschinenmodelle}" -, type = "Report" -, number = "??" -, institution = "Bayerische Julius-Maximilians-Univ." -, address = "W{\"u}rzburg, West Germany" -, year = 1986 +, author = "U. Huckenbeck" +, title = "Geometrische {Maschinenmodelle}" +, type = "Report" +, number = "??" +, institution = "Bayerische Julius-Maximilians-Univ." +, address = "W{\"u}rzburg, West Germany" +, year = 1986 } @inproceedings{h-kaogr-90 -, author = "Ulrich Huckenbeck" -, title = "{Kreisscheiben} als {Orakel} f{\"u}r geometrische {Random} {Access} {Machines}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 14 -, update = "00.03 bibrelex" +, author = "Ulrich Huckenbeck" +, title = "{Kreisscheiben} als {Orakel} f{\"u}r geometrische {Random} {Access} {Machines}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 14 +, update = "00.03 bibrelex" } @inproceedings{h-uazlm-89 -, author = "U. Huckenbeck" -, title = "{{\"U}ber} die {Ausdrucksm{\"a}chtigkeit} von {Zirkel-} und {Lineal}-{Maschinen}, die die {Gleicheit} von {Punkten} entscheiden k{\"o}nnen" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "U. Huckenbeck" +, title = "{{\"U}ber} die {Ausdrucksm{\"a}chtigkeit} von {Zirkel-} und {Lineal}-{Maschinen}, die die {Gleicheit} von {Punkten} entscheiden k{\"o}nnen" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @article{hm-ndsrs-82 -, author = "S. Huddleston and K. Mehlhorn" -, title = "A New Data Structure for Representing Sorted Lists" -, journal = "Acta Inform." -, volume = 17 -, year = 1982 -, pages = "157--184" -, update = "94.01 tamassia" +, author = "S. Huddleston and K. Mehlhorn" +, title = "A New Data Structure for Representing Sorted Lists" +, journal = "Acta Inform." +, volume = 17 +, year = 1982 +, pages = "157--184" +, update = "94.01 tamassia" } @inproceedings{hmclhz-aocus-97 -, author = "T. Hudson and D. Manocha and J. Cohen and M. Lin and K. Hoff and H. Zhang" -, title = "Accelerated Occlusion Culling Using Shadow Frustra" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "1--10" -, cites = "arb-tiriu-90, bcgmt-bhrs3-96, bdeg-vmpv-94, c-oaitd-89, c-hgmvs-76, c-arscg-88, clmp-iciec-95, c-sacg-77, ct-tccv-96, ct-rtocm-97, d-soshs-94, fdfh-cgpp-90, fkn-vsgpt-80, f-riga-96, gbw-ivlgd-90, gcs-ecrag-91, gjk-fpcdb-88, gkm-hzbv-93, glm-othsr-96, g-dirsc-94, hhk-rsops-89, hkm-ecdmv-95, kk-rtcs-86, lc-eaidc-91, lg-pmsfe-95, m-wcohs-87, mn-lpcgc-95, ms-foscp-85, m-eahsr-89, n-isgpt-92, s-lpchm-90, sss-cthsa-74, ts-vpiw-91, yr-vcewc-96, zmhh-vcuho-97t, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "T. Hudson and D. Manocha and J. Cohen and M. Lin and K. Hoff and H. Zhang" +, title = "Accelerated Occlusion Culling Using Shadow Frustra" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "1--10" +, cites = "arb-tiriu-90, bcgmt-bhrs3-96, bdeg-vmpv-94, c-oaitd-89, c-hgmvs-76, c-arscg-88, clmp-iciec-95, c-sacg-77, ct-tccv-96, ct-rtocm-97, d-soshs-94, fdfh-cgpp-90, fkn-vsgpt-80, f-riga-96, gbw-ivlgd-90, gcs-ecrag-91, gjk-fpcdb-88, gkm-hzbv-93, glm-othsr-96, g-dirsc-94, hhk-rsops-89, hkm-ecdmv-95, kk-rtcs-86, lc-eaidc-91, lg-pmsfe-95, m-wcohs-87, mn-lpcgc-95, ms-foscp-85, m-eahsr-89, n-isgpt-92, s-lpchm-90, sss-cthsa-74, ts-vpiw-91, yr-vcewc-96, zmhh-vcuho-97t, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{hj-gifdg-68 -, author = "D. L. Huff and G. F. Jenks" -, title = "A geographic interpretation of the friction of distance in gravity models" -, journal = "Annals of the Association of American Geographers" -, volume = "??" -, year = 1968 -, update = "97.11 bibrelex" +, author = "D. L. Huff and G. F. Jenks" +, title = "A geographic interpretation of the friction of distance in gravity models" +, journal = "Annals of the Association of American Geographers" +, volume = "??" +, year = 1968 +, update = "97.11 bibrelex" } @article{hl-ius-79 -, author = "D. L. Huff and J. M. Lutz" -, title = "Ireland's urban system" -, journal = "Economic Geography" -, volume = "??" -, year = 1979 -, update = "97.11 bibrelex" +, author = "D. L. Huff and J. M. Lutz" +, title = "Ireland's urban system" +, journal = "Economic Geography" +, volume = "??" +, year = 1979 +, update = "97.11 bibrelex" } @article{h-dcaps-77 -, author = "D. Huffman" -, title = "A duality concept for the analysis of polyhedral scenes" -, journal = "Machine Intelligence" -, volume = 8 -, year = 1977 -, pages = "475--492" -, update = "97.11 bibrelex" +, author = "D. Huffman" +, title = "A duality concept for the analysis of polyhedral scenes" +, journal = "Machine Intelligence" +, volume = 8 +, year = 1977 +, pages = "475--492" +, update = "97.11 bibrelex" } @article{h-ions-71 -, author = "D. Huffman" -, title = "Impossible objects as nonsense sentences" -, journal = "Machine Intelligence" -, volume = 6 -, year = 1971 -, pages = "295--323" -, update = "97.11 bibrelex" +, author = "D. Huffman" +, title = "Impossible objects as nonsense sentences" +, journal = "Machine Intelligence" +, volume = 6 +, year = 1971 +, pages = "295--323" +, update = "97.11 bibrelex" } @article{h-ccpp-76 -, author = "D. A. Huffman" -, title = "Curvatures and creases: a primer on paper" -, journal = "IEEE Trans. Comput." -, volume = "C-25" -, year = 1976 -, pages = "1010--1019" -, update = "97.11 bibrelex" +, author = "D. A. Huffman" +, title = "Curvatures and creases: a primer on paper" +, journal = "IEEE Trans. Comput." +, volume = "C-25" +, year = 1976 +, pages = "1010--1019" +, update = "97.11 bibrelex" } @phdthesis{h-apbmt-95 -, author = "A. Hufnagel" -, title = "Algorithmic problems in {Brunn}-{Minkowski} theory" -, school = "??" -, address = "Trier, Germany" -, year = 1995 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "A. Hufnagel" +, title = "Algorithmic problems in {Brunn}-{Minkowski} theory" +, school = "??" +, address = "Trier, Germany" +, year = 1995 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{h-gamp-97 -, author = "K. Hui" -, title = "Geometric aspects of mouldability of parts" -, journal = "Comput. Aided Design" -, volume = 29 -, year = 1997 -, pages = "107--208" -, update = "98.07 bibrelex" +, author = "K. Hui" +, title = "Geometric aspects of mouldability of parts" +, journal = "Comput. Aided Design" +, volume = 29 +, year = 1997 +, pages = "107--208" +, update = "98.07 bibrelex" } @article{ht-mdsoh-92 -, author = "K. Hui and S. Tan" -, title = "Mould design with sweep operations - a heuristic search approach" -, journal = "Comput. Aided Design" -, volume = 24 -, year = 1992 -, pages = "81--91" -, update = "98.07 bibrelex" +, author = "K. Hui and S. Tan" +, title = "Mould design with sweep operations - a heuristic search approach" +, journal = "Comput. Aided Design" +, volume = 24 +, year = 1992 +, pages = "81--91" +, update = "98.07 bibrelex" } @article{h-ssisa-94 -, author = "K. C. Hui" -, title = "Solid Sweeping in Image Space -- Application in {NC} Simulation" -, journal = "Visual Comput." -, volume = 10 -, number = 6 -, year = 1994 -, pages = "306--316" -, update = "96.01 held" +, author = "K. C. Hui" +, title = "Solid Sweeping in Image Space -- Application in {NC} Simulation" +, journal = "Visual Comput." +, volume = 10 +, number = 6 +, year = 1994 +, pages = "306--316" +, update = "96.01 held" } @article{hk-dppsm-95 -, author = "K. C. Hui and Y. M. Kan" -, title = "Data Partitioning for Parallel Solid Modeling" -, journal = "Visual Comput." -, volume = 11 -, number = 10 -, year = 1995 -, pages = "526--541" -, update = "96.05 held" +, author = "K. C. Hui and Y. M. Kan" +, title = "Data Partitioning for Parallel Solid Modeling" +, journal = "Visual Comput." +, volume = 11 +, number = 10 +, year = 1995 +, pages = "526--541" +, update = "96.05 held" } @incollection{hj-r3dor-88 -, author = "D. P. Huijsmans and G. H. Jense" -, title = "Representation of 3${D}$ Objects Reconstructed from Series of Parallel 2${D}$ Slices" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series" -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "1031--1038" -, isbn = "3-540-19506-8" -, update = "93.09 held" +, author = "D. P. Huijsmans and G. H. Jense" +, title = "Representation of 3${D}$ Objects Reconstructed from Series of Parallel 2${D}$ Slices" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series" +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "1031--1038" +, isbn = "3-540-19506-8" +, update = "93.09 held" } @article{h-ajddb-83 -, author = "R. Hull" -, title = "Acyclic join dependency and data base projections" -, journal = "J. Comput. Syst. Sci." -, volume = 27 -, year = 1983 -, pages = "331--349" +, author = "R. Hull" +, title = "Acyclic join dependency and data base projections" +, journal = "J. Comput. Syst. Sci." +, volume = 27 +, year = 1983 +, pages = "331--349" } @article{h-mfo-94 -, author = "T. Hull" -, title = "On the mathematics of flat origamis" -, journal = "Congr. Numer." -, volume = 100 -, year = 1994 -, pages = "215--224" -, update = "97.11 bibrelex" +, author = "T. Hull" +, title = "On the mathematics of flat origamis" +, journal = "Congr. Numer." +, volume = 100 +, year = 1994 +, pages = "215--224" +, update = "97.11 bibrelex" } @inproceedings{hmpt-agdsa-97 -, author = "Christoph Hundack and Petra Mutzel and Igor Pouchkarev and Stefan Thome" -, title = "{\em ArchE}: A Graph Drawing System for Archaeology" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "297--302" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Christoph Hundack and Petra Mutzel and Igor Pouchkarev and Stefan Thome" +, title = "{\em ArchE}: A Graph Drawing System for Archaeology" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "297--302" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{hi-cchqs-95 -, author = "Chao-Kuei Hung and Doug Ierardi" -, title = "Constructing Convex Hulls of Quadratic Surface Patches" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "255--260" -, update = "95.09 jones" +, author = "Chao-Kuei Hung and Doug Ierardi" +, title = "Constructing Convex Hulls of Quadratic Surface Patches" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "255--260" +, update = "95.09 jones" } @article{hp-asdmr-94 -, author = "C. Y. Hung and B. Parhami" -, title = "An approximate sign detection method for residue numbers and its applications to {RNS} division" -, journal = "Comput. Math. Appl." -, volume = 27 -, number = 4 -, year = 1994 -, pages = "23--35" -, update = "98.07 bibrelex" +, author = "C. Y. Hung and B. Parhami" +, title = "An approximate sign detection method for residue numbers and its applications to {RNS} division" +, journal = "Comput. Math. Appl." +, volume = 27 +, number = 4 +, year = 1994 +, pages = "23--35" +, update = "98.07 bibrelex" } @inproceedings{hc-qpp-91 -, author = "Yung-Chen Hung and Gen-Huey Chen" -, title = "On the Quickest Path Problem" -, booktitle = "??" -, series = "Lecture Notes Comput. Sci." -, volume = 497 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Yung-Chen Hung and Gen-Huey Chen" +, title = "On the Quickest Path Problem" +, booktitle = "??" +, series = "Lecture Notes Comput. Sci." +, volume = 497 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "??" +, update = "93.09 milone+mitchell" } @techreport{hg-nmcdt-86 -, author = "C. J. Hunt and C. Greenough" -, title = "Novel Method for the Computation of the {Delaunay} Triangulation with a View to Efficient Use of Parallel Architectures" -, number = "RAL-86-090" -, institution = "Science and Engineering Research Council, Chilton (England). Rutherford Appleton Lab." -, month = oct -, year = 1986 -, keywords = "foreign technology, Delaunay triangulation, mapping (transformations), mesh generation, ntistfser" -, update = "93.09 rote" -, abstract = "In recent years a multitude of techniques have been - presented for generating the Delaunay triangulation of - a set of points in the plane. Many of these methods - have been extended to connect points in three - dimensions with varied success. All of these methods - are serial processes. Nodes must be added one by one to - an existing Delaunay triangulation. Consequently - although these methods may be efficient on a serial - machine, they cannot exploit the full potential of - highly parallel architectures. In the report the - authors discuss an alternative method for computing the - Delaunay triangulation of a set of points in the plane. - The algorithm is optimal in performance on a serial - machine computing the triangulation in order N(log to - the base 2)N time for N nodes. In addition it appears - that the algorithm will transport to an array processor - giving order (log to the base 2)N time for N nodes. The - algorithm has potential for extension into higher space - dimensions. The research has application for the - simulation of semiconductor devices." +, author = "C. J. Hunt and C. Greenough" +, title = "Novel Method for the Computation of the {Delaunay} Triangulation with a View to Efficient Use of Parallel Architectures" +, number = "RAL-86-090" +, institution = "Science and Engineering Research Council, Chilton (England). Rutherford Appleton Lab." +, month = oct +, year = 1986 +, keywords = "foreign technology, Delaunay triangulation, mapping (transformations), mesh generation, ntistfser" +, update = "93.09 rote" +, abstract = "In recent years a multitude of techniques have been + presented for generating the Delaunay triangulation of + a set of points in the plane. Many of these methods + have been extended to connect points in three + dimensions with varied success. All of these methods + are serial processes. Nodes must be added one by one to + an existing Delaunay triangulation. Consequently + although these methods may be efficient on a serial + machine, they cannot exploit the full potential of + highly parallel architectures. In the report the + authors discuss an alternative method for computing the + Delaunay triangulation of a set of points in the plane. + The algorithm is optimal in performance on a serial + machine computing the triangulation in order N(log to + the base 2)N time for N nodes. In addition it appears + that the algorithm will transport to an array processor + giving order (log to the base 2)N time for N nodes. The + algorithm has potential for extension into higher space + dimensions. The research has application for the + simulation of semiconductor devices." } @inproceedings{hmrrrs-uaasn-95 -, author = "H. B. {Hunt III} and M. V. Marathe and V. Radhakrishnan and S. S. Ravi and D. J. Rosenkrantz and R. E. Stearns" -, title = "A unified approach to approximation schemes for {NP}- and {PSPACE}-hard problems for geometric graphs" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, year = 1995 -, pages = "424--435" -, update = "97.07 agarwal" +, author = "H. B. {Hunt III} and M. V. Marathe and V. Radhakrishnan and S. S. Ravi and D. J. Rosenkrantz and R. E. Stearns" +, title = "A unified approach to approximation schemes for {NP}- and {PSPACE}-hard problems for geometric graphs" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, year = 1995 +, pages = "424--435" +, update = "97.07 agarwal" } @book{h-kgm-78 -, author = "K. H. Hunt" -, title = "Kinematic geometry of mechanisms" -, publisher = "Oxford University Press" -, address = "New York" -, year = 1978 -, update = "00.11 smid, 00.07 icking, 98.07 orourke" +, author = "K. H. Hunt" +, title = "Kinematic geometry of mechanisms" +, publisher = "Oxford University Press" +, address = "New York" +, year = 1978 +, update = "00.11 smid, 00.07 icking, 98.07 orourke" } @techreport{hv-esavp-82 -, author = "W. A. Hunt and H. B. Voelcker" -, title = "An Exploratory Study of Automatic Verification of Programs for Numerically Controlled Machine Tools" -, type = "Production Automation Project Tech Memo" -, number = 34 -, institution = "Univ. Rochester" -, address = "Rochester, NY" -, month = jan -, year = 1982 -, update = "98.03 bibrelex" +, author = "W. A. Hunt and H. B. Voelcker" +, title = "An Exploratory Study of Automatic Verification of Programs for Numerically Controlled Machine Tools" +, type = "Production Automation Project Tech Memo" +, number = 34 +, institution = "Univ. Rochester" +, address = "Rochester, NY" +, month = jan +, year = 1982 +, update = "98.03 bibrelex" } @phdthesis{h-ecdsg-78 -, author = "G. M. Hunter" -, title = "Efficient computation and data structures for graphics" -, type = "Ph.{D}. Thesis" -, school = "Dept. Elect. Engrg. Comput. Sci., Princeton Univ." -, address = "Princeton, NY" -, year = 1978 -, keywords = "doctoral thesis" +, author = "G. M. Hunter" +, title = "Efficient computation and data structures for graphics" +, type = "Ph.{D}. Thesis" +, school = "Dept. Elect. Engrg. Comput. Sci., Princeton Univ." +, address = "Princeton, NY" +, year = 1978 +, keywords = "doctoral thesis" } @article{hs-ltprq-79 -, author = "G. M. Hunter and K. Steiglitz" -, title = "Linear transformations of pictures represented by quad trees" -, journal = "Comput. Graph. Image Process." -, volume = 10 -, year = 1979 -, pages = "289--296" +, author = "G. M. Hunter and K. Steiglitz" +, title = "Linear transformations of pictures represented by quad trees" +, journal = "Comput. Graph. Image Process." +, volume = 10 +, year = 1979 +, pages = "289--296" } @article{hs-oiuqt-79 -, author = "G. M. Hunter and K. Steiglitz" -, title = "Operations on images using quad trees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-1" -, year = 1979 -, pages = "145--153" +, author = "G. M. Hunter and K. Steiglitz" +, title = "Operations on images using quad trees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-1" +, year = 1979 +, pages = "145--153" } @book{hw-dt-48 -, author = "W. Hurewitcz and H. Wallman" -, title = "Dimension Theory" -, publisher = "Princeton University Press" -, year = 1948 -, update = "98.03 bibrelex" +, author = "W. Hurewitcz and H. Wallman" +, title = "Dimension Theory" +, publisher = "Princeton University Press" +, year = 1948 +, update = "98.03 bibrelex" } @inproceedings{h-ltw-93 -, author = "F. Hurtado" -, title = "Looking through a window" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "234--239" -, cites = "bhot-oaa-93, h-pgv-93, t-stc-88, t-wpop-89, abdeghz-umpca-93, abdeghz-ump2, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "F. Hurtado" +, title = "Looking through a window" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "234--239" +, cites = "bhot-oaa-93, h-pgv-93, t-stc-88, t-wpop-89, abdeghz-umpca-93, abdeghz-ump2, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @phdthesis{h-pgv-93 -, author = "F. Hurtado" -, title = "Problemas geom{\'e}tricos de visibilidad" -, school = "Univ. Polit{\'e}cnica de Catalunya" -, month = jan -, year = 1993 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "F. Hurtado" +, title = "Problemas geom{\'e}tricos de visibilidad" +, school = "Univ. Polit{\'e}cnica de Catalunya" +, month = jan +, year = 1993 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @inproceedings{hlm-osrap-01 -, author = "Ferran Hurtado and Giuseppe Liotta and Henk Meijer" -, title = "Optimal, Suboptimal, and Robust Algorithms for Proximity Graphs" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "117--120" -, update = "01.04 icking" +, author = "Ferran Hurtado and Giuseppe Liotta and Henk Meijer" +, title = "Optimal, Suboptimal, and Robust Algorithms for Proximity Graphs" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "117--120" +, update = "01.04 icking" } @inproceedings{hmrs-tpslp-99 -, author = "Ferran Hurtado and Merc{\`e} Mora and Pedro A. Ramos and Carlos Seara" -, title = "Two Problems on Separability with Lines and Polygonals" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "33--35" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Ferran Hurtado and Merc{\`e} Mora and Pedro A. Ramos and Carlos Seara" +, title = "Two Problems on Separability with Lines and Polygonals" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "33--35" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{hn-ctacp-97 -, author = "F. Hurtado and M. Noy" -, title = "Counting triangulations of almost-convex polygons" -, journal = "Ars Combin." -, volume = 45 -, year = 1997 -, pages = "169--179" -, update = "99.11 smid" +, author = "F. Hurtado and M. Noy" +, title = "Counting triangulations of almost-convex polygons" +, journal = "Ars Combin." +, volume = 45 +, year = 1997 +, pages = "169--179" +, update = "99.11 smid" } @article{hn-etcn-96 -, author = "F. Hurtado and M. Noy" -, title = "Ears of triangulations and {Catalan} numbers" -, journal = "Discrete Math." -, volume = 149 -, year = 1996 -, pages = "319--324" -, update = "99.11 smid" +, author = "F. Hurtado and M. Noy" +, title = "Ears of triangulations and {Catalan} numbers" +, journal = "Discrete Math." +, volume = 149 +, year = 1996 +, pages = "319--324" +, update = "99.11 smid" } @article{hn-gtcpt-99 -, author = "F. Hurtado and M. Noy" -, title = "Graph of triangulations of a convex polygon and tree of triangulations" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "179--188" -, update = "99.11 smid" +, author = "F. Hurtado and M. Noy" +, title = "Graph of triangulations of a convex polygon and tree of triangulations" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "179--188" +, update = "99.11 smid" } @techreport{hn-gtcp-94 -, author = "F. Hurtado and M. Noy" -, title = "The Graph of Triangulations of a Convex Polygon" -, number = "MA2-IR-94-13" -, institution = "Universitat Polit{\`e}cnica de Catalunya, Spain" -, year = 1994 -, precedes = "hn-gtcp-95" -, update = "00.11 smid, 00.07 icking, 97.11 bibrelex, 97.03 devillers, 93.09 held" +, author = "F. Hurtado and M. Noy" +, title = "The Graph of Triangulations of a Convex Polygon" +, number = "MA2-IR-94-13" +, institution = "Universitat Polit{\`e}cnica de Catalunya, Spain" +, year = 1994 +, precedes = "hn-gtcp-95" +, update = "00.11 smid, 00.07 icking, 97.11 bibrelex, 97.03 devillers, 93.09 held" } @inproceedings{hn-gtcp-95 -, author = "F. Hurtado and M. Noy" -, title = "The Graph of Triangulations of a Convex Polygon" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "11--12" -, succeeds = "hn-gtcp-94" -, precedes = "hn-gtcp-96" -, update = "00.11 smid, 00.07 icking, 00.03 bibrelex" +, author = "F. Hurtado and M. Noy" +, title = "The Graph of Triangulations of a Convex Polygon" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "11--12" +, succeeds = "hn-gtcp-94" +, precedes = "hn-gtcp-96" +, update = "00.11 smid, 00.07 icking, 00.03 bibrelex" } @inproceedings{hn-gtcp-96 -, author = "F. Hurtado and M. Noy" -, title = "The Graph of Triangulations of a Convex Polygon" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C7--C8" -, succeeds = "hn-gtcp-95" -, cites = "f-nddf-87, hn-gtcp-94, hnu-fet-96, kt-rduf-??, l-atng-89, l-rgbth-88, lrr-rgbth-93, stt-rdthg-86, ZZZ" -, update = "00.11 smid, 00.07 icking, 97.11 bibrelex, 96.05 efrat" +, author = "F. Hurtado and M. Noy" +, title = "The Graph of Triangulations of a Convex Polygon" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C7--C8" +, succeeds = "hn-gtcp-95" +, cites = "f-nddf-87, hn-gtcp-94, hnu-fet-96, kt-rduf-??, l-atng-89, l-rgbth-88, lrr-rgbth-93, stt-rdthg-86, ZZZ" +, update = "00.11 smid, 00.07 icking, 97.11 bibrelex, 96.05 efrat" } @techreport{hn-tvgrv-93t -, author = "F. Hurtado and M. Noy" -, title = "Triangulations, Visibility Graph and Reflex Vertices of a Simple Polygon" -, number = "MA2-IR-93-2" -, institution = "Dept. Applied Mathematics, U. Polit\`ecnica de Catalunya, Spain" -, month = feb -, year = 1993 -, precedes = "hn-tvgrv-96" -, update = "97.11 icking, 97.03 devillers, 93.09 held" +, author = "F. Hurtado and M. Noy" +, title = "Triangulations, Visibility Graph and Reflex Vertices of a Simple Polygon" +, number = "MA2-IR-93-2" +, institution = "Dept. Applied Mathematics, U. Polit\`ecnica de Catalunya, Spain" +, month = feb +, year = 1993 +, precedes = "hn-tvgrv-96" +, update = "97.11 icking, 97.03 devillers, 93.09 held" } @inproceedings{hn-tvgrv-93i -, author = "Ferran Hurtado and M. Noy" -, title = "Triangulations, Visibility Graph and Reflex Vertices of a Simple polygon" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "36--39" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Ferran Hurtado and M. Noy" +, title = "Triangulations, Visibility Graph and Reflex Vertices of a Simple polygon" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "36--39" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{hn-tvgrv-96 -, author = "F. Hurtado and M. Noy" -, title = "Triangulations, Visibility Graph and Reflex Vertices of a Simple Polygon" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "355--369" -, succeeds = "hn-tvgrv-93t, hn-tvgrv-93i" -, update = "98.03 bibrelex, 97.03 devillers" +, author = "F. Hurtado and M. Noy" +, title = "Triangulations, Visibility Graph and Reflex Vertices of a Simple Polygon" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "355--369" +, succeeds = "hn-tvgrv-93t, hn-tvgrv-93i" +, update = "98.03 bibrelex, 97.03 devillers" } @inproceedings{hnrs-sopws-98 -, author = "Ferran Hurtado and Marc Noy and Pedro A. Ramos and Carlos Seara" -, title = "Separating Objects in the Plane with Wedges and Strips" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "97--98" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Ferran Hurtado and Marc Noy and Pedro A. Ramos and Carlos Seara" +, title = "Separating Objects in the Plane with Wedges and Strips" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "97--98" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{hnu-fet-96 -, author = "F. Hurtado and M. Noy and J. Urrutia" -, title = "Flipping Edges in Triangulations" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "214--223" -, cites = "ahms-htfr-94, b-ras-77, be-mgot-92i, bs-plibp-94, ff-mrnti-91, f-vddt-92, h-ncmmt-90, hn-gtcp-94, hn-tvgrv-96, h-femgm-88, kgv-osa-83, la-satp-87, l-scsi-77, lrr-rgbth-93, ls-sdiuc-94, l-rgbth-88, obs-stcav-92, qs-csfdd-90, s-jttm-87, ss-gbfam-88, s-tc-93, sr-sbuss-95, sntm-amgus-92, stt-rdthg-88, t-nrcgr-86, w-cqsis-92, wp-sst-84, y-cdcrc-75, zt-fem-89, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "F. Hurtado and M. Noy and J. Urrutia" +, title = "Flipping Edges in Triangulations" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "214--223" +, cites = "ahms-htfr-94, b-ras-77, be-mgot-92i, bs-plibp-94, ff-mrnti-91, f-vddt-92, h-ncmmt-90, hn-gtcp-94, hn-tvgrv-96, h-femgm-88, kgv-osa-83, la-satp-87, l-scsi-77, lrr-rgbth-93, ls-sdiuc-94, l-rgbth-88, obs-stcav-92, qs-csfdd-90, s-jttm-87, ss-gbfam-88, s-tc-93, sr-sbuss-95, sntm-amgus-92, stt-rdthg-88, t-nrcgr-86, w-cqsis-92, wp-sst-84, y-cdcrc-75, zt-fem-89, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{hnu-fet-99 -, author = "F. Hurtado and M. Noy and J. Urrutia" -, title = "Flipping Edges in Triangulations" -, journal = "Discrete Comput. Geom." -, volume = 22 -, number = 3 -, year = 1999 -, pages = "333--346" -, update = "99.11 held" +, author = "F. Hurtado and M. Noy and J. Urrutia" +, title = "Flipping Edges in Triangulations" +, journal = "Discrete Comput. Geom." +, volume = 22 +, number = 3 +, year = 1999 +, pages = "333--346" +, update = "99.11 held" } @proceedings{ht-ewcg-98 -, title = "Abstracts 14th European Workshop Comput. Geom." -, editor = "Ferran Hurtado and Joan Trias" -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, update = "00.03 bibrelex" +, title = "Abstracts 14th European Workshop Comput. Geom." +, editor = "Ferran Hurtado and Joan Trias" +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, update = "00.03 bibrelex" } @inproceedings{hnu-fetpp-96 -, author = "Ferran Hurtatdo and Marc Noy and Jorge Urrutia" -, title = "Flipping edges in Triangulations of Polygons and Point Sets" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "19--20" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Ferran Hurtatdo and Marc Noy and Jorge Urrutia" +, title = "Flipping edges in Triangulations of Polygons and Point Sets" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "19--20" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{hsw-sclp-75 -, author = "A. Hurter and M. Schaeffer and R. Wendell" -, title = "Solutions of Constrained Location Problems" -, journal = "Manage. Sci." -, volume = 22 -, year = 1975 -, pages = "51--56" -, update = "97.03 rote, 93.09 milone+mitchell" +, author = "A. Hurter and M. Schaeffer and R. Wendell" +, title = "Solutions of Constrained Location Problems" +, journal = "Manage. Sci." +, volume = 22 +, year = 1975 +, pages = "51--56" +, update = "97.03 rote, 93.09 milone+mitchell" } @inproceedings{hklmnrs-pnm-96 -, author = "D. Hutchinson and L. K{\"u}ttner and M. Lanthier and A. Maheshwari and D. Nussbaum and D. Roytenberg and J.-R. Sack" -, title = "Parallel Neighbourhood Modeling" -, booktitle = "Proc. 8th ACM Sympos. Parallel Algorithms Architect." -, nickname = "SPAA '96" -, site = "Padua, Italy" -, year = 1996 -, pages = "204--207" -, update = "98.07 bibrelex, 97.11 sack" +, author = "D. Hutchinson and L. K{\"u}ttner and M. Lanthier and A. Maheshwari and D. Nussbaum and D. Roytenberg and J.-R. Sack" +, title = "Parallel Neighbourhood Modeling" +, booktitle = "Proc. 8th ACM Sympos. Parallel Algorithms Architect." +, nickname = "SPAA '96" +, site = "Padua, Italy" +, year = 1996 +, pages = "204--207" +, update = "98.07 bibrelex, 97.11 sack" } @inproceedings{hlmnrs-pnm-96 -, author = "D. Hutchinson and M. Lanthier and A. Maheshwari and D. Nussbaum and D. Roytenberg and J.-R. Sack" -, title = "Parallel neighbourhood modeling" -, booktitle = "Proc. 4th ACM Workshop Adv. Geogr. Inform. Syst." -, year = 1996 -, pages = "25--34" -, update = "98.07 bibrelex" +, author = "D. Hutchinson and M. Lanthier and A. Maheshwari and D. Nussbaum and D. Roytenberg and J.-R. Sack" +, title = "Parallel neighbourhood modeling" +, booktitle = "Proc. 4th ACM Workshop Adv. Geogr. Inform. Syst." +, year = 1996 +, pages = "25--34" +, update = "98.07 bibrelex" } @inproceedings{hlmnrs-pnm-97 -, author = "D. Hutchinson and M. Lanthier and A. Maheshwari and D. Nussbaum and D. Roytenberg and J.-R. Sack" -, title = "Parallel Neighbourhood Modeling" -, booktitle = "Proc. ACM GIS" -, year = 1997 -, pages = "26--34" -, update = "97.11 sack" -, annote = "full conference version" +, author = "D. Hutchinson and M. Lanthier and A. Maheshwari and D. Nussbaum and D. Roytenberg and J.-R. Sack" +, title = "Parallel Neighbourhood Modeling" +, booktitle = "Proc. ACM GIS" +, year = 1997 +, pages = "26--34" +, update = "97.11 sack" +, annote = "full conference version" } @inproceedings{hmsv-eeibt-97 -, author = "D. Hutchinson and A. Maheshwari and J.-R. Sack and R. Velicescu" -, title = "Early Experiences in Implementing the Buffer Tree" -, booktitle = "Proc. Workshop on Algorithm Engineering" -, nickname = "WAE '97" -, site = "Venice" -, month = sep -, year = 1997 -, pages = "92--103" -, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap10.ps.gz" -, update = "00.11 smid, 00.07 icking, 98.07 bibrelex+smid+vahrenhold+vismara, 98.03 mitchell" +, author = "D. Hutchinson and A. Maheshwari and J.-R. Sack and R. Velicescu" +, title = "Early Experiences in Implementing the Buffer Tree" +, booktitle = "Proc. Workshop on Algorithm Engineering" +, nickname = "WAE '97" +, site = "Venice" +, month = sep +, year = 1997 +, pages = "92--103" +, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap10.ps.gz" +, update = "00.11 smid, 00.07 icking, 98.07 bibrelex+smid+vahrenhold+vismara, 98.03 mitchell" } @inproceedings{hmz-emdss-99 -, author = "David Hutchinson and Anil Maheshwari and Norbert Zeh" -, title = "An External Memory Data Structure for Shortest Path Queries" -, booktitle = "Proc. 5th Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '99" -, site = "Tokyo, Japan" -, series = "Lecture Notes Comput. Sci." -, volume = 1627 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "51--60" -, update = "01.04 smid, 99.11 bibrelex" +, author = "David Hutchinson and Anil Maheshwari and Norbert Zeh" +, title = "An External Memory Data Structure for Shortest Path Queries" +, booktitle = "Proc. 5th Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '99" +, site = "Tokyo, Japan" +, series = "Lecture Notes Comput. Sci." +, volume = 1627 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "51--60" +, update = "01.04 smid, 99.11 bibrelex" } @inproceedings{hsv-rsttg-96 -, author = "J. P. Hutchinson and T. Shermer and A. Vince" -, title = "On representations of some thickness-two graphs" -, editor = "F. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "324--332" -, keywords = "visibility graphs" -, update = "99.07 vismara, 98.11 bibrelex, 97.11 orourke, 96.09 orourke" +, author = "J. P. Hutchinson and T. Shermer and A. Vince" +, title = "On representations of some thickness-two graphs" +, editor = "F. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "324--332" +, keywords = "visibility graphs" +, update = "99.07 vismara, 98.11 bibrelex, 97.11 orourke, 96.09 orourke" } @article{hsv-rsttg-99 -, author = "J. P. Hutchinson and T. Shermer and A. Vince" -, title = "On representations of some thickness-two graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "161--171" -, update = "99.11 smid" +, author = "J. P. Hutchinson and T. Shermer and A. Vince" +, title = "On representations of some thickness-two graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "161--171" +, update = "99.11 smid" } @inproceedings{hsw-gopml-88 -, author = "A. Hutflesz and H.-W. Six and P. Widmayer" -, title = "Globally order preserving multidimensional linear hashing" -, booktitle = "Proc. 4th Intl. Conf. on Data Engineering" -, year = 1988 -, pages = "572--579" -, update = "97.07 agarwal" +, author = "A. Hutflesz and H.-W. Six and P. Widmayer" +, title = "Globally order preserving multidimensional linear hashing" +, booktitle = "Proc. 4th Intl. Conf. on Data Engineering" +, year = 1988 +, pages = "572--579" +, update = "97.07 agarwal" } @inproceedings{hsw-trfea-90 -, author = "A. Hutflesz and H.-W. Six and P. Widmayer" -, title = "The {R}-file: {A}n efficient access structure for proximity queries" -, booktitle = "Proc. 6th IEEE Internat. Conf. Data Eng." -, year = 1990 -, pages = "372--379" -, update = "97.07 agarwal" +, author = "A. Hutflesz and H.-W. Six and P. Widmayer" +, title = "The {R}-file: {A}n efficient access structure for proximity queries" +, booktitle = "Proc. 6th IEEE Internat. Conf. Data Eng." +, year = 1990 +, pages = "372--379" +, update = "97.07 agarwal" } @inproceedings{hsw-tgfpe-88 -, author = "A. Hutflesz and H.-W. Six and P. Widmayer" -, title = "Twin grid files: a performance evaluation" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "15--24" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "A. Hutflesz and H.-W. Six and P. Widmayer" +, title = "Twin grid files: a performance evaluation" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "15--24" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @inproceedings{hsw-tgfso-88 -, author = "A. Hutflesz and H.-W. Six and P. Widmayer" -, title = "Twin grid files: {S}pace optimizing access schemes" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1988 -, pages = "183--190" -, update = "97.07 agarwal" +, author = "A. Hutflesz and H.-W. Six and P. Widmayer" +, title = "Twin grid files: {S}pace optimizing access schemes" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1988 +, pages = "183--190" +, update = "97.07 agarwal" } @techreport{hr-mrtci-92 -, author = "D. P. Huttenlocher" -, title = "A multi-resolution technique for comparing images using the {Hausdorff} distance" -, type = "Technical {Report}" -, number = "92-1321" -, institution = "Cornell Univ." -, address = "Ithaca, NY" -, year = 1992 -, update = "98.07 bibrelex" +, author = "D. P. Huttenlocher" +, title = "A multi-resolution technique for comparing images using the {Hausdorff} distance" +, type = "Technical {Report}" +, number = "92-1321" +, institution = "Cornell Univ." +, address = "Ithaca, NY" +, year = 1992 +, update = "98.07 bibrelex" } @phdthesis{h-tdrso-88 -, author = "D. P. Huttenlocher" -, title = "Three-Dimensional Recognition of Solid Objects from a Two-Dimensional Image" -, type = "Ph.{D}. Thesis" -, school = "Electrical Engineering and Computer Science, Massachusetts Institute of Technology" -, year = 1988 -, note = "Report TR-1045" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "D. P. Huttenlocher" +, title = "Three-Dimensional Recognition of Solid Objects from a Two-Dimensional Image" +, type = "Ph.{D}. Thesis" +, school = "Electrical Engineering and Computer Science, Massachusetts Institute of Technology" +, year = 1988 +, note = "Report TR-1045" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @inproceedings{hk-cmhdp-90 -, author = "D. P. Huttenlocher and K. Kedem" -, title = "Computing the minimum {Hausdorff} distance for point sets under translation" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "340--349" -, cites = "achkm-ecmcp-90, amww-cssgo-88, a-ltahd-83, cd-vdbcd-85, egs-ueplf-87, hks-echdp-, h-rv-86, k-emasg-39, os-mvm-90, ls-pptmc-87, m-mdscg-84, r-ra-68, s-cidg-79, ZZZ" -, update = "97.11 bibrelex" +, author = "D. P. Huttenlocher and K. Kedem" +, title = "Computing the minimum {Hausdorff} distance for point sets under translation" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "340--349" +, cites = "achkm-ecmcp-90, amww-cssgo-88, a-ltahd-83, cd-vdbcd-85, egs-ueplf-87, hks-echdp-, h-rv-86, k-emasg-39, os-mvm-90, ls-pptmc-87, m-mdscg-84, r-ra-68, s-cidg-79, ZZZ" +, update = "97.11 bibrelex" } @techreport{hkk-dvdmh-92t -, author = "D. P. Huttenlocher and K. Kedem and J. M. Kleinberg" -, title = "On dynamic {Voronoi} diagrams and the minimum {Hausdorff} distance for point sets under {Euclidean} motion in the plane" -, type = "Technical {Report}" -, number = "TR~92-1271" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = mar -, year = 1992 -, precedes = "hkk-dvdmh-92i" +, author = "D. P. Huttenlocher and K. Kedem and J. M. Kleinberg" +, title = "On dynamic {Voronoi} diagrams and the minimum {Hausdorff} distance for point sets under {Euclidean} motion in the plane" +, type = "Technical {Report}" +, number = "TR~92-1271" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = mar +, year = 1992 +, precedes = "hkk-dvdmh-92i" } @inproceedings{hkk-dvdmh-92i -, author = "D. P. Huttenlocher and K. Kedem and J. M. Kleinberg" -, title = "On dynamic {Voronoi} diagrams and the minimum {Hausdorff} distance for point sets under {Euclidean} motion in the plane" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "110--119" -, succeeds = "hkk-dvdmh-92t" -, cites = "aiit-mlcop-90, ass-sulbl-89, ast-apsgo-92, abb-amps-91, achkm-ecmcp-90, fl-vdmpp-91, gmr-vdmpp-92, gs-pmgsc-85, hs-ndssg-86, hk-cmhdp-90, hks-uevsi-91, m-prsd-87, ZZZ" -, update = "99.11 bibrelex, 98.11 bibrelex, 97.11 bibrelex" +, author = "D. P. Huttenlocher and K. Kedem and J. M. Kleinberg" +, title = "On dynamic {Voronoi} diagrams and the minimum {Hausdorff} distance for point sets under {Euclidean} motion in the plane" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "110--119" +, succeeds = "hkk-dvdmh-92t" +, cites = "aiit-mlcop-90, ass-sulbl-89, ast-apsgo-92, abb-amps-91, achkm-ecmcp-90, fl-vdmpp-91, gmr-vdmpp-92, gs-pmgsc-85, hs-ndssg-86, hk-cmhdp-90, hks-uevsi-91, m-prsd-87, ZZZ" +, update = "99.11 bibrelex, 98.11 bibrelex, 97.11 bibrelex" } @article{hkk-vdrms-92 -, author = "D. P. Huttenlocher and K. Kedem and J. M. Kleinberg" -, title = "{Voronoi} diagrams of rigidly moving sets of points" -, journal = "Inform. Process. Lett." -, volume = 43 -, year = 1992 -, pages = "217--223" -, update = "01.04 icking, 95.09 agarwal" +, author = "D. P. Huttenlocher and K. Kedem and J. M. Kleinberg" +, title = "{Voronoi} diagrams of rigidly moving sets of points" +, journal = "Inform. Process. Lett." +, volume = 43 +, year = 1992 +, pages = "217--223" +, update = "01.04 icking, 95.09 agarwal" } @unpublished{hks-echdp- -, author = "D. P. Huttenlocher and K. Kedem and Micha Sharir" -, title = "Efficiently Computing the {Hausdorff} Distance for Point Sets Under Translation" -, note = "In preparation" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "D. P. Huttenlocher and K. Kedem and Micha Sharir" +, title = "Efficiently Computing the {Hausdorff} Distance for Point Sets Under Translation" +, note = "In preparation" +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{hks-uevsi-91t -, author = "D. P. Huttenlocher and K. Kedem and Micha Sharir" -, title = "The upper envelope of {Voronoi} surfaces and its applications" -, type = "Technical {Report}" -, number = "200/91" -, institution = "Dept. Comput. Sci., Tel-Aviv University" -, address = "Tel-Aviv, Israel" -, month = feb -, year = 1991 -, precedes = "hks-uevsi-91" -, update = "01.04 icking, 98.03 mitchell, 97.11 bibrelex" +, author = "D. P. Huttenlocher and K. Kedem and Micha Sharir" +, title = "The upper envelope of {Voronoi} surfaces and its applications" +, type = "Technical {Report}" +, number = "200/91" +, institution = "Dept. Comput. Sci., Tel-Aviv University" +, address = "Tel-Aviv, Israel" +, month = feb +, year = 1991 +, precedes = "hks-uevsi-91" +, update = "01.04 icking, 98.03 mitchell, 97.11 bibrelex" } @inproceedings{hks-uevsi-91 -, author = "D. P. Huttenlocher and K. Kedem and Micha Sharir" -, title = "The upper envelope of {Voronoi} surfaces and its applications" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "194--203" -, keywords = "Voronoi diagrams, upper envelopes, matching" -, succeeds = "hks-uevsi-91t" -, precedes = "hks-uevsi-93" -, cites = "abb-mrps-, ass-sulbl-89, a-vdsfg-90, cd-vdbcd-85, e-acg-87, egppss-acptc-88, egs-ueplf-89, egs-ccmfa-90, es-vda-86, gss-gmppt-89, h-fuenl-89, h-rv-86, hk-cmhdp-90, hks-uevsi-91t, hs-ndssg-86, ls-ippvd-87, ps-ueplf-89, ps-cgi-85, ss-pmp2g-83, y-oavds-87, ZZZ" -, update = "01.04 icking, 98.11 bibrelex, 98.03 mitchell, 97.11 bibrelex" +, author = "D. P. Huttenlocher and K. Kedem and Micha Sharir" +, title = "The upper envelope of {Voronoi} surfaces and its applications" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "194--203" +, keywords = "Voronoi diagrams, upper envelopes, matching" +, succeeds = "hks-uevsi-91t" +, precedes = "hks-uevsi-93" +, cites = "abb-mrps-, ass-sulbl-89, a-vdsfg-90, cd-vdbcd-85, e-acg-87, egppss-acptc-88, egs-ueplf-89, egs-ccmfa-90, es-vda-86, gss-gmppt-89, h-fuenl-89, h-rv-86, hk-cmhdp-90, hks-uevsi-91t, hs-ndssg-86, ls-ippvd-87, ps-ueplf-89, ps-cgi-85, ss-pmp2g-83, y-oavds-87, ZZZ" +, update = "01.04 icking, 98.11 bibrelex, 98.03 mitchell, 97.11 bibrelex" } @article{hks-uevsi-93 -, author = "D. P. Huttenlocher and K. Kedem and Micha Sharir" -, title = "The upper envelope of {Voronoi} surfaces and its applications" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "267--291" -, succeeds = "hks-uevsi-91" -, update = "01.04 icking, 98.03 mitchell, 95.09 agarwal, 94.05 sharir" +, author = "D. P. Huttenlocher and K. Kedem and Micha Sharir" +, title = "The upper envelope of {Voronoi} surfaces and its applications" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "267--291" +, succeeds = "hks-uevsi-91" +, update = "01.04 icking, 98.03 mitchell, 95.09 agarwal, 94.05 sharir" } @article{hkr-ciuhd-93 -, author = "D. P. Huttenlocher and G. A. Klanderman and W. J. Rucklidge" -, title = "Comparing Images Using the {Hausdorff} Distance" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 15 -, year = 1993 -, pages = "850--863" -, update = "98.11 bibrelex, 98.07 agarwal, 97.11 bibrelex" +, author = "D. P. Huttenlocher and G. A. Klanderman and W. J. Rucklidge" +, title = "Comparing Images Using the {Hausdorff} Distance" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 15 +, year = 1993 +, pages = "850--863" +, update = "98.11 bibrelex, 98.07 agarwal, 97.11 bibrelex" } @inproceedings{hk-cpsup-94 -, author = "D. P. Huttenlocher and J. M. Kleinberg" -, title = "Comparing point sets under projection" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "1--7" -, update = "96.09 agarwal" +, author = "D. P. Huttenlocher and J. M. Kleinberg" +, title = "Comparing point sets under projection" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "1--7" +, update = "96.09 agarwal" } @inproceedings{hu-orua-87 -, author = "D. P. Huttenlocher and S. Ullman" -, title = "Object recognition using alignment" -, booktitle = "Proc. 1st Internat. Conf. Comput. Vision" -, year = 1987 -, pages = "102--111" -, update = "97.11 bibrelex" +, author = "D. P. Huttenlocher and S. Ullman" +, title = "Object recognition using alignment" +, booktitle = "Proc. 1st Internat. Conf. Comput. Vision" +, year = 1987 +, pages = "102--111" +, update = "97.11 bibrelex" } @article{hu-rsoa-90 -, author = "D. P. Huttenlocher and S. Ullman" -, title = "Recognizing solid objects by alignment" -, journal = "Internat. J. Comput. Vision" -, volume = 5 -, number = 2 -, year = 1990 -, pages = "255--274" -, update = "97.11 bibrelex" +, author = "D. P. Huttenlocher and S. Ullman" +, title = "Recognizing solid objects by alignment" +, journal = "Internat. J. Comput. Vision" +, volume = 5 +, number = 2 +, year = 1990 +, pages = "255--274" +, update = "97.11 bibrelex" } @techreport{hu-rsoai-89 -, author = "D. P. Huttenlocher and S. Ullman" -, title = "Recognizing solid objects by alignment with an image" -, type = "Technical {Report}" -, number = "TR~89-978" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = mar -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "D. P. Huttenlocher and S. Ullman" +, title = "Recognizing solid objects by alignment with an image" +, type = "Technical {Report}" +, number = "TR~89-978" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = mar +, year = 1989 +, update = "93.09 milone+mitchell" } @techreport{hw-fcegi-90 -, author = "D. P. Huttenlocher and P. Wayener" -, title = "Finding convex edge groupings in an image" -, type = "Technical {Report}" -, number = "TR~90-1116" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = apr -, year = 1990 -, update = "95.09 agarwal, 93.09 milone+mitchell" +, author = "D. P. Huttenlocher and P. Wayener" +, title = "Finding convex edge groupings in an image" +, type = "Technical {Report}" +, number = "TR~90-1116" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = apr +, year = 1990 +, update = "95.09 agarwal, 93.09 milone+mitchell" } @inproceedings{hl-updss-91 -, author = "M. D. Hutton and A. Lubiw" -, title = "Upward Planar Drawing of Single Source Acyclic Digraphs" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "203--211" -, keywords = "graph drawing, planar, upward" -, precedes = "hl-updss-96" -, update = "97.03 tamassia, 93.09 tamassia" +, author = "M. D. Hutton and A. Lubiw" +, title = "Upward Planar Drawing of Single Source Acyclic Digraphs" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "203--211" +, keywords = "graph drawing, planar, upward" +, precedes = "hl-updss-96" +, update = "97.03 tamassia, 93.09 tamassia" } @article{hl-updss-96 -, author = "M. D. Hutton and A. Lubiw" -, title = "Upward Planar Drawing of Single-Source Acyclic Digraphs" -, journal = "SIAM J. Comput." -, volume = 25 -, number = 2 -, year = 1996 -, pages = "291--311" -, keywords = "graph drawing, planar, upward" -, succeeds = "hl-updss-91" -, update = "97.03 tamassia" +, author = "M. D. Hutton and A. Lubiw" +, title = "Upward Planar Drawing of Single-Source Acyclic Digraphs" +, journal = "SIAM J. Comput." +, volume = 25 +, number = 2 +, year = 1996 +, pages = "291--311" +, keywords = "graph drawing, planar, upward" +, succeeds = "hl-updss-91" +, update = "97.03 tamassia" } @article{h-eslp-90 -, author = "M. N. Huxley" -, title = "Exponential sums and lattice points" -, journal = "Proc. London Math. Soc." -, volume = 60 -, year = 1990 -, pages = "471--502" -, update = "97.11 bibrelex" +, author = "M. N. Huxley" +, title = "Exponential sums and lattice points" +, journal = "Proc. London Math. Soc." +, volume = 60 +, year = 1990 +, pages = "471--502" +, update = "97.11 bibrelex" } @inproceedings{hz-scthc-95 -, author = "Cho Hwan-Gue and Alexander Zelikovsky" -, title = "Spanning Closed Trail and {Hamiltonian} Cycle in Grid Graphs" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "342--351" -, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "Cho Hwan-Gue and Alexander Zelikovsky" +, title = "Spanning Closed Trail and {Hamiltonian} Cycle in Grid Graphs" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "342--351" +, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @article{hr-stp-92 -, author = "F. D. Hwang and D. S. Richards" -, title = "Steiner tree problems" -, journal = "Networks" -, volume = 22 -, year = 1992 -, pages = "55--89" -, update = "98.11 bibrelex" +, author = "F. D. Hwang and D. S. Richards" +, title = "Steiner tree problems" +, journal = "Networks" +, volume = 22 +, year = 1992 +, pages = "55--89" +, update = "98.11 bibrelex" } % also claimed pages = "86--91" @article{h-oarms-79 -, author = "F. K. Hwang" -, title = "An {$O(n \log n)$} algorithm for rectilinear minimal spanning tree" -, journal = "J. ACM" -, volume = 26 -, year = 1979 -, pages = "177--182" +, author = "F. K. Hwang" +, title = "An {$O(n \log n)$} algorithm for rectilinear minimal spanning tree" +, journal = "J. ACM" +, volume = 26 +, year = 1979 +, pages = "177--182" } @article{h-oasrs-79 -, author = "F. K. Hwang" -, title = "An {$O(n \log n)$} algorithm for suboptimal rectilinear {Steiner} trees" -, journal = "IEEE Trans. Circuits Syst." -, volume = "CAS-26" -, number = 1 -, year = 1979 -, pages = "75--77" -, update = "98.07 bibrelex" +, author = "F. K. Hwang" +, title = "An {$O(n \log n)$} algorithm for suboptimal rectilinear {Steiner} trees" +, journal = "IEEE Trans. Circuits Syst." +, volume = "CAS-26" +, number = 1 +, year = 1979 +, pages = "75--77" +, update = "98.07 bibrelex" } @article{h-smtrd-76 -, author = "F. K. Hwang" -, title = "On {Steiner} minimal trees with rectilinear distance" -, journal = "SIAM J. Appl. Math." -, volume = 30 -, number = 1 -, year = 1976 -, pages = "104--114" +, author = "F. K. Hwang" +, title = "On {Steiner} minimal trees with rectilinear distance" +, journal = "SIAM J. Appl. Math." +, volume = 30 +, number = 1 +, year = 1976 +, pages = "104--114" } @article{h-rsp-78 -, author = "F. K. Hwang" -, title = "The rectilinear {Steiner} problem" -, journal = "J. Design Autom. Fault-Tolerant Comput." -, volume = 2 -, year = 1978 -, pages = "303--310" +, author = "F. K. Hwang" +, title = "The rectilinear {Steiner} problem" +, journal = "J. Design Autom. Fault-Tolerant Comput." +, volume = 2 +, year = 1978 +, pages = "303--310" } @book{hrw-stp-92 -, author = "F. K. Hwang and D. S. Richards and P. Winter" -, title = "The {Steiner} Tree Problem" -, publisher = "Elsevier Science" -, address = "Amsterdam" -, year = 1992 -, update = "97.07 smid" +, author = "F. K. Hwang and D. S. Richards and P. Winter" +, title = "The {Steiner} Tree Problem" +, publisher = "Elsevier Science" +, address = "Amsterdam" +, year = 1992 +, update = "97.07 smid" } @article{hstd-dtesm-88 -, author = "F. K. Hwang and G. D. Song and G. Y. Ting and D. Z. Du" -, title = "A decomposition theorem on {Euclidean} {Steiner} minimal trees" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "367--382" +, author = "F. K. Hwang and G. D. Song and G. Y. Ting and D. Z. Du" +, title = "A decomposition theorem on {Euclidean} {Steiner} minimal trees" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "367--382" } @article{hy-cbprr-90 -, author = "F. K. Hwang and Y. C. Yao" -, title = "Comments on {Bern}'s probabilistic results on rectilinear {Steiner} trees" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "591--598" +, author = "F. K. Hwang and Y. C. Yao" +, title = "Comments on {Bern}'s probabilistic results on rectilinear {Steiner} trees" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "591--598" } @unpublished{hct-spdcg-90 -, author = "H. Hwang and R. Chang and H. Tu" -, title = "The separability problem in dynamic computational geometry" -, year = 1990 -, note = "Unpublished manuscript" -, update = "95.09 agarwal" +, author = "H. Hwang and R. Chang and H. Tu" +, title = "The separability problem in dynamic computational geometry" +, year = 1990 +, note = "Unpublished manuscript" +, update = "95.09 agarwal" } @inproceedings{hcl-gdcsa-89 -, author = "R. Z. Hwang and R. C. Chang and R. C. T. Lee" -, title = "The generalized divide-and-conquer strategy and its applications to some {Euclidean} {NP}-hard problems" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "17--24" -, keywords = "p-median, p-center, TSP" -, update = "95.09 mitchell" +, author = "R. Z. Hwang and R. C. Chang and R. C. T. Lee" +, title = "The generalized divide-and-conquer strategy and its applications to some {Euclidean} {NP}-hard problems" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "17--24" +, keywords = "p-median, p-center, TSP" +, update = "95.09 mitchell" } @article{hcl-sssss-93 -, author = "R. Z. Hwang and R. C. Chang and R. C. T. Lee" -, title = "The generalized searching over separators strategy to solve some {NP}-{H}ard problems in subexponential time" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "398--423" -, update = "96.05 agarwal" +, author = "R. Z. Hwang and R. C. Chang and R. C. T. Lee" +, title = "The generalized searching over separators strategy to solve some {NP}-{H}ard problems in subexponential time" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "398--423" +, update = "96.05 agarwal" } @article{hlc-sdase-93 -, author = "R. Z. Hwang and R. C. T. Lee and R. C. Chang" -, title = "The slab dividing approach to solve the {Euclidean} $p$-center problem" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "1--22" -, update = "96.05 agarwal" +, author = "R. Z. Hwang and R. C. T. Lee and R. C. Chang" +, title = "The slab dividing approach to solve the {Euclidean} $p$-center problem" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "1--22" +, update = "96.05 agarwal" } @inproceedings{hct-faspe-89 -, author = "Y.-H. Hwang and R.-C. Chang and H.-Y. Tu" -, title = "Finding all shortest path edge sequences on a convex polyhedron" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "251--266" +, author = "Y.-H. Hwang and R.-C. Chang and H.-Y. Tu" +, title = "Finding all shortest path edge sequences on a convex polyhedron" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "251--266" } @article{ha-gmps-92 -, author = "Y. K. Hwang and N. Ahuja" -, title = "Gross motion planning -- A survey" -, journal = "ACM Comput. Surv." -, volume = 24 -, number = 3 -, year = 1992 -, pages = "219--291" -, update = "98.07 orourke" +, author = "Y. K. Hwang and N. Ahuja" +, title = "Gross motion planning -- A survey" +, journal = "ACM Comput. Surv." +, volume = 24 +, number = 3 +, year = 1992 +, pages = "219--291" +, update = "98.07 orourke" } @article{hr-cobdt-76 -, author = "L. Hyafil and R. Rivest" -, title = "Constructing optimal binary decision trees is NP-Complete" -, journal = "Inform. Process. Lett." -, volume = 5 -, year = 1976 -, pages = "15--17" -, update = "96.09 agarwal" +, author = "L. Hyafil and R. Rivest" +, title = "Constructing optimal binary decision trees is NP-Complete" +, journal = "Inform. Process. Lett." +, volume = 5 +, year = 1976 +, pages = "15--17" +, update = "96.09 agarwal" } @inproceedings{he-tgest-85 -, author = "J. Hynd and P. Eades" -, title = "The Typed Graph Editing System: {TYGES}" -, booktitle = "Proc. 3rd Australasian Conf. on Computer Graphics" -, year = 1985 -, pages = "15--19" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Hynd and P. Eades" +, title = "The Typed Graph Editing System: {TYGES}" +, booktitle = "Proc. 3rd Australasian Conf. on Computer Graphics" +, year = 1985 +, pages = "15--19" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ik-olctc-83 -, author = "T. Ibaraki and N. Katoh" -, title = "On-Line Computation of Transitive Closure of Graphs" -, journal = "Inform. Process. Lett." -, volume = 16 -, year = 1983 -, pages = "95--97" -, update = "94.01 tamassia" +, author = "T. Ibaraki and N. Katoh" +, title = "On-Line Computation of Transitive Closure of Graphs" +, journal = "Inform. Process. Lett." +, volume = 16 +, year = 1983 +, pages = "95--97" +, update = "94.01 tamassia" } @article{ik-spc-75 -, author = "K. Ichida and T. Kiyono" -, title = "Segmentation of Plane Curves" -, journal = "Transactions of the Electronics and Communication Engineers of Japan" -, volume = "58-D" -, year = 1975 -, pages = "689--696" -, update = "97.11 bibrelex" +, author = "K. Ichida and T. Kiyono" +, title = "Segmentation of Plane Curves" +, journal = "Transactions of the Electronics and Communication Engineers of Japan" +, volume = "58-D" +, year = 1975 +, pages = "689--696" +, update = "97.11 bibrelex" } @inproceedings{i-kbl-89 -, author = "Christian Icking" -, title = "{K{\"u}rzeste} {Bewegung} von {Liniensegmenten}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "Christian Icking" +, title = "{K{\"u}rzeste} {Bewegung} von {Liniensegmenten}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @mastersthesis{i-baoer-85 -, author = "Christian Icking" -, title = "Le Balayage Appliqu{\'e} aux Op{\'e}rations Ensemblistes et au R{\'e}gionnement" -, type = "Diploma Thesis ({DEA})" -, school = "Department of Computer Science, Universit{\'e} Pierre et Marie Curie Paris~VI" -, address = "Paris, France" -, year = 1985 -, keywords = "master thesis" -, update = "00.03 bibrelex" +, author = "Christian Icking" +, title = "Le Balayage Appliqu{\'e} aux Op{\'e}rations Ensemblistes et au R{\'e}gionnement" +, type = "Diploma Thesis ({DEA})" +, school = "Department of Computer Science, Universit{\'e} Pierre et Marie Curie Paris~VI" +, address = "Paris, France" +, year = 1985 +, keywords = "master thesis" +, update = "00.03 bibrelex" } @phdthesis{i-mvsp-94 -, author = "Christian Icking" -, title = "Motion and Visibility in Simple Polygons" -, school = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, year = 1994 -, keywords = "doctoral thesis" -, update = "00.11 smid, 00.07 icking, 97.03 icking" +, author = "Christian Icking" +, title = "Motion and Visibility in Simple Polygons" +, school = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, year = 1994 +, keywords = "doctoral thesis" +, update = "00.11 smid, 00.07 icking, 97.03 icking" } @inproceedings{ikkl-euce-00 -, author = "Christian Icking and Thomas Kamphans and Rolf Klein and Elmar Langetepe" -, title = "Exploring an Unknown Cellular Environment" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "140--143" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ikkl-euce-00.pdf" -, cites = "afm-aalmm-97, a-ptase-96, dkp-hlue1-98, e-hpnrg-86, fw-ola-98, gkp-aspgt-95, hikk-pepns-98, ips-hpgg-82, m-gsaps-96, m-spn-97, n-wrlv-92, ul-hcsgg-97, ZZZ" -, update = "01.04 icking, 00.03 bibrelex" +, author = "Christian Icking and Thomas Kamphans and Rolf Klein and Elmar Langetepe" +, title = "Exploring an Unknown Cellular Environment" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "140--143" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ikkl-euce-00.pdf" +, cites = "afm-aalmm-97, a-ptase-96, dkp-hlue1-98, e-hpnrg-86, fw-ola-98, gkp-aspgt-95, hikk-pepns-98, ips-hpgg-82, m-gsaps-96, m-spn-97, n-wrlv-92, ul-hcsgg-97, ZZZ" +, update = "01.04 icking, 00.03 bibrelex" } @proceedings{ik-ewcg-93 -, title = "Abstracts 9th European Workshop on Computational Geometry" -, editor = "Christian Icking and Rolf Klein" -, nickname = "CG '93" -, site = "Hagen" -, series = "Informatik-Berichte" -, volume = 140 -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" +, title = "Abstracts 9th European Workshop on Computational Geometry" +, editor = "Christian Icking and Rolf Klein" +, nickname = "CG '93" +, site = "Hagen" +, series = "Informatik-Berichte" +, volume = 140 +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" } @techreport{ik-csas-95t -, author = "Christian Icking and Rolf Klein" -, title = "Competitive Strategies for Autonomous Systems" -, number = 175 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1995 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr175.pdf" -, precedes = "ik-csas-95" -, update = "98.11 bibrelex" +, author = "Christian Icking and Rolf Klein" +, title = "Competitive Strategies for Autonomous Systems" +, number = 175 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1995 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr175.pdf" +, precedes = "ik-csas-95" +, update = "98.11 bibrelex" } @incollection{ik-csas-95 -, author = "Christian Icking and Rolf Klein" -, title = "Competitive Strategies for Autonomous Systems" -, editor = "H. Bunke and T. Kanade and H. Noltemeier" -, booktitle = "Modelling and Planning for Sensor Based Intelligent Robot Systems" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "23--40" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr175.pdf" -, succeeds = "ik-csas-95t" -, cites = "bcr-sp-93, cg-opapp-92, di-csgs-94, dkp-hlue1-93, drw-lrmt-95, gj-cigtn-79, gs-oolaw-95, gmr-rlptd-92, ikl-sac-97, ikm-hlac-93, k-wusbd-92, k-lpmr-94, k-olssp-94, lp-oafkp-79, ls-ghtun-94, osh-kaoa-94, rksi-rnut-93, st-aelup-85, ZZZ" -, update = "00.03 bibrelex, 98.11 bibrelex, 97.03 icking" +, author = "Christian Icking and Rolf Klein" +, title = "Competitive Strategies for Autonomous Systems" +, editor = "H. Bunke and T. Kanade and H. Noltemeier" +, booktitle = "Modelling and Planning for Sensor Based Intelligent Robot Systems" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "23--40" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr175.pdf" +, succeeds = "ik-csas-95t" +, cites = "bcr-sp-93, cg-opapp-92, di-csgs-94, dkp-hlue1-93, drw-lrmt-95, gj-cigtn-79, gs-oolaw-95, gmr-rlptd-92, ikl-sac-97, ikm-hlac-93, k-wusbd-92, k-lpmr-94, k-olssp-94, lp-oafkp-79, ls-ghtun-94, osh-kaoa-94, rksi-rnut-93, st-aelup-85, ZZZ" +, update = "00.03 bibrelex, 98.11 bibrelex, 97.03 icking" } @inproceedings{ik-ppuu-92 -, author = "Christian Icking and Rolf Klein" -, title = "Path Planning Under Uncertainty" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = 5 -, update = "00.03 bibrelex" +, author = "Christian Icking and Rolf Klein" +, title = "Path Planning Under Uncertainty" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = 5 +, update = "00.03 bibrelex" } @inproceedings{ik-skpcs-95 -, author = "Christian Icking and Rolf Klein" -, title = "Searching for the Kernel of a Polygon: {A} Competitive Strategy" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "258--266" -, keywords = "competitive strategy, shortest paths, simple polygon" -, precedes = "ikl-skpcs-97" -, cites = "cg-opapp-92, di-csgs-94, dkp-hlue-91, dkp-hlue1-93, drw-lrmt-95, gs-oolaw-95, i-mvsp-94, ikm-hlac-93, k-wusbd-92, k-lpmr-94, k-olssp-94, lp-oafkp-79, ls-ghtun-94, r-cic-94, ZZZ" -, update = "98.07 icking, 98.03 bibrelex, 95.09 mitchell" +, author = "Christian Icking and Rolf Klein" +, title = "Searching for the Kernel of a Polygon: {A} Competitive Strategy" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "258--266" +, keywords = "competitive strategy, shortest paths, simple polygon" +, precedes = "ikl-skpcs-97" +, cites = "cg-opapp-92, di-csgs-94, dkp-hlue-91, dkp-hlue1-93, drw-lrmt-95, gs-oolaw-95, i-mvsp-94, ikm-hlac-93, k-wusbd-92, k-lpmr-94, k-olssp-94, lp-oafkp-79, ls-ghtun-94, r-cic-94, ZZZ" +, update = "98.07 icking, 98.03 bibrelex, 95.09 mitchell" } @inproceedings{ik-skpcs-95c -, author = "Christian Icking and Rolf Klein" -, title = "Searching for the Kernel of a Polygon: A Competitive Strategy" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "7--99" -, update = "00.03 bibrelex" +, author = "Christian Icking and Rolf Klein" +, title = "Searching for the Kernel of a Polygon: A Competitive Strategy" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "7--99" +, update = "00.03 bibrelex" } @inproceedings{ik-tgp-91 -, author = "Christian Icking and Rolf Klein" -, title = "The Two Guards Problem" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "166--175" -, keywords = "polygon" -, precedes = "ik-tgp-92t" -, cites = "at-oadvp-81, cg-vippg-85, fw--90, gh-ospqs-89, o-agta-87, ZZZ" -, update = "99.07 bibrelex, 98.11 bibrelex, 98.07 icking, 97.11 bibrelex" +, author = "Christian Icking and Rolf Klein" +, title = "The Two Guards Problem" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "166--175" +, keywords = "polygon" +, precedes = "ik-tgp-92t" +, cites = "at-oadvp-81, cg-vippg-85, fw--90, gh-ospqs-89, o-agta-87, ZZZ" +, update = "99.07 bibrelex, 98.11 bibrelex, 98.07 icking, 97.11 bibrelex" } @techreport{ik-tgp-92t -, author = "Christian Icking and Rolf Klein" -, title = "The Two Guards Problem" -, number = 126 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1992 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr126.pdf" -, succeeds = "ik-tgp-91" -, precedes = "ik-tgp-92" -, update = "98.11 bibrelex" +, author = "Christian Icking and Rolf Klein" +, title = "The Two Guards Problem" +, number = 126 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1992 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr126.pdf" +, succeeds = "ik-tgp-91" +, precedes = "ik-tgp-92" +, update = "98.11 bibrelex" } @article{ik-tgp-92 -, author = "Christian Icking and Rolf Klein" -, title = "The Two Guards Problem" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "257--285" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ik-tgp-92.pdf" -, keywords = "visibility, watchman routes, planar polygons, motion planning" -, succeeds = "ik-tgp-92t" -, update = "01.04 icking, 99.07 bibrelex, 98.11 bibrelex, 98.07 icking" +, author = "Christian Icking and Rolf Klein" +, title = "The Two Guards Problem" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "257--285" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ik-tgp-92.pdf" +, keywords = "visibility, watchman routes, planar polygons, motion planning" +, succeeds = "ik-tgp-92t" +, update = "01.04 icking, 99.07 bibrelex, 98.11 bibrelex, 98.07 icking" } @inproceedings{ikkm-jadvv-97 -, author = "Christian Icking and Rolf Klein and Peter K{\"o}llner and Lihong Ma" -, title = "A {Java} Applet for the Dynamic Visualization of {Voronoi} Diagrams" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "46--47" -, update = "00.03 bibrelex, 99.07 bibrelex, 98.07 bibrelex" +, author = "Christian Icking and Rolf Klein and Peter K{\"o}llner and Lihong Ma" +, title = "A {Java} Applet for the Dynamic Visualization of {Voronoi} Diagrams" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "46--47" +, update = "00.03 bibrelex, 99.07 bibrelex, 98.07 bibrelex" } @techreport{ikl-ocsws-98 -, author = "Christian Icking and Rolf Klein and Elmar Langetepe" -, title = "An Optimal Competitive Strategy for Walking in Streets" -, number = 233 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1998 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr233.pdf" -, precedes = "ikl-ocsws-99" -, update = "98.11 bibrelex" +, author = "Christian Icking and Rolf Klein and Elmar Langetepe" +, title = "An Optimal Competitive Strategy for Walking in Streets" +, number = 233 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1998 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr233.pdf" +, precedes = "ikl-ocsws-99" +, update = "98.11 bibrelex" } @inproceedings{ikl-ocsws-99 -, author = "Christian Icking and Rolf Klein and Elmar Langetepe" -, title = "An Optimal Competitive Strategy for Walking in Streets" -, booktitle = "Proc. 16th Sympos. Theoret. Aspects Comput. Sci." -, nickname = "STACS '99" -, site = "Trier" -, series = "Lecture Notes Comput. Sci." -, volume = 1563 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "110--120" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ikl-ocsws-99.pdf" -, succeeds = "ikl-ocsws-98" -, update = "01.04 icking, 99.07 bibrelex, 99.03 bibrelex, 98.11 bibrelex" +, author = "Christian Icking and Rolf Klein and Elmar Langetepe" +, title = "An Optimal Competitive Strategy for Walking in Streets" +, booktitle = "Proc. 16th Sympos. Theoret. Aspects Comput. Sci." +, nickname = "STACS '99" +, site = "Trier" +, series = "Lecture Notes Comput. Sci." +, volume = 1563 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "110--120" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ikl-ocsws-99.pdf" +, succeeds = "ikl-ocsws-98" +, update = "01.04 icking, 99.07 bibrelex, 99.03 bibrelex, 98.11 bibrelex" } @inproceedings{ikl-sgmrw-99 -, author = "Christian Icking and Rolf Klein and Elmar Langetepe" -, title = "Searching a Goal on $m$ Rays Within a Fixed Distance" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "137--139" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ikl-sgmrw-99.pdf" -, update = "01.04 icking, 00.03 bibrelex, 99.07 bibrelex" +, author = "Christian Icking and Rolf Klein and Elmar Langetepe" +, title = "Searching a Goal on $m$ Rays Within a Fixed Distance" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "137--139" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ikl-sgmrw-99.pdf" +, update = "01.04 icking, 00.03 bibrelex, 99.07 bibrelex" } @techreport{ikl-skpcs-97 -, author = "Christian Icking and Rolf Klein and Elmar Langetepe" -, title = "Searching for the Kernel of a Polygon: A Competitive Strategy Using Self-Approaching Curves" -, number = 211 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1997 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr211.pdf" -, succeeds = "ik-skpcs-95" -, update = "98.07 icking, 98.03 icking" +, author = "Christian Icking and Rolf Klein and Elmar Langetepe" +, title = "Searching for the Kernel of a Polygon: A Competitive Strategy Using Self-Approaching Curves" +, number = 211 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1997 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr211.pdf" +, succeeds = "ik-skpcs-95" +, update = "98.07 icking, 98.03 icking" } @techreport{ikl-sac-97 -, author = "Christian Icking and Rolf Klein and Elmar Langetepe" -, title = "Self-Approaching Curves" -, number = 217 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1997 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr217.pdf" -, precedes = "ikl-sac-99" -, update = "99.07 bibrelex, 98.07 icking" +, author = "Christian Icking and Rolf Klein and Elmar Langetepe" +, title = "Self-Approaching Curves" +, number = 217 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1997 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr217.pdf" +, precedes = "ikl-sac-99" +, update = "99.07 bibrelex, 98.07 icking" } @article{ikl-sac-99 -, author = "Christian Icking and Rolf Klein and Elmar Langetepe" -, title = "Self-Approaching Curves" -, journal = "Math. Proc. Camb. Phil. Soc." -, volume = 125 -, year = 1999 -, pages = "441--453" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr217.pdf" -, succeeds = "ikl-sac-97" -, update = "01.04 icking, 99.07 bibrelex, 99.03 bibrelex" +, author = "Christian Icking and Rolf Klein and Elmar Langetepe" +, title = "Self-Approaching Curves" +, journal = "Math. Proc. Camb. Phil. Soc." +, volume = 125 +, year = 1999 +, pages = "441--453" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr217.pdf" +, succeeds = "ikl-sac-97" +, update = "01.04 icking, 99.07 bibrelex, 99.03 bibrelex" } @techreport{iklm-cdf3s-92 -, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma" -, title = "Convex Distance Functions in $3$-space are Different" -, number = 133 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1992 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr133.pdf" -, precedes = "iklm-cdf3s-93" -, update = "98.07 icking, 98.03 bibrelex" +, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma" +, title = "Convex Distance Functions in $3$-space are Different" +, number = 133 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1992 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr133.pdf" +, precedes = "iklm-cdf3s-93" +, update = "98.07 icking, 98.03 bibrelex" } @inproceedings{iklm-cdf3s-93 -, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma" -, title = "Convex Distance Functions in $3$-Space are Different" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "116--123" -, succeeds = "iklm-cdf3s-92" -, precedes = "iklm-cdf3s-95" -, cites = "a-vdsfg-91, b-eakfd-70, cgglmw-m5lrm-91, cd-vdbcd-85, ei-drmwc-79, h-ag-77, iklm-cdf3s-92, j-ba1-74, k-cavd-89, k-cpavd-89, kmm-cavd2-90, km-weacs-92, l-a1-69, l-tdvdl-80, m-ddvec-92, mr-vdbsc-91, mmo-cavd-91, sh-cpp-75, sd-hdvdc-92, ss-ampr-90, www-dpcgf-85, ZZZ" -, update = "99.07 bibrelex, 98.07 icking, 98.03 bibrelex, 97.11 icking, 93.09 jones" +, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma" +, title = "Convex Distance Functions in $3$-Space are Different" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "116--123" +, succeeds = "iklm-cdf3s-92" +, precedes = "iklm-cdf3s-95" +, cites = "a-vdsfg-91, b-eakfd-70, cgglmw-m5lrm-91, cd-vdbcd-85, ei-drmwc-79, h-ag-77, iklm-cdf3s-92, j-ba1-74, k-cavd-89, k-cpavd-89, kmm-cavd2-90, km-weacs-92, l-a1-69, l-tdvdl-80, m-ddvec-92, mr-vdbsc-91, mmo-cavd-91, sh-cpp-75, sd-hdvdc-92, ss-ampr-90, www-dpcgf-85, ZZZ" +, update = "99.07 bibrelex, 98.07 icking, 98.03 bibrelex, 97.11 icking, 93.09 jones" } @article{iklm-cdf3s-95 -, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma" -, title = "Convex Distance Functions in $3$-Space are Different" -, journal = "Fundam. Inform." -, volume = 22 -, year = 1995 -, pages = "331--352" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/iklm-cdf3s-95.pdf" -, succeeds = "iklm-cdf3s-93" -, update = "01.04 icking, 97.03 icking+smid" +, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma" +, title = "Convex Distance Functions in $3$-Space are Different" +, journal = "Fundam. Inform." +, volume = 22 +, year = 1995 +, pages = "331--352" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/iklm-cdf3s-95.pdf" +, succeeds = "iklm-cdf3s-93" +, update = "01.04 icking, 97.03 icking+smid" } @techreport{iklms-bcdf3-99t -, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma and Francisco Santos" -, title = "On Bisectors for Convex Distance Functions in 3-Space" -, number = 250 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1999 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr250.pdf" -, precedes = "iklms-bcdf3-99" -, update = "99.07 bibrelex" +, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma and Francisco Santos" +, title = "On Bisectors for Convex Distance Functions in 3-Space" +, number = 250 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1999 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr250.pdf" +, precedes = "iklms-bcdf3-99" +, update = "99.07 bibrelex" } @inproceedings{iklms-bcdf3-99 -, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma and Francisco Santos" -, title = "On Bisectors for Convex Distance Functions in 3-Space" -, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." -, nickname = "CCCG '99" -, site = "Vancouver, Canada" -, year = 1999 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr250.pdf" -, succeeds = "iklms-bcdf3-99t" -, update = "01.04 icking, 99.07 bibrelex" +, author = "Christian Icking and Rolf Klein and Ngoc-Minh L{\^e} and Lihong Ma and Francisco Santos" +, title = "On Bisectors for Convex Distance Functions in 3-Space" +, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." +, nickname = "CCCG '99" +, site = "Vancouver, Canada" +, year = 1999 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr250.pdf" +, succeeds = "iklms-bcdf3-99t" +, update = "01.04 icking, 99.07 bibrelex" } @techreport{ikm-ocsla-94 -, author = "Christian Icking and Rolf Klein and Lihong Ma" -, title = "An Optimal Competitive Strategy for Looking Around a Corner" -, number = 167 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1994 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr167.pdf" -, succeeds = "ikm-hlac-93" -, update = "98.11 bibrelex" +, author = "Christian Icking and Rolf Klein and Lihong Ma" +, title = "An Optimal Competitive Strategy for Looking Around a Corner" +, number = 167 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1994 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr167.pdf" +, succeeds = "ikm-hlac-93" +, update = "98.11 bibrelex" } @inproceedings{ikm-hlac-93 -, author = "Christian Icking and Rolf Klein and Lihong Ma" -, title = "How to Look Around a Corner" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "443--448" -, precedes = "ikm-ocsla-94" -, cites = "cgglmw-m5lrm-91, dkp-hlue-91, elw-pgmpt-90, k-dv1-83, k-wusbd-91, m-aaorp-90, m-odes-60, py-spwm-89, ss-ampr-90, sy-agar-87, st-aelup-85, brs-nut-90, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "Christian Icking and Rolf Klein and Lihong Ma" +, title = "How to Look Around a Corner" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "443--448" +, precedes = "ikm-ocsla-94" +, cites = "cgglmw-m5lrm-91, dkp-hlue-91, elw-pgmpt-90, k-dv1-83, k-wusbd-91, m-aaorp-90, m-odes-60, py-spwm-89, ss-ampr-90, sy-agar-87, st-aelup-85, brs-nut-90, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{ikm-brdcd-98 -, author = "Christian Icking and Rolf Klein and Lihong Ma" -, title = "The Bisector with Respect to Different Convex Distance Functions" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "99--101" -, precedes = "ikmnw-bddf-98" -, update = "00.03 bibrelex, 99.07 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 bibrelex" +, author = "Christian Icking and Rolf Klein and Lihong Ma" +, title = "The Bisector with Respect to Different Convex Distance Functions" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "99--101" +, precedes = "ikmnw-bddf-98" +, update = "00.03 bibrelex, 99.07 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 bibrelex" } @inproceedings{ikm-owlac-93 -, author = "Christian Icking and Rolf Klein and Lihong Ma" -, title = "The Optimal Way for Looking Around a Corner" -, booktitle = "Proc. 4th IEEE--IEE Vehicle Navigation and Information Systems Conference" -, nickname = "VNIS '93" -, site = "Ottawa, Canada" -, year = 1993 -, update = "98.07 icking, 97.03 icking" +, author = "Christian Icking and Rolf Klein and Lihong Ma" +, title = "The Optimal Way for Looking Around a Corner" +, booktitle = "Proc. 4th IEEE--IEE Vehicle Navigation and Information Systems Conference" +, nickname = "VNIS '93" +, site = "Ottawa, Canada" +, year = 1993 +, update = "98.07 icking, 97.03 icking" } @techreport{ikmnw-bddf-98 -, author = "Christian Icking and Rolf Klein and Lihong Ma and Stefan Nickel and Ansgar Wei{\ss}ler" -, title = "On Bisectors for Different Distance Functions" -, number = 237 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1998 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr237.pdf" -, succeeds = "ikm-brdcd-98" -, precedes = "ikmnw-bddf-99" -, update = "99.07 bibrelex, 98.11 bibrelex" +, author = "Christian Icking and Rolf Klein and Lihong Ma and Stefan Nickel and Ansgar Wei{\ss}ler" +, title = "On Bisectors for Different Distance Functions" +, number = 237 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1998 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr237.pdf" +, succeeds = "ikm-brdcd-98" +, precedes = "ikmnw-bddf-99" +, update = "99.07 bibrelex, 98.11 bibrelex" } @inproceedings{ikmnw-bddf-99 -, author = "Christian Icking and Rolf Klein and Lihong Ma and Stefan Nickel and Ansgar Wei{\ss}ler" -, title = "On Bisectors for Different Distance Functions" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "291--299" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ikmnw-bddf-99.pdf" -, succeeds = "ikmnw-bddf-98" -, precedes = "ikmnw-bddf-01" -, update = "01.04 icking, 99.07 bibrelex, 99.03 bibrelex" +, author = "Christian Icking and Rolf Klein and Lihong Ma and Stefan Nickel and Ansgar Wei{\ss}ler" +, title = "On Bisectors for Different Distance Functions" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "291--299" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/ikmnw-bddf-99.pdf" +, succeeds = "ikmnw-bddf-98" +, precedes = "ikmnw-bddf-01" +, update = "01.04 icking, 99.07 bibrelex, 99.03 bibrelex" } @article{ikmnw-bddf-01 -, author = "Christian Icking and Rolf Klein and Lihong Ma and Stefan Nickel and Ansgar Wei{\ss}ler" -, title = "On Bisectors for Different Distance Functions" -, journal = "Discrete Appl. Math." -, volume = 109 -, year = 2001 -, pages = "139--161" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr237.pdf" -, succeeds = "ikmnw-bddf-99" -, cites = "ae-oacwv-84, ak-vd-00, cd-vdbcd-85, cmr-gbscd-96, es-vda-86, h-mlps-95, iklm-cdf3s-95, kw-gcsmm-79, lb-cg2-93, nprw-gcmlp-97, os-lopst-97, rnp-falp-97, v-cs-64, ww-ubnlm-85, www-dpcgf-85, ZZZ" -, update = "01.04 icking" +, author = "Christian Icking and Rolf Klein and Lihong Ma and Stefan Nickel and Ansgar Wei{\ss}ler" +, title = "On Bisectors for Different Distance Functions" +, journal = "Discrete Appl. Math." +, volume = 109 +, year = 2001 +, pages = "139--161" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr237.pdf" +, succeeds = "ikmnw-bddf-99" +, cites = "ae-oacwv-84, ak-vd-00, cd-vdbcd-85, cmr-gbscd-96, es-vda-86, h-mlps-95, iklm-cdf3s-95, kw-gcsmm-79, lb-cg2-93, nprw-gcmlp-97, os-lopst-97, rnp-falp-97, v-cs-64, ww-ubnlm-85, www-dpcgf-85, ZZZ" +, update = "01.04 icking" } @inproceedings{iko-pstsm-88 -, author = "Christian Icking and Rolf Klein and Thomas Ottmann" -, title = "Priority Search Trees in Secondary Memory" -, booktitle = "Proc. 13th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '87" -, series = "Lecture Notes Comput. Sci." -, volume = 314 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "84--93" -, keywords = "search trees, B-tree, red-black tree, priority search trees" -, update = "98.11 bibrelex" +, author = "Christian Icking and Rolf Klein and Thomas Ottmann" +, title = "Priority Search Trees in Secondary Memory" +, booktitle = "Proc. 13th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '87" +, series = "Lecture Notes Comput. Sci." +, volume = 314 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "84--93" +, keywords = "search trees, B-tree, red-black tree, priority search trees" +, update = "98.11 bibrelex" } @techreport{ilss-ghtus-98 -, author = "Christian Icking and Alejandro L{\'o}pez-Ortiz and Sven Schuierer and Ines Semrau" -, title = "Going Home Through an Unknown Street" -, number = 228 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1998 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr228.pdf" -, update = "99.07 bibrelex, 98.07 icking" +, author = "Christian Icking and Alejandro L{\'o}pez-Ortiz and Sven Schuierer and Ines Semrau" +, title = "Going Home Through an Unknown Street" +, number = 228 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1998 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr228.pdf" +, update = "99.07 bibrelex, 98.07 icking" } @techreport{im-tbcvd-00 -, author = "Christian Icking and Lihong Ma" -, title = "A Tight Bound for the Complexity of {Voronoi} Diagrams under Polyhedral Convex Distance Functions in {3D}" -, number = 277 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 2000 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr277.pdf" -, precedes = "im-tbcvd-01" -, cites = "ak-vd-00, bsty-vdhdc-98, by-ag-98, cd-vdbcd-85, ckstw-vdl3s-98, cs-arscg-89, dv-cprac-77, es-vda-86, f-vddt-97, gmr-vdmpp-92, gs-ccrs-87, iklm-cdf3s-95, iklms-bcdf3-99, ikmnw-bddf-99, k-cavd-89, kw-vdbgm-88, ls-pptmc-87, m-bvdcd-00, mmo-cavd-91, ss-ampr-90, s-atubl-94, s-ahdvd-95, sa-dsstg-95, t-csas-96, t-ntasa-96, ZZZ" -, update = "01.04 icking" +, author = "Christian Icking and Lihong Ma" +, title = "A Tight Bound for the Complexity of {Voronoi} Diagrams under Polyhedral Convex Distance Functions in {3D}" +, number = 277 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 2000 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr277.pdf" +, precedes = "im-tbcvd-01" +, cites = "ak-vd-00, bsty-vdhdc-98, by-ag-98, cd-vdbcd-85, ckstw-vdl3s-98, cs-arscg-89, dv-cprac-77, es-vda-86, f-vddt-97, gmr-vdmpp-92, gs-ccrs-87, iklm-cdf3s-95, iklms-bcdf3-99, ikmnw-bddf-99, k-cavd-89, kw-vdbgm-88, ls-pptmc-87, m-bvdcd-00, mmo-cavd-91, ss-ampr-90, s-atubl-94, s-ahdvd-95, sa-dsstg-95, t-csas-96, t-ntasa-96, ZZZ" +, update = "01.04 icking" } @inproceedings{im-tbcvd-01 -, author = "Christian Icking and Lihong Ma" -, title = "A Tight Bound for the Complexity of {Voronoi} Diagrams under Polyhedral Convex Distance Functions in {3D}" -, booktitle = "Proc. 33rd Annu. ACM Sympos. Theory Comput." -, nickname = "STOC 2001" -, site = "Crete, Greece" -, year = 2001 -, pages = "316--321" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr277.pdf" -, succeeds = "im-tbcvd-00" -, update = "02.03 icking, 01.04 icking" +, author = "Christian Icking and Lihong Ma" +, title = "A Tight Bound for the Complexity of {Voronoi} Diagrams under Polyhedral Convex Distance Functions in {3D}" +, booktitle = "Proc. 33rd Annu. ACM Sympos. Theory Comput." +, nickname = "STOC 2001" +, site = "Crete, Greece" +, year = 2001 +, pages = "316--321" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr277.pdf" +, succeeds = "im-tbcvd-00" +, update = "02.03 icking, 01.04 icking" } @techreport{irwy-spls-89 -, author = "Christian Icking and G{\"u}nter Rote and Emo Welzl and Chee Yap" -, title = "Shortest Paths for Line Segments" -, type = "Technical {Report}" -, number = "B-89-14" -, institution = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, month = sep -, year = 1989 -, precedes = "irwy-spls-91" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "Christian Icking and G{\"u}nter Rote and Emo Welzl and Chee Yap" +, title = "Shortest Paths for Line Segments" +, type = "Technical {Report}" +, number = "B-89-14" +, institution = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, month = sep +, year = 1989 +, precedes = "irwy-spls-91" +, update = "98.11 bibrelex, 98.07 bibrelex" } @techreport{irwy-spls-91 -, author = "Christian Icking and G{\"u}nter Rote and Emo Welzl and Chee Yap" -, title = "Shortest Paths for Line Segments" -, type = "Technical {Report}" -, number = 596 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1991 -, succeeds = "irwy-spls-89" -, precedes = "irwy-spls-92t" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "Christian Icking and G{\"u}nter Rote and Emo Welzl and Chee Yap" +, title = "Shortest Paths for Line Segments" +, type = "Technical {Report}" +, number = 596 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1991 +, succeeds = "irwy-spls-89" +, precedes = "irwy-spls-92t" +, update = "98.11 bibrelex, 98.03 bibrelex" } @techreport{irwy-spls-92t -, author = "Christian Icking and G{\"u}nter Rote and Emo Welzl and Chee Yap" -, title = "Shortest Paths for Line Segments" -, number = 125 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1992 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr125.pdf" -, succeeds = "irwy-spls-91" -, precedes = "irwy-spls-92" -, update = "98.11 bibrelex" +, author = "Christian Icking and G{\"u}nter Rote and Emo Welzl and Chee Yap" +, title = "Shortest Paths for Line Segments" +, number = 125 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1992 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr125.pdf" +, succeeds = "irwy-spls-91" +, precedes = "irwy-spls-92" +, update = "98.11 bibrelex" } @article{irwy-spls-92 -, author = "Christian Icking and G{\"u}nter Rote and Emo Welzl and Chee Yap" -, title = "Shortest Paths for Line Segments" -, journal = "Algorithmica" -, volume = 10 -, year = 1993 -, pages = "182--200" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/irwy-spls-92.pdf" -, keywords = "Ulam problem, motion planning" -, succeeds = "irwy-spls-92t" -, update = "01.04 icking, 98.11 bibrelex, 98.03 mitchell, 95.01 mitchell, 93.09 rote, 95.01 mitchell" +, author = "Christian Icking and G{\"u}nter Rote and Emo Welzl and Chee Yap" +, title = "Shortest Paths for Line Segments" +, journal = "Algorithmica" +, volume = 10 +, year = 1993 +, pages = "182--200" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/irwy-spls-92.pdf" +, keywords = "Ulam problem, motion planning" +, succeeds = "irwy-spls-92t" +, update = "01.04 icking, 98.11 bibrelex, 98.03 mitchell, 95.01 mitchell, 93.09 rote, 95.01 mitchell" } @mastersthesis{i-dtg-90 -, author = "P. J. Idicula" -, title = "Drawing Trees in Grids" -, school = "Department of Computer Science, University of Auckland" -, year = 1990 -, keywords = "master thesis, graph drawing" -, update = "93.09 tamassia" +, author = "P. J. Idicula" +, title = "Drawing Trees in Grids" +, school = "Department of Computer Science, University of Auckland" +, year = 1990 +, keywords = "master thesis, graph drawing" +, update = "93.09 tamassia" } @techreport{ic-copop-91 -, author = "D. J. Ieradi and Y.-B. Chen" -, title = "The complexity of oblivious plans for orienting polygonal parts" -, type = "Technical {Report}" -, number = "USC-CS-92-502" -, institution = "Dept. Comput. Sci., Univ. Southern California" -, month = dec -, year = 1991 -, precedes = "ci-copod-95" -, update = "98.07 bibrelex" +, author = "D. J. Ieradi and Y.-B. Chen" +, title = "The complexity of oblivious plans for orienting polygonal parts" +, type = "Technical {Report}" +, number = "USC-CS-92-502" +, institution = "Dept. Comput. Sci., Univ. Southern California" +, month = dec +, year = 1991 +, precedes = "ci-copod-95" +, update = "98.07 bibrelex" } @techreport{i-lgto-81 -, author = "A. Iftikhar" -, title = "Linear geometric transformations on octrees" -, type = "Technical {Report}" -, number = "TR-81-003" -, institution = "Rensselaer Polytechnic Inst." -, address = "Troy, NY" -, year = 1981 -, update = "97.11 bibrelex" +, author = "A. Iftikhar" +, title = "Linear geometric transformations on octrees" +, type = "Technical {Report}" +, number = "TR-81-003" +, institution = "Rensselaer Polytechnic Inst." +, address = "Troy, NY" +, year = 1981 +, update = "97.11 bibrelex" } @inproceedings{i-dfdgu-96 -, author = "J. Ignatowicz" -, title = "Drawing Force-Directed Graphs Using Optigraph" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "333--336" -, keywords = "graph drawing, straight-line, system, force-direceted" -, update = "96.09 tamassia" +, author = "J. Ignatowicz" +, title = "Drawing Force-Directed Graphs Using Optigraph" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "333--336" +, keywords = "graph drawing, straight-line, system, force-direceted" +, update = "96.09 tamassia" } @book{ic-lp-94 -, author = "J. P. Ignizio and T. M. Cavalier" -, title = "Linear Programming" -, series = "Prentice Hall International Series in Industrial and Systems Engineering" -, publisher = "Prentice Hall" -, year = 1994 -, update = "98.07 bibrelex" +, author = "J. P. Ignizio and T. M. Cavalier" +, title = "Linear Programming" +, series = "Prentice Hall International Series in Industrial and Systems Engineering" +, publisher = "Prentice Hall" +, year = 1994 +, update = "98.07 bibrelex" } @inproceedings{i-mrsti-92 -, author = "Edmund Ihler" -, title = "Minimum rectilinear {Steiner} trees for intervals on two parallel lines" -, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, year = 1992 -, pages = "??" -, precedes = "i-rcstp-94" -, update = "95.01 mitchell, 93.09 milone+mitchell" +, author = "Edmund Ihler" +, title = "Minimum rectilinear {Steiner} trees for intervals on two parallel lines" +, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, year = 1992 +, pages = "??" +, precedes = "i-rcstp-94" +, update = "95.01 mitchell, 93.09 milone+mitchell" } @inproceedings{i-cacst-92 -, author = "Edmund Ihler" -, title = "The Complexity of Approximating the Class {Steiner} Tree Problem" -, booktitle = "Graph Theoretic Concepts in Computer Science: Proc. Internat. Workshop WG '91" -, series = "Lecture Notes Comput. Sci." -, volume = 570 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "85--96" -, keywords = "TSP" -, update = "99.11 bibrelex, 98.03 mitchell, 97.11 icking, 96.09 agarwal, 95.01 mitchell" +, author = "Edmund Ihler" +, title = "The Complexity of Approximating the Class {Steiner} Tree Problem" +, booktitle = "Graph Theoretic Concepts in Computer Science: Proc. Internat. Workshop WG '91" +, series = "Lecture Notes Comput. Sci." +, volume = 570 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "85--96" +, keywords = "TSP" +, update = "99.11 bibrelex, 98.03 mitchell, 97.11 icking, 96.09 agarwal, 95.01 mitchell" } @article{i-rcstp-94 -, author = "Edmund Ihler" -, title = "The Rectilinear {Steiner} Tree Problem for Intervals on Two Parallel Lines" -, journal = "Math. Program. Ser. B" -, volume = 63 -, year = 1994 -, pages = "281--296" -, succeeds = "i-mrsti-92" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "Edmund Ihler" +, title = "The Rectilinear {Steiner} Tree Problem for Intervals on Two Parallel Lines" +, journal = "Math. Program. Ser. B" +, volume = 63 +, year = 1994 +, pages = "281--296" +, succeeds = "i-mrsti-92" +, update = "98.03 mitchell, 95.01 mitchell" } @inproceedings{irw-sncpp-91 -, author = "Edmund Ihler and Gabriele Reich and Peter Widmayer" -, title = "On shortest networks for classes of points in the plane" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "103--111" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Edmund Ihler and Gabriele Reich and Peter Widmayer" +, title = "On shortest networks for classes of points in the plane" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "103--111" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @article{iww-mhgsm-93 -, author = "E. Ihler and D. Wagner and F. Wagner" -, title = "Modeling Hyperedges by Graphs with the Same Mincut Properties" -, journal = "Inform. Process. Lett." -, volume = 45 -, year = 1993 -, pages = "171--175" -, update = "97.03 gaertner+salinger" +, author = "E. Ihler and D. Wagner and F. Wagner" +, title = "Modeling Hyperedges by Graphs with the Same Mincut Properties" +, journal = "Inform. Process. Lett." +, volume = 45 +, year = 1993 +, pages = "171--175" +, update = "97.03 gaertner+salinger" } @incollection{in-pladc-91 -, author = "I. Ihm and B. Naylor" -, title = "Piecewise linear approximations of digitized curves with applications" -, editor = "N. M. Patrilakis" -, booktitle = "Scientific Visualization of Physical Phenomena" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1991 -, pages = "545--568" -, update = "98.07 bibrelex" +, author = "I. Ihm and B. Naylor" +, title = "Piecewise linear approximations of digitized curves with applications" +, editor = "N. M. Patrilakis" +, booktitle = "Scientific Visualization of Physical Phenomena" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1991 +, pages = "545--568" +, update = "98.07 bibrelex" } @inproceedings{i-r3dou-81 -, author = "K. I. Ikeuchi" -, title = "Recognition of 3-D Objects Using the Extended {Gaussian} Image" -, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." -, year = 1981 -, pages = "595--600" -, update = "97.11 bibrelex" +, author = "K. I. Ikeuchi" +, title = "Recognition of 3-D Objects Using the Extended {Gaussian} Image" +, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." +, year = 1981 +, pages = "595--600" +, update = "97.11 bibrelex" } @techreport{ihncf-puopo-83 -, author = "K. I. Ikeuchi and B. K. P. Horn and S. Nagata and T. Callahan and O. Feingold" -, title = "Picking up an object from a pile of objects" -, type = "Memo" -, number = "AI Memo 726" -, institution = "??" -, year = 1983 -, update = "97.11 bibrelex" +, author = "K. I. Ikeuchi and B. K. P. Horn and S. Nagata and T. Callahan and O. Feingold" +, title = "Picking up an object from a pile of objects" +, type = "Memo" +, number = "AI Memo 726" +, institution = "??" +, year = 1983 +, update = "97.11 bibrelex" } @techreport{ijmsss-dbalm-00 -, author = "I. Ilinkin and R. Janardan and J. Majhi and J. Schwerdt and M. Smid and R. Sriram" -, title = "A decomposition-based approach to layered manufacturing" -, type = "Report" -, number = "00-041" -, institution = "Department of Computer Science, University of Minnesota" -, address = "Minneapolis" -, year = 2000 -, update = "00.11 smid" +, author = "I. Ilinkin and R. Janardan and J. Majhi and J. Schwerdt and M. Smid and R. Sriram" +, title = "A decomposition-based approach to layered manufacturing" +, type = "Report" +, number = "00-041" +, institution = "Department of Computer Science, University of Minnesota" +, address = "Minneapolis" +, year = 2000 +, update = "00.11 smid" } @inproceedings{ijmsss-dbalm-01 -, author = "I. Ilinkin and R. Janardan and J. Majhi and J. Schwerdt and M. Smid and R. Sriram" -, title = "A decomposition-based approach to layered manufacturing" -, booktitle = "Proc. 7th Workshop Algorithms Data Struct." -, nickname = "WADS '01" -, series = "Lecture Notes Comput. Sci." -, volume = 2125 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "389--400" -, update = "01.11 smid" +, author = "I. Ilinkin and R. Janardan and J. Majhi and J. Schwerdt and M. Smid and R. Sriram" +, title = "A decomposition-based approach to layered manufacturing" +, booktitle = "Proc. 7th Workshop Algorithms Data Struct." +, nickname = "WADS '01" +, series = "Lecture Notes Comput. Sci." +, volume = 2125 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "389--400" +, update = "01.11 smid" } @techreport{i-empfm-86 -, author = "H. Imai" -, title = "Extensions of the multiplicative penalty function method for linear programming" -, type = "Report" -, number = "CSCE-86-C04" -, institution = "Dept. Comput. Sci., Kyushu Univ." -, address = "Fukuoka, Japan" -, year = 1986 +, author = "H. Imai" +, title = "Extensions of the multiplicative penalty function method for linear programming" +, type = "Report" +, number = "CSCE-86-C04" +, institution = "Dept. Comput. Sci., Kyushu Univ." +, address = "Fukuoka, Japan" +, year = 1986 } @techreport{i-galse-87 -, author = "H. Imai" -, title = "Geometric algorithms for locating a single-eye robot" -, type = "Manuscript" -, institution = "Dept. Comput. Sci. Commun. Engrg., Kyushu Univ." -, address = "Fukuoka, Japan" -, year = 1987 +, author = "H. Imai" +, title = "Geometric algorithms for locating a single-eye robot" +, type = "Manuscript" +, institution = "Dept. Comput. Sci. Commun. Engrg., Kyushu Univ." +, address = "Fukuoka, Japan" +, year = 1987 } @article{i-nfalt-83 -, author = "H. Imai" -, title = "Network-Flow Algorithms for Lower-Tuncated Transversal Polymatroids" -, journal = "J. Oper. Res. Soc. Japan" -, volume = 26 -, number = 3 -, year = 1983 -, pages = "186--210" -, update = "98.07 bibrelex" +, author = "H. Imai" +, title = "Network-Flow Algorithms for Lower-Tuncated Transversal Polymatroids" +, journal = "J. Oper. Res. Soc. Japan" +, volume = 26 +, number = 3 +, year = 1983 +, pages = "186--210" +, update = "98.07 bibrelex" } @article{i-csldp-85 -, author = "H. Imai" -, title = "On combinatorial structures of line drawings of polyhedra" -, journal = "Discrete Appl. Math." -, volume = 10 -, year = 1985 -, pages = "79--92" -, update = "97.11 bibrelex" +, author = "H. Imai" +, title = "On combinatorial structures of line drawings of polyhedra" +, journal = "Discrete Appl. Math." +, volume = 10 +, year = 1985 +, pages = "79--92" +, update = "97.11 bibrelex" } @article{i-wcapm-86 -, author = "H. Imai" -, title = "Worst-case analysis for planar matching and tour heuristics with bucketing techniques and spacefilling curves" -, journal = "J. Oper. Res. Soc. Japan" -, volume = 29 -, number = 1 -, year = 1986 -, pages = "43--68" +, author = "H. Imai" +, title = "Worst-case analysis for planar matching and tour heuristics with bucketing techniques and spacefilling curves" +, journal = "J. Oper. Res. Soc. Japan" +, volume = 29 +, number = 1 +, year = 1986 +, pages = "43--68" } @techreport{ia-eafmm-83 -, author = "H. Imai and Ta. Asano" -, title = "An efficient algorithm for finding a maximum matching of an intersection graph of horizontal and vertical line segments" -, type = "Paper" -, number = "{CAS} 83-143" -, institution = "IECE Tech. Group Circuits \& Systems" -, year = 1983 +, author = "H. Imai and Ta. Asano" +, title = "An efficient algorithm for finding a maximum matching of an intersection graph of horizontal and vertical line segments" +, type = "Paper" +, number = "{CAS} 83-143" +, institution = "IECE Tech. Group Circuits \& Systems" +, year = 1983 } @techreport{ia-oghmc-?? -, author = "H. Imai and Ta. Asano" -, title = "An {$O(n \log n)$} greedy heuristic for the minimum chord-length rectangular partition (extended abstract)" -, type = "Technical {Report}" -, number = "CAS84-115" -, institution = "IECE of Japan" -, year = "??" -, pages = "1--4" -, keywords = "decomposition, approximation, VLSI design" +, author = "H. Imai and Ta. Asano" +, title = "An {$O(n \log n)$} greedy heuristic for the minimum chord-length rectangular partition (extended abstract)" +, type = "Technical {Report}" +, number = "CAS84-115" +, institution = "IECE of Japan" +, year = "??" +, pages = "1--4" +, keywords = "decomposition, approximation, VLSI design" } @article{ia-dosis-87 -, author = "H. Imai and Ta. Asano" -, title = "Dynamic orthogonal segment intersection search" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "1--18" -, keywords = "intersection, dynamizing, data structuring, searching, VLSI design, decomposition, amortized analysis" -, succeeds = "ia-dsisa-84" -, update = "97.11 bibrelex" +, author = "H. Imai and Ta. Asano" +, title = "Dynamic orthogonal segment intersection search" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "1--18" +, keywords = "intersection, dynamizing, data structuring, searching, VLSI design, decomposition, amortized analysis" +, succeeds = "ia-dsisa-84" +, update = "97.11 bibrelex" } @inproceedings{ia-dsisa-84 -, author = "H. Imai and Ta. Asano" -, title = "Dynamic Segment Intersection Search with Applications" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, publisher = "IEEE Computer Society Press" -, address = "Los Angeles, Ca., USA" -, year = 1984 -, pages = "393--402" -, precedes = "ia-dosis-87" -, update = "97.11 bibrelex" +, author = "H. Imai and Ta. Asano" +, title = "Dynamic Segment Intersection Search with Applications" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, publisher = "IEEE Computer Society Press" +, address = "Los Angeles, Ca., USA" +, year = 1984 +, pages = "393--402" +, precedes = "ia-dosis-87" +, update = "97.11 bibrelex" } @article{ia-eaggs-86 -, author = "H. Imai and Ta. Asano" -, title = "Efficient algorithms for geometric graph search problems" -, journal = "SIAM J. Comput." -, volume = 15 -, number = 2 -, year = 1986 -, pages = "478--494" -, keywords = "intersection, dynamizing, data structuring, searching, VLSI design, decomposition, amortized analysis" -, update = "97.11 bibrelex" +, author = "H. Imai and Ta. Asano" +, title = "Efficient algorithms for geometric graph search problems" +, journal = "SIAM J. Comput." +, volume = 15 +, number = 2 +, year = 1986 +, pages = "478--494" +, keywords = "intersection, dynamizing, data structuring, searching, VLSI design, decomposition, amortized analysis" +, update = "97.11 bibrelex" } @article{ia-fccmc-83 -, author = "H. Imai and Ta. Asano" -, title = "Finding the connected components and a maximum clique of an intersection graph of rectangles in the plane" -, journal = "J. Algorithms" -, volume = 4 -, year = 1983 -, pages = "310--323" -, keywords = "VLSI design, plane-sweep, rectangles, intersection" +, author = "H. Imai and Ta. Asano" +, title = "Finding the connected components and a maximum clique of an intersection graph of rectangles in the plane" +, journal = "J. Algorithms" +, volume = 4 +, year = 1983 +, pages = "310--323" +, keywords = "VLSI design, plane-sweep, rectangles, intersection" } @inproceedings{ii-vdmp-90 -, author = "H. Imai and K. Imai" -, title = "Voronoi Diagrams of Moving Points" -, booktitle = "Proc. Int. Computer Symp." -, site = "Taiwan" -, year = 1990 -, pages = "600--606" -, update = "98.11 bibrelex" +, author = "H. Imai and K. Imai" +, title = "Voronoi Diagrams of Moving Points" +, booktitle = "Proc. Int. Computer Symp." +, site = "Taiwan" +, year = 1990 +, pages = "600--606" +, update = "98.11 bibrelex" } @article{ii-gca-96 -, author = "H. Imai and M. Inaba" -, title = "Geometric clustering with applications" -, journal = "Zeitschrift f{\"u}r Angewandte Mathematik" -, volume = 3 -, year = 1996 -, pages = "183--186" -, note = "ICIAM95 Proc., Applied Stochastics and Optimzation" -, update = "98.07 bibrelex" +, author = "H. Imai and M. Inaba" +, title = "Geometric clustering with applications" +, journal = "Zeitschrift f{\"u}r Angewandte Mathematik" +, volume = 3 +, year = 1996 +, pages = "183--186" +, note = "ICIAM95 Proc., Applied Stochastics and Optimzation" +, update = "98.07 bibrelex" } @techreport{ii-oaapl-86t -, author = "H. Imai and M. Iri" -, title = "An optimal algorithm for approximating a piecewise linear function" -, type = "Report" -, number = "CSCE-86-C03" -, institution = "Dept. Comput. Sci. Commun. Engrg., Kyushu Univ." -, address = "Fukuoka, Japan" -, year = 1986 -, precedes = "ii-oaapl-86a" +, author = "H. Imai and M. Iri" +, title = "An optimal algorithm for approximating a piecewise linear function" +, type = "Report" +, number = "CSCE-86-C03" +, institution = "Dept. Comput. Sci. Commun. Engrg., Kyushu Univ." +, address = "Fukuoka, Japan" +, year = 1986 +, precedes = "ii-oaapl-86a" } @article{ii-oaapl-86a -, author = "H. Imai and M. Iri" -, title = "An Optimal Algorithm for Approximating a Piecewise Linear Function" -, journal = "J. Inform. Process." -, volume = 9 -, number = 3 -, year = 1986 -, pages = "159--162" -, succeeds = "ii-oaapl-86t" +, author = "H. Imai and M. Iri" +, title = "An Optimal Algorithm for Approximating a Piecewise Linear Function" +, journal = "J. Inform. Process." +, volume = 9 +, number = 3 +, year = 1986 +, pages = "159--162" +, succeeds = "ii-oaapl-86t" } @techreport{ii-cgmpa-85 -, author = "H. Imai and M. Iri" -, title = "Computational-geometric methods for polygonal approximations of a curve" -, type = "Report" -, number = "RMI 85-01" -, institution = "Dept. Math. Engrg. Instrumentation Phys., Univ. Tokyo" -, address = "Bunkyo-ku, Tokyo, Japan" -, year = 1985 -, precedes = "ii-cgmpa-86" -, update = "98.07 bibrelex" +, author = "H. Imai and M. Iri" +, title = "Computational-geometric methods for polygonal approximations of a curve" +, type = "Report" +, number = "RMI 85-01" +, institution = "Dept. Math. Engrg. Instrumentation Phys., Univ. Tokyo" +, address = "Bunkyo-ku, Tokyo, Japan" +, year = 1985 +, precedes = "ii-cgmpa-86" +, update = "98.07 bibrelex" } @article{ii-cgmpa-86 -, author = "Hiroshi Imai and Masao Iri" -, title = "Computational-Geometric Methods for Polygonal Approximations of a Curve" -, journal = "Comput. Vision Graph. Image Process." -, volume = 36 -, year = 1986 -, pages = "31--41" -, succeeds = "ii-cgmpa-85" -, update = "98.07 bibrelex" +, author = "Hiroshi Imai and Masao Iri" +, title = "Computational-Geometric Methods for Polygonal Approximations of a Curve" +, journal = "Comput. Vision Graph. Image Process." +, volume = 36 +, year = 1986 +, pages = "31--41" +, succeeds = "ii-cgmpa-85" +, update = "98.07 bibrelex" } @incollection{ii-pacfa-88 -, author = "H. Imai and M. Iri" -, title = "Polygonal approximations of a curve-formulations and algorithms" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "71--86" -, succeeds = "ii-pacfs-86" +, author = "H. Imai and M. Iri" +, title = "Polygonal approximations of a curve-formulations and algorithms" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "71--86" +, succeeds = "ii-pacfs-86" } @techreport{ii-pacfs-86 -, author = "H. Imai and M. Iri" -, title = "Polygonal approximations of a curve-formulations and solution algorithms" -, type = "Report" -, number = "CSCE-86-C07" -, institution = "Dept. Comput. Sci. Commun. Engrg., Kyushu Univ." -, address = "Fukuoka, Japan" -, year = 1986 -, precedes = "ii-pacfa-88" +, author = "H. Imai and M. Iri" +, title = "Polygonal approximations of a curve-formulations and solution algorithms" +, type = "Report" +, number = "CSCE-86-C07" +, institution = "Dept. Comput. Sci. Commun. Engrg., Kyushu Univ." +, address = "Fukuoka, Japan" +, year = 1986 +, precedes = "ii-pacfa-88" } @article{iim-vdlgi-85 -, author = "H. Imai and M. Iri and K. Murota" -, title = "Voronoi diagrams in the {Laguerre} geometry and its applications" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "93--105" +, author = "H. Imai and M. Iri and K. Murota" +, title = "Voronoi diagrams in the {Laguerre} geometry and its applications" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "93--105" } @techreport{iky-ltall-87 -, author = "H. Imai and K. Kato and P. Yamamoto" -, title = "A linear-time algorithm for linear {$L_{1}$} approximation of points" -, type = "Report" -, number = "CSCE-87-C30" -, institution = "Dept. Comput. Sci. Commun. Engrg., Kyushu Univ." -, address = "Kukuoka, Japan" -, year = 1987 -, precedes = "iky-ltall-89" +, author = "H. Imai and K. Kato and P. Yamamoto" +, title = "A linear-time algorithm for linear {$L_{1}$} approximation of points" +, type = "Report" +, number = "CSCE-87-C30" +, institution = "Dept. Comput. Sci. Commun. Engrg., Kyushu Univ." +, address = "Kukuoka, Japan" +, year = 1987 +, precedes = "iky-ltall-89" } @article{iky-ltall-89 -, author = "H. Imai and K. Kato and P. Yamamoto" -, title = "A linear-time algorithm for linear {$L_{1}$} approximation of points" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "77--96" -, succeeds = "iky-ltall-87" +, author = "H. Imai and K. Kato and P. Yamamoto" +, title = "A linear-time algorithm for linear {$L_{1}$} approximation of points" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "77--96" +, succeeds = "iky-ltall-87" } @article{ily-sccp-92 -, author = "H. Imai and D. Lee and C. Yang" -, title = "$1$-Segment center covering problems" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "426--434" -, update = "98.03 mitchell, 96.09 agarwal, 95.09 agarwal" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "H. Imai and D. Lee and C. Yang" +, title = "$1$-Segment center covering problems" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "426--434" +, update = "98.03 mitchell, 96.09 agarwal, 95.09 agarwal" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @inproceedings{ily-1scp-89 -, author = "H. Imai and D. T. Lee and C. D. Yang" -, title = "On the $1$-segment-center problem" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 18 +, author = "H. Imai and D. T. Lee and C. D. Yang" +, title = "On the $1$-segment-center problem" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 18 } @article{i-vdmp-89 -, author = "K. Imai" -, title = "{Voronoi} Diagrams for Moving Points" -, journal = "Memoirs of Mathematical Research Institute, Kyoto Univ." -, volume = 695 -, year = 1989 -, pages = "225--232" -, note = "In Japanese" -, update = "97.11 bibrelex" +, author = "K. Imai" +, title = "{Voronoi} Diagrams for Moving Points" +, journal = "Memoirs of Mathematical Research Institute, Kyoto Univ." +, volume = 695 +, year = 1989 +, pages = "225--232" +, note = "In Japanese" +, update = "97.11 bibrelex" } @inproceedings{isi-mgftc-89 -, author = "K. Imai and S. Sumino and H. Imai" -, title = "Minimax geometric fitting of two corresponding sets of points" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "266--275" -, cites = "ass-sulbl-89, amww-cssgo-88, a-sdcgp-85, epss-lebfi-87, h-fuenl-89, ms-rcibt-88, m-lpltw-84, m-dlp-86, n-avsir-87, s-ossac-86, s-pds-74, ZZZ" -, update = "98.03 bibrelex" +, author = "K. Imai and S. Sumino and H. Imai" +, title = "Minimax geometric fitting of two corresponding sets of points" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "266--275" +, cites = "ass-sulbl-89, amww-cssgo-88, a-sdcgp-85, epss-lebfi-87, h-fuenl-89, ms-rcibt-88, m-lpltw-84, m-dlp-86, n-avsir-87, s-ossac-86, s-pds-74, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{i-stdgp-98 -, author = "Toshiyuki Imai" -, title = "A Simple Treatment for Degeneracies in Geometric Programs" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "103--105" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Toshiyuki Imai" +, title = "A Simple Treatment for Degeneracies in Geometric Programs" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "103--105" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{i-toavd-96 -, author = "T. Imai" -, title = "A topology oriented algorithm for the {Voronoi} diagram of polygons" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "107--112" -, update = "96.09 mitchell" +, author = "T. Imai" +, title = "A topology oriented algorithm for the {Voronoi} diagram of polygons" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "107--112" +, update = "96.09 mitchell" } @mastersthesis{i-nracv-89 -, author = "T. Imai" -, title = "Numerically robust algorithm for constructing {Voronoi} diagrams for line segments (in {Japanese})" -, type = "M.{Sc}. Thesis" -, school = "Dept. Math. Engr. Info. Phys., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1989 -, keywords = "master thesis" +, author = "T. Imai" +, title = "Numerically robust algorithm for constructing {Voronoi} diagrams for line segments (in {Japanese})" +, type = "M.{Sc}. Thesis" +, school = "Dept. Math. Engr. Info. Phys., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1989 +, keywords = "master thesis" } @inproceedings{i-smdsi-97 -, author = "Toshiyuki Imai" -, title = "Some Methods to Determine the Sign of an Integer from its Remainders" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "117--122" -, update = "97.11 jones" +, author = "Toshiyuki Imai" +, title = "Some Methods to Determine the Sign of an Integer from its Remainders" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "117--122" +, update = "97.11 jones" } @article{iw-dstp-91 -, author = "M. Imase and B. M. Waxman" -, title = "Dynamic {Steiner} tree problem" -, journal = "SIAM J. Discrete Math." -, volume = 4 -, year = 1991 -, pages = "369--384" -, update = "97.11 bibrelex" +, author = "M. Imase and B. M. Waxman" +, title = "Dynamic {Steiner} tree problem" +, journal = "SIAM J. Discrete Math." +, volume = 4 +, year = 1991 +, pages = "369--384" +, update = "97.11 bibrelex" } @article{i-pnm-75 -, author = "E. Imhof" -, title = "Positioning Names on Maps" -, journal = "Amer. Cartogr." -, volume = 2 -, year = 1975 -, pages = "128--144" -, update = "97.11 bibrelex" +, author = "E. Imhof" +, title = "Positioning Names on Maps" +, journal = "Amer. Cartogr." +, volume = 2 +, year = 1975 +, pages = "128--144" +, update = "97.11 bibrelex" } @inproceedings{ik-chmhe-89 -, author = "C. Imielinska and B. Kalantari" -, title = "On the complexity of the hypergreeedy matching heuristic for the {Euclidean} points in the plane" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 17 +, author = "C. Imielinska and B. Kalantari" +, title = "On the complexity of the hypergreeedy matching heuristic for the {Euclidean} points in the plane" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 17 } @inproceedings{iah-ldra-94 -, author = "M. Inaba and Y. Aoki and S. Hasegawa" -, title = "Level Difference of the Reconstructed Arrangement" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "12--17" -, cites = "a-ccra-93, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "M. Inaba and Y. Aoki and S. Hasegawa" +, title = "Level Difference of the Reconstructed Arrangement" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "12--17" +, cites = "a-ccra-93, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{iik-errca-96 -, author = "Mary Inaba and Hiroshi Imai and Naoki Katoh" -, title = "Experimental Results of a Randomized Clustering Algorithm" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C1--C2" -, cites = "h-ciqfb-80, iki-awvdr-94, si-kmtag-84, wwp-amdc-88, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Mary Inaba and Hiroshi Imai and Naoki Katoh" +, title = "Experimental Results of a Randomized Clustering Algorithm" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C1--C2" +, cites = "h-ciqfb-80, iki-awvdr-94, si-kmtag-84, wwp-amdc-88, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{iins-aegcm-97 -, author = "M. Inaba and H. Imai and M. Nakade and T. Sekiguchi" -, title = "Application of an Effective Geometric Clustering Method to Color Quantization Problem" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "477--478" -, keywords = "video review" -, cites = "h-ciqfb-82, hiikn-eavbk-93, imo-fvdaa-83, ii-gca-96, iki-awvdr-94, iik-errca-96, si-kmtag-84, wwp-amdc-88, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "M. Inaba and H. Imai and M. Nakade and T. Sekiguchi" +, title = "Application of an Effective Geometric Clustering Method to Color Quantization Problem" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "477--478" +, keywords = "video review" +, cites = "h-ciqfb-82, hiikn-eavbk-93, imo-fvdaa-83, ii-gca-96, iki-awvdr-94, iik-errca-96, si-kmtag-84, wwp-amdc-88, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{iki-awvdr-94 -, author = "M. Inaba and N. Katoh and H. Imai" -, title = "Applications of Weighted {Voronoi} Diagrams and Randomization to Variance-Based $k$-Clustering" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "332--339" -, cites = "abky-cabmm-88, bh-cpcoe-88, crw-gc-91, fg-oaac-88i, hr-tcpp-93, h-senea-93, hiikn-eavbk-93, hii-eakls-93, h-ciqfb-82, h-msde-92, i-ecchs-94, ki-pceas-87, kl-ehppg-70, ms-cscgl-84, wwp-amdc-88, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "M. Inaba and N. Katoh and H. Imai" +, title = "Applications of Weighted {Voronoi} Diagrams and Randomization to Variance-Based $k$-Clustering" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "332--339" +, cites = "abky-cabmm-88, bh-cpcoe-88, crw-gc-91, fg-oaac-88i, hr-tcpp-93, h-senea-93, hiikn-eavbk-93, hii-eakls-93, h-ciqfb-82, h-msde-92, i-ecchs-94, ki-pceas-87, kl-ehppg-70, ms-cscgl-84, wwp-amdc-88, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @inproceedings{is-nracc-94 -, author = "H. Inagaki and K. Sugihara" -, title = "Numerically Robust Algorithm for Constructing Constrained {Delaunay} Triangulation" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "171--176" -, cites = "ps-cgi-85, a-vdsfg-91, obs-stcav-92, be-mgot-92i, hhk-tirgc-88, m-vigau-88a, si-cvdom-92, iss-nriac-92, oim-iimvd-84, ZZZ" -, update = "98.11 bibrelex, 97.03 schwarzkopf, 94.09 jones" +, author = "H. Inagaki and K. Sugihara" +, title = "Numerically Robust Algorithm for Constructing Constrained {Delaunay} Triangulation" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "171--176" +, cites = "ps-cgi-85, a-vdsfg-91, obs-stcav-92, be-mgot-92i, hhk-tirgc-88, m-vigau-88a, si-cvdom-92, iss-nriac-92, oim-iimvd-84, ZZZ" +, update = "98.11 bibrelex, 97.03 schwarzkopf, 94.09 jones" } @inproceedings{iss-nriac-92 -, author = "H. Inagaki and K. Sugihara and N. Sugie" -, title = "Numerically robust incremental algorithm for constructing three-dimensional {Voronoi} diagrams" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "334--339" -, cites = "h-pargc-89, si-tdpga-89, si-cvdom-92, oim-iimvd-84, ZZZ" -, update = "98.07 bibrelex, 95.05 schwarzkopf" +, author = "H. Inagaki and K. Sugihara and N. Sugie" +, title = "Numerically robust incremental algorithm for constructing three-dimensional {Voronoi} diagrams" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "334--339" +, cites = "h-pargc-89, si-tdpga-89, si-cvdom-92, oim-iimvd-84, ZZZ" +, update = "98.07 bibrelex, 95.05 schwarzkopf" } @inproceedings{i-stasc-99 -, author = "Piotr Indyk" -, title = "A Sublinear-time Approximation Scheme for Clustering in Metric Spaces" -, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1999 -, pages = "154--159" -, update = "00.11 smid, 00.07 agarwal" +, author = "Piotr Indyk" +, title = "A Sublinear-time Approximation Scheme for Clustering in Metric Spaces" +, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1999 +, pages = "154--159" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{i-drtpp-00 -, author = "Piotr Indyk" -, title = "Dimensionality reduction techniques for proximity problems" -, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" -, year = 2000 -, pages = "371--378" -, update = "00.11 smid, 00.07 agarwal" +, author = "Piotr Indyk" +, title = "Dimensionality reduction techniques for proximity problems" +, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" +, year = 2000 +, pages = "371--378" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{i-annne-98 -, author = "Piotr Indyk" -, title = "On Approximate Nearest Neighbors in Non-{Euclidean} Spaces" -, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1998 -, pages = "148--155" -, update = "00.11 smid, 00.07 agarwal" +, author = "Piotr Indyk" +, title = "On Approximate Nearest Neighbors in Non-{Euclidean} Spaces" +, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1998 +, pages = "148--155" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{if-annah-99 -, author = "Piotr Indyk and M. Farach-Colton" -, title = "Approximate Nearest Neighbor Algorithms for {Hausdorff} Metrics via Embeddings" -, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1999 -, pages = "171--180" -, update = "00.11 smid, 00.07 agarwal" +, author = "Piotr Indyk and M. Farach-Colton" +, title = "Approximate Nearest Neighbor Algorithms for {Hausdorff} Metrics via Embeddings" +, booktitle = "Proc. 40th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1999 +, pages = "171--180" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{im-anntr-98 -, author = "Piotr Indyk and Rajeev Motwani" -, title = "Approximate Nearest Neighbors: {Towards} Removing the Curse of Dimensionality" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, year = 1998 -, pages = "to appear" -, update = "98.03 mitchell" +, author = "Piotr Indyk and Rajeev Motwani" +, title = "Approximate Nearest Neighbors: {Towards} Removing the Curse of Dimensionality" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, year = 1998 +, pages = "to appear" +, update = "98.03 mitchell" } @inproceedings{imrv-lphms-97 -, author = "P. Indyk and R. Motwani and P. Raghavan and S. Vempala" -, title = "Locality-preserving hashing in multidimensional spaces" -, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '97" -, year = 1997 -, pages = "618--625" -, update = "98.07 bibrelex, 98.03 smid, 97.07 agarwal" +, author = "P. Indyk and R. Motwani and P. Raghavan and S. Vempala" +, title = "Locality-preserving hashing in multidimensional spaces" +, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '97" +, year = 1997 +, pages = "618--625" +, update = "98.07 bibrelex, 98.03 smid, 97.07 agarwal" } @inproceedings{i-crosp-89 -, author = "A. Inselberg" -, title = "Conflict resolution, one-shot problem, and air traffic control" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 26 +, author = "A. Inselberg" +, title = "Conflict resolution, one-shot problem, and air traffic control" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 26 } @techreport{i-ndgp1-81 -, author = "A. Inselberg" -, title = "{$N$}-dimensional graphics, part {I}: lines and hyperplanes" -, type = "Report" -, number = "G320-2711" -, institution = "IBM Sci. Center" -, address = "Los Angeles, CA" -, year = 1981 +, author = "A. Inselberg" +, title = "{$N$}-dimensional graphics, part {I}: lines and hyperplanes" +, type = "Report" +, number = "G320-2711" +, institution = "IBM Sci. Center" +, address = "Los Angeles, CA" +, year = 1981 } @article{i-ppc-85 -, author = "A. Inselberg" -, title = "The plane with parallel coordinates" -, journal = "Visual Comput." -, volume = 1 -, year = 1985 -, pages = "69--91" +, author = "A. Inselberg" +, title = "The plane with parallel coordinates" +, journal = "Visual Comput." +, volume = 1 +, year = 1985 +, pages = "69--91" } @article{icr-capc-87 -, author = "A. Inselberg and T. Chomut and M. Reif" -, title = "Complexity algorithms in parallel coordinates" -, journal = "J. ACM" -, volume = 34 -, year = 1987 -, pages = "765--801" +, author = "A. Inselberg and T. Chomut and M. Reif" +, title = "Complexity algorithms in parallel coordinates" +, journal = "J. ACM" +, volume = 34 +, year = 1987 +, pages = "765--801" } @techreport{ir-cpc-84 -, author = "A. Inselberg and M. Reif" -, title = "Convexity in parallel coordinates" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Univ. California" -, address = "Los Angeles, CA" -, year = 1984 -, update = "98.03 bibrelex" +, author = "A. Inselberg and M. Reif" +, title = "Convexity in parallel coordinates" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Univ. California" +, address = "Los Angeles, CA" +, year = 1984 +, update = "98.03 bibrelex" } @inproceedings{i-cigol-90 -, author = "S. Irani" -, title = "Coloring Inductive Graphs On-Line" -, booktitle = "Proc. 30th FOCS" -, year = 1990 -, pages = "470--479" -, update = "98.07 bibrelex" +, author = "S. Irani" +, title = "Coloring Inductive Graphs On-Line" +, booktitle = "Proc. 30th FOCS" +, year = 1990 +, pages = "470--479" +, update = "98.07 bibrelex" } @inproceedings{ir-cerrp-96 -, author = "Sandy Irani and Prabhakar Raghavan" -, title = "Combinatorial and Experimental Results for Randomized Point Matching Algorithms" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "68--77" -, cites = "cghkkk-gpmem-93, ee-scpps-, fb-rscpm-81, gh-sgh-90, hh-gicv-92, hu-orua-87, hu-rsoa-90, lsw-oraim-88, lw-ghgem-88, lw-eagh-91, w-mborg-90, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Sandy Irani and Prabhakar Raghavan" +, title = "Combinatorial and Experimental Results for Randomized Point Matching Algorithms" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "68--77" +, cites = "cghkkk-gpmem-93, ee-scpps-, fb-rscpm-81, gh-sgh-90, hh-gicv-92, hu-orua-87, hu-rsoa-90, lsw-oraim-88, lw-ghgem-88, lw-eagh-91, w-mborg-90, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @book{i-smp-79 -, author = "?? Iri" -, title = "Survey of mathematical programming" -, editor = "A. Pr{\'e}kopa" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1979 -, update = "98.03 bibrelex" +, author = "?? Iri" +, title = "Survey of mathematical programming" +, editor = "A. Pr{\'e}kopa" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1979 +, update = "98.03 bibrelex" } @techreport{i-fagdp-83 -, author = "M. Iri" -, title = "Fundamental algorithms for geographical data processing" -, type = "Report" -, number = "T-83-1" -, institution = "Oper. Res. Soc. of Japan" -, year = 1983 +, author = "M. Iri" +, title = "Fundamental algorithms for geographical data processing" +, type = "Report" +, number = "T-83-1" +, institution = "Oper. Res. Soc. of Japan" +, year = 1983 } @article{if-umtor-81 -, author = "M. Iri and S. Fujishige" -, title = "Use of matroid theory in operating research, circuits and systems theory" -, journal = "Int. J. Systems Sci." -, volume = 12 -, number = 1 -, year = 1981 -, pages = "27--54" -, update = "98.11 bibrelex" +, author = "M. Iri and S. Fujishige" +, title = "Use of matroid theory in operating research, circuits and systems theory" +, journal = "Int. J. Systems Sci." +, volume = 12 +, number = 1 +, year = 1981 +, pages = "27--54" +, update = "98.11 bibrelex" } @article{imm-hpmwp-83 -, author = "M. Iri and K. Murota and S. Matsui" -, title = "Heuristics for planar minimum-weight perfect matchings" -, journal = "Networks" -, volume = 13 -, year = 1983 -, pages = "67--92" +, author = "M. Iri and K. Murota and S. Matsui" +, title = "Heuristics for planar minimum-weight perfect matchings" +, journal = "Networks" +, volume = 13 +, year = 1983 +, pages = "67--92" } @article{imm-ltaaf-81 -, author = "M. Iri and K. Murota and S. Matsui" -, title = "Linear-time approximation algorithms for finding the minimum-weight perfect matching on a plane" -, journal = "Inform. Process. Lett." -, volume = 12 -, year = 1981 -, pages = "206--209" +, author = "M. Iri and K. Murota and S. Matsui" +, title = "Linear-time approximation algorithms for finding the minimum-weight perfect matching on a plane" +, journal = "Inform. Process. Lett." +, volume = 12 +, year = 1981 +, pages = "206--209" } % I think I corrected it now. % This entry is/was incorrect; LNCS 59 is not that proceedings @inproceedings{imo-fvdaa-83 -, author = "M. Iri and K. Murota and T. Ohya" -, title = "A fast {Voronoi}-diagram algorithm with applications to geographical optimization problems" -, booktitle = "Proc. 11th IFIP Conf." -, series = "Lecture Notes in Control and Information Science" -, volume = 59 -, publisher = "Springer-Verlag" -, year = 1983 -, pages = "253--288" -, update = "95.01 mitchell" +, author = "M. Iri and K. Murota and T. Ohya" +, title = "A fast {Voronoi}-diagram algorithm with applications to geographical optimization problems" +, booktitle = "Proc. 11th IFIP Conf." +, series = "Lecture Notes in Control and Information Science" +, volume = 59 +, publisher = "Springer-Verlag" +, year = 1983 +, pages = "253--288" +, update = "95.01 mitchell" } @inproceedings{imo-goptp-83 -, author = "M. Iri and K. Murota and T. Ohya" -, title = "Geographical optimization problems and their practical solutions" -, booktitle = "Proc. Spring Conf. Oper. Res. Soc. of Japan" -, volume = "C-2" -, year = 1983 -, pages = "92--93" +, author = "M. Iri and K. Murota and T. Ohya" +, title = "Geographical optimization problems and their practical solutions" +, booktitle = "Proc. Spring Conf. Oper. Res. Soc. of Japan" +, volume = "C-2" +, year = 1983 +, pages = "92--93" } @techreport{ir-scstp-92 -, author = "G. Iribarren and M. C. Rivara" -, title = "A study on the classes of similar triangles produced by 4-T-bisection" -, institution = "Dept. of Computer Science, University of Chile" -, year = 1992 -, update = "98.11 bibrelex" +, author = "G. Iribarren and M. C. Rivara" +, title = "A study on the classes of similar triangles produced by 4-T-bisection" +, institution = "Dept. of Computer Science, University of Chile" +, year = 1992 +, update = "98.11 bibrelex" } @article{i-amids-91 -, author = "R. W. Irving" -, title = "On Approximating the Minimum Independent Dominating Set" -, journal = "Inf. Proc. Lett." -, volume = 37 -, year = 1991 -, pages = "197--200" -, update = "98.07 bibrelex" +, author = "R. W. Irving" +, title = "On Approximating the Minimum Independent Dominating Set" +, journal = "Inf. Proc. Lett." +, volume = 37 +, year = 1991 +, pages = "197--200" +, update = "98.07 bibrelex" } @inproceedings{i-tfebc-00 -, author = "Martin Isenburg" -, title = "Triangle Fixer: Edge-Based Connectivity Compression" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "18--23" -, update = "00.03 bibrelex" +, author = "Martin Isenburg" +, title = "Triangle Fixer: Edge-Based Connectivity Compression" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "18--23" +, update = "00.03 bibrelex" } @article{is-srrde-01 -, author = "M. Isenburg and J. Snoeyink" -, title = "Spirale {Reversi}: {Reverse} decoding of the {Edgebreaker} encoding" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "39--52" -, update = "01.11 smid" +, author = "M. Isenburg and J. Snoeyink" +, title = "Spirale {Reversi}: {Reverse} decoding of the {Edgebreaker} encoding" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "39--52" +, update = "01.11 smid" } @inproceedings{is-ffv-00 -, author = "Martin Isenburg and Jack Snoeyink" -, title = "The Face Fixer Video" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "377--378" -, keywords = "video review" -, update = "00.11 jones" +, author = "Martin Isenburg and Jack Snoeyink" +, title = "The Face Fixer Video" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "377--378" +, keywords = "video review" +, update = "00.11 jones" } @mastersthesis{i-ecchs-94 -, author = "M. Ishiguro" -, title = "Evaluation of combinatorial complexity for hypothesis spaces in learning theory with applications" -, school = "Dept. Inform. Sci., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1994 -, keywords = "master thesis" -, update = "98.03 bibrelex" +, author = "M. Ishiguro" +, title = "Evaluation of combinatorial complexity for hypothesis spaces in learning theory with applications" +, school = "Dept. Inform. Sci., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1994 +, keywords = "master thesis" +, update = "98.03 bibrelex" } @inproceedings{i-mlpd-92 -, author = "H. Ishii" -, title = "Minimax location problem with a distance" -, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" -, site = "Kyoto, Japan" -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "H. Ishii" +, title = "Minimax location problem with a distance" +, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" +, site = "Kyoto, Japan" +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @article{ishs-spadc-83 -, author = "M. Ishijama and S.-B. Shin and G. H. Hostetter and J. Sklansky" -, title = "Scan-along polygonal approximation for data compression of electrocardiograms" -, journal = "IEEE Trans. on Biomedical Engg." -, volume = "BME-30" -, number = 11 -, year = 1983 -, pages = "723--729" -, update = "98.07 bibrelex" +, author = "M. Ishijama and S.-B. Shin and G. H. Hostetter and J. Sklansky" +, title = "Scan-along polygonal approximation for data compression of electrocardiograms" +, journal = "IEEE Trans. on Biomedical Engg." +, volume = "BME-30" +, number = 11 +, year = 1983 +, pages = "723--729" +, update = "98.07 bibrelex" } @article{iso-vvd-87 -, author = "S. Isoda and T. Shimonmura and Y. Ono" -, title = "VIPS: A visual Debugger" -, journal = "IEEE Softw." -, volume = 4 -, number = 3 -, year = 1987 -, pages = "8--19" -, keywords = "graph drawing, system" -, update = "96.09 tamassia, 96.04 garg" +, author = "S. Isoda and T. Shimonmura and Y. Ono" +, title = "VIPS: A visual Debugger" +, journal = "IEEE Softw." +, volume = 4 +, number = 3 +, year = 1987 +, pages = "8--19" +, keywords = "graph drawing, system" +, update = "96.09 tamassia, 96.04 garg" } @article{ips-hpgg-82 -, author = "A. Itai and C. H. Papadimitriou and J. L. Szwarcfiter" -, title = "Hamilton paths in grid graphs" -, journal = "SIAM J. Comput." -, volume = 11 -, year = 1982 -, pages = "676--686" -, update = "95.09 mitchell" +, author = "A. Itai and C. H. Papadimitriou and J. L. Szwarcfiter" +, title = "Hamilton paths in grid graphs" +, journal = "SIAM J. Comput." +, volume = 11 +, year = 1982 +, pages = "676--686" +, update = "95.09 mitchell" } @inproceedings{ir-mtard-84 -, author = "A. Itai and M. Rodeh" -, title = "The multi-tree approach to reliability in distributed networks" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "137--147" -, update = "98.11 bibrelex" +, author = "A. Itai and M. Rodeh" +, title = "The multi-tree approach to reliability in distributed networks" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "137--147" +, update = "98.11 bibrelex" } @article{is-mfpn-79 -, author = "A. Itai and Y. Shiloach" -, title = "Maximum flow in planar networks" -, journal = "SIAM J. Comput." -, volume = 8 -, number = 2 -, month = may -, year = 1979 -, pages = "135--150" -, update = "98.03 bibrelex" +, author = "A. Itai and Y. Shiloach" +, title = "Maximum flow in planar networks" +, journal = "SIAM J. Comput." +, volume = 8 +, number = 2 +, month = may +, year = 1979 +, pages = "135--150" +, update = "98.03 bibrelex" } @incollection{ityik-msrdd-95 -, author = "A. Itai and N. Tomioka and M. Yamada and A. Inoue and Y. Kato" -, title = "Molecular superposition for rational drug design" -, editor = "?? Kubingi" -, booktitle = "3D QSAR in Drug Design: Theory, Methods, and Applications" -, publisher = "ESCOM" -, year = 1995 -, update = "98.07 bibrelex" +, author = "A. Itai and N. Tomioka and M. Yamada and A. Inoue and Y. Kato" +, title = "Molecular superposition for rational drug design" +, editor = "?? Kubingi" +, booktitle = "3D QSAR in Drug Design: Theory, Methods, and Applications" +, publisher = "ESCOM" +, year = 1995 +, update = "98.07 bibrelex" } @article{i-aeprd-86 -, author = "G. F. Italiano" -, title = "Amortized Efficiency of a Path Retrieval Data Structure" -, journal = "Theoret. Comput. Sci." -, volume = 48 -, year = 1986 -, pages = "273--281" -, update = "94.01 tamassia" +, author = "G. F. Italiano" +, title = "Amortized Efficiency of a Path Retrieval Data Structure" +, journal = "Theoret. Comput. Sci." +, volume = 48 +, year = 1986 +, pages = "273--281" +, update = "94.01 tamassia" } @article{i-fpded-88 -, author = "G. F. Italiano" -, title = "Finding Paths and Deleting Edges in Directed Acyclic Graphs" -, journal = "Inform. Process. Lett." -, volume = 28 -, number = 1 -, year = 1988 -, pages = "5--11" -, update = "94.01 tamassia" +, author = "G. F. Italiano" +, title = "Finding Paths and Deleting Edges in Directed Acyclic Graphs" +, journal = "Inform. Process. Lett." +, volume = 28 +, number = 1 +, year = 1988 +, pages = "5--11" +, update = "94.01 tamassia" } @inproceedings{ipr-fdptp-93 -, author = "Giuseppe F. Italiano and Johannes A. {La Poutr{\'e}} and Monika H. Rauch" -, title = "Fully Dynamic Planarity Testing in Planar Embedded Graphs" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "212--223" -, update = "00.03 vismara, 95.05 tamassia, 94.01 smid, 93.09 milone+mitchell" +, author = "Giuseppe F. Italiano and Johannes A. {La Poutr{\'e}} and Monika H. Rauch" +, title = "Fully Dynamic Planarity Testing in Planar Embedded Graphs" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "212--223" +, update = "00.03 vismara, 95.05 tamassia, 94.01 smid, 93.09 milone+mitchell" } @inproceedings{iuy-npsip-98 -, author = "H. Ito and H. Uehara and M. Yokayama" -, title = "NP-completeness of stage illumination problem" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" -, site = "Tokyo" -, year = 1998 -, pages = "88--92" -, update = "00.11 smid, 00.07 icking, 99.07 orourke" +, author = "H. Ito and H. Uehara and M. Yokayama" +, title = "NP-completeness of stage illumination problem" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" +, site = "Tokyo" +, year = 1998 +, pages = "88--92" +, update = "00.11 smid, 00.07 icking, 99.07 orourke" } @article{ik-aipue-95 -, author = "T. Itoh and K. Koyamada" -, title = "Automatic isosurface propagation using an extrema graph and sorted boundary cell lists" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 1 -, year = 1995 -, pages = "319--327" -, update = "98.07 bibrelex" +, author = "T. Itoh and K. Koyamada" +, title = "Automatic isosurface propagation using an extrema graph and sorted boundary cell lists" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 1 +, year = 1995 +, pages = "319--327" +, update = "98.07 bibrelex" } @inproceedings{il-eltac-97 -, author = "Claudia Iturriaga and Anna Lubiw" -, title = "Elastic Labels: the Two-Axis Case" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "181--192" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Claudia Iturriaga and Anna Lubiw" +, title = "Elastic Labels: the Two-Axis Case" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "181--192" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{isn-spapr-94 -, author = "M. Iwai and H. Suzuki and T. Nishizeki" -, title = "Shortest path algorithm in the plane with rectilinear polygonal obstacles" -, booktitle = "Proc. SIGAL Workshop" -, month = jul -, year = 1994 -, update = "98.03 bibrelex" +, author = "M. Iwai and H. Suzuki and T. Nishizeki" +, title = "Shortest path algorithm in the plane with rectilinear polygonal obstacles" +, booktitle = "Proc. SIGAL Workshop" +, month = jul +, year = 1994 +, update = "98.03 bibrelex" } @techreport{isn-spprp-95 -, author = "M. Iwai and H. Suzuki and T. Nishizeki" -, title = "Shortest paths in a plane with rectiliinear polygonal obstacles" -, type = "Report" -, institution = "Graduate School of Information Science, Tohoku University, Japan" -, year = "1995??" -, keywords = "shortest paths, L1 metric, shortest path query, rectilinear polygons" -, update = "96.05 efrat, 96.01 mitchell" -, annote = "abstract in English, but paper in Japanese - Submitted to a journal: Institute of Electronics, Information - and Communication Engineers (IEICE), Tokyo" +, author = "M. Iwai and H. Suzuki and T. Nishizeki" +, title = "Shortest paths in a plane with rectiliinear polygonal obstacles" +, type = "Report" +, institution = "Graduate School of Information Science, Tohoku University, Japan" +, year = "1995??" +, keywords = "shortest paths, L1 metric, shortest path query, rectilinear polygons" +, update = "96.05 efrat, 96.01 mitchell" +, annote = "abstract in English, but paper in Japanese + Submitted to a journal: Institute of Electronics, Information + and Communication Engineers (IEICE), Tokyo" } @inproceedings{it-fhcaj-94i -, author = "C. Iwamoto and G. T. Toussaint" -, title = "Finding {Hamiltonian} Circuits in Arrangements of {Jordan} Curves is {NP}-Complete" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "93--98" -, cites = "ans-nchcp-80, c-hc-85, egt-cal-92, egt-eal-93, gjt-phcpn-76, g-hcppc-82, lw-ehppn-93, or-cswvg-91, r-cscsl-87, rit-cscsl-90, t-tpg-56, w-tg-31, k-racpc-72, ZZZ" -, update = "98.11 bibrelex, 95.01 smid, 94.09 jones" +, author = "C. Iwamoto and G. T. Toussaint" +, title = "Finding {Hamiltonian} Circuits in Arrangements of {Jordan} Curves is {NP}-Complete" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "93--98" +, cites = "ans-nchcp-80, c-hc-85, egt-cal-92, egt-eal-93, gjt-phcpn-76, g-hcppc-82, lw-ehppn-93, or-cswvg-91, r-cscsl-87, rit-cscsl-90, t-tpg-56, w-tg-31, k-racpc-72, ZZZ" +, update = "98.11 bibrelex, 95.01 smid, 94.09 jones" } @article{it-fhcaj-94a -, author = "C. Iwamoto and G. T. Toussaint" -, title = "Finding {Hamiltonian} Circuits in Arrangements of {Jordan} Curves is {NP}-Complete" -, journal = "Inform. Process. Lett." -, volume = 52 -, year = 1994 -, pages = "183--189" -, update = "95.01 smid" +, author = "C. Iwamoto and G. T. Toussaint" +, title = "Finding {Hamiltonian} Circuits in Arrangements of {Jordan} Curves is {NP}-Complete" +, journal = "Inform. Process. Lett." +, volume = 52 +, year = 1994 +, pages = "183--189" +, update = "95.01 smid" } @article{i-smdnc-91 -, author = "K. Iwano" -, title = "Strong {Minkowski} decomposition is {NP}-complete" -, journal = "IEICE Trans." -, volume = "E74" -, number = 4 -, year = 1991 -, pages = "653--656" -, update = "96.05 ramkumar" +, author = "K. Iwano" +, title = "Strong {Minkowski} decomposition is {NP}-complete" +, journal = "IEICE Trans." +, volume = "E74" +, number = 4 +, year = 1991 +, pages = "653--656" +, update = "96.05 ramkumar" } @inproceedings{irt-tcpaa-94 -, author = "K. Iwano and P. Raghavan and H. Tamaki" -, title = "The Traveling Cameraman Problem, with Applications to Automatic Optical Inspection" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "29--37" -, update = "98.03 mitchell+smid, 96.05 mitchell" +, author = "K. Iwano and P. Raghavan and H. Tamaki" +, title = "The Traveling Cameraman Problem, with Applications to Automatic Optical Inspection" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "29--37" +, update = "98.03 mitchell+smid, 96.05 mitchell" } @article{is-scpzs-90 -, author = "K. Iwano and K. Steiglitz" -, title = "A semiring on convex polygons and zero-sum cycle problems" -, journal = "SIAM J. Comput." -, volume = 19 -, year = 1990 -, pages = "883--901" +, author = "K. Iwano and K. Steiglitz" +, title = "A semiring on convex polygons and zero-sum cycle problems" +, journal = "SIAM J. Comput." +, volume = 19 +, year = 1990 +, pages = "883--901" } @phdthesis{i-acsdp-90 -, author = "S. Iwanowski" -, title = "Approximate congruence and symmetry detection in the plane" -, type = "Ph.{D}. Thesis" -, school = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, year = 1990 -, keywords = "doctoral thesis" +, author = "S. Iwanowski" +, title = "Approximate congruence and symmetry detection in the plane" +, type = "Ph.{D}. Thesis" +, school = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, year = 1990 +, keywords = "doctoral thesis" } @inproceedings{i-ltata-89 -, author = "S. Iwanowski" -, title = "Linear Time Algorithms for Testing Approximate Congruence in the Plane" -, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 344 -, year = 1989 -, pages = "213--228" -, update = "97.03 gaertner+salinger" +, author = "S. Iwanowski" +, title = "Linear Time Algorithms for Testing Approximate Congruence in the Plane" +, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 344 +, year = 1989 +, pages = "213--228" +, update = "97.03 gaertner+salinger" } @inproceedings{i-taspi-89 -, author = "S. Iwanowski" -, title = "Testing approximate symmetry in the plane is {$NP$}-hard" -, booktitle = "Proc. 17th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1989 -, update = "96.05 agarwal, 93.09 milone+mitchell" +, author = "S. Iwanowski" +, title = "Testing approximate symmetry in the plane is {$NP$}-hard" +, booktitle = "Proc. 17th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1989 +, update = "96.05 agarwal, 93.09 milone+mitchell" } @article{i-taspn-91 -, author = "S. Iwanowski" -, title = "Testing Approximate Symmetry in the Plane is {NP}-Hard" -, journal = "Theoret. Comput. Sci." -, volume = 80 -, year = 1991 -, pages = "227--262" -, update = "97.03 gaertner+salinger" +, author = "S. Iwanowski" +, title = "Testing Approximate Symmetry in the Plane is {NP}-Hard" +, journal = "Theoret. Comput. Sci." +, volume = 80 +, year = 1991 +, pages = "227--262" +, update = "97.03 gaertner+salinger" } @article{iti-ieesu-92 -, author = "M. Iwata and J. Tanida and Y. Ichioka" -, title = "Inference engine for expert system by using optical array logic" -, journal = "Appl. Optics" -, volume = 31 -, number = 26 -, year = 1992 -, pages = "5604--5613" -, update = "98.03 bibrelex" +, author = "M. Iwata and J. Tanida and Y. Ichioka" +, title = "Inference engine for expert system by using optical array logic" +, journal = "Appl. Optics" +, volume = 31 +, number = 26 +, year = 1992 +, pages = "5604--5613" +, update = "98.03 bibrelex" } @inproceedings{it-cbtcc-95 -, author = "M. Iwayama and T. Tokunaga" -, title = "Cluster-Based Text Categorization: {A} Comparison of Category Search Strategies" -, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" -, year = 1995 -, pages = "273--280" -, update = "98.07 agarwal" +, author = "M. Iwayama and T. Tokunaga" +, title = "Cluster-Based Text Categorization: {A} Comparison of Category Search Strategies" +, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" +, year = 1995 +, pages = "273--280" +, update = "98.07 agarwal" } @book{ik-edm-68 -, author = "S. Iyanaga and Y. Kawada" -, title = "Encyclopedic Dictionary of Mathematics" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1968 +, author = "S. Iyanaga and Y. Kawada" +, title = "Encyclopedic Dictionary of Mathematics" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1968 } @book{ie-amrpm-91 -, title = "Autonomous Mobile Robots: Perception, Mapping, and Navigation" -, editor = "S. Sitharama Iyengar and Alberto Elfes" -, publisher = "IEEE Computer Society Press" -, address = "Los Alamitos, CA" -, year = 1991 -, pages = "408--427" +, title = "Autonomous Mobile Robots: Perception, Mapping, and Navigation" +, editor = "S. Sitharama Iyengar and Alberto Elfes" +, publisher = "IEEE Computer Society Press" +, address = "Los Alamitos, CA" +, year = 1991 +, pages = "408--427" } @article{ijrw-rnaul-86 -, author = "S. S. Iyengar and C. C. Jorgensen and S. V. N. Rao and C. R. Weisbin" -, title = "Robot Navigation Algorithms Using Learned Spatial Graphs" -, journal = "Robotica" -, volume = 4 -, year = 1986 -, pages = "93--100" +, author = "S. S. Iyengar and C. C. Jorgensen and S. V. N. Rao and C. R. Weisbin" +, title = "Robot Navigation Algorithms Using Learned Spatial Graphs" +, journal = "Robotica" +, volume = 4 +, year = 1986 +, pages = "93--100" } @inproceedings{i-favdc-88 -, author = "David Izraelevitz" -, title = "Fast Algorithm For {Voronoi} Diagram Calculation Based On Distance Doubling" -, booktitle = "Proceedings: The 2nd Symposium on the Frontiers of Massively Parallel Computations" -, publisher = "IEEE" -, address = "IEEE Service Center, Piscataway, NJ" -, year = 1988 -, pages = "173--176" -, keywords = "Voronoi diagrams, fine-grain parallel computers" -, annote = "Discrete VD on parallel machine." -, abstract = "An efficient algorithm is described for calculation of - the Voronoi diagram over one- and two-dimensional - lattices. The algorithm proceeds by propagating the - location of Voronoi points through the lattice using a - distance-doubling strategy. This algorithm is designed - for implementation on a fine-grain parallel computer - such as the connection machine. It is shown how the - algorithm is extended to calculation of - distance-from-region computations and the use of - nonstandard metrics. Two algorithms are presented for - the calculation of the Voronoi diagram over one- and - two- dimensional lattices. Both algorithms propagate - the explicit location of the nearest Voronoi point - rather than the distance to the point and so are more - accurate than traditional methods. The first algorithm - is based on brushfire propagation while the second - algorithm relies on distance doubling. It is found that - the distance-doubling algorithm is more efficient than - the classical algorithm when at least one Voronoi - polygon is large. It is found that there is little - penalty in using the updated brushfire algorithm over - the traditional algorithm. 6 Refs." +, author = "David Izraelevitz" +, title = "Fast Algorithm For {Voronoi} Diagram Calculation Based On Distance Doubling" +, booktitle = "Proceedings: The 2nd Symposium on the Frontiers of Massively Parallel Computations" +, publisher = "IEEE" +, address = "IEEE Service Center, Piscataway, NJ" +, year = 1988 +, pages = "173--176" +, keywords = "Voronoi diagrams, fine-grain parallel computers" +, annote = "Discrete VD on parallel machine." +, abstract = "An efficient algorithm is described for calculation of + the Voronoi diagram over one- and two-dimensional + lattices. The algorithm proceeds by propagating the + location of Voronoi points through the lattice using a + distance-doubling strategy. This algorithm is designed + for implementation on a fine-grain parallel computer + such as the connection machine. It is shown how the + algorithm is extended to calculation of + distance-from-region computations and the use of + nonstandard metrics. Two algorithms are presented for + the calculation of the Voronoi diagram over one- and + two- dimensional lattices. Both algorithms propagate + the explicit location of the nearest Voronoi point + rather than the distance to the point and so are more + accurate than traditional methods. The first algorithm + is based on brushfire propagation while the second + algorithm relies on distance doubling. It is found that + the distance-doubling algorithm is more efficient than + the classical algorithm when at least one Voronoi + polygon is large. It is found that there is little + penalty in using the updated brushfire algorithm over + the traditional algorithm. 6 Refs." } @article{jmr-drafm-98 -, author = "T. Jabbour and C. Mascle and R. Maranzana" -, title = "A Database for the Representation of Assembly Features in Mechanical Products" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "483--509" -, update = "98.11 devillers" +, author = "T. Jabbour and C. Mascle and R. Maranzana" +, title = "A Database for the Representation of Assembly Features in Mechanical Products" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "483--509" +, update = "98.11 devillers" } @article{jg-gtmag-89 -, author = "D. Jablonowsky and V. A. Guarna" -, title = "{GMB}: {A} Tool for Manipulating and Animating Graph Data Structures" -, journal = "Softw. -- Pract. Exp." -, volume = 19 -, number = 3 -, year = 1989 -, pages = "283--301" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. Jablonowsky and V. A. Guarna" +, title = "{GMB}: {A} Tool for Manipulating and Animating Graph Data Structures" +, journal = "Softw. -- Pract. Exp." +, volume = 19 +, number = 3 +, year = 1989 +, pages = "283--301" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{jt-ottur-80 -, author = "C. Jackins and S. L. Tanimoto" -, title = "Oct-trees and their use in representing $3$-d objects" -, journal = "Comput. Graph. Image Process." -, volume = 14 -, year = 1980 -, pages = "249--270" +, author = "C. Jackins and S. L. Tanimoto" +, title = "Oct-trees and their use in representing $3$-d objects" +, journal = "Comput. Graph. Image Process." +, volume = 14 +, year = 1980 +, pages = "249--270" } @mastersthesis{j-cmtdo-79 -, author = "C. L. Jackins" -, title = "Computer Modeling of three-dimensional objects using oct-trees" -, school = "Univ. Washington" -, address = "Seattle, WA" -, year = 1979 -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "C. L. Jackins" +, title = "Computer Modeling of three-dimensional objects using oct-trees" +, school = "Univ. Washington" +, address = "Seattle, WA" +, year = 1979 +, keywords = "master thesis" +, update = "97.11 bibrelex" } @techreport{jt-otur3-82 -, author = "C. L. Jackins and S. L. Tanimoto" -, title = "Octrees and their use in representing $3$-d objects" -, type = "Technical {Report}" -, number = "82-02-02" -, institution = "Dept. Comput. Sci., Univ. Washington" -, address = "Seattle, WA" -, year = 1982 -, update = "97.11 bibrelex" +, author = "C. L. Jackins and S. L. Tanimoto" +, title = "Octrees and their use in representing $3$-d objects" +, type = "Technical {Report}" +, number = "82-02-02" +, institution = "Dept. Comput. Sci., Univ. Washington" +, address = "Seattle, WA" +, year = 1982 +, update = "97.11 bibrelex" } @inproceedings{jw-opr-96 -, author = "L. Jackson and S. K. Wismath" -, title = "Orthogonal polygon reconstruction" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "44--49" -, update = "96.09 mitchell" +, author = "L. Jackson and S. K. Wismath" +, title = "Orthogonal polygon reconstruction" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "44--49" +, update = "96.09 mitchell" } @inproceedings{j-euimp-89 -, author = "R. Jacob" -, title = "Emerging user-interface media: potentials and challenges - eye tracking" -, booktitle = "Tutorial SIGGRAPH '89" -, year = 1989 -, update = "98.07 bibrelex" +, author = "R. Jacob" +, title = "Emerging user-interface media: potentials and challenges - eye tracking" +, booktitle = "Tutorial SIGGRAPH '89" +, year = 1989 +, update = "98.07 bibrelex" } @article{j-dfaed-41 -, author = "C. G. J. Jacobi" -, title = "De functionibus alternatibus earumque divisione per productum e differentiis elementorum conflatum" -, journal = "J. Reine Angew. Math." -, volume = 22 -, year = 1841 -, pages = "360--371" -, update = "97.11 bibrelex" +, author = "C. G. J. Jacobi" +, title = "De functionibus alternatibus earumque divisione per productum e differentiis elementorum conflatum" +, journal = "J. Reine Angew. Math." +, volume = 22 +, year = 1841 +, pages = "360--371" +, update = "97.11 bibrelex" } @techreport{j-mlccp-90 -, author = "P. Jacobs" -, title = "Minimal Length Curvature Constrained Paths in the Presence of Obstacles" -, type = "Research {Report}" -, number = 90042 -, institution = "LAAS" -, address = "7, av du colonel-Roche 31077 Toulouse Cedex" -, year = 1990 -, update = "95.01 devillers" +, author = "P. Jacobs" +, title = "Minimal Length Curvature Constrained Paths in the Presence of Obstacles" +, type = "Research {Report}" +, number = 90042 +, institution = "LAAS" +, address = "7, av du colonel-Roche 31077 Toulouse Cedex" +, year = 1990 +, update = "95.01 devillers" } @inproceedings{jc-pspmr-89 -, author = "P. Jacobs and J. Canny" -, title = "Planning Smooth Paths for Mobile Robots" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1989 -, pages = "2--7" -, precedes = "jc-pspmr-92" -, update = "98.03 mitchell" +, author = "P. Jacobs and J. Canny" +, title = "Planning Smooth Paths for Mobile Robots" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1989 +, pages = "2--7" +, precedes = "jc-pspmr-92" +, update = "98.03 mitchell" } @incollection{jc-pspmr-92 -, author = "P. Jacobs and J. Canny" -, title = "Planning Smooth Paths for Mobile Robots" -, editor = "Z. Li and J. F. Canny" -, booktitle = "Nonholonomic Motion Planning" -, publisher = "Kluwer Academic Pubishers" -, address = "Norwell, MA" -, year = 1992 -, pages = "271--342" -, succeeds = "jc-pspmr-89" -, update = "98.03 mitchell" +, author = "P. Jacobs and J. Canny" +, title = "Planning Smooth Paths for Mobile Robots" +, editor = "Z. Li and J. F. Canny" +, booktitle = "Nonholonomic Motion Planning" +, publisher = "Kluwer Academic Pubishers" +, address = "Norwell, MA" +, year = 1992 +, pages = "271--342" +, succeeds = "jc-pspmr-89" +, update = "98.03 mitchell" } @techreport{jhcp-pgnto-89 -, author = "P. Jacobs and G. Heinzinger and J. Canny and B. Paden" -, title = "Planning Guaranteed Near-Time-Optimal Trajectories for a Manipulator in a Cluttered Workspace" -, type = "Technical {Report}" -, number = "ESRC 89-20/RAMP 89-15" -, institution = "Engineering Systems Research Center, Univ. California" -, address = "Berkeley, CA" -, month = oct -, year = 1989 -, update = "97.11 bibrelex" +, author = "P. Jacobs and G. Heinzinger and J. Canny and B. Paden" +, title = "Planning Guaranteed Near-Time-Optimal Trajectories for a Manipulator in a Cluttered Workspace" +, type = "Technical {Report}" +, number = "ESRC 89-20/RAMP 89-15" +, institution = "Engineering Systems Research Center, Univ. California" +, address = "Berkeley, CA" +, month = oct +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{jhcp-pgnto-89i -, author = "P. Jacobs and G. Heinzinger and J. Canny and B. Paden" -, title = "Planning Guaranteed Near-Time-Optimal Trajectories in a Cluttered Workspace" -, booktitle = "Internat. Workshop on Sensorial Integration for Industrial Robots: Architectures and Applications" -, site = "Zaragoza, Spain" -, month = nov -, year = 1989 -, update = "97.11 bibrelex" +, author = "P. Jacobs and G. Heinzinger and J. Canny and B. Paden" +, title = "Planning Guaranteed Near-Time-Optimal Trajectories in a Cluttered Workspace" +, booktitle = "Internat. Workshop on Sensorial Integration for Industrial Robots: Architectures and Applications" +, site = "Zaragoza, Spain" +, month = nov +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{jlt-empnm-91 -, author = "P. Jacobs and J.-P. Laumond and M. Taix" -, title = "Efficient motion planners for nonholonomic mobile robots" -, booktitle = "Proc. IEEE/RSJ Internat. Workshop Intell. Robots Syst." -, year = 1991 -, pages = "1229--1235" -, update = "97.11 bibrelex" +, author = "P. Jacobs and J.-P. Laumond and M. Taix" +, title = "Efficient motion planners for nonholonomic mobile robots" +, booktitle = "Proc. IEEE/RSJ Internat. Workshop Intell. Robots Syst." +, year = 1991 +, pages = "1229--1235" +, update = "97.11 bibrelex" } @book{j-ba1-74 -, author = "N. Jacobson" -, title = "Basic Algebra {I}" -, publisher = "W. H. Freeman" -, address = "San Francisco, CA" -, year = 1974 -, precedes = "j-ba1-85" -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "N. Jacobson" +, title = "Basic Algebra {I}" +, publisher = "W. H. Freeman" +, address = "San Francisco, CA" +, year = 1974 +, precedes = "j-ba1-85" +, update = "98.07 bibrelex, 98.03 bibrelex" } @book{j-ba1-85 -, author = "N. Jacobson" -, title = "Basic algebra {I}" -, edition = "2nd" -, publisher = "W. H. Freeman" -, address = "New York, NY" -, year = 1985 -, succeeds = "j-ba1-74" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "N. Jacobson" +, title = "Basic algebra {I}" +, edition = "2nd" +, publisher = "W. H. Freeman" +, address = "New York, NY" +, year = 1985 +, succeeds = "j-ba1-74" +, update = "98.07 bibrelex, 97.11 bibrelex" } @techreport{j-guapd-92 -, author = "W. R. Jacometti" -, title = "GeoLab - um ambiente para desenvolvimento de algoritmos em geometria computacional" -, number = "DCC-IMECC-UNICAMP" -, institution = "Departamento de Ci{\^e}ncia da Computa{\c c}{\~a}o, Universidade Estadual de Campinas" -, address = "Campinas, Brazil" -, year = 1992 -, keywords = "master thesis" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "W. R. Jacometti" +, title = "GeoLab - um ambiente para desenvolvimento de algoritmos em geometria computacional" +, number = "DCC-IMECC-UNICAMP" +, institution = "Departamento de Ci{\^e}ncia da Computa{\c c}{\~a}o, Universidade Estadual de Campinas" +, address = "Campinas, Brazil" +, year = 1992 +, keywords = "master thesis" +, update = "98.11 bibrelex, 98.03 bibrelex" } @techreport{j-acaqt-80 -, author = "K. J. Jacquemin" -, title = "Average case analysis of quad-trees" -, type = "Report" -, number = 8003 -, institution = "Lehrstuhl Inform. III, Rheinisch-Westf{\"a}lischen Tech. Hochschule Aachen" -, address = "Aachen, West Germany" -, year = 1980 +, author = "K. J. Jacquemin" +, title = "Average case analysis of quad-trees" +, type = "Report" +, number = 8003 +, institution = "Lehrstuhl Inform. III, Rheinisch-Westf{\"a}lischen Tech. Hochschule Aachen" +, address = "Aachen, West Germany" +, year = 1980 } @techreport{j-eduaf-82 -, author = "K. J. Jacquemin" -, title = "Effiziente {Datenstrukturen} und {Algorithmen} f{\"u}r ausgew{\"a}hlte mehrdimensionale {Suchprobleme}" -, type = "Manuscript" -, institution = "Lehrstuhl Inform. III, Rheinisch-Westf{\"a}lischen Tech. Hochschule Aachen" -, address = "Aachen, West Germany" -, year = 1982 +, author = "K. J. Jacquemin" +, title = "Effiziente {Datenstrukturen} und {Algorithmen} f{\"u}r ausgew{\"a}hlte mehrdimensionale {Suchprobleme}" +, type = "Manuscript" +, institution = "Lehrstuhl Inform. III, Rheinisch-Westf{\"a}lischen Tech. Hochschule Aachen" +, address = "Aachen, West Germany" +, year = 1982 } @techreport{j-lubac-80 -, author = "K. J. Jacquemin" -, title = "Lower and upper bounds for the average case complexity of quad-trees of arbitrary dimension" -, type = "Report" -, number = 9011 -, institution = "Lehrstuhl Inform. III, Rheinisch-Westf{\"a}lischen Tech. Hochschule Aachen" -, address = "Aachen, West Germany" -, year = 1980 +, author = "K. J. Jacquemin" +, title = "Lower and upper bounds for the average case complexity of quad-trees of arbitrary dimension" +, type = "Report" +, number = 9011 +, institution = "Lehrstuhl Inform. III, Rheinisch-Westf{\"a}lischen Tech. Hochschule Aachen" +, address = "Aachen, West Germany" +, year = 1980 } @incollection{j-cegt-70 -, author = "A. Jacques" -, title = "Constellations et Graphes Topologiques" -, booktitle = "Combinatorial Theory and Applications" -, series = "Colloquia Mathematica Societatis J{\'a}nos Bolyai" -, publisher = "??" -, address = "Budapest" -, year = 1970 -, pages = "657--672" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "A. Jacques" +, title = "Constellations et Graphes Topologiques" +, booktitle = "Combinatorial Theory and Applications" +, series = "Colloquia Mathematica Societatis J{\'a}nos Bolyai" +, publisher = "??" +, address = "Budapest" +, year = 1970 +, pages = "657--672" +, update = "98.11 bibrelex, 98.07 bibrelex" } @inproceedings{jm-ccfps-93 -, author = "S. Jadhav and A. Mukhopadhyay" -, title = "Computing a centerpoint of a finite planar set of points in linear time" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "83--90" -, cites = "c-sdsno-87, csy-khrp-87, e-acg-87, ls-otahs-90, m-aogdc-91, m-apcad-83, m-ltalp-83, m-ptlp-85, yb-cf-61, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "S. Jadhav and A. Mukhopadhyay" +, title = "Computing a centerpoint of a finite planar set of points in linear time" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "83--90" +, cites = "c-sdsno-87, csy-khrp-87, e-acg-87, ls-otahs-90, m-aogdc-91, m-apcad-83, m-ltalp-83, m-ptlp-85, yb-cf-61, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{jm-ccfps-94 -, author = "S. Jadhav and A. Mukhopadhyay" -, title = "Computing a centerpoint of a finite planar set of points in linear time" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "291--312" -, update = "95.01 smid" +, author = "S. Jadhav and A. Mukhopadhyay" +, title = "Computing a centerpoint of a finite planar set of points in linear time" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "291--312" +, update = "95.01 smid" } @inproceedings{jmb-oairs-92 -, author = "S. Jadhav and A. Mukhopadhyay and B. K. Bhattacharya" -, title = "An Optimal Algorithm for the Intersection Radius of a Set of Convex Polygons" -, booktitle = "Proc. 12th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "New Delhi, India" -, year = 1992 -, update = "98.07 agarwal, 93.09 milone+mitchell" +, author = "S. Jadhav and A. Mukhopadhyay and B. K. Bhattacharya" +, title = "An Optimal Algorithm for the Intersection Radius of a Set of Convex Polygons" +, booktitle = "Proc. 12th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "New Delhi, India" +, year = 1992 +, update = "98.07 agarwal, 93.09 milone+mitchell" } @article{jmb-oairs-96 -, author = "S. Jadhav and A. Mukhopadhyay and B. K. Bhattacharya" -, title = "An optimal algorithm for the intersection radius of a set of convex polygons" -, journal = "J. Algorithms" -, volume = 20 -, year = 1996 -, pages = "244--267" -, keywords = "prune and search, optimization" -, update = "98.07 agarwal, 96.05 agarwal+smid" +, author = "S. Jadhav and A. Mukhopadhyay and B. K. Bhattacharya" +, title = "An optimal algorithm for the intersection radius of a set of convex polygons" +, journal = "J. Algorithms" +, volume = 20 +, year = 1996 +, pages = "244--267" +, keywords = "prune and search, optimization" +, update = "98.07 agarwal, 96.05 agarwal+smid" } @inproceedings{jmm-sbq-95 -, author = "H. V. Jagadish and A. O. Mendelzon and T. Milo" -, title = "Similarity-based queries" -, booktitle = "Proc. 14th Annu. ACM Sympos. Principles Database Syst." -, nickname = "PODS '95" -, year = 1995 -, pages = "36--45" -, update = "98.07 bibrelex" +, author = "H. V. Jagadish and A. O. Mendelzon and T. Milo" +, title = "Similarity-based queries" +, booktitle = "Proc. 14th Annu. ACM Sympos. Principles Database Syst." +, nickname = "PODS '95" +, year = 1995 +, pages = "36--45" +, update = "98.07 bibrelex" } @inproceedings{j-lcoma-90 -, author = "H. V. Jagdish" -, title = "Linear clustering of objects with multiple attributes" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1990 -, pages = "332--342" -, update = "97.07 agarwal" +, author = "H. V. Jagdish" +, title = "Linear clustering of objects with multiple attributes" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1990 +, pages = "332--342" +, update = "97.07 agarwal" } @inproceedings{j-oils-90 -, author = "H. V. Jagdish" -, title = "On indexing line segments" -, booktitle = "Proc. 16th VLDB Conference" -, year = 1990 -, pages = "614--625" -, update = "97.07 agarwal" +, author = "H. V. Jagdish" +, title = "On indexing line segments" +, booktitle = "Proc. 16th VLDB Conference" +, year = 1990 +, pages = "614--625" +, update = "97.07 agarwal" } @article{jmsw-uomwi-89 -, author = "B. Jaggi and P. Mani-Levitska and B. Sturmfels and N. White" -, title = "Uniform oriented matroids without the isotopy property" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "97--100" +, author = "B. Jaggi and P. Mani-Levitska and B. Sturmfels and N. White" +, title = "Uniform oriented matroids without the isotopy property" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "97--100" } @article{j-ehdim-90 -, author = "K.-U. Jahn" -, title = "Evaluation of {Hausdorff} distances in interval mathematics" -, journal = "Computing" -, volume = 45 -, year = 1990 -, pages = "69--77" -, update = "97.03 rote" +, author = "K.-U. Jahn" +, title = "Evaluation of {Hausdorff} distances in interval mathematics" +, journal = "Computing" +, volume = 45 +, year = 1990 +, pages = "69--77" +, update = "97.03 rote" } @inproceedings{jsv-pbsss-97 -, author = "Fabrice Jaillet and Behzad Shariat and Denis Vandorpe" -, title = "Periodic {B}--Spline Surface Skinning Of Anatomic Shapes" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "199--204" -, update = "97.11 jones" +, author = "Fabrice Jaillet and Behzad Shariat and Denis Vandorpe" +, title = "Periodic {B}--Spline Surface Skinning Of Anatomic Shapes" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "199--204" +, update = "97.11 jones" } @unpublished{j-leair-93 -, author = "P. Jaillon" -, title = "{LEA}, a lazy exact arithmetic: Implementation and related problems" -, year = 1993 -, note = "Technical Report in preparation, {\'E}cole Nationale Sup{\'e}rieure des Mines de Saint-{\'E}tienne" -, update = "98.11 bibrelex" +, author = "P. Jaillon" +, title = "{LEA}, a lazy exact arithmetic: Implementation and related problems" +, year = 1993 +, note = "Technical Report in preparation, {\'E}cole Nationale Sup{\'e}rieure des Mines de Saint-{\'E}tienne" +, update = "98.11 bibrelex" } @book{jd-acd-88 -, author = "A. K. Jain and R. C. Dubes" -, title = "Algorithms for Clustering Data" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1988 -, update = "98.07 agarwal" +, author = "A. K. Jain and R. C. Dubes" +, title = "Algorithms for Clustering Data" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1988 +, update = "98.07 agarwal" } @book{j-ipa-92 -, author = "J. J\'aJ\'a" -, title = "An Introduction to Parallel Algorithms" -, publisher = "Addison-Wesley" -, address = "Reading, Mass." -, year = 1992 -, update = "96.09 orourke" +, author = "J. J\'aJ\'a" +, title = "An Introduction to Parallel Algorithms" +, publisher = "Addison-Wesley" +, address = "Reading, Mass." +, year = 1992 +, update = "96.09 orourke" } @article{js-pagtp-82 -, author = "J. Ja'Ja' and J. Simon" -, title = "Parallel Algorithms in Graph Theory: Planarity Testing" -, journal = "SIAM J. Comput." -, volume = 11 -, number = 2 -, year = 1982 -, pages = "314--328" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Ja'Ja' and J. Simon" +, title = "Parallel Algorithms in Graph Theory: Planarity Testing" +, journal = "SIAM J. Comput." +, volume = 11 +, number = 2 +, year = 1982 +, pages = "314--328" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{jd-hfdt-99 -, author = "A. James and A. M. Day" -, title = "The Hidden Face Determination Tree" -, journal = "Comput. \& Graphics" -, volume = 23 -, number = 3 -, month = jun -, year = 1999 -, pages = "377--387" -, update = "00.03 held" +, author = "A. James and A. M. Day" +, title = "The Hidden Face Determination Tree" +, journal = "Comput. \& Graphics" +, volume = 23 +, number = 3 +, month = jun +, year = 1999 +, pages = "377--387" +, update = "00.03 held" } @inproceedings{jb-iaem-87 -, author = "A. Jameson and T. Baker" -, title = "Improvements to the aircraft {Euler} method" -, booktitle = "AIAA 25th Aerospace Science Meeting" -, year = 1987 -, note = "Paper AIAA-87-0452" -, update = "98.03 bibrelex" +, author = "A. Jameson and T. Baker" +, title = "Improvements to the aircraft {Euler} method" +, booktitle = "AIAA 25th Aerospace Science Meeting" +, year = 1987 +, note = "Paper AIAA-87-0452" +, update = "98.03 bibrelex" } @phdthesis{j-atag-85 -, author = "J. Jameson" -, title = "Analytic techniques for automated grasp" -, school = "Stanford Univ." -, address = "Stanford, CA" -, year = 1985 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "J. Jameson" +, title = "Analytic techniques for automated grasp" +, school = "Stanford Univ." +, address = "Stanford, CA" +, year = 1985 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @article{j-dt-87 -, author = "R. E. Jamison" -, title = "Direction trees" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "249--254" +, author = "R. E. Jamison" +, title = "Direction trees" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "249--254" } @inproceedings{j-pacca-82 -, author = "R. E. Jamison-Waldner" -, title = "A perspective of abstract convexity: classifying alignments by varieties" -, editor = "D. C. Kay and M. Breen" -, booktitle = "Convexity and Related Combinatorial Geometry, Proc. 2nd University of Oklahoma Conference" -, series = "Lecture Notes in Pure and Applied Mathematics" -, volume = 76 -, publisher = "Marcel Dekker, Inc." -, year = 1982 -, pages = "113--150" -, update = "98.07 bibrelex" +, author = "R. E. Jamison-Waldner" +, title = "A perspective of abstract convexity: classifying alignments by varieties" +, editor = "D. C. Kay and M. Breen" +, booktitle = "Convexity and Related Combinatorial Geometry, Proc. 2nd University of Oklahoma Conference" +, series = "Lecture Notes in Pure and Applied Mathematics" +, volume = 76 +, publisher = "Marcel Dekker, Inc." +, year = 1982 +, pages = "113--150" +, update = "98.07 bibrelex" } @techreport{jp-wcp-93t -, author = "R. Janaardan and F. P. Preparata" -, title = "Widest-corridor problemes" -, type = "Technical Report" -, number = "TR-93-17" -, institution = "Dept. of Computer Science, University of Minnesota" -, address = "Twin Cities" -, month = may -, year = 1993 -, precedes = "jp-wcp-93, jp-wcp-94" -, update = "98.11 bibrelex" +, author = "R. Janaardan and F. P. Preparata" +, title = "Widest-corridor problemes" +, type = "Technical Report" +, number = "TR-93-17" +, institution = "Dept. of Computer Science, University of Minnesota" +, address = "Twin Cities" +, month = may +, year = 1993 +, precedes = "jp-wcp-93, jp-wcp-94" +, update = "98.11 bibrelex" } @inproceedings{j-mwdpp-91 -, author = "R. Janardan" -, title = "On maintaining the width and diameter of a planar point-set online" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "137--149" -, precedes = "j-mwdpp-93, j-mwdpp-93" -, update = "96.09 devillers, 95.01 smid" +, author = "R. Janardan" +, title = "On maintaining the width and diameter of a planar point-set online" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "137--149" +, precedes = "j-mwdpp-93, j-mwdpp-93" +, update = "96.09 devillers, 95.01 smid" } @article{j-mwdpp-93 -, author = "R. Janardan" -, title = "On maintaining the width and diameter of a planar point-set online" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "331--344" -, keywords = "diameter, duality, dynamization, width" -, succeeds = "j-mwdpp-91" -, update = "96.09 devillers, 95.01 smid" +, author = "R. Janardan" +, title = "On maintaining the width and diameter of a planar point-set online" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "331--344" +, keywords = "diameter, duality, dynamization, width" +, succeeds = "j-mwdpp-91" +, update = "96.09 devillers, 95.01 smid" } @article{j-dmmpp-91 -, author = "R. Janardan" -, title = "On the dynamic maintenance of maximal points in the plane" -, journal = "Inform. Process. Lett." -, volume = 40 -, year = 1991 -, pages = "59--64" -, update = "95.01 smid" +, author = "R. Janardan" +, title = "On the dynamic maintenance of maximal points in the plane" +, journal = "Inform. Process. Lett." +, volume = 40 +, year = 1991 +, pages = "59--64" +, update = "95.01 smid" } @article{jl-gisp-93 -, author = "R. Janardan and M. Lopez" -, title = "Generalized intersection searching problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "39--69" -, update = "95.01 smid" +, author = "R. Janardan and M. Lopez" +, title = "Generalized intersection searching problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "39--69" +, update = "95.01 smid" } @inproceedings{jp-wcp-93 -, author = "R. Janardan and F. P. Preparata" -, title = "Widest-corridor problems" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "426--431" -, succeeds = "jp-wcp-93t" -, cites = "cd-kdcp-90, cgl-pgd-85, eg-tsa-89, egs-oplms-86, hm-fwecs-88, jp-wcp-93t, ps-cgi-85, t-sgprc-83, ZZZ" -, update = "01.11 devillers, 98.11 bibrelex, 93.09 milone+mitchell" +, author = "R. Janardan and F. P. Preparata" +, title = "Widest-corridor problems" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "426--431" +, succeeds = "jp-wcp-93t" +, cites = "cd-kdcp-90, cgl-pgd-85, eg-tsa-89, egs-oplms-86, hm-fwecs-88, jp-wcp-93t, ps-cgi-85, t-sgprc-83, ZZZ" +, update = "01.11 devillers, 98.11 bibrelex, 93.09 milone+mitchell" } @article{jp-wcp-94 -, author = "R. Janardan and F. P. Preparata" -, title = "Widest-corridor problems" -, journal = "Nordic J. Comput." -, volume = 1 -, year = 1994 -, pages = "231--245" -, succeeds = "jp-wcp-93t" -, update = "98.11 bibrelex, 95.01 smid" +, author = "R. Janardan and F. P. Preparata" +, title = "Widest-corridor problems" +, journal = "Nordic J. Comput." +, volume = 1 +, year = 1994 +, pages = "231--245" +, succeeds = "jp-wcp-93t" +, update = "98.11 bibrelex, 95.01 smid" } @incollection{jw-mp-97 -, author = "R. Janardan and T. Woo" -, title = "Manufacturing processes" -, chapter = 46 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "851--862" -, update = "97.11 orourke" +, author = "R. Janardan and T. Woo" +, title = "Manufacturing processes" +, chapter = 46 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "851--862" +, update = "97.11 orourke" } @article{jl-rrt-92 -, author = "E. Jansen and W. de Leeuw" -, title = "Recursive ray traversal" -, journal = "Ray Tracing News" -, volume = 5 -, number = 1 -, year = 1992 -, url = "nic.funet.fi:/pub/graphics/misc/RTNews" -, update = "98.07 bibrelex" +, author = "E. Jansen and W. de Leeuw" +, title = "Recursive ray traversal" +, journal = "Ray Tracing News" +, volume = 5 +, number = 1 +, year = 1992 +, url = "nic.funet.fi:/pub/graphics/misc/RTNews" +, update = "98.07 bibrelex" } @article{j-dopct-91 -, author = "F. W. Jansen" -, title = "Depth-Order Point Classification Techniques for {CSG} Display Algorithms" -, journal = "ACM Trans. Graph." -, volume = 10 -, number = 1 -, year = 1991 -, pages = "40--70" -, update = "93.09 goodrich" +, author = "F. W. Jansen" +, title = "Depth-Order Point Classification Techniques for {CSG} Display Algorithms" +, journal = "ACM Trans. Graph." +, volume = 10 +, number = 1 +, year = 1991 +, pages = "40--70" +, update = "93.09 goodrich" } @inproceedings{j-asbpc-98 -, author = "Klaus Jansen" -, title = "An Approximation Scheme for Bin Packing with Conflicts" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "35--46" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "Klaus Jansen" +, title = "An Approximation Scheme for Bin Packing with Conflicts" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "35--46" +, update = "99.03 bibrelex, 98.07 mitchell" } @article{j-sammd-93 -, author = "K. Jansen" -, title = "One strike against the min-max degree triangulation problem" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "107--120" -, update = "96.09 devillers" +, author = "K. Jansen" +, title = "One strike against the min-max degree triangulation problem" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "107--120" +, update = "96.09 devillers" } @inproceedings{j-cmmdt-93 -, author = "Klaus Jansen" -, title = "The complexity of the min-max degree triangulation problem" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "40--43" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Klaus Jansen" +, title = "The complexity of the min-max degree triangulation problem" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "40--43" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{jw-cdccp-93 -, author = "K. Jansen and G. J. Woeginger" -, title = "The complexity of detecting crossingfree configurations in the plane" -, journal = "BIT" -, volume = 33 -, number = 4 -, year = 1993 -, pages = "580--595" -, update = "97.11 bibrelex" +, author = "K. Jansen and G. J. Woeginger" +, title = "The complexity of detecting crossingfree configurations in the plane" +, journal = "BIT" +, volume = 33 +, number = 4 +, year = 1993 +, pages = "580--595" +, update = "97.11 bibrelex" } @techreport{jptw-sgas-90 -, author = "V. Jansen and A. Potthoff and W. Thomas and U. Wermuth" -, title = "A Short Guide to the {AMORE} System" -, number = "90-2" -, institution = "Fachgruppe Informatik, RWTH Aachen" -, year = 1990 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "V. Jansen and A. Potthoff and W. Thomas and U. Wermuth" +, title = "A Short Guide to the {AMORE} System" +, number = "90-2" +, institution = "Fachgruppe Informatik, RWTH Aachen" +, year = 1990 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{jkl-ebncl-98 -, author = "H. Jaouni and M. Khatib and J.-P. Laumond" -, title = "Elastic Bands for Nonholonomic Car-Like Robots: {Algorithms} and Combinatorial Issues" -, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." -, nickname = "WAFR '98" -, year = 1998 -, pages = "to appear" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "H. Jaouni and M. Khatib and J.-P. Laumond" +, title = "Elastic Bands for Nonholonomic Car-Like Robots: {Algorithms} and Combinatorial Issues" +, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." +, nickname = "WAFR '98" +, year = 1998 +, pages = "to appear" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @article{j-ugukk-25 -, author = "V. Jarnik" -, title = "{\"U }ber {Gitterpunkte} und konvexe {Kurven}" -, journal = "Math. Zeitschrift" -, volume = 24 -, year = 1925 -, pages = "500--518" -, update = "97.11 bibrelex" +, author = "V. Jarnik" +, title = "{\"U }ber {Gitterpunkte} und konvexe {Kurven}" +, journal = "Math. Zeitschrift" +, volume = 24 +, year = 1925 +, pages = "500--518" +, update = "97.11 bibrelex" } @inproceedings{j-actgr-89 -, author = "J. W. Jaromczyk" -, title = "Algorithmic and combinatorial techniques for graphs in {$R^{d}$}" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 27 +, author = "J. W. Jaromczyk" +, title = "Algorithmic and combinatorial techniques for graphs in {$R^{d}$}" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 27 } @article{j-ldtat-81 -, author = "J. W. Jaromczyk" -, title = "Linear decision trees are too weak for convex hull problem" -, journal = "Inform. Process. Lett." -, volume = 12 -, year = 1981 -, pages = "138--141" +, author = "J. W. Jaromczyk" +, title = "Linear decision trees are too weak for convex hull problem" +, journal = "Inform. Process. Lett." +, volume = 12 +, year = 1981 +, pages = "138--141" } @inproceedings{j-lbpst-84 -, author = "J. W. Jaromczyk" -, title = "Lower Bounds for Polygon Simplicity Testing and Other Problems" -, booktitle = "Proc. Math. Found. of Computer Science '84" -, publisher = "Springer-Verlag" -, year = 1984 -, pages = "339--347" -, update = "93.09 held" +, author = "J. W. Jaromczyk" +, title = "Lower Bounds for Polygon Simplicity Testing and Other Problems" +, booktitle = "Proc. Math. Found. of Computer Science '84" +, publisher = "Springer-Verlag" +, year = 1984 +, pages = "339--347" +, update = "93.09 held" } @techreport{j-polbm-87 -, author = "J. W. Jaromczyk" -, title = "Proof of {$\Omega(n \log n)$} lower bound for maximal gap problem using slicer transformation approach" -, type = "Report" -, number = "91-87" -, institution = "Dept. Comput. Sci., Univ. Kentucky" -, address = "Lexington, KY" -, year = 1987 -, keywords = "lower bounds" +, author = "J. W. Jaromczyk" +, title = "Proof of {$\Omega(n \log n)$} lower bound for maximal gap problem using slicer transformation approach" +, type = "Report" +, number = "91-87" +, institution = "Dept. Comput. Sci., Univ. Kentucky" +, address = "Lexington, KY" +, year = 1987 +, keywords = "lower bounds" } @inproceedings{jk-gpcbn-95 -, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" -, title = "A Geometric Proof of the Combinatorial Bounds for the Number of Optimal Solutions to the $2$-Center {Euclidean} Problem" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "19--24" -, update = "95.09 jones" +, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" +, title = "A Geometric Proof of the Combinatorial Bounds for the Number of Optimal Solutions to the $2$-Center {Euclidean} Problem" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "19--24" +, update = "95.09 jones" } @inproceedings{jk-nrng-87 -, author = "J. W. Jaromczyk and M. Kowaluk" -, title = "A note on relative neighborhood graphs" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "233--241" -, cites = "e-acg-87, gf-iea-64, l-rtaa-69, lw-vdllm-80, l-tdvdl-80, s-rngam-83, t-egbnl-75, t-dsna-83, t-rngfp-80, ZZZ" -, update = "98.03 bibrelex" +, author = "J. W. Jaromczyk and M. Kowaluk" +, title = "A note on relative neighborhood graphs" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "233--241" +, cites = "e-acg-87, gf-iea-64, l-rtaa-69, lw-vdllm-80, l-tdvdl-80, s-rngam-83, t-egbnl-75, t-dsna-83, t-rngfp-80, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{jk-eaetc-94 -, author = "J. W. Jaromczyk and M. Kowaluk" -, title = "An Efficient Algorithm for the {Euclidean} Two-Center Problem" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "303--311" -, cites = "as-pglp-90, d-ptctm-84, e-acg-87, f-nolnm-61, f-samlp-67, hm-lnta-79, hs-ftp-91, k-sades-91a, ks-ebago-93, m-ltalp-83, rt-em-57, s-qgs-57, sh-cpp-75, v-cbrdf-87, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "J. W. Jaromczyk and M. Kowaluk" +, title = "An Efficient Algorithm for the {Euclidean} Two-Center Problem" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "303--311" +, cites = "as-pglp-90, d-ptctm-84, e-acg-87, f-nolnm-61, f-samlp-67, hm-lnta-79, hs-ftp-91, k-sades-91a, ks-ebago-93, m-ltalp-83, rt-em-57, s-qgs-57, sh-cpp-75, v-cbrdf-87, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex, 94.09 jones, 94.01 jones" } @inproceedings{jk-oicps-96 -, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" -, title = "Orientation Independent Covering of Point Sets in {$R^2$} with Pairs of Rectangles or Optimal Squares" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "77--84" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" +, title = "Orientation Independent Covering of Point Sets in {$R^2$} with Pairs of Rectangles or Optimal Squares" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "77--84" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{jk-rngnn-87 -, author = "J. W. Jaromczyk and M. Kowaluk" -, title = "Relative neighborhood graphs and nearest neighbor pairs in $d$-dimensional space with the metric {$L^{p}$}" -, type = "Report" -, number = "98-87" -, institution = "Dept. Comput. Sci., Univ. Kentucky" -, address = "Lexington, KY" -, year = 1987 +, author = "J. W. Jaromczyk and M. Kowaluk" +, title = "Relative neighborhood graphs and nearest neighbor pairs in $d$-dimensional space with the metric {$L^{p}$}" +, type = "Report" +, number = "98-87" +, institution = "Dept. Comput. Sci., Univ. Kentucky" +, address = "Lexington, KY" +, year = 1987 } @inproceedings{jk-slcop-01 -, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" -, title = "Sets of Lines and Cutting Out Polyhedral Objects" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "183--186" -, update = "01.04 icking" +, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" +, title = "Sets of Lines and Cutting Out Polyhedral Objects" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "183--186" +, update = "01.04 icking" } @inproceedings{jk-spals-88 -, author = "J. W. Jaromczyk and M. Kowaluk" -, title = "Skewed Projections with an Application to Line Stabbing in {$R^3$}" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, organization = "ACM" -, publisher = "ACM Press" -, address = "New York" -, year = 1988 -, pages = "362--370" -, keywords = "image part pattern" -, cites = "ab-eact-87, a-dp-86, ad-ahdsp-87, aw-alts-87, b-mag-69, dgk-htir-63, ds-cpcde-65, emprww-sls-82, e-ftssg-85, es-mnwsn-87, egs-ueplf-87, epss-lebfi-87, et-eaide-85, g-ct-58, hdk-cgp-64, hs-ndssg-86, klz-gpcs-85, scklps-gadss-86, s-pds-74, w-ublo-86, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "J. W. Jaromczyk and M. Kowaluk" +, title = "Skewed Projections with an Application to Line Stabbing in {$R^3$}" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, organization = "ACM" +, publisher = "ACM Press" +, address = "New York" +, year = 1988 +, pages = "362--370" +, keywords = "image part pattern" +, cites = "ab-eact-87, a-dp-86, ad-ahdsp-87, aw-alts-87, b-mag-69, dgk-htir-63, ds-cpcde-65, emprww-sls-82, e-ftssg-85, es-mnwsn-87, egs-ueplf-87, epss-lebfi-87, et-eaide-85, g-ct-58, hdk-cgp-64, hs-ndssg-86, klz-gpcs-85, scklps-gadss-86, s-pds-74, w-ublo-86, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex" } @inproceedings{jk-fwchw-00 -, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" -, title = "The Face-Wise Continuity in Hot Wire Cutting of Polyhedral Sets" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "93--97" -, update = "00.03 bibrelex" +, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" +, title = "The Face-Wise Continuity in Hot Wire Cutting of Polyhedral Sets" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "93--97" +, update = "00.03 bibrelex" } @inproceedings{jk-tlcpp-95 -, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" -, title = "The Two-Line Center Problem from a Polar view: {A} new algorithm and data structure" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "13--25" -, update = "99.11 bibrelex, 99.07 bibrelex, 97.03 agarwal, 96.09 agarwal, 95.05 mitchell" +, author = "Jerzy W. Jaromczyk and Miroslaw Kowaluk" +, title = "The Two-Line Center Problem from a Polar view: {A} new algorithm and data structure" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "13--25" +, update = "99.11 bibrelex, 99.07 bibrelex, 97.03 agarwal, 96.09 agarwal, 95.05 mitchell" } @article{js-rfccg-91 -, author = "J. W. Jaromczyk and G. {\'S}wi{\c a}tek" -, title = "A role of lower semi-continuous functions in combinatorial complexity of geometric problems" -, journal = "J. Complexity" -, volume = "??" -, year = 1991 -, update = "98.07 bibrelex" +, author = "J. W. Jaromczyk and G. {\'S}wi{\c a}tek" +, title = "A role of lower semi-continuous functions in combinatorial complexity of geometric problems" +, journal = "J. Complexity" +, volume = "??" +, year = 1991 +, update = "98.07 bibrelex" } @article{jt-rngtr-92 -, author = "J. W. Jaromczyk and G. T. Toussaint" -, title = "Relative Neighborhood Graphs and Their Relatives" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1502--1517" -, update = "93.09 held" +, author = "J. W. Jaromczyk and G. T. Toussaint" +, title = "Relative Neighborhood Graphs and Their Relatives" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1502--1517" +, update = "93.09 held" } @article{jw-cchfp-94 -, author = "J. W. Jaromczyk and G. W. Wasilkowski" -, title = "Computing convex hull in a floating point arithmetic" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "283--292" -, update = "95.01 smid" +, author = "J. W. Jaromczyk and G. W. Wasilkowski" +, title = "Computing convex hull in a floating point arithmetic" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "283--292" +, update = "95.01 smid" } @inproceedings{jw-nscha-90 -, author = "J. W. Jaromczyk and G. W. Wasilkowski" -, title = "Numerical stability of a convex hull algorithm for simple polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "257--260" -, cites = "e-acg-87, f-smpst-89, g-eadch-72, gy-fchsp-83, l-fchsp-83, ps-cgi-85, ZZZ" -, update = "98.07 bibrelex" +, author = "J. W. Jaromczyk and G. W. Wasilkowski" +, title = "Numerical stability of a convex hull algorithm for simple polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "257--260" +, cites = "e-acg-87, f-smpst-89, g-eadch-72, gy-fchsp-83, l-fchsp-83, ps-cgi-85, ZZZ" +, update = "98.07 bibrelex" } @article{jw-nscha-93 -, author = "J. W. Jaromczyk and G. W. Wasilkowski" -, title = "Numerical stability of a convex hull algorithm for simple polygons" -, journal = "Algorithmica" -, volume = 10 -, year = 1993 -, pages = "457--472" -, update = "95.01 smid" +, author = "J. W. Jaromczyk and G. W. Wasilkowski" +, title = "Numerical stability of a convex hull algorithm for simple polygons" +, journal = "Algorithmica" +, volume = 10 +, year = 1993 +, pages = "457--472" +, update = "95.01 smid" } @inproceedings{j-cshpp-77 -, author = "R. A. Jarvis" -, title = "Computing the shape hull of points in the plane" -, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn. Image Process." -, year = 1977 -, pages = "231--241" +, author = "R. A. Jarvis" +, title = "Computing the shape hull of points in the plane" +, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn. Image Process." +, year = 1977 +, pages = "231--241" } @article{j-ichfs-73 -, author = "R. A. Jarvis" -, title = "On the identification of the convex hull of a finite set of points in the plane" -, journal = "Inform. Process. Lett." -, volume = 2 -, year = 1973 -, pages = "18--21" -, keywords = "designing algorithms, convex hull, two-dimensional, worst-case analysis" -, annote = "$O(n h)$ time" +, author = "R. A. Jarvis" +, title = "On the identification of the convex hull of a finite set of points in the plane" +, journal = "Inform. Process. Lett." +, volume = 2 +, year = 1973 +, pages = "18--21" +, keywords = "designing algorithms, convex hull, two-dimensional, worst-case analysis" +, annote = "$O(n h)$ time" } @inproceedings{j-snnms-78 -, author = "R. A. Jarvis" -, title = "Shared near neighbor maximal spanning trees for cluster analysis" -, booktitle = "Proc. 4th IEEE Internat. Conf. Pattern Recogn." -, site = "Kyoto, Japan" -, year = 1978 -, update = "98.03 bibrelex" +, author = "R. A. Jarvis" +, title = "Shared near neighbor maximal spanning trees for cluster analysis" +, booktitle = "Proc. 4th IEEE Internat. Conf. Pattern Recogn." +, site = "Kyoto, Japan" +, year = 1978 +, update = "98.03 bibrelex" } @inproceedings{jts-oampn-86 -, author = "R. Jayakumar and K. Thulasiraman and M. N. S. Swamy" -, title = "An Optimal Algorithm for Maximal Planarization of Nonplanar Graphs" -, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" -, year = 1986 -, pages = "1237--1240" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Jayakumar and K. Thulasiraman and M. N. S. Swamy" +, title = "An Optimal Algorithm for Maximal Planarization of Nonplanar Graphs" +, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" +, year = 1986 +, pages = "1237--1240" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{jts-oagp-88 -, author = "R. Jayakumar and K. Thulasiraman and M. N. S. Swamy" -, title = "${O}(n^2)$ Algorithms for Graph Planarization" -, number = "CSD-88-01" -, institution = "Department of Computer Science, Concordia University" -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Jayakumar and K. Thulasiraman and M. N. S. Swamy" +, title = "${O}(n^2)$ Algorithms for Graph Planarization" +, number = "CSD-88-01" +, institution = "Department of Computer Science, Concordia University" +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{jts-oagp-89 -, author = "R. Jayakumar and K. Thulasiraman and M. N. S. Swamy" -, title = "${O}(n^2)$ Algorithms for Graph Planarization" -, journal = "IEEE Trans. Comp.-Aided Design" -, volume = 8 -, year = 1989 -, pages = "257--267" -, keywords = "graph drawing, planarization" -, update = "95.05 tamassia" +, author = "R. Jayakumar and K. Thulasiraman and M. N. S. Swamy" +, title = "${O}(n^2)$ Algorithms for Graph Planarization" +, journal = "IEEE Trans. Comp.-Aided Design" +, volume = 8 +, year = 1989 +, pages = "257--267" +, keywords = "graph drawing, planarization" +, update = "95.05 tamassia" } @article{jts-pelta-88 -, author = "R. Jayakumar and K. Thulasiraman and M. N. S. Swamy" -, title = "Planar Embedding: Linear-Time Algorithms for Vertex Placement and Edge Ordering" -, journal = "IEEE Trans. Circuits Syst." -, volume = 35 -, number = 3 -, year = 1988 -, pages = "334--344" -, keywords = "graph drawing" -, update = "96.09 devillers, 93.09 tamassia" +, author = "R. Jayakumar and K. Thulasiraman and M. N. S. Swamy" +, title = "Planar Embedding: Linear-Time Algorithms for Vertex Placement and Edge Ordering" +, journal = "IEEE Trans. Circuits Syst." +, volume = 35 +, number = 3 +, year = 1988 +, pages = "334--344" +, keywords = "graph drawing" +, update = "96.09 devillers, 93.09 tamassia" } @techreport{js-vbrct-87 -, author = "R. Jayaraman and V. Srinivasan" -, title = "Virtual boundary requirements and conditional tolerances in mechanical design" -, type = "Report" -, number = "RC 12942 (\#58050)" -, institution = "Auto. Res. Group, IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1987 +, author = "R. Jayaraman and V. Srinivasan" +, title = "Virtual boundary requirements and conditional tolerances in mechanical design" +, type = "Report" +, number = "RC 12942 (\#58050)" +, institution = "Auto. Res. Group, IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1987 } @article{jnr-dippl-87 -, author = "R. J{\`e}gan and R. Nowakowski and I. Rival" -, title = "The Diagram Invariant Problem for Planar Lattices" -, journal = "Acta Sci. Math. Szeged" -, volume = 51 -, year = 1987 -, pages = "103--121" -, update = "97.11 bibrelex" +, author = "R. J{\`e}gan and R. Nowakowski and I. Rival" +, title = "The Diagram Invariant Problem for Planar Lattices" +, journal = "Acta Sci. Math. Szeged" +, volume = 51 +, year = 1987 +, pages = "103--121" +, update = "97.11 bibrelex" } @inproceedings{jl-rcgs-92 -, author = "E. Jennings and A. Lingas" -, title = "On the Relationships among Constrained Geometric Structures" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "289--298" -, update = "94.09 smid, 93.09 milone+mitchell" +, author = "E. Jennings and A. Lingas" +, title = "On the Relationships among Constrained Geometric Structures" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "289--298" +, update = "94.09 smid, 93.09 milone+mitchell" } @incollection{jl-agtls-93 -, author = "G. F. Jennings and W. J. Lenhart" -, title = "An art gallery theorem for line segments in the plane" -, editor = "G. T. Toussaint" -, booktitle = "Pattern Recognition Letters Special Issue on Computational Geometry" -, month = sep -, year = 1993 -, update = "98.11 bibrelex" +, author = "G. F. Jennings and W. J. Lenhart" +, title = "An art gallery theorem for line segments in the plane" +, editor = "G. T. Toussaint" +, booktitle = "Pattern Recognition Letters Special Issue on Computational Geometry" +, month = sep +, year = 1993 +, update = "98.11 bibrelex" } @inproceedings{j-rcnls-96 -, author = "Henrik Wann Jensen" -, title = "Rendering Caustics on Non-Lambertian Surfaces" -, booktitle = "Proc. Graphics Interface '96" -, site = "Toronto" -, year = 1996 -, pages = "116--121" -, update = "00.11 smid, 00.07 icking, 99.07 orourke" +, author = "Henrik Wann Jensen" +, title = "Rendering Caustics on Non-Lambertian Surfaces" +, booktitle = "Proc. Graphics Interface '96" +, site = "Toronto" +, year = 1996 +, pages = "116--121" +, update = "00.11 smid, 00.07 icking, 99.07 orourke" } @article{j-pvdll-91 -, author = "C.-J. Jeong" -, title = "Parallel {Voronoi} Diagram in ${L}_{1}$ (${L}_{\infty}$) Metric on a Mesh-connected Computer" -, journal = "Parallel Comput." -, volume = 17 -, number = "2--3" -, month = jun -, year = 1991 -, pages = "241--252" -, update = "93.09 held" +, author = "C.-J. Jeong" +, title = "Parallel {Voronoi} Diagram in ${L}_{1}$ (${L}_{\infty}$) Metric on a Mesh-connected Computer" +, journal = "Parallel Comput." +, volume = 17 +, number = "2--3" +, month = jun +, year = 1991 +, pages = "241--252" +, update = "93.09 held" } @article{jl-pgamc-90 -, author = "C. S. Jeong and D. T. Lee" -, title = "Parallel geometric algorithms on a mesh-connected computer" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "155--177" +, author = "C. S. Jeong and D. T. Lee" +, title = "Parallel geometric algorithms on a mesh-connected computer" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "155--177" } @inproceedings{jdh-ucgtd-87 -, author = "R. B. Jerard and R. L. Drysdale and K. Hauck" -, title = "The Uses of Computer Graphics as a Tool for Detecting Errors in Numerical Control Machining of Sculptured Surfaces" -, booktitle = "Proceedings of NCGA's Computer Graphics '87" -, site = "Philadelphia" -, month = mar -, year = 1987 -, note = "To appear" -, update = "98.03 bibrelex" +, author = "R. B. Jerard and R. L. Drysdale and K. Hauck" +, title = "The Uses of Computer Graphics as a Tool for Detecting Errors in Numerical Control Machining of Sculptured Surfaces" +, booktitle = "Proceedings of NCGA's Computer Graphics '87" +, site = "Philadelphia" +, month = mar +, year = 1987 +, note = "To appear" +, update = "98.03 bibrelex" } @inproceedings{jhd-sncms-86 -, author = "R. B. Jerard and K. Hauck and R. L. Drysdale" -, title = "Simulation of Numerical Control Machining of Sculptured Surfaces" -, booktitle = "15th International Symposium on Automative Technology and Automation" -, nickname = "ISATA" -, month = oct -, year = 1986 -, note = "Paper No. 86057" -, update = "98.03 bibrelex" +, author = "R. B. Jerard and K. Hauck and R. L. Drysdale" +, title = "Simulation of Numerical Control Machining of Sculptured Surfaces" +, booktitle = "15th International Symposium on Automative Technology and Automation" +, nickname = "ISATA" +, month = oct +, year = 1986 +, note = "Paper No. 86057" +, update = "98.03 bibrelex" } @article{jk-rbhat-85 -, author = "B. Jeromin and F. K{\"o}rner" -, title = "On the refinement of bounds of heuristic algorithms for the traveling salesman problem" -, journal = "Math. Program." -, volume = 32 -, year = 1985 -, pages = "114--117" -, keywords = "heuristics, approximation" +, author = "B. Jeromin and F. K{\"o}rner" +, title = "On the refinement of bounds of heuristic algorithms for the traveling salesman problem" +, journal = "Math. Program." +, volume = 32 +, year = 1985 +, pages = "114--117" +, keywords = "heuristics, approximation" } @inproceedings{jj-3dlrg-95 -, author = "T. J{\'e}ron and C. Jard" -, title = "{3D} Layout of Reachability Graphs of Communicating Processes" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "25--32" -, keywords = "graph drawing, 3D" -, update = "95.01 tamassia" +, author = "T. J{\'e}ron and C. Jard" +, title = "{3D} Layout of Reachability Graphs of Communicating Processes" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "25--32" +, keywords = "graph drawing, 3D" +, update = "95.01 tamassia" } @article{j-saprm-73 -, author = "R. G. Jeroslow" -, title = "The simplex algorithm with the pivot rule of maximizing criterion improvement" -, journal = "Discrete Math." -, volume = 4 -, year = 1973 -, pages = "367--377" -, update = "97.03 gaertner+salinger" +, author = "R. G. Jeroslow" +, title = "The simplex algorithm with the pivot rule of maximizing criterion improvement" +, journal = "Discrete Math." +, volume = 4 +, year = 1973 +, pages = "367--377" +, update = "97.03 gaertner+salinger" } @inproceedings{j-crpg-82 -, author = "M. Jerrum" -, title = "A Compact Representation for Permutation Groups" -, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1982 -, pages = "126--133" -, update = "97.11 bibrelex" +, author = "M. Jerrum" +, title = "A Compact Representation for Permutation Groups" +, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1982 +, pages = "126--133" +, update = "97.11 bibrelex" } @article{j-crpg-86 -, author = "M. Jerrum" -, title = "A compact representation for permutation groups" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "60--78" +, author = "M. Jerrum" +, title = "A compact representation for permutation groups" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "60--78" } @techreport{j-dsson-87 -, author = "M. Jerrum" -, title = "A data structure for systems of orthogonal, non-overlapping rectangles" -, type = "Report" -, number = "CSR-239-87" -, institution = "Dept. Comput. Sci., Univ. Edinburgh" -, address = "Edinburgh, Scotland" -, year = 1987 +, author = "M. Jerrum" +, title = "A data structure for systems of orthogonal, non-overlapping rectangles" +, type = "Report" +, number = "CSR-239-87" +, institution = "Dept. Comput. Sci., Univ. Edinburgh" +, address = "Edinburgh, Scotland" +, year = 1987 } @techreport{j-cporp-85 -, author = "M. Jerrum" -, title = "Complementary partial orders and rectangle packing" -, type = "Report" -, number = "CSR-190-85" -, institution = "Dept. Comput. Sci., Univ. Edinburgh" -, address = "Edinburgh, Scotland" -, year = 1985 +, author = "M. Jerrum" +, title = "Complementary partial orders and rectangle packing" +, type = "Report" +, number = "CSR-190-85" +, institution = "Dept. Comput. Sci., Univ. Edinburgh" +, address = "Edinburgh, Scotland" +, year = 1985 } @article{jvv-rgcsu-86 -, author = "M. Jerrum and L. Valiant and V. Vazirani" -, title = "Random generation of combinatorial structures from a uniform distribution" -, journal = "Theoret. Comput. Sci." -, volume = 43 -, year = 1986 -, pages = "169--188" -, update = "98.03 bibrelex" +, author = "M. Jerrum and L. Valiant and V. Vazirani" +, title = "Random generation of combinatorial structures from a uniform distribution" +, journal = "Theoret. Comput. Sci." +, volume = 43 +, year = 1986 +, pages = "169--188" +, update = "98.03 bibrelex" } @inproceedings{jjm-asest-01 -, author = "M{\'a}rio Jesus and S{\'e}rgio Jesus and Alberto M{\'a}rquez" -, title = "Approximated Solutions for the {Euclidean} {Steiner} Tree Problem with Large Sets of Points" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "174--177" -, update = "01.04 icking" +, author = "M{\'a}rio Jesus and S{\'e}rgio Jesus and Alberto M{\'a}rquez" +, title = "Approximated Solutions for the {Euclidean} {Steiner} Tree Problem with Large Sets of Points" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "174--177" +, update = "01.04 icking" } @inproceedings{je-sppi-94 -, author = "Yan-Bin Jia and Michael Erdmann" -, title = "Sensing Polygon Poses by Inscription" -, booktitle = "Proc. 1994 IEEE Internat. Conf. Robot. Autom." -, publisher = "IEEE Computer Society" -, year = 1994 -, pages = "1642--1649" -, keywords = "probing, point probes, part orientation" -, update = "96.09 romanik" +, author = "Yan-Bin Jia and Michael Erdmann" +, title = "Sensing Polygon Poses by Inscription" +, booktitle = "Proc. 1994 IEEE Internat. Conf. Robot. Autom." +, publisher = "IEEE Computer Society" +, year = 1994 +, pages = "1642--1649" +, keywords = "probing, point probes, part orientation" +, update = "96.09 romanik" } @inproceedings{je-csps-94 -, author = "Yan-Bin Jia and Michael Erdmann" -, title = "The Complexity of Sensing by Point Sampling" -, booktitle = "Proc. 1st Workshop Algorithmic Found. Robot." -, publisher = "A.~K. Peters" -, address = "Wellesley, MA" -, year = 1995 -, pages = "" -, keywords = "probing, point probes, NP-complete" -, update = "98.07 agarwal, 96.09 romanik" +, author = "Yan-Bin Jia and Michael Erdmann" +, title = "The Complexity of Sensing by Point Sampling" +, booktitle = "Proc. 1st Workshop Algorithmic Found. Robot." +, publisher = "A.~K. Peters" +, address = "Wellesley, MA" +, year = 1995 +, pages = "" +, keywords = "probing, point probes, NP-complete" +, update = "98.07 agarwal, 96.09 romanik" } @inproceedings{jw-assst-94 -, author = "T. Jiang and L. Wang" -, title = "An Approximation Scheme for Some {Steiner} Tree Problems in the Plane" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "414--422" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" +, author = "T. Jiang and L. Wang" +, title = "An Approximation Scheme for Some {Steiner} Tree Problems in the Plane" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "414--422" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" } @article{jyb-drisc-96 -, author = "X. Jiang and K. Yu and H. Bunke" -, title = "Detection of Rotational and Involutional Symmetries and Congruity of Polyhedra" -, journal = "Visual Comput." -, volume = 12 -, number = 4 -, year = 1996 -, pages = "193--201" -, update = "96.09 held" +, author = "X. Jiang and K. Yu and H. Bunke" +, title = "Detection of Rotational and Involutional Symmetries and Congruity of Polyhedra" +, journal = "Visual Comput." +, volume = 12 +, number = 4 +, year = 1996 +, pages = "193--201" +, update = "96.09 held" } @inproceedings{jb-dspao-91 -, author = "Xiao-Yi Jiang and Horst Bunke" -, title = "Determination of the symmetries of polyhedra and an application to object recognition" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "113--121" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." -, abstract = "In this paper we present a simple and efficient algorithm +, author = "Xiao-Yi Jiang and Horst Bunke" +, title = "Determination of the symmetries of polyhedra and an application to object recognition" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "113--121" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." +, abstract = "In this paper we present a simple and efficient algorithm for determining the rotational symmetries of polyhedral objects in $O(m^2)$ time using $O(m)$ space where $m$ represents the number of edges of the object. @@ -82908,3542 +82908,3542 @@ @inproceedings{jb-dspao-91 } @article{jabccpw-ifemp-93 -, author = "R. A. Jinkerson and S. L. Abrams and L. Bardis and C. Chryssostomidis and A. Cl{\'e}ment and N. M. Patrikalakis and F.-E. Wolter" -, title = "Inspection and Feature Extraction of Marine Propellers" -, journal = "Journal of Ship Production" -, volume = 9 -, number = 2 -, year = 1993 -, pages = "88--106" -, update = "95.05 abrams" +, author = "R. A. Jinkerson and S. L. Abrams and L. Bardis and C. Chryssostomidis and A. Cl{\'e}ment and N. M. Patrikalakis and F.-E. Wolter" +, title = "Inspection and Feature Extraction of Marine Propellers" +, journal = "Journal of Ship Production" +, volume = 9 +, number = 2 +, year = 1993 +, pages = "88--106" +, update = "95.05 abrams" } @article{j-3dtlt-89 -, author = "B. Joe" -, title = "3-Dimensional Triangulations from Local Transformations" -, journal = "SIAM J. Sci. Statist. Comput." -, volume = 10 -, number = 4 -, year = 1989 -, pages = "718--741" -, annote = "Considers 3D DT and max-min solid angle criterion. - Shows 3D DT has local optimality property, but - switchings will not necessarily converge to DT. - Conjectures that switchings based on insertion - algorithm give DT. Experiments with variations on - switching order." +, author = "B. Joe" +, title = "3-Dimensional Triangulations from Local Transformations" +, journal = "SIAM J. Sci. Statist. Comput." +, volume = 10 +, number = 4 +, year = 1989 +, pages = "718--741" +, annote = "Considers 3D DT and max-min solid angle criterion. + Shows 3D DT has local optimality property, but + switchings will not necessarily converge to DT. + Conjectures that switchings based on insertion + algorithm give DT. Experiments with variations on + switching order." } @techreport{j-ckddt-93 -, author = "Barry Joe" -, title = "Construction of $k$-dimensional {Delaunay} triangulations using local transformations" -, institution = "University of Alberta" -, address = "Edmonton, Alberta, Canada" -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "Barry Joe" +, title = "Construction of $k$-dimensional {Delaunay} triangulations using local transformations" +, institution = "University of Alberta" +, address = "Edmonton, Alberta, Canada" +, year = 1993 +, update = "93.09 milone+mitchell" } @article{j-ctddt-91 -, author = "B. Joe" -, title = "Construction of Three-Dimensional {Delaunay} Triangulations Using Local Transformations" -, journal = "Comput. Aided Geom. Design" -, volume = 8 -, number = 2 -, month = may -, year = 1991 -, pages = "123--142" -, update = "93.09 held" +, author = "B. Joe" +, title = "Construction of Three-Dimensional {Delaunay} Triangulations Using Local Transformations" +, journal = "Comput. Aided Geom. Design" +, volume = 8 +, number = 2 +, month = may +, year = 1991 +, pages = "123--142" +, update = "93.09 held" } @techreport{j-ctdiq-93 -, author = "Barry Joe" -, title = "Construction of three-dimensional improved-quality triangulations using local transformations" -, institution = "University of Alberta" -, address = "Edmonton, Alberta, Canada" -, month = jul -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "Barry Joe" +, title = "Construction of three-dimensional improved-quality triangulations using local transformations" +, institution = "University of Alberta" +, address = "Edmonton, Alberta, Canada" +, month = jul +, year = 1993 +, update = "93.09 milone+mitchell" } @techreport{j-dtmcp-84 -, author = "B. Joe" -, title = "Delaunay triangular meshes in convex polygons" -, type = "Report" -, number = "CS-84-15" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1984 -, keywords = "finite element method, mesh generation, numerical analysis, decomposition, Delaunay triangulations" -, precedes = "j-dtmcp-86" +, author = "B. Joe" +, title = "Delaunay triangular meshes in convex polygons" +, type = "Report" +, number = "CS-84-15" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1984 +, keywords = "finite element method, mesh generation, numerical analysis, decomposition, Delaunay triangulations" +, precedes = "j-dtmcp-86" } @article{j-dtmcp-86 -, author = "B. Joe" -, title = "{Delaunay} Triangular Meshes in Convex Polygons" -, journal = "SIAM J. Sci. Statist. Comput." -, volume = 7 -, number = 2 -, year = 1986 -, pages = "514--539" -, succeeds = "j-dtmcp-84" -, annote = "Finds a Delaunay Triangulation of a convex polygon. - Extra points are added on a semiregular grid and on - boundary. Hard part is strip around boundary. Initial - triangle constructed by a ``walk'' method, improved by - switchings." +, author = "B. Joe" +, title = "{Delaunay} Triangular Meshes in Convex Polygons" +, journal = "SIAM J. Sci. Statist. Comput." +, volume = 7 +, number = 2 +, year = 1986 +, pages = "514--539" +, succeeds = "j-dtmcp-84" +, annote = "Finds a Delaunay Triangulation of a convex polygon. + Extra points are added on a semiregular grid and on + boundary. Hard part is strip around boundary. Initial + triangle constructed by a ``walk'' method, improved by + switchings." } @article{j-dvmms-91 -, author = "Barry Joe" -, title = "{Delaunay} Versus Max-Min Solid Angle Triangulations For Three-Dimensional Mesh Generation" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 31 -, number = 5 -, month = apr -, year = 1991 -, pages = "987--997" -, keywords = "mesh generation, Delaunay triangulations" -, annote = "Builds 3D DT by incremental flip. Then flips to - maximize minimum solid angle. Max-min seems to give - better shapes." -, abstract = "The Delaunay triangulation has been used in several - methods for generating finite element tetrahedral - meshes in three-dimensional polyhedral regions. Other - types of three-dimensional triangulations are possible, - such as a triangulation satisfying a local max-min - solid angle criterion. In this paper, we present - experimental results to show that max-min solid angle - triangulations are better than Delaunay triangulations - for finite element tetrahedral meshes, since the former - type of triangulations contains tetrahedra of better - shape than the latter type. We also describe how mesh - points are generated and triangulated in our - tetrahedral mesh generation method. (Author abstract) - 16 Refs." +, author = "Barry Joe" +, title = "{Delaunay} Versus Max-Min Solid Angle Triangulations For Three-Dimensional Mesh Generation" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 31 +, number = 5 +, month = apr +, year = 1991 +, pages = "987--997" +, keywords = "mesh generation, Delaunay triangulations" +, annote = "Builds 3D DT by incremental flip. Then flips to + maximize minimum solid angle. Max-min seems to give + better shapes." +, abstract = "The Delaunay triangulation has been used in several + methods for generating finite element tetrahedral + meshes in three-dimensional polyhedral regions. Other + types of three-dimensional triangulations are possible, + such as a triangulation satisfying a local max-min + solid angle criterion. In this paper, we present + experimental results to show that max-min solid angle + triangulations are better than Delaunay triangulations + for finite element tetrahedral meshes, since the former + type of triangulations contains tetrahedra of better + shape than the latter type. We also describe how mesh + points are generated and triangulated in our + tetrahedral mesh generation method. (Author abstract) + 16 Refs." } @techreport{j-fetcr-84 -, author = "B. Joe" -, title = "Finite element triangulation of complex regions using computational geometry" -, type = "Report" -, number = "CS-84-19" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1984 +, author = "B. Joe" +, title = "Finite element triangulation of complex regions using computational geometry" +, type = "Report" +, number = "CS-84-19" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1984 } @article{j-gspgm-91 -, author = "B. Joe" -, title = "Geompack. {A} Software Package For The Generation Of Meshes Using Geometric Algorithms" -, journal = "Advances in Engineering Software and Workstations" -, volume = 13 -, number = "5--6" -, month = sep -, year = 1991 -, pages = "325--331" -, keywords = "geompack computer software, mesh generation software, geometric algorithms, Delaunay triangulation, visibility polygons" -, annote = "2D and 3D triangulations via insertion flip alg. - Vertices are bin sorted in $\sqrt(n)$ bins." -, abstract = "We describe the mathematical software package - GEOMPACK, which contains standard Fortran 77 routines - for the generation of two-dimensional triangular and - three-dimensional tetrahedral finite element meshes - using efficient geometric algorithms. This package - results from our research into mesh generation and - geometric algorithms. It contains routines for - constructing two- and three-dimensional Delaunay - triangulations, decomposing a general polygonal region - into simple or convex polygons, constructing the - visibility polygon of a simple polygon from a - viewpoint, and other geometric algorithms, from which - our mesh generation method is built and others can be - implemented. Our method generates meshes in polygonal - or polyhedral regions specified by their boundary - representation and possible interfaces between - subregions. (Author abstract) 15 Refs." +, author = "B. Joe" +, title = "Geompack. {A} Software Package For The Generation Of Meshes Using Geometric Algorithms" +, journal = "Advances in Engineering Software and Workstations" +, volume = 13 +, number = "5--6" +, month = sep +, year = 1991 +, pages = "325--331" +, keywords = "geompack computer software, mesh generation software, geometric algorithms, Delaunay triangulation, visibility polygons" +, annote = "2D and 3D triangulations via insertion flip alg. + Vertices are bin sorted in $\sqrt(n)$ bins." +, abstract = "We describe the mathematical software package + GEOMPACK, which contains standard Fortran 77 routines + for the generation of two-dimensional triangular and + three-dimensional tetrahedral finite element meshes + using efficient geometric algorithms. This package + results from our research into mesh generation and + geometric algorithms. It contains routines for + constructing two- and three-dimensional Delaunay + triangulations, decomposing a general polygonal region + into simple or convex polygons, constructing the + visibility polygon of a simple polygon from a + viewpoint, and other geometric algorithms, from which + our mesh generation method is built and others can be + implemented. Our method generates meshes in polygonal + or polyhedral regions specified by their boundary + representation and possible interfaces between + subregions. (Author abstract) 15 Refs." } @techreport{j-gspgm-93 -, author = "Barry Joe" -, title = "GEOMPACK: A software package for the generation of meshes using geometric algorithms" -, institution = "University of Alberta" -, address = "Edmonton, Alberta, Canada" -, month = jul -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "Barry Joe" +, title = "GEOMPACK: A software package for the generation of meshes using geometric algorithms" +, institution = "University of Alberta" +, address = "Edmonton, Alberta, Canada" +, month = jul +, year = 1993 +, update = "93.09 milone+mitchell" } @article{j-ocltv-90 -, author = "B. Joe" -, title = "On the correctness of a linear-time visibility polygon algorithm" -, journal = "Internat. J. Comput. Math." -, volume = 32 -, year = 1990 -, pages = "155--172" -, update = "97.03 smid+icking" +, author = "B. Joe" +, title = "On the correctness of a linear-time visibility polygon algorithm" +, journal = "Internat. J. Comput. Math." +, volume = 32 +, year = 1990 +, pages = "155--172" +, update = "97.03 smid+icking" } @article{j-qmgpr-95 -, author = "B. Joe" -, title = "Quadrilateral mesh generation in polygonal regions" -, journal = "Comput. Aided Design" -, volume = 27 -, year = 1995 -, pages = "209--222" -, update = "98.07 bibrelex" +, author = "B. Joe" +, title = "Quadrilateral mesh generation in polygonal regions" +, journal = "Comput. Aided Design" +, volume = 27 +, year = 1995 +, pages = "209--222" +, update = "98.07 bibrelex" } @techreport{j-tdbct-93 -, author = "Barry Joe" -, title = "Three-dimensional boundary-constrained triangulations" -, institution = "University of Alberta" -, address = "Edmonton, Alberta, Canada" -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "Barry Joe" +, title = "Three-dimensional boundary-constrained triangulations" +, institution = "University of Alberta" +, address = "Edmonton, Alberta, Canada" +, year = 1993 +, update = "93.09 milone+mitchell" } @techreport{js-acpvp-87 -, author = "B. Joe and R. B. Simpson" -, title = "Algorithms and correctness proofs for visibility polygon computations" -, type = "Report" -, number = "CS-87-03" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1987 -, keywords = "visibility, hidden line/surface elimination" +, author = "B. Joe and R. B. Simpson" +, title = "Algorithms and correctness proofs for visibility polygon computations" +, type = "Report" +, number = "CS-87-03" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1987 +, keywords = "visibility, hidden line/surface elimination" } @article{js-clvpa-87 -, author = "B. Joe and R. B. Simpson" -, title = "Correction to {Lee}'s visibility polygon algorithm" -, journal = "BIT" -, volume = 27 -, year = 1987 -, pages = "458--473" +, author = "B. Joe and R. B. Simpson" +, title = "Correction to {Lee}'s visibility polygon algorithm" +, journal = "BIT" +, volume = 27 +, year = 1987 +, pages = "458--473" } @techreport{js-fetcr-?? -, author = "B. Joe and R. B. Simpson" -, title = "Finite element triangulation of complex regions" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, ON" -, year = "??" +, author = "B. Joe and R. B. Simpson" +, title = "Finite element triangulation of complex regions" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, ON" +, year = "??" } @article{js-tmrcs-86 -, author = "B. Joe and R. B. Simpson" -, title = "Triangular meshes for regions of complicated shape" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 23 -, year = 1986 -, pages = "751--778" -, keywords = "finite element method, mesh generation, numerical analysis, decomposition, multiply-connected" +, author = "B. Joe and R. B. Simpson" +, title = "Triangular meshes for regions of complicated shape" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 23 +, year = 1986 +, pages = "751--778" +, keywords = "finite element method, mesh generation, numerical analysis, decomposition, multiply-connected" } @techreport{js-vspp-85 -, author = "B. Joe and R. B. Simpson" -, title = "Visibility of a simple polygon from a point" -, type = "Report" -, number = "CS-85-38" -, institution = "Dept. Math. Comput. Sci., Drexel Univ." -, address = "Philadelphia, PA" -, year = 1985 -, keywords = "visibility, hidden line/surface elimination, algorithm correctness" +, author = "B. Joe and R. B. Simpson" +, title = "Visibility of a simple polygon from a point" +, type = "Report" +, number = "CS-85-38" +, institution = "Dept. Math. Comput. Sci., Drexel Univ." +, address = "Philadelphia, PA" +, year = 1985 +, keywords = "visibility, hidden line/surface elimination, algorithm correctness" } @techreport{jw-dcvdd-88 -, author = "B. Joe and C. Wang" -, title = "Duality constrained {Voronoi} diagrams and {Delaunay} triangulation of a set of line segments" -, type = "Technical {Report}" -, institution = "Memorial Univ. of Newfoundland" -, year = 1988 -, update = "98.07 bibrelex" +, author = "B. Joe and C. Wang" +, title = "Duality constrained {Voronoi} diagrams and {Delaunay} triangulation of a set of line segments" +, type = "Technical {Report}" +, institution = "Memorial Univ. of Newfoundland" +, year = 1988 +, update = "98.07 bibrelex" } @article{jss-pccrp-77 -, author = "L. S. Joel and D. R. Shier and M. L. Stein" -, title = "Planes, Cubes and Center-Representable Polytopes" -, journal = "Amer. Math. Monthly" -, volume = 84 -, year = 1977 -, pages = "360--363" -, update = "94.05 aich" +, author = "L. S. Joel and D. R. Shier and M. L. Stein" +, title = "Planes, Cubes and Center-Representable Polytopes" +, journal = "Amer. Math. Monthly" +, volume = 84 +, year = 1977 +, pages = "360--363" +, update = "94.05 aich" } @article{j-sadki-74 -, author = "A. Joffe" -, title = "On a set of almost deterministic k-independent random variables" -, journal = "Ann. Probab." -, volume = 2 -, year = 1974 -, pages = "161--162" -, update = "96.09 orourke" +, author = "A. Joffe" +, title = "On a set of almost deterministic k-independent random variables" +, journal = "Ann. Probab." +, volume = 2 +, year = 1974 +, pages = "161--162" +, update = "96.09 orourke" } @article{jg-sab3d-83 -, author = "G. H. Johansen and C. Gram" -, title = "A simple algorithm for building the $3$-d convex hull" -, journal = "BIT" -, volume = 23 -, year = 1983 -, pages = "146--160" +, author = "G. H. Johansen and C. Gram" +, title = "A simple algorithm for building the $3$-d convex hull" +, journal = "BIT" +, volume = 23 +, year = 1983 +, pages = "146--160" } @techreport{j-wdmim-97 -, author = "Peter Johansson" -, title = "On a Weighted Distance Model for Injection Moulding" -, type = "Link{\"o}ping Studies in Science and Technology, Thesis No. 604" -, number = "LiU-TEK-LIC-1997:05" -, institution = "Division of Applied Mathematics, Link{\"o}ping University" -, address = "Link{\"o}ping, Sweden" -, month = feb -, year = 1997 -, keywords = "shortest paths, injection molding, weighted region problem" -, update = "98.03 mitchell" -, annote = "Licentiate thesis" +, author = "Peter Johansson" +, title = "On a Weighted Distance Model for Injection Moulding" +, type = "Link{\"o}ping Studies in Science and Technology, Thesis No. 604" +, number = "LiU-TEK-LIC-1997:05" +, institution = "Division of Applied Mathematics, Link{\"o}ping University" +, address = "Link{\"o}ping, Sweden" +, month = feb +, year = 1997 +, keywords = "shortest paths, injection molding, weighted region problem" +, update = "98.03 mitchell" +, annote = "Licentiate thesis" } @article{j-episc-48 -, author = "F. John" -, title = "Extremum problems with inequalities as subsidary conditions" -, journal = "Courant Anniversary" -, volume = "??" -, year = 1948 -, pages = "187--204" -, update = "97.11 bibrelex" +, author = "F. John" +, title = "Extremum problems with inequalities as subsidary conditions" +, journal = "Courant Anniversary" +, volume = "??" +, year = 1948 +, pages = "187--204" +, update = "97.11 bibrelex" } @inproceedings{j-ttvhs-93 -, author = "B. Johnson" -, title = "TreeViz: TreeMap Visualization of Hierarchically Structured Information" -, booktitle = "Proc. ACM Conf. on Human Factors in Computing Systems" -, nickname = "CHI" -, year = 1993 -, pages = "369--370" -, keywords = "graph drawing, planar" -, update = "96.09 tamassia, 96.04 garg" +, author = "B. Johnson" +, title = "TreeViz: TreeMap Visualization of Hierarchically Structured Information" +, booktitle = "Proc. ACM Conf. on Human Factors in Computing Systems" +, nickname = "CHI" +, year = 1993 +, pages = "369--370" +, keywords = "graph drawing, planar" +, update = "96.09 tamassia, 96.04 garg" } @article{js-tmsat-91 -, author = "B. Johnson and B. Shneiderman" -, title = "Tree-Maps: A Space-Filling Approach to the Visualization of Hierarchical Information Systems" -, journal = "IEEE Visualization" -, volume = "??" -, year = 1991 -, keywords = "graph drawing, planar" -, update = "96.09 tamassia, 96.04 garg" +, author = "B. Johnson and B. Shneiderman" +, title = "Tree-Maps: A Space-Filling Approach to the Visualization of Hierarchical Information Systems" +, journal = "IEEE Visualization" +, volume = "??" +, year = 1991 +, keywords = "graph drawing, planar" +, update = "96.09 tamassia, 96.04 garg" } @book{j-nspde-87 -, author = "C. Johnson" -, title = "Numerical solution of partial differential equations by the finite element method" -, publisher = "Cambridge University Press" -, year = 1987 -, update = "97.11 bibrelex" +, author = "C. Johnson" +, title = "Numerical solution of partial differential equations by the finite element method" +, publisher = "Cambridge University Press" +, year = 1987 +, update = "97.11 bibrelex" } @article{j-pqiqo-82 -, author = "D. B. Johnson" -, title = "A priority queue in which initialization and queue operations take $O(\log\log D)$ time" -, journal = "Math. Syst. Theory" -, volume = "??" -, year = 1982 -, pages = "295--309" -, update = "97.11 bibrelex" +, author = "D. B. Johnson" +, title = "A priority queue in which initialization and queue operations take $O(\log\log D)$ time" +, journal = "Math. Syst. Theory" +, volume = "??" +, year = 1982 +, pages = "295--309" +, update = "97.11 bibrelex" } @article{jm-sktex-78 -, author = "D. B. Johnson and T. Mizoguchi" -, title = "Selecting the $k$-th element in {$X+Y$} and {$X_{1}+X_{2} + ... +X_{m}$}" -, journal = "SIAM J. Comput." -, volume = 7 -, year = 1978 -, pages = "147--153" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "D. B. Johnson and T. Mizoguchi" +, title = "Selecting the $k$-th element in {$X+Y$} and {$X_{1}+X_{2} + ... +X_{m}$}" +, journal = "SIAM J. Comput." +, volume = 7 +, year = 1978 +, pages = "147--153" +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{j-aacp-74 -, author = "D. S. Johnson" -, title = "Approximation algorithms for combinatorial problems" -, journal = "J. Comput. Syst. Sci." -, volume = 9 -, year = 1974 -, pages = "256--278" +, author = "D. S. Johnson" +, title = "Approximation algorithms for combinatorial problems" +, journal = "J. Comput. Syst. Sci." +, volume = 9 +, year = 1974 +, pages = "256--278" } @article{j-nccog-82 -, author = "D. S. Johnson" -, title = "The {NP}-Completeness Column: an Ongoing Guide" -, journal = "J. Algorithms" -, volume = 3 -, number = 1 -, year = 1982 -, pages = "89--99" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. S. Johnson" +, title = "The {NP}-Completeness Column: an Ongoing Guide" +, journal = "J. Algorithms" +, volume = 3 +, number = 1 +, year = 1982 +, pages = "89--99" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{j-nccog-84 -, author = "D. S. Johnson" -, title = "The {NP}-Completeness Column: an Ongoing Guide" -, journal = "J. Algorithms" -, volume = 5 -, number = 2 -, year = 1984 -, pages = "147--160" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. S. Johnson" +, title = "The {NP}-Completeness Column: an Ongoing Guide" +, journal = "J. Algorithms" +, volume = 5 +, number = 2 +, year = 1984 +, pages = "147--160" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{jdugg-wcpbs-74 -, author = "D. S. Johnson and A. Demers and J. D. Ullmann and M. R. Garey and R. L. Graham" -, title = "Worst-case performance bounds for simple one-dimensional packing algorithms" -, journal = "SIAM J. Comput." -, volume = 3 -, year = 1974 -, pages = "299--325" -, update = "97.03 icking" +, author = "D. S. Johnson and A. Demers and J. D. Ullmann and M. R. Garey and R. L. Graham" +, title = "Worst-case performance bounds for simple one-dimensional packing algorithms" +, journal = "SIAM J. Comput." +, volume = 3 +, year = 1974 +, pages = "299--325" +, update = "97.03 icking" } @inproceedings{jmr-aeahk-96 -, author = "D. S. Johnson and L. A. McGeoch and E. E. Rothberg" -, title = "Asymptotic experimental analysis for the {Held}-{Karp} traveling salesman bound" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "341--350" -, keywords = "integer programming, linear programming, approximation, TSP, uniform random points" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "D. S. Johnson and L. A. McGeoch and E. E. Rothberg" +, title = "Asymptotic experimental analysis for the {Held}-{Karp} traveling salesman bound" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "341--350" +, keywords = "integer programming, linear programming, approximation, TSP, uniform random points" +, update = "96.09 agarwal, 96.01 mitchell" } @incollection{jp-cctsp-85 -, author = "D. S. Johnson and C. H. Papadimitriou" -, title = "Computational complexity and the traveling salesman problem" -, editor = "E. Lawler and J. Lenstra and A. Rinnooy Kan and D. Shmoys" -, booktitle = "The Traveling Salesman Problem" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1985 -, pages = "68--74" -, update = "95.09 mitchell" +, author = "D. S. Johnson and C. H. Papadimitriou" +, title = "Computational complexity and the traveling salesman problem" +, editor = "E. Lawler and J. Lenstra and A. Rinnooy Kan and D. Shmoys" +, booktitle = "The Traveling Salesman Problem" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1985 +, pages = "68--74" +, update = "95.09 mitchell" } @article{jp-hpcdv-87 -, author = "D. S. Johnson and H. O. Pollak" -, title = "Hypergraph Planarity and the Complexity of Drawing {Venn} Diagrams" -, journal = "J. Graph Theory" -, volume = 11 -, number = 3 -, year = 1987 -, pages = "309--325" -, keywords = "graph drawing" -, update = "97.07 guedes, 93.09 tamassia" +, author = "D. S. Johnson and H. O. Pollak" +, title = "Hypergraph Planarity and the Complexity of Drawing {Venn} Diagrams" +, journal = "J. Graph Theory" +, volume = 11 +, number = 3 +, year = 1987 +, pages = "309--325" +, keywords = "graph drawing" +, update = "97.07 guedes, 93.09 tamassia" } @article{jp-dhp-78 -, author = "D. S. Johnson and F. P. Preparata" -, title = "The densest hemisphere problem" -, journal = "Theoret. Comput. Sci." -, volume = 6 -, year = 1978 -, pages = "93--107" +, author = "D. S. Johnson and F. P. Preparata" +, title = "The densest hemisphere problem" +, journal = "Theoret. Comput. Sci." +, volume = 6 +, year = 1978 +, pages = "93--107" } @book{j-aeg-60 -, author = "R. A. Johnson" -, title = "Advanced {Euclidean} Geometry" -, publisher = "Dover" -, address = "New York" -, year = 1960 -, update = "98.11 bibrelex" +, author = "R. A. Johnson" +, title = "Advanced {Euclidean} Geometry" +, publisher = "Dover" +, address = "New York" +, year = 1960 +, update = "98.11 bibrelex" } @article{j-hcs-67 -, author = "S. C. Johnson" -, title = "Hierarchical clustering schemes" -, journal = "Psychometrika" -, volume = 32 -, year = 1967 -, pages = "241--254" -, update = "98.03 bibrelex" +, author = "S. C. Johnson" +, title = "Hierarchical clustering schemes" +, journal = "Psychometrika" +, volume = 32 +, year = 1967 +, pages = "241--254" +, update = "98.03 bibrelex" } @article{jl-elmhs-84 -, author = "W. Johnson and J. Lindenstrauss" -, title = "Extensions of {Lipschitz} maps into a {Hilbert} space" -, journal = "Contemp. Math." -, volume = 26 -, year = 1984 -, pages = "189--206" -, update = "00.11 smid, 00.07 agarwal" +, author = "W. Johnson and J. Lindenstrauss" +, title = "Extensions of {Lipschitz} maps into a {Hilbert} space" +, journal = "Contemp. Math." +, volume = 26 +, year = 1984 +, pages = "189--206" +, update = "00.11 smid, 00.07 agarwal" } @article{jsk-actfm-91 -, author = "B. P. Johnston and J. M. Sullivan and A. Kwasnik" -, title = "Automatic Conversion of Triangular Finite Meshes to Quadrilateral Elements" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 31 -, number = 1 -, year = 1991 -, pages = "67--84" -, annote = "Works by combining adjacent triangles---looking at - those with one neighbour first and trying to combine - them with adjacent nodes. Bad quads are rejected. - Splitting triangles may be necessary." +, author = "B. P. Johnston and J. M. Sullivan and A. Kwasnik" +, title = "Automatic Conversion of Triangular Finite Meshes to Quadrilateral Elements" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 31 +, number = 1 +, year = 1991 +, pages = "67--84" +, annote = "Works by combining adjacent triangles---looking at + those with one neighbour first and trying to combine + them with adjacent nodes. Bad quads are rejected. + Splitting triangles may be necessary." } @techreport{j-niauc-91 -, author = "J. K. Johnstone" -, title = "A new intersection algorithm using circle decomposition" -, type = "Technical {Report}" -, number = "JHU-91-20" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = oct -, year = 1991 +, author = "J. K. Johnstone" +, title = "A new intersection algorithm using circle decomposition" +, type = "Technical {Report}" +, number = "JHU-91-20" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = oct +, year = 1991 } @techreport{j-fgdcr-91 -, author = "J. K. Johnstone" -, title = "Finding generators and directrix curves on ruled surfaces" -, type = "Technical {Report}" -, number = "91-17" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = sep -, year = 1991 -, succeeds = "j-wrssm-89" +, author = "J. K. Johnstone" +, title = "Finding generators and directrix curves on ruled surfaces" +, type = "Technical {Report}" +, number = "91-17" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = sep +, year = 1991 +, succeeds = "j-wrssm-89" } @phdthesis{j-spaac-87 -, author = "J. K. Johnstone" -, title = "The sorting of points along an algebraic curve" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1987 -, note = "Technical Report TR 87-841" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "J. K. Johnstone" +, title = "The sorting of points along an algebraic curve" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1987 +, note = "Technical Report TR 87-841" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @incollection{j-wrssm-89 -, author = "J. K. Johnstone" -, title = "Working with ruled surfaces in solid modeling" -, booktitle = "Computers and Mathematics" -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "260--268" -, precedes = "j-fgdcr-91" +, author = "J. K. Johnstone" +, title = "Working with ruled surfaces in solid modeling" +, booktitle = "Computers and Mathematics" +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "260--268" +, precedes = "j-fgdcr-91" } @article{jb-spaac-90 -, author = "J. K. Johnstone and C. Bajaj" -, title = "Sorting points along an algebraic curve" -, journal = "SIAM J. Comput." -, volume = 19 -, year = 1990 -, pages = "925--967" +, author = "J. K. Johnstone and C. Bajaj" +, title = "Sorting points along an algebraic curve" +, journal = "SIAM J. Comput." +, volume = 19 +, year = 1990 +, pages = "925--967" } @article{jg-lmipa-91 -, author = "J. K. Johnstone and M. Goodrich" -, title = "A localized method for intersecting plane algebraic curve segments" -, journal = "Visual Comput." -, volume = 7 -, year = 1991 -, pages = "60--71" +, author = "J. K. Johnstone and M. Goodrich" +, title = "A localized method for intersecting plane algebraic curve segments" +, journal = "Visual Comput." +, volume = 7 +, year = 1991 +, pages = "60--71" } @techreport{js-cipnq-91 -, author = "J. K. Johnstone and C.-K. Shene" -, title = "Computing the intersection of a plane and a natural quadric" -, type = "Technical {Report}" -, number = "JHU-91-04" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1991 -, comments = "to appear in Computers and Graphics 16 (1992)" +, author = "J. K. Johnstone and C.-K. Shene" +, title = "Computing the intersection of a plane and a natural quadric" +, type = "Technical {Report}" +, number = "JHU-91-04" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1991 +, comments = "to appear in Computers and Graphics 16 (1992)" } @techreport{js-drqsr-90 -, author = "J. K. Johnstone and C. K. Shene" -, title = "The distance Representation of Quadric surfaces: {Ruled} quadrics" -, number = "JHU-90/08" -, institution = "Dept. of Comp. Sci., Johns Hopkins Univ" -, address = "Baltimore, MD" -, month = jul -, year = 1990 -, keywords = "representation of surfaces, bisector, quadric surfaces, design, solid modeling" -, update = "93.09 milone+mitchell" +, author = "J. K. Johnstone and C. K. Shene" +, title = "The distance Representation of Quadric surfaces: {Ruled} quadrics" +, number = "JHU-90/08" +, institution = "Dept. of Comp. Sci., Johns Hopkins Univ" +, address = "Baltimore, MD" +, month = jul +, year = 1990 +, keywords = "representation of surfaces, bisector, quadric surfaces, design, solid modeling" +, update = "93.09 milone+mitchell" } @techreport{js-rahos-91 -, author = "J. K. Johnstone and C.-K. Shene" -, title = "The representation of all hyperboloids of one sheet by two lines" -, type = "Technical {Report}" -, number = "JHU-91-19" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = jul -, year = 1991 +, author = "J. K. Johnstone and C.-K. Shene" +, title = "The representation of all hyperboloids of one sheet by two lines" +, type = "Technical {Report}" +, number = "JHU-91-19" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = jul +, year = 1991 } @article{jmb-rcacv-91 -, author = "J. Jolion and P. Meer and S. Batauche" -, title = "Robust Clustering with Applications in Computer Vision" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 13 -, year = 1991 -, pages = "791--802" -, update = "98.07 agarwal" +, author = "J. Jolion and P. Meer and S. Batauche" +, title = "Robust Clustering with Applications in Computer Vision" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 13 +, year = 1991 +, pages = "791--802" +, update = "98.07 agarwal" } @article{jk-tawai-78 -, author = "A. T. Jonassen and D. E. Knuth" -, title = "A trivial algorithm whose analysis isn't" -, journal = "J. Comput. Syst. Sci." -, volume = 16 -, year = 1978 -, pages = "301--322" +, author = "A. T. Jonassen and D. E. Knuth" +, title = "A trivial algorithm whose analysis isn't" +, journal = "J. Comput. Syst. Sci." +, volume = 16 +, year = 1978 +, pages = "301--322" } @article{j-cnpp-89 -, author = "C. Jones" -, title = "Cartographic name placement with {Prolog}" -, journal = "IEEE Comput. Graph. Appl." -, volume = 5 -, year = 1989 -, pages = "36--47" -, update = "98.07 bibrelex" +, author = "C. Jones" +, title = "Cartographic name placement with {Prolog}" +, journal = "IEEE Comput. Graph. Appl." +, volume = 5 +, year = 1989 +, pages = "36--47" +, update = "98.07 bibrelex" } @article{j-nahlp-71 -, author = "C. B. Jones" -, title = "A new approach to the ``hidden line'' problem" -, journal = "Comput. J." -, volume = 14 -, year = 1971 -, pages = "232--237" +, author = "C. B. Jones" +, title = "A new approach to the ``hidden line'' problem" +, journal = "Comput. J." +, volume = 14 +, year = 1971 +, pages = "232--237" } @article{jwe-tsmns-99 -, author = "C. B. Jones and J. M. Ware and C. D. Enyon" -, title = "Triangulated Spatial Models and Neighborhood Search: An Experimental Comparison with Quadtrees" -, journal = "Visual Comput." -, volume = 15 -, number = 5 -, year = 1999 -, pages = "235--248" -, update = "00.03 held" +, author = "C. B. Jones and J. M. Ware and C. D. Enyon" +, title = "Triangulated Spatial Models and Neighborhood Search: An Experimental Comparison with Quadtrees" +, journal = "Visual Comput." +, volume = 15 +, number = 5 +, year = 1999 +, pages = "235--248" +, update = "00.03 held" } @techreport{j-orvgt-93 -, author = "C. H. Jones" -, title = "An obstacle to realizing visibility graphs and triangle intersection graphs" -, institution = "Washington State University" -, address = "Pullman, WA" -, month = jul -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "C. H. Jones" +, title = "An obstacle to realizing visibility graphs and triangle intersection graphs" +, institution = "Washington State University" +, address = "Pullman, WA" +, month = jul +, year = 1993 +, update = "93.09 milone+mitchell" } @article{j-ecpqe-86 -, author = "D. W. Jones" -, title = "An Empirical Comparison of Priority-Queue and Event-Set Implementations" -, journal = "Commun. ACM" -, volume = 29 -, number = 4 -, month = apr -, year = 1986 -, pages = "300--311" -, update = "98.11 bibrelex" +, author = "D. W. Jones" +, title = "An Empirical Comparison of Priority-Queue and Event-Set Implementations" +, journal = "Commun. ACM" +, volume = 29 +, number = 4 +, month = apr +, year = 1986 +, pages = "300--311" +, update = "98.11 bibrelex" } @techreport{j-icfsi-87 -, author = "L. G. Jones" -, title = "Incremental Compaction of Flat Symbolic IC Layouts" -, type = "Technical {Report}" -, number = "UIUCDCS-R-87-1386" -, institution = "Dept. Computer Science, Univ. Illinois." -, address = "Urbana, IL" -, year = 1987 -, update = "96.01 tamassia" +, author = "L. G. Jones" +, title = "Incremental Compaction of Flat Symbolic IC Layouts" +, type = "Technical {Report}" +, number = "UIUCDCS-R-87-1386" +, institution = "Dept. Computer Science, Univ. Illinois." +, address = "Urbana, IL" +, year = 1987 +, update = "96.01 tamassia" } @inproceedings{js-hvdsb-86 -, author = "L. G. Jones and J. Simon" -, title = "Hierarchical VLSI Design Systems Based on Attribute Grammars" -, booktitle = "13th ACM Sympos. on Principles of Programming Languages" -, year = 1986 -, pages = "58--69" -, update = "96.01 tamassia" +, author = "L. G. Jones and J. Simon" +, title = "Hierarchical VLSI Design Systems Based on Attribute Grammars" +, booktitle = "13th ACM Sympos. on Principles of Programming Languages" +, year = 1986 +, pages = "58--69" +, update = "96.01 tamassia" } @inproceedings{jpb-gmsam-95 -, author = "M. R. Jones and M. A. Price and G. Butlin" -, title = "Geometry Management Support for Auto-meshing" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "153--164" -, update = "96.01 samitchell" +, author = "M. R. Jones and M. A. Price and G. Butlin" +, title = "Geometry Management Support for Auto-meshing" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "153--164" +, update = "96.01 samitchell" } @article{jc-nacsc-94 -, author = "M. W. Jones and M. Chen" -, title = "A new approach to the construction of surfaces from contour data" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 3 -, year = 1994 -, pages = "75--84" -, keywords = "computer graphics, contours, surfaces, approximation" -, update = "95.09 korneenko" +, author = "M. W. Jones and M. Chen" +, title = "A new approach to the construction of surfaces from contour data" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 3 +, year = 1994 +, pages = "75--84" +, keywords = "computer graphics, contours, surfaces, approximation" +, update = "95.09 korneenko" } @article{jw-asts-91 -, author = "Norman L. Jones and Stephen G. Wright" -, title = "Algorithm For Smoothing Triangulated Surfaces" -, journal = "Journal of Computing in Civil Engineering" -, volume = 5 -, number = 1 -, month = jan -, year = 1991 -, pages = "85--102" -, keywords = "contouring, volume calculations, smooth interpolation surfaces, triangulated surface smoothing" -, annote = "Extra points added where deviation is maximum. - Insertion inside flip to update tri. Also suggests - flips to minimize deviation." -, abstract = "Surfaces defined by linearly interpolating a - two-dimensional triangulation of a set of scattered - data points are frequently used to describe geometry in - computer applications. The linear nature of such - surfaces simplifies many subsequent operations on the - surface such as contouring and volume calculations. - However, if the data points defining the surface are - sparse, the resulting triangulated surface may be - unacceptably rough or irregular. An algorithm is - presented for smoothing a triangulated surface by - adding extra data points at special locations in the - interior of the triangulated region. The incremental - addition of the supplemental data points forces the - triangulated surface to approximate or converge to a - previously specified smooth surface that interpolates - the original data points. A unique feature of the - algorithm is that any smooth interpolation scheme or - surface can be used to smooth the triangulated surface. - The algorithm has been implemented on a microcomputer - and the results have been satisfactory. (Author - abstract) 21 Refs." +, author = "Norman L. Jones and Stephen G. Wright" +, title = "Algorithm For Smoothing Triangulated Surfaces" +, journal = "Journal of Computing in Civil Engineering" +, volume = 5 +, number = 1 +, month = jan +, year = 1991 +, pages = "85--102" +, keywords = "contouring, volume calculations, smooth interpolation surfaces, triangulated surface smoothing" +, annote = "Extra points added where deviation is maximum. + Insertion inside flip to update tri. Also suggests + flips to minimize deviation." +, abstract = "Surfaces defined by linearly interpolating a + two-dimensional triangulation of a set of scattered + data points are frequently used to describe geometry in + computer applications. The linear nature of such + surfaces simplifies many subsequent operations on the + surface such as contouring and volume calculations. + However, if the data points defining the surface are + sparse, the resulting triangulated surface may be + unacceptably rough or irregular. An algorithm is + presented for smoothing a triangulated surface by + adding extra data points at special locations in the + interior of the triangulated region. The incremental + addition of the supplemental data points forces the + triangulated surface to approximate or converge to a + previously specified smooth surface that interpolates + the original data points. A unique feature of the + algorithm is that any smooth interpolation scheme or + surface can be used to smooth the triangulated surface. + The algorithm has been implemented on a microcomputer + and the results have been satisfactory. (Author + abstract) 21 Refs." } @article{j-rstsp-90 -, author = "P. Jones" -, title = "Rectifiable sets and the {Traveling} {Salesman} {Problem}" -, journal = "Invent. Math." -, volume = 102 -, year = 1990 -, pages = "1--15" -, update = "97.11 bibrelex" +, author = "P. Jones" +, title = "Rectifiable sets and the {Traveling} {Salesman} {Problem}" +, journal = "Invent. Math." +, volume = 102 +, year = 1990 +, pages = "1--15" +, update = "97.11 bibrelex" } @techreport{jemwdt-npgda-91 -, author = "S. Jones and P. Eades and A. Moran and N. Ward and G. Delott and R. Tamassia" -, title = "A Note on Planar Graph Drawing Algorithms" -, number = 216 -, institution = "Department of Computer Science, University of Queensland" -, year = 1991 -, keywords = "graph drawing, experiments, planar, straight-line" -, update = "96.09 tamassia, 93.09 tamassia" +, author = "S. Jones and P. Eades and A. Moran and N. Ward and G. Delott and R. Tamassia" +, title = "A Note on Planar Graph Drawing Algorithms" +, number = 216 +, institution = "Department of Computer Science, University of Queensland" +, year = 1991 +, keywords = "graph drawing, experiments, planar, straight-line" +, update = "96.09 tamassia, 93.09 tamassia" } @article{jo-nmctd-90 -, author = "S. Jones and J. O'Rourke" -, title = "A note on moving a chair through a doorway" -, journal = "Algorithms Rev." -, volume = 1 -, number = 3 -, year = 1990 -, pages = "139--149" -, note = "S. Jones is now S. Dorward" -, keywords = "motion planning, lower bounds" +, author = "S. Jones and J. O'Rourke" +, title = "A note on moving a chair through a doorway" +, journal = "Algorithms Rev." +, volume = 1 +, number = 3 +, year = 1990 +, pages = "139--149" +, note = "S. Jones is now S. Dorward" +, keywords = "motion planning, lower bounds" } @article{j-spivt1-80 -, author = "S. T. Jones" -, title = "Solving Problems Involving Variable Terrain. Part {1}: {A} General Algorithm" -, journal = "Byte" -, volume = 5 -, number = 2 -, month = feb -, year = 1980 -, pages = "58--68" -, update = "93.09 milone+mitchell" +, author = "S. T. Jones" +, title = "Solving Problems Involving Variable Terrain. Part {1}: {A} General Algorithm" +, journal = "Byte" +, volume = 5 +, number = 2 +, month = feb +, year = 1980 +, pages = "58--68" +, update = "93.09 milone+mitchell" } @article{j-spivt2-80 -, author = "S. T. Jones" -, title = "Solving Problems Involving Variable Terrain. Part {2}: {Special} Case" -, journal = "Byte" -, volume = 5 -, number = 3 -, month = mar -, year = 1980 -, pages = "74--82" -, update = "93.09 milone+mitchell" +, author = "S. T. Jones" +, title = "Solving Problems Involving Variable Terrain. Part {2}: {Special} Case" +, journal = "Byte" +, volume = 5 +, number = 3 +, month = mar +, year = 1980 +, pages = "74--82" +, update = "93.09 milone+mitchell" } @misc{j-cgcb- -, author = "W. D. Jones" -, title = "Computational Geometry, a Community Bibliography" -, note = "Overview at \url{http://compgeom.cs.duke.edu/~jeffe/compgeom/biblios.html#geombib}" -, url = "ftp://ftp.cs.usask.ca/pub/geometry/geombib.tar.gz" -, keywords = "bibliography" -, update = "99.03 jones, 97.03 tamassia" +, author = "W. D. Jones" +, title = "Computational Geometry, a Community Bibliography" +, note = "Overview at \url{http://compgeom.cs.duke.edu/~jeffe/compgeom/biblios.html#geombib}" +, url = "ftp://ftp.cs.usask.ca/pub/geometry/geombib.tar.gz" +, keywords = "bibliography" +, update = "99.03 jones, 97.03 tamassia" } @inproceedings{jk-msssp-90 -, author = "W. D. Jones and Y. Ke" -, title = "Maximal segment-stabbing of segments in the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "85--88" -, keywords = "stabbing, line segments, two-dimensional, plane-sweep, configuration space" -, cites = "ab-eact-87, ad-ahdsp-87, aw-alts-87, e-ftssg-85, e-ftssg-85, emprww-sls-82, epss-lebfi-87, ew-spdtl-89, gs-spscp-90, g-ct-58, g-scop-83, hdk-cgp-64, jk-spals-88, ls-esmpa-87, o-olafs-81, ss-pmp1c-83, ZZZ" -, update = "98.07 bibrelex" +, author = "W. D. Jones and Y. Ke" +, title = "Maximal segment-stabbing of segments in the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "85--88" +, keywords = "stabbing, line segments, two-dimensional, plane-sweep, configuration space" +, cites = "ab-eact-87, ad-ahdsp-87, aw-alts-87, e-ftssg-85, e-ftssg-85, emprww-sls-82, epss-lebfi-87, ew-spdtl-89, gs-spscp-90, g-ct-58, g-scop-83, hdk-cgp-64, jk-spals-88, ls-esmpa-87, o-olafs-81, ss-pmp1c-83, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{h-zp-99m -, author = "H{\aa}kan Jonsson" -, title = "On the Zookeeper's Problem" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "141--144" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "H{\aa}kan Jonsson" +, title = "On the Zookeeper's Problem" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "141--144" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{js-csml-99 -, author = "Denis Jordan and Marcel Steiner" -, title = "Configuration spaces of mechanical linkages" -, journal = "Discrete Comput. Geom." -, volume = 22 -, year = 1999 -, pages = "297--315" -, update = "02.03 orourke" +, author = "Denis Jordan and Marcel Steiner" +, title = "Configuration spaces of mechanical linkages" +, journal = "Discrete Comput. Geom." +, volume = 22 +, year = 1999 +, pages = "297--315" +, update = "02.03 orourke" } @misc{j-icm-93 -, author = "H. F. Jordan" -, title = "Interview to 'Computerworld' magazine" -, journal = "Computerworld" -, month = mar -, year = 1993 -, pages = 28 -, update = "98.11 bibrelex" +, author = "H. F. Jordan" +, title = "Interview to 'Computerworld' magazine" +, journal = "Computerworld" +, month = mar +, year = 1993 +, pages = 28 +, update = "98.11 bibrelex" } @article{jhw-arn-86 -, author = "C. Jorgensen and W. Hamel and C. Weisbin" -, title = "Autonomous Robot Navigation" -, journal = "Byte" -, volume = 11 -, number = 1 -, month = jan -, year = 1986 -, pages = "223--235" -, update = "93.09 milone+mitchell" +, author = "C. Jorgensen and W. Hamel and C. Weisbin" +, title = "Autonomous Robot Navigation" +, journal = "Byte" +, volume = 11 +, number = 1 +, month = jan +, year = 1986 +, pages = "223--235" +, update = "93.09 milone+mitchell" } @techreport{jmo-acrbv-94 -, author = "A. Josefczyk and J. Miller and J. O'Rourke" -, title = "Arkin's conjecture for rectangle and box visibility graphs" -, type = "Technical {Report}" -, number = 036 -, institution = "Dept. Comput. Sci., Smith College" -, month = jul -, year = 1994 -, keywords = "visibility graphs" -, update = "94.09 orourke" +, author = "A. Josefczyk and J. Miller and J. O'Rourke" +, title = "Arkin's conjecture for rectangle and box visibility graphs" +, type = "Technical {Report}" +, number = 036 +, institution = "Dept. Comput. Sci., Smith College" +, month = jul +, year = 1994 +, keywords = "visibility graphs" +, update = "94.09 orourke" } @article{j-ptcme-83 -, author = "D. Joseph" -, title = "Polynomial time computations in models of {ET}" -, journal = "J. Comput. Syst. Sci." -, volume = 26 -, year = 1983 -, pages = "311--338" +, author = "D. Joseph" +, title = "Polynomial time computations in models of {ET}" +, journal = "J. Comput. Syst. Sci." +, volume = 26 +, year = 1983 +, pages = "311--338" } @inproceedings{jmt-ddssu-92 -, author = "D. Joseph and J. Meidanis and P. Tiwari" -, title = "Determining {DNA} sequence similarity using maximum independent set algorithms for interval graphs" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "326--337" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "D. Joseph and J. Meidanis and P. Tiwari" +, title = "Determining {DNA} sequence similarity using maximum independent set algorithms for interval graphs" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "326--337" +, update = "94.01 smid, 93.09 milone+mitchell" } @inproceedings{jp-crmpq-85 -, author = "D. A. Joseph and W. H. Plantinga" -, title = "On the complexity of reachability and motion planning questions" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "62--66" -, cites = "h-sp-68, lw-apcfp-79, r-cmpg-79, b-pcfmp-83, ss-pmp2g-83, hss-cmpmi-84, hjw-mra2d-85, hjw-mp2dl-84, k-racpc-72, ZZZ" -, update = "97.11 bibrelex" +, author = "D. A. Joseph and W. H. Plantinga" +, title = "On the complexity of reachability and motion planning questions" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "62--66" +, cites = "h-sp-68, lw-apcfp-79, r-cmpg-79, b-pcfmp-83, ss-pmp2g-83, hss-cmpmi-84, hjw-mra2d-85, hjw-mp2dl-84, k-racpc-72, ZZZ" +, update = "97.11 bibrelex" } @article{js-mbpsc-92 -, author = "Eugene Joseph and Steven S. Skiena" -, title = "Model-Based Probing Strategies for Convex Polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, year = 1992 -, pages = "209--221" -, keywords = "probing, model-based, convex polygons" -, update = "96.09 romanik" +, author = "Eugene Joseph and Steven S. Skiena" +, title = "Model-Based Probing Strategies for Convex Polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, year = 1992 +, pages = "209--221" +, keywords = "probing, model-based, convex polygons" +, update = "96.09 romanik" } @article{js-ck-91 -, author = "L. Joskowicz and E. Sacks" -, title = "Computational Kinematics" -, journal = "Artif. Intell." -, volume = 51 -, number = "1-3" -, year = 1991 -, update = "98.03 bibrelex" +, author = "L. Joskowicz and E. Sacks" +, title = "Computational Kinematics" +, journal = "Artif. Intell." +, volume = 51 +, number = "1-3" +, year = 1991 +, update = "98.03 bibrelex" } @inproceedings{jss-kta-95 -, author = "L. Joskowicz and E. Sacks and V. Srinivasan" -, title = "Kinematic tolerance analysis" -, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" -, publisher = "ACM Press" -, year = 1995 -, update = "98.03 bibrelex" +, author = "L. Joskowicz and E. Sacks and V. Srinivasan" +, title = "Kinematic tolerance analysis" +, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" +, publisher = "ACM Press" +, year = 1995 +, update = "98.03 bibrelex" } @inproceedings{js-himad-95 -, author = "Leo Joskowitz and Elisha Sacks" -, title = "{HIPAIR}: {Interactive} Mechanism Analysis and Design Using Configuration Spaces" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "V5--V6" -, keywords = "video review" -, cites = "js-ck-91, sj-amksm-93, sj-cscmd-94, jss-kta-95, sj-ckahp-95, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Leo Joskowitz and Elisha Sacks" +, title = "{HIPAIR}: {Interactive} Mechanism Analysis and Design Using Configuration Spaces" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "V5--V6" +, keywords = "video review" +, cites = "js-ck-91, sj-amksm-93, sj-cscmd-94, jss-kta-95, sj-ckahp-95, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{jkk-kssp-01 -, author = "Michael Joswig and Volker Kaibel and Friederike K{\"o}rner" -, title = "On the $k$-Systems of a Simple Polytope" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "140--141" -, update = "01.04 icking" +, author = "Michael Joswig and Volker Kaibel and Friederike K{\"o}rner" +, title = "On the $k$-Systems of a Simple Polytope" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "140--141" +, update = "01.04 icking" } @inproceedings{jz-pvhc-01 -, author = "Michael Joswig and G{\"u}nter M. Ziegler" -, title = "Polytope Verification by Homology Computation" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "142--145" -, update = "01.04 icking" +, author = "Michael Joswig and G{\"u}nter M. Ziegler" +, title = "Polytope Verification by Homology Computation" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "142--145" +, update = "01.04 icking" } @inproceedings{jdl-macrd-98 -, author = "A. Joukhadar and A. Deguet and C. Laugier" -, title = "Models and Algorithms for the Collision of Rigid and Deformable Bodies" -, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." -, nickname = "WAFR '98" -, year = 1998 -, pages = "to appear" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "A. Joukhadar and A. Deguet and C. Laugier" +, title = "Models and Algorithms for the Collision of Rigid and Deformable Bodies" +, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." +, nickname = "WAFR '98" +, year = 1998 +, pages = "to appear" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @inproceedings{jrz-udpgu-95 -, author = "G.-V. Jourdan and I. Rival and N. Zaguia" -, title = "Upward Drawing on the Plane Grid Using Less Ink" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "318--327" -, keywords = "graph drawing, order, upward" -, update = "95.01 tamassia" +, author = "G.-V. Jourdan and I. Rival and N. Zaguia" +, title = "Upward Drawing on the Plane Grid Using Less Ink" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "318--327" +, keywords = "graph drawing, order, upward" +, update = "95.01 tamassia" } @article{j-uphmm-91 -, author = "K. I. Joy" -, title = "Utilizing parametric hyperpatch methods for modeling and display of free-form solids" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 4 -, year = 1991 -, pages = "455--471" -, keywords = "Bsplines, hypermatch models, free form surfaces, free form solids, sweeping operation" +, author = "K. I. Joy" +, title = "Utilizing parametric hyperpatch methods for modeling and display of free-form solids" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 4 +, year = 1991 +, pages = "455--471" +, keywords = "Bsplines, hypermatch models, free form surfaces, free form solids, sweeping operation" } @article{j-msndc-83 -, author = "A. J{\'o}{\'z}wik" -, title = "A method for solving the $n$-dimensional convex hull problem" -, journal = "Pattern Recogn. Lett." -, volume = 2 -, year = 1983 -, pages = "23--25" +, author = "A. J{\'o}{\'z}wik" +, title = "A method for solving the $n$-dimensional convex hull problem" +, journal = "Pattern Recogn. Lett." +, volume = 2 +, year = 1983 +, pages = "23--25" } @article{j-rmils-83 -, author = "A. J{\'o}{\'z}wik" -, title = "A recursive method for the investigation of the linear separability of two sets" -, journal = "Pattern Recogn." -, volume = 11 -, year = 1983 -, pages = "429--431" +, author = "A. J{\'o}{\'z}wik" +, title = "A recursive method for the investigation of the linear separability of two sets" +, journal = "Pattern Recogn." +, volume = 11 +, year = 1983 +, pages = "429--431" } @book{t-cseh-96 -, title = "The Computer Science and Engineering Handbook" -, editor = "Allen B. Tucker, Jr." -, publisher = "CRC Press" -, address = "Boca Raton, FL" -, year = 1996 -, isbn = "0-8493-2909-4" -, comments = "contains survey articles, 130 chapters, 2500 pages" -, update = "98.07 bibrelex" +, title = "The Computer Science and Engineering Handbook" +, editor = "Allen B. Tucker, Jr." +, publisher = "CRC Press" +, address = "Boca Raton, FL" +, year = 1996 +, isbn = "0-8493-2909-4" +, comments = "contains survey articles, 130 chapters, 2500 pages" +, update = "98.07 bibrelex" } @inproceedings{j-mbfip-94 -, author = "Robert Juan-Arinyo" -, title = "Monotone Boolean Formulae for Isothetic Polyhedra" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "58--61" -, update = "00.11 smid, 00.07 icking" +, author = "Robert Juan-Arinyo" +, title = "Monotone Boolean Formulae for Isothetic Polyhedra" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "58--61" +, update = "00.11 smid, 00.07 icking" } @article{jvb-cprpv-96 -, author = "R. Juan-Arinyo and A. Vinacua and P. Brunet" -, title = "Classification of a point with respect to a polyhedron vertex" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "157--168" -, update = "96.09 devillers" +, author = "R. Juan-Arinyo and A. Vinacua and P. Brunet" +, title = "Classification of a point with respect to a polyhedron vertex" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "157--168" +, update = "96.09 devillers" } @article{js-niqpr-91 -, author = "E. Jucovic and S. Sevec" -, title = "Note on inscribability of quadrangular polyhedra with restricted number of edge-types" -, journal = "J. Geom." -, volume = 42 -, number = "1--2" -, year = 1991 -, pages = "126--131" -, update = "98.11 bibrelex" +, author = "E. Jucovic and S. Sevec" +, title = "Note on inscribability of quadrangular polyhedra with restricted number of edge-types" +, journal = "J. Geom." +, volume = 42 +, number = "1--2" +, year = 1991 +, pages = "126--131" +, update = "98.11 bibrelex" } @techreport{j-levso-90 -, author = "F. Juhnke" -, title = "{L{\"o}wner} ellipsoids via semiinfinite optimization and (quasi-) convexity theory" -, type = "Report" -, number = "4/90" -, institution = "Sektion Mathematik, Technische Universit{\"a}t Magdeburg" -, address = "Magdeburg, Germany" -, year = 1990 -, update = "97.11 bibrelex" +, author = "F. Juhnke" +, title = "{L{\"o}wner} ellipsoids via semiinfinite optimization and (quasi-) convexity theory" +, type = "Report" +, number = "4/90" +, institution = "Sektion Mathematik, Technische Universit{\"a}t Magdeburg" +, address = "Magdeburg, Germany" +, year = 1990 +, update = "97.11 bibrelex" } @techreport{j-ccdt-88 -, author = "D. Jung" -, title = "On Constructing the Constrained {Delaunay} Triangulation" -, type = "report" -, number = 100 -, institution = "Electrical, Computer and Systems Engineering Department, Rensselaer Polytechnic Institute" -, year = 1988 -, update = "98.07 bibrelex" +, author = "D. Jung" +, title = "On Constructing the Constrained {Delaunay} Triangulation" +, type = "report" +, number = 100 +, institution = "Electrical, Computer and Systems Engineering Department, Rensselaer Polytechnic Institute" +, year = 1988 +, update = "98.07 bibrelex" } @inproceedings{j-oacdt-88 -, author = "Dz-Mou Jung" -, title = "An Optimal Algorithm for Constrained {Delaunay} Triangulation" -, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." -, publisher = "Univ. Illinois" -, address = "Urbana, IL" -, year = 1988 -, pages = "85--86" -, annote = "O(n log n) algorithm for CDT. First build DT, delete - edges intersected by constraint edges and then builds - CDT for the resulting simple polygons." +, author = "Dz-Mou Jung" +, title = "An Optimal Algorithm for Constrained {Delaunay} Triangulation" +, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." +, publisher = "Univ. Illinois" +, address = "Urbana, IL" +, year = 1988 +, pages = "85--86" +, annote = "O(n log n) algorithm for CDT. First build DT, delete + edges intersected by constraint edges and then builds + CDT for the resulting simple polygons." } @article{j-udkkd-01 -, author = "H. Jung" -, title = "{\"U}ber die kleinste {Kugel}, die eine r{\"a}umliche {Figur} einschlie{\ss}t" -, journal = "J. Reine Angew. Math." -, volume = 123 -, year = 1901 -, pages = "241--257" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "H. Jung" +, title = "{\"U}ber die kleinste {Kugel}, die eine r{\"a}umliche {Figur} einschlie{\ss}t" +, journal = "J. Reine Angew. Math." +, volume = 123 +, year = 1901 +, pages = "241--257" +, update = "98.11 bibrelex, 97.11 bibrelex" } @inproceedings{jlmo-pamlc-97 -, author = "Michael J{\"u}nger and Eva K. Lee and Petra Mutzel and Thomas Odenthal" -, title = "A Polyhedral Approach to the Multi-Layer Crossing Minimization Problem" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, number = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "13--24" -, keywords = "graph drawing" -, update = "99.07 vismara, 98.11 bibrelex, 98.07 patrignani+tamassia+vismara" +, author = "Michael J{\"u}nger and Eva K. Lee and Petra Mutzel and Thomas Odenthal" +, title = "A Polyhedral Approach to the Multi-Layer Crossing Minimization Problem" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, number = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "13--24" +, keywords = "graph drawing" +, update = "99.07 vismara, 98.11 bibrelex, 98.07 patrignani+tamassia+vismara" } @inproceedings{jlm-pupqt-97 -, author = "Michael J{\"u}nger and Sebastian Leipert and Petra Mutzel" -, title = "Pitfalls of Using {PQ-Trees} in Automatic Graph Drawing" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "193--204" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Michael J{\"u}nger and Sebastian Leipert and Petra Mutzel" +, title = "Pitfalls of Using {PQ-Trees} in Automatic Graph Drawing" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "193--204" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{jm-2lscm-97 -, author = "Michael J{\"u}nger and Petra Mutzel" -, title = "2-Layer Straightline Crossing Minimization: Performance of Exact and Heuristic Algorithms" -, journal = "J. Graph Algorithms Appl." -, volume = 1 -, number = 1 -, year = 1997 -, pages = "1--25" -, url = "https://www.cs.brown.edu/publications/jgaa/accepted/97/JuengerMutzel97.1.1.ps.gz" -, keywords = "graph drawing, straight-line, planarization, crossings, experiments" -, succeeds = "jm-eha2s-96" -, update = "99.07 vismara, 98.07 tamassia+vismara" +, author = "Michael J{\"u}nger and Petra Mutzel" +, title = "2-Layer Straightline Crossing Minimization: Performance of Exact and Heuristic Algorithms" +, journal = "J. Graph Algorithms Appl." +, volume = 1 +, number = 1 +, year = 1997 +, pages = "1--25" +, url = "https://www.cs.brown.edu/publications/jgaa/accepted/97/JuengerMutzel97.1.1.ps.gz" +, keywords = "graph drawing, straight-line, planarization, crossings, experiments" +, succeeds = "jm-eha2s-96" +, update = "99.07 vismara, 98.07 tamassia+vismara" } @inproceedings{jm-eha2s-96 -, author = "Michael J{\"u}nger and Petra Mutzel" -, title = "Exact and Heuristic Algorithms for 2-Layer Straightline Crossing Minimization" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "337--348" -, keywords = "graph drawing, straight-line, layered, crossings, experiments" -, update = "96.09 tamassia" +, author = "Michael J{\"u}nger and Petra Mutzel" +, title = "Exact and Heuristic Algorithms for 2-Layer Straightline Crossing Minimization" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "337--348" +, keywords = "graph drawing, straight-line, layered, crossings, experiments" +, update = "96.09 tamassia" } @article{jm-mpsne-96 -, author = "M. J{\"u}nger and P. Mutzel" -, title = "Maximum Planar Subgraphs and Nice Embeddings: Practical Layout Tools" -, journal = "Algorithmica" -, volume = 16 -, number = 1 -, year = 1996 -, pages = "33--59" -, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" -, keywords = "graph drawing, planarization" -, update = "98.07 tamassia, 96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" +, author = "M. J{\"u}nger and P. Mutzel" +, title = "Maximum Planar Subgraphs and Nice Embeddings: Practical Layout Tools" +, journal = "Algorithmica" +, volume = 16 +, number = 1 +, year = 1996 +, pages = "33--59" +, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" +, keywords = "graph drawing, planarization" +, update = "98.07 tamassia, 96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" } @inproceedings{jm-pamps-95 -, author = "M. J{\"u}nger and P. Mutzel" -, title = "The Polyhedral Approach to the Maximum Planar Subgraph Problem: New Chances for Related Problems" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "119--130" -, keywords = "graph drawing, planarization" -, update = "95.01 tamassia" +, author = "M. J{\"u}nger and P. Mutzel" +, title = "The Polyhedral Approach to the Maximum Planar Subgraph Problem: New Chances for Related Problems" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "119--130" +, keywords = "graph drawing, planarization" +, update = "95.01 tamassia" } @article{jp-gdco-93 -, author = "M. J{\"u}nger and W. Pulleyblank" -, title = "Geometric duality and combinatorial optimization" -, journal = "Jahrb. Ueberbl. Math" -, volume = "??" -, year = 1993 -, pages = "1--24" -, update = "98.03 agarwal" +, author = "M. J{\"u}nger and W. Pulleyblank" +, title = "Geometric duality and combinatorial optimization" +, journal = "Jahrb. Ueberbl. Math" +, volume = "??" +, year = 1993 +, pages = "1--24" +, update = "98.03 agarwal" } @article{jp-npdmh-95 -, author = "M. J{\"u}nger and W. Pulleyblank" -, title = "New primal and dual matching heuristics" -, journal = "Algorithmica" -, volume = 13 -, number = 4 -, year = 1995 -, pages = "357--380" -, update = "98.03 agarwal" +, author = "M. J{\"u}nger and W. Pulleyblank" +, title = "New primal and dual matching heuristics" +, journal = "Algorithmica" +, volume = 13 +, number = 4 +, year = 1995 +, pages = "357--380" +, update = "98.03 agarwal" } @incollection{jrr-tsp-95 -, author = "M. J{\"u}nger and G. Reinelt and G. Rinaldi" -, title = "The Traveling Salesman Problem" -, editor = "M. O. Ball and T. L. Magnanti and C. L. Monma and G. L. Nemhauser" -, booktitle = "Network Models" -, series = "Handbook of Operations Research/Management Science" -, publisher = "Elsevier Science" -, address = "Amsterdam" -, year = 1995 -, pages = "225--330" -, update = "98.03 mitchell" +, author = "M. J{\"u}nger and G. Reinelt and G. Rinaldi" +, title = "The Traveling Salesman Problem" +, editor = "M. O. Ball and T. L. Magnanti and C. L. Monma and G. L. Nemhauser" +, booktitle = "Network Models" +, series = "Handbook of Operations Research/Management Science" +, publisher = "Elsevier Science" +, address = "Amsterdam" +, year = 1995 +, pages = "225--330" +, update = "98.03 mitchell" } @article{jrz-ccdt-91 -, author = "M. J{\"u}nger and G. Reinelt and D. Zepf" -, title = "Computing Correct {Delaunay} Triangulations" -, journal = "Computing" -, volume = 47 -, number = 1 -, year = 1991 -, pages = "43--49" -, keywords = "Delaunay triangulation, computational geometry" -, update = "93.09 rote" -, annote = "For cc test need numbers up $6M^4$" -, abstract = "In recent years the practical computation of Delaunay - triangulations, resp. Voronoi diagrams has received a - lot of attention in the literature. While the Delaunay - triangulation is an important basic tool in geometric - optimization algorithms, it is nontrivial to achieve a - numerically stable computer implementation. In this - technical note we assume that all generating points are - grid points of a regular M by M lattice in the plane. - Depending on M we derive the necessary word length a - binary computer must have for integer representation in - order to obtain exact Delaunay triangulations. This - analysis is carried out for the L//1-, L//2- and L// - infinity -metric. (Author abstract) 4 Refs." +, author = "M. J{\"u}nger and G. Reinelt and D. Zepf" +, title = "Computing Correct {Delaunay} Triangulations" +, journal = "Computing" +, volume = 47 +, number = 1 +, year = 1991 +, pages = "43--49" +, keywords = "Delaunay triangulation, computational geometry" +, update = "93.09 rote" +, annote = "For cc test need numbers up $6M^4$" +, abstract = "In recent years the practical computation of Delaunay + triangulations, resp. Voronoi diagrams has received a + lot of attention in the literature. While the Delaunay + triangulation is an important basic tool in geometric + optimization algorithms, it is nontrivial to achieve a + numerically stable computer implementation. In this + technical note we assume that all generating points are + grid points of a regular M by M lattice in the plane. + Depending on M we derive the necessary word length a + binary computer must have for integer representation in + order to obtain exact Delaunay triangulations. This + analysis is carried out for the L//1-, L//2- and L// + infinity -metric. (Author abstract) 4 Refs." } @article{j-adsfk-78 -, author = "D. L. B. Jupp" -, title = "Approximation to data by splines with free knots" -, journal = "SIAM J. Numer. Anal." -, volume = 15 -, number = 2 -, year = 1978 -, pages = "328--343" -, update = "96.09 orourke" +, author = "D. L. B. Jupp" +, title = "Approximation to data by splines with free knots" +, journal = "SIAM J. Numer. Anal." +, volume = 15 +, number = 2 +, year = 1978 +, pages = "328--343" +, update = "96.09 orourke" } @techreport{jl-dhdpo-79 -, author = "H. Jurgensen and J. Loewer" -, title = "Drawing Hasse Diagrams of Partially Ordered Sets" -, number = "TI 5/79" -, institution = "Institut fur Theoretische Informatik, Technische Hochschule Darmstad" -, year = 1979 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "H. Jurgensen and J. Loewer" +, title = "Drawing Hasse Diagrams of Partially Ordered Sets" +, number = "TI 5/79" +, institution = "Institut fur Theoretische Informatik, Technische Hochschule Darmstad" +, year = 1979 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{kan-w1cps-90 -, author = "S. Kabadi and Y. P. Aneja and K. P. K. Nair" -, title = "Weighted $1$-center problem in a simple polygon" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "306--308" -, cites = "d-mstia-86, m-lpltw-84, m-bsb-89, psr-cgcsp-89, ZZZ" -, update = "98.07 bibrelex" +, author = "S. Kabadi and Y. P. Aneja and K. P. K. Nair" +, title = "Weighted $1$-center problem in a simple polygon" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "306--308" +, cites = "d-mstia-86, m-lpltw-84, m-bsb-89, psr-cgcsp-89, ZZZ" +, update = "98.07 bibrelex" } @unpublished{kc-scgts-85 -, author = "S. N. Kabadi and R. Chandrasekaran" -, title = "Solvable classes of generalized traveling salesman problem" -, year = 1985 -, note = "??" -, update = "98.07 bibrelex" +, author = "S. N. Kabadi and R. Chandrasekaran" +, title = "Solvable classes of generalized traveling salesman problem" +, year = 1985 +, note = "??" +, update = "98.07 bibrelex" } @inproceedings{kc-ttsp-90 -, author = "S. N. Kabadi and R. Chandrasekaran" -, title = "Tree traveling salesman problem" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "366--371" -, cites = "gg-sosvm-64, k-sssgt-56, kc-scgts-85, llrs-tsp-85, ZZZ" -, update = "98.07 bibrelex" +, author = "S. N. Kabadi and R. Chandrasekaran" +, title = "Tree traveling salesman problem" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "366--371" +, cites = "gg-sosvm-64, k-sssgt-56, kc-scgts-85, llrs-tsp-85, ZZZ" +, update = "98.07 bibrelex" } @book{k-sipan-59 -, author = "M. Kac" -, title = "Statistical Independence in Probability , Analysis and Number Theory" -, series = "The Carus Mathematical Monographs" -, volume = 12 -, publisher = "Mathematical Association of America" -, year = 1959 -, update = "97.11 bibrelex" +, author = "M. Kac" +, title = "Statistical Independence in Probability , Analysis and Number Theory" +, series = "The Carus Mathematical Monographs" +, volume = 12 +, publisher = "Mathematical Association of America" +, year = 1959 +, update = "97.11 bibrelex" } @article{k-c-47 -, author = "I. N. Kagno" -, title = "Corrections" -, journal = "Amer. J. Math." -, volume = 69 -, year = 1947 -, pages = 872 -, update = "97.11 bibrelex" +, author = "I. N. Kagno" +, title = "Corrections" +, journal = "Amer. J. Math." +, volume = 69 +, year = 1947 +, pages = 872 +, update = "97.11 bibrelex" } @article{k-dpgtg-47 -, author = "I. N. Kagno" -, title = "Desargue's and Pappus' Graphs and their Groups" -, journal = "Amer. J. Math." -, volume = 69 -, year = 1947 -, pages = "859--862" -, update = "97.11 bibrelex" +, author = "I. N. Kagno" +, title = "Desargue's and Pappus' Graphs and their Groups" +, journal = "Amer. J. Math." +, volume = 69 +, year = 1947 +, pages = "859--862" +, update = "97.11 bibrelex" } @article{k-lgdlt-46 -, author = "I. N. Kagno" -, title = "Linear Graphs of Degree $\leq 6$ and their Groups" -, journal = "Amer. J. Math." -, volume = 68 -, year = 1946 -, pages = "505--520" -, update = "97.11 bibrelex" +, author = "I. N. Kagno" +, title = "Linear Graphs of Degree $\leq 6$ and their Groups" +, journal = "Amer. J. Math." +, volume = 68 +, year = 1946 +, pages = "505--520" +, update = "97.11 bibrelex" } @inproceedings{k-mdm-91 -, author = "S. Kahan" -, title = "A model for data in motion" -, booktitle = "Proc. 23th Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "267--277" -, update = "94.05 franciosa" +, author = "S. Kahan" +, title = "A model for data in motion" +, booktitle = "Proc. 23th Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "267--277" +, update = "94.05 franciosa" } @phdthesis{k-rtpmd-91 -, author = "S. Kahan" -, title = "Real time processing of moving data" -, type = "Ph.{D}. Dissertation" -, school = "University of Washington" -, address = "Seattle, WA" -, year = 1991 -, keywords = "doctoral thesis" -, update = "95.01 franciosa" +, author = "S. Kahan" +, title = "Real time processing of moving data" +, type = "Ph.{D}. Dissertation" +, school = "University of Washington" +, address = "Seattle, WA" +, year = 1991 +, keywords = "doctoral thesis" +, update = "95.01 franciosa" } @inproceedings{ks-bcmlp-96 -, author = "Simon Kahan and Jack Snoeyink" -, title = "On the Bit Complexity of Minimum Link Paths: Superquadratic Algorithms for Problems Solvable in Linear time" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "151--158" -, cites = "abosy-fmcnp-89, ams-olpqs-92, c-tpca-82, d-haitn-83, dls-oaclc-92, g-cvpcs-91, gm-rad-95, ghms-apsml-93, hs-cmlpg-94, h-psifp-94, h-patmn-93, k-ealdp-89, lp-esppr-84, lpsssstwy-clcsp-88, m-cacau-89, m-dpggt-89, m-vigau-88p, m-pmsop-95, mrw-mlpop-92, ps-cgi-85, s-tfga-94, s-ltaml-86, s-mlppr-87, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Simon Kahan and Jack Snoeyink" +, title = "On the Bit Complexity of Minimum Link Paths: Superquadratic Algorithms for Problems Solvable in Linear time" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "151--158" +, cites = "abosy-fmcnp-89, ams-olpqs-92, c-tpca-82, d-haitn-83, dls-oaclc-92, g-cvpcs-91, gm-rad-95, ghms-apsml-93, hs-cmlpg-94, h-psifp-94, h-patmn-93, k-ealdp-89, lp-esppr-84, lpsssstwy-clcsp-88, m-cacau-89, m-dpggt-89, m-vigau-88p, m-pmsop-95, mrw-mlpop-92, ps-cgi-85, s-tfga-94, s-ltaml-86, s-mlppr-87, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{k-lmfp-87 -, author = "J. Kahn" -, title = "On lattices with {M{\"o}bius} function $\pm1,0$" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "1--8" -, update = "93.09 rote" +, author = "J. Kahn" +, title = "On lattices with {M{\"o}bius} function $\pm1,0$" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "1--8" +, update = "93.09 rote" } @article{kkk-tgrfw-83 -, author = "J. Kahn and M. M. Klawe and D. Kleitman" -, title = "Traditional galleries require fewer watchmen" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 4 -, year = 1983 -, pages = "194--206" -, update = "96.09 agarwal, 94.05 devillers" +, author = "J. Kahn and M. M. Klawe and D. Kleitman" +, title = "Traditional galleries require fewer watchmen" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 4 +, year = 1983 +, pages = "194--206" +, update = "96.09 agarwal, 94.05 devillers" } @techreport{kr-oadrp-90 -, author = "Andrew Kahng and Gabriel Robins" -, title = "Optimal algorithms for determining regularity in pointsets" -, type = "Technical Report" -, number = "CSD-900045" -, institution = "UCLA CS Department" -, year = 1990 -, precedes = "kr-oadrp-91" -, update = "98.07 bibrelex" +, author = "Andrew Kahng and Gabriel Robins" +, title = "Optimal algorithms for determining regularity in pointsets" +, type = "Technical Report" +, number = "CSD-900045" +, institution = "UCLA CS Department" +, year = 1990 +, precedes = "kr-oadrp-91" +, update = "98.07 bibrelex" } @inproceedings{kr-oadrp-91 -, author = "Andrew Kahng and Gabriel Robins" -, title = "Optimal algorithms for determining regularity in pointsets" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "167--170" -, succeeds = "kr-oadrp-90" -, cites = "bs-cht-90, dh-uhtdl-72, e-acg-87, eg-tsa-86, kr-oadrp-90, ps-cgi-85, r-trcad-89," -, update = "98.07 bibrelex" +, author = "Andrew Kahng and Gabriel Robins" +, title = "Optimal algorithms for determining regularity in pointsets" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "167--170" +, succeeds = "kr-oadrp-90" +, cites = "bs-cht-90, dh-uhtdl-72, e-acg-87, eg-tsa-86, kr-oadrp-90, ps-cgi-85, r-trcad-89," +, update = "98.07 bibrelex" } @article{kr-ncist-92 -, author = "A. B. Kahng and G. Robins" -, title = "A new class of iterative {Steiner} tree heuristics with good performance" -, journal = "IEEE Trans. Comput. Aided Design" -, volume = 11 -, year = 1992 -, pages = "893--902" -, update = "98.03 bibrelex" +, author = "A. B. Kahng and G. Robins" +, title = "A new class of iterative {Steiner} tree heuristics with good performance" +, journal = "IEEE Trans. Comput. Aided Design" +, volume = 11 +, year = 1992 +, pages = "893--902" +, update = "98.03 bibrelex" } @misc{kt-rdgpm-89 -, author = "Y. Kajitani and H. Takahashi" -, title = "Rectilinear Drawing of a Graph on a Plane with the Minimum Number of Segments" -, year = 1989 -, note = "presented at the 2nd Internat. Catania Combinatorial +, author = "Y. Kajitani and H. Takahashi" +, title = "Rectilinear Drawing of a Graph on a Plane with the Minimum Number of Segments" +, year = 1989 +, note = "presented at the 2nd Internat. Catania Combinatorial Conf." -, keywords = "graph drawing" -, update = "93.09 tamassia" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{k-rtpp-82 -, author = "J. Kajiya" -, title = "Ray tracing parametric patches" -, journal = "Comput. Graph." -, volume = 16 -, number = 3 -, year = 1982 -, pages = "245--254" -, update = "97.11 bibrelex" +, author = "J. Kajiya" +, title = "Ray tracing parametric patches" +, journal = "Comput. Graph." +, volume = 16 +, number = 3 +, year = 1982 +, pages = "245--254" +, update = "97.11 bibrelex" } @article{k-re-86 -, author = "J. T. Kajiya" -, title = "The Rendering Equation" -, journal = "Comput. Graph." -, volume = 20 -, year = 1986 -, pages = "143--150" -, update = "98.03 bibrelex" +, author = "J. T. Kajiya" +, title = "The Rendering Equation" +, journal = "Comput. Graph." +, volume = 20 +, year = 1986 +, pages = "143--150" +, update = "98.03 bibrelex" } @inproceedings{kt-alehd-97 -, author = "Konstantinos G. Kakoulis and Ioannis G. Tollis" -, title = "An Algorithm for Labeling Edges of Hierarchical Drawings" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "169--180" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani+tamassia+vismara" +, author = "Konstantinos G. Kakoulis and Ioannis G. Tollis" +, title = "An Algorithm for Labeling Edges of Hierarchical Drawings" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "169--180" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani+tamassia+vismara" } @article{kt-celpp-01 -, author = "K. G. Kakoulis and I. G. Tollis" -, title = "On the complexity of the edge label placement problem" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "1--17" -, update = "01.04 smid" +, author = "K. G. Kakoulis and I. G. Tollis" +, title = "On the complexity of the edge label placement problem" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "1--17" +, update = "01.04 smid" } @inproceedings{k-srsa-92 -, author = "G. Kalai" -, title = "A subexponential randomized simplex algorithm" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "475--482" +, author = "G. Kalai" +, title = "A subexponential randomized simplex algorithm" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "475--482" } @article{k-ipcs-84 -, author = "G. Kalai" -, title = "Intersection patterns of convex sets" -, journal = "Israel J. Math." -, volume = 48 -, year = 1984 -, pages = "161--174" -, update = "97.11 bibrelex" +, author = "G. Kalai" +, title = "Intersection patterns of convex sets" +, journal = "Israel J. Math." +, volume = 48 +, year = 1984 +, pages = "161--174" +, update = "97.11 bibrelex" } @article{k-mts-88 -, author = "G. Kalai" -, title = "Many triangulated spheres" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "1--14" +, author = "G. Kalai" +, title = "Many triangulated spheres" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "1--14" } @incollection{k-psp-97 -, author = "G. Kalai" -, title = "Polytope skeletons and paths" -, chapter = 17 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "331--344" -, update = "97.11 orourke" +, author = "G. Kalai" +, title = "Polytope skeletons and paths" +, chapter = 17 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "331--344" +, update = "97.11 orourke" } @article{kk-qpbdg-92 -, author = "G. Kalai and D. J. Kleitman" -, title = "A quasi-polynomial bound for the diameter of graphs of polyhedra" -, journal = "Bull. Amer. Math. Soc." -, volume = 26 -, year = 1992 -, pages = "315--316" -, update = "97.03 gaertner+salinger" +, author = "G. Kalai and D. J. Kleitman" +, title = "A quasi-polynomial bound for the diameter of graphs of polyhedra" +, journal = "Bull. Amer. Math. Soc." +, volume = 26 +, year = 1992 +, pages = "315--316" +, update = "97.03 gaertner+salinger" } @book{kz-pcc-00 -, title = "Polytopes -- Combinatorics and Computation" -, editor = "G. Kalai and G. Ziegler" -, publisher = "Birkh{\"a}user" -, year = 2000 -, update = "02.03 pocchiola" +, title = "Polytopes -- Combinatorics and Computation" +, editor = "G. Kalai and G. Ziegler" +, publisher = "Birkh{\"a}user" +, year = 2000 +, update = "02.03 pocchiola" } @article{km-dsanp-83 -, author = "I. Kalantari and G. McDonald" -, title = "A data structure and an algorithm for the nearest point problem" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-9" -, year = 1983 -, pages = "631--634" +, author = "I. Kalantari and G. McDonald" +, title = "A data structure and an algorithm for the nearest point problem" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-9" +, year = 1983 +, pages = "631--634" } @article{k-dscpg-82 -, author = "Y. E. Kalay" -, title = "Determining the spatial containment of a point in general polyhedra" -, journal = "Comput. Graph. Image Process." -, volume = 19 -, year = 1982 -, pages = "303--330" -, update = "98.11 bibrelex" +, author = "Y. E. Kalay" +, title = "Determining the spatial containment of a point in general polyhedra" +, journal = "Comput. Graph. Image Process." +, volume = 19 +, year = 1982 +, pages = "303--330" +, update = "98.11 bibrelex" } @book{k-moe-89 -, author = "Y. E. Kalay" -, title = "Modeling Objects and Environments" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1989 -, keywords = "CAD, geometric primitives, solid modeling, computational geometry" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "Y. E. Kalay" +, title = "Modeling Objects and Environments" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1989 +, keywords = "CAD, geometric primitives, solid modeling, computational geometry" +, update = "99.11 bibrelex, 98.03 mitchell" } @techreport{k-vicgb-85 -, author = "Y. E. Kalay" -, title = "Vertically integrated computational geometry based on the hybrid-edge data model" -, type = "Report" -, number = "??" -, institution = "Comput.-Aided Design Graph. Lab., School Architect., State Univ. New York Buffalo" -, address = "Buffalo, NY" -, year = 1985 +, author = "Y. E. Kalay" +, title = "Vertically integrated computational geometry based on the hybrid-edge data model" +, type = "Report" +, number = "??" +, institution = "Comput.-Aided Design Graph. Lab., School Architect., State Univ. New York Buffalo" +, address = "Buffalo, NY" +, year = 1985 } @techreport{kr-nacap-84 -, author = "R. Kalin and N. Ramsey" -, title = "A new analysis and comparison of algorithms for the planar segment intersection problem" -, type = "Report" -, number = "??" -, institution = "Dept. Elect. Engrg. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1984 +, author = "R. Kalin and N. Ramsey" +, title = "A new analysis and comparison of algorithms for the planar segment intersection problem" +, type = "Report" +, number = "??" +, institution = "Dept. Elect. Engrg. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1984 } @article{ks-dpbst-58 -, author = "G. K. Kalisch and E. G. Straus" -, title = "On the Determination of Points in a {Banach} space by Their Distances from Points of a Given Set" -, journal = "Acad. Brasil. Ci." -, volume = 29 -, year = 1958 -, pages = "501--519" -, update = "99.11 bibrelex" +, author = "G. K. Kalisch and E. G. Straus" +, title = "On the Determination of Points in a {Banach} space by Their Distances from Points of a Given Set" +, journal = "Acad. Brasil. Ci." +, volume = 29 +, year = 1958 +, pages = "501--519" +, update = "99.11 bibrelex" } @techreport{k-chahd-81 -, author = "M. Kallay" -, title = "Convex Hull Algorithms in Higher Dimensions" -, type = "Manuscript" -, institution = "??" -, year = 1981 -, update = "97.11 bibrelex" +, author = "M. Kallay" +, title = "Convex Hull Algorithms in Higher Dimensions" +, type = "Manuscript" +, institution = "??" +, year = 1981 +, update = "97.11 bibrelex" } @article{k-chme-86 -, author = "M. Kallay" -, title = "Convex hull made easy" -, journal = "Inform. Process. Lett." -, volume = 22 -, year = 1986 -, pages = 161 +, author = "M. Kallay" +, title = "Convex hull made easy" +, journal = "Inform. Process. Lett." +, volume = 22 +, year = 1986 +, pages = 161 } @article{k-cicha-84 -, author = "M. Kallay" -, title = "The complexity of incremental convex hull algorithms in {$R^{d}$}" -, journal = "Inform. Process. Lett." -, volume = 19 -, year = 1984 -, pages = 197 +, author = "M. Kallay" +, title = "The complexity of incremental convex hull algorithms in {$R^{d}$}" +, journal = "Inform. Process. Lett." +, volume = 19 +, year = 1984 +, pages = 197 } @inproceedings{k-cirfc-89 -, author = "E. Kaltofen" -, title = "Computing the irreducible real factors and components of an algebraic curve" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "79--87" -, cites = "acm-cad1b-84, c-qercf-75, ch-mrsp-74, c-sagcp-88, cg-stssa-83, j-ba1-74, k-ptrmb-85, k-fpait-85, k-ditpo-87, l-eaac-81, m-idp-64, r-fpade-88, s-ftatc-82, s-ndmea-54, t-iaf-84, w-ma-53, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "E. Kaltofen" +, title = "Computing the irreducible real factors and components of an algebraic curve" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "79--87" +, cites = "acm-cad1b-84, c-qercf-75, ch-mrsp-74, c-sagcp-88, cg-stssa-83, j-ba1-74, k-ptrmb-85, k-fpait-85, k-ditpo-87, l-eaac-81, m-idp-64, r-fpade-88, s-ftatc-82, s-ndmea-54, t-iaf-84, w-ma-53, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex" } @article{k-ditpo-87 -, author = "E. Kaltofen" -, title = "Deterministic irreducibility testing of polynomials over large finite fields" -, journal = "J. Symbolic Comput." -, volume = 4 -, year = 1987 -, pages = "77--82" -, update = "98.03 bibrelex" +, author = "E. Kaltofen" +, title = "Deterministic irreducibility testing of polynomials over large finite fields" +, journal = "J. Symbolic Comput." +, volume = 4 +, year = 1987 +, pages = "77--82" +, update = "98.03 bibrelex" } @article{k-fpait-85 -, author = "E. Kaltofen" -, title = "Fast parallel absolute irreducibility testing" -, journal = "J. Symbolic Computation 1" -, volume = "??" -, year = 1985 -, pages = "57--67" -, update = "98.03 bibrelex" +, author = "E. Kaltofen" +, title = "Fast parallel absolute irreducibility testing" +, journal = "J. Symbolic Computation 1" +, volume = "??" +, year = 1985 +, pages = "57--67" +, update = "98.03 bibrelex" } @article{k-ptrmb-85 -, author = "E. Kaltofen" -, title = "Polynomial-time reductions from multivariate to bi- and univariate integral polynomial factorization" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "469--489" -, update = "98.03 bibrelex" +, author = "E. Kaltofen" +, title = "Polynomial-time reductions from multivariate to bi- and univariate integral polynomial factorization" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "469--489" +, update = "98.03 bibrelex" } @article{ksss-tdmbb-86 -, author = "A. Kalvin and E. Schonberg and J. T. Schwartz and Micha Sharir" -, title = "Two dimensional model based boundary matching using footprints" -, journal = "Internat. J. Robot. Res." -, volume = 5 -, number = 4 -, year = 1986 -, pages = "38--55" -, keywords = "computer vision, curves, matchings, two-dimensional" -, update = "98.03 mitchell" +, author = "A. Kalvin and E. Schonberg and J. T. Schwartz and Micha Sharir" +, title = "Two dimensional model based boundary matching using footprints" +, journal = "Internat. J. Robot. Res." +, volume = 5 +, number = 4 +, year = 1986 +, pages = "38--55" +, keywords = "computer vision, curves, matchings, two-dimensional" +, update = "98.03 mitchell" } @article{kt-spmsb-96 -, author = "A. D. Kalvin and R. H. Taylor" -, title = "Superfaces: Polygonal Mesh Simplification with Bounded Error" -, journal = "IEEE Comput. Graph. Appl." -, volume = 16 -, number = 3 -, month = may -, year = 1996 -, pages = "64--77" -, update = "96.09 held" +, author = "A. D. Kalvin and R. H. Taylor" +, title = "Superfaces: Polygonal Mesh Simplification with Bounded Error" +, journal = "IEEE Comput. Graph. Appl." +, volume = 16 +, number = 3 +, month = may +, year = 1996 +, pages = "64--77" +, update = "96.09 held" } @article{kp-caasu-93 -, author = "B. Kalyanasundaram and K. Pruhs" -, title = "A competitive analysis of algorithms for searching unknown scenes" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "139--155" -, succeeds = "kp-cannb-92" -, update = "96.09 devillers" +, author = "B. Kalyanasundaram and K. Pruhs" +, title = "A competitive analysis of algorithms for searching unknown scenes" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "139--155" +, succeeds = "kp-cannb-92" +, update = "96.09 devillers" } @inproceedings{kp-cannb-92 -, author = "B. Kalyanasundaram and K. Pruhs" -, title = "A competitive analysis of nearest neighbor based algorithms for searching unknown scenes" -, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 577 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "147--157" -, precedes = "kp-caasu-93" -, update = "96.09 devillers" +, author = "B. Kalyanasundaram and K. Pruhs" +, title = "A competitive analysis of nearest neighbor based algorithms for searching unknown scenes" +, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 577 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "147--157" +, precedes = "kp-caasu-93" +, update = "96.09 devillers" } @article{kp-cctli-94 -, author = "B. Kalyanasundaram and K. Pruhs" -, title = "Constructing Competitive Tours from Local Information" -, journal = "Theoret. Comput. Sci." -, volume = 130 -, year = 1994 -, pages = "125--138" -, keywords = "mapping an unknown environment, limited distance visibility, on-line d-sweeper problem, watchman route, competitive analysis, shortest paths, on-line navigation" -, update = "98.03 mitchell" -, annote = "Originally appeared in ICALP 1993." +, author = "B. Kalyanasundaram and K. Pruhs" +, title = "Constructing Competitive Tours from Local Information" +, journal = "Theoret. Comput. Sci." +, volume = 130 +, year = 1994 +, pages = "125--138" +, keywords = "mapping an unknown environment, limited distance visibility, on-line d-sweeper problem, watchman route, competitive analysis, shortest paths, on-line navigation" +, update = "98.03 mitchell" +, annote = "Originally appeared in ICALP 1993." } @incollection{kp-onop-98 -, author = "Bala Kalyanasundaram and Kirk Pruhs" -, title = "Online Network Optimization Problems" -, editor = "Amos Fiat and Gerhard Woeginger" -, booktitle = "Online Algorithms: The State of the Art" -, series = "Lecture Notes Comput. Sci." -, volume = 1442 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "268--280" -, comments = "chapter 8 of fw-ola-98" -, update = "02.03 icking, 98.07 bibrelex, 98.03 mitchell" +, author = "Bala Kalyanasundaram and Kirk Pruhs" +, title = "Online Network Optimization Problems" +, editor = "Amos Fiat and Gerhard Woeginger" +, booktitle = "Online Algorithms: The State of the Art" +, series = "Lecture Notes Comput. Sci." +, volume = 1442 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "268--280" +, comments = "chapter 8 of fw-ola-98" +, update = "02.03 icking, 98.07 bibrelex, 98.03 mitchell" } @phdthesis{k-vaor-88 -, author = "T. Kamada" -, title = "On Visualization of Abstract Objects and Relations" -, school = "Department of Information Science, University of Tokyo" -, year = 1988 -, keywords = "doctoral thesis, graph drawing" -, update = "93.09 tamassia" +, author = "T. Kamada" +, title = "On Visualization of Abstract Objects and Relations" +, school = "Department of Information Science, University of Tokyo" +, year = 1988 +, keywords = "doctoral thesis, graph drawing" +, update = "93.09 tamassia" } @techreport{k-sgdsa-89 -, author = "T. Kamada" -, title = "Symmetric Graph Drawing by a Spring Algorithm and its Applications to Radial Drawing" -, institution = "Department of Information Science, University of Tokyo" -, year = 1989 -, keywords = "graph drawing" -, update = "98.07 tamassia, 93.09 tamassia" +, author = "T. Kamada" +, title = "Symmetric Graph Drawing by a Spring Algorithm and its Applications to Radial Drawing" +, institution = "Department of Information Science, University of Tokyo" +, year = 1989 +, keywords = "graph drawing" +, update = "98.07 tamassia, 93.09 tamassia" } % is this a book @book{k-vaor-89 -, author = "T. Kamada" -, title = "Visualizing Abstract Objects and Relations" -, publisher = "World Scientific Series in Computer Science" -, year = 1989 -, keywords = "graph drawing" -, update = "94.05 devillers, 93.09 tamassia" +, author = "T. Kamada" +, title = "Visualizing Abstract Objects and Relations" +, publisher = "World Scientific Series in Computer Science" +, year = 1989 +, keywords = "graph drawing" +, update = "94.05 devillers, 93.09 tamassia" } @article{kk-athl-87 -, author = "T. Kamada and S. Kawai" -, title = "An advanced treatment of hidden lines" -, journal = "ACM Trans. Graph." -, volume = 6 -, year = 1987 -, pages = "308--323" +, author = "T. Kamada and S. Kawai" +, title = "An advanced treatment of hidden lines" +, journal = "ACM Trans. Graph." +, volume = 6 +, year = 1987 +, pages = "308--323" } @article{kk-adgug-89 -, author = "T. Kamada and S. Kawai" -, title = "An Algorithm for Drawing General Undirected Graphs" -, journal = "Inform. Process. Lett." -, volume = 31 -, year = 1989 -, pages = "7--15" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "T. Kamada and S. Kawai" +, title = "An Algorithm for Drawing General Undirected Graphs" +, journal = "Inform. Process. Lett." +, volume = 31 +, year = 1989 +, pages = "7--15" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{kk-adnsh-88 -, author = "T. Kamada and S. Kawai" -, title = "Automatic Display of Network Structures for Human Understanding" -, number = "88-007" -, institution = "Department of Information Science, University of Tokyo" -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "T. Kamada and S. Kawai" +, title = "Automatic Display of Network Structures for Human Understanding" +, number = "88-007" +, institution = "Department of Information Science, University of Tokyo" +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{kd-mppmr-86 -, author = "S. Kambhampati and L. S. Davis" -, title = "Multiresolution Path Planning for Mobile Robots" -, journal = "Internat. J. Robot. Autom." -, volume = "RA-2" -, number = 3 -, month = sep -, year = 1986 -, pages = "135--145" -, keywords = "quadtree, shortest paths" +, author = "S. Kambhampati and L. S. Davis" +, title = "Multiresolution Path Planning for Mobile Robots" +, journal = "Internat. J. Robot. Autom." +, volume = "RA-2" +, number = 3 +, month = sep +, year = 1986 +, pages = "135--145" +, keywords = "quadtree, shortest paths" } @article{k-vrrpd-75 -, author = "T. Kameda" -, title = "On the vector representation of the reachability in planar directed graphs" -, journal = "Inform. Process. Lett." -, volume = 3 -, number = 3 -, year = 1975 -, pages = "75--77" -, update = "98.03 bibrelex" +, author = "T. Kameda" +, title = "On the vector representation of the reachability in planar directed graphs" +, journal = "Inform. Process. Lett." +, volume = 3 +, number = 3 +, year = 1975 +, pages = "75--77" +, update = "98.03 bibrelex" } @inproceedings{kf-hrtir-94 -, author = "I. Kamel and C. Faloutsos" -, title = "Hilbert {R}-tree: {A}n improved {R}-tree using fractals" -, booktitle = "Proc. 20th VLDB Conference" -, year = 1994 -, pages = "500--510" -, update = "97.07 agarwal" +, author = "I. Kamel and C. Faloutsos" +, title = "Hilbert {R}-tree: {A}n improved {R}-tree using fractals" +, booktitle = "Proc. 20th VLDB Conference" +, year = 1994 +, pages = "500--510" +, update = "97.07 agarwal" } @inproceedings{kf-prt-93 -, author = "I. Kamel and C. Faloutsos" -, title = "On packing {R}-trees" -, booktitle = "Proc. 2nd Internat. Conf. on Information and Knowledge Management" -, year = 1993 -, pages = "490--499" -, update = "97.07 agarwal" +, author = "I. Kamel and C. Faloutsos" +, title = "On packing {R}-trees" +, booktitle = "Proc. 2nd Internat. Conf. on Information and Knowledge Management" +, year = 1993 +, pages = "490--499" +, update = "97.07 agarwal" } @inproceedings{kf-prt-92 -, author = "I. Kamel and C. Faloutsos" -, title = "Parallel {R}-trees" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1992 -, pages = "195--204" -, update = "97.07 agarwal" +, author = "I. Kamel and C. Faloutsos" +, title = "Parallel {R}-trees" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1992 +, pages = "195--204" +, update = "97.07 agarwal" } @book{k-dv1-83 -, author = "E. Kamke" -, title = "Differentialgleichungen, Volume I" -, publisher = "B. G. Teubner" -, address = "Stuttgart" -, year = 1983 -, update = "98.11 bibrelex" +, author = "E. Kamke" +, title = "Differentialgleichungen, Volume I" +, publisher = "B. G. Teubner" +, address = "Stuttgart" +, year = 1983 +, update = "98.11 bibrelex" } @article{k-amrts-84 -, author = "K. Kammerlander" -, title = "C 900 - An Advanced Mobile Radio Telephone System with Optimum Frequency Utilization" -, journal = "IEEE Trans. Selected Areas in Communication" -, volume = 2 -, year = 1984 -, pages = "589--597" -, update = "98.07 bibrelex" +, author = "K. Kammerlander" +, title = "C 900 - An Advanced Mobile Radio Telephone System with Optimum Frequency Utilization" +, journal = "IEEE Trans. Selected Areas in Communication" +, volume = 2 +, year = 1984 +, pages = "589--597" +, update = "98.07 bibrelex" } @article{k-ker-32 -, author = "R. E. van Kampen" -, title = "Komplexe in euklidischen {R\"aumen}" -, journal = "Abh. Math. Sem. Hamburg" -, volume = 9 -, year = 1932 -, pages = "72--78" -, note = "Berightigung dazu, {\em ibid.} (1932) 152--153" -, update = "95.01 matousek" +, author = "R. E. van Kampen" +, title = "Komplexe in euklidischen {R\"aumen}" +, journal = "Abh. Math. Sem. Hamburg" +, volume = 9 +, year = 1932 +, pages = "72--78" +, note = "Berightigung dazu, {\em ibid.} (1932) 152--153" +, update = "95.01 matousek" } @article{k-tow-80 -, author = "T. Kanade" -, title = "A theory of origami world" -, journal = "Artif. Intell." -, volume = 13 -, year = 1980 -, pages = "279--311" -, update = "97.11 bibrelex" +, author = "T. Kanade" +, title = "A theory of origami world" +, journal = "Artif. Intell." +, volume = 13 +, year = 1980 +, pages = "279--311" +, update = "97.11 bibrelex" } @article{kg-cfpaa-91 -, author = "S. Kanaganathan and N. B. Goldstein" -, title = "Comparison Of Four-Point Adding Algorithms For Delaunay-Type Three Dimensional Mesh Generators" -, journal = "IEEE Trans. Magn." -, volume = 27 -, number = 3 -, month = may -, year = 1991 -, pages = "3444--3451" -, keywords = "three-dimensional tetrahedral meshes, Delaunay triangulation, Dirichlet tessellation, pascal primitives, point adding algorithms" -, annote = "Does not understand what DT is! Three of the - algorithms do not give DT (and give bad meshes.)" -, abstract = "Four different approaches to generating - three-dimensional tetrahedral meshes were tested and - compared in regard to the complexity and quality of the - elements they produce as points are added into the - existing coarse meshes. Points are added according to - Delaunay triangulation. It was found that there is a - marked difference between the different approaches and - that the method suggested by D. F. Watson (1981) is the - better one in terms of quality of the meshes generated, - although its time complexity is a little higher than - that of the other methods. 8 Refs." +, author = "S. Kanaganathan and N. B. Goldstein" +, title = "Comparison Of Four-Point Adding Algorithms For Delaunay-Type Three Dimensional Mesh Generators" +, journal = "IEEE Trans. Magn." +, volume = 27 +, number = 3 +, month = may +, year = 1991 +, pages = "3444--3451" +, keywords = "three-dimensional tetrahedral meshes, Delaunay triangulation, Dirichlet tessellation, pascal primitives, point adding algorithms" +, annote = "Does not understand what DT is! Three of the + algorithms do not give DT (and give bad meshes.)" +, abstract = "Four different approaches to generating + three-dimensional tetrahedral meshes were tested and + compared in regard to the complexity and quality of the + elements they produce as points are added into the + existing coarse meshes. Points are added according to + Delaunay triangulation. It was found that there is a + marked difference between the different approaches and + that the method suggested by D. F. Watson (1981) is the + better one in terms of quality of the meshes generated, + although its time complexity is a little higher than + that of the other methods. 8 Refs." } @inproceedings{kna-eegpp-92 -, author = "N. Kanamaru and T. Nishizeki and T. Asano" -, title = "Efficient Enumeration of Grid Points in a Polygon and its Application to Integer Programming" -, booktitle = "Integer Programming and Combinatorial Optimization" -, year = 1992 -, pages = "??" -, precedes = "kna-eegpp-94" -, update = "96.09 devillers, 93.09 milone+mitchell" +, author = "N. Kanamaru and T. Nishizeki and T. Asano" +, title = "Efficient Enumeration of Grid Points in a Polygon and its Application to Integer Programming" +, booktitle = "Integer Programming and Combinatorial Optimization" +, year = 1992 +, pages = "??" +, precedes = "kna-eegpp-94" +, update = "96.09 devillers, 93.09 milone+mitchell" } @article{kna-eegpp-94 -, author = "N. Kanamaru and T. Nishizeki and T. Asano" -, title = "Efficient Enumeration of Grid Points in a Polygon and its Application to Integer Programming" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "69--85" -, keywords = "convex polygon, grid point enumeration, integer programming, polygon filling" -, succeeds = "kna-eegpp-92" -, update = "96.09 devillers" +, author = "N. Kanamaru and T. Nishizeki and T. Asano" +, title = "Efficient Enumeration of Grid Points in a Polygon and its Application to Integer Programming" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "69--85" +, keywords = "convex polygon, grid point enumeration, integer programming, polygon filling" +, succeeds = "kna-eegpp-92" +, update = "96.09 devillers" } @book{k-gcmv-93 -, author = "K. Kanatani" -, title = "Geometric Computation for Machine Vision" -, publisher = "Clarendon Press" -, address = "Oxford" -, year = 1993 -, update = "98.07 orourke" +, author = "K. Kanatani" +, title = "Geometric Computation for Machine Vision" +, publisher = "Clarendon Press" +, address = "Oxford" +, year = 1993 +, update = "98.07 orourke" } @techreport{kd-mtspp-?? -, author = "Y. Kanayama and G. R. DeHaan" -, title = "A Mathematical Theory of Safe Path Planning" -, type = "Technical {Report}" -, institution = "Department of Computer Science, University of California, Santa Barbara" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "Y. Kanayama and G. R. DeHaan" +, title = "A Mathematical Theory of Safe Path Planning" +, type = "Technical {Report}" +, institution = "Department of Computer Science, University of California, Santa Barbara" +, year = "??" +, update = "93.09 milone+mitchell" } @inproceedings{k-bpppt-97 -, author = "Atsushi Kaneko" -, title = "A Balanced Partition of Points in the Plane and Tree Embedding Problems" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "56--58" -, update = "97.11 jones" +, author = "Atsushi Kaneko" +, title = "A Balanced Partition of Points in the Plane and Tree Embedding Problems" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "56--58" +, update = "97.11 jones" } @book{kp-td-86 -, title = "The Theory of Databases" -, editor = "Paris C. Kanellakis and Franco P. Preparata" -, series = "Adv. Comput. Res." -, volume = 3 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1986 -, update = "01.04 icking" +, title = "The Theory of Databases" +, editor = "Paris C. Kanellakis and Franco P. Preparata" +, series = "Adv. Comput. Res." +, volume = 3 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1986 +, update = "01.04 icking" } @inproceedings{krvv-idmcc-93 -, author = "P. C. Kanellakis and S. Ramaswamy and D. E. Vengroff and J. S. Vitter" -, title = "Indexing for data models with constraints and classes" -, booktitle = "Proc. 12th ACM SIGACT-SIGMOD-SIGART Conf. Princ. Database Sys." -, year = 1993 -, pages = "233--243" -, update = "93.09 vengroff" +, author = "P. C. Kanellakis and S. Ramaswamy and D. E. Vengroff and J. S. Vitter" +, title = "Indexing for data models with constraints and classes" +, booktitle = "Proc. 12th ACM SIGACT-SIGMOD-SIGART Conf. Princ. Database Sys." +, year = 1993 +, pages = "233--243" +, update = "93.09 vengroff" } @inproceedings{ko-ichspa-00 -, author = "Biliana Kaneva and J. O'Rourke" -, title = "An Implementation of {Chen \& Han's} Shortest Paths Algorithm" -, booktitle = "Proc. 12th Canad. Conf. Comput. Geom." -, site = "New Brunswick" -, month = aug -, year = 2000 -, pages = "139--146" -, url = "https://www.science.smith.edu/~jorourke/ShortestPaths//" -, keywords = "shortest paths" -, update = "02.03 icking, 01.11 orourke, 01.04 icking+orourke, 00.11 smid, 00.07 orourke" +, author = "Biliana Kaneva and J. O'Rourke" +, title = "An Implementation of {Chen \& Han's} Shortest Paths Algorithm" +, booktitle = "Proc. 12th Canad. Conf. Comput. Geom." +, site = "New Brunswick" +, month = aug +, year = 2000 +, pages = "139--146" +, url = "https://www.science.smith.edu/~jorourke/ShortestPaths//" +, keywords = "shortest paths" +, update = "02.03 icking, 01.11 orourke, 01.04 icking+orourke, 00.11 smid, 00.07 orourke" } @article{k-csptg-90 -, author = "A. Kanevsky" -, title = "A Characterization of Separating Pairs and Triplets in a Graph" -, journal = "Congr. Numer." -, volume = 74 -, year = 1990 -, pages = "213--232" -, update = "94.01 tamassia" +, author = "A. Kanevsky" +, title = "A Characterization of Separating Pairs and Triplets in a Graph" +, journal = "Congr. Numer." +, volume = 74 +, year = 1990 +, pages = "213--232" +, update = "94.01 tamassia" } @inproceedings{ktdc-olmfc-91 -, author = "A. Kanevsky and R. Tamassia and G. {Di Battista} and J. Chen" -, title = "On-line Maintenance of the Four-Connected Components of a Graph" -, booktitle = "Proc. Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "793--801" -, update = "94.05 tamassia" +, author = "A. Kanevsky and R. Tamassia and G. {Di Battista} and J. Chen" +, title = "On-line Maintenance of the Four-Connected Components of a Graph" +, booktitle = "Proc. Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "793--801" +, update = "94.05 tamassia" } @article{k-ccchf-85 -, author = "B. S. Kang" -, title = "Computer construction of the convex hull of a finite set of points in space ({Chinese} {English} summary)" -, journal = "J. Northwest Univ." -, volume = 15 -, year = 1985 -, pages = "17--23" +, author = "B. S. Kang" +, title = "Computer construction of the convex hull of a finite set of points in space ({Chinese} {English} summary)" +, journal = "J. Northwest Univ." +, volume = 15 +, year = 1985 +, pages = "17--23" } @inproceedings{kg-srrg-92 -, author = "D. Kang and K. Y. Goldberg" -, title = "Shape recognition by random grasping" -, booktitle = "Proc. IEEE Internat. Conf. Intell. Robots Syst." -, month = jul -, year = 1992 -, update = "98.07 bibrelex" +, author = "D. Kang and K. Y. Goldberg" +, title = "Shape recognition by random grasping" +, booktitle = "Proc. IEEE Internat. Conf. Intell. Robots Syst." +, month = jul +, year = 1992 +, update = "98.07 bibrelex" } @article{kg-sprg-95 -, author = "Dukhyun Kang and Kenneth Y. Goldberg" -, title = "Sorting Parts by Random Grasping" -, journal = "IEEE Trans. Robot. Autom." -, volume = 11 -, number = 1 -, month = feb -, year = 1995 -, pages = "146--152" -, keywords = "probing, diameter probes, parallel-jaw gripper, random grasping" -, update = "96.09 romanik" +, author = "Dukhyun Kang and Kenneth Y. Goldberg" +, title = "Sorting Parts by Random Grasping" +, journal = "IEEE Trans. Robot. Autom." +, volume = 11 +, number = 1 +, month = feb +, year = 1995 +, pages = "146--152" +, keywords = "probing, diameter probes, parallel-jaw gripper, random grasping" +, update = "96.09 romanik" } @phdthesis{k-tpgc-90 -, author = "Mohan Kankanhalli" -, title = "Techniques for Parallel Geometric Computations" -, school = "Electrical, Computer, and Systems Engineering Dept., Rensselaer Polytechnic Institute" -, month = oct -, year = 1990 -, keywords = "doctoral thesis, area, parallel computation, grids" -, update = "93.09 franklin" +, author = "Mohan Kankanhalli" +, title = "Techniques for Parallel Geometric Computations" +, school = "Electrical, Computer, and Systems Engineering Dept., Rensselaer Polytechnic Institute" +, month = oct +, year = 1990 +, keywords = "doctoral thesis, area, parallel computation, grids" +, update = "93.09 franklin" } @techreport{kf-apcus-92 -, author = "Mohan Kankanhalli and Wm. Randolph Franklin" -, title = "Area and Perimeter Computation of the Union of a Set of Iso-Rectangles in Parallel" -, type = "Technical {Report}" -, number = "TR92-81-0" -, institution = "Institute Of Systems Science, National University of Singapore" -, address = "Kent Ridge, Singapore 0511" -, year = 1992 -, keywords = "intersection, parallel computation, grids, area" -, update = "93.09 franklin" +, author = "Mohan Kankanhalli and Wm. Randolph Franklin" +, title = "Area and Perimeter Computation of the Union of a Set of Iso-Rectangles in Parallel" +, type = "Technical {Report}" +, number = "TR92-81-0" +, institution = "Institute Of Systems Science, National University of Singapore" +, address = "Kent Ridge, Singapore 0511" +, year = 1992 +, keywords = "intersection, parallel computation, grids, area" +, update = "93.09 franklin" } @techreport{k-cgrw-93 -, author = "Ravi Kannan" -, title = "Convergence of a geometric random walk" -, institution = "Princeton University" -, month = feb -, year = 1993 -, comments = "DIMACS Workshop on Randomized Algorithms for Combinatorial Optimization" -, update = "93.09 milone+mitchell" +, author = "Ravi Kannan" +, title = "Convergence of a geometric random walk" +, institution = "Princeton University" +, month = feb +, year = 1993 +, comments = "DIMACS Workshop on Randomized Algorithms for Combinatorial Optimization" +, update = "93.09 milone+mitchell" } @inproceedings{k-iaipr-83 -, author = "R. Kannan" -, title = "Improved algorithms for integer programming and related lattice problems" -, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." -, year = 1983 -, pages = "193--206" -, precedes = "k-mcbti-87" +, author = "R. Kannan" +, title = "Improved algorithms for integer programming and related lattice problems" +, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." +, year = 1983 +, pages = "193--206" +, precedes = "k-mcbti-87" } @article{k-mcbti-87 -, author = "R. Kannan" -, title = "Minkowski's convex body theorem and integer programming" -, journal = "Math. Oper. Res." -, volume = 12 -, year = 1987 -, pages = "415--440" -, succeeds = "k-iaipr-83" +, author = "R. Kannan" +, title = "Minkowski's convex body theorem and integer programming" +, journal = "Math. Oper. Res." +, volume = 12 +, year = 1987 +, pages = "415--440" +, succeeds = "k-iaipr-83" } @techreport{k-rwcs-92 -, author = "R. Kannan" -, title = "Random Walks in Convex Sets" -, type = "Manuscript" -, institution = "Indian Institute of Technology" -, address = "New Delhi" -, year = 1992 -, note = "Presented at Workshop on Approximation Algorithms" -, update = "93.09 milone+mitchell" +, author = "R. Kannan" +, title = "Random Walks in Convex Sets" +, type = "Manuscript" +, institution = "Indian Institute of Technology" +, address = "New Delhi" +, year = 1992 +, note = "Presented at Workshop on Approximation Algorithms" +, update = "93.09 milone+mitchell" } @article{kb-ptacs-79 -, author = "R. Kannan and A. Bachem" -, title = "Polynomial time algorithms for computing the {Smith} and {Hermite} normal forms of an integer matrix" -, journal = "SIAM J. Comput." -, volume = 8 -, year = 1979 -, pages = "499--507" -, update = "97.11 bibrelex" +, author = "R. Kannan and A. Bachem" +, title = "Polynomial time algorithms for computing the {Smith} and {Hermite} normal forms of an integer matrix" +, journal = "SIAM J. Comput." +, volume = 8 +, year = 1979 +, pages = "499--507" +, update = "97.11 bibrelex" } @inproceedings{knr-irg-88 -, author = "S. Kannan and M. Naor and S. Rudich" -, title = "Implicit representation of graphs" -, booktitle = "Proc. 20th ACM Sympoos. Theory. Comput." -, year = 1988 -, pages = "334--343" -, update = "98.11 bibrelex" +, author = "S. Kannan and M. Naor and S. Rudich" +, title = "Implicit representation of graphs" +, booktitle = "Proc. 20th ACM Sympoos. Theory. Comput." +, year = 1988 +, pages = "334--343" +, update = "98.11 bibrelex" } @article{ks-tpp-92 -, author = "S. Kannan and D. Soroker" -, title = "Tiling polygons with parallelograms" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "175--188" +, author = "S. Kannan and D. Soroker" +, title = "Tiling polygons with parallelograms" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "175--188" } @incollection{km-alnor-93 -, author = "Sampath K. Kannan and Eugene W. Myers" -, title = "An Algorithm for Locating Non-Overlapping Regions of Maximum Alignment Score" -, booktitle = "Combinatorial Pattern Matching" -, series = "Lecture Notes Comput. Sci." -, volume = "??" -, institution = "University of Arizona, USA" -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Sampath K. Kannan and Eugene W. Myers" +, title = "An Algorithm for Locating Non-Overlapping Regions of Maximum Alignment Score" +, booktitle = "Combinatorial Pattern Matching" +, series = "Lecture Notes Comput. Sci." +, volume = "??" +, institution = "University of Arizona, USA" +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{k-sletm-97 -, author = "M. Kano" -, title = "A Straight-Line Embedding of Two or More Rooted Trees in the Plane" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "50--55" -, update = "97.11 jones" +, author = "M. Kano" +, title = "A Straight-Line Embedding of Two or More Rooted Trees in the Plane" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "50--55" +, update = "97.11 jones" } @inproceedings{k-mcvr-93 -, author = "G. Kant" -, title = "A More Compact Visibility Representation" -, editor = "J. van Leeuwen" -, booktitle = "Proc. 19th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '93" -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1993 -, precedes = "k-mcvr-97" -, update = "98.11 bibrelex, 98.07 bibrelex, 97.07 devillers, 94.01 tamassia, 93.09 milone+mitchell" +, author = "G. Kant" +, title = "A More Compact Visibility Representation" +, editor = "J. van Leeuwen" +, booktitle = "Proc. 19th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '93" +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1993 +, precedes = "k-mcvr-97" +, update = "98.11 bibrelex, 98.07 bibrelex, 97.07 devillers, 94.01 tamassia, 93.09 milone+mitchell" } @article{k-mcvr-97 -, author = "G. Kant" -, title = "A More Compact Visibility Representation" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "197--210" -, succeeds = "k-mcvr-93" -, update = "98.07 tamassia, 97.07 devillers" -, annote = "$\lfloor 3/2 n \rfloor - 3) \times (n-1)$" +, author = "G. Kant" +, title = "A More Compact Visibility Representation" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "197--210" +, succeeds = "k-mcvr-93" +, update = "98.07 tamassia, 97.07 devillers" +, annote = "$\lfloor 3/2 n \rfloor - 3) \times (n-1)$" } % ### same pages as k-dpgul-92 @inproceedings{k-mpgdg-92 -, author = "G. Kant" -, title = "A New Method for Planar Graph Drawings on a Grid" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "101--110" -, update = "99.03 forrest, 98.11 bibrelex" +, author = "G. Kant" +, title = "A New Method for Planar Graph Drawings on a Grid" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "101--110" +, update = "99.03 forrest, 98.11 bibrelex" } @phdthesis{k-adpg-93 -, author = "G. Kant" -, title = "Algorithms for Drawing Planar Graphs" -, school = "Dept. Comput. Sci., Univ. Utrecht" -, address = "Utrecht, Netherlands" -, year = 1993 -, keywords = "doctoral thesis, graph drawing" -, update = "94.05 tamassia" +, author = "G. Kant" +, title = "Algorithms for Drawing Planar Graphs" +, school = "Dept. Comput. Sci., Univ. Utrecht" +, address = "Utrecht, Netherlands" +, year = 1993 +, keywords = "doctoral thesis, graph drawing" +, update = "94.05 tamassia" } @techreport{k-ompab-92 -, author = "G. Kant" -, title = "An ${O}(n^2)$ Maximal Planarization Algorithm based on {PQ}-trees" -, number = "RUU-CS-92-03" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1992 -, keywords = "graph drawing" -, update = "94.05 schwarzkopf, 93.09 tamassia" +, author = "G. Kant" +, title = "An ${O}(n^2)$ Maximal Planarization Algorithm based on {PQ}-trees" +, number = "RUU-CS-92-03" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1992 +, keywords = "graph drawing" +, update = "94.05 schwarzkopf, 93.09 tamassia" } @article{k-dpguc-96 -, author = "G. Kant" -, title = "Drawing Planar Graphs Using the Canonical Ordering" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "4--32" -, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" -, keywords = "graph drawing, planar, orthogonal, straight-line, polyline, convex, angular resolution" -, succeeds = "k-dpgul-92" -, update = "96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" +, author = "G. Kant" +, title = "Drawing Planar Graphs Using the Canonical Ordering" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "4--32" +, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" +, keywords = "graph drawing, planar, orthogonal, straight-line, polyline, convex, angular resolution" +, succeeds = "k-dpgul-92" +, update = "96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" } @inproceedings{k-dpgul-92 -, author = "G. Kant" -, title = "Drawing Planar Graphs Using the {\it{}lmc}-Ordering" -, booktitle = "Proc. 33th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "101--110" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "G. Kant" +, title = "Drawing Planar Graphs Using the {\it{}lmc}-Ordering" +, booktitle = "Proc. 33th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "101--110" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{k-hgd-92t -, author = "G. Kant" -, title = "Hexagonal Grid Drawings" -, number = "RUU-CS-92-06" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1992 -, keywords = "graph drawing" -, update = "94.05 schwarzkopf, 93.09 milone+mitchell+tamassia" +, author = "G. Kant" +, title = "Hexagonal Grid Drawings" +, number = "RUU-CS-92-06" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1992 +, keywords = "graph drawing" +, update = "94.05 schwarzkopf, 93.09 milone+mitchell+tamassia" } @inproceedings{k-hgd-92i -, author = "Goos Kant" -, title = "Hexagonal grid drawings" -, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, year = 1992 -, update = "98.07 tamassia, 93.09 milone+mitchell" +, author = "Goos Kant" +, title = "Hexagonal grid drawings" +, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, year = 1992 +, update = "98.07 tamassia, 93.09 milone+mitchell" } @inproceedings{kb-pgap-92 -, author = "G. Kant and H. L. Bodlaender" -, title = "Planar Graph Augmentation Problems" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "286--298" -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "G. Kant and H. L. Bodlaender" +, title = "Planar Graph Augmentation Problems" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "286--298" +, keywords = "graph drawing" +, update = "95.01 tamassia" } @inproceedings{kb-tpgwm-92 -, author = "G. Kant and H. L. Bodlaender" -, title = "Triangulating planar graphs while minimizing the maximum degree" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "258--271" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "G. Kant and H. L. Bodlaender" +, title = "Triangulating planar graphs while minimizing the maximum degree" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "258--271" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{kh-rdvr-93 -, author = "Goos Kant and Xin He" -, title = "Rectangular Duals and Visibility Representations" -, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" -, month = jun -, year = 1993 -, pages = "??" -, comments = "does it exist?" -, update = "94.09 franciosa, 93.09 milone+mitchell" +, author = "Goos Kant and Xin He" +, title = "Rectangular Duals and Visibility Representations" +, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" +, month = jun +, year = 1993 +, pages = "??" +, comments = "does it exist?" +, update = "94.09 franciosa, 93.09 milone+mitchell" } @inproceedings{kh-tafrd-93 -, author = "Goos Kant and Xin He" -, title = "Two Algorithms for Finding Rectangular Duals of Planar Graphs" -, booktitle = "Proc. 19th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '93" -, series = "Lecture Notes Comput. Sci." -, volume = 790 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "396--410" -, update = "98.07 bibrelex+vismara, 95.01 schwarzkopf, 94.09 franciosa, 93.09 milone+mitchell" +, author = "Goos Kant and Xin He" +, title = "Two Algorithms for Finding Rectangular Duals of Planar Graphs" +, booktitle = "Proc. 19th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '93" +, series = "Lecture Notes Comput. Sci." +, volume = 790 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "396--410" +, update = "98.07 bibrelex+vismara, 95.01 schwarzkopf, 94.09 franciosa, 93.09 milone+mitchell" } @inproceedings{kltt-arvrt-93 -, author = "G. Kant and G. Liotta and R. Tamassia and I. Tollis" -, title = "Area requirement of visibility representations of trees" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "192--197" -, cites = "a-srvg-89, k-mcvr-93, o-cgc18-93, rt-rplbo-86, tt-uavrp-86, kw-wvgbr-89, w-brvgr-89, cdp-noaau-92, dett-adgab-93, dtt-cvrg-92, dtt-arsdp-92, ZZZ" -, update = "98.11 bibrelex, 94.05 tamassia, 93.09 milone+mitchell" +, author = "G. Kant and G. Liotta and R. Tamassia and I. Tollis" +, title = "Area requirement of visibility representations of trees" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "192--197" +, cites = "a-srvg-89, k-mcvr-93, o-cgc18-93, rt-rplbo-86, tt-uavrp-86, kw-wvgbr-89, w-brvgr-89, cdp-noaau-92, dett-adgab-93, dtt-cvrg-92, dtt-arsdp-92, ZZZ" +, update = "98.11 bibrelex, 94.05 tamassia, 93.09 milone+mitchell" } @article{kltt-arvrt-97 -, author = "G. Kant and G. Liotta and R. Tamassia and I. G. Tollis" -, title = "Area Requirement of Visibility Representations of Trees" -, journal = "Inform. Process. Lett." -, volume = 62 -, number = 2 -, year = 1997 -, pages = "81--88" -, url = "https://www.cs.brown.edu/cgc/papers/kltt-arvrt-97.ps.gz" -, keywords = "graph drawing, visibility, tree, CGC, Brown" -, update = "98.11 tamassia, 97.03 tamassia" +, author = "G. Kant and G. Liotta and R. Tamassia and I. G. Tollis" +, title = "Area Requirement of Visibility Representations of Trees" +, journal = "Inform. Process. Lett." +, volume = 62 +, number = 2 +, year = 1997 +, pages = "81--88" +, url = "https://www.cs.brown.edu/cgc/papers/kltt-arvrt-97.ps.gz" +, keywords = "graph drawing, visibility, tree, CGC, Brown" +, update = "98.11 tamassia, 97.03 tamassia" } @techreport{kltt-vrt-96 -, author = "G. Kant and G. Liotta and R. Tamassia and I. G. Tollis" -, title = "Visibility Representations of Trees" -, type = "Technical Report" -, number = "CS-96-23" -, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-23.ps.Z" -, keywords = "graph drawing, visibility, tree, CGC, Brown" -, update = "97.03 tamassia" +, author = "G. Kant and G. Liotta and R. Tamassia and I. G. Tollis" +, title = "Visibility Representations of Trees" +, type = "Technical Report" +, number = "CS-96-23" +, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-23.ps.Z" +, keywords = "graph drawing, visibility, tree, CGC, Brown" +, update = "97.03 tamassia" } @article{k-fibrp-85 -, author = "K. Kant" -, title = "Finding interferences between rectangular paths" -, journal = "IEEE Trans. Comput." -, volume = 34 -, number = 11 -, year = 1985 -, pages = "1045--1049" -, update = "94.01 tuan" +, author = "K. Kant" +, title = "Finding interferences between rectangular paths" +, journal = "IEEE Trans. Comput." +, volume = 34 +, number = 11 +, year = 1985 +, pages = "1045--1049" +, update = "94.01 tuan" } @article{kz-tetpp-86 -, author = "K. Kant and S. Zucker" -, title = "Toward efficient trajectory planning: {The} path-velocity decomposition" -, journal = "Internat. J. Robot. Res." -, volume = 5 -, number = 3 -, year = 1986 -, pages = "72--89" -, update = "98.03 bibrelex" +, author = "K. Kant and S. Zucker" +, title = "Toward efficient trajectory planning: {The} path-velocity decomposition" +, journal = "Internat. J. Robot. Res." +, volume = 5 +, number = 3 +, year = 1986 +, pages = "72--89" +, update = "98.03 bibrelex" } @article{kz-pcftt-88 -, author = "Kamal Kant and Steven W. Zucker" -, title = "Planning collision-free trajectories in time-varying environments: a two-level hierarchy" -, journal = "Visual Comput." -, volume = 3 -, number = 5 -, month = mar -, year = 1988 -, pages = "304--313" -, keywords = "robotics, trajectory planning, path planning, obstacle avoidance, velocity planning" +, author = "Kamal Kant and Steven W. Zucker" +, title = "Planning collision-free trajectories in time-varying environments: a two-level hierarchy" +, journal = "Visual Comput." +, volume = 3 +, number = 5 +, month = mar +, year = 1988 +, pages = "304--313" +, keywords = "robotics, trajectory planning, path planning, obstacle avoidance, velocity planning" } @article{k-mslra-92 -, author = "V. Kantabutra" -, title = "Motions of a short-linked robot arm in a square" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "69--76" +, author = "V. Kantabutra" +, title = "Motions of a short-linked robot arm in a square" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "69--76" } @article{k-rpura-97 -, author = "V. Kantabutra" -, title = "Reaching a Point with an Unanchored Robot Arm in a Square" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "539--550" -, update = "98.11 devillers+orourke" +, author = "V. Kantabutra" +, title = "Reaching a Point with an Unanchored Robot Arm in a Square" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "539--550" +, update = "98.11 devillers+orourke" } @article{k-tscan-83 -, author = "V. Kantabutra" -, title = "Traveling salesman cycles are not always subgraphs of {Voronoi} duals" -, journal = "Inform. Process. Lett." -, volume = 16 -, year = 1983 -, pages = "11--12" +, author = "V. Kantabutra" +, title = "Traveling salesman cycles are not always subgraphs of {Voronoi} duals" +, journal = "Inform. Process. Lett." +, volume = 16 +, year = 1983 +, pages = "11--12" } @inproceedings{kk-aram-84 -, author = "V. Kantabutra and S. R. Kosaraju" -, title = "Algorithms for robot arm movements" -, booktitle = "Proc. Conf. Inform. Sci. \& Sys." -, site = "Princeton, NJ" -, year = 1984 -, pages = "??" +, author = "V. Kantabutra and S. R. Kosaraju" +, title = "Algorithms for robot arm movements" +, booktitle = "Proc. Conf. Inform. Sci. \& Sys." +, site = "Princeton, NJ" +, year = 1984 +, pages = "??" } @article{kk-namra-86 -, author = "V. Kantabutra and S. R. Kosaraju" -, title = "New algorithms for multilink robot arms" -, journal = "J. Comput. Syst. Sci." -, volume = 32 -, month = feb -, year = 1986 -, pages = "136--153" -, update = "98.07 bibrelex" +, author = "V. Kantabutra and S. R. Kosaraju" +, title = "New algorithms for multilink robot arms" +, journal = "J. Comput. Syst. Sci." +, volume = 32 +, month = feb +, year = 1986 +, pages = "136--153" +, update = "98.07 bibrelex" } @inproceedings{kmnpsw-askmc-00 -, author = "Tapas Kanungo and David M. Mount and Nathan S. Netanyahu and Christine Piatko and Ruth Silverman and Angela Y. Wu" -, title = "The Analysis of a Simple $k$-Means Clustering Algorithm" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "100--109" -, update = "00.11 jones" +, author = "Tapas Kanungo and David M. Mount and Nathan S. Netanyahu and Christine Piatko and Ruth Silverman and Angela Y. Wu" +, title = "The Analysis of a Simple $k$-Means Clustering Algorithm" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "100--109" +, update = "00.11 jones" } @article{kfhr-opasl-94 -, author = "M.-Y. Kao and M. F{\"u}rer and X. He and B. Raghavachari" -, title = "Optimal Parallel Algorithms for Straight-Line Grid Embeddings of Planar Graphs" -, journal = "SIAM J. Discrete Math." -, volume = 7 -, number = 4 -, year = 1994 -, pages = "632--646" -, keywords = "graph drawing, planar, straight-line, grid, parallel" -, update = "98.11 vismara, 98.07 tamassia+vismara, 96.09 tamassia, 93.09 tamassia" -} - -% also claimed pages = "441--448" +, author = "M.-Y. Kao and M. F{\"u}rer and X. He and B. Raghavachari" +, title = "Optimal Parallel Algorithms for Straight-Line Grid Embeddings of Planar Graphs" +, journal = "SIAM J. Discrete Math." +, volume = 7 +, number = 4 +, year = 1994 +, pages = "632--646" +, keywords = "graph drawing, planar, straight-line, grid, parallel" +, update = "98.11 vismara, 98.07 tamassia+vismara, 96.09 tamassia, 93.09 tamassia" +} + +% also claimed pages = "441--448" @inproceedings{krt-sueor-93 -, author = "M.-Y. Kao and J. H. Reif and S. R. Tate" -, title = "Searching in an Unknown Environment: {An} Optimal Randomized Algorithm for the Cow-Path Problem" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "441--447" -, precedes = "krt-sueor-96" -, update = "98.03 mitchell, 93.09 milone+mitchell, 93.05 smid" +, author = "M.-Y. Kao and J. H. Reif and S. R. Tate" +, title = "Searching in an Unknown Environment: {An} Optimal Randomized Algorithm for the Cow-Path Problem" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "441--447" +, precedes = "krt-sueor-96" +, update = "98.03 mitchell, 93.09 milone+mitchell, 93.05 smid" } @article{krt-sueor-96 -, author = "M.-Y. Kao and J. H. Reif and S. R. Tate" -, title = "Searching in an Unknown Environment: {An} Optimal Randomized Algorithm for the Cow-Path Problem" -, journal = "Inform. Comput." -, volume = 133 -, number = 1 -, year = 1996 -, pages = "63--79" -, succeeds = "krt-sueor-93" -, update = "99.07 bibrelex, 98.03 mitchell" +, author = "M.-Y. Kao and J. H. Reif and S. R. Tate" +, title = "Searching in an Unknown Environment: {An} Optimal Randomized Algorithm for the Cow-Path Problem" +, journal = "Inform. Comput." +, volume = 133 +, number = 1 +, year = 1996 +, pages = "63--79" +, succeeds = "krt-sueor-93" +, update = "99.07 bibrelex, 98.03 mitchell" } @inproceedings{ks-lrgop-89 -, author = "M.-Y. Kao and G. E. Shannon" -, title = "Local Reorientations, Global Order, and Planar Topology" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "286--296" -, update = "95.01 tamassia" +, author = "M.-Y. Kao and G. E. Shannon" +, title = "Local Reorientations, Global Order, and Planar Topology" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "286--296" +, update = "95.01 tamassia" } @inproceedings{kms-dmdt-91 -, author = "Thomas Kao and David Mount and Alan Saalfeld" -, title = "Dynamic Maintenance of {Delaunay} Triangulations" -, booktitle = "Proc. 10th Internat. Sympos. Comput.-Assist. Cartog." -, series = "Technical Papers 1991 ACSM-ASPRS Annual Convention" -, volume = 6 -, year = 1991 -, pages = "219--233" -, update = "93.05 freimer" -, annote = "Incremental insertion and deletion of points based on - \cite{gks-ricdv-90}. Earlier versions of the - triangulation can be recovered. In a sequence of - deletions and insertions, periodic rebalancing of the - history graph is required. Implemented." +, author = "Thomas Kao and David Mount and Alan Saalfeld" +, title = "Dynamic Maintenance of {Delaunay} Triangulations" +, booktitle = "Proc. 10th Internat. Sympos. Comput.-Assist. Cartog." +, series = "Technical Papers 1991 ACSM-ASPRS Annual Convention" +, volume = 6 +, year = 1991 +, pages = "219--233" +, update = "93.05 freimer" +, annote = "Incremental insertion and deletion of points based on + \cite{gks-ricdv-90}. Earlier versions of the + triangulation can be recovered. In a sequence of + deletions and insertions, periodic rebalancing of the + history graph is required. Implemented." } @inproceedings{kk-cpcfv-90 -, author = "T. C. Kao and G. D. Knott" -, title = "Computing polygonal chords and the farthest visibility polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "332--336" -, cites = "as-cldsp-89, bkt-dsvp-89, cs-agpli-88, cg-vippg-89, dls-rphs-88, ea-lacvp-81, g-cvpcs-86, ghlst-ltavs-86, l-vsp-83, ll-cvpe-86, ps-cgi-85, ZZZ" -, update = "98.07 bibrelex" +, author = "T. C. Kao and G. D. Knott" +, title = "Computing polygonal chords and the farthest visibility polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "332--336" +, cites = "as-cldsp-89, bkt-dsvp-89, cs-agpli-88, cg-vippg-89, dls-rphs-88, ea-lacvp-81, g-cvpcs-86, ghlst-ltavs-86, l-vsp-83, ll-cvpe-86, ps-cgi-85, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{km-accvd-91 -, author = "T. C. Kao and D. M. Mount" -, title = "An algorithm for computing compacted {Voronoi} diagrams defined by convex distance functions" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "104--109" -, cites = "cd-vdbcd-85, eghsssw-irals-89, f-fapct-85, gs-ccrs-87, k-eccs-79, l-csa-72, ls-pptmc-87, lw-vdllm-80, ps-cgi-85, y-oavds-87, ZZZ" -, update = "98.07 bibrelex" +, author = "T. C. Kao and D. M. Mount" +, title = "An algorithm for computing compacted {Voronoi} diagrams defined by convex distance functions" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "104--109" +, cites = "cd-vdbcd-85, eghsssw-irals-89, f-fapct-85, gs-ccrs-87, k-eccs-79, l-csa-72, ls-pptmc-87, lw-vdllm-80, ps-cgi-85, y-oavds-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{km-icdmc-92 -, author = "T. C. Kao and D. M. Mount" -, title = "Incremental construction and dynamic maintenance of constrained {Delaunay} triangulations" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "170--175" -, cites = "agss-ltacv-89, b-amgct-89, beg-pgmg-90, c-tpca-82, c-tsplt-90i, c-cdt-89, dp-olacd-91, g-eadch-72, gs-pmgsc-85, l-vsp-83, ll-gdtpg-86, ls-tacdt-80, s-let-78, sp-htucc-92, ZZZ" -, update = "98.07 bibrelex" +, author = "T. C. Kao and D. M. Mount" +, title = "Incremental construction and dynamic maintenance of constrained {Delaunay} triangulations" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "170--175" +, cites = "agss-ltacv-89, b-amgct-89, beg-pgmg-90, c-tpca-82, c-tsplt-90i, c-cdt-89, dp-olacd-91, g-eadch-72, gs-pmgsc-85, l-vsp-83, ll-gdtpg-86, ls-tacdt-80, s-let-78, sp-htucc-92, ZZZ" +, update = "98.07 bibrelex" } @techreport{k-agnta-97 -, author = "Sanjiv Kapoor" -, title = "Approximate Geographic Neighbor Tree with Applications" -, type = "Manuscript" -, institution = "IIT, New Delhi" -, year = 1997 -, update = "98.07 mitchell" +, author = "Sanjiv Kapoor" +, title = "Approximate Geographic Neighbor Tree with Applications" +, type = "Manuscript" +, institution = "IIT, New Delhi" +, year = 1997 +, update = "98.07 mitchell" } @techreport{k-dm2dc-95 -, author = "S. Kapoor" -, title = "Dynamic maintenance of 2-d convex hulls and order decomposable problems" -, number = "MPI-I-95-1-015" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1995 -, update = "95.09 smid" +, author = "S. Kapoor" +, title = "Dynamic maintenance of 2-d convex hulls and order decomposable problems" +, number = "MPI-I-95-1-015" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1995 +, update = "95.09 smid" } @article{k-dmm2d-00 -, author = "S. Kapoor" -, title = "Dynamic maintenance of maxima of $2$-d point sets" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "1858--1877" -, update = "01.04 smid" +, author = "S. Kapoor" +, title = "Dynamic maintenance of maxima of $2$-d point sets" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "1858--1877" +, update = "01.04 smid" } @inproceedings{k-dmm2d-94 -, author = "S. Kapoor" -, title = "Dynamic Maintenance of Maximas of $2$-d Point Sets" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "140--149" -, cites = "ps-cgi-85, fr-nadmm-90, hs-ompc-91, j-dmmpp-91, klp-fmsv-75, ol-mcp-81, t-ubstr-83, wl-arrcd-85, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "S. Kapoor" +, title = "Dynamic Maintenance of Maximas of $2$-d Point Sets" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "140--149" +, cites = "ps-cgi-85, fr-nadmm-90, hs-ompc-91, j-dmmpp-91, klp-fmsv-75, ol-mcp-81, t-ubstr-83, wl-arrcd-85, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @inproceedings{k-ecgsp-99 -, author = "S. Kapoor" -, title = "Efficient computation of geodesic shortest paths" -, booktitle = "Proc. 32nd Annu. ACM Sympos. Theory Comput." -, year = 1999 -, pages = "??--??" -, note = "To appear" -, update = "99.07 orourke" +, author = "S. Kapoor" +, title = "Efficient computation of geodesic shortest paths" +, booktitle = "Proc. 32nd Annu. ACM Sympos. Theory Comput." +, year = 1999 +, pages = "??--??" +, note = "To appear" +, update = "99.07 orourke" } @techreport{k-tdaca-86 -, author = "S. Kapoor" -, title = "Topics in the design and analysis of combinatorial algorithms" -, type = "Report" -, number = "86-1297" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1986 -, keywords = "NP-completeness, data structuring" +, author = "S. Kapoor" +, title = "Topics in the design and analysis of combinatorial algorithms" +, type = "Report" +, number = "86-1297" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1986 +, keywords = "NP-completeness, data structuring" } @techreport{km-eaesp-94 -, author = "S. Kapoor and S. N. Maheshwari" -, title = "An efficient algorithm for {Euclidean} shortest path with polygonal obstacles" -, type = "Technical {Report}" -, institution = "IIT, New Delhi" -, year = 1994 -, precedes = "kmm-eaesp-97" -, update = "98.03 mitchell, 96.05 mitchell" -, annote = "Gives an $O(n+ h^2\log n)$ algorithm for shortest paths" +, author = "S. Kapoor and S. N. Maheshwari" +, title = "An efficient algorithm for {Euclidean} shortest path with polygonal obstacles" +, type = "Technical {Report}" +, institution = "IIT, New Delhi" +, year = 1994 +, precedes = "kmm-eaesp-97" +, update = "98.03 mitchell, 96.05 mitchell" +, annote = "Gives an $O(n+ h^2\log n)$ algorithm for shortest paths" } @inproceedings{km-eaesp-88 -, author = "S. Kapoor and S. N. Maheshwari" -, title = "Efficient algorithms for {Euclidean} shortest path and visibility problems with polygonal obstacles" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "172--182" -, precedes = "kmm-eaesp-97" -, cites = "gh-ospqs-87, gm-osacv-87, h-fvgsp-87, lp-esppr-84, rs-spesp-85, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "S. Kapoor and S. N. Maheshwari" +, title = "Efficient algorithms for {Euclidean} shortest path and visibility problems with polygonal obstacles" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "172--182" +, precedes = "kmm-eaesp-97" +, cites = "gh-ospqs-87, gm-osacv-87, h-fvgsp-87, lp-esppr-84, rs-spesp-85, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{kmm-eaesp-97 -, author = "S. Kapoor and S. N. Maheshwari and Joseph S. B. Mitchell" -, title = "An Efficient Algorithm for {Euclidean} Shortest Paths among Polygonal Obstacles in the Plane" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "377--383" -, succeeds = "m-esppo-94, km-eaesp-94" -, update = "98.03 mitchell" -, annote = "Gives an $O(n+ h^2\log n)$ algorithm for shortest paths" +, author = "S. Kapoor and S. N. Maheshwari and Joseph S. B. Mitchell" +, title = "An Efficient Algorithm for {Euclidean} Shortest Paths among Polygonal Obstacles in the Plane" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "377--383" +, succeeds = "m-esppo-94, km-eaesp-94" +, update = "98.03 mitchell" +, annote = "Gives an $O(n+ h^2\log n)$ algorithm for shortest paths" } @article{kr-lbmcl-89 -, author = "S. Kapoor and P. Ramanan" -, title = "Lower bounds for maximal and convex layers problems" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "447--459" -, keywords = "maxima, maximal depth, convex hull, convex depth, two-dimensional" -, annote = "$\Omega(n \log n)$" +, author = "S. Kapoor and P. Ramanan" +, title = "Lower bounds for maximal and convex layers problems" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "447--459" +, keywords = "maxima, maximal depth, convex hull, convex depth, two-dimensional" +, annote = "$\Omega(n \log n)$" } @incollection{ks-dmspt-96 -, author = "S. Kapoor and T. Singh" -, title = "Dynamic maintenance of shortest path trees in simple polygons" -, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1180 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "123--134" -, update = "97.03 smid" +, author = "S. Kapoor and T. Singh" +, title = "Dynamic maintenance of shortest path trees in simple polygons" +, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1180 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "123--134" +, update = "97.03 smid" } @techreport{ks-ntead-93 -, author = "S. Kapoor and M. Smid" -, title = "New techniques for exact and approximate dynamic closest-point problems" -, number = "MPI-I-93-159" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, succeeds = "ks-ntead-" -, update = "98.11 bibrelex, 94.01 smid" +, author = "S. Kapoor and M. Smid" +, title = "New techniques for exact and approximate dynamic closest-point problems" +, number = "MPI-I-93-159" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, succeeds = "ks-ntead-" +, update = "98.11 bibrelex, 94.01 smid" } @inproceedings{ks-ntead-94 -, author = "S. Kapoor and M. Smid" -, title = "New Techniques for Exact and Approximate Dynamic Closest-Point Problems" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "165--174" -, cites = "am-annqf-93, amnsw-oaann-94, c-racpq-88, ehh-rpldd-86, grss-rdsdc-93i, mn-dfc-90, ps-cgi-85, s-eis-92, s-dsadc-93, sss-oaolc-92, s-rpldc-91, s-mmdpsp-92a, s-ntsdc-90, v-oaann-89, y-cmstk-82, ZZZ" -, update = "98.03 bibrelex, 94.09 smid, 94.01 jones" +, author = "S. Kapoor and M. Smid" +, title = "New Techniques for Exact and Approximate Dynamic Closest-Point Problems" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "165--174" +, cites = "am-annqf-93, amnsw-oaann-94, c-racpq-88, ehh-rpldd-86, grss-rdsdc-93i, mn-dfc-90, ps-cgi-85, s-eis-92, s-dsadc-93, sss-oaolc-92, s-rpldc-91, s-mmdpsp-92a, s-ntsdc-90, v-oaann-89, y-cmstk-82, ZZZ" +, update = "98.03 bibrelex, 94.09 smid, 94.01 jones" } @article{ks-ntead-96 -, author = "S. Kapoor and M. Smid" -, title = "New techniques for exact and approximate dynamic closest-point problems" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "775--796" -, update = "97.03 smid" +, author = "S. Kapoor and M. Smid" +, title = "New techniques for exact and approximate dynamic closest-point problems" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "775--796" +, update = "97.03 smid" } @techreport{ks-ntead- -, author = "S. Kapoor and M. Smid" -, title = "New Techniques for Exact and Approximate Dynamic Closest-PointProblems" -, type = "manuscript" -, precedes = "ks-ntead-93" -, update = "98.11 bibrelex" +, author = "S. Kapoor and M. Smid" +, title = "New Techniques for Exact and Approximate Dynamic Closest-PointProblems" +, type = "manuscript" +, precedes = "ks-ntead-93" +, update = "98.11 bibrelex" } @inproceedings{kv-facqp-86 -, author = "S. Kapoor and P. M. Vaidya" -, title = "Fast algorithms for convex quadratic programming and multicommodity flows" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "147--159" -, comments = "Submitted to Math. Program." +, author = "S. Kapoor and P. M. Vaidya" +, title = "Fast algorithms for convex quadratic programming and multicommodity flows" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "147--159" +, comments = "Submitted to Math. Program." } @article{km-mspep-95 -, author = "M. Kapovich and J. Millson" -, title = "On the moduli spaces of polygons in the {Euclidean} plane" -, journal = "J. Differential Geom." -, volume = 42 -, number = 1 -, year = 1995 -, pages = "133--164" -, url = "http://www.math.utah.edu/~kapovich/eprints.html" -, update = "02.03 orourke" +, author = "M. Kapovich and J. Millson" +, title = "On the moduli spaces of polygons in the {Euclidean} plane" +, journal = "J. Differential Geom." +, volume = 42 +, number = 1 +, year = 1995 +, pages = "133--164" +, url = "http://www.math.utah.edu/~kapovich/eprints.html" +, update = "02.03 orourke" } @incollection{k-ragtp-89 -, author = "D. Kapur" -, title = "A refutational approach to geometry theorem proving" -, editor = "D. Kapur and J. L. Mundy" -, booktitle = "Geometric Reasoning" -, publisher = "MIT Press" -, year = 1989 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "D. Kapur" +, title = "A refutational approach to geometry theorem proving" +, editor = "D. Kapur and J. L. Mundy" +, booktitle = "Geometric Reasoning" +, publisher = "MIT Press" +, year = 1989 +, update = "99.11 bibrelex, 98.03 bibrelex" } @inproceedings{k-gtpuh-86 -, author = "D. Kapur" -, title = "Geometry theorem proving using {Hilbert}'s {Nullstellensatz}" -, booktitle = "Proc. ACM Sympos. Symbolic and Algebraic Computation" -, site = "Waterloo, Canada" -, year = 1986 -, pages = "202--208" -, update = "98.03 bibrelex" +, author = "D. Kapur" +, title = "Geometry theorem proving using {Hilbert}'s {Nullstellensatz}" +, booktitle = "Proc. ACM Sympos. Symbolic and Algebraic Computation" +, site = "Waterloo, Canada" +, year = 1986 +, pages = "202--208" +, update = "98.03 bibrelex" } @book{km-gr-89 -, title = "Geometric Reasoning" -, editor = "D. Kapur and J. L. Mundy" -, publisher = "MIT Press" -, year = 1989 -, update = "99.11 bibrelex, 98.03 bibrelex" +, title = "Geometric Reasoning" +, editor = "D. Kapur and J. L. Mundy" +, publisher = "MIT Press" +, year = 1989 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{kptb-itcdp-99 -, author = "E.-A. Karabassi and G. Papaioannou and T. Theoharis and A. B{\"o}hm" -, title = "Intersection Test for Collision Detection in Particle Systems" -, journal = "J. Graphics Tools" -, volume = 4 -, number = 1 -, year = 1999 -, pages = "25--37" -, update = "00.03 held" +, author = "E.-A. Karabassi and G. Papaioannou and T. Theoharis and A. B{\"o}hm" +, title = "Intersection Test for Collision Detection in Particle Systems" +, journal = "J. Graphics Tools" +, volume = 4 +, number = 1 +, year = 1999 +, pages = "25--37" +, update = "00.03 held" } @manual{klpy-clp-99 -, author = "Vijay Karamcheti and Chen Li and Igor Pechtchanski and Chee Yap" -, title = "The {CORE} Library Project" -, edition = "1.2" -, year = 1999 -, url = "https://cs.nyu.edu/exact/doc/core.pdf" -, update = "00.03 devillers" +, author = "Vijay Karamcheti and Chen Li and Igor Pechtchanski and Chee Yap" +, title = "The {CORE} Library Project" +, edition = "1.2" +, year = 1999 +, url = "https://cs.nyu.edu/exact/doc/core.pdf" +, update = "00.03 devillers" } @inproceedings{k-bisoa-89 -, author = "M. Karasick" -, title = "Benchmarks for implementations of set-operations algorithms on polyhedral solids" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 13 +, author = "M. Karasick" +, title = "Benchmarks for implementations of set-operations algorithms on polyhedral solids" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 13 } @phdthesis{k-rmrs-89 -, author = "M. Karasick" -, title = "On the Representation and Manipulation of Rigid Solids" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1989 -, keywords = "doctoral thesis" +, author = "M. Karasick" +, title = "On the Representation and Manipulation of Rigid Solids" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1989 +, keywords = "doctoral thesis" } @techreport{kln-edtur-89 -, author = "M. Karasick and D. Lieber and L. R. Nackman" -, title = "Efficient {Delaunay} triangulations using rational arithmetic" -, type = "Report" -, number = "RC 14455" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, month = mar -, year = 1989 -, precedes = "kln-edtur-91" +, author = "M. Karasick and D. Lieber and L. R. Nackman" +, title = "Efficient {Delaunay} triangulations using rational arithmetic" +, type = "Report" +, number = "RC 14455" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, month = mar +, year = 1989 +, precedes = "kln-edtur-91" } @article{kln-edtur-91 -, author = "M. Karasick and D. Lieber and L. R. Nackman" -, title = "Efficient {Delaunay} triangulations using rational arithmetic" -, journal = "ACM Trans. Graph." -, volume = 10 -, number = 1 -, month = jan -, year = 1991 -, pages = "71--91" -, succeeds = "kln-edtur-89" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "M. Karasick and D. Lieber and L. R. Nackman" +, title = "Efficient {Delaunay} triangulations using rational arithmetic" +, journal = "ACM Trans. Graph." +, volume = 10 +, number = 1 +, month = jan +, year = 1991 +, pages = "71--91" +, succeeds = "kln-edtur-89" +, update = "98.07 bibrelex, 97.11 bibrelex" } @article{klnr-vtddm-97 -, author = "M. S. Karasick and D. Lieber and L. R. Nackman and V. T. Rajan" -, title = "Visualization of Three-Dimensional {Delaunay} Meshes" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "114--128" -, update = "97.07 held" +, author = "M. S. Karasick and D. Lieber and L. R. Nackman and V. T. Rajan" +, title = "Visualization of Three-Dimensional {Delaunay} Meshes" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "114--128" +, update = "97.07 held" } @inproceedings{ks-oag-93 -, author = "Y. Karasik and Micha Sharir" -, title = "Optical algorithms in geometry" -, booktitle = "Proc. Optical Comput. Topical Meeting, Optical Society of America" -, year = 1993 -, pages = "164--167" -, update = "98.03 mitchell, 94.05 sharir" +, author = "Y. Karasik and Micha Sharir" +, title = "Optical algorithms in geometry" +, booktitle = "Proc. Optical Comput. Topical Meeting, Optical Society of America" +, year = 1993 +, pages = "164--167" +, update = "98.03 mitchell, 94.05 sharir" } @inproceedings{k-coctk-94 -, author = "Y. B. Karasik" -, title = "Constructing Optically in Constant Time the $k$-Level of an Arrangement of Lines in the Plane and Other Related Problems" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "212--218" -, cites = "b-omt-74, e-acg-87, ed-copht-83, erk-oalla-93, ers-ufwsc-, gchhzy-otmo-92, k-oacg-91, k-oaiht-92, ks-ocg-92, ks-pgdms-93, j-icm-93, ohg-riitf-85, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "Y. B. Karasik" +, title = "Constructing Optically in Constant Time the $k$-Level of an Arrangement of Lines in the Plane and Other Related Problems" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "212--218" +, cites = "b-omt-74, e-acg-87, ed-copht-83, erk-oalla-93, ers-ufwsc-, gchhzy-otmo-92, k-oacg-91, k-oaiht-92, ks-ocg-92, ks-pgdms-93, j-icm-93, ohg-riitf-85, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{k-fhtuh-89 -, author = "Y. B. Karasik" -, title = "Formalization of heuristic tactics used by human beings in searching for the closest packing of arbitrary objects in a given domain" -, journal = "Cybernetics \& Systems: An International Journal" -, volume = 20 -, number = 1 -, year = 1989 -, pages = "43--49" -, update = "98.03 bibrelex" +, author = "Y. B. Karasik" +, title = "Formalization of heuristic tactics used by human beings in searching for the closest packing of arbitrary objects in a given domain" +, journal = "Cybernetics \& Systems: An International Journal" +, volume = 20 +, number = 1 +, year = 1989 +, pages = "43--49" +, update = "98.03 bibrelex" } @techreport{k-oacg-91 -, author = "Y. B. Karasik" -, title = "Optical algorithms of computational geometry" -, type = "Technical {Report}" -, number = "199/91" -, institution = "The Eskenasy Institute of Computer Science, Tel Aviv Univ." -, address = "Tel Aviv, Israel" -, year = 1991 -, update = "98.03 bibrelex" +, author = "Y. B. Karasik" +, title = "Optical algorithms of computational geometry" +, type = "Technical {Report}" +, number = "199/91" +, institution = "The Eskenasy Institute of Computer Science, Tel Aviv Univ." +, address = "Tel Aviv, Israel" +, year = 1991 +, update = "98.03 bibrelex" } @inproceedings{k-ocvsg-94 -, author = "Y. B. Karasik" -, title = "Optical Computer Vision: Some Geometrical Algorithms" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "207--211" -, cites = "b-omt-74, ed-copht-83, fh-cfaia-82, g-vscfa-81, gchhzy-otmo-92, k-oacg-91, k-oaiht-92, ks-ocg-92, ks-pgdms-93, kr-glcd-82, ohg-riitf-85, p-lb-71, rsb-ocd-88, s-oiphv-82, s-hctoc-86, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "Y. B. Karasik" +, title = "Optical Computer Vision: Some Geometrical Algorithms" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "207--211" +, cites = "b-omt-74, ed-copht-83, fh-cfaia-82, g-vscfa-81, gchhzy-otmo-92, k-oacg-91, k-oaiht-92, ks-ocg-92, ks-pgdms-93, kr-glcd-82, ohg-riitf-85, p-lb-71, rsb-ocd-88, s-oiphv-82, s-hctoc-86, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{k-ofa-92 -, author = "Y. B. Karasik" -, title = "Optical filling algorithm" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "328--333" -, cites = "ks-ocg-92, m-rtisu-86, v-sdcsf-64, wt-ommsl-83, agw-fqo-86, ca-hadla-86, gr-ssaip-88, f-ocscs-88, fl-cstds-86, p-farg-79, r-ospft-86, s-frbri-80, ZZZ" -, update = "98.07 bibrelex" +, author = "Y. B. Karasik" +, title = "Optical filling algorithm" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "328--333" +, cites = "ks-ocg-92, m-rtisu-86, v-sdcsf-64, wt-ommsl-83, agw-fqo-86, ca-hadla-86, gr-ssaip-88, f-ocscs-88, fl-cstds-86, p-farg-79, r-ospft-86, s-frbri-80, ZZZ" +, update = "98.07 bibrelex" } @article{k-oaiht-92 -, author = "Y. B. Karasik" -, title = "The optical algorithm for the inverse {Hough} transform" -, journal = "Optical computing and processing" -, volume = 2 -, number = 2 -, year = 1992 -, pages = "127--136" -, update = "93.09 milone+mitchell" +, author = "Y. B. Karasik" +, title = "The optical algorithm for the inverse {Hough} transform" +, journal = "Optical computing and processing" +, volume = 2 +, number = 2 +, year = 1992 +, pages = "127--136" +, update = "93.09 milone+mitchell" } @inproceedings{ks-ocg-92 -, author = "Y. B. Karasik and Micha Sharir" -, title = "Optical computational geometry" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "232--241" -, cites = "ate-plcsl-89, b-gto-74, b-omt-74, br-lbceo-87, br-pcamm-87, cgl-pgd-83, cky-ommmu-88, clpp-odpfs-60, d-htrt-81, ed-copht-83, f-ocscs-88, fn-rtisa-90, g-ifo-68, get-hpfrt-89, ggsbcg-ocrot-89, gt-cghgt-84, hcy-iatwm-90, ls-mtoap-83, m-rtisu-86, ma-oaslm-89, r-asoi-53, rt-epaoc-90, sc-ctrmh-90, v-sdcsf-64, w-blsf-87, wt-ommsl-83, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Y. B. Karasik and Micha Sharir" +, title = "Optical computational geometry" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "232--241" +, cites = "ate-plcsl-89, b-gto-74, b-omt-74, br-lbceo-87, br-pcamm-87, cgl-pgd-83, cky-ommmu-88, clpp-odpfs-60, d-htrt-81, ed-copht-83, f-ocscs-88, fn-rtisa-90, g-ifo-68, get-hpfrt-89, ggsbcg-ocrot-89, gt-cghgt-84, hcy-iatwm-90, ls-mtoap-83, m-rtisu-86, ma-oaslm-89, r-asoi-53, rt-epaoc-90, sc-ctrmh-90, v-sdcsf-64, w-blsf-87, wt-ommsl-83, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{ks-pgdms-93 -, author = "Y. B. Karasik and Micha Sharir" -, title = "The power of geometric duality and {Minkowski} sums in optical computational geometry" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "379--388" -, cites = "br-lbceo-87, br-pcamm-87, cgl-pgd-83, d-htrt-81, dh-uhtdl-72, ek-iodc-90, ghlst-ltavs-87, h-odcbl-90, iti-ieesu-92, k-fhtuh-89, k-oacg-91, ks-ocg-92, ka-oci-92, klps-ujrcf-86, l-tdoad-91, m-oca-91, ph-ddocs-92, rt-epaoc-90, ZZZ" -, update = "98.03 bibrelex+mitchell, 93.09 jones" +, author = "Y. B. Karasik and Micha Sharir" +, title = "The power of geometric duality and {Minkowski} sums in optical computational geometry" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "379--388" +, cites = "br-lbceo-87, br-pcamm-87, cgl-pgd-83, d-htrt-81, dh-uhtdl-72, ek-iodc-90, ghlst-ltavs-87, h-odcbl-90, iti-ieesu-92, k-fhtuh-89, k-oacg-91, ks-ocg-92, ka-oci-92, klps-ujrcf-86, l-tdoad-91, m-oca-91, ph-ddocs-92, rt-epaoc-90, ZZZ" +, update = "98.03 bibrelex+mitchell, 93.09 jones" } @proceedings{knv-ewcg-97 -, title = "Abstracts 13th European Workshop Comput. Geom." -, editor = "Oliver Karch and Hartmut Noltemeier and Knut Verbarg" -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, update = "00.03 bibrelex" +, title = "Abstracts 13th European Workshop Comput. Geom." +, editor = "Oliver Karch and Hartmut Noltemeier and Knut Verbarg" +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, update = "00.03 bibrelex" } @inproceedings{knw-rlti-97 -, author = "Oliver Karch and Hartmut Noltemeier and Thomas Wahl" -, title = "Robot Localization: Theory and Implementation" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "17--19" -, update = "99.07 bibrelex, 98.07 bibrelex" +, author = "Oliver Karch and Hartmut Noltemeier and Thomas Wahl" +, title = "Robot Localization: Theory and Implementation" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "17--19" +, update = "99.07 bibrelex, 98.07 bibrelex" } @article{kkt-rltaf-95 -, author = "D. Karger and P. N. Klein and R. E. Tarjan" -, title = "A randomized linear-time algorithm to find minimum spanning trees" -, journal = "J. ACM" -, volume = 42 -, year = 1995 -, pages = "321--328" -, update = "98.07 bibrelex" +, author = "D. Karger and P. N. Klein and R. E. Tarjan" +, title = "A randomized linear-time algorithm to find minimum spanning trees" +, journal = "J. ACM" +, volume = 42 +, year = 1995 +, pages = "321--328" +, update = "98.07 bibrelex" } @article{k-rtorc-96 -, author = "H. A. Karimi" -, title = "Real-time optimal-routing computation: {A} heuristic approach" -, journal = "ITS Journal" -, volume = 3 -, year = 1996 -, pages = "111--127" -, update = "98.03 agarwal" +, author = "H. A. Karimi" +, title = "Real-time optimal-routing computation: {A} heuristic approach" +, journal = "ITS Journal" +, volume = 3 +, year = 1996 +, pages = "111--127" +, update = "98.03 agarwal" } @article{kh-esiem-96 -, author = "H. A. Karimi and B. H. Houston" -, title = "Evaluating strategies for integrating environmental models with GIS: Current trends and future need" -, journal = "Comput., Environ. and Urban Systems" -, volume = 20 -, year = 1996 -, pages = "413--425" -, update = "98.03 agarwal" +, author = "H. A. Karimi and B. H. Houston" +, title = "Evaluating strategies for integrating environmental models with GIS: Current trends and future need" +, journal = "Comput., Environ. and Urban Systems" +, volume = 20 +, year = 1996 +, pages = "413--425" +, update = "98.03 agarwal" } @book{ka-oci-92 -, author = "A. M. Karin and A. Awwal" -, title = "Optical Computing: {An} Introduction" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1992 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "A. M. Karin and A. Awwal" +, title = "Optical Computing: {An} Introduction" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1992 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{kh-aanlp-79 -, author = "O. Kariv and S. L. Hakimi" -, title = "An algorithmic approach to network location problems. I: The $p$-centers" -, journal = "SIAM J. Appl. Math." -, volume = 37 -, year = 1979 -, pages = "513--538" -, update = "97.11 bibrelex" +, author = "O. Kariv and S. L. Hakimi" +, title = "An algorithmic approach to network location problems. I: The $p$-centers" +, journal = "SIAM J. Appl. Math." +, volume = 37 +, year = 1979 +, pages = "513--538" +, update = "97.11 bibrelex" } @phdthesis{k-rop-91 -, author = "W. C. Karl" -, title = "Reconstructing Objects from Projections" -, school = "Dept. EECS, Massachusetts Institute of Technology" -, address = "Boston, MA" -, month = feb -, year = 1991 -, keywords = "doctoral thesis, probing, x-ray probes" -, update = "96.09 romanik" +, author = "W. C. Karl" +, title = "Reconstructing Objects from Projections" +, school = "Dept. EECS, Massachusetts Institute of Technology" +, address = "Boston, MA" +, month = feb +, year = 1991 +, keywords = "doctoral thesis, probing, x-ray probes" +, update = "96.09 romanik" } @article{ku-pheis-88 -, author = "A. R. Karlin and E. Upfal" -, title = "Parallel hashing: An efficient implementation of shared memory" -, journal = "J. ACM" -, volume = 35 -, number = 4 -, year = 1988 -, pages = "876--892" -, update = "96.09 orourke" +, author = "A. R. Karlin and E. Upfal" +, title = "Parallel hashing: An efficient implementation of shared memory" +, journal = "J. ACM" +, volume = 35 +, number = 4 +, year = 1988 +, pages = "876--892" +, update = "96.09 orourke" } @book{k-lp-91 -, author = "H. Karloff" -, title = "Linear Programming" -, publisher = "Birkh{\"a}user" -, address = "Boston" -, year = 1991 -, update = "96.09 orourke" +, author = "H. Karloff" +, title = "Linear Programming" +, publisher = "Birkh{\"a}user" +, address = "Boston" +, year = 1991 +, update = "96.09 orourke" } @techreport{k-olakr-89 -, author = "H. Karloff" -, title = "Online algorithms for the $k$-robot problem on the line." -, type = "Manuscript" -, institution = "Univ. of Chicago" -, address = "Univ. Illinois, Urbana, IL." -, year = 1989 -, comments = "talk was the Semi-Annual Lunch, Algorithms, and Dinner Symposium" -, update = "93.09 milone+mitchell" +, author = "H. Karloff" +, title = "Online algorithms for the $k$-robot problem on the line." +, type = "Manuscript" +, institution = "Univ. of Chicago" +, address = "Univ. Illinois, Urbana, IL." +, year = 1989 +, comments = "talk was the Semi-Annual Lunch, Algorithms, and Dinner Symposium" +, update = "93.09 milone+mitchell" } @inproceedings{km-ckwir-94 -, author = "H. Karloff and Y. Mansour" -, title = "On construction of $k$--wise independent random variables" -, booktitle = "Proc. Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "564--573" -, update = "96.09 orourke" +, author = "H. Karloff and Y. Mansour" +, title = "On construction of $k$--wise independent random variables" +, booktitle = "Proc. Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "564--573" +, update = "96.09 orourke" } @inproceedings{krr-lbrks-91 -, author = "H. Karloff and Y. Rabani and Y. Ravid" -, title = "Lower bounds for randomized $k$-servers and motion planning algorithms" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "278--288" -, keywords = "path planning, on-line" +, author = "H. Karloff and Y. Rabani and Y. Ravid" +, title = "Lower bounds for randomized $k$-servers and motion planning algorithms" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "278--288" +, keywords = "path planning, on-line" } @article{kr-rapn-93 -, author = "H. Karloff and P. Raghavan" -, title = "Randomized algorithms and pseudorandom numbers" -, journal = "J. ACM" -, volume = 40 -, number = 3 -, year = 1993 -, pages = "454--476" -, comments = "using few random bits; precedes Mulmuley's work" -, update = "94.01 matousek" +, author = "H. Karloff and P. Raghavan" +, title = "Randomized algorithms and pseudorandom numbers" +, journal = "J. ACM" +, volume = 40 +, number = 3 +, year = 1993 +, pages = "454--476" +, comments = "using few random bits; precedes Mulmuley's work" +, update = "94.01 matousek" } @techreport{k-hlcet-87 -, author = "H. J. Karloff" -, title = "How long can a {Euclidean} traveling salesman tour be?" -, type = "Technical {Report}" -, number = "87-20" -, institution = "Dept. Comput. Sci., Univ. Chicago" -, address = "Chicago, IL" -, year = 1987 -, update = "97.11 bibrelex" +, author = "H. J. Karloff" +, title = "How long can a {Euclidean} traveling salesman tour be?" +, type = "Technical {Report}" +, number = "87-20" +, institution = "Dept. Comput. Sci., Univ. Chicago" +, address = "Chicago, IL" +, year = 1987 +, update = "97.11 bibrelex" } @article{k-hlcet-89 -, author = "H. J. Karloff" -, title = "How long can a {Euclidean} traveling salesman tour be?" -, journal = "SIAM J. Discrete Math." -, volume = 2 -, year = 1989 -, pages = "91--99" -, update = "97.11 bibrelex" +, author = "H. J. Karloff" +, title = "How long can a {Euclidean} traveling salesman tour be?" +, journal = "SIAM J. Discrete Math." +, volume = 2 +, year = 1989 +, pages = "91--99" +, update = "97.11 bibrelex" } @techreport{k-aru-84 -, author = "R. G. Karlsson" -, title = "Algorithms in a restricted universe" -, type = "Report" -, number = "CS-84-50" -, institution = "Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1984 +, author = "R. G. Karlsson" +, title = "Algorithms in a restricted universe" +, type = "Report" +, number = "CS-84-50" +, institution = "Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1984 } @article{k-gmg-88 -, author = "R. G. Karlsson" -, title = "Greedy matching on a grid" -, journal = "BIT" -, volume = 28 -, year = 1988 -, pages = "19--26" +, author = "R. G. Karlsson" +, title = "Greedy matching on a grid" +, journal = "BIT" +, volume = 28 +, year = 1988 +, pages = "19--26" } @incollection{km-pg-85 -, author = "R. G. Karlsson and J. I. Munro" -, title = "Proximity on a grid" -, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 182 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "187--196" -, update = "97.03 schwarzkopf" +, author = "R. G. Karlsson and J. I. Munro" +, title = "Proximity on a grid" +, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 182 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "187--196" +, update = "97.03 schwarzkopf" } @inproceedings{kmr-nnpbd-85 -, author = "R. G. Karlsson and J. I. Munro and E. L. Robertson" -, title = "The nearest neighbor problem on bounded domains" -, booktitle = "Proc. 12th Internat. Colloq. Automata Lang. Program." -, nickname = "ICALP '85" -, series = "Lecture Notes Comput. Sci." -, volume = 194 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "318--327" -, update = "99.11 bibrelex, 97.11 bibrelex" +, author = "R. G. Karlsson and J. I. Munro and E. L. Robertson" +, title = "The nearest neighbor problem on bounded domains" +, booktitle = "Proc. 12th Internat. Colloq. Automata Lang. Program." +, nickname = "ICALP '85" +, series = "Lecture Notes Comput. Sci." +, volume = 194 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "318--327" +, update = "99.11 bibrelex, 97.11 bibrelex" } @article{ko-ndcst-88 -, author = "R. G. Karlsson and M. H. Overmars" -, title = "Normalized divide-and-conquer: a scaling technique for solving multi-dimensional problems" -, journal = "Inform. Process. Lett." -, volume = 26 -, year = 1988 -, pages = "307--312" +, author = "R. G. Karlsson and M. H. Overmars" +, title = "Normalized divide-and-conquer: a scaling technique for solving multi-dimensional problems" +, journal = "Inform. Process. Lett." +, volume = 26 +, year = 1988 +, pages = "307--312" } @article{ko-sag-88 -, author = "R. G. Karlsson and M. H. Overmars" -, title = "Scanline algorithms on a grid" -, journal = "BIT" -, volume = 28 -, year = 1988 -, pages = "227--241" -, update = "97.03 schwarzkopf" +, author = "R. G. Karlsson and M. H. Overmars" +, title = "Scanline algorithms on a grid" +, journal = "BIT" +, volume = 28 +, year = 1988 +, pages = "227--241" +, update = "97.03 schwarzkopf" } @inproceedings{k-nptal-84i -, author = "N. Karmarkar" -, title = "A new polynomial-time algorithm for linear programming" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "302--311" -, precedes = "k-nptal-84a" +, author = "N. Karmarkar" +, title = "A new polynomial-time algorithm for linear programming" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "302--311" +, precedes = "k-nptal-84a" } @article{k-nptal-84a -, author = "N. Karmarkar" -, title = "A new polynomial-time algorithm for linear programming" -, journal = "Combinatorica" -, volume = 4 -, year = 1984 -, pages = "373--395" -, succeeds = "k-nptal-84i" +, author = "N. Karmarkar" +, title = "A new polynomial-time algorithm for linear programming" +, journal = "Combinatorica" +, volume = 4 +, year = 1984 +, pages = "373--395" +, succeeds = "k-nptal-84i" } @techreport{kkkll-mcaep-90 -, author = "N. Karmarkar and R. Karp and R. Karp and L. Lovasz and M. Luby" -, title = "A {Monte}-{Carlo} algorithm for estimating the permanent" -, type = "Technical {Report}" -, number = "TR-90-063" -, institution = "International Computer Science Institute" -, address = "Berkeley, CA" -, year = 1990 -, update = "98.03 bibrelex" +, author = "N. Karmarkar and R. Karp and R. Karp and L. Lovasz and M. Luby" +, title = "A {Monte}-{Carlo} algorithm for estimating the permanent" +, type = "Technical {Report}" +, number = "TR-90-063" +, institution = "International Computer Science Institute" +, address = "Berkeley, CA" +, year = 1990 +, update = "98.03 bibrelex" } @inproceedings{kg-scmg-00 -, author = "Zachi Karni and Craig Gotsman" -, title = "Spectral Compression of Mesh Geometry" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "27--30" -, update = "00.03 bibrelex" +, author = "Zachi Karni and Craig Gotsman" +, title = "Spectral Compression of Mesh Geometry" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "27--30" +, update = "00.03 bibrelex" } @inproceedings{k-rrcse -, author = "Gyula K{\'a}rolyi" -, title = "{Ramsey}-Remainder for Convex Sets and the {Erd{\H o}s-Szekeres Theorem}" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "107--108" -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Gyula K{\'a}rolyi" +, title = "{Ramsey}-Remainder for Convex Sets and the {Erd{\H o}s-Szekeres Theorem}" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "107--108" +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{k-rrcse-01 -, author = "Gyula K{\'a}rolyi" -, title = "{Ramsey}-Remainder for Convex Sets and the {Erd{\H o}s-Szekeres} theorem" -, journal = "Discrete Appl. Math." -, volume = 109 -, year = 2001 -, pages = "163--175" -, succeeds = "k-rrcse" -, update = "02.03 devillers" +, author = "Gyula K{\'a}rolyi" +, title = "{Ramsey}-Remainder for Convex Sets and the {Erd{\H o}s-Szekeres} theorem" +, journal = "Discrete Appl. Math." +, volume = 109 +, year = 2001 +, pages = "163--175" +, succeeds = "k-rrcse" +, update = "02.03 devillers" } @incollection{kptt-afmdm- -, author = "G. K{\'a}rolyi and J. Pach and G. Tardos and G. T{\'o}th" -, title = "An algorithm for finding many disjoint monochromatic edges in a complete $2$-colored geometric graph" -, editor = "I. B{\'a}r{\'a}ny and K. B{\"o}r{\"o}czky" -, booktitle = "Intuitive Geometry" -, series = "Bolyai Soc. Math. Studies" -, volume = 6 -, publisher = "??" -, year = "??" -, note = "To appear" -, update = "98.07 bibrelex" +, author = "G. K{\'a}rolyi and J. Pach and G. Tardos and G. T{\'o}th" +, title = "An algorithm for finding many disjoint monochromatic edges in a complete $2$-colored geometric graph" +, editor = "I. B{\'a}r{\'a}ny and K. B{\"o}r{\"o}czky" +, booktitle = "Intuitive Geometry" +, series = "Bolyai Soc. Math. Studies" +, volume = 6 +, publisher = "??" +, year = "??" +, note = "To appear" +, update = "98.07 bibrelex" } @inproceedings{kpt-rtrgg-96 -, author = "Gyula K{\'a}rolyi and J{\'a}nos Pach and G{\'e}za T{\'o}th" -, title = "Ramsey-Type Results for Geometric Graphs" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "359--365" -, update = "96.05 efrat" +, author = "Gyula K{\'a}rolyi and J{\'a}nos Pach and G{\'e}za T{\'o}th" +, title = "Ramsey-Type Results for Geometric Graphs" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "359--365" +, update = "96.05 efrat" } @article{kpt-rtrgg-97 -, author = "G. K{\'a}rolyi and J. Pach and G. T{\'o}th" -, title = "Ramsey-Type Results for Geometric Graphs, I" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "247--255" -, succeeds = "kpt-rtrgg-96" -, update = "02.03 devillers" +, author = "G. K{\'a}rolyi and J. Pach and G. T{\'o}th" +, title = "Ramsey-Type Results for Geometric Graphs, I" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "247--255" +, succeeds = "kpt-rtrgg-96" +, update = "02.03 devillers" } @inproceedings{kptv-rttgg-97 -, author = "G. K{\'a}rolyi and J. Pach and G. T{\'o}th and P. Valtr" -, title = "Ramsey-Type Results for Geometric Graphs II" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, publisher = "ACM Press" -, year = 1997 -, pages = "94--103" -, cites = "b-grtgs-74, bes-rtmcg-75, d-dtpos-50, elss-dgpps-73, gmpp-eptvs-91, grs-rt-90, hs-asdch-92, kpt-rtrgg-96, kptt-afmdm-, pa-cg-95, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex, 97.07 efrat" +, author = "G. K{\'a}rolyi and J. Pach and G. T{\'o}th and P. Valtr" +, title = "Ramsey-Type Results for Geometric Graphs II" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, publisher = "ACM Press" +, year = 1997 +, pages = "94--103" +, cites = "b-grtgs-74, bes-rtmcg-75, d-dtpos-50, elss-dgpps-73, gmpp-eptvs-91, grs-rt-90, hs-asdch-92, kpt-rtrgg-96, kptt-afmdm-, pa-cg-95, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex, 97.07 efrat" } @article{kptv-rttgg-98 -, author = "G. K{\'a}rolyi and J. Pach and G. T{\'o}th and P. Valtr" -, title = "Ramsey-Type Results for Geometric Graphs, II" -, journal = "Discrete Comput. Geom." -, volume = 20 -, year = 1998 -, pages = "375--388" -, succeeds = "kptv-rttgg-97" -, update = "02.03 devillers" +, author = "G. K{\'a}rolyi and J. Pach and G. T{\'o}th and P. Valtr" +, title = "Ramsey-Type Results for Geometric Graphs, II" +, journal = "Discrete Comput. Geom." +, volume = 20 +, year = 1998 +, pages = "375--388" +, succeeds = "kptv-rttgg-97" +, update = "02.03 devillers" } @article{k-ira-91 -, author = "R. Karp" -, title = "An introduction to randomized algorithms" -, journal = "Discrete Appl. Math." -, volume = 34 -, year = 1991 -, pages = "165--201" -, update = "94.05 matousek" +, author = "R. Karp" +, title = "An introduction to randomized algorithms" +, journal = "Discrete Appl. Math." +, volume = 34 +, year = 1991 +, pages = "165--201" +, update = "94.05 matousek" } @incollection{k-racpc-72 -, author = "R. Karp" -, title = "Reducibility among combinatorical problems of computer computaions" -, editor = "E. Miller and J. W. Thatcher" -, booktitle = "Complexity of Computer Computations" -, publisher = "Plenum Press" -, address = "New York" -, year = 1972 -, pages = "88--104" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "R. Karp" +, title = "Reducibility among combinatorical problems of computer computaions" +, editor = "E. Miller and J. W. Thatcher" +, booktitle = "Complexity of Computer Computations" +, publisher = "Plenum Press" +, address = "New York" +, year = 1972 +, pages = "88--104" +, update = "98.11 bibrelex, 97.11 bibrelex" } @article{kl-tscap-75 -, author = "R. Karp and S. Li" -, title = "Two special cases of the assignment problem" -, journal = "Discrete Math." -, volume = 13 -, year = 1975 -, pages = "129--142" -, update = "98.03 bibrelex" +, author = "R. Karp and S. Li" +, title = "Two special cases of the assignment problem" +, journal = "Discrete Math." +, volume = 13 +, year = 1975 +, pages = "129--142" +, update = "98.03 bibrelex" } @inproceedings{klm-epsdm-92 -, author = "R. Karp and M. Luby and F. {Meyer auf der Heide}" -, title = "Efficient PRAM simulation on distributed machines" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "318--326" -, update = "96.09 orourke" +, author = "R. Karp and M. Luby and F. {Meyer auf der Heide}" +, title = "Efficient PRAM simulation on distributed machines" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "318--326" +, update = "96.09 orourke" } @unpublished{km-pstoo-85 -, author = "R. Karp and R. Motwani" -, title = "Preprocessing search trade-offs: an optimal randomized algorithm" -, year = 1985 -, note = "Computer Science Division U.C. Berkeley" -, update = "98.03 bibrelex" +, author = "R. Karp and R. Motwani" +, title = "Preprocessing search trade-offs: an optimal randomized algorithm" +, year = 1985 +, note = "Computer Science Division U.C. Berkeley" +, update = "98.03 bibrelex" } @article{k-papat-77 -, author = "R. M. Karp" -, title = "Probabilistic analysis of partitioning algorithms for the traveling salesman problem in the plane" -, journal = "Math. Oper. Res." -, volume = 2 -, year = 1977 -, pages = "209--224" +, author = "R. M. Karp" +, title = "Probabilistic analysis of partitioning algorithms for the traveling salesman problem in the plane" +, journal = "Math. Oper. Res." +, volume = 2 +, year = 1977 +, pages = "209--224" } @incollection{k-pascs-76 -, author = "R. M. Karp" -, title = "The probabilistic analysis of some combinatorial search algorithms" -, editor = "J. F. Traub" -, booktitle = "Algorithms and Complexity: New Directions and Recent Results" -, publisher = "Academic Press" -, address = "New York" -, year = 1976 -, pages = "1--19" -, update = "98.11 bibrelex" +, author = "R. M. Karp" +, title = "The probabilistic analysis of some combinatorial search algorithms" +, editor = "J. F. Traub" +, booktitle = "Algorithms and Complexity: New Directions and Recent Results" +, publisher = "Academic Press" +, address = "New York" +, year = 1976 +, pages = "1--19" +, update = "98.11 bibrelex" } @inproceedings{klm-pambp-84 -, author = "R. M. Karp and M. Luby and A. Marchetti-Spaccamela" -, title = "A probabilistic analysis of multidimensional bin-packing problems" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "289--299" +, author = "R. M. Karp and M. Luby and A. Marchetti-Spaccamela" +, title = "A probabilistic analysis of multidimensional bin-packing problems" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "289--299" } @article{kmr-dds-88 -, author = "R. M. Karp and R. Motwani and P. Raghavan" -, title = "Deferred data structuring" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "883--902" -, succeeds = "mr-ddsqd-86" +, author = "R. M. Karp and R. Motwani and P. Raghavan" +, title = "Deferred data structuring" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "883--902" +, succeeds = "mr-ddsqd-86" } @techreport{kr-spasm-88t -, author = "R. M. Karp and V. Ramachandran" -, title = "A survey of parallel algorithms for shared-memory machines" -, number = "UCB/CSD 88/408" -, institution = "University of California, Berkeley" -, year = 1988 -, precedes = "kr-pasmm-90" -, update = "98.07 bibrelex" +, author = "R. M. Karp and V. Ramachandran" +, title = "A survey of parallel algorithms for shared-memory machines" +, number = "UCB/CSD 88/408" +, institution = "University of California, Berkeley" +, year = 1988 +, precedes = "kr-pasmm-90" +, update = "98.07 bibrelex" } @incollection{kr-pasmm-90 -, author = "R. M. Karp and V. Ramachandran" -, title = "Parallel algorithms for shared memory machines" -, editor = "J. van Leeuwen" -, booktitle = "Handbook of Theoretical Computer Science" -, publisher = "Elsevier/The MIT Press" -, address = "Amsterdam" -, year = 1990 -, pages = "869--941" -, succeeds = "kr-spasm-88t" -, update = "98.07 bibrelex, 93.05 devillers" +, author = "R. M. Karp and V. Ramachandran" +, title = "Parallel algorithms for shared memory machines" +, editor = "J. van Leeuwen" +, booktitle = "Handbook of Theoretical Computer Science" +, publisher = "Elsevier/The MIT Press" +, address = "Amsterdam" +, year = 1990 +, pages = "869--941" +, succeeds = "kr-spasm-88t" +, update = "98.07 bibrelex, 93.05 devillers" } @inproceedings{ksss-obslm-93 -, author = "R. M. Karp and A. Sahay and E. Santos and K. E. Schauser" -, title = "Optimal Broadcast and Summation in the {LogP} Model" -, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." -, year = 1993 -, pages = "142--153" -, update = "96.09 orourke" +, author = "R. M. Karp and A. Sahay and E. Santos and K. E. Schauser" +, title = "Optimal Broadcast and Summation in the {LogP} Model" +, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." +, year = 1993 +, pages = "142--153" +, update = "96.09 orourke" } @inproceedings{kw-fpami-84 -, author = "R. M. Karp and A. Wigderson" -, title = "A Fast Parallel Algorithm for the Maximal Independent Set Problem" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "86--109" -, update = "98.03 bibrelex" +, author = "R. M. Karp and A. Wigderson" +, title = "A Fast Parallel Algorithm for the Maximal Independent Set Problem" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "86--109" +, update = "98.03 bibrelex" } @techreport{kz-fista-94 -, author = "M. Karpinski and A. Zelikovsky" -, title = "Further improvements of {Steiner} tree approximations" -, type = "Report" -, number = "MPI-I-94-158" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "95.01 smid" +, author = "M. Karpinski and A. Zelikovsky" +, title = "Further improvements of {Steiner} tree approximations" +, type = "Report" +, number = "MPI-I-94-158" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "95.01 smid" } @inproceedings{k-ecbmf-73 -, author = "A. V. Karzanov" -, title = "Exact complexity bound for a max-flow algorithm applied to ''representatives``" -, booktitle = "Voprosy Kibernetiki (Proc. of the Seminar on Combinatorial Mathematics)" -, year = 1973 -, pages = "66--70" -, update = "97.11 bibrelex" +, author = "A. V. Karzanov" +, title = "Exact complexity bound for a max-flow algorithm applied to ''representatives``" +, booktitle = "Voprosy Kibernetiki (Proc. of the Seminar on Combinatorial Mathematics)" +, year = 1973 +, pages = "66--70" +, update = "97.11 bibrelex" } @book{k-co-67 -, author = "K. Kasahara" -, title = "Creative Origami" -, publisher = "Japan Publications" -, year = 1967 -, update = "97.11 bibrelex" +, author = "K. Kasahara" +, title = "Creative Origami" +, publisher = "Japan Publications" +, year = 1967 +, update = "97.11 bibrelex" } @book{kt-oc-78 -, author = "K. Kasahara" -, title = "Origami for the Connoisseur" -, publisher = "Japan Publications" -, year = 1978 -, update = "97.11 bibrelex" +, author = "K. Kasahara" +, title = "Origami for the Connoisseur" +, publisher = "Japan Publications" +, year = 1978 +, update = "97.11 bibrelex" } @book{k-oo-88 -, author = "K. Kasahara" -, title = "Origami Omnibus" -, publisher = "Japan Publications" -, year = 1988 -, update = "97.11 bibrelex" +, author = "K. Kasahara" +, title = "Origami Omnibus" +, publisher = "Japan Publications" +, year = 1988 +, update = "97.11 bibrelex" } @inproceedings{ko-gapdc-82 -, author = "R. L. Kashyap and B. J. Oommen" -, title = "A geometrical approach to polygonal dissimilarity and the classification of closed boundaries" -, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." -, year = 1982 -, pages = "472--481" +, author = "R. L. Kashyap and B. J. Oommen" +, title = "A geometrical approach to polygonal dissimilarity and the classification of closed boundaries" +, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." +, year = 1982 +, pages = "472--481" } @article{k-drpte-89 -, author = "E. A. Kasimatis" -, title = "Dissections of regular polygons into triangles of equal areas" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "375--381" +, author = "E. A. Kasimatis" +, title = "Dissections of regular polygons into triangles of equal areas" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "375--381" } @techreport{k-adppr-85 -, author = "D. T. Kasper" -, title = "An algorithm for determining the position of a point relative to a polygon" -, type = "Report" -, number = "??" -, institution = "Advanced Products Lab., Hughes Support Syst." -, address = "Long Beach, CA" -, year = 1985 +, author = "D. T. Kasper" +, title = "An algorithm for determining the position of a point relative to a polygon" +, type = "Report" +, number = "??" +, institution = "Advanced Products Lab., Hughes Support Syst." +, address = "Long Beach, CA" +, year = 1985 } @article{kk-rtcs-86 -, author = "T. Kat and J. Kajiya" -, title = "Ray tracing complex scenes" -, journal = "Comput. Graph." -, volume = "??" -, year = 1986 -, pages = "269--278" -, update = "98.07 bibrelex" +, author = "T. Kat and J. Kajiya" +, title = "Ray tracing complex scenes" +, journal = "Comput. Graph." +, volume = "??" +, year = 1986 +, pages = "269--278" +, update = "98.07 bibrelex" } @article{km-etdpp-88 -, author = "M. Katachalski and A. Meir" -, title = "On empty triangles determined by points in the plane" -, journal = "Acta Math. Hungar." -, volume = 51 -, year = 1988 -, pages = "323--328" -, update = "01.07 devillers, 98.03 bibrelex" +, author = "M. Katachalski and A. Meir" +, title = "On empty triangles determined by points in the plane" +, journal = "Acta Math. Hungar." +, volume = 51 +, year = 1988 +, pages = "323--328" +, update = "01.07 devillers, 98.03 bibrelex" } @article{k-wcmst-82 -, author = "J. Katajainen" -, title = "On the worst case of a minimal spanning tree algorithm for {Euclidean} space" -, journal = "BIT" -, volume = 23 -, year = 1982 -, pages = "2--8" +, author = "J. Katajainen" +, title = "On the worst case of a minimal spanning tree algorithm for {Euclidean} space" +, journal = "BIT" +, volume = 23 +, year = 1982 +, pages = "2--8" } @techreport{k-racrn-85 -, author = "J. Katajainen" -, title = "The region approach for computing relative neighborhood graphs in the {$L_{p}$} metric" -, type = "Report" -, number = "??" -, institution = "Dept. Math. Sci., Univ. Turku" -, address = "Turku, Finland" -, year = 1985 +, author = "J. Katajainen" +, title = "The region approach for computing relative neighborhood graphs in the {$L_{p}$} metric" +, type = "Report" +, number = "??" +, institution = "Dept. Math. Sci., Univ. Turku" +, address = "Turku, Finland" +, year = 1985 } @article{k-racrn-88 -, author = "J. Katajainen" -, title = "The region approach for computing relative neighborhood graphs in the {$L_{p}$} metric" -, journal = "Computing" -, volume = 40 -, year = 1988 -, pages = "147--161" -, update = "98.07 bibrelex" +, author = "J. Katajainen" +, title = "The region approach for computing relative neighborhood graphs in the {$L_{p}$} metric" +, journal = "Computing" +, volume = 40 +, year = 1988 +, pages = "147--161" +, update = "98.07 bibrelex" } @article{kk-cdtmb-88 -, author = "Jyrki Katajainen and Markku Koppinen" -, title = "Constructing {Delaunay} triangulations by merging buckets in quadtree order" -, journal = "Annales Societatis Mathematicae Polonae, Series IV, Fundamenta Informaticae" -, volume = 11 -, number = 3 -, year = 1988 -, pages = "275--288" -, update = "98.03 mitchell" -, abstract = "Recently R. A. Dwyer [Algorithmica 2, 137 - 151 (1987; - Zbl. 631.68043)] presented an algorithm which - constructs a Delaunay triangulation for a planar set of - N sites in O(N log log N) expected time and O(N log N) - worst-case-time. We show that a slight modification of - his algorithm preserves the worst-case running time, - but has only O(N) average running time. The method is a - hybrid which combines the cell techniques with the - divide-and-conquer algorithm of Leonidas J. Guibas and J. Stolfi - [ACM Trans. Graphics 4, 74 - 123 (1985; Zbl. - 586.68059)]. First a square grid of size about sqrt(N) - by sqrt(N) is placed on the set of sites. The grid - forms about N cells (buckets), each of which is - implemented as a list of the sites which fall into the - corresponding square of the grid. A Delaunay - triangulation of the generally rather few sites within - each cell is constructed with the Guibas \& Stolfi - algorithm. Then the triangulations are merged, four by - four, in a quadtree-like order" +, author = "Jyrki Katajainen and Markku Koppinen" +, title = "Constructing {Delaunay} triangulations by merging buckets in quadtree order" +, journal = "Annales Societatis Mathematicae Polonae, Series IV, Fundamenta Informaticae" +, volume = 11 +, number = 3 +, year = 1988 +, pages = "275--288" +, update = "98.03 mitchell" +, abstract = "Recently R. A. Dwyer [Algorithmica 2, 137 - 151 (1987; + Zbl. 631.68043)] presented an algorithm which + constructs a Delaunay triangulation for a planar set of + N sites in O(N log log N) expected time and O(N log N) + worst-case-time. We show that a slight modification of + his algorithm preserves the worst-case running time, + but has only O(N) average running time. The method is a + hybrid which combines the cell techniques with the + divide-and-conquer algorithm of Leonidas J. Guibas and J. Stolfi + [ACM Trans. Graphics 4, 74 - 123 (1985; Zbl. + 586.68059)]. First a square grid of size about sqrt(N) + by sqrt(N) is placed on the set of sites. The grid + forms about N cells (buckets), each of which is + implemented as a list of the sites which fall into the + corresponding square of the grid. A Delaunay + triangulation of the generally rather few sites within + each cell is constructed with the Guibas \& Stolfi + algorithm. Then the triangulations are merged, four by + four, in a quadtree-like order" } @article{knt-letac-87 -, author = "J. Katajainen and O. Nevalainen and J. Teuhola" -, title = "A linear expected-time algorithm for computing planar relative neighbourhood graphs" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "77--86" +, author = "J. Katajainen and O. Nevalainen and J. Teuhola" +, title = "A linear expected-time algorithm for computing planar relative neighbourhood graphs" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "77--86" } @unpublished{kk-cdtmb-87 -, author = "J. Katakjainen and M. Koppinen" -, title = "Constructing {Delaunay} triangulations by merging buckets in quad-tree order" -, year = 1987 -, note = "Unpublished Manuscript" -, update = "98.03 bibrelex" +, author = "J. Katakjainen and M. Koppinen" +, title = "Constructing {Delaunay} triangulations by merging buckets in quad-tree order" +, year = 1987 +, note = "Unpublished Manuscript" +, update = "98.03 bibrelex" } @inproceedings{ks-stish-97 -, author = "Norio Katayama and Shin'ichi Satoh" -, title = "The {SR}-tree: {An} Index Structure for High-Dimensional Nearest Neighbor Queries" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1997 -, pages = "369--380" -, keywords = "nearest neighbor, R-trees, bounding volume hierarchies" -, update = "99.03 forrest, 98.03 mitchell, 97.07 agarwal" -, abstract = "Recently, similarity queries on feature vectors have been widely used to +, author = "Norio Katayama and Shin'ichi Satoh" +, title = "The {SR}-tree: {An} Index Structure for High-Dimensional Nearest Neighbor Queries" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1997 +, pages = "369--380" +, keywords = "nearest neighbor, R-trees, bounding volume hierarchies" +, update = "99.03 forrest, 98.03 mitchell, 97.07 agarwal" +, abstract = "Recently, similarity queries on feature vectors have been widely used to perform content-based retrieval of images. To apply this technique to large databases, it is required to develop multidimensional index structures supporting nearest neighbor queries efficiently. The SS-tree had been @@ -86467,1357 +86467,1357 @@ @inproceedings{ks-stish-97 } @article{k-cgct-86 -, author = "M. Katchalski" -, title = "A conjecture of Gr{\"u}nbaum on common transversals" -, journal = "Math. Scan." -, volume = 59 -, year = 1986 -, pages = "192--198" -, update = "98.03 bibrelex" +, author = "M. Katchalski" +, title = "A conjecture of Gr{\"u}nbaum on common transversals" +, journal = "Math. Scan." +, volume = 59 +, year = 1986 +, pages = "192--198" +, update = "98.03 bibrelex" } @article{k-tsct-80 -, author = "M. Katchalski" -, title = "Thin Sets and Common Transversals" -, journal = "J. Geom." -, volume = 14 -, year = 1980 -, pages = "103--107" -, update = "98.03 bibrelex" +, author = "M. Katchalski" +, title = "Thin Sets and Common Transversals" +, journal = "J. Geom." +, volume = 14 +, year = 1980 +, pages = "103--107" +, update = "98.03 bibrelex" } @article{kll-gpct-86 -, author = "M. Katchalski and T. Lewis and A. Liu" -, title = "Geometric permutations and common transversals" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "371--377" +, author = "M. Katchalski and T. Lewis and A. Liu" +, title = "Geometric permutations and common transversals" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "371--377" } @article{kll-gpdt-87 -, author = "M. Katchalski and T. Lewis and A. Liu" -, title = "Geometric permutations of disjoint translates of convex sets" -, journal = "Discrete Math." -, volume = 65 -, year = 1987 -, pages = "249--259" -, update = "95.09 agarwal" +, author = "M. Katchalski and T. Lewis and A. Liu" +, title = "Geometric permutations of disjoint translates of convex sets" +, journal = "Discrete Math." +, volume = 65 +, year = 1987 +, pages = "249--259" +, update = "95.09 agarwal" } @article{kll-dwsdc-92 -, author = "M. Katchalski and T. Lewis and A. Liu" -, title = "The different ways of stabbing disjoint convex sets" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "197--206" +, author = "M. Katchalski and T. Lewis and A. Liu" +, title = "The different ways of stabbing disjoint convex sets" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "197--206" } @article{klz-gpcs-85 -, author = "M. Katchalski and T. Lewis and J. Zaks" -, title = "Geometric permutations for convex sets" -, journal = "Discrete Math." -, volume = 54 -, year = 1985 -, pages = "271--284" -, update = "95.09 agarwal" +, author = "M. Katchalski and T. Lewis and J. Zaks" +, title = "Geometric permutations for convex sets" +, journal = "Discrete Math." +, volume = 54 +, year = 1985 +, pages = "271--284" +, update = "95.09 agarwal" } @article{kl-pgr-79 -, author = "M. Katchalski and A. Liu" -, title = "A problem of geometry in ${R}^n$" -, journal = "Proc. Amer. Math. Soc." -, volume = 75 -, year = 1979 -, pages = "284--288" -, update = "97.11 bibrelex" +, author = "M. Katchalski and A. Liu" +, title = "A problem of geometry in ${R}^n$" +, journal = "Proc. Amer. Math. Soc." +, volume = 75 +, year = 1979 +, pages = "284--288" +, update = "97.11 bibrelex" } @incollection{kn-cdg-96 -, author = "M. Katchalski and D. Nashtir" -, title = "On a conjecture of {Danzer} and {Gr{\"u}nbaum}" -, booktitle = "Proc. Amer. Math. Soc." -, year = 1996 -, update = "97.11 bibrelex" +, author = "M. Katchalski and D. Nashtir" +, title = "On a conjecture of {Danzer} and {Gr{\"u}nbaum}" +, booktitle = "Proc. Amer. Math. Soc." +, year = 1996 +, update = "97.11 bibrelex" } @article{ki-pceas-87 -, author = "N. Katoh and T. Ibaraki" -, title = "A parametric characterization and an $\varepsilon$-approximation scheme for the minimization of a quasiconcave program" -, journal = "Discrete Appl. Math." -, volume = 17 -, year = 1987 -, pages = "39--66" -, update = "98.03 bibrelex" +, author = "N. Katoh and T. Ibaraki" +, title = "A parametric characterization and an $\varepsilon$-approximation scheme for the minimization of a quasiconcave program" +, journal = "Discrete Appl. Math." +, volume = 17 +, year = 1987 +, pages = "39--66" +, update = "98.03 bibrelex" } @techreport{ki-tnprc-83 -, author = "N. Katoh and T. Ibaraki" -, title = "On the total number of pivots required for certain parametric combinatorial optimization problems" -, type = "Working {Paper}" -, number = 71 -, institution = "Institute of Economic Research, Kobe University" -, address = "Kobe, Japan" -, year = 1983 -, update = "98.03 bibrelex" +, author = "N. Katoh and T. Ibaraki" +, title = "On the total number of pivots required for certain parametric combinatorial optimization problems" +, type = "Working {Paper}" +, number = 71 +, institution = "Institute of Economic Research, Kobe University" +, address = "Kobe, Japan" +, year = 1983 +, update = "98.03 bibrelex" } @techreport{ki-fkbdn-91 -, author = "N. Katoh and K. Iwano" -, title = "Finding $k$ best distances of $n$ points in the plane" -, institution = "Kobe Univ." -, address = "Kobe, Japan" -, year = 1991 -, update = "98.07 bibrelex" +, author = "N. Katoh and K. Iwano" +, title = "Finding $k$ best distances of $n$ points in the plane" +, institution = "Kobe Univ." +, address = "Kobe, Japan" +, year = 1991 +, update = "98.07 bibrelex" } @article{ki-fkfpk-95 -, author = "N. Katoh and K. Iwano" -, title = "Finding $k$ farthest pairs and $k$ closest/farthest bichromatic pairs for points in the plane" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "37--51" -, keywords = "k farthest pairs, k closest/farthest bichromatic pairs, higher order Voronoi diagrams" -, succeeds = "ki-fkfpk-92" -, update = "96.09 devillers" +, author = "N. Katoh and K. Iwano" +, title = "Finding $k$ farthest pairs and $k$ closest/farthest bichromatic pairs for points in the plane" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "37--51" +, keywords = "k farthest pairs, k closest/farthest bichromatic pairs, higher order Voronoi diagrams" +, succeeds = "ki-fkfpk-92" +, update = "96.09 devillers" } @inproceedings{ki-fkfpk-92 -, author = "N. Katoh and K. Iwano" -, title = "Finding $k$ farthest pairs and $k$ closest pairs/farthest bichromatic pairs for points in the plane" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "320--329" -, precedes = "ki-fkfpk-95" -, cites = "aass-sdp-90, aiks-fkpmd-91, bfprt-tbs-73, c-ntcos-85, ce-iacko-87, c-narsc-87, dd-ekdnp-91, ds-ekldn-92, ddg-fsp-83, e-esaa-86, fj-csrxm-82, k-osps-83, l-knnvd-82, lt-apst-80, ps-cgi-85, s-lisps-89, s-sisie-91, hss-pgcrm-87, s-mmdpsl-90t, v-oaann-89, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "N. Katoh and K. Iwano" +, title = "Finding $k$ farthest pairs and $k$ closest pairs/farthest bichromatic pairs for points in the plane" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "320--329" +, precedes = "ki-fkfpk-95" +, cites = "aass-sdp-90, aiks-fkpmd-91, bfprt-tbs-73, c-ntcos-85, ce-iacko-87, c-narsc-87, dd-ekdnp-91, ds-ekldn-92, ddg-fsp-83, e-esaa-86, fj-csrxm-82, k-osps-83, l-knnvd-82, lt-apst-80, ps-cgi-85, s-lisps-89, s-sisie-91, hss-pgcrm-87, s-mmdpsl-90t, v-oaann-89, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers" } @inproceedings{kt-ncpkp-01 -, author = "Naoki Katoh and Takeshi Tokuyama" -, title = "Notes on Computing Peaks in K-Levels and Parametric Spanning Trees" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "241--248" -, update = "01.11 pocchiola" +, author = "Naoki Katoh and Takeshi Tokuyama" +, title = "Notes on Computing Peaks in K-Levels and Parametric Spanning Trees" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "241--248" +, update = "01.11 pocchiola" } @inproceedings{kti-mmstl-92 -, author = "N. Katoh and T. Tokuyama and K. Iwano" -, title = "On minimum and maximum spanning trees of linearly moving points" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "396--405" +, author = "N. Katoh and T. Tokuyama and K. Iwano" +, title = "On minimum and maximum spanning trees of linearly moving points" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "396--405" } @article{kti-mmstl-95 -, author = "N. Katoh and T. Tokuyama and K. Iwano" -, title = "On minimum and maximum spanning trees of linearly moving points" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "161--176" -, update = "95.05 smid" +, author = "N. Katoh and T. Tokuyama and K. Iwano" +, title = "On minimum and maximum spanning trees of linearly moving points" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "161--176" +, update = "95.05 smid" } @article{ks-pgt-67 -, author = "G. Katona and E. Szemer{\'e}di" -, title = "On a problem in a graph theory" -, journal = "Studia Scientiarium Mathematicarum Hungarica" -, volume = 2 -, year = 1967 -, pages = "23--28" -, update = "98.03 bibrelex" +, author = "G. Katona and E. Szemer{\'e}di" +, title = "On a problem in a graph theory" +, journal = "Studia Scientiarium Mathematicarum Hungarica" +, volume = 2 +, year = 1967 +, pages = "23--28" +, update = "98.03 bibrelex" } @article{k-dess-89 -, author = "M. Katz" -, title = "Diameter-extremal subsets of spheres" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "117--137" +, author = "M. Katz" +, title = "Diameter-extremal subsets of spheres" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "117--137" } @techreport{kn-pso-96-t -, author = "Matthew Katz and Franck Nielsen" -, title = "On Piercing Sets of Objects" -, type = "Rapport de recherche" -, number = 2874 -, institution = "INRIA" -, year = 1996 -, update = "02.03 devillers, 97.11 bibrelex" -, abstract = "A set of objects is $k$-pierceable if there exists a set of $k$ poin ts such that each object is pierced by (contains) at least one of these points. Finding the smallest integer $k$ such that a set is $k$-pierceable is NP-complete. In this technical report, we present efficient algorithms for findi ng a piercing set (i.e., a set of $k$ points as above) for several classes of convex objects and small values of $k$. In some of the cases, our algorithms imply known as well as new Helly-type theorems, thus adding to previous results of Danzer and Gr{\"u}nbaum who studied the case of axis-parallel boxes. The problems studied here are related to the collection of optimization problems in which one seeks the smallest scaling factor of a centrally symmetric convex object $K$, so that a set of points can be covered by $k$ congruent homothets of $K$." +, author = "Matthew Katz and Franck Nielsen" +, title = "On Piercing Sets of Objects" +, type = "Rapport de recherche" +, number = 2874 +, institution = "INRIA" +, year = 1996 +, update = "02.03 devillers, 97.11 bibrelex" +, abstract = "A set of objects is $k$-pierceable if there exists a set of $k$ poin ts such that each object is pierced by (contains) at least one of these points. Finding the smallest integer $k$ such that a set is $k$-pierceable is NP-complete. In this technical report, we present efficient algorithms for findi ng a piercing set (i.e., a set of $k$ points as above) for several classes of convex objects and small values of $k$. In some of the cases, our algorithms imply known as well as new Helly-type theorems, thus adding to previous results of Danzer and Gr{\"u}nbaum who studied the case of axis-parallel boxes. The problems studied here are related to the collection of optimization problems in which one seeks the smallest scaling factor of a centrally symmetric convex object $K$, so that a set of points can be covered by $k$ congruent homothets of $K$." } @phdthesis{k-grdsc-85 -, author = "M. D. Katz" -, title = "Geometric retrieval: data structures and computational complexity" -, type = "Ph.{D}. Thesis" -, school = "Dept. Inform. Comput. Sci., Univ. California Irvine" -, address = "Irvine, CA" -, year = 1985 -, keywords = "doctoral thesis" +, author = "M. D. Katz" +, title = "Geometric retrieval: data structures and computational complexity" +, type = "Ph.{D}. Thesis" +, school = "Dept. Inform. Comput. Sci., Univ. California Irvine" +, address = "Irvine, CA" +, year = 1985 +, keywords = "doctoral thesis" } @article{kv-dsrsq-86 -, author = "M. D. Katz and D. J. Volper" -, title = "Data structures for retrieval on square grids" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "919--931" -, update = "97.07 agarwal" +, author = "M. D. Katz and D. J. Volper" +, title = "Data structures for retrieval on square grids" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "919--931" +, update = "97.07 agarwal" } @article{k-3vrs2-?? -, author = "M. J. Katz" -, title = "{3-D} vertical ray shooting and {2-D} point enclosure, range searching, and arc shooting amidst convex fat objects" -, journal = "Comput. Geom. Theory Appl." -, note = "to appear" -, succeeds = "k-3vrs2-95" -, update = "97.11 katz" +, author = "M. J. Katz" +, title = "{3-D} vertical ray shooting and {2-D} point enclosure, range searching, and arc shooting amidst convex fat objects" +, journal = "Comput. Geom. Theory Appl." +, note = "to appear" +, succeeds = "k-3vrs2-95" +, update = "97.11 katz" } @techreport{k-3vrs2-95 -, author = "M. J. Katz" -, title = "{3-D} vertical ray shooting and {2-D} point enclosure, range searching, and arc shooting amidst convex fat objects" -, type = "Research {Report}" -, number = 2583 -, institution = "INRIA" -, address = "BP93, 06902 Sophia-Antipolis, France" -, year = 1995 -, update = "97.11 katz, 96.09 smid" +, author = "M. J. Katz" +, title = "{3-D} vertical ray shooting and {2-D} point enclosure, range searching, and arc shooting amidst convex fat objects" +, type = "Research {Report}" +, number = 2583 +, institution = "INRIA" +, address = "BP93, 06902 Sophia-Antipolis, France" +, year = 1995 +, update = "97.11 katz, 96.09 smid" } @phdthesis{k- -, author = "M. J. Katz" -, title = "Geometric Optimization via Expanders and Visibility of Fat Objects in Three Dimensions: Two Studies in Computational Geometry" -, type = "Ph.{D}. Thesis" -, school = "Tel-Aviv University" -, address = "Tel-Aviv, Israel" -, year = 1994 -, keywords = "doctoral thesis" -, update = "97.11 katz" +, author = "M. J. Katz" +, title = "Geometric Optimization via Expanders and Visibility of Fat Objects in Three Dimensions: Two Studies in Computational Geometry" +, type = "Ph.{D}. Thesis" +, school = "Tel-Aviv University" +, address = "Tel-Aviv, Israel" +, year = 1994 +, keywords = "doctoral thesis" +, update = "97.11 katz" } @inproceedings{k-iagoe-95 -, author = "M. J. Katz" -, title = "Improved algorithms in geometric optimization via expanders" -, booktitle = "Proc. 3rd Israel Symposium on Theory of Computing and Systems" -, year = 1995 -, pages = "78--87" -, update = "96.01 devillers" +, author = "M. J. Katz" +, title = "Improved algorithms in geometric optimization via expanders" +, booktitle = "Proc. 3rd Israel Symposium on Theory of Computing and Systems" +, year = 1995 +, pages = "78--87" +, update = "96.01 devillers" } @inproceedings{kks-cscp-98 -, author = "Matthew J. Katz and Klara Kedem and Michael Segal" -, title = "Constrained Square Center Problems" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "95--106" -, precedes = "kks-dr2cp-00" -, update = "00.03 smid, 99.03 bibrelex, 98.07 mitchell" +, author = "Matthew J. Katz and Klara Kedem and Michael Segal" +, title = "Constrained Square Center Problems" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "95--106" +, precedes = "kks-dr2cp-00" +, update = "00.03 smid, 99.03 bibrelex, 98.07 mitchell" } @article{kks-dr2cp-00 -, author = "M. J. Katz and K. Kedem and M. Segal" -, title = "Discrete rectilinear $2$-center problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 15 -, year = 2000 -, pages = "203--214" -, succeeds = "kks-cscp-98" -, update = "00.03 smid" +, author = "M. J. Katz and K. Kedem and M. Segal" +, title = "Discrete rectilinear $2$-center problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 15 +, year = 2000 +, pages = "203--214" +, succeeds = "kks-cscp-98" +, update = "00.03 smid" } @inproceedings{kks-iapuf-99 -, author = "Matthew J. Katz and Klara Kedem and Michael Segal" -, title = "Improved Algorithms for Placing Undesirable Facilities" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "39--42" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Matthew J. Katz and Klara Kedem and Michael Segal" +, title = "Improved Algorithms for Placing Undesirable Facilities" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "39--42" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{kn-pso-96-i -, author = "M. J. Katz and F. Nielsen" -, title = "On Piercing Sets of Objects" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "113--121" -, cites = "a-httgl-94, bglr-epcpa-93, c-ghscp-79, cm-ltdao-93, dg-ipbr-82, dgk-htir-63, fpt-opcpa-81, gw-hcg-93a, hd-kgde-60, h-aascv-82, k-racpc-72, kn-cdg-96, kn-pso-t, m-apcad-83, msw-sblp-92, s-nlap2-96, sw-rpppp-96, ZZZ" -, update = "02.03 devillers, 98.03 bibrelex, 97.11 bibrelex+katz, 96.05 efrat" +, author = "M. J. Katz and F. Nielsen" +, title = "On Piercing Sets of Objects" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "113--121" +, cites = "a-httgl-94, bglr-epcpa-93, c-ghscp-79, cm-ltdao-93, dg-ipbr-82, dgk-htir-63, fpt-opcpa-81, gw-hcg-93a, hd-kgde-60, h-aascv-82, k-racpc-72, kn-cdg-96, kn-pso-t, m-apcad-83, msw-sblp-92, s-nlap2-96, sw-rpppp-96, ZZZ" +, update = "02.03 devillers, 98.03 bibrelex, 97.11 bibrelex+katz, 96.05 efrat" } @inproceedings{kns-sltps-00 -, author = "Matthew J. Katz and Frank Nielsen and Micheal Segal" -, title = "Shooter Location Through Piercing Sets" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "55--58" -, update = "00.03 bibrelex" +, author = "Matthew J. Katz and Frank Nielsen and Micheal Segal" +, title = "Shooter Location Through Piercing Sets" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "55--58" +, update = "00.03 bibrelex" } @inproceedings{kos-ehsro-91 -, author = "M. J. Katz and M. H. Overmars and Micha Sharir" -, title = "Efficient hidden surface removal for objects with small union size" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "31--40" -, keywords = "hidden surface removal" -, cites = "as-anspt-91, b-hsrr-90, bo-arcgi-79, bo-hsrap-90, cegpsss-ccclr-90, cs-vppt-89, d-qbhle-86, g-pahle-87i, gao-isost-90, go-nasch-87, klps-ujrcf-86, ms-rcibt-88, mpssw-ftdlm-90, m-wcohs-87, m-eahsr-89, n-flsah-85, os-oshsr-89, os-itosh-89, os-mvm-91, py-bpahs-89, ps-cgi-85, pvy-cavsi-90, rs-eoshs-88i, so-sosah-92, s-tsbhl-81, sss-cthsa-74, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "M. J. Katz and M. H. Overmars and Micha Sharir" +, title = "Efficient hidden surface removal for objects with small union size" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "31--40" +, keywords = "hidden surface removal" +, cites = "as-anspt-91, b-hsrr-90, bo-arcgi-79, bo-hsrap-90, cegpsss-ccclr-90, cs-vppt-89, d-qbhle-86, g-pahle-87i, gao-isost-90, go-nasch-87, klps-ujrcf-86, ms-rcibt-88, mpssw-ftdlm-90, m-wcohs-87, m-eahsr-89, n-flsah-85, os-oshsr-89, os-itosh-89, os-mvm-91, py-bpahs-89, ps-cgi-85, pvy-cavsi-90, rs-eoshs-88i, so-sosah-92, s-tsbhl-81, sss-cthsa-74, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{kos-ehsro-92 -, author = "M. J. Katz and M. H. Overmars and Micha Sharir" -, title = "Efficient hidden surface removal for objects with small union size" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, year = 1992 -, pages = "223--234" -, keywords = "hidden surface removal" -, update = "98.03 mitchell, 96.05 ramkumar" +, author = "M. J. Katz and M. H. Overmars and Micha Sharir" +, title = "Efficient hidden surface removal for objects with small union size" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, year = 1992 +, pages = "223--234" +, keywords = "hidden surface removal" +, update = "98.03 mitchell, 96.05 ramkumar" } @inproceedings{ks-ebago-93 -, author = "M. J. Katz and Micha Sharir" -, title = "An expander-based approach to geometric optimization" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "198--207" -, cites = "aass-sdp-90, aest-cscpp-91, am-rsps-92, as-pglp-90, ast-apsgo-92, am-dptnp-96, as-pm-92, cegs-dwclp-92, csw-qoubs-92, cw-qorss-89, cs-arscg-89, c-sdsno-87, csss-otass-89, dmn-rass-92, hw-ensrq-87, hs-ftp-91, ks-osse-, lps-rg-88, m-egtcc-88, m-roass-91, m-ept-92, m-rsehc-92, ms-datdd-93, m-apcad-83, st-epcp-91, v-pcp-75, ZZZ" -, update = "99.03 forrest, 98.11 bibrelex, 98.03 bibrelex+mitchell, 93.09 jones" +, author = "M. J. Katz and Micha Sharir" +, title = "An expander-based approach to geometric optimization" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "198--207" +, cites = "aass-sdp-90, aest-cscpp-91, am-rsps-92, as-pglp-90, ast-apsgo-92, am-dptnp-96, as-pm-92, cegs-dwclp-92, csw-qoubs-92, cw-qorss-89, cs-arscg-89, c-sdsno-87, csss-otass-89, dmn-rass-92, hw-ensrq-87, hs-ftp-91, ks-osse-, lps-rg-88, m-egtcc-88, m-roass-91, m-ept-92, m-rsehc-92, ms-datdd-93, m-apcad-83, st-epcp-91, v-pcp-75, ZZZ" +, update = "99.03 forrest, 98.11 bibrelex, 98.03 bibrelex+mitchell, 93.09 jones" } @article{ks-ebago-97 -, author = "M. J. Katz and Micha Sharir" -, title = "An expander-based approach to geometric optimization" -, journal = "SIAM J. Comput." -, volume = 26 -, year = 1997 -, pages = "1384--1408" -, succeeds = "ks-ebago-93" -, update = "98.03 mitchell, 97.11 katz+smid" +, author = "M. J. Katz and Micha Sharir" +, title = "An expander-based approach to geometric optimization" +, journal = "SIAM J. Comput." +, volume = 26 +, year = 1997 +, pages = "1384--1408" +, succeeds = "ks-ebago-93" +, update = "98.03 mitchell, 97.11 katz+smid" } @techreport{ks-osse- -, author = "M. J. Katz and M. Sharir" -, title = "Optimal slope selection via expanders" -, type = "Manuscript" -, institution = "??" -, year = "??" -, precedes = "ks-osse-93i" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "M. J. Katz and M. Sharir" +, title = "Optimal slope selection via expanders" +, type = "Manuscript" +, institution = "??" +, year = "??" +, precedes = "ks-osse-93i" +, update = "98.11 bibrelex, 98.03 bibrelex" } @inproceedings{ks-osse-93i -, author = "M. J. Katz and Micha Sharir" -, title = "Optimal slope selection via expanders" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "139--144" -, succeeds = "ks-osse-" -, cites = "as-pm-92, am-dptnp-92, cegs-dwclp-92, c-sdsno-87, csss-oss-88, dmn-rass-92, e-acg-87, ks-ebago-93, lps-eerc-86, m-egtcc-88, m-roass-91, m-cha-91, m-apcad-83, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 95.09 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "M. J. Katz and Micha Sharir" +, title = "Optimal slope selection via expanders" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "139--144" +, succeeds = "ks-osse-" +, cites = "as-pm-92, am-dptnp-92, cegs-dwclp-92, c-sdsno-87, csss-oss-88, dmn-rass-92, e-acg-87, ks-ebago-93, lps-eerc-86, m-egtcc-88, m-roass-91, m-cha-91, m-apcad-83, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 95.09 agarwal, 94.01 smid, 93.09 milone+mitchell" } @article{ks-osse-93 -, author = "M. J. Katz and Micha Sharir" -, title = "Optimal slope selection via expanders" -, journal = "Inform. Process. Lett." -, volume = 47 -, year = 1993 -, pages = "115--122" -, update = "98.03 mitchell, 94.05 sharir" +, author = "M. J. Katz and Micha Sharir" +, title = "Optimal slope selection via expanders" +, journal = "Inform. Process. Lett." +, volume = 47 +, year = 1993 +, pages = "115--122" +, update = "98.03 mitchell, 94.05 sharir" } @unpublished{kv-tbngp-99 -, author = "M. J. Katz and K. R. Varadarajan" -, title = "A tight bound on the number of geometric permutations of convex fat objects in {$\Re^d$}" -, year = 1999 -, note = "Dept. Comput. Sci., Ben-Gurion University of the Negev, Israel" -, update = "01.04 orourke" +, author = "M. J. Katz and K. R. Varadarajan" +, title = "A tight bound on the number of geometric permutations of convex fat objects in {$\Re^d$}" +, year = 1999 +, note = "Dept. Comput. Sci., Ben-Gurion University of the Negev, Israel" +, update = "01.04 orourke" } @article{ks-gictr-?? -, author = "S. Katz and T. W. Sederberg" -, title = "Genus of the intersection curve of two rational surface patches" -, journal = "Comput. Aided Geom. Design" -, volume = 5 -, year = "??" -, pages = "253--258" -, update = "97.11 bibrelex" +, author = "S. Katz and T. W. Sederberg" +, title = "Genus of the intersection curve of two rational surface patches" +, journal = "Comput. Aided Geom. Design" +, volume = 5 +, year = "??" +, pages = "253--258" +, update = "97.11 bibrelex" } @article{k-aairm-83 -, author = "S. Kauffman" -, title = "An Algorithmic Approach to Intelligent Robot Mobility" -, journal = "Robotics Age" -, volume = 5 -, number = 3 -, year = 1983 -, pages = "38--47" -, update = "93.09 milone+mitchell" +, author = "S. Kauffman" +, title = "An Algorithmic Approach to Intelligent Robot Mobility" +, journal = "Robotics Age" +, volume = 5 +, number = 3 +, year = 1983 +, pages = "38--47" +, update = "93.09 milone+mitchell" } @inproceedings{ks-saplc-99 -, author = "Pierre Kauffmann and Jean-Claude Spehner" -, title = "Sweeping Along a Polygonal Line to Construct a {Delaunay} Diagram" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "153--155" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Pierre Kauffmann and Jean-Claude Spehner" +, title = "Sweeping Along a Polygonal Line to Construct a {Delaunay} Diagram" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "153--155" +, update = "00.03 bibrelex, 99.07 bibrelex" } @article{kcy-vg-93 -, author = "A. Kaufman and D. Cohen and R. Yagel" -, title = "Volumetric Graphics" -, journal = "IEEE Computer" -, volume = 26 -, number = 7 -, year = 1993 -, pages = "51--64" -, update = "98.03 mitchell" +, author = "A. Kaufman and D. Cohen and R. Yagel" +, title = "Volumetric Graphics" +, journal = "IEEE Computer" +, volume = 26 +, number = 7 +, year = 1993 +, pages = "51--64" +, update = "98.03 mitchell" } @book{k-vv-90 -, author = "A. E. Kaufman" -, title = "Volume Visualization" -, publisher = "IEEE Computer Society Press" -, address = "Los Alamitos, CA" -, year = 1990 -, isbn = "908186-9020-8" -, update = "98.03 mitchell" +, author = "A. E. Kaufman" +, title = "Volume Visualization" +, publisher = "IEEE Computer Society Press" +, address = "Los Alamitos, CA" +, year = 1990 +, isbn = "908186-9020-8" +, update = "98.03 mitchell" } @book{kr-fgdic-90 -, author = "L. Kaufman and P. J. Rousseeuw" -, title = "Finding Groups in Data: An Introduction to Cluster Analysis" -, publisher = "John Wiley \& Sons" -, year = 1990 -, update = "99.11 bibrelex, 98.07 agarwal" +, author = "L. Kaufman and P. J. Rousseeuw" +, title = "Finding Groups in Data: An Introduction to Cluster Analysis" +, publisher = "John Wiley \& Sons" +, year = 1990 +, update = "99.11 bibrelex, 98.07 agarwal" } @book{ks-sts-93 -, author = "W. J. {Kaufmann III} and L. L. Smarr" -, title = "Supercomputing and the transformation of science" -, publisher = "Scientific American Library" -, address = "New York, NY" -, year = 1993 -, update = "98.03 bibrelex" +, author = "W. J. {Kaufmann III} and L. L. Smarr" +, title = "Supercomputing and the transformation of science" +, publisher = "Scientific American Library" +, address = "New York, NY" +, year = 1993 +, update = "98.03 bibrelex" } @inproceedings{kgt-smtgg-94 -, author = "M. Kaufmann and S. Gao and K. Thulasiraman" -, title = "On {Steiner} Minimal Tree in Grid Graphs and Its Application to {VLSI} Routing" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "351--359" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" +, author = "M. Kaufmann and S. Gao and K. Thulasiraman" +, title = "On {Steiner} Minimal Tree in Grid Graphs and Its Application to {VLSI} Routing" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "351--359" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" } @inproceedings{kk-faedp-91 -, author = "Michael Kaufmann and Gerhard Kl{\"a}r" -, title = "A Faster Algorithm for Edge-Disjoint Paths in Planar Graphs" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "336--348" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "Michael Kaufmann and Gerhard Kl{\"a}r" +, title = "A Faster Algorithm for Edge-Disjoint Paths in Planar Graphs" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "336--348" +, update = "94.01 smid, 93.09 milone+mitchell" } @techreport{km-lrttn-84 -, author = "M. Kaufmann and K. Mehlhorn" -, title = "Local routing of two-terminal nets is easy" -, type = "Report" -, number = "A84/12" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1984 +, author = "M. Kaufmann and K. Mehlhorn" +, title = "Local routing of two-terminal nets is easy" +, type = "Report" +, number = "A84/12" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1984 } @article{km-rtgs-86 -, author = "M. Kaufmann and K. Mehlhorn" -, title = "Routing through a generalized switchbox" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "510--531" +, author = "M. Kaufmann and K. Mehlhorn" +, title = "Routing through a generalized switchbox" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "510--531" } @inproceedings{krb-sadlg-95 -, author = "K. Kaugars and J. Reinfelds and A. Brazma" -, title = "A Simple Algorithm for Drawing Large Graphs on Small Screens" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "278--281" -, keywords = "graph drawing, system, fisheye view" -, update = "95.01 tamassia" +, author = "K. Kaugars and J. Reinfelds and A. Brazma" +, title = "A Simple Algorithm for Drawing Large Graphs on Small Screens" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "278--281" +, keywords = "graph drawing, system, fisheye view" +, update = "95.01 tamassia" } @article{kf-cmspc-95 -, author = "A. Kaul and R. Farouki" -, title = "Computing {Minkowski} sums of plane curves" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "413--432" -, keywords = "Minkowski sums, plane curves, convolutions, Gauss maps, shape design, configuration space" -, update = "96.09 devillers" +, author = "A. Kaul and R. Farouki" +, title = "Computing {Minkowski} sums of plane curves" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "413--432" +, keywords = "Minkowski sums, plane curves, convolutions, Gauss maps, shape design, configuration space" +, update = "96.09 devillers" } @techreport{ko-cmsrp-93 -, author = "A. Kaul and M. A. O'Connor" -, title = "Computing {Minkowski} sums of regular polyhedra" -, type = "Report" -, number = "RC 18891 (82557) 5/12/93" -, institution = "IBM T.J. Watson Research Center" -, address = "Yorktown Heights, NY 10598" -, year = 1993 -, update = "98.07 bibrelex, 96.05 ramkumar" +, author = "A. Kaul and M. A. O'Connor" +, title = "Computing {Minkowski} sums of regular polyhedra" +, type = "Report" +, number = "RC 18891 (82557) 5/12/93" +, institution = "IBM T.J. Watson Research Center" +, address = "Yorktown Heights, NY 10598" +, year = 1993 +, update = "98.07 bibrelex, 96.05 ramkumar" } @inproceedings{kos-cmsrp-91i -, author = "A. Kaul and M. A. O'Connor and V. Srinivasan" -, title = "Computing {Minkowski} sums of regular polygons" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "74--77" -, cites = "bo-arcgi-79, dhks-isccd-90, g-ctfsr-86, g-cp-67, grs-kfcg-83, gs-lncg-83, kos-cmsrp-91t, klps-ujrcf-86, m-rsig-75, ps-cgi-85, s-iamm-82, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "A. Kaul and M. A. O'Connor and V. Srinivasan" +, title = "Computing {Minkowski} sums of regular polygons" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "74--77" +, cites = "bo-arcgi-79, dhks-isccd-90, g-ctfsr-86, g-cp-67, grs-kfcg-83, gs-lncg-83, kos-cmsrp-91t, klps-ujrcf-86, m-rsig-75, ps-cgi-85, s-iamm-82, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @techreport{kos-cmsrp-91t -, author = "A. Kaul and M. A. O'Connor and V. Srinivasan" -, title = "Computing {Minkowski} sums of regular polygons" -, type = "Report" -, number = "RC 18523 (80982) 11/13/93" -, institution = "IBM T.J. Watson Research Center" -, address = "Yorktown Heights, NY 10598" -, year = 1992 -, update = "98.07 bibrelex, 96.05 ramkumar" +, author = "A. Kaul and M. A. O'Connor and V. Srinivasan" +, title = "Computing {Minkowski} sums of regular polygons" +, type = "Report" +, number = "RC 18523 (80982) 11/13/93" +, institution = "IBM T.J. Watson Research Center" +, address = "Yorktown Heights, NY 10598" +, year = 1992 +, update = "98.07 bibrelex, 96.05 ramkumar" } @inproceedings{kr-sidc-92 -, author = "A. Kaul and J. Rossignac" -, title = "Solid-interpolating deformations: construction and animation of {PIPs}" -, booktitle = "Proc. Eurographics '91" -, year = 1991 -, pages = "493--505" -, comments = "use of Minkowski sums for animation" -, update = "96.05 ramkumar" +, author = "A. Kaul and J. Rossignac" +, title = "Solid-interpolating deformations: construction and animation of {PIPs}" +, booktitle = "Proc. Eurographics '91" +, year = 1991 +, pages = "493--505" +, comments = "use of Minkowski sums for animation" +, update = "96.05 ramkumar" } @phdthesis{k-rncsf-95 -, author = "L. Kavraki" -, title = "Random Networks in Configuration Space for Fast Path Planning" -, school = "Stanford Univ." -, address = "Stanford, CA" -, year = 1995 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "L. Kavraki" +, title = "Random Networks in Configuration Space for Fast Path Planning" +, school = "Stanford Univ." +, address = "Stanford, CA" +, year = 1995 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @techreport{kl-cppa-93t -, author = "L. Kavraki and J.-C. Latombe" -, title = "Complexity of partitioning a planar assembly" -, number = "STAN-CS-93-1467" -, institution = "Department of Computer Science, Stanford University" -, year = 1993 -, precedes = "klw-cap-93" -, update = "98.11 bibrelex" +, author = "L. Kavraki and J.-C. Latombe" +, title = "Complexity of partitioning a planar assembly" +, number = "STAN-CS-93-1467" +, institution = "Department of Computer Science, Stanford University" +, year = 1993 +, precedes = "klw-cap-93" +, update = "98.11 bibrelex" } @inproceedings{klw-cap-93 -, author = "L. Kavraki and J.-C. Latombe and R. Wilson" -, title = "On the Complexity of Assembly Partitioning" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "12--17" -, succeeds = "kl-cppa-93t" -, cites = "acm-mpoap-89, gj-cigtn-79, m-camap-91, kl-cppa-93t, n-pa-88, pss-stsps-88, ss-pmp1c-83, ss-otcbt-93, t-mss-85, w-fap-92, hr-s-83, wll-cpa-92, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "L. Kavraki and J.-C. Latombe and R. Wilson" +, title = "On the Complexity of Assembly Partitioning" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "12--17" +, succeeds = "kl-cppa-93t" +, cites = "acm-mpoap-89, gj-cigtn-79, m-camap-91, kl-cppa-93t, n-pa-88, pss-stsps-88, ss-pmp1c-83, ss-otcbt-93, t-mss-85, w-fap-92, hr-s-83, wll-cpa-92, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{kk-ppatc-95 -, author = "L. E. Kavraki and M. N. Kolountzakis" -, title = "Partitioning a planar assembly into two connected components is {NP}-complete" -, journal = "Inform. Process. Lett." -, volume = 55 -, number = 3 -, year = 1995 -, pages = "159--165" -, keywords = "polygons, assembly, robotics, planning, NP-hardness" -, update = "95.09 mitchell" +, author = "L. E. Kavraki and M. N. Kolountzakis" +, title = "Partitioning a planar assembly into two connected components is {NP}-complete" +, journal = "Inform. Process. Lett." +, volume = 55 +, number = 3 +, year = 1995 +, pages = "159--165" +, keywords = "polygons, assembly, robotics, planning, NP-hardness" +, update = "95.09 mitchell" } @inproceedings{klmr-rqprp-95 -, author = "L. E. Kavraki and J.-C. Latombe and R. Motwani and P. Raghavan" -, title = "Randomized query processing in robot path planning" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, year = 1995 -, pages = "353--362" -, update = "95.09 smid" +, author = "L. E. Kavraki and J.-C. Latombe and R. Motwani and P. Raghavan" +, title = "Randomized query processing in robot path planning" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, year = 1995 +, pages = "353--362" +, update = "95.09 smid" } @article{kslo-prpph-96 -, author = "L. E. Kavraki and P. {\v S}vestka and J.-C. Latombe and M. H. Overmars" -, title = "Probabilistic Roadmaps for Path Planning in High Dimensional Configuration Spaces" -, journal = "IEEE Trans. Robot. Autom." -, volume = 12 -, year = 1996 -, pages = "566--580" -, update = "98.07 agarwal, 97.03 schwarzkopf" +, author = "L. E. Kavraki and P. {\v S}vestka and J.-C. Latombe and M. H. Overmars" +, title = "Probabilistic Roadmaps for Path Planning in High Dimensional Configuration Spaces" +, journal = "IEEE Trans. Robot. Autom." +, volume = 12 +, year = 1996 +, pages = "566--580" +, update = "98.07 agarwal, 97.03 schwarzkopf" } @book{k-fo-95 -, author = "F. Kawahata" -, title = "Fantasy Origami" -, publisher = "Gallery Origami House" -, address = "Tokyo, Japan" -, year = 1995 -, update = "97.11 bibrelex" +, author = "F. Kawahata" +, title = "Fantasy Origami" +, publisher = "Gallery Origami House" +, address = "Tokyo, Japan" +, year = 1995 +, update = "97.11 bibrelex" } @inproceedings{k-tffaf-94 -, author = "F. Kawahata" -, title = "The technique to fold free angles of formative art 'origami'" -, booktitle = "Proc. 2nd Internat. Meeting on Origami Science and Scientific Origami" -, site = "Otsu, Japan" -, year = 1994 -, update = "97.11 bibrelex" +, author = "F. Kawahata" +, title = "The technique to fold free angles of formative art 'origami'" +, booktitle = "Proc. 2nd Internat. Meeting on Origami Science and Scientific Origami" +, site = "Otsu, Japan" +, year = 1994 +, update = "97.11 bibrelex" } @incollection{k-rbmcv-89 -, author = "T. Kawasaki" -, title = "On the relation between mountain-creases and valley-creases of a flat origami" -, editor = "H. Huzita" -, booktitle = "Origami Science and Technology" -, year = 1989 -, pages = "229--237" -, update = "97.11 bibrelex" +, author = "T. Kawasaki" +, title = "On the relation between mountain-creases and valley-creases of a flat origami" +, editor = "H. Huzita" +, booktitle = "Origami Science and Technology" +, year = 1989 +, pages = "229--237" +, update = "97.11 bibrelex" } @inproceedings{k-ealdp-89 -, author = "Y. Ke" -, title = "An efficient algorithm for link-distance problems" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "69--78" -, keywords = "motion planning, visibility, polygonal chains" -, cites = "cg-vippg-85, dls-oaclc-88, egs-oplms-86, gh-ospqs-87, ghlst-ltavs-86, k-ealdp-88, k-pvawv-89, k-twvsp-87, kr-wvpsp-87, lpsssstwy-clcsp-87, gjpt-tsp-78, s-ltaml-86, s-mlppr-87, tv-otats-88, ZZZ" -, update = "98.03 bibrelex" +, author = "Y. Ke" +, title = "An efficient algorithm for link-distance problems" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "69--78" +, keywords = "motion planning, visibility, polygonal chains" +, cites = "cg-vippg-85, dls-oaclc-88, egs-oplms-86, gh-ospqs-87, ghlst-ltavs-86, k-ealdp-88, k-pvawv-89, k-twvsp-87, kr-wvpsp-87, lpsssstwy-clcsp-87, gjpt-tsp-78, s-ltaml-86, s-mlppr-87, tv-otats-88, ZZZ" +, update = "98.03 bibrelex" } @techreport{k-ealdp-88 -, author = "Y. Ke" -, title = "An Efficient Algorithm for Link Distance Problems inside a Simple Polygon" -, type = "Technical {Report}" -, number = "JHU-87/28" -, institution = "Dept. of Computer Science, Johns Hopkins Univ." -, year = 1988 -, update = "93.09 milone+mitchell" +, author = "Y. Ke" +, title = "An Efficient Algorithm for Link Distance Problems inside a Simple Polygon" +, type = "Technical {Report}" +, number = "JHU-87/28" +, institution = "Dept. of Computer Science, Johns Hopkins Univ." +, year = 1988 +, update = "93.09 milone+mitchell" } @techreport{k-dwvsp-88 -, author = "Y. Ke" -, title = "Detecting the weak visibility of a simple polygon and related problems" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1988 -, update = "97.11 bibrelex" +, author = "Y. Ke" +, title = "Detecting the weak visibility of a simple polygon and related problems" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1988 +, update = "97.11 bibrelex" } @phdthesis{k-pvawv-89 -, author = "Y. Ke" -, title = "Polygon visibility algorithms for weak visibility and link distance problems" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1989 -, keywords = "doctoral thesis" -, update = "96.01 aronov+orourke" +, author = "Y. Ke" +, title = "Polygon visibility algorithms for weak visibility and link distance problems" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1989 +, keywords = "doctoral thesis" +, update = "96.01 aronov+orourke" } @techreport{k-twvsp-87 -, author = "Y. Ke" -, title = "Testing the weak visibility of a simple polygon and related problems" -, number = 27 -, institution = "Department of Computer Science, The Johns Hopkins University" -, year = 1987 -, update = "98.03 bibrelex" +, author = "Y. Ke" +, title = "Testing the weak visibility of a simple polygon and related problems" +, number = 27 +, institution = "Department of Computer Science, The Johns Hopkins University" +, year = 1987 +, update = "98.03 bibrelex" } @techreport{ko-amltd-87 -, author = "Y. Ke and J. O'Rourke" -, title = "An algorithm for moving a ladder in three dimensions" -, type = "Technical {Report}" -, number = "JHU-87/17" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = sep -, year = 1987 -, keywords = "motion planning, three-dimensional, lower bounds, cell complexes" -, precedes = "ko-mltdu-87" +, author = "Y. Ke and J. O'Rourke" +, title = "An algorithm for moving a ladder in three dimensions" +, type = "Technical {Report}" +, number = "JHU-87/17" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = sep +, year = 1987 +, keywords = "motion planning, three-dimensional, lower bounds, cell complexes" +, precedes = "ko-mltdu-87" } @techreport{ko-oamlt-87 -, author = "Y. Ke and J. O'Rourke" -, title = "An ${O} (n^{6} \log n)$ algorithm for moving a ladder in three dimensions" -, type = "Technical {Report}" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = may -, year = 1987 -, update = "98.03 bibrelex" +, author = "Y. Ke and J. O'Rourke" +, title = "An ${O} (n^{6} \log n)$ algorithm for moving a ladder in three dimensions" +, type = "Technical {Report}" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = may +, year = 1987 +, update = "98.03 bibrelex" } @article{ko-ckpsp- -, author = "Y. Ke and J. O'Rourke" -, title = "Computing the kernel of a point set in a polygon" -, journal = "Visual Comput." -, volume = "" -, year = "" -, pages = "" -, keywords = "visibility, points, polygons, kernel" -, comments = "submitted" -, succeeds = "ko-ckpsp-89" -, update = "94.05 devillers" +, author = "Y. Ke and J. O'Rourke" +, title = "Computing the kernel of a point set in a polygon" +, journal = "Visual Comput." +, volume = "" +, year = "" +, pages = "" +, keywords = "visibility, points, polygons, kernel" +, comments = "submitted" +, succeeds = "ko-ckpsp-89" +, update = "94.05 devillers" } @inproceedings{ko-ckpsp-89 -, author = "Y. Ke and J. O'Rourke" -, title = "Computing the kernel of a point set in a polygon" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "135--146" -, keywords = "visibility, points, polygons, kernel" -, precedes = "ko-ckpsp-" -, update = "97.11 bibrelex" +, author = "Y. Ke and J. O'Rourke" +, title = "Computing the kernel of a point set in a polygon" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "135--146" +, keywords = "visibility, points, polygons, kernel" +, precedes = "ko-ckpsp-" +, update = "97.11 bibrelex" } @techreport{ko-lbmlt-87t -, author = "Y. Ke and J. O'Rourke" -, title = "Lower bounds on moving a ladder in two and three dimensions" -, type = "Technical {Report}" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = may -, year = 1987 -, update = "98.03 bibrelex" +, author = "Y. Ke and J. O'Rourke" +, title = "Lower bounds on moving a ladder in two and three dimensions" +, type = "Technical {Report}" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = may +, year = 1987 +, update = "98.03 bibrelex" } @article{ko-lbmlt-87a -, author = "Y. Ke and J. O'Rourke" -, title = "Lower bounds on moving a ladder in two and three dimensions" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1987 -, pages = "197--218" -, update = "98.03 bibrelex" +, author = "Y. Ke and J. O'Rourke" +, title = "Lower bounds on moving a ladder in two and three dimensions" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1987 +, pages = "197--218" +, update = "98.03 bibrelex" } @article{ko-lbmlt-88 -, author = "Y. Ke and J. O'Rourke" -, title = "Lower bounds on moving a ladder in two and three dimensions" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "197--217" -, keywords = "motion planning, two-dimensional, three-dimensional, lower bounds, cell complexes" -, succeeds = "ko-mltdu-87" +, author = "Y. Ke and J. O'Rourke" +, title = "Lower bounds on moving a ladder in two and three dimensions" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "197--217" +, keywords = "motion planning, two-dimensional, three-dimensional, lower bounds, cell complexes" +, succeeds = "ko-mltdu-87" } @inproceedings{ko-mltdu-87 -, author = "Y. Ke and J. O'Rourke" -, title = "Moving a ladder in three dimensions: upper and lower bounds" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "136--145" -, keywords = "motion planning, three-dimensional, lower bounds, cell complexes" -, succeeds = "ko-amltd-87" -, precedes = "ko-lbmlt-88" -, cites = "c-emscc-87, eos-calha-86, ko-lbmlt-87t, ko-oamlt-87, ls-esmpa-85, o-lbml-85, osy-gvdl1-84, osy-gvdl2-84, osy-rnamp-83, ss-pmp1c-83, ss-pmp5c-84, ss-nempa-86, ZZZ" -, update = "98.03 bibrelex" +, author = "Y. Ke and J. O'Rourke" +, title = "Moving a ladder in three dimensions: upper and lower bounds" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "136--145" +, keywords = "motion planning, three-dimensional, lower bounds, cell complexes" +, succeeds = "ko-amltd-87" +, precedes = "ko-lbmlt-88" +, cites = "c-emscc-87, eos-calha-86, ko-lbmlt-87t, ko-oamlt-87, ls-esmpa-85, o-lbml-85, osy-gvdl1-84, osy-gvdl2-84, osy-rnamp-83, ss-pmp1c-83, ss-pmp5c-84, ss-nempa-86, ZZZ" +, update = "98.03 bibrelex" } @techreport{kr-wvpsp-87 -, author = "Y. Ke and J. O'Rourke" -, title = "Weak visibility problems for a set of points in a simple polygon" -, institution = "Department of Computer Science, The Johns Hopkins University" -, year = 1987 -, update = "98.03 bibrelex" +, author = "Y. Ke and J. O'Rourke" +, title = "Weak visibility problems for a set of points in a simple polygon" +, institution = "Department of Computer Science, The Johns Hopkins University" +, year = 1987 +, update = "98.03 bibrelex" } @techreport{k-nr- -, author = "P. Kearney" -, title = "On {NeST} representations" -, type = "manuscript" -, update = "98.11 bibrelex" +, author = "P. Kearney" +, title = "On {NeST} representations" +, type = "manuscript" +, update = "98.11 bibrelex" } @proceedings{k-ewcg-00 -, title = "Abstracts 16th European Workshop Comput. Geom." -, editor = "Klara Kedem" -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, update = "00.03 bibrelex" +, title = "Abstracts 16th European Workshop Comput. Geom." +, editor = "Klara Kedem" +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, update = "00.03 bibrelex" } @article{kc-ebrut-97 -, author = "K. Kedem and D. Cohen" -, title = "Efficient bitmap resemblance under translations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "57--84" -, update = "97.07 devillers" +, author = "K. Kedem and D. Cohen" +, title = "Efficient bitmap resemblance under translations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "57--84" +, update = "97.07 devillers" } @article{klps-ujrcf-86 -, author = "K. Kedem and R. Livne and J. Pach and Micha Sharir" -, title = "On the union of {Jordan} regions and collision-free translational motion amidst polygonal obstacles" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "59--71" -, keywords = "motion planning, two-dimensional, Jordan curves" -, succeeds = "ks-eapcf-85" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "K. Kedem and R. Livne and J. Pach and Micha Sharir" +, title = "On the union of {Jordan} regions and collision-free translational motion amidst polygonal obstacles" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "59--71" +, keywords = "motion planning, two-dimensional, Jordan curves" +, succeeds = "ks-eapcf-85" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{ks-ampsc-88 -, author = "K. Kedem and Micha Sharir" -, title = "An automatic motion planning system for a convex polygonal mobile robot in $2$-d polygonal space" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "329--340" -, precedes = "ks-ampsc-90" -, cites = "ass-sulbl-87, a-sdcgp-85, bz-stdfp-86, bl-sacsf-83, hs-ndssg-86, hss-pgcrm-87, ksss-tdmbb-86, klps-ujrcf-86, ks-eapcf-85, ls-esmpa-87, ls-pptmc-87, ls-ncfcc-87, l-smpag-86, l-dpppa-87, l-acirm-87, ls-ppspm-87, oy-rmpmd-85, osy-gvdl-86, osy-gvdl-87, o-lbml-85, ss-pmp1c-83, ss-mprga-86, ss-nempa-87, y-amp-87, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "K. Kedem and Micha Sharir" +, title = "An automatic motion planning system for a convex polygonal mobile robot in $2$-d polygonal space" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "329--340" +, precedes = "ks-ampsc-90" +, cites = "ass-sulbl-87, a-sdcgp-85, bz-stdfp-86, bl-sacsf-83, hs-ndssg-86, hss-pgcrm-87, ksss-tdmbb-86, klps-ujrcf-86, ks-eapcf-85, ls-esmpa-87, ls-pptmc-87, ls-ncfcc-87, l-smpag-86, l-dpppa-87, l-acirm-87, ls-ppspm-87, oy-rmpmd-85, osy-gvdl-86, osy-gvdl-87, o-lbml-85, ss-pmp1c-83, ss-mprga-86, ss-nempa-87, y-amp-87, ZZZ" +, update = "98.03 bibrelex+mitchell" } @incollection{ks-ampsc-90 -, author = "K. Kedem and Micha Sharir" -, title = "An automatic motion planning system for a convex polygonal mobile robot in $2$-d polygonal space" -, editor = "I. J. Cox and G. T. Wilfong" -, booktitle = "Autonomous Robot Vehicles" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1990 -, pages = "349--362" -, keywords = "motion planning, robotics, implementing algorithms" -, succeeds = "ks-ampsc-88" -, update = "98.03 mitchell" +, author = "K. Kedem and Micha Sharir" +, title = "An automatic motion planning system for a convex polygonal mobile robot in $2$-d polygonal space" +, editor = "I. J. Cox and G. T. Wilfong" +, booktitle = "Autonomous Robot Vehicles" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1990 +, pages = "349--362" +, keywords = "motion planning, robotics, implementing algorithms" +, succeeds = "ks-ampsc-88" +, update = "98.03 mitchell" } @inproceedings{ks-eapcf-85 -, author = "K. Kedem and Micha Sharir" -, title = "An efficient algorithm for planning collision-free translational motion of a convex polygonal object in $2$-dimensional space amidst polygonal obstacles" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "75--80" -, keywords = "motion planning, convex objects, two-dimensional" -, precedes = "ks-empac-90" -, cites = "b-egc-66, bo-arcgi-79, gk-shfmp-70, grs-kfcg-83, k-osps-83, ls-esmpa-84, lw-apcfp-79, np-psaig-82, oy-rmpmd-85, osy-gvdl1-84, osy-gvdl2-84, oww-fabmo-82, ss-pmp1c-83, ss-spps-86, w-cvgnl-84, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 93.09 milone+mitchell" +, author = "K. Kedem and Micha Sharir" +, title = "An efficient algorithm for planning collision-free translational motion of a convex polygonal object in $2$-dimensional space amidst polygonal obstacles" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "75--80" +, keywords = "motion planning, convex objects, two-dimensional" +, precedes = "ks-empac-90" +, cites = "b-egc-66, bo-arcgi-79, gk-shfmp-70, grs-kfcg-83, k-osps-83, ls-esmpa-84, lw-apcfp-79, np-psaig-82, oy-rmpmd-85, osy-gvdl1-84, osy-gvdl2-84, oww-fabmo-82, ss-pmp1c-83, ss-spps-86, w-cvgnl-84, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 93.09 milone+mitchell" } @article{ks-empac-90 -, author = "K. Kedem and Micha Sharir" -, title = "An efficient motion planning algorithm for a convex rigid polygonal object in $2$-dimensional polygonal space" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "43--75" -, keywords = "motion planning, convex objects, Davenport-Schinzel sequences, two-dimensional" -, succeeds = "ks-eapcf-85" -, update = "98.03 mitchell" +, author = "K. Kedem and Micha Sharir" +, title = "An efficient motion planning algorithm for a convex rigid polygonal object in $2$-dimensional polygonal space" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "43--75" +, keywords = "motion planning, convex objects, Davenport-Schinzel sequences, two-dimensional" +, succeeds = "ks-eapcf-85" +, update = "98.03 mitchell" } @techreport{kst-coksm-93t -, author = "K. Kedem and Micha Sharir and S. Toledo" -, title = "On critical orientations in the {Kedem}-{Sharir} motion planning algorithm for a convex polygon in the plane" -, number = "273/93" -, institution = "Department of Computer Science, Tel-Aviv University" -, year = 1993 -, precedes = "kst-coksm-93i" -, update = "98.03 mitchell, 97.07 devillers, 93.09 milone+mitchell, 93.05 orourke" -, annote = "Fixes bug in Kedem-Sharir algorithm" +, author = "K. Kedem and Micha Sharir and S. Toledo" +, title = "On critical orientations in the {Kedem}-{Sharir} motion planning algorithm for a convex polygon in the plane" +, number = "273/93" +, institution = "Department of Computer Science, Tel-Aviv University" +, year = 1993 +, precedes = "kst-coksm-93i" +, update = "98.03 mitchell, 97.07 devillers, 93.09 milone+mitchell, 93.05 orourke" +, annote = "Fixes bug in Kedem-Sharir algorithm" } @inproceedings{kst-coksm-93i -, author = "K. Kedem and Micha Sharir and S. Toledo" -, title = "On critical orientations in the {Kedem}-{Sharir} motion planning algorithm for a convex polygon in the plane" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "204--209" -, succeeds = "kst-coksm-93t" -, precedes = "kst-coksm-97" -, update = "98.03 mitchell, 97.07 devillers, 93.09 milone+mitchell" +, author = "K. Kedem and Micha Sharir and S. Toledo" +, title = "On critical orientations in the {Kedem}-{Sharir} motion planning algorithm for a convex polygon in the plane" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "204--209" +, succeeds = "kst-coksm-93t" +, precedes = "kst-coksm-97" +, update = "98.03 mitchell, 97.07 devillers, 93.09 milone+mitchell" } @article{kst-coksm-97 -, author = "K. Kedem and Micha Sharir and S. Toledo" -, title = "On critical orientations in the {Kedem}-{Sharir} motion planning algorithm for a convex polygon in the plane" -, journal = "Discrete Comput. Geom." -, volume = 17 -, year = 1997 -, pages = "227--240" -, succeeds = "kst-coksm-93i" -, update = "98.03 mitchell, 97.07 devillers" +, author = "K. Kedem and Micha Sharir and S. Toledo" +, title = "On critical orientations in the {Kedem}-{Sharir} motion planning algorithm for a convex polygon in the plane" +, journal = "Discrete Comput. Geom." +, volume = 17 +, year = 1997 +, pages = "227--240" +, succeeds = "kst-coksm-93i" +, update = "98.03 mitchell, 97.07 devillers" } @inproceedings{ky-cbsmu-96 -, author = "Klara Kedem and Yana Yarmovski" -, title = "Curve Based Stereo Matching Using the Minimum {Hausdorff} Distance" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C15--C18" -, cites = "af-ersmg-87, a-avmrs-91, ct-lsm3d-93, hkr-ciuhd-93, hks-uevsi-93, sp-simc-90, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Klara Kedem and Yana Yarmovski" +, title = "Curve Based Stereo Matching Using the Minimum {Hausdorff} Distance" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C15--C18" +, cites = "af-ersmg-87, a-avmrs-91, ct-lsm3d-93, hkr-ciuhd-93, hks-uevsi-93, sp-simc-90, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{ksd-ttute-92 -, author = "S. S. Keerthi and N. K. Sancheti and A. Dattasharma" -, title = "Transversality Theorem: A Useful Tool for Establishing Genericity" -, booktitle = "Proc. IEEE Conf. on Decision and Control" -, year = 1992 -, update = "98.11 bibrelex" +, author = "S. S. Keerthi and N. K. Sancheti and A. Dattasharma" +, title = "Transversality Theorem: A Useful Tool for Establishing Genericity" +, booktitle = "Proc. IEEE Conf. on Decision and Control" +, year = 1992 +, update = "98.11 bibrelex" } @inproceedings{ks-micco-91 -, author = "S. Sathiya Keerthi and K. Sridharan" -, title = "Measures of intensity of collision between convex objects and their efficient computation" -, booktitle = "Proceedings of the International Symposium on Intelligent Robotics, Bangalore, India" -, month = jan -, year = 1991 -, pages = "266--275" -, update = "98.07 bibrelex" +, author = "S. Sathiya Keerthi and K. Sridharan" +, title = "Measures of intensity of collision between convex objects and their efficient computation" +, booktitle = "Proceedings of the International Symposium on Intelligent Robotics, Bangalore, India" +, month = jan +, year = 1991 +, pages = "266--275" +, update = "98.07 bibrelex" } @inproceedings{ks-cdctd-91 -, author = "S. S. Keerthi and K. Sridharan" -, title = "On computing depth of collision in two dimensions" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "19--25" -, cites = "gpwz-eaes-91, bhh-fgavt-81, dk-ladsc-85, gjk-fpcdb-88, cc-dmtdb-86, bl-pmcpp-85, ds-splif-90, grs-kfcg-83, l-spcsa-83, cd-icott-87, r-ca-70, k-smsm-55, cg-vippg-85, ks-micco-91, ZZZ" -, update = "98.07 bibrelex" +, author = "S. S. Keerthi and K. Sridharan" +, title = "On computing depth of collision in two dimensions" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "19--25" +, cites = "gpwz-eaes-91, bhh-fgavt-81, dk-ladsc-85, gjk-fpcdb-88, cc-dmtdb-86, bl-pmcpp-85, ds-splif-90, grs-kfcg-83, l-spcsa-83, cd-icott-87, r-ca-70, k-smsm-55, cg-vippg-85, ks-micco-91, ZZZ" +, update = "98.07 bibrelex" } @article{ds-splif-90 -, author = "S. S. Keerthi and K. Sridharan" -, title = "Solution of parametrized linear inequalities by Fourier Elimination and its applications" -, journal = "J. Optim. Theory Appl." -, volume = 65 -, month = apr -, year = 1990 -, update = "98.07 bibrelex" +, author = "S. S. Keerthi and K. Sridharan" +, title = "Solution of parametrized linear inequalities by Fourier Elimination and its applications" +, journal = "J. Optim. Theory Appl." +, volume = 65 +, month = apr +, year = 1990 +, update = "98.07 bibrelex" } @article{kf-fsr3d-88 -, author = "N. Kehtarnavaz and R. J. P. de Figueiredo" -, title = "A framework for surface reconstruction from $3$-d contours" -, journal = "Comput. Vision Graph. Image Process." -, volume = 42 -, year = 1988 -, pages = "32--47" -, update = "98.03 bibrelex" +, author = "N. Kehtarnavaz and R. J. P. de Figueiredo" +, title = "A framework for surface reconstruction from $3$-d contours" +, journal = "Comput. Vision Graph. Image Process." +, volume = 42 +, year = 1988 +, pages = "32--47" +, update = "98.03 bibrelex" } @article{ksf-sstsr-88 -, author = "N. Kehtarnavaz and L. R. Simar and R. J. P. de Figueiredo" -, title = "Syntactic/Semantic Technique For Surface Reconstruction From Cross- Sectional Contours" -, journal = "Comput. Vision Graph. Image Process." -, volume = 42 -, number = 3 -, month = jun -, year = 1988 -, pages = "399--409" -, keywords = "syntactic/semantic technique, surface reconstruction, cross-sectional contours, weighted levenshtein graph" -, annote = "Breaks contours into ``syntactic'' components, matches - and triangulates between each piece." -, abstract = "Surface reconstruction from cross-sectional contours - has become increasingly important in medicine. In this - paper, a surface reconstruction technique has been - developed to improve the conventional triangulation - techniques by taking into account local shape - characteristics of the surface being reconstructed. The - technique involves a syntactic/semantic contour - representation which allows a similarity relation, - based on the weighted Levenshtein graph, to be - established between adjacent contours. This similarity - relation is then employed as a guide to form the - surface by triangulating similar substructures. (Author - abstract) 11 refs." +, author = "N. Kehtarnavaz and L. R. Simar and R. J. P. de Figueiredo" +, title = "Syntactic/Semantic Technique For Surface Reconstruction From Cross- Sectional Contours" +, journal = "Comput. Vision Graph. Image Process." +, volume = 42 +, number = 3 +, month = jun +, year = 1988 +, pages = "399--409" +, keywords = "syntactic/semantic technique, surface reconstruction, cross-sectional contours, weighted levenshtein graph" +, annote = "Breaks contours into ``syntactic'' components, matches + and triangulates between each piece." +, abstract = "Surface reconstruction from cross-sectional contours + has become increasingly important in medicine. In this + paper, a surface reconstruction technique has been + developed to improve the conventional triangulation + techniques by taking into account local shape + characteristics of the surface being reconstructed. The + technique involves a syntactic/semantic contour + representation which allows a similarity relation, + based on the weighted Levenshtein graph, to be + established between adjacent contours. This similarity + relation is then employed as a guide to form the + surface by triangulating similar substructures. (Author + abstract) 11 refs." } @inproceedings{k-aceg-88 -, author = "J. M. Keil" -, title = "Approximating the complete {Euclidean} graph" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "208--213" -, keywords = "geometric graphs, path planning" +, author = "J. M. Keil" +, title = "Approximating the complete {Euclidean} graph" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "208--213" +, keywords = "geometric graphs, path planning" } @mastersthesis{k-cgig-80 -, author = "J. M. Keil" -, title = "Computational geometry on the integer grid" -, type = "M.{Sc}. Thesis" -, school = "Dept. Comput. Sci., Univ. British Columbia" -, address = "Vancouver, BC" -, year = 1980 -, keywords = "master thesis, priority search trees, bucketing, design of algorithms, data structuring, sorting, convex hull, intersection" -, precedes = "kk-cgig-81" +, author = "J. M. Keil" +, title = "Computational geometry on the integer grid" +, type = "M.{Sc}. Thesis" +, school = "Dept. Comput. Sci., Univ. British Columbia" +, address = "Vancouver, BC" +, year = 1980 +, keywords = "master thesis, priority search trees, bucketing, design of algorithms, data structuring, sorting, convex hull, intersection" +, precedes = "kk-cgig-81" } @article{k-copnp-97 -, author = "J. M. Keil" -, title = "Covering Orthogonal Polygons with Non-Piercing Rectangles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "473--484" -, update = "98.11 devillers" +, author = "J. M. Keil" +, title = "Covering Orthogonal Polygons with Non-Piercing Rectangles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "473--484" +, update = "98.11 devillers" } @article{k-dpsc-85 -, author = "J. M. Keil" -, title = "Decomposing a polygon into simpler components" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "799--817" -, keywords = "dynamic programming, convex, polygons, star-shaped, partition, decomposition" +, author = "J. M. Keil" +, title = "Decomposing a polygon into simpler components" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "799--817" +, keywords = "dynamic programming, convex, polygons, star-shaped, partition, decomposition" } @phdthesis{k-dpsc-83 -, author = "J. M. Keil" -, title = "Decomposing Polygons into Simpler Components" -, school = "Dept. Comput. Sci., Univ. Toronto" -, address = "Toronto, ON" -, year = 1983 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "J. M. Keil" +, title = "Decomposing Polygons into Simpler Components" +, school = "Dept. Comput. Sci., Univ. Toronto" +, address = "Toronto, ON" +, year = 1983 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @inproceedings{k-mchco-86 -, author = "J. M. Keil" -, title = "Minimally covering a horizontally convex orthogonal polygon" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "43--51" -, keywords = "covering, polygons, convex, star-shaped" -, cites = "a-agpiv-84, acyb-idcat-80, cd-dpicp-79, c-cgc-79, eow-sgrag-84, fk-acrri-84, g-dpcp-83, g-dpcp-83, kkk-tgrfw-83, k-dpsc-83, k-dpsc-85, ks-mdpo-85, l-pnrh-82, lllmp-tddo2-79, mw-sprag-84, m-snpcs-79, mf-diasp-82, ostt-mprr-83, o-aprag-83, os-snhpd-83, s-oadrp-82, s-rcg-84, sl-tssp-80, ZZZ" -, update = "97.11 bibrelex" +, author = "J. M. Keil" +, title = "Minimally covering a horizontally convex orthogonal polygon" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "43--51" +, keywords = "covering, polygons, convex, star-shaped" +, cites = "a-agpiv-84, acyb-idcat-80, cd-dpicp-79, c-cgc-79, eow-sgrag-84, fk-acrri-84, g-dpcp-83, g-dpcp-83, kkk-tgrfw-83, k-dpsc-83, k-dpsc-85, ks-mdpo-85, l-pnrh-82, lllmp-tddo2-79, mw-sprag-84, m-snpcs-79, mf-diasp-82, ostt-mprr-83, o-aprag-83, os-snhpd-83, s-oadrp-82, s-rcg-84, sl-tssp-80, ZZZ" +, update = "97.11 bibrelex" } @incollection{k-pd-00 -, author = "J. Mark Keil" -, title = "Polygon Decomposition" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "491--518" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 11 of su-hcg-00" +, author = "J. Mark Keil" +, title = "Polygon Decomposition" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "491--518" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 11 of su-hcg-00" } @proceedings{k-p6ccc-94 -, title = "Proc. 6th Canad. Conf. Comput. Geom." -, editor = "J. Mark Keil" -, publisher = "Dept. Comput. Sci., Univ. Saskatchewan" -, address = "Saskatoon, SK" -, month = aug -, year = 1994 -, comments = "C\$40 cheque or money order payable to Univ. Saskatchewan, includes postage" -, update = "95.01 smid, 94.09 jones" +, title = "Proc. 6th Canad. Conf. Comput. Geom." +, editor = "J. Mark Keil" +, publisher = "Dept. Comput. Sci., Univ. Saskatchewan" +, address = "Saskatoon, SK" +, month = aug +, year = 1994 +, comments = "C\$40 cheque or money order payable to Univ. Saskatchewan, includes postage" +, update = "95.01 smid, 94.09 jones" } @article{kg-cgwac-92 -, author = "J. M. Keil and C. A. Gutwin" -, title = "Classes of graphs which approximate the complete {Euclidean} graph" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "13--28" +, author = "J. M. Keil and C. A. Gutwin" +, title = "Classes of graphs which approximate the complete {Euclidean} graph" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "13--28" } @inproceedings{kg-dtcac-89 -, author = "J. M. Keil and C. A. Gutwin" -, title = "The {Delaunay} triangulation closely approximates the complete {Euclidean} graph" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "47--56" -, keywords = "geometric graphs, Delaunay triangulations" +, author = "J. M. Keil and C. A. Gutwin" +, title = "The {Delaunay} triangulation closely approximates the complete {Euclidean} graph" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "47--56" +, keywords = "geometric graphs, Delaunay triangulations" } @inproceedings{kk-cgig-81 -, author = "J. M. Keil and D. G. Kirkpatrick" -, title = "Computational geometry on the integer grid" -, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." -, year = 1981 -, pages = "41--50" -, keywords = "priority search trees, bucketing, design of algorithms, data structuring, sorting, convex hull, intersection" -, succeeds = "k-cgig-80" +, author = "J. M. Keil and D. G. Kirkpatrick" +, title = "Computational geometry on the integer grid" +, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." +, year = 1981 +, pages = "41--50" +, keywords = "priority search trees, bucketing, design of algorithms, data structuring, sorting, convex hull, intersection" +, succeeds = "k-cgig-80" } @incollection{ks-mdpo-85 -, author = "J. M. Keil and J.-R. Sack" -, title = "Minimum decompositions of polygonal objects" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "197--216" -, keywords = "survey paper, convex, polygons, star-shaped, partition, decomposition, covering" +, author = "J. M. Keil and J.-R. Sack" +, title = "Minimum decompositions of polygonal objects" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "197--216" +, keywords = "survey paper, convex, polygons, star-shaped, partition, decomposition, covering" } @unpublished{kt-dcicc-91u -, author = "J. Mark Keil and Godfried T. Toussaint" -, title = "Detecting and computing intersections of convex chains" -, year = 1991 -, note = "manuscript in preparation" -, succeeds = "kt-dcicc-91i" -, update = "98.07 bibrelex" +, author = "J. Mark Keil and Godfried T. Toussaint" +, title = "Detecting and computing intersections of convex chains" +, year = 1991 +, note = "manuscript in preparation" +, succeeds = "kt-dcicc-91i" +, update = "98.07 bibrelex" } @techreport{k-sades-91t -, author = "M. Keil" -, title = "A simple algorithm for determining the envelope of a set of lines" -, type = "Technical {Report}" -, number = "91-1" -, institution = "University of Saskatchewan" -, year = 1991 -, update = "98.07 mitchell, 97.11 bibrelex" +, author = "M. Keil" +, title = "A simple algorithm for determining the envelope of a set of lines" +, type = "Technical {Report}" +, number = "91-1" +, institution = "University of Saskatchewan" +, year = 1991 +, update = "98.07 mitchell, 97.11 bibrelex" } @article{k-sades-91a -, author = "M. Keil" -, title = "A simple algorithm for determining the envelope of a set of lines" -, journal = "Inform. Process. Lett." -, volume = 39 -, year = 1991 -, pages = "121--124" -, update = "98.07 bibrelex, 95.01 smid" +, author = "M. Keil" +, title = "A simple algorithm for determining the envelope of a set of lines" +, journal = "Inform. Process. Lett." +, volume = 39 +, year = 1991 +, pages = "121--124" +, update = "98.07 bibrelex, 95.01 smid" } @article{k-csmwt-94 -, author = "M. Keil" -, title = "Computing a subgraph of the minimum weight triangulation" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "13--26" -, update = "96.09 devillers" +, author = "M. Keil" +, title = "Computing a subgraph of the minimum weight triangulation" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "13--26" +, update = "96.09 devillers" } @article{kmw-vsdfs-00 -, author = "M. Keil and D. M. Mount and S. K. Wismath" -, title = "Visibility stabs and depth-first spiralling on line segments in output sensitive time" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "535--552" -, update = "01.04 smid" +, author = "M. Keil and D. M. Mount and S. K. Wismath" +, title = "Visibility stabs and depth-first spiralling on line segments in output sensitive time" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "535--552" +, update = "01.04 smid" } @inproceedings{kt-dcicc-91i -, author = "M. Keil and G. Toussaint" -, title = "Detecting and computing intersections of convex chains" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "7--10" -, update = "98.07 bibrelex" +, author = "M. Keil and G. Toussaint" +, title = "Detecting and computing intersections of convex chains" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "7--10" +, update = "98.07 bibrelex" } @inproceedings{kw-cvpes-92 -, author = "M. Keil and S. Wismath" -, title = "Computing the visibility polygons of the endpoints of a set of line segments in output sensitive time" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "39--45" -, cites = "aaghi-vdp-86, c-tsplt-91a, h-fvgsp-87, gm-osacv-87, ow-nmcvg-88, v-dmvg-91, w-cvgnl-85, w-cfvgs-92, ZZZ" -, update = "98.07 bibrelex" +, author = "M. Keil and S. Wismath" +, title = "Computing the visibility polygons of the endpoints of a set of line segments in output sensitive time" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "39--45" +, cites = "aaghi-vdp-86, c-tsplt-91a, h-fvgsp-87, gm-osacv-87, ow-nmcvg-88, v-dmvg-91, w-cvgnl-85, w-cfvgs-92, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{km-psptv-84 -, author = "D. M. Keirsey and Joseph S. B. Mitchell" -, title = "Planning Strategic Paths Through Variable Terrain Data" -, booktitle = "Proc. SPIE Applications of Artificial Intelligence" -, volume = 485 -, year = 1984 -, pages = "172--179" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "D. M. Keirsey and Joseph S. B. Mitchell" +, title = "Planning Strategic Paths Through Variable Terrain Data" +, booktitle = "Proc. SPIE Applications of Artificial Intelligence" +, volume = 485 +, year = 1984 +, pages = "172--179" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{kmpp-mppav-84 -, author = "D. M. Keirsey and Joseph S. B. Mitchell and D. W. Payton and E. P. Preyss" -, title = "Multilevel Path Planning for Autonomous Vehicles" -, booktitle = "Proc. SPIE Applications of Artificial Intelligence" -, volume = 485 -, year = 1984 -, pages = "133--137" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "D. M. Keirsey and Joseph S. B. Mitchell and D. W. Payton and E. P. Preyss" +, title = "Multilevel Path Planning for Autonomous Vehicles" +, booktitle = "Proc. SPIE Applications of Artificial Intelligence" +, volume = 485 +, year = 1984 +, pages = "133--137" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @article{k-mcp-93 -, author = "T. Keleti" -, title = "The Mountain Climbers' Problem" -, journal = "Proc. Amer. Math. Soc." -, volume = 117 -, number = 1 -, year = 1993 -, pages = "89--97" +, author = "T. Keleti" +, title = "The Mountain Climbers' Problem" +, journal = "Proc. Amer. Math. Soc." +, volume = 117 +, number = 1 +, year = 1993 +, pages = "89--97" } @article{k-facp-85 -, author = "W. Keller-Gehrig" -, title = "Fast algorithms for the characteristic polynomial" -, journal = "Theoret. Comput. Sci." -, volume = 36 -, year = 1985 -, pages = "309--317" -, update = "97.11 bibrelex" +, author = "W. Keller-Gehrig" +, title = "Fast algorithms for the characteristic polynomial" +, journal = "Theoret. Comput. Sci." +, volume = 36 +, year = 1985 +, pages = "309--317" +, update = "97.11 bibrelex" } @book{kn-lts-63 -, author = "J. L. Kelley and I. Namioka" -, title = "Linear Topological Spaces" -, publisher = "Van Nostrand" -, address = "Princeton, NJ" -, year = 1963 -, update = "97.11 bibrelex" +, author = "J. L. Kelley and I. Namioka" +, title = "Linear Topological Spaces" +, publisher = "Van Nostrand" +, address = "Princeton, NJ" +, year = 1963 +, update = "97.11 bibrelex" } @book{kn-lts-76 -, author = "J. L. Kelley and I. Namioka" -, title = "Linear Topological Spaces" -, publisher = "Springer-Verlag" -, year = 1976 -, update = "98.07 bibrelex" +, author = "J. L. Kelley and I. Namioka" +, title = "Linear Topological Spaces" +, publisher = "Springer-Verlag" +, year = 1976 +, update = "98.07 bibrelex" } @article{k-fpos-87 -, author = "D. Kelly" -, title = "Fundamentals of Planar Ordered Sets" -, journal = "Discrete Math." -, volume = 63 -, year = 1987 -, pages = "197--216" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. Kelly" +, title = "Fundamentals of Planar Ordered Sets" +, journal = "Discrete Math." +, volume = 63 +, year = 1987 +, pages = "197--216" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{k-3ipos-77 -, author = "D. Kelly" -, title = "The 3-irreducible partially ordred sets" -, journal = "Canad. J. Math." -, volume = 24 -, number = 2 -, year = 1977 -, pages = "367--383" -, update = "98.11 bibrelex" +, author = "D. Kelly" +, title = "The 3-irreducible partially ordred sets" +, journal = "Canad. J. Math." +, volume = 24 +, number = 2 +, year = 1977 +, pages = "367--383" +, update = "98.11 bibrelex" } @article{kr-pl-75 -, author = "D. Kelly and I. Rival" -, title = "Planar Lattices" -, journal = "Canad. J. Math." -, volume = 27 -, number = 3 -, year = 1975 -, pages = "636--665" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. Kelly and I. Rival" +, title = "Planar Lattices" +, journal = "Canad. J. Math." +, volume = 27 +, number = 3 +, year = 1975 +, pages = "636--665" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{k-srrlp-81 -, author = "D. G. Kelly" -, title = "Some results on random linear programs" -, journal = "Methods of Operations Research" -, volume = 40 -, year = 1981 -, pages = "351--355" -, update = "97.03 gaertner+salinger" +, author = "D. G. Kelly" +, title = "Some results on random linear programs" +, journal = "Methods of Operations Research" +, volume = 40 +, year = 1981 +, pages = "351--355" +, update = "97.03 gaertner+salinger" } @article{km-noldn-58 -, author = "L. Kelly and W. Moser" -, title = "On the number of ordinary lines determined by $n$ points" -, journal = "Canad. J. Math." -, volume = 10 -, year = 1958 -, pages = "210--219" -, update = "98.03 devillers" +, author = "L. Kelly and W. Moser" +, title = "On the number of ordinary lines determined by $n$ points" +, journal = "Canad. J. Math." +, volume = 10 +, year = 1958 +, pages = "210--219" +, update = "98.03 devillers" } @article{k-rsgpj-86 -, author = "L. M. Kelly" -, title = "A resolution of the {Sylvester}-{Gallai} problem of {J.-P. Serre}" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "101--104" +, author = "L. M. Kelly" +, title = "A resolution of the {Sylvester}-{Gallai} problem of {J.-P. Serre}" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "101--104" } @book{kw-gcsmm-79 -, author = "P. Kelly and M. Weiss" -, title = "Geometry and Convexity: {A} Study in Mathematical Methods" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1979 -, update = "99.11 bibrelex" +, author = "P. Kelly and M. Weiss" +, title = "Geometry and Convexity: {A} Study in Mathematical Methods" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1979 +, update = "99.11 bibrelex" } @Article{k-dfcosubm-09, @@ -87829,4904 +87829,4904 @@ @Article{k-dfcosubm-09 } @book{k-hdsl-1877 -, author = "Alfred Bray Kempe" -, title = "How to Draw a Straight Line; a Lecture on Linkages" -, publisher = "Macmillan \& co." -, year = 1877 -, location = "London" -, update = "02.03 orourke" +, author = "Alfred Bray Kempe" +, title = "How to Draw a Straight Line; a Lecture on Linkages" +, publisher = "Macmillan \& co." +, year = 1877 +, location = "London" +, update = "02.03 orourke" } @article{k-gmdpc-1876 -, author = "Alfred Bray Kempe" -, title = "On a general method of describing plane curves of the nth degree by linkwork" -, journal = "Proc. London Math. Soc." -, volume = 7 -, year = 1876 -, pages = "213--216" -, update = "02.03 orourke" +, author = "Alfred Bray Kempe" +, title = "On a general method of describing plane curves of the nth degree by linkwork" +, journal = "Proc. London Math. Soc." +, volume = 7 +, year = 1876 +, pages = "213--216" +, update = "02.03 orourke" } @book{km-gp-63 -, author = "N. G. Kendall and P. A. P. Moran" -, title = "Geometrical Probability" -, publisher = "Hafner" -, address = "New York, NY" -, year = 1963 +, author = "N. G. Kendall and P. A. P. Moran" +, title = "Geometrical Probability" +, publisher = "Hafner" +, address = "New York, NY" +, year = 1963 } @book{k-eag-77 -, author = "K. Kendig" -, title = "Elementary Algebraic Geometry" -, publisher = "Springer-Verlag" -, year = 1977 -, update = "98.03 bibrelex" +, author = "K. Kendig" +, title = "Elementary Algebraic Geometry" +, publisher = "Springer-Verlag" +, year = 1977 +, update = "98.03 bibrelex" } @article{khh-eeuap-89 -, author = "N. C. Kenkel and W. D. Hoskins and J. A. Hoskins" -, title = "Edge Effects in the Use of Area Polygons to Study Competition" -, journal = "Ecology" -, volume = 70 -, number = 1 -, year = 1989 -, pages = "272--274" -, annote = "Points out that if we take sample of points contained - some region, and calculate the Voronoi polygons, then - to avoid edge effects it is necessary to exclude the - polygons which potentially could be made smaller by - points outside the region. (These are not necessarily - adjacent to the boundary.) Simulation shows that for - 500 points in a square 0.77 of the polygons can be - kept." +, author = "N. C. Kenkel and W. D. Hoskins and J. A. Hoskins" +, title = "Edge Effects in the Use of Area Polygons to Study Competition" +, journal = "Ecology" +, volume = 70 +, number = 1 +, year = 1989 +, pages = "272--274" +, annote = "Points out that if we take sample of points contained + some region, and calculate the Voronoi polygons, then + to avoid edge effects it is necessary to exclude the + polygons which potentially could be made smaller by + points outside the region. (These are not necessarily + adjacent to the boundary.) Simulation shows that for + 500 points in a square 0.77 of the polygons can be + kept." } @inproceedings{kk-htsc-91 -, author = "C. Kenyon and R. Kenyon" -, title = "How to take short cuts" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "250--255" -, cites = "j-rstsp-90, ZZZ" -, update = "97.11 bibrelex" +, author = "C. Kenyon and R. Kenyon" +, title = "How to take short cuts" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "250--255" +, cites = "j-rstsp-90, ZZZ" +, update = "97.11 bibrelex" } @article{kk-htsc-92 -, author = "C. Kenyon and R. Kenyon" -, title = "How To Take Short Cuts" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "251--264" -, update = "99.07 smid" +, author = "C. Kenyon and R. Kenyon" +, title = "How To Take Short Cuts" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "251--264" +, update = "99.07 smid" } @inproceedings{kk-tpr-92 -, author = "C. Kenyon and R. Kenyon" -, title = "Tiling a polygon with rectangles" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "610--619" +, author = "C. Kenyon and R. Kenyon" +, title = "Tiling a polygon with rectangles" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "610--619" } @techreport{kt-rduf-?? -, author = "C. Kenyon and W. P. Thurston" -, title = "Rotation distance using flows" -, type = "Manuscript" -, institution = "??" -, year = "??" -, update = "97.11 bibrelex" +, author = "C. Kenyon and W. P. Thurston" +, title = "Rotation distance using flows" +, type = "Manuscript" +, institution = "??" +, year = "??" +, update = "97.11 bibrelex" } @inproceedings{kv-mqshl-88 -, author = "C. M. Kenyon and J. S. Vitter" -, title = "Maximum queue size and hashing with lazy deletion" -, booktitle = "Proceedings of the 20th Annual Symposium on the Interface of Computing Science and Statistics" -, site = "Reston, VA" -, year = 1988 -, pages = "743--748" -, precedes = "kv-mqshl-91" -, update = "94.09 vitter" +, author = "C. M. Kenyon and J. S. Vitter" +, title = "Maximum queue size and hashing with lazy deletion" +, booktitle = "Proceedings of the 20th Annual Symposium on the Interface of Computing Science and Statistics" +, site = "Reston, VA" +, year = 1988 +, pages = "743--748" +, precedes = "kv-mqshl-91" +, update = "94.09 vitter" } @article{kv-mqshl-91 -, author = "C. M. Kenyon and J. S. Vitter" -, title = "Maximum queue size and hashing with lazy deletion" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "597--619" -, succeeds = "kv-mqshl-88" -, update = "94.09 vitter" +, author = "C. M. Kenyon and J. S. Vitter" +, title = "Maximum queue size and hashing with lazy deletion" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "597--619" +, succeeds = "kv-mqshl-88" +, update = "94.09 vitter" } @inproceedings{kv-gmams-89 -, author = "C. M. Kenyon-Mathieu and J. S. Vitter" -, title = "General methods for the analysis of the maximum size of dynamic data structures" -, booktitle = "Proc. 16th Internat. Colloq. Automata Lang. Program." -, nickname = "ICALP '89" -, series = "Lecture Notes Comput. Sci." -, volume = 372 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "473--487" -, precedes = "kv-gmams-91" -, update = "94.09 vitter" +, author = "C. M. Kenyon-Mathieu and J. S. Vitter" +, title = "General methods for the analysis of the maximum size of dynamic data structures" +, booktitle = "Proc. 16th Internat. Colloq. Automata Lang. Program." +, nickname = "ICALP '89" +, series = "Lecture Notes Comput. Sci." +, volume = 372 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "473--487" +, precedes = "kv-gmams-91" +, update = "94.09 vitter" } @article{kv-gmams-91 -, author = "C. M. Kenyon-Mathieu and J. S. Vitter" -, title = "General methods for the analysis of the maximum size of dynamic data structures" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "807--823" -, succeeds = "kv-gmams-89" -, update = "94.09 vitter" +, author = "C. M. Kenyon-Mathieu and J. S. Vitter" +, title = "General methods for the analysis of the maximum size of dynamic data structures" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "807--823" +, succeeds = "kv-gmams-89" +, update = "94.09 vitter" } @article{k-acstc-75 -, author = "E. Keppel" -, title = "Approximating complex surfaces by triangulation of contour lines" -, journal = "IBM J. Res. Develop." -, volume = 19 -, year = 1975 -, pages = "2--11" -, update = "98.03 bibrelex" +, author = "E. Keppel" +, title = "Approximating complex surfaces by triangulation of contour lines" +, journal = "IBM J. Res. Develop." +, volume = 19 +, year = 1975 +, pages = "2--11" +, update = "98.03 bibrelex" } @article{kw-2dfpi-90 -, author = "J. P. Kermode and D. Weaire" -, title = "2{D}-Froth --- {A} Program for the Investigation of 2-Dimensional Froths" -, journal = "Computer Physics Communications" -, volume = 60 -, number = 1 -, year = 1990 -, pages = "75--109" -, update = "94.09 lambert" -, annote = "Basic circumcircle algorithm for DT and get VD from - that." +, author = "J. P. Kermode and D. Weaire" +, title = "2{D}-Froth --- {A} Program for the Investigation of 2-Dimensional Froths" +, journal = "Computer Physics Communications" +, volume = 60 +, number = 1 +, year = 1990 +, pages = "75--109" +, update = "94.09 lambert" +, annote = "Basic circumcircle algorithm for DT and get VD from + that." } @article{kw-pacls-90 -, author = "W. Kern and A. Wanka" -, title = "On a problem about covering lines by squares" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "77--82" +, author = "W. Kern and A. Wanka" +, title = "On a problem about covering lines by squares" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "77--82" } @article{kl-ehppg-70 -, author = "B. W. Kernighan and S. Lin" -, title = "An efficient heuristic procedure for partitioning graphs" -, journal = "Bell Syst. Tech. J." -, volume = 49 -, number = 2 -, year = 1970 -, pages = "291--307" -, update = "98.03 bibrelex" +, author = "B. W. Kernighan and S. Lin" +, title = "An efficient heuristic procedure for partitioning graphs" +, journal = "Bell Syst. Tech. J." +, volume = 49 +, number = 2 +, year = 1970 +, pages = "291--307" +, update = "98.03 bibrelex" } @techreport{ke-loqt-79 -, author = "M. L. Kersten and P. van {Emde Boas}" -, title = "Local optimizations of quad trees" -, type = "Report" -, number = "IR-51" -, institution = "Univ. Amsterdam" -, address = "Amsterdam, Netherlands" -, year = 1979 -, update = "93.09 rote" +, author = "M. L. Kersten and P. van {Emde Boas}" +, title = "Local optimizations of quad trees" +, type = "Report" +, number = "IR-51" +, institution = "Univ. Amsterdam" +, address = "Amsterdam, Netherlands" +, year = 1979 +, update = "93.09 rote" } @article{ks-rgrf-81 -, author = "J. Ketonen and R. Solovay" -, title = "Rapidly growing {R}amsey functions" -, journal = "Annals of Math." -, volume = 113 -, year = 1981 -, pages = "267--314" -, update = "95.09 agarwal" +, author = "J. Ketonen and R. Solovay" +, title = "Rapidly growing {R}amsey functions" +, journal = "Annals of Math." +, volume = 113 +, year = 1981 +, pages = "267--314" +, update = "95.09 agarwal" } @inproceedings{k-cebpv-00 -, author = "Lutz Kettner" -, title = "Contour-Edge Based Polyhedron Visualization" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "77--80" -, update = "00.03 bibrelex" +, author = "Lutz Kettner" +, title = "Contour-Edge Based Polyhedron Visualization" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "77--80" +, update = "00.03 bibrelex" } @inproceedings{k-ddsps-98 -, author = "L. Kettner" -, title = "Designing a data structure for polyhedral surfaces" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "146--154" -, update = "99.03 devillers" +, author = "L. Kettner" +, title = "Designing a data structure for polyhedral surfaces" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "146--154" +, update = "99.03 devillers" } @article{k-ugpdd-99 -, author = "L. Kettner" -, title = "Using generic programming for designing a data structure for polyhedral surfaces" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "65--90" -, update = "00.03 smid" +, author = "L. Kettner" +, title = "Using generic programming for designing a data structure for polyhedral surfaces" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "65--90" +, update = "00.03 smid" } @inproceedings{kmsst-bdptp-01 -, author = "Lutz Kettner and Andrea Mantler and Jack Snoeyink and Bettina Speckmann and Fumihiko Takeuchi" -, title = "Bounded-Degree Pseudo-Triangulations of Points" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "19--22" -, update = "01.04 icking" +, author = "Lutz Kettner and Andrea Mantler and Jack Snoeyink and Bettina Speckmann and Fumihiko Takeuchi" +, title = "Bounded-Degree Pseudo-Triangulations of Points" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "19--22" +, update = "01.04 icking" } @inproceedings{kkm-sabrg-97 -, author = "J. Keyser and S. Krishnan and D. Manocha" -, title = "Efficient and Accurate {B}-rep Generation of Low Degree Sculptured Solids using Exact Arithmetic" -, booktitle = "Proceedings of ACM Solid Modeling" -, year = 1997 -, note = "To appear" -, update = "98.03 agarwal" +, author = "J. Keyser and S. Krishnan and D. Manocha" +, title = "Efficient and Accurate {B}-rep Generation of Low Degree Sculptured Solids using Exact Arithmetic" +, booktitle = "Proceedings of ACM Solid Modeling" +, year = 1997 +, note = "To appear" +, update = "98.03 agarwal" } @techreport{kkm-ebrgl-96 -, author = "J. Keyser and S. Krishnan and D. Manocha" -, title = "Efficient {B}-rep generation of low degree sculptured solids using exact arithmetic" -, type = "Technical {Report}" -, number = 40 -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, year = 1996 -, update = "98.07 bibrelex" +, author = "J. Keyser and S. Krishnan and D. Manocha" +, title = "Efficient {B}-rep generation of low degree sculptured solids using exact arithmetic" +, type = "Technical {Report}" +, number = 40 +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, year = 1996 +, update = "98.07 bibrelex" } @techreport{k-cpvc-90 -, author = "L. Khachiyan" -, title = "Complexity of polytope volume computation" -, type = "Report" -, number = "90-59" -, institution = "DIMACS, Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1990 -, keywords = "approximation, volume, convex" -, precedes = "k-cpvc-93" -, update = "93.09 erickson" +, author = "L. Khachiyan" +, title = "Complexity of polytope volume computation" +, type = "Report" +, number = "90-59" +, institution = "DIMACS, Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1990 +, keywords = "approximation, volume, convex" +, precedes = "k-cpvc-93" +, update = "93.09 erickson" } @incollection{k-cpvc-93 -, author = "L. Khachiyan" -, title = "Complexity of polytope volume computation" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "91--101" -, keywords = "survey paper, approximation, volume, convex polytopes" -, succeeds = "k-cpvc-90" -, update = "93.09 erickson" +, author = "L. Khachiyan" +, title = "Complexity of polytope volume computation" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "91--101" +, keywords = "survey paper, approximation, volume, convex polytopes" +, succeeds = "k-cpvc-90" +, update = "93.09 erickson" } @article{k-ivie-90 -, author = "L. G. Khachiyan" -, title = "An inequality for the volume of inscribed ellipsoids" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "219--222" +, author = "L. G. Khachiyan" +, title = "An inequality for the volume of inscribed ellipsoids" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "219--222" } @article{k-palp-80 -, author = "L. G. Khachiyan" -, title = "Polynomial algorithm in linear programming" -, journal = "U.S.S.R. Comput. Math. and Math. Phys." -, volume = 20 -, year = 1980 -, pages = "53--72" -, update = "95.09 devillers" +, author = "L. G. Khachiyan" +, title = "Polynomial algorithm in linear programming" +, journal = "U.S.S.R. Comput. Math. and Math. Phys." +, volume = 20 +, year = 1980 +, pages = "53--72" +, update = "95.09 devillers" } @techreport{kmy-aalcs-95 -, author = "S. Khanna and R. Motwani and F. F. Yao" -, title = "Approximation algorithms for the largest common subtree problem" -, type = "Technical {Report}" -, number = "STAN-CS-95-1545" -, institution = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, year = 1995 -, update = "98.07 bibrelex" +, author = "S. Khanna and R. Motwani and F. F. Yao" +, title = "Approximation algorithms for the largest common subtree problem" +, type = "Technical {Report}" +, number = "STAN-CS-95-1545" +, institution = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, year = 1995 +, update = "98.07 bibrelex" } @inproceedings{kmp-artp-98 -, author = "Sanjeev Khanna and S. Muthukrishnan and Mike Paterson" -, title = "On Approximating Rectangle Tiling and Packing" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "384--393" -, update = "99.07 bibrelex, 98.07 mitchell" +, author = "Sanjeev Khanna and S. Muthukrishnan and Mike Paterson" +, title = "On Approximating Rectangle Tiling and Packing" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "384--393" +, update = "99.07 bibrelex, 98.07 mitchell" } @article{k-rtoam-85 -, author = "O. Khatib" -, title = "Real-time obstacle avoidance for manipulators and mobile robots" -, journal = "Internat. J. Robot. Res." -, volume = 5 -, year = 1985 -, pages = "90--98" -, update = "95.05 agarwal" +, author = "O. Khatib" +, title = "Real-time obstacle avoidance for manipulators and mobile robots" +, journal = "Internat. J. Robot. Res." +, volume = 5 +, year = 1985 +, pages = "90--98" +, update = "95.05 agarwal" } @book{k-f-91 -, author = "A. G. Khovanski\u{\i}" -, title = "Fewnomials" -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1991 -, update = "98.03 agarwal" +, author = "A. G. Khovanski\u{\i}" +, title = "Fewnomials" +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1991 +, update = "98.03 agarwal" } @inproceedings{km-srsac-91 -, author = "S. Khuller and Y. Matias" -, title = "A simple randomized sieve algorithm for the closest-pair problem" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "130--134" -, precedes = "km-srsac-95" -, cites = "b-mdc-80, b-lbact-83, bs-dcms-76, c-faann-83, clr-ia-90, fks-sstwc-84, hns-psscp-88, m-iaca-89, ps-cgi-85, r-pa-76, sh-cpp-75, v-oaann-89, ZZZ" -, update = "98.07 bibrelex, 95.09 smid" +, author = "S. Khuller and Y. Matias" +, title = "A simple randomized sieve algorithm for the closest-pair problem" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "130--134" +, precedes = "km-srsac-95" +, cites = "b-mdc-80, b-lbact-83, bs-dcms-76, c-faann-83, clr-ia-90, fks-sstwc-84, hns-psscp-88, m-iaca-89, ps-cgi-85, r-pa-76, sh-cpp-75, v-oaann-89, ZZZ" +, update = "98.07 bibrelex, 95.09 smid" } @article{km-srsac-95 -, author = "S. Khuller and Y. Matias" -, title = "A simple randomized sieve algorithm for the closest-pair problem" -, journal = "Inform. Comput." -, volume = 118 -, year = 1995 -, pages = "34--37" -, succeeds = "km-srsac-91" -, update = "95.09 smid" +, author = "S. Khuller and Y. Matias" +, title = "A simple randomized sieve algorithm for the closest-pair problem" +, journal = "Inform. Comput." +, volume = 118 +, year = 1995 +, pages = "34--37" +, succeeds = "km-srsac-91" +, update = "95.09 smid" } @article{km-tcp-90 -, author = "S. Khuller and Joseph S. B. Mitchell" -, title = "On a triangle counting problem" -, journal = "Inform. Process. Lett." -, volume = 33 -, number = 6 -, year = 1990 -, pages = "319--321" -, keywords = "range query, counting" -, update = "98.03 mitchell" +, author = "S. Khuller and Joseph S. B. Mitchell" +, title = "On a triangle counting problem" +, journal = "Inform. Process. Lett." +, volume = 33 +, number = 6 +, year = 1990 +, pages = "319--321" +, keywords = "range query, counting" +, update = "98.03 mitchell" } @article{kry-ldsts-96 -, author = "S. Khuller and B. Raghavachari and N. Young" -, title = "Low-degree spanning trees of small weight" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "355--368" -, update = "96.05 smid" +, author = "S. Khuller and B. Raghavachari and N. Young" +, title = "Low-degree spanning trees of small weight" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "355--368" +, update = "96.05 smid" } @inproceedings{ks-ckcp-96 -, author = "S. Khuller and Y. J. Sussmann" -, title = "The capacitated $k$-center problem" -, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "152--166" -, update = "98.07 agarwal" +, author = "S. Khuller and Y. J. Sussmann" +, title = "The capacitated $k$-center problem" +, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "152--166" +, update = "98.07 agarwal" } @article{k-rf23d-66 -, author = "T. Kiang" -, title = "Random fragmentation in $2$ and $3$ dimensions" -, journal = "Z. Astrophys." -, volume = 64 -, year = 1966 -, pages = "433--439" +, author = "T. Kiang" +, title = "Random fragmentation in $2$ and $3$ dimensions" +, journal = "Z. Astrophys." +, volume = 64 +, year = 1966 +, pages = "433--439" } @inproceedings{k-smsm-55 -, author = "J. Kiefer" -, title = "Sequential minimax search for a maximum" -, booktitle = "Proc. Amer. Math. Soc." -, volume = 4 -, year = 1955 -, pages = "502--506" -, update = "98.07 bibrelex" +, author = "J. Kiefer" +, title = "Sequential minimax search for a maximum" +, booktitle = "Proc. Amer. Math. Soc." +, volume = 4 +, year = 1955 +, pages = "502--506" +, update = "98.07 bibrelex" } @article{kt-eprc-81 -, author = "H. A. Kierstead and W. T. Trotter" -, title = "An extremal problem in recursive combinatorics" -, journal = "Congr. Numer." -, volume = 33 -, year = 1981 -, pages = "143--153" -, update = "98.07 bibrelex" +, author = "H. A. Kierstead and W. T. Trotter" +, title = "An extremal problem in recursive combinatorics" +, journal = "Congr. Numer." +, volume = 33 +, year = 1981 +, pages = "143--153" +, update = "98.07 bibrelex" } @article{k-dcscp-82 -, author = "C. Kim" -, title = "Digital convexity, straightness, and convex polygons" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-4" -, year = 1982 -, pages = "618--626" -, update = "98.07 bibrelex" +, author = "C. Kim" +, title = "Digital convexity, straightness, and convex polygons" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-4" +, year = 1982 +, pages = "618--626" +, update = "98.07 bibrelex" } @techreport{k-ltcha-80 -, author = "C. E. Kim" -, title = "A linear time convex hull algorithm for simple polygons" -, type = "Report" -, number = "TR-956" -, institution = "Univ. Maryland, Dept. Comput. Sci." -, address = "Baltimore, MD" -, year = 1980 +, author = "C. E. Kim" +, title = "A linear time convex hull algorithm for simple polygons" +, type = "Report" +, number = "TR-956" +, institution = "Univ. Maryland, Dept. Comput. Sci." +, address = "Baltimore, MD" +, year = 1980 } @article{ka-dd-84 -, author = "C. E. Kim and T. Anderson" -, title = "Digital disks" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-6" -, number = 5 -, year = 1984 -, pages = "639--645" -, succeeds = "ka-dddcm-84" +, author = "C. E. Kim and T. Anderson" +, title = "Digital disks" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-6" +, number = 5 +, year = 1984 +, pages = "639--645" +, succeeds = "ka-dddcm-84" } @inproceedings{ka-dddcm-84 -, author = "C. E. Kim and T. Anderson" -, title = "Digital disks and a digital compactness measure" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "117--124" -, precedes = "ka-dd-84" +, author = "C. E. Kim and T. Anderson" +, title = "Digital disks and a digital compactness measure" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "117--124" +, precedes = "ka-dd-84" } @article{kr-dslcd-82 -, author = "C. E. Kim and A. Rosenfeld" -, title = "Digital straight lines and convexity of digital regions" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-4" -, year = 1982 -, pages = "149--153" -, succeeds = "kr-dsc-81" +, author = "C. E. Kim and A. Rosenfeld" +, title = "Digital straight lines and convexity of digital regions" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-4" +, year = 1982 +, pages = "149--153" +, succeeds = "kr-dsc-81" } @inproceedings{kr-dsc-81 -, author = "C. E. Kim and A. Rosenfeld" -, title = "Digital straightness and convexity" -, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." -, year = 1981 -, pages = "80--89" -, precedes = "kr-dslcd-82" +, author = "C. E. Kim and A. Rosenfeld" +, title = "Digital straightness and convexity" +, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." +, year = 1981 +, pages = "80--89" +, precedes = "kr-dslcd-82" } @inproceedings{kr-cdr-80 -, author = "C. E. Kim and A. Rosenfeld" -, title = "On the convexity of digital regions" -, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." -, year = 1980 -, pages = "1010--1015" +, author = "C. E. Kim and A. Rosenfeld" +, title = "On the convexity of digital regions" +, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." +, year = 1980 +, pages = "1010--1015" } @inproceedings{kgs-fcdmm-97 -, author = "D. Kim and L. J. Guibas and S. Shin" -, title = "Fast collision detection among multiple moving spheres" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "373--375" -, cites = "b-cscnp-90, bgh-dsmd-97, fls-flp-63, glm-othsr-96, h-rarb-88, ho-smhsr-94, h-apstc-96, l-mmbc-66, m-pbpsm-96, mw-cdrca-88, ob-dtdos-79, r-pstmc-83, r-fhsdb-87, s-parud-90, st-smops-92, t-icdmg-90, hafg-ecpmm-95, wg-udbvh-92, wl-arrcd-85, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "D. Kim and L. J. Guibas and S. Shin" +, title = "Fast collision detection among multiple moving spheres" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "373--375" +, cites = "b-cscnp-90, bgh-dsmd-97, fls-flp-63, glm-othsr-96, h-rarb-88, ho-smhsr-94, h-apstc-96, l-mmbc-66, m-pbpsm-96, mw-cdrca-88, ob-dtdos-79, r-pstmc-83, r-fhsdb-87, s-parud-90, st-smops-92, t-icdmg-90, hafg-ecpmm-95, wg-udbvh-92, wl-arrcd-85, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @article{khp-rvdsp-95 -, author = "D. S. Kim and I. K. Hwang and B. J. Park" -, title = "Representing the {Voronoi} Diagram of a Simple Polygon Using Rational Quadratic Bezi\'er Curves" -, journal = "Comput. Aided Design" -, volume = 27 -, number = 8 -, month = aug -, year = 1995 -, pages = "605--614" -, update = "97.11 held" +, author = "D. S. Kim and I. K. Hwang and B. J. Park" +, title = "Representing the {Voronoi} Diagram of a Simple Polygon Using Rational Quadratic Bezi\'er Curves" +, journal = "Comput. Aided Design" +, volume = 27 +, number = 8 +, month = aug +, year = 1995 +, pages = "605--614" +, update = "97.11 held" } @article{ksc-easdv-95 -, author = "S. H. Kim and S. Y. Shin and K. Y. Chwa" -, title = "Efficient algorithms for solving diagonal visibility problems in a simple polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "433--458" -, keywords = "visibility, polygon, weak visibility, guard diagonal" -, update = "96.09 devillers" +, author = "S. H. Kim and S. Y. Shin and K. Y. Chwa" +, title = "Efficient algorithms for solving diagonal visibility problems in a simple polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "433--458" +, keywords = "visibility, polygon, weak visibility, guard diagonal" +, update = "96.09 devillers" } @techreport{k-pafmc-89 -, author = "S. K. Kim" -, title = "A parallel algorithm for finding a maximum clique of a set of circular-arcs of a circle" -, institution = "Univ. Washington" -, year = 1989 -, update = "98.07 bibrelex" +, author = "S. K. Kim" +, title = "A parallel algorithm for finding a maximum clique of a set of circular-arcs of a circle" +, institution = "Univ. Washington" +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{k-saoud-95 -, author = "Sung Kwon Kim" -, title = "Simple Algorithms for Orthogonal Upward Drawings of Binary and Ternary Trees" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "115--120" -, update = "95.09 jones" +, author = "Sung Kwon Kim" +, title = "Simple Algorithms for Orthogonal Upward Drawings of Binary and Ternary Trees" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "115--120" +, update = "95.09 jones" } @techreport{ks-cobbt-99 -, author = "S. K. Kim and C. S. Shin" -, title = "Computing the optimal bridge between two polygons" -, type = "Research Report {TCSC-99-14}" -, institution = "HKUST" -, year = 1999 -, precedes = "ks-cobbt-01" -, update = "02.03 cheong" +, author = "S. K. Kim and C. S. Shin" +, title = "Computing the optimal bridge between two polygons" +, type = "Research Report {TCSC-99-14}" +, institution = "HKUST" +, year = 1999 +, precedes = "ks-cobbt-01" +, update = "02.03 cheong" } @article{ks-cobbt-01 -, author = "S. K. Kim and C.-S. Shin" -, title = "Computing the optimal bridge between two polygons" -, journal = "Theory of Computing Systems" -, volume = 34 -, year = 2001 -, pages = "337--354" -, succeeds = "ks-cobbt-99" -, update = "02.03 cheong" +, author = "S. K. Kim and C.-S. Shin" +, title = "Computing the optimal bridge between two polygons" +, journal = "Theory of Computing Systems" +, volume = 34 +, year = 2001 +, pages = "337--354" +, succeeds = "ks-cobbt-99" +, update = "02.03 cheong" } @article{ksy-lrmsl-01 -, author = "S. K. Kim and C.-S. Shin and T.-C. Yang" -, title = "Labeling a rectilinear map with sliding labels" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "167--179" -, update = "01.07 smid" +, author = "S. K. Kim and C.-S. Shin and T.-C. Yang" +, title = "Labeling a rectilinear map with sliding labels" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "167--179" +, update = "01.07 smid" } @article{ksy-ptdcp-00 -, author = "S. K. Kim and C.-S. Shin and T.-C. Yang" -, title = "Placing two disks in a convex polygon" -, journal = "Inform. Process. Lett." -, volume = 73 -, year = 2000 -, pages = "33--39" -, update = "01.07 smid" +, author = "S. K. Kim and C.-S. Shin and T.-C. Yang" +, title = "Placing two disks in a convex polygon" +, journal = "Inform. Process. Lett." +, volume = 73 +, year = 2000 +, pages = "33--39" +, update = "01.07 smid" } @article{ka-rpcsm-86 -, author = "Y. Kim and J. Aggarwal" -, title = "Rectangular parallelepiped coding for solid modeling" -, journal = "Internat. J. Robot. Autom." -, volume = "??" -, year = 1986 -, pages = "77--85" -, update = "98.11 bibrelex" +, author = "Y. Kim and J. Aggarwal" +, title = "Rectangular parallelepiped coding for solid modeling" +, journal = "Internat. J. Robot. Autom." +, volume = "??" +, year = 1986 +, pages = "77--85" +, update = "98.11 bibrelex" } @inproceedings{klrz-rvcdg-95 -, author = "D. Kimelman and B. Leban and T. Roth and D. Zernik" -, title = "Reduction of Visual Complexity in Dynamic Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "218--225" -, keywords = "graph drawing, software visualization, system" -, update = "95.01 tamassia" +, author = "D. Kimelman and B. Leban and T. Roth and D. Zernik" +, title = "Reduction of Visual Complexity in Dynamic Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "218--225" +, keywords = "graph drawing, software visualization, system" +, update = "95.01 tamassia" } @inproceedings{ks-pviac-92 -, author = "D. Kimelman and G. Sangudi" -, title = "Program Visualization by Integration of Advanced Compiler Technology with Configurable Views" -, editor = "J. J. Dongarra and B. Tourancheau" -, booktitle = "Proc. CNRS-NSF Collaboration Workshop on Environments and Tools for Parallel Scientific Computing, Saint Hilaire du Touvert, France" -, publisher = "Elsevier Science" -, year = "September, 1992" -, pages = "73--84" -, keywords = "graph drawing" -, update = "96.09 tamassia, 96.04 garg" +, author = "D. Kimelman and G. Sangudi" +, title = "Program Visualization by Integration of Advanced Compiler Technology with Configurable Views" +, editor = "J. J. Dongarra and B. Tourancheau" +, booktitle = "Proc. CNRS-NSF Collaboration Workshop on Environments and Tools for Parallel Scientific Computing, Saint Hilaire du Touvert, France" +, publisher = "Elsevier Science" +, year = "September, 1992" +, pages = "73--84" +, keywords = "graph drawing" +, update = "96.09 tamassia, 96.04 garg" } @techreport{kab-fspgs-93 -, author = "R. Kimmel and A. Amir and A. M. Bruckstein" -, title = "Finding shortest paths on graph surfaces" -, number = "CIS 9301" -, institution = "Technion IIT" -, address = "Haifa, Israel" -, month = jan -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "R. Kimmel and A. Amir and A. M. Bruckstein" +, title = "Finding shortest paths on graph surfaces" +, number = "CIS 9301" +, institution = "Technion IIT" +, address = "Haifa, Israel" +, month = jan +, year = 1993 +, update = "93.09 milone+mitchell" } @techreport{kb-sols-92 -, author = "R. Kimmel and A. M. Bruckstein" -, title = "Shape offsets via level sets" -, institution = "Technion IIT" -, address = "Haifa, Israel" -, month = jul -, year = 1992 -, update = "93.09 milone+mitchell" +, author = "R. Kimmel and A. M. Bruckstein" +, title = "Shape offsets via level sets" +, institution = "Technion IIT" +, address = "Haifa, Israel" +, month = jul +, year = 1992 +, update = "93.09 milone+mitchell" } @article{kb-sols-93 -, author = "R. Kimmel and A. M. Bruckstein" -, title = "Shape Offsets via Level Sets" -, journal = "Comput. Aided Design" -, volume = 25 -, number = 3 -, month = mar -, year = 1993 -, pages = "154--162" -, update = "93.09 held" +, author = "R. Kimmel and A. M. Bruckstein" +, title = "Shape Offsets via Level Sets" +, journal = "Comput. Aided Design" +, volume = 25 +, number = 3 +, month = mar +, year = 1993 +, pages = "154--162" +, update = "93.09 held" } @techreport{kb-spdmw-93 -, author = "R. Kimmel and A. M. Bruckstein" -, title = "Sub-pixel distance maps and weighted distance transforms" -, number = "CIS 9314" -, institution = "Technion IIT" -, address = "Haifa, Israel" -, month = apr -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "R. Kimmel and A. M. Bruckstein" +, title = "Sub-pixel distance maps and weighted distance transforms" +, number = "CIS 9314" +, institution = "Technion IIT" +, address = "Haifa, Israel" +, month = apr +, year = 1993 +, update = "93.09 milone+mitchell" } @techreport{ks-stdct-93 -, author = "R. Kimmel and G. Sapiro" -, title = "Shortening three dimensional curves via two dimensional flows" -, number = "CIS 9315" -, institution = "Technion IIT" -, address = "Haifa, Israel" -, month = apr -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "R. Kimmel and G. Sapiro" +, title = "Shortening three dimensional curves via two dimensional flows" +, number = "CIS 9315" +, institution = "Technion IIT" +, address = "Haifa, Israel" +, month = apr +, year = 1993 +, update = "93.09 milone+mitchell" } @inproceedings{ks-fvdts-00 -, author = "R. Kimmel and J. A. Sethian" -, title = "Fast {Voronoi} Diagrams on Triangulated Surfaces" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "1--4" -, update = "00.03 bibrelex" +, author = "R. Kimmel and J. A. Sethian" +, title = "Fast {Voronoi} Diagrams on Triangulated Surfaces" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "1--4" +, update = "00.03 bibrelex" } @article{k-opcbf-95 -, author = "J. Kincses" -, title = "On polytopes cut by flats" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "287--294" -, update = "96.05 pascucci" +, author = "J. Kincses" +, title = "On polytopes cut by flats" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "287--294" +, update = "96.05 pascucci" } @techreport{ksr-sawrp1-91 -, author = "M. Kindl and M. Shing and N. Rowe" -, title = "A stochastic approach to the weighted-region problem, {I}: The design of the path annealing algorithm" -, institution = "Computer Science, U.S. Naval Postgraduate School" -, address = "Monterey, CA" -, year = 1991 +, author = "M. Kindl and M. Shing and N. Rowe" +, title = "A stochastic approach to the weighted-region problem, {I}: The design of the path annealing algorithm" +, institution = "Computer Science, U.S. Naval Postgraduate School" +, address = "Monterey, CA" +, year = 1991 } @techreport{ksr-sawrp2-91 -, author = "M. Kindl and M. Shing and N. Rowe" -, title = "A stochastic approach to the weighted-region problem, {II}: Performance enhancement techniques and experimental results" -, institution = "Computer Science, U.S. Naval Postgraduate School" -, address = "Monterey, CA" -, year = 1991 +, author = "M. Kindl and M. Shing and N. Rowe" +, title = "A stochastic approach to the weighted-region problem, {II}: Performance enhancement techniques and experimental results" +, institution = "Computer Science, U.S. Naval Postgraduate School" +, address = "Monterey, CA" +, year = 1991 } @inproceedings{krt-fdmfa-92 -, author = "V. King and S. Rao and R. E. Tarjan" -, title = "A faster deterministic maximum flow algorithm" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "157--164" -, update = "97.11 bibrelex" +, author = "V. King and S. Rao and R. E. Tarjan" +, title = "A faster deterministic maximum flow algorithm" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "157--164" +, update = "97.11 bibrelex" } @book{k-ts-93 -, author = "C. Kinsey" -, title = "Topology of Surfaces" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1993 -, update = "98.07 bibrelex" +, author = "C. Kinsey" +, title = "Topology of Surfaces" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1993 +, update = "98.07 bibrelex" } @inproceedings{k-pldt-97 -, author = "Rob Kirby" -, title = "Problems in Low-Dimensional Topology" -, booktitle = "Geometric Topology: Proceedings of the 1993 Georgia International Topology Conference" -, site = "Conference held on August 2--13, 1993 in Athens, Georgia." -, series = "AMS/IP Studies in Advanced Mathematics" -, volume = "2.2" -, publisher = "American Mathematical Society and International Press" -, year = 1997 -, pages = "35--473" +, author = "Rob Kirby" +, title = "Problems in Low-Dimensional Topology" +, booktitle = "Geometric Topology: Proceedings of the 1993 Georgia International Topology Conference" +, site = "Conference held on August 2--13, 1993 in Athens, Georgia." +, series = "AMS/IP Studies in Advanced Mathematics" +, volume = "2.2" +, publisher = "American Mathematical Society and International Press" +, year = 1997 +, pages = "35--473" , url = "http://www.math.berkeley.edu/~kirby/problems.ps.gz" -, update = "02.03 orourke" +, update = "02.03 orourke" } @incollection{ks-sbtat-77 -, author = "R. C. Kirby and L. C. Siebenmann" -, title = "Some basic theorems about topological manifolds" -, booktitle = "Foundational Essays on Topological Manifolds, Smoothings, and Triangulations" -, series = "Ann. Math. Studies" -, publisher = "Princeton University Press" -, address = "Princeton, NJ" -, year = 1977 -, pages = "79--152" -, update = "97.11 bibrelex" +, author = "R. C. Kirby and L. C. Siebenmann" +, title = "Some basic theorems about topological manifolds" +, booktitle = "Foundational Essays on Topological Manifolds, Smoothings, and Triangulations" +, series = "Ann. Math. Studies" +, publisher = "Princeton University Press" +, address = "Princeton, NJ" +, year = 1977 +, pages = "79--152" +, update = "97.11 bibrelex" } @article{k-ta-03 -, author = "P. Kirchberger" -, title = "{\"U}ber Tschebyschefsche Ann{\"a}herungsmethoden" -, journal = "Math. Ann." -, volume = 57 -, year = 1903 -, pages = "509--540" -, update = "98.03 bibrelex" +, author = "P. Kirchberger" +, title = "{\"U}ber Tschebyschefsche Ann{\"a}herungsmethoden" +, journal = "Math. Ann." +, volume = 57 +, year = 1903 +, pages = "509--540" +, update = "98.03 bibrelex" } @book{k-gg3-92 -, title = "Graphics Gems {III}" -, editor = "David Kirk" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1992 -, update = "98.07 tamassia+vismara" +, title = "Graphics Gems {III}" +, editor = "David Kirk" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1992 +, update = "98.07 tamassia+vismara" } @article{kl-dmraa-70 -, author = "D. Kirk and L. Lim" -, title = "A Dual-Mode Routing Algorithm for an Autonomous Roving Vehicle" -, journal = "IEEE Trans. Aerosp. Electron. Syst." -, volume = 6 -, number = 3 -, year = 1970 -, pages = "290--294" -, comments = "Oldest paper found on shortest paths among obstacles in the plane" -, update = "96.09 devillers, 93.09 milone+mitchell" +, author = "D. Kirk and L. Lim" +, title = "A Dual-Mode Routing Algorithm for an Autonomous Roving Vehicle" +, journal = "IEEE Trans. Aerosp. Electron. Syst." +, volume = 6 +, number = 3 +, year = 1970 +, pages = "290--294" +, comments = "Oldest paper found on shortest paths among obstacles in the plane" +, update = "96.09 devillers, 93.09 milone+mitchell" } @techreport{kkmy-qstam-89 -, author = "D. Kirkpatrick and S. Kosaraju and B. Mishra and C. Yap" -, title = "Quantitative {Steinitz}'s theorems with applications to multifinger grasping" -, type = "Technical {Report}" -, number = 460 -, institution = "New York University" -, address = "New York, NY" -, year = 1989 -, update = "98.07 bibrelex" +, author = "D. Kirkpatrick and S. Kosaraju and B. Mishra and C. Yap" +, title = "Quantitative {Steinitz}'s theorems with applications to multifinger grasping" +, type = "Technical {Report}" +, number = 460 +, institution = "New York University" +, address = "New York, NY" +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{kmy-qstam-90 -, author = "D. Kirkpatrick and B. Mishra and C. K. Yap" -, title = "Quantitative {Steinitz}'s theorems with applications to multifingered grasping" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "341--351" -, precedes = "kmy-qstam-92" +, author = "D. Kirkpatrick and B. Mishra and C. K. Yap" +, title = "Quantitative {Steinitz}'s theorems with applications to multifingered grasping" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "341--351" +, precedes = "kmy-qstam-92" } @article{kmy-qstam-92 -, author = "D. Kirkpatrick and B. Mishra and C.-K. Yap" -, title = "Quantitative {Steinitz}'s theorems with applications to multifingered grasping" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "295--318" -, succeeds = "kmy-qstam-90" +, author = "D. Kirkpatrick and B. Mishra and C.-K. Yap" +, title = "Quantitative {Steinitz}'s theorems with applications to multifingered grasping" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "295--318" +, succeeds = "kmy-qstam-90" } @inproceedings{ks-cctws-95 -, author = "David Kirkpatrick and Jack Snoeyink" -, title = "Computing Common Tangents Without a Separating Line" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "183--193" -, update = "99.07 bibrelex, 98.11 bibrelex, 95.05 mitchell" +, author = "David Kirkpatrick and Jack Snoeyink" +, title = "Computing Common Tangents Without a Separating Line" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "183--193" +, update = "99.07 bibrelex, 98.11 bibrelex, 95.05 mitchell" } @inproceedings{ks-ccssb-93 -, author = "D. Kirkpatrick and J. Snoeyink" -, title = "Computing constrained shortest segments: {Butterfly} wingspans in logarithmic time" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "163--168" -, cites = "bt-cst-91a, bcetsu-csts-91, bet-cwb-91, dk-fdpi-83, e-cedbt-85, ghs-citds-91, ks-tpscv-93, ol-mcp-81, ps-cgi-85, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "D. Kirkpatrick and J. Snoeyink" +, title = "Computing constrained shortest segments: {Butterfly} wingspans in logarithmic time" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "163--168" +, cites = "bt-cst-91a, bcetsu-csts-91, bet-cwb-91, dk-fdpi-83, e-cedbt-85, ghs-citds-91, ks-tpscv-93, ol-mcp-81, ps-cgi-85, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{ks-tpscf-95 -, author = "D. Kirkpatrick and J. Snoeyink" -, title = "Tentative prune-and-search for computing fixed-points with applications to geometric computation" -, journal = "Fundam. Inform." -, volume = 22 -, year = 1995 -, pages = "353--370" -, update = "96.09 smid" +, author = "D. Kirkpatrick and J. Snoeyink" +, title = "Tentative prune-and-search for computing fixed-points with applications to geometric computation" +, journal = "Fundam. Inform." +, volume = 22 +, year = 1995 +, pages = "353--370" +, update = "96.09 smid" } @inproceedings{ks-tpscv-93 -, author = "D. Kirkpatrick and J. Snoeyink" -, title = "Tentative prune-and-search for computing {Voronoi} vertices" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "133--142" -, cites = "bet-cwb-91, c-oaitd-89t, dk-fdpi-83, dk-dsppu-90, e-cedbt-85, em-feptd-85, e-dtdlp-91, ghs-citds-91, km-accvd-91, k-osps-83, ls-pptmc-87, m-spai3-91, mks-avdpt-93, m-ddlpc-91i, ol-mcp-81, ps-cgi-85, y-oavds-87, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "D. Kirkpatrick and J. Snoeyink" +, title = "Tentative prune-and-search for computing {Voronoi} vertices" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "133--142" +, cites = "bet-cwb-91, c-oaitd-89t, dk-fdpi-83, dk-dsppu-90, e-cedbt-85, em-feptd-85, e-dtdlp-91, ghs-citds-91, km-accvd-91, k-osps-83, ls-pptmc-87, m-spai3-91, mks-avdpt-93, m-ddlpc-91i, ol-mcp-81, ps-cgi-85, y-oavds-87, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @inproceedings{kss-kcdsp-00 -, author = "David Kirkpatrick and Jack Snoeyink and Bettina Speckmann" -, title = "Kinetic Collision Detection for Simple Polygons" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "322--330" -, update = "00.11 jones" +, author = "David Kirkpatrick and Jack Snoeyink and Bettina Speckmann" +, title = "Kinetic Collision Detection for Simple Polygons" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "322--330" +, update = "00.11 jones" } @article{kw-dbrow-96 -, author = "D. Kirkpatrick and S. Wismath" -, title = "Determining bar-representability for ordered weighted graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "99--122" -, update = "97.07 devillers" +, author = "D. Kirkpatrick and S. Wismath" +, title = "Determining bar-representability for ordered weighted graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "99--122" +, update = "97.07 devillers" } @article{k-ndot-80 -, author = "D. G. Kirkpatrick" -, title = "A note on {Delaunay} and optimal triangulations" -, journal = "Inform. Process. Lett." -, volume = 10 -, number = 3 -, year = 1980 -, pages = "127--128" -, keywords = "triangulations, Delaunay triangulations, worst-case analysis" -, update = "98.11 bibrelex" +, author = "D. G. Kirkpatrick" +, title = "A note on {Delaunay} and optimal triangulations" +, journal = "Inform. Process. Lett." +, volume = 10 +, number = 3 +, year = 1980 +, pages = "127--128" +, keywords = "triangulations, Delaunay triangulations, worst-case analysis" +, update = "98.11 bibrelex" } @inproceedings{k-ubsir-80 -, author = "D. G. Kirkpatrick" -, title = "An upper bound for sorting integers in restricted ranges" -, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." -, year = 1980 -, update = "97.11 bibrelex" +, author = "D. G. Kirkpatrick" +, title = "An upper bound for sorting integers in restricted ranges" +, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." +, year = 1980 +, update = "97.11 bibrelex" } @inproceedings{k-eccs-79 -, author = "D. G. Kirkpatrick" -, title = "Efficient computation of continuous skeletons" -, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1979 -, pages = "18--27" -, keywords = "design of algorithms, Voronoi diagrams, merging, generalized Voronoi diagrams, minimum spanning trees" +, author = "D. G. Kirkpatrick" +, title = "Efficient computation of continuous skeletons" +, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1979 +, pages = "18--27" +, keywords = "design of algorithms, Voronoi diagrams, merging, generalized Voronoi diagrams, minimum spanning trees" } @inproceedings{k-eops-87 -, author = "D. G. Kirkpatrick" -, title = "Establishing order in planar subdivisions" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "316--321" -, keywords = "data structuring, construction, plane graph representation, subdivisions" -, precedes = "k-eops-88" -, cites = "ahu-daca-74, b-prcv-75, b-lbact-83, dl-ccvsp-79, egs-oplms-86, e-ga-79, f-slrpg-48, grs-kfcg-83, gs-pmgsc-83, ht-ept-74, k-osps-83, k-ss-73, lp-lppsi-77, lec-aptg-67, mp-fitcp-78, ps-dtram-80, ps-cgi-85, t-dfslg-72, tv-otats-86, ZZZ" -, update = "98.03 bibrelex" +, author = "D. G. Kirkpatrick" +, title = "Establishing order in planar subdivisions" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "316--321" +, keywords = "data structuring, construction, plane graph representation, subdivisions" +, precedes = "k-eops-88" +, cites = "ahu-daca-74, b-prcv-75, b-lbact-83, dl-ccvsp-79, egs-oplms-86, e-ga-79, f-slrpg-48, grs-kfcg-83, gs-pmgsc-83, ht-ept-74, k-osps-83, k-ss-73, lp-lppsi-77, lec-aptg-67, mp-fitcp-78, ps-dtram-80, ps-cgi-85, t-dfslg-72, tv-otats-86, ZZZ" +, update = "98.03 bibrelex" } @article{k-eops-88 -, author = "D. G. Kirkpatrick" -, title = "Establishing order in planar subdivisions" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "267--280" -, keywords = "data structuring, construction, plane graph representation, subdivisions" -, succeeds = "k-eops-87" +, author = "D. G. Kirkpatrick" +, title = "Establishing order in planar subdivisions" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "267--280" +, keywords = "data structuring, construction, plane graph representation, subdivisions" +, succeeds = "k-eops-87" } @inproceedings{k-alcmw-89 -, author = "D. G. Kirkpatrick" -, title = "On the absence of local characterizations of minimum weight triangulations" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 16 +, author = "D. G. Kirkpatrick" +, title = "On the absence of local characterizations of minimum weight triangulations" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 16 } @techreport{k-osps-81 -, author = "D. G. Kirkpatrick" -, title = "Optimal Search in Planar Subdivisions" -, type = "Technical {Report}" -, number = "81-13" -, institution = "Dept. Comput. Sci., Univ. British Columbia" -, address = "Vancouver, BC" -, year = 1981 -, update = "97.11 bibrelex" +, author = "D. G. Kirkpatrick" +, title = "Optimal Search in Planar Subdivisions" +, type = "Technical {Report}" +, number = "81-13" +, institution = "Dept. Comput. Sci., Univ. British Columbia" +, address = "Vancouver, BC" +, year = 1981 +, update = "97.11 bibrelex" } @article{k-osps-83 -, author = "D. G. Kirkpatrick" -, title = "Optimal search in planar subdivisions" -, journal = "SIAM J. Comput." -, volume = 12 -, number = 1 -, year = 1983 -, pages = "28--35" -, keywords = "data structuring, searching, subdivisions, plane graph representation, hierarchical representations" -, update = "98.07 bibrelex+tamassia" +, author = "D. G. Kirkpatrick" +, title = "Optimal search in planar subdivisions" +, journal = "SIAM J. Comput." +, volume = 12 +, number = 1 +, year = 1983 +, pages = "28--35" +, keywords = "data structuring, searching, subdivisions, plane graph representation, hierarchical representations" +, update = "98.07 bibrelex+tamassia" } @techreport{kkt-ptots-90t -, author = "D. G. Kirkpatrick and M. M. Klawe and R. E. Tarjan" -, title = "Polygon triangulation in {$O(n \log\log n)$} time with simple data structures" -, type = "Technical {Report}" -, number = "90-17" -, institution = "Dept. Comput. Sci., Univ. British Columbia" -, address = "Vancouver, BC" -, month = jun -, year = 1990 -, precedes = "kkt-ptots-90i" +, author = "D. G. Kirkpatrick and M. M. Klawe and R. E. Tarjan" +, title = "Polygon triangulation in {$O(n \log\log n)$} time with simple data structures" +, type = "Technical {Report}" +, number = "90-17" +, institution = "Dept. Comput. Sci., Univ. British Columbia" +, address = "Vancouver, BC" +, month = jun +, year = 1990 +, precedes = "kkt-ptots-90i" } @inproceedings{kkt-ptots-90i -, author = "D. G. Kirkpatrick and M. M. Klawe and R. E. Tarjan" -, title = "Polygon triangulation in {$O(n \log\log n)$} time with simple data structures" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "34--43" -, succeeds = "kkt-ptots-90t" -, cites = "bt-ladts-86, c-tpca-82, ci-tsc-84, c-ept-90, ctv-flvat-88i, egs-oplms-86, ffr-pscaa-83, fm-tspep-84, fntv-sltjs-88, ghlst-ltavs-87, gjpt-tsp-78, hm-ftsp-83, hmrt-sjslt-86, kk-cgig-81, k-osps-83, l-srvdd-81, ltl-mpsrp-89, tv-otats-88, t-prgc-80, t-cgm-86, t-ocspt-88, t-cm-88, ta-chapi-82, ZZZ" -, update = "97.11 bibrelex" +, author = "D. G. Kirkpatrick and M. M. Klawe and R. E. Tarjan" +, title = "Polygon triangulation in {$O(n \log\log n)$} time with simple data structures" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "34--43" +, succeeds = "kkt-ptots-90t" +, cites = "bt-ladts-86, c-tpca-82, ci-tsc-84, c-ept-90, ctv-flvat-88i, egs-oplms-86, ffr-pscaa-83, fm-tspep-84, fntv-sltjs-88, ghlst-ltavs-87, gjpt-tsp-78, hm-ftsp-83, hmrt-sjslt-86, kk-cgig-81, k-osps-83, l-srvdd-81, ltl-mpsrp-89, tv-otats-88, t-prgc-80, t-cgm-86, t-ocspt-88, t-cm-88, ta-chapi-82, ZZZ" +, update = "97.11 bibrelex" } @incollection{kr-fcm-85 -, author = "D. G. Kirkpatrick and J. D. Radke" -, title = "A framework for computational morphology" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "217--248" -, keywords = "design of algorithms, construction, pattern recognition, shape" +, author = "D. G. Kirkpatrick and J. D. Radke" +, title = "A framework for computational morphology" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "217--248" +, keywords = "design of algorithms, construction, pattern recognition, shape" } @inproceedings{ks-ossaf-85 -, author = "D. G. Kirkpatrick and R. Seidel" -, title = "Output-size sensitive algorithms for finding maximal vectors" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "89--96" -, keywords = "domination, divide-and-conquer, output dependent" -, cites = "ahu-daca-74, b-lbact-83, bs-dclet-78, bkst-anmsv-78, gbt-srtgp-84, ks-upcha-82t, ZZZ" -, update = "97.11 bibrelex" +, author = "D. G. Kirkpatrick and R. Seidel" +, title = "Output-size sensitive algorithms for finding maximal vectors" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "89--96" +, keywords = "domination, divide-and-conquer, output dependent" +, cites = "ahu-daca-74, b-lbact-83, bs-dclet-78, bkst-anmsv-78, gbt-srtgp-84, ks-upcha-82t, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{ks-upcha-82 -, author = "D. G. Kirkpatrick and R. Seidel" -, title = "The Ultimate Planar Convex Hull Algorithm?" -, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." -, site = "Monticello, Illinois" -, year = 1982 -, pages = "35--42" -, precedes = "ks-upcha-86" -, update = "94.05 grigni, 93.09 held" +, author = "D. G. Kirkpatrick and R. Seidel" +, title = "The Ultimate Planar Convex Hull Algorithm?" +, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." +, site = "Monticello, Illinois" +, year = 1982 +, pages = "35--42" +, precedes = "ks-upcha-86" +, update = "94.05 grigni, 93.09 held" } @article{ks-upcha-86 -, author = "D. G. Kirkpatrick and R. Seidel" -, title = "The ultimate planar convex hull algorithm?" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "287--299" -, keywords = "designing algorithms, convex hull, two-dimensional, divide-and-conquer, output-dependent, lower bounds, linear programming" -, succeeds = "ks-upcha-82" -, update = "94.05 grigni" -, annote = "$O(n \log h)$ time" +, author = "D. G. Kirkpatrick and R. Seidel" +, title = "The ultimate planar convex hull algorithm?" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "287--299" +, keywords = "designing algorithms, convex hull, two-dimensional, divide-and-conquer, output-dependent, lower bounds, linear programming" +, succeeds = "ks-upcha-82" +, update = "94.05 grigni" +, annote = "$O(n \log h)$ time" } @techreport{ks-upcha-82t -, author = "D. G. Kirkpatrick and R. Seidel" -, title = "The Ultimate Planar Convex Hull Algorithm" -, type = "Technical {Report}" -, number = "83-577" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = oct -, year = 1982 -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "D. G. Kirkpatrick and R. Seidel" +, title = "The Ultimate Planar Convex Hull Algorithm" +, type = "Technical {Report}" +, number = "83-577" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = oct +, year = 1982 +, update = "98.03 bibrelex, 97.11 bibrelex" } @inproceedings{kw-wvgbr-89 -, author = "D. G. Kirkpatrick and S. K. Wismath" -, title = "Weighted visibility graphs of bars and related flow problems" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "325--334" -, succeeds = "w-cblsg-85" -, update = "93.09 milone+mitchell" +, author = "D. G. Kirkpatrick and S. K. Wismath" +, title = "Weighted visibility graphs of bars and related flow problems" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "325--334" +, succeeds = "w-cblsg-85" +, update = "93.09 milone+mitchell" } @article{kgv-osa-83 -, author = "S. Kirkpatrick and C. D. Gelatt and M. P. Vecchi" -, title = "Optimization by simulated annealing" -, journal = "Science" -, volume = 220 -, year = 1983 -, pages = "671--680" -, update = "97.11 bibrelex" +, author = "S. Kirkpatrick and C. D. Gelatt and M. P. Vecchi" +, title = "Optimization by simulated annealing" +, journal = "Science" +, volume = 220 +, year = 1983 +, pages = "671--680" +, update = "97.11 bibrelex" } @techreport{k-elppp-89 -, author = "L. M. Kirousis" -, title = "Effectively Labeling Planar Projections of Polyhedra" -, type = "Technical {Report}" -, number = "89.08.88" -, institution = "Univ. of Patras" -, address = "Greece" -, year = 1989 -, keywords = "polyhedron, labeling, $2$-dimensional image of a polyhedron" -, update = "93.09 milone+mitchell" +, author = "L. M. Kirousis" +, title = "Effectively Labeling Planar Projections of Polyhedra" +, type = "Technical {Report}" +, number = "89.08.88" +, institution = "Univ. of Patras" +, address = "Greece" +, year = 1989 +, keywords = "polyhedron, labeling, $2$-dimensional image of a polyhedron" +, update = "93.09 milone+mitchell" } @inproceedings{kp-crps-85 -, author = "L. M. Kirousis and C. H. Papadimitriou" -, title = "The complexity of recognizing polyhedral scenes" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "175--185" -, precedes = "kp-crps-88" +, author = "L. M. Kirousis and C. H. Papadimitriou" +, title = "The complexity of recognizing polyhedral scenes" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "175--185" +, precedes = "kp-crps-88" } @article{kp-crps-88 -, author = "L. M. Kirousis and C. H. Papadimitriou" -, title = "The complexity of recognizing polyhedral scenes" -, journal = "J. Comput. Syst. Sci." -, volume = 37 -, year = 1988 -, pages = "14--38" -, succeeds = "kp-crps-85" +, author = "L. M. Kirousis and C. H. Papadimitriou" +, title = "The complexity of recognizing polyhedral scenes" +, journal = "J. Comput. Syst. Sci." +, volume = 37 +, year = 1988 +, pages = "14--38" +, succeeds = "kp-crps-85" } @article{keb-pht-91 -, author = "N. Kiryai and Y. Eldar and A. M. Bruckstein" -, title = "A probabilistic {Hough} transform" -, journal = "Pattern Recogn." -, volume = 24 -, number = 4 -, year = 1991 -, pages = "303--316" -, update = "98.07 bibrelex" +, author = "N. Kiryai and Y. Eldar and A. M. Bruckstein" +, title = "A probabilistic {Hough} transform" +, journal = "Pattern Recogn." +, volume = 24 +, number = 4 +, year = 1991 +, pages = "303--316" +, update = "98.07 bibrelex" } @techreport{kb-wsp-90 -, author = "N. Kiryati and A. M. Bruckstein" -, title = "What's in a set of points" -, number = 605 -, institution = "Israel Inst. of Tech." -, address = "Haifa, Israel" -, month = jan -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "N. Kiryati and A. M. Bruckstein" +, title = "What's in a set of points" +, number = 605 +, institution = "Israel Inst. of Tech." +, address = "Haifa, Israel" +, month = jan +, year = 1990 +, update = "93.09 milone+mitchell" } @book{k-ss-65 -, author = "L. Kish" -, title = "Survey Sampling" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1965 -, update = "99.11 bibrelex, 98.07 bibrelex" +, author = "L. Kish" +, title = "Survey Sampling" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1965 +, update = "99.11 bibrelex, 98.07 bibrelex" } @article{khw-3dcmu-91 -, author = "E. Kishon and T. Hastie and H. Wolfson" -, title = "$3$-d curve matching using splines" -, journal = "J. Robot. Syst." -, volume = 8 -, year = 1991 -, pages = "723--743" -, update = "98.03 bibrelex" +, author = "E. Kishon and T. Hastie and H. Wolfson" +, title = "$3$-d curve matching using splines" +, journal = "J. Robot. Syst." +, volume = 8 +, year = 1991 +, pages = "723--743" +, update = "98.03 bibrelex" } @article{kr-glcd-82 -, author = "L. Kitchen and A. Rosenfeld" -, title = "Gray level corner detection" -, journal = "Pattern Rec. Lett." -, volume = 1 -, year = 1982 -, pages = "95--102" -, update = "98.11 bibrelex" +, author = "L. Kitchen and A. Rosenfeld" +, title = "Gray level corner detection" +, journal = "Pattern Rec. Lett." +, volume = 1 +, year = 1982 +, pages = "95--102" +, update = "98.11 bibrelex" } @article{kt-srehl-96 -, author = "N. Kitsios and A. Tsakalidis" -, title = "Space reduction and an extension for a hidden line elimination algorithm" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "397--404" -, update = "97.03 devillers" +, author = "N. Kitsios and A. Tsakalidis" +, title = "Space reduction and an extension for a hidden line elimination algorithm" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "397--404" +, update = "97.03 devillers" } @article{kl-pic-80 -, author = "M. S. Klamkin and A. Liu" -, title = "Polyominoes on the Infinite Checkerboard" -, journal = "J. Combin. Theory Ser. A" -, volume = 28 -, year = 1980 -, pages = "7--16" -, update = "98.07 bibrelex" +, author = "M. S. Klamkin and A. Liu" +, title = "Polyominoes on the Infinite Checkerboard" +, journal = "J. Combin. Theory Ser. A" +, volume = 28 +, year = 1980 +, pages = "7--16" +, update = "98.07 bibrelex" } @article{k-lbcch-87 -, author = "A. Klapper" -, title = "A lower bound on the complexity of the convex hull problem for simple polyhedra" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "159--161" +, author = "A. Klapper" +, title = "A lower bound on the complexity of the convex hull problem for simple polyhedra" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "159--161" } @incollection{k-p-97 -, author = "D. A. Klarner" -, title = "Polyominoes" -, chapter = 12 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "225--242" -, update = "97.11 orourke" +, author = "D. A. Klarner" +, title = "Polyominoes" +, chapter = 12 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "225--242" +, update = "97.11 orourke" } @incollection{k-ipccm-94 -, author = "R. Victor Klassen" -, title = "Intersecting Parametric Cubic Curves by Midpoint Subdivision" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "261--277" -, keywords = "Bezier curve, curve intersection, curve subdivision" -, update = "94.09 heckbert" -, annote = "Provides code to find the intersection points of planar +, author = "R. Victor Klassen" +, title = "Intersecting Parametric Cubic Curves by Midpoint Subdivision" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "261--277" +, keywords = "Bezier curve, curve intersection, curve subdivision" +, update = "94.09 heckbert" +, annote = "Provides code to find the intersection points of planar cubic curves. Contains C++ code." } @techreport{km-ocogd-98 -, author = "Gunnar W. Klau and Petra Mutzel" -, title = "Optimal Compaction of Orthogonal Grid Drawings" -, type = "Technical {Report}" -, number = "MPI-I-98-1-031" -, institution = "Max Planck Institut f{\"u}r Informatik" -, address = "Saarbr{\"u}cken, Germany" -, month = dec -, year = 1998 -, url = "http://data.mpi-sb.mpg.de/internet/reports.nsf/NumberView/1998-1-031" -, update = "99.07 vismara, 99.03 patrignani+vismara" +, author = "Gunnar W. Klau and Petra Mutzel" +, title = "Optimal Compaction of Orthogonal Grid Drawings" +, type = "Technical {Report}" +, number = "MPI-I-98-1-031" +, institution = "Max Planck Institut f{\"u}r Informatik" +, address = "Saarbr{\"u}cken, Germany" +, month = dec +, year = 1998 +, url = "http://data.mpi-sb.mpg.de/internet/reports.nsf/NumberView/1998-1-031" +, update = "99.07 vismara, 99.03 patrignani+vismara" } @inproceedings{km-ocogd-99 -, author = "G. W. Klau and P. Mutzel" -, title = "Optimal Compaction of Orthogonal Grid Drawings" -, editor = "G. Cornuejols and R. E. Burkard and G. J. Woeginger" -, booktitle = "Integer Programming and Combinatorial Optimization" -, nickname = "IPCO '99" -, series = "Lecture Notes Comput. Sci." -, volume = 1610 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "304--319" -, update = "00.03 vismara" +, author = "G. W. Klau and P. Mutzel" +, title = "Optimal Compaction of Orthogonal Grid Drawings" +, editor = "G. Cornuejols and R. E. Burkard and G. J. Woeginger" +, booktitle = "Integer Programming and Combinatorial Optimization" +, nickname = "IPCO '99" +, series = "Lecture Notes Comput. Sci." +, volume = 1610 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "304--319" +, update = "00.03 vismara" } @techreport{km-qodpg-98 -, author = "Gunnar W. Klau and Petra Mutzel" -, title = "Quasi-Orthogonal Drawing of Planar Graphs" -, type = "Technical {Report}" -, number = "MPI-I-98-1-013" -, institution = "Max Planck Institut f{\"u}r Informatik" -, address = "Saarbr{\"u}cken, Germany" -, year = 1998 -, update = "99.03 patrignani" +, author = "Gunnar W. Klau and Petra Mutzel" +, title = "Quasi-Orthogonal Drawing of Planar Graphs" +, type = "Technical {Report}" +, number = "MPI-I-98-1-013" +, institution = "Max Planck Institut f{\"u}r Informatik" +, address = "Saarbr{\"u}cken, Germany" +, year = 1998 +, update = "99.03 patrignani" } @techreport{k-sltac-89 -, author = "M. Klawe" -, title = "A simple linear time algorithm for concave one-dimensional dynamic programming" -, type = "Technical {Report}" -, number = "89-16" -, institution = "Univ. Britisch Columbia" -, address = "Vancouver, BC" -, year = 1989 -, update = "98.03 bibrelex" +, author = "M. Klawe" +, title = "A simple linear time algorithm for concave one-dimensional dynamic programming" +, type = "Technical {Report}" +, number = "89-16" +, institution = "Univ. Britisch Columbia" +, address = "Vancouver, BC" +, year = 1989 +, update = "98.03 bibrelex" } @techreport{kk-altag-88 -, author = "M. Klawe and D. Kleitman" -, title = "An almost linear time algorithm for generalized matrix" -, type = "Technical {Report}" -, number = "RJ6275" -, institution = "IBM Almaden Research Center" -, year = 1988 -, update = "98.03 bibrelex" +, author = "M. Klawe and D. Kleitman" +, title = "An almost linear time algorithm for generalized matrix" +, type = "Technical {Report}" +, number = "RJ6275" +, institution = "IBM Almaden Research Center" +, year = 1988 +, update = "98.03 bibrelex" } @unpublished{kpp-nrvu-82 -, author = "M. Klawe and M. Paterson and N. Pippenger" -, title = "Inversions with $n2^{1+\Omega(1+\sqrt{\log n})}$ transpositions at the median" -, year = 1982 -, note = "unpublished manuscript" -, update = "98.03 agarwal" +, author = "M. Klawe and M. Paterson and N. Pippenger" +, title = "Inversions with $n2^{1+\Omega(1+\sqrt{\log n})}$ transpositions at the median" +, year = 1982 +, note = "unpublished manuscript" +, update = "98.03 agarwal" } @inproceedings{k-sbms-90 -, author = "M. M. Klawe" -, title = "Superlinear bounds on matrix searching" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "485--493" +, author = "M. M. Klawe" +, title = "Superlinear bounds on matrix searching" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "485--493" } @article{kk-altag-90 -, author = "M. M. Klawe and D. J. Kleitman" -, title = "An almost linear time algorithm for generalized matrix searching" -, journal = "SIAM J. Discrete Math." -, volume = 3 -, number = 1 -, year = 1990 -, pages = "81--97" -, update = "98.11 bibrelex" +, author = "M. M. Klawe and D. J. Kleitman" +, title = "An almost linear time algorithm for generalized matrix searching" +, journal = "SIAM J. Discrete Math." +, volume = 3 +, number = 1 +, year = 1990 +, pages = "81--97" +, update = "98.11 bibrelex" } @article{k-gubet-92 -, author = "M. Klazar" -, title = "A general upper bound in extremal theory of sequences" -, journal = "Comment. Math. Univ. Carol." -, volume = 33 -, year = 1992 -, pages = "737--746" -, update = "95.09 agarwal" +, author = "M. Klazar" +, title = "A general upper bound in extremal theory of sequences" +, journal = "Comment. Math. Univ. Carol." +, volume = 33 +, year = 1992 +, pages = "737--746" +, update = "95.09 agarwal" } @article{k-lubet-94 -, author = "M. Klazar" -, title = "A linear upper bound in extremal theory of sequences" -, journal = "J. Combin. Theory Ser. A" -, volume = 68 -, year = 1994 -, pages = "454--464" -, update = "95.09 agarwal" +, author = "M. Klazar" +, title = "A linear upper bound in extremal theory of sequences" +, journal = "J. Combin. Theory Ser. A" +, volume = 68 +, year = 1994 +, pages = "454--464" +, update = "95.09 agarwal" } @phdthesis{k-cadss-95 -, author = "M. Klazar" -, title = "Combinatorial Aspects of Davenport--Schinzel Sequences" -, type = "Ph.{D}. Thesis" -, school = "Department of Applied Mathematics, Charles University" -, address = "Prague, Czech Republic" -, year = 1995 -, keywords = "doctoral thesis" -, update = "95.09 agarwal" +, author = "M. Klazar" +, title = "Combinatorial Aspects of Davenport--Schinzel Sequences" +, type = "Ph.{D}. Thesis" +, school = "Department of Applied Mathematics, Charles University" +, address = "Prague, Czech Republic" +, year = 1995 +, keywords = "doctoral thesis" +, update = "95.09 agarwal" } @article{k-trpo-93 -, author = "M. Klazar" -, title = "Two results on a partial ordering of finite sequences" -, journal = "Comment. Math. Univ. Carol." -, volume = 34 -, year = 1993 -, pages = "667--675" -, update = "95.09 agarwal" +, author = "M. Klazar" +, title = "Two results on a partial ordering of finite sequences" +, journal = "Comment. Math. Univ. Carol." +, volume = 34 +, year = 1993 +, pages = "667--675" +, update = "95.09 agarwal" } @article{kv-gdss-94 -, author = "M. Klazar and P. Valtr" -, title = "Generalized {Davenport--Schinzel} sequences" -, journal = "Combinatorica" -, volume = 14 -, year = 1994 -, pages = "463--476" -, update = "95.09 agarwal" +, author = "M. Klazar and P. Valtr" +, title = "Generalized {Davenport--Schinzel} sequences" +, journal = "Combinatorica" +, volume = 14 +, year = 1994 +, pages = "463--476" +, update = "95.09 agarwal" } @article{km-femgb-94 -, author = "G. Klebe and T. Mietzener" -, title = "A fast and efficient method to generate biologically relevant conformations" -, journal = "J. Computer Aided Molecular Design" -, volume = 8 -, year = 1994 -, pages = "583--606" -, update = "98.07 bibrelex" +, author = "G. Klebe and T. Mietzener" +, title = "A fast and efficient method to generate biologically relevant conformations" +, journal = "J. Computer Aided Molecular Design" +, volume = 8 +, year = 1994 +, pages = "583--606" +, update = "98.07 bibrelex" } @inproceedings{k-ltatf-80 -, author = "V. Klee" -, title = "A linear-time algorithm that finds all local minima among triangles containing a given convex polygon" -, booktitle = "Proc. 5th Sympos. Operations Res." -, site = "K{\"o}ln, West Germany" -, year = 1980 -, pages = "??" +, author = "V. Klee" +, title = "A linear-time algorithm that finds all local minima among triangles containing a given convex polygon" +, booktitle = "Proc. 5th Sympos. Operations Res." +, site = "K{\"o}ln, West Germany" +, year = 1980 +, pages = "??" } @article{k-cmbbc-77 -, author = "V. Klee" -, title = "Can the measure of $\bigcup_{1}^{n}[{a_{i}},b_{i}]$ be computed in less than {$O(n \log n)$} steps?" -, journal = "Amer. Math. Monthly" -, volume = 84 -, year = 1977 -, pages = "284--285" -, precedes = "oy-nubkm-88" +, author = "V. Klee" +, title = "Can the measure of $\bigcup_{1}^{n}[{a_{i}},b_{i}]$ be computed in less than {$O(n \log n)$} steps?" +, journal = "Amer. Math. Monthly" +, volume = 84 +, year = 1977 +, pages = "284--285" +, precedes = "oy-nubkm-88" } @inproceedings{k-cplp-66 -, author = "V. Klee" -, title = "Convex polytopes and linear programming" -, booktitle = "Proc. IBM Sci. Comput. Symp.: Combinatorial Problems" -, publisher = "IBM" -, year = 1966 -, pages = "123--158" -, update = "98.11 bibrelex" +, author = "V. Klee" +, title = "Convex polytopes and linear programming" +, booktitle = "Proc. IBM Sci. Comput. Symp.: Combinatorial Problems" +, publisher = "IBM" +, year = 1966 +, pages = "123--158" +, update = "98.11 bibrelex" } @article{k-fcvm-86 -, author = "Victor Klee" -, title = "Facet-centroids and volume minimization" -, journal = "Studia Scientiarum Mathematicarum Hungarica" -, volume = 21 -, year = 1986 -, pages = "143--147" -, note = "Fejes T{\'o}th Festschrift" -, update = "01.04 orourke, 99.07 orourke" +, author = "Victor Klee" +, title = "Facet-centroids and volume minimization" +, journal = "Studia Scientiarum Mathematicarum Hungarica" +, volume = 21 +, year = 1986 +, pages = "143--147" +, note = "Fejes T{\'o}th Festschrift" +, update = "01.04 orourke, 99.07 orourke" } @article{k-iepri-69 -, author = "Victor Klee" -, title = "Is Every Polygonal Region Illuminable from Some Point?" -, journal = "Amer. Math. Monthly" -, volume = 76 -, year = 1969 -, pages = 180 -, update = "01.04 orourke, 96.01 aronov" +, author = "Victor Klee" +, title = "Is Every Polygonal Region Illuminable from Some Point?" +, journal = "Amer. Math. Monthly" +, volume = 76 +, year = 1969 +, pages = 180 +, update = "01.04 orourke, 96.01 aronov" } @article{k-cddvd-80 -, author = "V. Klee" -, title = "On the complexity of $d$-dimensional {Voronoi} diagrams" -, journal = "Archiv der Mathematik" -, volume = 34 -, year = 1980 -, pages = "75--80" +, author = "V. Klee" +, title = "On the complexity of $d$-dimensional {Voronoi} diagrams" +, journal = "Archiv der Mathematik" +, volume = 34 +, year = 1980 +, pages = "75--80" } @article{k-pptrl-74 -, author = "V. Klee" -, title = "Polytope pairs and their relationship to linear programming" -, journal = "Acta Math." -, volume = 133 -, year = 1974 -, pages = "1--25" -, update = "98.03 bibrelex" +, author = "V. Klee" +, title = "Polytope pairs and their relationship to linear programming" +, journal = "Acta Math." +, volume = 133 +, year = 1974 +, pages = "1--25" +, update = "98.03 bibrelex" } @article{k-cscb-53 -, author = "V. Klee" -, title = "The Critical Set of a Convex Body" -, journal = "Amer. J. Math." -, volume = 75 -, year = 1953 -, pages = "178--188" -, update = "98.07 bibrelex" +, author = "V. Klee" +, title = "The Critical Set of a Convex Body" +, journal = "Amer. J. Math." +, volume = 75 +, year = 1953 +, pages = "178--188" +, update = "98.07 bibrelex" } @book{k-vmafs-72 -, author = "V. Klee" -, title = "Viewers Manual to accompany the film shapes of the futur e - some unsolved problems in geometry, Part II: Three Dimensions" -, publisher = "Modern Learning Aids" -, year = 1972 -, update = "97.11 bibrelex" +, author = "V. Klee" +, title = "Viewers Manual to accompany the film shapes of the futur e - some unsolved problems in geometry, Part II: Three Dimensions" +, publisher = "Modern Learning Aids" +, year = 1972 +, update = "97.11 bibrelex" } @article{kk-ggspc-90 -, author = "V. Klee and P. Kleinschmidt" -, title = "Geometry of the {Gass}-{Saaty} parametric cost {LP} algorithm" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "13--26" +, author = "V. Klee and P. Kleinschmidt" +, title = "Geometry of the {Gass}-{Saaty} parametric cost {LP} algorithm" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "13--26" } @article{kk-dscir-87 -, author = "V. Klee and P. Kleinschmidt" -, title = "The $d$-steps conjecture and its relatives" -, journal = "Math. Oper. Res." -, volume = 12 -, year = 1987 -, pages = "718--755" -, update = "93.09 milone+mitchell" +, author = "V. Klee and P. Kleinschmidt" +, title = "The $d$-steps conjecture and its relatives" +, journal = "Math. Oper. Res." +, volume = 12 +, year = 1987 +, pages = "718--755" +, update = "93.09 milone+mitchell" } -% also claimed pages = "457--464" +% also claimed pages = "457--464" @article{kl-fstcg-85 -, author = "V. Klee and M. C. Laskowski" -, title = "Finding the smallest triangles containing a given convex polygon" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "359--375" +, author = "V. Klee and M. C. Laskowski" +, title = "Finding the smallest triangles containing a given convex polygon" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "359--375" } @article{klh-arsss-97 -, author = "V. Klee and T. Lewis and B. {von Hohenbalken}" -, title = "{Apollonius} Revisited: {Supporting} Spheres for Sundered Systems" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "385--395" -, cites = "g-sih-69, ks-dpbst-58, s-scpe-80" -, update = "99.11 bibrelex" +, author = "V. Klee and T. Lewis and B. {von Hohenbalken}" +, title = "{Apollonius} Revisited: {Supporting} Spheres for Sundered Systems" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "385--395" +, cites = "g-sih-69, ks-dpbst-58, s-scpe-80" +, update = "99.11 bibrelex" } @incollection{km-hgisa-72 -, author = "V. Klee and G. J. Minty" -, title = "How good is the simplex algorithm?" -, editor = "O. Shisha" -, booktitle = "Inequalities III" -, publisher = "Academic Press" -, year = 1972 -, pages = "159--175" -, update = "93.09 milone+mitchell" +, author = "V. Klee and G. J. Minty" +, title = "How good is the simplex algorithm?" +, editor = "O. Shisha" +, booktitle = "Inequalities III" +, publisher = "Academic Press" +, year = 1972 +, pages = "159--175" +, update = "93.09 milone+mitchell" } @book{kw-onupp-91 -, author = "Victor Klee and Stan Wagon" -, title = "Old and New Unsolved Problems in Plane Geometry" -, publisher = "Mathematical Association of America" -, year = 1991 -, update = "01.04 orourke, 98.03 bibrelex" +, author = "Victor Klee and Stan Wagon" +, title = "Old and New Unsolved Problems in Plane Geometry" +, publisher = "Mathematical Association of America" +, year = 1991 +, update = "01.04 orourke, 98.03 bibrelex" } @article{kw-dscpd-?? -, author = "V. Klee and D. Walkup" -, title = "The $d$-step conjecture for polyhedra of dimension $d<6$" -, journal = "Acta Math." -, volume = 133 -, year = "??" -, pages = "53--78" -, update = "93.09 milone+mitchell" +, author = "V. Klee and D. Walkup" +, title = "The $d$-step conjecture for polyhedra of dimension $d<6$" +, journal = "Acta Math." +, volume = 133 +, year = "??" +, pages = "53--78" +, update = "93.09 milone+mitchell" } @article{kl-sc-72 -, author = "S. Kleiman and D. Laksov" -, title = "Schubert calculus" -, journal = "Amer. Math. Monthly" -, volume = 79 -, year = 1972 -, pages = "1061--1082" -, update = "98.03 bibrelex" +, author = "S. Kleiman and D. Laksov" +, title = "Schubert calculus" +, journal = "Amer. Math. Monthly" +, volume = 79 +, year = 1972 +, pages = "1061--1082" +, update = "98.03 bibrelex" } @book{k-emasg-39 -, author = "F. Klein" -, title = "Elementary Mathematics from an Advanced Standpoint: Geometry" -, publisher = "Macmillan" -, address = "New York, NY" -, year = 1939 -, update = "97.11 bibrelex" +, author = "F. Klein" +, title = "Elementary Mathematics from an Advanced Standpoint: Geometry" +, publisher = "Macmillan" +, address = "New York, NY" +, year = 1939 +, update = "97.11 bibrelex" } @inproceedings{kt-rltaf-94 -, author = "Philip Klein and Robert E. Tarjan" -, title = "A Randomized Linear-Time Algorithm for Finding Minimum Spanning Trees" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "" -, update = "94.01 jones" +, author = "Philip Klein and Robert E. Tarjan" +, title = "A Randomized Linear-Time Algorithm for Finding Minimum Spanning Trees" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "" +, update = "94.01 jones" } @article{kr-epap-88 -, author = "P. N. Klein and J. H. Reif" -, title = "An Efficient Parallel Algorithm for Planarity" -, journal = "J. Comput. Syst. Sci." -, volume = 37 -, number = 2 -, year = 1988 -, pages = "190--246" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. N. Klein and J. H. Reif" +, title = "An Efficient Parallel Algorithm for Planarity" +, journal = "J. Comput. Syst. Sci." +, volume = 37 +, number = 2 +, year = 1988 +, pages = "190--246" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{ks-prass-92 -, author = "P. N. Klein and S. Sairam" -, title = "A parallel randomized approximation scheme for shortest paths" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "750--758" +, author = "P. N. Klein and S. Sairam" +, title = "A parallel randomized approximation scheme for shortest paths" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "750--758" } @inproceedings{ks-fdasa-93 -, author = "P. N. Klein and S. Subramanian" -, title = "A fully dynamic approximation scheme for all-pairs shortest paths in planar graphs" -, booktitle = "Proc. 1993 Workshop Algorithms Data Struct." -, year = 1993 -, pages = "442--451" -, update = "94.01 tamassia" +, author = "P. N. Klein and S. Subramanian" +, title = "A fully dynamic approximation scheme for all-pairs shortest paths in planar graphs" +, booktitle = "Proc. 1993 Workshop Algorithms Data Struct." +, year = 1993 +, pages = "442--451" +, update = "94.01 tamassia" } @inproceedings{k-avdta-88 -, author = "Rolf Klein" -, title = "Abstract {Voronoi} Diagrams and Their Applications" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "148--157" -, comments = "extended abstract" -, succeeds = "k-vdmm-87" -, update = "00.03 bibrelex, 99.11 bibrelex, 99.07 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "Rolf Klein" +, title = "Abstract {Voronoi} Diagrams and Their Applications" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "148--157" +, comments = "extended abstract" +, succeeds = "k-vdmm-87" +, update = "00.03 bibrelex, 99.11 bibrelex, 99.07 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @book{k-ag-97 -, author = "Rolf Klein" -, title = "Algorithmische Geometrie" -, publisher = "Addison-Wesley" -, address = "Bonn" -, year = 1997 -, url = "http://www.oldenbourg.de/cgi-bin/rotitel?T=24382" -, keywords = "textbook, in German" -, update = "01.04 icking, 99.07 bibrelex, 97.03 icking+smid" +, author = "Rolf Klein" +, title = "Algorithmische Geometrie" +, publisher = "Addison-Wesley" +, address = "Bonn" +, year = 1997 +, url = "http://www.oldenbourg.de/cgi-bin/rotitel?T=24382" +, keywords = "textbook, in German" +, update = "01.04 icking, 99.07 bibrelex, 97.03 icking+smid" } @inproceedings{k-cpavd-89 -, author = "Rolf Klein" -, title = "Combinatorial Properties of Abstract {Voronoi} Diagrams" -, editor = "M. Nagl" -, booktitle = "Proc. Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 411 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "356--369" -, update = "97.03 icking" +, author = "Rolf Klein" +, title = "Combinatorial Properties of Abstract {Voronoi} Diagrams" +, editor = "M. Nagl" +, booktitle = "Proc. Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 411 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "356--369" +, update = "97.03 icking" } @book{k-cavd-89 -, author = "Rolf Klein" -, title = "Concrete and Abstract {Voronoi} Diagrams" -, series = "Lecture Notes Comput. Sci." -, volume = 400 -, publisher = "Springer-Verlag" -, year = 1989 -, isbn = "3-540-52055-4" -, keywords = "book" -, update = "99.07 bibrelex, 93.09 held" +, author = "Rolf Klein" +, title = "Concrete and Abstract {Voronoi} Diagrams" +, series = "Lecture Notes Comput. Sci." +, volume = 400 +, publisher = "Springer-Verlag" +, year = 1989 +, isbn = "3-540-52055-4" +, keywords = "book" +, update = "99.07 bibrelex, 93.09 held" } @incollection{k-dsv-98 -, author = "Rolf Klein" -, title = "Das {Sweep-Verfahren}" -, editor = "Thomas Ottmann" -, booktitle = "Prinzipien des {Algorithmenentwurfs}" -, publisher = "Spektrum Akademischer Verlag" -, year = 1998 -, pages = "67--89" -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/sweep.pdf" -, cites = "b-oafsi-95, b-pp-85, bo-arcgi-79, ce-oails-92, hns-psscp-88, k-ag-97, m-mdscg-84, ps-vvasq-91, ZZZ" -, update = "00.03 bibrelex" -, annote = "The book comes with a CD-ROM which contains, for each chapter, a lecture - held by the author of that chapter." +, author = "Rolf Klein" +, title = "Das {Sweep-Verfahren}" +, editor = "Thomas Ottmann" +, booktitle = "Prinzipien des {Algorithmenentwurfs}" +, publisher = "Spektrum Akademischer Verlag" +, year = 1998 +, pages = "67--89" +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/sweep.pdf" +, cites = "b-oafsi-95, b-pp-85, bo-arcgi-79, ce-oails-92, hns-psscp-88, k-ag-97, m-mdscg-84, ps-vvasq-91, ZZZ" +, update = "00.03 bibrelex" +, annote = "The book comes with a CD-ROM which contains, for each chapter, a lecture + held by the author of that chapter." } @techreport{k-ddp-85 -, author = "Rolf Klein" -, title = "Direct Dominance of Points" -, number = 154 -, institution = "Institut f{\"u}r {Angewandte} {Informatik} und {Formale} {Beschreibungsverfahren}, Universit{\"a}t Karlsruhe" -, year = 1985 -, update = "99.07 bibrelex, 97.11 bibrelex" +, author = "Rolf Klein" +, title = "Direct Dominance of Points" +, number = 154 +, institution = "Institut f{\"u}r {Angewandte} {Informatik} und {Formale} {Beschreibungsverfahren}, Universit{\"a}t Karlsruhe" +, year = 1985 +, update = "99.07 bibrelex, 97.11 bibrelex" } @inproceedings{k-mas-91 -, author = "Rolf Klein" -, title = "Moving Along a Street" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "123--140" -, precedes = "k-wusbd-91" -, update = "00.03 bibrelex, 99.07 bibrelex, 98.11 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Rolf Klein" +, title = "Moving Along a Street" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "123--140" +, precedes = "k-wusbd-91" +, update = "00.03 bibrelex, 99.07 bibrelex, 98.11 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @techreport{k-vdmm-87 -, author = "Rolf Klein" -, title = "Voronoi diagrams in the {Moscow} metric" -, type = "Technical {Report}" -, number = 7 -, institution = "Inst. Inform., Univ. Freiburg" -, year = 1987 -, precedes = "k-vdmm-89" -, update = "99.07 bibrelex, 98.11 bibrelex" +, author = "Rolf Klein" +, title = "Voronoi diagrams in the {Moscow} metric" +, type = "Technical {Report}" +, number = 7 +, institution = "Inst. Inform., Univ. Freiburg" +, year = 1987 +, precedes = "k-vdmm-89" +, update = "99.07 bibrelex, 98.11 bibrelex" } @inproceedings{k-vdmm-89 -, author = "Rolf Klein" -, title = "{Voronoi} Diagrams in the Moscow Metric" -, booktitle = "Proc. Graph-Theoretic Concepts in Computer Science. Proceedings." -, nickname = "WG '88" -, site = "Amsterdam" -, series = "Lecture Notes Comput. Sci." -, volume = 344 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "434--441" -, succeeds = "k-vdmm-87" -, update = "98.11 bibrelex" +, author = "Rolf Klein" +, title = "{Voronoi} Diagrams in the Moscow Metric" +, booktitle = "Proc. Graph-Theoretic Concepts in Computer Science. Proceedings." +, nickname = "WG '88" +, site = "Amsterdam" +, series = "Lecture Notes Comput. Sci." +, volume = 344 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "434--441" +, succeeds = "k-vdmm-87" +, update = "98.11 bibrelex" } @inproceedings{k-wusbd-91 -, author = "Rolf Klein" -, title = "Walking an Unknown Street with Bounded Detour" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "304--313" -, succeeds = "k-mas-91" -, precedes = "k-wusbd-92t" -, update = "99.07 bibrelex, 98.11 bibrelex" +, author = "Rolf Klein" +, title = "Walking an Unknown Street with Bounded Detour" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "304--313" +, succeeds = "k-mas-91" +, precedes = "k-wusbd-92t" +, update = "99.07 bibrelex, 98.11 bibrelex" } @techreport{k-wusbd-92t -, author = "Rolf Klein" -, title = "Walking an Unknown Street with Bounded Detour" -, number = 122 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1992 -, succeeds = "k-wusbd-91" -, precedes = "k-wusbd-92" -, update = "98.11 bibrelex" +, author = "Rolf Klein" +, title = "Walking an Unknown Street with Bounded Detour" +, number = 122 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1992 +, succeeds = "k-wusbd-91" +, precedes = "k-wusbd-92" +, update = "98.11 bibrelex" } @article{k-wusbd-92 -, author = "Rolf Klein" -, title = "Walking an Unknown Street with Bounded Detour" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, year = 1992 -, pages = "325--351" -, succeeds = "k-wusbd-92t" -, update = "99.07 bibrelex, 98.11 bibrelex" +, author = "Rolf Klein" +, title = "Walking an Unknown Street with Bounded Detour" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, year = 1992 +, pages = "325--351" +, succeeds = "k-wusbd-92t" +, update = "99.07 bibrelex, 98.11 bibrelex" } @techreport{kl-ltrab-93t -, author = "Rolf Klein and Andrzej Lingas" -, title = "A Linear-Time Randomized Algorithm for the Bounded {Voronoi} Diagram of a Simple Polygon" -, number = 150 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1993 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr150.pdf" -, succeeds = "lk-ltrab-91" -, precedes = "kl-ltrab-93" -, update = "98.11 bibrelex" +, author = "Rolf Klein and Andrzej Lingas" +, title = "A Linear-Time Randomized Algorithm for the Bounded {Voronoi} Diagram of a Simple Polygon" +, number = 150 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1993 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr150.pdf" +, succeeds = "lk-ltrab-91" +, precedes = "kl-ltrab-93" +, update = "98.11 bibrelex" } @inproceedings{kl-ltrab-93 -, author = "Rolf Klein and Andrzej Lingas" -, title = "A Linear-Time Randomized Algorithm for the Bounded {Voronoi} Diagram of a Simple Polygon" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "124--132" -, succeeds = "kl-ltrab-93t" -, precedes = "kl-ltrab-96" -, cites = "agss-ltacv-89, a-vds-88, c-tsplt-90i, c-bvdcp-86, c-cdt-87, dl-cvdrp-91, k-cavd-89, kl-mpsp-92, kl-cgdts-92, ll-gdtpg-86, l-hmdp-87, ll-fagt-90, l-vdbsd-89, ps-cgi-85, s-cdtvd-88, s-sfira-91, ws-oacdt-87, ZZZ" -, update = "99.07 bibrelex, 98.11 bibrelex, 98.03 bibrelex, 97.03 devillers, 93.09 jones" +, author = "Rolf Klein and Andrzej Lingas" +, title = "A Linear-Time Randomized Algorithm for the Bounded {Voronoi} Diagram of a Simple Polygon" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "124--132" +, succeeds = "kl-ltrab-93t" +, precedes = "kl-ltrab-96" +, cites = "agss-ltacv-89, a-vds-88, c-tsplt-90i, c-bvdcp-86, c-cdt-87, dl-cvdrp-91, k-cavd-89, kl-mpsp-92, kl-cgdts-92, ll-gdtpg-86, l-hmdp-87, ll-fagt-90, l-vdbsd-89, ps-cgi-85, s-cdtvd-88, s-sfira-91, ws-oacdt-87, ZZZ" +, update = "99.07 bibrelex, 98.11 bibrelex, 98.03 bibrelex, 97.03 devillers, 93.09 jones" } @article{kl-ltrab-96 -, author = "Rolf Klein and Andrzej Lingas" -, title = "A Linear-Time Randomized Algorithm for the Bounded {Voronoi} Diagram of a Simple Polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "263--278" -, succeeds = "kl-ltrab-93" -, update = "99.07 bibrelex, 97.03 devillers+icking" +, author = "Rolf Klein and Andrzej Lingas" +, title = "A Linear-Time Randomized Algorithm for the Bounded {Voronoi} Diagram of a Simple Polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "263--278" +, succeeds = "kl-ltrab-93" +, update = "99.07 bibrelex, 97.03 devillers+icking" } @inproceedings{kl-ngcav-93 -, author = "Rolf Klein and Andrzej Lingas" -, title = "A Note on Generalizations of {Chew's} Algorithm for the {Voronoi} Diagram of a Convex Polygon" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "370--374" -, cites = "a-vds-88, c-bvdcp-86, d-rysoa-92, dl-cvdrp-91, e-acg-87, gs-pmgsc-85, kl-ltrab-93, k-eccs-79, k-cavd-89, kl-havdl-93, ps-cgi-85, ya-mpce-89, s-barga-91, agss-ltacv-89, ZZZ" -, update = "99.07 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" +, author = "Rolf Klein and Andrzej Lingas" +, title = "A Note on Generalizations of {Chew's} Algorithm for the {Voronoi} Diagram of a Convex Polygon" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "370--374" +, cites = "a-vds-88, c-bvdcp-86, d-rysoa-92, dl-cvdrp-91, e-acg-87, gs-pmgsc-85, kl-ltrab-93, k-eccs-79, k-cavd-89, kl-havdl-93, ps-cgi-85, ya-mpce-89, s-barga-91, agss-ltacv-89, ZZZ" +, update = "99.07 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{kl-fsc-95 -, author = "Rolf Klein and Andrzej Lingas" -, title = "Fast Skeleton Construction" -, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 979 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "582--595" -, update = "00.03 bibrelex, 99.07 bibrelex, 97.03 icking" +, author = "Rolf Klein and Andrzej Lingas" +, title = "Fast Skeleton Construction" +, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 979 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "582--595" +, update = "00.03 bibrelex, 99.07 bibrelex, 97.03 icking" } @techreport{kl-havdl-93 -, author = "Rolf Klein and Andrzej Lingas" -, title = "Hamiltonian Abstract {Voronoi} Diagrams in Linear Time" -, type = "manuscript" -, year = 1993 -, precedes = "kl-havdl-94c" -, update = "00.11 smid, 00.07 icking, 99.07 bibrelex, 98.11 bibrelex" +, author = "Rolf Klein and Andrzej Lingas" +, title = "Hamiltonian Abstract {Voronoi} Diagrams in Linear Time" +, type = "manuscript" +, year = 1993 +, precedes = "kl-havdl-94c" +, update = "00.11 smid, 00.07 icking, 99.07 bibrelex, 98.11 bibrelex" } @inproceedings{kl-havdl-94 -, author = "Rolf Klein and Andrzej Lingas" -, title = "Hamiltonian Abstract {Voronoi} Diagrams in Linear Time" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "11--19" -, succeeds = "kl-havdl-94c" -, update = "00.11 smid, 00.07 icking, 99.11 bibrelex, 99.07 bibrelex, 98.11 bibrelex, 98.07 icking, 98.03 smid, 96.05 mitchell" +, author = "Rolf Klein and Andrzej Lingas" +, title = "Hamiltonian Abstract {Voronoi} Diagrams in Linear Time" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "11--19" +, succeeds = "kl-havdl-94c" +, update = "00.11 smid, 00.07 icking, 99.11 bibrelex, 99.07 bibrelex, 98.11 bibrelex, 98.07 icking, 98.03 smid, 96.05 mitchell" } @inproceedings{kl-havdl-94c -, author = "Rolf Klein and Andrzej Lingas" -, title = "Hamiltonian Abstract {Voronoi} Diagrams in Linear Time" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "1--4" -, succeeds = "kl-havdl-93" -, precedes = "kl-havdl-94" -, update = "00.11 smid, 00.07 icking" +, author = "Rolf Klein and Andrzej Lingas" +, title = "Hamiltonian Abstract {Voronoi} Diagrams in Linear Time" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "1--4" +, succeeds = "kl-havdl-93" +, precedes = "kl-havdl-94" +, update = "00.11 smid, 00.07 icking" } @techreport{kl-mpsp-92t -, author = "Rolf Klein and Andrzej Lingas" -, title = "Manhattonian Proximity in a Simple Polygon" -, number = 124 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1992 -, precedes = "kl-mpsp-92" -, update = "98.11 bibrelex" +, author = "Rolf Klein and Andrzej Lingas" +, title = "Manhattonian Proximity in a Simple Polygon" +, number = 124 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1992 +, precedes = "kl-mpsp-92" +, update = "98.11 bibrelex" } @inproceedings{kl-mpsp-92 -, author = "Rolf Klein and Andrzej Lingas" -, title = "Manhattonian Proximity in a Simple Polygon" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "312--319" -, succeeds = "kl-mpsp-92t" -, precedes = "kl-mpsp-95" -, cites = "agss-ltacv-89, a-gvdps-87, a-vds-88, c-tsplt-90i, c-cdt-87, cf-shvd-91, dk-bsbav-91, dl-cvdrp-91, egs-oplms-86, f-savd-87, k-cavd-89, kmm-cavd2-90, l-hmdp-87, ll-fagt-90, l-vdbsd-89, lk-ltrab-91, ps-cgi-85, s-cdtvd-88, s-mplbc-85, sh-cpp-75, ws-oacdt-87, ZZZ" -, update = "99.07 bibrelex, 98.11 bibrelex, 98.03 bibrelex, 97.11 bibrelex, 96.09 devillers" +, author = "Rolf Klein and Andrzej Lingas" +, title = "Manhattonian Proximity in a Simple Polygon" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "312--319" +, succeeds = "kl-mpsp-92t" +, precedes = "kl-mpsp-95" +, cites = "agss-ltacv-89, a-gvdps-87, a-vds-88, c-tsplt-90i, c-cdt-87, cf-shvd-91, dk-bsbav-91, dl-cvdrp-91, egs-oplms-86, f-savd-87, k-cavd-89, kmm-cavd2-90, l-hmdp-87, ll-fagt-90, l-vdbsd-89, lk-ltrab-91, ps-cgi-85, s-cdtvd-88, s-mplbc-85, sh-cpp-75, ws-oacdt-87, ZZZ" +, update = "99.07 bibrelex, 98.11 bibrelex, 98.03 bibrelex, 97.11 bibrelex, 96.09 devillers" } @article{kl-mpsp-95 -, author = "Rolf Klein and Andrzej Lingas" -, title = "Manhattonian proximity in a simple polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "53--74" -, keywords = "Voronoi diagram, simple polygon, computational geometry" -, succeeds = "kl-mpsp-92" -, update = "99.07 bibrelex, 96.09 devillers" +, author = "Rolf Klein and Andrzej Lingas" +, title = "Manhattonian proximity in a simple polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "53--74" +, keywords = "Voronoi diagram, simple polygon, computational geometry" +, succeeds = "kl-mpsp-92" +, update = "99.07 bibrelex, 96.09 devillers" } @techreport{kl-cgdts-92 -, author = "Rolf Klein and Andrzej Lingas" -, title = "On Computing the Generalized {Delaunay} Triangulation of a Simple Polygon" -, type = "Manuscript" -, institution = "Lund University" -, address = "Lund, Sweden" -, year = 1992 -, update = "99.07 bibrelex, 98.03 bibrelex" +, author = "Rolf Klein and Andrzej Lingas" +, title = "On Computing the Generalized {Delaunay} Triangulation of a Simple Polygon" +, type = "Manuscript" +, institution = "Lund University" +, address = "Lund, Sweden" +, year = 1992 +, update = "99.07 bibrelex, 98.03 bibrelex" } @techreport{km-weacs-92 -, author = "Rolf Klein and Lihong Ma" -, title = "Wrapping Ellipses Around a Convex Skeleton" -, number = 132 -, institution = "Fachbereich Informatik, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1992 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr132.pdf" -, precedes = "km-weacs-95" -, update = "98.07 icking, 98.03 bibrelex" +, author = "Rolf Klein and Lihong Ma" +, title = "Wrapping Ellipses Around a Convex Skeleton" +, number = 132 +, institution = "Fachbereich Informatik, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1992 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr132.pdf" +, precedes = "km-weacs-95" +, update = "98.07 icking, 98.03 bibrelex" } @article{km-weacs-95 -, author = "Rolf Klein and Lihong Ma" -, title = "Wrapping Ellipses Around a Convex Skeleton" -, journal = "Internat. J. Comput. Math." -, volume = 55 -, year = 1995 -, pages = "173--181" -, succeeds = "km-weacs-92" -, update = "98.07 icking, 97.03 icking" +, author = "Rolf Klein and Lihong Ma" +, title = "Wrapping Ellipses Around a Convex Skeleton" +, journal = "Internat. J. Comput. Math." +, volume = 55 +, year = 1995 +, pages = "173--181" +, succeeds = "km-weacs-92" +, update = "98.07 icking, 97.03 icking" } @incollection{kmm-cavd-92 -, author = "Rolf Klein and Kurt Mehlhorn and Stefan Meiser" -, title = "On the Construction of Abstract {Voronoi} Diagrams" -, editor = "J. Buchmann and H. Ganzinger and W. J. Paul" -, booktitle = "{Festschrift} zum 60. {Geburtstag} von {G{\"u}nter} {Hotz}" -, series = "Teubner-Texte zur Informatik" -, publisher = "B. G. Teubner" -, year = 1992 -, pages = "283--308" -, update = "97.03 icking" +, author = "Rolf Klein and Kurt Mehlhorn and Stefan Meiser" +, title = "On the Construction of Abstract {Voronoi} Diagrams" +, editor = "J. Buchmann and H. Ganzinger and W. J. Paul" +, booktitle = "{Festschrift} zum 60. {Geburtstag} von {G{\"u}nter} {Hotz}" +, series = "Teubner-Texte zur Informatik" +, publisher = "B. G. Teubner" +, year = 1992 +, pages = "283--308" +, update = "97.03 icking" } @inproceedings{kmm-cavd2-90 -, author = "Rolf Klein and Kurt Mehlhorn and Stefan Meiser" -, title = "On the Construction of Abstract {Voronoi} Diagrams {II}" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "138--154" -, precedes = "kmm-ricav-93" -, update = "99.07 bibrelex, 93.05 smid" +, author = "Rolf Klein and Kurt Mehlhorn and Stefan Meiser" +, title = "On the Construction of Abstract {Voronoi} Diagrams {II}" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "138--154" +, precedes = "kmm-ricav-93" +, update = "99.07 bibrelex, 93.05 smid" } @techreport{kmm-ricav-93 -, author = "Rolf Klein and Kurt Mehlhorn and Stefan Meiser" -, title = "Randomized Incremental Construction of Abstract {Voronoi} Diagrams" -, number = "MPI-I-93-105" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, succeeds = "kmm-cavd2-90" -, precedes = "kmm-ricav-93a" -, update = "99.07 bibrelex, 94.05 devillers, 93.05 smid" +, author = "Rolf Klein and Kurt Mehlhorn and Stefan Meiser" +, title = "Randomized Incremental Construction of Abstract {Voronoi} Diagrams" +, number = "MPI-I-93-105" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, succeeds = "kmm-cavd2-90" +, precedes = "kmm-ricav-93a" +, update = "99.07 bibrelex, 94.05 devillers, 93.05 smid" } @article{kmm-ricav-93a -, author = "Rolf Klein and Kurt Mehlhorn and Stefan Meiser" -, title = "Randomized Incremental Construction of Abstract {Voronoi} Diagrams" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, number = 3 -, year = 1993 -, pages = "157--184" -, succeeds = "kmm-ricav-93" -, update = "99.07 bibrelex, 97.11 bibrelex, 94.05 devillers" +, author = "Rolf Klein and Kurt Mehlhorn and Stefan Meiser" +, title = "Randomized Incremental Construction of Abstract {Voronoi} Diagrams" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, number = 3 +, year = 1993 +, pages = "157--184" +, succeeds = "kmm-ricav-93" +, update = "99.07 bibrelex, 97.11 bibrelex, 94.05 devillers" } @techreport{know-dfwp-87 -, author = "Rolf Klein and Otto Nurmi and Thomas Ottmann and Derick Wood" -, title = "A Dynamic Fixed Windowing Problem" -, type = "Report" -, number = "CS-87-56" -, institution = "Data Struct. Group, Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1987 -, precedes = "know-odsfw-86" -, update = "99.07 bibrelex" +, author = "Rolf Klein and Otto Nurmi and Thomas Ottmann and Derick Wood" +, title = "A Dynamic Fixed Windowing Problem" +, type = "Report" +, number = "CS-87-56" +, institution = "Data Struct. Group, Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1987 +, precedes = "know-odsfw-86" +, update = "99.07 bibrelex" } @article{know-dfwp-89 -, author = "Rolf Klein and Otto Nurmi and Thomas Ottmann and Derick Wood" -, title = "A Dynamic Fixed Windowing Problem" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "535--550" -, keywords = "points, range searching, polygons, two-dimensional, dynamizing data structures, priority search trees" -, succeeds = "know-odsfw-86" -, update = "99.07 bibrelex" +, author = "Rolf Klein and Otto Nurmi and Thomas Ottmann and Derick Wood" +, title = "A Dynamic Fixed Windowing Problem" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "535--550" +, keywords = "points, range searching, polygons, two-dimensional, dynamizing data structures, priority search trees" +, succeeds = "know-odsfw-86" +, update = "99.07 bibrelex" } @inproceedings{know-odsfw-86 -, author = "Rolf Klein and Otto Nurmi and Thomas Ottmann and Derick Wood" -, title = "Optimal Dynamic Solutions for Fixed Windowing Problems" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "109--115" -, succeeds = "know-dfwp-87" -, precedes = "know-dfwp-89" -, cites = "asss-moacp-85, b-sbbtd-72, bs-dsp1s-80, ce-oscpr-85, g-dcopi-84, m-pst-85, m-pst-85, o-ddds-83, ol-tgmdd-81, t-ubstr-83, lw-ddsp-80, ZZZ" -, update = "99.07 bibrelex, 97.11 bibrelex" +, author = "Rolf Klein and Otto Nurmi and Thomas Ottmann and Derick Wood" +, title = "Optimal Dynamic Solutions for Fixed Windowing Problems" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "109--115" +, succeeds = "know-dfwp-87" +, precedes = "know-dfwp-89" +, cites = "asss-moacp-85, b-sbbtd-72, bs-dsp1s-80, ce-oscpr-85, g-dcopi-84, m-pst-85, m-pst-85, o-ddds-83, ol-tgmdd-81, t-ubstr-83, lw-ddsp-80, ZZZ" +, update = "99.07 bibrelex, 97.11 bibrelex" } @book{kst-cg-97 -, title = "Computational Geometry" -, editor = "Rolf Klein and Raimond Seidel and Seth Teller" -, series = "Dagstuhl-Seminar-Report" -, volume = 168 -, publisher = "Internat. Begegnungs- und Forschungszentrum f{\"u}r Informatik" -, address = "Schloss Dagstuhl, Germany" -, year = 1997 -, url = "ftp://ftp.dagstuhl.de/pub/Reports/97/9707.ps.gz" -, update = "01.04 icking" +, title = "Computational Geometry" +, editor = "Rolf Klein and Raimond Seidel and Seth Teller" +, series = "Dagstuhl-Seminar-Report" +, volume = 168 +, publisher = "Internat. Begegnungs- und Forschungszentrum f{\"u}r Informatik" +, address = "Schloss Dagstuhl, Germany" +, year = 1997 +, url = "ftp://ftp.dagstuhl.de/pub/Reports/97/9707.ps.gz" +, update = "01.04 icking" } @article{kw-tubla-90 -, author = "Rolf Klein and Derick Wood" -, title = "A Tight Upper Bound for the Length of {AVL} Trees" -, journal = "Theoret. Comput. Sci." -, volume = 72 -, year = 1990 -, pages = "251--264" -, update = "98.11 bibrelex" +, author = "Rolf Klein and Derick Wood" +, title = "A Tight Upper Bound for the Length of {AVL} Trees" +, journal = "Theoret. Comput. Sci." +, volume = 72 +, year = 1990 +, pages = "251--264" +, update = "98.11 bibrelex" } @inproceedings{kw-bt-89 -, author = "Rolf Klein and Derick Wood" -, title = "On Binary Trees" -, booktitle = "Information Processing 89, 11th World Computer Congress" -, nickname = "IFIP '89" -, site = "San Francisco" -, year = 1989 -, pages = "449--454" -, update = "98.11 bibrelex" +, author = "Rolf Klein and Derick Wood" +, title = "On Binary Trees" +, booktitle = "Information Processing 89, 11th World Computer Congress" +, nickname = "IFIP '89" +, site = "San Francisco" +, year = 1989 +, pages = "449--454" +, update = "98.11 bibrelex" } @inproceedings{kw-mplat-88 -, author = "Rolf Klein and Derick Wood" -, title = "On the Maximum Path Length of {AVL}-Trees" -, booktitle = "Proc. 13th Colloquium on Trees in Algebra and Programming" -, nickname = "CAAP '88" -, site = "Nancy" -, series = "Lecture Notes Comput. Sci." -, volume = 299 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "16--27" -, update = "98.11 bibrelex" +, author = "Rolf Klein and Derick Wood" +, title = "On the Maximum Path Length of {AVL}-Trees" +, booktitle = "Proc. 13th Colloquium on Trees in Algebra and Programming" +, nickname = "CAAP '88" +, site = "Nancy" +, series = "Lecture Notes Comput. Sci." +, volume = 299 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "16--27" +, update = "98.11 bibrelex" } @inproceedings{kw-plbt-89p -, author = "Rolf Klein and Derick Wood" -, title = "On the Path Length of Binary Trees" -, booktitle = "Proc. 3rd International Conference on Foundations of Data Organization and Algorithms" -, nickname = "FODO '89" -, series = "Lecture Notes Comput. Sci." -, volume = 367 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "128--136" -, precedes = "kw-plbt-89" -, update = "98.11 bibrelex" +, author = "Rolf Klein and Derick Wood" +, title = "On the Path Length of Binary Trees" +, booktitle = "Proc. 3rd International Conference on Foundations of Data Organization and Algorithms" +, nickname = "FODO '89" +, series = "Lecture Notes Comput. Sci." +, volume = 367 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "128--136" +, precedes = "kw-plbt-89" +, update = "98.11 bibrelex" } @article{kw-plbt-89 -, author = "Rolf Klein and Derick Wood" -, title = "On the Path Length of Binary Trees" -, journal = "J. ACM" -, volume = 36 -, number = 2 -, year = 1989 -, pages = "280--289" -, succeeds = "kw-plbt-89p" -, update = "98.11 bibrelex" +, author = "Rolf Klein and Derick Wood" +, title = "On the Path Length of Binary Trees" +, journal = "J. ACM" +, volume = 36 +, number = 2 +, year = 1989 +, pages = "280--289" +, succeeds = "kw-plbt-89p" +, update = "98.11 bibrelex" } @inproceedings{kw-vdbgm-88 -, author = "Rolf Klein and Derick Wood" -, title = "Voronoi Diagrams Based on General Metrics in the Plane" -, editor = "R. Cori and M. Wirsing" -, booktitle = "Proc. 5th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 294 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "281--291" -, update = "97.03 icking" +, author = "Rolf Klein and Derick Wood" +, title = "Voronoi Diagrams Based on General Metrics in the Plane" +, editor = "R. Cori and M. Wirsing" +, booktitle = "Proc. 5th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 294 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "281--291" +, update = "97.03 icking" } @inproceedings{k-tanns-97 -, author = "J. Kleinberg" -, title = "Two Algorithms for Nearest-Neighbor Search in High Dimension" -, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '97" -, year = 1997 -, pages = "599--608" -, update = "98.07 bibrelex, 97.07 agarwal" +, author = "J. Kleinberg" +, title = "Two Algorithms for Nearest-Neighbor Search in High Dimension" +, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '97" +, year = 1997 +, pages = "599--608" +, update = "98.07 bibrelex, 97.07 agarwal" } @inproceedings{kpr-sp-98 -, author = "Jon Kleinberg and Christos Papadimitriou and Prabhakar Raghavan" -, title = "Segmentation Problems" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, year = 1998 -, pages = "473--482" -, update = "00.11 smid, 00.07 smid, 98.03 mitchell" +, author = "Jon Kleinberg and Christos Papadimitriou and Prabhakar Raghavan" +, title = "Segmentation Problems" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, year = 1998 +, pages = "473--482" +, update = "00.11 smid, 00.07 smid, 98.03 mitchell" } @mastersthesis{k-olarn-94 -, author = "Jon Michael Kleinberg" -, title = "On-line algorithms for robot navigation and server problems" -, school = "MIT, Dept. of Electr. Engineering and Comp. Science" -, year = 1994 -, keywords = "master thesis" -, update = "98.07 icking" +, author = "Jon Michael Kleinberg" +, title = "On-line algorithms for robot navigation and server problems" +, school = "MIT, Dept. of Electr. Engineering and Comp. Science" +, year = 1994 +, keywords = "master thesis" +, update = "98.07 icking" } @inproceedings{k-olssp-94 -, author = "Jon M. Kleinberg" -, title = "On-Line Search in a Simple Polygon" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '94" -, year = 1994 -, pages = "8--15" -, comments = "Contains, among other things, a 2.83-competitive algorithm for searching in streets +, author = "Jon M. Kleinberg" +, title = "On-Line Search in a Simple Polygon" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '94" +, year = 1994 +, pages = "8--15" +, comments = "Contains, among other things, a 2.83-competitive algorithm for searching in streets (but not 1.62-competitive as said in the abstract)." -, update = "98.03 bibrelex+icking+mitchell" +, update = "98.03 bibrelex+icking+mitchell" } @inproceedings{k-lpmr-94 -, author = "J. M. Kleinberg" -, title = "The localization problem for mobile robots" -, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1994 -, pages = "521--531" -, update = "97.11 bibrelex" +, author = "J. M. Kleinberg" +, title = "The localization problem for mobile robots" +, booktitle = "Proc. 35th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1994 +, pages = "521--531" +, update = "97.11 bibrelex" } @mastersthesis{k-rspqw-94 -, author = "K. S. Klenk" -, title = "Rectilinear shortest path queries among weighted obstacles" -, school = "University of Notre Dame" -, month = nov -, year = 1994 -, keywords = "master thesis" -, update = "98.03 bibrelex" +, author = "K. S. Klenk" +, title = "Rectilinear shortest path queries among weighted obstacles" +, school = "University of Notre Dame" +, month = nov +, year = 1994 +, keywords = "master thesis" +, update = "98.03 bibrelex" } @article{k-achfg-83 -, author = "R. Klette" -, title = "On the approximation of convex hulls of finite grid point sets" -, journal = "Pattern Recogn. Lett." -, volume = 2 -, year = 1983 -, pages = "19--22" +, author = "R. Klette" +, title = "On the approximation of convex hulls of finite grid point sets" +, journal = "Pattern Recogn. Lett." +, volume = 2 +, year = 1983 +, pages = "19--22" } @article{kk-atcdp-81 -, author = "R. Klette and E. V. Krishnamurthy" -, title = "Algorithms for testing convexity of digital polygons" -, journal = "Comput. Graph. Image Process." -, volume = 16 -, year = 1981 -, pages = "177--184" +, author = "R. Klette and E. V. Krishnamurthy" +, title = "Algorithms for testing convexity of digital polygons" +, journal = "Comput. Graph. Image Process." +, volume = 16 +, year = 1981 +, pages = "177--184" } @article{ks-frtua-97 -, author = "K. Klimaszewski and T. Sederberg" -, title = "Faster ray-tracing using adaptive grids" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, month = "jan-feb" -, year = 1997 -, pages = "42--51" -, update = "98.07 bibrelex" +, author = "K. Klimaszewski and T. Sederberg" +, title = "Faster ray-tracing using adaptive grids" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, month = "jan-feb" +, year = 1997 +, pages = "42--51" +, update = "98.07 bibrelex" } @article{k-mtpd-80 -, author = "G. T. Klincsek" -, title = "Minimal triangulations of polygonal domains" -, journal = "Discrete Math." -, volume = 9 -, year = 1980 -, pages = "121--123" +, author = "G. T. Klincsek" +, title = "Minimal triangulations of polygonal domains" +, journal = "Discrete Math." +, volume = 9 +, year = 1980 +, pages = "121--123" } @book{k-vd-73 -, author = "W. Klingenberg" -, title = "Eine Vorlesung {\"uber} Differentialgeometrie" -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1973 -, update = "98.11 bibrelex" +, author = "W. Klingenberg" +, title = "Eine Vorlesung {\"uber} Differentialgeometrie" +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1973 +, update = "98.11 bibrelex" } @article{kd-epurd-76 -, author = "A. Klinger and C. R. Dyer" -, title = "Experiments on pictures using regular decompositions" -, journal = "Comput. Graph. Image Process." -, volume = 5 -, year = 1976 -, pages = "68--105" -, update = "97.11 bibrelex" +, author = "A. Klinger and C. R. Dyer" +, title = "Experiments on pictures using regular decompositions" +, journal = "Comput. Graph. Image Process." +, volume = 5 +, year = 1976 +, pages = "68--105" +, update = "97.11 bibrelex" } @techreport{k-cizct-85 -, author = "D. A. Klip" -, title = "The completeness issue of the zero curve tracing algorithm for the isolation of the zeros of an analytic function defined on a disk" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Inform. Sci., Univ. Alabama Birmingham" -, address = "Birmingham, AL" -, year = 1985 +, author = "D. A. Klip" +, title = "The completeness issue of the zero curve tracing algorithm for the isolation of the zeros of an analytic function defined on a disk" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Inform. Sci., Univ. Alabama Birmingham" +, address = "Birmingham, AL" +, year = 1985 } @article{khmsz-ecdubv-98 -, author = "J. Klosowski and M. Held and Joseph S. B. Mitchell and K. Zikan and H. Sowizral" -, title = "Efficient Collision Detection Using Bounding Volume Hierarchies of {$k$-DOPs}" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 4 -, number = 1 -, year = 1998 -, pages = "21--36" -, succeeds = "hkm-rtcdm-96" -, update = "98.11 held, 98.03 mitchell" +, author = "J. Klosowski and M. Held and Joseph S. B. Mitchell and K. Zikan and H. Sowizral" +, title = "Efficient Collision Detection Using Bounding Volume Hierarchies of {$k$-DOPs}" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 4 +, number = 1 +, year = 1998 +, pages = "21--36" +, succeeds = "hkm-rtcdm-96" +, update = "98.11 held, 98.03 mitchell" } @inproceedings{ks-spc1a-96 -, author = "Petra Knieper and Anand Srivastav" -, title = "Sequential and Parallel Construction of {$(1/r)$}-Approximations" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "123--125" -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Petra Knieper and Anand Srivastav" +, title = "Sequential and Parallel Construction of {$(1/r)$}-Approximations" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "123--125" +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @mastersthesis{k-iacgw-90 -, author = "A. Knight" -, title = "Implementation of algorithms in a computational geometry workbench" -, school = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, month = apr -, year = 1990 -, keywords = "master thesis" -, update = "98.03 bibrelex" +, author = "A. Knight" +, title = "Implementation of algorithms in a computational geometry workbench" +, school = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, month = apr +, year = 1990 +, keywords = "master thesis" +, update = "98.03 bibrelex" } @inproceedings{kmmns-cgw-90 -, author = "A. Knight and J. May and M. McAffer and T. Nguyen and J.-R. Sack" -, title = "A Workbench for Computational Geometry (WOCG)" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = 370 -, cites = "ZZZ" -, update = "97.11 bibrelex+sack" +, author = "A. Knight and J. May and M. McAffer and T. Nguyen and J.-R. Sack" +, title = "A Workbench for Computational Geometry (WOCG)" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = 370 +, cites = "ZZZ" +, update = "97.11 bibrelex+sack" } @article{kf-p841d-84 -, author = "G. Knott and H. Flanders" -, title = "Problem 84-1: determine if a polygon is clockwise or counterclockwise" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = 591 +, author = "G. Knott and H. Flanders" +, title = "Problem 84-1: determine if a polygon is clockwise or counterclockwise" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = 591 } @techreport{kj-pdwtl-87 -, author = "G. Knott and E. Jou" -, title = "A Program to Determine Whether Two Line Segments Intersect" -, type = "Technical {Report}" -, number = "CAR-TR-306, CS-TR-1884, DCR-86-05557" -, institution = "Dept. Comput. Sci., Univ. Maryland College Park" -, address = "College Park, MD" -, month = aug -, year = 1987 -, update = "98.03 bibrelex" +, author = "G. Knott and E. Jou" +, title = "A Program to Determine Whether Two Line Segments Intersect" +, type = "Technical {Report}" +, number = "CAR-TR-306, CS-TR-1884, DCR-86-05557" +, institution = "Dept. Comput. Sci., Univ. Maryland College Park" +, address = "College Park, MD" +, month = aug +, year = 1987 +, update = "98.03 bibrelex" } @book{k-acp-73 -, author = "D. Knuth" -, title = "The art of computer programming" -, publisher = "Addison-Wesley" -, year = 1973 -, update = "98.03 bibrelex" +, author = "D. Knuth" +, title = "The art of computer programming" +, publisher = "Addison-Wesley" +, year = 1973 +, update = "98.03 bibrelex" } @book{k-ah-92 -, author = "Donald E. Knuth" -, title = "Axioms and Hulls" -, series = "Lecture Notes Comput. Sci." -, volume = 606 -, publisher = "Springer-Verlag" -, address = "Heidelberg, Germany" -, year = 1992 -, update = "94.05 grigni" +, author = "Donald E. Knuth" +, title = "Axioms and Hulls" +, series = "Lecture Notes Comput. Sci." +, volume = 606 +, publisher = "Springer-Verlag" +, address = "Heidelberg, Germany" +, year = 1992 +, update = "94.05 grigni" } @article{k-cdf-63 -, author = "D. E. Knuth" -, title = "Computer Drawn Flowcharts" -, journal = "Commun. ACM" -, volume = 6 -, year = 1963 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. E. Knuth" +, title = "Computer Drawn Flowcharts" +, journal = "Commun. ACM" +, volume = 6 +, year = 1963 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{k-fa-68 -, author = "D. E. Knuth" -, title = "Fundamental Algorithms" -, series = "The Art of Computer Programming" -, volume = 1 -, edition = "1st" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1968 -, update = "97.11 bibrelex" +, author = "D. E. Knuth" +, title = "Fundamental Algorithms" +, series = "The Art of Computer Programming" +, volume = 1 +, edition = "1st" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1968 +, update = "97.11 bibrelex" } @book{k-fa-73 -, author = "D. E. Knuth" -, title = "Fundamental Algorithms" -, series = "The Art of Computer Programming" -, volume = 1 -, edition = "2nd" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1973 +, author = "D. E. Knuth" +, title = "Fundamental Algorithms" +, series = "The Art of Computer Programming" +, volume = 1 +, edition = "2nd" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1973 } @book{k-fa-97 -, author = "D. E. Knuth" -, title = "Fundamental Algorithms" -, series = "The Art of Computer Programming" -, volume = 1 -, edition = "3rd" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1997 -, update = "98.07 smid" +, author = "D. E. Knuth" +, title = "Fundamental Algorithms" +, series = "The Art of Computer Programming" +, volume = 1 +, edition = "3rd" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1997 +, update = "98.07 smid" } @article{k-scfl-68 -, author = "D. E. Knuth" -, title = "Semantics of Context-Free Languages" -, journal = "Math. Syst. Theory" -, volume = 2 -, year = 1968 -, pages = "127--145" -, update = "96.01 tamassia" +, author = "D. E. Knuth" +, title = "Semantics of Context-Free Languages" +, journal = "Math. Syst. Theory" +, volume = 2 +, year = 1968 +, pages = "127--145" +, update = "96.01 tamassia" } @book{k-sa-69 -, author = "D. E. Knuth" -, title = "Seminumerical Algorithms" -, series = "The Art of Computer Programming" -, volume = 2 -, edition = "1st" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1969 -, update = "97.11 bibrelex" +, author = "D. E. Knuth" +, title = "Seminumerical Algorithms" +, series = "The Art of Computer Programming" +, volume = 2 +, edition = "1st" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1969 +, update = "97.11 bibrelex" } @book{k-sa-81 -, author = "D. E. Knuth" -, title = "Seminumerical Algorithms" -, series = "The Art of Computer Programming" -, volume = 2 -, edition = "2nd" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1981 +, author = "D. E. Knuth" +, title = "Seminumerical Algorithms" +, series = "The Art of Computer Programming" +, volume = 2 +, edition = "2nd" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1981 } @book{k-sa-98 -, author = "D. E. Knuth" -, title = "Seminumerical Algorithms" -, series = "The Art of Computer Programming" -, volume = 2 -, edition = "3rd" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1998 -, update = "98.07 smid" +, author = "D. E. Knuth" +, title = "Seminumerical Algorithms" +, series = "The Art of Computer Programming" +, volume = 2 +, edition = "3rd" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1998 +, update = "98.07 smid" } @book{k-ss-73 -, author = "D. E. Knuth" -, title = "Sorting and Searching" -, series = "The Art of Computer Programming" -, volume = 3 -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1973 +, author = "D. E. Knuth" +, title = "Sorting and Searching" +, series = "The Art of Computer Programming" +, volume = 3 +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1973 } @book{k-sg-93 -, author = "D. E. Knuth" -, title = "The {Stanford} {GraphBase}: A Platform for Combinatorial Computing" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1993 -, update = "98.07 tamassia" +, author = "D. E. Knuth" +, title = "The {Stanford} {GraphBase}: A Platform for Combinatorial Computing" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1993 +, update = "98.07 tamassia" } @article{kr-pcr-92 -, author = "D. E. Knuth and A. Raghunathan" -, title = "The problem of compatible representatives" -, journal = "SIAM J. Discrete Math." -, volume = 5 -, year = 1992 -, pages = "422--427" -, update = "98.03 bibrelex" +, author = "D. E. Knuth and A. Raghunathan" +, title = "The problem of compatible representatives" +, journal = "SIAM J. Discrete Math." +, volume = 5 +, year = 1992 +, pages = "422--427" +, update = "98.03 bibrelex" } @book{k-ctrf-91 -, author = "K.-I. Ko" -, title = "Complexity Theory of Real Functions" -, publisher = "Birkh{\"a}user" -, address = "Boston" -, year = 1991 -, update = "98.11 bibrelex" +, author = "K.-I. Ko" +, title = "Complexity Theory of Real Functions" +, publisher = "Birkh{\"a}user" +, address = "Boston" +, year = 1991 +, update = "98.11 bibrelex" } @inproceedings{kc-ltawr-89 -, author = "M. T. Ko and Y. T. Ching" -, title = "A linear time algorithm for the weighted rectilinear 2-center problem" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "75--82" -, update = "95.09 mitchell" +, author = "M. T. Ko and Y. T. Ching" +, title = "A linear time algorithm for the weighted rectilinear 2-center problem" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "75--82" +, update = "95.09 mitchell" } @article{kc-ltawt-92 -, author = "M. T. Ko and Y. T. Ching" -, title = "Linear time algorithms for the weighted tailored $2$-partition problem and the weighted rectilinear 2-center problem under ${L}_\infty$-distance" -, journal = "Discrete Appl. Math." -, volume = 40 -, year = 1992 -, pages = "397--410" -, update = "97.03 agarwal, 96.05 agarwal, 95.09 mitchell" +, author = "M. T. Ko and Y. T. Ching" +, title = "Linear time algorithms for the weighted tailored $2$-partition problem and the weighted rectilinear 2-center problem under ${L}_\infty$-distance" +, journal = "Discrete Appl. Math." +, volume = 40 +, year = 1992 +, pages = "397--410" +, update = "97.03 agarwal, 96.05 agarwal, 95.09 mitchell" } @article{kl-wrccp-91 -, author = "M. T. Ko and R. C. T. Lee" -, title = "On weighted rectilinear $2$-center and $3$-center problems" -, journal = "Inform. Sci." -, volume = 54 -, year = 1991 -, pages = "169--190" -, update = "96.05 agarwal" +, author = "M. T. Ko and R. C. T. Lee" +, title = "On weighted rectilinear $2$-center and $3$-center problems" +, journal = "Inform. Sci." +, volume = 54 +, year = 1991 +, pages = "169--190" +, update = "96.05 agarwal" } @article{klc-oaarm-90 -, author = "M. T. Ko and R. C. T. Lee and J. S. Chang" -, title = "An optimal approximation algorithm for the rectilinear $m$-center problem" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "341--352" +, author = "M. T. Ko and R. C. T. Lee and J. S. Chang" +, title = "An optimal approximation algorithm for the rectilinear $m$-center problem" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "341--352" } @inproceedings{klc-rmcp-87 -, author = "M. T. Ko and R. C. T. Lee and J. S. Chang" -, title = "Rectilinear $m$-center problem" -, booktitle = "Proc. National Computer Symp." -, site = "Taipei, Taiwan, R. O. C." -, year = 1987 -, pages = "325--329" -, update = "97.11 bibrelex" +, author = "M. T. Ko and R. C. T. Lee and J. S. Chang" +, title = "Rectilinear $m$-center problem" +, booktitle = "Proc. National Computer Symp." +, site = "Taipei, Taiwan, R. O. C." +, year = 1987 +, pages = "325--329" +, update = "97.11 bibrelex" } @incollection{k-ccl-67 -, author = "S. Kobayashi" -, title = "On conjugate and cut loci" -, editor = "S. S. Chern" -, booktitle = "Studies in Global Geometry and Analysis" -, publisher = "Mathematical Association of America" -, year = 1967 -, pages = "96--122" -, keywords = "shortest paths" -, update = "93.09 erickson, 93.05 orourke" +, author = "S. Kobayashi" +, title = "On conjugate and cut loci" +, editor = "S. S. Chern" +, booktitle = "Studies in Global Geometry and Analysis" +, publisher = "Mathematical Association of America" +, year = 1967 +, pages = "96--122" +, keywords = "shortest paths" +, update = "93.09 erickson, 93.05 orourke" } @article{k-fdpam-94 -, author = "L. Kobbelt" -, title = "A fast dot-product algorithm with minimal rounding errors" -, journal = "Computing" -, volume = 52 -, year = 1994 -, pages = "355--369" -, update = "98.07 bibrelex" +, author = "L. Kobbelt" +, title = "A fast dot-product algorithm with minimal rounding errors" +, journal = "Computing" +, volume = 52 +, year = 1994 +, pages = "355--369" +, update = "98.07 bibrelex" } @mastersthesis{k-ibme- -, author = "L. Kobbelt" -, title = "Iterative {Berechnung} metrischer {Eigenschaften}" -, school = "Universit{\"a}t Karlsruhe" -, address = "Karlsruhe, Germany" -, year = "??" -, note = "Thesis" -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "L. Kobbelt" +, title = "Iterative {Berechnung} metrischer {Eigenschaften}" +, school = "Universit{\"a}t Karlsruhe" +, address = "Karlsruhe, Germany" +, year = "??" +, note = "Thesis" +, keywords = "master thesis" +, update = "98.07 bibrelex" } @inproceedings{k-reefp-97 -, author = "L. Kobbelt" -, title = "Robust and efficient evaluation of functionals on parametric surfaces" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "376--378" -, cites = "b-wdwnb-90, bs-aulbr-66, bs-nqe-67, d-fptea-71, g-igar-96, f-pcg-93, f-riga-96, fv-eeacg-93, k-ibme-, k-fdpam-94, km-catp-81, p-pfpan-92, s-apfpa-96, s-aeqes-82, s-eidnm-83, s-acmi-71, ts-cggps-80, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "L. Kobbelt" +, title = "Robust and efficient evaluation of functionals on parametric surfaces" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "376--378" +, cites = "b-wdwnb-90, bs-aulbr-66, bs-nqe-67, d-fptea-71, g-igar-96, f-pcg-93, f-riga-96, fv-eeacg-93, k-ibme-, k-fdpam-94, km-catp-81, p-pfpan-92, s-apfpa-96, s-aeqes-82, s-eidnm-83, s-acmi-71, ts-cggps-80, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{kcvs-imrma-98 -, author = "L. Kobbelt and S. Campagna and J. Vorsatz and H.-P. Seidel" -, title = "Interactive Multi-Resolution Modeling on Arbitrary Meshes" -, booktitle = "Proc. SIGGRAPH '98" -, site = "Orlando, FL" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, month = jul -, year = 1998 -, pages = "105--114" -, update = "98.11 held" +, author = "L. Kobbelt and S. Campagna and J. Vorsatz and H.-P. Seidel" +, title = "Interactive Multi-Resolution Modeling on Arbitrary Meshes" +, booktitle = "Proc. SIGGRAPH '98" +, site = "Orlando, FL" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, month = jul +, year = 1998 +, pages = "105--114" +, update = "98.11 held" } @article{kk-mpf-89 -, author = "M. W. Koch and R. L. Kashyap" -, title = "Matching polygon fragments" -, journal = "Pattern Recogn. Lett." -, volume = 10 -, year = 1989 -, pages = "297--308" -, keywords = "shape matching" -, update = "98.07 rote" +, author = "M. W. Koch and R. L. Kashyap" +, title = "Matching polygon fragments" +, journal = "Pattern Recogn. Lett." +, volume = 10 +, year = 1989 +, pages = "297--308" +, keywords = "shape matching" +, update = "98.07 rote" } @article{k-ambsc-84 -, author = "P. Kochevar" -, title = "An application of multivariate {B}-splines to computer-aided geometric design" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "159--175" +, author = "P. Kochevar" +, title = "An application of multivariate {B}-splines to computer-aided geometric design" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "159--175" } @inproceedings{k-ernmp-87 -, author = "D. E. Koditschek" -, title = "Exact robot navigation by means of potential functions: some topological considerations" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1987 -, pages = "1--6" -, update = "95.05 agarwal" +, author = "D. E. Koditschek" +, title = "Exact robot navigation by means of potential functions: some topological considerations" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1987 +, pages = "1--6" +, update = "95.05 agarwal" } @article{k-kdka-36 -, author = "P. Koebe" -, title = "Kontaktprobleme der konformen {Abbildung}" -, journal = "Ber. Verh. S{\"a}chs. Akademie der Wissenschaften Leipzig, Math.-Phys. Klasse" -, volume = 88 -, year = 1936 -, pages = "141--164" -, update = "97.11 bibrelex" +, author = "P. Koebe" +, title = "Kontaktprobleme der konformen {Abbildung}" +, journal = "Ber. Verh. S{\"a}chs. Akademie der Wissenschaften Leipzig, Math.-Phys. Klasse" +, volume = 88 +, year = 1936 +, pages = "141--164" +, update = "97.11 bibrelex" } @book{k-ss-89 -, author = "J. Koenderink" -, title = "Solid Shape" -, publisher = "MIT Press" -, year = 1989 -, update = "95.01 mitchell" +, author = "J. Koenderink" +, title = "Solid Shape" +, publisher = "MIT Press" +, year = 1989 +, update = "95.01 mitchell" } @article{kd-irssr-79 -, author = "J. J. Koenderink and A. J. van Doorn" -, title = "The internal representation of solid shape with respect to vision" -, journal = "Biological Cybernetics" -, volume = 32 -, year = 1979 -, pages = "211--216" +, author = "J. J. Koenderink and A. J. van Doorn" +, title = "The internal representation of solid shape with respect to vision" +, journal = "Biological Cybernetics" +, volume = 32 +, year = 1979 +, pages = "211--216" } @article{kd-svm-76 -, author = "J. J. Koenderink and A. J. van Doorn" -, title = "The singularities of the visual mapping" -, journal = "Biological Cybernetics" -, volume = 24 -, year = 1976 -, pages = "51--59" +, author = "J. J. Koenderink and A. J. van Doorn" +, title = "The singularities of the visual mapping" +, journal = "Biological Cybernetics" +, volume = 24 +, year = 1976 +, pages = "51--59" } @inproceedings{k-atdvo-92 -, author = "H. Koike" -, title = "An Application of Three Dimensional Visualization to Object-Oriented Programming" -, booktitle = "Proc. Advanced Visual Interfaces" -, series = "World Scientific Series in Computer Science" -, volume = 36 -, year = 1992 -, pages = "180--192" -, keywords = "graph drawing" -, update = "94.01 tamassia, 93.09 tamassia" +, author = "H. Koike" +, title = "An Application of Three Dimensional Visualization to Object-Oriented Programming" +, booktitle = "Proc. Advanced Visual Interfaces" +, series = "World Scientific Series in Computer Science" +, volume = 36 +, year = 1992 +, pages = "180--192" +, keywords = "graph drawing" +, update = "94.01 tamassia, 93.09 tamassia" } @inproceedings{kts-vsmbc-85 -, author = "P. Koistinen and M. Tamminen and H. Samet" -, title = "Viewing solid models by bintree conversion" -, editor = "C. E. Vandoni" -, booktitle = "Proceedings of the {EUROGRAPHICS'85} Conference" -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 1985 -, pages = "147--157" -, update = "96.05 efrat" +, author = "P. Koistinen and M. Tamminen and H. Samet" +, title = "Viewing solid models by bintree conversion" +, editor = "C. E. Vandoni" +, booktitle = "Proceedings of the {EUROGRAPHICS'85} Conference" +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 1985 +, pages = "147--157" +, update = "96.05 efrat" } @inproceedings{kk-nnfmd-95 -, author = "V. Koivune and S. Kassam" -, title = "Nearest neighbor filters for multivariate data" -, booktitle = "IEEE Workshop on Nonlinear Signal and Image Processing" -, year = 1995 -, update = "97.07 agarwal" +, author = "V. Koivune and S. Kassam" +, title = "Nearest neighbor filters for multivariate data" +, booktitle = "IEEE Workshop on Nonlinear Signal and Image Processing" +, year = 1995 +, update = "97.07 agarwal" } @article{k-ptldt-87 -, author = "M. Kolinek" -, title = "A polynomial-time linear decision tree for the traveling salesman problem and other {NP}-complete problems" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "37--48" +, author = "M. Kolinek" +, title = "A polynomial-time linear decision tree for the traveling salesman problem and other {NP}-complete problems" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "37--48" } @article{k-3dlca-94 -, author = "I. Kolingerov{\'a}" -, title = "3D-Line Clipping Algorithms -- A Comparative Study" -, journal = "Visual Comput." -, volume = 11 -, number = 2 -, year = 1994 -, pages = "96--104" -, update = "96.01 held" +, author = "I. Kolingerov{\'a}" +, title = "3D-Line Clipping Algorithms -- A Comparative Study" +, journal = "Visual Comput." +, volume = 11 +, number = 2 +, year = 1994 +, pages = "96--104" +, update = "96.01 held" } @inproceedings{k-ccheu-94 -, author = "Ivana Kollingerova" -, title = "Creating convex hulls in {$E^2$} using dual representation" -, booktitle = "Winter School of Computer Graphics and CAD Systems 94" -, publisher = "University of West Bohemia" -, address = "Pilsen, Czech Republic" -, month = jan -, year = 1994 -, pages = "158--167" -, comments = "$O(n \log h)$ 2D convex hull algorithm using duality +, author = "Ivana Kollingerova" +, title = "Creating convex hulls in {$E^2$} using dual representation" +, booktitle = "Winter School of Computer Graphics and CAD Systems 94" +, publisher = "University of West Bohemia" +, address = "Pilsen, Czech Republic" +, month = jan +, year = 1994 +, pages = "158--167" +, comments = "$O(n \log h)$ 2D convex hull algorithm using duality mapping" -, update = "98.07 icking, 95.09 korneenko, 95.05 korneenko" +, update = "98.07 icking, 95.09 korneenko, 95.05 korneenko" } @inproceedings{kr-nltas-99 -, author = "S. Kolliopoulos and S. Rao" -, title = "A nearly linear-time approximation scheme for the {Euclidean} $k$-median problem" -, booktitle = "Proc. 7th Annu. European Sympos. Algorithms" -, year = 1999 -, pages = "378--389" -, update = "00.11 smid, 00.07 agarwal" +, author = "S. Kolliopoulos and S. Rao" +, title = "A nearly linear-time approximation scheme for the {Euclidean} $k$-median problem" +, booktitle = "Proc. 7th Annu. European Sympos. Algorithms" +, year = 1999 +, pages = "378--389" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{k-atubv-01 -, author = "Vladlen Koltun" -, title = "Almost Tight Upper Bounds for Vertical Decompositions in Four Dimensions" -, booktitle = "Proc. 42nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 2001 -, update = "01.07 orourke" +, author = "Vladlen Koltun" +, title = "Almost Tight Upper Bounds for Vertical Decompositions in Four Dimensions" +, booktitle = "Proc. 42nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 2001 +, update = "01.07 orourke" } @inproceedings{k-ispgs-01 -, author = "Vladlen Koltun" -, title = "Intersection Searching Problems in General Settings" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "89--92" -, update = "01.04 icking" +, author = "Vladlen Koltun" +, title = "Intersection Searching Problems in General Settings" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "89--92" +, update = "01.04 icking" } @article{kkv-arcbt-89 -, author = "D. K{\"o}lzow and A. Kuba and A. Vol{\v c}i{\v c}" -, title = "An algorithm for reconstructing convex bodies from their projections" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "205--237" +, author = "D. K{\"o}lzow and A. Kuba and A. Vol{\v c}i{\v c}" +, title = "An algorithm for reconstructing convex bodies from their projections" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "205--237" } @article{k-scnds-88 -, author = "P. Komj{\'a}th" -, title = "A simplified construction of nonlinear {Davenport--Schinzel} sequences" -, journal = "J. Combin. Theory Ser. A" -, volume = 49 -, year = 1988 -, pages = "262--267" -, update = "98.07 icking, 95.09 agarwal" +, author = "P. Komj{\'a}th" +, title = "A simplified construction of nonlinear {Davenport--Schinzel} sequences" +, journal = "J. Combin. Theory Ser. A" +, volume = 49 +, year = 1988 +, pages = "262--267" +, update = "98.07 icking, 95.09 agarwal" } @incollection{k-stces-93 -, author = "P. Komj{\'a}th" -, title = "Set Theoretic Constructions in {Euclidean} Spaces" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "303--325" -, keywords = "survey paper, axiom of choice, decomposition, coloring, continuum hypothesis, Hilbert space, paradoxical sets" -, update = "93.09 erickson" +, author = "P. Komj{\'a}th" +, title = "Set Theoretic Constructions in {Euclidean} Spaces" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "303--325" +, keywords = "survey paper, axiom of choice, decomposition, coloring, continuum hypothesis, Hilbert space, paradoxical sets" +, update = "93.09 erickson" } @article{kpw-atben-92 -, author = "J. Koml{\'o}s and J. Pach and G. Woeginger" -, title = "Almost tight bounds for $\epsilon$-nets" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "163--173" -, succeeds = "pw-snben-90" -, update = "93.09 rote" +, author = "J. Koml{\'o}s and J. Pach and G. Woeginger" +, title = "Almost tight bounds for $\epsilon$-nets" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "163--173" +, succeeds = "pw-snben-90" +, update = "93.09 rote" } @article{ks-ppars-85 -, author = "J. Komlos and M. T. Shing" -, title = "Probabilistic partitioning algorithms for the rectilinear {Steiner} tree problem" -, journal = "Networks" -, volume = 15 -, year = 1985 -, pages = "413--423" -, update = "01.07 devillers, 98.07 bibrelex" +, author = "J. Komlos and M. T. Shing" +, title = "Probabilistic partitioning algorithms for the rectilinear {Steiner} tree problem" +, journal = "Networks" +, volume = 15 +, year = 1985 +, pages = "413--423" +, update = "01.07 devillers, 98.07 bibrelex" } @article{kmr-drrmp-88 -, author = "T. Y. Kong and D. M. Mount and A. W. Roscoe" -, title = "The decomposition of a rectangle into rectangles of minimal perimeter" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "1215--1231" +, author = "T. Y. Kong and D. M. Mount and A. W. Roscoe" +, title = "The decomposition of a rectangle into rectangles of minimal perimeter" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "1215--1231" } @article{kmw-dsrmp-87 -, author = "T. Y. Kong and D. M. Mount and M. Werman" -, title = "The Decomposition of a Square into Rectangles of Minimal Perimeter" -, journal = "Discrete Appl. Math." -, volume = 16 -, year = 1987 -, pages = "239--243" -, update = "96.01 werman" +, author = "T. Y. Kong and D. M. Mount and M. Werman" +, title = "The Decomposition of a Square into Rectangles of Minimal Perimeter" +, journal = "Discrete Appl. Math." +, volume = 16 +, year = 1987 +, pages = "239--243" +, update = "96.01 werman" } @book{k-eidat-03 -, author = "Julius K{\"o}nig" -, title = "{Einleitung} in die allgemeine {Theorie} der algebraischen {Gr{\"o}{\ss}en}" -, publisher = "B. G. Teubner" -, address = "Leipzig" -, year = 1903 -, update = "99.11 bibrelex, 98.11 bibrelex, 97.11 bibrelex" +, author = "Julius K{\"o}nig" +, title = "{Einleitung} in die allgemeine {Theorie} der algebraischen {Gr{\"o}{\ss}en}" +, publisher = "B. G. Teubner" +, address = "Leipzig" +, year = 1903 +, update = "99.11 bibrelex, 98.11 bibrelex, 97.11 bibrelex" } @article{ks-envci-84 -, author = "S. B. Konyagin and K. A. Savastyanov" -, title = "Estimation of the number of vertices of a convex integral polyhedron in terms of its volume" -, journal = "Functional Anal. Appl." -, volume = 18 -, year = 1984 -, pages = "13--15" -, update = "97.11 bibrelex" +, author = "S. B. Konyagin and K. A. Savastyanov" +, title = "Estimation of the number of vertices of a convex integral polyhedron in terms of its volume" +, journal = "Functional Anal. Appl." +, volume = 18 +, year = 1984 +, pages = "13--15" +, update = "97.11 bibrelex" } @article{kf-nvstc-72 -, author = "W. L. G. Koontz and K. Fukunaga" -, title = "A nonparametric valley-seeking technique for clustering analysis" -, journal = "IEEE Trans. Comput." -, volume = "C-21" -, year = 1972 -, pages = "171--178" +, author = "W. L. G. Koontz and K. Fukunaga" +, title = "A nonparametric valley-seeking technique for clustering analysis" +, journal = "IEEE Trans. Comput." +, volume = "C-21" +, year = 1972 +, pages = "171--178" } @article{knf-gtanp-76 -, author = "W. L. G. Koontz and P. M. Narendra and K. Fukunaga" -, title = "A graph-theoretical approach to non-parametric cluster analysis" -, journal = "IEEE Trans. Comput." -, volume = "C-25" -, year = 1976 -, pages = "936--944" +, author = "W. L. G. Koontz and P. M. Narendra and K. Fukunaga" +, title = "A graph-theoretical approach to non-parametric cluster analysis" +, journal = "IEEE Trans. Comput." +, volume = "C-25" +, year = 1976 +, pages = "936--944" } @phdthesis{k-stpvp-92 -, author = "A. A. Kooshesh" -, title = "Structuring Techniques for Path and Visibility Problems" -, type = "Ph.{D}. Thesis" -, school = "University of New Mexico" -, address = "Albuquerque, NM 87131" -, year = 1992 -, keywords = "doctoral thesis" -, update = "93.05 moret" +, author = "A. A. Kooshesh" +, title = "Structuring Techniques for Path and Visibility Problems" +, type = "Ph.{D}. Thesis" +, school = "University of New Mexico" +, address = "Albuquerque, NM 87131" +, year = 1992 +, keywords = "doctoral thesis" +, update = "93.05 moret" } @inproceedings{km-fsp-95 -, author = "A. A. Kooshesh and B. M. E. Moret" -, title = "Folding a simple polygons: a paradigm for computational geometry" -, booktitle = "Proc. ACM Comput. Science Conf." -, year = 1995 -, pages = "114--118" -, update = "98.03 moret" +, author = "A. A. Kooshesh and B. M. E. Moret" +, title = "Folding a simple polygons: a paradigm for computational geometry" +, booktitle = "Proc. ACM Comput. Science Conf." +, year = 1995 +, pages = "114--118" +, update = "98.03 moret" } @inproceedings{km-ftsps-91 -, author = "A. A. Kooshesh and B. M. E. Moret" -, title = "Folding triangulated simple polygons: structural and algorithmic results" -, booktitle = "Proc. 3rd Int'l Conf. on Information and Computing" -, series = "Lecture Notes Comput. Sci." -, volume = 497 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "102--110" -, update = "93.09 erickson, 93.05 moret" +, author = "A. A. Kooshesh and B. M. E. Moret" +, title = "Folding triangulated simple polygons: structural and algorithmic results" +, booktitle = "Proc. 3rd Int'l Conf. on Information and Computing" +, series = "Lecture Notes Comput. Sci." +, volume = 497 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "102--110" +, update = "93.09 erickson, 93.05 moret" } @article{km-tcvts-92 -, author = "A. A. Kooshesh and B. M. E. Moret" -, title = "Three-coloring the vertices of a triangulated simple polygon" -, journal = "Pattern Recogn." -, volume = 25 -, year = 1992 -, pages = 443 -, update = "93.05 moret" +, author = "A. A. Kooshesh and B. M. E. Moret" +, title = "Three-coloring the vertices of a triangulated simple polygon" +, journal = "Pattern Recogn." +, volume = 25 +, year = 1992 +, pages = 443 +, update = "93.05 moret" } @article{kms-ibpyp-90 -, author = "A. A. Kooshesh and B. M. E. Moret and L. A. Sz{\'e}kely" -, title = "Improved bounds for the prison yard problem" -, journal = "Congr. Numer." -, volume = 76 -, year = 1990 -, pages = "145--149" -, update = "93.09 rote, 93.05 moret" +, author = "A. A. Kooshesh and B. M. E. Moret and L. A. Sz{\'e}kely" +, title = "Improved bounds for the prison yard problem" +, journal = "Congr. Numer." +, volume = 76 +, year = 1990 +, pages = "145--149" +, update = "93.09 rote, 93.05 moret" } @article{k-amctp-63 -, author = "R. J. Kopec" -, title = "An alternate method for the construction of {Thiessen} polygons" -, journal = "Professional Geographer" -, volume = 14 -, year = 1963 -, pages = "24--26" +, author = "R. J. Kopec" +, title = "An alternate method for the construction of {Thiessen} polygons" +, journal = "Professional Geographer" +, volume = 14 +, year = 1963 +, pages = "24--26" } @article{kj-mecha-78 -, author = "J. Koplowitz and D. Jouppi" -, title = "A more efficient convex hull algorithm" -, journal = "Inform. Process. Lett." -, volume = 7 -, year = 1978 -, pages = "56--57" +, author = "J. Koplowitz and D. Jouppi" +, title = "A more efficient convex hull algorithm" +, journal = "Inform. Process. Lett." +, volume = 7 +, year = 1978 +, pages = "56--57" } @incollection{kg-xdgc-94 -, author = "Manfred Kopp and Michael Gervautz" -, title = "{XOR}-Drawing with Guaranteed Contrast" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "413--414" -, keywords = "cursor" -, update = "94.09 heckbert" -, annote = "Gives simple guidelines for the choice of write mask when +, author = "Manfred Kopp and Michael Gervautz" +, title = "{XOR}-Drawing with Guaranteed Contrast" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "413--414" +, keywords = "cursor" +, update = "94.09 heckbert" +, annote = "Gives simple guidelines for the choice of write mask when drawing cursors and other graphics with exclusive-OR on multi-bit frame buffers." } @article{k-aapge-78 -, author = "R. Koppe" -, title = "Automatische Abbildung eines planaren Graphen in die Ebene mit beliebig vorgebbaren Orten der Knotenbilder" -, journal = "Computing" -, volume = 20 -, year = 1978 -, pages = "61--73" -, update = "98.03 bibrelex" +, author = "R. Koppe" +, title = "Automatische Abbildung eines planaren Graphen in die Ebene mit beliebig vorgebbaren Orten der Knotenbilder" +, journal = "Computing" +, volume = 20 +, year = 1978 +, pages = "61--73" +, update = "98.03 bibrelex" } @article{kmw-jsttd-91 -, author = "R. Kopperman and P. R. Meyer and R. G. Wilson" -, title = "A {Jordan} surface theorem for three-dimensional digital spaces" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "155--161" +, author = "R. Kopperman and P. R. Meyer and R. G. Wilson" +, title = "A {Jordan} surface theorem for three-dimensional digital spaces" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "155--161" } @techreport{k-smrra- -, author = "J. U. Korien" -, title = "Solid Modeling Requirements for Robotic Applications" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = "??" -, update = "97.11 bibrelex" +, author = "J. U. Korien" +, title = "Solid Modeling Requirements for Robotic Applications" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = "??" +, update = "97.11 bibrelex" } @inproceedings{ksfsp-fnnsm-96 -, author = "Flip Korn and Nikolaos Sidiropoulos and Christos Faloutsos and Eliot Siegel and Zenon Protopapa" -, title = "Fast Nearest Neighbor Search in Medical Image Database" -, booktitle = "Proc. 22nd VLDB Conference" -, year = 1996 -, pages = "215--226" -, update = "97.07 agarwal" +, author = "Flip Korn and Nikolaos Sidiropoulos and Christos Faloutsos and Eliot Siegel and Zenon Protopapa" +, title = "Fast Nearest Neighbor Search in Medical Image Database" +, booktitle = "Proc. 22nd VLDB Conference" +, year = 1996 +, pages = "215--226" +, update = "97.07 agarwal" } @inproceedings{k-vdags-91 -, author = "N. M. Korneenko" -, title = "Voronoi diagrams: applications and generalizations: a survey" -, booktitle = "Geometrical Problems of Image Processing, Proc. 5th Workshop, Georgenthal, March 11--15, 1991" -, series = "Research in Informatics" -, volume = 4 -, publisher = "Akademie-Verlag" -, address = "Berlin, Germany" -, year = 1991 -, pages = "136--146" -, keywords = "{Voronoi} diagram, generalized {Voronoi} diagram, bibliography" -, update = "95.01 korneenko" -, annote = "Partly classified bibliography" +, author = "N. M. Korneenko" +, title = "Voronoi diagrams: applications and generalizations: a survey" +, booktitle = "Geometrical Problems of Image Processing, Proc. 5th Workshop, Georgenthal, March 11--15, 1991" +, series = "Research in Informatics" +, volume = 4 +, publisher = "Akademie-Verlag" +, address = "Berlin, Germany" +, year = 1991 +, pages = "136--146" +, keywords = "{Voronoi} diagram, generalized {Voronoi} diagram, bibliography" +, update = "95.01 korneenko" +, annote = "Partly classified bibliography" } @inproceedings{km-afwps-90 -, author = "N. M. Korneenko and H. Martini" -, title = "Approximating finite weighted point sets by hyperplanes" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "276--286" +, author = "N. M. Korneenko and H. Martini" +, title = "Approximating finite weighted point sets by hyperplanes" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "276--286" } @incollection{km-hart-93 -, author = "N. M. Korneenko and H. Martini" -, title = "Hyperplane Approximation and Related Topics" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, address = "Heidelberg" -, year = 1993 -, pages = "135--161" -, keywords = "survey paper, hyperplane approximation/fitting" -, update = "97.03 agarwal, 93.09 erickson" +, author = "N. M. Korneenko and H. Martini" +, title = "Hyperplane Approximation and Related Topics" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, address = "Heidelberg" +, year = 1993 +, pages = "135--161" +, keywords = "survey paper, hyperplane approximation/fitting" +, update = "97.03 agarwal, 93.09 erickson" } @article{km-lppcs-93 -, author = "N. M. Korneenko and N. N. Metelskij" -, title = "On lattice points in polyhedral cross-sections" -, journal = "Discrete Comput. Geom." -, volume = 10 -, number = 1 -, year = 1993 -, pages = "95--99" -, keywords = "convex polyhedron, integer points" -, update = "95.01 korneenko" +, author = "N. M. Korneenko and N. N. Metelskij" +, title = "On lattice points in polyhedral cross-sections" +, journal = "Discrete Comput. Geom." +, volume = 10 +, number = 1 +, year = 1993 +, pages = "95--99" +, keywords = "convex polyhedron, integer points" +, update = "95.01 korneenko" } @article{km-fpraa-83 -, author = "P. Kornerup and D. Matula" -, title = "Finite Precision Rational Arithmetic: {An} Arithmetic Unit" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, number = 4 -, month = apr -, year = 1983 -, update = "98.03 bibrelex" +, author = "P. Kornerup and D. Matula" +, title = "Finite Precision Rational Arithmetic: {An} Arithmetic Unit" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, number = 4 +, month = apr +, year = 1983 +, update = "98.03 bibrelex" } @mastersthesis{k-gbs-83 -, author = "M. Korp" -, title = "Geradlinig begrenztes {Suchen}" -, type = "M.{Sc}. Thesis" -, school = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1983 -, keywords = "master thesis" +, author = "M. Korp" +, title = "Geradlinig begrenztes {Suchen}" +, type = "M.{Sc}. Thesis" +, school = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1983 +, keywords = "master thesis" } @incollection{kps-stvl-90 -, author = "B. Korte and H. J. Pr{\"o}mel and A. Steger" -, title = "Steiner trees in {VLSI}-Layout" -, editor = "B. Korte and L. Lov{\'a}sz and H. J. Pr{\"o}mel and A. Schrijver" -, booktitle = "Paths, Flows and VLSI-Layout" -, publisher = "Springer-Verlag" -, year = 1990 -, update = "98.07 bibrelex" +, author = "B. Korte and H. J. Pr{\"o}mel and A. Steger" +, title = "Steiner trees in {VLSI}-Layout" +, editor = "B. Korte and L. Lov{\'a}sz and H. J. Pr{\"o}mel and A. Schrijver" +, booktitle = "Paths, Flows and VLSI-Layout" +, publisher = "Springer-Verlag" +, year = 1990 +, update = "98.07 bibrelex" } @book{kv-cota-00 -, author = "B. Korte and J. Vygen" -, title = "Combinatorial Optimization, Theory and Algorithms" -, series = "Algorithms and Combinatorics" -, volume = 21 -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 2000 -, update = "00.11 smid" +, author = "B. Korte and J. Vygen" +, title = "Combinatorial Optimization, Theory and Algorithms" +, series = "Algorithms and Combinatorics" +, volume = 21 +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 2000 +, update = "00.11 smid" } @inproceedings{kr-dgipc-99 -, author = "Ulrich H. Kortenkamp and J{\"u}rgen Richter-Gebert" -, title = "Dynamic Geometry {I}: The Problem of Continuity" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "51--53" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Ulrich H. Kortenkamp and J{\"u}rgen Richter-Gebert" +, title = "Dynamic Geometry {I}: The Problem of Continuity" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "51--53" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{kr-dgiia-99 -, author = "Ulrich H. Kortenkamp and J{\"u}rgen Richter-Gebert" -, title = "Dynamic Geometry {II}: Applications" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "109--111" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Ulrich H. Kortenkamp and J{\"u}rgen Richter-Gebert" +, title = "Dynamic Geometry {II}: Applications" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "109--111" +, update = "00.03 bibrelex, 99.07 bibrelex" } @incollection{kg-ifics-96 -, author = "P. Kortum and S. Geisler" -, title = "Implementation of a foveated image coding system for image bandwidth reduction" -, booktitle = "Human Visions and Electronic Imaging" -, series = "Proc. SPIE" -, volume = 2657 -, publisher = "SPIE" -, year = 1996 -, pages = "350--360" -, update = "98.07 bibrelex" +, author = "P. Kortum and S. Geisler" +, title = "Implementation of a foveated image coding system for image bandwidth reduction" +, booktitle = "Human Visions and Electronic Imaging" +, series = "Proc. SPIE" +, volume = 2657 +, publisher = "SPIE" +, year = 1996 +, pages = "350--360" +, update = "98.07 bibrelex" } @article{kt-cdcct-90 -, author = "G. K{\'o}s and J. T{\"o}r{\H o}csik" -, title = "Convex disks can cover their shadow" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "529--531" +, author = "G. K{\'o}s and J. T{\"o}r{\H o}csik" +, title = "Convex disks can cover their shadow" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "529--531" } @inproceedings{km-pgand-91 -, author = "C. Kosak and J. Marks" -, title = "A Parallel Genetic Algorithm for Network-Diagram Layout" -, booktitle = "Proc. 4th Internat. Conf. on Genetic Algorithms" -, nickname = "ICGA '91" -, year = 1991 -, keywords = "graph drawing" -, update = "98.07 bibrelex, 93.09 tamassia" +, author = "C. Kosak and J. Marks" +, title = "A Parallel Genetic Algorithm for Network-Diagram Layout" +, booktitle = "Proc. 4th Internat. Conf. on Genetic Algorithms" +, nickname = "ICGA '91" +, year = 1991 +, keywords = "graph drawing" +, update = "98.07 bibrelex, 93.09 tamassia" } @article{kms-alnds-94 -, author = "C. Kosak and J. Marks and S. Shieber" -, title = "Automating the Layout of Network Diagrams with Specified Visual Organization" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 24 -, number = 3 -, year = 1994 -, pages = "440--454" -, keywords = "graph drawing" -, update = "95.05 tamassia" +, author = "C. Kosak and J. Marks and S. Shieber" +, title = "Automating the Layout of Network Diagrams with Specified Visual Organization" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 24 +, number = 3 +, year = 1994 +, pages = "440--454" +, keywords = "graph drawing" +, update = "95.05 tamassia" } @inproceedings{k-oricm-94 -, author = "S. R. Kosaraju" -, title = "An Optimal {RAM} Implementation of Catenable Min Double-ended Queues" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "195--203" -, update = "98.03 bibrelex" +, author = "S. R. Kosaraju" +, title = "An Optimal {RAM} Implementation of Catenable Min Double-ended Queues" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "195--203" +, update = "98.03 bibrelex" } @inproceedings{k-lssl-81 -, author = "S. R. Kosaraju" -, title = "Localized Search in Sorted Lists" -, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." -, year = 1981 -, pages = "62--69" -, update = "98.03 bibrelex" +, author = "S. R. Kosaraju" +, title = "Localized Search in Sorted Lists" +, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." +, year = 1981 +, pages = "62--69" +, update = "98.03 bibrelex" } @inproceedings{k-msp-79 -, author = "S. R. Kosaraju" -, title = "On a multidimensional search problem" -, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." -, year = 1979 -, pages = "67--73" +, author = "S. R. Kosaraju" +, title = "On a multidimensional search problem" +, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." +, year = 1979 +, pages = "67--73" } @article{ka-osbmc-88 -, author = "S. R. Kosaraju and M. J. Atallah" -, title = "Optimal simulations between meshed-connected arrays of processors" -, journal = "J. ACM" -, volume = "??" -, month = jul -, year = 1988 -, pages = "635--650" -, update = "98.03 bibrelex" +, author = "S. R. Kosaraju and M. J. Atallah" +, title = "Optimal simulations between meshed-connected arrays of processors" +, journal = "J. ACM" +, volume = "??" +, month = jul +, year = 1988 +, pages = "635--650" +, update = "98.03 bibrelex" } @incollection{kd-opets-88 -, author = "S. R. Kosaraju and A. L. Delcher" -, title = "Optimal Parallel Evaluation of Tree-Structured Computations by Raking" -, booktitle = "Proc. AWOC 88" -, series = "Lecture Notes Comput. Sci." -, volume = 319 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "101--110" -, update = "96.09 orourke" +, author = "S. R. Kosaraju and A. L. Delcher" +, title = "Optimal Parallel Evaluation of Tree-Structured Computations by Raking" +, booktitle = "Proc. AWOC 88" +, series = "Lecture Notes Comput. Sci." +, volume = 319 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "101--110" +, update = "96.09 orourke" } @techreport{ksb-aagdp-97 -, author = "S. R. Kosaraju and A. A. Sch{\"a}ffer and L. G. Biesecker" -, title = "Approximation Algorithms for a Genetic Diagnostics Problem" -, type = "Research {Report}" -, institution = "Center for Geometric Computing" -, address = "Johns Hopkins Univ." -, year = 1997 -, update = "97.03 tamassia" +, author = "S. R. Kosaraju and A. A. Sch{\"a}ffer and L. G. Biesecker" +, title = "Approximation Algorithms for a Genetic Diagnostics Problem" +, type = "Research {Report}" +, institution = "Center for Geometric Computing" +, address = "Johns Hopkins Univ." +, year = 1997 +, update = "97.03 tamassia" } @book{k-tvs1-69 -, author = "G. K{\"o}the" -, title = "Topological Vector Spaces {I}" -, publisher = "Springer-Verlag" -, year = 1969 -, update = "98.03 bibrelex" +, author = "G. K{\"o}the" +, title = "Topological Vector Spaces {I}" +, publisher = "Springer-Verlag" +, year = 1969 +, update = "98.03 bibrelex" } @inproceedings{ks-sssj-97 -, author = "N. Koudas and K. C. Sevcik" -, title = "Size separation spatial join" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1997 -, pages = "324--335" -, update = "97.07 agarwal" +, author = "N. Koudas and K. C. Sevcik" +, title = "Size separation spatial join" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1997 +, pages = "324--335" +, update = "97.07 agarwal" } @techreport{ko-fapd-82 -, author = "N. Kouta and J. O'Rourke" -, title = "Fast algorithms for polygon decomposition" -, type = "Report" -, number = "JHU82-10" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1982 +, author = "N. Kouta and J. O'Rourke" +, title = "Fast algorithms for polygon decomposition" +, type = "Report" +, number = "JHU82-10" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1982 } @misc{kn-dgd-93 -, author = "E. Koutsofios and S. North" -, title = "Drawing graphs with {\em dot}" -, year = 1993 -, note = "{\em dot} user's manual. \url{ftp.research.bell-labs.com/dist/drawdag/}" -, keywords = "graph drawing" -, update = "96.09 tamassia" +, author = "E. Koutsofios and S. North" +, title = "Drawing graphs with {\em dot}" +, year = 1993 +, note = "{\em dot} user's manual. \url{ftp.research.bell-labs.com/dist/drawdag/}" +, keywords = "graph drawing" +, update = "96.09 tamassia" } @techreport{kn-dgd-95 -, author = "E. Koutsofios and S. North" -, title = "Drawing Graphs with {\em dot}" -, institution = "AT\&T Bell Laboratories, Murray Hill, NJ." -, year = 1995 -, note = "Available from \url{http://www.research.bell-labs.com/dist/drawdag}" -, keywords = "graph drawing, system" -, update = "96.09 tamassia, 96.04 garg" +, author = "E. Koutsofios and S. North" +, title = "Drawing Graphs with {\em dot}" +, institution = "AT\&T Bell Laboratories, Murray Hill, NJ." +, year = 1995 +, note = "Available from \url{http://www.research.bell-labs.com/dist/drawdag}" +, keywords = "graph drawing, system" +, update = "96.09 tamassia, 96.04 garg" } @inproceedings{k-grsmo-85 -, author = "A. Koutsou" -, title = "A geometric reasoning system for moving an object while maintaining contact with others" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "67--74" -, cites = "hw-moc-84, hw-rmomp-84, k-srspm-84, lw-apcfp-79, m-cfccc-79, m-hct-78, p-smtsr-79, rt-mfcsg-78, ZZZ" -, update = "97.11 bibrelex" +, author = "A. Koutsou" +, title = "A geometric reasoning system for moving an object while maintaining contact with others" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "67--74" +, cites = "hw-moc-84, hw-rmomp-84, k-srspm-84, lw-apcfp-79, m-cfccc-79, m-hct-78, p-smtsr-79, rt-mfcsg-78, ZZZ" +, update = "97.11 bibrelex" } @techreport{k-srspm-84 -, author = "A. Koutsou" -, title = "A Spatial Reasoning System for Parts Mating Operations" -, type = "Working {Paper}" -, number = 173 -, institution = "Dept. Artif. Intell., Univ. Edinburgh" -, address = "Edingburgh, Scotland" -, month = oct -, year = 1984 -, update = "97.11 bibrelex" +, author = "A. Koutsou" +, title = "A Spatial Reasoning System for Parts Mating Operations" +, type = "Working {Paper}" +, number = 173 +, institution = "Dept. Artif. Intell., Univ. Edinburgh" +, address = "Edingburgh, Scotland" +, month = oct +, year = 1984 +, update = "97.11 bibrelex" } @techreport{k-oeupj-88 -, author = "A. Koutsou" -, title = "Object exploration using a parallel-jaw gripper" -, type = "Technical {Report}" -, number = "MS-CIS-88-48" -, institution = "Grasp Lab, Univ. Pennsylvania" -, year = 1988 -, update = "98.07 bibrelex" +, author = "A. Koutsou" +, title = "Object exploration using a parallel-jaw gripper" +, type = "Technical {Report}" +, number = "MS-CIS-88-48" +, institution = "Grasp Lab, Univ. Pennsylvania" +, year = 1988 +, update = "98.07 bibrelex" } @inproceedings{kps-obp-90 -, author = "E. Koutsoupias and C. H. Papadimitriou and M. Sideri" -, title = "On the optimal bisection of a polygon" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "198--202" -, precedes = "kps-obp-92" -, cites = "ps-bwgg-90, ps-coac-82, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "E. Koutsoupias and C. H. Papadimitriou and M. Sideri" +, title = "On the optimal bisection of a polygon" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "198--202" +, precedes = "kps-obp-92" +, cites = "ps-bwgg-90, ps-coac-82, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{kps-obp-92 -, author = "Elias Koutsoupias and Christos H. Papadimitriou and Martha Sideri" -, title = "On the Optimal Bisection of a Polygon" -, journal = "ORSA J. Comput." -, volume = 4 -, number = 4 -, year = 1992 -, pages = "435--438" -, succeeds = "kps-obp-90" -, update = "98.03 mitchell" -, annote = "Special issue on computational geometry; J. Mitchell and +, author = "Elias Koutsoupias and Christos H. Papadimitriou and Martha Sideri" +, title = "On the Optimal Bisection of a Polygon" +, journal = "ORSA J. Comput." +, volume = 4 +, number = 4 +, year = 1992 +, pages = "435--438" +, succeeds = "kps-obp-90" +, update = "98.03 mitchell" +, annote = "Special issue on computational geometry; J. Mitchell and J. Karel Lenstra, eds." } @article{kst-pkz-54 -, author = "T. K{\H o}v{\'a}ri and V. T. S{ \'o}s and P. Tur{\'a}n" -, title = "On a problem of {K}. {Zarankiewicz}" -, journal = "Colloq. Math." -, volume = 3 -, year = 1954 -, pages = "50--57" -, update = "98.03 bibrelex" +, author = "T. K{\H o}v{\'a}ri and V. T. S{ \'o}s and P. Tur{\'a}n" +, title = "On a problem of {K}. {Zarankiewicz}" +, journal = "Colloq. Math." +, volume = 3 +, year = 1954 +, pages = "50--57" +, update = "98.03 bibrelex" } @techreport{ky-acdn-?? -, author = "D. Kozen and C. K. Yap" -, title = "Algebraic cell decomposition in {NC}" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "D. Kozen and C. K. Yap" +, title = "Algebraic cell decomposition in {NC}" +, type = "Manuscript" +, institution = "??" +, year = "??" } @techreport{k-apacl-94 -, author = "B. van de Kraats" -, title = "Approximation of polygons with applications to circuit layout" -, type = "Report" -, number = "INF/SC-94-39" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1994 -, update = "98.03 bibrelex" +, author = "B. van de Kraats" +, title = "Approximation of polygons with applications to circuit layout" +, type = "Report" +, number = "INF/SC-94-39" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1994 +, update = "98.03 bibrelex" } @incollection{kl-cwrfm-84 -, author = "M. R. Kramer and J. van Leeuwen" -, title = "The Complexity of Wire-Routing and Finding Minimum Area Layouts for Arbitrary {VLSI} Circuits" -, editor = "Franco P. Preparata" -, booktitle = "VLSI Theory" -, series = "Adv. Comput. Res." -, volume = 2 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1984 -, pages = "129--146" -, keywords = "graph drawing" -, update = "01.04 icking, 93.09 tamassia" +, author = "M. R. Kramer and J. van Leeuwen" +, title = "The Complexity of Wire-Routing and Finding Minimum Area Layouts for Arbitrary {VLSI} Circuits" +, editor = "Franco P. Preparata" +, booktitle = "VLSI Theory" +, series = "Adv. Comput. Res." +, volume = 2 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1984 +, pages = "129--146" +, keywords = "graph drawing" +, update = "01.04 icking, 93.09 tamassia" } @inproceedings{kkm-llrwt-90 -, author = "E. Kranakis and D. Krizanc and L. Meertens" -, title = "Link length of rectilinear watchman tours in grids" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "328--331" -, cites = "cn-owr-86, dls-oaclc-89, g-sncpg-77, h-ragp-90, lpsssstwy-clcsp-87, n-gwg-86, o-agta-87, s-pptld-86, s-agfnp-87, s-mlppr-87, ZZZ" -, update = "98.07 bibrelex" +, author = "E. Kranakis and D. Krizanc and L. Meertens" +, title = "Link length of rectilinear watchman tours in grids" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "328--331" +, cites = "cn-owr-86, dls-oaclc-89, g-sncpg-77, h-ragp-90, lpsssstwy-clcsp-87, n-gwg-86, o-agta-87, s-pptld-86, s-agfnp-87, s-mlppr-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{kku-ndvrg-95 -, author = "E. Kranakis and D. Krizanc and J. Urrutia" -, title = "On the Number of Directions in Visibility Representations of Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "167--176" -, keywords = "graph drawing, visibility" -, update = "95.01 tamassia" +, author = "E. Kranakis and D. Krizanc and J. Urrutia" +, title = "On the Number of Directions in Visibility Representations of Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "167--176" +, keywords = "graph drawing, visibility" +, update = "95.01 tamassia" } @unpublished{kp-vil-90 -, author = "E. Kranakis and M. Picchiola" -, title = "Visibility in integer lattices" -, year = 1990 -, note = "In Preparation" -, update = "97.11 bibrelex" +, author = "E. Kranakis and M. Picchiola" +, title = "Visibility in integer lattices" +, year = 1990 +, note = "In Preparation" +, update = "97.11 bibrelex" } @inproceedings{kp-agpil-92 -, author = "Evangelos Kranakis and Michel Pocchiola" -, title = "Art Gallery Problems in Integer Lattice Systems" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = 29 -, update = "00.03 bibrelex" +, author = "Evangelos Kranakis and Michel Pocchiola" +, title = "Art Gallery Problems in Integer Lattice Systems" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = 29 +, update = "00.03 bibrelex" } @article{kp-cpil-94 -, author = "E. Kranakis and M. Pocchiola" -, title = "Camera placement in integer lattices" -, journal = "Discrete Comput. Geom." -, volume = 12 -, number = 1 -, month = jul -, year = 1994 -, pages = "91--104" -, keywords = "" -, succeeds = "kp-evpil-90" -, update = "96.05 pocchiola, 95.11 pocchiola" +, author = "E. Kranakis and M. Pocchiola" +, title = "Camera placement in integer lattices" +, journal = "Discrete Comput. Geom." +, volume = 12 +, number = 1 +, month = jul +, year = 1994 +, pages = "91--104" +, keywords = "" +, succeeds = "kp-evpil-90" +, update = "96.05 pocchiola, 95.11 pocchiola" } @article{kp-cprdt-94 -, author = "E. Kranakis and M. Pocchiola" -, title = "Counting problems relating to a {Dirichlet}'s theorem" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, number = 6 -, month = dec -, year = 1994 -, pages = "309--325" -, succeeds = "kp-evpil-90" -, update = "96.05 pocchiola, 95.11 pocchiola" +, author = "E. Kranakis and M. Pocchiola" +, title = "Counting problems relating to a {Dirichlet}'s theorem" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, number = 6 +, month = dec +, year = 1994 +, pages = "309--325" +, succeeds = "kp-evpil-90" +, update = "96.05 pocchiola, 95.11 pocchiola" } @techreport{kp-evpil-89 -, author = "E. Kranakis and M. Pocchiola" -, title = "Enumeration and Visibility Problems in Integer Lattices" -, type = "Technical {Report}" -, number = 13 -, institution = "LIENS" -, month = dec -, year = 1989 -, update = "97.11 bibrelex" +, author = "E. Kranakis and M. Pocchiola" +, title = "Enumeration and Visibility Problems in Integer Lattices" +, type = "Technical {Report}" +, number = 13 +, institution = "LIENS" +, month = dec +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{kp-evpil-90 -, author = "E. Kranakis and M. Pocchiola" -, title = "Enumeration and visibility problems in integer lattices" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "261--270" -, cites = "a-srcg-74, a-iant-76, bz-gi-88, cegsw-ccbac-88t, e-acg-87, e-irpnn-62, hs-pvnlp-71, hw-itn-79, k-sipan-59, k-sa-81, kp-evpil-89, kp-vil-90, m-pepfs-85, n-nt-83, n-edlde-48, o-agta-87, r-lent-64, r-??-60, r-svp-66, so-wcoac-86, st-epdg-83, ZZZ" -, update = "97.11 bibrelex" +, author = "E. Kranakis and M. Pocchiola" +, title = "Enumeration and visibility problems in integer lattices" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "261--270" +, cites = "a-srcg-74, a-iant-76, bz-gi-88, cegsw-ccbac-88t, e-acg-87, e-irpnn-62, hs-pvnlp-71, hw-itn-79, k-sipan-59, k-sa-81, kp-evpil-89, kp-vil-90, m-pepfs-85, n-nt-83, n-edlde-48, o-agta-87, r-lent-64, r-??-60, r-svp-66, so-wcoac-86, st-epdg-83, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{ks-aools-97 -, author = "Evangelos Kranakis and Anthony Spatharis" -, title = "Almost Optimal On-line Search in Unknown Streets" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "93--99" -, update = "98.11 bibrelex, 97.11 jones" +, author = "Evangelos Kranakis and Anthony Spatharis" +, title = "Almost Optimal On-line Search in Unknown Streets" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "93--99" +, update = "98.11 bibrelex, 97.11 jones" } @inproceedings{ku-itsns-95 -, author = "Evangelos Kranakis and Jorge Urrutia" -, title = "Isomorphic Triangulations with Small Number of {Steiner} Points" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "291--296" -, update = "95.09 jones" +, author = "Evangelos Kranakis and Jorge Urrutia" +, title = "Isomorphic Triangulations with Small Number of {Steiner} Points" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "291--296" +, update = "95.09 jones" } @article{kkmnsu-sgr-97 -, author = "E. Kranankis and D. Krizanc and A. Maheshwari and M. Noy and J.-R. Sack and J. Urrutia" -, title = "Stage-graph representations" -, journal = "Discrete Applied Mathematic" -, volume = 75 -, number = 1 -, year = 1997 -, pages = "71--80" -, update = "97.11 sack" +, author = "E. Kranankis and D. Krizanc and A. Maheshwari and M. Noy and J.-R. Sack and J. Urrutia" +, title = "Stage-graph representations" +, journal = "Discrete Applied Mathematic" +, volume = 75 +, number = 1 +, year = 1997 +, pages = "71--80" +, update = "97.11 sack" } @proceedings{k-gd-99 -, title = "Graph Drawing (Proc. GD~'99)" -, editor = "J. Kratochv{\'\i}l" -, series = "Lecture Notes Comput. Sci." -, volume = 1731 -, publisher = "Springer-Verlag" -, year = 1999 -, update = "00.03 vismara" +, title = "Graph Drawing (Proc. GD~'99)" +, editor = "J. Kratochv{\'\i}l" +, series = "Lecture Notes Comput. Sci." +, volume = 1731 +, publisher = "Springer-Verlag" +, year = 1999 +, update = "00.03 vismara" } @article{kln-ncstl-91 -, author = "J. Kratochvil and A. Lubiw and J. Ne{\v s}et{\v r}il" -, title = "Non-crossing subgraphs in topological layouts" -, journal = "SIAM J. Discrete Math." -, volume = 4 -, year = 1991 -, pages = "223--244" -, update = "97.11 bibrelex" +, author = "J. Kratochvil and A. Lubiw and J. Ne{\v s}et{\v r}il" +, title = "Non-crossing subgraphs in topological layouts" +, journal = "SIAM J. Discrete Math." +, volume = 4 +, year = 1991 +, pages = "223--244" +, update = "97.11 bibrelex" } @article{km-igs-94 -, author = "J. Kratochv{\'\i}l and J. Matou{\v s}ek" -, title = "Intersection graphs of segments" -, journal = "J. Combin. Theory Ser. B" -, volume = 35 -, number = 2 -, year = 1994 -, pages = "317--339" -, update = "95.01 matousek" +, author = "J. Kratochv{\'\i}l and J. Matou{\v s}ek" +, title = "Intersection graphs of segments" +, journal = "J. Combin. Theory Ser. B" +, volume = 35 +, number = 2 +, year = 1994 +, pages = "317--339" +, update = "95.01 matousek" } @article{km-sgrhr-91 -, author = "J. Kratochv{\'\i}l and J. Matou{\v s}ek" -, title = "String graphs requiring huge representations" -, journal = "J. Combin. Theory Ser. B" -, volume = 31 -, number = 1 -, year = 1991 -, pages = "1--4" -, comments = "Shows that there are n-vertex graphs representable as +, author = "J. Kratochv{\'\i}l and J. Matou{\v s}ek" +, title = "String graphs requiring huge representations" +, journal = "J. Combin. Theory Ser. B" +, volume = 31 +, number = 1 +, year = 1991 +, pages = "1--4" +, comments = "Shows that there are n-vertex graphs representable as intersection graphs of curves in the plane, such that in any representation some 2 curves cross exponentially many times." -, update = "95.01 matousek" +, update = "95.01 matousek" } @article{kn-iscpi-90 -, author = "J. Kratochvil and J. Ne{\v s}et{\v r}il" -, title = "Independend set and clique problems in intersection-defined classes of graphs" -, journal = "Comment. Math. Univ. Carol." -, volume = 31 -, year = 1990 -, pages = "85--93" -, update = "97.11 bibrelex" +, author = "J. Kratochvil and J. Ne{\v s}et{\v r}il" +, title = "Independend set and clique problems in intersection-defined classes of graphs" +, journal = "Comment. Math. Univ. Carol." +, volume = 31 +, year = 1990 +, pages = "85--93" +, update = "97.11 bibrelex" } @inproceedings{ksl-pcdcv-97 -, author = "F.-L. Krause and C. Stiel and J. Luddermann" -, title = "Processing of {CAD}-data-conversion, verification and repair" -, booktitle = "Proc. 4th ACM Sympos. Solid Modeling" -, site = "Atlanta, GA" -, year = 1997 -, note = "To appear" -, update = "98.07 bibrelex" +, author = "F.-L. Krause and C. Stiel and J. Luddermann" +, title = "Processing of {CAD}-data-conversion, verification and repair" +, booktitle = "Proc. 4th ACM Sympos. Solid Modeling" +, site = "Atlanta, GA" +, year = 1997 +, note = "To appear" +, update = "98.07 bibrelex" } @inproceedings{kp-sstma-90 -, author = "D. Kravets and J. K. Park" -, title = "Selection and sorting in totally monotone arrays" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "494--502" +, author = "D. Kravets and J. K. Park" +, title = "Selection and sorting in totally monotone arrays" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "494--502" } @book{kn-mmpep-77 -, author = "M. G. Krein and A. A. Nudel'man" -, title = "The {Markov} moment problem and extremal problems" -, publisher = "American Mathematical Society" -, year = 1977 +, author = "M. G. Krein and A. A. Nudel'man" +, title = "The {Markov} moment problem and extremal problems" +, publisher = "American Mathematical Society" +, year = 1977 } @phdthesis{k-nrdsc-92 -, author = "M. J. van Kreveld" -, title = "New Results on Data Structures in Computational Geometry" -, type = "Ph.{D}. Dissertation" -, school = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1992 -, keywords = "doctoral thesis" -, update = "97.07 agarwal, 94.05 schwarzkopf" +, author = "M. J. van Kreveld" +, title = "New Results on Data Structures in Computational Geometry" +, type = "Ph.{D}. Dissertation" +, school = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1992 +, keywords = "doctoral thesis" +, update = "97.07 agarwal, 94.05 schwarzkopf" } @article{kb-fsrsp-91 -, author = "M. J. van Kreveld and M. T. de Berg" -, title = "Finding squares and rectangles in sets of points" -, journal = "BIT" -, volume = 31 -, year = 1991 -, pages = "202--219" +, author = "M. J. van Kreveld and M. T. de Berg" +, title = "Finding squares and rectangles in sets of points" +, journal = "BIT" +, volume = 31 +, year = 1991 +, pages = "202--219" } @techreport{ko-cst-88 -, author = "M. J. van Kreveld and M. H. Overmars" -, title = "Concatenable segment trees" -, number = "RUU-CS-88-36" -, institution = "Computer Science Department, Univ. of Utrecht" -, address = "Utrecht, Netherlands" -, year = 1988 -, update = "98.03 bibrelex" +, author = "M. J. van Kreveld and M. H. Overmars" +, title = "Concatenable segment trees" +, number = "RUU-CS-88-36" +, institution = "Computer Science Department, Univ. of Utrecht" +, address = "Utrecht, Netherlands" +, year = 1988 +, update = "98.03 bibrelex" } @inproceedings{ko-csdp-90 -, author = "Marc J. van Kreveld and Mark H. Overmars" -, title = "Concatenable Structures for Decomposable Problems" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 15 -, update = "00.03 bibrelex" +, author = "Marc J. van Kreveld and Mark H. Overmars" +, title = "Concatenable Structures for Decomposable Problems" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 15 +, update = "00.03 bibrelex" } @article{ko-dkdt-91 -, author = "M. J. van Kreveld and M. H. Overmars" -, title = "Divided $k$-d trees" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "840--858" +, author = "M. J. van Kreveld and M. H. Overmars" +, title = "Divided $k$-d trees" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "840--858" } @inproceedings{koa-iqsd-90i -, author = "M. J. van Kreveld and M. H. Overmars and P. K. Agarwal" -, title = "Intersection queries in sets of disks" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "393--403" +, author = "M. J. van Kreveld and M. H. Overmars and P. K. Agarwal" +, title = "Intersection queries in sets of disks" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "393--403" } @inproceedings{k-att-97 -, author = "M. van Kreveld" -, title = "Algorithms for triangulated terrains" -, booktitle = "Proc. XXIV-th SOFSEM" -, series = "Lecture Notes Comput. Sci." -, number = 1338 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "19--36" -, update = "98.07 oostrum" +, author = "M. van Kreveld" +, title = "Algorithms for triangulated terrains" +, booktitle = "Proc. XXIV-th SOFSEM" +, series = "Lecture Notes Comput. Sci." +, number = 1338 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "19--36" +, update = "98.07 oostrum" } @incollection{k-demta-97 -, author = "M. van Kreveld" -, title = "Digital elevation models and {TIN} algorithms" -, editor = "M. van Kreveld and J. Nievergelt and T. Roos and P. Widmayer" -, booktitle = "Algorithmic Foundations of Geographic Information Systems" -, series = "Lecture Notes Comput. Sci." -, number = 1340 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "37--78" -, update = "99.11 bibrelex, 98.07 oostrum" +, author = "M. van Kreveld" +, title = "Digital elevation models and {TIN} algorithms" +, editor = "M. van Kreveld and J. Nievergelt and T. Roos and P. Widmayer" +, booktitle = "Algorithmic Foundations of Geographic Information Systems" +, series = "Lecture Notes Comput. Sci." +, number = 1340 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "37--78" +, update = "99.11 bibrelex, 98.07 oostrum" } @inproceedings{k-emied-94 -, author = "M. van Kreveld" -, title = "Efficient methods for isoline extraction from a digital elevation model based on triangulated irregular networks" -, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" -, publisher = "Taylor \& Francis" -, year = 1994 -, pages = "835--847" -, note = "to appear in: {\em Int.\ J. on GIS}" -, keywords = "isolines, contours, interval tree, polyhedral terrains" -, update = "96.09 kreveld" +, author = "M. van Kreveld" +, title = "Efficient methods for isoline extraction from a digital elevation model based on triangulated irregular networks" +, booktitle = "Proc. 6th Internat. Sympos. Spatial Data Handling" +, publisher = "Taylor \& Francis" +, year = 1994 +, pages = "835--847" +, note = "to appear in: {\em Int.\ J. on GIS}" +, keywords = "isolines, contours, interval tree, polyhedral terrains" +, update = "96.09 kreveld" } @article{k-emiet-96 -, author = "M. van Kreveld" -, title = "Efficient methods for isoline extraction from a {TIN}" -, journal = "Internat. J. of GIS" -, volume = 10 -, year = 1996 -, pages = "523--540" -, update = "98.07 bibrelex+oostrum" +, author = "M. van Kreveld" +, title = "Efficient methods for isoline extraction from a {TIN}" +, journal = "Internat. J. of GIS" +, volume = 10 +, year = 1996 +, pages = "523--540" +, update = "98.07 bibrelex+oostrum" } @techreport{k-fpfcu-93t -, author = "M. van Kreveld" -, title = "On fat partitioning, fat covering and the union size of polygons" -, type = "Technical Report" -, number = "SOCS-93.2" -, institution = "School of Computer Science, McGill University" -, year = 1993 -, precedes = "k-fpfcu-98, k-fpfcu-93" -, update = "98.11 bibrelex" +, author = "M. van Kreveld" +, title = "On fat partitioning, fat covering and the union size of polygons" +, type = "Technical Report" +, number = "SOCS-93.2" +, institution = "School of Computer Science, McGill University" +, year = 1993 +, precedes = "k-fpfcu-98, k-fpfcu-93" +, update = "98.11 bibrelex" } @inproceedings{k-fpfcu-93 -, author = "Marc van Kreveld" -, title = "On Fat Partitioning, Fat Covering, and the Union Size of Polygons" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "452--463" -, succeeds = "k-fpfcu-93t" -, precedes = "k-fpfcu-98" -, update = "98.11 bibrelex, 98.03 mitchell, 95.01 smid, 93.09 smid, 93.05 jones" +, author = "Marc van Kreveld" +, title = "On Fat Partitioning, Fat Covering, and the Union Size of Polygons" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "452--463" +, succeeds = "k-fpfcu-93t" +, precedes = "k-fpfcu-98" +, update = "98.11 bibrelex, 98.03 mitchell, 95.01 smid, 93.09 smid, 93.05 jones" } @article{k-fpfcu-98 -, author = "Marc van Kreveld" -, title = "On Fat Partitioning, Fat Covering, and the Union Size of Polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, number = 4 -, year = 1998 -, pages = "197--210" -, issn = "0925-7721" -, succeeds = "k-fpfcu-93t, k-fpfcu-93" -, update = "98.11 bibrelex, 98.03 mitchell" +, author = "Marc van Kreveld" +, title = "On Fat Partitioning, Fat Covering, and the Union Size of Polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, number = 4 +, year = 1998 +, pages = "197--210" +, issn = "0925-7721" +, succeeds = "k-fpfcu-93t, k-fpfcu-93" +, update = "98.11 bibrelex, 98.03 mitchell" } @inproceedings{k-qppt-94 -, author = "M. van Kreveld" -, title = "On Quality Paths in Polyhedral Terrains" -, booktitle = "Proc. IGIS'94: Geographic Information Systems" -, series = "Lecture Notes Comput. Sci." -, volume = 884 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "113--122" -, keywords = "shortest paths, polyhedral terrains" -, update = "96.09 kreveld" +, author = "M. van Kreveld" +, title = "On Quality Paths in Polyhedral Terrains" +, booktitle = "Proc. IGIS'94: Geographic Information Systems" +, series = "Lecture Notes Comput. Sci." +, volume = 884 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "113--122" +, keywords = "shortest paths, polyhedral terrains" +, update = "96.09 kreveld" } @techreport{k-ppp-92 -, author = "M. van Kreveld" -, title = "The power of parallel projection" -, type = "Report" -, number = "RUU-CS-92-17" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1992 -, update = "94.05 schwarzkopf, 94.01 smid" +, author = "M. van Kreveld" +, title = "The power of parallel projection" +, type = "Report" +, number = "RUU-CS-92-17" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1992 +, update = "94.05 schwarzkopf, 94.01 smid" } @article{k-ppp-93 -, author = "M. van Kreveld" -, title = "The power of parallel projection" -, journal = "Inform. Process. Lett." -, volume = 46 -, year = 1993 -, pages = "185--191" -, succeeds = "k-ppp-92" -, update = "97.11 bibrelex, 94.01 smid" +, author = "M. van Kreveld" +, title = "The power of parallel projection" +, journal = "Inform. Process. Lett." +, volume = 46 +, year = 1993 +, pages = "185--191" +, succeeds = "k-ppp-92" +, update = "97.11 bibrelex, 94.01 smid" } @inproceedings{k-vsaec-96 -, author = "M. van Kreveld" -, title = "Variations on sweep algorithms: efficient computation of extended viewsheds and classifications" -, booktitle = "Proc. 7th Internat. Sympos. Spatial Data Handling" -, year = 1996 -, pages = "13A.15--13A.27" -, update = "98.07 oostrum" +, author = "M. van Kreveld" +, title = "Variations on sweep algorithms: efficient computation of extended viewsheds and classifications" +, booktitle = "Proc. 7th Internat. Sympos. Spatial Data Handling" +, year = 1996 +, pages = "13A.15--13A.27" +, update = "98.07 oostrum" } @inproceedings{kko-pcbss-95 -, author = "Marc van Kreveld and Berto van de Kraats and Mark Overmars" -, title = "Printed Circuit Board Simplification: {Simplifying} Subdivisions in Practice" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C30--C31" -, keywords = "polygon simplification, decimation" -, cites = "abb-amps-91, bks-nass-95, be-mgot-95, cmwms-feps-93, elosu-scqp-92, ghms-apsml-93, h-patmn-93, k-apacl-94, ZZZ" -, update = "98.07 icking, 98.03 bibrelex, 95.09 mitchell" +, author = "Marc van Kreveld and Berto van de Kraats and Mark Overmars" +, title = "Printed Circuit Board Simplification: {Simplifying} Subdivisions in Practice" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C30--C31" +, keywords = "polygon simplification, decimation" +, cites = "abb-amps-91, bks-nass-95, be-mgot-95, cmwms-feps-93, elosu-scqp-92, ghms-apsml-93, h-patmn-93, k-apacl-94, ZZZ" +, update = "98.07 icking, 98.03 bibrelex, 95.09 mitchell" } @inproceedings{kobps-ctsss-97 -, author = "M. van Kreveld and R. van Oostrum and C. Bajaj and V. Pascucci and D. Schikore" -, title = "Contour Trees and Small Seed Sets for Isosurface Traversal" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "212--220" -, cites = "amo-nftaa-93, afh-tdie3-81, bps-fiii-96, bcd-auhsm-95, cmps-oieiv-96, bk-tawfg-93, db-dcghs-94, fm-scmgt-67, gc-sontr-86, h-dt-76, hb-mpaic-94, ik-aipue-95, kk-ettfe-94, lsj-noiea-96, m-mt-63, ps-cgi-85, r-slpsd-46, sk-crgac-91, skk-scbmt-91, sc-aipta-86, tisku-aeccp-95, k-emiet-96, w-cgads-92, wv-ofig-92, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "M. van Kreveld and R. van Oostrum and C. Bajaj and V. Pascucci and D. Schikore" +, title = "Contour Trees and Small Seed Sets for Isosurface Traversal" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "212--220" +, cites = "amo-nftaa-93, afh-tdie3-81, bps-fiii-96, bcd-auhsm-95, cmps-oieiv-96, bk-tawfg-93, db-dcghs-94, fm-scmgt-67, gc-sontr-86, h-dt-76, hb-mpaic-94, ik-aipue-95, kk-ettfe-94, lsj-noiea-96, m-mt-63, ps-cgi-85, r-slpsd-46, sk-crgac-91, skk-scbmt-91, sc-aipta-86, tisku-aeccp-95, k-emiet-96, w-cgads-92, wv-ofig-92, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{kos-essid-97 -, author = "M. van Kreveld and R. van Oostrum and J. Snoeyink" -, title = "Efficient settlement selection for interactive display" -, booktitle = "Proc. Auto-Carto 13: ACSM/ASPRS Annual Convention Technical Papers" -, year = 1997 -, pages = "287--296" -, update = "98.07 oostrum" +, author = "M. van Kreveld and R. van Oostrum and J. Snoeyink" +, title = "Efficient settlement selection for interactive display" +, booktitle = "Proc. Auto-Carto 13: ACSM/ASPRS Annual Convention Technical Papers" +, year = 1997 +, pages = "287--296" +, update = "98.07 oostrum" } @article{ko-ucsds-93 -, author = "M. van Kreveld and M. Overmars" -, title = "Union-Copy Structures and Dynamic Segment Trees" -, journal = "J. ACM" -, volume = 40 -, year = 1993 -, pages = "635--652" -, keywords = "union-find, data structures, dynamic segment trees" -, update = "96.09 kreveld" +, author = "M. van Kreveld and M. Overmars" +, title = "Union-Copy Structures and Dynamic Segment Trees" +, journal = "J. ACM" +, volume = 40 +, year = 1993 +, pages = "635--652" +, keywords = "union-find, data structures, dynamic segment trees" +, update = "96.09 kreveld" } @techreport{koa-iqsd-90t -, author = "M. van Kreveld and M. Overmars and P. K. Agarwal" -, title = "Intersection Queries in Sets of Disks" -, type = "Technical {Report}" -, number = "90-26" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "M. van Kreveld and M. Overmars and P. K. Agarwal" +, title = "Intersection Queries in Sets of Disks" +, type = "Technical {Report}" +, number = "90-26" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, update = "93.09 milone+mitchell" } @article{koa-iqsd-92 -, author = "M. van Kreveld and M. Overmars and P. K. Agarwal" -, title = "Intersection queries in sets of disks" -, journal = "BIT" -, volume = 32 -, year = 1992 -, pages = "268--279" -, keywords = "disks, partition trees, intersection" -, succeeds = "koa-iqsd-90i" -, update = "96.09 kreveld" +, author = "M. van Kreveld and M. Overmars and P. K. Agarwal" +, title = "Intersection queries in sets of disks" +, journal = "BIT" +, volume = 32 +, year = 1992 +, pages = "268--279" +, keywords = "disks, partition trees, intersection" +, succeeds = "koa-iqsd-90i" +, update = "96.09 kreveld" } @inproceedings{ksw-frit-93 -, author = "M. van Kreveld and J. Snoeyink and S. Whitesides" -, title = "Folding rulers inside triangles" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "1--6" -, cites = "hjw-mp2dl-84, hjw-mra2d-85, jp-crmpq-85, k-mslra-92, kk-namra-86, lw-tpio-91, lw-rltm-92, lw-rcpce-95, w-aigpl-92, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "M. van Kreveld and J. Snoeyink and S. Whitesides" +, title = "Folding rulers inside triangles" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "1--6" +, cites = "hjw-mp2dl-84, hjw-mra2d-85, jp-crmpq-85, k-mslra-92, kk-namra-86, lw-tpio-91, lw-rltm-92, lw-rcpce-95, w-aigpl-92, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{ksw-frit-96 -, author = "M. van Kreveld and J. Snoeyink and S. Whitesides" -, title = "Folding rulers inside triangles" -, journal = "Discrete Comput. Geom." -, volume = 15 -, year = 1996 -, pages = "265--285" -, keywords = "rulers, linkages, reconfiguration" -, succeeds = "ksw-frit-93" -, update = "96.09 kreveld" +, author = "M. van Kreveld and J. Snoeyink and S. Whitesides" +, title = "Folding rulers inside triangles" +, journal = "Discrete Comput. Geom." +, volume = 15 +, year = 1996 +, pages = "265--285" +, keywords = "rulers, linkages, reconfiguration" +, succeeds = "ksw-frit-93" +, update = "96.09 kreveld" } @inproceedings{kbs-csamc-91 -, author = "H.-P. Kriegel and T. Brinkhoff and R. Schneider" -, title = "The Combination of Spatial Access Methods and Computational Geometry in Geographic Database Systems" -, booktitle = "Proc. 2rd Sympos. Advances in Spatial Databases" -, series = "Lecture Notes Comput. Sci." -, number = 525 -, year = 1991 -, pages = "5--21" -, update = "96.09 kreveld" +, author = "H.-P. Kriegel and T. Brinkhoff and R. Schneider" +, title = "The Combination of Spatial Access Methods and Computational Geometry in Geographic Database Systems" +, booktitle = "Proc. 2rd Sympos. Advances in Spatial Databases" +, series = "Lecture Notes Comput. Sci." +, number = 525 +, year = 1991 +, pages = "5--21" +, update = "96.09 kreveld" } @techreport{kmo-iftme-85 -, author = "H.-P. Kriegel and R. Mannss and M. H. Overmars" -, title = "The inverted file tree machine: efficient multi-key retrieval for {VLSI}" -, type = "Report" -, number = "RUU-CS-85-8" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1985 -, update = "94.05 schwarzkopf" +, author = "H.-P. Kriegel and R. Mannss and M. H. Overmars" +, title = "The inverted file tree machine: efficient multi-key retrieval for {VLSI}" +, type = "Report" +, number = "RUU-CS-85-8" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1985 +, update = "94.05 schwarzkopf" } @inproceedings{ks-erigm-90 -, author = "H.-P. Kriegel and M. Schiwietz" -, title = "{Eine} effiziente und robuste {Indexstruktur} f{\"u}r gro{\ss}e {Mengen} polygonaler {Objekte}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 16 -, update = "00.03 bibrelex" +, author = "H.-P. Kriegel and M. Schiwietz" +, title = "{Eine} effiziente und robuste {Indexstruktur} f{\"u}r gro{\ss}e {Mengen} polygonaler {Objekte}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 16 +, update = "00.03 bibrelex" } @incollection{ks-moplh-86 -, author = "H.-P. Kriegel and B. Seeger" -, title = "Multidimensional order preserving linear hashing with partial expansions" -, booktitle = "Proc. Intl. Conf. on Database Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 243 -, publisher = "Springer-Verlag" -, year = 1986 -, pages = "203--220" -, update = "97.07 agarwal" +, author = "H.-P. Kriegel and B. Seeger" +, title = "Multidimensional order preserving linear hashing with partial expansions" +, booktitle = "Proc. Intl. Conf. on Database Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 243 +, publisher = "Springer-Verlag" +, year = 1986 +, pages = "203--220" +, update = "97.07 agarwal" } @inproceedings{kv-nodts-81 -, author = "H. P. Kriegel and V. K. Vaishnavi" -, title = "A nearly optimal dynamic tree structure for partial-match queries with time-varying access frequencies" -, booktitle = "Proc. 1981 Conf. Inform. Sci. Systems" -, publisher = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1981 -, pages = "??" +, author = "H. P. Kriegel and V. K. Vaishnavi" +, title = "A nearly optimal dynamic tree structure for partial-match queries with time-varying access frequencies" +, booktitle = "Proc. 1981 Conf. Inform. Sci. Systems" +, publisher = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1981 +, pages = "??" } @inproceedings{kv-wmbtu-81 -, author = "H. P. Kriegel and V. K. Vaishnavi" -, title = "Weighted multidimensional $b$-trees used as nearly optimal dynamic dictionaries" -, booktitle = "Proc. 10th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 118 -, publisher = "Springer-Verlag" -, year = 1981 -, pages = "410--417" +, author = "H. P. Kriegel and V. K. Vaishnavi" +, title = "Weighted multidimensional $b$-trees used as nearly optimal dynamic dictionaries" +, booktitle = "Proc. 10th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 118 +, publisher = "Springer-Verlag" +, year = 1981 +, pages = "410--417" } @article{k-cspps-92 -, author = "D. J. Kriegman" -, title = "Computing stable poses of piecewise smooth objects" -, journal = "CVGIP: Image Understanding" -, volume = 55 -, number = 2 -, month = mar -, year = 1992 -, update = "98.03 bibrelex" +, author = "D. J. Kriegman" +, title = "Computing stable poses of piecewise smooth objects" +, journal = "CVGIP: Image Understanding" +, volume = 55 +, number = 2 +, month = mar +, year = 1992 +, update = "98.03 bibrelex" } @phdthesis{k-arssi-90 -, author = "G. A. Kriezis" -, title = "Algorithms for Rational Spline Surface Intersections" -, type = "Ph.{D}. Thesis" -, school = "Massachusetts Institute of Technology" -, address = "Cambridge, Massachusetts" -, year = 1990 -, keywords = "doctoral thesis" -, update = "95.05 abrams" +, author = "G. A. Kriezis" +, title = "Algorithms for Rational Spline Surface Intersections" +, type = "Ph.{D}. Thesis" +, school = "Massachusetts Institute of Technology" +, address = "Cambridge, Massachusetts" +, year = 1990 +, keywords = "doctoral thesis" +, update = "95.05 abrams" } @inproceedings{kp-rpsi-91 -, author = "G. A. Kriezis and N. M. Patrikalakis" -, title = "Rational Polynomial Surface Intersections" -, editor = "G. A. Gabriele" -, booktitle = "Proc. 17th ASME Design Automation Conference" -, volume = "II" -, year = 1991 -, pages = "43--53" -, update = "95.05 abrams" +, author = "G. A. Kriezis and N. M. Patrikalakis" +, title = "Rational Polynomial Surface Intersections" +, editor = "G. A. Gabriele" +, booktitle = "Proc. 17th ASME Design Automation Conference" +, volume = "II" +, year = 1991 +, pages = "43--53" +, update = "95.05 abrams" } @article{kpw-tdems-92 -, author = "G. A. Kriezis and N. M. Patrikalakis and F.-E. Wolter" -, title = "Topological and Differential Equation Methods for Surface Intersections" -, journal = "Comput. Aided Design" -, volume = 24 -, number = 1 -, year = 1992 -, pages = "41--55" -, update = "95.05 abrams" +, author = "G. A. Kriezis and N. M. Patrikalakis and F.-E. Wolter" +, title = "Topological and Differential Equation Methods for Surface Intersections" +, journal = "Comput. Aided Design" +, volume = 24 +, number = 1 +, year = 1992 +, pages = "41--55" +, update = "95.05 abrams" } @article{kpp-miasr-90 -, author = "G. A. Kriezis and P. V. Prakash and N. M. Patrikalakis" -, title = "A Method for Intersecting Algebraic Surfaces with Rational Polynomial Patches" -, journal = "Comput. Aided Design" -, volume = 22 -, number = 10 -, year = 1990 -, pages = "645--654" -, update = "95.05 abrams" +, author = "G. A. Kriezis and P. V. Prakash and N. M. Patrikalakis" +, title = "A Method for Intersecting Algebraic Surfaces with Rational Polynomial Patches" +, journal = "Comput. Aided Design" +, volume = 22 +, number = 10 +, year = 1990 +, pages = "645--654" +, update = "95.05 abrams" } @inproceedings{k-mpnte-95 -, author = "J. Kripac" -, title = "A mechanism for persistently naming topological entities in history-based parametric solid models" -, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" -, site = "Salt Lake City, UT" -, month = may -, year = 1995 -, update = "98.07 bibrelex" +, author = "J. Kripac" +, title = "A mechanism for persistently naming topological entities in history-based parametric solid models" +, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" +, site = "Salt Lake City, UT" +, month = may +, year = 1995 +, update = "98.07 bibrelex" } @techreport{kw-mgf-85 -, author = "R. Krishnamurthy and K.-Y. Wang" -, title = "Multilevel grid files" -, type = "Tech.\ Report" -, institution = "IBM T. J. Watson Center" -, address = "Yorktown Heights, NY" -, year = 1985 -, update = "97.07 agarwal" +, author = "R. Krishnamurthy and K.-Y. Wang" +, title = "Multilevel grid files" +, type = "Tech.\ Report" +, institution = "IBM T. J. Watson Center" +, address = "Yorktown Heights, NY" +, year = 1985 +, update = "97.07 agarwal" } @techreport{km-esiab-94 -, author = "S. Krishnan and D. Manocha" -, title = "An efficient surface intersection algorithm based on the lower dimensional formulation" -, type = "Technical {Report}" -, number = "TR94-062" -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, year = 1994 -, update = "98.03 bibrelex" +, author = "S. Krishnan and D. Manocha" +, title = "An efficient surface intersection algorithm based on the lower dimensional formulation" +, type = "Technical {Report}" +, number = "TR94-062" +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, year = 1994 +, update = "98.03 bibrelex" } @techreport{knm-bscbc-94 -, author = "S. Krishnan and A. Narkhede and D. Manocha" -, title = "Boole: {A} system to compute boolean combinations of sculptured solids" -, type = "Technical {Report}" -, number = "TR95-008" -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, year = 1994 -, update = "98.03 bibrelex" +, author = "S. Krishnan and A. Narkhede and D. Manocha" +, title = "Boole: {A} system to compute boolean combinations of sculptured solids" +, type = "Technical {Report}" +, number = "TR95-008" +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, year = 1994 +, update = "98.03 bibrelex" } @inproceedings{knm-rcbcs-95 -, author = "Shankar Krishnan and Atul Narkhede and Dinesh Manocha" -, title = "Representation and Computation of Boolean Combinations of Sculptured Models" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C8--C9" -, keywords = "CSG" -, cites = "h-gsm-89, km-esiab-94, knm-bscbc-94, s-lpchm-90, s-sfira-91, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Shankar Krishnan and Atul Narkhede and Dinesh Manocha" +, title = "Representation and Computation of Boolean Combinations of Sculptured Models" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C8--C9" +, keywords = "CSG" +, cites = "h-gsm-89, km-esiab-94, knm-bscbc-94, s-lpchm-90, s-sfira-91, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{kplm-sshob-98 -, author = "S. Krishnan and A. Pattekar and M. Lin and D. Manocha" -, title = "Spherical Shells: {A} Higher Order Bounding Volume for Fast Proximity Queries" -, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." -, nickname = "WAFR '98" -, year = 1998 -, pages = "to appear" -, url = "https://www.cs.unc.edu/~dm/collision.html" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "S. Krishnan and A. Pattekar and M. Lin and D. Manocha" +, title = "Spherical Shells: {A} Higher Order Bounding Volume for Fast Proximity Queries" +, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." +, nickname = "WAFR '98" +, year = 1998 +, pages = "to appear" +, url = "https://www.cs.unc.edu/~dm/collision.html" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @inproceedings{kk-ppsva-88 -, author = "R. P. Krishnaswamy and C. E. Kim" -, title = "Problems of posting sentries: variations of the {Art} {Gallery} {Theorem}" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "74--85" +, author = "R. P. Krishnaswamy and C. E. Kim" +, title = "Problems of posting sentries: variations of the {Art} {Gallery} {Theorem}" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "74--85" } @inproceedings{krsv-vprma-96 -, author = "K. Krithivasan and A. Rema and S. Schirra and P. I. Vijaykumar" -, title = "Velocity planning for a robot moving along the shortest straight line path among moving obstacles" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "149--154" -, update = "96.09 mitchell" +, author = "K. Krithivasan and A. Rema and S. Schirra and P. I. Vijaykumar" +, title = "Velocity planning for a robot moving along the shortest straight line path among moving obstacles" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "149--154" +, update = "96.09 mitchell" } @article{ks-maptr-01 -, author = "K. Krithivasan and V. Srilakshmi" -, title = "Minimum area polygons with two reflex angles enclosing {$k$} points" -, journal = "Internat. J. Comput. Math." -, volume = 78 -, year = 2001 -, comments = "to appear" -, update = "01.04 smid" +, author = "K. Krithivasan and V. Srilakshmi" +, title = "Minimum area polygons with two reflex angles enclosing {$k$} points" +, journal = "Internat. J. Comput. Math." +, volume = 78 +, year = 2001 +, comments = "to appear" +, update = "01.04 smid" } @techreport{kvd-lhrtd-92 -, author = "K. Krithivasan and R. Vanisree and A. Datta" -, title = "The largest hyper-rectangle in a three dimensional orthogonal polyhedron" -, type = "Report" -, number = "MPI-I-92-123" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 +, author = "K. Krithivasan and R. Vanisree and A. Datta" +, title = "The largest hyper-rectangle in a three dimensional orthogonal polyhedron" +, type = "Report" +, number = "MPI-I-92-123" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 } @inproceedings{km-cmsvc-85 -, author = "M. Kriv{\'a}nek and J. Mor{\'a}vek" -, title = "Clustering to minimize the sum of volumes of convex hulls of clusters is {NP}-complete" -, editor = "L. Budach" -, booktitle = "Proc. Found. Comput. Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 199 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "234--241" +, author = "M. Kriv{\'a}nek and J. Mor{\'a}vek" +, title = "Clustering to minimize the sum of volumes of convex hulls of clusters is {NP}-complete" +, editor = "L. Budach" +, booktitle = "Proc. Found. Comput. Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 199 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "234--241" } @article{k-geatd-82 -, author = "L. Kronecker" -, title = "{Grundz{\"u}ge} einer arithmetischen {Theorie} der algebraischen {Gr{\"o}{\ss}e}" -, journal = "Crelle J." -, volume = 92 -, year = 1882 -, pages = "1--122" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "L. Kronecker" +, title = "{Grundz{\"u}ge} einer arithmetischen {Theorie} der algebraischen {Gr{\"o}{\ss}e}" +, journal = "Crelle J." +, volume = 92 +, year = 1882 +, pages = "1--122" +, update = "98.11 bibrelex, 97.11 bibrelex" } @inproceedings{kc-ecntm-00 -, author = "Boris Kronrod and Craig Cotsman" -, title = "Efficient Coding of Non-Triangular Meshes" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "24--26" -, update = "00.03 bibrelex" +, author = "Boris Kronrod and Craig Cotsman" +, title = "Efficient Coding of Non-Triangular Meshes" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "24--26" +, update = "00.03 bibrelex" } @article{k-isasm-82 -, author = "J. K. Krouse" -, title = "Industry gets serious about solid modeling" -, journal = "Computer Aided Engineering" -, volume = 1 -, year = 1982 -, pages = "22--26" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "J. K. Krouse" +, title = "Industry gets serious about solid modeling" +, journal = "Computer Aided Engineering" +, volume = 1 +, year = 1982 +, pages = "22--26" +, update = "98.11 bibrelex, 98.03 bibrelex" } @phdthesis{k-ippvt-92 -, author = "J. Krozel" -, title = "Intelligent Path Prediction for Vehicular Travel" -, type = "Ph.{D}. Thesis" -, school = "Purdue Univ." -, address = "W. Lafayette, IN" -, month = may -, year = 1992 -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "J. Krozel" +, title = "Intelligent Path Prediction for Vehicular Travel" +, type = "Ph.{D}. Thesis" +, school = "Purdue Univ." +, address = "W. Lafayette, IN" +, month = may +, year = 1992 +, keywords = "doctoral thesis" +, update = "93.05 jones" } @article{ka-ippvt-93 -, author = "J. Krozel and D. Andrisani" -, title = "Intelligent Path Prediction for Vehicular Travel" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 23 -, year = 1993 -, pages = "478--487" -, keywords = "path prediction, gradient field representation, generalized cost criteria, path similarity" -, update = "98.11 bibrelex, 97.11 bibrelex, 93.09 milone+mitchell" +, author = "J. Krozel and D. Andrisani" +, title = "Intelligent Path Prediction for Vehicular Travel" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 23 +, year = 1993 +, pages = "478--487" +, keywords = "path prediction, gradient field representation, generalized cost criteria, path similarity" +, update = "98.11 bibrelex, 97.11 bibrelex, 93.09 milone+mitchell" } @phdthesis{k-darp-85 -, author = "F. Krueger" -, title = "$d$-Arrangements and random polyhedra" -, type = "Ph.{D}. Thesis" -, school = "Dept. of Operations Research, Stanford University" -, year = 1985 -, keywords = "arrangements, face counting, Zaslavski's formulas, duality" +, author = "F. Krueger" +, title = "$d$-Arrangements and random polyhedra" +, type = "Ph.{D}. Thesis" +, school = "Dept. of Operations Research, Stanford University" +, year = 1985 +, keywords = "arrangements, face counting, Zaslavski's formulas, duality" } @book{k-eukav-52 -, author = "W. Krull" -, title = "Elementare und klassische {Algebra} vom modernen {Standpunkt}, Part I" -, publisher = "DeGruyter" -, address = "Berlin, Germany" -, year = 1952 -, update = "97.11 bibrelex" +, author = "W. Krull" +, title = "Elementare und klassische {Algebra} vom modernen {Standpunkt}, Part I" +, publisher = "DeGruyter" +, address = "Berlin, Germany" +, year = 1952 +, update = "97.11 bibrelex" } @book{k-eukav-59 -, author = "W. Krull" -, title = "Elementare und klassische {Algebra} vom modernen {Standpunkt}, Part II" -, publisher = "DeGruyter" -, address = "Berlin, Germany" -, year = 1959 -, update = "97.11 bibrelex" +, author = "W. Krull" +, title = "Elementare und klassische {Algebra} vom modernen {Standpunkt}, Part II" +, publisher = "DeGruyter" +, address = "Berlin, Germany" +, year = 1959 +, update = "97.11 bibrelex" } @article{krs-ctepa-90 -, author = "C. Kruskal and L. Rudolph and M. Snir" -, title = "A complexity theory of efficient parallel algorithms" -, journal = "Theoret. Comput. Sci." -, volume = 71 -, year = 1990 -, pages = "95--132" -, update = "96.09 orourke" +, author = "C. Kruskal and L. Rudolph and M. Snir" +, title = "A complexity theory of efficient parallel algorithms" +, journal = "Theoret. Comput. Sci." +, volume = 71 +, year = 1990 +, pages = "95--132" +, update = "96.09 orourke" } @inproceedings{krs-ppp-85 -, author = "C. P. Kruskal and L. Rudolph and M. Snir" -, title = "The Power of Parallel Prefix" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1985 -, pages = "180--185" -, update = "97.11 bibrelex" +, author = "C. P. Kruskal and L. Rudolph and M. Snir" +, title = "The Power of Parallel Prefix" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1985 +, pages = "180--185" +, update = "97.11 bibrelex" } @article{krs-ppp-85a -, author = "C. P. Kruskal and L. Rudolph and M. Snir" -, title = "The power of parallel prefix" -, journal = "IEEE Trans. Comput." -, volume = "C-34" -, year = 1985 -, pages = "965--968" -, update = "97.11 bibrelex" +, author = "C. P. Kruskal and L. Rudolph and M. Snir" +, title = "The power of parallel prefix" +, journal = "IEEE Trans. Comput." +, volume = "C-34" +, year = 1985 +, pages = "965--968" +, update = "97.11 bibrelex" } @inproceedings{ks-dnd-80 -, author = "J. B. Kruskal and J. B. Seery" -, title = "Designing Network Diagrams" -, booktitle = "Proc. First General Conference on Social Graphics" -, publisher = "U. S. Department of the Census" -, year = 1980 -, pages = "22--50" -, keywords = "graph drawing, physical simulation, force-directed" -, update = "95.05 tamassia" +, author = "J. B. Kruskal and J. B. Seery" +, title = "Designing Network Diagrams" +, booktitle = "Proc. First General Conference on Social Graphics" +, publisher = "U. S. Department of the Census" +, year = 1980 +, pages = "22--50" +, keywords = "graph drawing, physical simulation, force-directed" +, update = "95.05 tamassia" } @article{k-sssgt-56 -, author = "J. B. {Kruskal, Jr.}" -, title = "On the shortest spanning subtree of a graph and the traveling salesman problem" -, journal = "Proc. Amer. Math. Soc." -, volume = 7 -, year = 1956 -, pages = "48--50" +, author = "J. B. {Kruskal, Jr.}" +, title = "On the shortest spanning subtree of a graph and the traveling salesman problem" +, journal = "Proc. Amer. Math. Soc." +, volume = 7 +, year = 1956 +, pages = "48--50" } @article{ks-nhovd-94 -, author = "J. W. Krussel and B. F. Schaudt" -, title = "A note on higher order {Voronoi} diagrams" -, journal = "Nordic J. Comput." -, volume = 1 -, year = 1994 -, pages = "268--272" -, update = "95.01 smid" +, author = "J. W. Krussel and B. F. Schaudt" +, title = "A note on higher order {Voronoi} diagrams" +, journal = "Nordic J. Comput." +, volume = 1 +, year = 1994 +, pages = "268--272" +, update = "95.01 smid" } @phdthesis{k-phcmw-97 -, author = "D. Krznaric" -, title = "Progress in Hierarchical Clustering \& Minimum Weight Triangulation" -, type = "Ph.{D}. Thesis" -, school = "Department of Computer Science, Lund University" -, address = "Lund, Sweden" -, year = 1997 -, keywords = "doctoral thesis" -, update = "01.11 smid" +, author = "D. Krznaric" +, title = "Progress in Hierarchical Clustering \& Minimum Weight Triangulation" +, type = "Ph.{D}. Thesis" +, school = "Department of Computer Science, Lund University" +, address = "Lund, Sweden" +, year = 1997 +, keywords = "doctoral thesis" +, update = "01.11 smid" } @inproceedings{kl-ctqlb-95 -, author = "Drago Krznaric and Christos Levcopoulos" -, title = "Computing a Threaded Quadtree (with Links between Neighbours) from the {Delaunay} Triangulation in Linear Time" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "187--192" -, update = "95.09 jones" +, author = "Drago Krznaric and Christos Levcopoulos" +, title = "Computing a Threaded Quadtree (with Links between Neighbours) from the {Delaunay} Triangulation in Linear Time" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "187--192" +, update = "95.09 jones" } @incollection{kl-chcem-95 -, author = "D. Krznaric and C. Levcopoulos" -, title = "Computing hierarchies of clusters from the {Euclidean} minimum spanning tree in linear time" -, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1026 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "443--455" -, update = "96.01 smid" +, author = "D. Krznaric and C. Levcopoulos" +, title = "Computing hierarchies of clusters from the {Euclidean} minimum spanning tree in linear time" +, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1026 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "443--455" +, update = "96.01 smid" } @article{kl-faclc-98 -, author = "D. Krznaric and C. Levcopoulos" -, title = "Fast Algorithms for Complete Linkage Clustering" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "131--145" -, update = "01.11 smid" +, author = "D. Krznaric and C. Levcopoulos" +, title = "Fast Algorithms for Complete Linkage Clustering" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "131--145" +, update = "01.11 smid" } @inproceedings{kl-fsacl-95 -, author = "Drago Krznaric and Christos Levcopoulos" -, title = "The First Subquadratic Algorithm for Complete Linkage Clustering" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "392--401" -, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "Drago Krznaric and Christos Levcopoulos" +, title = "The First Subquadratic Algorithm for Complete Linkage Clustering" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "392--401" +, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @inproceedings{kln-mstd-97 -, author = "D. Krznaric and C. Levcopoulos and Bengt J. Nilsson" -, title = "Minimum Spanning Trees in {$d$} Dimensions" -, booktitle = "Proc. 5th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1284 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "341--349" -, url = "http://www.dna.lth.se/home/Drago_Krznaric/mst.ps" -, update = "98.03 mitchell" +, author = "D. Krznaric and C. Levcopoulos and Bengt J. Nilsson" +, title = "Minimum Spanning Trees in {$d$} Dimensions" +, booktitle = "Proc. 5th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1284 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "341--349" +, url = "http://www.dna.lth.se/home/Drago_Krznaric/mst.ps" +, update = "98.03 mitchell" } @inproceedings{k-tmkrs-84 -, author = "D. T. Kuan" -, title = "Terrain Map knowledge representation for spatial planning" -, booktitle = "The 1st IEEE Conference of Artificial Intelligence Applications" -, month = dec -, year = 1984 -, pages = "578--584" -, keywords = "feature-based planning, weighted region problem, hierarchical planning" +, author = "D. T. Kuan" +, title = "Terrain Map knowledge representation for spatial planning" +, booktitle = "The 1st IEEE Conference of Artificial Intelligence Applications" +, month = dec +, year = 1984 +, pages = "578--584" +, keywords = "feature-based planning, weighted region problem, hierarchical planning" } @inproceedings{kzb-ndfsp-85 -, author = "D. T. Kuan and J. C. Zamiska and R. A. Brooks" -, title = "Natural Decomposition of Free Space for Path Planning" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "St. Louis, MO" -, month = mar -, year = 1985 -, pages = "168--173" -, update = "93.09 milone+mitchell" +, author = "D. T. Kuan and J. C. Zamiska and R. A. Brooks" +, title = "Natural Decomposition of Free Space for Path Planning" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "St. Louis, MO" +, month = mar +, year = 1985 +, pages = "168--173" +, update = "93.09 milone+mitchell" } @inproceedings{kmps-eagpp-93 -, author = "L. Ku{\v c}era and K. Mehlhorn and B. Preis and E. Schwarzenecker" -, title = "Exact algorithms for a geometric packing problem" -, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 665 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "317--322" -, update = "93.05 smid" +, author = "L. Ku{\v c}era and K. Mehlhorn and B. Preis and E. Schwarzenecker" +, title = "Exact algorithms for a geometric packing problem" +, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 665 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "317--322" +, update = "93.05 smid" } @inproceedings{kww-aotlc-89 -, author = "R. Kuchem and D. Wagner and F. Wagner" -, title = "Area-Optimal Three-Layer Channel Routing" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "506--511" -, update = "97.03 gaertner+salinger" +, author = "R. Kuchem and D. Wagner and F. Wagner" +, title = "Area-Optimal Three-Layer Channel Routing" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "506--511" +, update = "97.03 gaertner+salinger" } @incollection{k-irt-88 -, author = "R. Kuchkuda" -, title = "An introduction to ray tracing" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "1039--1060" -, update = "99.11 bibrelex" +, author = "R. Kuchkuda" +, title = "An introduction to ray tracing" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "1039--1060" +, update = "99.11 bibrelex" } @article{k-hmap-55 -, author = "H. Kuhn" -, title = "The {Hungarian} method for the assignment problem" -, journal = "Naval Res. Logist. Q." -, volume = 2 -, year = 1955 -, pages = "83--97" -, update = "97.11 bibrelex" +, author = "H. Kuhn" +, title = "The {Hungarian} method for the assignment problem" +, journal = "Naval Res. Logist. Q." +, volume = 2 +, year = 1955 +, pages = "83--97" +, update = "97.11 bibrelex" } @inproceedings{k-rpavd-98 -, author = "Ulrich K{\"u}hn" -, title = "A Randomized Parallel Algorithm for {Voronoi} Diagrams based on Symmetric Convex Distance Functions" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "109--111" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Ulrich K{\"u}hn" +, title = "A Randomized Parallel Algorithm for {Voronoi} Diagrams based on Symmetric Convex Distance Functions" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "109--111" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{k-cvduc-96 -, author = "Ulrich K{\"u}hn" -, title = "Computing {Voronoi} Diagrams Using Convex Sweep Curves" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "41--44" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Ulrich K{\"u}hn" +, title = "Computing {Voronoi} Diagrams Using Convex Sweep Curves" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "41--44" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{kl-cdtls-88 -, author = "W. K{\"u}hnel and G. Lassmann" -, title = "Combinatorial $d$-tori with a large symmetry group" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "169--176" +, author = "W. K{\"u}hnel and G. Lassmann" +, title = "Combinatorial $d$-tori with a large symmetry group" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "169--176" } @article{k-acpr-79 -, author = "G. Kulcsar" -, title = "Algorithm to cover polygons by rectangles" -, journal = "Comput. Aided Data Preparation Pattern Generator Cont." -, volume = 30 -, year = 1979 -, pages = "161--167" +, author = "G. Kulcsar" +, title = "Algorithm to cover polygons by rectangles" +, journal = "Comput. Aided Data Preparation Pattern Generator Cont." +, volume = 30 +, year = 1979 +, pages = "161--167" } @book{km-nasc-83 -, title = "A new approach to scientific computation" -, editor = "U. Kulisch and W. L. Miranker" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1983 -, update = "98.03 bibrelex" +, title = "A new approach to scientific computation" +, editor = "U. Kulisch and W. L. Miranker" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1983 +, update = "98.03 bibrelex" } @book{km-catp-81 -, author = "U. Kulisch and W. L. Miranker" -, title = "Computer Arithmetic in Theory and Practice" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1981 -, update = "98.03 bibrelex" +, author = "U. Kulisch and W. L. Miranker" +, title = "Computer Arithmetic in Theory and Practice" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1981 +, update = "98.03 bibrelex" } @article{kd-asplm-96 -, author = "Prashant Kulkarni and Deba Dutta" -, title = "An accurate slicing procedure for layered manufacturing" -, journal = "Comput. Aided Design" -, volume = 28 -, number = 9 -, year = 1996 -, pages = "683--697" -, update = "98.03 mitchell" +, author = "Prashant Kulkarni and Deba Dutta" +, title = "An accurate slicing procedure for layered manufacturing" +, journal = "Comput. Aided Design" +, volume = 28 +, number = 9 +, year = 1996 +, pages = "683--697" +, update = "98.03 mitchell" } @article{kry-ldstsw-96 -, author = "S. Kuller and B. Raghavachari and N. Young" -, title = "Low-Degree Spanning Tree of small Weight" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, update = "02.03 cheong" +, author = "S. Kuller and B. Raghavachari and N. Young" +, title = "Low-Degree Spanning Tree of small Weight" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, update = "02.03 cheong" } @inproceedings{kv-swtwv-93 -, author = "P. Kumar and C. {Veni Madhavan}" -, title = "Shortest watchman tours in weak visibility polygons" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "91--96" -, cites = "p-wvrp-90, cn-swrsp-, cn-owr-88, thi-iacsw-91, ZZZ" -, update = "98.11 bibrelex, 94.09 lambert, 93.09 milone+mitchell" +, author = "P. Kumar and C. {Veni Madhavan}" +, title = "Shortest watchman tours in weak visibility polygons" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "91--96" +, cites = "p-wvrp-90, cn-swrsp-, cn-owr-88, thi-iacsw-91, ZZZ" +, update = "98.11 bibrelex, 94.09 lambert, 93.09 milone+mitchell" } @inproceedings{kk-rers-99 -, author = "Ravi Kumar and D. Sivakumar" -, title = "Roundness Estimation via Random Sampling" -, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1999 -, pages = "603--612" -, update = "99.03 agarwal" +, author = "Ravi Kumar and D. Sivakumar" +, title = "Roundness Estimation via Random Sampling" +, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1999 +, pages = "603--612" +, update = "99.03 agarwal" } @article{kkbs-p3dpv-92 -, author = "S. Kumar and S. K. Kurtz and J. R. Banavar and M. G. Sharma" -, title = "Properties of a 3-Dimensional {Poisson}-{Voronoi} Tessellation: a {Monte}-{Carlo} Study" -, journal = "Journal Of Statistical Physics" -, volume = 67 -, number = "3--4" -, year = 1992 -, pages = "523--551" +, author = "S. Kumar and S. K. Kurtz and J. R. Banavar and M. G. Sharma" +, title = "Properties of a 3-Dimensional {Poisson}-{Voronoi} Tessellation: a {Monte}-{Carlo} Study" +, journal = "Journal Of Statistical Physics" +, volume = 67 +, number = "3--4" +, year = 1992 +, pages = "523--551" } @inproceedings{km-dmgps-96 -, author = "S. Kumar and D. Manocha" -, title = "Dynamic mesh generation for parametric surfaces" -, booktitle = "5th Internat. Conf. Numerical Grid Generation in Computational Fluid Dynamics and Related Fields" -, site = "Starkville, MS" -, year = 1996 -, update = "97.11 bibrelex" +, author = "S. Kumar and D. Manocha" +, title = "Dynamic mesh generation for parametric surfaces" +, booktitle = "5th Internat. Conf. Numerical Grid Generation in Computational Fluid Dynamics and Related Fields" +, site = "Starkville, MS" +, year = 1996 +, update = "97.11 bibrelex" } @article{km-ertns-95 -, author = "S. Kumar and D. Manocha" -, title = "Efficient rendering of trimmed {NURBS} surfaces" -, journal = "Comput. Aided Design" -, volume = 27 -, number = 7 -, month = jul -, year = 1995 -, pages = "509--521" -, update = "97.11 bibrelex" +, author = "S. Kumar and D. Manocha" +, title = "Efficient rendering of trimmed {NURBS} surfaces" +, journal = "Comput. Aided Design" +, volume = 27 +, number = 7 +, month = jul +, year = 1995 +, pages = "509--521" +, update = "97.11 bibrelex" } @techreport{km-idlst-94 -, author = "S. Kumar and D. Manocha" -, title = "Interactive display of large scale trimmed {NURBS} models" -, type = "Technical {Report}" -, number = "TR94-008" -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, year = 1994 -, update = "97.11 bibrelex" +, author = "S. Kumar and D. Manocha" +, title = "Interactive display of large scale trimmed {NURBS} models" +, type = "Technical {Report}" +, number = "TR94-008" +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, year = 1994 +, update = "97.11 bibrelex" } @inproceedings{km-pcfds-96 -, author = "Suboth Kumar and Dinesh Manocha" -, title = "The power of coherence: fast tessellation of surfaces" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V15--V16" -, cites = "c-tsplt-91a, c-farps-79, ctv-flvat-89, f-cscag-93, k-rtpp-82, km-idlst-94, km-ertns-95, km-dmgps-96, lc-rtns-93, lcwb-slmdp-80, rhd-rtrts-89, s-sfira-91, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Suboth Kumar and Dinesh Manocha" +, title = "The power of coherence: fast tessellation of surfaces" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V15--V16" +, cites = "c-tsplt-91a, c-farps-79, ctv-flvat-89, f-cscag-93, k-rtpp-82, km-idlst-94, km-ertns-95, km-dmgps-96, lc-rtns-93, lcwb-slmdp-80, rhd-rtrts-89, s-sfira-91, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{kmgl-bfcpc-97 -, author = "S. Kumar and D. Manocha and W. Garret and M. Lin" -, title = "Back-Face Computation of Polygon Clusters" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "487--488" -, keywords = "video review" -, cites = "bv-vbcd-95, c-hgmvs-76, c-sacg-77, dk-fdpi-82, fkn-vsgpt-80, kmgl-hbfc-96, nns-nshsp-72, sbgs-sacgi-69, sss-cthsa-74, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "S. Kumar and D. Manocha and W. Garret and M. Lin" +, title = "Back-Face Computation of Polygon Clusters" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "487--488" +, keywords = "video review" +, cites = "bv-vbcd-95, c-hgmvs-76, c-sacg-77, dk-fdpi-82, fkn-vsgpt-80, kmgl-hbfc-96, nns-nshsp-72, sbgs-sacgi-69, sss-cthsa-74, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{kmgl-hbfc-96 -, author = "S. Kumar and D. Manocha and B. Garrett and M. Lin" -, title = "Hierarchical back-face culling" -, booktitle = "Proc. 7th Eurographics Workshop on Rendering" -, site = "Porto, Portugal" -, year = 1996 -, pages = "231--240" -, update = "98.07 bibrelex" +, author = "S. Kumar and D. Manocha and B. Garrett and M. Lin" +, title = "Hierarchical back-face culling" +, booktitle = "Proc. 7th Eurographics Workshop on Rendering" +, site = "Porto, Portugal" +, year = 1996 +, pages = "231--240" +, update = "98.07 bibrelex" } @article{kmgl-hbfc-99 -, author = "S. Kumar and D. Manocha and W. Garrett and M. Lin" -, title = "Hierarchical Back-face Computation" -, journal = "Comput. \& Graphics" -, volume = 23 -, number = 5 -, month = oct -, year = 1999 -, pages = "681--692" -, update = "00.03 held" +, author = "S. Kumar and D. Manocha and W. Garrett and M. Lin" +, title = "Hierarchical Back-face Computation" +, journal = "Comput. \& Graphics" +, volume = 23 +, number = 5 +, month = oct +, year = 1999 +, pages = "681--692" +, update = "00.03 held" } @article{kml-idlnm-96 -, author = "S. Kumar and D. Manocha and A. Lastra" -, title = "Interactive display of large {NURBS} models" -, journal = "IEEE Trans. on Visualization and Computer Graphics" -, volume = 2 -, year = 1996 -, pages = "323--336" -, update = "98.11 bibrelex, 97.03 tamassia" +, author = "S. Kumar and D. Manocha and A. Lastra" +, title = "Interactive display of large {NURBS} models" +, journal = "IEEE Trans. on Visualization and Computer Graphics" +, volume = 2 +, year = 1996 +, pages = "323--336" +, update = "98.11 bibrelex, 97.03 tamassia" } @article{kr-icmmb-89 -, author = "V. K. P. Kumar and D. I. Reisis" -, title = "Image Computations on Meshes with Multiple Broadcast" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 11 -, year = 1989 -, pages = "1194--1201" -, update = "98.07 bibrelex" +, author = "V. K. P. Kumar and D. I. Reisis" +, title = "Image Computations on Meshes with Multiple Broadcast" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 11 +, year = 1989 +, pages = "1194--1201" +, update = "98.07 bibrelex" } @article{klp-fmsv-75 -, author = "H. T. Kung and F. Luccio and F. P. Preparata" -, title = "On Finding the Maxima of a Set of Vectors" -, journal = "J. ACM" -, volume = 22 -, year = 1975 -, pages = "469--476" -, update = "93.09 milone+mitchell" +, author = "H. T. Kung and F. Luccio and F. P. Preparata" +, title = "On Finding the Maxima of a Set of Vectors" +, journal = "J. ACM" +, volume = 22 +, year = 1975 +, pages = "469--476" +, update = "93.09 milone+mitchell" } @article{k-cgrgf-90 -, author = "J. P. S. Kung" -, title = "Combinatorial geometries representable over {$GF(3)$} and {$FG(q)$}, {I}: {The} number of points" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "83--95" +, author = "J. P. S. Kung" +, title = "Combinatorial geometries representable over {$GF(3)$} and {$FG(q)$}, {I}: {The} number of points" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "83--95" } @techreport{kwr-gvdps-97 -, author = "Richard Kunze and Franz-Erich Wolter and Thomas Rausch" -, title = "Geodesic {Voronoi} Diagrams on Parametric Surfaces" -, number = 2 -, institution = "Welfen Laboratory, Universit{\"a}t Hannover" -, month = jul -, year = 1997 -, url = "http://www-c.informatik.uni-hannover.de" -, keywords = "Voronoi diagram, parametric surface, geodesics on surfaces" -, update = "98.03 mitchell" -, annote = "Appeared in IEEE Computer Society Press Conference +, author = "Richard Kunze and Franz-Erich Wolter and Thomas Rausch" +, title = "Geodesic {Voronoi} Diagrams on Parametric Surfaces" +, number = 2 +, institution = "Welfen Laboratory, Universit{\"a}t Hannover" +, month = jul +, year = 1997 +, url = "http://www-c.informatik.uni-hannover.de" +, keywords = "Voronoi diagram, parametric surface, geodesics on surfaces" +, update = "98.03 mitchell" +, annote = "Appeared in IEEE Computer Society Press Conference Proceedings of the Computer Graphics International 1997 conference, pp. 230--237, June 1997" } @article{kk-dlpcb-90 -, author = "G. Kuperberg and W. Kuperberg" -, title = "Double-lattice packings of convex bodies in the plane" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "389--397" +, author = "G. Kuperberg and W. Kuperberg" +, title = "Double-lattice packings of convex bodies in the plane" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "389--397" } @techreport{k-dwp-90 -, author = "W. Kuperberg" -, title = "{DIMACS} Workshop on Polytopes" -, institution = "Rutgers University" -, month = jan -, year = 1990 -, update = "98.07 bibrelex" +, author = "W. Kuperberg" +, title = "{DIMACS} Workshop on Polytopes" +, institution = "Rutgers University" +, month = jan +, year = 1990 +, update = "98.07 bibrelex" } @techreport{k-epcg-79 -, author = "Y. S. Kupitz" -, title = "Extremal problems in combinatorial geometry" -, type = "Aarhus {University} {Lecture} {Notes} {Series}" -, number = 53 -, institution = "Aarhus University" -, address = "Aarhus, Denmark" -, year = 1979 -, update = "98.03 bibrelex" +, author = "Y. S. Kupitz" +, title = "Extremal problems in combinatorial geometry" +, type = "Aarhus {University} {Lecture} {Notes} {Series}" +, number = 53 +, institution = "Aarhus University" +, address = "Aarhus, Denmark" +, year = 1979 +, update = "98.03 bibrelex" } @article{k-ggst-92 -, author = "Y. S. Kupitz" -, title = "On a generalization of the {Gallai}-{Sylvester} theorem" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "87--106" +, author = "Y. S. Kupitz" +, title = "On a generalization of the {Gallai}-{Sylvester} theorem" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "87--106" } @book{km-st-76 -, author = "K. Kuratowski and A. Mostowski" -, title = "Set Theory" -, publisher = "North-Holland" -, address = "Amsterdam, the Netherlands" -, year = 1976 -, update = "98.11 bibrelex" +, author = "K. Kuratowski and A. Mostowski" +, title = "Set Theory" +, publisher = "North-Holland" +, address = "Amsterdam, the Netherlands" +, year = 1976 +, update = "98.11 bibrelex" } @article{kt-ltldp-92 -, author = "K. Kuroda and H. Tanemura" -, title = "Limit-Theorem and Large Deviation Principle for the {Voronoi} Tessellation Generated by a {Gibbs} Point Process" -, journal = "Adv. Appl. Probab." -, volume = 24 -, number = 1 -, year = 1992 -, pages = "45--70" +, author = "K. Kuroda and H. Tanemura" +, title = "Limit-Theorem and Large Deviation Principle for the {Voronoi} Tessellation Generated by a {Gibbs} Point Process" +, journal = "Adv. Appl. Probab." +, volume = 24 +, number = 1 +, year = 1992 +, pages = "45--70" } @article{kd-pamm-82 -, author = "Y. Kurozumi and W. A. Davis" -, title = "Polygonal approximation by the minimax method" -, journal = "Comput. Graph. Image Process." -, volume = 19 -, year = 1982 -, pages = "248--264" +, author = "Y. Kurozumi and W. A. Davis" +, title = "Polygonal approximation by the minimax method" +, journal = "Comput. Graph. Image Process." +, volume = 19 +, year = 1982 +, pages = "248--264" } @inproceedings{kn-afrmt-97 -, author = "Yoshiyuki Kusakari and Takao Nishizeki" -, title = "An Algorithm for Finding a Region with the Minimum Total {$L_1$}-Distance from Prescibed Terminals" -, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '97" -, site = "Singapore" -, series = "Lecture Notes Comput. Sci." -, volume = 1350 -, publisher = "Springer-Verlag" -, month = dec -, year = 1997 -, pages = "324--333" -, update = "00.11 smid, 00.07 icking, 99.11 bibrelex, 98.11 bibrelex, 98.07 mitchell, 98.03 mitchell" +, author = "Yoshiyuki Kusakari and Takao Nishizeki" +, title = "An Algorithm for Finding a Region with the Minimum Total {$L_1$}-Distance from Prescibed Terminals" +, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '97" +, site = "Singapore" +, series = "Lecture Notes Comput. Sci." +, volume = 1350 +, publisher = "Springer-Verlag" +, month = dec +, year = 1997 +, pages = "324--333" +, update = "00.11 smid, 00.07 icking, 99.11 bibrelex, 98.11 bibrelex, 98.07 mitchell, 98.03 mitchell" } @article{ksn-spppo-99 -, author = "Y. Kusakari and H. Suzuki and T. Nishizeki" -, title = "A Shortest Pair of Paths on the Plane with Obstacles and Crossing Areas" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, year = 1999 -, pages = "151--170" -, update = "99.07 smid" +, author = "Y. Kusakari and H. Suzuki and T. Nishizeki" +, title = "A Shortest Pair of Paths on the Plane with Obstacles and Crossing Areas" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, year = 1999 +, pages = "151--170" +, update = "99.07 smid" } @inproceedings{ksn-fsppp-95 -, author = "Yoshiyuki Kusakari and Hitoshi Suzuki and Takao Nishizeki" -, title = "Finding a Shortest Pair of Paths on the Plane with Obstacles and Crossing Areas" -, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '95" -, series = "Lecture Notes Comput. Sci." -, volume = 1004 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "42--51" -, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" +, author = "Yoshiyuki Kusakari and Hitoshi Suzuki and Takao Nishizeki" +, title = "Finding a Shortest Pair of Paths on the Plane with Obstacles and Crossing Areas" +, booktitle = "Proc. 6th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '95" +, series = "Lecture Notes Comput. Sci." +, volume = 1004 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "42--51" +, update = "98.07 bibrelex, 96.01 smid, 95.09 mitchell" } @inproceedings{kor-esann-98 -, author = "E. Kushilevitz and R. Ostrovsky and Y. Rabani" -, title = "Efficient Search for Approximate Nearest Neighbor in High Dimensional Spaces" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, year = 1998 -, pages = "to appear" -, update = "98.03 mitchell" +, author = "E. Kushilevitz and R. Ostrovsky and Y. Rabani" +, title = "Efficient Search for Approximate Nearest Neighbor in High Dimensional Spaces" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, year = 1998 +, pages = "to appear" +, update = "98.03 mitchell" } @phdthesis{k-cmppl-92 -, author = "J. Kutcher" -, title = "Coordinated motion planning of planar linkages" -, school = "Johns Hopkins University" -, year = 1992 -, keywords = "doctoral thesis" +, author = "J. Kutcher" +, title = "Coordinated motion planning of planar linkages" +, school = "Johns Hopkins University" +, year = 1992 +, keywords = "doctoral thesis" } @inproceedings{kms-spafa-85 -, author = "B. C. Kuttner and D. S. Majcher and P. B. Snedecor" -, title = "Systematic Processing: {An} Approach to Fully Automatic {NC} Tool Path Generation" -, booktitle = "Proceedings of Autofact '85 Conference" -, month = nov -, year = 1985 -, pages = "18--22" -, update = "98.03 bibrelex" +, author = "B. C. Kuttner and D. S. Majcher and P. B. Snedecor" +, title = "Systematic Processing: {An} Approach to Fully Automatic {NC} Tool Path Generation" +, booktitle = "Proceedings of Autofact '85 Conference" +, month = nov +, year = 1985 +, pages = "18--22" +, update = "98.03 bibrelex" } @inproceedings{ks-agtpu-86 -, author = "B. Kutzler and S. Stifter" -, title = "Automated geometry theorem proving using {Buchberger}'s algorithm" -, booktitle = "SYMSAC '86" -, site = "Waterloo, Canada" -, year = 1986 -, update = "98.03 bibrelex" +, author = "B. Kutzler and S. Stifter" +, title = "Automated geometry theorem proving using {Buchberger}'s algorithm" +, booktitle = "SYMSAC '86" +, site = "Waterloo, Canada" +, year = 1986 +, update = "98.03 bibrelex" } @article{ks-abaag-86 -, author = "B. Kutzler and S. Stifter" -, title = "On the application of {Buchberger}'s algorithm to automated geometry theorem proving" -, journal = "J. Symbolic Comput." -, volume = 2 -, year = 1986 -, pages = "409--420" -, update = "98.03 bibrelex" +, author = "B. Kutzler and S. Stifter" +, title = "On the application of {Buchberger}'s algorithm to automated geometry theorem proving" +, journal = "J. Symbolic Comput." +, volume = 2 +, year = 1986 +, pages = "409--420" +, update = "98.03 bibrelex" } @article{kk-ettfe-94 -, author = "I. S. Kweon and T. Kanade" -, title = "Extracting topographic terrain features from elevation maps" -, journal = "CVGIP: Image Understanding" -, volume = 59 -, year = 1994 -, pages = "171--182" -, update = "98.07 bibrelex" +, author = "I. S. Kweon and T. Kanade" +, title = "Extracting topographic terrain features from elevation maps" +, journal = "CVGIP: Image Understanding" +, volume = 59 +, year = 1994 +, pages = "171--182" +, update = "98.07 bibrelex" } @phdthesis{k-caplp-92 -, author = "K. K. Kwong" -, title = "Computer-aided parting line and parting surface generation in mould design" -, school = "University of Hong Kong" -, address = "Hong Kong" -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "K. K. Kwong" +, title = "Computer-aided parting line and parting surface generation in mould design" +, school = "University of Hong Kong" +, address = "Hong Kong" +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @mastersthesis{k-sgmwt-96 -, author = "Y. Kyoda" -, title = "A Study of Generating Minimum Weight Triangulation within Practical Time" -, school = "Dept. Inform. Sci., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1996 -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "Y. Kyoda" +, title = "A Study of Generating Minimum Weight Triangulation within Practical Time" +, school = "Dept. Inform. Sci., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1996 +, keywords = "master thesis" +, update = "97.11 bibrelex" } @inproceedings{ki-bcamw-97 -, author = "Yoshiaki Kyoda and Keiko Imai" -, title = "A Branch-and-Cut Approach for Minimum Weight Triangulation" -, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '97" -, site = "Singapore" -, series = "Lecture Notes Comput. Sci." -, volume = 1350 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "384--393" -, update = "99.11 bibrelex, 98.11 bibrelex, 98.07 mitchell, 98.03 mitchell" +, author = "Yoshiaki Kyoda and Keiko Imai" +, title = "A Branch-and-Cut Approach for Minimum Weight Triangulation" +, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '97" +, site = "Singapore" +, series = "Lecture Notes Comput. Sci." +, volume = 1350 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "384--393" +, update = "99.11 bibrelex, 98.11 bibrelex, 98.07 mitchell, 98.03 mitchell" } @phdthesis{k-sccad-80 -, author = "L. K. Kyprianou" -, title = "Shape classification in computer aided design" -, school = "Cambridge Univ." -, address = "Cambridge, UK" -, year = 1980 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "L. K. Kyprianou" +, title = "Shape classification in computer aided design" +, school = "Cambridge Univ." +, address = "Cambridge, UK" +, year = 1980 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{l-aaipt-94 -, author = "J. A. {La Poutr{\'e}}" -, title = "Alpha-algorithms for incremental planarity testing" -, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "706--715" -, keywords = "graph drawing" -, update = "95.09 tamassia, 95.05 tamassia, 95.01 tamassia" +, author = "J. A. {La Poutr{\'e}}" +, title = "Alpha-algorithms for incremental planarity testing" +, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "706--715" +, keywords = "graph drawing" +, update = "95.09 tamassia, 95.05 tamassia, 95.01 tamassia" } @phdthesis{l-dgads-91 -, author = "J. A. {La Poutr{\'e}}" -, title = "Dynamic Graph Algorithms and Data Structures" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Utrecht." -, year = 1991 -, keywords = "dynamic algorithm" -, update = "96.01 tamassia" +, author = "J. A. {La Poutr{\'e}}" +, title = "Dynamic Graph Algorithms and Data Structures" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Utrecht." +, year = 1991 +, keywords = "dynamic algorithm" +, update = "96.01 tamassia" } @inproceedings{l-mtcg-92 -, author = "J. A. {La Poutr{\'e}}" -, title = "Maintenance of Triconnected Components of Graphs" -, booktitle = "Automata, Languages and Programming (Proc. 19th ICALP)" -, series = "Lecture Notes Comput. Sci." -, volume = 623 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "354--365" -, update = "98.07 vismara, 96.05 agarwal, 96.01 tamassia, 95.05 tamassia, 94.01 tamassia" +, author = "J. A. {La Poutr{\'e}}" +, title = "Maintenance of Triconnected Components of Graphs" +, booktitle = "Automata, Languages and Programming (Proc. 19th ICALP)" +, series = "Lecture Notes Comput. Sci." +, volume = 623 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "354--365" +, update = "98.07 vismara, 96.05 agarwal, 96.01 tamassia, 95.05 tamassia, 94.01 tamassia" } @inproceedings{l-ntufp-90 -, author = "J. A. {La Poutr{\'e}}" -, title = "New techniques for the {Union}-{Find} problem" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "54--63" -, update = "95.05 tamassia" +, author = "J. A. {La Poutr{\'e}}" +, title = "New techniques for the {Union}-{Find} problem" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "54--63" +, update = "95.05 tamassia" } @inproceedings{pl-mtctr-88 -, author = "J. A. {La Poutr{\'e}} and J. van Leeuwen" -, title = "Maintenance of Transitive Closures and Transitive Reductions of Graphs" -, editor = "H. Gottler and H. J. Schneider" -, booktitle = "Graph-Theoretic Concepts in Computer Science (Proc. WG '87)" -, series = "Lecture Notes Comput. Sci." -, volume = 314 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "106--120" -, update = "95.05 tamassia, 94.01 tamassia" +, author = "J. A. {La Poutr{\'e}} and J. van Leeuwen" +, title = "Maintenance of Transitive Closures and Transitive Reductions of Graphs" +, editor = "H. Gottler and H. J. Schneider" +, booktitle = "Graph-Theoretic Concepts in Computer Science (Proc. WG '87)" +, series = "Lecture Notes Comput. Sci." +, volume = 314 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "106--120" +, update = "95.05 tamassia, 94.01 tamassia" } @book{la-satp-87 -, author = "P. J. M. van Laarhoven and E. H. L. Aarts" -, title = "Simulated Annealing: Theory and Practice" -, publisher = "Kluwer Academic Publications" -, year = 1987 -, update = "97.11 bibrelex" +, author = "P. J. M. van Laarhoven and E. H. L. Aarts" +, title = "Simulated Annealing: Theory and Practice" +, publisher = "Kluwer Academic Publications" +, year = 1987 +, update = "97.11 bibrelex" } @inproceedings{l-sirdi-99 -, author = "Jean-Marie Laborde" -, title = "Some Issues Raised by the Development of Implemented Dynamic Geometry as with {Cabri-g{\'e}om{\`e}tre}" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "7--19" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Jean-Marie Laborde" +, title = "Some Issues Raised by the Development of Implemented Dynamic Geometry as with {Cabri-g{\'e}om{\`e}tre}" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "7--19" +, update = "00.03 bibrelex, 99.07 bibrelex" } @book{lb-cg2-93 -, author = "Jean-Marie Laborde and Franck Bellemain" -, title = "{Cabri} {Geometry} {II}" -, publisher = "Texas Instruments" -, address = "Dallas" -, year = 1993 -, update = "99.07 bibrelex" +, author = "Jean-Marie Laborde and Franck Bellemain" +, title = "{Cabri} {Geometry} {II}" +, publisher = "Texas Instruments" +, address = "Dallas" +, year = 1993 +, update = "99.07 bibrelex" } @article{lsv-gmabm-94 -, author = "B. Lacolle and N. Szafran and P. Valentin" -, title = "Geometric Modelling and Algorithms for Binary Mixtures" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "243--260" -, keywords = "computational geometry, convex sets, zonotopes, separation theory" -, update = "96.09 devillers, 94.05 devillers" +, author = "B. Lacolle and N. Szafran and P. Valentin" +, title = "Geometric Modelling and Algorithms for Binary Mixtures" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "243--260" +, keywords = "computational geometry, convex sets, zonotopes, separation theory" +, update = "96.09 devillers, 94.05 devillers" } @article{lf-ppc-80 -, author = "R. E. Ladner and M. J. Fischer" -, title = "Parallel prefix computation" -, journal = "J. Assoc. Comput. Machinery" -, volume = 27 -, number = 4 -, month = oct -, year = 1980 -, pages = "831--838" -, update = "97.11 bibrelex" +, author = "R. E. Ladner and M. J. Fischer" +, title = "Parallel prefix computation" +, journal = "J. Assoc. Comput. Machinery" +, volume = 27 +, number = 4 +, month = oct +, year = 1980 +, pages = "831--838" +, update = "97.11 bibrelex" } @article{l-ccsda-85 -, author = "J. Lagarias" -, title = "The computational complexity of simultaneos {Diophantine} approximation problems" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "196--209" -, update = "98.03 bibrelex" +, author = "J. Lagarias" +, title = "The computational complexity of simultaneos {Diophantine} approximation problems" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "196--209" +, update = "98.03 bibrelex" } @incollection{lpr-psdsc-96 -, author = "J. C. Lagarias and N. Prabhu and J. A. Reeds" -, title = "The parameter space of the $d$-step conjecture" -, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1180 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "52--63" -, update = "97.03 smid" +, author = "J. C. Lagarias and N. Prabhu and J. A. Reeds" +, title = "The parameter space of the $d$-step conjecture" +, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1180 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "52--63" +, update = "97.03 smid" } @inproceedings{ls-sdiuc-94 -, author = "M. J. Lai and L. L. Schumaker" -, title = "Scattered data interpolation using {$C^{2}$} piecewise polynomials of degree six" -, booktitle = "3rd Workshop Proximity Graphs" -, year = 1994 -, update = "97.11 bibrelex" +, author = "M. J. Lai and L. L. Schumaker" +, title = "Scattered data interpolation using {$C^{2}$} piecewise polynomials of degree six" +, booktitle = "3rd Workshop Proximity Graphs" +, year = 1994 +, update = "97.11 bibrelex" } @article{lw-ehppn-93 -, author = "T.-H. Lai and S.-S. Wei" -, title = "The edge {Hamiltonian} path problem is {NP}-complete for bipartite graphs" -, journal = "Inform. Process. Lett." -, volume = 46 -, year = 1993 -, pages = "21--26" -, update = "98.11 bibrelex" +, author = "T.-H. Lai and S.-S. Wei" +, title = "The edge {Hamiltonian} path problem is {NP}-complete for bipartite graphs" +, journal = "Inform. Process. Lett." +, volume = 46 +, year = 1993 +, pages = "21--26" +, update = "98.11 bibrelex" } @article{lth-csgpo-86 -, author = "D. H. Laidlaw and W. B. Trumbore and J. F. Hughes" -, title = "Constructive Solid Geometry for Polyhedral Objects" -, journal = "Comput. Graph." -, volume = 20 -, number = 4 -, year = 1986 -, pages = "161--170" -, note = "Proc. SIGGRAPH '86" -, update = "93.09 goodrich" +, author = "D. H. Laidlaw and W. B. Trumbore and J. F. Hughes" +, title = "Constructive Solid Geometry for Polyhedral Objects" +, journal = "Comput. Graph." +, volume = 20 +, number = 4 +, year = 1986 +, pages = "161--170" +, note = "Proc. SIGGRAPH '86" +, update = "93.09 goodrich" } @inproceedings{l-ssxoc-90 -, author = "J.-L. Lambert" -, title = "Sorting the sums ($x_i+y_j$) in {$O(n^2)$} comparisons" -, booktitle = "Proc. 7th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 415 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "195--206" -, update = "99.11 bibrelex" +, author = "J.-L. Lambert" +, title = "Sorting the sums ($x_i+y_j$) in {$O(n^2)$} comparisons" +, booktitle = "Proc. 7th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 415 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "195--206" +, update = "99.11 bibrelex" } @inproceedings{l-sxyoc-91 -, author = "J. L. Lambert" -, title = "Sorting {X + Y} in $O(n^2)$ comparisons" -, booktitle = "Proc. 8th Sympos. Theoret. Aspects Comput. Sci." -, year = 1991 -, pages = "195--206" -, update = "98.11 bibrelex" +, author = "J. L. Lambert" +, title = "Sorting {X + Y} in $O(n^2)$ comparisons" +, booktitle = "Proc. 8th Sympos. Theoret. Aspects Comput. Sci." +, year = 1991 +, pages = "195--206" +, update = "98.11 bibrelex" } @phdthesis{l-esta-94 -, author = "T. Lambert" -, title = "Empty-Shape Triangulation Algorithms" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. of Manitoba" -, address = "Winnipeg, MB" -, month = aug -, year = 1994 -, url = "ftp://ftp.cse.unsw.edu.au/pub/users/lambert/thesis.ps.Z" -, keywords = "doctoral thesis" -, update = "94.09 lambert" -, abstract = "The Delaunay triangulation of a set of sites (points in +, author = "T. Lambert" +, title = "Empty-Shape Triangulation Algorithms" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. of Manitoba" +, address = "Winnipeg, MB" +, month = aug +, year = 1994 +, url = "ftp://ftp.cse.unsw.edu.au/pub/users/lambert/thesis.ps.Z" +, keywords = "doctoral thesis" +, update = "94.09 lambert" +, abstract = "The Delaunay triangulation of a set of sites (points in the plane) can be defined as the triangulation with the property that the circumcircle of each triangle is empty (contains no site). I generalize this to define {\em empty-shape triangulations}. An empty-shape @@ -92756,1996 +92756,1996 @@ @phdthesis{l-esta-94 } @techreport{l-lot-93 -, author = "T. Lambert" -, title = "Local optimization of triangulations" -, type = "manuscript" -, year = 1993 -, update = "98.11 bibrelex" +, author = "T. Lambert" +, title = "Local optimization of triangulations" +, type = "manuscript" +, year = 1993 +, update = "98.11 bibrelex" } @techreport{l-lot-93a -, author = "T. Lambert" -, title = "Local optimization of triangulations" -, type = "manuscript" -, year = 1993 -, update = "98.11 bibrelex" +, author = "T. Lambert" +, title = "Local optimization of triangulations" +, type = "manuscript" +, year = 1993 +, update = "98.11 bibrelex" } @inproceedings{l-slfra-93 -, author = "T. Lambert" -, title = "Systematic local flip rules are generalized {Delaunay} rules" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "352--357" -, cites = "a-vdsfg-91, be-mgot-92i, b-koejk-36, d-pacdt-90, d-srbtg-87, fdfh-cgpp-90, f-skgk-20, g-itsn-86, gks-ricdv-92, gs-pmgsc-85, k-cavd-89, l-lot-93, l-gtgac-72, ls-tacdt-80, nf-scbut-83, o-dtfl-90, ba-acfem-76, s-let-78, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "T. Lambert" +, title = "Systematic local flip rules are generalized {Delaunay} rules" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "352--357" +, cites = "a-vdsfg-91, be-mgot-92i, b-koejk-36, d-pacdt-90, d-srbtg-87, fdfh-cgpp-90, f-skgk-20, g-itsn-86, gks-ricdv-92, gs-pmgsc-85, k-cavd-89, l-lot-93, l-gtgac-72, ls-tacdt-80, nf-scbut-83, o-dtfl-90, ba-acfem-76, s-let-78, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{l-dtmmi-94 -, author = "T. Lambert" -, title = "The {Delaunay} Triangulation Maximizes the Mean Inradius" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "201--206" -, cites = "a-vdsfg-91, b-ras-77, be-mgot-92i, ds-oiti-89, d-iw-86, fdfh-cgpp-90, f-vddt-92, h-mg-85, j-aeg-60, l-lot-93, ba-acfem-76, d-srbtg-87, ls-agt-, o-dtfl-90, p-mrpdt-92, r-odtr-91, r-mrpdt-90, s-tm-87, s-let-78, w-pdcig-91, fp-jtgp-89, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "T. Lambert" +, title = "The {Delaunay} Triangulation Maximizes the Mean Inradius" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "201--206" +, cites = "a-vdsfg-91, b-ras-77, be-mgot-92i, ds-oiti-89, d-iw-86, fdfh-cgpp-90, f-vddt-92, h-mg-85, j-aeg-60, l-lot-93, ba-acfem-76, d-srbtg-87, ls-agt-, o-dtfl-90, p-mrpdt-92, r-odtr-91, r-mrpdt-90, s-tm-87, s-let-78, w-pdcig-91, fp-jtgp-89, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{lsw-oraim-88 -, author = "Y. Lamdan and J. T. Schwartz and H. J. Wolfson" -, title = "Object recognition by affine invariant mapping" -, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." -, year = 1988 -, pages = "335--344" -, update = "97.11 bibrelex" +, author = "Y. Lamdan and J. T. Schwartz and H. J. Wolfson" +, title = "Object recognition by affine invariant mapping" +, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." +, year = 1988 +, pages = "335--344" +, update = "97.11 bibrelex" } @inproceedings{lw-ghgem-88 -, author = "Y. Lamdan and H. J. Wolfson" -, title = "Geometric hashing: a general and efficient model-based recognition scheme" -, booktitle = "2nd Inter. Conf. on Comput. Vision" -, year = 1988 -, pages = "238--249" -, update = "96.09 orourke" +, author = "Y. Lamdan and H. J. Wolfson" +, title = "Geometric hashing: a general and efficient model-based recognition scheme" +, booktitle = "2nd Inter. Conf. on Comput. Vision" +, year = 1988 +, pages = "238--249" +, update = "96.09 orourke" } @inproceedings{lw-eagh-91 -, author = "Y. Lamdan and H. J. Wolfson" -, title = "On the error analysis of geometric hashing" -, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." -, year = 1991 -, pages = "22--27" -, update = "97.11 bibrelex" +, author = "Y. Lamdan and H. J. Wolfson" +, title = "On the error analysis of geometric hashing" +, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." +, year = 1991 +, pages = "22--27" +, update = "97.11 bibrelex" } @inproceedings{lhn-ddq2d-97 -, author = "Michael G. Lamoureux and Joseph D. Horton and Bradford G. Nickerson" -, title = "Dynamizing Domination Queries in 2--dimensions: The Paper Stabbing Problem Revisited" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "211--216" -, update = "97.11 jones" +, author = "Michael G. Lamoureux and Joseph D. Horton and Bradford G. Nickerson" +, title = "Dynamizing Domination Queries in 2--dimensions: The Paper Stabbing Problem Revisited" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "211--216" +, update = "97.11 jones" } @book{l-dpslu-86 -, author = "Leslie Lamport" -, title = "A Document Preparation System {Latex} User's Guide and Reference Manual" -, publisher = "Addison-Wesley" -, year = 1986 -, update = "98.11 bibrelex" +, author = "Leslie Lamport" +, title = "A Document Preparation System {Latex} User's Guide and Reference Manual" +, publisher = "Addison-Wesley" +, year = 1986 +, update = "98.11 bibrelex" } @inproceedings{lm-sgch-95 -, author = "H. Lamure and D. Michelucci" -, title = "Solving geometric constraints by homotopy" -, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" -, site = "Salt Lake City, UT" -, month = may -, year = 1995 -, update = "98.07 bibrelex" +, author = "H. Lamure and D. Michelucci" +, title = "Solving geometric constraints by homotopy" +, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" +, site = "Salt Lake City, UT" +, month = may +, year = 1995 +, update = "98.07 bibrelex" } @article{lccg-dforp-97 -, author = "P.-T. Lan and S.-Y. Chou and L.-L. Chen and D. Gemmill" -, title = "Determining Fabrication Orientations for Rapid Prototyping with Stereolithography Apparatus" -, journal = "Comput. Aided Design" -, volume = 29 -, number = 1 -, month = jan -, year = 1997 -, pages = "53--62" -, update = "97.11 held" +, author = "P.-T. Lan and S.-Y. Chou and L.-L. Chen and D. Gemmill" +, title = "Determining Fabrication Orientations for Rapid Prototyping with Stereolithography Apparatus" +, journal = "Comput. Aided Design" +, volume = 29 +, number = 1 +, month = jan +, year = 1997 +, pages = "53--62" +, update = "97.11 held" } @inproceedings{lv-pmdi-92 -, author = "G. M. Landau and U. Vishkin" -, title = "Pattern matching in a digitized image" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "453--462" +, author = "G. M. Landau and U. Vishkin" +, title = "Pattern matching in a digitized image" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "453--462" } @incollection{lv-tdpmd-93 -, author = "Gad M. Landau and Uzi Vishkin" -, title = "Two Dimensional Pattern Matching in a Digitized Image" -, booktitle = "Combinatorial Pattern Matching" -, series = "Lecture Notes Comput. Sci." -, volume = 684 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "134--151" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "Gad M. Landau and Uzi Vishkin" +, title = "Two Dimensional Pattern Matching in a Digitized Image" +, booktitle = "Combinatorial Pattern Matching" +, series = "Lecture Notes Comput. Sci." +, volume = 684 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "134--151" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{l-fpq-87 -, author = "S. Landau" -, title = "Factoring polynomials quickly" -, journal = "Notices Amer. Math. Soc." -, volume = 34 -, number = 1 -, year = 1987 -, pages = "3--8" -, update = "97.11 bibrelex" +, author = "S. Landau" +, title = "Factoring polynomials quickly" +, journal = "Notices Amer. Math. Soc." +, volume = 34 +, number = 1 +, year = 1987 +, pages = "3--8" +, update = "97.11 bibrelex" } @inproceedings{lm-srpt-83 -, author = "S. Landau and G. L. Miller" -, title = "Solvability by radicals in polynomial time" -, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." -, year = 1983 -, pages = "140--151" -, precedes = "lm-srpt-85" +, author = "S. Landau and G. L. Miller" +, title = "Solvability by radicals in polynomial time" +, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." +, year = 1983 +, pages = "140--151" +, precedes = "lm-srpt-85" } @article{lm-srpt-85 -, author = "S. Landau and G. L. Miller" -, title = "Solvability by radicals in polynomial time" -, journal = "J. Comput. Syst. Sci." -, volume = 30 -, year = 1985 -, pages = "179--208" -, succeeds = "lm-srpt-83" +, author = "S. Landau and G. L. Miller" +, title = "Solvability by radicals in polynomial time" +, journal = "J. Comput. Syst. Sci." +, volume = 30 +, year = 1985 +, pages = "179--208" +, succeeds = "lm-srpt-83" } @article{l-ecacr-87 -, author = "U. M. Landau" -, title = "Estimation of circular arc center and its radius" -, journal = "Comput. Vision Graph. Image Process." -, volume = 38 -, year = 1987 -, pages = "317--326" -, update = "98.11 bibrelex, 97.03 agarwal" +, author = "U. M. Landau" +, title = "Estimation of circular arc center and its radius" +, journal = "Comput. Vision Graph. Image Process." +, volume = 38 +, year = 1987 +, pages = "317--326" +, update = "98.11 bibrelex, 97.03 agarwal" } @article{lmr-eppa-84 -, author = "J. Lane and B. Magedson and M. Rarick" -, title = "An efficient point in polyhedron algorithm" -, journal = "Comput. Vision Graph. Image Process." -, volume = 26 -, year = 1984 -, pages = "118--125" -, update = "98.11 bibrelex" +, author = "J. Lane and B. Magedson and M. Rarick" +, title = "An efficient point in polyhedron algorithm" +, journal = "Comput. Vision Graph. Image Process." +, volume = 26 +, year = 1984 +, pages = "118--125" +, update = "98.11 bibrelex" } @article{lcwb-slmdp-80 -, author = "J. M. Lane and L. C. Carpenter and J. T. Whitted and J. F. Blinn" -, title = "Scan line methods for displaying parametrically defined surfaces" -, journal = "Commun. ACM" -, volume = 23 -, number = 1 -, year = 1980 -, pages = "23--34" -, update = "97.11 bibrelex" +, author = "J. M. Lane and L. C. Carpenter and J. T. Whitted and J. F. Blinn" +, title = "Scan line methods for displaying parametrically defined surfaces" +, journal = "Commun. ACM" +, volume = 23 +, number = 1 +, year = 1980 +, pages = "23--34" +, update = "97.11 bibrelex" } @article{lr-bp-81 -, author = "J. M. Lane and R. Riesenfeld" -, title = "Bounds on a polynomial" -, journal = "BIT" -, volume = 21 -, year = 1981 -, pages = "112--117" -, update = "97.11 bibrelex" +, author = "J. M. Lane and R. Riesenfeld" +, title = "Bounds on a polynomial" +, journal = "BIT" +, volume = 21 +, year = 1981 +, pages = "112--117" +, update = "97.11 bibrelex" } @article{lr-tdcgd-80 -, author = "J. M. Lane and R. R. Riesenfeld" -, title = "A Theoretical Development for the Computer Generation and Display of Piecewise Polynomial Surfaces" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-2" -, number = 1 -, month = jan -, year = 1980 -, update = "97.11 bibrelex" +, author = "J. M. Lane and R. R. Riesenfeld" +, title = "A Theoretical Development for the Computer Generation and Display of Piecewise Polynomial Surfaces" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-2" +, number = 1 +, month = jan +, year = 1980 +, update = "97.11 bibrelex" } @inproceedings{l-caod-96 -, author = "Robert J. Lang" -, title = "A Computational Algorithm for Origami Design" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "98--105" -, cites = "ml-osl-90, m-oe-79, l-oi-95, k-fo-95, m-po-89, k-co-67, kt-oc-78, k-oo-88, e-oaz-94, m-??-94, k-tffaf-94, k-rbmcv-89, l-maod-94, h-mfo-94, h-ccpp-76, bh-cfo-96, v-noted-84, pftv-nrc-93, g-tc-92, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 efrat" +, author = "Robert J. Lang" +, title = "A Computational Algorithm for Origami Design" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "98--105" +, cites = "ml-osl-90, m-oe-79, l-oi-95, k-fo-95, m-po-89, k-co-67, kt-oc-78, k-oo-88, e-oaz-94, m-??-94, k-tffaf-94, k-rbmcv-89, l-maod-94, h-mfo-94, h-ccpp-76, bh-cfo-96, v-noted-84, pftv-nrc-93, g-tc-92, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 efrat" } @article{l-maod-94 -, author = "R. J. Lang" -, title = "Mathematical algorithms for origami design" -, journal = "Symmetry: Culture and Science" -, volume = 5 -, number = 2 -, year = 1994 -, pages = "115--152" -, update = "97.11 bibrelex" +, author = "R. J. Lang" +, title = "Mathematical algorithms for origami design" +, journal = "Symmetry: Culture and Science" +, volume = 5 +, number = 2 +, year = 1994 +, pages = "115--152" +, update = "97.11 bibrelex" } @book{l-oi-95 -, author = "R. J. Lang" -, title = "Origami Insects" -, publisher = "Dover" -, year = 1995 -, update = "97.11 bibrelex" +, author = "R. J. Lang" +, title = "Origami Insects" +, publisher = "Dover" +, year = 1995 +, update = "97.11 bibrelex" } @book{l-a1-69 -, author = "Serge Lang" -, title = "Analysis {I}" -, publisher = "Addison-Wesley" -, address = "New York, NY" -, year = 1969 -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "Serge Lang" +, title = "Analysis {I}" +, publisher = "Addison-Wesley" +, address = "New York, NY" +, year = 1969 +, update = "98.07 bibrelex, 98.03 bibrelex" } @phdthesis{l-agas-98 -, author = "E. de Lange" -, title = "Aide g{\'e}om{\'e}trique {\`a} l'am{\'e}nagement de satellites" -, type = "Th\`{e}se de doctorat en sciences" -, school = "{\'E}cole Nationale Sup\'erieure des Mines de Paris" -, address = "France" -, year = 1998 -, url = "http://www-sop.inria.fr/prisme/publis/these-delange.ps.gz" -, keywords = "doctoral thesis" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers" +, author = "E. de Lange" +, title = "Aide g{\'e}om{\'e}trique {\`a} l'am{\'e}nagement de satellites" +, type = "Th\`{e}se de doctorat en sciences" +, school = "{\'E}cole Nationale Sup\'erieure des Mines de Paris" +, address = "France" +, year = 1998 +, url = "http://www-sop.inria.fr/prisme/publis/these-delange.ps.gz" +, keywords = "doctoral thesis" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers" } @inproceedings{lrsw-clprt-01 -, author = "K. Lange and R. Ray and M. Smid and U. Wendt" -, title = "Computing large planar regions in terrains" -, booktitle = "Proc. 8th International Workshop on Combinatorial Image Analysis" -, nickname = "IWCIA '01" -, year = 2001 -, pages = "139--151" -, comments = "Appears also in Electronic Notes in Theoretical +, author = "K. Lange and R. Ray and M. Smid and U. Wendt" +, title = "Computing large planar regions in terrains" +, booktitle = "Proc. 8th International Workshop on Combinatorial Image Analysis" +, nickname = "IWCIA '01" +, year = 2001 +, pages = "139--151" +, comments = "Appears also in Electronic Notes in Theoretical Computer Science, Volume 46, www.elsevier.nl/locate/entcs/volume46.html" -, update = "01.11 smid" +, update = "01.11 smid" } @inproceedings{l-chaq-01 -, author = "Stefan Langermann" -, title = "On the Complexity of Halfspace Area Queries" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "86--88" -, update = "01.04 icking" +, author = "Stefan Langermann" +, title = "On the Complexity of Halfspace Area Queries" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "86--88" +, update = "01.04 icking" } @phdthesis{l-dasas-00 -, author = "Elmar Langetepe" -, title = "Design and Analysis of Strategies for Autonomous Systems in Motion Planning" -, school = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, year = 2000 -, keywords = "doctoral thesis" -, cites = "aaiklr-psac-97, aaiklr-gsac-98p, admss-esstl-95, bcr-sp-93, b-olsn-98, brs-nugt-97, bl-piss-99, bs-srsc-99, bsmm-tdm-93, cn-cvpp-99, cgglmw-m5lrm-91, cgglmw-fltim-92, cn-owr-88, c-lp-83, cg-opapp-92, cghj-lwfm-93, cfg-upg-90, dhn-lvp-97, dcd-ncaas-96, dhs-cspbg-95, di-csgs-94, di-csgs-99, bkos-cgaa-97, ew-mmcfs-99, fw-ola-98, g-sg-80, g-csg-89, gj-cigtn-79, gs-oolaw-97, hns-psmr-99, hikl-hfplf-97, hikl-hfplf-99, hikk-cslp-97, hikk-maar-98, hikk-pepns-98, hikk-pep1c-98, hikk-pep2a-98, i-mvsp-94, ik-skpcs-95, ikl-skpcs-97, ikl-sac-97, ikl-ocsws-98, ikl-ocsws-99, ikl-sgmrw-99, ikl-sac-99, ikm-hlac-93, ilss-ghtus-98, jdugg-wcpbs-74, k-wusbd-91, k-wusbd-92, k-ag-97, k-olssp-94, ks-aools-97, lp-oafkp-79, lc-tasso-99, lsksc-ncssu-97, l-oltsb-96, ls-ghtus-95, ls-serst-95, ls-gsr-96, ls-wsf-96, ls-pinos-97, ls-ecesc-98, ls-lbsgs-98, ls-ussmr-98, m-gspno-00, osh-kaoa-94, ps-cgi-85, rksi-rnut-93, r-cic-94, rs-addce-91, s-smbr-98, ss-oss-98, ss-ossus-99, s-naci-89, s-aeusf-96, st-aelup-85, th-cswrd-93, thl-tgwsp-98, ZZZ" -, update = "00.11 smid, 00.07 icking, 00.03 bibrelex" +, author = "Elmar Langetepe" +, title = "Design and Analysis of Strategies for Autonomous Systems in Motion Planning" +, school = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, year = 2000 +, keywords = "doctoral thesis" +, cites = "aaiklr-psac-97, aaiklr-gsac-98p, admss-esstl-95, bcr-sp-93, b-olsn-98, brs-nugt-97, bl-piss-99, bs-srsc-99, bsmm-tdm-93, cn-cvpp-99, cgglmw-m5lrm-91, cgglmw-fltim-92, cn-owr-88, c-lp-83, cg-opapp-92, cghj-lwfm-93, cfg-upg-90, dhn-lvp-97, dcd-ncaas-96, dhs-cspbg-95, di-csgs-94, di-csgs-99, bkos-cgaa-97, ew-mmcfs-99, fw-ola-98, g-sg-80, g-csg-89, gj-cigtn-79, gs-oolaw-97, hns-psmr-99, hikl-hfplf-97, hikl-hfplf-99, hikk-cslp-97, hikk-maar-98, hikk-pepns-98, hikk-pep1c-98, hikk-pep2a-98, i-mvsp-94, ik-skpcs-95, ikl-skpcs-97, ikl-sac-97, ikl-ocsws-98, ikl-ocsws-99, ikl-sgmrw-99, ikl-sac-99, ikm-hlac-93, ilss-ghtus-98, jdugg-wcpbs-74, k-wusbd-91, k-wusbd-92, k-ag-97, k-olssp-94, ks-aools-97, lp-oafkp-79, lc-tasso-99, lsksc-ncssu-97, l-oltsb-96, ls-ghtus-95, ls-serst-95, ls-gsr-96, ls-wsf-96, ls-pinos-97, ls-ecesc-98, ls-lbsgs-98, ls-ussmr-98, m-gspno-00, osh-kaoa-94, ps-cgi-85, rksi-rnut-93, r-cic-94, rs-addce-91, s-smbr-98, ss-oss-98, ss-ossus-99, s-naci-89, s-aeusf-96, st-aelup-85, th-cswrd-93, thl-tgwsp-98, ZZZ" +, update = "00.11 smid, 00.07 icking, 00.03 bibrelex" } @article{l-rtaa-69 -, author = "P. M. Lankford" -, title = "Regionalization: theory and alternative algorithms" -, journal = "Geogr. Anal." -, volume = 1 -, year = 1969 -, pages = "196--212" -, update = "98.03 bibrelex" +, author = "P. M. Lankford" +, title = "Regionalization: theory and alternative algorithms" +, journal = "Geogr. Anal." +, volume = 1 +, year = 1969 +, pages = "196--212" +, update = "98.03 bibrelex" } @techreport{lms-awspp-96 -, author = "M. Lanthier and A. Maheshwari and J.-R. Sack" -, title = "Approximating weighted shortest paths on polyhedral surfaces" -, type = "Technical {Report}" -, number = "TR-96-32" -, institution = "Carleton Univ." -, address = "Ottawa, ON" -, month = dec -, year = 1996 -, update = "98.07 bibrelex" +, author = "M. Lanthier and A. Maheshwari and J.-R. Sack" +, title = "Approximating weighted shortest paths on polyhedral surfaces" +, type = "Technical {Report}" +, number = "TR-96-32" +, institution = "Carleton Univ." +, address = "Ottawa, ON" +, month = dec +, year = 1996 +, update = "98.07 bibrelex" } @inproceedings{lms-awspp-97i -, author = "M. Lanthier and A. Maheshwari and J.-R. Sack" -, title = "Approximating weighted shortest paths on polyhedral surfaces" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "274--283" -, keywords = "shortest paths, weighted region problem, discrete geodesic problem" -, cites = "hsv-aspcp-96, aaos-supa-97, ch-spp-90, c-aaspm-87, d-ntpcg-59, gh-ospqs-87, hs-pmasp-95, hlmnrs-pnm-96, lms-awspp-96, lms-awspp-97v, mmp-dgp-87, mp-wrpfs-91, ms-scg-95, m-fspcp-85, osb-spps-84, rr-ogfpp-90, ss-spps-86, va-aspp-96, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "M. Lanthier and A. Maheshwari and J.-R. Sack" +, title = "Approximating weighted shortest paths on polyhedral surfaces" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "274--283" +, keywords = "shortest paths, weighted region problem, discrete geodesic problem" +, cites = "hsv-aspcp-96, aaos-supa-97, ch-spp-90, c-aaspm-87, d-ntpcg-59, gh-ospqs-87, hs-pmasp-95, hlmnrs-pnm-96, lms-awspp-96, lms-awspp-97v, mmp-dgp-87, mp-wrpfs-91, ms-scg-95, m-fspcp-85, osb-spps-84, rr-ogfpp-90, ss-spps-86, va-aspp-96, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @inproceedings{lms-awspp-97v -, author = "M. Lanthier and A. Maheshwari and J.-R. Sack" -, title = "Approximating Weighted Shortest Paths on Polyhedral Surfaces" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "485--486" -, keywords = "video review" -, cites = "aaos-supa-97, ch-spp-90, lms-awspp-96, lms-awspp-97i, mmp-dgp-87, mp-wrpfs-91, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "M. Lanthier and A. Maheshwari and J.-R. Sack" +, title = "Approximating Weighted Shortest Paths on Polyhedral Surfaces" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "485--486" +, keywords = "video review" +, cites = "aaos-supa-97, ch-spp-90, lms-awspp-96, lms-awspp-97i, mmp-dgp-87, mp-wrpfs-91, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{lm-gmqia-84 -, author = "C. Lantuejoul and F. Maisonneuve" -, title = "Geodesic methods in quantitative image analysis" -, journal = "Pattern Recogn." -, volume = 17 -, year = 1984 -, pages = "177--187" -, update = "98.03 bibrelex" +, author = "C. Lantuejoul and F. Maisonneuve" +, title = "Geodesic methods in quantitative image analysis" +, journal = "Pattern Recogn." +, volume = 17 +, year = 1984 +, pages = "177--187" +, update = "98.03 bibrelex" } @phdthesis{l-aicla-80 -, author = "A. LaPaugh" -, title = "Algorithms for Integrated Circuit Layout: {An} Analytic Approach" -, school = "Laboratory for Computer Science, MIT" -, year = 1980 -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "A. LaPaugh" +, title = "Algorithms for Integrated Circuit Layout: {An} Analytic Approach" +, school = "Laboratory for Computer Science, MIT" +, year = 1980 +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @article{lmn-eaacv-86 -, author = "G. Laporte and H. Mercure and Y. Nobert" -, title = "An exact algorithm for the asymmetrical capacitated vehicle routing problem" -, journal = "Networks" -, volume = 16 -, year = 1986 -, pages = "47--50" +, author = "G. Laporte and H. Mercure and Y. Nobert" +, title = "An exact algorithm for the asymmetrical capacitated vehicle routing problem" +, journal = "Networks" +, volume = 16 +, year = 1986 +, pages = "47--50" } @article{l-htpuc-68 -, author = "D. G. Larman" -, title = "Helly type properties of unions of convex sets" -, journal = "Mathematica" -, volume = 15 -, year = 1968 -, pages = "53--59" -, update = "98.03 bibrelex" +, author = "D. G. Larman" +, title = "Helly type properties of unions of convex sets" +, journal = "Mathematica" +, volume = 15 +, year = 1968 +, pages = "53--59" +, update = "98.03 bibrelex" } @inproceedings{l-pp-70 -, author = "D. G. Larman" -, title = "Paths on polytopes" -, booktitle = "Proc. Lon. Math. Soc." -, volume = 20 -, year = 1970 -, pages = "161--178" -, update = "93.09 milone+mitchell" +, author = "D. G. Larman" +, title = "Paths on polytopes" +, booktitle = "Proc. Lon. Math. Soc." +, volume = 20 +, year = 1970 +, pages = "161--178" +, update = "93.09 milone+mitchell" } @article{lmpt-rtrpc-94 -, author = "D. G. Larman and J. Matou{\v s}ek and J. Pach and J. T{\H o}r{\H o}csik" -, title = "A {Ramsey}-type result for planar convex sets" -, journal = "Bull. London Math. Soc." -, volume = 26 -, year = 1994 -, pages = "132--136" -, update = "97.11 bibrelex" +, author = "D. G. Larman and J. Matou{\v s}ek and J. Pach and J. T{\H o}r{\H o}csik" +, title = "A {Ramsey}-type result for planar convex sets" +, journal = "Bull. London Math. Soc." +, volume = 26 +, year = 1994 +, pages = "132--136" +, update = "97.11 bibrelex" } @inproceedings{lh-llc-90 -, author = "L. Larmore and D. Hirschberg" -, title = "Length-limited coding" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "310--318" -, update = "98.03 bibrelex" +, author = "L. Larmore and D. Hirschberg" +, title = "Length-limited coding" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "310--318" +, update = "98.03 bibrelex" } @inproceedings{lp-pctow-91 -, author = "L. Larmore and T. Przytycka" -, title = "Parallel construction of trees with optimal weighted path length" -, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Arch." -, year = 1991 -, pages = "71--80" -, update = "98.03 bibrelex" +, author = "L. Larmore and T. Przytycka" +, title = "Parallel construction of trees with optimal weighted path length" +, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Arch." +, year = 1991 +, pages = "71--80" +, update = "98.03 bibrelex" } @article{ls-oldpa-91 -, author = "L. Larmore and B. Schieber" -, title = "On-line dynamic programming with applications to prediction of {RNA} secondary structure" -, journal = "J. Algorithms" -, volume = 12 -, year = 1991 -, pages = "490--515" -, update = "98.03 bibrelex" +, author = "L. Larmore and B. Schieber" +, title = "On-line dynamic programming with applications to prediction of {RNA} secondary structure" +, journal = "J. Algorithms" +, volume = 12 +, year = 1991 +, pages = "490--515" +, update = "98.03 bibrelex" } @article{l-oautc-90 -, author = "L. L. Larmore" -, title = "An Optimal Algorithm with Unknown Time Complexity for Convex Matrix Searching" -, journal = "Inform. Process. Lett." -, volume = 36 -, year = 1990 -, pages = "147--151" +, author = "L. L. Larmore" +, title = "An Optimal Algorithm with Unknown Time Complexity for Convex Matrix Searching" +, journal = "Inform. Process. Lett." +, volume = 36 +, year = 1990 +, pages = "147--151" } @inproceedings{ls-oldpa-90 -, author = "L. L. Larmore and B. Schieber" -, title = "On-line dynamic programming with applications to the prediction of {RNA} secondary structure" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "503--512" +, author = "L. L. Larmore and B. Schieber" +, title = "On-line dynamic programming with applications to the prediction of {RNA} secondary structure" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "503--512" } @book{l-pstp-83 -, author = "L. C. Larson" -, title = "Problem-Solving Through Problems" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1983 -, update = "98.03 bibrelex" +, author = "L. C. Larson" +, title = "Problem-Solving Through Problems" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1983 +, update = "98.03 bibrelex" } @article{ll-fmrdp-81 -, author = "R. C. Larson and V. O. K. Li" -, title = "Finding minimum rectilinear distance paths in the presence of barriers" -, journal = "Networks" -, volume = 11 -, year = 1981 -, pages = "285--304" +, author = "R. C. Larson and V. O. K. Li" +, title = "Finding minimum rectilinear distance paths in the presence of barriers" +, journal = "Networks" +, volume = 11 +, year = 1981 +, pages = "285--304" } @article{l-com-80 -, author = "M. {Las Vergnas}" -, title = "Convexity in oriented matroids" -, journal = "J. Combin. Theory Ser. B" -, volume = 29 -, year = 1980 -, pages = "231--243" -, update = "98.07 agarwal" +, author = "M. {Las Vergnas}" +, title = "Convexity in oriented matroids" +, journal = "J. Combin. Theory Ser. B" +, volume = 29 +, year = 1980 +, pages = "231--243" +, update = "98.07 agarwal" } @book{l-vta-50 -, author = "H. Lass" -, title = "Vector and Tensor Analysis" -, publisher = "McGraw-Hill" -, year = 1950 -, update = "98.03 bibrelex" +, author = "H. Lass" +, title = "Vector and Tensor Analysis" +, publisher = "McGraw-Hill" +, year = 1950 +, update = "98.03 bibrelex" } @article{lz-olpst-91 -, author = "M. Lassak and J. Zhang" -, title = "An on-line potato-sack theorem" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "1--7" +, author = "M. Lassak and J. Zhang" +, title = "An on-line potato-sack theorem" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "1--7" } @inproceedings{l-kfv-90 -, author = "Dieter Lasser" -, title = "{Kurven-} und {Fl{\"a}chen}-{Verschneidungsmethoden}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 17 -, update = "00.03 bibrelex" +, author = "Dieter Lasser" +, title = "{Kurven-} und {Fl{\"a}chen}-{Verschneidungsmethoden}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 17 +, update = "00.03 bibrelex" } @article{l-aeavc-83 -, author = "J. B. Lasserre" -, title = "An analytical expression and an algorithm for the volume of a convex polyhedron in {$R^{n}$}" -, journal = "J. Optim. Theory Appl." -, volume = 39 -, year = 1983 -, pages = "363--377" +, author = "J. B. Lasserre" +, title = "An analytical expression and an algorithm for the volume of a convex polyhedron in {$R^{n}$}" +, journal = "J. Optim. Theory Appl." +, volume = 39 +, year = 1983 +, pages = "363--377" } @book{l-cgcgc-96 -, author = "M. Laszlo" -, title = "Computational Geometry and Computer Graphics in C++" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1996 -, isbn = "0-13-290842-5" -, update = "98.07 tamassia+vismara, 97.11 icking, 96.05 held" +, author = "M. Laszlo" +, title = "Computational Geometry and Computer Graphics in C++" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1996 +, isbn = "0-13-290842-5" +, update = "98.07 tamassia+vismara, 97.11 icking, 96.05 held" } @phdthesis{l-dsmtd-87 -, author = "M. J. Laszlo" -, title = "A data structure for manipulating three-dimensional subdivisions" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Princeton Univ." -, address = "Princeton, NJ" -, year = 1987 -, note = "Report CS-TR-125-87" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "M. J. Laszlo" +, title = "A data structure for manipulating three-dimensional subdivisions" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Princeton Univ." +, address = "Princeton, NJ" +, year = 1987 +, note = "Report CS-TR-125-87" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @inproceedings{l-fppcl-91 -, author = "J.-C. Latombe" -, title = "A fast path-planner for a car-like indoor mobile robot" -, booktitle = "Proc. 9th Nat. Conf. Artif. Intell." -, year = 1991 -, pages = "659--665" -, update = "97.11 bibrelex" +, author = "J.-C. Latombe" +, title = "A fast path-planner for a car-like indoor mobile robot" +, booktitle = "Proc. 9th Nat. Conf. Artif. Intell." +, year = 1991 +, pages = "659--665" +, update = "97.11 bibrelex" } @techreport{l-mpupb-88 -, author = "J.-C. Latombe" -, title = "Motion planning with uncertainty: The preimage backchaining approach" -, number = "STAN-CS-88-1196" -, institution = "Department of Computer Science, Stanford University" -, year = 1988 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "J.-C. Latombe" +, title = "Motion planning with uncertainty: The preimage backchaining approach" +, number = "STAN-CS-88-1196" +, institution = "Department of Computer Science, Stanford University" +, year = 1988 +, update = "99.11 bibrelex, 98.03 bibrelex" } @book{l-rmp-91 -, author = "J.-C. Latombe" -, title = "Robot Motion Planning" -, publisher = "Kluwer Academic Publishers" -, address = "Boston" -, year = 1991 -, keywords = "robotics" -, update = "93.05 orourke" +, author = "J.-C. Latombe" +, title = "Robot Motion Planning" +, publisher = "Kluwer Academic Publishers" +, address = "Boston" +, year = 1991 +, keywords = "robotics" +, update = "93.05 orourke" } @inproceedings{lwc-astp-95 -, author = "J.-C. Latombe and R. H. Wilson" -, title = "Assembly sequencing with toleranced parts" -, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" -, site = "Salt Lake City" -, year = 1995 -, update = "99.11 bibrelex, 96.05 ramkumar" +, author = "J.-C. Latombe and R. H. Wilson" +, title = "Assembly sequencing with toleranced parts" +, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" +, site = "Salt Lake City" +, year = 1995 +, update = "99.11 bibrelex, 96.05 ramkumar" } @inproceedings{les-gsd-97 -, author = "Harald Lauer and Matthias Ettrich and Klaus Soukup" -, title = "{GraVis} - System Demonstration" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "344--349" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Harald Lauer and Matthias Ettrich and Klaus Soukup" +, title = "{GraVis} - System Demonstration" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "344--349" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @incollection{l-chi-82 -, author = "M. Lauer" -, title = "Computing by homomorphic images" -, editor = "B. Buchberger and G. E. Collins and R. Loos" -, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" -, publisher = "Springer-Verlag" -, year = 1982 -, pages = "139--168" -, update = "98.07 bibrelex" +, author = "M. Lauer" +, title = "Computing by homomorphic images" +, editor = "B. Buchberger and G. E. Collins and R. Loos" +, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" +, publisher = "Springer-Verlag" +, year = 1982 +, pages = "139--168" +, update = "98.07 bibrelex" } @article{l-cpt-90 -, author = "J.-P. Laumond" -, title = "Connectivity of planar triangulations" -, journal = "Inform. Process. Lett." -, volume = 34 -, number = 2 -, month = mar -, year = 1990 -, pages = "87--96" -, update = "98.11 bibrelex" +, author = "J.-P. Laumond" +, title = "Connectivity of planar triangulations" +, journal = "Inform. Process. Lett." +, volume = 34 +, number = 2 +, month = mar +, year = 1990 +, pages = "87--96" +, update = "98.11 bibrelex" } @inproceedings{l-ftmrk-86 -, author = "J. P. Laumond" -, title = "Feasible Trajectories for Mobile Robots with Kinematic and Environment Constraints" -, editor = "L. O. Hertzberger and F. C. A. Groen" -, booktitle = "Conference on Intelligent Autonomous Systems (Amsterdam, the Netherlands, December 8--11, 1986)" -, publisher = "Elsevier Science Publishers" -, month = dec -, year = 1986 -, pages = "346--354" -, update = "95.01 mitchell, 95.01 mitchell" +, author = "J. P. Laumond" +, title = "Feasible Trajectories for Mobile Robots with Kinematic and Environment Constraints" +, editor = "L. O. Hertzberger and F. C. A. Groen" +, booktitle = "Conference on Intelligent Autonomous Systems (Amsterdam, the Netherlands, December 8--11, 1986)" +, publisher = "Elsevier Science Publishers" +, month = dec +, year = 1986 +, pages = "346--354" +, update = "95.01 mitchell, 95.01 mitchell" } @inproceedings{l-fcfst-87 -, author = "J.-P. Laumond" -, title = "Finding collision-free smooth trajectories for a non-holonomic mobile robot" -, booktitle = "Proc. Internat. Joint Conf. Artif. Intell." -, year = 1987 -, pages = "1120--1123" -, update = "97.11 bibrelex" +, author = "J.-P. Laumond" +, title = "Finding collision-free smooth trajectories for a non-holonomic mobile robot" +, booktitle = "Proc. Internat. Joint Conf. Artif. Intell." +, year = 1987 +, pages = "1120--1123" +, update = "97.11 bibrelex" } @article{l-ognw-87 -, author = "J.-P. Laumond" -, title = "Obstacle growing in a nonpolygonal world" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "41--50" -, keywords = "combinatorial geometry" +, author = "J.-P. Laumond" +, title = "Obstacle growing in a nonpolygonal world" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "41--50" +, keywords = "combinatorial geometry" } @inproceedings{la-gapmt-89 -, author = "J.-P. Laumond and R. Alami" -, title = "A geometrical approach to planning manipulation tasks in robotics" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 21 +, author = "J.-P. Laumond and R. Alami" +, title = "A geometrical approach to planning manipulation tasks in robotics" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 21 } @article{ljtm-mpnmr-94 -, author = "J.-P. Laumond and P. Jacobs and M. Taix and R. M. Murray" -, title = "A Motion Planner for Nonholonomic Mobile Robots" -, journal = "IEEE Trans. Robot. Autom." -, volume = 10 -, number = 5 -, year = 1994 -, pages = "577--593" -, update = "98.07 bibrelex, 98.03 mitchell, 97.11 bibrelex" +, author = "J.-P. Laumond and P. Jacobs and M. Taix and R. M. Murray" +, title = "A Motion Planner for Nonholonomic Mobile Robots" +, journal = "IEEE Trans. Robot. Autom." +, volume = 10 +, number = 5 +, year = 1994 +, pages = "577--593" +, update = "98.07 bibrelex, 98.03 mitchell, 97.11 bibrelex" } @book{lo-afr2-96 -, title = "Algorithms for Robotic Motion and Manipulation" -, editor = "J.-P. Laumond and M. H. Overmars" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1996 -, update = "97.03 schwarzkopf" +, title = "Algorithms for Robotic Motion and Manipulation" +, editor = "J.-P. Laumond and M. H. Overmars" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1996 +, update = "97.03 schwarzkopf" } @inproceedings{ls-mispc-93 -, author = "J.-P. Laumond and P. Sou{\`e}res" -, title = "Metric induced by the shortest paths for a car-like robot" -, booktitle = "IEEE Internat. Workshop on Intelligent Robots and Systems" -, site = "Yokohama, Japan" -, year = 1993 -, pages = "" -, update = "94.05 devillers" +, author = "J.-P. Laumond and P. Sou{\`e}res" +, title = "Metric induced by the shortest paths for a car-like robot" +, booktitle = "IEEE Internat. Workshop on Intelligent Robots and Systems" +, site = "Yokohama, Japan" +, year = 1993 +, pages = "" +, update = "94.05 devillers" } @inproceedings{l-isroo-93 -, author = "A. Laurentini" -, title = "Inferring the shape of the real object from the object reconstructid by volume intersection" -, booktitle = "Proc. IEEE CVPR" -, site = "New York" -, month = jun -, year = 1993 -, pages = "280--285" -, update = "98.11 bibrelex" +, author = "A. Laurentini" +, title = "Inferring the shape of the real object from the object reconstructid by volume intersection" +, booktitle = "Proc. IEEE CVPR" +, site = "New York" +, month = jun +, year = 1993 +, pages = "280--285" +, update = "98.11 bibrelex" } @inproceedings{l-mnvio-93 -, author = "A. Laurentini" -, title = "On the minimal number of volume intersection operations necessary for reconstructing a {$3D$} object" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "285--290" -, cites = "s-rtddi-81, ka-rpcsm-86, ca-mrsro-89, sa-agoos-87, t-impbp-87, av-gooso-89, hs-drwsv-85, sp-viosd-91, ma-vdomv-83, s-cgmvi-90, p-gom3o-87, n-coatd-88, ca-vsort-86, c-mvor-87, l-viacd-89, n-loviu-92, l-vhntc-91, l-vhsr-92, l-vhcsi-, lpr-lovi-89, l-isroo-93, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "A. Laurentini" +, title = "On the minimal number of volume intersection operations necessary for reconstructing a {$3D$} object" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "285--290" +, cites = "s-rtddi-81, ka-rpcsm-86, ca-mrsro-89, sa-agoos-87, t-impbp-87, av-gooso-89, hs-drwsv-85, sp-viosd-91, ma-vdomv-83, s-cgmvi-90, p-gom3o-87, n-coatd-88, ca-vsort-86, c-mvor-87, l-viacd-89, n-loviu-92, l-vhntc-91, l-vhsr-92, l-vhcsi-, lpr-lovi-89, l-isroo-93, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{l-swag-96 -, author = "A. Laurentini" -, title = "The surveillance of the walls of an art gallery" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "223--233" -, update = "96.09 mitchell" +, author = "A. Laurentini" +, title = "The surveillance of the walls of an art gallery" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "223--233" +, update = "96.09 mitchell" } @inproceedings{l-vhntc-91 -, author = "A. Laurentini" -, title = "The visual Hull: a new tool for contour-based image understanding" -, booktitle = "Proc. 7th Scandinavian Conf. on Image Analysis" -, year = 1991 -, pages = "993--1002" -, update = "98.11 bibrelex" +, author = "A. Laurentini" +, title = "The visual Hull: a new tool for contour-based image understanding" +, booktitle = "Proc. 7th Scandinavian Conf. on Image Analysis" +, year = 1991 +, pages = "993--1002" +, update = "98.11 bibrelex" } @unpublished{l-vhcsi- -, author = "A. Laurentini" -, title = "The visual hull concept for silhouette-based image understanding" -, note = "to appear in IEEE Trans. Pattern Anal. Machine Intell." -, update = "98.11 bibrelex" +, author = "A. Laurentini" +, title = "The visual hull concept for silhouette-based image understanding" +, note = "to appear in IEEE Trans. Pattern Anal. Machine Intell." +, update = "98.11 bibrelex" } @inproceedings{l-vhsr-92 -, author = "A. Laurentini" -, title = "The visual hull of solids of revolution" -, booktitle = "Proc. 11th IAPR Int. Conf. on Pattern Recognition" -, site = "The Hague" -, year = 1992 -, pages = "720--724" -, update = "98.11 bibrelex" +, author = "A. Laurentini" +, title = "The visual hull of solids of revolution" +, booktitle = "Proc. 11th IAPR Int. Conf. on Pattern Recognition" +, site = "The Hague" +, year = 1992 +, pages = "720--724" +, update = "98.11 bibrelex" } @book{lt-fsis-92 -, author = "Robert Laurini and Derek Thompson" -, title = "Fundamentals of Spatial Information Systems" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1992 -, isbn = "0-12-438380-7" -, update = "95.09 mitchell" +, author = "Robert Laurini and Derek Thompson" +, title = "Fundamentals of Spatial Information Systems" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1992 +, isbn = "0-12-438380-7" +, update = "95.09 mitchell" } @article{l-cwffd-85 -, author = "C. Lautemann" -, title = "Cases where the floor function doesn't help" -, journal = "Bull. EATCS" -, volume = 26 -, year = 1985 -, pages = 159 -, comments = "Talk presented at the 2nd Meeting on Efficient - Algorithms, Oberwolfach, West Germany (Nov. 1984)." +, author = "C. Lautemann" +, title = "Cases where the floor function doesn't help" +, journal = "Bull. EATCS" +, volume = 26 +, year = 1985 +, pages = 159 +, comments = "Talk presented at the 2nd Meeting on Efficient + Algorithms, Oberwolfach, West Germany (Nov. 1984)." } @article{l-4dbst-78 -, author = "L. Lauther" -, title = "$4$-dimensional binary search trees as $2$ means to speed up associative searches in design rule verification of integrated circuits" -, journal = "J. Design Autom. Fault-Tolerant Comput." -, volume = 2 -, year = 1978 -, pages = "241--247" +, author = "L. Lauther" +, title = "$4$-dimensional binary search trees as $2$ means to speed up associative searches in design rule verification of integrated circuits" +, journal = "J. Design Autom. Fault-Tolerant Comput." +, volume = 2 +, year = 1978 +, pages = "241--247" } @article{lg-gcvfm-85 -, author = "S. E. Laux and B. M. Grossman" -, title = "A general control volume formulation for modeling impact ionization in semiconductor transport" -, journal = "IEEE Trans. Electron. Devices" -, volume = 32 -, year = 1985 -, pages = "2076--2081" -, update = "97.11 bibrelex" +, author = "S. E. Laux and B. M. Grossman" +, title = "A general control volume formulation for modeling impact ionization in semiconductor transport" +, journal = "IEEE Trans. Electron. Devices" +, volume = 32 +, year = 1985 +, pages = "2076--2081" +, update = "97.11 bibrelex" } % ### others? @inproceedings{l-viacd-89 -, author = "Lavakusha and others" -, title = "Volume intersection algorithms with changing directions of views" -, booktitle = "Proc. MIV-89" -, site = "Tokyo" -, year = 1989 -, pages = "309--314" -, update = "98.11 bibrelex" +, author = "Lavakusha and others" +, title = "Volume intersection algorithms with changing directions of views" +, booktitle = "Proc. MIV-89" +, site = "Tokyo" +, year = 1989 +, pages = "309--314" +, update = "98.11 bibrelex" } @article{lpr-lovi-89 -, author = "Lavakusha and Arun K. Pujari and P. G. Reddy" -, title = "Linear octrees by volume intersection" -, journal = "Comput. Vision Graph. Image Process." -, volume = 45 -, month = mar -, year = 1989 -, pages = "371--379" -, update = "98.11 bibrelex" +, author = "Lavakusha and Arun K. Pujari and P. G. Reddy" +, title = "Linear octrees by volume intersection" +, journal = "Comput. Vision Graph. Image Process." +, volume = 45 +, month = mar +, year = 1989 +, pages = "371--379" +, update = "98.11 bibrelex" } @inproceedings{llglm-futwo-97 -, author = "S. M. LaValle and D. Lin and L. J. Guibas and J.-C. Latombe and R. Motwani" -, title = "Finding an unpredictable target in a workspace with obstacles" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, month = apr -, year = 1997 -, note = "To appear" -, update = "98.07 bibrelex" +, author = "S. M. LaValle and D. Lin and L. J. Guibas and J.-C. Latombe and R. Motwani" +, title = "Finding an unpredictable target in a workspace with obstacles" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, month = apr +, year = 1997 +, note = "To appear" +, update = "98.07 bibrelex" } @inproceedings{lss-asprf-00 -, author = "Steven M. LaValle and Borislav Simov and Giora Slutzki" -, title = "An Algorithm for Searching a Polygonal Region with a Flashlight" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "260--269" -, update = "00.11 jones" +, author = "Steven M. LaValle and Borislav Simov and Giora Slutzki" +, title = "An Algorithm for Searching a Polygonal Region with a Flashlight" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "260--269" +, update = "00.11 jones" } @article{lbdww-vdsts-92 -, author = "David Lavender and Adrian Bowyer and James Davenport and Andrew Wallis and John Woodwark" -, title = "{Voronoi} Diagrams of Set-Theoretic Solid Models" -, journal = "IEEE Comput. Graph. Appl." -, volume = 12 -, number = 5 -, month = sep -, year = 1992 -, pages = "69--77" -, update = "95.01 schwarzkopf" +, author = "David Lavender and Adrian Bowyer and James Davenport and Andrew Wallis and John Woodwark" +, title = "{Voronoi} Diagrams of Set-Theoretic Solid Models" +, journal = "IEEE Comput. Graph. Appl." +, volume = 12 +, number = 5 +, month = sep +, year = 1992 +, pages = "69--77" +, update = "95.01 schwarzkopf" } @book{l-conm-76 -, author = "E. Lawler" -, title = "Combinatorial Optimization: {Networks} and Matroids" -, publisher = "Holt, Rinehart \& Winston" -, address = "New York" -, year = 1976 -, update = "93.09 milone+mitchell" +, author = "E. Lawler" +, title = "Combinatorial Optimization: {Networks} and Matroids" +, publisher = "Holt, Rinehart \& Winston" +, address = "New York" +, year = 1976 +, update = "93.09 milone+mitchell" } @book{llrs-tsp-85 -, title = "The Traveling Salesman Problem" -, editor = "E. L. Lawler and J. K. Lenstra and A. H. G. {Rinnooy Kan} and D. B. Shmoys" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1985 -, isbn = "0-471-90413-9" -, keywords = "book" -, update = "99.11 bibrelex, 97.03 pocchiola, 93.09 rote" -, annote = "a collection of survey articles by various authors (the BIBLE on the TSP)" +, title = "The Traveling Salesman Problem" +, editor = "E. L. Lawler and J. K. Lenstra and A. H. G. {Rinnooy Kan} and D. B. Shmoys" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1985 +, isbn = "0-471-90413-9" +, keywords = "book" +, update = "99.11 bibrelex, 97.03 pocchiola, 93.09 rote" +, annote = "a collection of survey articles by various authors (the BIBLE on the TSP)" } @techreport{lm-mcnif-91 -, author = "G. Lawlor and F. Morgan" -, title = "Minimizing cones and networks: immiscible fluids, norms, and calibrations" -, type = "Preprint" -, institution = "Williams College" -, year = 1991 -, update = "97.11 bibrelex" +, author = "G. Lawlor and F. Morgan" +, title = "Minimizing cones and networks: immiscible fluids, norms, and calibrations" +, type = "Preprint" +, institution = "Williams College" +, year = 1991 +, update = "97.11 bibrelex" } @misc{lm-pcasi-91 -, author = "G. Lawlor and F. Morgan" -, title = "Paired calibrations applied to soapfilms, immiscible fluids, and surfaces or networks minimizing other norms" -, howpublished = "Preprint" -, year = 1991 -, update = "98.03 bibrelex" +, author = "G. Lawlor and F. Morgan" +, title = "Paired calibrations applied to soapfilms, immiscible fluids, and surfaces or networks minimizing other norms" +, howpublished = "Preprint" +, year = 1991 +, update = "98.03 bibrelex" } @article{l-pvc-91 -, author = "J. Lawrence" -, title = "Polytope volume computation" -, journal = "Math. Comput." -, volume = 57 -, number = 195 -, year = 1991 -, pages = "259--271" -, update = "97.11 bibrelex" +, author = "J. Lawrence" +, title = "Polytope volume computation" +, journal = "Math. Comput." +, volume = 57 +, number = 195 +, year = 1991 +, pages = "259--271" +, update = "97.11 bibrelex" } @article{l-vp-88 -, author = "J. Lawrence" -, title = "Valuations and polarity" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "307--324" +, author = "J. Lawrence" +, title = "Valuations and polarity" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "307--324" } @book{l-cspc-72 -, author = "J. D. Lawrence" -, title = "A Catalog of Special Plane Curves" -, publisher = "Dover Publications" -, address = "New York, NY" -, year = 1972 -, update = "94.01 tamassia" +, author = "J. D. Lawrence" +, title = "A Catalog of Special Plane Curves" +, publisher = "Dover Publications" +, address = "New York, NY" +, year = 1972 +, update = "94.01 tamassia" } @techreport{l-ccit-76 -, author = "C. L. Lawson" -, title = "{$C^{1}$}-compatible interpolation over a triangle" -, type = "Technical {Memo}" -, number = "33-770" -, institution = "Jet Propulsion Lab., California Inst. Tech." -, address = "Pasadena, CA" -, year = 1976 +, author = "C. L. Lawson" +, title = "{$C^{1}$}-compatible interpolation over a triangle" +, type = "Technical {Memo}" +, number = "33-770" +, institution = "Jet Propulsion Lab., California Inst. Tech." +, address = "Pasadena, CA" +, year = 1976 } @article{l-csisd-84 -, author = "C. L. Lawson" -, title = "${C}^1$ Surface Interpolation For Scattered Data on a Sphere" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "177--202" -, annote = "Triangulates sphere using incremental algorithm with - switching. Switching rule is to make the quadrilateral - convex with respect to the sphere." +, author = "C. L. Lawson" +, title = "${C}^1$ Surface Interpolation For Scattered Data on a Sphere" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "177--202" +, annote = "Triangulates sphere using incremental algorithm with + switching. Switching rule is to make the quadrilateral + convex with respect to the sphere." } @techreport{l-gtgac-72 -, author = "C. L. Lawson" -, title = "Generation of a triangular grid with applications to contour plotting" -, type = "Memo" -, number = 299 -, institution = "Jet Propulsion Lab., California Inst. Tech." -, address = "Pasadena, CA" -, year = 1972 +, author = "C. L. Lawson" +, title = "Generation of a triangular grid with applications to contour plotting" +, type = "Memo" +, number = 299 +, institution = "Jet Propulsion Lab., California Inst. Tech." +, address = "Pasadena, CA" +, year = 1972 } @techreport{l-i2cts-76 -, author = "C. L. Lawson" -, title = "Integrals of {$2C^{1}$}-compatible triangular surface element" -, type = "Technical {Memo}" -, number = "33-808" -, institution = "Jet Propulsion Lab., California Inst. Tech." -, address = "Pasadena, CA" -, year = 1976 +, author = "C. L. Lawson" +, title = "Integrals of {$2C^{1}$}-compatible triangular surface element" +, type = "Technical {Memo}" +, number = "33-808" +, institution = "Jet Propulsion Lab., California Inst. Tech." +, address = "Pasadena, CA" +, year = 1976 } @article{l-pndt-86 -, author = "Charles L. Lawson" -, title = "Properties Of {N}-Dimensional Triangulations" -, journal = "Comput. Aided Geom. Design" -, volume = 3 -, number = 4 -, month = dec -, year = 1986 -, pages = "231--246" -, keywords = "n-dimensional triangulation, Delaunay triangulation, Dirichlet tessellation" -, annote = "Generalizes some of the properties of 2D - triangulations." -, abstract = "This paper establishes a number of mathematical - results relevant to the problem of constructing a - triangulation, i. e. , a simplical tessellation of the - convex hull of an arbitrary finite set of points in - n-space. The principal results of the present paper are - (a) A set of n PLUS 2 points in n-space may be - triangulated in at most 2 different ways. (b) The - 'sphere test' defined in this paper selects a preferred - one of these two triangulations. (c) A set of - parameters is defined that permits the characterization - and enumeration of all sets of n PLUS 2 points in - n-space that are significantly different from the point - of view of their possible triangulations. (d) The local - sphere test induces a global sphere test property for a - triangulation. (e) A triangulation satisfying the - global sphere property is dual to the n-dimensional - Dirichlet tessellation, i. e. , it is a Delaunay - triangulation. (Author abstract) 12 refs." +, author = "Charles L. Lawson" +, title = "Properties Of {N}-Dimensional Triangulations" +, journal = "Comput. Aided Geom. Design" +, volume = 3 +, number = 4 +, month = dec +, year = 1986 +, pages = "231--246" +, keywords = "n-dimensional triangulation, Delaunay triangulation, Dirichlet tessellation" +, annote = "Generalizes some of the properties of 2D + triangulations." +, abstract = "This paper establishes a number of mathematical + results relevant to the problem of constructing a + triangulation, i. e. , a simplical tessellation of the + convex hull of an arbitrary finite set of points in + n-space. The principal results of the present paper are + (a) A set of n PLUS 2 points in n-space may be + triangulated in at most 2 different ways. (b) The + 'sphere test' defined in this paper selects a preferred + one of these two triangulations. (c) A set of + parameters is defined that permits the characterization + and enumeration of all sets of n PLUS 2 points in + n-space that are significantly different from the point + of view of their possible triangulations. (d) The local + sphere test induces a global sphere test property for a + triangulation. (e) A triangulation satisfying the + global sphere property is dual to the n-dimensional + Dirichlet tessellation, i. e. , it is a Delaunay + triangulation. (Author abstract) 12 refs." } @incollection{l-scsi-77 -, author = "C. L. Lawson" -, title = "Software for {$C^{1}$} surface interpolation" -, editor = "J. R. Rice" -, booktitle = "Math. Software III" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1977 -, pages = "161--194" -, update = "97.03 schwarzkopf" +, author = "C. L. Lawson" +, title = "Software for {$C^{1}$} surface interpolation" +, editor = "J. R. Rice" +, booktitle = "Math. Software III" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1977 +, pages = "161--194" +, update = "97.03 schwarzkopf" } @techreport{l-spndt-85 -, author = "C. L. Lawson" -, title = "Some properties of $n$-dimensional triangulations" -, type = "Publication" -, number = "85-42" -, institution = "Jet Propulsion Lab., California Inst. Tech." -, address = "Pasadena, CA" -, year = 1985 +, author = "C. L. Lawson" +, title = "Some properties of $n$-dimensional triangulations" +, type = "Publication" +, number = "85-42" +, institution = "Jet Propulsion Lab., California Inst. Tech." +, address = "Pasadena, CA" +, year = 1985 } @article{l-tt-72 -, author = "C. L. Lawson" -, title = "Transforming Triangulations" -, journal = "Discrete Math." -, volume = 3 -, year = 1972 -, pages = "365--372" -, annote = "Proves that any triangulation of a given set of points - can be transformed into any other by a sequence of - ``exchanges''. (If two adjacent triangles form a convex - quadrilateral, replace the included diagonal with the - other one.)" +, author = "C. L. Lawson" +, title = "Transforming Triangulations" +, journal = "Discrete Math." +, volume = 3 +, year = 1972 +, pages = "365--372" +, annote = "Proves that any triangulation of a given set of points + can be transformed into any other by a sequence of + ``exchanges''. (If two adjacent triangles form a convex + quadrilateral, replace the included diagonal with the + other one.)" } @book{l-csa-72 -, author = "S. R. Lay" -, title = "Convex Sets and Their applications" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1972 -, update = "99.11 bibrelex, 98.07 bibrelex" +, author = "S. R. Lay" +, title = "Convex Sets and Their applications" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1972 +, update = "99.11 bibrelex, 98.07 bibrelex" } @book{l-csta-82 -, author = "Steven R. Lay" -, title = "Convex Sets and Their Applications" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1982 -, keywords = "book" -, update = "98.11 kuehn" +, author = "Steven R. Lay" +, title = "Convex Sets and Their Applications" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1982 +, keywords = "book" +, update = "98.11 kuehn" } @article{l-sss-71 -, author = "S. R. Lay" -, title = "On separation by spherical surfaces" -, journal = "Amer. Math. Monthly" -, volume = 78 -, year = 1971 -, pages = "1112--1113" -, update = "99.11 devillers" +, author = "S. R. Lay" +, title = "On separation by spherical surfaces" +, journal = "Amer. Math. Monthly" +, volume = 78 +, year = 1971 +, pages = "1112--1113" +, update = "99.11 devillers" } @techreport{ll-lbrn-92 -, author = "A. Lazanas and J.-C. Latombe" -, title = "Landmark-based robot navigation" -, type = "Technical {Report}" -, institution = "Dept. of Computer Science, Stanford University" -, year = 1992 -, update = "99.11 bibrelex, 93.09 milone+mitchell" +, author = "A. Lazanas and J.-C. Latombe" +, title = "Landmark-based robot navigation" +, type = "Technical {Report}" +, institution = "Dept. of Computer Science, Stanford University" +, year = 1992 +, update = "99.11 bibrelex, 93.09 milone+mitchell" } @techreport{ll-mpula-92 -, author = "A. Lazanas and J.-C. Latombe" -, title = "Motion planning with uncertainty: {A} landmark approach" -, type = "Technical {Report}" -, institution = "Dept. of Computer Science, Stanford University" -, year = 1992 -, update = "99.11 bibrelex, 93.09 milone+mitchell" +, author = "A. Lazanas and J.-C. Latombe" +, title = "Motion planning with uncertainty: {A} landmark approach" +, type = "Technical {Report}" +, institution = "Dept. of Computer Science, Stanford University" +, year = 1992 +, update = "99.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{l-gbger-83 -, author = "D. Lazard" -, title = "{Gr{\"o}bner}-Bases, {Gaussian} Elimination and Resolution of Systems of Algebraic Equations" -, booktitle = "Proc. EUROCAL 83" -, year = 1983 -, pages = "146--156" -, update = "97.11 bibrelex" +, author = "D. Lazard" +, title = "{Gr{\"o}bner}-Bases, {Gaussian} Elimination and Resolution of Systems of Algebraic Equations" +, booktitle = "Proc. EUROCAL 83" +, year = 1983 +, pages = "146--156" +, update = "97.11 bibrelex" } @phdthesis{l-ptrmn-96 -, author = "Sylvain Lazard" -, title = "Planification de trajectoires de robots mobiles non-holonomes et de robots {\`a} pattes" -, type = "Th\`{e}se de doctorat en sciences" -, school = "universit\'e Paris 6" -, address = "France" -, year = 1996 -, url = "http://www-sop.inria.fr/prisme/publis/these-lazard.ps.gz" -, keywords = "doctoral thesis" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers" +, author = "Sylvain Lazard" +, title = "Planification de trajectoires de robots mobiles non-holonomes et de robots {\`a} pattes" +, type = "Th\`{e}se de doctorat en sciences" +, school = "universit\'e Paris 6" +, address = "France" +, year = 1996 +, url = "http://www-sop.inria.fr/prisme/publis/these-lazard.ps.gz" +, keywords = "doctoral thesis" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers" } @techreport{l-spbcc-97 -, author = "Sylvain Lazard" -, title = "Shortest Paths of Bounded Curvature in a Convex Polygon" -, type = "Manuscript, Presented at the 2nd CGC Workshop on Computational Geometry, October, 1997" -, institution = "McGill University" -, year = 1997 -, update = "98.03 mitchell" +, author = "Sylvain Lazard" +, title = "Shortest Paths of Bounded Curvature in a Convex Polygon" +, type = "Manuscript, Presented at the 2nd CGC Workshop on Computational Geometry, October, 1997" +, institution = "McGill University" +, year = 1997 +, update = "98.03 mitchell" } @inproceedings{lpvv-ccpso-01 -, author = "Francis Lazarus and Michel Pocchiola and Gert Vegter and Anne Verroust" -, title = "Computing a Canonical Polygonal Schema of an Orientable Triangulated Surface" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "146--149" -, update = "01.04 icking" +, author = "Francis Lazarus and Michel Pocchiola and Gert Vegter and Anne Verroust" +, title = "Computing a Canonical Polygonal Schema of an Orientable Triangulated Surface" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "146--149" +, update = "01.04 icking" } @inproceedings{lsfb-hdtcb-88 -, author = "E. {Le Bras-Mehlman} and M. Schmitt and O. D. Faugeras and J. D. Boissonnat" -, title = "How The {Delaunay} Triangulation Can Be Used For Representing Stereo Data" -, booktitle = "Second International Conference on Computer Vision" -, publisher = "IEEE" -, address = "New York, NY" -, year = 1988 -, pages = "54--63" -, keywords = "Delaunay triangulation, stereo data" -, annote = "Uses Watson style insertion algorithm. Constraints are - dealt with by adding extra points. To get a - triangulated surface we discard tetrahedra that block - visibility of line segments. This is combined with 3D - DT calculation." -, abstract = "A coherent method is discussed of interpolating 3-D - data with a polyhedral surface by the Delaunay - triangulation. First some theoretical properties are - given concerning the approximation of sampled objects - obtained when the sampling rate increases, based on - study of object skeletons using some tools of - mathematical morphology. Then the algorithms and their - complexity analysis are presented which yield both a - surface representation of objects and a volume - representation of free space. This goal is achieved by - means of a simple visibility criterion. The method is - intrinsically discontinuity- preserving and is useful - for the integration of multiple viewpoints. 32 Refs." +, author = "E. {Le Bras-Mehlman} and M. Schmitt and O. D. Faugeras and J. D. Boissonnat" +, title = "How The {Delaunay} Triangulation Can Be Used For Representing Stereo Data" +, booktitle = "Second International Conference on Computer Vision" +, publisher = "IEEE" +, address = "New York, NY" +, year = 1988 +, pages = "54--63" +, keywords = "Delaunay triangulation, stereo data" +, annote = "Uses Watson style insertion algorithm. Constraints are + dealt with by adding extra points. To get a + triangulated surface we discard tetrahedra that block + visibility of line segments. This is combined with 3D + DT calculation." +, abstract = "A coherent method is discussed of interpolating 3-D + data with a polyhedral surface by the Delaunay + triangulation. First some theoretical properties are + given concerning the approximation of sampled objects + obtained when the sampling rate increases, based on + study of object skeletons using some tools of + mathematical morphology. Then the algorithms and their + complexity analysis are presented which yield both a + surface representation of objects and a volume + representation of free space. This goal is achieved by + means of a simple visibility criterion. The method is + intrinsically discontinuity- preserving and is useful + for the integration of multiple viewpoints. 32 Refs." } @inproceedings{l-qsan-97 -, author = "Ngoc-Minh L{\^e}" -, title = "A Quantum--Searching Application Note" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "113--116" -, update = "99.03 bibrelex, 97.11 jones" +, author = "Ngoc-Minh L{\^e}" +, title = "A Quantum--Searching Application Note" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "113--116" +, update = "99.03 bibrelex, 97.11 jones" } @techreport{l-avd3s-99 -, author = "Ngoc-Minh L{\^e}" -, title = "Abstract {Voronoi} Diagrams in 3-Space" -, number = "HKUST-TCSC-99-11" -, institution = "Hong Kong University of Science and Technology, Theoretical Computer Science Center" -, year = 1999 -, url = "http://www.cs.ust.hk/tcsc/RR/1999-11.ps.gz" -, update = "00.03 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "Abstract {Voronoi} Diagrams in 3-Space" +, number = "HKUST-TCSC-99-11" +, institution = "Hong Kong University of Science and Technology, Theoretical Computer Science Center" +, year = 1999 +, url = "http://www.cs.ust.hk/tcsc/RR/1999-11.ps.gz" +, update = "00.03 bibrelex" } @inproceedings{l-clvd3-98 -, author = "Ngoc-Minh L{\^e}" -, title = "Computing the {$L_\infty$}-{Voronoi} Diagram in 3-Space Optimally" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = 113 -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "Computing the {$L_\infty$}-{Voronoi} Diagram in 3-Space Optimally" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = 113 +, update = "00.03 bibrelex, 98.07 bibrelex" } @techreport{l-dospg-95t -, author = "Ngoc-Minh L{\^e}" -, title = "On Determining Optimal Strategies in Pursuit Games in the Plane" -, number = 172 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1995 -, precedes = "l-dospg-95" -, update = "98.11 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "On Determining Optimal Strategies in Pursuit Games in the Plane" +, number = 172 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1995 +, precedes = "l-dospg-95" +, update = "98.11 bibrelex" } @inproceedings{l-dospg-95 -, author = "Ngoc-Minh L{\^e}" -, title = "On Determining Optimal Strategies in Pursuit Games in the Plane" -, booktitle = "Proc. 22th Internat. Colloq. Automata Lang. Program." -, nickname = "ICALP '95" -, series = "Lecture Notes Comput. Sci." -, volume = 944 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "499--510" -, succeeds = "l-dospg-95t" -, update = "98.11 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "On Determining Optimal Strategies in Pursuit Games in the Plane" +, booktitle = "Proc. 22th Internat. Colloq. Automata Lang. Program." +, nickname = "ICALP '95" +, series = "Lecture Notes Comput. Sci." +, volume = 944 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "499--510" +, succeeds = "l-dospg-95t" +, update = "98.11 bibrelex" } @inproceedings{l-gpscs-93 -, author = "Ngoc-Minh L{\^e}" -, title = "On General Properties of Strictly Convex Smooth Distance Functions in {$R^d$}" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "375--380" -, cites = "ei-drmwc-79, h-dt-76, iklm-cdf3s-93, k-vd-73, m-dmpcg-90, s-nfa-69, ZZZ" -, update = "99.07 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" +, author = "Ngoc-Minh L{\^e}" +, title = "On General Properties of Strictly Convex Smooth Distance Functions in {$R^d$}" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "375--380" +, cites = "ei-drmwc-79, h-dt-76, iklm-cdf3s-93, k-vd-73, m-dmpcg-90, s-nfa-69, ZZZ" +, update = "99.07 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{l-nscdf-96 -, author = "Ngoc-Minh L{\^e}" -, title = "On Non-Smooth Convex Distance Functions" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, publisher = "Carleton University Press, Ottawa, Canada" -, year = 1996 -, pages = "113--118" -, update = "99.07 bibrelex, 99.03 bibrelex, 96.09 mitchell" +, author = "Ngoc-Minh L{\^e}" +, title = "On Non-Smooth Convex Distance Functions" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, publisher = "Carleton University Press, Ottawa, Canada" +, year = 1996 +, pages = "113--118" +, update = "99.07 bibrelex, 99.03 bibrelex, 96.09 mitchell" } @article{l-nscdf-97 -, author = "Ngoc-Minh L{\^e}" -, title = "On Non-Smooth Convex Distance Functions" -, journal = "Inform. Process. Lett." -, volume = 63 -, number = 6 -, year = 1997 -, pages = "323--329" -, keywords = "Voronoi diagram, convex distance function, abstract Voronoi diagram" -, update = "99.07 bibrelex, 99.03 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "On Non-Smooth Convex Distance Functions" +, journal = "Inform. Process. Lett." +, volume = 63 +, number = 6 +, year = 1997 +, pages = "323--329" +, keywords = "Voronoi diagram, convex distance function, abstract Voronoi diagram" +, update = "99.07 bibrelex, 99.03 bibrelex" } @inproceedings{l-vdlmh-94 -, author = "Ngoc-Minh L{\^e}" -, title = "On {Voronoi} Diagrams in the {$L_p$} Metric in Higher Dimensions" -, booktitle = "Proc. 11th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 755 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "711--722" -, precedes = "l-vdlm-96" -, update = "99.11 bibrelex, 99.03 bibrelex, 98.03 icking" +, author = "Ngoc-Minh L{\^e}" +, title = "On {Voronoi} Diagrams in the {$L_p$} Metric in Higher Dimensions" +, booktitle = "Proc. 11th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 755 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "711--722" +, precedes = "l-vdlm-96" +, update = "99.11 bibrelex, 99.03 bibrelex, 98.03 icking" } @article{l-vdlm-96 -, author = "Ngoc-Minh L{\^e}" -, title = "On {Voronoi} diagrams in the {$L_p$}-metric in {$R^D$}" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "177--196" -, succeeds = "l-vdlmh-94" -, update = "99.03 bibrelex, 97.03 smid" +, author = "Ngoc-Minh L{\^e}" +, title = "On {Voronoi} diagrams in the {$L_p$}-metric in {$R^D$}" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "177--196" +, succeeds = "l-vdlmh-94" +, update = "99.03 bibrelex, 97.03 smid" } @techreport{l-ricsa-95t -, author = "Ngoc-Minh L{\^e}" -, title = "Randomized Incremental Construction of Simple Abstract {Voronoi} Diagrams in 3-Space" -, number = 174 -, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" -, address = "Germany" -, year = 1995 -, precedes = "l-ricsa-95" -, update = "98.11 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "Randomized Incremental Construction of Simple Abstract {Voronoi} Diagrams in 3-Space" +, number = 174 +, institution = "Department of Computer Science, FernUniversit{\"a}t Hagen" +, address = "Germany" +, year = 1995 +, precedes = "l-ricsa-95" +, update = "98.11 bibrelex" } @inproceedings{l-ricsa-95 -, author = "Ngoc-Minh L{\^e}" -, title = "Randomized Incremental Construction of Simple Abstract {Voronoi} Diagrams in 3-Space" -, booktitle = "Proc. 10th Internat. Conf. Fund. Comput. Theory" -, nickname = "FCT '95" -, series = "Lecture Notes Comput. Sci." -, volume = 965 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "333--342" -, succeeds = "l-ricsa-95t" -, precedes = "l-ricsa-97" -, update = "99.03 bibrelex, 98.11 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "Randomized Incremental Construction of Simple Abstract {Voronoi} Diagrams in 3-Space" +, booktitle = "Proc. 10th Internat. Conf. Fund. Comput. Theory" +, nickname = "FCT '95" +, series = "Lecture Notes Comput. Sci." +, volume = 965 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "333--342" +, succeeds = "l-ricsa-95t" +, precedes = "l-ricsa-97" +, update = "99.03 bibrelex, 98.11 bibrelex" } @inproceedings{l-ricsa-95c -, author = "Ngoc-Minh L{\^e}" -, title = "Randomized Incremental Construction of Simple Abstract {Voronoi} Diagrams in 3-Space" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "17--20" -, update = "00.03 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "Randomized Incremental Construction of Simple Abstract {Voronoi} Diagrams in 3-Space" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "17--20" +, update = "00.03 bibrelex" } @article{l-ricsa-97 -, author = "Ngoc-Minh L{\^e}" -, title = "Randomized Incremental Construction of Simple Abstract {Voronoi} Diagrams in 3-Space" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "279--298" -, keywords = "computational geometry, Voronoi diagrams, power diagrams, convex distance functions" -, succeeds = "l-ricsa-95" -, update = "99.03 bibrelex" +, author = "Ngoc-Minh L{\^e}" +, title = "Randomized Incremental Construction of Simple Abstract {Voronoi} Diagrams in 3-Space" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "279--298" +, keywords = "computational geometry, Voronoi diagrams, power diagrams, convex distance functions" +, succeeds = "l-ricsa-95" +, update = "99.03 bibrelex" } @article{ll-orpr-91 -, author = "V. B. Le and D. T. Lee" -, title = "Out-of-roundness problem revisited" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-13" -, number = 3 -, year = 1991 -, pages = "217--223" +, author = "V. B. Le and D. T. Lee" +, title = "Out-of-roundness problem revisited" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-13" +, number = 3 +, year = 1991 +, pages = "217--223" } @incollection{l-smscs-91 -, author = "A. Leach" -, title = "A survey of methods for searching the conformational space of small and medium sized molecules" -, editor = "K. Lipkowitz and D. Boyd" -, booktitle = "Reviews in Computational Chemistry" -, volume = 2 -, publisher = "VCH Publishers" -, year = 1991 -, pages = "1--47" -, update = "98.07 bibrelex" +, author = "A. Leach" +, title = "A survey of methods for searching the conformational space of small and medium sized molecules" +, editor = "K. Lipkowitz and D. Boyd" +, booktitle = "Reviews in Computational Chemistry" +, volume = 2 +, publisher = "VCH Publishers" +, year = 1991 +, pages = "1--47" +, update = "98.07 bibrelex" } @inproceedings{l-iwcod-92 -, author = "G. Leach" -, title = "Improving worst-case optimal {Delaunay} triangulation algorithms" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "340--346" -, cites = "d-fdcac-87, e-acg-87, f-savd-87, gs-dfbt-78, ps-cgi-85, b-prcv-75, dk-savd-87, gs-pmgsc-85, j-ecpqe-86, kln-edtur-91, ls-tacdt-80, s-a-88, s-cg-78, sh-cpp-75, st-sah-86, ZZZ" -, update = "99.03 forrest, 98.11 bibrelex, 98.07 bibrelex" +, author = "G. Leach" +, title = "Improving worst-case optimal {Delaunay} triangulation algorithms" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "340--346" +, cites = "d-fdcac-87, e-acg-87, f-savd-87, gs-dfbt-78, ps-cgi-85, b-prcv-75, dk-savd-87, gs-pmgsc-85, j-ecpqe-86, kln-edtur-91, ls-tacdt-80, s-a-88, s-cg-78, sh-cpp-75, st-sah-86, ZZZ" +, update = "99.03 forrest, 98.11 bibrelex, 98.07 bibrelex" } @techreport{l-satps-90 -, author = "A. Leblanc" -, title = "Some Applications of the Topological Plane Sweep Algorithm" -, type = "Technical {Report}" -, number = "SOCS 90.5" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "A. Leblanc" +, title = "Some Applications of the Topological Plane Sweep Algorithm" +, type = "Technical {Report}" +, number = "SOCS 90.5" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, update = "93.09 milone+mitchell" } @article{lt-sptcc-91 -, author = "?? L'Ecuyer and ?? Tezuka" -, title = "Structural properties for two classes of combined random number generators" -, journal = "Math. Comput." -, volume = 57 -, year = 1991 -, update = "98.03 bibrelex" +, author = "?? L'Ecuyer and ?? Tezuka" +, title = "Structural properties for two classes of combined random number generators" +, journal = "Math. Comput." +, volume = 57 +, year = 1991 +, update = "98.03 bibrelex" } @article{l-epcrn-88 -, author = "Pierre L'Ecuyer" -, title = "Efficient and portable combined random number generators" -, journal = "Commun. ACM" -, volume = 31 -, year = 1988 -, pages = "742--749, 774" -, update = "99.03 forrest, 98.03 bibrelex" +, author = "Pierre L'Ecuyer" +, title = "Efficient and portable combined random number generators" +, journal = "Commun. ACM" +, volume = 31 +, year = 1988 +, pages = "742--749, 774" +, update = "99.03 forrest, 98.03 bibrelex" } @inproceedings{lsscd-mmaps-98 -, author = "A. W. F. Lee and W. Swelden and P. Schr{\"o}der and L. Cowsar and D. Dobkin" -, title = "MAPS: Multiresolution Adaptive Parameterization of Surfaces" -, booktitle = "Proc. SIGGRAPH '98" -, site = "Orlando, FL" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, month = jul -, year = 1998 -, pages = "95--104" -, update = "98.11 held" +, author = "A. W. F. Lee and W. Swelden and P. Schr{\"o}der and L. Cowsar and D. Dobkin" +, title = "MAPS: Multiresolution Adaptive Parameterization of Surfaces" +, booktitle = "Proc. SIGGRAPH '98" +, site = "Orlando, FL" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, month = jul +, year = 1998 +, pages = "95--104" +, update = "98.11 held" } @article{lr-ipses-71 -, author = "B. Lee and F. M. Richards" -, title = "The interpretation of protein structure: {Estimation} of static accessibility" -, journal = "J. Molecular Biology" -, volume = 55 -, year = 1971 -, pages = "379--400" -, update = "98.03 agarwal+bibrelex" +, author = "B. Lee and F. M. Richards" +, title = "The interpretation of protein structure: {Estimation} of static accessibility" +, journal = "J. Molecular Biology" +, volume = 55 +, year = 1971 +, pages = "379--400" +, update = "98.03 agarwal+bibrelex" } @incollection{l-rtp-91 -, author = "C. Lee" -, title = "Regular Triangulations of Polytopes" -, editor = "" -, booktitle = "Applied Geometry and Discrete Mathematics" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 4 -, publisher = "AMS Press" -, year = 1991 -, pages = "443--456" -, keywords = "convex hull, expected-case analysis" -, update = "97.11 bibrelex, 95.05 korneenko" +, author = "C. Lee" +, title = "Regular Triangulations of Polytopes" +, editor = "" +, booktitle = "Applied Geometry and Discrete Mathematics" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 4 +, publisher = "AMS Press" +, year = 1991 +, pages = "443--456" +, keywords = "convex hull, expected-case analysis" +, update = "97.11 bibrelex, 95.05 korneenko" } @article{ll-ccmp-84 -, author = "C. C. Lee and D. T. Lee" -, title = "On a circle-cover minimization problem" -, journal = "Inform. Process. Lett." -, volume = 18 -, year = 1984 -, pages = "109--115" +, author = "C. C. Lee and D. T. Lee" +, title = "On a circle-cover minimization problem" +, journal = "Inform. Process. Lett." +, volume = 18 +, year = 1984 +, pages = "109--115" } @incollection{l-stp-97 -, author = "C. W. Lee" -, title = "Subdivisions and triangulations of polytopes" -, chapter = 14 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "271--290" -, update = "97.11 orourke" +, author = "C. W. Lee" +, title = "Subdivisions and triangulations of polytopes" +, chapter = 14 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "271--290" +, update = "97.11 orourke" } @article{l-atng-89 -, author = "C. W. Lee" -, title = "The Associahedron and Triangulations of the $n$-gon" -, journal = "European J. Combin." -, volume = 10 -, year = 1989 -, pages = "551--560" -, update = "97.11 bibrelex" +, author = "C. W. Lee" +, title = "The Associahedron and Triangulations of the $n$-gon" +, journal = "European J. Combin." +, volume = 10 +, year = 1989 +, pages = "551--560" +, update = "97.11 bibrelex" } @article{ll-ccagp-86 -, author = "D. Lee and A. Lin" -, title = "Computational complexity of art gallery problems" -, journal = "IEEE Trans. Inform. Theory" -, volume = 32 -, number = 2 -, year = 1986 -, pages = "276--282" -, update = "98.11 bibrelex, 94.05 devillers" +, author = "D. Lee and A. Lin" +, title = "Computational complexity of art gallery problems" +, journal = "IEEE Trans. Inform. Theory" +, volume = 32 +, number = 2 +, year = 1986 +, pages = "276--282" +, update = "98.11 bibrelex, 94.05 devillers" } @techreport{l-afknn-81 -, author = "D. T. Lee" -, title = "An approach to finding the $k$-nearest neighbors in the {Eucliedean} plane" -, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." -, address = "Evanston, IL" -, year = 1981 -, update = "97.11 bibrelex" +, author = "D. T. Lee" +, title = "An approach to finding the $k$-nearest neighbors in the {Eucliedean} plane" +, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." +, address = "Evanston, IL" +, year = 1981 +, update = "97.11 bibrelex" } @incollection{l-cg-96 -, author = "D. T. Lee" -, title = "Computational Geometry" -, chapter = 6 -, editor = "Allen B. Tucker, Jr." -, booktitle = "The Computer Science and Engineering Handbook" -, publisher = "CRC Press" -, address = "Boca Raton, FL" -, year = 1996 -, url = "http://www.ece.nwu.edu/~dtlee/CRCHandbook_chap6.ps.Z" -, comments = "survey article, 36 pages, 128 references" -, update = "98.07 bibrelex" +, author = "D. T. Lee" +, title = "Computational Geometry" +, chapter = 6 +, editor = "Allen B. Tucker, Jr." +, booktitle = "The Computer Science and Engineering Handbook" +, publisher = "CRC Press" +, address = "Boca Raton, FL" +, year = 1996 +, url = "http://www.ece.nwu.edu/~dtlee/CRCHandbook_chap6.ps.Z" +, comments = "survey article, 36 pages, 128 references" +, update = "98.07 bibrelex" } @techreport{l-fnvda-80 -, author = "D. T. Lee" -, title = "Furthest neighbor {Voronoi} diagrams and applications" -, type = "Report" -, number = "80-11-FC-04" -, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." -, address = "Evanston, IL" -, year = 1980 +, author = "D. T. Lee" +, title = "Furthest neighbor {Voronoi} diagrams and applications" +, type = "Report" +, number = "80-11-FC-04" +, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." +, address = "Evanston, IL" +, year = 1980 } @inproceedings{l-gavr-97 -, author = "D. T. Lee" -, title = "Geometric Algorithm Visualization Revisited" -, booktitle = "Workshop on Geometric Computing" -, year = 1997 -, url = "http://www-sop.inria.fr/prisme/scg97/prog\_workshop.html" -, update = "99.07 devillers, 98.07 tamassia" +, author = "D. T. Lee" +, title = "Geometric Algorithm Visualization Revisited" +, booktitle = "Workshop on Geometric Computing" +, year = 1997 +, url = "http://www-sop.inria.fr/prisme/scg97/prog\_workshop.html" +, update = "99.07 devillers, 98.07 tamassia" } @incollection{l-mcprg-83 -, author = "D. T. Lee" -, title = "Maximum Clique Problem of Rectangle Graphs" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "91--107" -, update = "01.04 icking" +, author = "D. T. Lee" +, title = "Maximum Clique Problem of Rectangle Graphs" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "91--107" +, update = "01.04 icking" } @article{l-matps-82 -, author = "D. T. Lee" -, title = "Medial axis transformation of a planar shape" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-4" -, number = 4 -, year = 1982 -, pages = "363--369" -, update = "98.11 bibrelex" +, author = "D. T. Lee" +, title = "Medial axis transformation of a planar shape" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-4" +, number = 4 +, year = 1982 +, pages = "363--369" +, update = "98.11 bibrelex" } @techreport{l-fchsp-80 -, author = "D. T. Lee" -, title = "On Finding the Convex Hull of a Simple Polygon" -, type = "Technical {Report}" -, number = "80-03-FC-01" -, institution = "Northwestern Univ." -, address = "Evanston, IL" -, month = mar -, year = 1980 -, update = "97.11 bibrelex" +, author = "D. T. Lee" +, title = "On Finding the Convex Hull of a Simple Polygon" +, type = "Technical {Report}" +, number = "80-03-FC-01" +, institution = "Northwestern Univ." +, address = "Evanston, IL" +, month = mar +, year = 1980 +, update = "97.11 bibrelex" } @article{l-fchsp-83 -, author = "D. T. Lee" -, title = "On finding the convex hull of a simple polygon" -, journal = "Internat. J. Comput. Inform. Sci." -, volume = 12 -, year = 1983 -, pages = "87--98" +, author = "D. T. Lee" +, title = "On finding the convex hull of a simple polygon" +, journal = "Internat. J. Comput. Inform. Sci." +, volume = 12 +, year = 1983 +, pages = "87--98" } @mastersthesis{l-fknnp-76 -, author = "D. T. Lee" -, title = "On finding the $k$-nearest neighbors in the plane" -, school = "Coordinated Sci. Lab., Univ. Illinois" -, address = "Urbana, IL" -, year = 1976 -, note = "Report R-728" -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "D. T. Lee" +, title = "On finding the $k$-nearest neighbors in the plane" +, school = "Coordinated Sci. Lab., Univ. Illinois" +, address = "Urbana, IL" +, year = 1976 +, note = "Report R-728" +, keywords = "master thesis" +, update = "97.11 bibrelex" } @article{l-knnvd-82 -, author = "D. T. Lee" -, title = "On $k$-nearest neighbor {Voronoi} diagrams in the plane" -, journal = "IEEE Trans. Comput." -, volume = "C-31" -, year = 1982 -, pages = "478--487" +, author = "D. T. Lee" +, title = "On $k$-nearest neighbor {Voronoi} diagrams in the plane" +, journal = "IEEE Trans. Comput." +, volume = "C-31" +, year = 1982 +, pages = "478--487" } @techreport{l-prp-78 -, author = "D. T. Lee" -, title = "Proximity and reachability in the plane" -, type = "Report" -, number = "R-831" -, institution = "Dept. Elect. Engrg., Univ. Illinois" -, address = "Urbana, IL" -, year = 1978 -, succeeds = "l-prp-78p" -, update = "98.11 bibrelex" +, author = "D. T. Lee" +, title = "Proximity and reachability in the plane" +, type = "Report" +, number = "R-831" +, institution = "Dept. Elect. Engrg., Univ. Illinois" +, address = "Urbana, IL" +, year = 1978 +, succeeds = "l-prp-78p" +, update = "98.11 bibrelex" } @phdthesis{l-prp-78p -, author = "D. T. Lee" -, title = "Proximity and reachability in the plane" -, school = "Coordinated Science Lab., Univ. Illinois" -, address = "Urbana, Ill." -, year = 1978 -, keywords = "doctoral thesis" -, precedes = "l-prp-78" -, update = "98.11 bibrelex" +, author = "D. T. Lee" +, title = "Proximity and reachability in the plane" +, school = "Coordinated Science Lab., Univ. Illinois" +, address = "Urbana, Ill." +, year = 1978 +, keywords = "doctoral thesis" +, precedes = "l-prp-78" +, update = "98.11 bibrelex" } @inproceedings{l-rpro-92 -, author = "D. T. Lee" -, title = "Rectilinear Paths among Rectilinear Obstacles" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "5--20" -, precedes = "lyw-rpro-96" -, update = "96.05 mitchell" -, annote = "This is an abridged version of the journal paper by Lee, Yang, and Wong" +, author = "D. T. Lee" +, title = "Rectilinear Paths among Rectilinear Obstacles" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "5--20" +, precedes = "lyw-rpro-96" +, update = "96.05 mitchell" +, annote = "This is an abridged version of the journal paper by Lee, Yang, and Wong" } @article{l-rnglm-85 -, author = "D. T. Lee" -, title = "Relative Neighborhood Graphs in the ${L}_1$ Metric" -, journal = "Pattern Recogn." -, volume = 18 -, number = 5 -, year = 1985 -, pages = "327--335" -, annote = "$O(n\log n)$ algorithm for RNG in ${L}_1$, from DT. Scan - in each of four directions, removing non RNG edges." +, author = "D. T. Lee" +, title = "Relative Neighborhood Graphs in the ${L}_1$ Metric" +, journal = "Pattern Recogn." +, volume = 18 +, number = 5 +, year = 1985 +, pages = "327--335" +, annote = "$O(n\log n)$ algorithm for RNG in ${L}_1$, from DT. Scan + in each of four directions, removing non RNG edges." } @article{l-srvdd-81 -, author = "D. T. Lee" -, title = "Shading of regions on vector display devices" -, journal = "Comput. Graph." -, volume = 15 -, number = 3 -, year = 1981 -, pages = "37--44" -, note = "Proc. SIGGRAPH '81" +, author = "D. T. Lee" +, title = "Shading of regions on vector display devices" +, journal = "Comput. Graph." +, volume = 15 +, number = 3 +, year = 1981 +, pages = "37--44" +, note = "Proc. SIGGRAPH '81" } @article{l-tdvdl-80 -, author = "D. T. Lee" -, title = "Two-dimensional {Voronoi} diagrams in the {$L_p$}-metric" -, journal = "J. ACM" -, volume = 27 -, number = 4 -, year = 1980 -, pages = "604--618" -, update = "99.03 bibrelex, 98.11 bibrelex" +, author = "D. T. Lee" +, title = "Two-dimensional {Voronoi} diagrams in the {$L_p$}-metric" +, journal = "J. ACM" +, volume = 27 +, number = 4 +, year = 1980 +, pages = "604--618" +, update = "99.03 bibrelex, 98.11 bibrelex" } @article{l-vsp-83 -, author = "D. T. Lee" -, title = "Visibility of a simple polygon" -, journal = "Comput. Vision Graph. Image Process." -, volume = 22 -, year = 1983 -, pages = "207--221" +, author = "D. T. Lee" +, title = "Visibility of a simple polygon" +, journal = "Comput. Vision Graph. Image Process." +, volume = 22 +, year = 1983 +, pages = "207--221" } @techreport{l-wfnvd-93 -, author = "D. T. Lee" -, title = "Weighted farthest neighbor {Voronoi} Diagrams" -, type = "Manuscript" -, institution = "Mississippi State University" -, month = feb -, year = 1993 -, comments = "Second Workshop on Proximity Graphs" -, update = "93.09 milone+mitchell" +, author = "D. T. Lee" +, title = "Weighted farthest neighbor {Voronoi} Diagrams" +, type = "Manuscript" +, institution = "Mississippi State University" +, month = feb +, year = 1993 +, comments = "Second Workshop on Proximity Graphs" +, update = "93.09 milone+mitchell" } @article{lcw-occss-81 -, author = "D. T. Lee and C.-H. Chang and C. K. Wong" -, title = "An on-chip compare steer bubble sorter" -, journal = "IEEE Trans. Comput." -, volume = "??" -, year = 1981 -, pages = "396--405" -, update = "98.03 bibrelex" +, author = "D. T. Lee and C.-H. Chang and C. K. Wong" +, title = "An on-chip compare steer bubble sorter" +, journal = "IEEE Trans. Comput." +, volume = "??" +, year = 1981 +, pages = "396--405" +, update = "98.03 bibrelex" } @incollection{lc-dvesc-85 -, author = "D. T. Lee and I. M. Chen" -, title = "Display of visible edges of a set of convex polygons" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "249--265" +, author = "D. T. Lee and I. M. Chen" +, title = "Display of visible edges of a set of convex polygons" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "249--265" } @inproceedings{lcy-srpwo-90 -, author = "D. T. Lee and T. H. Chen and C. D. Yang" -, title = "Shortest rectilinear paths among weighted obstacles" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "301--310" -, cites = "aaghi-vdp-86, ckv-rsptp-87, rlw-rsppr-89, ft-fhtu-84, gh-ospqs-87, gs-canen-83, ll-fmrdp-81, l-prp-78, lp-esppr-84, lw-apcfp-79, mp-psp-85, m-srpo-87t, m-naspo-88, ps-cgi-85, w-cvgnl-85, w-ndiv-89, wwsw-rspms-87, ZZZ" -, update = "97.11 bibrelex" +, author = "D. T. Lee and T. H. Chen and C. D. Yang" +, title = "Shortest rectilinear paths among weighted obstacles" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "301--310" +, cites = "aaghi-vdp-86, ckv-rsptp-87, rlw-rsppr-89, ft-fhtu-84, gh-ospqs-87, gs-canen-83, ll-fmrdp-81, l-prp-78, lp-esppr-84, lw-apcfp-79, mp-psp-85, m-srpo-87t, m-naspo-88, ps-cgi-85, w-cvgnl-85, w-ndiv-89, wwsw-rspms-87, ZZZ" +, update = "97.11 bibrelex" } @article{lc-pgdr-85 -, author = "D. T. Lee and Y. T. Ching" -, title = "The power of geometric duality revisited" -, journal = "Inform. Process. Lett." -, volume = 21 -, year = 1985 -, pages = "117--122" +, author = "D. T. Lee and Y. T. Ching" +, title = "The power of geometric duality revisited" +, journal = "Inform. Process. Lett." +, volume = 21 +, year = 1985 +, pages = "117--122" } @article{ld-gvdp-81 -, author = "D. T. Lee and R. L. {Drysdale, III}" -, title = "Generalization of {Voronoi} diagrams in the plane" -, journal = "SIAM J. Comput." -, volume = 10 -, year = 1981 -, pages = "73--87" -, keywords = "Voronoi diagrams, line segments, two-dimensional" +, author = "D. T. Lee and R. L. {Drysdale, III}" +, title = "Generalization of {Voronoi} diagrams in the plane" +, journal = "SIAM J. Comput." +, volume = 10 +, year = 1981 +, pages = "73--87" +, keywords = "Voronoi diagrams, line segments, two-dimensional" } @techreport{ll-cvpe-84 -, author = "D. T. Lee and A. Lin" -, title = "Computing the Visibility Polygon from an Edge" -, type = "Technical {Report}" -, institution = "Northwestern University" -, year = 1984 -, update = "97.11 bibrelex" +, author = "D. T. Lee and A. Lin" +, title = "Computing the Visibility Polygon from an Edge" +, type = "Technical {Report}" +, institution = "Northwestern University" +, year = 1984 +, update = "97.11 bibrelex" } @article{ll-cvpe-86 -, author = "D. T. Lee and A. K. Lin" -, title = "Computing the visibility polygon from an edge" -, journal = "Comput. Vision Graph. Image Process." -, volume = 34 -, year = 1986 -, pages = "1--19" -, update = "93.09 milone+mitchell" +, author = "D. T. Lee and A. K. Lin" +, title = "Computing the visibility polygon from an edge" +, journal = "Comput. Vision Graph. Image Process." +, volume = 34 +, year = 1986 +, pages = "1--19" +, update = "93.09 milone+mitchell" } @article{ll-gdtpg-86 -, author = "D. T. Lee and A. K. Lin" -, title = "Generalized {Delaunay} Triangulation for Planar Graphs" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "201--217" +, author = "D. T. Lee and A. K. Lin" +, title = "Generalized {Delaunay} Triangulation for Planar Graphs" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "201--217" } @techreport{lm-rac-83 -, author = "D. T. Lee and N. Megiddo" -, title = "Routing around circles" -, type = "Manuscript" -, institution = "??" -, year = 1983 +, author = "D. T. Lee and N. Megiddo" +, title = "Routing around circles" +, type = "Manuscript" +, institution = "??" +, year = 1983 } @techreport{ln-ddsvd-80 -, author = "D. T. Lee and A. Naamad" -, title = "A dynamic data structure for {Voronoi} diagrams and its applications" -, type = "Report" -, number = "80-10-FC-03" -, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." -, address = "Evanston, IL" -, year = 1980 +, author = "D. T. Lee and A. Naamad" +, title = "A dynamic data structure for {Voronoi} diagrams and its applications" +, type = "Report" +, number = "80-10-FC-03" +, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." +, address = "Evanston, IL" +, year = 1980 } @article{lp-iarep-82 -, author = "D. T. Lee and F. P. Preparata" -, title = "An improved algorithm for the rectangle enclosure problem" -, journal = "J. Algorithms" -, volume = 3 -, year = 1982 -, pages = "218--224" +, author = "D. T. Lee and F. P. Preparata" +, title = "An improved algorithm for the rectangle enclosure problem" +, journal = "J. Algorithms" +, volume = 3 +, year = 1982 +, pages = "218--224" } @article{lp-oafkp-79 -, author = "D. T. Lee and F. P. Preparata" -, title = "An optimal algorithm for finding the kernel of a polygon" -, journal = "J. ACM" -, volume = 26 -, number = 3 -, month = jul -, year = 1979 -, pages = "415--421" -, update = "98.11 bibrelex" +, author = "D. T. Lee and F. P. Preparata" +, title = "An optimal algorithm for finding the kernel of a polygon" +, journal = "J. ACM" +, volume = 26 +, number = 3 +, month = jul +, year = 1979 +, pages = "415--421" +, update = "98.11 bibrelex" } @article{lp-cgs-84 -, author = "D. T. Lee and F. P. Preparata" -, title = "Computational geometry: a survey" -, journal = "IEEE Trans. Comput." -, volume = "C-33" -, year = 1984 -, pages = "1072--1101" +, author = "D. T. Lee and F. P. Preparata" +, title = "Computational geometry: a survey" +, journal = "IEEE Trans. Comput." +, volume = "C-33" +, year = 1984 +, pages = "1072--1101" } @article{lp-esppr-84 -, author = "D. T. Lee and F. P. Preparata" -, title = "Euclidean shortest paths in the presence of rectilinear barriers" -, journal = "Networks" -, volume = 14 -, year = 1984 -, pages = "393--410" -, keywords = "triangulations" +, author = "D. T. Lee and F. P. Preparata" +, title = "Euclidean shortest paths in the presence of rectilinear barriers" +, journal = "Networks" +, volume = 14 +, year = 1984 +, pages = "393--410" +, keywords = "triangulations" } @inproceedings{lp-lppsi-76 -, author = "D. T. Lee and F. P. Preparata" -, title = "Location of a point in a planar subdivision and its applications" -, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." -, year = 1976 -, pages = "231--235" -, precedes = "lp-lppsi-77" +, author = "D. T. Lee and F. P. Preparata" +, title = "Location of a point in a planar subdivision and its applications" +, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." +, year = 1976 +, pages = "231--235" +, precedes = "lp-lppsi-77" } @article{lp-lppsi-77 -, author = "D. T. Lee and F. P. Preparata" -, title = "Location of a point in a planar subdivision and its applications" -, journal = "SIAM J. Comput." -, volume = 6 -, number = 3 -, year = 1977 -, pages = "594--606" -, succeeds = "lp-lppsi-76" -, update = "98.07 tamassia" +, author = "D. T. Lee and F. P. Preparata" +, title = "Location of a point in a planar subdivision and its applications" +, journal = "SIAM J. Comput." +, volume = 6 +, number = 3 +, year = 1977 +, pages = "594--606" +, succeeds = "lp-lppsi-76" +, update = "98.07 tamassia" } @article{lp-pbppl-89 -, author = "D. T. Lee and F. P. Preparata" -, title = "Parallel batched planar point location on the {CCC}" -, journal = "Inform. Process. Lett." -, volume = 33 -, year = 1989 -, pages = "175--179" -, update = "93.05 devillers" +, author = "D. T. Lee and F. P. Preparata" +, title = "Parallel batched planar point location on the {CCC}" +, journal = "Inform. Process. Lett." +, volume = 33 +, year = 1989 +, pages = "175--179" +, update = "93.05 devillers" } @article{lp-annpc-78 -, author = "D. T. Lee and F. P. Preparata" -, title = "The all nearest-neighbor problem for convex polygons" -, journal = "Inform. Process. Lett." -, volume = 7 -, year = 1978 -, pages = "189--192" +, author = "D. T. Lee and F. P. Preparata" +, title = "The all nearest-neighbor problem for convex polygons" +, journal = "Inform. Process. Lett." +, volume = 7 +, year = 1978 +, pages = "189--192" } @article{ls-mispg-93 -, author = "D. T. Lee and M. Sarrafzadeh" -, title = "Maximum independent set of a permutation graph in K tracks" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "291--304" -, keywords = "Permutation graphs, maximum independent set, maximum chain, track assignment, plane sweep technique" -, update = "96.09 devillers" +, author = "D. T. Lee and M. Sarrafzadeh" +, title = "Maximum independent set of a permutation graph in K tracks" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "291--304" +, keywords = "Permutation graphs, maximum independent set, maximum chain, track assignment, plane sweep technique" +, update = "96.09 devillers" } @article{ls-tacdt-80 -, author = "D. T. Lee and B. J. Schachter" -, title = "Two algorithms for constructing {Delaunay} triangulations" -, journal = "Internat. J. Comput. Inform. Sci." -, volume = 9 -, number = 3 -, year = 1980 -, pages = "219--242" -, update = "01.11 smid, 98.07 bibrelex" +, author = "D. T. Lee and B. J. Schachter" +, title = "Two algorithms for constructing {Delaunay} triangulations" +, journal = "Internat. J. Comput. Inform. Sci." +, volume = 9 +, number = 3 +, year = 1980 +, pages = "219--242" +, update = "01.11 smid, 98.07 bibrelex" } @article{lss-gdvtg-98 -, author = "D. T. Lee and C.-F. Shen and D. S. Sheu" -, title = "Geosheet: A Distributed Visualization Tool for Geometric Algorithms" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "119--156" -, update = "98.11 devillers" +, author = "D. T. Lee and C.-F. Shen and D. S. Sheu" +, title = "Geosheet: A Distributed Visualization Tool for Geometric Algorithms" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "119--156" +, update = "98.11 devillers" } @article{ls-oirac-82 -, author = "D. T. Lee and C. B. Silio" -, title = "An optimal illumination region algorithm for convex polygons" -, journal = "IEEE Trans. Comput." -, volume = "C-31" -, year = 1982 -, pages = "1225--1227" +, author = "D. T. Lee and C. B. Silio" +, title = "An optimal illumination region algorithm for convex polygons" +, journal = "IEEE Trans. Comput." +, volume = "C-31" +, year = 1982 +, pages = "1225--1227" } @techreport{ls-oscac-80 -, author = "D. T. Lee and C. B. {Silio, Jr.}" -, title = "An optimal simplex coverability algorithm for convex polygons" -, type = "Report" -, number = "??" -, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." -, address = "Evanston, IL" -, year = 1980 +, author = "D. T. Lee and C. B. {Silio, Jr.}" +, title = "An optimal simplex coverability algorithm for convex polygons" +, type = "Report" +, number = "??" +, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." +, address = "Evanston, IL" +, year = 1980 } @article{lw-firrs-81 -, author = "D. T. Lee and C. K. Wong" -, title = "Finding intersections of rectangles by range search" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "337--347" +, author = "D. T. Lee and C. K. Wong" +, title = "Finding intersections of rectangles by range search" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "337--347" } @article{lw-qtfsm-80 -, author = "D. T. Lee and C. K. Wong" -, title = "Quintary trees: a file structure for multidimensional database systems" -, journal = "ACM Trans. Database Syst." -, volume = 5 -, year = 1980 -, pages = "339--353" +, author = "D. T. Lee and C. K. Wong" +, title = "Quintary trees: a file structure for multidimensional database systems" +, journal = "ACM Trans. Database Syst." +, volume = 5 +, year = 1980 +, pages = "339--353" } @article{lw-vdllm-80 -, author = "D. T. Lee and C. K. Wong" -, title = "Voronoi diagrams in {$L_{1}$} ({$L_{\infty}$}) metrics with $2$-dimensional storage applications" -, journal = "SIAM J. Comput." -, volume = 9 -, number = 1 -, year = 1980 -, pages = "200--211" -, update = "98.11 bibrelex" +, author = "D. T. Lee and C. K. Wong" +, title = "Voronoi diagrams in {$L_{1}$} ({$L_{\infty}$}) metrics with $2$-dimensional storage applications" +, journal = "SIAM J. Comput." +, volume = 9 +, number = 1 +, year = 1980 +, pages = "200--211" +, update = "98.11 bibrelex" } @article{lw-wcarp-77 -, author = "D. T. Lee and C. K. Wong" -, title = "Worst-case analysis for region and partial region searches in multidimensional binary search trees and balanced quad trees" -, journal = "Acta Inform." -, volume = 9 -, year = 1977 -, pages = "23--29" +, author = "D. T. Lee and C. K. Wong" +, title = "Worst-case analysis for region and partial region searches in multidimensional binary search trees and balanced quad trees" +, journal = "Acta Inform." +, volume = 9 +, year = 1977 +, pages = "23--29" } @inproceedings{lw-eae1l-87 -, author = "D. T. Lee and Y. F. Wu" -, title = "Efficient algorithms for {Euclidean} $1$-line center and problems" -, booktitle = "Proc. ISOLDE III" -, site = "Boston, MA" -, year = 1987 -, pages = "??" +, author = "D. T. Lee and Y. F. Wu" +, title = "Efficient algorithms for {Euclidean} $1$-line center and problems" +, booktitle = "Proc. ISOLDE III" +, site = "Boston, MA" +, year = 1987 +, pages = "??" } @article{lw-gcslp-86 -, author = "D. T. Lee and Y. F. Wu" -, title = "Geometric complexity of some location problems" -, journal = "Algorithmica" -, volume = 1 -, year = 1986 -, pages = "193--211" +, author = "D. T. Lee and Y. F. Wu" +, title = "Geometric complexity of some location problems" +, journal = "Algorithmica" +, volume = 1 +, year = 1986 +, pages = "193--211" } @article{ly-lmpps-79 -, author = "D. T. Lee and C. C. Yang" -, title = "Location of multiple points in a planar subdivision" -, journal = "Inform. Process. Lett." -, volume = 9 -, year = 1979 -, pages = "190--193" +, author = "D. T. Lee and C. C. Yang" +, title = "Location of multiple points in a planar subdivision" +, journal = "Inform. Process. Lett." +, volume = 9 +, year = 1979 +, pages = "190--193" } @article{lyc-srpwo-91 -, author = "D. T. Lee and C. D. Yang and T. H. Chen" -, title = "Shortest rectilinear paths among weighted obstacles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 2 -, year = 1991 -, pages = "109--124" -, keywords = "shortest path, rectilinear path, weighted obstacle, graph theoretic approach" +, author = "D. T. Lee and C. D. Yang and T. H. Chen" +, title = "Shortest rectilinear paths among weighted obstacles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 2 +, year = 1991 +, pages = "109--124" +, keywords = "shortest path, rectilinear path, weighted obstacle, graph theoretic approach" } @article{lyw-frpao-97 -, author = "D. T. Lee and C. D. Yang and C. K. Wong" -, title = "Finding Rectilinear Paths Among Obstacles in a Two-Layer Interconnection Model" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "581--598" -, update = "98.11 devillers" +, author = "D. T. Lee and C. D. Yang and C. K. Wong" +, title = "Finding Rectilinear Paths Among Obstacles in a Two-Layer Interconnection Model" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "581--598" +, update = "98.11 devillers" } @article{lyw-rpro-96 -, author = "D. T. Lee and C. D. Yang and C. K. Wong" -, title = "Rectilinear paths among rectilinear obstacles" -, journal = "Discrete Appl. Math." -, volume = 70 -, year = 1996 -, pages = "185--215" -, keywords = "survey, shortest paths, rectilinear geometry, bicriteria paths, VLSI, wire routing" -, succeeds = "l-rpro-92" -, update = "97.03 schwarzkopf, 96.05 mitchell" +, author = "D. T. Lee and C. D. Yang and C. K. Wong" +, title = "Rectilinear paths among rectilinear obstacles" +, journal = "Discrete Appl. Math." +, volume = 70 +, year = 1996 +, pages = "185--215" +, keywords = "survey, shortest paths, rectilinear geometry, bicriteria paths, VLSI, wire routing" +, succeeds = "l-rpro-92" +, update = "97.03 schwarzkopf, 96.05 mitchell" } @inproceedings{lc-avcpg-92 -, author = "H. S. Lee and R. C. Chang" -, title = "Approximating Vertices of a Convex Polygon with Grid Points in the Polygon" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "269--278" -, update = "94.09 smid, 93.09 milone+mitchell" +, author = "H. S. Lee and R. C. Chang" +, title = "Approximating Vertices of a Convex Polygon with Grid Points in the Polygon" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "269--278" +, update = "94.09 smid, 93.09 milone+mitchell" } @inproceedings{lc-hgpcp-91 -, author = "H. S. Lee and R. C. Chang" -, title = "On hitting grid points in a convex polygon with straight lines" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "176--189" +, author = "H. S. Lee and R. C. Chang" +, title = "On hitting grid points in a convex polygon with straight lines" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "176--189" } @article{lc-regpc-93 -, author = "H. S. Lee and R. C. Chang" -, title = "Regular enumeration of grid points in a convex polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "305--322" -, keywords = "approximation algorithms, continued fraction expansions, hitting set problem, number theory" -, update = "96.09 devillers" +, author = "H. S. Lee and R. C. Chang" +, title = "Regular enumeration of grid points in a convex polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "305--322" +, keywords = "approximation algorithms, continued fraction expansions, hitting set problem, number theory" +, update = "96.09 devillers" } @inproceedings{l-dhcme-89 -, author = "Jay Lee" -, title = "A drop heuristic conversion method for extracting irregular network for digital elevation models" -, booktitle = "GIS/LIS '89 Proc." -, volume = 1 -, publisher = "American Congress on Surveying and Mapping" -, month = nov -, year = 1989 -, pages = "30--39" -, keywords = "triangulated irregular network, terrain, surface simplification" -, update = "95.09 mitchell" -, abstract = "The advantages and disadvantages of various DEMs have +, author = "Jay Lee" +, title = "A drop heuristic conversion method for extracting irregular network for digital elevation models" +, booktitle = "GIS/LIS '89 Proc." +, volume = 1 +, publisher = "American Congress on Surveying and Mapping" +, month = nov +, year = 1989 +, pages = "30--39" +, keywords = "triangulated irregular network, terrain, surface simplification" +, update = "95.09 mitchell" +, abstract = "The advantages and disadvantages of various DEMs have been discussed extensively and authors have concluded that for many types of applications the triangulated irregular network is better suited for approximating terrain surfaces because of its efficiency in @@ -94761,29 +94761,29 @@ @inproceedings{l-dhcme-89 } @article{l-avsts-91 -, author = "J. Lee" -, title = "Analyses of Visibility Sites on Topographic Surfaces" -, journal = "Internat. J. Geogr. Inform. Syst." -, volume = 5 -, year = 1991 -, pages = "413--430" -, update = "96.09 kreveld" +, author = "J. Lee" +, title = "Analyses of Visibility Sites on Topographic Surfaces" +, journal = "Internat. J. Geogr. Inform. Syst." +, volume = 5 +, year = 1991 +, pages = "413--430" +, update = "96.09 kreveld" } @article{l-cembt-91 -, author = "Jay Lee" -, title = "Comparison of existing methods for building triangular irregular network models of terrain from grid digital elevation models" -, journal = "Internat. J. Geogr. Inform. Syst." -, volume = 5 -, number = 3 -, month = jul # "-" # sep -, year = 1991 -, pages = "267--285" -, keywords = "terrain, triangulated irregular network, TIN" -, update = "96.09 devillers, 95.09 mitchell" -, annote = "Compares his drop heuristic algorithm to Chen-Guevara +, author = "Jay Lee" +, title = "Comparison of existing methods for building triangular irregular network models of terrain from grid digital elevation models" +, journal = "Internat. J. Geogr. Inform. Syst." +, volume = 5 +, number = 3 +, month = jul # "-" # sep +, year = 1991 +, pages = "267--285" +, keywords = "terrain, triangulated irregular network, TIN" +, update = "96.09 devillers, 95.09 mitchell" +, annote = "Compares his drop heuristic algorithm to Chen-Guevara and DeFloriani84" -, abstract = "Triangulated irregular networks (TINs) are +, abstract = "Triangulated irregular networks (TINs) are increasingly popular for their efficiency in data storage and their ability to accommodate irregularly spaced elevation points for many applications of geographical information systems. The paper reviews and @@ -94796,35 +94796,35 @@ @article{l-cembt-91 } @techreport{lc-tasso-98 -, author = "Jae-Ha Lee and Kyung-Yong Chwa" -, title = "Tight Analysis of a Self-Approaching Strategy for the Online Kernel-Search Problem" -, institution = "Department of Computer Science, KAIST" -, address = "Taejon, Korea" -, year = 1998 -, precedes = "lc-tasso-99" -, update = "99.07 bibrelex, 98.07 icking" +, author = "Jae-Ha Lee and Kyung-Yong Chwa" +, title = "Tight Analysis of a Self-Approaching Strategy for the Online Kernel-Search Problem" +, institution = "Department of Computer Science, KAIST" +, address = "Taejon, Korea" +, year = 1998 +, precedes = "lc-tasso-99" +, update = "99.07 bibrelex, 98.07 icking" } @article{lc-tasso-99 -, author = "Jae-Ha Lee and Kyung-Yong Chwa" -, title = "Tight Analysis of a Self-Approaching Strategy for the Online Kernel-Search Problem" -, journal = "Inform. Process. Lett." -, volume = 69 -, year = 1999 -, pages = "39--45" -, succeeds = "lc-tasso-98" -, update = "99.07 bibrelex+smid" +, author = "Jae-Ha Lee and Kyung-Yong Chwa" +, title = "Tight Analysis of a Self-Approaching Strategy for the Online Kernel-Search Problem" +, journal = "Inform. Process. Lett." +, volume = 69 +, year = 1999 +, pages = "39--45" +, succeeds = "lc-tasso-98" +, update = "99.07 bibrelex+smid" } @inproceedings{lsksc-ncssu-97 -, author = "Jae-Ha Lee and Chan-Su Shin and Jae-Hoon Kim and Sung Yong Shin and Kyung-Yong Chwa" -, title = "New Competitive Strategies for Searching in Unknown Star-Shaped Polygons" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "427--429" -, cites = "bcr-sp-93, di-csgs-94, ik-skpcs-95, l-oltsb-96, ls-pinos-97, k-wusbd-91, k-olssp-94, py-spwm-89, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex+icking, 98.03 mitchell, 97.06 efrat" -, annote = "They assume an input of a star-shaped polygon, P. +, author = "Jae-Ha Lee and Chan-Su Shin and Jae-Hoon Kim and Sung Yong Shin and Kyung-Yong Chwa" +, title = "New Competitive Strategies for Searching in Unknown Star-Shaped Polygons" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "427--429" +, cites = "bcr-sp-93, di-csgs-94, ik-skpcs-95, l-oltsb-96, ls-pinos-97, k-wusbd-91, k-olssp-94, py-spwm-89, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex+icking, 98.03 mitchell, 97.06 efrat" +, annote = "They assume an input of a star-shaped polygon, P. For the problem of getting from s to the kernel, they give an algorithm with competitive ratio $1+2\sqrt{2}\approx 3.829$, while for getting from s @@ -94833,2294 +94833,2294 @@ @inproceedings{lsksc-ncssu-97 } @article{twccwj-cpspu-97 -, author = "M. K. Lee" -, title = "A New Convex-Hull Based Approach to Evaluating Flatness Tolerance" -, journal = "Comput. Aided Design" -, volume = 29 -, number = 12 -, year = 1997 -, pages = "861--868" -, update = "98.03 mitchell" +, author = "M. K. Lee" +, title = "A New Convex-Hull Based Approach to Evaluating Flatness Tolerance" +, journal = "Comput. Aided Design" +, volume = 29 +, number = 12 +, year = 1997 +, pages = "861--868" +, update = "98.03 mitchell" } @article{lcc-apcam-76 -, author = "R. C. T. Lee and Y. H. Chin and S. C. Chang" -, title = "Application of principal component analysis to multikey searching" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-2" -, year = 1976 -, pages = "185--193" +, author = "R. C. T. Lee and Y. H. Chin and S. C. Chang" +, title = "Application of principal component analysis to multikey searching" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-2" +, year = 1976 +, pages = "185--193" } @article{lsb-tmsmp-77 -, author = "R. C. T. Lee and J. R. Slagle and H. Blum" -, title = "A triangulation method for the sequential mapping of points from $n$-space to $2$-space" -, journal = "IEEE Trans. Comput." -, volume = "C-26" -, year = 1977 -, pages = "288--292" +, author = "R. C. T. Lee and J. R. Slagle and H. Blum" +, title = "A triangulation method for the sequential mapping of points from $n$-space to $2$-space" +, journal = "IEEE Trans. Comput." +, volume = "C-26" +, year = 1977 +, pages = "288--292" } @techreport{lt-asspm-76 -, author = "R. C. T. Lee and R. C. Tsai" -, title = "Application of short spanning path to multi-key searching" -, type = "Report" -, number = "??" -, institution = "Inst. Appl. Math., National Tsing Hua Univ." -, address = "Hsinchu, Taiwan" -, year = 1976 +, author = "R. C. T. Lee and R. C. Tsai" +, title = "Application of short spanning path to multi-key searching" +, type = "Report" +, number = "??" +, institution = "Inst. Appl. Math., National Tsing Hua Univ." +, address = "Hsinchu, Taiwan" +, year = 1976 } @article{lc-ntlcs-87 -, author = "S. H. Lee and K. Y. Chwa" -, title = "A new triangulation-linear class of simple polygons" -, journal = "Internat. J. Comput. Math." -, volume = 22 -, year = 1987 -, pages = "135--147" +, author = "S. H. Lee and K. Y. Chwa" +, title = "A new triangulation-linear class of simple polygons" +, journal = "Internat. J. Comput. Math." +, volume = 22 +, year = 1987 +, pages = "135--147" } @article{lc-scvps-90 -, author = "S. H. Lee and K. Y. Chwa" -, title = "Some chain visibility problems in a simple polygon" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "485--507" +, author = "S. H. Lee and K. Y. Chwa" +, title = "Some chain visibility problems in a simple polygon" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "485--507" } @article{lds-afemg-84 -, author = "Y. T. Lee and A. {De Pennington} and N. K. Shaw" -, title = "Automatic finite-element mesh generation from geometric models: a point-based approach" -, journal = "ACM Trans. Graph." -, volume = 3 -, number = 4 -, year = 1984 -, pages = "287--311" +, author = "Y. T. Lee and A. {De Pennington} and N. K. Shaw" +, title = "Automatic finite-element mesh generation from geometric models: a point-based approach" +, journal = "ACM Trans. Graph." +, volume = 3 +, number = 4 +, year = 1984 +, pages = "287--311" } @article{lr-acvoi1-82 -, author = "Y. T. Lee and A. A. G. Requicha" -, title = "Algorithms for computing the volume and other integral properties of solids. {I}. {Known} methods and open issues" -, journal = "Commun. ACM" -, volume = 25 -, year = 1982 -, pages = "635--641" +, author = "Y. T. Lee and A. A. G. Requicha" +, title = "Algorithms for computing the volume and other integral properties of solids. {I}. {Known} methods and open issues" +, journal = "Commun. ACM" +, volume = 25 +, year = 1982 +, pages = "635--641" } @article{lr-acvoi2-82 -, author = "Y. T. Lee and A. A. G. Requicha" -, title = "Algorithms for computing the volume and other integral properties of solids. {II}. {A} family of algorithms based on representation conversion and cellular approximation" -, journal = "Commun. ACM" -, volume = 25 -, year = 1982 -, pages = "642--650" +, author = "Y. T. Lee and A. A. G. Requicha" +, title = "Algorithms for computing the volume and other integral properties of solids. {II}. {A} family of algorithms based on representation conversion and cellular approximation" +, journal = "Commun. ACM" +, volume = 25 +, year = 1982 +, pages = "642--650" } @techreport{l-gcg-82 -, author = "J. van Leeuwen" -, title = "Graphics and computational geometry" -, type = "Report" -, number = "RUU-CS-81-18" -, institution = "Les Mathematiques de Informatique, Colloq. AFCET" -, address = "Paris, France" -, year = 1982 -, pages = "159--165" +, author = "J. van Leeuwen" +, title = "Graphics and computational geometry" +, type = "Report" +, number = "RUU-CS-81-18" +, institution = "Les Mathematiques de Informatique, Colloq. AFCET" +, address = "Paris, France" +, year = 1982 +, pages = "159--165" } @article{l-pp-83 -, author = "J. van Leeuwen" -, title = "Problem {P}20" -, journal = "Bull. EATCS" -, volume = 19 -, year = 1983 -, pages = 150 +, author = "J. van Leeuwen" +, title = "Problem {P}20" +, journal = "Bull. EATCS" +, volume = 19 +, year = 1983 +, pages = 150 } @techreport{lm-dssds-80 -, author = "J. van Leeuwen and H. A. Maurer" -, title = "Dynamic systems of static data-structures" -, type = "Report" -, number = "F42" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1980 +, author = "J. van Leeuwen and H. A. Maurer" +, title = "Dynamic systems of static data-structures" +, type = "Report" +, number = "F42" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1980 } @inproceedings{lo-ad-81 -, author = "J. van Leeuwen and M. H. Overmars" -, title = "The art of dynamizing" -, booktitle = "Proc. 10th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 118 -, publisher = "Springer-Verlag" -, year = 1981 -, pages = "121--131" +, author = "J. van Leeuwen and M. H. Overmars" +, title = "The art of dynamizing" +, booktitle = "Proc. 10th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 118 +, publisher = "Springer-Verlag" +, year = 1981 +, pages = "121--131" } @inproceedings{ls-utstp-82 -, author = "J. van Leeuwen and Anneke A. Schoone" -, title = "Untangling a travelling salesman tour in the plane" -, editor = "J. R. M{\"u}hlbacher" -, booktitle = "Proc. 7th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '81" -, publisher = "Hanser" -, address = "M{\"u}nchen" -, year = 1982 -, pages = "87--98" -, comments = "replaces the old techreport vs-utstp-80" -, update = "98.07 bibrelex, 93.09 rote" +, author = "J. van Leeuwen and Anneke A. Schoone" +, title = "Untangling a travelling salesman tour in the plane" +, editor = "J. R. M{\"u}hlbacher" +, booktitle = "Proc. 7th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '81" +, publisher = "Hanser" +, address = "M{\"u}nchen" +, year = 1982 +, pages = "87--98" +, comments = "replaces the old techreport vs-utstp-80" +, update = "98.07 bibrelex, 93.09 rote" } @article{lw-ddsp-80 -, author = "J. van Leeuwen and D. Wood" -, title = "Dynamization of decomposable searching problems" -, journal = "Inform. Process. Lett." -, volume = 10 -, year = 1980 -, pages = "51--56" +, author = "J. van Leeuwen and D. Wood" +, title = "Dynamization of decomposable searching problems" +, journal = "Inform. Process. Lett." +, volume = 10 +, year = 1980 +, pages = "51--56" } @article{lw-mprrd-81 -, author = "J. van Leeuwen and D. Wood" -, title = "The measure problem for rectangular ranges in $d$-space" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "282--300" +, author = "J. van Leeuwen and D. Wood" +, title = "The measure problem for rectangular ranges in $d$-space" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "282--300" } @article{lm-tmd-98 -, author = "Vincent Lef{\'e}vre and Jean-Michel Muller" -, title = "The Table Maker's Dilemma" -, journal = "IEEE Trans. Comput." -, volume = 47 -, number = 11 -, year = 1998 -, update = "00.03 devillers" +, author = "Vincent Lef{\'e}vre and Jean-Michel Muller" +, title = "The Table Maker's Dilemma" +, journal = "IEEE Trans. Comput." +, volume = 47 +, number = 11 +, year = 1998 +, update = "00.03 devillers" } @book{l-at-42 -, author = "S. Lefschetz" -, title = "Algebraic topology" -, publisher = "American Mathematical Society" -, year = 1942 -, update = "97.11 bibrelex" +, author = "S. Lefschetz" +, title = "Algebraic topology" +, publisher = "American Mathematical Society" +, year = 1942 +, update = "97.11 bibrelex" } @book{l-aat-75 -, author = "S. Lefschetz" -, title = "Applications of Algebraic Topology" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1975 -, update = "98.03 bibrelex" +, author = "S. Lefschetz" +, title = "Applications of Algebraic Topology" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1975 +, update = "98.03 bibrelex" } @book{l-it-49 -, author = "S. Lefschetz" -, title = "Introduction to Topology" -, publisher = "Princeton University Press" -, address = "Princeton, NJ" -, year = 1949 -, update = "98.03 bibrelex" +, author = "S. Lefschetz" +, title = "Introduction to Topology" +, publisher = "Princeton University Press" +, address = "Princeton, NJ" +, year = 1949 +, update = "98.03 bibrelex" } @article{ld-cccoe-81 -, author = "P. Lehert and P. A. Devijver" -, title = "Clustering by connected components in {$O(n)$} expected time" -, journal = "RAIRO Inform. Theor." -, volume = 15 -, year = 1981 -, pages = "207--218" +, author = "P. Lehert and P. A. Devijver" +, title = "Clustering by connected components in {$O(n)$} expected time" +, journal = "RAIRO Inform. Theor." +, volume = 15 +, year = 1981 +, pages = "207--218" } @article{l-rpo3d-90 -, author = "G. Lei" -, title = "Recognition of planar objects in 3-D space from single perspective views using cross ratio" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, number = 4 -, year = 1990 -, pages = "432--437" -, update = "93.09 milone+mitchell" +, author = "G. Lei" +, title = "Recognition of planar objects in 3-D space from single perspective views using cross ratio" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, number = 4 +, year = 1990 +, pages = "432--437" +, update = "93.09 milone+mitchell" } @inproceedings{ll-dtvdr-00 -, author = "Greg Leibon and David Letscher" -, title = "Delaunay Triangulations and {Voronoi} Diagrams for {Riemannian} Manifolds" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "341--349" -, update = "00.11 jones" +, author = "Greg Leibon and David Letscher" +, title = "Delaunay Triangulations and {Voronoi} Diagrams for {Riemannian} Manifolds" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "341--349" +, update = "00.11 jones" } @article{l-udaek-59 -, author = "K. Leichtwei{\ss}" -, title = "{\"U}ber die affine {Exzentrizit{\"a}t} konvexer {K{\"o}rper}" -, journal = "Arch. Math." -, volume = 10 -, year = 1959 -, pages = "187--199" -, update = "97.11 bibrelex" +, author = "K. Leichtwei{\ss}" +, title = "{\"U}ber die affine {Exzentrizit{\"a}t} konvexer {K{\"o}rper}" +, journal = "Arch. Math." +, volume = 10 +, year = 1959 +, pages = "187--199" +, update = "97.11 bibrelex" } @inproceedings{l-lsvwi-82 -, author = "F. T. Leighton" -, title = "A layout strategy for {VLSI} which is provably good" -, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." -, year = 1982 -, pages = "85--98" -, precedes = "bl-fsvgl-84" +, author = "F. T. Leighton" +, title = "A layout strategy for {VLSI} which is provably good" +, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." +, year = 1982 +, pages = "85--98" +, precedes = "bl-fsvgl-84" } @book{l-civ-83 -, author = "F. T. Leighton" -, title = "Complexity issues in {VLSI}" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1983 -, update = "97.11 bibrelex" +, author = "F. T. Leighton" +, title = "Complexity issues in {VLSI}" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1983 +, update = "97.11 bibrelex" } @book{l-ipaaa-92 -, author = "F. T. Leighton" -, title = "Introduction to Parallel Algorithms and Architectures: Arrays, Trees, Hypercubes" -, publisher = "Morgan-Kaufmann" -, address = "San Mateo, CA" -, year = 1992 -, update = "96.09 orourke" +, author = "F. T. Leighton" +, title = "Introduction to Parallel Algorithms and Architectures: Arrays, Trees, Hypercubes" +, publisher = "Morgan-Kaufmann" +, address = "San Mateo, CA" +, year = 1992 +, update = "96.09 orourke" } @inproceedings{l-nlbtv-81 -, author = "F. T. Leighton" -, title = "New lower bound techniques for {VLSI}" -, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1981 -, pages = "1--12" -, precedes = "l-nlbtv-84" +, author = "F. T. Leighton" +, title = "New lower bound techniques for {VLSI}" +, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1981 +, pages = "1--12" +, precedes = "l-nlbtv-84" } @article{l-nlbtv-84 -, author = "F. T. Leighton" -, title = "New lower bound techniques for {VLSI}" -, journal = "Math. Syst. Theory" -, volume = 17 -, year = 1984 -, pages = "47--70" -, succeeds = "l-nlbtv-81" +, author = "F. T. Leighton" +, title = "New lower bound techniques for {VLSI}" +, journal = "Math. Syst. Theory" +, volume = 17 +, year = 1984 +, pages = "47--70" +, succeeds = "l-nlbtv-81" } @article{l-tbcps-85 -, author = "F. T. Leighton" -, title = "Tight Bounds on the Complexity of Parallel Sorting" -, journal = "IEEE Trans. Comput." -, volume = "C-34" -, number = 4 -, year = 1985 -, pages = "344--354" -, update = "96.09 orourke" +, author = "F. T. Leighton" +, title = "Tight Bounds on the Complexity of Parallel Sorting" +, journal = "IEEE Trans. Comput." +, volume = "C-34" +, number = 4 +, year = 1985 +, pages = "344--354" +, update = "96.09 orourke" } @article{ll-wsisa-85 -, author = "F. T. Leighton and C. E. Leiserson" -, title = "Wafer-scale integration of systolic arrays" -, journal = "IEEE Trans. Comput." -, volume = "??" -, year = 1985 -, pages = "448--461" -, update = "98.03 bibrelex" +, author = "F. T. Leighton and C. E. Leiserson" +, title = "Wafer-scale integration of systolic arrays" +, journal = "IEEE Trans. Comput." +, volume = "??" +, year = 1985 +, pages = "448--461" +, update = "98.03 bibrelex" } @article{lr-3dcl-86 -, author = "F. T. Leighton and A. Rosenberg" -, title = "{3D} Circuit Layouts" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "793--813" -, update = "96.09 tamassia" +, author = "F. T. Leighton and A. Rosenberg" +, title = "{3D} Circuit Layouts" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "793--813" +, update = "96.09 tamassia" } @inproceedings{l-sndsn-89 -, author = "P. Leinhardt" -, title = "Subdivision of $n$-dimensional spaces and $n$-dimensional generalized maps" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "228--236" +, author = "P. Leinhardt" +, title = "Subdivision of $n$-dimensional spaces and $n$-dimensional generalized maps" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "228--236" } @article{ln-dnnp-79 -, author = "T. Leipaelae and O. Nevalainen" -, title = "On a dynamic nearest neighbour problem" -, journal = "RAIRO Inform. Theor." -, volume = 13 -, year = 1979 -, pages = "3--15" +, author = "T. Leipaelae and O. Nevalainen" +, title = "On a dynamic nearest neighbour problem" +, journal = "RAIRO Inform. Theor." +, volume = 13 +, year = 1979 +, pages = "3--15" } @inproceedings{l-aeglv-80 -, author = "C. E. Leiserson" -, title = "Area-efficient graph layouts (for {VLSI})" -, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1980 -, pages = "270--281" +, author = "C. E. Leiserson" +, title = "Area-efficient graph layouts (for {VLSI})" +, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1980 +, pages = "270--281" } @book{l-aeglv-83 -, author = "C. E. Leiserson" -, title = "Area-efficient graph layouts (for {VLSI})" -, series = "ACM Doctoral Dissertation Award Series" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1983 +, author = "C. E. Leiserson" +, title = "Area-efficient graph layouts (for {VLSI})" +, series = "ACM Doctoral Dissertation Award Series" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1983 } @inproceedings{lm-artrp-85 -, author = "C. E. Leiserson and F. M. Maley" -, title = "Algorithms for routing and testing routability of planar {VLSI} layouts" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "69--78" +, author = "C. E. Leiserson and F. M. Maley" +, title = "Algorithms for routing and testing routability of planar {VLSI} layouts" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "69--78" } @techreport{lp-seafc-83 -, author = "C. E. Leiserson and C. A. Phillips" -, title = "A space-efficient algorithm for finding the connected components of rectangles in the plane" -, type = "Report" -, number = "??" -, institution = "Lab. Comput. Sci., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1983 +, author = "C. E. Leiserson and C. A. Phillips" +, title = "A space-efficient algorithm for finding the connected components of rectangles in the plane" +, type = "Report" +, number = "??" +, institution = "Lab. Comput. Sci., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1983 } @article{lp-oprr-83 -, author = "C. E. Leiserson and R. Y. Pinter" -, title = "Optimal placement for river routing" -, journal = "SIAM J. Comput." -, volume = 12 -, year = 1983 -, pages = "447--462" +, author = "C. E. Leiserson and R. Y. Pinter" +, title = "Optimal placement for river routing" +, journal = "SIAM J. Comput." +, volume = 12 +, year = 1983 +, pages = "447--462" } @inproceedings{ls-tdgs-91 -, author = "A. L. Leistman and T. C. Shermer" -, title = "Two-dimensional grid spanners" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "211--214" -, cites = "ckv-fhe-87, c-t2s-91, kl-pic-80, ls-ghs-91, ps-gs-89, pu-osh-87, rl-dcps-90, ZZZ" -, update = "98.07 bibrelex" +, author = "A. L. Leistman and T. C. Shermer" +, title = "Two-dimensional grid spanners" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "211--214" +, cites = "ckv-fhe-87, c-t2s-91, kl-pic-80, ls-ghs-91, ps-gs-89, pu-osh-87, rl-dcps-90, ZZZ" +, update = "98.07 bibrelex" } @unpublished{l-ceaaw- -, author = "L. D. Lejter" -, title = "A Collaborative Environment for Algorithm Animation on the {WWW}" -, url = "http://loki.cs.brown.edu:8080/CollaborativeMocha/paper_html/index.html" -, update = "98.07 tamassia" -, annote = "M.Sc. thesis manuscript" +, author = "L. D. Lejter" +, title = "A Collaborative Environment for Algorithm Animation on the {WWW}" +, url = "http://loki.cs.brown.edu:8080/CollaborativeMocha/paper_html/index.html" +, update = "98.07 tamassia" +, annote = "M.Sc. thesis manuscript" } @article{lmr-smoop-92 -, author = "Moises Lejter and Scott Meyers and Steven P. Reiss" -, title = "Support for maintaining object-oriented programs" -, journal = "IEEE Trans. Softw. Eng." -, volume = 18 -, number = 12 -, month = dec -, year = 1992 -, pages = "1045--1052" -, update = "97.03 tamassia" +, author = "Moises Lejter and Scott Meyers and Steven P. Reiss" +, title = "Support for maintaining object-oriented programs" +, journal = "IEEE Trans. Softw. Eng." +, volume = 18 +, number = 12 +, month = dec +, year = 1992 +, pages = "1045--1052" +, update = "97.03 tamassia" } @book{l-gn-69 -, author = "G. Lekkerkerker" -, title = "Geometry of Numbers" -, publisher = "Wolters-Noordhoff" -, address = "Groningen, Netherlands" -, year = 1969 -, precedes = "gl-gn-87" -, update = "93.09 rote" +, author = "G. Lekkerkerker" +, title = "Geometry of Numbers" +, publisher = "Wolters-Noordhoff" +, address = "Groningen, Netherlands" +, year = 1969 +, precedes = "gl-gn-87" +, update = "93.09 rote" } @phdthesis{l-tdam-97 -, author = "C. Lemaire" -, title = "Triangulation de {Delaunay} et arbres multidimensionnels" -, type = "Th\`{e}se de doctorat en sciences" -, school = "{\'E}cole des Mines de St-Etienne" -, address = "France" -, year = 1997 -, keywords = "doctoral thesis" -, update = "98.07 devillers" +, author = "C. Lemaire" +, title = "Triangulation de {Delaunay} et arbres multidimensionnels" +, type = "Th\`{e}se de doctorat en sciences" +, school = "{\'E}cole des Mines de St-Etienne" +, address = "France" +, year = 1997 +, keywords = "doctoral thesis" +, update = "98.07 devillers" } @article{lm-prmdd-00 -, author = "C. Lemaire and J.-M. Moreau" -, title = "A probabilistic result on multi-dimensional {Delaunay} triangulations, and its application to the {2D} case" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "69--96" -, update = "01.04 smid" +, author = "C. Lemaire and J.-M. Moreau" +, title = "A probabilistic result on multi-dimensional {Delaunay} triangulations, and its application to the {2D} case" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "69--96" +, update = "01.04 smid" } @inproceedings{lm-ackdm-97 -, author = "Christophe Lemaire and Jean-Michel Moreau" -, title = "Analysis of a Class of $k$--Dimensional Merge Procedures, with an Application to 2$D$ {Delaunay} Triangulation in Expected Linear Time After Two--Directional Sorting" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "129--134" -, update = "98.07 devillers, 97.11 jones" +, author = "Christophe Lemaire and Jean-Michel Moreau" +, title = "Analysis of a Class of $k$--Dimensional Merge Procedures, with an Application to 2$D$ {Delaunay} Triangulation in Expected Linear Time After Two--Directional Sorting" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "129--134" +, update = "98.07 devillers, 97.11 jones" } @unpublished{lw-ciaff-88 -, author = "P. Lemke and M. Werman" -, title = "On the complexity of inverting the autocorrelation function of a finite integer sequence, and the problem of locating $n$ points on a line, given the unlabeled distances between them" -, year = 1988 -, note = "Manuscript" -, update = "97.11 bibrelex" +, author = "P. Lemke and M. Werman" +, title = "On the complexity of inverting the autocorrelation function of a finite integer sequence, and the problem of locating $n$ points on a line, given the unlabeled distances between them" +, year = 1988 +, note = "Manuscript" +, update = "97.11 bibrelex" } @inproceedings{lec-aptg-67 -, author = "A. Lempel and S. Even and I. Cederbaum" -, title = "An Algorithm for Planarity Testing of Graphs" -, booktitle = "Theory of Graphs: Internat. Symposium (Rome 1966)" -, publisher = "Gordon and Breach" -, address = "New York" -, year = 1967 -, pages = "215--232" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "A. Lempel and S. Even and I. Cederbaum" +, title = "An Algorithm for Planarity Testing of Graphs" +, booktitle = "Theory of Graphs: Internat. Symposium (Rome 1966)" +, publisher = "Gordon and Breach" +, address = "New York" +, year = 1967 +, pages = "215--232" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{l-arpmb-93 -, author = "T. Lengauer" -, title = "Algorithmic research problems in molecular bioinformatics" -, booktitle = "Proc. 2nd IEEE Israeli Sympos. Theory of Comput. and Systems" -, year = 1993 -, pages = "177--192" -, update = "98.03 agarwal" +, author = "T. Lengauer" +, title = "Algorithmic research problems in molecular bioinformatics" +, booktitle = "Proc. 2nd IEEE Israeli Sympos. Theory of Comput. and Systems" +, year = 1993 +, pages = "177--192" +, update = "98.03 agarwal" } @book{l-caicl-90 -, author = "T. Lengauer" -, title = "Combinatorial Algorithms for Integrated Circuit Layout" -, publisher = "B. G. Teubner" -, year = 1990 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "T. Lengauer" +, title = "Combinatorial Algorithms for Integrated Circuit Layout" +, publisher = "B. G. Teubner" +, year = 1990 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{l-sisri-84 -, author = "T. Lengauer" -, title = "On the solution of inequality systems relevant to {IC}-layout" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "408--421" -, update = "98.03 bibrelex" +, author = "T. Lengauer" +, title = "On the solution of inequality systems relevant to {IC}-layout" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "408--421" +, update = "98.03 bibrelex" } @inproceedings{ll-dfmwt-97 -, author = "William Lenhart and Giuseppe Liotta" -, title = "Drawable and Forbidden Minimum Weight Triangulations" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "1--12" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "William Lenhart and Giuseppe Liotta" +, title = "Drawable and Forbidden Minimum Weight Triangulations" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "1--12" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{ll-domwt-96 -, author = "W. Lenhart and G. Liotta" -, title = "Drawing Outerplanar Minimum Weight Triangulations" -, journal = "Inform. Process. Lett." -, volume = 57 -, number = 5 -, year = 1996 -, pages = "253--260" -, url = "https://www.cs.brown.edu/cgc/papers/ll-domwt-96.ps.gz" -, keywords = "graph drawing, planar, minimum weight triangulation" -, update = "98.11 tamassia, 97.03 tamassia, 96.01 liotta" +, author = "W. Lenhart and G. Liotta" +, title = "Drawing Outerplanar Minimum Weight Triangulations" +, journal = "Inform. Process. Lett." +, volume = 57 +, number = 5 +, year = 1996 +, pages = "253--260" +, url = "https://www.cs.brown.edu/cgc/papers/ll-domwt-96.ps.gz" +, keywords = "graph drawing, planar, minimum weight triangulation" +, update = "98.11 tamassia, 97.03 tamassia, 96.01 liotta" } @inproceedings{ll-hdomw-96 -, author = "W. Lenhart and G. Liotta" -, title = "How to Draw Outerplanar Minimum Weight Triangulations" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "373--384" -, url = "https://www.cs.brown.edu/cgc/papers/ll-hdomw-96.ps.gz" -, keywords = "graph drawing" -, update = "97.03 tamassia, 96.09 tamassia" +, author = "W. Lenhart and G. Liotta" +, title = "How to Draw Outerplanar Minimum Weight Triangulations" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "373--384" +, url = "https://www.cs.brown.edu/cgc/papers/ll-hdomw-96.ps.gz" +, keywords = "graph drawing" +, update = "97.03 tamassia, 96.09 tamassia" } @techreport{ll-pdog-96 -, author = "W. Lenhart and G. Liotta" -, title = "Proximity Drawings of Outerplanar Graphs" -, type = "Technical Report" -, number = "CS-96-21" -, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-21.ps.Z" -, keywords = "graph drawing, proximity, CGC, Brown" -, update = "97.03 tamassia" +, author = "W. Lenhart and G. Liotta" +, title = "Proximity Drawings of Outerplanar Graphs" +, type = "Technical Report" +, number = "CS-96-21" +, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-21.ps.Z" +, keywords = "graph drawing, proximity, CGC, Brown" +, update = "97.03 tamassia" } @inproceedings{ll-pdog-97 -, author = "W. Lenhart and G. Liotta" -, title = "Proximity Drawings of Outerplanar Graphs" -, editor = "S. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "286--302" -, url = "https://www.cs.brown.edu/cgc/papers/ll-pdog-97.ps.gz" -, keywords = "graph drawing, proximity, CGC, Brown" -, update = "98.07 tamassia, 97.03 tamassia" +, author = "W. Lenhart and G. Liotta" +, title = "Proximity Drawings of Outerplanar Graphs" +, editor = "S. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "286--302" +, url = "https://www.cs.brown.edu/cgc/papers/ll-pdog-97.ps.gz" +, keywords = "graph drawing, proximity, CGC, Brown" +, update = "98.07 tamassia, 97.03 tamassia" } @inproceedings{lpsssstwy-clcsp-87 -, author = "W. Lenhart and R. Pollack and J.-R. Sack and R. Seidel and Micha Sharir and Subhash Suri and G. T. Toussaint and S. Whitesides and C. K. Yap" -, title = "Computing the link center of a simple polygon" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "1--10" -, keywords = "polygons, simple, link distance, visibility, construction, diameter, covering" -, precedes = "lpsssstwy-clcsp-88" -, cites = "at-cgcsp-86, at-oadvp-81, c-tpca-82, cg-vippg-85, ea-lacvp-81, gjpt-tsp-78, g-agtpg-80, ghlst-ltavs-86t, lp-esppr-84, ps-cgcsp-86, s-pptld-86, s-cagfn-86, tv-otats-86, ZZZ" -, update = "98.03 bibrelex+mitchell, 93.05 smid" +, author = "W. Lenhart and R. Pollack and J.-R. Sack and R. Seidel and Micha Sharir and Subhash Suri and G. T. Toussaint and S. Whitesides and C. K. Yap" +, title = "Computing the link center of a simple polygon" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "1--10" +, keywords = "polygons, simple, link distance, visibility, construction, diameter, covering" +, precedes = "lpsssstwy-clcsp-88" +, cites = "at-cgcsp-86, at-oadvp-81, c-tpca-82, cg-vippg-85, ea-lacvp-81, gjpt-tsp-78, g-agtpg-80, ghlst-ltavs-86t, lp-esppr-84, ps-cgcsp-86, s-pptld-86, s-cagfn-86, tv-otats-86, ZZZ" +, update = "98.03 bibrelex+mitchell, 93.05 smid" } @article{lpsssstwy-clcsp-88 -, author = "W. Lenhart and R. Pollack and J.-R. Sack and R. Seidel and Micha Sharir and Subhash Suri and G. T. Toussaint and S. Whitesides and C. K. Yap" -, title = "Computing the link center of a simple polygon" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "281--293" -, keywords = "polygons, simple, link distance, visibility, construction, diameter, covering" -, succeeds = "lpsssstwy-clcsp-87" -, update = "98.03 mitchell" +, author = "W. Lenhart and R. Pollack and J.-R. Sack and R. Seidel and Micha Sharir and Subhash Suri and G. T. Toussaint and S. Whitesides and C. K. Yap" +, title = "Computing the link center of a simple polygon" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "281--293" +, keywords = "polygons, simple, link distance, visibility, construction, diameter, covering" +, succeeds = "lpsssstwy-clcsp-87" +, update = "98.03 mitchell" } @inproceedings{lw-rltm-92 -, author = "W. J. Lenhart and S. H. Whitesides" -, title = "Reconfiguration with line tracking motions" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "198--203" -, cites = "hjw-mra2d-85, k-mslra-92, kk-namra-86, lw-tpio-91, ss-pmp2g-83, w-aigpl-92, ZZZ" -, update = "98.07 bibrelex" +, author = "W. J. Lenhart and S. H. Whitesides" +, title = "Reconfiguration with line tracking motions" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "198--203" +, cites = "hjw-mra2d-85, k-mslra-92, kk-namra-86, lw-tpio-91, ss-pmp2g-83, w-aigpl-92, ZZZ" +, update = "98.07 bibrelex" } @article{lw-rcpce-95 -, author = "W. J. Lenhart and S. H. Whitesides" -, title = "Reconfiguring closed polygonal chains in {Euclidean} $d$-space" -, journal = "Discrete Comput. Geom." -, volume = 13 -, year = 1995 -, pages = "123--140" -, update = "96.05 smid" +, author = "W. J. Lenhart and S. H. Whitesides" +, title = "Reconfiguring closed polygonal chains in {Euclidean} $d$-space" +, journal = "Discrete Comput. Geom." +, volume = 13 +, year = 1995 +, pages = "123--140" +, update = "96.05 smid" } @techreport{lw-rsp-93 -, author = "William J. Lenhart and Sue H. Whitesides" -, title = "Reconfiguring Simple Polygons" -, number = "SOCS-93.3" -, institution = "School of Computer Science, McGill University" -, month = mar -, year = 1993 -, update = "02.03 orourke" +, author = "William J. Lenhart and Sue H. Whitesides" +, title = "Reconfiguring Simple Polygons" +, number = "SOCS-93.3" +, institution = "School of Computer Science, McGill University" +, month = mar +, year = 1993 +, update = "02.03 orourke" } @inproceedings{lw-tpio-91 -, author = "W. J. Lenhart and S. H. Whitesides" -, title = "Turning a polygon inside-out" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "66--69" -, cites = "hjw-mra2d-85, kk-namra-86, k-mslra-92, ZZZ" -, update = "98.07 bibrelex" +, author = "W. J. Lenhart and S. H. Whitesides" +, title = "Turning a polygon inside-out" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "66--69" +, cites = "hjw-mra2d-85, kk-namra-86, k-mslra-92, ZZZ" +, update = "98.07 bibrelex" } @phdthesis{l-dusda-93 -, author = "H. P. Lenhof" -, title = "Distanz- und {Suchprobleme} in der algorithmischen {Geometrie} und {Anwendungen} in der {Bioinformatik}" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, keywords = "doctoral thesis" -, update = "94.05 smid" +, author = "H. P. Lenhof" +, title = "Distanz- und {Suchprobleme} in der algorithmischen {Geometrie} und {Anwendungen} in der {Bioinformatik}" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, keywords = "doctoral thesis" +, update = "94.05 smid" } @inproceedings{ls-afran-94 -, author = "H.-P. Lenhof and M. Smid" -, title = "An animation of a fixed-radius all-nearest-neighbors algorithm" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = 387 -, keywords = "video review" -, cites = "hsb-tarms-90, ls-ekcpo-92i, ZZZ" -, update = "98.03 bibrelex, 94.09 jones" +, author = "H.-P. Lenhof and M. Smid" +, title = "An animation of a fixed-radius all-nearest-neighbors algorithm" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = 387 +, keywords = "video review" +, cites = "hsb-tarms-90, ls-ekcpo-92i, ZZZ" +, update = "98.03 bibrelex, 94.09 jones" } @techreport{ls-ocmgc-91t -, author = "H. P. Lenhof and M. Smid" -, title = "An optimal construction method for generalized convex layers" -, type = "Report" -, number = "MPI-I-91-112" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1991 -, precedes = "ls-ocmgc-91i" +, author = "H. P. Lenhof and M. Smid" +, title = "An optimal construction method for generalized convex layers" +, type = "Report" +, number = "MPI-I-91-112" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1991 +, precedes = "ls-ocmgc-91i" } @inproceedings{ls-ocmgc-91i -, author = "H. P. Lenhof and M. Smid" -, title = "An optimal construction method for generalized convex layers" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "349--363" -, succeeds = "ls-ocmgc-91t" -, precedes = "ls-ocmgc-93" -, update = "94.01 smid" +, author = "H. P. Lenhof and M. Smid" +, title = "An optimal construction method for generalized convex layers" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "349--363" +, succeeds = "ls-ocmgc-91t" +, precedes = "ls-ocmgc-93" +, update = "94.01 smid" } @article{ls-ocmgc-93 -, author = "H. P. Lenhof and M. Smid" -, title = "An optimal construction method for generalized convex layers" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "245--267" -, succeeds = "ls-ocmgc-91i" -, update = "94.01 smid" +, author = "H. P. Lenhof and M. Smid" +, title = "An optimal construction method for generalized convex layers" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "245--267" +, succeeds = "ls-ocmgc-91i" +, update = "94.01 smid" } @techreport{ls-ekcpo-92t -, author = "H. P. Lenhof and M. Smid" -, title = "Enumerating the $k$ closest pairs optimally" -, type = "Report" -, number = "MPI-I-92-118" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 +, author = "H. P. Lenhof and M. Smid" +, title = "Enumerating the $k$ closest pairs optimally" +, type = "Report" +, number = "MPI-I-92-118" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 } @inproceedings{ls-ekcpo-92i -, author = "H.-P. Lenhof and M. Smid" -, title = "Enumerating the $k$ closest pairs optimally" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "380--386" +, author = "H.-P. Lenhof and M. Smid" +, title = "Enumerating the $k$ closest pairs optimally" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "380--386" } @techreport{ls-mvmsw-92t -, author = "H. P. Lenhof and M. Smid" -, title = "Maintaining the visibility map of spheres while moving the viewpoint on a circle at infinity" -, type = "Report" -, number = "MPI-I-92-102" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 -, precedes = "ls-mvmsw-92i" +, author = "H. P. Lenhof and M. Smid" +, title = "Maintaining the visibility map of spheres while moving the viewpoint on a circle at infinity" +, type = "Report" +, number = "MPI-I-92-102" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 +, precedes = "ls-mvmsw-92i" } @inproceedings{ls-mvmsw-92i -, author = "H.-P. Lenhof and M. Smid" -, title = "Maintaining the visibility map of spheres while moving the viewpoint on a circle at infinity" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "388--398" -, succeeds = "ls-mvmsw-92t" -, precedes = "ls-mvmsw-95" -, update = "95.05 smid" +, author = "H.-P. Lenhof and M. Smid" +, title = "Maintaining the visibility map of spheres while moving the viewpoint on a circle at infinity" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "388--398" +, succeeds = "ls-mvmsw-92t" +, precedes = "ls-mvmsw-95" +, update = "95.05 smid" } @article{ls-mvmsw-95 -, author = "H.-P. Lenhof and M. Smid" -, title = "Maintaining the visibility map of spheres while moving the viewpoint on a circle at infinity" -, journal = "Algorithmica" -, volume = 13 -, year = 1995 -, pages = "301--312" -, succeeds = "ls-mvmsw-92i" -, update = "95.05 smid" +, author = "H.-P. Lenhof and M. Smid" +, title = "Maintaining the visibility map of spheres while moving the viewpoint on a circle at infinity" +, journal = "Algorithmica" +, volume = 13 +, year = 1995 +, pages = "301--312" +, succeeds = "ls-mvmsw-92i" +, update = "95.05 smid" } @techreport{ls-spakc-92 -, author = "H. P. Lenhof and M. Smid" -, title = "Sequential and parallel algorithms for the $k$ closest pairs problem" -, type = "Report" -, number = "MPI-I-92-134" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 +, author = "H. P. Lenhof and M. Smid" +, title = "Sequential and parallel algorithms for the $k$ closest pairs problem" +, type = "Report" +, number = "MPI-I-92-134" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 } @article{ls-spakc-95 -, author = "H. P. Lenhof and M. Smid" -, title = "Sequential and parallel algorithms for the $k$ closest pairs problem" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "273--288" -, update = "95.09 smid" +, author = "H. P. Lenhof and M. Smid" +, title = "Sequential and parallel algorithms for the $k$ closest pairs problem" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "273--288" +, update = "95.09 smid" } @techreport{ls-updsa-90 -, author = "H. P. Lenhof and M. Smid" -, title = "Using persistent data structures for adding range restrictions to searching problems" -, type = "Report" -, number = "A-22/90" -, institution = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1990 -, update = "94.05 smid" +, author = "H. P. Lenhof and M. Smid" +, title = "Using persistent data structures for adding range restrictions to searching problems" +, type = "Report" +, number = "A-22/90" +, institution = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1990 +, update = "94.05 smid" } @article{ls-updsa-94 -, author = "H. P. Lenhof and M. Smid" -, title = "Using persistent data structures for adding range restrictions to searching problems" -, journal = "RAIRO Inform. Theor." -, volume = 28 -, year = 1994 -, pages = "25--49" -, update = "94.05 smid" +, author = "H. P. Lenhof and M. Smid" +, title = "Using persistent data structures for adding range restrictions to searching problems" +, journal = "RAIRO Inform. Theor." +, volume = 28 +, year = 1994 +, pages = "25--49" +, update = "94.05 smid" } @article{l-tsfpp-11 -, author = "N. J. Lennes" -, title = "Theorems on the simple finite polygon and polyhedron" -, journal = "Amer. J. Math." -, volume = 33 -, year = 1911 -, pages = "37--62" -, keywords = "decomposition, polygon triangulation, elementary geometry" -, annote = "Proves that convex decomposition, without introducing - new vertices, exists for any polygon but not - necessarily for any polyhedron." +, author = "N. J. Lennes" +, title = "Theorems on the simple finite polygon and polyhedron" +, journal = "Amer. J. Math." +, volume = 33 +, year = 1911 +, pages = "37--62" +, keywords = "decomposition, polygon triangulation, elementary geometry" +, annote = "Proves that convex decomposition, without introducing + new vertices, exists for any polygon but not + necessarily for any polyhedron." } @article{lll-fprc-82 -, author = "A. K. Lenstra and H. W. {Lenstra, Jr.} and L. Lovasz" -, title = "Factoring polynomials with rational coefficients" -, journal = "Math. Ann." -, volume = 261 -, year = 1982 -, pages = "514--534" -, update = "97.11 bibrelex" +, author = "A. K. Lenstra and H. W. {Lenstra, Jr.} and L. Lovasz" +, title = "Factoring polynomials with rational coefficients" +, journal = "Math. Ann." +, volume = 261 +, year = 1982 +, pages = "514--534" +, update = "97.11 bibrelex" } @article{l-ipfnv-83 -, author = "H. W. Lenstra" -, title = "Integer programming with a fixed number of variables" -, journal = "Math. Oper. Res." -, volume = 8 -, year = 1983 -, pages = "538--548" -, update = "00.11 smid, 00.07 agarwal" +, author = "H. W. Lenstra" +, title = "Integer programming with a fixed number of variables" +, journal = "Math. Oper. Res." +, volume = 8 +, year = 1983 +, pages = "538--548" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{l-ptaor-80 -, author = "A. S. LePaugh" -, title = "A polynomial time algorithm for optimal routing around a rectangle" -, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1980 -, pages = "292--293" +, author = "A. S. LePaugh" +, title = "A polynomial time algorithm for optimal routing around a rectangle" +, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1980 +, pages = "292--293" } @article{l-slfde-45 -, author = "J. Leray" -, title = "Sur la forme des espaces topologiques et sur les points fixes des repr{\`e}sentations" -, journal = "J. Math. Pure Appl." -, volume = 24 -, year = 1945 -, pages = "95--167" -, update = "98.03 bibrelex" +, author = "J. Leray" +, title = "Sur la forme des espaces topologiques et sur les points fixes des repr{\`e}sentations" +, journal = "J. Math. Pure Appl." +, volume = 24 +, year = 1945 +, pages = "95--167" +, update = "98.03 bibrelex" } @inproceedings{js-nchga-95 -, author = "John S. {Letcher, Jr.} and Michael Shook" -, title = "NURBS Considered Harmful for Gridding (Alternative Offered)" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "253--264" -, update = "96.01 samitchell" +, author = "John S. {Letcher, Jr.} and Michael Shook" +, title = "NURBS Considered Harmful for Gridding (Alternative Offered)" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "253--264" +, update = "96.01 samitchell" } @inproceedings{lle-ssea-97 -, author = "S. T. Leutenegger and M. A. Lopez and J. Edington" -, title = "{STR}: {A} simple and efficient algorithm for {R}-tree packing" -, booktitle = "Proc. 13th IEEE Internat. Conf. Data Eng." -, year = 1997 -, pages = "497--506" -, update = "97.07 agarwal" +, author = "S. T. Leutenegger and M. A. Lopez and J. Edington" +, title = "{STR}: {A} simple and efficient algorithm for {R}-tree packing" +, booktitle = "Proc. 13th IEEE Internat. Conf. Data Eng." +, year = 1997 +, pages = "497--506" +, update = "97.07 agarwal" } @article{l-olbng-87 -, author = "C. Levcopoulos" -, title = "An {$\Omega(\sqrt{n})$} lower bound for the non-optimality of the greedy triangulation" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "247--251" -, update = "98.07 bibrelex" +, author = "C. Levcopoulos" +, title = "An {$\Omega(\sqrt{n})$} lower bound for the non-optimality of the greedy triangulation" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "247--251" +, update = "98.07 bibrelex" } @inproceedings{l-fhmlr-86 -, author = "C. Levcopoulos" -, title = "Fast heuristics for minimum length rectangular partitions of polygons" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "100--108" -, cites = "cd-vdbcd-85, f-fapct-85, gz-bprp-85, ia-dsisa-84, ks-mdpo-85, k-ubsir-80, ll-blcpp-84, l-hmelr-83, lprs-melpr-82, l-tspp-77, ps-cgi-85, r-ppis-82, ZZZ" -, update = "97.11 bibrelex" +, author = "C. Levcopoulos" +, title = "Fast heuristics for minimum length rectangular partitions of polygons" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "100--108" +, cites = "cd-vdbcd-85, f-fapct-85, gz-bprp-85, ia-dsisa-84, ks-mdpo-85, k-ubsir-80, ll-blcpp-84, l-hmelr-83, lprs-melpr-82, l-tspp-77, ps-cgi-85, r-ppis-82, ZZZ" +, update = "97.11 bibrelex" } @phdthesis{l-hmdp-87 -, author = "C. Levcopoulos" -, title = "Heuristics for Minimum Decompositions of Polygons" -, school = "Link{\"o}ping Studies in Science and Technology" -, address = "Link{\"o}ping, Sweden" -, year = 1987 -, note = "No. 155" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "C. Levcopoulos" +, title = "Heuristics for Minimum Decompositions of Polygons" +, school = "Link{\"o}ping Studies in Science and Technology" +, address = "Link{\"o}ping, Sweden" +, year = 1987 +, note = "No. 155" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex, 97.11 bibrelex" } @inproceedings{l-mltfr-85 -, author = "C. Levcopoulos" -, title = "Minimum length and 'thickest-first' rectangular partitions of polygons" -, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." -, year = 1985 -, update = "97.11 bibrelex" +, author = "C. Levcopoulos" +, title = "Minimum length and 'thickest-first' rectangular partitions of polygons" +, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." +, year = 1985 +, update = "97.11 bibrelex" } @incollection{lg-lthmr-97 -, author = "C. Levcopoulos and J. Gudmundsson" -, title = "A Linear Time Heuristic for Minimum Rectangle Coverings" -, booktitle = "11th International Symposium on Fundamentals of Computation Theory" -, nickname = "FCT '97" -, site = "Krakow, Poland" -, series = "Lecture Notes Comput. Sci." -, volume = 1279 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "305--316" -, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "C. Levcopoulos and J. Gudmundsson" +, title = "A Linear Time Heuristic for Minimum Rectangle Coverings" +, booktitle = "11th International Symposium on Fundamentals of Computation Theory" +, nickname = "FCT '97" +, site = "Krakow, Poland" +, series = "Lecture Notes Comput. Sci." +, volume = 1279 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "305--316" +, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @incollection{lg-camrc-96 -, author = "C. Levcopoulos and J. Gudmundsson" -, title = "Close approximations of minimum rectangular coverings" -, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1180 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "135--146" -, update = "97.03 smid" +, author = "C. Levcopoulos and J. Gudmundsson" +, title = "Close approximations of minimum rectangular coverings" +, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1180 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "135--146" +, update = "97.03 smid" } @inproceedings{lkl-oetpa-88 -, author = "C. Levcopoulos and J. Katajainen and A. Lingas" -, title = "An optimal expected-time parallel algorithm for {Voronoi} diagrams" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "190--198" +, author = "C. Levcopoulos and J. Katajainen and A. Lingas" +, title = "An optimal expected-time parallel algorithm for {Voronoi} diagrams" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "190--198" } @article{lk-ltasm-98 -, author = "C. Levcopoulos and D. Krznaric" -, title = "A Linear-Time Approximation Scheme for Minimum Weight Triangulation of Convex Polygons" -, journal = "Algorithmica" -, volume = 21 -, year = 1998 -, pages = "285--311" -, update = "01.11 smid" +, author = "C. Levcopoulos and D. Krznaric" +, title = "A Linear-Time Approximation Scheme for Minimum Weight Triangulation of Convex Polygons" +, journal = "Algorithmica" +, volume = 21 +, year = 1998 +, pages = "285--311" +, update = "01.11 smid" } @inproceedings{lk-qgtam-96 -, author = "Christos Levcopoulos and Drago Krznaric" -, title = "Quasi-greedy triangulations approximating the minimum weight triangulation" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "392--401" -, keywords = "greedy triangulation, approximation of MWT" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Christos Levcopoulos and Drago Krznaric" +, title = "Quasi-greedy triangulations approximating the minimum weight triangulation" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "392--401" +, keywords = "greedy triangulation, approximation of MWT" +, update = "96.09 agarwal, 96.01 mitchell" } @inproceedings{ll-blcpp-84 -, author = "C. Levcopoulos and A. Lingas" -, title = "Bounds on the length of convex partitions of polygons" -, booktitle = "Proc. 4th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 181 -, publisher = "Springer-Verlag" -, year = 1984 -, pages = "279--295" -, keywords = "design of algorithms, VLSI design, partition, approximation, length, polygons, convex, rectangles" +, author = "C. Levcopoulos and A. Lingas" +, title = "Bounds on the length of convex partitions of polygons" +, booktitle = "Proc. 4th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 181 +, publisher = "Springer-Verlag" +, year = 1984 +, pages = "279--295" +, keywords = "design of algorithms, VLSI design, partition, approximation, length, polygons, convex, rectangles" } @inproceedings{ll-cstam-92 -, author = "C. Levcopoulos and A. Lingas" -, title = "C-Sensitive Triangulations Approximate the Minmax Length Triangulation" -, booktitle = "Proc. 12th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "New Delhi, India" -, year = 1992 -, update = "93.09 milone+mitchell" +, author = "C. Levcopoulos and A. Lingas" +, title = "C-Sensitive Triangulations Approximate the Minmax Length Triangulation" +, booktitle = "Proc. 12th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "New Delhi, India" +, year = 1992 +, update = "93.09 milone+mitchell" } @inproceedings{ll-cpmnr-84 -, author = "C. Levcopoulos and A. Lingas" -, title = "Covering polygons with minimum number of rectangles" -, booktitle = "Proc. 1st Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 166 -, publisher = "Springer-Verlag" -, year = 1984 -, pages = "63--72" -, keywords = "design of algorithms, VLSI design, covering, approximation, polygons, rectangles" +, author = "C. Levcopoulos and A. Lingas" +, title = "Covering polygons with minimum number of rectangles" +, booktitle = "Proc. 1st Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 166 +, publisher = "Springer-Verlag" +, year = 1984 +, pages = "63--72" +, keywords = "design of algorithms, VLSI design, covering, approximation, polygons, rectangles" } @inproceedings{ll-fagt-90 -, author = "C. Levcopoulos and A. Lingas" -, title = "Fast algorithms for greedy triangulation" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "238--250" -, precedes = "ll-fagt-92" +, author = "C. Levcopoulos and A. Lingas" +, title = "Fast algorithms for greedy triangulation" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "238--250" +, precedes = "ll-fagt-92" } @article{ll-fagt-92 -, author = "Christos Levcopoulos and Andrzej Lingas" -, title = "Fast Algorithms for Greedy Triangulations" -, journal = "BIT" -, volume = 32 -, year = 1992 -, pages = "280--296" -, succeeds = "ll-fagt-90" -, update = "94.05 drysdale" +, author = "Christos Levcopoulos and Andrzej Lingas" +, title = "Fast Algorithms for Greedy Triangulations" +, journal = "BIT" +, volume = 32 +, year = 1992 +, pages = "280--296" +, succeeds = "ll-fagt-90" +, update = "94.05 drysdale" } @inproceedings{ll-gtaoc-91 -, author = "C. Levcopoulos and A. Lingas" -, title = "Greedy trianglation approximates the optimum and can be implemented in linear time in the average case" -, booktitle = "Proc. 3rd Internat. Conf. on Information and Computing" -, series = "Lecture Notes Comput. Sci." -, volume = 497 -, year = 1991 -, pages = "139--148" -, succeeds = "ll-gtaoc-90" -, update = "98.11 bibrelex" +, author = "C. Levcopoulos and A. Lingas" +, title = "Greedy trianglation approximates the optimum and can be implemented in linear time in the average case" +, booktitle = "Proc. 3rd Internat. Conf. on Information and Computing" +, series = "Lecture Notes Comput. Sci." +, volume = 497 +, year = 1991 +, pages = "139--148" +, succeeds = "ll-gtaoc-90" +, update = "98.11 bibrelex" } @techreport{ll-gtamw-92 -, author = "C. Levcopoulos and A. Lingas" -, title = "Greedy Triangulation Approximates the Minimum Weight Triangulation and Can be Computed in Linear Time in the Average Case" -, type = "Technical {Report}" -, number = "LU-CS-TR:92-105" -, institution = "Dept. Comput. Sci., Lund Univ." -, address = "Lund, Sweden" -, year = 1992 -, update = "98.03 bibrelex" +, author = "C. Levcopoulos and A. Lingas" +, title = "Greedy Triangulation Approximates the Minimum Weight Triangulation and Can be Computed in Linear Time in the Average Case" +, type = "Technical {Report}" +, number = "LU-CS-TR:92-105" +, institution = "Dept. Comput. Sci., Lund Univ." +, address = "Lund, Sweden" +, year = 1992 +, update = "98.03 bibrelex" } @techreport{ll-gtaoc-90 -, author = "C. Levcopoulos and A. Lingas" -, title = "Greedy triangulation approximates the optimum and can be implemented in linear time in the average case" -, number = "90-72" -, institution = "Dept. of Comp. Sci., Lund University" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "C. Levcopoulos and A. Lingas" +, title = "Greedy triangulation approximates the optimum and can be implemented in linear time in the average case" +, number = "90-72" +, institution = "Dept. of Comp. Sci., Lund University" +, year = 1990 +, update = "93.09 milone+mitchell" } @article{ll-abgtc-87 -, author = "C. Levcopoulos and A. Lingas" -, title = "On approximation behavior of the greedy triangulation for convex polygons" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "175--193" -, keywords = "implementing algorithms, approximation, length, triangulations, polygons, convex" +, author = "C. Levcopoulos and A. Lingas" +, title = "On approximation behavior of the greedy triangulation for convex polygons" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "175--193" +, keywords = "implementing algorithms, approximation, length, triangulations, polygons, convex" } @techreport{ll-solbl-?? -, author = "C. Levcopoulos and A. Lingas" -, title = "Supplement: {An} {$\Omega(p \log k)$} lower bound on the length of convex partitions of polygons" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "C. Levcopoulos and A. Lingas" +, title = "Supplement: {An} {$\Omega(p \log k)$} lower bound on the length of convex partitions of polygons" +, type = "Manuscript" +, institution = "??" +, year = "??" } @article{ll-tapga-92 -, author = "C. Levcopoulos and A. Lingas" -, title = "There are planar graphs almost as good as the complete graphs and almost as cheap as minimum spanning trees" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "251--256" -, update = "95.01 mitchell" +, author = "C. Levcopoulos and A. Lingas" +, title = "There are planar graphs almost as good as the complete graphs and almost as cheap as minimum spanning trees" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "251--256" +, update = "95.01 mitchell" } @inproceedings{ll-tapga-89 -, author = "C. Levcopoulos and A. Lingas" -, title = "There are planar graphs almost as good as the complete graphs and as short as minimum spanning trees" -, booktitle = "Proc. International Symposium on Optimal Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 401 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "9--13" -, update = "96.05 smid" +, author = "C. Levcopoulos and A. Lingas" +, title = "There are planar graphs almost as good as the complete graphs and as short as minimum spanning trees" +, booktitle = "Proc. International Symposium on Optimal Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 401 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "9--13" +, update = "96.05 smid" } @techreport{lls-amlpp-87t -, author = "C. Levcopoulos and A. Lingas and J.-R. Sack" -, title = "Algorithms for minimum length partitions of polygons" -, type = "Report" -, number = "SCS-TR-119" -, institution = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1987 -, keywords = "design of algorithms, decomposition, triangulations, partition, dynamic programming, length, two-dimensional, convex, polygons" -, precedes = "lls-amlpp-87a" +, author = "C. Levcopoulos and A. Lingas and J.-R. Sack" +, title = "Algorithms for minimum length partitions of polygons" +, type = "Report" +, number = "SCS-TR-119" +, institution = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1987 +, keywords = "design of algorithms, decomposition, triangulations, partition, dynamic programming, length, two-dimensional, convex, polygons" +, precedes = "lls-amlpp-87a" } @article{lls-hobst-89 -, author = "Christos Levcopoulos and Andrzej Lingas and Jorg-R. Sack" -, title = "Heuristics For Optimum Binary Search Trees And Minimum Weight Triangulation Problems" -, journal = "Theoret. Comput. Sci." -, volume = 66 -, number = 2 -, month = aug -, year = 1989 -, pages = "181--203" -, keywords = "optimum binary search trees, minimum weight triangulation, amortization argument" -, annote = "Amortized linear algorithm for GT of semi-circular - polygons." -, abstract = "We establish new bounds on the problem of constructing - optimum binary search trees with zero-key access - probabilities (with applications e.g. to point location - problems). We present a linear-time heuristic for - constructing such trees so that their cost is within a - factor of 1 plus epsilon from the optimum cost, where - epsilon is an arbitrary positive constant. Furthermore, - by using an interesting amortization argument, we give - a simple and practical, linear-time implementation of a - known greedy heuristics for such trees. The above - results are obtained in a more general setting, namely, - in the context of minimum length triangulations of so- - called semi-circular polygons. They are carried over to - binary search trees by proving a duality between - optimum (m minus 1)-way search trees and minimum weight - partitions of infinitely-flat semi-circular polygons - into m- gons. With this duality we can also obtain - better heuristics for minimum length partitions of - polygons by using known algorithms for optimum search - trees. (Author abstract) 14 Refs." +, author = "Christos Levcopoulos and Andrzej Lingas and Jorg-R. Sack" +, title = "Heuristics For Optimum Binary Search Trees And Minimum Weight Triangulation Problems" +, journal = "Theoret. Comput. Sci." +, volume = 66 +, number = 2 +, month = aug +, year = 1989 +, pages = "181--203" +, keywords = "optimum binary search trees, minimum weight triangulation, amortization argument" +, annote = "Amortized linear algorithm for GT of semi-circular + polygons." +, abstract = "We establish new bounds on the problem of constructing + optimum binary search trees with zero-key access + probabilities (with applications e.g. to point location + problems). We present a linear-time heuristic for + constructing such trees so that their cost is within a + factor of 1 plus epsilon from the optimum cost, where + epsilon is an arbitrary positive constant. Furthermore, + by using an interesting amortization argument, we give + a simple and practical, linear-time implementation of a + known greedy heuristics for such trees. The above + results are obtained in a more general setting, namely, + in the context of minimum length triangulations of so- + called semi-circular polygons. They are carried over to + binary search trees by proving a duality between + optimum (m minus 1)-way search trees and minimum weight + partitions of infinitely-flat semi-circular polygons + into m- gons. With this duality we can also obtain + better heuristics for minimum length partitions of + polygons by using known algorithms for optimum search + trees. (Author abstract) 14 Refs." } @inproceedings{lls-nohbs-87 -, author = "C. Levcopoulos and A. Lingas and J.-R. Sack" -, title = "Nearly optimal heuristics for binary search trees with geometric generalizations" -, booktitle = "Proc. 14th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 267 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "376--385" -, keywords = "decomposition, partition, polygons, two-dimensional" +, author = "C. Levcopoulos and A. Lingas and J.-R. Sack" +, title = "Nearly optimal heuristics for binary search trees with geometric generalizations" +, booktitle = "Proc. 14th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 267 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "376--385" +, keywords = "decomposition, partition, polygons, two-dimensional" } @incollection{llw-pcpt-95 -, author = "C. Levcopoulos and A. Lingas and C. Wang" -, title = "On parallel complexity of planar triangulations" -, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1026 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "413--427" -, update = "96.01 smid" +, author = "C. Levcopoulos and A. Lingas and C. Wang" +, title = "On parallel complexity of planar triangulations" +, booktitle = "Proc. 15th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1026 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "413--427" +, update = "96.01 smid" } @techreport{lns-eacft-97 -, author = "C. Levcopoulos and G. Narasimhan and M. Smid" -, title = "Efficient algorithms for constructing fault-tolerant geometric spanners" -, type = "Report" -, number = 16 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1997 -, update = "98.03 smid" +, author = "C. Levcopoulos and G. Narasimhan and M. Smid" +, title = "Efficient algorithms for constructing fault-tolerant geometric spanners" +, type = "Report" +, number = 16 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1997 +, update = "98.03 smid" } @inproceedings{lns-eacft-98 -, author = "C. Levcopoulos and G. Narasimhan and M. Smid" -, title = "Efficient algorithms for constructing fault-tolerant geometric spanners" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC 98" -, year = 1998 -, pages = "186--195" -, update = "98.07 smid, 98.03 mitchell" +, author = "C. Levcopoulos and G. Narasimhan and M. Smid" +, title = "Efficient algorithms for constructing fault-tolerant geometric spanners" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC 98" +, year = 1998 +, pages = "186--195" +, update = "98.07 smid, 98.03 mitchell" } @techreport{lns-iacft-99 -, author = "C. Levcopoulos and G. Narasimhan and M. Smid" -, title = "Improved algorithms for constructing fault-tolerant geometric spanners" -, type = "Report" -, number = 15 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1999 -, update = "99.07 smid" +, author = "C. Levcopoulos and G. Narasimhan and M. Smid" +, title = "Improved algorithms for constructing fault-tolerant geometric spanners" +, type = "Report" +, number = 15 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1999 +, update = "99.07 smid" } @article{lns-iacft-02 -, author = "C. Levcopoulos and G. Narasimhan and M. Smid" -, title = "Improved algorithms for constructing fault-tolerant spanners" -, journal = "Algorithmica" -, volume = 32 -, year = 2002 -, pages = "144--156" -, update = "01.11 smid" +, author = "C. Levcopoulos and G. Narasimhan and M. Smid" +, title = "Improved algorithms for constructing fault-tolerant spanners" +, journal = "Algorithmica" +, volume = 32 +, year = 2002 +, pages = "144--156" +, update = "01.11 smid" } @phdthesis{l-eampr-86 -, author = "D. Leven" -, title = "Efficient algorithms for motion planning of robot systems amidst obstacles" -, type = "Ph.{D}. Thesis" -, school = "Tel-Aviv Univ." -, address = "Tel-Aviv, Israel" -, year = 1986 -, keywords = "doctoral thesis" +, author = "D. Leven" +, title = "Efficient algorithms for motion planning of robot systems amidst obstacles" +, type = "Ph.{D}. Thesis" +, school = "Tel-Aviv Univ." +, address = "Tel-Aviv, Israel" +, year = 1986 +, keywords = "doctoral thesis" } @techreport{l-mrsva-84 -, author = "D. Leven" -, title = "Multidimensional reconstruction by set-valued approximations" -, type = "Report" -, number = "018-84" -, institution = "Eskenasy Inst. Comput. Sci., Tel-Aviv Univ." -, address = "Tel-Aviv, Israel" -, year = 1984 +, author = "D. Leven" +, title = "Multidimensional reconstruction by set-valued approximations" +, type = "Report" +, number = "018-84" +, institution = "Eskenasy Inst. Comput. Sci., Tel-Aviv Univ." +, address = "Tel-Aviv, Israel" +, year = 1984 } @techreport{ls-esmpa-84 -, author = "D. Leven and Micha Sharir" -, title = "An efficient and simple motion planning algorithm for a ladder moving in two-dimensional space amidst polygonal barriers" -, type = "Technical {Report}" -, number = "84-014" -, institution = "Eskenasy Inst. Comput. Sci., Tel-Aviv Univ." -, address = "Tel-Aviv, Israel" -, month = nov -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "D. Leven and Micha Sharir" +, title = "An efficient and simple motion planning algorithm for a ladder moving in two-dimensional space amidst polygonal barriers" +, type = "Technical {Report}" +, number = "84-014" +, institution = "Eskenasy Inst. Comput. Sci., Tel-Aviv Univ." +, address = "Tel-Aviv, Israel" +, month = nov +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{ls-esmpa-85 -, author = "D. Leven and Micha Sharir" -, title = "An efficient and simple motion planning algorithm for a ladder moving in two-dimensional space amidst polygonal barriers" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "221--227" -, keywords = "motion planning, two-dimensional" -, precedes = "ls-esmpa-87" -, cites = "ls-esmpa-84, ss-pmp1c-83, ss-pmp2g-83, ss-pmp3c-83, osy-gvdl1-84, osy-gvdl2-84, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "D. Leven and Micha Sharir" +, title = "An efficient and simple motion planning algorithm for a ladder moving in two-dimensional space amidst polygonal barriers" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "221--227" +, keywords = "motion planning, two-dimensional" +, precedes = "ls-esmpa-87" +, cites = "ls-esmpa-84, ss-pmp1c-83, ss-pmp2g-83, ss-pmp3c-83, osy-gvdl1-84, osy-gvdl2-84, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ls-esmpa-87 -, author = "D. Leven and Micha Sharir" -, title = "An efficient and simple motion planning algorithm for a ladder moving in two-dimensional space amidst polygonal barriers" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "192--215" -, keywords = "motion planning, two-dimensional" -, succeeds = "ls-esmpa-85" -, update = "98.03 mitchell" +, author = "D. Leven and Micha Sharir" +, title = "An efficient and simple motion planning algorithm for a ladder moving in two-dimensional space amidst polygonal barriers" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "192--215" +, keywords = "motion planning, two-dimensional" +, succeeds = "ls-esmpa-85" +, update = "98.03 mitchell" } @incollection{ls-ippvd-87 -, author = "D. Leven and Micha Sharir" -, title = "Intersection and proximity problems and {Voronoi} diagrams" -, editor = "J. T. Schwartz and C.-K. Yap" -, booktitle = "Advances in Robotics 1: Algorithmic and Geometric Aspects of Robotics" -, publisher = "Lawrence Erlbaum Associates" -, address = "Hillsdale, NJ" -, year = 1987 -, pages = "187--228" -, keywords = "survey paper, Voronoi diagrams" -, update = "98.03 mitchell" +, author = "D. Leven and Micha Sharir" +, title = "Intersection and proximity problems and {Voronoi} diagrams" +, editor = "J. T. Schwartz and C.-K. Yap" +, booktitle = "Advances in Robotics 1: Algorithmic and Geometric Aspects of Robotics" +, publisher = "Lawrence Erlbaum Associates" +, address = "Hillsdale, NJ" +, year = 1987 +, pages = "187--228" +, keywords = "survey paper, Voronoi diagrams" +, update = "98.03 mitchell" } @article{ls-ncfcc-87 -, author = "D. Leven and Micha Sharir" -, title = "On the number of critical free contacts of a convex polygonal object moving in two-dimensional polygonal space" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "255--270" -, update = "98.03 mitchell" +, author = "D. Leven and Micha Sharir" +, title = "On the number of critical free contacts of a convex polygonal object moving in two-dimensional polygonal space" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "255--270" +, update = "98.03 mitchell" } @techreport{ls-pptmc-85 -, author = "D. Leven and M. Sharir" -, title = "Planning a purely translational motion for a convex object in two-dimensional space using generalized {Voronoi} diagrams" -, number = "34/85" -, institution = "Tel Aviv University" -, month = jun -, year = 1985 -, update = "98.03 bibrelex" +, author = "D. Leven and M. Sharir" +, title = "Planning a purely translational motion for a convex object in two-dimensional space using generalized {Voronoi} diagrams" +, number = "34/85" +, institution = "Tel Aviv University" +, month = jun +, year = 1985 +, update = "98.03 bibrelex" } @article{ls-pptmc-87 -, author = "D. Leven and Micha Sharir" -, title = "Planning a purely translational motion for a convex object in two-dimensional space using generalized {Voronoi} diagrams" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "9--31" -, keywords = "motion planning, convex objects, Voronoi diagrams, convex distance functions" -, update = "98.03 mitchell" +, author = "D. Leven and Micha Sharir" +, title = "Planning a purely translational motion for a convex object in two-dimensional space using generalized {Voronoi} diagrams" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "9--31" +, keywords = "motion planning, convex objects, Voronoi diagrams, convex distance functions" +, update = "98.03 mitchell" } @article{kl-bpss-78 -, author = "G. A. Kabatjansky ans V. Leven{\v s}te{\v i}n" -, title = "Bounds for packings of the sphere and in space" -, journal = "Prob. Information Trans." -, volume = 14 -, year = 1978 -, pages = "1--17" -, update = "98.03 bibrelex" +, author = "G. A. Kabatjansky ans V. Leven{\v s}te{\v i}n" +, title = "Bounds for packings of the sphere and in space" +, journal = "Prob. Information Trans." +, volume = 14 +, year = 1978 +, pages = "1--17" +, update = "98.03 bibrelex" } @article{l-dtdpe-26 -, author = "F. Levi" -, title = "Die {Teilung} der projektiven {Ebene} durch {Gerade} oder {Pseudogerade}" -, journal = "Ber. Math.-Phys. Kl. s{\"a}chs. Akad. Wiss. Leipzig" -, volume = 78 -, year = 1926 -, pages = "256--267" -, update = "97.11 bibrelex" +, author = "F. Levi" +, title = "Die {Teilung} der projektiven {Ebene} durch {Gerade} oder {Pseudogerade}" +, journal = "Ber. Math.-Phys. Kl. s{\"a}chs. Akad. Wiss. Leipzig" +, volume = 78 +, year = 1926 +, pages = "256--267" +, update = "97.11 bibrelex" } @article{l-htac-51 -, author = "F. W. Levi" -, title = "On {Helly}'s theorem and the axioms of convexity" -, journal = "J. Indian Math. Soc." -, volume = 15 -, year = 1951 -, pages = "65--76" -, update = "98.07 bibrelex" +, author = "F. W. Levi" +, title = "On {Helly}'s theorem and the axioms of convexity" +, journal = "J. Indian Math. Soc." +, volume = 15 +, year = 1951 +, pages = "65--76" +, update = "98.07 bibrelex" } @inproceedings{l-misi-99 -, author = "David Levin" -, title = "Mesh-Independent Surface Interpolation" -, booktitle = "4th International Conference on Curves and Surfaces" -, year = 1999 -, pages = 46 -, note = "Saint-Malo, France" -, update = "00.03 devillers" +, author = "David Levin" +, title = "Mesh-Independent Surface Interpolation" +, booktitle = "4th International Conference on Curves and Surfaces" +, year = 1999 +, pages = 46 +, note = "Saint-Malo, France" +, update = "00.03 devillers" } @article{l-padps-76 -, author = "J. Levin" -, title = "Algorithm for Drawing Pictures of Solid Objects Composed of Quadratic Surfaces" -, journal = "Commun. ACM" -, volume = 19 -, number = 10 -, month = oct -, year = 1976 -, pages = "555--563" -, update = "97.11 bibrelex" +, author = "J. Levin" +, title = "Algorithm for Drawing Pictures of Solid Objects Composed of Quadratic Surfaces" +, journal = "Commun. ACM" +, volume = 19 +, number = 10 +, month = oct +, year = 1976 +, pages = "555--563" +, update = "97.11 bibrelex" } @article{l-mmdiq-79 -, author = "J. Levin" -, title = "Mathematical Models for Determining the Intersections of Quadric Surfaces" -, journal = "Comput. Graph. Image Process." -, volume = 11 -, year = 1979 -, pages = "73--87" -, update = "97.11 bibrelex" +, author = "J. Levin" +, title = "Mathematical Models for Determining the Intersections of Quadric Surfaces" +, journal = "Comput. Graph. Image Process." +, volume = 11 +, year = 1979 +, pages = "73--87" +, update = "97.11 bibrelex" } @article{l-mmbc-66 -, author = "C. Levinthal" -, title = "Molecular model-building by computer" -, journal = "Scientific Amer." -, volume = 213 -, number = 6 -, month = jun -, year = 1966 -, pages = "42--52" -, update = "99.07 orourke, 98.07 bibrelex" +, author = "C. Levinthal" +, title = "Molecular model-building by computer" +, journal = "Scientific Amer." +, volume = 213 +, number = 6 +, month = jun +, year = 1966 +, pages = "42--52" +, update = "99.07 orourke, 98.07 bibrelex" } @article{l-eciul-92 -, author = "N. Levitt" -, title = "The {Euler} characteristic is the unique locally determined numerical homotopy invariant of finite completeness" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "59--67" +, author = "N. Levitt" +, title = "The {Euler} characteristic is the unique locally determined numerical homotopy invariant of finite completeness" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "59--67" } @article{l-emnmo-90 -, author = "A. Levy" -, title = "Energy-minimizing networks meet only in threes" -, journal = "J. Und. Math." -, volume = 22 -, year = 1990 -, pages = "53--59" -, update = "97.11 bibrelex" +, author = "A. Levy" +, title = "Energy-minimizing networks meet only in threes" +, journal = "J. Und. Math." +, volume = 22 +, year = 1990 +, pages = "53--59" +, update = "97.11 bibrelex" } @article{lr-tpra-78 -, author = "B. A. Lewis and J. S. Robinson" -, title = "Triangulation of planar regions with applications" -, journal = "Comput. J." -, volume = 21 -, year = 1978 -, pages = "324--332" -, keywords = "point-set triangulation, implementing algorithms" +, author = "B. A. Lewis and J. S. Robinson" +, title = "Triangulation of planar regions with applications" +, journal = "Comput. J." +, volume = 21 +, year = 1978 +, pages = "324--332" +, keywords = "point-set triangulation, implementing algorithms" } @book{ld-dsta-91 -, author = "H. R. Lewis and L. Denenberg" -, title = "Data Structures and Their Algorithms" -, publisher = "Harper Collins" -, year = 1991 -, update = "97.03 tamassia" +, author = "H. R. Lewis and L. Denenberg" +, title = "Data Structures and Their Algorithms" +, publisher = "Harper Collins" +, year = 1991 +, update = "97.03 tamassia" } @inproceedings{l-vvhc-95 -, author = "Robert R. Lewis" -, title = "{VideHoc}: {A} Visualizer for Homogeneous Coordinates" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C14--C15" -, keywords = "" -, cites = "h-hgc-84, nslab-xpegc-91, s-edpti-88, s-opgfg-91, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Robert R. Lewis" +, title = "{VideHoc}: {A} Visualizer for Homogeneous Coordinates" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C14--C15" +, keywords = "" +, cites = "h-hgc-84, nslab-xpegc-91, s-edpti-88, s-opgfg-91, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{l-tcctc-80 -, author = "T. Lewis" -, title = "Two counterexamples concerning transversals for convex subsets of the plane" -, journal = "Geometriae Didacta" -, volume = 9 -, year = 1980 -, pages = "461--465" -, update = "98.03 bibrelex" +, author = "T. Lewis" +, title = "Two counterexamples concerning transversals for convex subsets of the plane" +, journal = "Geometriae Didacta" +, volume = 9 +, year = 1980 +, pages = "461--465" +, update = "98.03 bibrelex" } @book{l-rmctf-82 -, author = "S. Lhuilier" -, title = "De relatione mutua capacitatis et terminorum figurarum etc." -, publisher = "Versaviae" -, year = 1782 -, update = "97.11 bibrelex" +, author = "S. Lhuilier" +, title = "De relatione mutua capacitatis et terminorum figurarum etc." +, publisher = "Versaviae" +, year = 1782 +, update = "97.11 bibrelex" } @article{lll-fhtha-85 -, author = "H. Li and M. A. Lavin and R. J. LeMaster" -, title = "Fast {Hough} transform: a hierarchical approach" -, journal = "Comput. Vision Graph. Image Process." -, volume = 36 -, year = 1985 -, pages = "139--161" +, author = "H. Li and M. A. Lavin and R. J. LeMaster" +, title = "Fast {Hough} transform: a hierarchical approach" +, journal = "Comput. Vision Graph. Image Process." +, volume = 36 +, year = 1985 +, pages = "139--161" } @inproceedings{ls-pso-94 -, author = "H. Li and K. C. Sevcik" -, title = "Parallel sorting by overpartitioning" -, booktitle = "Proc. 6th ACM Sympos. Parallel Algorithms Architect." -, year = 1994 -, pages = "46--56" -, update = "96.09 orourke" +, author = "H. Li and K. C. Sevcik" +, title = "Parallel sorting by overpartitioning" +, booktitle = "Proc. 6th ACM Sympos. Parallel Algorithms Architect." +, year = 1994 +, pages = "46--56" +, update = "96.09 orourke" } @article{lc-tdp-90 -, author = "K. Li and K.-H. Cheng" -, title = "On three-dimensional packing" -, journal = "SIAM J. Comput." -, volume = 19 -, year = 1990 -, pages = "847--867" +, author = "K. Li and K.-H. Cheng" +, title = "On three-dimensional packing" +, journal = "SIAM J. Comput." +, volume = 19 +, year = 1990 +, pages = "847--867" } @article{l-rpp-88 -, author = "Shuo-Yen Robert Li" -, title = "Reconstruction of Polygons From Projections" -, journal = "Inform. Process. Lett." -, volume = 28 -, number = 5 -, month = aug -, year = 1988 -, pages = "235--240" -, keywords = "probing, x-ray probes" -, update = "96.09 romanik" +, author = "Shuo-Yen Robert Li" +, title = "Reconstruction of Polygons From Projections" +, journal = "Inform. Process. Lett." +, volume = 28 +, number = 5 +, month = aug +, year = 1988 +, pages = "235--240" +, keywords = "probing, x-ray probes" +, update = "96.09 romanik" } @article{ly-ptic-75 -, author = "T.-Y. Li and J. A. Yorke" -, title = "Period three implies chaos" -, journal = "Amer. Math. Monthly" -, volume = 82 -, year = 1975 -, pages = "985--992" -, update = "01.07 devillers, 98.11 bibrelex" +, author = "T.-Y. Li and J. A. Yorke" +, title = "Period three implies chaos" +, journal = "Amer. Math. Monthly" +, volume = 82 +, year = 1975 +, pages = "985--992" +, update = "01.07 devillers, 98.11 bibrelex" } @phdthesis{l-canpt-94 -, author = "Z. Li" -, title = "Compaction algorithms for nonconvex polygons and their applications" -, type = "Ph.{D}. Thesis" -, school = "Harvard University" -, address = "Cambridge, MA" -, year = 1994 -, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1994.html" -, keywords = "doctoral thesis, concave, polygons, layout, packing, optimization, linear programming, physically-based modeling, separation, motion planning, rotation, Minkowski sum, configuration space" -, comments = "is also Harvard DAS TechReport number: 15-94" -, update = "97.03 daniels" +, author = "Z. Li" +, title = "Compaction algorithms for nonconvex polygons and their applications" +, type = "Ph.{D}. Thesis" +, school = "Harvard University" +, address = "Cambridge, MA" +, year = 1994 +, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1994.html" +, keywords = "doctoral thesis, concave, polygons, layout, packing, optimization, linear programming, physically-based modeling, separation, motion planning, rotation, Minkowski sum, configuration space" +, comments = "is also Harvard DAS TechReport number: 15-94" +, update = "97.03 daniels" } @book{lc-nmp-92 -, title = "Nonholonomic Motion Planning" -, editor = "Z. Li and J. F. Canny" -, publisher = "Kluwer Academic Pubishers" -, address = "Norwell, MA" -, year = 1992 -, update = "98.03 mitchell, 97.11 bibrelex" +, title = "Nonholonomic Motion Planning" +, editor = "Z. Li and J. F. Canny" +, publisher = "Kluwer Academic Pubishers" +, address = "Norwell, MA" +, year = 1992 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{lm-cancp-93 -, author = "Z. Li and V. Milenkovic" -, title = "A compaction algorithm for non-convex polygons and its application" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "153--162" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "optimization, CAD, CAM, packing, layout, linear programming, motion planning, separation, configuration space, Minkowski sum" -, cites = "aks-oa1dt-90, b-amdsn-89, bb-msbdc-88, c-crmp-87, dhks-isccd-90, grs-kfcg-83, hss-cmpmi-84, kos-cmsrp-91i, l-sisri-84, m-hphc-90, mdl-amm-91, mdl-pcnpc-92, mw-cdrca-88, mfs-2dcmc-87, p-ccmsp-87, pb-cmfm-88, sss-tdczr-86, sp-cppca-92, w-otdcs-85, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex, 97.03 daniels, 93.09 rote" +, author = "Z. Li and V. Milenkovic" +, title = "A compaction algorithm for non-convex polygons and its application" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "153--162" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "optimization, CAD, CAM, packing, layout, linear programming, motion planning, separation, configuration space, Minkowski sum" +, cites = "aks-oa1dt-90, b-amdsn-89, bb-msbdc-88, c-crmp-87, dhks-isccd-90, grs-kfcg-83, hss-cmpmi-84, kos-cmsrp-91i, l-sisri-84, m-hphc-90, mdl-amm-91, mdl-pcnpc-92, mw-cdrca-88, mfs-2dcmc-87, p-ccmsp-87, pb-cmfm-88, sss-tdczr-86, sp-cppca-92, w-otdcs-85, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex, 97.03 daniels, 93.09 rote" } @article{lm-csanp-95 -, author = "Z. Li and V. Milenkovic" -, title = "Compaction and separation algorithms for nonconvex polygons and their applications" -, journal = "European J. Oper. Res." -, volume = 84 -, year = 1995 -, pages = "539--561" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "layout, packing, placement, linear programming, motion planning, Minkowski sum, configuration space" -, update = "97.03 daniels" +, author = "Z. Li and V. Milenkovic" +, title = "Compaction and separation algorithms for nonconvex polygons and their applications" +, journal = "European J. Oper. Res." +, volume = 84 +, year = 1995 +, pages = "539--561" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "layout, packing, placement, linear programming, motion planning, Minkowski sum, configuration space" +, update = "97.03 daniels" } @inproceedings{lm-cschu-90 -, author = "Z. Li and V. Milenkovic" -, title = "Constructing strongly convex hulls using exact or rounded arithmetic" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "235--243" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation" -, precedes = "lm-cschu-92" -, cites = "f-smpst-89, g-eadch-72, gss-egbra-89, m-cacau-89, m-dpggt-89, m-vigau-88p, si-cvd10-89, ZZZ" -, update = "97.11 bibrelex, 97.03 daniels" +, author = "Z. Li and V. Milenkovic" +, title = "Constructing strongly convex hulls using exact or rounded arithmetic" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "235--243" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation" +, precedes = "lm-cschu-92" +, cites = "f-smpst-89, g-eadch-72, gss-egbra-89, m-cacau-89, m-dpggt-89, m-vigau-88p, si-cvd10-89, ZZZ" +, update = "97.11 bibrelex, 97.03 daniels" } @article{lm-cschu-92 -, author = "Z. Li and V. Milenkovic" -, title = "Constructing strongly convex hulls using exact or rounded arithmetic" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "345--364" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation" -, succeeds = "lm-cschu-90" -, update = "97.03 daniels" +, author = "Z. Li and V. Milenkovic" +, title = "Constructing strongly convex hulls using exact or rounded arithmetic" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "345--364" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation" +, succeeds = "lm-cschu-90" +, update = "97.03 daniels" } @inproceedings{lm-ccp-93 -, author = "Z. Li and V. Milenkovic" -, title = "The complexity of the compaction problem" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "7--11" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "packing, layout, motion planning, PSPACE" -, cites = "cosw-cds-84, hss-cmpmi-84, lm-cancp-93, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 97.03 daniels, 93.09 milone+mitchell" +, author = "Z. Li and V. Milenkovic" +, title = "The complexity of the compaction problem" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "7--11" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "packing, layout, motion planning, PSPACE" +, cites = "cosw-cds-84, hss-cmpmi-84, lm-cancp-93, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 97.03 daniels, 93.09 milone+mitchell" } @article{lo-aalgb-92 -, author = "Z. Li and S. Openshaw" -, title = "Algorithms for automated line generalization based on a natural principle of objective generalization" -, journal = "Internat. J. Geogr. Inform. Syst." -, volume = 6 -, year = 1992 -, pages = "373--389" -, update = "96.09 kreveld" +, author = "Z. Li and S. Openshaw" +, title = "Algorithms for automated line generalization based on a natural principle of objective generalization" +, journal = "Internat. J. Geogr. Inform. Syst." +, volume = 6 +, year = 1992 +, pages = "373--389" +, update = "96.09 kreveld" } @inproceedings{l-c2dcm-91 -, author = "J. Liang" -, title = "On a class of $2$-d compliant motion planning problems" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "70--73" -, cites = "c-cfmp-89, lmt-asfms-84, ZZZ" -, update = "98.07 bibrelex" +, author = "J. Liang" +, title = "On a class of $2$-d compliant motion planning problems" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "70--73" +, cites = "c-cfmp-89, lmt-asfms-84, ZZZ" +, update = "98.07 bibrelex" } @article{lb-aapc-83 -, author = "Y.-D. Liang and B. A. Barsky" -, title = "An analysis and algorithm for polygon clipping" -, journal = "Commun. ACM" -, volume = 26 -, year = 1983 -, pages = "868--877" +, author = "Y.-D. Liang and B. A. Barsky" +, title = "An analysis and algorithm for polygon clipping" +, journal = "Commun. ACM" +, volume = 26 +, year = 1983 +, pages = "868--877" } @techreport{lhl-mcgpk-93t -, author = "B.-C. Liaw and N. Huang and R. Lee" -, title = "The minimum cooperative guards problem on $k$-spiral polygons" -, type = "Technical Report" -, institution = "Department of Computer Science, National Tsing Hua University" -, year = 1993 -, precedes = "lhl-mcgpk-93, lhl-mcgpk-93" -, update = "98.11 bibrelex" +, author = "B.-C. Liaw and N. Huang and R. Lee" +, title = "The minimum cooperative guards problem on $k$-spiral polygons" +, type = "Technical Report" +, institution = "Department of Computer Science, National Tsing Hua University" +, year = 1993 +, precedes = "lhl-mcgpk-93, lhl-mcgpk-93" +, update = "98.11 bibrelex" } @inproceedings{lhl-mcgpk-93 -, author = "B.-C. Liaw and N. Huang and R. Lee" -, title = "The minimum cooperative guards problem on $k$-spiral polygons" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "97--102" -, succeeds = "lhl-mcgpk-93t" -, cites = "cn-owr-88, cn-wrsp-91, ghs-citds-91, ik-tgp-91, lhl-mcgpk-93t, ll-ccagp-86, mw-wrmg-91, o-agta-87, s-rrag-92, cnn-ogcmw-91, nw-owrsp-90i, t-pvldp-93, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "B.-C. Liaw and N. Huang and R. Lee" +, title = "The minimum cooperative guards problem on $k$-spiral polygons" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "97--102" +, succeeds = "lhl-mcgpk-93t" +, cites = "cn-owr-88, cn-wrsp-91, ghs-citds-91, ik-tgp-91, lhl-mcgpk-93t, ll-ccagp-86, mw-wrmg-91, o-agta-87, s-rrag-92, cnn-ogcmw-91, nw-owrsp-90i, t-pvldp-93, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{l-pftu-82 -, author = "D. Lichtenstein" -, title = "Planar formulae and their uses" -, journal = "SIAM J. Comput." -, volume = 11 -, number = 2 -, year = 1982 -, pages = "329--343" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "D. Lichtenstein" +, title = "Planar formulae and their uses" +, journal = "SIAM J. Comput." +, volume = 11 +, number = 2 +, year = 1982 +, pages = "329--343" +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{lw-aapsc-77 -, author = "L. I. Lieberman and M. A. Wesley" -, title = "Autopass: an automatic programming system for computer controlled mechanical assembly" -, journal = "IBM J. Res. Develop." -, volume = 21 -, number = 4 -, year = 1977 -, pages = "321--333" +, author = "L. I. Lieberman and M. A. Wesley" +, title = "Autopass: an automatic programming system for computer controlled mechanical assembly" +, journal = "IBM J. Res. Develop." +, volume = 21 +, number = 4 +, year = 1977 +, pages = "321--333" } @techreport{lmmps-dpp-93 -, author = "Th. M. Liebling and F. Margot and D. Muller and A. Prodon and L. Stauffer" -, title = "Disjoint paths in the plane" -, number = "RO 930628" -, institution = "Ecole Polytechnique Federale de Lausanne" -, address = "Lausanne, Suisse" -, month = jun -, year = 1993 -, keywords = "Disjoint paths, computational geometry, routing, heuristics" -, update = "93.09 milone+mitchell" +, author = "Th. M. Liebling and F. Margot and D. Muller and A. Prodon and L. Stauffer" +, title = "Disjoint paths in the plane" +, number = "RO 930628" +, institution = "Ecole Polytechnique Federale de Lausanne" +, address = "Lausanne, Suisse" +, month = jun +, year = 1993 +, keywords = "Disjoint paths, computational geometry, routing, heuristics" +, update = "93.09 milone+mitchell" } @inproceedings{l-btgm-90 -, author = "P. Lienhardt" -, title = "Barycentric triangulation of generalized maps" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "129--133" -, cites = "l-sndsn-89, l-ndgtm-89, b-rgsdd-89, e-crps-60, j-cegt-70, c-ucplg-75, bs-ftmsb-85, t-gt-84, gs-pmgsc-85, a-atfc-76, m-eat-84, l-ngcse-90, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Lienhardt" +, title = "Barycentric triangulation of generalized maps" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "129--133" +, cites = "l-sndsn-89, l-ndgtm-89, b-rgsdd-89, e-crps-60, j-cegt-70, c-ucplg-75, bs-ftmsb-85, t-gt-84, gs-pmgsc-85, a-atfc-76, m-eat-84, l-ngcse-90, ZZZ" +, update = "98.07 bibrelex" } @article{l-ndgcm-94 -, author = "P. Lienhardt" -, title = "N-Dimensional Generalized Combinatorial Maps and Cellular Quasi-Manifolds" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, number = 3 -, year = 1994 -, pages = "275--324" -, update = "96.05 pascucci" +, author = "P. Lienhardt" +, title = "N-Dimensional Generalized Combinatorial Maps and Cellular Quasi-Manifolds" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, number = 3 +, year = 1994 +, pages = "275--324" +, update = "96.05 pascucci" } @techreport{l-ndgtm-89 -, author = "P. Lienhardt" -, title = "$N$-dimensional generalized topological maps" -, type = "Research {Report}" -, number = "R89-10" -, institution = "D{\'e}partement d'Informatique, Universit{\'e} Louis Pasteur" -, address = "Strasbourg, France" -, month = dec -, year = 1989 -, update = "98.07 bibrelex" +, author = "P. Lienhardt" +, title = "$N$-dimensional generalized topological maps" +, type = "Research {Report}" +, number = "R89-10" +, institution = "D{\'e}partement d'Informatique, Universit{\'e} Louis Pasteur" +, address = "Strasbourg, France" +, month = dec +, year = 1989 +, update = "98.07 bibrelex" } @techreport{l-ngcse-90 -, author = "P. Lienhardt" -, title = "N-{G}-cartes simplexes et triangulation barycentrique" -, type = "Research {Report}" -, number = "R90-08" -, institution = "D{\'e}partement d'Informatique, Universit{\'e} Louis Pasteur" -, address = "Strasbourg, France" -, year = 1990 -, update = "98.07 bibrelex" +, author = "P. Lienhardt" +, title = "N-{G}-cartes simplexes et triangulation barycentrique" +, type = "Research {Report}" +, number = "R90-08" +, institution = "D{\'e}partement d'Informatique, Universit{\'e} Louis Pasteur" +, address = "Strasbourg, France" +, year = 1990 +, update = "98.07 bibrelex" } @article{l-tmbrc-91 -, author = "P. Lienhardt" -, title = "Topological models for boundary representation: {A} comparison with $n$-dimensional generalized maps" -, journal = "Comput. Aided Design" -, volume = 23 -, number = 1 -, year = 1991 -, pages = "59--82" -, update = "98.03 agarwal" +, author = "P. Lienhardt" +, title = "Topological models for boundary representation: {A} comparison with $n$-dimensional generalized maps" +, journal = "Comput. Aided Design" +, volume = 23 +, number = 1 +, year = 1991 +, pages = "59--82" +, update = "98.03 agarwal" } @techreport{ls-ghs-91 -, author = "A. L. Liestman and T. C. Shermer" -, title = "Grid and Hypercube Spanners" -, type = "Technical Report" -, number = "TR 91-1" -, institution = "Simon Fraser University" -, year = 1991 -, update = "98.07 bibrelex" +, author = "A. L. Liestman and T. C. Shermer" +, title = "Grid and Hypercube Spanners" +, type = "Technical Report" +, number = "TR 91-1" +, institution = "Simon Fraser University" +, year = 1991 +, update = "98.07 bibrelex" } @techreport{liz-haspp-93 -, author = "J. Lim and S. Iyengar and S.-Q. Zheng" -, title = "A heuristic approach for shortest path problem with rectilinear obstacles" -, type = "Technical {Report}" -, institution = "Dept. of Computer Science, Louisiana University" -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "J. Lim and S. Iyengar and S.-Q. Zheng" +, title = "A heuristic approach for shortest path problem with rectilinear obstacles" +, type = "Technical {Report}" +, institution = "Dept. of Computer Science, Louisiana University" +, year = 1993 +, update = "93.09 milone+mitchell" } @book{l-pagaa-44 -, author = "R. A. Liming" -, title = "Practical analytical geometry with applications to aircraft" -, publisher = "Macmillan" -, address = "New York" -, year = 1944 -, update = "98.03 bibrelex" +, author = "R. A. Liming" +, title = "Practical analytical geometry with applications to aircraft" +, publisher = "Macmillan" +, address = "New York" +, year = 1944 +, update = "98.03 bibrelex" } @misc{l-artcn-94 -, author = "C. Lin" -, title = "An application of {Ramsey} theory to the crossing number of posets" -, year = 1994 -, note = "Preprint" -, update = "98.03 bibrelex" +, author = "C. Lin" +, title = "An application of {Ramsey} theory to the crossing number of posets" +, year = 1994 +, note = "Preprint" +, update = "98.03 bibrelex" } @article{l-cnp-94 -, author = "C. Lin" -, title = "The crossing number of posets" -, journal = "Order" -, volume = 11 -, year = 1994 -, pages = "1--25" -, update = "98.03 bibrelex" +, author = "C. Lin" +, title = "The crossing number of posets" +, journal = "Order" +, volume = 11 +, year = 1994 +, pages = "1--25" +, update = "98.03 bibrelex" } @article{ls-gcmme-97 -, author = "J. Lin and J. A. Storer" -, title = "Geometric Clustering to Minimize the Mean-Square Error" -, journal = "Unpublished Manuscript" -, volume = "??" -, year = 1997 -, update = "98.07 agarwal" +, author = "J. Lin and J. A. Storer" +, title = "Geometric Clustering to Minimize the Mean-Square Error" +, journal = "Unpublished Manuscript" +, volume = "??" +, year = 1997 +, update = "98.07 agarwal" } @article{lv-aagmp-92 -, author = "J.-H. Lin and J. S. Vitter" -, title = "Approximation Algorithms for Geometric Median Problems" -, journal = "Inform. Process. Lett." -, volume = 44 -, year = 1992 -, pages = "245--249" -, update = "93.09 vengroff" +, author = "J.-H. Lin and J. S. Vitter" +, title = "Approximation Algorithms for Geometric Median Problems" +, journal = "Inform. Process. Lett." +, volume = 44 +, year = 1992 +, pages = "245--249" +, update = "93.09 vengroff" } @inproceedings{lv-eampc-92 -, author = "J.-H. Lin and J. S. Vitter" -, title = "$\epsilon$-Approximations with Minimum Packing Constraint Violation" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "771--782" -, update = "93.09 vengroff" +, author = "J.-H. Lin and J. S. Vitter" +, title = "$\epsilon$-Approximations with Minimum Packing Constraint Violation" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "771--782" +, update = "93.09 vengroff" } @article{ljf-ttish-94 -, author = "K. I. Lin and H. V. Jagdish and C. Faloutsos" -, title = "The {TV}-tree: {A}n index structure for higher dimensional data" -, journal = "VLDB Journal" -, volume = 4 -, year = 1994 -, pages = "517--542" -, update = "97.07 agarwal" +, author = "K. I. Lin and H. V. Jagdish and C. Faloutsos" +, title = "The {TV}-tree: {A}n index structure for higher dimensional data" +, journal = "VLDB Journal" +, volume = 4 +, year = 1994 +, pages = "517--542" +, update = "97.07 agarwal" } @inproceedings{lp-pcilp-92 -, author = "Y. Lin-Kriz and V. Pan" -, title = "On parallel complexity of integer linear programming, {GCD} and the iterated mod function" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "124--137" +, author = "Y. Lin-Kriz and V. Pan" +, title = "On parallel complexity of integer linear programming, {GCD} and the iterated mod function" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "124--137" } @article{lm-ecdde-97 -, author = "M. Lin and D. Manocha" -, title = "Efficient Contact Determination in Dynamic Environments" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "123--151" -, update = "98.07 bibrelex, 97.07 devillers" +, author = "M. Lin and D. Manocha" +, title = "Efficient Contact Determination in Dynamic Environments" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "123--151" +, update = "98.07 bibrelex, 97.07 devillers" } @phdthesis{l-ecdar-93 -, author = "M. C. Lin" -, title = "Efficient Collision Detection for Animation and Robotics" -, school = "University of California" -, address = "Berkeley, CA" -, month = dec -, year = 1993 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "M. C. Lin" +, title = "Efficient Collision Detection for Animation and Robotics" +, school = "University of California" +, address = "Berkeley, CA" +, month = dec +, year = 1993 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @phdthesis{l-efdar-93 -, author = "M. C. Lin" -, title = "Efficient Collision Detection for Animation and Robotics" -, type = "Ph.{D}. Thesis" -, school = "Dept. Elec. Engin. Comput. Sci., Univ. California" -, address = "Berkeley, CA" -, year = 1993 -, keywords = "doctoral thesis" -, update = "96.05 klosowski" +, author = "M. C. Lin" +, title = "Efficient Collision Detection for Animation and Robotics" +, type = "Ph.{D}. Thesis" +, school = "Dept. Elec. Engin. Comput. Sci., Univ. California" +, address = "Berkeley, CA" +, year = 1993 +, keywords = "doctoral thesis" +, update = "96.05 klosowski" } @inproceedings{lc-eaidc-91 -, author = "M. C. Lin and J. F. Canny" -, title = "Efficient Algorithms for Incremental Distance Computation" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, volume = 2 -, year = 1991 -, pages = "1008--1014" -, update = "96.05 klosowski" +, author = "M. C. Lin and J. F. Canny" +, title = "Efficient Algorithms for Incremental Distance Computation" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, volume = 2 +, year = 1991 +, pages = "1008--1014" +, update = "96.05 klosowski" } @article{lm-fidgm-95 -, author = "M. C. Lin and D. Manocha" -, title = "Fast Interference Detection Between Geometric Models" -, journal = "Visual Comput." -, volume = 11 -, number = 10 -, year = 1995 -, pages = "542--561" -, update = "96.05 held+klosowski" +, author = "M. C. Lin and D. Manocha" +, title = "Fast Interference Detection Between Geometric Models" +, journal = "Visual Comput." +, volume = 11 +, number = 10 +, year = 1995 +, pages = "542--561" +, update = "96.05 held+klosowski" } @incollection{lm-idbco-93 -, author = "M. C. Lin and D. Manocha" -, title = "Interference Detection Between Curved Objects for Computer Animation" -, booktitle = "Models and Techniques in Computer Animation" -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "43--57" -, update = "96.05 klosowski" +, author = "M. C. Lin and D. Manocha" +, title = "Interference Detection Between Curved Objects for Computer Animation" +, booktitle = "Models and Techniques in Computer Animation" +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "43--57" +, update = "96.05 klosowski" } @inproceedings{lmc-ecdde-94 -, author = "M. C. Lin and D. Manocha and J. Canny" -, title = "Efficient contact determination for dynamic environments" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1994 -, pages = "602--608" -, update = "98.07 bibrelex" +, author = "M. C. Lin and D. Manocha and J. Canny" +, title = "Efficient contact determination for dynamic environments" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1994 +, pages = "602--608" +, update = "98.07 bibrelex" } @techreport{losz-sema- -, author = "R. Lin and S. Olariu and J. L. Schwing and J. Zhang" -, title = "Simulating Enhanced Meshes, with Applications" -, type = "Technical Report" -, number = "TR-91-041" -, institution = "Department of Computer Science, Old Dominion University" -, address = "Norfolk, Virginia" -, year = "??" -, update = "98.07 bibrelex" +, author = "R. Lin and S. Olariu and J. L. Schwing and J. Zhang" +, title = "Simulating Enhanced Meshes, with Applications" +, type = "Technical Report" +, number = "TR-91-041" +, institution = "Department of Computer Science, Old Dominion University" +, address = "Norfolk, Virginia" +, year = "??" +, update = "98.07 bibrelex" } @inproceedings{lc-pvg-94 -, author = "S.-Y. Lin and C. Chen" -, title = "Planar Visibility Graphs" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "30--35" -, keywords = "Computational geometry, visibility graphs, planar graphs, visibility problems" -, cites = "alp-vgsp-92, o-agta-87, t-tpg-56, o-cgc18-93a, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "S.-Y. Lin and C. Chen" +, title = "Planar Visibility Graphs" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "30--35" +, keywords = "Computational geometry, visibility graphs, planar graphs, visibility problems" +, cites = "alp-vgsp-92, o-agta-87, t-tpg-56, o-cgc18-93a, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{le-idaal-95 -, author = "T. Lin and P. Eades" -, title = "Integration of Declarative and Algorithmic Approaches for Layout Creation" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "376--387" -, keywords = "graph drawing, declarative, system, trees" -, update = "95.01 tamassia" +, author = "T. Lin and P. Eades" +, title = "Integration of Declarative and Algorithmic Approaches for Layout Creation" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "376--387" +, keywords = "graph drawing, declarative, system, trees" +, update = "95.01 tamassia" } @phdthesis{l-aadg-92 -, author = "X. Lin" -, title = "Analysis of Algorithms for Drawing Graphs" -, school = "Department of Computer Science, University of Queensland" -, year = 1992 -, keywords = "doctoral thesis, graph drawing" -, update = "93.09 tamassia" +, author = "X. Lin" +, title = "Analysis of Algorithms for Drawing Graphs" +, school = "Department of Computer Science, University of Queensland" +, year = 1992 +, keywords = "doctoral thesis, graph drawing" +, update = "93.09 tamassia" } @inproceedings{le-ardhp-97 -, author = "Xuemin Lin and Peter Eades" -, title = "Area Requirements for Drawing Hierarchically Planar Graphs" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "219--229" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Xuemin Lin and Peter Eades" +, title = "Area Requirements for Drawing Hierarchically Planar Graphs" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "219--229" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @techreport{ls-cavg-92 -, author = "Y. Lin and Steven S. Skiena" -, title = "Complexity aspects of visibility graphs" -, type = "Technical {Report}" -, number = "92/08" -, institution = "SUNY Stony Brook" -, year = 1992 -, keywords = "visibility graphs, polygons, area requirements, outerplanar graphs, isomorphism, independent sets" -, precedes = "ls-cavg-95" -, update = "98.03 mitchell, 96.09 devillers, 93.09 milone+mitchell" +, author = "Y. Lin and Steven S. Skiena" +, title = "Complexity aspects of visibility graphs" +, type = "Technical {Report}" +, number = "92/08" +, institution = "SUNY Stony Brook" +, year = 1992 +, keywords = "visibility graphs, polygons, area requirements, outerplanar graphs, isomorphism, independent sets" +, precedes = "ls-cavg-95" +, update = "98.03 mitchell, 96.09 devillers, 93.09 milone+mitchell" } @article{ls-cavg-95 -, author = "Y. Lin and Steven S. Skiena" -, title = "Complexity aspects of visibility graphs" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "289--312" -, keywords = "graph drawing, visibility graphs, polygons, area requirements, outerplanar graphs, isomorphism, independent sets" -, succeeds = "ls-cavg-92" -, update = "98.03 mitchell, 96.09 devillers" +, author = "Y. Lin and Steven S. Skiena" +, title = "Complexity aspects of visibility graphs" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "289--312" +, keywords = "graph drawing, visibility graphs, polygons, area requirements, outerplanar graphs, isomorphism, independent sets" +, succeeds = "ls-cavg-92" +, update = "98.03 mitchell, 96.09 devillers" } @article{lbg-avqd-80 -, author = "Y. Linde and A. Buzo and R. M. Gray" -, title = "An algorithm for vector quantiser design" -, journal = "IEEE Transactions on Communications" -, volume = "COM-28" -, year = 1980 -, pages = "84--95" -, update = "98.07 agarwal" +, author = "Y. Linde and A. Buzo and R. M. Gray" +, title = "An algorithm for vector quantiser design" +, journal = "IEEE Transactions on Communications" +, volume = "COM-28" +, year = 1980 +, pages = "84--95" +, update = "98.07 agarwal" } @unpublished{lb-rpdcd- -, author = "M. Lindenbaum and A. Bruckstein" -, title = "On recursive {$o(n)$} partition of a digital curve into digital straight segments" -, note = "to appear in IEEE Trans. on Pattern Analysis and Machine Intelligence(PAMI)" -, update = "98.11 bibrelex" +, author = "M. Lindenbaum and A. Bruckstein" +, title = "On recursive {$o(n)$} partition of a digital curve into digital straight segments" +, note = "to appear in IEEE Trans. on Pattern Analysis and Machine Intelligence(PAMI)" +, update = "98.11 bibrelex" } @article{lb-bapcs-94 -, author = "M. Lindenbaum and A. M. Bruckstein" -, title = "Blind Approximation of Planar Convex Sets" -, journal = "IEEE Trans. Robot. Autom." -, volume = 10 -, number = 4 -, month = aug -, year = 1994 -, pages = "517--529" -, keywords = "probing, line probes, approximation" -, update = "96.09 romanik" +, author = "M. Lindenbaum and A. M. Bruckstein" +, title = "Blind Approximation of Planar Convex Sets" +, journal = "IEEE Trans. Robot. Autom." +, volume = 10 +, number = 4 +, month = aug +, year = 1994 +, pages = "517--529" +, keywords = "probing, line probes, approximation" +, update = "96.09 romanik" } @article{lb-doslv-88 -, author = "M. Lindenbaum and A. M. Bruckstein" -, title = "Determining object shape from local velocity measurements" -, journal = "Pattern Recogn." -, volume = 21 -, number = 6 -, year = 1988 -, pages = "591--606" -, update = "93.09 milone+mitchell" +, author = "M. Lindenbaum and A. M. Bruckstein" +, title = "Determining object shape from local velocity measurements" +, journal = "Pattern Recogn." +, volume = 21 +, number = 6 +, year = 1988 +, pages = "591--606" +, update = "93.09 milone+mitchell" } @article{lb-psgp-92 -, author = "M. Lindenbaum and A. M. Bruckstein" -, title = "Parallel Strategies for Geometric Probing" -, journal = "J. Algorithms" -, volume = 13 -, year = 1992 -, pages = "320--349" -, keywords = "probing, composite probes, parallel" -, update = "96.09 romanik" +, author = "M. Lindenbaum and A. M. Bruckstein" +, title = "Parallel Strategies for Geometric Probing" +, journal = "J. Algorithms" +, volume = 13 +, year = 1992 +, pages = "320--349" +, keywords = "probing, composite probes, parallel" +, update = "96.09 romanik" } @article{lb-rpscu-91 -, author = "M. Lindenbaum and A. M. Bruckstein" -, title = "Reconstruction of Polygonal Sets by Constrained and Unconstrained Double Probing" -, journal = "Ann. Math. Artif. Intell." -, volume = 4 -, year = 1991 -, pages = "345--362" -, keywords = "probing, line probes" -, update = "96.09 romanik" +, author = "M. Lindenbaum and A. M. Bruckstein" +, title = "Reconstruction of Polygonal Sets by Constrained and Unconstrained Double Probing" +, journal = "Ann. Math. Artif. Intell." +, volume = 4 +, year = 1991 +, pages = "345--362" +, keywords = "probing, line probes" +, update = "96.09 romanik" } @inproceedings{ls-pahgd-90 -, author = "M. Lindenbaum and H. Samet" -, title = "A probabilistic analysis of hierarchical geometric data structures" -, booktitle = "Proceedings of the Tenth International Conference on Pattern Recognition" -, site = "Atlantic City, NJ" -, volume = "II" -, month = jun -, year = 1990 -, pages = "91--96" -, update = "96.05 efrat" +, author = "M. Lindenbaum and H. Samet" +, title = "A probabilistic analysis of hierarchical geometric data structures" +, booktitle = "Proceedings of the Tenth International Conference on Pattern Recognition" +, site = "Atlantic City, NJ" +, volume = "II" +, month = jun +, year = 1990 +, pages = "91--96" +, update = "96.05 efrat" } @techreport{ls-patbs-95 -, author = "M. Lindenbaum and H. Samet" -, title = "A probabilistic analysis of trie-based sorting of large collections of line segments" -, type = "Center for Automation Research" -, number = "CAR-TR-766" -, institution = "University of Maryland" -, month = apr -, year = 1995 -, update = "01.07 devillers, 96.05 efrat" +, author = "M. Lindenbaum and H. Samet" +, title = "A probabilistic analysis of trie-based sorting of large collections of line segments" +, type = "Center for Automation Research" +, number = "CAR-TR-766" +, institution = "University of Maryland" +, month = apr +, year = 1995 +, update = "01.07 devillers, 96.05 efrat" } @article{l-atmgs-83 -, author = "P. A. Lindholm" -, title = "Automatic Triangle Mesh Generation on Surfaces of Polyhedra" -, journal = "IEEE Trans. Magn." -, volume = "MAG19" -, number = 6 -, year = 1983 -, pages = "2539--2542" -, update = "94.09 lambert" -, annote = "Defines ``quality'' of two triangles as $(r/R)_{-1}$. - Used to triangulate strip along boundary. For interior - $(r/R)_\infty$ is used (sort of)." +, author = "P. A. Lindholm" +, title = "Automatic Triangle Mesh Generation on Surfaces of Polyhedra" +, journal = "IEEE Trans. Magn." +, volume = "MAG19" +, number = 6 +, year = 1983 +, pages = "2539--2542" +, update = "94.09 lambert" +, annote = "Defines ``quality'' of two triangles as $(r/R)_{-1}$. + Used to triangulate strip along boundary. For interior + $(r/R)_\infty$ is used (sort of)." } @book{ly-jvms-97 -, author = "T. Lindholm and F. Yellin" -, title = "The {J}ava Virtual Machine Specification" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1997 -, update = "98.07 tamassia" +, author = "T. Lindholm and F. Yellin" +, title = "The {J}ava Virtual Machine Specification" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1997 +, update = "98.07 tamassia" } @article{l-ltcrn-94 -, author = "A. Lingas" -, title = "A Linear-Time Construction of the Relative Neighborhood Graph from the {Delaunay} triangulation" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "199--208" -, update = "98.07 mitchell, 96.09 devillers" +, author = "A. Lingas" +, title = "A Linear-Time Construction of the Relative Neighborhood Graph from the {Delaunay} triangulation" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "199--208" +, update = "98.07 mitchell, 96.09 devillers" } @inproceedings{l-lthmw-85 -, author = "A. Lingas" -, title = "A linear-time heuristic for minimum weight triangulation of convex polygons" -, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." -, year = 1985 -, keywords = "design of algorithms, approximation, length, triangulations, polygons, convex" +, author = "A. Lingas" +, title = "A linear-time heuristic for minimum weight triangulation of convex polygons" +, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." +, year = 1985 +, keywords = "design of algorithms, approximation, length, triangulations, polygons, convex" } @article{l-nhmwt-87 -, author = "A. Lingas" -, title = "A new heuristic for minimum weight triangulation" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 8 -, number = 4 -, year = 1987 -, pages = "646--658" -, keywords = "design of algorithms, approximation, length, triangulations, minimum spanning trees, points, geometric graphs" +, author = "A. Lingas" +, title = "A new heuristic for minimum weight triangulation" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 8 +, number = 4 +, year = 1987 +, pages = "646--658" +, keywords = "design of algorithms, approximation, length, triangulations, minimum spanning trees, points, geometric graphs" } @inproceedings{l-seagt-87 -, author = "A. Lingas" -, title = "A space efficient algorithm for the greedy triangulation" -, booktitle = "Proc. 13th IFIP Conf. System Modelling and Optimization" -, site = "Tokyo, Japan" -, year = 1987 -, pages = "??" -, keywords = "implementing algorithms, approximation, length, triangulations, Delaunay triangulations, Voronoi diagrams, points, geometric graphs" -, precedes = "l-seagt-87a" -, update = "98.11 bibrelex" +, author = "A. Lingas" +, title = "A space efficient algorithm for the greedy triangulation" +, booktitle = "Proc. 13th IFIP Conf. System Modelling and Optimization" +, site = "Tokyo, Japan" +, year = 1987 +, pages = "??" +, keywords = "implementing algorithms, approximation, length, triangulations, Delaunay triangulations, Voronoi diagrams, points, geometric graphs" +, precedes = "l-seagt-87a" +, update = "98.11 bibrelex" } @article{l-seagt-87a -, author = "A. Lingas" -, title = "A space efficient algorithm for the greedy triangulation" -, journal = "Lecture Notes in Control and Information Sci." -, volume = 113 -, year = 1987 -, pages = "359--364" -, succeeds = "l-seagt-87" -, update = "98.11 bibrelex" +, author = "A. Lingas" +, title = "A space efficient algorithm for the greedy triangulation" +, journal = "Lecture Notes in Control and Information Sci." +, volume = 113 +, year = 1987 +, pages = "359--364" +, succeeds = "l-seagt-87" +, update = "98.11 bibrelex" } @techreport{l-amwt-83 -, author = "A. Lingas" -, title = "Advances in minimum-weight triangulation" -, type = "Link{\"o}ping {Studies} in {Sci}. {Technical} {Dissertations}" -, number = 97 -, institution = "Link{\"o}ping Univ." -, address = "Link{\"o}ping, Sweden" -, year = 1983 -, keywords = "design of algorithms, approximation, NP-completeness, length, triangulations, minimum spanning trees, points, polygons" +, author = "A. Lingas" +, title = "Advances in minimum-weight triangulation" +, type = "Link{\"o}ping {Studies} in {Sci}. {Technical} {Dissertations}" +, number = 97 +, institution = "Link{\"o}ping Univ." +, address = "Link{\"o}ping, Sweden" +, year = 1983 +, keywords = "design of algorithms, approximation, NP-completeness, length, triangulations, minimum spanning trees, points, polygons" } @techreport{l-avdbe-85 -, author = "A. Lingas" -, title = "Applications of {Voronoi} diagrams with barriers to efficient implementations of greedy triangulations" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Inform. Sci., Link{\"o}ping Univ." -, address = "Link{\"o}ping, Sweden" -, year = 1985 +, author = "A. Lingas" +, title = "Applications of {Voronoi} diagrams with barriers to efficient implementations of greedy triangulations" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Inform. Sci., Link{\"o}ping Univ." +, address = "Link{\"o}ping, Sweden" +, year = 1985 } @inproceedings{l-fabvd-90 -, author = "A. Lingas" -, title = "Fast algorithms for bounded {Voronoi} diagrams of restricted polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "204--208" -, cites = "a-rtcg-89, agss-ltacv-87, c-tpca-82, e-acg-87, ll-gdtpg-86, ll-fagt-90, l-pp-85, l-vdbsd-89, ps-cgi-85, tv-otats-88, ws-oacdt-87, ZZZ" -, update = "98.07 bibrelex" +, author = "A. Lingas" +, title = "Fast algorithms for bounded {Voronoi} diagrams of restricted polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "204--208" +, cites = "a-rtcg-89, agss-ltacv-87, c-tpca-82, e-acg-87, ll-gdtpg-86, ll-fagt-90, l-pp-85, l-vdbsd-89, ps-cgi-85, tv-otats-88, ws-oacdt-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{l-gtcbe-89 -, author = "Andrzej Lingas" -, title = "Greedy triangulation can be efficiently implemented in the average case" -, booktitle = "Graph-Theoretic Concepts in Computer Science. Proceedings." -, year = 1989 -, update = "97.03 rote" -, abstract = "Let $S$ be a set of $n$ points uniformly distributed - in a unit square. We show that the greedy triangulation - of $S$ can be computed in $O(n \log^{1.5} n)$ expected - time (without bucketing). The best previously known - upper-bound on the expected-time performance of an - algorithm for the greedy triangulation was $O(n^2)$." +, author = "Andrzej Lingas" +, title = "Greedy triangulation can be efficiently implemented in the average case" +, booktitle = "Graph-Theoretic Concepts in Computer Science. Proceedings." +, year = 1989 +, update = "97.03 rote" +, abstract = "Let $S$ be a set of $n$ points uniformly distributed + in a unit square. We show that the greedy triangulation + of $S$ can be computed in $O(n \log^{1.5} n)$ expected + time (without bucketing). The best previously known + upper-bound on the expected-time performance of an + algorithm for the greedy triangulation was $O(n^2)$." } @inproceedings{l-hmelr-83 -, author = "A. Lingas" -, title = "Heuristics for minimum edge length rectangular partitions of rectilinear figures" -, booktitle = "Proc. 6th GI Conf. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 145 -, publisher = "Springer-Verlag" -, year = 1983 -, pages = "199--210" -, keywords = "design of algorithms, VLSI design, length, partition, approximation, polygons, geometric graphs, rectangles" +, author = "A. Lingas" +, title = "Heuristics for minimum edge length rectangular partitions of rectilinear figures" +, booktitle = "Proc. 6th GI Conf. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 145 +, publisher = "Springer-Verlag" +, year = 1983 +, pages = "199--210" +, keywords = "design of algorithms, VLSI design, length, partition, approximation, polygons, geometric graphs, rectangles" } @inproceedings{l-abigt-86 -, author = "A. Lingas" -, title = "On approximation behavior and implementation of the greedy triangulation for convex planar point sets" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "72--79" -, keywords = "implementing algorithms, approximation, length, triangulations, points, polygons, convex" -, cites = "g-nrpt-79, k-ndot-80, k-mtpd-80, lp-annpc-78, l-lthmw-85, l-tspp-77, mz-ngndt-79, mz-pmhfa-83, ps-cgi-85, yl-nannp-79, ZZZ" -, update = "97.11 bibrelex" +, author = "A. Lingas" +, title = "On approximation behavior and implementation of the greedy triangulation for convex planar point sets" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "72--79" +, keywords = "implementing algorithms, approximation, length, triangulations, points, polygons, convex" +, cites = "g-nrpt-79, k-ndot-80, k-mtpd-80, lp-annpc-78, l-lthmw-85, l-tspp-77, mz-ngndt-79, mz-pmhfa-83, ps-cgi-85, yl-nannp-79, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{l-pp-85 -, author = "A. Lingas" -, title = "On partitioning polygons" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "288--295" -, keywords = "design of algorithms, partition, divide-and-conquer, triangulations, polygons" -, cites = "c-tpca-82, d-pppg-82, h-gt-72, hm-ftsp-83, lt-stpg-77, lt-apst-77, m-spgus-84, u-cav-84, ZZZ" -, update = "97.11 bibrelex" +, author = "A. Lingas" +, title = "On partitioning polygons" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "288--295" +, keywords = "design of algorithms, partition, divide-and-conquer, triangulations, polygons" +, cites = "c-tpca-82, d-pppg-82, h-gt-72, hm-ftsp-83, lt-stpg-77, lt-apst-77, m-spgus-84, u-cav-84, ZZZ" +, update = "97.11 bibrelex" } @article{l-gdtan-86 -, author = "A. Lingas" -, title = "The greedy and {Delaunay} triangulations are not bad in the average case" -, journal = "Inform. Process. Lett." -, volume = 22 -, year = 1986 -, pages = "25--31" -, keywords = "approximation, Delaunay triangulations, triangulations, average-case analysis, points" -, succeeds = "l-gdtan-83" +, author = "A. Lingas" +, title = "The greedy and {Delaunay} triangulations are not bad in the average case" +, journal = "Inform. Process. Lett." +, volume = 22 +, year = 1986 +, pages = "25--31" +, keywords = "approximation, Delaunay triangulations, triangulations, average-case analysis, points" +, succeeds = "l-gdtan-83" } @inproceedings{l-gdtan-83 -, author = "A. Lingas" -, title = "The Greedy and {Delaunay} Triangulations are Not Bad in the Average Case and Minimum Weight Geometric Triangulation of Multi-connected Polygons is {NP}-Complete" -, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1983 -, pages = "270--284" -, precedes = "l-gdtan-86" -, annote = "Geometric Triangulation just has to cover all points - with edges." +, author = "A. Lingas" +, title = "The Greedy and {Delaunay} Triangulations are Not Bad in the Average Case and Minimum Weight Geometric Triangulation of Multi-connected Polygons is {NP}-Complete" +, booktitle = "Proc. 24th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1983 +, pages = "270--284" +, precedes = "l-gdtan-86" +, annote = "Geometric Triangulation just has to cover all points + with edges." } @inproceedings{l-pnrh-82 -, author = "A. Lingas" -, title = "The power of non-rectilinear holes" -, booktitle = "Proc. 9th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 140 -, publisher = "Springer-Verlag" -, year = 1982 -, pages = "369--383" -, keywords = "complexity theory, partition, NP-completeness, polygons, geometric graphs, rectangles" -, update = "93.09 rote" -, annote = "One of the six NP-hardness results is incorrect, - see sg-mdrpa-92, sg-mdrra-?? for a polynomial solution. - The error is in cases G and H on p. 374, where the - claimed partition is not optimal." +, author = "A. Lingas" +, title = "The power of non-rectilinear holes" +, booktitle = "Proc. 9th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 140 +, publisher = "Springer-Verlag" +, year = 1982 +, pages = "369--383" +, keywords = "complexity theory, partition, NP-completeness, polygons, geometric graphs, rectangles" +, update = "93.09 rote" +, annote = "One of the six NP-hardness results is incorrect, + see sg-mdrpa-92, sg-mdrra-?? for a polynomial solution. + The error is in cases G and H on p. 374, where the + claimed partition is not optimal." } @article{l-vdbsd-89 -, author = "A. Lingas" -, title = "Voronoi diagrams with barriers and the shortest diagonal problem" -, journal = "Inform. Process. Lett." -, volume = 32 -, year = 1989 -, pages = "191--198" -, keywords = "design of algorithms, Delaunay triangulations, Voronoi diagrams, geometric graphs" +, author = "A. Lingas" +, title = "Voronoi diagrams with barriers and the shortest diagonal problem" +, journal = "Inform. Process. Lett." +, volume = 32 +, year = 1989 +, pages = "191--198" +, keywords = "design of algorithms, Delaunay triangulations, Voronoi diagrams, geometric graphs" } @techreport{lk-ltrab-91 -, author = "Andrzej Lingas and Rolf Klein" -, title = "A Linear-Time Randomized Algorithm for the Bounded {Voronoi} Diagram of a Simple Polygon" -, type = "Manuscript" -, institution = "Lund Univ." -, address = "Lund, Sweden" -, year = 1991 -, precedes = "kl-ltrab-93t" -, update = "99.07 bibrelex, 98.11 bibrelex, 97.11 bibrelex" +, author = "Andrzej Lingas and Rolf Klein" +, title = "A Linear-Time Randomized Algorithm for the Bounded {Voronoi} Diagram of a Simple Polygon" +, type = "Manuscript" +, institution = "Lund Univ." +, address = "Lund, Sweden" +, year = 1991 +, precedes = "kl-ltrab-93t" +, update = "99.07 bibrelex, 98.11 bibrelex, 97.11 bibrelex" } @article{lls-amlpp-87a -, author = "A. Lingas and C. Levcopoulos and J.-R. Sack" -, title = "Algorithms for minimum length partitions of polygons" -, journal = "BIT" -, volume = 27 -, year = 1987 -, pages = "474--479" -, keywords = "design of algorithms, decomposition, triangulations, partition, dynamic programming, length, two-dimensional, convex, polygons" -, succeeds = "lls-amlpp-87t" +, author = "A. Lingas and C. Levcopoulos and J.-R. Sack" +, title = "Algorithms for minimum length partitions of polygons" +, journal = "BIT" +, volume = 27 +, year = 1987 +, pages = "474--479" +, keywords = "design of algorithms, decomposition, triangulations, partition, dynamic programming, length, two-dimensional, convex, polygons" +, succeeds = "lls-amlpp-87t" } @techreport{lms-parld-92 -, author = "A. Lingas and A. Maheshwari and J.-R. Sack" -, title = "Parallel Algorithms for Rectilinear Link Distance Problems" -, type = "Technical Report" -, number = "SCS-TR-213" -, institution = "Carleton University, School of Computer Science" -, year = 1992 -, update = "97.11 sack" +, author = "A. Lingas and A. Maheshwari and J.-R. Sack" +, title = "Parallel Algorithms for Rectilinear Link Distance Problems" +, type = "Technical Report" +, number = "SCS-TR-213" +, institution = "Carleton University, School of Computer Science" +, year = 1992 +, update = "97.11 sack" } @inproceedings{lms-parld-93 -, author = "Andrzej Lingas and Anil Maheshwari and Jorg-Rudiger Sack" -, title = "Parallel Algorithms for Rectilinear Link Distance Problems" -, booktitle = "Proc. 7th IEEE Internat. Parallel Process. Sympos." -, site = "Newport Beach" -, publisher = "IEEE Computer Society" -, year = 1993 -, pages = "65--72" -, precedes = "lms-parld-95" -, update = "98.03 mitchell, 97.11 sack" +, author = "Andrzej Lingas and Anil Maheshwari and Jorg-Rudiger Sack" +, title = "Parallel Algorithms for Rectilinear Link Distance Problems" +, booktitle = "Proc. 7th IEEE Internat. Parallel Process. Sympos." +, site = "Newport Beach" +, publisher = "IEEE Computer Society" +, year = 1993 +, pages = "65--72" +, precedes = "lms-parld-95" +, update = "98.03 mitchell, 97.11 sack" } @article{lms-parld-95 -, author = "Andrzej Lingas and Anil Maheshwari and J{\"o}rg-R{\"u}diger Sack" -, title = "Parallel Algorithms for Rectilinear Link Distance Problems" -, journal = "Algorithmica" -, volume = 14 -, year = 1995 -, pages = "261--289" -, keywords = "link distance, parallel algorithms, rectilinear paths" -, succeeds = "lms-parld-93" -, update = "98.07 bibrelex+devillers, 98.03 mitchell, 97.11 sack" -, abstract = " +, author = "Andrzej Lingas and Anil Maheshwari and J{\"o}rg-R{\"u}diger Sack" +, title = "Parallel Algorithms for Rectilinear Link Distance Problems" +, journal = "Algorithmica" +, volume = 14 +, year = 1995 +, pages = "261--289" +, keywords = "link distance, parallel algorithms, rectilinear paths" +, succeeds = "lms-parld-93" +, update = "98.07 bibrelex+devillers, 98.03 mitchell, 97.11 sack" +, abstract = " We provide optimal parallel solutions to several link distance problems set in trapezoided rectilinear polygons. All our main parallel algorithms are deterministic and designed to run on the @@ -97153,461 +97153,461 @@ @article{lms-parld-95 } @inproceedings{lm-ltcrn-95 -, author = "Andrzej Lingas and Asish Mukhopadhyay" -, title = "A Linear-Time Construction of the Relative Neighborhood Graph within a Histogram" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "228--238" -, update = "99.07 bibrelex, 98.07 mitchell, 96.01 smid, 95.05 mitchell" +, author = "Andrzej Lingas and Asish Mukhopadhyay" +, title = "A Linear-Time Construction of the Relative Neighborhood Graph within a Histogram" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "228--238" +, update = "99.07 bibrelex, 98.07 mitchell, 96.01 smid, 95.05 mitchell" } @inproceedings{lprs-melpr-82 -, author = "A. Lingas and R. Pinter and R. Rivest and A. Shamir" -, title = "Minimum edge length partitioning of rectilinear polygons" -, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." -, year = 1982 -, pages = "53--63" -, keywords = "design of algorithms, VLSI design, partition, length, dynamic programming, NP-completeness, polygons, geometric graphs, rectangles" +, author = "A. Lingas and R. Pinter and R. Rivest and A. Shamir" +, title = "Minimum edge length partitioning of rectilinear polygons" +, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." +, year = 1982 +, pages = "53--63" +, keywords = "design of algorithms, VLSI design, partition, length, dynamic programming, NP-completeness, polygons, geometric graphs, rectangles" } @unpublished{lprs-meldr- -, author = "A. Lingas and R. Y. Pinter and R. L. Rivest and A. Shamir" -, title = "Minimum edge length decomposition of rectilinear polygons" -, note = "Unpublished Manuscript" -, update = "97.11 bibrelex" +, author = "A. Lingas and R. Y. Pinter and R. L. Rivest and A. Shamir" +, title = "Minimum edge length decomposition of rectilinear polygons" +, note = "Unpublished Manuscript" +, update = "97.11 bibrelex" } @article{l-qppt-90 -, author = "J. Linhart" -, title = "A Quick Point-in-Polyhedron Test" -, journal = "Comput. Graph. (UK)" -, volume = 14 -, number = "3--4" -, year = 1990 -, pages = "445--447" -, update = "96.09 held" +, author = "J. Linhart" +, title = "A Quick Point-in-Polyhedron Test" +, journal = "Comput. Graph. (UK)" +, volume = 14 +, number = "3--4" +, year = 1990 +, pages = "445--447" +, update = "96.09 held" } @inproceedings{llsz-ecshs-93 -, author = "N. Linial and M. Luby and M. Saks and D. Zuckerman" -, title = "Efficient Construction of a Small Hitting Set for Combinatorial Rectangles in High Dimension" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "??" -, update = "94.05 devillers" +, author = "N. Linial and M. Luby and M. Saks and D. Zuckerman" +, title = "Efficient Construction of a Small Hitting Set for Combinatorial Rectangles in High Dimension" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "??" +, update = "94.05 devillers" } @inproceedings{lmr-rlvcd-88 -, author = "N. Linial and Y. Mansour and R. L. Rivest" -, title = "Results on learnability and the {Vapnik}-{Chervonekis} dimension" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "120--129" -, precedes = "lmr-rlvcd-91" +, author = "N. Linial and Y. Mansour and R. L. Rivest" +, title = "Results on learnability and the {Vapnik}-{Chervonekis} dimension" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "120--129" +, precedes = "lmr-rlvcd-91" } @article{lmr-rlvcd-91 -, author = "N. Linial and Y. Mansour and R. L. Rivest" -, title = "Results on learnability and the {Vapnik}-{Chervonekis} dimension" -, journal = "Inform. Comput." -, volume = 90 -, year = 1991 -, pages = "33--49" -, succeeds = "lmr-rlvcd-88" +, author = "N. Linial and Y. Mansour and R. L. Rivest" +, title = "Results on learnability and the {Vapnik}-{Chervonekis} dimension" +, journal = "Inform. Comput." +, volume = 90 +, year = 1991 +, pages = "33--49" +, succeeds = "lmr-rlvcd-88" } @inproceedings{ls-dgrsd-91 -, author = "Nathan Linial and Michael Saks" -, title = "Decomposing Graphs Into Regions of Small Diameter" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Nathan Linial and Michael Saks" +, title = "Decomposing Graphs Into Regions of Small Diameter" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{ls-neh-96 -, author = "N. Linial and O. Sasson" -, title = "Non-expansive hashing" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '96" -, year = 1996 -, pages = "509--517" -, update = "98.07 bibrelex, 97.07 agarwal" +, author = "N. Linial and O. Sasson" +, title = "Non-expansive hashing" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '96" +, year = 1996 +, pages = "509--517" +, update = "98.07 bibrelex, 97.07 agarwal" } @techreport{l-ldacc-96 -, author = "G. Liotta" -, title = "Low Degree Algorithms for Computing and Checking {Gabriel} Graphs" -, type = "Technical Report" -, number = "CS-96-28" -, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-28.ps.Z" -, keywords = "graph drawing, proximity, CGC, Brown" -, update = "97.03 tamassia" +, author = "G. Liotta" +, title = "Low Degree Algorithms for Computing and Checking {Gabriel} Graphs" +, type = "Technical Report" +, number = "CS-96-28" +, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-28.ps.Z" +, keywords = "graph drawing, proximity, CGC, Brown" +, update = "97.03 tamassia" } @inproceedings{ld-cpdt3-95 -, author = "Giuseppe Liotta and Giuseppe {Di Battista}" -, title = "Computing Proximity Drawings of Trees in the 3-Dimensional Space" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "239--250" -, keywords = "graph drawing, 3D, proximity" -, update = "99.07 bibrelex, 96.09 tamassia, 95.05 mitchell+tamassia" +, author = "Giuseppe Liotta and Giuseppe {Di Battista}" +, title = "Computing Proximity Drawings of Trees in the 3-Dimensional Space" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "239--250" +, keywords = "graph drawing, 3D, proximity" +, update = "99.07 bibrelex, 96.09 tamassia, 95.05 mitchell+tamassia" } @techreport{llmw-crig-96 -, author = "G. Liotta and A. Lubiw and H. Meijer and S. H. Whitesides" -, title = "The Rectangle of Influence Drawability Problem" -, type = "Technical Report" -, number = "CS-96-22" -, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-22.ps.Z" -, keywords = "graph drawing, proximity, CGC, Brown" -, precedes = "llmw-crig-98" -, update = "98.03 mitchell, 97.03 tamassia" +, author = "G. Liotta and A. Lubiw and H. Meijer and S. H. Whitesides" +, title = "The Rectangle of Influence Drawability Problem" +, type = "Technical Report" +, number = "CS-96-22" +, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-22.ps.Z" +, keywords = "graph drawing, proximity, CGC, Brown" +, precedes = "llmw-crig-98" +, update = "98.03 mitchell, 97.03 tamassia" } @article{llmw-crig-98 -, author = "G. Liotta and A. Lubiw and H. Meijer and S. H. Whitesides" -, title = "The Rectangle of Influence Drawability Problem" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, number = 1 -, year = 1998 -, pages = "1--22" -, issn = "0925-7721" -, succeeds = "llmw-crig-96" -, update = "98.03 mitchell" +, author = "G. Liotta and A. Lubiw and H. Meijer and S. H. Whitesides" +, title = "The Rectangle of Influence Drawability Problem" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, number = 1 +, year = 1998 +, pages = "1--22" +, issn = "0925-7721" +, succeeds = "llmw-crig-96" +, update = "98.03 mitchell" } @inproceedings{lpt-rpqid-97 -, author = "Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" -, title = "Robust Proximity Queries: an Illustration of Degree-Driven Algorithm Design" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "156--165" -, keywords = "nearest-neighbor search, point location, arithmetic precision, CGC, Brown" -, cites = "b-iha-07, b-ecvdl-96, bkmnsu-egcl-95, bms-dgc-94, c-hsh-85, c-sede-92, d-cgcg-92, dk-fdpi-83, dl-pmtds-89, egs-oplms-86, em-feptd-85, f-smpst-89, fv-eeacg-93, gks-ricdv-92, gs-pmgsc-85, h-pargc-89, kln-edtur-91, k-osps-83, lp-lppsi-77, lpt-rpqid-96, p-nappl-81, ps-cgi-85, pt-eplcs-92, st-pplup-86, si-cvdom-92, tv-ocsfc-96, y-stgd-90, y-tegc-97, ZZZ" -, update = "99.11 bibrelex, 98.07 bibrelex, 97.07 efrat, 97.03 tamassia" +, author = "Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" +, title = "Robust Proximity Queries: an Illustration of Degree-Driven Algorithm Design" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "156--165" +, keywords = "nearest-neighbor search, point location, arithmetic precision, CGC, Brown" +, cites = "b-iha-07, b-ecvdl-96, bkmnsu-egcl-95, bms-dgc-94, c-hsh-85, c-sede-92, d-cgcg-92, dk-fdpi-83, dl-pmtds-89, egs-oplms-86, em-feptd-85, f-smpst-89, fv-eeacg-93, gks-ricdv-92, gs-pmgsc-85, h-pargc-89, kln-edtur-91, k-osps-83, lp-lppsi-77, lpt-rpqid-96, p-nappl-81, ps-cgi-85, pt-eplcs-92, st-pplup-86, si-cvdom-92, tv-ocsfc-96, y-stgd-90, y-tegc-97, ZZZ" +, update = "99.11 bibrelex, 98.07 bibrelex, 97.07 efrat, 97.03 tamassia" } @article{lpt-rpqid-98 -, author = "Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" -, title = "Robust Proximity Queries: An Illustration of Degree-driven Algorithm Design" -, journal = "SIAM J. Comput." -, volume = 28 -, number = 3 -, year = 1998 -, pages = "864--889" -, keywords = "nearest-neighbor search, point location, arithmetic precision, CGC, Brown" -, update = "99.11 smid, 99.07 vismara, 97.03 tamassia" +, author = "Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" +, title = "Robust Proximity Queries: An Illustration of Degree-driven Algorithm Design" +, journal = "SIAM J. Comput." +, volume = 28 +, number = 3 +, year = 1998 +, pages = "864--889" +, keywords = "nearest-neighbor search, point location, arithmetic precision, CGC, Brown" +, update = "99.11 smid, 99.07 vismara, 97.03 tamassia" } @techreport{lpt-rpqiv-96 -, author = "Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" -, title = "Robust Proximity Queries in Implicit {Voronoi} Diagrams" -, type = "Technical Report" -, number = "CS-96-16" -, institution = "Center for Geometric Computing, Comput. Sci. Dept., Brown Univ." -, address = "Providence, RI" -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-16.ps.Z" -, update = "96.09 devillers+tamassia" +, author = "Giuseppe Liotta and Franco P. Preparata and Roberto Tamassia" +, title = "Robust Proximity Queries in Implicit {Voronoi} Diagrams" +, type = "Technical Report" +, number = "CS-96-16" +, institution = "Center for Geometric Computing, Comput. Sci. Dept., Brown Univ." +, address = "Providence, RI" +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-16.ps.Z" +, update = "96.09 devillers+tamassia" } @techreport{lttv-argd-96 -, author = "G. Liotta and R. Tamassia and I. G. Tollis and P. Vocca" -, title = "Area Requirement of {Gabriel} Drawings" -, type = "Technical Report" -, number = "CS-96-29" -, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." -, year = 1996 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-29.ps.Z" -, keywords = "graph drawing, proximity, CGC, Brown" -, update = "97.03 tamassia" +, author = "G. Liotta and R. Tamassia and I. G. Tollis and P. Vocca" +, title = "Area Requirement of {Gabriel} Drawings" +, type = "Technical Report" +, number = "CS-96-29" +, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." +, year = 1996 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/96/cs96-29.ps.Z" +, keywords = "graph drawing, proximity, CGC, Brown" +, update = "97.03 tamassia" } @inproceedings{lttv-argd-97 -, author = "G. Liotta and R. Tamassia and I. G. Tollis and P. Vocca" -, title = "Area Requirement of {Gabriel} Drawings" -, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1203 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "135--146" -, url = "https://www.cs.brown.edu/cgc/papers/lttv-argd-97.ps.gz" -, keywords = "graph drawing, proximity, CGC, Brown" -, update = "98.07 tamassia, 97.03 tamassia" +, author = "G. Liotta and R. Tamassia and I. G. Tollis and P. Vocca" +, title = "Area Requirement of {Gabriel} Drawings" +, booktitle = "Algorithms and Complexity (Proc. CIAC' 97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1203 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "135--146" +, url = "https://www.cs.brown.edu/cgc/papers/lttv-argd-97.ps.gz" +, keywords = "graph drawing, proximity, CGC, Brown" +, update = "98.07 tamassia, 97.03 tamassia" } @inproceedings{lvd-odmnb-94 -, author = "G. Liotta and F. Vargiu and G. {Di Battista}" -, title = "Orthogonal Drawings with the Minimum Number of Bends" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "281--286" -, cites = "dt-ipt-89, dlv-sorod-93, e-ga-79, gt-ccurp-94, k-mpgdg-92, l-conm-76, t-eggmn-87, tt-pgelt-89, ttv-lbpap-91, ttv-lbpod-91, v-ucvc-81, dett-adgab-94, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "G. Liotta and F. Vargiu and G. {Di Battista}" +, title = "Orthogonal Drawings with the Minimum Number of Bends" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "281--286" +, cites = "dt-ipt-89, dlv-sorod-93, e-ga-79, gt-ccurp-94, k-mpgdg-92, l-conm-76, t-eggmn-87, tt-pgelt-89, ttv-lbpap-91, ttv-lbpod-91, v-ucvc-81, dett-adgab-94, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @book{lw-spgd- -, title = "Special Issue on Selected Papers from the 1998 Symposium on Graph Drawing" -, editor = "G. Liotta and S. Whitesides" -, series = "J. Graph Algorithms Appl." -, note = "To appear" -, keywords = "graph drawing, collection" -, update = "98.11 tamassia" +, title = "Special Issue on Selected Papers from the 1998 Symposium on Graph Drawing" +, editor = "G. Liotta and S. Whitesides" +, series = "J. Graph Algorithms Appl." +, note = "To appear" +, keywords = "graph drawing, collection" +, update = "98.11 tamassia" } @inproceedings{ltl-mpsrp-89 -, author = "W. T. Liou and J. J. M. Tan and R. C. T. Lee" -, title = "Minimum partitioning simple rectilinear polygons in {$O(n \log\log n)$} time" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "344--353" -, cites = "ahu-daca-74, aap-ptem-86, ckss-crr-81, fss-mrpdb-84, fk-acpr-84, gt-ltasc-85, g-mmbg-67, cg-prca-83, h-acpr-82, hk-nammb-73, ia-eaggs-86, lllmp-tddo2-79, lp-eafmm-81, m-dsa-84, ns-fapd-88, o-mdrr-83, ostt-mprr-83, ps-coac-82, tv-otats-88, ZZZ" -, update = "98.03 bibrelex" +, author = "W. T. Liou and J. J. M. Tan and R. C. T. Lee" +, title = "Minimum partitioning simple rectilinear polygons in {$O(n \log\log n)$} time" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "344--353" +, cites = "ahu-daca-74, aap-ptem-86, ckss-crr-81, fss-mrpdb-84, fk-acpr-84, gt-ltasc-85, g-mmbg-67, cg-prca-83, h-acpr-82, hk-nammb-73, ia-eaggs-86, lllmp-tddo2-79, lp-eafmm-81, m-dsa-84, ns-fapd-88, o-mdrr-83, ostt-mprr-83, ps-coac-82, tv-otats-88, ZZZ" +, update = "98.03 bibrelex" } @article{ltl-ccrpl-91 -, author = "W. T. Liou and C. Y. Tang and R. C. T. Lee" -, title = "Covering convex rectilinear polygons in linear time" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 2 -, year = 1991 -, pages = "137--185" -, keywords = "optimal covering problem, convex rectilinear polygon, optimum algorithm" +, author = "W. T. Liou and C. Y. Tang and R. C. T. Lee" +, title = "Covering convex rectilinear polygons in linear time" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 2 +, year = 1991 +, pages = "137--185" +, keywords = "optimal covering problem, convex rectilinear polygon, optimum algorithm" } @article{l-ompa-84 -, author = "W. {Lipski, Jr.}" -, title = "An {$O(n \log n)$} {Manhattan} path algorithm" -, journal = "Inform. Process. Lett." -, volume = 19 -, year = 1984 -, pages = "99--102" +, author = "W. {Lipski, Jr.}" +, title = "An {$O(n \log n)$} {Manhattan} path algorithm" +, journal = "Inform. Process. Lett." +, volume = 19 +, year = 1984 +, pages = "99--102" } @article{l-fmprp-83 -, author = "W. {Lipski, Jr.}" -, title = "Finding a {Manhattan} path and related problems" -, journal = "Networks" -, volume = 13 -, year = 1983 -, pages = "399--409" +, author = "W. {Lipski, Jr.}" +, title = "Finding a {Manhattan} path and related problems" +, journal = "Networks" +, volume = 13 +, year = 1983 +, pages = "399--409" } @incollection{l-stlwl-84 -, author = "W. {Lipski, Jr.}" -, title = "On the structure of three-layer wirable layouts" -, editor = "Franco P. Preparata" -, booktitle = "VLSI Theory" -, series = "Adv. Comput. Res." -, volume = 2 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1984 -, pages = "231--243" -, update = "01.04 icking" +, author = "W. {Lipski, Jr.}" +, title = "On the structure of three-layer wirable layouts" +, editor = "Franco P. Preparata" +, booktitle = "VLSI Theory" +, series = "Adv. Comput. Res." +, volume = 2 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1984 +, pages = "231--243" +, update = "01.04 icking" } @article{lllmp-tddo2-79 -, author = "W. {Lipski, Jr.} and E. Lodi and F. Luccio and C. Mugnai and L. Pagli" -, title = "On two-dimensional data organization , {Part} {II}" -, journal = "Fundam. Inform." -, volume = 2 -, year = 1979 -, pages = "245--260" -, update = "97.11 bibrelex" +, author = "W. {Lipski, Jr.} and E. Lodi and F. Luccio and C. Mugnai and L. Pagli" +, title = "On two-dimensional data organization , {Part} {II}" +, journal = "Fundam. Inform." +, volume = 2 +, year = 1979 +, pages = "245--260" +, update = "97.11 bibrelex" } @article{lp-fatsd-81 -, author = "W. {Lipski, Jr.} and C. H. Papadimitriou" -, title = "A fast algorithm for testing for safety and detecting deadlocks in locked transaction systems" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "211--226" +, author = "W. {Lipski, Jr.} and C. H. Papadimitriou" +, title = "A fast algorithm for testing for safety and detecting deadlocks in locked transaction systems" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "211--226" } @article{lp-eafmm-81 -, author = "W. {Lipski, Jr.} and F. P. Preparata" -, title = "Efficient Algorithms for Finding Maximum Matchings in Convex Bipartite Graphs and Related Problems" -, journal = "Acta Inform." -, volume = 15 -, year = 1981 -, pages = "329--346" -, update = "98.03 bibrelex" +, author = "W. {Lipski, Jr.} and F. P. Preparata" +, title = "Efficient Algorithms for Finding Maximum Matchings in Convex Bipartite Graphs and Related Problems" +, journal = "Acta Inform." +, volume = 15 +, year = 1981 +, pages = "329--346" +, update = "98.03 bibrelex" } @article{lp-fcuio-80 -, author = "W. {Lipski, Jr.} and F. P. Preparata" -, title = "Finding the contour of a union of iso-oriented rectangles" -, journal = "J. Algorithms" -, volume = 1 -, year = 1980 -, pages = "235--246" -, note = "Errata in 2(1981), 105; corrigendum in 3(1982), - 301--302" +, author = "W. {Lipski, Jr.} and F. P. Preparata" +, title = "Finding the contour of a union of iso-oriented rectangles" +, journal = "J. Algorithms" +, volume = 1 +, year = 1980 +, pages = "235--246" +, note = "Errata in 2(1981), 105; corrigendum in 3(1982), + 301--302" } @article{lp-src-81 -, author = "W. {Lipski, Jr.} and F. P. Preparata" -, title = "Segments, rectangles, contours" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "63--76" +, author = "W. {Lipski, Jr.} and F. P. Preparata" +, title = "Segments, rectangles, contours" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "63--76" } @book{l-eaac-81 -, author = "J. Lipson" -, title = "Elements of Algebra and Algebraic Computing" -, publisher = "Addison-Wesley" -, year = 1981 -, update = "98.03 bibrelex" +, author = "J. Lipson" +, title = "Elements of Algebra and Algebraic Computing" +, publisher = "Addison-Wesley" +, year = 1981 +, update = "98.03 bibrelex" } @article{ls-mmpmm-88 -, author = "M. Lipton and W. Still" -, title = "The multiple minimum problem in molecular modeling: {Tree} searching internal coordinate conformational space" -, journal = "J. Computational Chemistry" -, volume = 9 -, number = 4 -, year = 1988 -, pages = "343--355" -, update = "98.07 bibrelex" +, author = "M. Lipton and W. Still" +, title = "The multiple minimum problem in molecular modeling: {Tree} searching internal coordinate conformational space" +, journal = "J. Computational Chemistry" +, volume = 9 +, number = 4 +, year = 1988 +, pages = "343--355" +, update = "98.07 bibrelex" } @article{lm-bmcpg-78 -, author = "R. J. Lipton and R. E. Miller" -, title = "A Batching Method for Coloring Planar Graphs" -, journal = "Inform. Process. Lett." -, volume = 7 -, number = 4 -, year = 1978 -, pages = "185--188" -, update = "98.03 bibrelex" +, author = "R. J. Lipton and R. E. Miller" +, title = "A Batching Method for Coloring Planar Graphs" +, journal = "Inform. Process. Lett." +, volume = 7 +, number = 4 +, year = 1978 +, pages = "185--188" +, update = "98.03 bibrelex" } @inproceedings{lns-mdg-85 -, author = "R. J. Lipton and S. C. North and J. S. Sandberg" -, title = "A method for drawing graphs" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "153--160" -, keywords = "graph drawing" -, cites = "b-agt-74, c-agg-83, c-cgts-69, cm-ecgt-78, c-tggr-95, c-sdcrg-50, cm-grdg-80, cfp-zsg-81, er-ag-63, f-gcen-32, f-egavp-83, f-grg-49, f-gdtga-49, f-hdg-70, fhl-ptapg-80, gj-cigtn-79, gw-cetg-77, gm-gtg-64, ht-ogpm-66, h-gt-72, h-vsag-65, j-crpg-82, k-c-47, k-lgdlt-46, k-dpgtg-47, k-cdf-63, l-cpe-79, m-caclg-77, m-sgta-72, p-kafgg-37, rt-tdt-81, s-ggggg-57, s-cg-59, s-mogga-59, s-gm-60, s-cmspg-70, sr-cdtn-83, t-scg-59, t-crg-60, t-hdg-63, t-cg-66, t-wim-73, t-gt-84, u-ascan-84, w-grras-, w-anagg-71, w-moagp-66, ws-tdt-79, w-s-51, w-fpg-64, ZZZ" -, update = "97.11 bibrelex, 93.09 tamassia, 93.05 jones" +, author = "R. J. Lipton and S. C. North and J. S. Sandberg" +, title = "A method for drawing graphs" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "153--160" +, keywords = "graph drawing" +, cites = "b-agt-74, c-agg-83, c-cgts-69, cm-ecgt-78, c-tggr-95, c-sdcrg-50, cm-grdg-80, cfp-zsg-81, er-ag-63, f-gcen-32, f-egavp-83, f-grg-49, f-gdtga-49, f-hdg-70, fhl-ptapg-80, gj-cigtn-79, gw-cetg-77, gm-gtg-64, ht-ogpm-66, h-gt-72, h-vsag-65, j-crpg-82, k-c-47, k-lgdlt-46, k-dpgtg-47, k-cdf-63, l-cpe-79, m-caclg-77, m-sgta-72, p-kafgg-37, rt-tdt-81, s-ggggg-57, s-cg-59, s-mogga-59, s-gm-60, s-cmspg-70, sr-cdtn-83, t-scg-59, t-crg-60, t-hdg-63, t-cg-66, t-wim-73, t-gt-84, u-ascan-84, w-grras-, w-anagg-71, w-moagp-66, ws-tdt-79, w-s-51, w-fpg-64, ZZZ" +, update = "97.11 bibrelex, 93.09 tamassia, 93.05 jones" } @article{lns-vlp-83 -, author = "R. J. Lipton and S. C. North and R. Sledgewick" -, title = "VLSI layout as programming" -, journal = "ACM Trans. on Programming Languages and Systems" -, volume = "??" -, year = 1983 -, update = "97.11 bibrelex" +, author = "R. J. Lipton and S. C. North and R. Sledgewick" +, title = "VLSI layout as programming" +, journal = "ACM Trans. on Programming Languages and Systems" +, volume = "??" +, year = 1983 +, update = "97.11 bibrelex" } @article{lrt-gnd-79 -, author = "R. J. Lipton and D. J. Rose and R. E. Tarjan" -, title = "Generalized nested dissection" -, journal = "SIAM J. Numer. Anal." -, volume = 16 -, number = 2 -, year = 1979 -, pages = "346--358" -, update = "97.11 bibrelex" +, author = "R. J. Lipton and D. J. Rose and R. E. Tarjan" +, title = "Generalized nested dissection" +, journal = "SIAM J. Numer. Anal." +, volume = 16 +, number = 2 +, year = 1979 +, pages = "346--358" +, update = "97.11 bibrelex" } @inproceedings{ls-lbv-81 -, author = "R. J. Lipton and R. Sedgewick" -, title = "Lower bounds for {VLSI}" -, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." -, year = 1981 -, pages = "300--307" +, author = "R. J. Lipton and R. Sedgewick" +, title = "Lower bounds for {VLSI}" +, booktitle = "Proc. 13th Annu. ACM Sympos. Theory Comput." +, year = 1981 +, pages = "300--307" } @inproceedings{lt-stpg-77 -, author = "R. J. Lipton and R. E. Tarjan" -, title = "A separator theorem for planar graphs" -, booktitle = "Proc. GI Conf. Theoret. Comput. Sci." -, year = 1977 -, update = "97.11 bibrelex" +, author = "R. J. Lipton and R. E. Tarjan" +, title = "A separator theorem for planar graphs" +, booktitle = "Proc. GI Conf. Theoret. Comput. Sci." +, year = 1977 +, update = "97.11 bibrelex" } @article{lt-stpg-79 -, author = "R. J. Lipton and R. E. Tarjan" -, title = "A separator theorem for planar graphs" -, journal = "SIAM J. Appl. Math." -, volume = 36 -, year = 1979 -, pages = "177--189" -, update = "97.11 bibrelex" +, author = "R. J. Lipton and R. E. Tarjan" +, title = "A separator theorem for planar graphs" +, journal = "SIAM J. Appl. Math." +, volume = 36 +, year = 1979 +, pages = "177--189" +, update = "97.11 bibrelex" } @inproceedings{lt-apst-77 -, author = "R. J. Lipton and R. E. Tarjan" -, title = "Applications of a planar separator theorem" -, booktitle = "Proc. 18th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1977 -, pages = "162--170" -, precedes = "lt-apst-80" +, author = "R. J. Lipton and R. E. Tarjan" +, title = "Applications of a planar separator theorem" +, booktitle = "Proc. 18th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1977 +, pages = "162--170" +, precedes = "lt-apst-80" } @article{lt-apst-80 -, author = "R. J. Lipton and R. E. Tarjan" -, title = "Applications of a planar separator theorem" -, journal = "SIAM J. Comput." -, volume = 9 -, year = 1980 -, pages = "615--627" -, succeeds = "lt-apst-77" +, author = "R. J. Lipton and R. E. Tarjan" +, title = "Applications of a planar separator theorem" +, journal = "SIAM J. Comput." +, volume = 9 +, year = 1980 +, pages = "615--627" +, succeeds = "lt-apst-77" } @incollection{l-crpbt-94 -, author = "Dani Lischinski" -, title = "Converting Rectangular Patches into {B{\'e}zier} Triangles" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "278--285" -, keywords = "Bezier surface, biquadratic patch" -, update = "94.09 heckbert" -, annote = "A parametric surface conversion routine. Contains C++ +, author = "Dani Lischinski" +, title = "Converting Rectangular Patches into {B{\'e}zier} Triangles" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "278--285" +, keywords = "Bezier surface, biquadratic patch" +, update = "94.09 heckbert" +, annote = "A parametric surface conversion routine. Contains C++ code." } @incollection{l-idt-94 -, author = "Dani Lischinski" -, title = "Incremental {Delaunay} Triangulation" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "47--59" -, keywords = "mesh generation, polygonization, Voronoi diagram" -, update = "94.09 heckbert" -, annote = "Gives some code to solve a very important problem: finding +, author = "Dani Lischinski" +, title = "Incremental {Delaunay} Triangulation" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "47--59" +, keywords = "mesh generation, polygonization, Voronoi diagram" +, update = "94.09 heckbert" +, annote = "Gives some code to solve a very important problem: finding Delaunay triangulations and Voronoi diagrams in 2D. These two geometric constructions are useful for triangular mesh generation and for nearest neighbor finding, respectively. Triangular mesh generation comes up when @@ -97617,6797 +97617,6797 @@ @incollection{l-idt-94 } @article{ltg-dmar-92 -, author = "Dani Lischinski and Filippo Tampieri and Donald Greenberg" -, title = "Discontinuity meshing for accurate radiosity" -, journal = "IEEE Comp. Graph. App." -, volume = "??" -, month = nov -, year = 1992 -, pages = "25--39" -, update = "98.11 bibrelex" +, author = "Dani Lischinski and Filippo Tampieri and Donald Greenberg" +, title = "Discontinuity meshing for accurate radiosity" +, journal = "IEEE Comp. Graph. App." +, volume = "??" +, month = nov +, year = 1992 +, pages = "25--39" +, update = "98.11 bibrelex" } @article{lsg-beer-94 -, author = "D. Lishinski and B. Smith and D. P. Greenberg" -, title = "Bounds and error estimates for radiosity" -, journal = "Comput. Graph." -, volume = "??" -, year = 1994 -, pages = "67--74" -, note = "Proc. SIGGRAPH '94" -, update = "98.03 bibrelex" +, author = "D. Lishinski and B. Smith and D. P. Greenberg" +, title = "Bounds and error estimates for radiosity" +, journal = "Comput. Graph." +, volume = "??" +, year = 1994 +, pages = "67--74" +, note = "Proc. SIGGRAPH '94" +, update = "98.03 bibrelex" } @unpublished{l-tpfc-88 -, author = "B. Lisper" -, title = "Theory{N}et posting and followup communication" -, month = jul -, year = 1988 -, note = "??" -, update = "97.11 bibrelex" +, author = "B. Lisper" +, title = "Theory{N}et posting and followup communication" +, month = jul +, year = 1988 +, note = "??" +, update = "97.11 bibrelex" } % ### @misc{ls-agt- -, author = "F. F. Little and J. L. Schwing" -, title = "Automatic Generation of Triangulations" +, author = "F. F. Little and J. L. Schwing" +, title = "Automatic Generation of Triangulations" } @inproceedings{l-imrcp-83 -, author = "J. J. Little" -, title = "An Iterative Method for Reconstructing Convex Polyhedra from Extended {Gaussian} Image" -, booktitle = "Proc. AAAI" -, year = 1983 -, pages = "247--250" -, update = "97.11 bibrelex" +, author = "J. J. Little" +, title = "An Iterative Method for Reconstructing Convex Polyhedra from Extended {Gaussian} Image" +, booktitle = "Proc. AAAI" +, year = 1983 +, pages = "247--250" +, update = "97.11 bibrelex" } @inproceedings{l-doaeg-85 -, author = "J. J. Little" -, title = "Determining Object Attitude from Extended {Gaussian} Image" -, booktitle = "Proc. Internat. Joint Conf. Artif. Intell." -, year = 1985 -, note = "Submitted" -, update = "97.11 bibrelex" +, author = "J. J. Little" +, title = "Determining Object Attitude from Extended {Gaussian} Image" +, booktitle = "Proc. Internat. Joint Conf. Artif. Intell." +, year = 1985 +, note = "Submitted" +, update = "97.11 bibrelex" } @inproceedings{l-egimv-85 -, author = "J. J. Little" -, title = "Extended gaussian images, mixed volumes, and shape reconstruction" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "15--23" -, cites = "bb-deibs-81, b-fodm-84, b-fihs-78, gmw-po-81, g-iscsh-81, g-cp-67, grs-kfcg-83, h-egi-84, i-r3dou-81, ihncf-puopo-83, l-imrcp-83, l-doaeg-85, l-cfp-66, m-aludk-97, ps-coac-82, ph-chfsp-77, s-mplbc-84, s-uesi-79, s-pur-22, t-cpt-62, w-pmdso-80, ZZZ" -, update = "97.11 bibrelex, 93.05 jones" +, author = "J. J. Little" +, title = "Extended gaussian images, mixed volumes, and shape reconstruction" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "15--23" +, cites = "bb-deibs-81, b-fodm-84, b-fihs-78, gmw-po-81, g-iscsh-81, g-cp-67, grs-kfcg-83, h-egi-84, i-r3dou-81, ihncf-puopo-83, l-imrcp-83, l-doaeg-85, l-cfp-66, m-aludk-97, ps-coac-82, ph-chfsp-77, s-mplbc-84, s-uesi-79, s-pur-22, t-cpt-62, w-pmdso-80, ZZZ" +, update = "97.11 bibrelex, 93.05 jones" } @article{lp-rpfit-79 -, author = "J. J. Little and T. K. Peucker" -, title = "A recursive procedure for finding the intersection of two digital curves" -, journal = "Comput. Graph. Image Process." -, volume = 10 -, year = 1979 -, pages = "159--171" +, author = "J. J. Little and T. K. Peucker" +, title = "A recursive procedure for finding the intersection of two digital curves" +, journal = "Comput. Graph. Image Process." +, volume = 10 +, year = 1979 +, pages = "159--171" } @inproceedings{l-lqwia-87 -, author = "N. Littlestone" -, title = "Learning quickly when irrelevant attributes abound: {A} new linear-threshold algorithm" -, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1987 -, pages = "68--77" -, update = "98.03 bibrelex" +, author = "N. Littlestone" +, title = "Learning quickly when irrelevant attributes abound: {A} new linear-threshold algorithm" +, booktitle = "Proc. 28th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1987 +, pages = "68--77" +, update = "98.03 bibrelex" } @techreport{lj-rbtsm-93 -, author = "Anwei Liu and Barry Joe" -, title = "Relationship between tetrahedron shape measures" -, institution = "University of Alberta" -, address = "Edmonton, Alberta, Canada" -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "Anwei Liu and Barry Joe" +, title = "Relationship between tetrahedron shape measures" +, institution = "University of Alberta" +, address = "Edmonton, Alberta, Canada" +, year = 1993 +, update = "93.09 milone+mitchell" } @article{lefm-dvnmp-96 -, author = "C. Liu and D. M. Esterling and J. Fontdecaba and E. Mosel" -, title = "Dimensional Verification of {NC} Machining Profiles Using Extended Quadtrees" -, journal = "Comput. Aided Design" -, volume = 28 -, number = 11 -, month = nov -, year = 1996 -, pages = "845--852" -, update = "97.03 held" +, author = "C. Liu and D. M. Esterling and J. Fontdecaba and E. Mosel" +, title = "Dimensional Verification of {NC} Machining Profiles Using Extended Quadtrees" +, journal = "Comput. Aided Design" +, volume = 28 +, number = 11 +, month = nov +, year = 1996 +, pages = "845--852" +, update = "97.03 held" } @article{ln-dpump-88 -, author = "Robin Liu and Simeon Ntafos" -, title = "On Decomposing Polygons into Uniformly Monotone Parts" -, journal = "Inform. Process. Lett." -, volume = 27 -, number = 2 -, month = feb -, year = 1988 -, pages = "85--89" -, update = "98.03 mitchell" +, author = "Robin Liu and Simeon Ntafos" +, title = "On Decomposing Polygons into Uniformly Monotone Parts" +, journal = "Inform. Process. Lett." +, volume = 27 +, number = 2 +, month = feb +, year = 1988 +, pages = "85--89" +, update = "98.03 mitchell" } @article{ln-prpss-91 -, author = "R. Liu and S. Ntafos" -, title = "On partitioning rectilinear polygons into star-shaped polygons" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "771--800" +, author = "R. Liu and S. Ntafos" +, title = "On partitioning rectilinear polygons into star-shaped polygons" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "771--800" } @inproceedings{ls-smm-85 -, author = "S. Liu and K. Singhal" -, title = "A statistical mosfet model" -, booktitle = "Proc. of the International Conference on Computer-Aided Design" -, site = "San Jose" -, year = 1985 -, pages = "78--80" -, update = "98.03 bibrelex" +, author = "S. Liu and K. Singhal" +, title = "A statistical mosfet model" +, booktitle = "Proc. of the International Conference on Computer-Aided Design" +, site = "San Jose" +, year = 1985 +, pages = "78--80" +, update = "98.03 bibrelex" } @unpublished{lsv-cacsc-86 -, author = "S. Liu and K. Singhal and V. Visivanathan" -, title = "CENTER/ADVICE: A CAD system for circuit design optimization" -, year = 1986 -, note = "Manuscript in preparation" -, update = "98.03 bibrelex" +, author = "S. Liu and K. Singhal and V. Visivanathan" +, title = "CENTER/ADVICE: A CAD system for circuit design optimization" +, year = 1986 +, note = "Manuscript in preparation" +, update = "98.03 bibrelex" } @inproceedings{lg-blbsb-96 -, author = "Shang-Sheng Liu and Rajit Gadh" -, title = "Basic Logical Bulk shapes (BLOBs) for finite element hexahedral mesh generation" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "291--304" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Shang-Sheng Liu and Rajit Gadh" +, title = "Basic Logical Bulk shapes (BLOBs) for finite element hexahedral mesh generation" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "291--304" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{lr-eodbr-90 -, author = "W.-P. Liu and I. Rival" -, title = "Enumerating one-directional blocking relations and embedding them in small areas on the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "138--141" -, cites = "d-rbwdo-84, fpp-sssfe-88, mt-tqcp-85, nru-roptp-90, ru-roptc-88, dtt-arsdd-89, tt-uavrp-86, w-cblsg-85, ZZZ" -, update = "98.07 bibrelex" +, author = "W.-P. Liu and I. Rival" +, title = "Enumerating one-directional blocking relations and embedding them in small areas on the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "138--141" +, cites = "d-rbwdo-84, fpp-sssfe-88, mt-tqcp-85, nru-roptp-90, ru-roptc-88, dtt-arsdd-89, tt-uavrp-86, w-cblsg-85, ZZZ" +, update = "98.07 bibrelex" } @techreport{lmp-sbeac-94 -, author = "Y. Liu and P. Marchioro and R. Petreschi" -, title = "A Single Bend Embedding Algorithm for Cubic Graphs" -, type = "Manuscript" -, year = 1994 -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "Y. Liu and P. Marchioro and R. Petreschi" +, title = "A Single Bend Embedding Algorithm for Cubic Graphs" +, type = "Manuscript" +, year = 1994 +, keywords = "graph drawing" +, update = "95.01 tamassia" } @techreport{lmps-trm1b-90 -, author = "Y. Liu and P. Marchioro and R. Petreschi and B. Simeone" -, title = "Theoretical Results on at Most 1-Bend Embeddability of Graphs" -, type = "Technical Report" -, institution = "Dipartimento di Statistica, Univ. di Roma ``La Sapienza''" -, year = 1990 -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "Y. Liu and P. Marchioro and R. Petreschi and B. Simeone" +, title = "Theoretical Results on at Most 1-Bend Embeddability of Graphs" +, type = "Technical Report" +, institution = "Dipartimento di Statistica, Univ. di Roma ``La Sapienza''" +, year = 1990 +, keywords = "graph drawing" +, update = "95.01 tamassia" } @techreport{lms-la3be-93 -, author = "Y. Liu and A. Morgana and B. Simeone" -, title = "A Linear Algorithm for 3-Bend Embeddings of Planar Graphs in the Grid" -, type = "Manuscript" -, year = 1993 -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "Y. Liu and A. Morgana and B. Simeone" +, title = "A Linear Algorithm for 3-Bend Embeddings of Planar Graphs in the Grid" +, type = "Manuscript" +, year = 1993 +, keywords = "graph drawing" +, update = "95.01 tamassia" } @article{lms-gtrre-91 -, author = "Y. Liu and A. Morgana and B. Simeone" -, title = "General Theoretical Results on Rectilinear Embeddability of Graphs" -, journal = "Acta Math. Appl. Sinica" -, volume = 7 -, year = 1991 -, pages = "187--192" -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "Y. Liu and A. Morgana and B. Simeone" +, title = "General Theoretical Results on Rectilinear Embeddability of Graphs" +, journal = "Acta Math. Appl. Sinica" +, volume = 7 +, year = 1991 +, pages = "187--192" +, keywords = "graph drawing" +, update = "95.01 tamassia" } @article{la-fspdp-95 -, author = "Y.-H. Liu and S. Arimoto" -, title = "Finding the Shortest Path of a Disc Among Polygonal Obstacles Using a Radius-Independent Graph" -, journal = "IEEE Trans. Robot. Autom." -, volume = 11 -, number = 5 -, month = oct -, year = 1995 -, pages = "682--691" -, update = "96.01 held" +, author = "Y.-H. Liu and S. Arimoto" +, title = "Finding the Shortest Path of a Disc Among Polygonal Obstacles Using a Radius-Independent Graph" +, journal = "IEEE Trans. Robot. Autom." +, volume = 11 +, number = 5 +, month = oct +, year = 1995 +, pages = "682--691" +, update = "96.01 held" } @article{ld-smtld-92 -, author = "Z. C. Liu and D. Z. Du" -, title = "On {Steiner} minimal trees with {$L_p$} distance" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "179--191" -, update = "99.03 bibrelex, 98.03 bibrelex" +, author = "Z. C. Liu and D. Z. Du" +, title = "On {Steiner} minimal trees with {$L_p$} distance" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "179--191" +, update = "99.03 bibrelex, 98.03 bibrelex" } @book{l-kt-93 -, author = "C. Livingston" -, title = "Knot Theory" -, publisher = "Mathematical Association of America" -, address = "Washington" -, year = 1993 -, update = "00.11 smid, 00.07 icking, 98.07 orourke" +, author = "C. Livingston" +, title = "Knot Theory" +, publisher = "Mathematical Association of America" +, address = "Washington" +, year = 1993 +, update = "00.11 smid, 00.07 icking, 98.07 orourke" } @article{lsj-noiea-96 -, author = "Y. Livnat and H.-W. Shen and C. R. Johnson" -, title = "A near optimal isosurface extraction algorithm using the span space" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 2 -, year = 1996 -, pages = "73--84" -, update = "98.07 bibrelex" +, author = "Y. Livnat and H.-W. Shen and C. R. Johnson" +, title = "A near optimal isosurface extraction algorithm using the span space" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 2 +, year = 1996 +, pages = "73--84" +, update = "98.07 bibrelex" } @techreport{ls-ipjc-85 -, author = "R. Livne and Micha Sharir" -, title = "On Intersection of Planar {Jordan} Curves" -, type = "Technical {Report}" -, number = 153 -, institution = "Courant Institute of Mathematical Sciences" -, year = 1985 -, comments = "Robotics Report number 37" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "R. Livne and Micha Sharir" +, title = "On Intersection of Planar {Jordan} Curves" +, type = "Technical {Report}" +, number = 153 +, institution = "Courant Institute of Mathematical Sciences" +, year = 1985 +, comments = "Robotics Report number 37" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{l-tspp-77 -, author = "E. L. Lloyd" -, title = "On triangulations of a set of points in the plane" -, booktitle = "Proc. 18th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1977 -, pages = "228--240" +, author = "E. L. Lloyd" +, title = "On triangulations of a set of points in the plane" +, booktitle = "Proc. 18th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1977 +, pages = "228--240" } @article{l-opmr-80 -, author = "J. W. Lloyd" -, title = "Optimal partial-match retrieval" -, journal = "BIT" -, volume = 20 -, year = 1980 -, pages = "406--413" +, author = "J. W. Lloyd" +, title = "Optimal partial-match retrieval" +, journal = "BIT" +, volume = 20 +, year = 1980 +, pages = "406--413" } @article{l-pmrdf-82 -, author = "J. W. Lloyd" -, title = "Partial-match retrieval for dynamic files" -, journal = "BIT" -, volume = 22 -, year = 1982 -, pages = "150--168" +, author = "J. W. Lloyd" +, title = "Partial-match retrieval for dynamic files" +, journal = "BIT" +, volume = 22 +, year = 1982 +, pages = "150--168" } @inproceedings{lms-hscr-92 -, author = "C.-Y. Lo and J. Matou{\v s}ek and W. Steiger" -, title = "Ham-sandwich cuts in {$\Re^d$}" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "539--545" -, update = "96.09 agarwal" +, author = "C.-Y. Lo and J. Matou{\v s}ek and W. Steiger" +, title = "Ham-sandwich cuts in {$\Re^d$}" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "539--545" +, update = "96.09 agarwal" } @article{lms-ahsc-94 -, author = "C.-Y. Lo and J. Matou{\v s}ek and W. L. Steiger" -, title = "Algorithms for ham-sandwich cuts" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "433--452" -, succeeds = "lms-hscr-92" -, update = "97.11 bibrelex, 97.03 agarwal, 96.09 agarwal, 95.01 matousek" +, author = "C.-Y. Lo and J. Matou{\v s}ek and W. L. Steiger" +, title = "Algorithms for ham-sandwich cuts" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "433--452" +, succeeds = "lms-hscr-92" +, update = "97.11 bibrelex, 97.03 agarwal, 96.09 agarwal, 95.01 matousek" } @inproceedings{ls-otahs-90 -, author = "C.-Y. Lo and W. Steiger" -, title = "An optimal-time algorithm for ham-sandwich cuts in the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "5--9" -, cites = "csss-otass-89, csy-khrp-87, e-acg-87, ew-chsct-86, m-cen-89, m-ptlp-85, w-pr-82, ZZZ" -, update = "98.07 bibrelex" +, author = "C.-Y. Lo and W. Steiger" +, title = "An optimal-time algorithm for ham-sandwich cuts in the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "5--9" +, cites = "csss-otass-89, csy-khrp-87, e-acg-87, ew-chsct-86, m-cen-89, m-ptlp-85, w-pr-82, ZZZ" +, update = "98.07 bibrelex" } @article{l-dtncp-89 -, author = "S. H. Lo" -, title = "Delaunay Triangulation Of Non-Convex Planar Domains" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 28 -, number = 11 -, month = nov -, year = 1989 -, pages = "2695--2707" -, keywords = "Delaunay triangulation, planar domains, mesh generation techniques" -, annote = "Triangle quality measure of $$2\sqrt3 \frac{|a\times - b|}{a^2+b^2+c^2}$$. Circumcircle algorithm for CDT. - Keep track of non-Delaunay edges. Initially the - boundary, edges of non-Delaunay triangles are added to - this list, which is all that must be checked for - intersections." -, abstract = "This paper investigates the possibility of integrating - the two currently most popular mesh generation - techniques, namely the method of advancing front and - the Delaunay triangulation algorithm. The merits of the - resulting scheme are its simplicity, efficiency and - versatility. With the introduction of 'non-Delaunay' - line segments, the concept of using Delaunay - triangulation as a means of mesh generation is - clarified. An efficient algorithm is proposed for the - construction of Delaunay triangulations over non-convex - planar domains. Interior nodes are first generated - within the planar domain. These interior nodes and the - boundary nodes are then linked up together to produce a - valid triangulation. Through the study of numerous - examples of various characteristics, it is found that - high-quality triangular element meshes are obtained by - the proposed algorithm, and the mesh generation time - bears a linear relationship with the number of - elements/nodes of the triangulation. (Edited author - abstract) 37 Refs." +, author = "S. H. Lo" +, title = "Delaunay Triangulation Of Non-Convex Planar Domains" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 28 +, number = 11 +, month = nov +, year = 1989 +, pages = "2695--2707" +, keywords = "Delaunay triangulation, planar domains, mesh generation techniques" +, annote = "Triangle quality measure of $$2\sqrt3 \frac{|a\times + b|}{a^2+b^2+c^2}$$. Circumcircle algorithm for CDT. + Keep track of non-Delaunay edges. Initially the + boundary, edges of non-Delaunay triangles are added to + this list, which is all that must be checked for + intersections." +, abstract = "This paper investigates the possibility of integrating + the two currently most popular mesh generation + techniques, namely the method of advancing front and + the Delaunay triangulation algorithm. The merits of the + resulting scheme are its simplicity, efficiency and + versatility. With the introduction of 'non-Delaunay' + line segments, the concept of using Delaunay + triangulation as a means of mesh generation is + clarified. An efficient algorithm is proposed for the + construction of Delaunay triangulations over non-convex + planar domains. Interior nodes are first generated + within the planar domain. These interior nodes and the + boundary nodes are then linked up together to produce a + valid triangulation. Through the study of numerous + examples of various characteristics, it is found that + high-quality triangular element meshes are obtained by + the proposed algorithm, and the mesh generation time + bears a linear relationship with the number of + elements/nodes of the triangulation. (Edited author + abstract) 37 Refs." } @article{l-vdt1v-91 -, author = "S. H. Lo" -, title = "Volume Discretization Into Tetrahedra. {I}. Verification and Orientation of Boundary Surfaces" -, journal = "Comput. Struct." -, volume = 39 -, number = 5 -, year = 1991 -, pages = "493--500" -, annote = "Mesh quality is harmonic mean of $A/(a^2+b^2+c^2)$." +, author = "S. H. Lo" +, title = "Volume Discretization Into Tetrahedra. {I}. Verification and Orientation of Boundary Surfaces" +, journal = "Comput. Struct." +, volume = 39 +, number = 5 +, year = 1991 +, pages = "493--500" +, annote = "Mesh quality is harmonic mean of $A/(a^2+b^2+c^2)$." } @article{l-vdt23-91 -, author = "S. H. Lo" -, title = "Volume Discretization Into Tetrahedra. {II}. 3{D} Triangulation By Advancing Front Approach" -, journal = "Comput. Struct." -, volume = 39 -, number = 5 -, year = 1991 -, pages = "501--511" -, keywords = "discretization, tetrahedra, mesh generation, triangulation, advancing fronts" -, annote = "Doesn't like 3DDT. Advancing front picks next vertex - as one that maximizes `quality' with a lookahead." -, abstract = "Existing methods of automatic mesh generation for 3D - solid objects are reviewed. Although the 3D Delaunay - triangulation recently aroused much attention, its - suitability as a finite element mesh generator is - questioned. Although in 2D Delaunay triangulation, the - 'max-min' angle criterion can be verified over the - entire domain, no equivalent or similar criterion can - be defined for its extension to 3D situations to ensure - that tetrahedron elements so generated are well - proportioned for numerical calculations. In this paper, - a simple but versatile 3D triangulation scheme based on - the advancing front technique for the discretization of - arbitrary volumes is presented. To ensure that the - tetrahedron elements generated are as equilateral as - possible, the ratio of volume of the element to the sum - of squares of edges put into a dimensionless form is - adopted to judge the quality of a tetrahedron element. - The quality of the finite element mesh can thus be - ensured if the shape of each tetrahedron element is - carefully controlled in the mesh construction process. - Through the study of numerous examples of various - characteristics, it is found that high-quality - tetrahedron element meshes are obtained by the proposed - algorithm. (Author abstract) 24 Refs." +, author = "S. H. Lo" +, title = "Volume Discretization Into Tetrahedra. {II}. 3{D} Triangulation By Advancing Front Approach" +, journal = "Comput. Struct." +, volume = 39 +, number = 5 +, year = 1991 +, pages = "501--511" +, keywords = "discretization, tetrahedra, mesh generation, triangulation, advancing fronts" +, annote = "Doesn't like 3DDT. Advancing front picks next vertex + as one that maximizes `quality' with a lookahead." +, abstract = "Existing methods of automatic mesh generation for 3D + solid objects are reviewed. Although the 3D Delaunay + triangulation recently aroused much attention, its + suitability as a finite element mesh generator is + questioned. Although in 2D Delaunay triangulation, the + 'max-min' angle criterion can be verified over the + entire domain, no equivalent or similar criterion can + be defined for its extension to 3D situations to ensure + that tetrahedron elements so generated are well + proportioned for numerical calculations. In this paper, + a simple but versatile 3D triangulation scheme based on + the advancing front technique for the discretization of + arbitrary volumes is presented. To ensure that the + tetrahedron elements generated are as equilateral as + possible, the ratio of volume of the element to the sum + of squares of edges put into a dimensionless form is + adopted to judge the quality of a tetrahedron element. + The quality of the finite element mesh can thus be + ensured if the shape of each tetrahedron element is + carefully controlled in the mesh construction process. + Through the study of numerous examples of various + characteristics, it is found that high-quality + tetrahedron element meshes are obtained by the proposed + algorithm. (Author abstract) 24 Refs." } @inproceedings{ltc-pafaq-95 -, author = "Randy Lober and Timothy J. Tautges and Rich A. Cairncross" -, title = "The Parallelization of an Advancing-front, All-quadrilateral Meshing Algorithm for Adaptive Analysis" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "59--71" -, update = "96.01 samitchell" +, author = "Randy Lober and Timothy J. Tautges and Rich A. Cairncross" +, title = "The Parallelization of an Advancing-front, All-quadrilateral Meshing Algorithm for Adaptive Analysis" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "59--71" +, update = "96.01 samitchell" } @book{l-bc-61 -, author = "E. Lockwood" -, booktitle = "A Book of Curves" -, publisher = "Cambridge University Press" -, address = "Cambridge, UK" -, year = 1961 -, update = "95.09 agarwal" +, author = "E. Lockwood" +, booktitle = "A Book of Curves" +, publisher = "Cambridge University Press" +, address = "Cambridge, UK" +, year = 1961 +, update = "95.09 agarwal" } @article{l-tpst-90 -, author = "M. Loczkovich" -, title = "Tilings of polygons with similar triangles" -, journal = "Combinatorica" -, volume = 10 -, year = 1990 -, pages = "281--306" +, author = "M. Loczkovich" +, title = "Tilings of polygons with similar triangles" +, journal = "Combinatorica" +, volume = 10 +, year = 1990 +, pages = "281--306" } @article{llmp-tddo1-79 -, author = "E. Lodi and F. Luccio and C. Mugnai and L. Pagli" -, title = "On two-dimensional data organization, {Part} {I}" -, journal = "Fundam. Inform." -, volume = 2 -, year = 1979 -, pages = "211--226" -, update = "97.11 bibrelex" +, author = "E. Lodi and F. Luccio and C. Mugnai and L. Pagli" +, title = "On two-dimensional data organization, {Part} {I}" +, journal = "Fundam. Inform." +, volume = 2 +, year = 1979 +, pages = "211--226" +, update = "97.11 bibrelex" } @article{lp-vsvsv-86 -, author = "E. Lodi and L. Pagli" -, title = "A {VLSI} Solution to the Vertical Segment Visibility Problem" -, journal = "IEEE Trans. Comput." -, volume = "C-35" -, number = 10 -, year = 1986 -, pages = "923--928" -, update = "93.09 held" +, author = "E. Lodi and L. Pagli" +, title = "A {VLSI} Solution to the Vertical Segment Visibility Problem" +, journal = "IEEE Trans. Comput." +, volume = "C-35" +, number = 10 +, year = 1986 +, pages = "923--928" +, update = "93.09 held" } @book{l-ssthc-76 -, author = "A. L. Loeb" -, title = "Space Structures, their Harmony and Counterpoint" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1976 +, author = "A. L. Loeb" +, title = "Space Structures, their Harmony and Counterpoint" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1976 } @inproceedings{lhss-96 -, author = "Jes{\'u}s A. de Loera and Serkan Ho{\c s}ten and Francisco Santos and Bernd Sturmfels" -, title = "The Polytope of all Triangulations of a Point Configuration" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "21--24" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Jes{\'u}s A. de Loera and Serkan Ho{\c s}ten and Francisco Santos and Bernd Sturmfels" +, title = "The Polytope of all Triangulations of a Point Configuration" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "21--24" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{l-crtpc-94 -, author = "J. de Loera" -, title = "Computing Regular Traiangulations of Point Configurations" -, type = "Preprint" -, year = 1994 -, update = "97.11 bibrelex" +, author = "J. de Loera" +, title = "Computing Regular Traiangulations of Point Configurations" +, type = "Preprint" +, year = 1994 +, update = "97.11 bibrelex" } @article{lst-gbtsh-95 -, author = "J. de Loera and B. Sturmfels and R. Thomas" -, title = "Gr{\"o}bner bases and triangulation of the second hypersimplex" -, journal = "Combinatorica" -, volume = 15 -, number = 3 -, year = 1995 -, pages = "409--424" -, update = "97.11 bibrelex, 95.05 orourke" +, author = "J. de Loera and B. Sturmfels and R. Thomas" +, title = "Gr{\"o}bner bases and triangulation of the second hypersimplex" +, journal = "Combinatorica" +, volume = 15 +, number = 3 +, year = 1995 +, pages = "409--424" +, update = "97.11 bibrelex, 95.05 orourke" } @techreport{lmtw-vbrtc-97 -, author = "I. P. Logan and W. A. McNeely and J. J. Troy and D. P. Wills" -, title = "Voxel Based Real-Time Collision Detection" -, type = "Manuscript" -, institution = "Univ. Hull" -, year = 1997 -, keywords = "intersection detection, collision detection, voxels, haptics" -, update = "98.03 mitchell" +, author = "I. P. Logan and W. A. McNeely and J. J. Troy and D. P. Wills" +, title = "Voxel Based Real-Time Collision Detection" +, type = "Manuscript" +, institution = "Univ. Hull" +, year = 1997 +, keywords = "intersection detection, collision detection, voxels, haptics" +, update = "98.03 mitchell" } @article{ls-mtoap-83 -, author = "A. W. Lohman and N. Sreibl" -, title = "Map transformation by optical anamorphic processing" -, journal = "Appl. Optics" -, volume = 22 -, number = 6 -, year = 1983 -, pages = "780--783" -, update = "97.11 bibrelex" +, author = "A. W. Lohman and N. Sreibl" +, title = "Map transformation by optical anamorphic processing" +, journal = "Appl. Optics" +, volume = 22 +, number = 6 +, year = 1983 +, pages = "780--783" +, update = "97.11 bibrelex" } @inproceedings{l-sgdd-95 -, author = "Rainald Lohner" -, title = "Surface Gridding from Discrete Data" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "29--45" -, update = "96.01 samitchell" +, author = "Rainald Lohner" +, title = "Surface Gridding from Discrete Data" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "29--45" +, update = "96.01 samitchell" } @inproceedings{lp-gtdug-88 -, author = "Rainald Lohner and Paresh Parikh" -, title = "Generation of three-dimensional unstructured grids by the advancing-front method" -, booktitle = "AIAA 26th Aerospace Sciences Meeting" -, month = jan -, year = 1988 -, note = "AIAA Paper AIAA-88-0515" -, update = "98.11 bibrelex" +, author = "Rainald Lohner and Paresh Parikh" +, title = "Generation of three-dimensional unstructured grids by the advancing-front method" +, booktitle = "AIAA 26th Aerospace Sciences Meeting" +, month = jan +, year = 1988 +, note = "AIAA Paper AIAA-88-0515" +, update = "98.11 bibrelex" } @article{l-tsas-64 -, author = "S. Lojasiewicz" -, title = "Triangulation of semi-analytic sets" -, journal = "Annali della Scuola Normale Superiore de Pisa, Annali Scienze, Fisiche i Mathimatische Serie III" -, volume = 18 -, year = 1964 -, pages = "449--474" -, update = "98.07 bibrelex" +, author = "S. Lojasiewicz" +, title = "Triangulation of semi-analytic sets" +, journal = "Annali della Scuola Normale Superiore de Pisa, Annali Scienze, Fisiche i Mathimatische Serie III" +, volume = 18 +, year = 1964 +, pages = "449--474" +, update = "98.07 bibrelex" } @article{ls-htmim-90 -, author = "D. B. Lomet and B. Salzberg" -, title = "The h{B}-tree: {A} multiattribute indexing method with good guaranteed performance" -, journal = "ACM Trans. Database Syst." -, volume = 15 -, year = 1990 -, pages = "625--658" -, update = "97.07 agarwal" +, author = "D. B. Lomet and B. Salzberg" +, title = "The h{B}-tree: {A} multiattribute indexing method with good guaranteed performance" +, journal = "ACM Trans. Database Syst." +, volume = 15 +, year = 1990 +, pages = "625--658" +, update = "97.07 agarwal" } @inproceedings{l-ccm-94 -, author = "M. J. Longtin" -, title = "Cover and concealment in {ModSAF}" -, booktitle = "Proc. 4th Conf. on Computer Generated Forces and Behavioral Representation" -, year = 1994 -, pages = "239--247" -, update = "98.07 bibrelex" +, author = "M. J. Longtin" +, title = "Cover and concealment in {ModSAF}" +, booktitle = "Proc. 4th Conf. on Computer Generated Forces and Behavioral Representation" +, year = 1994 +, pages = "239--247" +, update = "98.07 bibrelex" } @inproceedings{lm-crm-95 -, author = "M. J. Longtin and D. Megherbi" -, title = "Concealed routes in {ModSAF}" -, booktitle = "Proc. 5th Conf. on Computer Generated Forces and Behavioral Representation" -, year = 1995 -, pages = "305--313" -, update = "98.07 bibrelex" +, author = "M. J. Longtin and D. Megherbi" +, title = "Concealed routes in {ModSAF}" +, booktitle = "Proc. 5th Conf. on Computer Generated Forces and Behavioral Representation" +, year = 1995 +, pages = "305--313" +, update = "98.07 bibrelex" } @incollection{l-cae-83 -, author = "R. Loos" -, title = "Computing in algebraic extensions" -, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" -, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" -, publisher = "Springer-Verlag" -, year = 1983 -, pages = "173--187" -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "R. Loos" +, title = "Computing in algebraic extensions" +, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" +, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" +, publisher = "Springer-Verlag" +, year = 1983 +, pages = "173--187" +, update = "99.11 bibrelex, 98.03 bibrelex" } @incollection{l-gprs-83 -, author = "R. Loos" -, title = "Generalized Polynomial Remainder Sequences" -, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" -, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" -, publisher = "Springer-Verlag" -, address = "Wien" -, year = 1983 -, pages = "115--137" -, update = "00.03 bibrelex, 99.11 bibrelex, 97.11 bibrelex" +, author = "R. Loos" +, title = "Generalized Polynomial Remainder Sequences" +, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" +, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" +, publisher = "Springer-Verlag" +, address = "Wien" +, year = 1983 +, pages = "115--137" +, update = "00.03 bibrelex, 99.11 bibrelex, 97.11 bibrelex" } @inproceedings{l-cv-93 -, author = "Jes{\'u}s Garc{\'\i}a L{\'o}pez and Pedro Ramos-Alonso" -, title = "Circular Visibility" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "61--65" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Jes{\'u}s Garc{\'\i}a L{\'o}pez and Pedro Ramos-Alonso" +, title = "Circular Visibility" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "61--65" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{lm-edpls-96 -, author = "Mario Lopez and Dinesh Mehta" -, title = "Efficient decomposition of polygons into {L}-shapes with applications to {VLSI} layouts" -, journal = "ACM Trans. Design. Autom. Electr. Syst." -, volume = 1 -, number = 3 -, year = 1996 -, pages = "371--395" -, update = "97.11 orourke" +, author = "Mario Lopez and Dinesh Mehta" +, title = "Efficient decomposition of polygons into {L}-shapes with applications to {VLSI} layouts" +, journal = "ACM Trans. Design. Autom. Electr. Syst." +, volume = 1 +, number = 3 +, year = 1996 +, pages = "371--395" +, update = "97.11 orourke" } @article{lr-eacp-00 -, author = "M. A. Lopez and S. Reisner" -, title = "Efficient approximation of convex polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "445--452" -, update = "01.04 smid" +, author = "M. A. Lopez and S. Reisner" +, title = "Efficient approximation of convex polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "445--452" +, update = "01.04 smid" } @phdthesis{l-oltsb-96 -, author = "A. L{\'o}pez-Ortiz" -, title = "On-line target searching in bounded and unbounded domains" -, school = "Univ. Waterloo" -, address = "Waterloo, Canada" -, year = 1996 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex+icking" +, author = "A. L{\'o}pez-Ortiz" +, title = "On-line target searching in bounded and unbounded domains" +, school = "Univ. Waterloo" +, address = "Waterloo, Canada" +, year = 1996 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex+icking" } @inproceedings{ls-gsr-96 -, author = "A. L{\'o}pez-Ortiz and S. Schuierer" -, title = "Generalized streets revisited" -, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 1136 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "546--558" -, update = "98.11 bibrelex, 98.03 mitchell, 97.03 smid" +, author = "A. L{\'o}pez-Ortiz and S. Schuierer" +, title = "Generalized streets revisited" +, booktitle = "Proc. 4th Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 1136 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "546--558" +, update = "98.11 bibrelex, 98.03 mitchell, 97.03 smid" } @techreport{ls-ghtun-94 -, author = "A. L{\'o}pez-Ortiz and S. Schuierer" -, title = "Going home through an unknown neighbourhood" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, Canada" -, year = 1994 -, update = "98.03 bibrelex" +, author = "A. L{\'o}pez-Ortiz and S. Schuierer" +, title = "Going home through an unknown neighbourhood" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, Canada" +, year = 1994 +, update = "98.03 bibrelex" } @inproceedings{ls-ghtus-95 -, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" -, title = "Going Home Through an Unknown Street" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "135--146" -, isbn = "3-540-60220-8" -, update = "99.07 bibrelex, 98.07 icking, 98.03 icking+mitchell, 95.05 mitchell" +, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" +, title = "Going Home Through an Unknown Street" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "135--146" +, isbn = "3-540-60220-8" +, update = "99.07 bibrelex, 98.07 icking, 98.03 icking+mitchell, 95.05 mitchell" } @misc{ls-lbsgs-98 -, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" -, title = "Lower Bounds for Searching on Generalized Streets" -, howpublished = "University of New Brunswick, Canada" -, year = 1998 -, update = "00.03 bibrelex" +, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" +, title = "Lower Bounds for Searching on Generalized Streets" +, howpublished = "University of New Brunswick, Canada" +, year = 1998 +, update = "00.03 bibrelex" } @article{ls-lbsgs-01 -, author = "A. L{\'o}pez-Ortiz and S. Schuierer" -, title = "Lower bounds for streets and generalized streets" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "401--421" -, update = "01.11 smid" +, author = "A. L{\'o}pez-Ortiz and S. Schuierer" +, title = "Lower bounds for streets and generalized streets" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "401--421" +, update = "01.11 smid" } @inproceedings{ls-pinos-97 -, author = "A. L{\'o}pez-Ortiz and S. Schuierer" -, title = "Position-Independent Near Optimal Searching and On-line Recognition in Star Polygons" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "445--447" -, precedes = "ls-pinos-97b" -, cites = "bcr-sp-93, dhs-cspbg-95, di-csgs-94, g-sg-80, ik-skpcs-95, k-wusbd-92, k-olssp-94, l-oltsb-96, ls-ghtus-95, ls-gsr-96, ls-wsf-96, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "A. L{\'o}pez-Ortiz and S. Schuierer" +, title = "Position-Independent Near Optimal Searching and On-line Recognition in Star Polygons" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "445--447" +, precedes = "ls-pinos-97b" +, cites = "bcr-sp-93, dhs-cspbg-95, di-csgs-94, g-sg-80, ik-skpcs-95, k-wusbd-92, k-olssp-94, l-oltsb-96, ls-ghtus-95, ls-gsr-96, ls-wsf-96, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @inproceedings{ls-pinos-97b -, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" -, title = "Position-Independent Near Optimal Searching and On-line Recognition in Star Polygons" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "284--296" -, update = "99.07 bibrelex, 98.03 mitchell" +, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" +, title = "Position-Independent Near Optimal Searching and On-line Recognition in Star Polygons" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "284--296" +, update = "99.07 bibrelex, 98.03 mitchell" } @inproceedings{ls-serst-95 -, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" -, title = "Simple, Efficient and Robust Strategies to Traverse Streets" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "217--222" -, update = "95.09 jones" +, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" +, title = "Simple, Efficient and Robust Strategies to Traverse Streets" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "217--222" +, update = "95.09 jones" } @techreport{ls-ecesc-98 -, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" -, title = "The Exact Cost of Exploring Streets with {CAB}" -, type = "Technical Report" -, institution = "Institut f{\"u}r Informatik, Universit{\"a}t Freiburg" -, year = 1998 -, update = "00.03 bibrelex" +, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" +, title = "The Exact Cost of Exploring Streets with {CAB}" +, type = "Technical Report" +, institution = "Institut f{\"u}r Informatik, Universit{\"a}t Freiburg" +, year = 1998 +, update = "00.03 bibrelex" } @inproceedings{ls-ussmr-98 -, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" -, title = "The Ultimate Strategy to Search on $m$ Rays?" -, booktitle = "Proc. 4th Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '98" -, site = "Taipei, Taiwan" -, series = "Lecture Notes Comput. Sci." -, volume = 1449 -, publisher = "Springer-Verlag" -, year = 1998 -, update = "99.11 bibrelex" +, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" +, title = "The Ultimate Strategy to Search on $m$ Rays?" +, booktitle = "Proc. 4th Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '98" +, site = "Taipei, Taiwan" +, series = "Lecture Notes Comput. Sci." +, volume = 1449 +, publisher = "Springer-Verlag" +, year = 1998 +, update = "99.11 bibrelex" } @inproceedings{ls-wsf-96 -, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" -, title = "Walking Streets Faster" -, booktitle = "Proc. 5th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '96" -, series = "Lecture Notes Comput. Sci." -, volume = 1097 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "345--356" -, isbn = "3-540-61422-2" -, update = "98.07 icking, 98.03 mitchell" +, author = "Alejandro L{\'o}pez-Ortiz and Sven Schuierer" +, title = "Walking Streets Faster" +, booktitle = "Proc. 5th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '96" +, series = "Lecture Notes Comput. Sci." +, volume = 1097 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "345--356" +, isbn = "3-540-61422-2" +, update = "98.07 icking, 98.03 mitchell" } @article{lc-mchr3-87 -, author = "W. Lorensen and H. Cline" -, title = "Marching cubes: a high resolution 3d surface construction algorithm" -, journal = "Comput. Graph." -, volume = 21 -, number = 4 -, year = 1987 -, pages = "163--170" -, update = "98.11 devillers, 97.11 bibrelex" +, author = "W. Lorensen and H. Cline" +, title = "Marching cubes: a high resolution 3d surface construction algorithm" +, journal = "Comput. Graph." +, volume = 21 +, number = 4 +, year = 1987 +, pages = "163--170" +, update = "98.11 devillers, 97.11 bibrelex" } @book{l-cw-83 -, author = "M. Lothaire" -, title = "Combinatorics on Words" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1983 -, update = "98.07 bibrelex" +, author = "M. Lothaire" +, title = "Combinatorics on Words" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1983 +, update = "98.07 bibrelex" } @inproceedings{lsl-oamtc-90 -, author = "R. D. Lou and M. Sarrafzadeh and D. T. Lee" -, title = "An optimal algorithm for the maximum two-chain problem" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "149--158" +, author = "R. D. Lou and M. Sarrafzadeh and D. T. Lee" +, title = "An optimal algorithm for the maximum two-chain problem" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "149--158" } @article{l-sdrtc-96 -, author = "Michael C. Loui and others" -, title = "Strategic Directions in Research in Theory of Computing" -, journal = "ACM Comput. Surv." -, volume = 28 -, number = 4 -, year = 1996 -, pages = "575--590" -, url = "http://geisel.csl.uiuc.edu/~loui/complete.html" -, update = "98.07 tamassia+vismara, 97.03 tamassia" +, author = "Michael C. Loui and others" +, title = "Strategic Directions in Research in Theory of Computing" +, journal = "ACM Comput. Surv." +, volume = 28 +, number = 4 +, year = 1996 +, pages = "575--590" +, url = "http://geisel.csl.uiuc.edu/~loui/complete.html" +, update = "98.07 tamassia+vismara, 97.03 tamassia" } @article{ldw-masat-97 -, author = "M. Lounsbery and T. D. DeRose and J. Warren" -, title = "Multiresolution Analysis for Surfaces of Arbitrary Topological Type" -, journal = "ACM Trans. Graph." -, volume = 16 -, number = 1 -, month = jan -, year = 1997 -, pages = "34--73" -, update = "97.11 held" +, author = "M. Lounsbery and T. D. DeRose and J. Warren" +, title = "Multiresolution Analysis for Surfaces of Arbitrary Topological Type" +, journal = "ACM Trans. Graph." +, volume = 16 +, number = 1 +, month = jan +, year = 1997 +, pages = "34--73" +, update = "97.11 held" } @article{l-tdoad-91 -, author = "A. Louri" -, title = "Three-dimensional optical architecture and data-parallel algorithms for massively parallel computing" -, journal = "IEEE Micro" -, volume = "??" -, month = apr -, year = 1991 -, pages = "24--81" -, update = "98.03 bibrelex" +, author = "A. Louri" +, title = "Three-dimensional optical architecture and data-parallel algorithms for massively parallel computing" +, journal = "IEEE Micro" +, volume = "??" +, month = apr +, year = 1991 +, pages = "24--81" +, update = "98.03 bibrelex" } @article{l-shlpc-70 -, author = "P. P. Loutrel" -, title = "A solution to the hidden-line problem for computer drawn polyhedra" -, journal = "IEEE Trans. Comput." -, volume = "C-19" -, year = 1970 -, pages = "205--213" +, author = "P. P. Loutrel" +, title = "A solution to the hidden-line problem for computer drawn polyhedra" +, journal = "IEEE Trans. Comput." +, volume = "C-19" +, year = 1970 +, pages = "205--213" } @book{l-atngc-86 -, author = "L. Lovasz" -, title = "An Algorithmic Theory of Numbers, Graphs, and Convexity" -, series = "CBMS-NSF Regional Conference Series in Applied Mathematics" -, publisher = "Society of Industrial and Applied Mathematicians" -, address = "Philadelphia, PA" -, year = 1986 -, update = "98.11 bibrelex" +, author = "L. Lovasz" +, title = "An Algorithmic Theory of Numbers, Graphs, and Convexity" +, series = "CBMS-NSF Regional Conference Series in Applied Mathematics" +, publisher = "Society of Industrial and Applied Mathematicians" +, address = "Philadelphia, PA" +, year = 1986 +, update = "98.11 bibrelex" } @book{l-cpe-79 -, author = "L. Lov{\'a}sz" -, title = "Combinatorial Problems and Exercises" -, publisher = "North-Holland" -, year = 1979 -, update = "97.11 bibrelex" +, author = "L. Lov{\'a}sz" +, title = "Combinatorial Problems and Exercises" +, publisher = "North-Holland" +, year = 1979 +, update = "97.11 bibrelex" } @incollection{l-ccs-90 -, author = "L. Lov{\`a}sz" -, title = "Communication complexity: {A} survey" -, booktitle = "Paths, Flows, and VLSI Layout" -, series = "Algorithms and Combinatorics" -, volume = 9 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "235--265" -, update = "98.03 bibrelex" +, author = "L. Lov{\`a}sz" +, title = "Communication complexity: {A} survey" +, booktitle = "Paths, Flows, and VLSI Layout" +, series = "Algorithms and Combinatorics" +, volume = 9 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "235--265" +, update = "98.03 bibrelex" } @article{l-nhl-71 -, author = "L. Lov{\'a}sz" -, title = "On the number of halving lines" -, journal = "Annal. Univ. Scie. Budapest. de Rolando E{\"o}tv{\"o}s Nominatae, Sectio Math." -, volume = 14 -, year = 1971 -, pages = "107--108" -, update = "95.09 agarwal" +, author = "L. Lov{\'a}sz" +, title = "On the number of halving lines" +, journal = "Annal. Univ. Scie. Budapest. de Rolando E{\"o}tv{\"o}s Nominatae, Sectio Math." +, volume = 14 +, year = 1971 +, pages = "107--108" +, update = "95.09 agarwal" } @article{l-roifc-75 -, author = "L. Lov{\'a}sz" -, title = "On the ratio of optimal integral and fractional covers" -, journal = "Discrete Math." -, volume = 13 -, year = 1975 -, pages = "383--390" -, keywords = "approximation" +, author = "L. Lov{\'a}sz" +, title = "On the ratio of optimal integral and fractional covers" +, journal = "Discrete Math." +, volume = 13 +, year = 1975 +, pages = "383--390" +, keywords = "approximation" } @inproceedings{lps-ctc-95 -, author = "L{\'a}szl{\'o} Lov{\'a}sz and J{\'a}nos Pach and Mario Szegedy" -, title = "On Conway's Thrackle Conjecture" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "147--151" -, keywords = "" -, cites = "bf-lamcp-88, b-siec-69, be-cp-48, dett-adgab-94, fs-lda1-35, f-edpsp-40, gj-cninc-83, g-lsh-75, g-tsdg-93, g-cng-72, hp-an1-34, kst-pkz-54, lst-gbtsh-95, pa-cg-95, prs-crtcs-94, prs-pnmcs-91, rsp-sbmc-91, t-nw-77, t-ttcn-70, wb-tgt-78, w-td-69, w-op-72, ZZZ" -, update = "98.03 bibrelex, 97.11 icking, 95.09 mitchell" +, author = "L{\'a}szl{\'o} Lov{\'a}sz and J{\'a}nos Pach and Mario Szegedy" +, title = "On Conway's Thrackle Conjecture" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "147--151" +, keywords = "" +, cites = "bf-lamcp-88, b-siec-69, be-cp-48, dett-adgab-94, fs-lda1-35, f-edpsp-40, gj-cninc-83, g-lsh-75, g-tsdg-93, g-cng-72, hp-an1-34, kst-pkz-54, lst-gbtsh-95, pa-cg-95, prs-crtcs-94, prs-pnmcs-91, rsp-sbmc-91, t-nw-77, t-ttcn-70, wb-tgt-78, w-td-69, w-op-72, ZZZ" +, update = "98.03 bibrelex, 97.11 icking, 95.09 mitchell" } @book{lp-mt-86 -, author = "L. Lovasz and M. D. Plummer" -, title = "Matching Theory" -, series = "Ann. Discrete Math." -, volume = 29 -, publisher = "North-Holland" -, year = 1986 -, update = "96.09 devillers, 95.01 tamassia" +, author = "L. Lovasz and M. D. Plummer" +, title = "Matching Theory" +, series = "Ann. Discrete Math." +, volume = 29 +, publisher = "North-Holland" +, year = 1986 +, update = "96.09 devillers, 95.01 tamassia" } @techreport{ls-gbra-92 -, author = "L. Lovasz and H. E. Scarf" -, title = "The Generalized Basis Reduction Algorithm" -, type = "Cowles Foundation Paper" -, number = 818 -, institution = "Yale University" -, year = 1992 -, update = "98.11 bibrelex" +, author = "L. Lovasz and H. E. Scarf" +, title = "The Generalized Basis Reduction Algorithm" +, type = "Cowles Foundation Paper" +, number = 818 +, institution = "Yale University" +, year = 1992 +, update = "98.11 bibrelex" } @inproceedings{ls-mrmci-90 -, author = "L. Lov{\'a}sz and M. Siminovits" -, title = "The mixing rate of {Markov} chains, an isoperimetric inequality, and computing the volume" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "346--354" -, keywords = "approximation, volume, convex" +, author = "L. Lov{\'a}sz and M. Siminovits" +, title = "The mixing rate of {Markov} chains, an isoperimetric inequality, and computing the volume" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "346--354" +, keywords = "approximation, volume, convex" } @inproceedings{ls-rcvd-92 -, author = "L. Lov{\'a}sz and M. Simonovits" -, title = "On the randomized complexity of volume and diameter" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "482--492" +, author = "L. Lov{\'a}sz and M. Simonovits" +, title = "On the randomized complexity of volume and diameter" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "482--492" } @article{ly-grp-82 -, author = "L. Lovasz and Y. Yemini" -, title = "On generic rigidity in the plane" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 3 -, year = 1982 -, pages = "91--98" -, update = "98.11 bibrelex" +, author = "L. Lovasz and Y. Yemini" +, title = "On generic rigidity in the plane" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 3 +, year = 1982 +, pages = "91--98" +, update = "98.11 bibrelex" } @article{llw-rbceg-88 -, author = "N. Linial L. Lovasz and A. Wigderson" -, title = "Rubber Bands, Convex Embeddings and Graph Connectivity" -, journal = "Combinatorica" -, volume = 8 -, year = 1988 -, pages = "91--102" -, update = "95.09 tamassia" +, author = "N. Linial L. Lovasz and A. Wigderson" +, title = "Rubber Bands, Convex Embeddings and Graph Connectivity" +, journal = "Combinatorica" +, volume = 8 +, year = 1988 +, pages = "91--102" +, update = "95.09 tamassia" } @incollection{l-pg-83 -, author = "L. Lov{\'a}z" -, title = "Perfect Graphs" -, editor = "L. W. Beineke and R. J. Wilson" -, booktitle = "Selected Topics in Graph Theory" -, volume = 2 -, publisher = "Academic Press" -, address = "London, UK" -, year = 1983 -, pages = "55--85" -, update = "98.03 bibrelex" +, author = "L. Lov{\'a}z" +, title = "Perfect Graphs" +, editor = "L. W. Beineke and R. J. Wilson" +, booktitle = "Selected Topics in Graph Theory" +, volume = 2 +, publisher = "Academic Press" +, address = "London, UK" +, year = 1983 +, pages = "55--85" +, update = "98.03 bibrelex" } @techreport{l-tdors-86 -, author = "D. G. Lowe" -, title = "Three-dimensional object recognition from single two-dimensional images" -, type = "Report" -, number = 202 -, institution = "Comput. Sci. Div., New York Univ." -, address = "New York, NY" -, year = 1986 +, author = "D. G. Lowe" +, title = "Three-dimensional object recognition from single two-dimensional images" +, type = "Report" +, number = 202 +, institution = "Comput. Sci. Div., New York Univ." +, address = "New York, NY" +, year = 1986 } @techreport{l-smpag-86 -, author = "T. Lozano-P{\'e}rez" -, title = "A simple motion planning algorithm for general robot manipulators" -, type = "Technical {Report}" -, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1986 -, update = "98.03 bibrelex" +, author = "T. Lozano-P{\'e}rez" +, title = "A simple motion planning algorithm for general robot manipulators" +, type = "Technical {Report}" +, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1986 +, update = "98.03 bibrelex" } @article{l-smpag-87 -, author = "T. Lozano-P{\'e}rez" -, title = "A simple motion planning algorithm for general robot manipulators" -, journal = "IEEE Trans. Robot. Autom." -, volume = "RA-3" -, number = 3 -, year = 1987 -, pages = "224--238" -, update = "02.03 orourke" +, author = "T. Lozano-P{\'e}rez" +, title = "A simple motion planning algorithm for general robot manipulators" +, journal = "IEEE Trans. Robot. Autom." +, volume = "RA-3" +, number = 3 +, year = 1987 +, pages = "224--238" +, update = "02.03 orourke" } @article{l-apmtm-81 -, author = "T. Lozano-P{\'e}rez" -, title = "Automatic planning of manipulator transfer movements" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-11" -, number = 10 -, year = 1981 -, pages = "681--698" +, author = "T. Lozano-P{\'e}rez" +, title = "Automatic planning of manipulator transfer movements" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-11" +, number = 10 +, year = 1981 +, pages = "681--698" } @inproceedings{l-rp-83 -, author = "T. Lozano-P{\'e}rez" -, title = "Robot programming" -, booktitle = "IEEE Poceedings" -, year = 1983 -, update = "98.03 bibrelex" +, author = "T. Lozano-P{\'e}rez" +, title = "Robot programming" +, booktitle = "IEEE Poceedings" +, year = 1983 +, update = "98.03 bibrelex" } @article{l-spcsa-83 -, author = "T. Lozano-P{\'e}rez" -, title = "Spatial planning: {A} configuration space approach" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, year = 1983 -, pages = "108--120" +, author = "T. Lozano-P{\'e}rez" +, title = "Spatial planning: {A} configuration space approach" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, year = 1983 +, pages = "108--120" } @article{lmt-asfms-84 -, author = "T. Lozano-P{\'e}rez and M. T. Mason and R. Taylor" -, title = "Automatic Synthesis of Fine-Motion Strategies for Robots" -, journal = "Internat. J. Robot. Res." -, volume = 3 -, number = 1 -, year = 1984 -, update = "93.09 milone+mitchell" +, author = "T. Lozano-P{\'e}rez and M. T. Mason and R. Taylor" +, title = "Automatic Synthesis of Fine-Motion Strategies for Robots" +, journal = "Internat. J. Robot. Res." +, volume = 3 +, number = 1 +, year = 1984 +, update = "93.09 milone+mitchell" } @article{lw-apcfp-79 -, author = "T. Lozano-P{\'e}rez and M. A. Wesley" -, title = "An algorithm for planning collision-free paths among polyhedral obstacles" -, journal = "Commun. ACM" -, volume = 22 -, number = 10 -, year = 1979 -, pages = "560--570" -, update = "98.11 bibrelex" +, author = "T. Lozano-P{\'e}rez and M. A. Wesley" +, title = "An algorithm for planning collision-free paths among polyhedral obstacles" +, journal = "Commun. ACM" +, volume = 22 +, number = 10 +, year = 1979 +, pages = "560--570" +, update = "98.11 bibrelex" } @inproceedings{l-cvdmc-85 -, author = "M. Lu" -, title = "Constructing the {Voronoi} diagram on a mesh-connected computer" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1985 -, pages = "806--811" -, update = "98.07 bibrelex" +, author = "M. Lu" +, title = "Constructing the {Voronoi} diagram on a mesh-connected computer" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1985 +, pages = "806--811" +, update = "98.07 bibrelex" } @inproceedings{l-dprcq-85 -, author = "A. Lubiw" -, title = "Decomposing polygonal regions into convex quadrilaterals" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "97--106" -, cites = "ahu-daca-74, cd-dpicp-79, eow-sgrag-84, f-spcwt-78, gj-cigtn-79, gjpt-tsp-78, k-dpsc-83, kkk-tgrfw-83, l-pftu-82, l-pnrh-82, lprs-meldr-, o-aprag-83, ps-dtram-80, lllmp-tddo2-79, s-oadrp-82, sh-gip-76, t-prgc-80, t-dsna-83, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "A. Lubiw" +, title = "Decomposing polygonal regions into convex quadrilaterals" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "97--106" +, cites = "ahu-daca-74, cd-dpicp-79, eow-sgrag-84, f-spcwt-78, gj-cigtn-79, gjpt-tsp-78, k-dpsc-83, kkk-tgrfw-83, l-pftu-82, l-pnrh-82, lprs-meldr-, o-aprag-83, ps-dtram-80, lllmp-tddo2-79, s-oadrp-82, sh-gip-76, t-prgc-80, t-dsna-83, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex" } @phdthesis{l-ocopg-85 -, author = "A. Lubiw" -, title = "Ordering and some Combinatorial optimization Problems with some Geometric Applications" -, school = "University of Waterloo" -, year = 1985 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "A. Lubiw" +, title = "Ordering and some Combinatorial optimization Problems with some Geometric Applications" +, school = "University of Waterloo" +, year = 1985 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @techreport{l-bbpcp-88 -, author = "A. Lubiw" -, title = "The Boolean Basis Problem and how to Cover Polygons by Rectangles" -, type = "Manuscript" -, institution = "University of Waterloo" -, year = 1988 -, update = "98.07 bibrelex" +, author = "A. Lubiw" +, title = "The Boolean Basis Problem and how to Cover Polygons by Rectangles" +, type = "Manuscript" +, institution = "University of Waterloo" +, year = 1988 +, update = "98.07 bibrelex" } @inproceedings{lm-igvgs-94 -, author = "A. Lubiw and N. Mouawad" -, title = "Interval Graphs as Visibility Graphs of Simple Polygons, Part I: Parachutes" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "18--23" -, cites = "c-vpgr-92, o-agta-87, o-cgc18-93a, ec-rvgsp-90, g-rcvgs-88, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "A. Lubiw and N. Mouawad" +, title = "Interval Graphs as Visibility Graphs of Simple Polygons, Part I: Parachutes" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "18--23" +, cites = "c-vpgr-92, o-agta-87, o-cgc18-93a, ec-rvgsp-90, g-rcvgs-88, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @techreport{lo-wcpfp-96 -, author = "A. Lubiw and J. O'Rourke" -, title = "When can a polygon fold to a polytope?" -, type = "Technical {Report}" -, number = 048 -, institution = "Dept. Comput. Sci., Smith College" -, month = jun -, year = 1996 -, note = "Presented at AMS Conf., 5 Oct. 1996" -, keywords = "polytopes" -, update = "96.09 orourke" +, author = "A. Lubiw and J. O'Rourke" +, title = "When can a polygon fold to a polytope?" +, type = "Technical {Report}" +, number = 048 +, institution = "Dept. Comput. Sci., Smith College" +, month = jun +, year = 1996 +, note = "Presented at AMS Conf., 5 Oct. 1996" +, keywords = "polytopes" +, update = "96.09 orourke" } @inproceedings{ls-mogar-93 -, author = "A. Lubiw and N. Sleumer" -, title = "Maximal outerplanar graphs are relative neighborhood graphs" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "198--203" -, cites = "am-rngtd-92a, bll-cpt-93t, c-psepg-92, d-rdt-90, jt-rngtr-92, ms-pggrg-80, o-agta-87, s-rngam-83, t-rngfp-80, u-spper-83, v-gng-92, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "A. Lubiw and N. Sleumer" +, title = "Maximal outerplanar graphs are relative neighborhood graphs" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "198--203" +, cites = "am-rngtd-92a, bll-cpt-93t, c-psepg-92, d-rdt-90, jt-rngtr-92, ms-pggrg-80, o-agta-87, s-rngam-83, t-rngfp-80, u-spper-83, v-gng-92, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{lps-eerc-86 -, author = "A. Lubotzky and R. Phillips and P. Sarnak" -, title = "Explicit expanders and the {Ramanujan} conjectures" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "240--246" -, precedes = "lps-rg-88" -, update = "98.11 bibrelex" +, author = "A. Lubotzky and R. Phillips and P. Sarnak" +, title = "Explicit expanders and the {Ramanujan} conjectures" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "240--246" +, precedes = "lps-rg-88" +, update = "98.11 bibrelex" } @article{lps-rg-88 -, author = "A. Lubotzky and R. Phillips and P. Sarnak" -, title = "Ramanujan graphs" -, journal = "Combinatorica" -, volume = 8 -, year = 1988 -, pages = "261--277" -, succeeds = "lps-eerc-86" -, update = "98.11 bibrelex, 95.01 matousek" +, author = "A. Lubotzky and R. Phillips and P. Sarnak" +, title = "Ramanujan graphs" +, journal = "Combinatorica" +, volume = 8 +, year = 1988 +, pages = "261--277" +, succeeds = "lps-eerc-86" +, update = "98.11 bibrelex, 95.01 matousek" } @inproceedings{l-spami-85 -, author = "M. Luby" -, title = "A Simple Parallel Algorithm for the Maximal Independent Set Problem" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "1--10" -, update = "98.03 bibrelex" +, author = "M. Luby" +, title = "A Simple Parallel Algorithm for the Maximal Independent Set Problem" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "1--10" +, update = "98.03 bibrelex" } @article{l-spami-86 -, author = "M. Luby" -, title = "A simple parallel algorithm for the maximal independent set problem" -, journal = "SIAM J. Comput." -, volume = 15 -, number = 4 -, year = 1986 -, pages = "1036--1053" -, update = "96.09 orourke" +, author = "M. Luby" +, title = "A simple parallel algorithm for the maximal independent set problem" +, journal = "SIAM J. Comput." +, volume = 15 +, number = 4 +, year = 1986 +, pages = "1036--1053" +, update = "96.09 orourke" } @inproceedings{l-rrpcw-88 -, author = "M. Luby" -, title = "Removing randomness in parallel computation without a processor penalty" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "162--173" -, update = "96.09 orourke" +, author = "M. Luby" +, title = "Removing randomness in parallel computation without a processor penalty" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "162--173" +, update = "96.09 orourke" } @incollection{l-ggwpp-88 -, author = "M. G. Luby" -, title = "Grid geometries which preserve properties of {Euclidean} geometry: a study of graphics line drawing algorithms" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "397--432" -, update = "99.11 bibrelex" +, author = "M. G. Luby" +, title = "Grid geometries which preserve properties of {Euclidean} geometry: a study of graphics line drawing algorithms" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "397--432" +, update = "99.11 bibrelex" } @article{l-rgbth-88 -, author = "J. Lucas" -, title = "The rotation graph of binary trees is {Hamiltonian}" -, journal = "J. Algorithms" -, volume = 9 -, year = 1988 -, pages = "503--535" -, update = "97.11 bibrelex" +, author = "J. Lucas" +, title = "The rotation graph of binary trees is {Hamiltonian}" +, journal = "J. Algorithms" +, volume = 9 +, year = 1988 +, pages = "503--535" +, update = "97.11 bibrelex" } @article{lrr-rgbth-93 -, author = "J. Lucas and D. {Roelants van Baronaigien} and F. Ruskey" -, title = "On rotations and the generation of binary trees {Hamiltonian}" -, journal = "J. Algorithms" -, volume = 15 -, year = 1993 -, pages = "343--366" -, update = "97.11 bibrelex" +, author = "J. Lucas and D. {Roelants van Baronaigien} and F. Ruskey" +, title = "On rotations and the generation of binary trees {Hamiltonian}" +, journal = "J. Algorithms" +, volume = 15 +, year = 1993 +, pages = "343--366" +, update = "97.11 bibrelex" } @article{lmw-nvg-87 -, author = "F. Luccio and S. Mazzone and C. Wong" -, title = "A Note on Visibility Graphs" -, journal = "Discrete Math." -, volume = 64 -, year = 1987 -, pages = "209--219" -, keywords = "graph drawing" -, update = "94.01 tamassia, 93.09 tamassia" +, author = "F. Luccio and S. Mazzone and C. Wong" +, title = "A Note on Visibility Graphs" +, journal = "Discrete Math." +, volume = 64 +, year = 1987 +, pages = "209--219" +, keywords = "graph drawing" +, update = "94.01 tamassia, 93.09 tamassia" } @article{lp-ubrdb-89 -, author = "F. Luccio and L. Pagli" -, title = "On The Upper Bound On The Rotation Distance Of Binary Trees" -, journal = "Inform. Process. Lett." -, volume = 31 -, number = 2 -, month = apr -, year = 1989 -, pages = "57--60" -, keywords = "rotation distance, binary search trees, upper bounds, tree transformation algorithm" -, annote = "Exhibits an algorithm to transform from one tree to - another by rotations." -, abstract = "The rotation distance d(T//1,T//2) between two binary - search trees T//1 and T//2 on n nodes is the minimum - number of rotations needed to transform T//1 into T//2. - D.D. Sleator, R.E. Tarjan and W.R. Thurston have proved - an upper bound 2n minus 6 to d(T//1,T//2), using - triangulation of polyhedra. Makinen has subsequently - shown that a weaker upper bound of 2n minus 5 can be - simply proved with elementary tree concepts. In this - note we present a new tree transformation algorithm, - leading to an elementary proof of the bound 2n minus 6. - (Author abstract) 4 Refs." +, author = "F. Luccio and L. Pagli" +, title = "On The Upper Bound On The Rotation Distance Of Binary Trees" +, journal = "Inform. Process. Lett." +, volume = 31 +, number = 2 +, month = apr +, year = 1989 +, pages = "57--60" +, keywords = "rotation distance, binary search trees, upper bounds, tree transformation algorithm" +, annote = "Exhibits an algorithm to transform from one tree to + another by rotations." +, abstract = "The rotation distance d(T//1,T//2) between two binary + search trees T//1 and T//2 on n nodes is the minimum + number of rotations needed to transform T//1 into T//2. + D.D. Sleator, R.E. Tarjan and W.R. Thurston have proved + an upper bound 2n minus 6 to d(T//1,T//2), using + triangulation of polyhedra. Makinen has subsequently + shown that a weaker upper bound of 2n minus 5 can be + simply proved with elementary tree concepts. In this + note we present a new tree transformation algorithm, + leading to an elementary proof of the bound 2n minus 6. + (Author abstract) 4 Refs." } @article{lpp-nsdsp-90 -, author = "F. Luccio and A. Pietracaprina and G. Pucci" -, title = "A new scheme for the deterministic simulation of PRAMs in VLSI" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "529--544" -, update = "96.09 orourke" +, author = "F. Luccio and A. Pietracaprina and G. Pucci" +, title = "A new scheme for the deterministic simulation of PRAMs in VLSI" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "529--544" +, update = "96.09 orourke" } @article{l-srass-95 -, author = "W. Ludwig" -, title = "A Subexponential Randomized Algorithm for the Simple Stochastic Game Problem" -, journal = "Inform. Comput." -, volume = 117 -, number = 1 -, year = 1995 -, pages = "151--155" -, update = "97.03 gaertner+salinger" +, author = "W. Ludwig" +, title = "A Subexponential Randomized Algorithm for the Simple Stochastic Game Problem" +, journal = "Inform. Comput." +, volume = 117 +, number = 1 +, year = 1995 +, pages = "151--155" +, update = "97.03 gaertner+salinger" } @inproceedings{le-vdsap-97 -, author = "David Luebke and Carl Erikson" -, title = "View-Dependent Simplification of Arbitrary Polygonal Environments" -, booktitle = "Proc. SIGGRAPH '97" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "ACM Press" -, month = aug -, year = 1997 -, pages = "199--208" -, update = "98.07 agarwal, 98.03 agarwal+mitchell" +, author = "David Luebke and Carl Erikson" +, title = "View-Dependent Simplification of Arbitrary Polygonal Environments" +, booktitle = "Proc. SIGGRAPH '97" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "ACM Press" +, month = aug +, year = 1997 +, pages = "199--208" +, update = "98.07 agarwal, 98.03 agarwal+mitchell" } @inproceedings{lg-pmsfe-95 -, author = "D. Luebke and C. Georges" -, title = "Portals and mirrors: {Simple}, fast evaluation of potentially visible sets" -, booktitle = "Proc. ACM Interactive 3D Graphics Conf." -, site = "Monterey, CA" -, year = 1995 -, update = "98.07 bibrelex" +, author = "D. Luebke and C. Georges" +, title = "Portals and mirrors: {Simple}, fast evaluation of potentially visible sets" +, booktitle = "Proc. ACM Interactive 3D Graphics Conf." +, site = "Monterey, CA" +, year = 1995 +, update = "98.07 bibrelex" } @inproceedings{l-dsorq-78 -, author = "G. S. Lueker" -, title = "A data structure for orthogonal range queries" -, booktitle = "Proc. 19th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1978 -, pages = "28--34" -, precedes = "lw-dsdrq-82" -, update = "97.11 bibrelex" +, author = "G. S. Lueker" +, title = "A data structure for orthogonal range queries" +, booktitle = "Proc. 19th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1978 +, pages = "28--34" +, precedes = "lw-dsdrq-82" +, update = "97.11 bibrelex" } @techreport{l-tarrc-79 -, author = "G. S. Lueker" -, title = "A transformation for adding range restriction capability to dynamic data structures for decomposable searching problems" -, type = "Report" -, number = "R129" -, institution = "Dept. Inform. Comput. Sci., Univ. California" -, address = "Irvine, CA" -, year = 1979 +, author = "G. S. Lueker" +, title = "A transformation for adding range restriction capability to dynamic data structures for decomposable searching problems" +, type = "Report" +, number = "R129" +, institution = "Dept. Inform. Comput. Sci., Univ. California" +, address = "Irvine, CA" +, year = 1979 } @inproceedings{lmr-lptvp-86 -, author = "G. S. Lueker and N. Megiddo and V. Ramachandran" -, title = "Linear programming with two variables per inequality in poly log time" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "196--205" -, keywords = "parallel computation, linear programming, $d$-dimensional" -, precedes = "lmr-lptvp-90" +, author = "G. S. Lueker and N. Megiddo and V. Ramachandran" +, title = "Linear programming with two variables per inequality in poly log time" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "196--205" +, keywords = "parallel computation, linear programming, $d$-dimensional" +, precedes = "lmr-lptvp-90" } @article{lmr-lptvp-90 -, author = "G. S. Lueker and N. Megiddo and V. Ramachandran" -, title = "Linear programming with two variables per inequality in poly log time" -, journal = "SIAM J. Comput." -, volume = 19 -, year = 1990 -, pages = "1000--1010" -, keywords = "parallel computation, linear programming, $d$-dimensional" -, succeeds = "lmr-lptvp-86" +, author = "G. S. Lueker and N. Megiddo and V. Ramachandran" +, title = "Linear programming with two variables per inequality in poly log time" +, journal = "SIAM J. Comput." +, volume = 19 +, year = 1990 +, pages = "1000--1010" +, keywords = "parallel computation, linear programming, $d$-dimensional" +, succeeds = "lmr-lptvp-86" } @article{lw-dsdrq-82 -, author = "G. S. Lueker and D. E. Willard" -, title = "A data structure for dynamic range queries" -, journal = "Inform. Process. Lett." -, volume = 15 -, number = 5 -, year = 1982 -, pages = "209--213" -, succeeds = "l-dsorq-78" -, update = "97.11 bibrelex" +, author = "G. S. Lueker and D. E. Willard" +, title = "A data structure for dynamic range queries" +, journal = "Inform. Process. Lett." +, volume = 15 +, number = 5 +, year = 1982 +, pages = "209--213" +, succeeds = "l-dsorq-78" +, update = "97.11 bibrelex" } @inproceedings{l-hdspl-89 -, author = "H. Lukatela" -, title = "Hipparchus data structures: {Points}, lines and regions in spherical {Voronoi} grid" -, booktitle = "Proc. 9th Internat. Sympos. Comput.-Assist. Cartog." -, year = 1989 -, pages = "164--170" -, update = "93.05 freimer" +, author = "H. Lukatela" +, title = "Hipparchus data structures: {Points}, lines and regions in spherical {Voronoi} grid" +, booktitle = "Proc. 9th Internat. Sympos. Comput.-Assist. Cartog." +, year = 1989 +, pages = "164--170" +, update = "93.05 freimer" } @techreport{lc-rtns-93 -, author = "W. L. Luken and F. Cheng" -, title = "Rendering trimmed {NURB} surfaces" -, type = "Research {Report}" -, number = "18669 (81711)" -, institution = "IBM Research Division" -, year = 1993 -, update = "97.11 bibrelex" +, author = "W. L. Luken and F. Cheng" +, title = "Rendering trimmed {NURB} surfaces" +, type = "Research {Report}" +, number = "18669 (81711)" +, institution = "IBM Research Division" +, year = 1993 +, update = "97.11 bibrelex" } @inproceedings{l-nrftg-99 -, author = "T. Lukovszki" -, title = "New results on fault tolerant geometric spanners" -, booktitle = "Proc. 6th Workshop Algorithms Data Struct." -, nickname = "WADS '99" -, site = "Vancouver, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1663 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "193--204" -, update = "00.03 smid, 99.11 bibrelex, 99.07 smid" +, author = "T. Lukovszki" +, title = "New results on fault tolerant geometric spanners" +, booktitle = "Proc. 6th Workshop Algorithms Data Struct." +, nickname = "WADS '99" +, site = "Vancouver, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1663 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "193--204" +, update = "00.03 smid, 99.11 bibrelex, 99.07 smid" } @phdthesis{l-nrgst-99 -, author = "T. Lukovszki" -, title = "New results on geometric spanners and their applications" -, type = "Ph.{D}. Thesis" -, school = "Department of Computer Science, University of Paderborn" -, address = "Paderborn, Germany" -, year = 1999 -, keywords = "doctoral thesis" -, update = "00.11 smid, 00.07 smid" +, author = "T. Lukovszki" +, title = "New results on geometric spanners and their applications" +, type = "Ph.{D}. Thesis" +, school = "Department of Computer Science, University of Paderborn" +, address = "Paderborn, Germany" +, year = 1999 +, keywords = "doctoral thesis" +, update = "00.11 smid, 00.07 smid" } @article{l-marci-70 -, author = "V. Y. Lum" -, title = "Multi-attribute retrieval with combined indexes" -, journal = "Commun. ACM" -, volume = 13 -, year = 1970 -, pages = "660--665" +, author = "V. Y. Lum" +, title = "Multi-attribute retrieval with combined indexes" +, journal = "Commun. ACM" +, volume = 13 +, year = 1970 +, pages = "660--665" } @article{l-dpppa-87 -, author = "V. J. Lumelski" -, title = "Dynamic path planning for planar articulated robot arm moving amidst moving obstacles" -, journal = "Automatica" -, volume = "??" -, year = 1987 -, note = "To appear" -, update = "98.03 bibrelex" +, author = "V. J. Lumelski" +, title = "Dynamic path planning for planar articulated robot arm moving amidst moving obstacles" +, journal = "Automatica" +, volume = "??" +, year = 1987 +, note = "To appear" +, update = "98.03 bibrelex" } @inproceedings{ls-pivrn-88 -, author = "V. Lumelsky and T. Skewis" -, title = "A paradigm for incorporating vision in the robot navigation function" -, booktitle = "Proc. 1988 IEEE Internat. Conf. Robot. Autom." -, site = "Philadelphia" -, month = apr -, year = 1988 +, author = "V. Lumelsky and T. Skewis" +, title = "A paradigm for incorporating vision in the robot navigation function" +, booktitle = "Proc. 1988 IEEE Internat. Conf. Robot. Autom." +, site = "Philadelphia" +, month = apr +, year = 1988 } @article{l-csplp-91 -, author = "V. J. Lumelsky" -, title = "A Comparative Study on the Path Length Performance of Maze-Searching and Robot Motion Planning Algorithms" -, journal = "IEEE Trans. Robot. Autom." -, volume = 7 -, number = 1 -, year = 1991 -, pages = "57--66" +, author = "V. J. Lumelsky" +, title = "A Comparative Study on the Path Length Performance of Maze-Searching and Robot Motion Planning Algorithms" +, journal = "IEEE Trans. Robot. Autom." +, volume = 7 +, number = 1 +, year = 1991 +, pages = "57--66" } @article{l-acirm-87 -, author = "V. J. Lumelsky" -, title = "Algorithmic and Complexity Issues of Robot Motion in an Uncertain Environment" -, journal = "J. Complexity" -, volume = 3 -, year = 1987 -, pages = "146--182" -, update = "96.09 devillers" +, author = "V. J. Lumelsky" +, title = "Algorithmic and Complexity Issues of Robot Motion in an Uncertain Environment" +, journal = "J. Complexity" +, volume = 3 +, year = 1987 +, pages = "146--182" +, update = "96.09 devillers" } @inproceedings{l-aisbr-87 -, author = "V. J. Lumelsky" -, title = "Algorithmic Issues of Sensor-Based Robot Motion Planning" -, booktitle = "Proc. 26th IEEE Conf. Decision Control" -, year = 1987 -, pages = "1796--1801" -, update = "98.03 mitchell" +, author = "V. J. Lumelsky" +, title = "Algorithmic Issues of Sensor-Based Robot Motion Planning" +, booktitle = "Proc. 26th IEEE Conf. Decision Control" +, year = 1987 +, pages = "1796--1801" +, update = "98.03 mitchell" } @inproceedings{l-cmpue-86 -, author = "V. J. Lumelsky" -, title = "Continous motion planning in unknown environment for a $3$d cartesian robot arm" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1986 -, pages = "1569--1574" -, update = "98.03 bibrelex" +, author = "V. J. Lumelsky" +, title = "Continous motion planning in unknown environment for a $3$d cartesian robot arm" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1986 +, pages = "1569--1574" +, update = "98.03 bibrelex" } @article{l-ekdpp-87 -, author = "V. J. Lumelsky" -, title = "Effect of Kinematics on Dynamic Path Planning for Planar Robot Arms Moving Amidst Unknown Obstacles" -, journal = "Internat. J. Robot. Autom." -, volume = "RA-3" -, number = 3 -, year = 1987 -, pages = "207--223" +, author = "V. J. Lumelsky" +, title = "Effect of Kinematics on Dynamic Path Planning for Planar Robot Arms Moving Amidst Unknown Obstacles" +, journal = "Internat. J. Robot. Autom." +, volume = "RA-3" +, number = 3 +, year = 1987 +, pages = "207--223" } @article{l-fcdbl-85 -, author = "V. J. Lumelsky" -, title = "On fast computation of distance between line segments" -, journal = "Inform. Process. Lett." -, volume = 21 -, year = 1985 -, pages = "55--61" +, author = "V. J. Lumelsky" +, title = "On fast computation of distance between line segments" +, journal = "Inform. Process. Lett." +, volume = 21 +, year = 1985 +, pages = "55--61" } @article{lms-dppsb-90 -, author = "V. J. Lumelsky and S. Mukhopadhyay and K. Sun" -, title = "Dynamic Path Planning in Sensor-Based Terrain Acquisition" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, number = 4 -, month = aug -, year = 1990 -, pages = "462--472" +, author = "V. J. Lumelsky and S. Mukhopadhyay and K. Sun" +, title = "Dynamic Path Planning in Sensor-Based Terrain Acquisition" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, number = 4 +, month = aug +, year = 1990 +, pages = "462--472" } @article{ls-irsrn-90 -, author = "V. J. Lumelsky and T. Skewis" -, title = "Incorporating Range Sensing in the Robot Navigation Function" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 20 -, number = 5 -, year = 1990 -, pages = "1058--1069" +, author = "V. J. Lumelsky and T. Skewis" +, title = "Incorporating Range Sensing in the Robot Navigation Function" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 20 +, number = 5 +, year = 1990 +, pages = "1058--1069" } @article{ls-dppma-86 -, author = "V. J. Lumelsky and A. A. Stepanov" -, title = "Dynamic Path Planning for a Mobile Automaton with Limited Information on the Environment" -, journal = "IEEE Trans. Autom. Control" -, volume = "AC-31" -, year = 1986 -, pages = "1058--1063" +, author = "V. J. Lumelsky and A. A. Stepanov" +, title = "Dynamic Path Planning for a Mobile Automaton with Limited Information on the Environment" +, journal = "IEEE Trans. Autom. Control" +, volume = "AC-31" +, year = 1986 +, pages = "1058--1063" } @article{ls-ppspm-87 -, author = "V. J. Lumelsky and A. A. Stepanov" -, title = "Path-planning strategies for a point mobile automaton moving amidst unknown obstacles of arbitrary shape" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "403--430" +, author = "V. J. Lumelsky and A. A. Stepanov" +, title = "Path-planning strategies for a point mobile automaton moving amidst unknown obstacles of arbitrary shape" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "403--430" } @article{ls-ummpu-90 -, author = "V. J. Lumelsky and K. Sun" -, title = "A Unified Methodology for Motion Planning with Uncertainty for 2D and 3D Two-Link Robot Arm Manipulators" -, journal = "Internat. J. Robot. Res." -, volume = 9 -, number = 5 -, year = 1990 -, pages = "89--104" +, author = "V. J. Lumelsky and K. Sun" +, title = "A Unified Methodology for Motion Planning with Uncertainty for 2D and 3D Two-Link Robot Arm Manipulators" +, journal = "Internat. J. Robot. Res." +, volume = 9 +, number = 5 +, year = 1990 +, pages = "89--104" } @article{ls-ppuoc-92 -, author = "V. J. Lumelsky and K. Sun" -, title = "Path Planning Among Unknown Obstacles: {The} Case of a 3D Cartesian Arm" -, journal = "IEEE Trans. Robot. Autom." -, volume = 8 -, number = 6 -, year = 1992 -, pages = "??" +, author = "V. J. Lumelsky and K. Sun" +, title = "Path Planning Among Unknown Obstacles: {The} Case of a 3D Cartesian Arm" +, journal = "IEEE Trans. Robot. Autom." +, volume = 8 +, number = 6 +, year = 1992 +, pages = "??" } @inproceedings{ly-hamp-93 -, author = "C. Lund and M. Yannakakis" -, title = "On the hardness of approximating minimization problems" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "286--293" -, update = "98.03 bibrelex" +, author = "C. Lund and M. Yannakakis" +, title = "On the hardness of approximating minimization problems" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "286--293" +, update = "98.03 bibrelex" } @article{ly-ohamp-94 -, author = "Carsten Lund and Mihalis Yannakakis" -, title = "On the Hardness of Approximating Minimization Problems" -, journal = "J. ACM" -, volume = 41 -, number = 5 -, year = 1994 -, pages = "960--981" -, update = "98.03 agarwal" +, author = "Carsten Lund and Mihalis Yannakakis" +, title = "On the Hardness of Approximating Minimization Problems" +, journal = "J. ACM" +, volume = 41 +, number = 5 +, year = 1994 +, pages = "960--981" +, update = "98.03 agarwal" } @book{lw-tcc-69 -, author = "A. T. Lundell and S. Weingram" -, title = "The topology of {CW} complexes" -, publisher = "Van Nostrand" -, address = "New York, NY" -, year = 1969 -, update = "98.03 bibrelex" +, author = "A. T. Lundell and S. Weingram" +, title = "The topology of {CW} complexes" +, publisher = "Van Nostrand" +, address = "New York, NY" +, year = 1969 +, update = "98.03 bibrelex" } @techreport{l-imsim-95 -, author = "Mikael Lundquist" -, title = "An implementation of a method for simulating injection moulding of non-planar objects" -, type = "Technical {Report}" -, number = "LiTH-MAT-R-95-09" -, institution = "Link{\"o}ping University" -, month = oct -, year = 1995 -, keywords = "injection molding, continuous Dijkstra, geodesic metric, shortest paths, wavefront propagation" -, update = "96.05 mitchell" +, author = "Mikael Lundquist" +, title = "An implementation of a method for simulating injection moulding of non-planar objects" +, type = "Technical {Report}" +, number = "LiTH-MAT-R-95-09" +, institution = "Link{\"o}ping University" +, month = oct +, year = 1995 +, keywords = "injection molding, continuous Dijkstra, geodesic metric, shortest paths, wavefront propagation" +, update = "96.05 mitchell" } @inproceedings{lm-pasnp-95 -, author = "J. Luo and K. Miriyala" -, title = "A Practical Approach to Static Node Positioning" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "436--443" -, keywords = "graph drawing, placement, system" -, update = "95.01 tamassia" +, author = "J. Luo and K. Miriyala" +, title = "A Practical Approach to Static Node Positioning" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "436--443" +, keywords = "graph drawing, placement, system" +, update = "95.01 tamassia" } @inproceedings{lmy-dcsds-96 -, author = "Robert Lupton and F. Miller Maley and Neal Young" -, title = "Data Collection for the {Sloan} {Digital} {Sky} {Survey} -- {A} Network-Flow Heuristic" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "296--303" -, keywords = "covering, capacitated covering of point sets, facility location, disk covers, sphere covers, implementation" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Robert Lupton and F. Miller Maley and Neal Young" +, title = "Data Collection for the {Sloan} {Digital} {Sky} {Survey} -- {A} Network-Flow Heuristic" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "296--303" +, keywords = "covering, capacitated covering of point sets, facility location, disk covers, sphere covers, implementation" +, update = "96.09 agarwal, 96.01 mitchell" } @inproceedings{lmk-vcpim-01 -, author = "A. M. Lyakh and V. S. Mukhanov and R. B. Kemp" -, title = "The Virtual Cell Project for the Investigation of Microalgal Morphology and Dispersity of Natural Phytoplankton" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "57--58" -, update = "01.04 icking" +, author = "A. M. Lyakh and V. S. Mukhanov and R. B. Kemp" +, title = "The Virtual Cell Project for the Investigation of Microalgal Morphology and Dispersity of Natural Phytoplankton" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "57--58" +, update = "01.04 icking" } @incollection{l-csbsu-90 -, author = "T. Lybrand" -, title = "Computer simulation of biomolecular systems using molecular dynamics and free energy perturbation methods" -, editor = "K. Lipkowitz and D. B. Boyd" -, booktitle = "Reviews in Computational Chemistry" -, volume = 1 -, publisher = "VCH Publishers" -, year = 1990 -, pages = "295--320" -, update = "98.07 bibrelex" +, author = "T. Lybrand" +, title = "Computer simulation of biomolecular systems using molecular dynamics and free energy perturbation methods" +, editor = "K. Lipkowitz and D. B. Boyd" +, booktitle = "Reviews in Computational Chemistry" +, volume = 1 +, publisher = "VCH Publishers" +, year = 1990 +, pages = "295--320" +, update = "98.07 bibrelex" } @article{lm-krpbc-87 -, author = "T. Lyche and K. Morken" -, title = "Knot Removal for parametric B-spline curves and surfaces" -, journal = "Comput. Aided Geom. Design" -, volume = 4 -, number = 3 -, year = 1987 -, pages = "217--230" -, update = "98.07 bibrelex" +, author = "T. Lyche and K. Morken" +, title = "Knot Removal for parametric B-spline curves and surfaces" +, journal = "Comput. Aided Geom. Design" +, volume = 4 +, number = 3 +, year = 1987 +, pages = "217--230" +, update = "98.07 bibrelex" } @article{lm-spmcp-96 -, author = "K. M. Lynch and M. T. Mason" -, title = "Stable pushing: {M}echanics, controllability, and planning" -, journal = "Internat. J. Robot. Res." -, volume = 15 -, year = 1996 -, pages = "533--556" -, update = "98.03 agarwal" +, author = "K. M. Lynch and M. T. Mason" +, title = "Stable pushing: {M}echanics, controllability, and planning" +, journal = "Internat. J. Robot. Res." +, volume = 15 +, year = 1996 +, pages = "533--556" +, update = "98.03 agarwal" } @inproceedings{l-cbagd-92 -, author = "K. Lyons" -, title = "Cluster Busting in Anchored Graph Drawing" -, booktitle = "Proceedings of the 1992 CAS Conference" -, year = 1992 -, pages = "7--16" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Lyons" +, title = "Cluster Busting in Anchored Graph Drawing" +, booktitle = "Proceedings of the 1992 CAS Conference" +, year = 1992 +, pages = "7--16" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{lmr-mpcil-90 -, author = "K. Lyons and H. Meijer and D. Rappaport" -, title = "Minimum polygon covers for isothetic line segments" -, type = "Manuscript" -, institution = "??" -, year = 1990 -, note = "In preparation" -, succeeds = "lmr-mpsil-" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "K. Lyons and H. Meijer and D. Rappaport" +, title = "Minimum polygon covers for isothetic line segments" +, type = "Manuscript" +, institution = "??" +, year = 1990 +, note = "In preparation" +, succeeds = "lmr-mpsil-" +, update = "98.11 bibrelex, 98.07 bibrelex" } @mastersthesis{l-aiorp-88 -, author = "Kelly A. Lyons" -, title = "An Efficient Algorithm for Identifying Objects Using Robot Probes" -, school = "Queen's University, Kingston" -, month = dec -, year = 1988 -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "Kelly A. Lyons" +, title = "An Efficient Algorithm for Identifying Objects Using Robot Probes" +, school = "Queen's University, Kingston" +, month = dec +, year = 1988 +, keywords = "master thesis" +, update = "98.07 bibrelex" } @phdthesis{l-cbagd -, author = "K. A. Lyons" -, title = "Cluster Busting in Anchored Graph Drawing" -, school = "??" -, note = "in preparation" -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "K. A. Lyons" +, title = "Cluster Busting in Anchored Graph Drawing" +, school = "??" +, note = "in preparation" +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @article{lmr-acbag-98 -, author = "Kelly A. Lyons and Henk Meijer and David Rappaport" -, title = "Algorithms for Cluster Busting in Anchored Graph Drawing" -, journal = "J. Graph Algorithms Appl." -, volume = 2 -, number = 1 -, year = 1998 -, pages = "1--24" -, keywords = "graph drawing, straight-line, interactive" -, update = "98.07 tamassia" +, author = "Kelly A. Lyons and Henk Meijer and David Rappaport" +, title = "Algorithms for Cluster Busting in Anchored Graph Drawing" +, journal = "J. Graph Algorithms Appl." +, volume = 2 +, number = 1 +, year = 1998 +, pages = "1--24" +, keywords = "graph drawing, straight-line, interactive" +, update = "98.07 tamassia" } @techreport{lmr-mpsil- -, author = "Kelly A. Lyons and Henk Meijer and David Rappaport" -, title = "Minimum polygon stabbers of isothetic line segments" -, institution = "Dept. of Computing and Information Science, Queen's University" -, address = "Ontario, Canada" -, precedes = "lmr-mpcil-90" -, update = "98.11 bibrelex" +, author = "Kelly A. Lyons and Henk Meijer and David Rappaport" +, title = "Minimum polygon stabbers of isothetic line segments" +, institution = "Dept. of Computing and Information Science, Queen's University" +, address = "Ontario, Canada" +, precedes = "lmr-mpcil-90" +, update = "98.11 bibrelex" } @inproceedings{lmr-pvdcb-93 -, author = "K. A. Lyons and H. Meijer and D. Rappaport" -, title = "Properties of the {Voronoi} Diagram Cluster Buster" -, editor = "A. Gawman and W. M. Getleman and E. Kidd and P. Larson and J. Slonim" -, booktitle = "Proc. 1993 CAS Conference" -, volume = 2 -, publisher = "IBM Canada Ltd. Laboratory Center for Advanced Studies and National Research Council Canada" -, address = "Toronto, Ontario, Canada" -, month = oct -, year = 1993 -, pages = "1148--1163" -, update = "98.11 bibrelex" +, author = "K. A. Lyons and H. Meijer and D. Rappaport" +, title = "Properties of the {Voronoi} Diagram Cluster Buster" +, editor = "A. Gawman and W. M. Getleman and E. Kidd and P. Larson and J. Slonim" +, booktitle = "Proc. 1993 CAS Conference" +, volume = 2 +, publisher = "IBM Canada Ltd. Laboratory Center for Advanced Studies and National Research Council Canada" +, address = "Toronto, Ontario, Canada" +, month = oct +, year = 1993 +, pages = "1148--1163" +, update = "98.11 bibrelex" } @techreport{lr-eaiou-89t -, author = "K. A. Lyons and D. Rappaport" -, title = "An Efficient Algorithm for Identifying Objects Using Robot Probes" -, number = "TR CISC 89-259" -, institution = "Queen's University" -, address = "Kingston, Ontario" -, year = 1989 -, precedes = "lr-eaiou-89, lr-eaiou-94" -, update = "98.11 bibrelex" +, author = "K. A. Lyons and D. Rappaport" +, title = "An Efficient Algorithm for Identifying Objects Using Robot Probes" +, number = "TR CISC 89-259" +, institution = "Queen's University" +, address = "Kingston, Ontario" +, year = 1989 +, precedes = "lr-eaiou-89, lr-eaiou-94" +, update = "98.11 bibrelex" } @article{lr-eaiou-94 -, author = "K. A. Lyons and D. Rappaport" -, title = "An efficient algorithm for identifying objects using robot probes" -, journal = "Visual Comput." -, volume = 10 -, year = 1994 -, pages = "452--458" -, succeeds = "lr-eaiou-89t" -, update = "98.11 bibrelex, 95.01 smid" +, author = "K. A. Lyons and D. Rappaport" +, title = "An efficient algorithm for identifying objects using robot probes" +, journal = "Visual Comput." +, volume = 10 +, year = 1994 +, pages = "452--458" +, succeeds = "lr-eaiou-89t" +, update = "98.11 bibrelex, 95.01 smid" } @inproceedings{lr-eaiou-89 -, author = "K. A. Lyons and D. H. Rappaport" -, title = "An efficient algorithm for identifying objects using robot probes" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 7 -, succeeds = "lr-eaiou-89t" -, update = "98.11 bibrelex" +, author = "K. A. Lyons and D. H. Rappaport" +, title = "An efficient algorithm for identifying objects using robot probes" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 7 +, succeeds = "lr-eaiou-89t" +, update = "98.11 bibrelex" } @book{l-cfp-66 -, author = "L. A. Lyusternik" -, title = "Convex Figures and Polyhedra" -, publisher = "D. C. Heath" -, address = "Boston, MA" -, year = 1966 -, update = "94.09 orourke" +, author = "L. A. Lyusternik" +, title = "Convex Figures and Polyhedra" +, publisher = "D. C. Heath" +, address = "Boston, MA" +, year = 1966 +, update = "94.09 orourke" } @book{l-spvp-64 -, author = "L. A. Lyusternik" -, title = "Shortest Paths: {Variational} Problems" -, publisher = "Macmillan Company" -, address = "New York" -, year = 1964 -, update = "93.09 milone+mitchell" +, author = "L. A. Lyusternik" +, title = "Shortest Paths: {Variational} Problems" +, publisher = "Macmillan Company" +, address = "New York" +, year = 1964 +, update = "93.09 milone+mitchell" } @phdthesis{m-bvdcd-00 -, author = "Lihong Ma" -, title = "Bisectors and {Voronoi} Diagrams for Convex Distance Functions" -, school = "Department of Computer Science, FernUniversit{\"a}t Hagen, Technical Report 267" -, year = 2000 -, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr267.pdf" -, keywords = "doctoral thesis" -, update = "01.04 icking, 00.11 smid, 00.07 icking, 00.03 bibrelex, 99.07 bibrelex" +, author = "Lihong Ma" +, title = "Bisectors and {Voronoi} Diagrams for Convex Distance Functions" +, school = "Department of Computer Science, FernUniversit{\"a}t Hagen, Technical Report 267" +, year = 2000 +, url = "http://wwwpi6.fernuni-hagen.de/Publikationen/tr267.pdf" +, keywords = "doctoral thesis" +, update = "01.04 icking, 00.11 smid, 00.07 icking, 00.03 bibrelex, 99.07 bibrelex" } @inproceedings{m-eapls-94 -, author = "Wolfgang Maass" -, title = "Efficient Agnostic {PAC}-Learning with Simple Hypotheses" -, booktitle = "Proc. 7th Ann. ACM Conf. Comput. Learning Theory" -, nickname = "COLT '94" -, year = 1994 -, pages = "67--75" -, update = "00.11 smid, 00.07 icking, 98.03 bibrelex" +, author = "Wolfgang Maass" +, title = "Efficient Agnostic {PAC}-Learning with Simple Hypotheses" +, booktitle = "Proc. 7th Ann. ACM Conf. Comput. Learning Theory" +, nickname = "COLT '94" +, year = 1994 +, pages = "67--75" +, update = "00.11 smid, 00.07 icking, 98.03 bibrelex" } @article{m-cnc-86 -, author = "Wolfgang Maass" -, title = "On the Complexity of Nonconvex Covering" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "453--467" -, update = "00.11 smid, 00.07 icking" +, author = "Wolfgang Maass" +, title = "On the Complexity of Nonconvex Covering" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "453--467" +, update = "00.11 smid, 00.07 icking" } @article{m-sfe-02 -, author = "F. Macaulay" -, title = "Some Formulae in Elimination" -, journal = "Proc. London Math. Soc." -, volume = 35 -, year = 1902 -, pages = "3--27" -, update = "97.11 bibrelex" +, author = "F. Macaulay" +, title = "Some Formulae in Elimination" +, journal = "Proc. London Math. Soc." +, volume = 35 +, year = 1902 +, pages = "3--27" +, update = "97.11 bibrelex" } @article{m-tnhl-52 -, author = "A. M. Macbeath" -, title = "A theorem on non-homogeneous lattices" -, journal = "Ann. Math." -, volume = 56 -, year = 1952 -, pages = "269--293" -, update = "97.11 bibrelex" +, author = "A. M. Macbeath" +, title = "A theorem on non-homogeneous lattices" +, journal = "Ann. Math." +, volume = 56 +, year = 1952 +, pages = "269--293" +, update = "97.11 bibrelex" } @article{mb-hrtus-90 -, author = "J. MacDanold and K. Booth" -, title = "Heuristics for ray tracing using space subdivision" -, journal = "Visual Comput." -, volume = 6 -, year = 1990 -, pages = "153--166" -, keywords = "ray tracing" -, update = "96.05 agarwal" +, author = "J. MacDanold and K. Booth" +, title = "Heuristics for ray tracing using space subdivision" +, journal = "Visual Comput." +, volume = 6 +, year = 1990 +, pages = "153--166" +, keywords = "ray tracing" +, update = "96.05 agarwal" } @article{ms-isp-96 -, author = "G. MacDonald and T. Shermer" -, title = "Isomophism of spiral polygons" -, journal = "Discrete Comput. Geom." -, volume = 16 -, number = 2 -, year = 1996 -, pages = "277--304" -, keywords = "visibility graphs" -, update = "97.11 orourke, 96.09 orourke" +, author = "G. MacDonald and T. Shermer" +, title = "Isomophism of spiral polygons" +, journal = "Discrete Comput. Geom." +, volume = 16 +, number = 2 +, year = 1996 +, pages = "277--304" +, keywords = "visibility graphs" +, update = "97.11 orourke, 96.09 orourke" } @article{mp-atadp-91 -, author = "G. Macedonio and M. T. Pareschi" -, title = "An Algorithm for the Triangulation of Arbitrarily Distributed Points: Applications to Volume Estimate and Terrain Fitting" -, journal = "Comput. Geosci." -, volume = 17 -, number = 7 -, year = 1991 -, pages = "859--874" -, annote = "Just Lee-Schachter Insertion algorithm. Includes C - code." +, author = "G. Macedonio and M. T. Pareschi" +, title = "An Algorithm for the Triangulation of Arbitrarily Distributed Points: Applications to Volume Estimate and Terrain Fitting" +, journal = "Comput. Geosci." +, volume = 17 +, number = 7 +, year = 1991 +, pages = "859--874" +, annote = "Just Lee-Schachter Insertion algorithm. Includes C + code." } @techreport{m-psdss-85 -, author = "J. {MacGregor Smith}" -, title = "Point set decomposition and suboptimal {Steiner} minimal trees" -, type = "Report" -, number = "??" -, institution = "Dept. Indust. Engrg. Oper. Res., Univ. Massachusetts Amherst" -, address = "Amherst, MA" -, year = 1985 +, author = "J. {MacGregor Smith}" +, title = "Point set decomposition and suboptimal {Steiner} minimal trees" +, type = "Report" +, number = "??" +, institution = "Dept. Indust. Engrg. Oper. Res., Univ. Massachusetts Amherst" +, address = "Amherst, MA" +, year = 1985 } @inproceedings{m-ena2r-50 -, author = "C. Mack" -, title = "The expected number of aggregates in $2$ random distribution of $n$ points" -, booktitle = "Proc. Cambridge Phil. Soc." -, volume = 46 -, year = 1950 -, pages = "285--292" +, author = "C. Mack" +, title = "The expected number of aggregates in $2$ random distribution of $n$ points" +, booktitle = "Proc. Cambridge Phil. Soc." +, volume = 46 +, year = 1950 +, pages = "285--292" } @article{m-scaac-72 -, author = "A. L. Mackay" -, title = "Stereological Characteristics of Atomic Arrangements in Crystals" -, journal = "Journal of Microscopy" -, volume = 95 -, year = 1972 -, pages = "217--227" -, annote = "{Voronoi} polyhedron as a model of crystal structures. - $O(N^3)$ algorithm to find one polyhedron (all triples - neighbouring)" +, author = "A. L. Mackay" +, title = "Stereological Characteristics of Atomic Arrangements in Crystals" +, journal = "Journal of Microscopy" +, volume = 95 +, year = 1972 +, pages = "217--227" +, annote = "{Voronoi} polyhedron as a model of crystal structures. + $O(N^3)$ algorithm to find one polyhedron (all triples + neighbouring)" } @inproceedings{ms-ufetp-91 -, author = "P. D. MacKenzie and Q. F. Stout" -, title = "Ultra-fast expected time parallel algorithms" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "414--423" -, update = "93.05 smid" +, author = "P. D. MacKenzie and Q. F. Stout" +, title = "Ultra-fast expected time parallel algorithms" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "414--423" +, update = "93.05 smid" } @article{m-adgpr-86 -, author = "J. D. Mackinley" -, title = "Automating the Design of Graphical Presentations of Relational Information" -, journal = "ACM Trans. Graph." -, volume = 5 -, number = 2 -, year = 1986 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. D. Mackinley" +, title = "Automating the Design of Graphical Presentations of Relational Information" +, journal = "ACM Trans. Graph." +, volume = 5 +, number = 2 +, year = 1986 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{m-ipps-73 -, author = "A. K. Mackworth" -, title = "Interpreting pictures of polyhedral scenes" -, journal = "Artif. Intell." -, volume = 4 -, year = 1973 -, pages = "121--137" -, update = "97.11 bibrelex" +, author = "A. K. Mackworth" +, title = "Interpreting pictures of polyhedral scenes" +, journal = "Artif. Intell." +, volume = 4 +, year = 1973 +, pages = "121--137" +, update = "97.11 bibrelex" } @inproceedings{m-smcam-67 -, author = "J. MacQueen" -, title = "Some Methods for Classification and Analysis of Multivariate Observations" -, booktitle = "Proceedings of the Fifth Berkeley Symposium on Math., Stat. and Prob." -, year = 1967 -, pages = "281--296" -, update = "98.07 agarwal" +, author = "J. MacQueen" +, title = "Some Methods for Classification and Analysis of Multivariate Observations" +, booktitle = "Proceedings of the Fifth Berkeley Symposium on Math., Stat. and Prob." +, year = 1967 +, pages = "281--296" +, update = "98.07 agarwal" } @inproceedings{mmph-pgle-96 -, author = "B. Madden and P. Madden and S. Powers and M. Himsolt" -, title = "Portable Graph Layout and Editing" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "385--395" -, update = "98.11 bibrelex, 98.07 vismara" +, author = "B. Madden and P. Madden and S. Powers and M. Himsolt" +, title = "Portable Graph Layout and Editing" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "385--395" +, update = "98.11 bibrelex, 98.07 vismara" } @inproceedings{my-mpacc-86 -, author = "S. Maddila and C. K. Yap" -, title = "Moving a polygon around the corner in a corridor" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "187--192" -, cites = "b-sfppg-83, m-damlr-86, s-wc-82, y-hmctd-87, y-amp-87, ZZZ" -, update = "98.03 bibrelex" +, author = "S. Maddila and C. K. Yap" +, title = "Moving a polygon around the corner in a corridor" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "187--192" +, cites = "b-sfppg-83, m-damlr-86, s-wc-82, y-hmctd-87, y-amp-87, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{m-damlr-86 -, author = "S. R. Maddila" -, title = "Decomposition algorithm for moving a ladder among rectangular obstacles" -, booktitle = "Proc. of IEEE Inter. Conf. on Robotics and Automation" -, site = "San Francisco" -, month = apr -, year = 1986 -, update = "98.03 bibrelex" +, author = "S. R. Maddila" +, title = "Decomposition algorithm for moving a ladder among rectangular obstacles" +, booktitle = "Proc. of IEEE Inter. Conf. on Robotics and Automation" +, site = "San Francisco" +, month = apr +, year = 1986 +, update = "98.03 bibrelex" } @techreport{m-mpalr-?? -, author = "S. R. Maddila" -, title = "Motion planning algorithm for a ladder among rectangular obstacles" -, type = "Manuscript" -, institution = "Dept. Elect. Comput. Engrg., Univ. Illinois" -, address = "Urbana, IL" -, year = "??" +, author = "S. R. Maddila" +, title = "Motion planning algorithm for a ladder among rectangular obstacles" +, type = "Manuscript" +, institution = "Dept. Elect. Comput. Engrg., Univ. Illinois" +, address = "Urbana, IL" +, year = "??" } @article{mk-impgo-84 -, author = "S. P. Madur and P. A. Koparkar" -, title = "Interval Methods for Processing Geometric Objects" -, journal = "IEEE Comput. Graph. Appl." -, volume = "7--17" -, month = feb -, year = 1984 -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "S. P. Madur and P. A. Koparkar" +, title = "Interval Methods for Processing Geometric Objects" +, journal = "IEEE Comput. Graph. Appl." +, volume = "7--17" +, month = feb +, year = 1984 +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{m-up-93 -, author = "R. E. Maeder" -, title = "Uniform Polyhedra" -, journal = "The Mathematica Journal" -, volume = 3 -, number = 4 -, year = 1993 -, pages = "48--57" -, update = "96.05 orourke" +, author = "R. E. Maeder" +, title = "Uniform Polyhedra" +, journal = "The Mathematica Journal" +, volume = 3 +, number = 4 +, year = 1993 +, pages = "48--57" +, update = "96.05 orourke" } @techreport{m-oe-80 -, author = "D. Maegher" -, title = "Octree Encoding" -, type = "Technical {Report}" -, number = "TR-IPL-80-111" -, institution = "Dept. Electrical Syst., Rensselaer Polytechnic Inst." -, address = "Troy, NY" -, year = 1980 -, update = "97.11 bibrelex" +, author = "D. Maegher" +, title = "Octree Encoding" +, type = "Technical {Report}" +, number = "TR-IPL-80-111" +, institution = "Dept. Electrical Syst., Rensselaer Polytechnic Inst." +, address = "Troy, NY" +, year = 1980 +, update = "97.11 bibrelex" } @article{m-dpgec-91 -, author = "H. Maehara" -, title = "Dispersed points and geometric embeddings of complete bipartite graphs" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "57--67" +, author = "H. Maehara" +, title = "Dispersed points and geometric embeddings of complete bipartite graphs" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "57--67" } @article{m-htts-89 -, author = "H. Maehara" -, title = "Helly-type theorems for spheres" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "279--285" +, author = "H. Maehara" +, title = "Helly-type theorems for spheres" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "279--285" } @article{m-nisud-89 -, author = "H. Maehara" -, title = "Note on induced subgraphs of the unit distance graph {$E^n$}" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "15--18" +, author = "H. Maehara" +, title = "Note on induced subgraphs of the unit distance graph {$E^n$}" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "15--18" } @article{m-gccrp-91 -, author = "H. Maehara" -, title = "On {Graver}'s conjecture concerning the rigidity problem of graphs" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "339--342" +, author = "H. Maehara" +, title = "On {Graver}'s conjecture concerning the rigidity problem of graphs" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "339--342" } @inproceedings{mh-dges-89 -, author = "H. Maehara and M. Homma" -, title = "Distance graphs in {Euclidean} space" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 29 +, author = "H. Maehara and M. Homma" +, title = "Distance graphs in {Euclidean} space" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 29 } @article{m-??-94 -, author = "J. Maekawa" -, title = "??" -, journal = "Oru" -, volume = 2 -, number = 2 -, year = 1994 -, update = "97.11 bibrelex" +, author = "J. Maekawa" +, title = "??" +, journal = "Oru" +, volume = 2 +, number = 2 +, year = 1994 +, update = "97.11 bibrelex" } @phdthesis{m-rcmsi-93 -, author = "T. Maekawa" -, title = "Robust Computational Methods for Shape Interrogation" -, type = "Ph.{D}. Thesis" -, school = "Massachusetts Institute of Technology" -, address = "Cambridge, Massachusetts" -, year = 1993 -, keywords = "doctoral thesis" -, update = "95.05 abrams" +, author = "T. Maekawa" +, title = "Robust Computational Methods for Shape Interrogation" +, type = "Ph.{D}. Thesis" +, school = "Massachusetts Institute of Technology" +, address = "Cambridge, Massachusetts" +, year = 1993 +, keywords = "doctoral thesis" +, update = "95.05 abrams" } @article{mp-csiop-93 -, author = "T. Maekawa and N. M. Patrikalakis" -, title = "Computation of Singularities and Intersections of Offsets of Planar Curves" -, journal = "Comput. Aided Geom. Design" -, volume = 10 -, number = 5 -, year = 1993 -, pages = "407--429" -, update = "95.05 abrams+held" +, author = "T. Maekawa and N. M. Patrikalakis" +, title = "Computation of Singularities and Intersections of Offsets of Planar Curves" +, journal = "Comput. Aided Geom. Design" +, volume = 10 +, number = 5 +, year = 1993 +, pages = "407--429" +, update = "95.05 abrams+held" } @article{mp-idgdm-94 -, author = "T. Maekawa and N. M. Patrikalakis" -, title = "Interrogation of Differential Geometry Properties for Design and Manufacture" -, journal = "Visual Comput." -, volume = 10 -, number = 4 -, year = 1994 -, pages = "216--237" -, update = "95.05 abrams" +, author = "T. Maekawa and N. M. Patrikalakis" +, title = "Interrogation of Differential Geometry Properties for Design and Manufacture" +, journal = "Visual Comput." +, volume = 10 +, number = 4 +, year = 1994 +, pages = "216--237" +, update = "95.05 abrams" } @article{mwp-ulcsi-95 -, author = "T. Maekawa and F.-E. Wolter and N. M. Patrikalakis" -, title = "Umbilics and Lines of Curvature for Shape Interrogation" -, journal = "Comput. Aided Geom. Design" -, volume = "??" -, year = 1995 -, note = "To appear" -, update = "95.05 abrams" +, author = "T. Maekawa and F.-E. Wolter and N. M. Patrikalakis" +, title = "Umbilics and Lines of Curvature for Shape Interrogation" +, journal = "Comput. Aided Geom. Design" +, volume = "??" +, year = 1995 +, note = "To appear" +, update = "95.05 abrams" } @inproceedings{mf-cvmht-94 -, author = "P. Magillo and L. {De Floriani}" -, title = "Computing visibility maps on hierarchical terrain models" -, booktitle = "Proc. 2nd ACM Workshop on Advances in GIS" -, year = 1994 -, pages = "" -, update = "96.09 kreveld" +, author = "P. Magillo and L. {De Floriani}" +, title = "Computing visibility maps on hierarchical terrain models" +, booktitle = "Proc. 2nd ACM Workshop on Advances in GIS" +, year = 1994 +, pages = "" +, update = "96.09 kreveld" } @inproceedings{mf-mmldo-96 -, author = "P. Magillo and L. {De Floriani}" -, title = "Maintaining multiple levels of detail in the overlay of hierarchical subdivisions" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "190--195" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "P. Magillo and L. {De Floriani}" +, title = "Maintaining multiple levels of detail in the overlay of hierarchical subdivisions" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "190--195" +, update = "97.03 agarwal, 96.09 mitchell" } @article{mjs-spstg-83 -, author = "E. R. Magnus and C. C. Joyce and W. D. Scott" -, title = "A Spiral Procedure for Selecting a Triangular Grid from Random Data" -, journal = "Journal for Applied Mathematics and Physics (ZAMP)" -, volume = 34 -, month = mar -, year = 1983 -, pages = "231--235" -, annote = "Constructs a spiral through successive convex hulls by - a variation of Jarvis scan. Spiral is then triangulated - (when a choice is possible Delaunay triangles are - chosen). Then switchings are applied to produce DT. - Claim measured $O(n^{1.6})$ but initial step is clearly - $O(n^2)$." +, author = "E. R. Magnus and C. C. Joyce and W. D. Scott" +, title = "A Spiral Procedure for Selecting a Triangular Grid from Random Data" +, journal = "Journal for Applied Mathematics and Physics (ZAMP)" +, volume = 34 +, month = mar +, year = 1983 +, pages = "231--235" +, annote = "Constructs a spiral through successive convex hulls by + a variation of Jarvis scan. Spiral is then triangulated + (when a choice is possible Delaunay triangles are + chosen). Then switchings are applied to produce DT. + Claim measured $O(n^{1.6})$ but initial step is clearly + $O(n^2)$." } @book{mgr-gispa-91 -, title = "Geographical Information Systems: Principles and Applications" -, editor = "D. J. Maguire and M. F. Goodchild and D. W. Rhind" -, publisher = "Longman" -, address = "London" -, year = 1991 -, update = "96.09 kreveld" +, title = "Geographical Information Systems: Principles and Applications" +, editor = "D. J. Maguire and M. F. Goodchild and D. W. Rhind" +, publisher = "Longman" +, address = "London" +, year = 1991 +, update = "96.09 kreveld" } @phdthesis{m-pamlp-92 -, author = "Anil Maheshwari" -, title = "Parallel algorithms for minimum link path and related problems" -, type = "Ph.{D}. Dissertation" -, school = "Univ. Bombay" -, address = "Bombay, India" -, month = feb -, year = 1992 -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "Anil Maheshwari" +, title = "Parallel algorithms for minimum link path and related problems" +, type = "Ph.{D}. Dissertation" +, school = "Univ. Bombay" +, address = "Bombay, India" +, month = feb +, year = 1992 +, keywords = "doctoral thesis" +, update = "93.05 jones" } @article{ms-soarl-97 -, author = "A. Maheshwari and J.-R. Sack" -, title = "Simple Optimal Algorithms for Rectilinear link Path and Polygon Separation Problems" -, journal = "Parallel Processing Letter" -, volume = "??" -, month = jun -, year = 1997 -, update = "97.11 sack" +, author = "A. Maheshwari and J.-R. Sack" +, title = "Simple Optimal Algorithms for Rectilinear link Path and Polygon Separation Problems" +, journal = "Parallel Processing Letter" +, volume = "??" +, month = jun +, year = 1997 +, update = "97.11 sack" } @incollection{msd-ldp-00 -, author = "Anil Maheshwari and J{\"o}rg-R{\"u}diger Sack and Hristo N. Djidjev" -, title = "Link Distance Problems" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "519--558" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 12 of su-hcg-00" +, author = "Anil Maheshwari and J{\"o}rg-R{\"u}diger Sack and Hristo N. Djidjev" +, title = "Link Distance Problems" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "519--558" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 12 of su-hcg-00" } @inproceedings{msz-ioesp-01 -, author = "A. Maheshwari and M. Smid and N. Zeh" -, title = "I/O-efficient shortest path queries in geometric spanners" -, booktitle = "Proc. 7th Workshop Algorithms Data Struct." -, nickname = "WADS '01" -, series = "Lecture Notes Comput. Sci." -, volume = 2125 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "287--299" -, update = "01.11 smid" +, author = "A. Maheshwari and M. Smid and N. Zeh" +, title = "I/O-efficient shortest path queries in geometric spanners" +, booktitle = "Proc. 7th Workshop Algorithms Data Struct." +, nickname = "WADS '01" +, series = "Lecture Notes Comput. Sci." +, volume = 2125 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "287--299" +, update = "01.11 smid" } @inproceedings{mb-pachp-81 -, author = "S. N. Maheshwari and P. C. P. Bhatt" -, title = "Parallel algorithms for the convex hull problems in two dimensions" -, booktitle = "Conf. Analy. Prob. Classes Program. Parallel Comput." -, series = "Lecture Notes Comput. Sci." -, volume = 111 -, publisher = "Springer-Verlag" -, year = 1981 -, pages = "358--372" +, author = "S. N. Maheshwari and P. C. P. Bhatt" +, title = "Parallel algorithms for the convex hull problems in two dimensions" +, booktitle = "Conf. Analy. Prob. Classes Program. Parallel Comput." +, series = "Lecture Notes Comput. Sci." +, volume = 111 +, publisher = "Springer-Verlag" +, year = 1981 +, pages = "358--372" } @article{mhm-cacjm-80 -, author = "K. W. Mahin and K. Hanson and J. W. {Morris Jr.}" -, title = "Comparative analysis of the cellular and {Johnson-Mehl} microstructures through computer simulation" -, journal = "Acta Metallurgica" -, volume = "??" -, year = 1980 -, update = "97.11 bibrelex" +, author = "K. W. Mahin and K. Hanson and J. W. {Morris Jr.}" +, title = "Comparative analysis of the cellular and {Johnson-Mehl} microstructures through computer simulation" +, journal = "Acta Metallurgica" +, volume = "??" +, year = 1980 +, update = "97.11 bibrelex" } @article{m-idp-64 -, author = "K. Mahler" -, title = "An inequality for the discriminant of polynomial" -, journal = "Michigan Math. J." -, volume = 11 -, year = 1964 -, pages = "257--262" -, update = "98.03 bibrelex" +, author = "K. Mahler" +, title = "An inequality for the discriminant of polynomial" +, journal = "Michigan Math. J." +, volume = 11 +, year = 1964 +, pages = "257--262" +, update = "98.03 bibrelex" } @incollection{m-ltn-76 -, author = "K. Mahler" -, title = "Lectures on transcendental numbres" -, booktitle = "??" -, series = "Lecture Notes Math." -, volume = 546 -, publisher = "Springer-Verlag" -, year = 1976 -, update = "97.11 bibrelex" +, author = "K. Mahler" +, title = "Lectures on transcendental numbres" +, booktitle = "??" +, series = "Lecture Notes Math." +, volume = 546 +, publisher = "Springer-Verlag" +, year = 1976 +, update = "97.11 bibrelex" } @article{ms-hbt-81 -, author = "D. Maier and C. Salveter" -, title = "Hysterical {B}-trees" -, journal = "Inform. Process. Lett." -, volume = 12 -, year = 1981 -, pages = "199--202" -, update = "97.11 bibrelex" +, author = "D. Maier and C. Salveter" +, title = "Hysterical {B}-trees" +, journal = "Inform. Process. Lett." +, volume = 12 +, year = 1981 +, pages = "199--202" +, update = "97.11 bibrelex" } @techreport{ms-hbt-79 -, author = "D. Maier and S. C. Salveter" -, title = "Hysterical {B}-Trees" -, type = "Technical {Report}" -, number = "79/007" -, institution = "Univ. Stony Brook" -, year = 1979 -, update = "97.11 bibrelex" +, author = "D. Maier and S. C. Salveter" +, title = "Hysterical {B}-Trees" +, type = "Technical {Report}" +, number = "79/007" +, institution = "Univ. Stony Brook" +, year = 1979 +, update = "97.11 bibrelex" } @techreport{m-mddlp-79 -, author = "M. Maille" -, title = "Methodes d'evaluation de la precision d'une mesure ou d'un calcul numerique" -, type = "Rapport {L.I.T.P.}" -, institution = "Universite P. et M. Curie" -, address = "Paris, France" -, year = 1979 -, update = "98.03 bibrelex" +, author = "M. Maille" +, title = "Methodes d'evaluation de la precision d'une mesure ou d'un calcul numerique" +, type = "Rapport {L.I.T.P.}" +, institution = "Universite P. et M. Curie" +, address = "Paris, France" +, year = 1979 +, update = "98.03 bibrelex" } @techreport{m-rlsi-81 -, author = "H. G. Mairson" -, title = "Reporting line segment intersections" -, type = "manuscript" -, year = 1981 -, update = "98.11 bibrelex" +, author = "H. G. Mairson" +, title = "Reporting line segment intersections" +, type = "manuscript" +, year = 1981 +, update = "98.11 bibrelex" } @incollection{ms-rcibt-88 -, author = "H. G. Mairson and J. Stolfi" -, title = "Reporting and counting intersections between two sets of line segments" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1988 -, pages = "307--325" -, update = "97.03 schwarzkopf" +, author = "H. G. Mairson and J. Stolfi" +, title = "Reporting and counting intersections between two sets of line segments" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1988 +, pages = "307--325" +, update = "97.03 schwarzkopf" } @inproceedings{mkfa-aascs-86 -, author = "M. A. Majewski and F. N. Krull and T. E. Fuhrman and P. J. Ainslie" -, title = "Autodraft: Automatic Synthesis of Circuit Schematics" -, booktitle = "Proc. IEEE Internat. Conf. on Computer-Aided Design" -, year = 1986 -, pages = "435--438" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. A. Majewski and F. N. Krull and T. E. Fuhrman and P. J. Ainslie" +, title = "Autodraft: Automatic Synthesis of Circuit Schematics" +, booktitle = "Proc. IEEE Internat. Conf. on Computer-Aided Design" +, year = 1986 +, pages = "435--438" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @phdthesis{m-gmcad-98 -, author = "J. Majhi" -, title = "Geometric Methods in Computer-Aided Design and Manufacturing" -, type = "Ph.{D}. Thesis" -, school = "University of Minnesota" -, address = "Minneapolis" -, year = 1998 -, keywords = "doctoral thesis" -, update = "98.11 smid" +, author = "J. Majhi" +, title = "Geometric Methods in Computer-Aided Design and Manufacturing" +, type = "Ph.{D}. Thesis" +, school = "University of Minnesota" +, address = "Minneapolis" +, year = 1998 +, keywords = "doctoral thesis" +, update = "98.11 smid" } @inproceedings{mgj-cfufp-96 -, author = "J. Majhi and P. Gupta and R. Janardan" -, title = "Computing a flattest, undercut-free parting line for a convex polyhedron, with application to mold design" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, series = "Lecture Notes Comput. Sci." -, volume = 1148 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "39--47" -, update = "99.11 bibrelex, 98.07 bibrelex, 97.11 orourke" +, author = "J. Majhi and P. Gupta and R. Janardan" +, title = "Computing a flattest, undercut-free parting line for a convex polyhedron, with application to mold design" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, series = "Lecture Notes Comput. Sci." +, volume = 1148 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "39--47" +, update = "99.11 bibrelex, 98.07 bibrelex, 97.11 orourke" } @article{mgj-cfufp-99 -, author = "J. Majhi and P. Gupta and R. Janardan" -, title = "Computing a flattest, undercut-free parting line for a convex polyhedron, with application to mold design" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "229--252" -, update = "00.03 smid" +, author = "J. Majhi and P. Gupta and R. Janardan" +, title = "Computing a flattest, undercut-free parting line for a convex polyhedron, with application to mold design" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "229--252" +, update = "00.03 smid" } @techreport{mjssg-mssta-98 -, author = "J. Majhi and R. Janardan and J. Schwerdt and M. Smid and P. Gupta" -, title = "Minimizing support structures and trapped area in two-dimensional layered manufacturing" -, type = "Report" -, number = 1 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1998 -, succeeds = "mjsg-osgop-97i" -, update = "00.03 smid, 98.03 smid" +, author = "J. Majhi and R. Janardan and J. Schwerdt and M. Smid and P. Gupta" +, title = "Minimizing support structures and trapped area in two-dimensional layered manufacturing" +, type = "Report" +, number = 1 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1998 +, succeeds = "mjsg-osgop-97i" +, update = "00.03 smid, 98.03 smid" } @article{mjssg-mssta-99 -, author = "J. Majhi and R. Janardan and J. Schwerdt and M. Smid and P. Gupta" -, title = "Minimizing support structures and trapped area in two-dimensional layered manufacturing" -, journal = "Comput. Geom. Theory Appl." -, volume = 12 -, year = 1999 -, pages = "241--267" -, succeeds = "mjssg-osgop-98" -, update = "00.03 smid, 99.07 smid" +, author = "J. Majhi and R. Janardan and J. Schwerdt and M. Smid and P. Gupta" +, title = "Minimizing support structures and trapped area in two-dimensional layered manufacturing" +, journal = "Comput. Geom. Theory Appl." +, volume = 12 +, year = 1999 +, pages = "241--267" +, succeeds = "mjssg-osgop-98" +, update = "00.03 smid, 99.07 smid" } @techreport{mjsg-osgop-97t -, author = "J. Majhi and R. Janardan and M. Smid and P. Gupta" -, title = "On some geometric optimization problems in layered manufacturing" -, type = "Report" -, number = 1 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1997 -, update = "97.11 smid, 97.03 smid" +, author = "J. Majhi and R. Janardan and M. Smid and P. Gupta" +, title = "On some geometric optimization problems in layered manufacturing" +, type = "Report" +, number = 1 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1997 +, update = "97.11 smid, 97.03 smid" } @inproceedings{mjsg-osgop-97i -, author = "J. Majhi and R. Janardan and M. Smid and P. Gupta" -, title = "On some geometric optimization problems in layered manufacturing" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "136--149" -, update = "99.07 bibrelex, 97.11 smid" +, author = "J. Majhi and R. Janardan and M. Smid and P. Gupta" +, title = "On some geometric optimization problems in layered manufacturing" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "136--149" +, update = "99.07 bibrelex, 97.11 smid" } @techreport{mjsg-osgop-98 -, author = "J. Majhi and R. Janardan and M. Smid and P. Gupta" -, title = "On some geometric optimization problems in layered manufacturing" -, type = "Report" -, number = 2 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1998 -, succeeds = "mjsg-osgop-97i" -, update = "98.03 smid" +, author = "J. Majhi and R. Janardan and M. Smid and P. Gupta" +, title = "On some geometric optimization problems in layered manufacturing" +, type = "Report" +, number = 2 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1998 +, succeeds = "mjsg-osgop-97i" +, update = "98.03 smid" } @article{mjsg-osgop-99 -, author = "J. Majhi and R. Janardan and M. Smid and P. Gupta" -, title = "On some geometric optimization problems in layered manufacturing" -, journal = "Comput. Geom. Theory Appl." -, volume = 12 -, year = 1999 -, pages = "219--239" -, succeeds = "mjsg-osgop-98" -, update = "99.07 smid" +, author = "J. Majhi and R. Janardan and M. Smid and P. Gupta" +, title = "On some geometric optimization problems in layered manufacturing" +, journal = "Comput. Geom. Theory Appl." +, volume = 12 +, year = 1999 +, pages = "219--239" +, succeeds = "mjsg-osgop-98" +, update = "99.07 smid" } @techreport{mjss-mcgop-98t -, author = "J. Majhi and R. Janardan and M. Smid and J. Schwerdt" -, title = "Multi-criteria geometric optimization problems in layered manufacturing" -, type = "Report" -, number = 4 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1998 -, update = "98.07 smid, 98.03 smid" +, author = "J. Majhi and R. Janardan and M. Smid and J. Schwerdt" +, title = "Multi-criteria geometric optimization problems in layered manufacturing" +, type = "Report" +, number = 4 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1998 +, update = "98.07 smid, 98.03 smid" } @inproceedings{mjss-mcgop-98i -, author = "J. Majhi and R. Janardan and M. Smid and J. Schwerdt" -, title = "Multi-criteria geometric optimization problems in layered manufacturing" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "19--28" -, update = "98.07 smid" +, author = "J. Majhi and R. Janardan and M. Smid and J. Schwerdt" +, title = "Multi-criteria geometric optimization problems in layered manufacturing" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "19--28" +, update = "98.07 smid" } @article{m-dmpcg-90 -, author = "V. V. Makeev" -, title = "The degree of a mapping in some problems in combinatiorial geometry" -, journal = "J. of Soviet Math." -, volume = 51 -, number = 5 -, month = oct -, year = 1990 -, note = "Plenum Publ. Corp." -, update = "98.11 bibrelex" +, author = "V. V. Makeev" +, title = "The degree of a mapping in some problems in combinatiorial geometry" +, journal = "J. of Soviet Math." +, volume = 51 +, number = 5 +, month = oct +, year = 1990 +, note = "Plenum Publ. Corp." +, update = "98.11 bibrelex" } @inproceedings{md-sepct-93 -, author = "I. M{\"a}kel{\"a} and A. Dolenc" -, title = "Some efficient procedures for correcting triangulated models" -, booktitle = "Proc. Sympos. on Solid Freeform Fabrication" -, site = "Austin, TX" -, organization = "Dept. Mech. Eng., Univ. Texas Austin" -, year = 1993 -, update = "98.07 bibrelex" +, author = "I. M{\"a}kel{\"a} and A. Dolenc" +, title = "Some efficient procedures for correcting triangulated models" +, booktitle = "Proc. Sympos. on Solid Freeform Fabrication" +, site = "Austin, TX" +, organization = "Dept. Mech. Eng., Univ. Texas Austin" +, year = 1993 +, update = "98.07 bibrelex" } @article{mrg-vqsc-85 -, author = "J. Makhoul and S. Roucos and H. Gish" -, title = "Vector Quantization in Speech Coding" -, journal = "Proc. IEEE" -, volume = 73 -, number = 11 -, month = nov -, year = 1985 -, pages = "1551--1588" -, update = "98.07 agarwal" +, author = "J. Makhoul and S. Roucos and H. Gish" +, title = "Vector Quantization in Speech Coding" +, journal = "Proc. IEEE" +, volume = 73 +, number = 11 +, month = nov +, year = 1985 +, pages = "1551--1588" +, update = "98.07 agarwal" } @techreport{m-nmhdb-88 -, author = "E. Makinen" -, title = "A Note on the Median Heuristic for Drawing Bipartite Graphs" -, number = "A-1988-4" -, institution = "Department of Computer Science, University of Tampere" -, month = may -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Makinen" +, title = "A Note on the Median Heuristic for Drawing Bipartite Graphs" +, number = "A-1988-4" +, institution = "Department of Computer Science, University of Tampere" +, month = may +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{m-ed2lh-88 -, author = "E. Makinen" -, title = "Experiments of Drawing 2-Level Hierarchical Graphs" -, number = "A-1988-1" -, institution = "Department of Computer Science, University of Tampere" -, month = jan -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Makinen" +, title = "Experiments of Drawing 2-Level Hierarchical Graphs" +, number = "A-1988-1" +, institution = "Department of Computer Science, University of Tampere" +, month = jan +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{m-ed2lh-90 -, author = "E. M{\"a}kinen" -, title = "Experiments on Drawing 2-Level Hierarchical Graphs" -, journal = "Internat. J. Comput. Math." -, volume = 36 -, year = 1990 -, pages = "175--181" -, update = "98.07 vismara" +, author = "E. M{\"a}kinen" +, title = "Experiments on Drawing 2-Level Hierarchical Graphs" +, journal = "Internat. J. Comput. Math." +, volume = 36 +, year = 1990 +, pages = "175--181" +, update = "98.07 vismara" } @misc{m-hdh-89 -, author = "E. Makinen" -, title = "How to Draw a Hypergraph" -, institution = "Department of Computer Science, University of Tampere" -, year = 1989 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Makinen" +, title = "How to Draw a Hypergraph" +, institution = "Department of Computer Science, University of Tampere" +, year = 1989 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{m-cl-88 -, author = "E. Makinen" -, title = "On Circular Layouts" -, journal = "Internat. J. Comput. Math." -, volume = 24 -, year = 1988 -, pages = "29--37" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Makinen" +, title = "On Circular Layouts" +, journal = "Internat. J. Comput. Math." +, volume = 24 +, year = 1988 +, pages = "29--37" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{m-drbg-90 -, author = "E. Makinen" -, title = "On Drawing Regular Bipartite Graphs" -, number = "A-1990-8" -, institution = "Department of Computer Science, University of Tampere" -, year = 1990 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Makinen" +, title = "On Drawing Regular Bipartite Graphs" +, number = "A-1990-8" +, institution = "Department of Computer Science, University of Tampere" +, year = 1990 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{m-rahdb-90 -, author = "E. Makinen" -, title = "Remarks on the Assignment Heuristic for Drawing Bipartite Graphs" -, number = "A-1990-7" -, institution = "Department of Computer Science, University of Tampere" -, year = 1990 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Makinen" +, title = "Remarks on the Assignment Heuristic for Drawing Bipartite Graphs" +, number = "A-1990-7" +, institution = "Department of Computer Science, University of Tampere" +, year = 1990 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{mt-fpior-97 -, author = "Christos Makris and Athanasios Tsakalidis" -, title = "Fast Piercing of Iso--Oriented Rectangles" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "217--222" -, update = "97.11 jones" +, author = "Christos Makris and Athanasios Tsakalidis" +, title = "Fast Piercing of Iso--Oriented Rectangles" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "217--222" +, update = "97.11 jones" } @phdthesis{m-slwr-87 -, author = "F. M. Maley" -, title = "Single-Layer Wire Routing" -, school = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, month = aug -, year = 1987 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "F. M. Maley" +, title = "Single-Layer Wire Routing" +, school = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, month = aug +, year = 1987 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @book{m-slwrc-90 -, author = "F. M. Maley" -, title = "Single-Layer Wire Routing and Compaction" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1990 -, update = "98.07 bibrelex" +, author = "F. M. Maley" +, title = "Single-Layer Wire Routing and Compaction" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1990 +, update = "98.07 bibrelex" } @inproceedings{mp-arpg-92 -, author = "S. Malitz and A. Papakostas" -, title = "On the Angular Resolution of Planar Graphs" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "527--538" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "S. Malitz and A. Papakostas" +, title = "On the Angular Resolution of Planar Graphs" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "527--538" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{mp-arpg-94 -, author = "S. Malitz and A. Papakostas" -, title = "On the Angular Resolution of Planar Graphs" -, journal = "SIAM J. Discrete Math." -, volume = 7 -, year = 1994 -, pages = "172--183" -, keywords = "graph drawing" -, succeeds = "mp-arpg-92" -, update = "95.01 tamassia" +, author = "S. Malitz and A. Papakostas" +, title = "On the Angular Resolution of Planar Graphs" +, journal = "SIAM J. Discrete Math." +, volume = 7 +, year = 1994 +, pages = "172--183" +, keywords = "graph drawing" +, succeeds = "mp-arpg-92" +, update = "95.01 tamassia" } @article{m-cqrbb-96 -, author = "P. Malraison" -, title = "Constraining a quadratic rational {Bezier} to be an elliptical arc" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "435--441" -, update = "97.03 devillers" +, author = "P. Malraison" +, title = "Constraining a quadratic rational {Bezier} to be an elliptical arc" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "435--441" +, update = "97.03 devillers" } @article{m-apmpg-76 -, author = "G. K. Manacher" -, title = "An application of pattern matching to a problem in geometrical complexity" -, journal = "Inform. Process. Lett." -, volume = 5 -, year = 1976 -, pages = "6--7" -, precedes = "a-cgmap-78" +, author = "G. K. Manacher" +, title = "An application of pattern matching to a problem in geometrical complexity" +, journal = "Inform. Process. Lett." +, volume = 5 +, year = 1976 +, pages = "6--7" +, precedes = "a-cgmap-78" } % no relation to 395 @inproceedings{mz-fseac-78 -, author = "G. K. Manacher and A. L. Zobrist" -, title = "A fast, space-efficient average-case algorithm for the ``greedy'' triangulation of a point set, and a proof that the greedy triangulation is not approximately optimal" -, booktitle = "Proc. 16th Allerton Conf. Commun. Control Comput." -, year = 1978 -, pages = "824--832" +, author = "G. K. Manacher and A. L. Zobrist" +, title = "A fast, space-efficient average-case algorithm for the ``greedy'' triangulation of a point set, and a proof that the greedy triangulation is not approximately optimal" +, booktitle = "Proc. 16th Allerton Conf. Commun. Control Comput." +, year = 1978 +, pages = "824--832" } @article{mz-ngndt-79 -, author = "G. K. Manacher and A. L. Zobrist" -, title = "Neither the greedy nor the {Delaunay} triangulation of a planar point set approximates the optimal triangulation" -, journal = "Inform. Process. Lett." -, volume = 9 -, year = 1979 -, pages = "31--34" +, author = "G. K. Manacher and A. L. Zobrist" +, title = "Neither the greedy nor the {Delaunay} triangulation of a planar point set approximates the optimal triangulation" +, journal = "Inform. Process. Lett." +, volume = 9 +, year = 1979 +, pages = "31--34" } @incollection{mz-pmhfa-83 -, author = "Glenn K. Manacher and Albert L. Zobrist" -, title = "Probabilistic Methods with Heaps for Fast Average-Case Greedy Algorithms" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "261--278" -, update = "01.04 icking, 93.09 erickson" -, annote = "By using a $O(1)$ ``pretest'' for edges to be added - get average case $\Theta(n^2)$ algorithm for Greedy - Triangulation." +, author = "Glenn K. Manacher and Albert L. Zobrist" +, title = "Probabilistic Methods with Heaps for Fast Average-Case Greedy Algorithms" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "261--278" +, update = "01.04 icking, 93.09 erickson" +, annote = "By using a $O(1)$ ``pretest'' for edges to be added + get average case $\Theta(n^2)$ algorithm for Greedy + Triangulation." } @inproceedings{mms-caolp-88 -, author = "M. S. Manasse and L. A. McGeoch and D. D. Sleator" -, title = "Competitive Algorithms for On-line Problems" -, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." -, month = may -, year = 1988 -, pages = "322--333" -, update = "94.05 franciosa" +, author = "M. S. Manasse and L. A. McGeoch and D. D. Sleator" +, title = "Competitive Algorithms for On-line Problems" +, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." +, month = may +, year = 1988 +, pages = "322--333" +, update = "94.05 franciosa" } @article{m-mfavc-69 -, author = "M. Manav" -, title = "Methods for finding all vertices of a convex polyhedron" -, journal = "Ekonom. Mat. Obzor" -, volume = 5 -, year = 1969 -, pages = "325--342" +, author = "M. Manav" +, title = "Methods for finding all vertices of a convex polyhedron" +, journal = "Ekonom. Mat. Obzor" +, volume = 5 +, year = 1969 +, pages = "325--342" } @article{mn-favcp-68 -, author = "M. Manav and J. Nedoma" -, title = "Finding all vertices of a convex polyhedron" -, journal = "Numer. Math." -, volume = 12 -, year = 1968 -, pages = "226--229" +, author = "M. Manav and J. Nedoma" +, title = "Finding all vertices of a convex polyhedron" +, journal = "Numer. Math." +, volume = 12 +, year = 1968 +, pages = "226--229" } @book{m-iaca-89 -, author = "U. Manber" -, title = "Introduction to Algorithms: A Creative Approach" -, publisher = "Addison-Wesley" -, year = 1989 -, update = "98.07 bibrelex" +, author = "U. Manber" +, title = "Introduction to Algorithms: A Creative Approach" +, publisher = "Addison-Wesley" +, year = 1989 +, update = "98.07 bibrelex" } @techreport{mt-pnadt-82 -, author = "U. Manber and M. Tompa" -, title = "Probabilistic, Nondeterministic and Alternating Decision Trees" -, type = "Technical {Report}" -, number = "82-03-01" -, institution = "Univ. Washington" -, year = 1982 -, update = "98.03 bibrelex" +, author = "U. Manber and M. Tompa" +, title = "Probabilistic, Nondeterministic and Alternating Decision Trees" +, type = "Technical {Report}" +, number = "82-03-01" +, institution = "Univ. Washington" +, year = 1982 +, update = "98.03 bibrelex" } @article{mt-cppna-85 -, author = "U. Manber and M. Tompa" -, title = "The complexity of problems on probabilistic, nondeterministic, and alternating decision trees" -, journal = "J. ACM" -, volume = 32 -, number = 3 -, year = 1985 -, pages = "720--732" -, keywords = "lower bounds" +, author = "U. Manber and M. Tompa" +, title = "The complexity of problems on probabilistic, nondeterministic, and alternating decision trees" +, journal = "J. ACM" +, volume = 32 +, number = 3 +, year = 1985 +, pages = "720--732" +, keywords = "lower bounds" } @phdthesis{m-tom-82 -, author = "A. Mandel" -, title = "Topology of Oriented Matroids" -, school = "Univ. Waterloo" -, address = "Waterloo" -, year = 1982 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "A. Mandel" +, title = "Topology of Oriented Matroids" +, school = "Univ. Waterloo" +, address = "Waterloo" +, year = 1982 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @article{mc-dmsoc-72 -, author = "P. Mandel and C. Chryssostomidis" -, title = "A Design Methodology for Ships and Other Complex Systems" -, journal = "Philosophical Transactions of the Royal Society of London" -, volume = "A 273" -, year = 1972 -, pages = "85--98" -, update = "95.05 abrams" +, author = "P. Mandel and C. Chryssostomidis" +, title = "A Design Methodology for Ships and Other Complex Systems" +, journal = "Philosophical Transactions of the Royal Society of London" +, volume = "A 273" +, year = 1972 +, pages = "85--98" +, update = "95.05 abrams" } @article{ml-sipat-91 -, author = "A. Mangen and N. Lasudry" -, title = "Search for the Intersection Polygon of any Two Polygons: Application at the Garment Industry" -, journal = "Comput. Graph. Forum" -, volume = 10 -, number = 3 -, month = sep -, year = 1991 -, pages = "195--208" -, update = "93.09 held" +, author = "A. Mangen and N. Lasudry" +, title = "Search for the Intersection Polygon of any Two Polygons: Application at the Garment Industry" +, journal = "Comput. Graph. Forum" +, volume = 10 +, number = 3 +, month = sep +, year = 1991 +, pages = "195--208" +, update = "93.09 held" } @inproceedings{m-tha-89 -, author = "P. Mani-Levitska" -, title = "Types of Hyperplane Arrangements" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "P. Mani-Levitska" +, title = "Types of Hyperplane Arrangements" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{mw-posfp-85 -, author = "M. Mani and R. D. W. Wilson" -, title = "A programmable orienting system for flat parts" -, booktitle = "Proc. North American Mfg. Research Inst. Conf XIII" -, year = 1985 -, update = "98.07 bibrelex" +, author = "M. Mani and R. D. W. Wilson" +, title = "A programmable orienting system for flat parts" +, booktitle = "Proc. North American Mfg. Research Inst. Conf XIII" +, year = 1985 +, update = "98.07 bibrelex" } @article{mw-nlerp-88 -, author = "H. Mannila and D. Wood" -, title = "A note on the largest empty rectangle problem" -, journal = "BIT" -, volume = 28 -, year = 1988 -, pages = "179--183" +, author = "H. Mannila and D. Wood" +, title = "A note on the largest empty rectangle problem" +, journal = "BIT" +, volume = 28 +, year = 1988 +, pages = "179--183" } @techreport{mw-sprag-84 -, author = "H. Mannila and D. Wood" -, title = "A simple proof of the rectilinear art gallery theorem" -, type = "Report" -, number = "C-1984-16" -, institution = "Dept. Comput. Sci., Univ. Helsinki" -, address = "Helsinki, Finland" -, year = 1984 -, precedes = "mw-sprag-85" +, author = "H. Mannila and D. Wood" +, title = "A simple proof of the rectilinear art gallery theorem" +, type = "Report" +, number = "C-1984-16" +, institution = "Dept. Comput. Sci., Univ. Helsinki" +, address = "Helsinki, Finland" +, year = 1984 +, precedes = "mw-sprag-85" } @article{mw-sprag-85 -, author = "H. Mannila and D. Wood" -, title = "A simple proof of the rectilinear art gallery theorem" -, journal = "Internat. J. Comput. Math." -, volume = 17 -, year = 1985 -, pages = "141--149" -, succeeds = "mw-sprag-84" +, author = "H. Mannila and D. Wood" +, title = "A simple proof of the rectilinear art gallery theorem" +, journal = "Internat. J. Comput. Math." +, volume = 17 +, year = 1985 +, pages = "141--149" +, succeeds = "mw-sprag-84" } @inproceedings{maclp-sdggs-95 -, author = "J. Manning and M. Atallah and K. Cudjoe and J. Lozito and R. Pacheco" -, title = "A System for Drawing Graphs with Geometric Symmetry" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "262--265" -, keywords = "graph drawing, system, symmetry" -, update = "95.01 tamassia" +, author = "J. Manning and M. Atallah and K. Cudjoe and J. Lozito and R. Pacheco" +, title = "A System for Drawing Graphs with Geometric Symmetry" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "262--265" +, keywords = "graph drawing, system, symmetry" +, update = "95.01 tamassia" } @techreport{ma-fddso-86 -, author = "J. Manning and M. J. Atallah" -, title = "Fast Detection and Display of Symmetry in Outerplanar Graphs" -, number = "CSD-TR-606" -, institution = "Department of Computer Science, Purdue University" -, year = 1986 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Manning and M. J. Atallah" +, title = "Fast Detection and Display of Symmetry in Outerplanar Graphs" +, number = "CSD-TR-606" +, institution = "Department of Computer Science, Purdue University" +, year = 1986 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ma-fddst-88 -, author = "J. Manning and M. J. Atallah" -, title = "Fast Detection and Display of Symmetry in Trees" -, journal = "Congr. Numer." -, volume = 64 -, year = 1988 -, pages = "159--169" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Manning and M. J. Atallah" +, title = "Fast Detection and Display of Symmetry in Trees" +, journal = "Congr. Numer." +, volume = 64 +, year = 1988 +, pages = "159--169" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{mc-nasi-91 -, author = "D. Manocha and J. F. Canny" -, title = "A new approach for surface intersection" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 4 -, year = 1991 -, pages = "491--516" -, keywords = "surface, curve, intersection, solid modeling, resultants, matrix operations" +, author = "D. Manocha and J. F. Canny" +, title = "A new approach for surface intersection" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 4 +, year = 1991 +, pages = "491--516" +, keywords = "surface, curve, intersection, solid modeling, resultants, matrix operations" } @article{mzw-camcu-95 -, author = "D. Manocha and Y. Zhu and W. Wright" -, title = "Conformational analysis of molecular chains using nano-kinematics" -, journal = "Computer Application of Biological Sciences (CABIOS)" -, volume = 11 -, number = 1 -, year = 1995 -, pages = "71--86" -, update = "98.07 bibrelex" +, author = "D. Manocha and Y. Zhu and W. Wright" +, title = "Conformational analysis of molecular chains using nano-kinematics" +, journal = "Computer Application of Biological Sciences (CABIOS)" +, volume = 11 +, number = 1 +, year = 1995 +, pages = "71--86" +, update = "98.07 bibrelex" } @article{mpss-istma-93 -, author = "Y. Mansour and J. Park and B. Schieber and S. Sen" -, title = "Improved selection in totally monotone arrays" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "115--132" -, keywords = "Planar distance, convex polygons, totally monotone arrays, Monge arrays" -, update = "96.09 devillers" +, author = "Y. Mansour and J. Park and B. Schieber and S. Sen" +, title = "Improved selection in totally monotone arrays" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "115--132" +, keywords = "Planar distance, convex polygons, totally monotone arrays, Monge arrays" +, update = "96.09 devillers" } @inproceedings{mt-rltcp-87 -, author = "M. Mansouri and G. T. Toussaint" -, title = "On the reachability of a ladder in two convex polygons" -, booktitle = "Proc. 13th IFIP Conf. on System Modelling and Optimization" -, site = "Tokyo, Japan" -, year = 1987 -, update = "98.03 bibrelex" +, author = "M. Mansouri and G. T. Toussaint" +, title = "On the reachability of a ladder in two convex polygons" +, booktitle = "Proc. 13th IFIP Conf. on System Modelling and Optimization" +, site = "Tokyo, Japan" +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{mt-tqcp-85 -, author = "M. Mansouri and G. T. Toussaint" -, title = "Translation queries for convex polygons" -, booktitle = "Proc. IASTED, International Symposium on Robotics and Automation" -, site = "Lugano, Switzerland" -, year = 1985 -, update = "98.07 bibrelex" +, author = "M. Mansouri and G. T. Toussaint" +, title = "Translation queries for convex polygons" +, booktitle = "Proc. IASTED, International Symposium on Robotics and Automation" +, site = "Lugano, Switzerland" +, year = 1985 +, update = "98.07 bibrelex" } @article{mt-tqcp-86 -, author = "M. Mansouri and G. T. Toussaint" -, title = "Translation queries for convex polygons" -, journal = "Internat. J. Robot. Autom." -, volume = 1 -, number = 3 -, year = 1986 -, pages = "90--95" -, update = "96.09 devillers, 94.05 devillers, 93.09 milone+mitchell" +, author = "M. Mansouri and G. T. Toussaint" +, title = "Translation queries for convex polygons" +, journal = "Internat. J. Robot. Autom." +, volume = 1 +, number = 3 +, year = 1986 +, pages = "90--95" +, update = "96.09 devillers, 94.05 devillers, 93.09 milone+mitchell" } @article{m-nmseo-84 -, author = "M. M{\"a}ntyl{\"a}" -, title = "A Note on the Modeling Space of {Euler} Operators" -, journal = "Comput. Vison Graph. Image Process." -, volume = 26 -, year = 1984 -, pages = "45--60" -, update = "98.03 bibrelex" +, author = "M. M{\"a}ntyl{\"a}" +, title = "A Note on the Modeling Space of {Euler} Operators" +, journal = "Comput. Vison Graph. Image Process." +, volume = 26 +, year = 1984 +, pages = "45--60" +, update = "98.03 bibrelex" } @book{m-ism-88 -, author = "M. M{\"a}ntyl{\"a}" -, title = "An Introduction to Solid Modeling" -, publisher = "Computer Science Press" -, address = "Rockville, MD" -, year = 1988 -, update = "93.09 devillers+goodrich" +, author = "M. M{\"a}ntyl{\"a}" +, title = "An Introduction to Solid Modeling" +, publisher = "Computer Science Press" +, address = "Rockville, MD" +, year = 1988 +, update = "93.09 devillers+goodrich" } @techreport{m-ismp1-84 -, author = "M. M{\"a}ntyl{\"a}" -, title = "An introduction to solid modeling, part {I}: fundamentals" -, type = "Report" -, number = "HTKK-TKO-C10" -, institution = "Lab. Inform. Process., Helsinki Univ. Tech." -, address = "Helsinki, Finland" -, year = 1984 +, author = "M. M{\"a}ntyl{\"a}" +, title = "An introduction to solid modeling, part {I}: fundamentals" +, type = "Report" +, number = "HTKK-TKO-C10" +, institution = "Lab. Inform. Process., Helsinki Univ. Tech." +, address = "Helsinki, Finland" +, year = 1984 } @techreport{m-ismp2-84 -, author = "M. M{\"a}ntyl{\"a}" -, title = "An introduction to solid modeling, part {II}: boundary models" -, type = "Report" -, number = "HTKK-TKO-C11" -, institution = "Lab. Inform. Process., Helsinki Univ. Tech." -, address = "Helsinki, Finland" -, year = 1984 +, author = "M. M{\"a}ntyl{\"a}" +, title = "An introduction to solid modeling, part {II}: boundary models" +, type = "Report" +, number = "HTKK-TKO-C11" +, institution = "Lab. Inform. Process., Helsinki Univ. Tech." +, address = "Helsinki, Finland" +, year = 1984 } @techreport{m-ismp3-84 -, author = "M. M{\"a}ntyl{\"a}" -, title = "An introduction to solid modeling, part {III}: advanced topics" -, type = "Report" -, number = "HTKK-TKO-C12" -, institution = "Lab. Inform. Process., Helsinki Univ. Tech." -, address = "Helsinki, Finland" -, year = 1984 +, author = "M. M{\"a}ntyl{\"a}" +, title = "An introduction to solid modeling, part {III}: advanced topics" +, type = "Report" +, number = "HTKK-TKO-C12" +, institution = "Lab. Inform. Process., Helsinki Univ. Tech." +, address = "Helsinki, Finland" +, year = 1984 } @article{m-ctstm-83 -, author = "M. J. M{\"a}ntyl{\"a}" -, title = "Computational topology: a study of topological manipulations and interrogations in computer graphics and geometric modeling" -, journal = "Acta Polytech. Scand. Math. Comput. Sci. Ser." -, volume = 37 -, year = 1983 -, pages = "??" +, author = "M. J. M{\"a}ntyl{\"a}" +, title = "Computational topology: a study of topological manipulations and interrogations in computer graphics and geometric modeling" +, journal = "Acta Polytech. Scand. Math. Comput. Sci. Ser." +, volume = 37 +, year = 1983 +, pages = "??" } @article{ms-gsmeo-82 -, author = "M. J. M{\"a}ntyl{\"a} and R. Sulonen" -, title = "{GWB}: {A} solid modeler with {Euler} operators" -, journal = "IEEE Comput. Graph. Appl." -, volume = 2 -, number = 5 -, year = 1982 -, pages = "17--31" +, author = "M. J. M{\"a}ntyl{\"a} and R. Sulonen" +, title = "{GWB}: {A} solid modeler with {Euler} operators" +, journal = "IEEE Comput. Graph. Appl." +, volume = 2 +, number = 5 +, year = 1982 +, pages = "17--31" } @article{msv-pedse-86 -, author = "Y. Maon and B. Schieber and U. Vishkin" -, title = "Parallel Ear Decomposition Search (EDS) and $st$-Numbering in Graphs" -, journal = "Theoret. Comput. Sci." -, volume = 47 -, year = 1986 -, pages = "277--298" -, update = "94.05 tamassia" +, author = "Y. Maon and B. Schieber and U. Vishkin" +, title = "Parallel Ear Decomposition Search (EDS) and $st$-Numbering in Graphs" +, journal = "Theoret. Comput. Sci." +, volume = 47 +, year = 1986 +, pages = "277--298" +, update = "94.05 tamassia" } @inproceedings{m-hphc-90 -, author = "D. Maple" -, title = "A hierarchy preserving hierarchical compaction" -, booktitle = "Proc. 27th Design Autom. Conf." -, year = 1990 -, pages = "375--381" -, update = "98.03 bibrelex" +, author = "D. Maple" +, title = "A hierarchy preserving hierarchical compaction" +, booktitle = "Proc. 27th Design Autom. Conf." +, year = 1990 +, pages = "375--381" +, update = "98.03 bibrelex" } @incollection{maf-dgoap-96 -, author = "C. D. Maranas and I. P. Androulakis and C. A. Floudas" -, title = "A deterministic global optimization approach for the protein folding problem" -, editor = "P. M. Pardalos and D. Shalloway and G. Xue" -, booktitle = "Global Minimization of Nonconvex Energy Functions: Molecular Conformation and Protein Folding" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 23 -, publisher = "America Mathematical Society" -, year = 1996 -, pages = "133--150" -, update = "02.03 orourke" +, author = "C. D. Maranas and I. P. Androulakis and C. A. Floudas" +, title = "A deterministic global optimization approach for the protein folding problem" +, editor = "P. M. Pardalos and D. Shalloway and G. Xue" +, booktitle = "Global Minimization of Nonconvex Energy Functions: Molecular Conformation and Protein Folding" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 23 +, publisher = "America Mathematical Society" +, year = 1996 +, pages = "133--150" +, update = "02.03 orourke" } @article{mm-sscep-73 -, author = "J. Marasa and D. Matula" -, title = "A Simulative Study of Correlated Error Propagation in Various Finite-Precision Arithmetics" -, journal = "IEEE Trans. Comput." -, volume = "C-22" -, number = 6 -, month = jun -, year = 1973 -, pages = "587--597" -, update = "98.03 bibrelex" +, author = "J. Marasa and D. Matula" +, title = "A Simulative Study of Correlated Error Propagation in Various Finite-Precision Arithmetics" +, journal = "IEEE Trans. Comput." +, volume = "C-22" +, number = 6 +, month = jun +, year = 1973 +, pages = "587--597" +, update = "98.03 bibrelex" } @article{mbhrr-shudg-95 -, author = "M. V. Marathe and H. Breu and H. B. {Hunt III} and S. S. Ravi and D. J. Rosenkrantz" -, title = "Simple heuristics for unit disk graphs" -, journal = "Networks" -, volume = 25 -, year = 1995 -, pages = "59--68" -, update = "97.07 agarwal" +, author = "M. V. Marathe and H. Breu and H. B. {Hunt III} and S. S. Ravi and D. J. Rosenkrantz" +, title = "Simple heuristics for unit disk graphs" +, journal = "Networks" +, volume = 25 +, year = 1995 +, pages = "59--68" +, update = "97.07 agarwal" } @inproceedings{mhr-gbaig-92 -, author = "M. V. Marathe and H. B. {Hunt III} and S. S. Ravi" -, title = "Geometry-based approximations for intersection graphs" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "244--249" -, cites = "ccj-udg-90, cs-splg-88, gj-cigtn-79, g-agtpg-80, hm-ascpp-85, be-lrtaw-85, b-aancp-83, fr-amdst-92, gl-ofcg-88, h-fata-80, h-ebssv-83, i-cigol-90, i-amids-91, k-amrts-84, s-caig-87, yws-opmtd-84, wk-stglp-88, be-avcpg-82, kt-eprc-81, r-gtaps-78, ZZZ" -, update = "98.07 bibrelex" +, author = "M. V. Marathe and H. B. {Hunt III} and S. S. Ravi" +, title = "Geometry-based approximations for intersection graphs" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "244--249" +, cites = "ccj-udg-90, cs-splg-88, gj-cigtn-79, g-agtpg-80, hm-ascpp-85, be-lrtaw-85, b-aancp-83, fr-amdst-92, gl-ofcg-88, h-fata-80, h-ebssv-83, i-cigol-90, i-amids-91, k-amrts-84, s-caig-87, yws-opmtd-84, wk-stglp-88, be-avcpg-82, kt-eprc-81, r-gtaps-78, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{mrhr-hsudg-93 -, author = "M. V. Marathe and V. Radhakrishnan and H. B. {Hunt III} and S. S. Ravi" -, title = "Hierarchically Specified Unit Disk Graphs" -, booktitle = "Proc. 19th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '93" -, institution = "SUNY Albany" -, year = 1993 -, pages = "??" -, update = "98.07 bibrelex, 93.09 milone+mitchell" +, author = "M. V. Marathe and V. Radhakrishnan and H. B. {Hunt III} and S. S. Ravi" +, title = "Hierarchically Specified Unit Disk Graphs" +, booktitle = "Proc. 19th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '93" +, institution = "SUNY Albany" +, year = 1993 +, pages = "??" +, update = "98.07 bibrelex, 93.09 milone+mitchell" } @inproceedings{m-csgcf-96 -, author = "Pedro V. Marcal" -, title = "Constructive solid geometry, the CAD-FEM connection" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "157--167" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Pedro V. Marcal" +, title = "Constructive solid geometry, the CAD-FEM connection" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "157--167" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{m-pcppi-81 -, author = "A. Marchetti-Spaccamela" -, title = "The $p$-center problem in the plane is {NP}-complete" -, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." -, year = 1981 -, pages = "31--40" +, author = "A. Marchetti-Spaccamela" +, title = "The $p$-center problem in the plane is {NP}-complete" +, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." +, year = 1981 +, pages = "31--40" } @inproceedings{ms-fmapp-89 -, author = "O. Marcotte and Subhash Suri" -, title = "Fast matching algorithms for points on a polygon" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "60--65" -, succeeds = "ms-gm-89" -, precedes = "ms-fmapp-91" -, update = "98.03 mitchell" +, author = "O. Marcotte and Subhash Suri" +, title = "Fast matching algorithms for points on a polygon" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "60--65" +, succeeds = "ms-gm-89" +, precedes = "ms-fmapp-91" +, update = "98.03 mitchell" } @article{ms-fmapp-91 -, author = "O. Marcotte and Subhash Suri" -, title = "Fast matching algorithms for points on a polygon" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "405--422" -, succeeds = "ms-fmapp-89" -, update = "98.03 mitchell" +, author = "O. Marcotte and Subhash Suri" +, title = "Fast matching algorithms for points on a polygon" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "405--422" +, succeeds = "ms-fmapp-89" +, update = "98.03 mitchell" } @inproceedings{ms-gm-89 -, author = "O. Marcotte and Subhash Suri" -, title = "On geometric matching" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "302--314" -, precedes = "ms-fmapp-89" -, cites = "akt-om-84, a-nemts-83, c-wcanh-76, df-pamwe-84, gh-ospqs-87, kl-tscap-75, kk-altag-88, k-aapge-78, l-conm-76, ps-coac-82, v-ghm-88, wpmk-bgmpl-86, e-mmpv-65, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "O. Marcotte and Subhash Suri" +, title = "On geometric matching" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "302--314" +, precedes = "ms-fmapp-89" +, cites = "akt-om-84, a-nemts-83, c-wcanh-76, df-pamwe-84, gh-ospqs-87, kl-tscap-75, kk-altag-88, k-aapge-78, l-conm-76, ps-coac-82, v-ghm-88, wpmk-bgmpl-86, e-mmpv-65, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{mkb-ma-79 -, author = "K. V. Mardia and J. T. Kent and J. M. Bibby" -, title = "Multivariate Analysis" -, journal = "Academic Press" -, volume = "??" -, year = 1979 -, pages = "213--250" -, update = "01.07 devillers, 98.07 bibrelex" +, author = "K. V. Mardia and J. T. Kent and J. M. Bibby" +, title = "Multivariate Analysis" +, journal = "Academic Press" +, volume = "??" +, year = 1979 +, pages = "213--250" +, update = "01.07 devillers, 98.07 bibrelex" } @inproceedings{m-paice-78 -, author = "M. Marek-Sadowska" -, title = "Planarization Algorithms for Integrated Circuits Engineering" -, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" -, year = 1978 -, pages = "919--923" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. Marek-Sadowska" +, title = "Planarization Algorithms for Integrated Circuits Engineering" +, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" +, year = 1978 +, pages = "919--923" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ml-cascv-89 -, author = "M. Maresca and H. Li" -, title = "Connection autonomy and {SIMD} computers: a {VLSI} implementation" -, journal = "J. Parallel Distrib. Comput." -, volume = 7 -, year = 1989 -, pages = "302--320" -, update = "98.11 bibrelex" +, author = "M. Maresca and H. Li" +, title = "Connection autonomy and {SIMD} computers: a {VLSI} implementation" +, journal = "J. Parallel Distrib. Comput." +, volume = 7 +, year = 1989 +, pages = "302--320" +, update = "98.11 bibrelex" } @article{m-egtcc-88 -, author = "G. A. Margulis" -, title = "Explicit group-theoretical constructions of combinatorial schemes and their applications to the design of expanders and superconcentrators" -, journal = "Problemy Peredachi Informatsii" -, volume = 24 -, year = 1988 -, pages = "51--60" -, note = "In Russian, Englisch Translation in Problems of Information Transmission 24, 39-46" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "G. A. Margulis" +, title = "Explicit group-theoretical constructions of combinatorial schemes and their applications to the design of expanders and superconcentrators" +, journal = "Problemy Peredachi Informatsii" +, volume = 24 +, year = 1988 +, pages = "51--60" +, note = "In Russian, Englisch Translation in Problems of Information Transmission 24, 39-46" +, update = "98.11 bibrelex, 98.03 bibrelex" } @inproceedings{mu-ps-94 -, author = "A. Mariano and L. Upson" -, title = "Penumbral Shadows" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = 390 -, keywords = "video review" -, cites = "hs-rt-67, fdfh-cgpp-90, v-gspc-92, t-caals-92, ZZZ" -, update = "98.03 bibrelex, 94.09 jones" +, author = "A. Mariano and L. Upson" +, title = "Penumbral Shadows" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = 390 +, keywords = "video review" +, cites = "hs-rt-67, fdfh-cgpp-90, v-gspc-92, t-caals-92, ZZZ" +, update = "98.03 bibrelex, 94.09 jones" } @techreport{mlk-mstmw-76 -, author = "D. M. Mark and J. J. Little and D. G. Kirkpatrick" -, title = "Minimum spanning trees and minimum weight triangulations" -, type = "Report" -, number = 8 -, institution = "Geog. Data Struct. Project, Simon Fraser Univ." -, address = "Burnaby, BC" -, year = 1976 -, keywords = "survey paper, design of algorithms, triangulations, minimum spanning trees" +, author = "D. M. Mark and J. J. Little and D. G. Kirkpatrick" +, title = "Minimum spanning trees and minimum weight triangulations" +, type = "Report" +, number = 8 +, institution = "Geog. Data Struct. Project, Simon Fraser Univ." +, address = "Burnaby, BC" +, year = 1976 +, keywords = "survey paper, design of algorithms, triangulations, minimum spanning trees" } @article{mnp-gg-90 -, author = "X. Markenscoff and L. Ni and C. H. Papadimitriou" -, title = "The geometry of grasping" -, journal = "Internat. J. Robot. Res." -, volume = 9 -, number = 1 -, month = feb -, year = 1990 -, update = "98.03 bibrelex" +, author = "X. Markenscoff and L. Ni and C. H. Papadimitriou" +, title = "The geometry of grasping" +, journal = "Internat. J. Robot. Res." +, volume = 9 +, number = 1 +, month = feb +, year = 1990 +, update = "98.03 bibrelex" } @article{mnp-ogp-89 -, author = "X. Markenscoff and L. Ni and Ch. H. Papadimitriou" -, title = "Optimal Grip of a Polygon" -, journal = "Internat. J. Robot. Res." -, volume = 8 -, number = 2 -, year = 1989 -, pages = "17--29" -, update = "98.07 bibrelex" +, author = "X. Markenscoff and L. Ni and Ch. H. Papadimitriou" +, title = "Optimal Grip of a Polygon" +, journal = "Internat. J. Robot. Res." +, volume = 8 +, number = 2 +, year = 1989 +, pages = "17--29" +, update = "98.07 bibrelex" } @article{mw-fowf-80 -, author = "G. Markowsky and M. A. Wesley" -, title = "Fleshing out wire frames" -, journal = "IBM J. Res. Develop." -, volume = 24 -, number = 5 -, year = 1980 -, pages = "582--597" +, author = "G. Markowsky and M. A. Wesley" +, title = "Fleshing out wire frames" +, journal = "IBM J. Res. Develop." +, volume = 24 +, number = 5 +, year = 1980 +, pages = "582--597" } @article{m-fsndt-91 -, author = "J. Marks" -, title = "A formal specification for network diagrams that facilitates automated design" -, journal = "J. Visual Lang. Comput." -, volume = 2 -, year = 1991 -, pages = "395--414" -, keywords = "graph drawing" -, update = "94.01 tamassia" +, author = "J. Marks" +, title = "A formal specification for network diagrams that facilitates automated design" +, journal = "J. Visual Lang. Comput." +, volume = 2 +, year = 1991 +, pages = "395--414" +, keywords = "graph drawing" +, update = "94.01 tamassia" } @article{m-rtisu-86 -, author = "E. Marom" -, title = "Real-time image subtraction using a liquid crystal light valve" -, journal = "Optical. Eng." -, volume = 25 -, number = 2 -, year = 1986 -, pages = "274--276" -, update = "97.11 bibrelex" +, author = "E. Marom" +, title = "Real-time image subtraction using a liquid crystal light valve" +, journal = "Optical. Eng." +, volume = 25 +, number = 2 +, year = 1986 +, pages = "274--276" +, update = "97.11 bibrelex" } @book{m-vcihr-82 -, author = "D. Marr" -, title = "Vision: {A} computational investigation into human representation and processing of visual information" -, publisher = "W. H. Freeman" -, year = 1982 -, update = "98.03 bibrelex" +, author = "D. Marr" +, title = "Vision: {A} computational investigation into human representation and processing of visual information" +, publisher = "W. H. Freeman" +, year = 1982 +, update = "98.03 bibrelex" } @techreport{mn-rrsot-77 -, author = "D. Marr and H. K. Nishihara" -, title = "Representation and recognition of the spatial organization of three dimensional shapes" -, type = "Report" -, number = "AIM 416" -, institution = "Comput. Sci. Lab., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1977 +, author = "D. Marr and H. K. Nishihara" +, title = "Representation and recognition of the spatial organization of three dimensional shapes" +, type = "Report" +, number = "AIM 416" +, institution = "Comput. Sci. Lab., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1977 } @article{mps-woaas-92 -, author = "C. Martel and A. Park and R. Subramonian" -, title = "Work-optimal asynchronous algorithms for shared memory parallel computers" -, journal = "SIAM J. Comput." -, volume = 21 -, number = 6 -, year = 1992 -, pages = "1070--1099" -, update = "96.09 orourke" +, author = "C. Martel and A. Park and R. Subramonian" +, title = "Work-optimal asynchronous algorithms for shared memory parallel computers" +, journal = "SIAM J. Comput." +, volume = 21 +, number = 6 +, year = 1992 +, pages = "1070--1099" +, update = "96.09 orourke" } @inproceedings{msp-apaag-90 -, author = "C. Martel and R. Subramonian and A. Park" -, title = "Asynchronous {PRAM}s are (almost) as good as Synchronous {PRAM}s" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "590--599" -, update = "96.09 orourke" +, author = "C. Martel and R. Subramonian and A. Park" +, title = "Asynchronous {PRAM}s are (almost) as good as Synchronous {PRAM}s" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "590--599" +, update = "96.09 orourke" } @book{m-jtlfe-62 -, author = "G. Martelli" -, title = "Jemmy Twitcher - {A} Life of the Fourth Earl of Sandwich, 1718-1792" -, publisher = "Jonathan Cape" -, address = "London, UK" -, year = 1962 -, update = "98.07 bibrelex" +, author = "G. Martelli" +, title = "Jemmy Twitcher - {A} Life of the Fourth Earl of Sandwich, 1718-1792" +, publisher = "Jonathan Cape" +, address = "London, UK" +, year = 1962 +, update = "98.07 bibrelex" } @techreport{m-spai3-91 -, author = "A. Martin" -, title = "A simple primal algorithm for intersecting $3$-polyhedra in linear time" -, type = "Technical {Report}" -, number = "91-16" -, institution = "Dept. Comput. Sci., Univ. British Columbia" -, address = "Vancouver, BC" -, year = 1991 -, update = "98.03 bibrelex" +, author = "A. Martin" +, title = "A simple primal algorithm for intersecting $3$-polyhedra in linear time" +, type = "Technical {Report}" +, number = "91-16" +, institution = "Dept. Comput. Sci., Univ. British Columbia" +, address = "Vancouver, BC" +, year = 1991 +, update = "98.03 bibrelex" } @book{m-tgis-66 -, author = "G. E. Martin" -, title = "Transformation Geometry: An Introduction to Symmetry" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1966 -, precedes = "m-tgis-82" -, update = "97.11 bibrelex" +, author = "G. E. Martin" +, title = "Transformation Geometry: An Introduction to Symmetry" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1966 +, precedes = "m-tgis-82" +, update = "97.11 bibrelex" } @book{m-tgis-82 -, author = "G. E. Martin" -, title = "Transformation Geometry: An Introduction to Symmetry" -, publisher = "Springer-Verlag" -, year = 1982 -, succeeds = "m-tgis-66" -, update = "97.11 bibrelex" +, author = "G. E. Martin" +, title = "Transformation Geometry: An Introduction to Symmetry" +, publisher = "Springer-Verlag" +, year = 1982 +, succeeds = "m-tgis-66" +, update = "97.11 bibrelex" } @article{m-sp628-65 -, author = "J. L. Martin" -, title = "Solution to problem 62-8, spatial navigation" -, journal = "SIAM Rev." -, volume = 7 -, year = 1965 -, pages = "132--134" +, author = "J. L. Martin" +, title = "Solution to problem 62-8, spatial navigation" +, journal = "SIAM Rev." +, volume = 7 +, year = 1965 +, pages = "132--134" } @article{ma-vdomv-83 -, author = "W. N. Martin and J. K. Aggarwal" -, title = "Volumetric description of objects from multiple views" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 5 -, year = 1983 -, pages = "150--158" -, update = "98.11 bibrelex" +, author = "W. N. Martin and J. K. Aggarwal" +, title = "Volumetric description of objects from multiple views" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 5 +, year = 1983 +, pages = "150--158" +, update = "98.11 bibrelex" } @article{mbddl-fnapm-93 -, author = "Y. Martin and M. Bures and E. Danaher and J. DeLazzer and I. Lico" -, title = "A fast new approach to pharmacophore mapping and its application to dopaminergic and benzodiazepine agonists" -, journal = "J. Computer Aided Molecular Design" -, volume = 7 -, year = 1993 -, pages = "83--102" -, update = "98.07 bibrelex" +, author = "Y. Martin and M. Bures and E. Danaher and J. DeLazzer and I. Lico" +, title = "A fast new approach to pharmacophore mapping and its application to dopaminergic and benzodiazepine agonists" +, journal = "J. Computer Aided Molecular Design" +, volume = 7 +, year = 1993 +, pages = "83--102" +, update = "98.07 bibrelex" } @incollection{mbw-sdtds-90 -, author = "Y. C. Martin and M. G. Bures and P. Willet" -, title = "Searching databases of three-dimensional structures" -, editor = "K. Lipkowitz and D. B. Boyd" -, booktitle = "Reviews in Computational Chemistry" -, volume = 1 -, publisher = "VCH Publishers" -, year = 1990 -, pages = "213--256" -, update = "98.07 bibrelex" +, author = "Y. C. Martin and M. G. Bures and P. Willet" +, title = "Searching databases of three-dimensional structures" +, editor = "K. Lipkowitz and D. B. Boyd" +, booktitle = "Reviews in Computational Chemistry" +, volume = 1 +, publisher = "VCH Publishers" +, year = 1990 +, pages = "213--256" +, update = "98.07 bibrelex" } @article{ms-chrfm- -, author = "T. Martinetz and K. Schulten" -, title = "Competitive {Hebain} rule forms manifold representing networks" -, journal = "Neural Networks" -, volume = "??" -, year = "??" -, note = "To appear" -, update = "98.03 bibrelex" +, author = "T. Martinetz and K. Schulten" +, title = "Competitive {Hebain} rule forms manifold representing networks" +, journal = "Neural Networks" +, volume = "??" +, year = "??" +, note = "To appear" +, update = "98.03 bibrelex" } @article{m-cpwpb-91 -, author = "H. Martini" -, title = "Convex polytopes whose projections bodies and difference sets are polars" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "83--91" +, author = "H. Martini" +, title = "Convex polytopes whose projections bodies and difference sets are polars" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "83--91" } @article{ms-mcppd-98 -, author = "H. Martini and V. Soltan" -, title = "Minimum convex partition of polygonal domains by guillotine cuts" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "291--304" -, update = "01.07 orourke" +, author = "H. Martini and V. Soltan" +, title = "Minimum convex partition of polygonal domains by guillotine cuts" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "291--304" +, update = "01.07 orourke" } @inproceedings{mmw-occha-96 -, author = "V. Martynchik and N. Metelski and D. Wood" -, title = "{O-Convexity}: {Computing} hulls, approximations, and orientation sets" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "2--7" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "V. Martynchik and N. Metelski and D. Wood" +, title = "{O-Convexity}: {Computing} hulls, approximations, and orientation sets" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "2--7" +, update = "97.03 agarwal, 96.09 mitchell" } @article{m-pdibp-72 -, author = "K. Maruyama" -, title = "A procedure to determine intersections between polyhedral objects" -, journal = "Internat. J. Comput. Inform. Sci." -, volume = 1 -, year = 1972 -, pages = "255--266" +, author = "K. Maruyama" +, title = "A procedure to determine intersections between polyhedral objects" +, journal = "Internat. J. Comput. Inform. Sci." +, volume = 1 +, year = 1972 +, pages = "255--266" } @techreport{m-svsp-72 -, author = "K. Maruyama" -, title = "A study of visual shape perception" -, type = "Report" -, number = "UIUCDCS-R-72-533" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1972 +, author = "K. Maruyama" +, title = "A study of visual shape perception" +, type = "Report" +, number = "UIUCDCS-R-72-533" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1972 } @inproceedings{m-pprsp-98 -, author = "Michael N. Maryukov" -, title = "Problems of Pattern Recognition on the Set of Polyhedra and their Plane Images" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "115--116" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Michael N. Maryukov" +, title = "Problems of Pattern Recognition on the Set of Polyhedra and their Plane Images" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "115--116" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{mn-ekbps-01 -, author = "A. Marzetta and J. Nievergelt" -, title = "Enumerating the {$k$} best plane spanning trees" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "55--64" -, update = "01.04 smid" +, author = "A. Marzetta and J. Nievergelt" +, title = "Enumerating the {$k$} best plane spanning trees" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "55--64" +, update = "01.04 smid" } @mastersthesis{m-aert-95 -, author = "T. Masada" -, title = "An Algorithm for the Enumeration of Regular Triangulations" -, school = "Department of Information Science, University of Tokyo" -, address = "Tokyo, Japan" -, month = mar -, year = 1995 -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "T. Masada" +, title = "An Algorithm for the Enumeration of Regular Triangulations" +, school = "Department of Information Science, University of Tokyo" +, address = "Tokyo, Japan" +, month = mar +, year = 1995 +, keywords = "master thesis" +, update = "97.11 bibrelex" } @techreport{m-ossae-94 -, author = "T. Masada" -, title = "An Output Size Sensitive Algorithm for the Enumeration of Regular Triangulations" -, type = "Technical {Report}" -, number = "94-1" -, institution = "Department of Information Science, University of Tokyo" -, address = "Tokyo, Japan" -, month = nov -, year = 1994 -, update = "97.11 bibrelex" +, author = "T. Masada" +, title = "An Output Size Sensitive Algorithm for the Enumeration of Regular Triangulations" +, type = "Technical {Report}" +, number = "94-1" +, institution = "Department of Information Science, University of Tokyo" +, address = "Tokyo, Japan" +, month = nov +, year = 1994 +, update = "97.11 bibrelex" } @inproceedings{mii-ert-96 -, author = "Tomonari Masada and Hiroshi Imai and Keiko Imai" -, title = "Enumeration of Regular Triangulations" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "224--233" -, cites = "af-pachv-92, bfs-ccsp-90, c-ochan-91, l-crtpc-94, lst-gbtsh-95, es-itfwr-92, f-iradr-95, gkz-drmd-94, j-3dtlt-89, l-rtp-91, m-ossae-94, m-aert-95, r-dchhd-92, s-chdch-86, s-gbtv-91, s-gbcp-95, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Tomonari Masada and Hiroshi Imai and Keiko Imai" +, title = "Enumeration of Regular Triangulations" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "224--233" +, cites = "af-pachv-92, bfs-ccsp-90, c-ochan-91, l-crtpc-94, lst-gbtsh-95, es-itfwr-92, f-iradr-95, gkz-drmd-94, j-3dtlt-89, l-rtp-91, m-ossae-94, m-aert-95, r-dchhd-92, s-chdch-86, s-gbtv-91, s-gbcp-95, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @techreport{m-ncscp-78 -, author = "W. J. Masek" -, title = "Some NP-complete Set Covering Problems" -, type = "Manuscript" -, institution = "MIT" -, year = 1978 -, update = "98.07 bibrelex" +, author = "W. J. Masek" +, title = "Some NP-complete Set Covering Problems" +, type = "Manuscript" +, institution = "MIT" +, year = 1978 +, update = "98.07 bibrelex" } @unpublished{m-snpcs-79 -, author = "W. J. Masek" -, title = "Some {NP}-complete set covering problems" -, year = 1979 -, note = "unpublished manuscript" -, update = "97.11 bibrelex" +, author = "W. J. Masek" +, title = "Some {NP}-complete set covering problems" +, year = 1979 +, note = "unpublished manuscript" +, update = "97.11 bibrelex" } @article{ma-oaslm-89 -, author = "J. Maserjian and P. O. Anderson" -, title = "Optically addressed spatial light modulator by {MBE} - grown nipi {MQW} structures" -, journal = "Appl. Optics" -, volume = 28 -, number = 22 -, year = 1989 -, pages = "4801--4807" -, update = "97.11 bibrelex" +, author = "J. Maserjian and P. O. Anderson" +, title = "Optically addressed spatial light modulator by {MBE} - grown nipi {MQW} structures" +, journal = "Appl. Optics" +, volume = 28 +, number = 22 +, year = 1989 +, pages = "4801--4807" +, update = "97.11 bibrelex" } @inproceedings{m-apfmc-84 -, author = "M. T. Mason" -, title = "Automatic planning of fine motions: Correctness and completeness" -, booktitle = "IEEE International Conference on Robotics" -, year = 1984 -, update = "98.03 bibrelex" +, author = "M. T. Mason" +, title = "Automatic planning of fine motions: Correctness and completeness" +, booktitle = "IEEE International Conference on Robotics" +, year = 1984 +, update = "98.03 bibrelex" } @article{m-cfccc-81 -, author = "M. T. Mason" -, title = "Compliance and force control for computer controlled manipulators" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-11" -, year = 1981 -, pages = "418--432" -, update = "98.03 bibrelex" +, author = "M. T. Mason" +, title = "Compliance and force control for computer controlled manipulators" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-11" +, year = 1981 +, pages = "418--432" +, update = "98.03 bibrelex" } @techreport{m-cfccc-79 -, author = "M. T. Mason" -, title = "Compliance and Force Control of Computer Controlled Manipulator" -, number = "A. I. Memo No. 605" -, institution = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1979 -, update = "97.11 bibrelex" +, author = "M. T. Mason" +, title = "Compliance and Force Control of Computer Controlled Manipulator" +, number = "A. I. Memo No. 605" +, institution = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1979 +, update = "97.11 bibrelex" } @techreport{m-mgpo-82 -, author = "M. T. Mason" -, title = "Manipulator grasping and pushing operations" -, number = "MIT-AI-TR 690" -, institution = "Artificial Intelligence Laboratory, MIT" -, year = 1982 -, update = "98.03 bibrelex" +, author = "M. T. Mason" +, title = "Manipulator grasping and pushing operations" +, number = "MIT-AI-TR 690" +, institution = "Artificial Intelligence Laboratory, MIT" +, year = 1982 +, update = "98.03 bibrelex" } @article{m-mpmpo-86 -, author = "M. T. Mason" -, title = "Mechanics and planning of manipulator pushing operations" -, journal = "Internat. J. Robot. Res." -, volume = 5 -, year = 1986 -, pages = "53--71" -, update = "98.03 agarwal" +, author = "M. T. Mason" +, title = "Mechanics and planning of manipulator pushing operations" +, journal = "Internat. J. Robot. Res." +, volume = 5 +, year = 1986 +, pages = "53--71" +, update = "98.03 agarwal" } @book{ms-rhmm-85 -, author = "M. T. Mason and J. K. Salisbury" -, title = "Robot hands and the mechanics of manipulation" -, publisher = "MIT Press" -, year = 1985 -, update = "98.07 bibrelex" +, author = "M. T. Mason and J. K. Salisbury" +, title = "Robot hands and the mechanics of manipulation" +, publisher = "MIT Press" +, year = 1985 +, update = "98.07 bibrelex" } @article{m-dac-56 -, author = "R. M. Mason" -, title = "The digital approximation of contours" -, journal = "J. ACM" -, volume = 3 -, year = 1956 -, pages = "355--359" +, author = "R. M. Mason" +, title = "The digital approximation of contours" +, journal = "J. ACM" +, volume = 3 +, year = 1956 +, pages = "355--359" } @book{m-ati-77 -, author = "W. S. Massey" -, title = "Algebraic Topology: {An} Introduction" -, series = "Graduate Texts in Mathematics" -, volume = 56 -, publisher = "Springer-Verlag" -, year = 1977 -, update = "97.11 bibrelex" +, author = "W. S. Massey" +, title = "Algebraic Topology: {An} Introduction" +, series = "Graduate Texts in Mathematics" +, volume = 56 +, publisher = "Springer-Verlag" +, year = 1977 +, update = "97.11 bibrelex" } @book{m-hct-78 -, author = "W. S. Massey" -, title = "Homology and Cohomology Theory" -, publisher = "Marcel Dekker, Inc." -, address = "New York, NY" -, year = 1978 -, update = "97.11 bibrelex" +, author = "W. S. Massey" +, title = "Homology and Cohomology Theory" +, publisher = "Marcel Dekker, Inc." +, address = "New York, NY" +, year = 1978 +, update = "97.11 bibrelex" } @article{m-ctqdab-86 -, author = "Howard Masur" -, title = "Closed trajectories for quadratic differentials with an application to billiards" -, journal = "Duke Math. J." -, volume = 53 -, year = 1986 -, pages = "307--314" -, update = "01.04 orourke" +, author = "Howard Masur" +, title = "Closed trajectories for quadratic differentials with an application to billiards" +, journal = "Duke Math. J." +, volume = 53 +, year = 1986 +, pages = "307--314" +, update = "01.04 orourke" } @article{mih-ccmcp-81 -, author = "S. Masuyama and T. Ibaraki and T. Hasegawa" -, title = "The computational complexity of the $m$-center problem" -, journal = "Trans. IECE Japan" -, volume = "E 64" -, number = 2 -, year = 1981 -, pages = "57--64" -, update = "97.11 bibrelex" +, author = "S. Masuyama and T. Ibaraki and T. Hasegawa" +, title = "The computational complexity of the $m$-center problem" +, journal = "Trans. IECE Japan" +, volume = "E 64" +, number = 2 +, year = 1981 +, pages = "57--64" +, update = "97.11 bibrelex" } @techreport{m-cfaar-95 -, author = "C. Mata" -, title = "A Constant Factor Approximation Algorithm for the Red-Blue Separation Problem" -, institution = "Manuscript, Dept. of Computer Science, SUNY Stony Brook, NY" -, year = 1995 -, keywords = "TSP, k-MST, approximation, separation" -, update = "95.09 mitchell" +, author = "C. Mata" +, title = "A Constant Factor Approximation Algorithm for the Red-Blue Separation Problem" +, institution = "Manuscript, Dept. of Computer Science, SUNY Stony Brook, NY" +, year = 1995 +, keywords = "TSP, k-MST, approximation, separation" +, update = "95.09 mitchell" } @inproceedings{mm-nacsp-97 -, author = "Cristian Mata and Joseph S. B. Mitchell" -, title = "A new algorithm for computing shortest paths in weighted planar subdivisions" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "264--273" -, cites = "ar-ppopm-90, ckt-spqwo-95, c-aaspm-87, d-reidt-92, d-lcpgi-93, gmmn-pp0wr-90, gs-pmgsc-85, j-wdmim-97, kg-cgwac-92, ksr-sawrp1-91, ksr-sawrp2-91, lms-awspp-97i, l-ccm-94, lm-crm-95, m-aaspt-91, m-lsppo-92, mp-wrpfs-91, mpk-pravc-87, p-aspmt-85, r-edt-93, rrzm-sgtdr-87, rr-eslmo-90, w-tsplr-57, y-cmstk-82, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "Cristian Mata and Joseph S. B. Mitchell" +, title = "A new algorithm for computing shortest paths in weighted planar subdivisions" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "264--273" +, cites = "ar-ppopm-90, ckt-spqwo-95, c-aaspm-87, d-reidt-92, d-lcpgi-93, gmmn-pp0wr-90, gs-pmgsc-85, j-wdmim-97, kg-cgwac-92, ksr-sawrp1-91, ksr-sawrp2-91, lms-awspp-97i, l-ccm-94, lm-crm-95, m-aaspt-91, m-lsppo-92, mp-wrpfs-91, mpk-pravc-87, p-aspmt-85, r-edt-93, rrzm-sgtdr-87, rr-eslmo-90, w-tsplr-57, y-cmstk-82, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @techreport{mm-aagtn-94 -, author = "C. Mata and J. S. B. Mitchell" -, title = "Approximation Algorithms for Geometric Tour and Network Design Problems" -, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" -, year = 1994 -, keywords = "watchman route, TSP, k-MST, approximation, separation, covering TSP" -, precedes = "mm-aagtn-95" -, update = "98.03 mitchell, 95.09 mitchell" +, author = "C. Mata and J. S. B. Mitchell" +, title = "Approximation Algorithms for Geometric Tour and Network Design Problems" +, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" +, year = 1994 +, keywords = "watchman route, TSP, k-MST, approximation, separation, covering TSP" +, precedes = "mm-aagtn-95" +, update = "98.03 mitchell, 95.09 mitchell" } @inproceedings{mm-aagtn-95 -, author = "Cristian Mata and Joseph S. B. Mitchell" -, title = "Approximation Algorithms for Geometric Tour and Network Design Problems" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "360--369" -, keywords = "watchman route, TSP, k-MST, approximation, separation, covering TSP" -, succeeds = "mm-aagtn-94" -, cites = "as-sagp-94, ah-aagcs-94, akm-gkp-93, aabv-iagmw-95, bk-rdlsn-93, bcv-cfakm-95, cjn-fswrs-93, cn-owr-88, c-wcanh-76, c-aapts-91, dps-melgr-86, er-ccmsp-93, e-amwt-92, f-cmlrb-92, gh-oaakm-94, grz-edcaa-90, hs-parss-93, irw-sncpp-91, l-fhmlr-86, l-hmdp-87, ll-blcpp-84, m-aagsp-93, n-gagmm-95, py-ebsph-90, py-obspo-92, rw-bspvo-89, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Cristian Mata and Joseph S. B. Mitchell" +, title = "Approximation Algorithms for Geometric Tour and Network Design Problems" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "360--369" +, keywords = "watchman route, TSP, k-MST, approximation, separation, covering TSP" +, succeeds = "mm-aagtn-94" +, cites = "as-sagp-94, ah-aagcs-94, akm-gkp-93, aabv-iagmw-95, bk-rdlsn-93, bcv-cfakm-95, cjn-fswrs-93, cn-owr-88, c-wcanh-76, c-aapts-91, dps-melgr-86, er-ccmsp-93, e-amwt-92, f-cmlrb-92, gh-oaakm-94, grz-edcaa-90, hs-parss-93, irw-sncpp-91, l-fhmlr-86, l-hmdp-87, ll-blcpp-84, m-aagsp-93, n-gagmm-95, py-ebsph-90, py-obspo-92, rw-bspvo-89, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @book{m-rsig-75 -, author = "G. Matheron" -, title = "Random Sets and Integral Geometry" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1975 -, update = "99.11 bibrelex, 98.07 bibrelex" +, author = "G. Matheron" +, title = "Random Sets and Integral Geometry" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1975 +, update = "99.11 bibrelex, 98.07 bibrelex" } @article{m-spcg-87 -, author = "C. Mathieu" -, title = "Some problems in computational geometry" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "131--134" +, author = "C. Mathieu" +, title = "Some problems in computational geometry" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "131--134" } @article{mpy-aedsb-87 -, author = "C. Mathieu and C. Puech and H. Yahia" -, title = "Average efficiency of data structures for binary image processing" -, journal = "Inform. Process. Lett." -, volume = 26 -, year = 1987 -, pages = "89--93" +, author = "C. Mathieu and C. Puech and H. Yahia" +, title = "Average efficiency of data structures for binary image processing" +, journal = "Inform. Process. Lett." +, volume = 26 +, year = 1987 +, pages = "89--93" } @inproceedings{m-sdcpa-93 -, author = "Y. Matias" -, title = "Semi-dynamic closest-pair Algorithms" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "264--271" -, cites = "aesw-emstb-90, b-lbact-83, b-dsp-79, b-mdc-80, bs-dcms-76, clr-ia-90, dd-ekdnp-91, dgmp-phfr-92, dm-nuchf-90, fh-nrnna-79, fks-sstwc-84, fw-bitbf-90, grss-rdsdc-93i, grss-sracp-93, hns-psscp-88, km-srsac-91, ms-ufetp-91, m-iaca-89, mv-chpnc-91, m-mdscg-84, ps-cgi-85 , r-ppass-85, s-sisie-91, ss-oaolc-92, sss-oaolc-92, sh-cpp-75, s-mmdpsl-91a, s-mmdpsp-92a, s-ntsdc-90, gmv-ttnct-92, r-pa-76, y-lbact-91, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "Y. Matias" +, title = "Semi-dynamic closest-pair Algorithms" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "264--271" +, cites = "aesw-emstb-90, b-lbact-83, b-dsp-79, b-mdc-80, bs-dcms-76, clr-ia-90, dd-ekdnp-91, dgmp-phfr-92, dm-nuchf-90, fh-nrnna-79, fks-sstwc-84, fw-bitbf-90, grss-rdsdc-93i, grss-sracp-93, hns-psscp-88, km-srsac-91, ms-ufetp-91, m-iaca-89, mv-chpnc-91, m-mdscg-84, ps-cgi-85 , r-ppass-85, s-sisie-91, ss-oaolc-92, sss-oaolc-92, sh-cpp-75, s-mmdpsl-91a, s-mmdpsp-92a, s-ntsdc-90, gmv-ttnct-92, r-pa-76, y-lbact-91, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{mv-chpnc-91 -, author = "Y. Matias and U. Vishkin" -, title = "Converting high probability into nearly constant time - with appliccations to parallel hashing" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, month = may -, year = 1991 -, pages = "307--316" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "Y. Matias and U. Vishkin" +, title = "Converting high probability into nearly constant time - with appliccations to parallel hashing" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, month = may +, year = 1991 +, pages = "307--316" +, update = "98.11 bibrelex, 97.11 bibrelex" } @inproceedings{mvn-dgdrv-93 -, author = "Y. Matias and J. S. Vitter and W.-C. Ni" -, title = "Dynamic generation of discrete random variates" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "187--194" -, update = "96.09 agarwal, 94.09 vitter" +, author = "Y. Matias and J. S. Vitter and W.-C. Ni" +, title = "Dynamic generation of discrete random variates" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "187--194" +, update = "96.09 agarwal, 94.09 vitter" } @inproceedings{mvw-wbhse-98 -, author = "Y. Matias and J. S. Vitter and M. Wang" -, title = "Wavelet-Based Histograms for Selectivity Estimation" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1998 -, update = "98.03 agarwal" +, author = "Y. Matias and J. S. Vitter and M. Wang" +, title = "Wavelet-Based Histograms for Selectivity Estimation" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1998 +, update = "98.03 agarwal" } @inproceedings{mvy-adsa-94 -, author = "Y. Matias and J. S. Vitter and N. Young" -, title = "Approximate Data Structures with Applications" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "187--194" -, update = "94.09 vitter" +, author = "Y. Matias and J. S. Vitter and N. Young" +, title = "Approximate Data Structures with Applications" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "187--194" +, update = "94.09 vitter" } @inproceedings{m-httuc-95 -, author = "Ji{\v r}{\'\i} Matou{\v s}ek" -, title = "A {Helly}-type Theorem for Unions of Convex Sets" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "138--146" -, keywords = "" -, cites = "abfk-pswen-92, ak-pcs-92a, ak-bpn-95, a-htglp-93, a-bbhdn-94, bfl-nhp-90, bk-gdtmc-76, c-lvalp-88, de-ctchp-93, d-httdb-70, dp-epgh-94, e-hrctt-93, e-gtp-59, f-undkd-, g-saaop-92, gm-csfs-61, grs-rt-90, h-usvam-30, l-htpuc-68, m-gofvc-94, m-tphpu-73, msw-sblp-92, m-eat-84, ps-cncsr-90, s-sesc-92, sw-cblpr-92, k-ker-32, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Ji{\v r}{\'\i} Matou{\v s}ek" +, title = "A {Helly}-type Theorem for Unions of Convex Sets" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "138--146" +, keywords = "" +, cites = "abfk-pswen-92, ak-pcs-92a, ak-bpn-95, a-htglp-93, a-bbhdn-94, bfl-nhp-90, bk-gdtmc-76, c-lvalp-88, de-ctchp-93, d-httdb-70, dp-epgh-94, e-hrctt-93, e-gtp-59, f-undkd-, g-saaop-92, gm-csfs-61, grs-rt-90, h-usvam-30, l-htpuc-68, m-gofvc-94, m-tphpu-73, msw-sblp-92, m-eat-84, ps-cncsr-90, s-sesc-92, sw-cblpr-92, k-ker-32, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @techreport{m-aalpl-93 -, author = "J. Matou{\v s}ek" -, title = "Algorithms for abstract linear programming: {Lower} bounds and experiments" -, institution = "Princeton University" -, month = feb -, year = 1993 -, comments = "DIMACS Workshop on Randomized Algorithms for Combinatorial Optimization" -, update = "96.09 agarwal, 93.09 milone+mitchell" +, author = "J. Matou{\v s}ek" +, title = "Algorithms for abstract linear programming: {Lower} bounds and experiments" +, institution = "Princeton University" +, month = feb +, year = 1993 +, comments = "DIMACS Workshop on Randomized Algorithms for Combinatorial Optimization" +, update = "96.09 agarwal, 93.09 milone+mitchell" } @techreport{m-ahrc-87 -, author = "J. Matou{\v s}ek" -, title = "Approximate halfplanar range counting" -, type = "KAM {Series}" -, number = "59-87" -, institution = "Charles Univ." -, address = "Prague, Czechoslovakia" -, year = 1987 -, update = "97.11 bibrelex" +, author = "J. Matou{\v s}ek" +, title = "Approximate halfplanar range counting" +, type = "KAM {Series}" +, number = "59-87" +, institution = "Charles Univ." +, address = "Prague, Czechoslovakia" +, year = 1987 +, update = "97.11 bibrelex" } @article{m-alla-91 -, author = "J. Matou{\v s}ek" -, title = "Approximate levels in line arrangements" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "222--227" -, update = "96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Approximate levels in line arrangements" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "222--227" +, update = "96.09 agarwal" } @techreport{m-aodq-90 -, author = "J. Matou{\v s}ek" -, title = "Approximations and Optimal Divide-and-Conquer" -, type = "Manuscript" -, year = 1990 -, update = "97.11 bibrelex" +, author = "J. Matou{\v s}ek" +, title = "Approximations and Optimal Divide-and-Conquer" +, type = "Manuscript" +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{m-aogdc-91 -, author = "J. Matou{\v s}ek" -, title = "Approximations and optimal geometric divide-and-conquer" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "505--511" -, keywords = "approximations, VC-dimension, shatter function, derandomization, cutting, partition" -, update = "00.03 smid, 96.09 agarwal, 93.09 erickson+matousek" +, author = "J. Matou{\v s}ek" +, title = "Approximations and optimal geometric divide-and-conquer" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "505--511" +, keywords = "approximations, VC-dimension, shatter function, derandomization, cutting, partition" +, update = "00.03 smid, 96.09 agarwal, 93.09 erickson+matousek" } @article{m-aogdc-95 -, author = "J. Matou{\v s}ek" -, title = "Approximations and optimal geometric divide-and-conquer" -, journal = "J. Comput. Syst. Sci." -, volume = 50 -, year = 1995 -, pages = "203--208" -, update = "00.03 smid" +, author = "J. Matou{\v s}ek" +, title = "Approximations and optimal geometric divide-and-conquer" +, journal = "J. Comput. Syst. Sci." +, volume = 50 +, year = 1995 +, pages = "203--208" +, update = "00.03 smid" } @unpublished{m-cag- -, author = "J. Matou{\v s}ek" -, title = "Combinatorial and algorithmic geometry" -, note = "Unpublished lecture notes" -, update = "98.07 bibrelex" +, author = "J. Matou{\v s}ek" +, title = "Combinatorial and algorithmic geometry" +, note = "Unpublished lecture notes" +, update = "98.07 bibrelex" } @article{m-cde-91 -, author = "J. Matou{\v s}ek" -, title = "Computing dominances in {$E^{n}$}" -, journal = "Inform. Process. Lett." -, volume = 38 -, year = 1991 -, pages = "277--278" -, update = "96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Computing dominances in {$E^{n}$}" +, journal = "Inform. Process. Lett." +, volume = 38 +, year = 1991 +, pages = "277--278" +, update = "96.09 agarwal" } @incollection{m-ccpps-91 -, author = "J. Matou{\v s}ek" -, title = "Computing the center of planar point sets" -, editor = "J. E. Goodman and R. Pollack and W. Steiger" -, booktitle = "Computational Geometry: Papers from the DIMACS Special Year" -, publisher = "American Mathematical Society" -, address = "Providence" -, year = 1991 -, pages = "221--230" -, keywords = "centerpoint, parametric search, cutting, k-level" -, update = "98.07 agarwal, 96.05 agarwal, 93.09 matousek" +, author = "J. Matou{\v s}ek" +, title = "Computing the center of planar point sets" +, editor = "J. E. Goodman and R. Pollack and W. Steiger" +, booktitle = "Computational Geometry: Papers from the DIMACS Special Year" +, publisher = "American Mathematical Society" +, address = "Providence" +, year = 1991 +, pages = "221--230" +, keywords = "centerpoint, parametric search, cutting, k-level" +, update = "98.07 agarwal, 96.05 agarwal, 93.09 matousek" } @inproceedings{m-cen-89 -, author = "J. Matou{\v s}ek" -, title = "Construction of $\epsilon$-nets" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "1--10" -, precedes = "m-cen-90" -, cites = "aks-osn-83, c-ghscp-79, csss-otass-89, e-acg-87, ew-cbtda-86, hw-ensrq-87, l-roifc-75, m-ahrc-87, s-pptld-86, w-pttco-88, ZZZ" -, update = "98.03 bibrelex, 96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Construction of $\epsilon$-nets" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "1--10" +, precedes = "m-cen-90" +, cites = "aks-osn-83, c-ghscp-79, csss-otass-89, e-acg-87, ew-cbtda-86, hw-ensrq-87, l-roifc-75, m-ahrc-87, s-pptld-86, w-pttco-88, ZZZ" +, update = "98.03 bibrelex, 96.09 agarwal" } @article{m-cen-90 -, author = "J. Matou{\v s}ek" -, title = "Construction of $\epsilon$-nets" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "427--448" -, succeeds = "m-cen-89" -, update = "96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Construction of $\epsilon$-nets" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "427--448" +, succeeds = "m-cen-89" +, update = "96.09 agarwal" } @techreport{m-cha-90t -, author = "J. Matou{\v s}ek" -, title = "Cutting Hyperplane Arrangements" -, type = "Technical {Report}" -, number = "90-7" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, precedes = "m-cha-90i" -, update = "96.09 agarwal, 93.09 milone+mitchell" +, author = "J. Matou{\v s}ek" +, title = "Cutting Hyperplane Arrangements" +, type = "Technical {Report}" +, number = "90-7" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, precedes = "m-cha-90i" +, update = "96.09 agarwal, 93.09 milone+mitchell" } @inproceedings{m-cha-90i -, author = "J. Matou{\v s}ek" -, title = "Cutting hyperplane arrangements" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "1--9" -, precedes = "m-cha-91" -, cites = "ahu-dsa-83, a-dapal-89, a-rsoas-89, cegs-lscaa-89, cf-dvrsi-88t, c-arscg-88, c-racpq-88, cegsw-ccbac-88, e-acg-87, eghsssw-irals-89, eos-calha-86, hw-ensrq-87, m-cen-89, m-ahrc-87, pw-snben-89, yy-gaddg-85, ZZZ" -, update = "97.11 bibrelex, 96.09 agarwal, 93.09 milone+mitchell" +, author = "J. Matou{\v s}ek" +, title = "Cutting hyperplane arrangements" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "1--9" +, precedes = "m-cha-91" +, cites = "ahu-dsa-83, a-dapal-89, a-rsoas-89, cegs-lscaa-89, cf-dvrsi-88t, c-arscg-88, c-racpq-88, cegsw-ccbac-88, e-acg-87, eghsssw-irals-89, eos-calha-86, hw-ensrq-87, m-cen-89, m-ahrc-87, pw-snben-89, yy-gaddg-85, ZZZ" +, update = "97.11 bibrelex, 96.09 agarwal, 93.09 milone+mitchell" } @article{m-cha-91 -, author = "J. Matou{\v s}ek" -, title = "Cutting hyperplane arrangements" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "385--406" -, succeeds = "m-cha-90i" -, update = "96.09 agarwal, 93.09 milone+mitchell" +, author = "J. Matou{\v s}ek" +, title = "Cutting hyperplane arrangements" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "385--406" +, succeeds = "m-cha-90i" +, update = "96.09 agarwal, 93.09 milone+mitchell" } @article{m-dcg-96 -, author = "J. Matou{\v s}ek" -, title = "Derandomization in computational geometry" -, journal = "J. Algorithms" -, volume = 20 -, year = 1996 -, pages = "545--580" -, update = "97.03 smid" +, author = "J. Matou{\v s}ek" +, title = "Derandomization in computational geometry" +, journal = "J. Algorithms" +, volume = 20 +, year = 1996 +, pages = "545--580" +, update = "97.03 smid" } @incollection{m-dcg-00 -, author = "Ji{\v r}{\'\i} Matou{\v s}ek" -, title = "Derandomization in Computational Geometry" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "559--595" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 13 of su-hcg-00" +, author = "Ji{\v r}{\'\i} Matou{\v s}ek" +, title = "Derandomization in Computational Geometry" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "559--595" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 13 of su-hcg-00" } @inproceedings{m-ept-91 -, author = "J. Matou{\v s}ek" -, title = "Efficient partition trees" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "1--9" -, keywords = "range search, simplex, partition trees" -, cites = "a-pal2a-90, ahl-sqrpc-90, b-dsp-79, c-lbcpr-89, cgl-pgd-85, csw-qoubs-90, cf-dvrsi-90, cp-hrsaa-86, cw-qorss-89, ew-hrsls-86, hw-ensrq-87, m-aogdc-91, m-cha-90i, m-mcast-90, o-ddds-83, so-dpt-90, vc-ucrfe-71, w-pttco-88, w-pr-82, yy-gaddg-85, ZZZ" -, update = "97.11 bibrelex, 96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Efficient partition trees" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "1--9" +, keywords = "range search, simplex, partition trees" +, cites = "a-pal2a-90, ahl-sqrpc-90, b-dsp-79, c-lbcpr-89, cgl-pgd-85, csw-qoubs-90, cf-dvrsi-90, cp-hrsaa-86, cw-qorss-89, ew-hrsls-86, hw-ensrq-87, m-aogdc-91, m-cha-90i, m-mcast-90, o-ddds-83, so-dpt-90, vc-ucrfe-71, w-pttco-88, w-pr-82, yy-gaddg-85, ZZZ" +, update = "97.11 bibrelex, 96.09 agarwal" } @article{m-ept-92 -, author = "J. Matou{\v s}ek" -, title = "Efficient partition trees" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "315--334" -, keywords = "simplex range searching, crossing number, multilevel data structure, approximations" -, succeeds = "m-ept-91" -, update = "93.09 matousek" +, author = "J. Matou{\v s}ek" +, title = "Efficient partition trees" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "315--334" +, keywords = "simplex range searching, crossing number, multilevel data structure, approximations" +, succeeds = "m-ept-91" +, update = "93.09 matousek" } @incollection{m-encg-93 -, author = "J. Matou{\v s}ek" -, title = "Epsilon-Nets and Computational Geometry" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, address = "Heidelberg" -, year = 1993 -, pages = "69--89" -, keywords = "survey paper, epsilon-nets, range spaces, VC-dimension, cuttings, derandomization" -, update = "98.07 agarwal, 96.09 agarwal, 93.09 erickson" +, author = "J. Matou{\v s}ek" +, title = "Epsilon-Nets and Computational Geometry" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, address = "Heidelberg" +, year = 1993 +, pages = "69--89" +, keywords = "survey paper, epsilon-nets, range spaces, VC-dimension, cuttings, derandomization" +, update = "98.07 agarwal, 96.09 agarwal, 93.09 erickson" } @techreport{m-grs-93 -, author = "J. Matou{\v s}ek" -, title = "Geometric range searching" -, type = "Tech. Report" -, number = "B-93-09" -, institution = "Fachbereich Mathematik und Informatik, Free Univ. Berlin" -, year = 1993 -, comments = "A survey paper" -, update = "96.09 agarwal, 94.01 matousek" +, author = "J. Matou{\v s}ek" +, title = "Geometric range searching" +, type = "Tech. Report" +, number = "B-93-09" +, institution = "Fachbereich Mathematik und Informatik, Free Univ. Berlin" +, year = 1993 +, comments = "A survey paper" +, update = "96.09 agarwal, 94.01 matousek" } @article{m-grs-94 -, author = "J. Matou{\v s}ek" -, title = "Geometric range searching" -, journal = "ACM Comput. Surv." -, volume = 26 -, year = 1994 -, pages = "421--461" -, keywords = "survey paper" -, update = "97.03 pocchiola, 95.05 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Geometric range searching" +, journal = "ACM Comput. Surv." +, volume = 26 +, year = 1994 +, pages = "421--461" +, keywords = "survey paper" +, update = "97.03 pocchiola, 95.05 agarwal" } @techreport{m-hsrr-90 -, author = "J. Matou{\v s}ek" -, title = "Half-space range reporting" -, series = "KAM Series" -, type = "Report" -, number = "90-188" -, institution = "Charles Univ." -, address = "Prague, Czechoslovakia" -, year = 1990 -, keywords = "range search, half spaces, polyhedra" -, update = "96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Half-space range reporting" +, series = "KAM Series" +, type = "Report" +, number = "90-188" +, institution = "Charles Univ." +, address = "Prague, Czechoslovakia" +, year = 1990 +, keywords = "range search, half spaces, polyhedra" +, update = "96.09 agarwal" } @article{m-lars-88 -, author = "J. Matou{\v s}ek" -, title = "Line arrangements and range search" -, journal = "Inform. Process. Lett." -, volume = 27 -, year = 1988 -, pages = "275--280" -, update = "98.03 bibrelex" +, author = "J. Matou{\v s}ek" +, title = "Line arrangements and range search" +, journal = "Inform. Process. Lett." +, volume = 27 +, year = 1988 +, pages = "275--280" +, update = "98.03 bibrelex" } @article{m-loq-93 -, author = "J. Matou{\v s}ek" -, title = "Linear optimization queries" -, journal = "J. Algorithms" -, volume = 14 -, year = 1993 -, pages = "432--448" -, keywords = "multidimensional parametric search, linear programming, separation, range search" -, update = "97.11 bibrelex, 96.09 agarwal, 96.05 agarwal, 93.09 matousek" -, annote = "See also J. Matou{\v s}ek and O. Schwarzkopf - {\em Proc. 8th ACM Sympos. Comput. Geom.}, - 1992, pp.\ 16--25" +, author = "J. Matou{\v s}ek" +, title = "Linear optimization queries" +, journal = "J. Algorithms" +, volume = 14 +, year = 1993 +, pages = "432--448" +, keywords = "multidimensional parametric search, linear programming, separation, range search" +, update = "97.11 bibrelex, 96.09 agarwal, 96.05 agarwal, 93.09 matousek" +, annote = "See also J. Matou{\v s}ek and O. Schwarzkopf + {\em Proc. 8th ACM Sympos. Comput. Geom.}, + 1992, pp.\ 16--25" } @article{m-lbsoa-94 -, author = "J. Matou{\v s}ek" -, title = "Lower bound for a subexponential optimization algorithm" -, journal = "Random Structures \& Algorithms" -, volume = 5 -, number = 4 -, year = 1994 -, pages = "591--607" -, update = "95.01 matousek" +, author = "J. Matou{\v s}ek" +, title = "Lower bound for a subexponential optimization algorithm" +, journal = "Random Structures \& Algorithms" +, volume = 5 +, number = 4 +, year = 1994 +, pages = "591--607" +, update = "95.01 matousek" } @article{m-lblmp-91 -, author = "J. Matou{\v s}ek" -, title = "Lower bounds on the length of monotone paths in arrangements" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "129--134" -, update = "96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Lower bounds on the length of monotone paths in arrangements" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "129--134" +, update = "96.09 agarwal" } @techreport{m-mcast-90 -, author = "J. Matou{\v s}ek" -, title = "More on cutting arrangements and spanning trees with low crossing number" -, number = "B-90-2" -, institution = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" -, address = "Berlin" -, year = 1990 -, update = "96.09 agarwal, 93.09 milone+mitchell" +, author = "J. Matou{\v s}ek" +, title = "More on cutting arrangements and spanning trees with low crossing number" +, number = "B-90-2" +, institution = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" +, address = "Berlin" +, year = 1990 +, update = "96.09 agarwal, 93.09 milone+mitchell" } @unpublished{m-agkc-00 -, author = "J. Matou{\v s}ek" -, title = "On approximate geometric k-clustering" -, year = 2000 -, note = "to appear in {\em Discrete Comput. Geom.}" -, update = "00.11 smid, 00.07 agarwal" +, author = "J. Matou{\v s}ek" +, title = "On approximate geometric k-clustering" +, year = 2000 +, note = "to appear in {\em Discrete Comput. Geom.}" +, update = "00.11 smid, 00.07 agarwal" } @techreport{m-ekpc-93 -, author = "J. Matou{\v s}ek" -, title = "On enclosing $k$ points by a circle" -, type = "KAM Series" -, number = "93-245" -, institution = "Charles University" -, year = 1993 -, update = "96.05 smid, 94.01 matousek" +, author = "J. Matou{\v s}ek" +, title = "On enclosing $k$ points by a circle" +, type = "KAM Series" +, number = "93-245" +, institution = "Charles University" +, year = 1993 +, update = "96.05 smid, 94.01 matousek" } @article{m-ekpc-95 -, author = "J. Matou{\v s}ek" -, title = "On enclosing $k$ points by a circle" -, journal = "Inform. Process. Lett." -, volume = 53 -, year = 1995 -, pages = "217--221" -, update = "96.09 agarwal, 96.05 smid" +, author = "J. Matou{\v s}ek" +, title = "On enclosing $k$ points by a circle" +, journal = "Inform. Process. Lett." +, volume = 53 +, year = 1995 +, pages = "217--221" +, update = "96.09 agarwal, 96.05 smid" } @inproceedings{m-gofvc-94 -, author = "J. Matou{\v s}ek" -, title = "On Geometric Optimization with Few Violated Constraints" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "312--321" -, cites = "acegsw-ptphp-91, abms-claho-94, aiks-fkpmd-91, am-dhsrr-91, a-htglp-93, c-narsc-87, c-lvalp-88, c-blmat-92, cm-ltdao-93, cs-arscg-89, csy-khrp-87, de-ctchp-93, dlss-sdakp-93i, ec-eargd-92, ee-innfm-93, els-fmcsh-93, em-sstcd-90, erk-oalla-93, es-blbda-93, esz-cskec-93i, g-saaop-92, go-nhpcg-93, k-srsa-92, m-loq-93, m-ekpc-93, m-we1cp-83, msw-sblp-92, m-lavd-91, m-gdsrs-91, ol-mcp-81, s-nmpgc-94, sw-cblpr-92, w-sedbe-91a, y-gctsp-90, ZZZ" -, update = "98.03 bibrelex, 96.09 agarwal, 94.09 jones, 94.01 jones" +, author = "J. Matou{\v s}ek" +, title = "On Geometric Optimization with Few Violated Constraints" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "312--321" +, cites = "acegsw-ptphp-91, abms-claho-94, aiks-fkpmd-91, am-dhsrr-91, a-htglp-93, c-narsc-87, c-lvalp-88, c-blmat-92, cm-ltdao-93, cs-arscg-89, csy-khrp-87, de-ctchp-93, dlss-sdakp-93i, ec-eargd-92, ee-innfm-93, els-fmcsh-93, em-sstcd-90, erk-oalla-93, es-blbda-93, esz-cskec-93i, g-saaop-92, go-nhpcg-93, k-srsa-92, m-loq-93, m-ekpc-93, m-we1cp-83, msw-sblp-92, m-lavd-91, m-gdsrs-91, ol-mcp-81, s-nmpgc-94, sw-cblpr-92, w-sedbe-91a, y-gctsp-90, ZZZ" +, update = "98.03 bibrelex, 96.09 agarwal, 94.09 jones, 94.01 jones" } @article{m-gofvc-95 -, author = "J. Matou{\v s}ek" -, title = "On Geometric Optimization with Few Violated Constraints" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "365--384" -, update = "96.09 agarwal, 96.05 agarwal+smid" +, author = "J. Matou{\v s}ek" +, title = "On Geometric Optimization with Few Violated Constraints" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "365--384" +, update = "96.09 agarwal, 96.05 agarwal+smid" } @article{m-vrsa-93 -, author = "J. Matou{\v s}ek" -, title = "On Vertical Ray Shooting in Arrangements" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 5 -, month = mar -, year = 1993 -, pages = "279--285" -, keywords = "ray shooting, zone theorem, cutting, hyperplane arrangement" -, update = "93.09 held+matousek+milone+mitchell" +, author = "J. Matou{\v s}ek" +, title = "On Vertical Ray Shooting in Arrangements" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 5 +, month = mar +, year = 1993 +, pages = "279--285" +, keywords = "ray shooting, zone theorem, cutting, hyperplane arrangement" +, update = "93.09 held+matousek+milone+mitchell" } @article{m-roass-91 -, author = "J. Matou{\v s}ek" -, title = "Randomized optimal algorithm for slope selection" -, journal = "Inform. Process. Lett." -, volume = 39 -, year = 1991 -, pages = "183--187" -, update = "96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Randomized optimal algorithm for slope selection" +, journal = "Inform. Process. Lett." +, volume = 39 +, year = 1991 +, pages = "183--187" +, update = "96.09 agarwal" } @techreport{m-rsehc-91 -, author = "J. Matous{\v e}k" -, title = "Range searching with efficient hierarchical cuttings" -, type = "Manuscript" -, institution = "??" -, year = 1991 -, update = "97.11 bibrelex" +, author = "J. Matous{\v e}k" +, title = "Range searching with efficient hierarchical cuttings" +, type = "Manuscript" +, institution = "??" +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{m-rsehc-92 -, author = "J. Matou{\v s}ek" -, title = "Range searching with efficient hierarchical cuttings" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "276--285" -, cites = "a-pal1e-90, as-anps-91, cf-dvrsi-90, c-lbcpr-89, c-chdc-91, csw-qoubs-90, cw-qorss-89, de-ssio-87, e-acg-87, eghsssw-irals-89, m-aogdc-91, m-cha-91, m-ept-91, m-splcn-91, oss-slspt-90, ps-cgi-85, ZZZ" -, update = "97.11 bibrelex, 96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Range searching with efficient hierarchical cuttings" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "276--285" +, cites = "a-pal1e-90, as-anps-91, cf-dvrsi-90, c-lbcpr-89, c-chdc-91, csw-qoubs-90, cw-qorss-89, de-ssio-87, e-acg-87, eghsssw-irals-89, m-aogdc-91, m-cha-91, m-ept-91, m-splcn-91, oss-slspt-90, ps-cgi-85, ZZZ" +, update = "97.11 bibrelex, 96.09 agarwal" } @article{m-rsehc-93 -, author = "J. Matou{\v s}ek" -, title = "Range searching with efficient hierarchical cuttings" -, journal = "Discrete Comput. Geom." -, volume = 10 -, number = 2 -, year = 1993 -, pages = "157--182" -, succeeds = "m-rsehc-92" -, update = "97.11 bibrelex, 94.01 matousek" +, author = "J. Matou{\v s}ek" +, title = "Range searching with efficient hierarchical cuttings" +, journal = "Discrete Comput. Geom." +, volume = 10 +, number = 2 +, year = 1993 +, pages = "157--182" +, succeeds = "m-rsehc-92" +, update = "97.11 bibrelex, 94.01 matousek" } @inproceedings{m-rph-91 -, author = "J. Matou{\v s}ek" -, title = "Reporting points in halfspaces" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "207--215" -, precedes = "m-rph-92" -, update = "96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Reporting points in halfspaces" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "207--215" +, precedes = "m-rph-92" +, update = "96.09 agarwal" } @article{m-rph-92 -, author = "J. Matou{\v s}ek" -, title = "Reporting points in halfspaces" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "169--186" -, succeeds = "m-rph-91" -, update = "96.09 agarwal" +, author = "J. Matou{\v s}ek" +, title = "Reporting points in halfspaces" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "169--186" +, succeeds = "m-rph-91" +, update = "96.09 agarwal" } @article{m-splcn-91 -, author = "J. Matou{\v s}ek" -, title = "Spanning trees with low crossing numbers" -, journal = "Informatique Th\'eorique et Applications" -, volume = 6 -, number = 25 -, year = 1991 -, pages = "103--123" -, keywords = "spanning trees" -, update = "96.05 pocchiola" +, author = "J. Matou{\v s}ek" +, title = "Spanning trees with low crossing numbers" +, journal = "Informatique Th\'eorique et Applications" +, volume = 6 +, number = 25 +, year = 1991 +, pages = "103--123" +, keywords = "spanning trees" +, update = "96.05 pocchiola" } @techreport{m-tubdh-94 -, author = "J. Matou{\v s}ek" -, title = "Tight upper bounds for the discrepancy of halfspaces" -, type = "KAM Series" -, number = "" -, institution = "Charles University" -, year = 1994 -, note = "Also submitted to {\em Discr. Comput. Geom.}" -, update = "96.09 agarwal, 94.05 matousek" +, author = "J. Matou{\v s}ek" +, title = "Tight upper bounds for the discrepancy of halfspaces" +, type = "KAM Series" +, number = "" +, institution = "Charles University" +, year = 1994 +, note = "Also submitted to {\em Discr. Comput. Geom.}" +, update = "96.09 agarwal, 94.05 matousek" } @inproceedings{mmpssw-ftdlm-91 -, author = "J. Matou{\v s}ek and N. Miller and J. Pach and Micha Sharir and S. Sifrony and Emo Welzl" -, title = "Fat triangles determine linearly many holes" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "49--58" -, update = "98.03 mitchell, 96.09 agarwal" +, author = "J. Matou{\v s}ek and N. Miller and J. Pach and Micha Sharir and S. Sifrony and Emo Welzl" +, title = "Fat triangles determine linearly many holes" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "49--58" +, update = "98.03 mitchell, 96.09 agarwal" } @unpublished{mmn-erarm-92 -, author = "J. Matou{\v s}ek and D. M. Mount and N. S. Netanyahu" -, title = "Efficient Randomized Algorithms for the Repeated Median Line Estimator" -, year = 1992 -, note = "in preparation" -, precedes = "mmn-erarm-93" -, update = "98.07 bibrelex" +, author = "J. Matou{\v s}ek and D. M. Mount and N. S. Netanyahu" +, title = "Efficient Randomized Algorithms for the Repeated Median Line Estimator" +, year = 1992 +, note = "in preparation" +, precedes = "mmn-erarm-93" +, update = "98.07 bibrelex" } @inproceedings{mmn-erarm-93 -, author = "J. Matou{\v s}ek and D. M. Mount and N. S. Netanyahu" -, title = "Efficient Randomized Algorithms for the Repeated Median Line Estimator" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1993 -, pages = "74--82" -, succeeds = "mmn-erarm-92" -, update = "98.11 bibrelex, 98.07 bibrelex, 96.09 agarwal, 93.05 smid" +, author = "J. Matou{\v s}ek and D. M. Mount and N. S. Netanyahu" +, title = "Efficient Randomized Algorithms for the Repeated Median Line Estimator" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1993 +, pages = "74--82" +, succeeds = "mmn-erarm-92" +, update = "98.11 bibrelex, 98.07 bibrelex, 96.09 agarwal, 93.05 smid" } @techreport{mpssw-ftdlm-90 -, author = "J. Matou{\v s}ek and J. Pach and Micha Sharir and S. Sifrony and Emo Welzl" -, title = "Fat triangles determine linearly many holes" -, type = "Technical {Report}" -, number = "174/90" -, institution = "Eskenasy Inst. Comput. Sci., Tel Aviv Univ." -, address = "Tel Aviv, Israel" -, month = may -, year = 1990 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "J. Matou{\v s}ek and J. Pach and Micha Sharir and S. Sifrony and Emo Welzl" +, title = "Fat triangles determine linearly many holes" +, type = "Technical {Report}" +, number = "174/90" +, institution = "Eskenasy Inst. Comput. Sci., Tel Aviv Univ." +, address = "Tel Aviv, Israel" +, month = may +, year = 1990 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{mpssw-ftdlm-94 -, author = "J. Matou{\v s}ek and J. Pach and Micha Sharir and S. Sifrony and Emo Welzl" -, title = "Fat triangles determine linearly many holes" -, journal = "SIAM J. Comput." -, volume = 23 -, year = 1994 -, pages = "154--169" -, update = "98.03 mitchell, 96.09 agarwal, 95.09 agarwal, 94.05 sharir" +, author = "J. Matou{\v s}ek and J. Pach and Micha Sharir and S. Sifrony and Emo Welzl" +, title = "Fat triangles determine linearly many holes" +, journal = "SIAM J. Comput." +, volume = 23 +, year = 1994 +, pages = "154--169" +, update = "98.03 mitchell, 96.09 agarwal, 95.09 agarwal, 94.05 sharir" } @inproceedings{ms-datdd-93 -, author = "J. Matou{\v s}ek and O. Schwarzkopf" -, title = "A Deterministic Algorithm for the Three-Dimensional Diameter Problem" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1993 -, pages = "478--484" -, keywords = "diameter, three-dimensional, parametric search" -, precedes = "ms-datdd-96" -, cites = "cegs-dwclp-92" -, update = "96.09 agarwal+devillers, 93.09 milone+mitchell, 93.05 schwarzkopf" -, abstract = "A deterministic algorithm for computing the diameter - of an $n$ point set in three dimensions with - $O(n\log^c n)$ running time is given, $c$ a - constant." +, author = "J. Matou{\v s}ek and O. Schwarzkopf" +, title = "A Deterministic Algorithm for the Three-Dimensional Diameter Problem" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1993 +, pages = "478--484" +, keywords = "diameter, three-dimensional, parametric search" +, precedes = "ms-datdd-96" +, cites = "cegs-dwclp-92" +, update = "96.09 agarwal+devillers, 93.09 milone+mitchell, 93.05 schwarzkopf" +, abstract = "A deterministic algorithm for computing the diameter + of an $n$ point set in three dimensions with + $O(n\log^c n)$ running time is given, $c$ a + constant." } @article{ms-datdd-96 -, author = "J. Matou{\v s}ek and O. Schwarzkopf" -, title = "A Deterministic Algorithm for the Three-Dimensional Diameter Problem" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "253--262" -, succeeds = "ms-datdd-93" -, update = "96.09 devillers" +, author = "J. Matou{\v s}ek and O. Schwarzkopf" +, title = "A Deterministic Algorithm for the Three-Dimensional Diameter Problem" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "253--262" +, succeeds = "ms-datdd-93" +, update = "96.09 devillers" } @techreport{ms-loq-91 -, author = "J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Linear optimization queries" -, type = "Technical {Report}" -, number = "B 91-19" -, institution = "Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, year = 1991 -, update = "97.11 bibrelex" +, author = "J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Linear optimization queries" +, type = "Technical {Report}" +, number = "B 91-19" +, institution = "Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{ms-loq-92 -, author = "J. Matou{\v s}ek and O. Schwarzkopf" -, title = "Linear optimization queries" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "16--25" -, keywords = "separation, linear programming, prune-and-search" -, cites = "am-dhsrr-91, am-rsps-92, cf-dvrsi-90, c-lpot-86, c-lvalp-88, c-arscg-88, cm-sptna-89, c-sdsno-87, csw-qoubs-90, csy-khrp-87, d-mstia-86, e-acg-87, e-dtdlp-91, gsc-srttd-87, hw-ensrq-87, m-aogdc-91, m-ept-91, m-rph-91, m-loq-93, ms-loq-91, m-apcad-83, m-lpltw-84, m-mdscg-84, m-rmstl-91, npt-usafd-90, ph-chfsp-77, s-pop-91, s-rscp-92, s-chdch-86, s-sdlpc-91, ZZZ" -, update = "97.11 bibrelex, 96.09 agarwal" +, author = "J. Matou{\v s}ek and O. Schwarzkopf" +, title = "Linear optimization queries" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "16--25" +, keywords = "separation, linear programming, prune-and-search" +, cites = "am-dhsrr-91, am-rsps-92, cf-dvrsi-90, c-lpot-86, c-lvalp-88, c-arscg-88, cm-sptna-89, c-sdsno-87, csw-qoubs-90, csy-khrp-87, d-mstia-86, e-acg-87, e-dtdlp-91, gsc-srttd-87, hw-ensrq-87, m-aogdc-91, m-ept-91, m-rph-91, m-loq-93, ms-loq-91, m-apcad-83, m-lpltw-84, m-mdscg-84, m-rmstl-91, npt-usafd-90, ph-chfsp-77, s-pop-91, s-rscp-92, s-chdch-86, s-sdlpc-91, ZZZ" +, update = "97.11 bibrelex, 96.09 agarwal" } @article{ms-rscp-93 -, author = "J. Matou{\v s}ek and O. Schwarzkopf" -, title = "On ray shooting in convex polytopes" -, journal = "Discrete Comput. Geom." -, volume = 10 -, number = 2 -, year = 1993 -, pages = "215--232" -, keywords = "ray shooting, convex polytope, range searching" -, comments = "another part of the results of the conference version is in m-loq-93" -, succeeds = "ms-loq-92" -, update = "96.09 agarwal, 94.05 schwarzkopf, 94.01 matousek" +, author = "J. Matou{\v s}ek and O. Schwarzkopf" +, title = "On ray shooting in convex polytopes" +, journal = "Discrete Comput. Geom." +, volume = 10 +, number = 2 +, year = 1993 +, pages = "215--232" +, keywords = "ray shooting, convex polytope, range searching" +, comments = "another part of the results of the conference version is in m-loq-93" +, succeeds = "ms-loq-92" +, update = "96.09 agarwal, 94.05 schwarzkopf, 94.01 matousek" } @unpublished{mss-ncric-96 -, author = "Ji{{\v r}}{\'{\i}} Matou{{\v s}}ek and Otfried Schwarzkopf and Jack Snoeyink" -, title = "Non-Canonical Randomized Incremental Construction" -, year = 1997 -, note = "Manuscript" -, update = "97.03 schwarzkopf" +, author = "Ji{{\v r}}{\'{\i}} Matou{{\v s}}ek and Otfried Schwarzkopf and Jack Snoeyink" +, title = "Non-Canonical Randomized Incremental Construction" +, year = 1997 +, note = "Manuscript" +, update = "97.03 schwarzkopf" } @incollection{ms-temsi-92 -, author = "J. Matou{\v s}ek and R. Seidel" -, title = "A Tail Estimate for {Mulmuley}'s Segment Intersection Algorithm" -, booktitle = "Proc. 19th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 623 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "427--438" -, update = "96.09 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "J. Matou{\v s}ek and R. Seidel" +, title = "A Tail Estimate for {Mulmuley}'s Segment Intersection Algorithm" +, booktitle = "Proc. 19th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 623 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "427--438" +, update = "96.09 agarwal, 94.01 smid, 93.09 milone+mitchell" } @inproceedings{msw-hnlls-90 -, author = "J. Matou{\v s}ek and R. Seidel and Emo Welzl" -, title = "How to net a lot with little: small $\epsilon$-nets for disks and halfspaces" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "16--22" -, cites = "a-dapal-89, behw-clgcv-89, cf-dvrsi-88, cw-qorss-89, c-narsc-87, es-vda-86, ew-nlsfs-85, hw-ensrq-87, m-cen-89, pw-snben-90, w-uekgf-65, yy-gaddg-85, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 96.09 agarwal" +, author = "J. Matou{\v s}ek and R. Seidel and Emo Welzl" +, title = "How to net a lot with little: small $\epsilon$-nets for disks and halfspaces" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "16--22" +, cites = "a-dapal-89, behw-clgcv-89, cf-dvrsi-88, cw-qorss-89, c-narsc-87, es-vda-86, ew-nlsfs-85, hw-ensrq-87, m-cen-89, pw-snben-90, w-uekgf-65, yy-gaddg-85, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 96.09 agarwal" } @inproceedings{msw-sblp-92 -, author = "J. Matou{\v s}ek and Micha Sharir and Emo Welzl" -, title = "A subexponential bound for linear programming" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "1--8" -, cites = "b-udkuu-38, c-ochan-91, c-lpot-86, c-lvali-89, dll-udleu-57, d-lpe-63, d-mstia-86, d-ccpac-92, df-rafdl-87, j-levso-90, j-udkkd-01, k-srsa-92, k-nptal-84a, k-palp-80, km-hgisa-72, m-lpltw-84, p-mse-84, s-sdlpc-91, s-barga-91, sw-cblpr-92, w-sedbe-91a, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 97.03 smid, 96.09 agarwal" +, author = "J. Matou{\v s}ek and Micha Sharir and Emo Welzl" +, title = "A subexponential bound for linear programming" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "1--8" +, cites = "b-udkuu-38, c-ochan-91, c-lpot-86, c-lvali-89, dll-udleu-57, d-lpe-63, d-mstia-86, d-ccpac-92, df-rafdl-87, j-levso-90, j-udkkd-01, k-srsa-92, k-nptal-84a, k-palp-80, km-hgisa-72, m-lpltw-84, p-mse-84, s-sdlpc-91, s-barga-91, sw-cblpr-92, w-sedbe-91a, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 97.03 smid, 96.09 agarwal" } @article{msw-sblp-96 -, author = "J. Matou{\v s}ek and Micha Sharir and Emo Welzl" -, title = "A subexponential bound for linear programming" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "498--516" -, update = "98.03 mitchell, 97.03 agarwal+smid" +, author = "J. Matou{\v s}ek and Micha Sharir and Emo Welzl" +, title = "A subexponential bound for linear programming" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "498--516" +, update = "98.03 mitchell, 97.03 agarwal+smid" } @incollection{mv-clesh-97 -, author = "J. Matou{\v s}ek and P. Valtr" -, title = "The complexity of the lower envelope of segments with $h$ endpo ints" -, editor = "I. Bar{' a}ny" -, booktitle = "Intuitive Geometry, Colloq. Math. Society J{\'a}nos Bolyai" -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 1997 -, pages = "407--411" -, update = "98.03 agarwal" +, author = "J. Matou{\v s}ek and P. Valtr" +, title = "The complexity of the lower envelope of segments with $h$ endpo ints" +, editor = "I. Bar{' a}ny" +, booktitle = "Intuitive Geometry, Colloq. Math. Society J{\'a}nos Bolyai" +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 1997 +, pages = "407--411" +, update = "98.03 agarwal" } @techreport{mv-clesh-95 -, author = "J. Matou{\v s}ek and P. Valtr" -, title = "The complexity of the lower envelope of segments with $h$ endpoints" -, institution = "??" -, address = "Prague" -, year = 1995 -, update = "97.03 agarwal" +, author = "J. Matou{\v s}ek and P. Valtr" +, title = "The complexity of the lower envelope of segments with $h$ endpoints" +, institution = "??" +, address = "Prague" +, year = 1995 +, update = "97.03 agarwal" } @inproceedings{mw-gscpt-89 -, author = "J. Matou{\v s}ek and Emo Welzl" -, title = "Good splitters for counting points in triangles" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "124--130" -, cites = "b-gtfga-80, cgl-pgd-83, cw-rsvdc-88, csss-otass-89, e-acg-87, eghsssw-irals-88, ew-hrsls-86, ekm-pis-82, es-cpg-35, hw-ensrq-87, m-splcn-91, m-lars-88, w-pr-82, ZZZ" -, update = "98.03 bibrelex+mitchell, 96.09 agarwal" +, author = "J. Matou{\v s}ek and Emo Welzl" +, title = "Good splitters for counting points in triangles" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "124--130" +, cites = "b-gtfga-80, cgl-pgd-83, cw-rsvdc-88, csss-otass-89, e-acg-87, eghsssw-irals-88, ew-hrsls-86, ekm-pis-82, es-cpg-35, hw-ensrq-87, m-splcn-91, m-lars-88, w-pr-82, ZZZ" +, update = "98.03 bibrelex+mitchell, 96.09 agarwal" } @article{mw-gscpt-92 -, author = "J. Matou{\v s}ek and Emo Welzl" -, title = "Good splitters for counting points in triangles" -, journal = "J. Algorithms" -, volume = 13 -, year = 1992 -, pages = "307--319" -, succeeds = "mw-gscpt-89" -, update = "98.03 mitchell, 96.09 agarwal, 93.09 matousek" +, author = "J. Matou{\v s}ek and Emo Welzl" +, title = "Good splitters for counting points in triangles" +, journal = "J. Algorithms" +, volume = 13 +, year = 1992 +, pages = "307--319" +, succeeds = "mw-gscpt-89" +, update = "98.03 mitchell, 96.09 agarwal, 93.09 matousek" } @inproceedings{mww-deabv-91 -, author = "J. Matou{\v s}ek and Emo Welzl and L. Wernisch" -, title = "Discrepancy and $\varepsilon$-approximations for bounded {VC}-dimension" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "424--430" -, update = "98.03 mitchell, 96.09 agarwal" +, author = "J. Matou{\v s}ek and Emo Welzl and L. Wernisch" +, title = "Discrepancy and $\varepsilon$-approximations for bounded {VC}-dimension" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "424--430" +, update = "98.03 mitchell, 96.09 agarwal" } @article{mww-deabv-93 -, author = "J. Matou{\v s}ek and Emo Welzl and L. Wernisch" -, title = "Discrepancy and $\varepsilon$-approximations for bounded {VC}-dimension" -, journal = "Combinatorica" -, volume = 13 -, year = 1993 -, pages = "455--466" -, succeeds = "mww-deabv-91" -, update = "98.03 mitchell, 96.09 agarwal, 94.05 matousek" +, author = "J. Matou{\v s}ek and Emo Welzl and L. Wernisch" +, title = "Discrepancy and $\varepsilon$-approximations for bounded {VC}-dimension" +, journal = "Combinatorica" +, volume = 13 +, year = 1993 +, pages = "455--466" +, succeeds = "mww-deabv-91" +, update = "98.03 mitchell, 96.09 agarwal, 94.05 matousek" } @inproceedings{mhn-fogis-82 -, author = "T. Matsuyama and L. V. Hao and M. Nagao" -, title = "A file organization for geographic information systems based on the spatial proximity" -, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." -, year = 1982 -, pages = "83--88" +, author = "T. Matsuyama and L. V. Hao and M. Nagao" +, title = "A file organization for geographic information systems based on the spatial proximity" +, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." +, year = 1982 +, pages = "83--88" } @inproceedings{mp-drlvd-84 -, author = "T. Matsuyama and T. Phillips" -, title = "Digital Realization of the Labelled {Voronoi} Diagram and its Application to Closed Boundary Detection" -, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn." -, year = 1984 -, pages = "478--480" -, annote = "Discrete VD of set of segments. Medial axis is used to - reconstruct a closed boundary." +, author = "T. Matsuyama and T. Phillips" +, title = "Digital Realization of the Labelled {Voronoi} Diagram and its Application to Closed Boundary Detection" +, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn." +, year = 1984 +, pages = "478--480" +, annote = "Discrete VD of set of segments. Medial axis is used to + reconstruct a closed boundary." } @article{m-adica-73 -, author = "T. H. Mattheiss" -, title = "An algorithm for determining irrelevant constraints and all vertices in systems of linear inequalities" -, journal = "Oper. Res." -, volume = 21 -, year = 1973 -, pages = "247--260" +, author = "T. H. Mattheiss" +, title = "An algorithm for determining irrelevant constraints and all vertices in systems of linear inequalities" +, journal = "Oper. Res." +, volume = 21 +, year = 1973 +, pages = "247--260" } @article{mr-scmfa-80 -, author = "T. H. Mattheiss and D. Rubin" -, title = "A survey and comparison of methods for finding all vertices of convex polyhedral sets" -, journal = "Math. Oper. Res." -, volume = 5 -, year = 1980 -, pages = "167--185" +, author = "T. H. Mattheiss and D. Rubin" +, title = "A survey and comparison of methods for finding all vertices of convex polyhedral sets" +, journal = "Math. Oper. Res." +, volume = 5 +, year = 1980 +, pages = "167--185" } @article{ms-crafa-80 -, author = "T. H. Mattheiss and B. K. Schmidt" -, title = "Computational results on an algorithm for finding all vertices of a polytope" -, journal = "Math. Program." -, volume = 18 -, year = 1980 -, pages = "308--329" +, author = "T. H. Mattheiss and B. K. Schmidt" +, title = "Computational results on an algorithm for finding all vertices of a polytope" +, journal = "Math. Program." +, volume = 18 +, year = 1980 +, pages = "308--329" } @article{ms-pggrg-80 -, author = "D. W. Matula and R. R. Sokal" -, title = "Properties of {Gabriel} graphs relevant to geographic variation research and clustering of points in the plane" -, journal = "Geogr. Anal." -, volume = 12 -, number = 3 -, year = 1980 -, pages = "205--222" -, update = "98.11 bibrelex" +, author = "D. W. Matula and R. R. Sokal" +, title = "Properties of {Gabriel} graphs relevant to geographic variation research and clustering of points in the plane" +, journal = "Geogr. Anal." +, volume = 12 +, number = 3 +, year = 1980 +, pages = "205--222" +, update = "98.11 bibrelex" } @inproceedings{m-elnlr-96 -, author = "Joseph M. Maubach" -, title = "The efficient location of neighbors for locally refined n-simplicial grids" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "137--153" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Joseph M. Maubach" +, title = "The efficient location of neighbors for locally refined n-simplicial grids" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "137--153" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{m-poprq-80 -, author = "H. A. Maurer" -, title = "The post-office problem and related questions" -, booktitle = "Proc. 6th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '80" -, series = "Lecture Notes Comput. Sci." -, volume = 100 -, publisher = "Springer-Verlag" -, year = 1980 -, pages = "1--19" -, update = "98.07 bibrelex" +, author = "H. A. Maurer" +, title = "The post-office problem and related questions" +, booktitle = "Proc. 6th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '80" +, series = "Lecture Notes Comput. Sci." +, volume = 100 +, publisher = "Springer-Verlag" +, year = 1980 +, pages = "1--19" +, update = "98.07 bibrelex" } @incollection{mo-dsdsp-79 -, author = "H. A. Maurer and T. A. Ottmann" -, title = "Dynamic solutions of decomposable searching problems" -, editor = "U. Pape" -, booktitle = "Discrete Structures and Algorithms" -, publisher = "Carl Hanser Verlag" -, address = "M{\"u}nchen, Germany" -, year = 1979 -, pages = "17--24" -, update = "97.03 schwarzkopf" +, author = "H. A. Maurer and T. A. Ottmann" +, title = "Dynamic solutions of decomposable searching problems" +, editor = "U. Pape" +, booktitle = "Discrete Structures and Algorithms" +, publisher = "Carl Hanser Verlag" +, address = "M{\"u}nchen, Germany" +, year = 1979 +, pages = "17--24" +, update = "97.03 schwarzkopf" } @incollection{mo-msps-79 -, author = "H. A. Maurer and T. A. Ottmann" -, title = "Manipulating sets of points: a survey" -, editor = "M. Nagl and H. J. Schneider" -, booktitle = "Applied Computer Science 13" -, publisher = "Carl Hanser Verlag" -, year = 1979 -, pages = "9--29" +, author = "H. A. Maurer and T. A. Ottmann" +, title = "Manipulating sets of points: a survey" +, editor = "M. Nagl and H. J. Schneider" +, booktitle = "Applied Computer Science 13" +, publisher = "Carl Hanser Verlag" +, year = 1979 +, pages = "9--29" } @article{m-dtchn-84 -, author = "A. Maus" -, title = "Delaunay triangulation and the convex hull of $n$ points in expected linear time" -, journal = "BIT" -, volume = 24 -, year = 1984 -, pages = "151--163" -, keywords = "designing algorithms, convex hull, Delaunay triangulations, two-dimensional, expected-case analysis" +, author = "A. Maus" +, title = "Delaunay triangulation and the convex hull of $n$ points in expected linear time" +, journal = "BIT" +, volume = 24 +, year = 1984 +, pages = "151--163" +, keywords = "designing algorithms, convex hull, Delaunay triangulations, two-dimensional, expected-case analysis" } @article{m-amgvf-90 -, author = "Dimtri J. Mavriplis" -, title = "Adaptive mesh generation for viscous flows using {Delaunay} triangulation" -, journal = "J. Comp. Physik" -, volume = 90 -, number = 2 -, month = oct -, year = 1990 -, pages = "271--291" -, update = "98.07 bibrelex" +, author = "Dimtri J. Mavriplis" +, title = "Adaptive mesh generation for viscous flows using {Delaunay} triangulation" +, journal = "J. Comp. Physik" +, volume = 90 +, number = 2 +, month = oct +, year = 1990 +, pages = "271--291" +, update = "98.07 bibrelex" } @techreport{m-adtad-92 -, author = "D. J. Mavriplis" -, title = "An advancing front {Delaunay} triangulation algorithm designed for robustness" -, type = "Report" -, number = "92-49" -, institution = "NASA Langly Research Center" -, year = 1992 -, update = "98.11 bibrelex" +, author = "D. J. Mavriplis" +, title = "An advancing front {Delaunay} triangulation algorithm designed for robustness" +, type = "Report" +, number = "92-49" +, institution = "NASA Langly Research Center" +, year = 1992 +, update = "98.11 bibrelex" } @article{m-wcvnf-99 -, author = "N. Max" -, title = "Weights for Computing Vertex Normals from Facet Normals" -, journal = "J. Graphics Tools" -, volume = 4 -, number = 2 -, year = 1999 -, pages = "1--6" -, update = "00.03 held" +, author = "N. Max" +, title = "Weights for Computing Vertex Normals from Facet Normals" +, journal = "J. Graphics Tools" +, volume = 4 +, number = 2 +, year = 1999 +, pages = "1--6" +, update = "00.03 held" } @article{mhc-avcev-90 -, author = "N. Max and P. Hanrahan and R. Crawfis" -, title = "Area and volume coherence for efficient visualization of $3$d scalar functions" -, journal = "Comput. Graph." -, volume = 24 -, number = 5 -, year = 1990 -, pages = "27--33" -, update = "97.11 bibrelex" +, author = "N. Max and P. Hanrahan and R. Crawfis" +, title = "Area and volume coherence for efficient visualization of $3$d scalar functions" +, journal = "Comput. Graph." +, volume = 24 +, number = 5 +, year = 1990 +, pages = "27--33" +, update = "97.11 bibrelex" } @article{m-orfdf-64 -, author = "J. C. Maxwell" -, title = "On Reciprocal Figures and Diagrams of Forces" -, journal = "Phil. Mag. Ser." -, volume = 27 -, year = 1864 -, pages = "250--261" -, keywords = "graph drawing" -, update = "96.09 tamassia" +, author = "J. C. Maxwell" +, title = "On Reciprocal Figures and Diagrams of Forces" +, journal = "Phil. Mag. Ser." +, volume = 27 +, year = 1864 +, pages = "250--261" +, keywords = "graph drawing" +, update = "96.09 tamassia" } @article{mm-lsd-84 -, author = "M. May and P. Mennecke" -, title = "Layout of Schematic Drawings" -, journal = "Syst. Anal. Model. Simul." -, volume = 1 -, number = 4 -, year = 1984 -, pages = "307--338" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. May and P. Mennecke" +, title = "Layout of Schematic Drawings" +, journal = "Syst. Anal. Model. Simul." +, volume = 1 +, number = 4 +, year = 1984 +, pages = "307--338" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ms-bcn-88 -, author = "M. May and K. Szkatula" -, title = "On the Bipartite Crossing Number" -, journal = "Control and Cybernetics" -, volume = 17 -, number = 1 -, year = 1988 -, pages = "85--98" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. May and K. Szkatula" +, title = "On the Bipartite Crossing Number" +, journal = "Control and Cybernetics" +, volume = 17 +, number = 1 +, year = 1988 +, pages = "85--98" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{mm-cwpcs-82 -, author = "E. Mayr and A. Meyer" -, title = "The Complexity of the Word Problems for Commutative Semigroups and Polynomial Ideals" -, journal = "Adv. Math." -, volume = 46 -, year = 1982 -, pages = "305--329" -, update = "97.11 bibrelex" +, author = "E. Mayr and A. Meyer" +, title = "The Complexity of the Word Problems for Commutative Semigroups and Polynomial Ideals" +, journal = "Adv. Math." +, volume = 46 +, year = 1982 +, pages = "305--329" +, update = "97.11 bibrelex" } @article{mr-esrsu-95 -, author = "N. Mayya and V. T. Rajan" -, title = "An Efficient Shape-Representation Scheme Using {Voronoi} Skeletons" -, journal = "Pattern Recogn. Lett." -, volume = 16 -, number = 2 -, year = 1995 -, pages = "147--160" -, update = "97.03 held" +, author = "N. Mayya and V. T. Rajan" +, title = "An Efficient Shape-Representation Scheme Using {Voronoi} Skeletons" +, journal = "Pattern Recogn. Lett." +, volume = 16 +, number = 2 +, year = 1995 +, pages = "147--160" +, update = "97.03 held" } @inproceedings{mb-cpvpe-96 -, author = "Marisa Maz{\'o}n and Daciana Bochis" -, title = "Computing Periodic {Voronoi} Partitions on the {Euclidean} Plane" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "45--47" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Marisa Maz{\'o}n and Daciana Bochis" +, title = "Computing Periodic {Voronoi} Partitions on the {Euclidean} Plane" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "45--47" +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{mr-cvdes-94 -, author = "Marisa Maz{\'o}n and Tomas Recio" -, title = "The Computation of {Voronoi} Diagrams on the {Euclidean} and Spherical 2-Orbifolds" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "12--15" -, update = "00.11 smid, 00.07 icking" +, author = "Marisa Maz{\'o}n and Tomas Recio" +, title = "The Computation of {Voronoi} Diagrams on the {Euclidean} and Spherical 2-Orbifolds" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "12--15" +, update = "00.11 smid, 00.07 icking" } @proceedings{mrs-ewcg-94 -, title = "Abstracts 10th European Workshop Comput. Geom." -, editor = "M. Maz{\'o}n and T. Recio and F. Santos" -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, update = "00.03 bibrelex" +, title = "Abstracts 10th European Workshop Comput. Geom." +, editor = "M. Maz{\'o}n and T. Recio and F. Santos" +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, update = "00.03 bibrelex" } @phdthesis{m-ddvec-92 -, author = "M. L. Maz{\'o}n" -, title = "Diagrams de {Voronoi} en caleidoscopios" -, school = "Universidad de Cantabria" -, address = "Santander, Spain" -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "M. L. Maz{\'o}n" +, title = "Diagrams de {Voronoi} en caleidoscopios" +, school = "Universidad de Cantabria" +, address = "Santander, Spain" +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @techreport{mr-vdbsc-91 -, author = "M. L. Maz{\'o}n and T. Recio" -, title = "Voronoi Diagrams Bases on Stricly Convex Distances on the Plane" -, type = "Manuscript" -, institution = "Departamento de Matem{\'a}ticas, Universidad del Cantabria" -, address = "Santander, Spain" -, year = 1991 -, update = "98.03 bibrelex" +, author = "M. L. Maz{\'o}n and T. Recio" +, title = "Voronoi Diagrams Bases on Stricly Convex Distances on the Plane" +, type = "Manuscript" +, institution = "Departamento de Matem{\'a}ticas, Universidad del Cantabria" +, address = "Santander, Spain" +, year = 1991 +, update = "98.03 bibrelex" } @inproceedings{mr-vdcdg-90 -, author = "M. L. Maz{\'o}n and T. Recio" -, title = "Voronoi diagrams coming from discrete groups on the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "223--226" -, cites = "b-gtfga-80, dk-oacvd-87, ei-drmwc-79, k-cavd-89, ns-gg-87, ZZZ" -, update = "99.07 bibrelex, 98.07 bibrelex" +, author = "M. L. Maz{\'o}n and T. Recio" +, title = "Voronoi diagrams coming from discrete groups on the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "223--226" +, cites = "b-gtfga-80, dk-oacvd-87, ei-drmwc-79, k-cavd-89, ns-gg-87, ZZZ" +, update = "99.07 bibrelex, 98.07 bibrelex" } @inproceedings{mks-cplvd-93 -, author = "Michael McAllister and David Kirkpatrick and Jack Snoeyink" -, title = "A Compact Piecewise-Linear {Voronoi} Diagram for Convex Sites in the Plane" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "573--582" -, precedes = "mks-cplvd-96" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Michael McAllister and David Kirkpatrick and Jack Snoeyink" +, title = "A Compact Piecewise-Linear {Voronoi} Diagram for Convex Sites in the Plane" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "573--582" +, precedes = "mks-cplvd-96" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @article{mks-cplvd2-96 -, author = "M. McAllister and D. Kirkpatrick and J. Snoeyink" -, title = "A compact piecewise-linear {Voronoi} diagram for convex sites in the plane" -, journal = "Discrete Comput. Geom." -, volume = 15 -, year = 1996 -, pages = "73--105" -, succeeds = "mks-cplvd-93" -, update = "00.03 bibrelex" +, author = "M. McAllister and D. Kirkpatrick and J. Snoeyink" +, title = "A compact piecewise-linear {Voronoi} diagram for convex sites in the plane" +, journal = "Discrete Comput. Geom." +, volume = 15 +, year = 1996 +, pages = "73--105" +, succeeds = "mks-cplvd-93" +, update = "00.03 bibrelex" } @article{mks-cplvd-96 -, author = "M. McAllister and D. Kirkpatrick and J. Snoeyink" -, title = "A compact piecewise-linear {Voronoi} diagram for convex sites in the plane" -, journal = "Discrete Comput. Geom." -, volume = 15 -, year = 1996 -, pages = "73--105" -, update = "96.05 smid" +, author = "M. McAllister and D. Kirkpatrick and J. Snoeyink" +, title = "A compact piecewise-linear {Voronoi} diagram for convex sites in the plane" +, journal = "Discrete Comput. Geom." +, volume = 15 +, year = 1996 +, pages = "73--105" +, update = "96.05 smid" } @misc{mks-avdpt-93 -, author = "M. McAllister and D. Kirkpatrick and J. Snoeyink" -, title = "An approximate {Voronoi} diagram for planning translation motion" -, year = 1993 -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "M. McAllister and D. Kirkpatrick and J. Snoeyink" +, title = "An approximate {Voronoi} diagram for planning translation motion" +, year = 1993 +, note = "In preparation" +, update = "98.03 bibrelex" } @inproceedings{as-sdcav-94 -, author = "M. {McAllister} and J. Snoeyink" -, title = "The spoke diagram: a compact approximate {Voronoi} diagram for spatial computation" -, booktitle = "Proc. GIS'94" -, site = "Vancouver" -, year = 1994 -, update = "98.11 bibrelex" +, author = "M. {McAllister} and J. Snoeyink" +, title = "The spoke diagram: a compact approximate {Voronoi} diagram for spatial computation" +, booktitle = "Proc. GIS'94" +, site = "Vancouver" +, year = 1994 +, update = "98.11 bibrelex" } @inproceedings{ms-tdctd-93 -, author = "M. McAllister and J. Snoeyink" -, title = "Two-dimensional computation of the three-dimensional reachableregion for a welding head" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "437--442" -, cites = "bo-arcgi-79, cegghss-rspug-91, cg-vippg-89, hs-parss-93, klps-ujrcf-86, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "M. McAllister and J. Snoeyink" +, title = "Two-dimensional computation of the three-dimensional reachableregion for a welding head" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "437--442" +, cites = "bo-arcgi-79, cegghss-rspug-91, cg-vippg-89, hs-parss-93, klps-ujrcf-86, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @book{m-oca-91 -, author = "A. D. McAulay" -, title = "Optical Computer Architecture" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1991 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "A. D. McAulay" +, title = "Optical Computer Architecture" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1991 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{ma-lafch-79 -, author = "D. McCallum and D. Avis" -, title = "A linear algorithm for finding the convex hull of a simple polygon" -, journal = "Inform. Process. Lett." -, volume = 9 -, year = 1979 -, pages = "201--206" -, keywords = "polygons, convex hull" +, author = "D. McCallum and D. Avis" +, title = "A linear algorithm for finding the convex hull of a simple polygon" +, journal = "Inform. Process. Lett." +, volume = 9 +, year = 1979 +, pages = "201--206" +, keywords = "polygons, convex hull" } @article{m-essle-73 -, author = "M. McClellan" -, title = "The exact solution of systems of lienear equations with polynomial coefficients" -, journal = "J. ACM" -, volume = 20 -, number = 4 -, year = 1973 -, pages = "563--588" -, update = "98.03 bibrelex" +, author = "M. McClellan" +, title = "The exact solution of systems of lienear equations with polynomial coefficients" +, journal = "J. ACM" +, volume = 20 +, number = 4 +, year = 1973 +, pages = "563--588" +, update = "98.03 bibrelex" } @article{mv-papcb-75 -, author = "D. E. McClure and R. A. Vitale" -, title = "Polygonal approximation of plane convex bodies" -, journal = "J. Math. Anal. Appl." -, volume = 51 -, year = 1975 -, pages = "326--358" -, update = "01.07 devillers, 98.07 bibrelex" +, author = "D. E. McClure and R. A. Vitale" +, title = "Polygonal approximation of plane convex bodies" +, journal = "J. Math. Anal. Appl." +, volume = 51 +, year = 1975 +, pages = "326--358" +, update = "01.07 devillers, 98.07 bibrelex" } @article{m-htcsc-67 -, author = "M. C. McCord" -, title = "Homotopy type comparison of a space with complexes associated with its open covers" -, journal = "Proc. Amer. Math. Soc." -, volume = 18 -, year = 1967 -, pages = "705--708" -, update = "98.03 bibrelex" +, author = "M. C. McCord" +, title = "Homotopy type comparison of a space with complexes associated with its open covers" +, journal = "Proc. Amer. Math. Soc." +, volume = 18 +, year = 1967 +, pages = "705--708" +, update = "98.03 bibrelex" } @mastersthesis{m-isen-86 -, author = "J. S. McCranie" -, title = "An investigation of the size of epsilon-nets" -, type = "M.{Sc}. Thesis" -, school = "Univ. Illinois" -, address = "Urbana, IL" -, year = 1986 -, keywords = "master thesis" +, author = "J. S. McCranie" +, title = "An investigation of the size of epsilon-nets" +, type = "M.{Sc}. Thesis" +, school = "Univ. Illinois" +, address = "Urbana, IL" +, year = 1986 +, keywords = "master thesis" } @inproceedings{msg-cgdsu-95 -, author = "C. McCreary and F.-S. Shieh and H. Gill" -, title = "{CG}: a Graph Drawing System Using Graph-Grammar Parsing" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "270--273" -, keywords = "graph drawing, system, grammar" -, update = "95.01 tamassia" +, author = "C. McCreary and F.-S. Shieh and H. Gill" +, title = "{CG}: a Graph Drawing System Using Graph-Grammar Parsing" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "270--273" +, keywords = "graph drawing, system, grammar" +, update = "95.01 tamassia" } @techreport{m-eaeii-80 -, author = "E. M. McCreight" -, title = "Efficient algorithms for enumerating intersecting intervals and rectangles" -, type = "Report" -, number = "CSL-80-9" -, institution = "Xerox Palo Alto Res. Center" -, address = "Palo Alto, CA" -, year = 1980 +, author = "E. M. McCreight" +, title = "Efficient algorithms for enumerating intersecting intervals and rectangles" +, type = "Report" +, number = "CSL-80-9" +, institution = "Xerox Palo Alto Res. Center" +, address = "Palo Alto, CA" +, year = 1980 } @techreport{m-pst-81 -, author = "E. M. McCreight" -, title = "Priority search trees" -, type = "Technical {Report}" -, number = "CSL-81-5" -, institution = "XEROX Palo Alto Research Centre" -, address = "Palo Alto, CA" -, year = 1981 -, update = "97.11 bibrelex" +, author = "E. M. McCreight" +, title = "Priority search trees" +, type = "Technical {Report}" +, number = "CSL-81-5" +, institution = "XEROX Palo Alto Research Centre" +, address = "Palo Alto, CA" +, year = 1981 +, update = "97.11 bibrelex" } @article{m-pst-85 -, author = "E. M. McCreight" -, title = "Priority search trees" -, journal = "SIAM J. Comput." -, volume = 14 -, number = 2 -, year = 1985 -, pages = "257--276" -, update = "98.11 bibrelex" +, author = "E. M. McCreight" +, title = "Priority search trees" +, journal = "SIAM J. Comput." +, volume = 14 +, number = 2 +, year = 1985 +, pages = "257--276" +, update = "98.11 bibrelex" } @article{ml-rcecs-94 -, author = "K. McCroan and R. Lacher" -, title = "Region coloring, edge coloring, and scan-conversion of maps" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "423--455" -, keywords = "polygon filling, polygon scan conversion, curve filling, color cycle, edge colring, region coloring" -, update = "96.09 devillers" +, author = "K. McCroan and R. Lacher" +, title = "Region coloring, edge coloring, and scan-conversion of maps" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "423--455" +, keywords = "polygon filling, polygon scan conversion, curve filling, color cycle, edge colring, region coloring" +, update = "96.09 devillers" } @article{mr-dtrds-80 -, author = "M. J. McCullagh and C. G. Ross" -, title = "{Delaunay} Triangulation of a Random Data Set for Isarithmic Mapping" -, journal = "The Cartographic Journal" -, volume = 17 -, number = 2 -, year = 1980 -, pages = "93--99" -, annote = "Circumcircle algorithm with 2D bucketing for search. - Discusses order of triangle construction. Bucket search - order discussed." +, author = "M. J. McCullagh and C. G. Ross" +, title = "{Delaunay} Triangulation of a Random Data Set for Isarithmic Mapping" +, journal = "The Cartographic Journal" +, volume = 17 +, number = 2 +, year = 1980 +, pages = "93--99" +, annote = "Circumcircle algorithm with 2D bucketing for search. + Discusses order of triangle construction. Bucket search + order discussed." } @techreport{mp-spsrp-89 -, author = "Kenneth M. McDonald and Joseph G. Peters" -, title = "Smallest paths in simple rectilinear polygons" -, type = "Technical Report" -, number = "TR 89-4" -, institution = "School of Computing Science, Simon Fraser Univ." -, year = 1989 -, precedes = "mp-spsrp-92, mp-spsrp-90" -, update = "98.07 bibrelex" +, author = "Kenneth M. McDonald and Joseph G. Peters" +, title = "Smallest paths in simple rectilinear polygons" +, type = "Technical Report" +, number = "TR 89-4" +, institution = "School of Computing Science, Simon Fraser Univ." +, year = 1989 +, precedes = "mp-spsrp-92, mp-spsrp-90" +, update = "98.07 bibrelex" } @techreport{mp-spsrp-90 -, author = "Kenneth M. McDonald and J. G. Peters" -, title = "Smallest paths in simple rectilinear polygons" -, type = "Manuscript" -, month = mar -, year = 1990 -, succeeds = "mp-spsrp-89" -, precedes = "mp-spsrp-92" -, update = "98.07 bibrelex, 98.03 mitchell, 93.09 milone+mitchell" +, author = "Kenneth M. McDonald and J. G. Peters" +, title = "Smallest paths in simple rectilinear polygons" +, type = "Manuscript" +, month = mar +, year = 1990 +, succeeds = "mp-spsrp-89" +, precedes = "mp-spsrp-92" +, update = "98.07 bibrelex, 98.03 mitchell, 93.09 milone+mitchell" } @article{mp-spsrp-92 -, author = "Kenneth M. McDonald and Joseph G. Peters" -, title = "Smallest paths in simple rectilinear polygons" -, journal = "IEEE Trans. on Computer Aided Design" -, volume = 11 -, year = 1992 -, pages = "864--875" -, keywords = "bicriteria shortest paths, link distance, L1 metric, rectilinear shortest paths" -, comments = "Gives an $O(n)$ algorithm for finding a path that is `smallest' in the sense of minimizing both $L_1$ length and rectilinear link distance at the same time (after proving that such a path always exists in a rectilinear simple polygon). They also give a parallel algorithm that takes time $O(\log n)$, on $O(n/\log n)$ processors, in EREW PRAM, after the polygon is triangulated." -, succeeds = "mp-spsrp-90, mp-spsrp-89" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Kenneth M. McDonald and Joseph G. Peters" +, title = "Smallest paths in simple rectilinear polygons" +, journal = "IEEE Trans. on Computer Aided Design" +, volume = 11 +, year = 1992 +, pages = "864--875" +, keywords = "bicriteria shortest paths, link distance, L1 metric, rectilinear shortest paths" +, comments = "Gives an $O(n)$ algorithm for finding a path that is `smallest' in the sense of minimizing both $L_1$ length and rectilinear link distance at the same time (after proving that such a path always exists in a rectilinear simple polygon). They also give a parallel algorithm that takes time $O(\log n)$, on $O(n/\log n)$ processors, in EREW PRAM, after the polygon is triangulated." +, succeeds = "mp-spsrp-90, mp-spsrp-89" +, update = "98.07 bibrelex, 98.03 mitchell" } @phdthesis{m-eaa-86 -, author = "C. McGeoch" -, title = "Experimental analysis of algorithms" -, school = "School Comput. Sci., Carnegie Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1986 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "C. McGeoch" +, title = "Experimental analysis of algorithms" +, school = "School Comput. Sci., Carnegie Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1986 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @incollection{m-caclg-77 -, author = "B. D. McKay" -, title = "Computing Automorphisms and Canonical Labelings of Graphs" -, booktitle = "??" -, series = "Lecture Notes Math." -, volume = 686 -, publisher = "Springer-Verlag" -, year = 1977 -, pages = "223--232" -, update = "97.11 bibrelex" +, author = "B. D. McKay" +, title = "Computing Automorphisms and Canonical Labelings of Graphs" +, booktitle = "??" +, series = "Lecture Notes Math." +, volume = 686 +, publisher = "Springer-Verlag" +, year = 1977 +, pages = "223--232" +, update = "97.11 bibrelex" } @article{m-strg-83 -, author = "B. D. McKay" -, title = "Spanning trees in regular graphs" -, journal = "European J. Combin." -, volume = 4 -, year = 1983 -, pages = "149--160" -, update = "01.04 orourke" +, author = "B. D. McKay" +, title = "Spanning trees in regular graphs" +, journal = "European J. Combin." +, volume = 4 +, year = 1983 +, pages = "149--160" +, update = "01.04 orourke" } @inproceedings{m-ismit-87 -, author = "David G. McKenna" -, title = "The Inward Spiral Method: An Improved {TIN} Generation Technique and Data Structure for Land Planning Applications" -, booktitle = "Proceedings, AUTOCARTO 8" -, site = "Baltimore, MD, March 29--April 3" -, year = 1987 -, pages = "670--679" -, annote = "CDT via selection. Bucket search. Extra vertices are - added on boundary edges so that no constraint edge is - longer than the grid size. Queue to store boundary" +, author = "David G. McKenna" +, title = "The Inward Spiral Method: An Improved {TIN} Generation Technique and Data Structure for Land Planning Applications" +, booktitle = "Proceedings, AUTOCARTO 8" +, site = "Baltimore, MD, March 29--April 3" +, year = 1987 +, pages = "670--679" +, annote = "CDT via selection. Bucket search. Extra vertices are + added on boundary edges so that no constraint edge is + longer than the grid size. Queue to store boundary" } @phdthesis{m-aagph-89 -, author = "M. McKenna" -, title = "Applications of arrangements to geometric problems in higher dimensions" -, school = "Johns Hopkins University" -, year = 1989 -, keywords = "doctoral thesis" +, author = "M. McKenna" +, title = "Applications of arrangements to geometric problems in higher dimensions" +, school = "Johns Hopkins University" +, year = 1989 +, keywords = "doctoral thesis" } @techreport{m-wcohs-86 -, author = "M. McKenna" -, title = "Worst-case optimal hidden-surface removal" -, type = "Technical {Report}" -, number = "JHU/EECS-86/05" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1986 -, update = "98.03 bibrelex" +, author = "M. McKenna" +, title = "Worst-case optimal hidden-surface removal" +, type = "Technical {Report}" +, number = "JHU/EECS-86/05" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1986 +, update = "98.03 bibrelex" } @article{m-wcohs-87 -, author = "M. McKenna" -, title = "Worst-case optimal hidden-surface removal" -, journal = "ACM Trans. Graph." -, volume = 6 -, year = 1987 -, pages = "19--28" -, keywords = "design of algorithms, complexity theory, computer graphics, visibility, plane-sweep, hidden line/surface elimination" +, author = "M. McKenna" +, title = "Worst-case optimal hidden-surface removal" +, journal = "ACM Trans. Graph." +, volume = 6 +, year = 1987 +, pages = "19--28" +, keywords = "design of algorithms, complexity theory, computer graphics, visibility, plane-sweep, hidden line/surface elimination" } @inproceedings{mo-al3sd-88 -, author = "M. McKenna and J. O'Rourke" -, title = "Arrangements of lines in $3$-space: a data structure with applications" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "371--380" -, cites = "ahu-daca-74, aw-alts-87, cgl-pgd-85, eg-tsa-86, egs-oplms-86, eos-calha-86, f-pp-87, gs-ccrs-86, hs-ndssg-86, kl-sc-72, m-wcohs-87, ms-foscp-85, w-cgpsl-87, ZZZ" -, update = "98.03 bibrelex" +, author = "M. McKenna and J. O'Rourke" +, title = "Arrangements of lines in $3$-space: a data structure with applications" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "371--380" +, cites = "ahu-daca-74, aw-alts-87, cgl-pgd-85, eg-tsa-86, egs-oplms-86, eos-calha-86, f-pp-87, gs-ccrs-86, hs-ndssg-86, kl-sc-72, m-wcohs-87, ms-foscp-85, w-cgpsl-87, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{mos-fmrio-85 -, author = "M. McKenna and J. O'Rourke and Subhash Suri" -, title = "Finding maximal rectangles inscribed in an orthogonal polygon" -, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." -, year = 1985 -, pages = "486--495" -, keywords = "packing, area, rectangles" -, update = "98.03 mitchell" +, author = "M. McKenna and J. O'Rourke and Subhash Suri" +, title = "Finding maximal rectangles inscribed in an orthogonal polygon" +, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." +, year = 1985 +, pages = "486--495" +, keywords = "packing, area, rectangles" +, update = "98.03 mitchell" } @inproceedings{ms-foscp-85 -, author = "M. McKenna and R. Seidel" -, title = "Finding the optimal shadows of a convex polytope" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "24--28" -, keywords = "optimization, volume, arrangements" -, cites = "eos-calha-86, eos-calha-83, g-cp-67, t-sgprc-83, ZZZ" -, update = "97.11 bibrelex" +, author = "M. McKenna and R. Seidel" +, title = "Finding the optimal shadows of a convex polytope" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "24--28" +, keywords = "optimization, volume, arrangements" +, cites = "eos-calha-86, eos-calha-83, g-cp-67, t-sgprc-83, ZZZ" +, update = "97.11 bibrelex" } @techreport{mt-fmvdb-83 -, author = "M. McKenna and G. T. Toussaint" -, title = "Finding the minimum vertex distance between two disjoint convex polygons in linear time" -, type = "Technical {Report}" -, number = "SOCS-83-6" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, month = apr -, year = 1983 -, update = "97.11 bibrelex" +, author = "M. McKenna and G. T. Toussaint" +, title = "Finding the minimum vertex distance between two disjoint convex polygons in linear time" +, type = "Technical {Report}" +, number = "SOCS-83-6" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, month = apr +, year = 1983 +, update = "97.11 bibrelex" } @article{mt-fmvdb-85 -, author = "M. McKenna and G. T. Toussaint" -, title = "Finding the minimum vertex distance between two disjoint convex polygons in linear time" -, journal = "Comput. Math. Appl." -, volume = 11 -, year = 1985 -, pages = "1227--1242" -, keywords = "separation" +, author = "M. McKenna and G. T. Toussaint" +, title = "Finding the minimum vertex distance between two disjoint convex polygons in linear time" +, journal = "Comput. Math. Appl." +, volume = 11 +, year = 1985 +, pages = "1227--1242" +, keywords = "separation" } @article{mz-dsall-90 -, author = "M. McKenna and D. Zeltzer" -, title = "Dynamic simulation of autonomous legged locomotion" -, journal = "Comput. Graph." -, volume = "??" -, year = 1990 -, pages = "29--38" -, note = "Proc. SIGGRAPH '90" -, update = "97.11 bibrelex" +, author = "M. McKenna and D. Zeltzer" +, title = "Dynamic simulation of autonomous legged locomotion" +, journal = "Comput. Graph." +, volume = "??" +, year = 1990 +, pages = "29--38" +, note = "Proc. SIGGRAPH '90" +, update = "97.11 bibrelex" } @book{m-ir-91 -, author = "P. J. McKerrow" -, title = "Introduction to Robotics" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1991 -, update = "97.03 schwarzkopf" +, author = "P. J. McKerrow" +, title = "Introduction to Robotics" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1991 +, update = "97.03 schwarzkopf" } @article{m-dcadp-74 -, author = "D. H. McLain" -, title = "Drawing contours from arbitrary data points" -, journal = "Comput. J." -, volume = 17 -, year = 1974 -, pages = "318--324" -, update = "93.09 jones" +, author = "D. H. McLain" +, title = "Drawing contours from arbitrary data points" +, journal = "Comput. J." +, volume = 17 +, year = 1974 +, pages = "318--324" +, update = "93.09 jones" } @article{m-etdir-76 -, author = "D. H. McLain" -, title = "Errata to ``{Two} dimensional interpolation from random data''" -, journal = "Comput. J." -, volume = 19 -, number = 4 -, year = 1976 -, pages = 384 -, succeeds = "m-tdird-76" -, update = "98.03 bibrelex" +, author = "D. H. McLain" +, title = "Errata to ``{Two} dimensional interpolation from random data''" +, journal = "Comput. J." +, volume = 19 +, number = 4 +, year = 1976 +, pages = 384 +, succeeds = "m-tdird-76" +, update = "98.03 bibrelex" } @article{m-tdird-76 -, author = "D. H. McLain" -, title = "Two dimensional interpolation from random data" -, journal = "Comput. J." -, volume = 19 -, year = 1976 -, pages = "178--181" -, precedes = "m-etdir-76" -, update = "98.03 bibrelex" +, author = "D. H. McLain" +, title = "Two dimensional interpolation from random data" +, journal = "Comput. J." +, volume = 19 +, year = 1976 +, pages = "178--181" +, precedes = "m-etdir-76" +, update = "98.03 bibrelex" } @inproceedings{m-ioopt-93 -, author = "M. J. McLennan" -, title = "[{Inc} {Tcl}]: object-oriented programming in {Tcl}" -, booktitle = "Proceedings of the Tcl/Tk Workshop 1993" -, year = 1993 -, url = "http://www.wn.com/biz/itcl" -, update = "98.07 bibrelex" +, author = "M. J. McLennan" +, title = "[{Inc} {Tcl}]: object-oriented programming in {Tcl}" +, booktitle = "Proceedings of the Tcl/Tk Workshop 1993" +, year = 1993 +, url = "http://www.wn.com/biz/itcl" +, update = "98.07 bibrelex" } @article{m-ssr-79 -, author = "R. McLeod" -, title = "The {Steiner} Surface Revisited" -, journal = "Proc. Roy. Soc. London Ser. A" -, volume = 369 -, year = 1979 -, pages = "157--174" -, update = "98.03 bibrelex" +, author = "R. McLeod" +, title = "The {Steiner} Surface Revisited" +, journal = "Proc. Roy. Soc. London Ser. A" +, volume = 369 +, year = 1979 +, pages = "157--174" +, update = "98.03 bibrelex" } @inproceedings{ms-cspsl-99 -, author = "S. McMains and C. S{\'e}quin" -, title = "A coherent sweep plane slicer for layered manufacturing" -, booktitle = "Proc. 5th ACM Symposium on Solid Modeling and Applications" -, year = 1999 -, pages = "285--295" -, update = "00.03 smid" +, author = "S. McMains and C. S{\'e}quin" +, title = "A coherent sweep plane slicer for layered manufacturing" +, booktitle = "Proc. 5th ACM Symposium on Solid Modeling and Applications" +, year = 1999 +, pages = "285--295" +, update = "00.03 smid" } @article{m-samml-86 -, author = "R. B. McMaster" -, title = "A statistical analysis of mathematical measures for linear simplification" -, journal = "Amer. Cartogr." -, volume = 13 -, year = 1986 -, pages = "103--116" -, update = "98.03 bibrelex" +, author = "R. B. McMaster" +, title = "A statistical analysis of mathematical measures for linear simplification" +, journal = "Amer. Cartogr." +, volume = 13 +, year = 1986 +, pages = "103--116" +, update = "98.03 bibrelex" } @article{m-alg-87 -, author = "R. B. McMaster" -, title = "Automated Line Generation" -, journal = "Cartographica" -, volume = 24 -, number = 2 -, year = 1987 -, pages = "74--111" +, author = "R. B. McMaster" +, title = "Automated Line Generation" +, journal = "Cartographica" +, volume = 24 +, number = 2 +, year = 1987 +, pages = "74--111" } @article{m-z-71 -, author = "P. McMullen" -, title = "On zonotopes" -, journal = "Trans. Amer. Math. Soc." -, volume = 159 -, year = 1971 -, pages = "91--109" -, update = "94.05 devillers" +, author = "P. McMullen" +, title = "On zonotopes" +, journal = "Trans. Amer. Math. Soc." +, volume = 159 +, year = 1971 +, pages = "91--109" +, update = "94.05 devillers" } @article{m-mnfcp-70 -, author = "P. McMullen" -, title = "The maximal number of faces of a convex polytope" -, journal = "Mathematika" -, volume = 17 -, year = 1970 -, pages = "179--184" -, update = "98.03 smid" +, author = "P. McMullen" +, title = "The maximal number of faces of a convex polytope" +, journal = "Mathematika" +, volume = 17 +, year = 1970 +, pages = "179--184" +, update = "98.03 smid" } @book{ms-cpubc-71 -, author = "P. McMullen and G. C. Shephard" -, title = "Convex Polytopes and the Upper Bound Conjecture" -, series = "Lecture Notes" -, volume = 3 -, publisher = "Cambridge University Press" -, address = "Cambridge, England" -, year = 1971 -, update = "97.11 bibrelex" +, author = "P. McMullen and G. C. Shephard" +, title = "Convex Polytopes and the Upper Bound Conjecture" +, series = "Lecture Notes" +, volume = 3 +, publisher = "Cambridge University Press" +, address = "Cambridge, England" +, year = 1971 +, update = "97.11 bibrelex" } @article{mw-glbcs-71 -, author = "P. McMullen and D. Walkup" -, title = "A generalized lower-bound conjecture for simplical polytopes" -, journal = "Mathematika" -, volume = 18 -, year = 1971 -, pages = "246--273" -, update = "98.03 bibrelex" +, author = "P. McMullen and D. Walkup" +, title = "A generalized lower-bound conjecture for simplical polytopes" +, journal = "Mathematika" +, volume = 18 +, year = 1971 +, pages = "246--273" +, update = "98.03 bibrelex" } @techreport{mt-uchap-84 -, author = "M. M. {McQueen} and G. T. Toussaint" -, title = "On the Ultimate Convex Hull Algorithm in Practice" -, type = "Technical {Report}" -, number = "SOCS-84.2" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, month = feb -, year = 1984 -, update = "97.11 bibrelex" +, author = "M. M. {McQueen} and G. T. Toussaint" +, title = "On the Ultimate Convex Hull Algorithm in Practice" +, type = "Technical {Report}" +, number = "SOCS-84.2" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, month = feb +, year = 1984 +, update = "97.11 bibrelex" } @article{mt-uchap-85 -, author = "M. M. McQueen and G. T. Toussaint" -, title = "On the ultimate convex hull algorithm in practice" -, journal = "Pattern Recogn. Lett." -, volume = 3 -, year = 1985 -, pages = "29--34" +, author = "M. M. McQueen and G. T. Toussaint" +, title = "On the ultimate convex hull algorithm in practice" +, journal = "Pattern Recogn. Lett." +, volume = 3 +, year = 1985 +, pages = "29--34" } @article{md-aerpc-73 -, author = "W. B. McRae and E. R. Davidson" -, title = "An algorithm for the extreme rays of a pointed convex polyhedral cone" -, journal = "SIAM J. Comput." -, volume = 2 -, year = 1973 -, pages = "281--293" +, author = "W. B. McRae and E. R. Davidson" +, title = "An algorithm for the extreme rays of a pointed convex polyhedral cone" +, journal = "SIAM J. Comput." +, volume = 2 +, year = 1973 +, pages = "281--293" } @article{m-erf-34 -, author = "E. J. McShane" -, title = "Extensions of range functions" -, journal = "Bull. Amer. Math. Soc." -, volume = 40 -, year = 1934 -, pages = "837--842" -, update = "98.07 bibrelex" +, author = "E. J. McShane" +, title = "Extensions of range functions" +, journal = "Bull. Amer. Math. Soc." +, volume = 40 +, year = 1934 +, pages = "837--842" +, update = "98.07 bibrelex" } @inproceedings{m-digbv-95 -, author = "J. D. McWhirter" -, title = "A Demonstration of Interactive Graph Based Visual Language Applications" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "274--277" -, keywords = "graph drawing, system, visual language" -, update = "95.01 tamassia" +, author = "J. D. McWhirter" +, title = "A Demonstration of Interactive Graph Based Visual Language Applications" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "274--277" +, keywords = "graph drawing, system, visual language" +, update = "95.01 tamassia" } @book{m-avns-89 -, author = "C. Mead" -, title = "Analog {VLSI} and neural systems" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1989 -, update = "98.07 bibrelex" +, author = "C. Mead" +, title = "Analog {VLSI} and neural systems" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1989 +, update = "98.07 bibrelex" } @book{mc-ivs-80 -, author = "C. Mead and L. Conway" -, title = "Introduction to VLSI Systems" -, publisher = "Addison-Wesley" -, year = 1980 -, update = "97.11 bibrelex" +, author = "C. Mead and L. Conway" +, title = "Introduction to VLSI Systems" +, publisher = "Addison-Wesley" +, year = 1980 +, update = "97.11 bibrelex" } @article{m-ripsy-66 -, author = "R. Mead" -, title = "A relation between the individual plant-spacing and yield" -, journal = "Annals of Botany, N.S." -, volume = 30 -, year = 1966 -, pages = "301--309" -, update = "97.03 schwarzkopf" +, author = "R. Mead" +, title = "A relation between the individual plant-spacing and yield" +, journal = "Annals of Botany, N.S." +, volume = 30 +, year = 1966 +, pages = "301--309" +, update = "97.03 schwarzkopf" } @article{m-gmuqe-82 -, author = "D. J. R. Meagher" -, title = "Geometric modeling using quadtree encoding" -, journal = "Comput. Graph. Image Process." -, volume = 19 -, year = 1982 -, pages = "129--147" +, author = "D. J. R. Meagher" +, title = "Geometric modeling using quadtree encoding" +, journal = "Comput. Graph. Image Process." +, volume = 19 +, year = 1982 +, pages = "129--147" } @techreport{m-ogam-82 -, author = "D. J. R. Meagher" -, title = "Octree generation, analysis and manipulation" -, type = "Report" -, number = "IPL-TR-027" -, institution = "Image Process. Lab., Rensselaer Polytech. Inst." -, address = "Troy, NY" -, year = 1982 +, author = "D. J. R. Meagher" +, title = "Octree generation, analysis and manipulation" +, type = "Report" +, number = "IPL-TR-027" +, institution = "Image Process. Lab., Rensselaer Polytech. Inst." +, address = "Troy, NY" +, year = 1982 } @techreport{m-oemes-82 -, author = "D. J. R. Meagher" -, title = "The octree encoding method for efficient solid modeling" -, type = "Report" -, number = "IPL-TR-032" -, institution = "Image Process. Lab., Rensselaer Polytech. Inst." -, address = "Troy, NY" -, year = 1982 +, author = "D. J. R. Meagher" +, title = "The octree encoding method for efficient solid modeling" +, type = "Report" +, number = "IPL-TR-032" +, institution = "Image Process. Lab., Rensselaer Polytech. Inst." +, address = "Troy, NY" +, year = 1982 } @inproceedings{m-asmab-92 -, author = "J. E. Mebius" -, title = "Artibodies: A System for Modelling Articulated Bodies" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "9--11" -, update = "00.03 bibrelex" +, author = "J. E. Mebius" +, title = "Artibodies: A System for Modelling Articulated Bodies" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "9--11" +, update = "00.03 bibrelex" } @incollection{m-rtgh-84 -, author = "J. Mecke" -, title = "Random Tessellations generated by hyperplanes" -, editor = "R. Ambartzumian and W. Weil" -, booktitle = "Stochastic Geometry, Geometric Statistics, Stereology" -, publisher = "B. G. Teubner" -, address = "Leipzig" -, year = 1984 -, pages = "104--109" -, update = "99.11 bibrelex, 98.07 agarwal" +, author = "J. Mecke" +, title = "Random Tessellations generated by hyperplanes" +, editor = "R. Ambartzumian and W. Weil" +, booktitle = "Stochastic Geometry, Geometric Statistics, Stereology" +, publisher = "B. G. Teubner" +, address = "Leipzig" +, year = 1984 +, pages = "104--109" +, update = "99.11 bibrelex, 98.07 agarwal" } @inproceedings{mcd-vtsml-94 -, author = "M. R. Mediano and M. A. Casanova and M. Dreux" -, title = "{V}-trees: {A} storage method for long vector data" -, booktitle = "Proc. 20th VLDB Conference" -, year = 1994 -, pages = "321--329" -, update = "97.07 agarwal" +, author = "M. R. Mediano and M. A. Casanova and M. Dreux" +, title = "{V}-trees: {A} storage method for long vector data" +, booktitle = "Proc. 20th VLDB Conference" +, year = 1994 +, pages = "321--329" +, update = "97.07 agarwal" } @article{m-atdvp-86 -, author = "N. N. Medvedev" -, title = "The Algorithm for Three Dimensional {Voronoi} Polyhedra" -, journal = "J. Comput. Phys." -, volume = 67 -, year = 1986 -, pages = "223--229" -, annote = "Construction of a single Voronoi polyhedron. - Effectively follows edges." +, author = "N. N. Medvedev" +, title = "The Algorithm for Three Dimensional {Voronoi} Polyhedra" +, journal = "J. Comput. Phys." +, volume = 67 +, year = 1986 +, pages = "223--229" +, annote = "Construction of a single Voronoi polyhedron. + Effectively follows edges." } @inproceedings{m-irmbc-95 -, author = "C. Meghini" -, title = "An Image Retrieval Model Based on Classical Logic" -, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" -, year = 1995 -, pages = "300--308" -, update = "98.07 agarwal" +, author = "C. Meghini" +, title = "An Image Retrieval Model Based on Classical Logic" +, booktitle = "Proc. 16th Annu. Internat. ACM SIGIR Conf. Research and Develop. in Inform. Retrieval" +, year = 1995 +, pages = "300--308" +, update = "98.07 agarwal" } @article{m-ndlp-86 -, author = "N. Megiddo" -, title = "A note on degeneracy in linear programming" -, journal = "Math. Program." -, volume = 35 -, year = 1986 -, pages = "365--367" -, keywords = "complexity theory, linear programming" +, author = "N. Megiddo" +, title = "A note on degeneracy in linear programming" +, journal = "Math. Program." +, volume = 35 +, year = 1986 +, pages = "365--367" +, keywords = "complexity theory, linear programming" } @article{m-apcad-83 -, author = "N. Megiddo" -, title = "Applying parallel computation algorithms in the design of serial algorithms" -, journal = "J. ACM" -, volume = 30 -, number = 4 -, year = 1983 -, pages = "852--865" -, keywords = "design of algorithms, parallel computation, binary search" -, update = "98.11 bibrelex" +, author = "N. Megiddo" +, title = "Applying parallel computation algorithms in the design of serial algorithms" +, journal = "J. ACM" +, volume = 30 +, number = 4 +, year = 1983 +, pages = "852--865" +, keywords = "design of algorithms, parallel computation, binary search" +, update = "98.11 bibrelex" } @article{m-corof-79 -, author = "N. Megiddo" -, title = "Combinatorial optimization with rational objective functions" -, journal = "Math. Oper. Res." -, volume = 4 -, year = 1979 -, pages = "414--424" -, keywords = "complexity theory, design of algorithms, optimization, binary search" +, author = "N. Megiddo" +, title = "Combinatorial optimization with rational objective functions" +, journal = "Math. Oper. Res." +, volume = 4 +, year = 1979 +, pages = "414--424" +, keywords = "complexity theory, design of algorithms, optimization, binary search" } @article{m-dlp-86 -, author = "N. Megiddo" -, title = "Dynamic location problems" -, journal = "Oper. Res." -, volume = 6 -, year = 1986 -, pages = "313--319" -, keywords = "design of algorithms, balls, optimization" +, author = "N. Megiddo" +, title = "Dynamic location problems" +, journal = "Oper. Res." +, volume = 6 +, year = 1986 +, pages = "313--319" +, keywords = "design of algorithms, balls, optimization" } @article{m-iaaan-86 -, author = "N. Megiddo" -, title = "Improved asymptotic analysis of the average number of steps performed by the self-dual simplex algorithm" -, journal = "Math. Program." -, volume = 35 -, year = 1986 -, pages = "140--172" -, keywords = "average-case analysis, linear programming" +, author = "N. Megiddo" +, title = "Improved asymptotic analysis of the average number of steps performed by the self-dual simplex algorithm" +, journal = "Math. Program." +, volume = 35 +, year = 1986 +, pages = "140--172" +, keywords = "average-case analysis, linear programming" } @article{m-ibeap-82 -, author = "N. Megiddo" -, title = "Is binary encoding appropriate for the problem-language relationship?" -, journal = "Theoret. Comput. Sci." -, volume = 19 -, year = 1982 -, pages = "337--341" -, keywords = "computational model" +, author = "N. Megiddo" +, title = "Is binary encoding appropriate for the problem-language relationship?" +, journal = "Theoret. Comput. Sci." +, volume = 19 +, year = 1982 +, pages = "337--341" +, keywords = "computational model" } @article{m-lp198-87 -, author = "N. Megiddo" -, title = "Linear programming (1986)" -, journal = "Annu. Rev. Comput. Sci." -, volume = 2 -, year = 1987 -, pages = "119--145" -, keywords = "survey paper" +, author = "N. Megiddo" +, title = "Linear programming (1986)" +, journal = "Annu. Rev. Comput. Sci." +, volume = 2 +, year = 1987 +, pages = "119--145" +, keywords = "survey paper" } @article{m-lpltw-84 -, author = "N. Megiddo" -, title = "Linear programming in linear time when the dimension is fixed" -, journal = "J. ACM" -, volume = 31 -, year = 1984 -, pages = "114--127" -, keywords = "design of algorithms, linear programming, worst-case analysis, prune-and-search" +, author = "N. Megiddo" +, title = "Linear programming in linear time when the dimension is fixed" +, journal = "J. ACM" +, volume = 31 +, year = 1984 +, pages = "114--127" +, keywords = "design of algorithms, linear programming, worst-case analysis, prune-and-search" } @inproceedings{m-ltalp-82 -, author = "N. Megiddo" -, title = "Linear-time algorithms for linear programming in {$R^{3}$} and related problems" -, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1982 -, pages = "329--338" -, precedes = "m-ltalp-83" +, author = "N. Megiddo" +, title = "Linear-time algorithms for linear programming in {$R^{3}$} and related problems" +, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1982 +, pages = "329--338" +, precedes = "m-ltalp-83" } @article{m-ltalp-83 -, author = "N. Megiddo" -, title = "Linear-time algorithms for linear programming in {$R^{3}$} and related problems" -, journal = "SIAM J. Comput." -, volume = 12 -, number = 4 -, year = 1983 -, pages = "759--776" -, keywords = "design of algorithms, linear programming, three-dimensional, graph theory, prune-and-search, geometric transformations, points, lines, planes" -, succeeds = "m-ltalp-82" -, update = "01.04 icking" +, author = "N. Megiddo" +, title = "Linear-time algorithms for linear programming in {$R^{3}$} and related problems" +, journal = "SIAM J. Comput." +, volume = 12 +, number = 4 +, year = 1983 +, pages = "759--776" +, keywords = "design of algorithms, linear programming, three-dimensional, graph theory, prune-and-search, geometric transformations, points, lines, planes" +, succeeds = "m-ltalp-82" +, update = "01.04 icking" } @article{m-nalp-86 -, author = "N. Megiddo" -, title = "New approaches to linear programming" -, journal = "Algorithmica" -, volume = 1 -, year = 1986 -, pages = "387--394" -, keywords = "survey paper" +, author = "N. Megiddo" +, title = "New approaches to linear programming" +, journal = "Algorithmica" +, volume = 1 +, year = 1986 +, pages = "387--394" +, keywords = "survey paper" } @techreport{m-splp-81 -, author = "N. Megiddo" -, title = "On some planar location problems" -, type = "Report" -, number = "??" -, institution = "Dept. Statist., Tel-Aviv Univ." -, address = "Tel-Aviv, Israel" -, year = 1981 +, author = "N. Megiddo" +, title = "On some planar location problems" +, type = "Report" +, number = "??" +, institution = "Dept. Statist., Tel-Aviv Univ." +, address = "Tel-Aviv, Israel" +, year = 1981 } @article{m-bsb-89 -, author = "N. Megiddo" -, title = "On the ball spanned by balls" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "605--610" +, author = "N. Megiddo" +, title = "On the ball spanned by balls" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "605--610" } @incollection{m-clp-85 -, author = "N. Megiddo" -, title = "On the complexity of linear programming" -, editor = "T. Bewley" -, booktitle = "Advances in Economic Theory" -, publisher = "Cambridge University Press" -, year = 1985 -, pages = "??" -, keywords = "survey paper, linear programming, complexity theory, computational model" +, author = "N. Megiddo" +, title = "On the complexity of linear programming" +, editor = "T. Bewley" +, booktitle = "Advances in Economic Theory" +, publisher = "Cambridge University Press" +, year = 1985 +, pages = "??" +, keywords = "survey paper, linear programming, complexity theory, computational model" } @article{m-cps-88 -, author = "N. Megiddo" -, title = "On the complexity of polyhedral separability" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "325--337" -, keywords = "NP-completeness, separation, hyperplanes, two-dimensional, $d$-dimensional" +, author = "N. Megiddo" +, title = "On the complexity of polyhedral separability" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "325--337" +, keywords = "NP-completeness, separation, hyperplanes, two-dimensional, $d$-dimensional" } @techreport{m-csgpu-87 -, author = "N. Megiddo" -, title = "On the complexity of some geometric problems in unbounded dimension" -, type = "Report" -, number = "RJ 5744" -, institution = "IBM Almeden Res. Center" -, address = "San Jose, CA" -, year = 1987 -, keywords = "balls, covering, stabbing, $d$-dimensional, NP-completeness" +, author = "N. Megiddo" +, title = "On the complexity of some geometric problems in unbounded dimension" +, type = "Report" +, number = "RJ 5744" +, institution = "IBM Almeden Res. Center" +, address = "San Jose, CA" +, year = 1987 +, keywords = "balls, covering, stabbing, $d$-dimensional, NP-completeness" } @article{m-csgpu-90 -, author = "N. Megiddo" -, title = "On the complexity of some geometric problems in unbounded dimension" -, journal = "J. Symbolic Comput." -, volume = 10 -, year = 1990 -, pages = "327--334" -, keywords = "balls, covering, stabbing, $d$-dimensional, NP-completeness" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "N. Megiddo" +, title = "On the complexity of some geometric problems in unbounded dimension" +, journal = "J. Symbolic Comput." +, volume = 10 +, year = 1990 +, pages = "327--334" +, keywords = "balls, covering, stabbing, $d$-dimensional, NP-completeness" +, update = "96.09 agarwal, 96.05 agarwal" } @article{m-cotnd-82 -, author = "N. Megiddo" -, title = "On the complexity of the one-terminal network design problem" -, journal = "Oper. Res. Lett." -, volume = 3 -, year = 1982 -, pages = "105--107" -, keywords = "VLSI design, NP-completeness" +, author = "N. Megiddo" +, title = "On the complexity of the one-terminal network design problem" +, journal = "Oper. Res. Lett." +, volume = 3 +, year = 1982 +, pages = "105--107" +, keywords = "VLSI design, NP-completeness" } @techreport{m-pafmm-82 -, author = "N. Megiddo" -, title = "Parallel algorithms for finding the maximum and median almost surely in constant-time" -, type = "Report" -, number = "??" -, institution = "Grad. School Indust. Admin., Carnegie-Mellon Univ." -, address = "Philadelphia, PA" -, year = 1982 -, keywords = "complexity theory, parallel computation, searching, Las Vegas" +, author = "N. Megiddo" +, title = "Parallel algorithms for finding the maximum and median almost surely in constant-time" +, type = "Report" +, number = "??" +, institution = "Grad. School Indust. Admin., Carnegie-Mellon Univ." +, address = "Philadelphia, PA" +, year = 1982 +, keywords = "complexity theory, parallel computation, searching, Las Vegas" } @article{m-ptlp-85 -, author = "N. Megiddo" -, title = "Partitioning with two lines in the plane" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "430--433" -, keywords = "prune-and-search, design of algorithms, points, lines, two-dimensional" +, author = "N. Megiddo" +, title = "Partitioning with two lines in the plane" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "430--433" +, keywords = "prune-and-search, design of algorithms, points, lines, two-dimensional" } @techreport{m-plpal-82 -, author = "N. Megiddo" -, title = "Poly-log parallel algorithms for {LP} with an application to exploding flying objects" -, type = "Technical {Report}" -, number = "??" -, institution = "Grad. School Indust. Admin., Carnegie-Mellon Univ." -, address = "Philadelphia, PA" -, year = 1982 -, keywords = "design of algorithms, parallel computation, optimization, balls, three-dimensional, $d$-dimensional" +, author = "N. Megiddo" +, title = "Poly-log parallel algorithms for {LP} with an application to exploding flying objects" +, type = "Technical {Report}" +, number = "??" +, institution = "Grad. School Indust. Admin., Carnegie-Mellon Univ." +, address = "Philadelphia, PA" +, year = 1982 +, keywords = "design of algorithms, parallel computation, optimization, balls, three-dimensional, $d$-dimensional" } @unpublished{m-ppaa-90 -, author = "N. Megiddo" -, title = "Poly-log parallel algorithms for {LP} with an application to exploding flying objects" -, year = 1990 -, note = "Unpublished manuscript" -, update = "99.03 bibrelex, 95.09 agarwal" +, author = "N. Megiddo" +, title = "Poly-log parallel algorithms for {LP} with an application to exploding flying objects" +, year = 1990 +, note = "Unpublished manuscript" +, update = "99.03 bibrelex, 95.09 agarwal" } @article{m-we1cp-83 -, author = "N. Megiddo" -, title = "The weighted {Euclidean} $1$-center problem" -, journal = "Math. Oper. Res." -, volume = 8 -, number = 4 -, year = 1983 -, pages = "498--504" -, keywords = "design of algorithms, binary search, two-dimensional, circles, weighted, proximity" +, author = "N. Megiddo" +, title = "The weighted {Euclidean} $1$-center problem" +, journal = "Math. Oper. Res." +, volume = 8 +, number = 4 +, year = 1983 +, pages = "498--504" +, keywords = "design of algorithms, binary search, two-dimensional, circles, weighted, proximity" } @article{m-tgpal-83 -, author = "N. Megiddo" -, title = "Towards a genuinely polynomial algorithms for linear programming" -, journal = "SIAM J. Comput." -, volume = 12 -, year = 1983 -, pages = "347--353" -, keywords = "design of algorithms, linear programming, binary search, worst-case analysis, convex, $d$-dimensional" +, author = "N. Megiddo" +, title = "Towards a genuinely polynomial algorithms for linear programming" +, journal = "SIAM J. Comput." +, volume = 12 +, year = 1983 +, pages = "347--353" +, keywords = "design of algorithms, linear programming, binary search, worst-case analysis, convex, $d$-dimensional" } @inproceedings{mhgjp-csg-81 -, author = "N. Megiddo and S. L. Hakimi and M. R. Garey and D. S. Johnson and C. H. Papadimitriou" -, title = "On the complexity of searching a graph" -, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1981 -, pages = "376--385" -, keywords = "worst-case analysis, graph theory, dynamic programming, NP-completeness" -, precedes = "mhgjp-csg-88" +, author = "N. Megiddo and S. L. Hakimi and M. R. Garey and D. S. Johnson and C. H. Papadimitriou" +, title = "On the complexity of searching a graph" +, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1981 +, pages = "376--385" +, keywords = "worst-case analysis, graph theory, dynamic programming, NP-completeness" +, precedes = "mhgjp-csg-88" } @article{mhgjp-csg-88 -, author = "N. Megiddo and S. L. Hakimi and M. R. Garey and D. S. Johnson and C. H. Papadimitriou" -, title = "On the complexity of searching a graph" -, journal = "J. ACM" -, volume = 35 -, year = 1988 -, pages = "18--44" -, succeeds = "mhgjp-csg-81" +, author = "N. Megiddo and S. L. Hakimi and M. R. Garey and D. S. Johnson and C. H. Papadimitriou" +, title = "On the complexity of searching a graph" +, journal = "J. ACM" +, volume = 35 +, year = 1988 +, pages = "18--44" +, succeeds = "mhgjp-csg-81" } @article{ms-cscgl-84 -, author = "N. Megiddo and K. J. Supowit" -, title = "On the complexity of some common geometric location problems" -, journal = "SIAM J. Comput." -, volume = 13 -, number = 1 -, year = 1984 -, pages = "182--196" -, keywords = "NP-completeness, packing, covering, proximity" -, update = "98.03 bibrelex" +, author = "N. Megiddo and K. J. Supowit" +, title = "On the complexity of some common geometric location problems" +, journal = "SIAM J. Comput." +, volume = 13 +, number = 1 +, year = 1984 +, pages = "182--196" +, keywords = "NP-completeness, packing, covering, proximity" +, update = "98.03 bibrelex" } @article{tt-fldl-83 -, author = "N. Megiddo and A. Tamir" -, title = "Finding least-distances lines" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 2 -, year = 1983 -, pages = "207--211" -, keywords = "design of algorithms, optimization, statistics" -, update = "00.11 smid, 00.07 smid" +, author = "N. Megiddo and A. Tamir" +, title = "Finding least-distances lines" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 2 +, year = 1983 +, pages = "207--211" +, keywords = "design of algorithms, optimization, statistics" +, update = "00.11 smid, 00.07 smid" } @article{mt-nrcpc-83 -, author = "N. Megiddo and A. Tamir" -, title = "New results on the complexity of $p$-center problems" -, journal = "SIAM J. Comput." -, volume = 12 -, year = 1983 -, pages = "751--758" -, keywords = "design of algorithms, graph theory, binary search, trees" +, author = "N. Megiddo and A. Tamir" +, title = "New results on the complexity of $p$-center problems" +, journal = "SIAM J. Comput." +, volume = 12 +, year = 1983 +, pages = "751--758" +, keywords = "design of algorithms, graph theory, binary search, trees" } @article{mt-cllfp-82 -, author = "N. Megiddo and A. Tamir" -, title = "On the complexity of locating linear facilities in the plane" -, journal = "Oper. Res. Lett." -, volume = 1 -, year = 1982 -, pages = "194--197" -, keywords = "VLSI design, NP-completeness, points, lines, two-dimensional" +, author = "N. Megiddo and A. Tamir" +, title = "On the complexity of locating linear facilities in the plane" +, journal = "Oper. Res. Lett." +, volume = 1 +, year = 1982 +, pages = "194--197" +, keywords = "VLSI design, NP-completeness, points, lines, two-dimensional" } @article{mtzc-oaktn-81 -, author = "N. Megiddo and A. Tamir and E. Zemel and R. Chandrasekaran" -, title = "An {$O(n (\log n)^{2})$} algorithm for the $k$-th nearest pair in a tree with applications to location problems" -, journal = "SIAM J. Comput." -, volume = 10 -, year = 1981 -, pages = "328--337" -, keywords = "complexity theory, network algorithms, optimization, searching, centroid decomposition" +, author = "N. Megiddo and A. Tamir and E. Zemel and R. Chandrasekaran" +, title = "An {$O(n (\log n)^{2})$} algorithm for the $k$-th nearest pair in a tree with applications to location problems" +, journal = "SIAM J. Comput." +, volume = 10 +, year = 1981 +, pages = "328--337" +, keywords = "complexity theory, network algorithms, optimization, searching, centroid decomposition" } @article{mz-roawe-86 -, author = "N. Megiddo and E. Zemel" -, title = "A randomized {$O(n \log n)$} algorithm for the weighted {Euclidean} $1$-center problem" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "358--368" -, keywords = "Las Vegas, circles, proximity, weighted, worst-case analysis" -, update = "97.03 agarwal" +, author = "N. Megiddo and E. Zemel" +, title = "A randomized {$O(n \log n)$} algorithm for the weighted {Euclidean} $1$-center problem" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "358--368" +, keywords = "Las Vegas, circles, proximity, weighted, worst-case analysis" +, update = "97.03 agarwal" } @techreport{mzh-mclp-81 -, author = "N. Megiddo and E. Zemel and S. L. Hakimi" -, title = "The maximum coverage location problem" -, type = "Discuss. {Paper}" -, number = 490 -, institution = "Cent. Math. Stud. Econ. Manage. Sci., North-Western Univ." -, address = "Evanston, IL" -, year = 1981 +, author = "N. Megiddo and E. Zemel and S. L. Hakimi" +, title = "The maximum coverage location problem" +, type = "Discuss. {Paper}" +, number = 490 +, institution = "Cent. Math. Stud. Econ. Manage. Sci., North-Western Univ." +, address = "Evanston, IL" +, year = 1981 } @techreport{m-ihtpt-93 -, author = "K. Mehlhorn" -, title = "An implementation of the {Hopcroft} and {Tarjan} planarity test and embedding algorithm" -, type = "Report" -, number = "MPI-I-93-151" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, update = "94.01 smid" +, author = "K. Mehlhorn" +, title = "An implementation of the {Hopcroft} and {Tarjan} planarity test and embedding algorithm" +, type = "Report" +, number = "MPI-I-93-151" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, update = "94.01 smid" } @article{m-awcdt-81 -, author = "K. Mehlhorn" -, title = "Arbitrary weight changes in dynamic trees" -, journal = "Theoretical Informatics" -, volume = 15 -, year = 1981 -, pages = "183--211" -, update = "98.03 bibrelex" +, author = "K. Mehlhorn" +, title = "Arbitrary weight changes in dynamic trees" +, journal = "Theoretical Informatics" +, volume = 15 +, year = 1981 +, pages = "183--211" +, update = "98.03 bibrelex" } @book{m-dsass-81 -, author = "Kurt Mehlhorn" -, title = "Data Structures and Algorithm 1: Sorting and Searching" -, series = "EATCS Monographs on Theoretical Computer Science" -, volume = 1 -, publisher = "Springer-Verlag" -, address = "Berlin/Heidelberg, Germany" -, year = 1981 -, pages = "68--71" -, precedes = "m-ss-84" -, update = "98.11 bibrelex" +, author = "Kurt Mehlhorn" +, title = "Data Structures and Algorithm 1: Sorting and Searching" +, series = "EATCS Monographs on Theoretical Computer Science" +, volume = 1 +, publisher = "Springer-Verlag" +, address = "Berlin/Heidelberg, Germany" +, year = 1981 +, pages = "68--71" +, precedes = "m-ss-84" +, update = "98.11 bibrelex" } @book{m-dsa-84 -, author = "Kurt Mehlhorn" -, title = "Data Structures and Algorithms" -, publisher = "Springer-Verlag" -, address = "Heidelberg, Germany" -, year = 1984 -, note = "Volumes 1--3" -, update = "98.07 icking, 97.03 tamassia" +, author = "Kurt Mehlhorn" +, title = "Data Structures and Algorithms" +, publisher = "Springer-Verlag" +, address = "Heidelberg, Germany" +, year = 1984 +, note = "Volumes 1--3" +, update = "98.07 icking, 97.03 tamassia" } @book{m-ss-84 -, author = "Kurt Mehlhorn" -, title = "Data Structures and Algorithms 1: Sorting and Searching" -, series = "EATCS Monographs on Theoretical Computer Science" -, volume = 1 -, publisher = "Springer-Verlag" -, address = "Heidelberg, Germany" -, year = 1984 -, isbn = "3-540-13302-X" -, succeeds = "m-dsass-81" -, update = "98.11 bibrelex, 98.07 icking" +, author = "Kurt Mehlhorn" +, title = "Data Structures and Algorithms 1: Sorting and Searching" +, series = "EATCS Monographs on Theoretical Computer Science" +, volume = 1 +, publisher = "Springer-Verlag" +, address = "Heidelberg, Germany" +, year = 1984 +, isbn = "3-540-13302-X" +, succeeds = "m-dsass-81" +, update = "98.11 bibrelex, 98.07 icking" } @book{m-ganc-84 -, author = "Kurt Mehlhorn" -, title = "Data Structures and Algorithms 2: Graph Algorithms and {NP}-Completeness" -, series = "EATCS Monographs on Theoretical Computer Science" -, volume = 2 -, publisher = "Springer-Verlag" -, address = "Heidelberg, Germany" -, year = 1984 -, isbn = "3-540-13641-X" -, update = "98.07 icking" +, author = "Kurt Mehlhorn" +, title = "Data Structures and Algorithms 2: Graph Algorithms and {NP}-Completeness" +, series = "EATCS Monographs on Theoretical Computer Science" +, volume = 2 +, publisher = "Springer-Verlag" +, address = "Heidelberg, Germany" +, year = 1984 +, isbn = "3-540-13641-X" +, update = "98.07 icking" } @book{m-mdscg-84 -, author = "Kurt Mehlhorn" -, title = "Data Structures and Algorithms 3: Multi-dimensional Searching and Computational Geometry" -, series = "EATCS Monographs on Theoretical Computer Science" -, volume = 3 -, publisher = "Springer-Verlag" -, address = "Heidelberg, Germany" -, year = 1984 -, isbn = "3-540-13642-8" -, keywords = "data structures, algorithms, computational geometry, book" -, update = "98.07 icking, 97.11 bibrelex" +, author = "Kurt Mehlhorn" +, title = "Data Structures and Algorithms 3: Multi-dimensional Searching and Computational Geometry" +, series = "EATCS Monographs on Theoretical Computer Science" +, volume = 3 +, publisher = "Springer-Verlag" +, address = "Heidelberg, Germany" +, year = 1984 +, isbn = "3-540-13642-8" +, keywords = "data structures, algorithms, computational geometry, book" +, update = "98.07 icking, 97.11 bibrelex" } @book{m-dea-86 -, author = "K. Mehlhorn" -, title = "Datenstrukturen und effiziente Algorithmen 1" -, publisher = "B. G. Teubner" -, address = "Stuttgart, Germany" -, year = 1986 -, update = "98.11 bibrelex" +, author = "K. Mehlhorn" +, title = "Datenstrukturen und effiziente Algorithmen 1" +, publisher = "B. G. Teubner" +, address = "Stuttgart, Germany" +, year = 1986 +, update = "98.11 bibrelex" } @article{m-lbets-85 -, author = "K. Mehlhorn" -, title = "Lower bounds on the efficiency of transforming static data structures into dynamic structures" -, journal = "Math. Syst. Theory" -, volume = 15 -, year = 1985 -, pages = "1--16" +, author = "K. Mehlhorn" +, title = "Lower bounds on the efficiency of transforming static data structures into dynamic structures" +, journal = "Math. Syst. Theory" +, volume = 15 +, year = 1985 +, pages = "1--16" } @inproceedings{m-pppd-96 -, author = "K. Mehlhorn" -, title = "Position Paper for Panel Discussion" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, site = "Philadelphia, PA, USA" -, month = may -, year = 1996 -, pages = "111--112" -, update = "97.11 held" +, author = "K. Mehlhorn" +, title = "Position Paper for Panel Discussion" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, site = "Philadelphia, PA, USA" +, month = may +, year = 1996 +, pages = "111--112" +, update = "97.11 held" } @techreport{mmo-cavd-89 -, author = "K. Mehlhorn and S. Meiser and C. {\'O}'D{\'u}nlaing" -, title = "On the Construction of Abstract {Voronoi} Diagrams" -, type = "Report" -, number = "A01/89" -, institution = "Department of Computer Science, Universit{\"a}t des Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1989 -, keywords = "Voronoi diagrams, randomized algorithms" -, precedes = "mmo-cavd-90" -, update = "99.07 bibrelex" +, author = "K. Mehlhorn and S. Meiser and C. {\'O}'D{\'u}nlaing" +, title = "On the Construction of Abstract {Voronoi} Diagrams" +, type = "Report" +, number = "A01/89" +, institution = "Department of Computer Science, Universit{\"a}t des Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1989 +, keywords = "Voronoi diagrams, randomized algorithms" +, precedes = "mmo-cavd-90" +, update = "99.07 bibrelex" } @inproceedings{mmo-cavd-90 -, author = "K. Mehlhorn and S. Meiser and C. {\'O}'D{\'u}nlaing" -, title = "On the Construction of Abstract {Voronoi} Diagrams" -, booktitle = "Proc. 7th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 415 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "227--239" -, succeeds = "mmo-cavd-89" -, precedes = "mmo-cavd-91" -, update = "99.07 bibrelex" +, author = "K. Mehlhorn and S. Meiser and C. {\'O}'D{\'u}nlaing" +, title = "On the Construction of Abstract {Voronoi} Diagrams" +, booktitle = "Proc. 7th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 415 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "227--239" +, succeeds = "mmo-cavd-89" +, precedes = "mmo-cavd-91" +, update = "99.07 bibrelex" } @article{mmo-cavd-91 -, author = "K. Mehlhorn and S. Meiser and C. {\'O}'D{\'u}nlaing" -, title = "On the Construction of Abstract {Voronoi} Diagrams" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "211--224" -, keywords = "Voronoi diagrams, randomized algorithms" -, succeeds = "mmo-cavd-90" -, update = "99.07 bibrelex" +, author = "K. Mehlhorn and S. Meiser and C. {\'O}'D{\'u}nlaing" +, title = "On the Construction of Abstract {Voronoi} Diagrams" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "211--224" +, keywords = "Voronoi diagrams, randomized algorithms" +, succeeds = "mmo-cavd-90" +, update = "99.07 bibrelex" } @techreport{mmr-fsavd-92 -, author = "K. Mehlhorn and S. Meiser and R. Rasch" -, title = "Furthest site abstract {Voronoi} diagrams" -, type = "Report" -, number = "MPI-I-92-135" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 +, author = "K. Mehlhorn and S. Meiser and R. Rasch" +, title = "Furthest site abstract {Voronoi} diagrams" +, type = "Report" +, number = "MPI-I-92-135" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 } @inproceedings{mmnssuz-cbhdc-97 -, author = "K. Mehlhorn and M. M{\"u}ller and S. N{\"a}her and S. Schirra and M. Seel and C. Uhrig and J. Ziegler" -, title = "A computational basis for higher dimensional computational geometry and Applications" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "254--263" -, cites = "bdh-qach-96, blr-scanp-90, cms-frric-93, e-acg-87, e-sdrla-67, fgkss-ckbgc-96, mn-lpcgc-95, mnssssu-cgpvg-96, nu-lmum-95, mz-icha-94, s-tlip-86, y-fpaa-93, ZZZ" -, update = "98.07 bibrelex+tamassia+vismara, 97.07 efrat" +, author = "K. Mehlhorn and M. M{\"u}ller and S. N{\"a}her and S. Schirra and M. Seel and C. Uhrig and J. Ziegler" +, title = "A computational basis for higher dimensional computational geometry and Applications" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "254--263" +, cites = "bdh-qach-96, blr-scanp-90, cms-frric-93, e-acg-87, e-sdrla-67, fgkss-ckbgc-96, mn-lpcgc-95, mnssssu-cgpvg-96, nu-lmum-95, mz-icha-94, s-tlip-86, y-fpaa-93, ZZZ" +, update = "98.07 bibrelex+tamassia+vismara, 97.07 efrat" } @article{mmnssuz-cbhdc-98 -, author = "K. Mehlhorn and M. M{\"u}ller and S. N{\"a}her and S. Schirra and M. Seel and C. Uhrig and J. Ziegler" -, title = "A Computational Basis for Higher-Dimensional Computational Geometry and Applications" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, number = 4 -, year = 1998 -, pages = "289--303" -, succeeds = "mmnssuz-cbhdc-97" -, update = "98.11 devillers+vismara" +, author = "K. Mehlhorn and M. M{\"u}ller and S. N{\"a}her and S. Schirra and M. Seel and C. Uhrig and J. Ziegler" +, title = "A Computational Basis for Higher-Dimensional Computational Geometry and Applications" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, number = 4 +, year = 1998 +, pages = "289--303" +, succeeds = "mmnssuz-cbhdc-97" +, update = "98.11 devillers+vismara" } @inproceedings{mn-adslr-92 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "Algorithm design and software libraries: Recent developments in the {LEDA} project" -, booktitle = "Algorithms, Software, Architectures, Information Processing 92" -, volume = 1 -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 1992 -, pages = "493--505" -, update = "00.11 smid, 00.07 icking, 97.11 bibrelex" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "Algorithm design and software libraries: Recent developments in the {LEDA} project" +, booktitle = "Algorithms, Software, Architectures, Information Processing 92" +, volume = 1 +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 1992 +, pages = "493--505" +, update = "00.11 smid, 00.07 icking, 97.11 bibrelex" } @article{mn-bodot-90 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "Bounded ordered dictionaries in {$O(\log\log n)$} time and {$O(n)$} space" -, journal = "Inform. Process. Lett." -, volume = 35 -, year = 1990 -, pages = "183--189" -, update = "00.11 smid, 00.07 icking" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "Bounded ordered dictionaries in {$O(\log\log n)$} time and {$O(n)$} space" +, journal = "Inform. Process. Lett." +, volume = 35 +, year = 1990 +, pages = "183--189" +, update = "00.11 smid, 00.07 icking" } @manual{mn-cgs-96 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "Checking Geometric Structures" -, month = dec -, year = 1996 -, note = "Program Documentation" -, update = "00.11 smid, 00.07 icking, 98.11 tamassia, 97.03 tamassia" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "Checking Geometric Structures" +, month = dec +, year = 1996 +, note = "Program Documentation" +, update = "00.11 smid, 00.07 icking, 98.11 tamassia, 97.03 tamassia" } @techreport{mn-dfc-86 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "Dynamic fractional cascading" -, type = "Technical {Report}" -, number = "??" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1986 -, precedes = "mn-dfc-90" -, update = "00.11 smid, 00.07 icking" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "Dynamic fractional cascading" +, type = "Technical {Report}" +, number = "??" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1986 +, precedes = "mn-dfc-90" +, update = "00.11 smid, 00.07 icking" } @article{mn-dfc-90 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "Dynamic fractional cascading" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "215--241" -, succeeds = "mn-dfc-86" -, update = "00.11 smid, 00.07 icking" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "Dynamic fractional cascading" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "215--241" +, succeeds = "mn-dfc-86" +, update = "00.11 smid, 00.07 icking" } @techreport{mn-islas-94 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "Implementation of a sweep line algorithm for the straight line segment intersection problem" -, type = "Report" -, number = "MPI-I-94-160" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "00.11 smid, 00.07 icking, 95.01 smid" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "Implementation of a sweep line algorithm for the straight line segment intersection problem" +, type = "Report" +, number = "MPI-I-94-160" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "00.11 smid, 00.07 icking, 95.01 smid" } @techreport{mn-lledt-89 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "{LEDA}, a library of efficient data types and algorithms" -, type = "Report" -, number = "A 04/89" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1989 -, comments = "revisions published in MFCS '89 and ICALP '90" -, precedes = "mn-lledt-89a" -, update = "00.11 smid, 00.07 icking, 98.11 bibrelex, 93.05 jones" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "{LEDA}, a library of efficient data types and algorithms" +, type = "Report" +, number = "A 04/89" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1989 +, comments = "revisions published in MFCS '89 and ICALP '90" +, precedes = "mn-lledt-89a" +, update = "00.11 smid, 00.07 icking, 98.11 bibrelex, 93.05 jones" } @incollection{mn-lledt-89a -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "{LEDA}, a library of efficient data types and algorithms" -, booktitle = "Proc. 14th Internat. Sympos. Math. Found. Comput. Sci." -, nickname = "MFCS '89" -, series = "Lecture Notes Comput. Sci." -, volume = 379 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "88--106" -, succeeds = "mn-lledt-89" -, update = "00.11 smid, 00.07 icking, 00.03 smid, 98.11 bibrelex" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "{LEDA}, a library of efficient data types and algorithms" +, booktitle = "Proc. 14th Internat. Sympos. Math. Found. Comput. Sci." +, nickname = "MFCS '89" +, series = "Lecture Notes Comput. Sci." +, volume = 379 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "88--106" +, succeeds = "mn-lledt-89" +, update = "00.11 smid, 00.07 icking, 00.03 smid, 98.11 bibrelex" } @article{mn-lpcgc-95 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "{LEDA}: a platform for combinatorial and geometric computing" -, journal = "Commun. ACM" -, volume = 38 -, number = 1 -, year = 1995 -, pages = "96--102" -, url = "http://www.mpi-sb.mpg.de/guide/staff/uhrig/leda.html" -, update = "00.11 smid, 00.07 icking, 98.07 tamassia, 96.09 devillers, 96.01 tamassia" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "{LEDA}: a platform for combinatorial and geometric computing" +, journal = "Commun. ACM" +, volume = 38 +, number = 1 +, year = 1995 +, pages = "96--102" +, url = "http://www.mpi-sb.mpg.de/guide/staff/uhrig/leda.html" +, update = "00.11 smid, 00.07 icking, 98.07 tamassia, 96.09 devillers, 96.01 tamassia" } @book{mn-lpcgc-00 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "{LEDA}: A Platform for Combinatorial and Geometric Computing" -, publisher = "Cambridge University Press" -, address = "Cambridge, UK" -, year = 2000 -, update = "00.11 smid, 00.07 icking, 00.03 orourke+smid+vismara, 98.07 orourke" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "{LEDA}: A Platform for Combinatorial and Geometric Computing" +, publisher = "Cambridge University Press" +, address = "Cambridge, UK" +, year = 2000 +, update = "00.11 smid, 00.07 icking, 00.03 orourke+smid+vismara, 98.07 orourke" } @inproceedings{mn-iga-94 -, author = "Kurt Mehlhorn and Stefan N{\"a}her" -, title = "The Implementation of Geometric Algorithms" -, booktitle = "Proc. 13th World Computer Congress IFIP94" -, volume = 1 -, year = 1994 -, pages = "223--231" -, update = "00.11 smid, 00.07 icking, 97.03 devillers" +, author = "Kurt Mehlhorn and Stefan N{\"a}her" +, title = "The Implementation of Geometric Algorithms" +, booktitle = "Proc. 13th World Computer Congress IFIP94" +, volume = 1 +, year = 1994 +, pages = "223--231" +, update = "00.11 smid, 00.07 icking, 97.03 devillers" } @techreport{mna-lbcus-86 -, author = "Kurt Mehlhorn and Stefan N{\"a}her and Helmut Alt" -, title = "A lower bound for the complexity of the union-split-find problem" -, type = "Technical {Report}" -, number = "??" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1986 -, precedes = "mna-lbcus-88" -, update = "00.11 smid, 00.07 icking" +, author = "Kurt Mehlhorn and Stefan N{\"a}her and Helmut Alt" +, title = "A lower bound for the complexity of the union-split-find problem" +, type = "Technical {Report}" +, number = "??" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1986 +, precedes = "mna-lbcus-88" +, update = "00.11 smid, 00.07 icking" } @article{mna-lbcus-88 -, author = "Kurt Mehlhorn and Stefan N{\"a}her and Helmut Alt" -, title = "A lower bound on the complexity of the union-split-find problem" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "1093--1102" -, succeeds = "mna-lbcus-86" -, update = "00.11 smid, 00.07 icking" +, author = "Kurt Mehlhorn and Stefan N{\"a}her and Helmut Alt" +, title = "A lower bound on the complexity of the union-split-find problem" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "1093--1102" +, succeeds = "mna-lbcus-86" +, update = "00.11 smid, 00.07 icking" } @inproceedings{mnssssu-cgpvg-96 -, author = "Kurt Mehlhorn and Stefan N{\"a}her and Thomas Schilz and Stefan Schirra and Michael Seel and Raimund Seidel and Christian Uhrig" -, title = "Checking Geometric Programs or Verification of Geometric Structures" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "159--165" -, cites = "as-rst-89, abs-hgach-97, bk-ptctw-89, blr-scanp-90, bms-dgc-94, cs-arscg-89, cms-frric-93, egs-oplms-86, k-osps-83, m-dsa-84, mn-adslr-92, mn-lpcgc-95, mz-icha-94, nu-lmum-95, r-dcptr-94, st-pplup-86, s-chdch-86, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Kurt Mehlhorn and Stefan N{\"a}her and Thomas Schilz and Stefan Schirra and Michael Seel and Raimund Seidel and Christian Uhrig" +, title = "Checking Geometric Programs or Verification of Geometric Structures" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "159--165" +, cites = "as-rst-89, abs-hgach-97, bk-ptctw-89, blr-scanp-90, bms-dgc-94, cs-arscg-89, cms-frric-93, egs-oplms-86, k-osps-83, m-dsa-84, mn-adslr-92, mn-lpcgc-95, mz-icha-94, nu-lmum-95, r-dcptr-94, st-pplup-86, s-chdch-86, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @unpublished{mnssssu-cgpvg-97 -, author = "Kurt Mehlhorn and Stefan N{\"a}her and Thomas Schilz and Stefan Schirra and Michael Seel and Raimund Seidel and Christian Uhrig" -, title = "Checking Geometric Programs or Verification of Geometric Structures" -, year = 1997 -, note = "Manuscript" -, update = "97.11 bibrelex, 97.03 tamassia" +, author = "Kurt Mehlhorn and Stefan N{\"a}her and Thomas Schilz and Stefan Schirra and Michael Seel and Raimund Seidel and Christian Uhrig" +, title = "Checking Geometric Programs or Verification of Geometric Structures" +, year = 1997 +, note = "Manuscript" +, update = "97.11 bibrelex, 97.03 tamassia" } @techreport{mnssu-acbhd-96 -, author = "K. Mehlhorn and S. N{\"a}her and S. Schirra and M. Seel and C. Uhrig" -, title = "A computational basis for higher-dimensional computational geometry" -, type = "Report" -, number = "MPI-I-96-1-016" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1996 -, update = "96.09 smid" +, author = "K. Mehlhorn and S. N{\"a}her and S. Schirra and M. Seel and C. Uhrig" +, title = "A computational basis for higher-dimensional computational geometry" +, type = "Report" +, number = "MPI-I-96-1-016" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1996 +, update = "96.09 smid" } @article{mnssssu-cgpvg-99 -, author = "K. Mehlhorn and S. N{\"a}her and M. Seel and R. Seidel and T. Schilz and S. Schirra and C. Uhrig" -, title = "Checking Geometric Programs or Verification of Geometric Structures" -, journal = "Comput. Geom. Theory Appl." -, volume = 12 -, number = "1--2" -, year = 1999 -, pages = "85--103" -, succeeds = "mnssssu-cgpvg-96" -, update = "99.07 smid+vismara" +, author = "K. Mehlhorn and S. N{\"a}her and M. Seel and R. Seidel and T. Schilz and S. Schirra and C. Uhrig" +, title = "Checking Geometric Programs or Verification of Geometric Structures" +, journal = "Comput. Geom. Theory Appl." +, volume = 12 +, number = "1--2" +, year = 1999 +, pages = "85--103" +, succeeds = "mnssssu-cgpvg-96" +, update = "99.07 smid+vismara" } @article{mnu-hleir-90 -, author = "K. Mehlhorn and S. N{\"a}her and C. Uhrig" -, title = "Hidden line elimination for isooriented rectangles" -, journal = "Inform. Process. Lett." -, volume = 35 -, year = 1990 -, pages = "137--143" +, author = "K. Mehlhorn and S. N{\"a}her and C. Uhrig" +, title = "Hidden line elimination for isooriented rectangles" +, journal = "Inform. Process. Lett." +, volume = 35 +, year = 1990 +, pages = "137--143" } @inproceedings{mnu-lpcgc-97 -, author = "Kurt Mehlhorn and Stefan N{\"a}her and Christian Uhrig" -, title = "The {LEDA} Platform for Combinatorial and Geometric Computing" -, editor = "P. Degano and R. Gorrieri and A. Marchetti-Spaccamela" -, booktitle = "Automata, Languages and Programming (Proc. ICALP~'97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1256 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "7--16" -, update = "98.07 tamassia+vismara" +, author = "Kurt Mehlhorn and Stefan N{\"a}her and Christian Uhrig" +, title = "The {LEDA} Platform for Combinatorial and Geometric Computing" +, editor = "P. Degano and R. Gorrieri and A. Marchetti-Spaccamela" +, booktitle = "Automata, Languages and Programming (Proc. ICALP~'97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1256 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "7--16" +, update = "98.07 tamassia+vismara" } @article{mo-oddsp-81 -, author = "K. Mehlhorn and M. H. Overmars" -, title = "Optimal dynamization of decomposable searching problems" -, journal = "Inform. Process. Lett." -, volume = 12 -, year = 1981 -, pages = "93--98" +, author = "K. Mehlhorn and M. H. Overmars" +, title = "Optimal dynamization of decomposable searching problems" +, journal = "Inform. Process. Lett." +, volume = 12 +, year = 1981 +, pages = "93--98" } @article{mp-rtr-86 -, author = "K. Mehlhorn and F. P. Preparata" -, title = "Routing through a rectangle" -, journal = "J. ACM" -, volume = 33 -, year = 1986 -, pages = "60--85" +, author = "K. Mehlhorn and F. P. Preparata" +, title = "Routing through a rectangle" +, journal = "J. ACM" +, volume = 33 +, year = 1986 +, pages = "60--85" } @article{mps-crkkm-86 -, author = "K. Mehlhorn and F. P. Preparata and M. Sarrafzadeh" -, title = "Channel routing in knock-knee mode: {Simplified} algorithms and proofs" -, journal = "Algorithmica" -, volume = 1 -, year = 1986 -, pages = "213--221" -, update = "98.03 bibrelex" +, author = "K. Mehlhorn and F. P. Preparata and M. Sarrafzadeh" +, title = "Channel routing in knock-knee mode: {Simplified} algorithms and proofs" +, journal = "Algorithmica" +, volume = 1 +, year = 1986 +, pages = "213--221" +, update = "98.03 bibrelex" } @inproceedings{ms-iftml-01 -, author = "Kurt Mehlhorn and Michael Seel" -, title = "Infimaximal Frames: A Technique for Making Lines Look Like Segments" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "78--81" -, update = "01.04 icking" +, author = "Kurt Mehlhorn and Michael Seel" +, title = "Infimaximal Frames: A Technique for Making Lines Look Like Segments" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "78--81" +, update = "01.04 icking" } @techreport{msw-teeri-93t -, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" -, title = "Tail estimates for the efficiency of randomized incremental algorithms for line segment intersection" -, type = "Report" -, number = "MPI-I-93-103" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, succeeds = "msw-tescr-92" -, precedes = "msw-teeri-93a" -, update = "98.03 mitchell, 94.01 smid, 93.05 smid" +, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" +, title = "Tail estimates for the efficiency of randomized incremental algorithms for line segment intersection" +, type = "Report" +, number = "MPI-I-93-103" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, succeeds = "msw-tescr-92" +, precedes = "msw-teeri-93a" +, update = "98.03 mitchell, 94.01 smid, 93.05 smid" } @article{msw-teeri-93a -, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" -, title = "Tail estimates for the efficiency of randomized incremental algorithms for line segment intersection" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "235--246" -, succeeds = "msw-teeri-93t" -, update = "98.03 mitchell, 94.01 smid" +, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" +, title = "Tail estimates for the efficiency of randomized incremental algorithms for line segment intersection" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "235--246" +, succeeds = "msw-teeri-93t" +, update = "98.03 mitchell, 94.01 smid" } @techreport{msw-tescr-91 -, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" -, title = "Tail estimates for the space complexity of randomized incremental algorithms" -, type = "Report" -, number = "MPI-I-91-113" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1991 -, precedes = "msw-tescr-92" -, update = "98.03 mitchell" +, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" +, title = "Tail estimates for the space complexity of randomized incremental algorithms" +, type = "Report" +, number = "MPI-I-91-113" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1991 +, precedes = "msw-tescr-92" +, update = "98.03 mitchell" } @inproceedings{msw-tescr-92 -, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" -, title = "Tail estimates for the space complexity of randomized incremental algorithms" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "89--93" -, succeeds = "msw-tescr-91" -, precedes = "msw-tescr-93" -, update = "98.03 mitchell, 97.11 bibrelex, 93.05 smid" +, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" +, title = "Tail estimates for the space complexity of randomized incremental algorithms" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "89--93" +, succeeds = "msw-tescr-91" +, precedes = "msw-tescr-93" +, update = "98.03 mitchell, 97.11 bibrelex, 93.05 smid" } @article{msw-tescr-93 -, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" -, title = "Tail Estimates for the Space Complexity of Randomized Incremental Algorithms" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1993 -, pages = "185--246" -, update = "98.03 mitchell, 97.03 gaertner+salinger" +, author = "K. Mehlhorn and Micha Sharir and Emo Welzl" +, title = "Tail Estimates for the Space Complexity of Randomized Incremental Algorithms" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1993 +, pages = "185--246" +, update = "98.03 mitchell, 97.03 gaertner+salinger" } @inproceedings{msy-crcp-97 -, author = "K. Mehlhorn and T. Shermer and C. Yap" -, title = "A Complete Roundness Classification Procedure" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "129--138" -, cites = "cy-sp-87, dgr-eaoac-97, efnn-rauvd-89, fh-rcgtt-91, f-gta-92, gr-fspc-97, ll-orpr-91, pbc-muccm-93, rlw-rdtrp-91, rz-epccm-92, sj-wrspp-94, sv-dtm-93, s-oardc-93, y-ecgtm-95, yc-imgt-96, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "K. Mehlhorn and T. Shermer and C. Yap" +, title = "A Complete Roundness Classification Procedure" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "129--138" +, cites = "cy-sp-87, dgr-eaoac-97, efnn-rauvd-89, fh-rcgtt-91, f-gta-92, gr-fspc-97, ll-orpr-91, pbc-muccm-93, rlw-rdtrp-91, rz-epccm-92, sj-wrspp-94, sv-dtm-93, s-oardc-93, y-ecgtm-95, yc-imgt-96, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{ms-itpow-85 -, author = "K. Mehlhorn and K. Simon" -, title = "Intersecting two polyhedra one of which is convex" -, editor = "L. Budach" -, booktitle = "Proc. Found. Comput. Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 199 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "534--542" +, author = "K. Mehlhorn and K. Simon" +, title = "Intersecting two polyhedra one of which is convex" +, editor = "L. Budach" +, booktitle = "Proc. Found. Comput. Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 199 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "534--542" } @incollection{mt-ds-90 -, author = "K. Mehlhorn and A. Tsakalidis" -, title = "Data Structures" -, editor = "J. van Leeuwen" -, booktitle = "Algorithms and Complexity" -, series = "Handbook of Theoretical Computer Science" -, volume = "A" -, publisher = "Elsevier" -, address = "Amsterdam" -, year = 1990 -, pages = "303--334" -, keywords = "dictionary problem, persistence, union-split-find problem, priority queues, nearest common ancestors, selection, merging, dynamization techniques, survey paper" -, update = "97.03 pocchiola+tamassia" +, author = "K. Mehlhorn and A. Tsakalidis" +, title = "Data Structures" +, editor = "J. van Leeuwen" +, booktitle = "Algorithms and Complexity" +, series = "Handbook of Theoretical Computer Science" +, volume = "A" +, publisher = "Elsevier" +, address = "Amsterdam" +, year = 1990 +, pages = "303--334" +, keywords = "dictionary problem, persistence, union-split-find problem, priority queues, nearest common ancestors, selection, merging, dynamization techniques, survey paper" +, update = "97.03 pocchiola+tamassia" } @article{mv-rdspp-84 -, author = "K. Mehlhorn and U. Vishkin" -, title = "Randomized and deterministic simulations of {PRAM}s by parallel machines with restricted granularity of parallel memories" -, journal = "Acta Inform." -, volume = 9 -, number = 1 -, year = 1984 -, pages = "29--59" -, update = "96.09 orourke" +, author = "K. Mehlhorn and U. Vishkin" +, title = "Randomized and deterministic simulations of {PRAM}s by parallel machines with restricted granularity of parallel memories" +, journal = "Acta Inform." +, volume = 9 +, number = 1 +, year = 1984 +, pages = "29--59" +, update = "96.09 orourke" } @article{my-cwgth-91 -, author = "K. Mehlhorn and C. Yap" -, title = "Constructive {Whitney}-{Graustein} theorem, or how to untangle closed planar curves" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "603--621" +, author = "K. Mehlhorn and C. Yap" +, title = "Constructive {Whitney}-{Graustein} theorem, or how to untangle closed planar curves" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "603--621" } @inproceedings{my-chthu-88 -, author = "K. Mehlhorn and C. K. Yap" -, title = "Constructive {Hopf}'s theorem: or how to untangle closed planar curves" -, booktitle = "Proc. 15 Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 317 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "410--423" -, update = "97.11 bibrelex" +, author = "K. Mehlhorn and C. K. Yap" +, title = "Constructive {Hopf}'s theorem: or how to untangle closed planar curves" +, booktitle = "Proc. 15 Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 317 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "410--423" +, update = "97.11 bibrelex" } @inproceedings{mg-fbrss-93 -, author = "H. Mehrotra and J. E. Gary" -, title = "Feature-based retrieval of similar shapes" -, booktitle = "Proc. 9th IEEE Intl. Conf. on Data Engineering" -, year = 1996 -, pages = "108--115" -, update = "97.07 agarwal" +, author = "H. Mehrotra and J. E. Gary" +, title = "Feature-based retrieval of similar shapes" +, booktitle = "Proc. 9th IEEE Intl. Conf. on Data Engineering" +, year = 1996 +, pages = "108--115" +, update = "97.07 agarwal" } @inproceedings{mmn-cia2d-90 -, author = "S. Mehta and M. Mukherjee and G. Nagy" -, title = "Constrained integer approximation to $2$-d line intersections" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "302--305" -, cites = "ZZZ" -, update = "98.07 bibrelex" +, author = "S. Mehta and M. Mukherjee and G. Nagy" +, title = "Constrained integer approximation to $2$-d line intersections" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "302--305" +, cites = "ZZZ" +, update = "98.07 bibrelex" } @article{mi-rnsue-94 -, author = "Aohan Mei and Yoshihide Igarashi" -, title = "A Robot Navigation Strategy in Unknown Environment and its Efficiency" -, journal = "IEICE Trans. Fundamentals Electronics, Comm. and Comput. Sci." -, volume = "E77-A" -, number = 7 -, month = jul -, year = 1994 -, pages = "1157--1162" -, keywords = "competitive analysis, shortest paths, on-line navigation" -, update = "98.03 mitchell" +, author = "Aohan Mei and Yoshihide Igarashi" +, title = "A Robot Navigation Strategy in Unknown Environment and its Efficiency" +, journal = "IEICE Trans. Fundamentals Electronics, Comm. and Comput. Sci." +, volume = "E77-A" +, number = 7 +, month = jul +, year = 1994 +, pages = "1157--1162" +, keywords = "competitive analysis, shortest paths, on-line navigation" +, update = "98.03 mitchell" } @article{mi-esrnu-94 -, author = "Aohan Mei and Yoshihide Igarashi" -, title = "An Efficient Strategy for Robot Navigation in Unknown Environment" -, journal = "Inform. Process. Lett." -, volume = 52 -, year = 1994 -, pages = "51--56" -, keywords = "competitive analysis, shortest paths, on-line navigation" -, precedes = "mi-esrnu-94a" -, update = "98.07 icking, 98.03 mitchell" +, author = "Aohan Mei and Yoshihide Igarashi" +, title = "An Efficient Strategy for Robot Navigation in Unknown Environment" +, journal = "Inform. Process. Lett." +, volume = 52 +, year = 1994 +, pages = "51--56" +, keywords = "competitive analysis, shortest paths, on-line navigation" +, precedes = "mi-esrnu-94a" +, update = "98.07 icking, 98.03 mitchell" } @inproceedings{mi-esrnu-94a -, author = "Aohan Mei and Yoshihide Igarashi" -, title = "Efficient Strategies for Robot Navigation in Unknown Environment" -, booktitle = "Proc. 21st Internat. Colloq. Automata Lang. Prog." -, nickname = "ICALP '94" -, series = "Lecture Notes Comput. Sci." -, volume = 820 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "630--641" -, succeeds = "mi-esrnu-94" -, update = "98.07 icking" +, author = "Aohan Mei and Yoshihide Igarashi" +, title = "Efficient Strategies for Robot Navigation in Unknown Environment" +, booktitle = "Proc. 21st Internat. Colloq. Automata Lang. Prog." +, nickname = "ICALP '94" +, series = "Lecture Notes Comput. Sci." +, volume = 820 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "630--641" +, succeeds = "mi-esrnu-94" +, update = "98.07 icking" } @inproceedings{m-ardts-85 -, author = "A. Meier" -, title = "Applying relational database techniques to solid modeling" -, booktitle = "Proc. GI Conf. Database Syst. for Auto. Eng. and Sci. Applic." -, site = "Karlsruhe, West Germany" -, year = 1985 -, pages = "??" -, update = "94.05 devillers" +, author = "A. Meier" +, title = "Applying relational database techniques to solid modeling" +, booktitle = "Proc. GI Conf. Database Syst. for Auto. Eng. and Sci. Applic." +, site = "Karlsruhe, West Germany" +, year = 1985 +, pages = "??" +, update = "94.05 devillers" } @inproceedings{mr-cmwts-91 -, author = "H. Meijer and D. Rappaport" -, title = "Computing the minimum weight triangulation of a set of linearly ordered points" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "175--178" -, cites = "a-pmwt-90, gj-cigtn-79, g-nrpt-79, k-ndot-80, k-mtpd-80, l-olbng-87, l-gdtan-86, ZZZ" -, update = "98.07 bibrelex" +, author = "H. Meijer and D. Rappaport" +, title = "Computing the minimum weight triangulation of a set of linearly ordered points" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "175--178" +, cites = "a-pmwt-90, gj-cigtn-79, g-nrpt-79, k-ndot-80, k-mtpd-80, l-olbng-87, l-gdtan-86, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{mr-mpcpl-90 -, author = "H. Meijer and D. Rappaport" -, title = "Minimum polygon covers of parallel line segments" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "324--327" -, cites = "cr-wim-41, gs-spscp-89, lmr-mpcil-90, t-p4-87, ZZZ" -, update = "98.07 bibrelex" +, author = "H. Meijer and D. Rappaport" +, title = "Minimum polygon covers of parallel line segments" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "324--327" +, cites = "cr-wim-41, gs-spscp-89, lmr-mpcil-90, t-p4-87, ZZZ" +, update = "98.07 bibrelex" } @article{mr-ulbnm-90 -, author = "H. Meijer and D. Rappaport" -, title = "Upper and lower bounds for the number of monotone crossing free {Hamiltonian} cycles from a set of points" -, journal = "Ars Combin." -, volume = 30 -, year = 1990 -, pages = "203--208" -, update = "98.07 bibrelex" +, author = "H. Meijer and D. Rappaport" +, title = "Upper and lower bounds for the number of monotone crossing free {Hamiltonian} cycles from a set of points" +, journal = "Ars Combin." +, volume = 30 +, year = 1990 +, pages = "203--208" +, update = "98.07 bibrelex" } @inproceedings{ms-rpxr-93 -, author = "H. Meijer and S. Skiena" -, title = "Reconstructing polygons from x-rays" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "381--386" -, precedes = "ms-rpxr-96" -, cites = "by-psncp-89, cy-sp-87, es-pcpxr-88, f-hxpsm-83, f-xpps-83, g-sxpcb-83, g-xrp-92, gg-sdvpx-92, gm-hxp-80, g-beess-62, h-p2-63, h-irpfc-80, h-sict-83, l-rpp-88, lb-rpscu-91, n-rpoca-88, r-bfigm-17, rsfl-sudp-91, sk-ctnmx-78, s-gp-88, s-ckpps-90, s-irgp-92, ssw-pmapr-77, v-tpshp-86, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 93.09 milone+mitchell" +, author = "H. Meijer and S. Skiena" +, title = "Reconstructing polygons from x-rays" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "381--386" +, precedes = "ms-rpxr-96" +, cites = "by-psncp-89, cy-sp-87, es-pcpxr-88, f-hxpsm-83, f-xpps-83, g-sxpcb-83, g-xrp-92, gg-sdvpx-92, gm-hxp-80, g-beess-62, h-p2-63, h-irpfc-80, h-sict-83, l-rpp-88, lb-rpscu-91, n-rpoca-88, r-bfigm-17, rsfl-sudp-91, sk-ctnmx-78, s-gp-88, s-ckpps-90, s-irgp-92, ssw-pmapr-77, v-tpshp-86, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 93.09 milone+mitchell" } @article{ms-rpxr-96 -, author = "H. Meijer and S. Skiena" -, title = "Reconstructing polygons from x-rays" -, journal = "Geom. Dedicata" -, volume = 61 -, year = 1996 -, pages = "191--204" -, succeeds = "ms-rpxr-93" -, update = "98.03 mitchell" +, author = "H. Meijer and S. Skiena" +, title = "Reconstructing polygons from x-rays" +, journal = "Geom. Dedicata" +, volume = 61 +, year = 1996 +, pages = "191--204" +, succeeds = "ms-rpxr-93" +, update = "98.03 mitchell" } @techreport{m-iaeln-53 -, author = "J. L. Meijering" -, title = "Interface area, edge length, and number of vertices in crystal aggregates with random nucleation" -, type = "Research {Report}" -, number = 8 -, institution = "Philips" -, year = 1953 -, pages = "270--290" +, author = "J. L. Meijering" +, title = "Interface area, edge length, and number of vertices in crystal aggregates with random nucleation" +, type = "Research {Report}" +, number = 8 +, institution = "Philips" +, year = 1953 +, pages = "270--290" } @book{mbmv-iugis-94 -, author = "A. M. J. Meijerink and H. A. M. de Brouwer and C. M. Mannaerts and C. R. Valenzuela" -, title = "Introduction to the Use of Geographic Information Systems for Practical Hydrology" -, series = "ITC Publications" -, number = 23 -, publisher = "ITC" -, address = "Enschede" -, year = 1994 -, update = "96.09 kreveld" +, author = "A. M. J. Meijerink and H. A. M. de Brouwer and C. M. Mannaerts and C. R. Valenzuela" +, title = "Introduction to the Use of Geographic Information Systems for Practical Hydrology" +, series = "ITC Publications" +, number = 23 +, publisher = "ITC" +, address = "Enschede" +, year = 1994 +, update = "96.09 kreveld" } @article{m-gpinn-87 -, author = "A. Meir" -, title = "A geometric problem involving the nearest neighbor algorithms" -, journal = "Oper. Res. Lett." -, volume = 6 -, year = 1987 -, pages = "289--291" -, update = "97.11 bibrelex" +, author = "A. Meir" +, title = "A geometric problem involving the nearest neighbor algorithms" +, journal = "Oper. Res. Lett." +, volume = 6 +, year = 1987 +, pages = "289--291" +, update = "97.11 bibrelex" } @article{mm-anrt-78 -, author = "A. Meir and J. W. Moon" -, title = "On the altitude of nodes in random trees" -, journal = "Cand. J. Math." -, volume = 30 -, year = 1978 -, pages = "997--1015" -, update = "97.11 bibrelex" +, author = "A. Meir and J. W. Moon" +, title = "On the altitude of nodes in random trees" +, journal = "Cand. J. Math." +, volume = 30 +, year = 1978 +, pages = "997--1015" +, update = "97.11 bibrelex" } @inproceedings{m-cavd-89 -, author = "S. Meiser" -, title = "On the Construction of Abstract {Voronoi} Diagrams" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "S. Meiser" +, title = "On the Construction of Abstract {Voronoi} Diagrams" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{m-pla-88 -, author = "S. Meiser" -, title = "Point location in arrangements" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "71--84" -, succeeds = "m-seavh-88" -, precedes = "m-plah-93" -, update = "00.03 bibrelex, 99.11 bibrelex, 94.01 smid" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "S. Meiser" +, title = "Point location in arrangements" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "71--84" +, succeeds = "m-seavh-88" +, precedes = "m-plah-93" +, update = "00.03 bibrelex, 99.11 bibrelex, 94.01 smid" +, annote = "4th Intern. Workshop Comput. Geom." } @article{m-plah-93 -, author = "S. Meiser" -, title = "Point location in arrangements of hyperplanes" -, journal = "Inform. Comput." -, volume = 106 -, year = 1993 -, pages = "286--303" -, succeeds = "m-pla-88" -, update = "94.01 smid" +, author = "S. Meiser" +, title = "Point location in arrangements of hyperplanes" +, journal = "Inform. Comput." +, volume = 106 +, year = 1993 +, pages = "286--303" +, succeeds = "m-pla-88" +, update = "94.01 smid" } @techreport{m-seavh-88 -, author = "S. Meiser" -, title = "Suche in einem {Arrangement} von {Hyperebenen}" -, type = "Report" -, number = "??" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1988 -, precedes = "m-pla-88" +, author = "S. Meiser" +, title = "Suche in einem {Arrangement} von {Hyperebenen}" +, type = "Report" +, number = "??" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1988 +, precedes = "m-pla-88" } @phdthesis{m-zkav-93 -, author = "S. Meiser" -, title = "Zur {Konstruktion} abstrakter {Voronoidiagramme}" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, keywords = "doctoral thesis" -, update = "93.05 smid" +, author = "S. Meiser" +, title = "Zur {Konstruktion} abstrakter {Voronoidiagramme}" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, keywords = "doctoral thesis" +, update = "93.05 smid" } @article{m-phe-75 -, author = "G. Meisters" -, title = "Polygons have ears" -, journal = "Amer. Math. Monthly" -, volume = 82 -, year = 1975 -, pages = "648--651" -, keywords = "two-dimensional, triangles, polygon triangulation" +, author = "G. Meisters" +, title = "Polygons have ears" +, journal = "Amer. Math. Monthly" +, volume = 82 +, year = 1975 +, pages = "648--651" +, keywords = "two-dimensional, triangles, polygon triangulation" } @inproceedings{ms-cinap-92 -, author = "E. A. Melissaratos and D. L. Souvaine" -, title = "Coping with inconsistencies: a new approach to produce quality triangulations of polygonal domains with holes" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "202--211" -, succeeds = "ms-cinap-91" -, cites = "bgr-ntp-88, b-pug-90, beg-pgmg-90, be-psntp-91, be-mgot-92i, ceghss-sdash-90, c-cdt-87, c-gqtm-89, etw-otama-90, ff-mrnti-, f-cfemg-72, j-fetcr-84, lg-gcvfm-85, ll-gdtpg-86, ms-cinap-91, s-qrhds-84, s-dasds-90, sf-afem-73, s-aagcf-88, t-brtgi-80, ys-mqafe-83, ZZZ" -, update = "97.11 bibrelex" +, author = "E. A. Melissaratos and D. L. Souvaine" +, title = "Coping with inconsistencies: a new approach to produce quality triangulations of polygonal domains with holes" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "202--211" +, succeeds = "ms-cinap-91" +, cites = "bgr-ntp-88, b-pug-90, beg-pgmg-90, be-psntp-91, be-mgot-92i, ceghss-sdash-90, c-cdt-87, c-gqtm-89, etw-otama-90, ff-mrnti-, f-cfemg-72, j-fetcr-84, lg-gcvfm-85, ll-gdtpg-86, ms-cinap-91, s-qrhds-84, s-dasds-90, sf-afem-73, s-aagcf-88, t-brtgi-80, ys-mqafe-83, ZZZ" +, update = "97.11 bibrelex" } @techreport{ms-cinap-91 -, author = "E. A. Melissaratos and D. L. Souvaine" -, title = "Coping with inconsistencies: a new approach to produce quality triangulations of polygonal domains with holes for the finite element method" -, type = "Report" -, number = "LCSR-TR-163" -, institution = "Lab. Comput. Sci. Res., Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1991 -, keywords = "mesh generation, aspect ratio, quality triangulation, finite element method" -, precedes = "ms-cinap-92" +, author = "E. A. Melissaratos and D. L. Souvaine" +, title = "Coping with inconsistencies: a new approach to produce quality triangulations of polygonal domains with holes for the finite element method" +, type = "Report" +, number = "LCSR-TR-163" +, institution = "Lab. Comput. Sci. Res., Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1991 +, keywords = "mesh generation, aspect ratio, quality triangulation, finite element method" +, precedes = "ms-cinap-92" } @inproceedings{ms-sgopu-90 -, author = "E. A. Melissaratos and D. L. Souvaine" -, title = "On solving geometric optimization problems using shortest paths" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "350--359" -, precedes = "ms-sphsg-90" -, cites = "a-lncg-88, acy-macp-85, akmsw-gamsa-87, ap-nsmma-88, bddg-fep-85, cy-psppp-86, c-pop-86, cg-vippg-85, ck-plscc-89, d-paope-87, dko-fliet-87, ds-gmmmc-79, ds-cgcw-90, dsv-diss-88, f-fapct-85, gjpt-tsp-78, ghlst-ltavs-87, gs-ccrs-87, gs-pmgsc-85, h-ovgat-89, kl-fstcg-85, fm-tspep-84, l-tpfc-88, ms-sabcp-89, oamb-oafme-86, ol-mcp-81, s-cgcw-86, tv-otats-88, ZZZ" -, update = "01.04 icking, 97.11 bibrelex" +, author = "E. A. Melissaratos and D. L. Souvaine" +, title = "On solving geometric optimization problems using shortest paths" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "350--359" +, precedes = "ms-sphsg-90" +, cites = "a-lncg-88, acy-macp-85, akmsw-gamsa-87, ap-nsmma-88, bddg-fep-85, cy-psppp-86, c-pop-86, cg-vippg-85, ck-plscc-89, d-paope-87, dko-fliet-87, ds-gmmmc-79, ds-cgcw-90, dsv-diss-88, f-fapct-85, gjpt-tsp-78, ghlst-ltavs-87, gs-ccrs-87, gs-pmgsc-85, h-ovgat-89, kl-fstcg-85, fm-tspep-84, l-tpfc-88, ms-sabcp-89, oamb-oafme-86, ol-mcp-81, s-cgcw-86, tv-otats-88, ZZZ" +, update = "01.04 icking, 97.11 bibrelex" } @techreport{ms-sphsg-90 -, author = "E. A. Melissaratos and D. L. Souvaine" -, title = "Shortest paths help solve geometric optimization problems on planar regions" -, type = "Report" -, number = "LCSR-TR-150" -, institution = "Lab. Comput. Sci. Res., Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1990 -, keywords = "design of algorithms, visibility, shortest paths, optimization, inscribed, circumscribed, separator, curved polygon, splinegon" -, succeeds = "ms-spvop-90, ms-sgopu-90" +, author = "E. A. Melissaratos and D. L. Souvaine" +, title = "Shortest paths help solve geometric optimization problems on planar regions" +, type = "Report" +, number = "LCSR-TR-150" +, institution = "Lab. Comput. Sci. Res., Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1990 +, keywords = "design of algorithms, visibility, shortest paths, optimization, inscribed, circumscribed, separator, curved polygon, splinegon" +, succeeds = "ms-spvop-90, ms-sgopu-90" } @inproceedings{ms-spvop-90 -, author = "E. A. Melissaratos and D. L. Souvaine" -, title = "Shortest paths, visibility, and optimization problems in planar curvilinear objects" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "337--342" -, precedes = "ms-sphsg-90" -, cites = "cg-vippg-85, ds-cgcw-90, dsv-diss-88, egs-oplms-86, gh-ospqs-87, ghlst-ltavs-87, h-ovgat-89, fm-tspep-84, ms-sgopu-90, s-cgcw-86, tv-tsp-87, ZZZ" -, update = "01.04 icking, 98.07 bibrelex" +, author = "E. A. Melissaratos and D. L. Souvaine" +, title = "Shortest paths, visibility, and optimization problems in planar curvilinear objects" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "337--342" +, precedes = "ms-sphsg-90" +, cites = "cg-vippg-85, ds-cgcw-90, dsv-diss-88, egs-oplms-86, gh-ospqs-87, ghlst-ltavs-87, h-ovgat-89, fm-tspep-84, ms-sgopu-90, s-cgcw-86, tv-tsp-87, ZZZ" +, update = "01.04 icking, 98.07 bibrelex" } @inproceedings{m-astd-97 -, author = "M. Melkemi" -, title = "A-Shapes and their derivatives" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "367--369" -, cites = "eks-sspp-83, mm-addp-95, m-cspps-96, m-asfps-96, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "M. Melkemi" +, title = "A-Shapes and their derivatives" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "367--369" +, cites = "eks-sspp-83, mm-addp-95, m-cspps-96, m-asfps-96, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{m-asfps-96 -, author = "M. Melkemi" -, title = "A-shapes of a finite point set" -, type = "Technical {Report}" -, number = "LIGIM-TR.02.96" -, institution = "LIGIM Universit{\'e} Claude Bernard Lyon" -, year = 1996 -, update = "98.07 bibrelex" +, author = "M. Melkemi" +, title = "A-shapes of a finite point set" +, type = "Technical {Report}" +, number = "LIGIM-TR.02.96" +, institution = "LIGIM Universit{\'e} Claude Bernard Lyon" +, year = 1996 +, update = "98.07 bibrelex" } @techreport{m-cspps-96 -, author = "M. Melkemi" -, title = "Computing the shape of a planar point set" -, type = "Technical {Report}" -, number = "LIGIM-TR.01.96" -, institution = "LIGIM Universit{\'e} Claude Bernard Lyon" -, year = 1996 -, note = "Submitted to Pattern Recognition Journal" -, update = "98.07 bibrelex" +, author = "M. Melkemi" +, title = "Computing the shape of a planar point set" +, type = "Technical {Report}" +, number = "LIGIM-TR.01.96" +, institution = "LIGIM Universit{\'e} Claude Bernard Lyon" +, year = 1996 +, note = "Submitted to Pattern Recognition Journal" +, update = "98.07 bibrelex" } @inproceedings{md-cspps-99 -, author = "Mahmoud Melkemi and Mourad Djebali" -, title = "Computing the Shape of a Planar Points Set" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "69--71" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Mahmoud Melkemi and Mourad Djebali" +, title = "Computing the Shape of a Planar Points Set" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "69--71" +, update = "00.03 bibrelex, 99.07 bibrelex" } @incollection{mm-addp-95 -, author = "M. Melkemi and L. Melkemi" -, title = "An algorithm for detecting dot patterns" -, editor = "R. A. Earnshaw and J. A. Vince" -, booktitle = "Computer Graphics" -, publisher = "Academic Press" -, address = "Leeds, UK" -, year = 1995 -, pages = "161--169" -, update = "98.07 bibrelex" +, author = "M. Melkemi and L. Melkemi" +, title = "An algorithm for detecting dot patterns" +, editor = "R. A. Earnshaw and J. A. Vince" +, booktitle = "Computer Graphics" +, publisher = "Academic Press" +, address = "Leeds, UK" +, year = 1995 +, pages = "161--169" +, update = "98.07 bibrelex" } @article{m-olcch-87 -, author = "A. Melkman" -, title = "On-line construction of the convex hull of a simple polyline" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "11--12" +, author = "A. Melkman" +, title = "On-line construction of the convex hull of a simple polyline" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "11--12" } @techreport{m-apcp-85 -, author = "A. Melkman" -, title = "On the approximation of polygonal curves in the plane" -, type = "Report" -, number = "??" -, institution = "Dept. Math. Comput. Sci., Univ. Negev" -, year = 1985 +, author = "A. Melkman" +, title = "On the approximation of polygonal curves in the plane" +, type = "Report" +, number = "??" +, institution = "Dept. Math. Comput. Sci., Univ. Negev" +, year = 1985 } @incollection{mo-pca-88 -, author = "A. Melkman and J. O'Rourke" -, title = "On polygonal chain approximation" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "87--95" -, keywords = "approximation, circles" +, author = "A. Melkman and J. O'Rourke" +, title = "On polygonal chain approximation" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "87--95" +, keywords = "approximation, circles" } @book{m-camap-91 -, author = "L. S. H. d. Mello" -, title = "Computer-Aided Mechanical Assembly Planning" -, publisher = "Kluwer Academic Publishers" -, address = "Boston" -, year = 1991 -, update = "98.03 bibrelex" +, author = "L. S. H. d. Mello" +, title = "Computer-Aided Mechanical Assembly Planning" +, publisher = "Kluwer Academic Publishers" +, address = "Boston" +, year = 1991 +, update = "98.03 bibrelex" } @article{mks-eapuc-77 -, author = "T. W. Melnyk and O. Knop and W. R. Smith" -, title = "Extremal arrangements of points and unit charges on a sphere: equilibrium configurations revisited" -, journal = "Can. J. Chem." -, volume = "??" -, year = 1977 -, update = "97.11 bibrelex" +, author = "T. W. Melnyk and O. Knop and W. R. Smith" +, title = "Extremal arrangements of points and unit charges on a sphere: equilibrium configurations revisited" +, journal = "Can. J. Chem." +, volume = "??" +, year = 1977 +, update = "97.11 bibrelex" } @incollection{m-istam-85 -, author = "R. C. Melville" -, title = "An implementation study of two algorithms for the minimum spanning circle problem" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "267--294" +, author = "R. C. Melville" +, title = "An implementation study of two algorithms for the minimum spanning circle problem" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "267--294" } @book{m-ccm-76 -, author = "Z. A. Melzak" -, title = "Companion to concrete mathematics" -, volume = 2 -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1976 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "Z. A. Melzak" +, title = "Companion to concrete mathematics" +, volume = 2 +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1976 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{m-ps-61 -, author = "Z. A. Melzak" -, title = "On the problem of {Steiner}" -, journal = "Canad. Math. Bull." -, volume = 4 -, year = 1961 -, pages = "143--148" +, author = "Z. A. Melzak" +, title = "On the problem of {Steiner}" +, journal = "Canad. Math. Bull." +, volume = 4 +, year = 1961 +, pages = "143--148" } @article{m-pmcl-61 -, author = "Z. A. Melzak" -, title = "Plane motion with curvature limitations" -, journal = "J. Soc. Indust. Appl. Math." -, volume = 9 -, year = 1961 -, pages = "422--432" -, update = "94.05 devillers" +, author = "Z. A. Melzak" +, title = "Plane motion with curvature limitations" +, journal = "J. Soc. Indust. Appl. Math." +, volume = 9 +, year = 1961 +, pages = "422--432" +, update = "94.05 devillers" } @inproceedings{m-srups-95 -, author = "Robert Mencl" -, title = "Surface Reconstruction from Unorganized Points in Space" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "67--70" -, update = "00.03 bibrelex" +, author = "Robert Mencl" +, title = "Surface Reconstruction from Unorganized Points in Space" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "67--70" +, update = "00.03 bibrelex" } @book{m-it-62 -, author = "B. Mendelson" -, title = "Introduction to Topology" -, publisher = "Allyn \& Bacon" -, address = "Boston" -, year = 1962 -, update = "97.11 bibrelex" +, author = "B. Mendelson" +, title = "Introduction to Topology" +, publisher = "Allyn \& Bacon" +, address = "Boston" +, year = 1962 +, update = "97.11 bibrelex" } @misc{m-hpvs-92 -, author = "X. Mendonca" -, title = "Heuristics for Planarization by Vertex Splitting" -, institution = "University of Newcastle" -, year = 1992 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "X. Mendonca" +, title = "Heuristics for Planarization by Vertex Splitting" +, institution = "University of Newcastle" +, year = 1992 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{m-fsmgm-87 -, author = "A. C.-C. Meng" -, title = "Free-Space Modeling and Geometric Motion Planning Under Unexpected Obstacles" -, type = "Technical {Report}" -, institution = "Texas Instruments Artificial Intelligence Lab" -, year = 1987 -, update = "93.09 milone+mitchell" +, author = "A. C.-C. Meng" +, title = "Free-Space Modeling and Geometric Motion Planning Under Unexpected Obstacles" +, type = "Technical {Report}" +, institution = "Texas Instruments Artificial Intelligence Lab" +, year = 1987 +, update = "93.09 milone+mitchell" } @techreport{m-fsmpp-?? -, author = "A. C.-C. Meng" -, title = "Free-Space Modeling and Path Planning Under Uncertainty for Autonomous Air Robots" -, type = "Manuscript" -, institution = "School of Operations Research and Industrial Engineering, Cornell University" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "A. C.-C. Meng" +, title = "Free-Space Modeling and Path Planning Under Uncertainty for Autonomous Air Robots" +, type = "Manuscript" +, institution = "School of Operations Research and Industrial Engineering, Cornell University" +, year = "??" +, update = "93.09 milone+mitchell" } @article{m-uuam-28 -, author = "K. Menger" -, title = "Untersuchungen {\"u}ber allgemeine {Metrik}" -, journal = "Math. Ann." -, volume = 100 -, year = 1928 -, pages = "75--163" -, update = "00.03 bibrelex" +, author = "K. Menger" +, title = "Untersuchungen {\"u}ber allgemeine {Metrik}" +, journal = "Math. Ann." +, volume = 100 +, year = 1928 +, pages = "75--163" +, update = "00.03 bibrelex" } @inproceedings{ms-esasg-90 -, author = "A. Menn and A. K. Somani" -, title = "An Efficient Sorting Algorithm for the Star Graph Interconnection Network" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, month = aug -, year = 1990 -, pages = "1--8" -, update = "98.07 bibrelex" +, author = "A. Menn and A. K. Somani" +, title = "An Efficient Sorting Algorithm for the Star Graph Interconnection Network" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, month = aug +, year = 1990 +, pages = "1--8" +, update = "98.07 bibrelex" } @article{mg-ffmbb-98 -, author = "J. Menon and B. Guo" -, title = "Free-Form Modeling in Bilateral Brep and CSG Representation Schemes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "537--576" -, update = "98.11 devillers" +, author = "J. Menon and B. Guo" +, title = "Free-Form Modeling in Bilateral Brep and CSG Representation Schemes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "537--576" +, update = "98.11 devillers" } @article{mr-anvmp-93 -, author = "J. P. Menon and D. M. Robinson" -, title = "Advanced {NC} Verification via Massively Parallel Raycasting" -, journal = "Manufact. Review" -, volume = 6 -, number = 2 -, month = jun -, year = 1993 -, pages = "141--154" -, update = "95.01 held" +, author = "J. P. Menon and D. M. Robinson" +, title = "Advanced {NC} Verification via Massively Parallel Raycasting" +, journal = "Manufact. Review" +, volume = 6 +, number = 2 +, month = jun +, year = 1993 +, pages = "141--154" +, update = "95.01 held" } @article{mv-tcfnv-93 -, author = "J. P. Menon and H. B. Voelcker" -, title = "Toward a Comprehensive Formulation of {NC} Verification as a Mathematical and Computational Problem" -, journal = "J. Design \& Manufact." -, volume = 3 -, year = 1993 -, pages = "263--277" -, update = "95.01 held" +, author = "J. P. Menon and H. B. Voelcker" +, title = "Toward a Comprehensive Formulation of {NC} Verification as a Mathematical and Computational Problem" +, journal = "J. Design \& Manufact." +, volume = 3 +, year = 1993 +, pages = "263--277" +, update = "95.01 held" } @inproceedings{m-piadt-92 -, author = "M. L. Merriam" -, title = "Parallel implementation of an algorithm for {Delaunay} triangulation" -, booktitle = "1st European Comput. Fluid Dynamics Conf." -, month = sep -, year = 1992 -, pages = "907--912" -, update = "97.11 bibrelex" +, author = "M. L. Merriam" +, title = "Parallel implementation of an algorithm for {Delaunay} triangulation" +, booktitle = "1st European Comput. Fluid Dynamics Conf." +, month = sep +, year = 1992 +, pages = "907--912" +, update = "97.11 bibrelex" } @article{m-rcrec-73 -, author = "R. D. Merrill" -, title = "Representation of contours and regions for efficient computer search" -, journal = "Commun. ACM" -, volume = 16 -, year = 1973 -, pages = "69--82" +, author = "R. D. Merrill" +, title = "Representation of contours and regions for efficient computer search" +, journal = "Commun. ACM" +, volume = 16 +, year = 1973 +, pages = "69--82" } @article{m-cancp-85 -, author = "A. {Mesa Henriquez}" -, title = "{CONVY}: an algorithm for the nonoverlapping covering of polygons by convex sets ({Spanish} {English} summary)" -, journal = "Investigaci{\'o}n Oper." -, volume = 6 -, year = 1985 -, pages = "79--94" +, author = "A. {Mesa Henriquez}" +, title = "{CONVY}: an algorithm for the nonoverlapping covering of polygons by convex sets ({Spanish} {English} summary)" +, journal = "Investigaci{\'o}n Oper." +, volume = 6 +, year = 1985 +, pages = "79--94" } @article{m-hachc-85 -, author = "A. {Mesa Henriquez}" -, title = "{HODY}: an algorithm for constructing the hodograph of convex polygons ({Spanish} {English} summary)" -, journal = "Investigaci{\'o}n Oper." -, volume = 6 -, year = 1985 -, pages = "95--110" +, author = "A. {Mesa Henriquez}" +, title = "{HODY}: an algorithm for constructing the hodograph of convex polygons ({Spanish} {English} summary)" +, journal = "Investigaci{\'o}n Oper." +, volume = 6 +, year = 1985 +, pages = "95--110" } @inproceedings{mrl-tdugg-91 -, author = "S. Meshkat and J. Ruppert and H. Li" -, title = "Three-dimensional unstructured grid generation based on {Delaunay} tetrahedralization" -, booktitle = "Proc. 3 Int. Conf. Numerical Grid Generation" -, month = jun -, year = 1991 -, pages = "841--851" -, update = "98.11 bibrelex" +, author = "S. Meshkat and J. Ruppert and H. Li" +, title = "Three-dimensional unstructured grid generation based on {Delaunay} tetrahedralization" +, booktitle = "Proc. 3 Int. Conf. Numerical Grid Generation" +, month = jun +, year = 1991 +, pages = "841--851" +, update = "98.11 bibrelex" } @article{ms-vdmcp-87 -, author = "S. N. Meshkat and C. M. Sakkas" -, title = "Voronoi diagram for multiply-connected polygonal domains {II}: implementation and application" -, journal = "IBM J. Res. Develop." -, volume = 31 -, year = 1987 -, pages = "373--381" -, keywords = "Voronoi diagram, polygonal domains, resistance networks, two-dimensional VLSI geometry, boundary representation" +, author = "S. N. Meshkat and C. M. Sakkas" +, title = "Voronoi diagram for multiply-connected polygonal domains {II}: implementation and application" +, journal = "IBM J. Res. Develop." +, volume = 31 +, year = 1987 +, pages = "373--381" +, keywords = "Voronoi diagram, polygonal domains, resistance networks, two-dimensional VLSI geometry, boundary representation" } @techreport{m-alldg-88 -, author = "E. B. Messinger" -, title = "Automatic Layout of Large Directed Graphs" -, number = "88-07-08" -, institution = "Department of Computer Science, University of Washington" -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. B. Messinger" +, title = "Automatic Layout of Large Directed Graphs" +, number = "88-07-08" +, institution = "Department of Computer Science, University of Washington" +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{mrh-dcaal-91 -, author = "E. B. Messinger and L. A. Rowe and R. H. Henry" -, title = "A Divide-and-Conquer Algorithm for the Automatic Layout of Large Directed Graphs" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-21" -, number = 1 -, year = 1991 -, pages = "1--12" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. B. Messinger and L. A. Rowe and R. H. Henry" +, title = "A Divide-and-Conquer Algorithm for the Automatic Layout of Large Directed Graphs" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-21" +, number = 1 +, year = 1991 +, pages = "1--12" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{mps-anpao-98 -, author = "P. T. Metaxas and G. E. Pantziou and A. Symvonis" -, title = "A note on parallel algorithms for optimal h-v drawings of binary trees" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, year = 1998 -, pages = "145--158" -, update = "98.03 smid" +, author = "P. T. Metaxas and G. E. Pantziou and A. Symvonis" +, title = "A note on parallel algorithms for optimal h-v drawings of binary trees" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, year = 1998 +, pages = "145--158" +, update = "98.03 smid" } @inproceedings{mps-phvdb-94 -, author = "P. T. Metaxas and G. E. Pantziou and A. Symvonis" -, title = "Parallel h-v Drawings of Binary Trees" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "487--495" -, keywords = "graph drawing, trees" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell, 95.01 tamassia" +, author = "P. T. Metaxas and G. E. Pantziou and A. Symvonis" +, title = "Parallel h-v Drawings of Binary Trees" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "487--495" +, keywords = "graph drawing, trees" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell, 95.01 tamassia" } @article{mk-oaibr-91 -, author = "N. N. Metel'skii and V. S. Krikun" -, title = "Optimal arrangement of isothetic blocks with respect to approximation criteria (in Russian)" -, journal = "Doklady Akad. Nauk SSSR" -, volume = 317 -, number = 2 -, year = 1991 -, pages = "320--323" -, keywords = "generalized convexity, visibility, isothetic domain, $S-$convex hull" -, update = "95.01 korneenko" -, annote = "The $S$-convex hull for an isothetic +, author = "N. N. Metel'skii and V. S. Krikun" +, title = "Optimal arrangement of isothetic blocks with respect to approximation criteria (in Russian)" +, journal = "Doklady Akad. Nauk SSSR" +, volume = 317 +, number = 2 +, year = 1991 +, pages = "320--323" +, keywords = "generalized convexity, visibility, isothetic domain, $S-$convex hull" +, update = "95.01 korneenko" +, annote = "The $S$-convex hull for an isothetic domain is in fact the minimal externally isothetically visible hull. An $O(n\log n+r)$ time algorithm for computing the $S$-convex hull of an $n$-vertex isothetic domain is given, where @@ -104415,1301 +104415,1301 @@ @article{mk-oaibr-91 } @article{m-ptlsa-84 -, author = "F. {Meyer auf der Heide}" -, title = "A Polynomial Time Linear Search Algorithm for the $n$-Dimensional Knapsack Problem" -, journal = "J. ACM" -, volume = 31 -, year = 1984 -, pages = "668--676" -, keywords = "NP-complete, knapsack, linear search algorithm, nonuniform algorithm" -, update = "93.09 erickson" -, annote = "For every fixed $n$, there exists a linear search algorithm which solves the $n$-dimensional knapsack problem in $O(n^4\log n)$ time." +, author = "F. {Meyer auf der Heide}" +, title = "A Polynomial Time Linear Search Algorithm for the $n$-Dimensional Knapsack Problem" +, journal = "J. ACM" +, volume = 31 +, year = 1984 +, pages = "668--676" +, keywords = "NP-complete, knapsack, linear search algorithm, nonuniform algorithm" +, update = "93.09 erickson" +, annote = "For every fixed $n$, there exists a linear search algorithm which solves the $n$-dimensional knapsack problem in $O(n^4\log n)$ time." } @incollection{m-hsssm-93 -, author = "F. {Meyer auf der Heide}" -, title = "Hashing stratefies for simulating shared memory on distributed memory machines" -, booktitle = "Parallel Architectures and Their Efficient Use: First Heinz Nixdorf Symposium" -, series = "Lecture Notes Comput. Sci." -, volume = 678 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "" -, update = "96.09 orourke" +, author = "F. {Meyer auf der Heide}" +, title = "Hashing stratefies for simulating shared memory on distributed memory machines" +, booktitle = "Parallel Architectures and Their Efficient Use: First Heinz Nixdorf Symposium" +, series = "Lecture Notes Comput. Sci." +, volume = 678 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "" +, update = "96.09 orourke" } @article{m-mt-94 -, author = "D. Meyers" -, title = "Multiresolutional Tiling" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 5 -, month = dec -, year = 1994 -, pages = "325--340" -, update = "96.01 held" +, author = "D. Meyers" +, title = "Multiresolutional Tiling" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 5 +, month = dec +, year = 1994 +, pages = "325--340" +, update = "96.01 held" } @article{mss-sc-92 -, author = "David Meyers and Shelley Skinner and Kenneth Sloan" -, title = "Surfaces from Contours" -, journal = "ACM Trans. Graph." -, volume = 11 -, number = 3 -, month = jul -, year = 1992 -, pages = "228--258" -, annote = "Makes triangulated mesh from contour slices. Breaks - into four subproblems: correspondence (which contours - to connect), tiling (how to connect), branching (what - to do with branches), and fitting surface to the mesh. - Interesting (to me) bit is branching -- when two - contours merge we must triangulate the polygon between - them. Uses ear cutting to construct original - triangulation and Delaunay flips to improve it. Also - considers flips that encourage triangles that connect - the contours to be merged." +, author = "David Meyers and Shelley Skinner and Kenneth Sloan" +, title = "Surfaces from Contours" +, journal = "ACM Trans. Graph." +, volume = 11 +, number = 3 +, month = jul +, year = 1992 +, pages = "228--258" +, annote = "Makes triangulated mesh from contour slices. Breaks + into four subproblems: correspondence (which contours + to connect), tiling (how to connect), branching (what + to do with branches), and fitting surface to the mesh. + Interesting (to me) bit is branching -- when two + contours merge we must triangulate the polygon between + them. Uses ear cutting to construct original + triangulation and Delaunay flips to improve it. Also + considers flips that encourage triangles that connect + the contours to be merged." } @inproceedings{mss-sccbp-91 -, author = "D. Meyers and S. Skinner and K. Sloan" -, title = "Surfaces from contours: the correspondence and branching problem" -, booktitle = "Proc. Graphics Interface '91" -, year = 1991 -, pages = "246--254" -, update = "98.03 bibrelex" +, author = "D. Meyers and S. Skinner and K. Sloan" +, title = "Surfaces from contours: the correspondence and branching problem" +, booktitle = "Proc. Graphics Interface '91" +, year = 1991 +, pages = "246--254" +, update = "98.03 bibrelex" } @article{mdr-cssoo-93 -, author = "Scott Meyers and Carolyn K. Duby and Steven P. Reiss" -, title = "Constraining the structure and style of object-oriented programs" -, journal = "Proc. First Workshop on Principles and Practice of Constraint Programming" -, volume = "??" -, month = apr -, year = 1993 -, update = "97.03 tamassia" +, author = "Scott Meyers and Carolyn K. Duby and Steven P. Reiss" +, title = "Constraining the structure and style of object-oriented programs" +, journal = "Proc. First Workshop on Principles and Practice of Constraint Programming" +, volume = "??" +, month = apr +, year = 1993 +, update = "97.03 tamassia" } @article{mr-esmvs-92 -, author = "Scott Meyers and Steven P. Reiss" -, title = "An empirical study of multiple-view software development" -, journal = "Software Engineering Notes" -, volume = 17 -, number = 5 -, month = dec -, year = 1992 -, pages = "47--57" -, update = "97.03 tamassia" +, author = "Scott Meyers and Steven P. Reiss" +, title = "An empirical study of multiple-view software development" +, journal = "Software Engineering Notes" +, volume = 17 +, number = 5 +, month = dec +, year = 1992 +, pages = "47--57" +, update = "97.03 tamassia" } % m-thasa-94 quotes this work incompletely. @article{m--91 -, author = "P. G. Mezey" -, journal = "J. Math. Chem." -, volume = 8 -, year = 1991 -, update = "98.11 bibrelex" +, author = "P. G. Mezey" +, journal = "J. Math. Chem." +, volume = 8 +, year = 1991 +, update = "98.11 bibrelex" } @incollection{m-ms-90 -, author = "P. G. Mezey" -, title = "Molecular surfaces" -, editor = "K. B. Lipkowitz and D. B. Boyd" -, booktitle = "Reviews in Computational Chemistry" -, volume = 1 -, publisher = "VCH Publishers" -, year = 1990 -, update = "98.03 agarwal+bibrelex" +, author = "P. G. Mezey" +, title = "Molecular surfaces" +, editor = "K. B. Lipkowitz and D. B. Boyd" +, booktitle = "Reviews in Computational Chemistry" +, volume = 1 +, publisher = "VCH Publishers" +, year = 1990 +, update = "98.03 agarwal+bibrelex" } @book{m-scims-93 -, author = "P. G. Mezey" -, title = "Shape in Chemistry: An Introduction to Molecular Shape and Topology" -, publisher = "VCH Publ." -, address = "New York" -, year = 1993 -, update = "98.11 bibrelex" +, author = "P. G. Mezey" +, title = "Shape in Chemistry: An Introduction to Molecular Shape and Topology" +, publisher = "VCH Publ." +, address = "New York" +, year = 1993 +, update = "98.11 bibrelex" } @inproceedings{m-thasa-94 -, author = "P. G. Mezey" -, title = "The T-Hull Approach to Shape Analysis" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "231--236" -, cites = "eks-sspp-83, m--91, m-scims-93" -, update = "98.11 bibrelex, 94.09 jones" +, author = "P. G. Mezey" +, title = "The T-Hull Approach to Shape Analysis" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "231--236" +, cites = "eks-sspp-83, m--91, m-scims-93" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{d-qnsa-97 -, author = "Dominique Michelucci" -, title = "A Quadratic Non--Standard Arthmetic" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "123--128" -, update = "01.07 devillers, 97.11 jones" +, author = "Dominique Michelucci" +, title = "A Quadratic Non--Standard Arthmetic" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "123--128" +, update = "01.07 devillers, 97.11 jones" } @inproceedings{m-aigc-96 -, author = "D. Michelucci" -, title = "Arithmetic isuues in geometric computations" -, booktitle = "Proc. 2nd Real Numbers and Computer Conf." -, site = "Marseille, France" -, year = 1996 -, pages = "43--69" -, update = "97.03 devillers" +, author = "D. Michelucci" +, title = "Arithmetic isuues in geometric computations" +, booktitle = "Proc. 2nd Real Numbers and Computer Conf." +, site = "Marseille, France" +, year = 1996 +, pages = "43--69" +, update = "97.03 devillers" } @phdthesis{m-rfqcd-87 -, author = "D. Michelucci" -, title = "Les repr{\'e}sentations par les fronti{\'e}res: quelques constructions; difficulte{\'e}s renconctr{\'e}es" -, type = "Th{\`e}se de Doctorat en Sciences" -, school = "{\'E}cole Nationale Sup{\'e}rieure des Mines de Saint-{\'E}tienne" -, year = 1987 -, keywords = "doctoral thesis" -, update = "99.03 forrest, 98.11 bibrelex, 97.03 devillers, 93.03 rote" +, author = "D. Michelucci" +, title = "Les repr{\'e}sentations par les fronti{\'e}res: quelques constructions; difficulte{\'e}s renconctr{\'e}es" +, type = "Th{\`e}se de Doctorat en Sciences" +, school = "{\'E}cole Nationale Sup{\'e}rieure des Mines de Saint-{\'E}tienne" +, year = 1987 +, keywords = "doctoral thesis" +, update = "99.03 forrest, 98.11 bibrelex, 97.03 devillers, 93.03 rote" } @techreport{mz-lubgj-88 -, author = "S. R. Middila and D. Zhou" -, title = "Lower and upper bounds for the general junction routing problem" -, type = "Report" -, number = "ACT-90" -, institution = "Coordinated Science Lab." -, address = "Univ. of IL" -, month = may -, year = 1988 -, update = "98.07 bibrelex" +, author = "S. R. Middila and D. Zhou" +, title = "Lower and upper bounds for the general junction routing problem" +, type = "Report" +, number = "ACT-90" +, institution = "Coordinated Science Lab." +, address = "Univ. of IL" +, month = may +, year = 1988 +, update = "98.07 bibrelex" } @article{mz-rgj-89 -, author = "S. R. Middila and D. Zhou" -, title = "Routing in general junctions" -, journal = "IEEE Trans. on CAD" -, volume = 8 -, number = 11 -, month = nov -, year = 1989 -, pages = "1174--1184" -, update = "98.07 bibrelex" +, author = "S. R. Middila and D. Zhou" +, title = "Routing in general junctions" +, journal = "IEEE Trans. on CAD" +, volume = 8 +, number = 11 +, month = nov +, year = 1989 +, pages = "1174--1184" +, update = "98.07 bibrelex" } @techreport{m-snct-73 -, author = "A. E. Middleditch" -, title = "Survey of Numerical Controller Technology" -, institution = "Univ. Rochester" -, address = "Rochester, NY" -, year = 1973 -, note = "Production Automation Project TR-1-D" -, update = "99.03 forrest, 98.03 bibrelex" +, author = "A. E. Middleditch" +, title = "Survey of Numerical Controller Technology" +, institution = "Univ. Rochester" +, address = "Rochester, NY" +, year = 1973 +, note = "Production Automation Project TR-1-D" +, update = "99.03 forrest, 98.03 bibrelex" } @incollection{m-rmcp-88 -, author = "A. E. Middleditch" -, title = "The representation and manipulation of convex polygons" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1988 -, pages = "211--252" -, update = "99.11 bibrelex" +, author = "A. E. Middleditch" +, title = "The representation and manipulation of convex polygons" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1988 +, pages = "211--252" +, update = "99.11 bibrelex" } @article{ms-bsstv-85a -, author = "A. E. Middleditch and K. H. Sears" -, title = "Blend Surfaces for Set Theoretic Volume Modeling Systems" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, year = 1985 -, pages = "161--170" -, note = "Proc. SIGGRAPH '85" -, update = "99.03 forrest, 98.03 bibrelex" +, author = "A. E. Middleditch and K. H. Sears" +, title = "Blend Surfaces for Set Theoretic Volume Modeling Systems" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, year = 1985 +, pages = "161--170" +, note = "Proc. SIGGRAPH '85" +, update = "99.03 forrest, 98.03 bibrelex" } @article{mst-ialc-89 -, author = "A. E. Middleditch and T. W. Stacey and S. B. Tor" -, title = "Intersection algorithms for lines and circles" -, journal = "ACM Trans. Graph." -, volume = 8 -, year = 1989 -, pages = "25--40" +, author = "A. E. Middleditch and T. W. Stacey and S. B. Tor" +, title = "Intersection algorithms for lines and circles" +, journal = "ACM Trans. Graph." +, volume = 8 +, year = 1989 +, pages = "25--40" } @phdthesis{m-smdnt-93 -, author = "T. Midtb{\o}" -, title = "Spatial Modelling by {Delaunay} Networks of Two and Three Dimensions" -, type = "Ph.{D}. Thesis" -, school = "Norvegian Institute of Technology" -, address = "Trondheim" -, year = 1993 -, keywords = "doctoral thesis" -, update = "98.07 devillers" +, author = "T. Midtb{\o}" +, title = "Spatial Modelling by {Delaunay} Networks of Two and Three Dimensions" +, type = "Ph.{D}. Thesis" +, school = "Norvegian Institute of Technology" +, address = "Trondheim" +, year = 1993 +, keywords = "doctoral thesis" +, update = "98.07 devillers" } @book{m-mca-92 -, author = "M. Mignotte" -, title = "Mathematics for Computer Algebra" -, publisher = "Springer-Verlag" -, year = 1992 -, update = "98.03 bibrelex" +, author = "M. Mignotte" +, title = "Mathematics for Computer Algebra" +, publisher = "Springer-Verlag" +, year = 1992 +, update = "98.03 bibrelex" } @article{mnr-cochp-94 -, author = "A. Mikheev and M. Nozik and J. Rubinstein" -, title = "Computation of Offset Curves by the Huygens Principle" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 4 -, month = oct -, year = 1994 -, pages = "249--252" -, update = "96.01 held" +, author = "A. Mikheev and M. Nozik and J. Rubinstein" +, title = "Computation of Offset Curves by the Huygens Principle" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 4 +, month = oct +, year = 1994 +, pages = "249--252" +, update = "96.01 held" } @inproceedings{m-cacau-89 -, author = "V. Milenkovic" -, title = "Calculating approximate curve arrangements using rounded arithmetic" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "197--207" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation" -, cites = "acm-aacad-88, acm-cad1b-84, acm-cad2a-84, c-qercf-75, cr-tlcra-88, em-sstcd-87, gy-frcg-86, hhk-tirgc-88, hhk-rsops-87, h-pargc-88, k-rmrs-89, kln-edtur-89, m-vigau-88a, m-vigau-88t, otu-nsga-87, r-paff-80, gss-egbra-89, ss-pmp2g-83, ss-ccsm-85, ss-pponp-88, s-aefsm-87, t-dmeag-51, y-gctsp-88, ZZZ" -, update = "98.03 bibrelex, 97.03 daniels" +, author = "V. Milenkovic" +, title = "Calculating approximate curve arrangements using rounded arithmetic" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "197--207" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation" +, cites = "acm-aacad-88, acm-cad1b-84, acm-cad2a-84, c-qercf-75, cr-tlcra-88, em-sstcd-87, gy-frcg-86, hhk-tirgc-88, hhk-rsops-87, h-pargc-88, k-rmrs-89, kln-edtur-89, m-vigau-88a, m-vigau-88t, otu-nsga-87, r-paff-80, gss-egbra-89, ss-pmp2g-83, ss-ccsm-85, ss-pponp-88, s-aefsm-87, t-dmeag-51, y-gctsp-88, ZZZ" +, update = "98.03 bibrelex, 97.03 daniels" } @inproceedings{m-dpggt-89 -, author = "V. Milenkovic" -, title = "Double precision geometry: {A} general technique for calculating line and segment intersections using rounded arithmetic" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "500--505" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation" -, update = "98.03 agarwal, 97.03 daniels" +, author = "V. Milenkovic" +, title = "Double precision geometry: {A} general technique for calculating line and segment intersections using rounded arithmetic" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "500--505" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation" +, update = "98.03 agarwal, 97.03 daniels" } @inproceedings{m-pbpap-95 -, author = "Victor Milenkovic" -, title = "Position-Based Physics: Animating and Packing Spheres Inside Polyhedra" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "79--84" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "computer graphics, simulation, physically-based modeling, linear programming, Minkowski sum, configuration space" -, update = "97.03 daniels, 95.09 jones" +, author = "Victor Milenkovic" +, title = "Position-Based Physics: Animating and Packing Spheres Inside Polyhedra" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "79--84" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "computer graphics, simulation, physically-based modeling, linear programming, Minkowski sum, configuration space" +, update = "97.03 daniels, 95.09 jones" } @inproceedings{m-pbpsm-96 -, author = "Victor Milenkovic" -, title = "Position-based physics: simulating the motion of many highly interacting spheres and polyhedra" -, booktitle = "Computer Graphics" -, year = 1996 -, pages = "129--136" -, note = "Proc. SIGGRAPH '96" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "computer graphics, animation, physically-based modeling, linear programming, Minkowski sum, configuration space" -, update = "97.03 daniels" +, author = "Victor Milenkovic" +, title = "Position-based physics: simulating the motion of many highly interacting spheres and polyhedra" +, booktitle = "Computer Graphics" +, year = 1996 +, pages = "129--136" +, note = "Proc. SIGGRAPH '96" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "computer graphics, animation, physically-based modeling, linear programming, Minkowski sum, configuration space" +, update = "97.03 daniels" } @inproceedings{m-rcvdp-93 -, author = "V. Milenkovic" -, title = "Robust construction of the {Voronoi} diagram of a polyhedron" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "473--478" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation" -, cites = "ck-acp-70, b-tends-67, cs-arscg-89, e-acg-87, f-smpst-90, f-savd-87, fm-nsala-91, ghms-apsml-91, hhk-tirgc-88, iss-nriac-92, l-knnvd-82, ld-gvdp-81, lm-cschu-90, m-vigau-88a, m-cacau-89, ms-saps-92, sh-cpp-75, si-cvd10-89, ls-ippvd-87, ls-pptmc-87, m-dpggt-89, ZZZ" -, update = "98.11 bibrelex, 97.03 daniels, 93.09 milone+mitchell" +, author = "V. Milenkovic" +, title = "Robust construction of the {Voronoi} diagram of a polyhedron" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "473--478" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation" +, cites = "ck-acp-70, b-tends-67, cs-arscg-89, e-acg-87, f-smpst-90, f-savd-87, fm-nsala-91, ghms-apsml-91, hhk-tirgc-88, iss-nriac-92, l-knnvd-82, ld-gvdp-81, lm-cschu-90, m-vigau-88a, m-cacau-89, ms-saps-92, sh-cpp-75, si-cvd10-89, ls-ippvd-87, ls-pptmc-87, m-dpggt-89, ZZZ" +, update = "98.11 bibrelex, 97.03 daniels, 93.09 milone+mitchell" } @article{m-rpm-93 -, author = "V. Milenkovic" -, title = "Robust polygon modeling" -, journal = "Comput. Aided Design" -, volume = 25 -, number = 9 -, year = 1993 -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "algorithms, polygons, geometric modeling" -, update = "98.03 agarwal, 97.03 daniels, 96.05 pascucci" +, author = "V. Milenkovic" +, title = "Robust polygon modeling" +, journal = "Comput. Aided Design" +, volume = 25 +, number = 9 +, year = 1993 +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "algorithms, polygons, geometric modeling" +, update = "98.03 agarwal, 97.03 daniels, 96.05 pascucci" } @inproceedings{m-rpom-97 -, author = "V. Milenkovic" -, title = "Rotational polygon overlap minimization" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "334--343" -, cites = "aaas-lpmpc-97, aas-mpcpp-92, a-peddf-89, ab-pptr-88, c-pcp-83, d-canpa-95, dm-cbspu-96, dm-mtcp1-97, dd-pp-92, d-tcpp-90, gc-cspum-93, gc-natpc-96, hss-cmpmi-84, l-canpt-94, lm-ccp-93, lm-csanp-95, m-tpcme-96, md-tpcme-95, m-mtcp2-97, m-pbpsm-96, sp-cppca-92, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex, 97.07 efrat" +, author = "V. Milenkovic" +, title = "Rotational polygon overlap minimization" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "334--343" +, cites = "aaas-lpmpc-97, aas-mpcpp-92, a-peddf-89, ab-pptr-88, c-pcp-83, d-canpa-95, dm-cbspu-96, dm-mtcp1-97, dd-pp-92, d-tcpp-90, gc-cspum-93, gc-natpc-96, hss-cmpmi-84, l-canpt-94, lm-ccp-93, lm-csanp-95, m-tpcme-96, md-tpcme-95, m-mtcp2-97, m-pbpsm-96, sp-cppca-92, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex, 97.07 efrat" } @inproceedings{m-rfldd-90 -, author = "V. Milenkovic" -, title = "Rounding face lattices in $d$ dimensions" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "40--45" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation, geometric rounding" -, cites = "ZZZ" -, update = "98.07 bibrelex, 97.03 daniels" +, author = "V. Milenkovic" +, title = "Rounding face lattices in $d$ dimensions" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "40--45" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation, geometric rounding" +, cites = "ZZZ" +, update = "98.07 bibrelex, 97.03 daniels" } @inproceedings{m-rflp-89 -, author = "V. Milenkovic" -, title = "Rounding face lattices in the plane" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 12 -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation, geometric rounding" -, update = "97.03 daniels" +, author = "V. Milenkovic" +, title = "Rounding face lattices in the plane" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 12 +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation, geometric rounding" +, update = "97.03 daniels" } @inproceedings{m-tpcme-96 -, author = "V. Milenkovic" -, title = "Translational polygon containment and minimal enclosure using linear programming based restriction" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, year = 1996 -, pages = "109--118" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "layout, packing, placement, nesting, concave, polygons, Minkowski sum, configuration space" -, update = "97.03 daniels" +, author = "V. Milenkovic" +, title = "Translational polygon containment and minimal enclosure using linear programming based restriction" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, year = 1996 +, pages = "109--118" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "layout, packing, placement, nesting, concave, polygons, Minkowski sum, configuration space" +, update = "97.03 daniels" } @unpublished{m-vigau-86 -, author = "V. Milenkovic" -, title = "Verifiable Implementations of Geometric Algorithms Using Finite Precision Arithmetic" -, year = 1986 -, note = "Unpublished Manuscript" -, update = "98.03 bibrelex" +, author = "V. Milenkovic" +, title = "Verifiable Implementations of Geometric Algorithms Using Finite Precision Arithmetic" +, year = 1986 +, note = "Unpublished Manuscript" +, update = "98.03 bibrelex" } @inproceedings{m-vigau-86i -, author = "V. Milenkovic" -, title = "Verifiable Implementations of Geometric Algorithms Using Finite Precision Arithmetic" -, booktitle = "International Workshop on Geometric Reasoning" -, site = "Oxford, UK" -, month = jul -, year = 1986 -, update = "98.03 bibrelex" +, author = "V. Milenkovic" +, title = "Verifiable Implementations of Geometric Algorithms Using Finite Precision Arithmetic" +, booktitle = "International Workshop on Geometric Reasoning" +, site = "Oxford, UK" +, month = jul +, year = 1986 +, update = "98.03 bibrelex" } @phdthesis{m-vigau-88p -, author = "V. Milenkovic" -, title = "Verifiable Implementations of Geometric Algorithms using Finite Precision Arithmetic" -, type = "PhD Thesis" -, school = "Carnegie Mellon University" -, year = 1988 -, keywords = "doctoral thesis, robust geometric computation" -, precedes = "m-vigau-88a" -, update = "98.07 bibrelex, 97.03 daniels, 95.01 devillers" +, author = "V. Milenkovic" +, title = "Verifiable Implementations of Geometric Algorithms using Finite Precision Arithmetic" +, type = "PhD Thesis" +, school = "Carnegie Mellon University" +, year = 1988 +, keywords = "doctoral thesis, robust geometric computation" +, precedes = "m-vigau-88a" +, update = "98.07 bibrelex, 97.03 daniels, 95.01 devillers" } @incollection{m-vigau-89i -, author = "V. Milenkovic" -, title = "Verifiable implementations of geometric algorithms using finite precision arithmetic" -, editor = "D. Kapur and J. L. Mundy" -, booktitle = "Geometric Reasoning" -, publisher = "MIT Press" -, year = 1989 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "V. Milenkovic" +, title = "Verifiable implementations of geometric algorithms using finite precision arithmetic" +, editor = "D. Kapur and J. L. Mundy" +, booktitle = "Geometric Reasoning" +, publisher = "MIT Press" +, year = 1989 +, update = "99.11 bibrelex, 98.03 bibrelex" } @techreport{md-tpcme-95 -, author = "V. Milenkovic and K. Daniels" -, title = "Translational polygon containment and minimal enclosure using geometric algorithms and mathematical programming" -, type = "Technical {Report}" -, number = "25-95" -, institution = "Center for Research in Computing Technology, Division of Applied Sciences, Harvard University" -, address = "Cambridge, MA" -, year = 1995 -, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1995.html" -, keywords = "packing, layout, nesting, placement, concave, polygons, linear programming, optimization, Minkowski sum, configuration space, overlap, subdivisions" -, update = "97.03 daniels" +, author = "V. Milenkovic and K. Daniels" +, title = "Translational polygon containment and minimal enclosure using geometric algorithms and mathematical programming" +, type = "Technical {Report}" +, number = "25-95" +, institution = "Center for Research in Computing Technology, Division of Applied Sciences, Harvard University" +, address = "Cambridge, MA" +, year = 1995 +, url = "ftp://deas-ftp.harvard.edu/techreports/tr-1995.html" +, keywords = "packing, layout, nesting, placement, concave, polygons, linear programming, optimization, Minkowski sum, configuration space, overlap, subdivisions" +, update = "97.03 daniels" } @inproceedings{mdl-amm-91 -, author = "V. Milenkovic and K. Daniels and Z. Li" -, title = "Automatic marker making" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "243--246" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "layout, nesting, placement, optimization" -, update = "97.03 daniels" +, author = "V. Milenkovic and K. Daniels and Z. Li" +, title = "Automatic marker making" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "243--246" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "layout, nesting, placement, optimization" +, update = "97.03 daniels" } @inproceedings{mdl-pcnpc-92 -, author = "V. Milenkovic and K. Daniels and Z. Li" -, title = "Placement and compaction of nonconvex polygons for clothing manufacture" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "236--243" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "concave, polygons, layout, nesting, packing, optimization, Minkowski sum, configuration space" -, cites = "dhks-isccd-90, g-ctfsr-86, grs-kfcg-83, kos-cmsrp-91i, ml-sipat-91, mdl-amm-91, s-iamm-82, tw-cmm-73, nh-aplpg-84, s-iamm-88, ZZZ" -, update = "98.07 bibrelex, 97.03 daniels" +, author = "V. Milenkovic and K. Daniels and Z. Li" +, title = "Placement and compaction of nonconvex polygons for clothing manufacture" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "236--243" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "concave, polygons, layout, nesting, packing, optimization, Minkowski sum, configuration space" +, cites = "dhks-isccd-90, g-ctfsr-86, grs-kfcg-83, kos-cmsrp-91i, ml-sipat-91, mdl-amm-91, s-iamm-82, tw-cmm-73, nh-aplpg-84, s-iamm-88, ZZZ" +, update = "98.07 bibrelex, 97.03 daniels" } @inproceedings{mm-roaom-93 -, author = "V. Milenkovic and V. Milenkovic" -, title = "Rational orthogonal approximations to orthogonal matrices" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "485--490" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "geometric modeling, quaternion arithmetic, basis reduction, integer programming, exact arithmetic" -, precedes = "mm-roaom-97" -, cites = "cdr-rrmrg-92, c-sede-92, crss-igbra-91, e-sap-80, fw-eeacg-92, h-eq-69, kln-edtur-89, mn-fccrp-90a, m-rfldd-90, r-srsrf-77, lll-fprc-82, l-atngc-86, ls-gbra-92, m-rflp-89, s-qrm-78" -, update = "98.11 bibrelex, 97.03 daniels+devillers, 93.09 milone+mitchell" +, author = "V. Milenkovic and V. Milenkovic" +, title = "Rational orthogonal approximations to orthogonal matrices" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "485--490" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "geometric modeling, quaternion arithmetic, basis reduction, integer programming, exact arithmetic" +, precedes = "mm-roaom-97" +, cites = "cdr-rrmrg-92, c-sede-92, crss-igbra-91, e-sap-80, fw-eeacg-92, h-eq-69, kln-edtur-89, mn-fccrp-90a, m-rfldd-90, r-srsrf-77, lll-fprc-82, l-atngc-86, ls-gbra-92, m-rflp-89, s-qrm-78" +, update = "98.11 bibrelex, 97.03 daniels+devillers, 93.09 milone+mitchell" } @inproceedings{mn-fccrp-90i -, author = "V. Milenkovic and L. R. Nackman" -, title = "Finding compact coordinate representations for polygons and polyhedra" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "244--252" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation" -, precedes = "mn-fccrp-90a" -, cites = "gj-cigtn-79, gps-crotr-89, h-gsm-89, m-rflp-89, mn-fccrp-90a, m-utcpc-89, s-fprgo-89, tt-pgelt-89, ZZZ" -, update = "97.11 bibrelex, 97.03 daniels" +, author = "V. Milenkovic and L. R. Nackman" +, title = "Finding compact coordinate representations for polygons and polyhedra" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "244--252" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation" +, precedes = "mn-fccrp-90a" +, cites = "gj-cigtn-79, gps-crotr-89, h-gsm-89, m-rflp-89, mn-fccrp-90a, m-utcpc-89, s-fprgo-89, tt-pgelt-89, ZZZ" +, update = "97.11 bibrelex, 97.03 daniels" } @article{mn-fccrp-90a -, author = "V. Milenkovic and L. R. Nackman" -, title = "Finding compact coordinate representations for polygons and polyhedra" -, journal = "IBM J. Res. Develop." -, volume = 34 -, number = 35 -, month = sep -, year = 1990 -, pages = "753--769" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation" -, succeeds = "mn-fccrp-90i" -, update = "98.11 bibrelex, 97.03 daniels" +, author = "V. Milenkovic and L. R. Nackman" +, title = "Finding compact coordinate representations for polygons and polyhedra" +, journal = "IBM J. Res. Develop." +, volume = 34 +, number = 35 +, month = sep +, year = 1990 +, pages = "753--769" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation" +, succeeds = "mn-fccrp-90i" +, update = "98.11 bibrelex, 97.03 daniels" } @inproceedings{m-dtlpn-00 -, author = "Victor J. Milenkovic" -, title = "Densest Translational Lattice Packing of Non-Convex Polygons" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "280--289" -, update = "00.11 jones" +, author = "Victor J. Milenkovic" +, title = "Densest Translational Lattice Packing of Non-Convex Polygons" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "280--289" +, update = "00.11 jones" } @article{m-mtcp2-97 -, author = "Victor J. Milenkovic" -, title = "Multiple Translational Containment, Part II: Exact Algorithm" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "183--218" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 held" +, author = "Victor J. Milenkovic" +, title = "Multiple Translational Containment, Part II: Exact Algorithm" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "183--218" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 held" } @inproceedings{m-pmsop-95 -, author = "Victor J. Milenkovic" -, title = "Practical Methods for Set Operations on Polygons using Exact Arithmetic" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "55--60" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation, shortest-path rounding, nonuniform grids, geometric modeling, geometric rounding" -, update = "97.03 daniels, 95.09 jones" +, author = "Victor J. Milenkovic" +, title = "Practical Methods for Set Operations on Polygons using Exact Arithmetic" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "55--60" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation, shortest-path rounding, nonuniform grids, geometric modeling, geometric rounding" +, update = "97.03 daniels, 95.09 jones" } @article{m-rpomc-98 -, author = "Victor J. Milenkovic" -, title = "Rotational polygon overlap minimization and compaction" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "305--318" -, succeeds = "m-rpom-97" -, update = "98.11 devillers" +, author = "Victor J. Milenkovic" +, title = "Rotational polygon overlap minimization and compaction" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "305--318" +, succeeds = "m-rpom-97" +, update = "98.11 devillers" } @article{m-spgr-00 -, author = "V. J. Milenkovic" -, title = "Shortest Path Geometric Rounding" -, journal = "Algorithmica" -, volume = 27 -, number = 1 -, year = 2000 -, pages = "57--86" -, update = "00.11 smid, 00.07 held" +, author = "V. J. Milenkovic" +, title = "Shortest Path Geometric Rounding" +, journal = "Algorithmica" +, volume = 27 +, number = 1 +, year = 2000 +, pages = "57--86" +, update = "00.11 smid, 00.07 held" } @techreport{m-vigau-88t -, author = "V. J. Milenkovic" -, title = "Verifiable Implementations of Geometric Algorithms using Finite Precision Arithmetic" -, number = "CMU-CS-88-168" -, institution = "Department of Computer Science, Carnegie Mellon University" -, address = "Pittsburgh, PA15213" -, month = jul -, year = 1988 -, precedes = "m-vigau-88a" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "V. J. Milenkovic" +, title = "Verifiable Implementations of Geometric Algorithms using Finite Precision Arithmetic" +, number = "CMU-CS-88-168" +, institution = "Department of Computer Science, Carnegie Mellon University" +, address = "Pittsburgh, PA15213" +, month = jul +, year = 1988 +, precedes = "m-vigau-88a" +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{m-vigau-88a -, author = "V. J. Milenkovic" -, title = "Verifiable Implementations of Geometric Algorithms using Finite Precision Arithmetic" -, journal = "Artif. Intell." -, volume = 37 -, year = 1988 -, pages = "377--401" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "robust geometric computation" -, succeeds = "m-vigau-88p, m-vigau-88t" -, update = "98.11 bibrelex, 97.03 daniels, 95.01 devillers" +, author = "V. J. Milenkovic" +, title = "Verifiable Implementations of Geometric Algorithms using Finite Precision Arithmetic" +, journal = "Artif. Intell." +, volume = 37 +, year = 1988 +, pages = "377--401" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "robust geometric computation" +, succeeds = "m-vigau-88p, m-vigau-88t" +, update = "98.11 bibrelex, 97.03 daniels, 95.01 devillers" } @inproceedings{ml-csche-89 -, author = "V. J. Milenkovic and Z. Li" -, title = "Constructing strongly convex hulls using exact or rounded arithmetic" -, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" -, year = 1989 -, update = "98.11 bibrelex" +, author = "V. J. Milenkovic and Z. Li" +, title = "Constructing strongly convex hulls using exact or rounded arithmetic" +, booktitle = "Proc. ACM-SIAM Sympos. Discrete Algorithms" +, year = 1989 +, update = "98.11 bibrelex" } @article{mm-roaom-97 -, author = "V. J. Milenkovic and V. Milenkovic" -, title = "Rational orthogonal approximations to orthogonal matrices" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "25--35" -, url = "https://www.cs.miami.edu/home/vjm/papers.html" -, keywords = "geometric modeling, quaternion arithmetic, basis reduction, integer programming, exact arithmetic" -, succeeds = "mm-roaom-93" -, update = "97.03 daniels" +, author = "V. J. Milenkovic and V. Milenkovic" +, title = "Rational orthogonal approximations to orthogonal matrices" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "25--35" +, url = "https://www.cs.miami.edu/home/vjm/papers.html" +, keywords = "geometric modeling, quaternion arithmetic, basis reduction, integer programming, exact arithmetic" +, succeeds = "mm-roaom-93" +, update = "97.03 daniels" } @article{m-spfes-70 -, author = "R. E. Miles" -, title = "A synopsis of {Poisson} flats in {Euclidean} spaces" -, journal = "J. Armenian Acad. Sci." -, volume = "??" -, year = 1970 -, pages = "??" -, update = "94.05 devillers" +, author = "R. E. Miles" +, title = "A synopsis of {Poisson} flats in {Euclidean} spaces" +, journal = "J. Armenian Acad. Sci." +, volume = "??" +, year = 1970 +, pages = "??" +, update = "94.05 devillers" } @article{m-wcdgp-64 -, author = "R. E. Miles" -, title = "A wide class of distributions in geometric probability" -, journal = "Ann. Math. Statist." -, volume = 35 -, year = 1964 -, pages = "1407--1415" +, author = "R. E. Miles" +, title = "A wide class of distributions in geometric probability" +, journal = "Ann. Math. Statist." +, volume = 35 +, year = 1964 +, pages = "1407--1415" } @article{m-agpp2-68 -, author = "R. E. Miles" -, title = "Asymptotic global proximity probabilities for $2$ bivariate $n$-sample (abstract)" -, journal = "Ann. Math. Statist." -, volume = 39 -, year = 1968 -, pages = 1160 +, author = "R. E. Miles" +, title = "Asymptotic global proximity probabilities for $2$ bivariate $n$-sample (abstract)" +, journal = "Ann. Math. Statist." +, volume = 39 +, year = 1968 +, pages = 1160 } @article{m-irs-71 -, author = "R. E. Miles" -, title = "Isotropic random simplices" -, journal = "Adv. Appl. Probab." -, volume = 3 -, year = 1971 -, pages = "353--382" -, update = "98.03 bibrelex" +, author = "R. E. Miles" +, title = "Isotropic random simplices" +, journal = "Adv. Appl. Probab." +, volume = 3 +, year = 1971 +, pages = "353--382" +, update = "98.03 bibrelex" } @article{m-hpppp-70 -, author = "R. E. Miles" -, title = "On the homogenous planar {Poisson} point-process" -, journal = "Math. Biosci." -, volume = 6 -, year = 1970 -, pages = "85--127" +, author = "R. E. Miles" +, title = "On the homogenous planar {Poisson} point-process" +, journal = "Math. Biosci." +, volume = 6 +, year = 1970 +, pages = "85--127" } @article{m-rpsts-71 -, author = "R. E. Miles" -, title = "Random points, sets and tessellations on the surface of a sphere" -, journal = "Sankhy{\=a}: The Indian Journal of Statistics: Series A" -, volume = 33 -, year = 1971 -, pages = "145--174" -, update = "94.09 bernal" +, author = "R. E. Miles" +, title = "Random points, sets and tessellations on the surface of a sphere" +, journal = "Sankhy{\=a}: The Indian Journal of Statistics: Series A" +, volume = 33 +, year = 1971 +, pages = "145--174" +, update = "94.09 bernal" } @article{m-rpdrl-64 -, author = "R. E. Miles" -, title = "Random polygons determined by random lines in a plane" -, journal = "Proc. National Academy of Sciences" -, volume = 52 -, year = 1964 -, pages = "901--907 and 1157--1160" +, author = "R. E. Miles" +, title = "Random polygons determined by random lines in a plane" +, journal = "Proc. National Academy of Sciences" +, volume = 52 +, year = 1964 +, pages = "901--907 and 1157--1160" } @phdthesis{m-rpgnd-61 -, author = "R. E. Miles" -, title = "Random polytopes: the generalization to $n$ dimensions of the intervals of a {Poisson} process" -, type = "Ph.{D}. Thesis" -, school = "Cambridge Univ." -, address = "Cambridge, England" -, year = 1961 -, keywords = "doctoral thesis" +, author = "R. E. Miles" +, title = "Random polytopes: the generalization to $n$ dimensions of the intervals of a {Poisson} process" +, type = "Ph.{D}. Thesis" +, school = "Cambridge Univ." +, address = "Cambridge, England" +, year = 1961 +, keywords = "doctoral thesis" } @article{m-sp671-69 -, author = "R. E. Miles" -, title = "Solution to problem 67-15 ({Probability} distribution of a network of triangles)" -, journal = "SIAM Rev." -, volume = 11 -, year = 1969 -, pages = "399--402" +, author = "R. E. Miles" +, title = "Solution to problem 67-15 ({Probability} distribution of a network of triangles)" +, journal = "SIAM Rev." +, volume = 11 +, year = 1969 +, pages = "399--402" } @article{m-rds-72 -, author = "R. E. Miles" -, title = "The random division of space" -, journal = "Suppl. Adv. Appl. Prob." -, volume = "??" -, year = 1972 -, pages = "243--266" -, update = "94.09 bernal" +, author = "R. E. Miles" +, title = "The random division of space" +, journal = "Suppl. Adv. Appl. Prob." +, volume = "??" +, year = 1972 +, pages = "243--266" +, update = "94.09 bernal" } @article{m-srsmr-85 -, author = "D. Miller" -, title = "A spatial representation system for mobile robots" -, journal = "Proc. IEEE Internat. Conf. Robot. Autom." -, volume = "??" -, school = "Dept. Comput. Sci., Yale Univ." -, address = "New Haven, CT" -, year = 1985 -, pages = "122--127" -, update = "93.09 milone+mitchell" +, author = "D. Miller" +, title = "A spatial representation system for mobile robots" +, journal = "Proc. IEEE Internat. Conf. Robot. Autom." +, volume = "??" +, school = "Dept. Comput. Sci., Yale Univ." +, address = "New Haven, CT" +, year = 1985 +, pages = "122--127" +, update = "93.09 milone+mitchell" } @inbook{mawm-ancmr-89 -, author = "D. Miller and D. Atkinson and B. Wilcox and A. Mishkin" -, editor = "T. Nishimura" -, booktitle = "Autonomous navigation and control of a {Mars} rover" -, publisher = "Pergamon Press" -, year = 1989 -, pages = "111--114" -, update = "97.11 bibrelex" +, author = "D. Miller and D. Atkinson and B. Wilcox and A. Mishkin" +, editor = "T. Nishimura" +, booktitle = "Autonomous navigation and control of a {Mars} rover" +, publisher = "Pergamon Press" +, year = 1989 +, pages = "111--114" +, update = "97.11 bibrelex" } @incollection{m-gdata-91 -, author = "G. Miller" -, title = "Goal-directed animation of tubular articulated figures or how snakes play golf" -, editor = "N. A. Badler and B. A. Barsky and D. Zeltzer" -, booktitle = "Making Them Move: Mechanics, Control, and Animation of Articulated Figures" -, publisher = "Morgan Kaufmann Publishers" -, address = "San Mateo, CA" -, year = 1991 -, pages = "233--241" -, update = "97.11 bibrelex" +, author = "G. Miller" +, title = "Goal-directed animation of tubular articulated figures or how snakes play golf" +, editor = "N. A. Badler and B. A. Barsky and D. Zeltzer" +, booktitle = "Making Them Move: Mechanics, Control, and Animation of Articulated Figures" +, publisher = "Morgan Kaufmann Publishers" +, address = "San Mateo, CA" +, year = 1991 +, pages = "233--241" +, update = "97.11 bibrelex" } @inproceedings{m-spgus-84 -, author = "G. Miller" -, title = "Separating a Planar Graph Using a Simple Cycle" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, site = "Washington, DC" -, year = 1984 -, update = "97.11 bibrelex" +, author = "G. Miller" +, title = "Separating a Planar Graph Using a Simple Cycle" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, site = "Washington, DC" +, year = 1984 +, update = "97.11 bibrelex" } @techreport{m-atgg-82 -, author = "G. L. Miller" -, title = "An additivity theorem for the genus of a graph" -, type = "Manuscript" -, institution = "Dept. Math., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1982 +, author = "G. L. Miller" +, title = "An additivity theorem for the genus of a graph" +, type = "Manuscript" +, institution = "Dept. Math., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1982 } @techreport{m-fsscs-85 -, author = "G. L. Miller" -, title = "Finding small simple cycle separators for $2$-connected planar graphs" -, type = "Report" -, number = "85-336" -, institution = "Dept. Comput. Sci., Univ. Southern California" -, address = "Los Angeles, CA" -, year = 1985 +, author = "G. L. Miller" +, title = "Finding small simple cycle separators for $2$-connected planar graphs" +, type = "Report" +, number = "85-336" +, institution = "Dept. Comput. Sci., Univ. Southern California" +, address = "Los Angeles, CA" +, year = 1985 } @article{m-fsscs-86 -, author = "G. L. Miller" -, title = "Finding small simple cycle separators for 2-connected planar graphs" -, journal = "J. Comput. Syst. Sci." -, volume = 32 -, number = 3 -, year = 1986 -, pages = "265--279" -, update = "97.11 bibrelex" +, author = "G. L. Miller" +, title = "Finding small simple cycle separators for 2-connected planar graphs" +, journal = "J. Comput. Syst. Sci." +, volume = 32 +, number = 3 +, year = 1986 +, pages = "265--279" +, update = "97.11 bibrelex" } @inproceedings{m-itgbg-80 -, author = "G. L. Miller" -, title = "Isomorphism testing for graphs of bounded genus" -, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." -, year = 1980 -, pages = "225--235" +, author = "G. L. Miller" +, title = "Isomorphism testing for graphs of bounded genus" +, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." +, year = 1980 +, pages = "225--235" } @inproceedings{mr-ptcia-85 -, author = "G. L. Miller and J. H. Reif" -, title = "Parallel Tree Contraction and its Applications" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "478--489" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "G. L. Miller and J. H. Reif" +, title = "Parallel Tree Contraction and its Applications" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "478--489" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{mttw-dbnmt-95 -, author = "G. L. Miller and D. Talmor and S.-H. Teng and N. Walkington" -, title = "A {Delaunay} based numerical method for three dimensions: generation, formulation, and partition" -, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." -, year = 1995 -, pages = "683--692" -, update = "95.09 smid" +, author = "G. L. Miller and D. Talmor and S.-H. Teng and N. Walkington" +, title = "A {Delaunay} based numerical method for three dimensions: generation, formulation, and partition" +, booktitle = "Proc. 27th Annu. ACM Sympos. Theory Comput." +, year = 1995 +, pages = "683--692" +, update = "95.09 smid" } @inproceedings{mttww-cvmus-96 -, author = "Gary L. Miller and Dafna Talmor and Shang-Hua Teng and Noel Walkington and Han Wang" -, title = "Control volume meshes using sphere packing: generation, refinement and coarsening" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "47--61" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Gary L. Miller and Dafna Talmor and Shang-Hua Teng and Noel Walkington and Han Wang" +, title = "Control volume meshes using sphere packing: generation, refinement and coarsening" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "47--61" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @techreport{mt-cppd-90 -, author = "G. L. Miller and S.-H. Teng" -, title = "Center Points and Point Divisions" -, type = "Manuscript" -, institution = "School of Comput. Sci., Carnegie Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1990 -, update = "98.03 bibrelex" +, author = "G. L. Miller and S.-H. Teng" +, title = "Center Points and Point Divisions" +, type = "Manuscript" +, institution = "School of Comput. Sci., Carnegie Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1990 +, update = "98.03 bibrelex" } @inproceedings{mttv-amp-92 -, author = "G. L. Miller and S.-H. Teng and W. Thurston and S. A. Vavasis" -, title = "Automatic Mesh Partitioning" -, booktitle = "Proc. of the 1992 Workshop on Sparse Matrix Computations: Graph Theory Issues and Algorithms" -, organization = "Institute for Mathematics and its Applications" -, year = 1992 -, note = "To appear" -, update = "98.03 bibrelex" +, author = "G. L. Miller and S.-H. Teng and W. Thurston and S. A. Vavasis" +, title = "Automatic Mesh Partitioning" +, booktitle = "Proc. of the 1992 Workshop on Sparse Matrix Computations: Graph Theory Issues and Algorithms" +, organization = "Institute for Mathematics and its Applications" +, year = 1992 +, note = "To appear" +, update = "98.03 bibrelex" } @article{mttv-gsfem-95 -, author = "G. L. Miller and S.-H. Teng and W. Thurston and S. A. Vavasis" -, title = "Geometric separators for finite element meshes" -, journal = "SIAM J. Sci. Comput." -, volume = "??" -, year = 1995 -, note = "Submitted" -, update = "97.11 bibrelex" +, author = "G. L. Miller and S.-H. Teng and W. Thurston and S. A. Vavasis" +, title = "Geometric separators for finite element meshes" +, journal = "SIAM J. Sci. Comput." +, volume = "??" +, year = 1995 +, note = "Submitted" +, update = "97.11 bibrelex" } @article{mttv-sspnn-97 -, author = "G. L. Miller and S.-H. Teng and W. Thurston and S. A. Vavasis" -, title = "Separators for sphere-packings and nearest neighbor graphs" -, journal = "J. ACM" -, volume = 44 -, year = 1997 -, pages = "1--29" -, update = "97.07 smid" +, author = "G. L. Miller and S.-H. Teng and W. Thurston and S. A. Vavasis" +, title = "Separators for sphere-packings and nearest neighbor graphs" +, journal = "J. ACM" +, volume = 44 +, year = 1997 +, pages = "1--29" +, update = "97.07 smid" } @inproceedings{mtv-ugags-91 -, author = "G. L. Miller and S.-H. Teng and S. A. Vavasis" -, title = "An unified geometric approach to graph separators" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "538--547" -, update = "97.11 bibrelex" +, author = "G. L. Miller and S.-H. Teng and S. A. Vavasis" +, title = "An unified geometric approach to graph separators" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "538--547" +, update = "97.11 bibrelex" } @inproceedings{mt-sttd-90 -, author = "Gary L. Miller and William Thurston" -, title = "Separators in Two and Three Dimensions" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "300--309" -, update = "97.11 bibrelex, 93.09 milone+mitchell" +, author = "Gary L. Miller and William Thurston" +, title = "Separators in Two and Three Dimensions" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "300--309" +, update = "97.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{mv-dgs-91 -, author = "G. L. Miller and S. A. Vavasis" -, title = "An unified geometric approach to graph separators" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "331--336" -, update = "98.03 bibrelex" +, author = "G. L. Miller and S. A. Vavasis" +, title = "An unified geometric approach to graph separators" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "331--336" +, update = "98.03 bibrelex" } @techreport{mv-dgs-90 -, author = "G. L. Miller and S. A. Vavasis" -, title = "Density graphs and separators" -, type = "Technical {Report}" -, number = "90-1169" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1990 -, update = "97.11 bibrelex" +, author = "G. L. Miller and S. A. Vavasis" +, title = "Density graphs and separators" +, type = "Technical {Report}" +, number = "90-1169" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1990 +, update = "97.11 bibrelex" } @article{m-ganqs-87 -, author = "J. R. Miller" -, title = "Geometric approaches to nonplanar quadric surface intersection curves" -, journal = "ACM Trans. Graph." -, volume = 6 -, year = 1987 -, pages = "274--307" +, author = "J. R. Miller" +, title = "Geometric approaches to nonplanar quadric surface intersection curves" +, journal = "ACM Trans. Graph." +, volume = 6 +, year = 1987 +, pages = "274--307" } @techreport{ms-eracu-91 -, author = "N. Miller and M. Sharir" -, title = "Efficient randomized algorithms for constructing the union of fat triangles and of pseudo-disks" -, type = "Manuscript" -, institution = "??" -, year = 1991 -, update = "98.03 bibrelex" +, author = "N. Miller and M. Sharir" +, title = "Efficient randomized algorithms for constructing the union of fat triangles and of pseudo-disks" +, type = "Manuscript" +, institution = "??" +, year = 1991 +, update = "98.03 bibrelex" } @unpublished{nm-eracu- -, author = "N. Miller and Micha Sharir" -, title = "Efficient randomized algorithms for constructing the union of fat triangles and pseudodiscs" -, note = "Unpublished manuscript" -, precedes = "ms-ericu-91" -, update = "98.11 bibrelex, 98.03 mitchell, 97.03 schwarzkopf" +, author = "N. Miller and Micha Sharir" +, title = "Efficient randomized algorithms for constructing the union of fat triangles and pseudodiscs" +, note = "Unpublished manuscript" +, precedes = "ms-ericu-91" +, update = "98.11 bibrelex, 98.03 mitchell, 97.03 schwarzkopf" } @techreport{ms-ericu-91 -, author = "N. Miller and M. Sharir" -, title = "Efficient randomized incremental construction of the union of fat triangles" -, type = "manuscript" -, year = 1991 -, succeeds = "nm-eracu-" -, update = "98.11 bibrelex" +, author = "N. Miller and M. Sharir" +, title = "Efficient randomized incremental construction of the union of fat triangles" +, type = "manuscript" +, year = 1991 +, succeeds = "nm-eracu-" +, update = "98.11 bibrelex" } @phdthesis{m-pca-85 -, author = "R. Miller" -, title = "Pyramid Computer Algorithms" -, school = "State Univ. New York" -, address = "Binghamton" -, year = 1985 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "R. Miller" +, title = "Pyramid Computer Algorithms" +, school = "State Univ. New York" +, address = "Binghamton" +, year = 1985 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @inproceedings{ms-cgmcc-84 -, author = "R. Miller and Q. F. Stout" -, title = "Computational geometry on a mesh connected computer" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1984 -, pages = "66--73" -, update = "93.05 devillers" +, author = "R. Miller and Q. F. Stout" +, title = "Computational geometry on a mesh connected computer" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1984 +, pages = "66--73" +, update = "93.05 devillers" } @article{ms-ccpip-91 -, author = "R. Miller and Q. F. Stout" -, title = "Computing convexity properties of images on a pyramid computer" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "658--684" -, succeeds = "ms-pcadg-85" +, author = "R. Miller and Q. F. Stout" +, title = "Computing convexity properties of images on a pyramid computer" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "658--684" +, succeeds = "ms-pcadg-85" } @inproceedings{ms-capc-84 -, author = "R. Miller and Q. F. Stout" -, title = "Convexity algorithms for pyramid computers" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1984 -, pages = "177--184" -, update = "97.11 bibrelex" +, author = "R. Miller and Q. F. Stout" +, title = "Convexity algorithms for pyramid computers" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1984 +, pages = "177--184" +, update = "97.11 bibrelex" } @misc{ms-dmtpc- -, author = "R. Miller and Q. F. Stout" -, title = "Data movement techniques for the pyramid computer" -, howpublished = "Submitted" -, update = "97.11 bibrelex" +, author = "R. Miller and Q. F. Stout" +, title = "Data movement techniques for the pyramid computer" +, howpublished = "Submitted" +, update = "97.11 bibrelex" } @article{ms-epcha-88 -, author = "R. Miller and Q. F. Stout" -, title = "Efficient parallel convex hull algorithms" -, journal = "IEEE Trans. Comput." -, volume = "C-37" -, number = 12 -, year = 1988 -, pages = "1605--1618" -, update = "93.05 devillers" +, author = "R. Miller and Q. F. Stout" +, title = "Efficient parallel convex hull algorithms" +, journal = "IEEE Trans. Comput." +, volume = "C-37" +, number = 12 +, year = 1988 +, pages = "1605--1618" +, update = "93.05 devillers" } @article{ms-gadpm-85 -, author = "R. Miller and Q. F. Stout" -, title = "Geometric algorithms for digitized pictures on a mesh-connected computer" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-7" -, year = 1985 -, pages = "216--228" -, update = "97.11 bibrelex" +, author = "R. Miller and Q. F. Stout" +, title = "Geometric algorithms for digitized pictures on a mesh-connected computer" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-7" +, year = 1985 +, pages = "216--228" +, update = "97.11 bibrelex" } @techreport{ms-ipmcc-85 -, author = "R. Miller and Q. F. Stout" -, title = "Intersection problems on a mesh-connected computer" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., State Univ. New York Buffalo" -, address = "Buffalo, NY" -, year = 1985 +, author = "R. Miller and Q. F. Stout" +, title = "Intersection problems on a mesh-connected computer" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., State Univ. New York Buffalo" +, address = "Buffalo, NY" +, year = 1985 } @techreport{ms-mcacg-86 -, author = "R. Miller and Q. F. Stout" -, title = "Mesh computer algorithms for computational geometry" -, type = "Report" -, number = "86-18" -, institution = "Dept. Comput. Sci., State Univ. New York Buffalo" -, address = "Buffalo, NY" -, year = 1986 +, author = "R. Miller and Q. F. Stout" +, title = "Mesh computer algorithms for computational geometry" +, type = "Report" +, number = "86-18" +, institution = "Dept. Comput. Sci., State Univ. New York Buffalo" +, address = "Buffalo, NY" +, year = 1986 } @article{ms-mcacg-89 -, author = "R. Miller and Q. F. Stout" -, title = "Mesh Computer Algorithms for Computational Geometry" -, journal = "IEEE Trans. Comput." -, volume = 38 -, number = 3 -, month = mar -, year = 1989 -, pages = "321--340" -, update = "93.09 held" +, author = "R. Miller and Q. F. Stout" +, title = "Mesh Computer Algorithms for Computational Geometry" +, journal = "IEEE Trans. Comput." +, volume = 38 +, number = 3 +, month = mar +, year = 1989 +, pages = "321--340" +, update = "93.09 held" } @inproceedings{ms-pcadg-85 -, author = "R. Miller and Q. F. Stout" -, title = "Pyramid computer algorithms for determining geometric properties of images" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "263--271" -, precedes = "ms-ccpip-91" -, cites = "as-mpabu-84, d-fpacp-80, m-pca-85, ms-capc-84, ms-dmtpc-, ms-cgmcc-84, ms-gadpm-85, ns-fccco-80, pu-mipa-82, r-dsls-74, s-pcpbg-81, s-ppmpe-, s-dslpc-82, s-smsft-83, s-pcscp-85, s-mpcig-85, t-pthpi-82, tk-scvmp-80, tk-smcpc-77, u-lrcnt-72, u-cav-84, vk-mnecd-82, ZZZ" -, update = "97.11 bibrelex" +, author = "R. Miller and Q. F. Stout" +, title = "Pyramid computer algorithms for determining geometric properties of images" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "263--271" +, precedes = "ms-ccpip-91" +, cites = "as-mpabu-84, d-fpacp-80, m-pca-85, ms-capc-84, ms-dmtpc-, ms-cgmcc-84, ms-gadpm-85, ns-fccco-80, pu-mipa-82, r-dsls-74, s-pcpbg-81, s-ppmpe-, s-dslpc-82, s-smsft-83, s-pcscp-85, s-mpcig-85, t-pthpi-82, tk-scvmp-80, tk-smcpc-77, u-lrcnt-72, u-cav-84, vk-mnecd-82, ZZZ" +, update = "97.11 bibrelex" } @incollection{m-casp-94 -, author = "Robert D. Miller" -, title = "Computing the Area of a Spherical Polygon" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "132--137" -, keywords = "cartography, Earth" -, update = "94.09 heckbert" -, annote = "Gives the formulas needed to find the area of a polygon on +, author = "Robert D. Miller" +, title = "Computing the Area of a Spherical Polygon" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "132--137" +, keywords = "cartography, Earth" +, update = "94.09 heckbert" +, annote = "Gives the formulas needed to find the area of a polygon on a sphere that is bounded by great circle arcs. This is useful in cartography. Contains C code." } @techreport{mi-epodm-?? -, author = "S. W. Miller and S. S. Iyengar" -, title = "Efficient polygon overlay for dense map image data sets" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "S. W. Miller and S. S. Iyengar" +, title = "Efficient polygon overlay for dense map image data sets" +, type = "Manuscript" +, institution = "??" +, year = "??" } @book{m-sgta-72 -, author = "W. Miller" -, title = "Symmetry Groups and their Application" -, publisher = "Academic Press" -, year = 1972 -, update = "97.11 bibrelex" +, author = "W. Miller" +, title = "Symmetry Groups and their Application" +, publisher = "Academic Press" +, year = 1972 +, update = "97.11 bibrelex" } @book{mw-srama-80 -, author = "W. Miller and C. Wrathall" -, title = "Software for Roundoff Analysis of Matrix Algorithms" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1980 -, update = "98.03 bibrelex" +, author = "W. Miller and C. Wrathall" +, title = "Software for Roundoff Analysis of Matrix Algorithms" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1980 +, update = "98.03 bibrelex" } @article{mo-ncmme-85 -, author = "Z. Miller and J. B. Orlin" -, title = "{NP}-Completeness for Minimizing Maximum Edge Length in Grid Embeddings" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "10--16" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "Z. Miller and J. B. Orlin" +, title = "{NP}-Completeness for Minimizing Maximum Edge Length in Grid Embeddings" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "10--16" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{m-krp3s-94 -, author = "Kenneth C. Millett" -, title = "Knotting of regular polygons in $3$-space" -, journal = "J. Knot Theory Ramifications" -, volume = 3 -, number = 3 -, year = 1994 -, pages = "263--278" -, update = "02.03 orourke" +, author = "Kenneth C. Millett" +, title = "Knotting of regular polygons in $3$-space" +, journal = "J. Knot Theory Ramifications" +, volume = 3 +, number = 3 +, year = 1994 +, pages = "263--278" +, update = "02.03 orourke" } @inproceedings{m-sdss-73 -, author = "W. Mills" -, title = "Some {Davenport--Schinzel} sequences" -, editor = "R. Thomas and H. Williams" -, booktitle = "Congressus Numer. IX: Proc. 3rd Manitoba Conf. on Numer. Math. and Computing" -, year = 1973 -, pages = "307--313" -, update = "95.09 agarwal" +, author = "W. Mills" +, title = "Some {Davenport--Schinzel} sequences" +, editor = "R. Thomas and H. Williams" +, booktitle = "Congressus Numer. IX: Proc. 3rd Manitoba Conf. on Numer. Math. and Computing" +, year = 1973 +, pages = "307--313" +, update = "95.09 agarwal" } @article{m-hgf15-82 -, author = "J. W. Milnor" -, title = "Hyperbolic geometry: the first 150 years" -, journal = "Bull. Amer. Math. Soc." -, volume = 6 -, number = 1 -, year = 1982 -, pages = "9--24" -, update = "98.07 agarwal" +, author = "J. W. Milnor" +, title = "Hyperbolic geometry: the first 150 years" +, journal = "Bull. Amer. Math. Soc." +, volume = 6 +, number = 1 +, year = 1982 +, pages = "9--24" +, update = "98.07 agarwal" } @book{m-mt-63 -, author = "John W. Milnor" -, title = "Morse Theory" -, publisher = "Princeton University Press" -, address = "Princeton, NJ" -, year = 1963 -, update = "98.03 agarwal+bibrelex" +, author = "John W. Milnor" +, title = "Morse Theory" +, publisher = "Princeton University Press" +, address = "Princeton, NJ" +, year = 1963 +, update = "98.03 agarwal+bibrelex" } @article{m-bnrav-64 -, author = "J. W. Milnor" -, title = "On the {Betti} numbers of real algebraic varieties" -, journal = "Proc. Amer. Math. Soc." -, volume = 15 -, year = 1964 -, pages = "275--280" -, update = "98.07 agarwal, 95.01 matousek" +, author = "J. W. Milnor" +, title = "On the {Betti} numbers of real algebraic varieties" +, journal = "Proc. Amer. Math. Soc." +, volume = 15 +, year = 1964 +, pages = "275--280" +, update = "98.07 agarwal, 95.01 matousek" } @unpublished{mv-psafs-86 -, author = "L. S. Milor and V. Visvanathan" -, title = "Preliminary studies on analog fault signature calculation" -, year = 1986 -, note = "Manuscript in preparation" -, update = "98.03 bibrelex" +, author = "L. S. Milor and V. Visvanathan" +, title = "Preliminary studies on analog fault signature calculation" +, year = 1986 +, note = "Manuscript in preparation" +, update = "98.03 bibrelex" } @article{msvt-cmic-94 -, author = "P. B. Miltersen and S. Sairam and J. S. Vitter and R. Tamassia" -, title = "Complexity Models for Incremental Computation" -, journal = "Theoret. Comput. Sci." -, volume = 130 -, year = 1994 -, pages = "203--236" -, keywords = "dynamic computation, complexity theory" -, succeeds = "svt-ctaic-93" -, update = "95.01 tamassia, 94.05 tamassia" +, author = "P. B. Miltersen and S. Sairam and J. S. Vitter and R. Tamassia" +, title = "Complexity Models for Incremental Computation" +, journal = "Theoret. Comput. Sci." +, volume = 130 +, year = 1994 +, pages = "203--236" +, keywords = "dynamic computation, complexity theory" +, succeeds = "svt-ctaic-93" +, update = "95.01 tamassia, 94.05 tamassia" } @inproceedings{mb-ismga-96 -, author = "Lai Mingwu and Steven E. Benzley" -, title = "An improved sweeping method for generating all hexahedral finite element meshes" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "217--225" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Lai Mingwu and Steven E. Benzley" +, title = "An improved sweeping method for generating all hexahedral finite element meshes" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "217--225" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @article{m-aludk-97 -, author = "H. Minkowski" -, title = "Allgemeine {Lehrs{\"a}tze} {\"u}ber die konvexen {Polyeder}" -, journal = "Nachr. Ges. Wiss. G{\"o}ttingen" -, volume = "??" -, year = 1897 -, pages = "198--219" -, update = "97.11 bibrelex" +, author = "H. Minkowski" +, title = "Allgemeine {Lehrs{\"a}tze} {\"u}ber die konvexen {Polyeder}" +, journal = "Nachr. Ges. Wiss. G{\"o}ttingen" +, volume = "??" +, year = 1897 +, pages = "198--219" +, update = "97.11 bibrelex" } @article{m-vuo-03 -, author = "H. Minkowski" -, title = "Volumen und {Oberfl{\"a}chen}" -, journal = "Math. Ann." -, volume = 57 -, year = 1903 -, pages = "447--495" -, update = "98.03 bibrelex" +, author = "H. Minkowski" +, title = "Volumen und {Oberfl{\"a}chen}" +, journal = "Math. Ann." +, volume = 57 +, year = 1903 +, pages = "447--495" +, update = "98.03 bibrelex" } @book{m-mpta-86 -, author = "M. Minoux" -, title = "Mathematical programming-theory and algorithms" -, publisher = "John Wiley \& Sons" -, address = "Chichester, UK" -, year = 1986 -, update = "99.11 bibrelex, 97.11 bibrelex" +, author = "M. Minoux" +, title = "Mathematical programming-theory and algorithms" +, publisher = "John Wiley \& Sons" +, address = "Chichester, UK" +, year = 1986 +, update = "99.11 bibrelex, 97.11 bibrelex" } @inproceedings{mag-adcma-98 -, author = "Darka Mioc and Fran{\c c}ois Anton and Christopher M. Gold" -, title = "An Algorithm for the Dynamic Construction and Maintenance of Additively Weighted {Voronoi} Diagrams" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "117--119" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Darka Mioc and Fran{\c c}ois Anton and Christopher M. Gold" +, title = "An Algorithm for the Dynamic Construction and Maintenance of Additively Weighted {Voronoi} Diagrams" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "117--119" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{mw-rsact-82 -, author = "A. Mirante and N. Weingarten" -, title = "The Radial Sweep Algorithm for Constructing Triangulated Irreguler Networks" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, month = may -, year = 1982 -, pages = "11--21" -, annote = "Triangulation of a set of point. Selects an internal - point and joins it to all other points and then - completes triangulation by proceeding around the - boundary. Triangulation is improved by switchings - picking the shorter diagonal." +, author = "A. Mirante and N. Weingarten" +, title = "The Radial Sweep Algorithm for Constructing Triangulated Irreguler Networks" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, month = may +, year = 1982 +, pages = "11--21" +, annote = "Triangulation of a set of point. Selects an internal + point and joins it to all other points and then + completes triangulation by proceeding around the + boundary. Triangulation is improved by switchings + picking the shorter diagonal." } @book{mf-dlt-90 -, editor = "P. B. Mirchandani and R. L. Francis" -, booktitle = "Discrete Location Theory" -, publisher = "John Wiley \& Sons" -, year = 1990 -, pages = "xvi+555" -, keywords = "facility location" -, update = "99.11 bibrelex, 95.09 korneenko" +, editor = "P. B. Mirchandani and R. L. Francis" +, booktitle = "Discrete Location Theory" +, publisher = "John Wiley \& Sons" +, year = 1990 +, pages = "xvi+555" +, keywords = "facility location" +, update = "99.11 bibrelex, 95.09 korneenko" } @inproceedings{mht-iaagl-93 -, author = "K. Miriyala and S. W. Hornick and R. Tamassia" -, title = "An Incremental Approach to Aesthetic Graph Layout" -, booktitle = "Proc. Internat. Workshop on Computer-Aided Software Engineering" -, nickname = "CASE '93" -, year = 1993 -, update = "94.01 tamassia" +, author = "K. Miriyala and S. W. Hornick and R. Tamassia" +, title = "An Incremental Approach to Aesthetic Graph Layout" +, booktitle = "Proc. Internat. Workshop on Computer-Aided Software Engineering" +, nickname = "CASE '93" +, year = 1993 +, update = "94.01 tamassia" } @inproceedings{m-cmga-94 -, author = "C. Mirolo" -, title = "Convex Minimization on a Grid and Applications" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "314--319" -, cites = "c-cdfdi-90, c-cdmp-86, cd-icott-87, dk-fdpi-83, dk-dsppu-90, dhks-isccd-90, egs-oplms-86, gf-cdgco-90, gw-dadpi-91, mp-smsra-89, ny-pcmeo-83, sk-ccmpc-92, ssk-cdmpp-93, m-pacdc-94, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "C. Mirolo" +, title = "Convex Minimization on a Grid and Applications" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "314--319" +, cites = "c-cdfdi-90, c-cdmp-86, cd-icott-87, dk-fdpi-83, dk-dsppu-90, dhks-isccd-90, egs-oplms-86, gf-cdgco-90, gw-dadpi-91, mp-smsra-89, ny-pcmeo-83, sk-ccmpc-92, ssk-cdmpp-93, m-pacdc-94, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @mastersthesis{m-pacdc-94 -, author = "C. Mirolo" -, title = "Polylogarithmic Algorithms for Collision Detection based on Convex Minimization" -, number = "UDMI/01/94/RR" -, school = "Univ. di Udine" -, month = jan -, year = 1994 -, note = "Dip. di Matematica e Informatica" -, keywords = "master thesis" -, update = "98.11 bibrelex" +, author = "C. Mirolo" +, title = "Polylogarithmic Algorithms for Collision Detection based on Convex Minimization" +, number = "UDMI/01/94/RR" +, school = "Univ. di Udine" +, month = jan +, year = 1994 +, note = "Dip. di Matematica e Informatica" +, keywords = "master thesis" +, update = "98.11 bibrelex" } @article{mp-smsra-89 -, author = "C. Mirolo and E. Pagello" -, title = "A Solid Modeling System for Robot Action Planning" -, journal = "IEEE Comput. Graph. Appl." -, volume = 9 -, number = 1 -, year = 1989 -, pages = "55--69" -, update = "98.11 bibrelex" +, author = "C. Mirolo and E. Pagello" +, title = "A Solid Modeling System for Robot Action Planning" +, journal = "IEEE Comput. Graph. Appl." +, volume = 9 +, number = 1 +, year = 1989 +, pages = "55--69" +, update = "98.11 bibrelex" } @article{m-facpm-96 -, author = "B. Mirtich" -, title = "Fast and Accurate Computation of Polyhedral Mass Properties" -, journal = "J. Graphics Tools" -, volume = 1 -, number = 2 -, year = 1996 -, pages = "31--50" -, update = "97.11 held" +, author = "B. Mirtich" +, title = "Fast and Accurate Computation of Polyhedral Mass Properties" +, journal = "J. Graphics Tools" +, volume = 1 +, number = 2 +, year = 1996 +, pages = "31--50" +, update = "97.11 held" } @inproceedings{m-hscci-95 -, author = "B. Mirtich" -, title = "Hybrid Simulation: Combining constraints and impulses" -, booktitle = "Workshop on Simulation and Interaction in Virtual Environments" -, organization = "Office of Naval Research" -, month = jul -, year = 1995 -, pages = "153--158" -, update = "97.11 bibrelex" +, author = "B. Mirtich" +, title = "Hybrid Simulation: Combining constraints and impulses" +, booktitle = "Workshop on Simulation and Interaction in Virtual Environments" +, organization = "Office of Naval Research" +, month = jul +, year = 1995 +, pages = "153--158" +, update = "97.11 bibrelex" } @techreport{m-vfrpc-97 -, author = "B. Mirtich" -, title = "{V-Clip}: {Fast} and Robust Polyhedral Collision Detection" -, number = "TR97-05" -, institution = "MERL" -, address = "201 Broadway, Cambridge, MA 02139, USA" -, month = jul -, year = 1997 -, update = "98.03 mitchell" -, annote = "URL: http://www.merl.com/reports/TR97-05/index.html; +, author = "B. Mirtich" +, title = "{V-Clip}: {Fast} and Robust Polyhedral Collision Detection" +, number = "TR97-05" +, institution = "MERL" +, address = "201 Broadway, Cambridge, MA 02139, USA" +, month = jul +, year = 1997 +, update = "98.03 mitchell" +, annote = "URL: http://www.merl.com/reports/TR97-05/index.html; submitted to ACM ToG" -, abstract = " +, abstract = " This paper presents the Voronoi-clip, or V-clip, collision detection algorithm for polyhedral objects specified by a boundary representation. V-clip tracks the closest pair of features between convex polyhedra, using an approach @@ -105744,1290 +105744,1290 @@ @techreport{m-vfrpc-97 } @article{m-vcfrp-98 -, author = "B. Mirtich" -, title = "V-Clip: Fast and Robust Polyhedral Collision Detection" -, journal = "ACM Trans. Graph." -, volume = 17 -, number = 3 -, month = jul -, year = 1998 -, pages = "177--208" -, succeeds = "m-vfrpc-97" -, update = "99.03 held" +, author = "B. Mirtich" +, title = "V-Clip: Fast and Robust Polyhedral Collision Detection" +, journal = "ACM Trans. Graph." +, volume = 17 +, number = 3 +, month = jul +, year = 1998 +, pages = "177--208" +, succeeds = "m-vfrpc-97" +, update = "99.03 held" } @incollection{mc-ibds-95 -, author = "B. Mirtich and J. Canny" -, title = "Impulse-based dynamic simulation" -, editor = "K. Goldberg and D. Halperin and J.-C. Latombe and R. Wilson" -, booktitle = "The Algorithmic Foundations of Robotics" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1995 -, update = "99.11 bibrelex, 98.07 agarwal, 97.11 bibrelex" +, author = "B. Mirtich and J. Canny" +, title = "Impulse-based dynamic simulation" +, editor = "K. Goldberg and D. Halperin and J.-C. Latombe and R. Wilson" +, booktitle = "The Algorithmic Foundations of Robotics" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1995 +, update = "99.11 bibrelex, 98.07 agarwal, 97.11 bibrelex" } @inproceedings{mc-ibsrb-95 -, author = "B. Mirtich and J. Canny" -, title = "Impulse-based simulation of rigid bodies" -, booktitle = "Symposium on Interactive 3D Graphics" -, site = "New York" -, publisher = "ACM Press" -, year = 1995 -, update = "97.11 bibrelex" +, author = "B. Mirtich and J. Canny" +, title = "Impulse-based simulation of rigid bodies" +, booktitle = "Symposium on Interactive 3D Graphics" +, site = "New York" +, publisher = "ACM Press" +, year = 1995 +, update = "97.11 bibrelex" } @inproceedings{mc-tcsti-96 -, author = "Brian Mirtich and John Canny" -, title = "Testing control systems through impulse-based simulation" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V5--V6" -, cites = "f-crdua-83, g-cbnnn-94, hwbo-aha-95, l-ecdar-93, mz-dsall-90, m-gdata-91, m-hscci-95, mc-ibds-95, mc-ibsrb-95, o-plfs-92, rh-adll-91, r-fhsdb-87, s-evc-94, tt-afplp-94, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Brian Mirtich and John Canny" +, title = "Testing control systems through impulse-based simulation" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V5--V6" +, cites = "f-crdua-83, g-cbnnn-94, hwbo-aha-95, l-ecdar-93, mz-dsall-90, m-gdata-91, m-hscci-95, mc-ibds-95, mc-ibsrb-95, o-plfs-92, rh-adll-91, r-fhsdb-87, s-evc-94, tt-afplp-94, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @inproceedings{mc-usnpp-92 -, author = "Brian Mirtich and John Canny" -, title = "Using Skeletons for Nonholonomic Path Planning Among Obstacles" -, booktitle = "Proc. 9th IEEE Internat. Conf. Robot. Autom." -, year = 1992 -, pages = "2533--2540" -, update = "98.03 mitchell" +, author = "Brian Mirtich and John Canny" +, title = "Using Skeletons for Nonholonomic Path Planning Among Obstacles" +, booktitle = "Proc. 9th IEEE Internat. Conf. Robot. Autom." +, year = 1992 +, pages = "2533--2540" +, update = "98.03 mitchell" } @inproceedings{m-cpdls-90 -, author = "A. Mirzaian" -, title = "Circumscribing polygon of disjoint line segments" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "319--323" -, cites = "agss-ltacv-89, gt-ltafm-88, g-eadch-72, ms-fmapp-89, r-cscsl-87, rit-cscsl-90, ZZZ" -, update = "98.07 bibrelex" +, author = "A. Mirzaian" +, title = "Circumscribing polygon of disjoint line segments" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "319--323" +, cites = "agss-ltacv-89, gt-ltafm-88, g-eadch-72, ms-fmapp-89, r-cscsl-87, rit-cscsl-90, ZZZ" +, update = "98.07 bibrelex" } @article{m-htcpd-92 -, author = "A. Mirzaian" -, title = "Hamiltonian triangulations and circumscribing polygons of disjoint line segments" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 1 -, year = 1992 -, pages = "15--30" +, author = "A. Mirzaian" +, title = "Hamiltonian triangulations and circumscribing polygons of disjoint line segments" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 1 +, year = 1992 +, pages = "15--30" } @inproceedings{m-mwemw-93 -, author = "Andy Mirzaian" -, title = "Minimum Weight {Euclidean} Matching and Weighted Relative Neighborhood Graphs" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "506--517" -, update = "96.05 agarwal, 93.09 smid, 93.05 jones" +, author = "Andy Mirzaian" +, title = "Minimum Weight {Euclidean} Matching and Weighted Relative Neighborhood Graphs" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "506--517" +, update = "96.05 agarwal, 93.09 smid, 93.05 jones" } @techreport{m-tsppt-88 -, author = "A. Mirzaian" -, title = "Triangulating simple polygons: pseudo-triangulations" -, type = "Technical {Report}" -, number = "CS-88-12" -, institution = "Dept. Comput. Sci., York Univ." -, address = "Toronto, ON" -, month = sep -, year = 1988 -, annote = "``We propose the new concept of {\em - pseudo-triangulation}, a generalized version of - triangulation, in which the member triangles need not - all have the same orientation. In this paper we explore - some combinatorial and topological properties of - pseudo-triangulations.''" +, author = "A. Mirzaian" +, title = "Triangulating simple polygons: pseudo-triangulations" +, type = "Technical {Report}" +, number = "CS-88-12" +, institution = "Dept. Comput. Sci., York Univ." +, address = "Toronto, ON" +, month = sep +, year = 1988 +, annote = "``We propose the new concept of {\em + pseudo-triangulation}, a generalized version of + triangulation, in which the member triangles need not + all have the same orientation. In this paper we explore + some combinatorial and topological properties of + pseudo-triangulations.''" } @inproceedings{mwx-slst-96 -, author = "A. Mirzaian and C. A. Wang and Y.-F. Xu" -, title = "On stable line segments in triangulations" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "62--67" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "A. Mirzaian and C. A. Wang and Y.-F. Xu" +, title = "On stable line segments in triangulations" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "62--67" +, update = "97.03 agarwal, 96.09 mitchell" } @incollection{m-crag-97 -, author = "B. Mishra" -, title = "Computational real algebraic geometry" -, chapter = 29 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "537--558" -, update = "97.11 orourke" +, author = "B. Mishra" +, title = "Computational real algebraic geometry" +, chapter = 29 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "537--558" +, update = "97.11 orourke" } @inproceedings{m-wap-91 -, author = "B. Mishra" -, title = "Workholding: {Analysis} and planning" -, booktitle = "Proc. IEEE/RSJ Internat. Conf. Intell. Robots Syst." -, month = jul -, year = 1991 -, update = "98.03 bibrelex" +, author = "B. Mishra" +, title = "Workholding: {Analysis} and planning" +, booktitle = "Proc. IEEE/RSJ Internat. Conf. Intell. Robots Syst." +, month = jul +, year = 1991 +, update = "98.03 bibrelex" } @article{mss-esmpg-87 -, author = "B. Mishra and J. T. Schwartz and Micha Sharir" -, title = "On the existence and synthesis of multifinger positive grips" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "541--558" -, keywords = "robot grasping, convex hull" -, update = "98.03 mitchell" +, author = "B. Mishra and J. T. Schwartz and Micha Sharir" +, title = "On the existence and synthesis of multifinger positive grips" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "541--558" +, keywords = "robot grasping, convex hull" +, update = "98.03 mitchell" } @article{ms-sdsgi-89 -, author = "B. Mishra and N. Silver" -, title = "Some discussion of static gripping and its stabiliy" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 19 -, number = 4 -, year = 1989 -, update = "98.07 bibrelex" +, author = "B. Mishra and N. Silver" +, title = "Some discussion of static gripping and its stabiliy" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 19 +, number = 4 +, year = 1989 +, update = "98.07 bibrelex" } @techreport{my-ngb-86 -, author = "B. Mishra and C. K. Yap" -, title = "Notes on {Gr{\"o}bner} bases" -, type = "Technical {Report}" -, number = 257 -, institution = "Dept. Comput. Sci., New York. Univ." -, address = "New York, NY" -, month = sep -, year = 1986 -, update = "98.03 bibrelex" +, author = "B. Mishra and C. K. Yap" +, title = "Notes on {Gr{\"o}bner} bases" +, type = "Technical {Report}" +, number = 257 +, institution = "Dept. Comput. Sci., New York. Univ." +, address = "New York, NY" +, month = sep +, year = 1986 +, update = "98.03 bibrelex" } @article{mg-fre-82 -, author = "J. Misra and D. Gries" -, title = "Finding repeated elements" -, journal = "Sc. Comp. Prog." -, volume = 2 -, year = 1982 -, pages = "143--152" -, update = "98.07 bibrelex" +, author = "J. Misra and D. Gries" +, title = "Finding repeated elements" +, journal = "Sc. Comp. Prog." +, volume = 2 +, year = 1982 +, pages = "143--152" +, update = "98.07 bibrelex" } @article{mels-lamm-95 -, author = "K. Misue and Peter Eades and W. Lai and K. Sugiyama" -, title = "Layout Adjustment and the Mental Map" -, journal = "J. Visual Lang. Comput." -, volume = 6 -, number = 2 -, year = 1995 -, pages = "183--210" -, update = "98.07 tamassia+vismara" +, author = "K. Misue and Peter Eades and W. Lai and K. Sugiyama" +, title = "Layout Adjustment and the Mental Map" +, journal = "J. Visual Lang. Comput." +, volume = 6 +, number = 2 +, year = 1995 +, pages = "183--210" +, update = "98.07 tamassia+vismara" } @inproceedings{mha-asspg-95 -, author = "Curtis R. Mitchell and Gary S. Hufford and Mahesh M. Athavale" -, title = "Automated Semi-Structured Prismatic Grids for Brush Seals Analysis" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "205--217" -, update = "96.01 samitchell" +, author = "Curtis R. Mitchell and Gary S. Hufford and Mahesh M. Athavale" +, title = "Automated Semi-Structured Prismatic Grids for Brush Seals Analysis" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "205--217" +, update = "96.01 samitchell" } @article{m-sosdr-91 -, author = "D. P. Mitchell" -, title = "Spectrally optimal sampling for distribution ray tracing" -, journal = "Comput. Graph." -, volume = 25 -, number = 4 -, year = 1991 -, pages = "157--162" -, note = "Proc. SIGGRAPH '91" -, update = "98.03 bibrelex" +, author = "D. P. Mitchell" +, title = "Spectrally optimal sampling for distribution ray tracing" +, journal = "Comput. Graph." +, volume = 25 +, number = 4 +, year = 1991 +, pages = "157--162" +, note = "Proc. SIGGRAPH '91" +, update = "98.03 bibrelex" } @techreport{m-carte-87 -, author = "F. Mitchell" -, title = "A comparisom of adaptive refinement techniques for elliptic problems" -, type = "Report" -, number = "UIUCDCS-R-87-1375" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana-Champaign, IL" -, year = 1987 -, update = "97.11 bibrelex" +, author = "F. Mitchell" +, title = "A comparisom of adaptive refinement techniques for elliptic problems" +, type = "Report" +, number = "UIUCDCS-R-87-1375" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana-Champaign, IL" +, year = 1987 +, update = "97.11 bibrelex" } @techreport{m-umafe-88 -, author = "F. Mitchell" -, title = "Unified multilevel adaptive finite element methods for elliptic problems" -, type = "Report" -, number = "UIUCDCS-R-88-1446" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana-Champaign, IL" -, year = 1988 -, update = "97.11 bibrelex" +, author = "F. Mitchell" +, title = "Unified multilevel adaptive finite element methods for elliptic problems" +, type = "Report" +, number = "UIUCDCS-R-88-1446" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana-Champaign, IL" +, year = 1988 +, update = "97.11 bibrelex" } @techreport{m-acvpp-90 -, author = "J. Mitchell" -, title = "Algorithmic Computer Vision" -, type = "manuscript" -, institution = "The Probing Paradigm" -, month = nov -, year = 1990 -, note = "Workshop on Geometric Probing and Computer Vision" -, update = "98.11 bibrelex" +, author = "J. Mitchell" +, title = "Algorithmic Computer Vision" +, type = "manuscript" +, institution = "The Probing Paradigm" +, month = nov +, year = 1990 +, note = "Workshop on Geometric Probing and Computer Vision" +, update = "98.11 bibrelex" } @inproceedings{m-aagop-97 -, author = "Joseph Mitchell" -, title = "Approximation Algorithms for Geometric Optimization Problems" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "229--232" -, update = "97.11 jones" +, author = "Joseph Mitchell" +, title = "Approximation Algorithms for Geometric Optimization Problems" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "229--232" +, update = "97.11 jones" } @techreport{m-naspo-88 -, author = "Joseph S. B. Mitchell" -, title = "A new algorithm for shortest paths among obstacles in the plane" -, type = "Technical {Report}" -, number = 832 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, month = oct -, year = 1988 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Joseph S. B. Mitchell" +, title = "A new algorithm for shortest paths among obstacles in the plane" +, type = "Technical {Report}" +, number = 832 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, month = oct +, year = 1988 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{m-naspo-91 -, author = "Joseph S. B. Mitchell" -, title = "A new algorithm for shortest paths among obstacles in the plane" -, journal = "Ann. Math. Artif. Intell." -, volume = 3 -, year = 1991 -, pages = "83--106" -, keywords = "shortest paths, distance, continuous Dijkstra, visibility" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "A new algorithm for shortest paths among obstacles in the plane" +, journal = "Ann. Math. Artif. Intell." +, volume = 3 +, year = 1991 +, pages = "83--106" +, keywords = "shortest paths, distance, continuous Dijkstra, visibility" +, update = "98.03 mitchell" } @inproceedings{m-aaorp-90 -, author = "Joseph S. B. Mitchell" -, title = "Algorithmic approaches to optimal route planning" -, booktitle = "Proc. SPIE Conference on Mobile Robots" -, site = "Boston, MA" -, month = nov -, year = 1990 -, pages = "??" -, keywords = "shortest paths, visibility graphs, weighted regions" -, update = "00.11 smid, 00.07 icking, 98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "Algorithmic approaches to optimal route planning" +, booktitle = "Proc. SPIE Conference on Mobile Robots" +, site = "Boston, MA" +, month = nov +, year = 1990 +, pages = "??" +, keywords = "shortest paths, visibility graphs, weighted regions" +, update = "00.11 smid, 00.07 icking, 98.03 mitchell" } @inproceedings{m-aaspt-86 -, author = "J. S. B. Mitchell" -, title = "An algorithmic approach to some problems in terrain navigation" -, booktitle = "International Workshop on Geometric Reasoning" -, site = "Oxford, UK" -, month = jun -, year = 1986 -, update = "98.03 bibrelex" +, author = "J. S. B. Mitchell" +, title = "An algorithmic approach to some problems in terrain navigation" +, booktitle = "International Workshop on Geometric Reasoning" +, site = "Oxford, UK" +, month = jun +, year = 1986 +, update = "98.03 bibrelex" } @article{m-aaspt-88 -, author = "Joseph S. B. Mitchell" -, title = "An algorithmic approach to some problems in terrain navigation" -, journal = "Artif. Intell." -, volume = 37 -, year = 1988 -, pages = "171--201" -, keywords = "path planning, geodesic distance, shortest paths, continuous Dijkstra" -, precedes = "m-aaspt-89" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "An algorithmic approach to some problems in terrain navigation" +, journal = "Artif. Intell." +, volume = 37 +, year = 1988 +, pages = "171--201" +, keywords = "path planning, geodesic distance, shortest paths, continuous Dijkstra" +, precedes = "m-aaspt-89" +, update = "99.11 bibrelex, 98.03 mitchell" } @incollection{m-aaspt-89 -, author = "Joseph S. B. Mitchell" -, title = "An algorithmic approach to some problems in terrain navigation" -, editor = "D. Kapur and J. Mundy" -, booktitle = "Geometric Reasoning" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1989 -, keywords = "path planning, geodesic distance, shortest paths, continuous Dijkstra" -, succeeds = "m-aaspt-88" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "An algorithmic approach to some problems in terrain navigation" +, editor = "D. Kapur and J. Mundy" +, booktitle = "Geometric Reasoning" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1989 +, keywords = "path planning, geodesic distance, shortest paths, continuous Dijkstra" +, succeeds = "m-aaspt-88" +, update = "99.11 bibrelex, 98.03 mitchell" } @incollection{m-aaspt-91 -, author = "Joseph S. B. Mitchell" -, title = "An algorithmic approach to some problems in terrain navigation" -, editor = "S. Sitharama Iyengar and Alberto Elfes" -, booktitle = "Autonomous Mobile Robots: Perception, Mapping, and Navigation" -, publisher = "IEEE Computer Society Press" -, address = "Los Alamitos, CA" -, year = 1991 -, pages = "408--427" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "An algorithmic approach to some problems in terrain navigation" +, editor = "S. Sitharama Iyengar and Alberto Elfes" +, booktitle = "Autonomous Mobile Robots: Perception, Mapping, and Navigation" +, publisher = "IEEE Computer Society Press" +, address = "Los Alamitos, CA" +, year = 1991 +, pages = "408--427" +, update = "98.03 mitchell" } @inproceedings{m-avna-84 -, author = "Joseph S. B. Mitchell" -, title = "An Autonomous Vehicle Navigation Algorithm" -, booktitle = "Proc. SPIE Applications of Artificial Intelligence" -, volume = 485 -, year = 1984 -, pages = "153--158" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "An Autonomous Vehicle Navigation Algorithm" +, booktitle = "Proc. SPIE Applications of Artificial Intelligence" +, volume = 485 +, year = 1984 +, pages = "153--158" +, update = "98.03 mitchell" } @techreport{m-eamld-89 -, author = "Joseph S. B. Mitchell" -, title = "An efficient algorithm for minimum link distance paths among obstacles in the plane" -, type = "Manuscript" -, institution = "Cornell Univ." -, year = 1989 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Joseph S. B. Mitchell" +, title = "An efficient algorithm for minimum link distance paths among obstacles in the plane" +, type = "Manuscript" +, institution = "Cornell Univ." +, year = 1989 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{m-oasrp-89 -, author = "Joseph S. B. Mitchell" -, title = "An optimal algorithm for shortest rectilinear paths among obstacles" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 22 -, keywords = "shortest paths, two-dimensional, distance, $L_{1}$ metric, continuous Dijkstra, plane-sweep, range search" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "An optimal algorithm for shortest rectilinear paths among obstacles" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 22 +, keywords = "shortest paths, two-dimensional, distance, $L_{1}$ metric, continuous Dijkstra, plane-sweep, range search" +, update = "98.03 mitchell" } @techreport{m-aagsp-93 -, author = "Joseph S. B. Mitchell" -, title = "Approximation Algorithms for Geometric Separation Problems" -, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" -, month = jul -, year = 1993 -, url = "http://ams.sunysb.edu/\~{ }jsbm/jsbm.html" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "Approximation Algorithms for Geometric Separation Problems" +, institution = "Department of Applied Mathematics, SUNY Stony Brook, NY" +, month = jul +, year = 1993 +, url = "http://ams.sunysb.edu/\~{ }jsbm/jsbm.html" +, update = "98.03 mitchell, 95.01 mitchell" } @techreport{m-cgmvr-93 -, author = "J. S. B. Mitchell" -, title = "Computational geometry methods for virtual reality" -, type = "Manuscript" -, institution = "Department of Applied Mathematics, SUNY Stony Brook" -, year = 1993 -, update = "98.03 bibrelex" +, author = "J. S. B. Mitchell" +, title = "Computational geometry methods for virtual reality" +, type = "Manuscript" +, institution = "Department of Applied Mathematics, SUNY Stony Brook" +, year = 1993 +, update = "98.03 bibrelex" } @techreport{m-esppo-94 -, author = "Joseph S. B. Mitchell" -, title = "Euclidean shortest paths among polygonal obstacles in the plane" -, type = "Technical {Report}" -, institution = "University at Stony Brook" -, year = 1994 -, precedes = "kmm-eaesp-97" -, update = "98.03 mitchell, 96.05 mitchell" -, annote = "Gives an $O(n+ h^2\log n)$ algorithm for shortest +, author = "Joseph S. B. Mitchell" +, title = "Euclidean shortest paths among polygonal obstacles in the plane" +, type = "Technical {Report}" +, institution = "University at Stony Brook" +, year = 1994 +, precedes = "kmm-eaesp-97" +, update = "98.03 mitchell, 96.05 mitchell" +, annote = "Gives an $O(n+ h^2\log n)$ algorithm for shortest paths" } @incollection{m-gspno-00 -, author = "Joseph S. B. Mitchell" -, title = "Geometric Shortest Paths and Network Optimization" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "633--701" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell" -, annote = "Chapter 15 of su-hcg-00" +, author = "Joseph S. B. Mitchell" +, title = "Geometric Shortest Paths and Network Optimization" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "633--701" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 98.07 mitchell" +, annote = "Chapter 15 of su-hcg-00" } @inproceedings{m-gsaps-96 -, author = "Joseph S. B. Mitchell" -, title = "Guillotine subdivisions approximate polygonal subdivisions: {A} simple new method for the geometric {$k$-MST} problem" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "402--408" -, keywords = "k-MST, approximations, rectangular subdivisions, dynamic programming, red-blue separation, minimum spanning tree" -, precedes = "mbcv-cfaag-98" -, update = "98.03 mitchell, 96.09 agarwal, 96.01 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "Guillotine subdivisions approximate polygonal subdivisions: {A} simple new method for the geometric {$k$-MST} problem" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "402--408" +, keywords = "k-MST, approximations, rectangular subdivisions, dynamic programming, red-blue separation, minimum spanning tree" +, precedes = "mbcv-cfaag-98" +, update = "98.03 mitchell, 96.09 agarwal, 96.01 mitchell" } @article{m-gsaps-99 -, author = "Joseph S. B. Mitchell" -, title = "Guillotine Subdivisions Approximate Polygonal Subdivisions: {A} Simple Polynomial-Time Approximation Scheme for Geometric {TSP}, {$k$-MST}, and Related Problems" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1999 -, pages = "1298--1309" -, url = "http://ams.sunysb.edu/~jsbm/jsbm.html" -, update = "99.11 smid, 98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "Guillotine Subdivisions Approximate Polygonal Subdivisions: {A} Simple Polynomial-Time Approximation Scheme for Geometric {TSP}, {$k$-MST}, and Related Problems" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1999 +, pages = "1298--1309" +, url = "http://ams.sunysb.edu/~jsbm/jsbm.html" +, update = "99.11 smid, 98.03 mitchell" } @techreport{m-gsaps-96t -, author = "Joseph S. B. Mitchell" -, title = "Guillotine Subdivisions Approximate Polygonal Subdivisions: {Part II} -- {A} Simple Polynomial-Time Approximation Scheme for Geometric {TSP}, {$k$-MST}, and Related Problems" -, type = "Manuscript" -, institution = "University at Stony Brook" -, year = 1996 -, url = "http://ams.sunysb.edu/~jsbm/jsbm.html" -, precedes = "m-gsaps-98" -, update = "99.11 smid, 98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "Guillotine Subdivisions Approximate Polygonal Subdivisions: {Part II} -- {A} Simple Polynomial-Time Approximation Scheme for Geometric {TSP}, {$k$-MST}, and Related Problems" +, type = "Manuscript" +, institution = "University at Stony Brook" +, year = 1996 +, url = "http://ams.sunysb.edu/~jsbm/jsbm.html" +, precedes = "m-gsaps-98" +, update = "99.11 smid, 98.03 mitchell" } @techreport{m-gsaps-97 -, author = "Joseph S. B. Mitchell" -, title = "Guillotine Subdivisions Approximate Polygonal Subdivisions: {Part III} -- {Faster} Polynomial-Time Approximation Schemes for Geometric Network Optimization" -, type = "Manuscript" -, institution = "University at Stony Brook" -, year = 1997 -, url = "http://ams.sunysb.edu/~jsbm/jsbm.html" -, comments = "Appears also as part of \cite{m-sacgm-96} in CCCG'97" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "Guillotine Subdivisions Approximate Polygonal Subdivisions: {Part III} -- {Faster} Polynomial-Time Approximation Schemes for Geometric Network Optimization" +, type = "Manuscript" +, institution = "University at Stony Brook" +, year = 1997 +, url = "http://ams.sunysb.edu/~jsbm/jsbm.html" +, comments = "Appears also as part of \cite{m-sacgm-96} in CCCG'97" +, update = "98.03 mitchell" } @article{m-lsppo-92 -, author = "Joseph S. B. Mitchell" -, title = "{$L_{1}$} shortest paths among polygonal obstacles in the plane" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "55--88" -, keywords = "shortest paths, distance, {$L_{1}$} metric, continuous Dijkstra, plane-sweep, range search" -, succeeds = "m-srpo-87" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "Joseph S. B. Mitchell" +, title = "{$L_{1}$} shortest paths among polygonal obstacles in the plane" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "55--88" +, keywords = "shortest paths, distance, {$L_{1}$} metric, continuous Dijkstra, plane-sweep, range search" +, succeeds = "m-srpo-87" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @techreport{m-csfal-90 -, author = "Joseph S. B. Mitchell" -, title = "On computing a single face in an arrangement of line segments" -, type = "Manuscript" -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, month = jul -, year = 1990 -, keywords = "arrangements, divide-and-conquer" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "On computing a single face in an arrangement of line segments" +, type = "Manuscript" +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, month = jul +, year = 1990 +, keywords = "arrangements, divide-and-conquer" +, update = "98.03 mitchell" } @inproceedings{m-mfpd-88 -, author = "Joseph S. B. Mitchell" -, title = "On maximum flows in polyhedral domains" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "341--351" -, precedes = "m-mfpd-90" -, cites = "aaghi-vpses-85, ckv-rsptp-87, ek-tiaen-72, g-namfp-87, gmmn-pp0wr-88, gt-namfp-86, h-ipnf-69, i-smp-79, is-mfpn-79, k-eccs-79, l-matps-82, m-psp-86, m-aaspt-86, m-spozc-87, m-srpo-87t, mmp-dgp-87, mp-wrp-85, p-spm-86, rs-spesp-85, s-mftd-83, y-oavds-87, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Joseph S. B. Mitchell" +, title = "On maximum flows in polyhedral domains" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "341--351" +, precedes = "m-mfpd-90" +, cites = "aaghi-vpses-85, ckv-rsptp-87, ek-tiaen-72, g-namfp-87, gmmn-pp0wr-88, gt-namfp-86, h-ipnf-69, i-smp-79, is-mfpn-79, k-eccs-79, l-matps-82, m-psp-86, m-aaspt-86, m-spozc-87, m-srpo-87t, mmp-dgp-87, mp-wrp-85, p-spm-86, rs-spesp-85, s-mftd-83, y-oavds-87, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{m-mfpd-90 -, author = "Joseph S. B. Mitchell" -, title = "On maximum flows in polyhedral domains" -, journal = "J. Comput. Syst. Sci." -, volume = 40 -, year = 1990 -, pages = "88--123" -, succeeds = "m-mfpd-88" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "On maximum flows in polyhedral domains" +, journal = "J. Comput. Syst. Sci." +, volume = 40 +, year = 1990 +, pages = "88--123" +, succeeds = "m-mfpd-88" +, update = "98.03 mitchell" } @inproceedings{m-sacgm-96 -, author = "Joseph S. B. Mitchell" -, title = "On Some Applications of Computational Geometry in Manufacturing and Virtual Environments" -, editor = "M. C. Lin and D. Manocha" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, series = "Lecture Notes Comput. Sci." -, volume = 1148 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "37--40" -, update = "98.11 bibrelex, 98.03 mitchell" -, annote = "invited lecture" +, author = "Joseph S. B. Mitchell" +, title = "On Some Applications of Computational Geometry in Manufacturing and Virtual Environments" +, editor = "M. C. Lin and D. Manocha" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, series = "Lecture Notes Comput. Sci." +, volume = 1148 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "37--40" +, update = "98.11 bibrelex, 98.03 mitchell" +, annote = "invited lecture" } @techreport{m-mcp- -, author = "J. S. B. Mitchell" -, title = "On the maximum concealment problem" -, type = "Technical Report" -, institution = "Dept. Oper. Res., Cornell Univ." -, address = "Ithaca, NY" -, year = "??" -, note = "In preparation" -, update = "98.03 bibrelex" +, author = "J. S. B. Mitchell" +, title = "On the maximum concealment problem" +, type = "Technical Report" +, institution = "Dept. Oper. Res., Cornell Univ." +, address = "Ithaca, NY" +, year = "??" +, note = "In preparation" +, update = "98.03 bibrelex" } @phdthesis{m-psp-86 -, author = "Joseph S. B. Mitchell" -, title = "Planning shortest paths" -, type = "Ph.{D}. Thesis" -, school = "Stanford Univ." -, address = "Stanford, CA" -, year = 1986 -, keywords = "doctoral thesis, motion planning, path planning, geodesic distance, shortest paths, Voronoi diagrams, plane-sweep, continuous Dijkstra" -, comments = "UMI AAC87-00791, 143 pp." -, update = "98.03 mitchell, 93.09 jones" +, author = "Joseph S. B. Mitchell" +, title = "Planning shortest paths" +, type = "Ph.{D}. Thesis" +, school = "Stanford Univ." +, address = "Stanford, CA" +, year = 1986 +, keywords = "doctoral thesis, motion planning, path planning, geodesic distance, shortest paths, Voronoi diagrams, plane-sweep, continuous Dijkstra" +, comments = "UMI AAC87-00791, 143 pp." +, update = "98.03 mitchell, 93.09 jones" } @inproceedings{m-spop-93 -, author = "Joseph S. B. Mitchell" -, title = "Shortest paths among obstacles in the plane" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "308--317" -, precedes = "m-spop-96" -, cites = "a-rsoas-89, aaghi-vdp-86, c-asdii-88, cegghss-rspug-91, csw-qoubs-90, ch-spp-90, cj-sersi-91, gmmn-pp0wr-90, gm-osacv-91, km-eaesp-88, k-eccs-79, l-prp-78, l-prp-78, m-rsehc-92, m-apcad-83, m-lsppo-92, m-oasrp-89, m-mfpd-90, m-naspo-91, mmp-dgp-87, mp-wrpfs-91, ow-nmcvg-88, rs-spesp-85, ss-spps-86, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex+mitchell, 97.03 devillers, 93.09 jones" +, author = "Joseph S. B. Mitchell" +, title = "Shortest paths among obstacles in the plane" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "308--317" +, precedes = "m-spop-96" +, cites = "a-rsoas-89, aaghi-vdp-86, c-asdii-88, cegghss-rspug-91, csw-qoubs-90, ch-spp-90, cj-sersi-91, gmmn-pp0wr-90, gm-osacv-91, km-eaesp-88, k-eccs-79, l-prp-78, l-prp-78, m-rsehc-92, m-apcad-83, m-lsppo-92, m-oasrp-89, m-mfpd-90, m-naspo-91, mmp-dgp-87, mp-wrpfs-91, ow-nmcvg-88, rs-spesp-85, ss-spps-86, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex+mitchell, 97.03 devillers, 93.09 jones" } @article{m-spop-96 -, author = "Joseph S. B. Mitchell" -, title = "Shortest paths among obstacles in the plane" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "309--332" -, keywords = "shortest paths, geodesic paths, continuous Dijkstra method" -, succeeds = "m-spop-93" -, update = "98.03 mitchell, 97.03 devillers+schwarzkopf, 96.05 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "Shortest paths among obstacles in the plane" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "309--332" +, keywords = "shortest paths, geodesic paths, continuous Dijkstra method" +, succeeds = "m-spop-93" +, update = "98.03 mitchell, 97.03 devillers+schwarzkopf, 96.05 mitchell" } @techreport{m-spozc-87 -, author = "Joseph S. B. Mitchell" -, title = "Shortest paths among obstacles, zero-cost regions, and ``roads''" -, type = "Technical {Report}" -, number = 764 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1987 -, keywords = "path planning, shortest paths, Voronoi diagrams, continuous Dijkstra" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell" +, title = "Shortest paths among obstacles, zero-cost regions, and ``roads''" +, type = "Technical {Report}" +, number = 764 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1987 +, keywords = "path planning, shortest paths, Voronoi diagrams, continuous Dijkstra" +, update = "98.03 mitchell" } @techreport{m-spn-96 -, author = "Joseph S. B. Mitchell" -, title = "Shortest paths and networks" -, type = "Technical {Report}" -, institution = "University at Stony Brook" -, year = 1996 -, update = "98.03 mitchell, 97.07 orourke, 96.05 mitchell" -, annote = "A survey chapter written for the Handbook of Computational Geometry. - This version is somewhat expanded, with all references, etc." +, author = "Joseph S. B. Mitchell" +, title = "Shortest paths and networks" +, type = "Technical {Report}" +, institution = "University at Stony Brook" +, year = 1996 +, update = "98.03 mitchell, 97.07 orourke, 96.05 mitchell" +, annote = "A survey chapter written for the Handbook of Computational Geometry. + This version is somewhat expanded, with all references, etc." } @incollection{m-spn-97 -, author = "Joseph S. B. Mitchell" -, title = "Shortest paths and networks" -, chapter = 24 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "445--466" -, update = "98.03 mitchell, 97.11 orourke" +, author = "Joseph S. B. Mitchell" +, title = "Shortest paths and networks" +, chapter = 24 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "445--466" +, update = "98.03 mitchell, 97.11 orourke" } @techreport{m-spppo-84 -, author = "Joseph S. B. Mitchell" -, title = "Shortest paths in the plane in the presence of obstacles" -, type = "Manuscript" -, institution = "Dept. Operations Research, Stanford Univ." -, address = "Stanford, CA" -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Joseph S. B. Mitchell" +, title = "Shortest paths in the plane in the presence of obstacles" +, type = "Manuscript" +, institution = "Dept. Operations Research, Stanford Univ." +, address = "Stanford, CA" +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{m-srpo-87 -, author = "Joseph S. B. Mitchell" -, title = "Shortest rectilinear paths among obstacles" -, booktitle = "Proc. 1st Internat. Conf. Indust. Applied Math." -, site = "Paris, France" -, year = 1987 -, pages = "39--84" -, keywords = "shortest paths, distance, $L_{1}$ metric, continuous Dijkstra, plane-sweep, range search" -, precedes = "m-lsppo-92" -, update = "98.03 mitchell, 94.05 smid" +, author = "Joseph S. B. Mitchell" +, title = "Shortest rectilinear paths among obstacles" +, booktitle = "Proc. 1st Internat. Conf. Indust. Applied Math." +, site = "Paris, France" +, year = 1987 +, pages = "39--84" +, keywords = "shortest paths, distance, $L_{1}$ metric, continuous Dijkstra, plane-sweep, range search" +, precedes = "m-lsppo-92" +, update = "98.03 mitchell, 94.05 smid" } @techreport{m-srpo-87t -, author = "Joseph S. B. Mitchell" -, title = "Shortest rectilinear paths among obstacles in the plane" -, type = "Technical {Report}" -, number = 739 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, month = apr -, year = 1987 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Joseph S. B. Mitchell" +, title = "Shortest rectilinear paths among obstacles in the plane" +, type = "Technical {Report}" +, number = 739 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, month = apr +, year = 1987 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{mbcv-cfaag-98 -, author = "Joseph S. B. Mitchell and A. Blum and P. Chalasani and S. Vempala" -, title = "A constant-factor approximation algorithm for the geometric {$k$-MST} problem in the plane" -, journal = "SIAM J. Comput." -, volume = 28 -, year = 1998 -, pages = "771--781" -, url = "http://ams.sunysb.edu/\~{ }jsbm/jsbm.html" -, succeeds = "m-gsaps-96" -, update = "99.11 smid, 98.03 mitchell" +, author = "Joseph S. B. Mitchell and A. Blum and P. Chalasani and S. Vempala" +, title = "A constant-factor approximation algorithm for the geometric {$k$-MST} problem in the plane" +, journal = "SIAM J. Comput." +, volume = 28 +, year = 1998 +, pages = "771--781" +, url = "http://ams.sunysb.edu/\~{ }jsbm/jsbm.html" +, succeeds = "m-gsaps-96" +, update = "99.11 smid, 98.03 mitchell" } @techreport{mmp-dgp-85 -, author = "J. S. B. Mitchell and D. M. Mount and C. H. Papadimitriou" -, title = "The discrete geodesic problem" -, type = "Technical {Report}" -, institution = "Dept. of Operations Research, Stanford Univ." -, address = "Stanford, CA" -, year = 1985 -, update = "98.03 bibrelex" +, author = "J. S. B. Mitchell and D. M. Mount and C. H. Papadimitriou" +, title = "The discrete geodesic problem" +, type = "Technical {Report}" +, institution = "Dept. of Operations Research, Stanford Univ." +, address = "Stanford, CA" +, year = 1985 +, update = "98.03 bibrelex" } @article{mmp-dgp-87 -, author = "Joseph S. B. Mitchell and D. M. Mount and C. H. Papadimitriou" -, title = "The discrete geodesic problem" -, journal = "SIAM J. Comput." -, volume = 16 -, year = 1987 -, pages = "647--668" -, keywords = "path planning, geodesic distance, shortest paths, polyhedra, Voronoi diagrams, continuous Dijkstra" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and D. M. Mount and C. H. Papadimitriou" +, title = "The discrete geodesic problem" +, journal = "SIAM J. Comput." +, volume = 16 +, year = 1987 +, pages = "647--668" +, keywords = "path planning, geodesic distance, shortest paths, polyhedra, Voronoi diagrams, continuous Dijkstra" +, update = "98.03 mitchell" } @inproceedings{mms-qsrs-94 -, author = "Joseph S. B. Mitchell and D. M. Mount and Subhash Suri" -, title = "Query-Sensitive Ray Shooting" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "359--368" -, keywords = "ray shooting, octrees, quadtress, simple cover complexity" -, precedes = "mms-qsrs-97" -, cites = "a-dapal-89, amnsw-oaann-94, b-acpqh-93, beg-pgmg-90, ck-dmdps-92, cegghss-rspug-91, cg-vippg-85, cj-sersi-91, c-racpq-88, hs-parss-93, hb-atdis-87, m-cgmvr-93, mv-qmgtd-92i, m-smga-92, oss-slspt-90, s-dasds-90, v-oaann-89, ZZZ" -, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" +, author = "Joseph S. B. Mitchell and D. M. Mount and Subhash Suri" +, title = "Query-Sensitive Ray Shooting" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "359--368" +, keywords = "ray shooting, octrees, quadtress, simple cover complexity" +, precedes = "mms-qsrs-97" +, cites = "a-dapal-89, amnsw-oaann-94, b-acpqh-93, beg-pgmg-90, ck-dmdps-92, cegghss-rspug-91, cg-vippg-85, cj-sersi-91, c-racpq-88, hs-parss-93, hb-atdis-87, m-cgmvr-93, mv-qmgtd-92i, m-smga-92, oss-slspt-90, s-dasds-90, v-oaann-89, ZZZ" +, update = "98.03 bibrelex+mitchell, 94.09 jones, 94.01 jones" } @article{mms-qsrs-97 -, author = "Joseph S. B. Mitchell and D. M. Mount and Subhash Suri" -, title = "Query-Sensitive Ray Shooting" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, number = 4 -, month = aug -, year = 1997 -, pages = "317--347" -, keywords = "ray shooting, octrees, quadtress, simple cover complexity" -, succeeds = "mms-qsrs-94" -, update = "98.03 mitchell" -, annote = "Special issue devoted to SoCG'94" +, author = "Joseph S. B. Mitchell and D. M. Mount and Subhash Suri" +, title = "Query-Sensitive Ray Shooting" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, number = 4 +, month = aug +, year = 1997 +, pages = "317--347" +, keywords = "ray shooting, octrees, quadtress, simple cover complexity" +, succeeds = "mms-qsrs-94" +, update = "98.03 mitchell" +, annote = "Special issue devoted to SoCG'94" } @article{mo-cgc42-01 -, author = "J. S. B. Mitchell and J. O'Rourke" -, title = "Computational geometry column 42" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = "??" -, number = "??" -, year = 2001 -, pages = "??--??" -, note = "Also in {\em SIGACT News} 32(3):63-72 (2001), Issue 120" -, update = "01.07 orourke" -, annote = "A compendium of thirty previously published open +, author = "J. S. B. Mitchell and J. O'Rourke" +, title = "Computational geometry column 42" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = "??" +, number = "??" +, year = 2001 +, pages = "??--??" +, note = "Also in {\em SIGACT News} 32(3):63-72 (2001), Issue 120" +, update = "01.07 orourke" +, annote = "A compendium of thirty previously published open problems in computational geometry is presented." } @inproceedings{mp-psp-85 -, author = "Joseph S. B. Mitchell and C. H. Papadimitriou" -, title = "Planning shortest paths" -, booktitle = "SIAM Conf. Geometric Modelling \& Robotics" -, site = "Albany, NY" -, year = 1985 -, pages = "??" -, keywords = "motion planning, path planning, geodesic distance, shortest paths, Voronoi diagrams, plane-sweep, continuous Dijkstra" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and C. H. Papadimitriou" +, title = "Planning shortest paths" +, booktitle = "SIAM Conf. Geometric Modelling \& Robotics" +, site = "Albany, NY" +, year = 1985 +, pages = "??" +, keywords = "motion planning, path planning, geodesic distance, shortest paths, Voronoi diagrams, plane-sweep, continuous Dijkstra" +, update = "98.03 mitchell" } @techreport{mp-wrp-85 -, author = "J. S. B. Mitchell and C. H. Papadimitriou" -, title = "The weighted region problem" -, type = "Technical {Report}" -, institution = "Dept. Oper. Res., Stanford Univ." -, address = "Stanford, CA" -, year = 1985 -, update = "98.03 bibrelex" +, author = "J. S. B. Mitchell and C. H. Papadimitriou" +, title = "The weighted region problem" +, type = "Technical {Report}" +, institution = "Dept. Oper. Res., Stanford Univ." +, address = "Stanford, CA" +, year = 1985 +, update = "98.03 bibrelex" } @techreport{mp-wrp-86 -, author = "J. S. B. Mitchell and C. H. Papadimitriou" -, title = "The weighted region problem" -, type = "Technical {Report}" -, institution = "Dept. of Operations Research, Stanford Univ." -, address = "Stanford, CA" -, year = 1986 -, update = "98.03 bibrelex" +, author = "J. S. B. Mitchell and C. H. Papadimitriou" +, title = "The weighted region problem" +, type = "Technical {Report}" +, institution = "Dept. of Operations Research, Stanford Univ." +, address = "Stanford, CA" +, year = 1986 +, update = "98.03 bibrelex" } @inproceedings{mp-wrp-87 -, author = "Joseph S. B. Mitchell and C. H. Papadimitriou" -, title = "The weighted region problem" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, site = "Waterloo, ON" -, year = 1987 -, pages = "30--38" -, keywords = "path planning, geodesic distance, shortest paths, Voronoi diagrams, continuous Dijkstra" -, precedes = "mp-wrpfs-91" -, cites = "d-ntpcg-59, gs-pms-, j-spivt1-80, km-psptv-84, l-prp-78, lp-esppr-84, m-psp-86, mp-psp-85, mp-wrp-86, mmp-dgp-85, qfp-dsarn-85, rs-spesp-85, ss-spps-86, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Joseph S. B. Mitchell and C. H. Papadimitriou" +, title = "The weighted region problem" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, site = "Waterloo, ON" +, year = 1987 +, pages = "30--38" +, keywords = "path planning, geodesic distance, shortest paths, Voronoi diagrams, continuous Dijkstra" +, precedes = "mp-wrpfs-91" +, cites = "d-ntpcg-59, gs-pms-, j-spivt1-80, km-psptv-84, l-prp-78, lp-esppr-84, m-psp-86, mp-psp-85, mp-wrp-86, mmp-dgp-85, qfp-dsarn-85, rs-spesp-85, ss-spps-86, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{mp-wrpfs-91 -, author = "Joseph S. B. Mitchell and C. H. Papadimitriou" -, title = "The weighted region problem: finding shortest paths through a weighted planar subdivision" -, journal = "J. ACM" -, volume = 38 -, year = 1991 -, pages = "18--73" -, keywords = "weighted, path planning, geodesic distance, shortest paths, Voronoi diagrams, continuous Dijkstra" -, succeeds = "mp-wrp-87" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and C. H. Papadimitriou" +, title = "The weighted region problem: finding shortest paths through a weighted planar subdivision" +, journal = "J. ACM" +, volume = 38 +, year = 1991 +, pages = "18--73" +, keywords = "weighted, path planning, geodesic distance, shortest paths, Voronoi diagrams, continuous Dijkstra" +, succeeds = "mp-wrp-87" +, update = "98.03 mitchell" } @article{mpk-pravc-87 -, author = "Joseph S. B. Mitchell and D. W. Payton and D. M. Keirsey" -, title = "Planning and Reasoning for Autonomous Vehicle Control" -, journal = "Internat. J. Intell. Syst." -, volume = "II" -, year = 1987 -, pages = "129--198" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and D. W. Payton and D. M. Keirsey" +, title = "Planning and Reasoning for Autonomous Vehicle Control" +, journal = "Internat. J. Intell. Syst." +, volume = "II" +, year = 1987 +, pages = "129--198" +, update = "98.03 mitchell" } @inproceedings{mpa-csklp-92 -, author = "Joseph S. B. Mitchell and C. Piatko and Esther M. Arkin" -, title = "Computing a shortest $k$-link path in a polygon" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "573--582" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and C. Piatko and Esther M. Arkin" +, title = "Computing a shortest $k$-link path in a polygon" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "573--582" +, update = "98.03 mitchell" } @article{mrsw-ccppp-95 -, author = "Joseph S. B. Mitchell and G{\"u}nter Rote and Gopalakrishnan Sundaram and G. Woeginger" -, title = "Counting convex polygons in planar point sets" -, journal = "Inform. Process. Lett." -, volume = 56 -, year = 1995 -, pages = "191--194" -, keywords = "convexity, combinatorics" -, cites = "rwzw-cksck-91, rw-cckgp-92, eorw-fmakg-92" -, update = "98.03 mitchell, 97.11 bibrelex, 97.03 rote" -, abstract = "Given a set $S$ of $n$ points in the plane, we compute in time - $O(n^3)$ the total number of convex polygons whose vertices are - a subset of $S$. We give an $O(m n^3)$ algorithm for computing - the number of convex $k$-gons with vertices in $S$, for all - values $k=3,\ldots,m$." +, author = "Joseph S. B. Mitchell and G{\"u}nter Rote and Gopalakrishnan Sundaram and G. Woeginger" +, title = "Counting convex polygons in planar point sets" +, journal = "Inform. Process. Lett." +, volume = 56 +, year = 1995 +, pages = "191--194" +, keywords = "convexity, combinatorics" +, cites = "rwzw-cksck-91, rw-cckgp-92, eorw-fmakg-92" +, update = "98.03 mitchell, 97.11 bibrelex, 97.03 rote" +, abstract = "Given a set $S$ of $n$ points in the plane, we compute in time + $O(n^3)$ the total number of convex polygons whose vertices are + a subset of $S$. We give an $O(m n^3)$ algorithm for computing + the number of convex $k$-gons with vertices in $S$, for all + values $k=3,\ldots,m$." } @inproceedings{mrw-mlpop-90 -, author = "Joseph S. B. Mitchell and G{\"u}nter Rote and G. Woeginger" -, title = "Minimum-link paths among obstacles in the plane" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "63--72" -, precedes = "mrw-mlpop-92" -, cites = "a-idaac-89, cr-nlbtr-87, ce-oails-88t, eghsssw-irals-88, egs-cmfal-88, gm-osacv-87, hs-ndssg-86, km-eaesp-88, k-ealdp-89, m-eamld-89, mw-dmvg-89, rw-cmlps-89, so-wcoac-86, s-ltaml-86, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 93.09 rote" +, author = "Joseph S. B. Mitchell and G{\"u}nter Rote and G. Woeginger" +, title = "Minimum-link paths among obstacles in the plane" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "63--72" +, precedes = "mrw-mlpop-92" +, cites = "a-idaac-89, cr-nlbtr-87, ce-oails-88t, eghsssw-irals-88, egs-cmfal-88, gm-osacv-87, hs-ndssg-86, km-eaesp-88, k-ealdp-89, m-eamld-89, mw-dmvg-89, rw-cmlps-89, so-wcoac-86, s-ltaml-86, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 93.09 rote" } @article{mrw-mlpop-92 -, author = "Joseph S. B. Mitchell and G{\"u}nter Rote and G. Woeginger" -, title = "Minimum-link paths among obstacles in the plane" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "431--459" -, keywords = "link distance, arrangements, visibility graphs" -, succeeds = "mrw-mlpop-90" -, update = "98.03 mitchell, 93.09 rote" +, author = "Joseph S. B. Mitchell and G{\"u}nter Rote and G. Woeginger" +, title = "Minimum-link paths among obstacles in the plane" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "431--459" +, keywords = "link distance, arrangements, visibility graphs" +, succeeds = "mrw-mlpop-90" +, update = "98.03 mitchell, 93.09 rote" } @techreport{ms-scg- -, author = "J. S. B. Mitchell and S. Suri" -, title = "A Survey of Computational Geometry" -, type = "manuscript" -, precedes = "ms-scg-95" -, update = "98.11 bibrelex" +, author = "J. S. B. Mitchell and S. Suri" +, title = "A Survey of Computational Geometry" +, type = "manuscript" +, precedes = "ms-scg-95" +, update = "98.11 bibrelex" } @incollection{ms-scg-95 -, author = "Joseph S. B. Mitchell and Subhash Suri" -, title = "A Survey of Computational Geometry" -, editor = "M. O. Ball and T. L. Magnanti and C. L. Monma and G. L. Nemhauser" -, booktitle = "Network Models" -, series = "Handbook of Operations Research/Management Science" -, publisher = "Elsevier Science" -, address = "Amsterdam" -, year = 1995 -, pages = "425--479" -, succeeds = "ms-scg-" -, update = "98.11 bibrelex, 98.03 mitchell, 95.01 mitchell, 95.01 mitchell" +, author = "Joseph S. B. Mitchell and Subhash Suri" +, title = "A Survey of Computational Geometry" +, editor = "M. O. Ball and T. L. Magnanti and C. L. Monma and G. L. Nemhauser" +, booktitle = "Network Models" +, series = "Handbook of Operations Research/Management Science" +, publisher = "Elsevier Science" +, address = "Amsterdam" +, year = 1995 +, pages = "425--479" +, succeeds = "ms-scg-" +, update = "98.11 bibrelex, 98.03 mitchell, 95.01 mitchell, 95.01 mitchell" } @article{ms-sapo-95 -, author = "Joseph S. B. Mitchell and Subhash Suri" -, title = "Separation and approximation of polyhedral objects" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "95--114" -, keywords = "surface approximation, mesh simplification, set cover, greedy algorithms" -, succeeds = "ms-saps-92" -, update = "98.03 mitchell, 97.03 agarwal, 96.01 mitchell" +, author = "Joseph S. B. Mitchell and Subhash Suri" +, title = "Separation and approximation of polyhedral objects" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "95--114" +, keywords = "surface approximation, mesh simplification, set cover, greedy algorithms" +, succeeds = "ms-saps-92" +, update = "98.03 mitchell, 97.03 agarwal, 96.01 mitchell" } @techreport{ms-saps-91 -, author = "Joseph S. B. Mitchell and Subhash Suri" -, title = "Separation and approximation of polyhedral surfaces" -, type = "Technical {Report}" -, number = 974 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1991 -, precedes = "ms-saps-92" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and Subhash Suri" +, title = "Separation and approximation of polyhedral surfaces" +, type = "Technical {Report}" +, number = 974 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1991 +, precedes = "ms-saps-92" +, update = "98.03 mitchell" } @inproceedings{ms-saps-92 -, author = "Joseph S. B. Mitchell and Subhash Suri" -, title = "Separation and approximation of polyhedral surfaces" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "296--306" -, succeeds = "ms-saps-91" -, precedes = "ms-sapo-95" -, update = "98.03 mitchell, 96.01 mitchell, 95.01 mitchell" +, author = "Joseph S. B. Mitchell and Subhash Suri" +, title = "Separation and approximation of polyhedral surfaces" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "296--306" +, succeeds = "ms-saps-91" +, precedes = "ms-sapo-95" +, update = "98.03 mitchell, 96.01 mitchell, 95.01 mitchell" } @techreport{mw-dmvg-89 -, author = "Joseph S. B. Mitchell and Emo Welzl" -, title = "Dynamic methods for visibility graphs" -, type = "Manuscript" -, institution = "Cornell Univ." -, year = 1989 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Joseph S. B. Mitchell and Emo Welzl" +, title = "Dynamic methods for visibility graphs" +, type = "Manuscript" +, institution = "Cornell Univ." +, year = 1989 +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{mw-dmvgi-90 -, author = "Joseph S. B. Mitchell and Emo Welzl" -, title = "Dynamically Maintaining a Visibility Graph under Insertions of New Obstacles" -, institution = "Operations Research, Cornell University" -, year = 1990 -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and Emo Welzl" +, title = "Dynamically Maintaining a Visibility Graph under Insertions of New Obstacles" +, institution = "Operations Research, Cornell University" +, year = 1990 +, update = "98.03 mitchell" } @techreport{mw-fobpp-90 -, author = "Joseph S. B. Mitchell and E. L. Wynters" -, title = "Finding optimal bipartitions of points and polygons" -, type = "Technical {Report}" -, number = 948 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, year = 1990 -, keywords = "bipartitioning, separation, visibility, clustering, convex hulls" -, precedes = "mw-fobpp-91" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and E. L. Wynters" +, title = "Finding optimal bipartitions of points and polygons" +, type = "Technical {Report}" +, number = 948 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, year = 1990 +, keywords = "bipartitioning, separation, visibility, clustering, convex hulls" +, precedes = "mw-fobpp-91" +, update = "98.03 mitchell" } @inproceedings{mw-fobpp-91 -, author = "Joseph S. B. Mitchell and E. L. Wynters" -, title = "Finding optimal bipartitions of points and polygons" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "202--213" -, keywords = "bipartitioning, separation, visibility, clustering, convex hulls" -, succeeds = "mw-fobpp-90" -, precedes = "mw-fobpp-95" -, update = "98.03 mitchell" +, author = "Joseph S. B. Mitchell and E. L. Wynters" +, title = "Finding optimal bipartitions of points and polygons" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "202--213" +, keywords = "bipartitioning, separation, visibility, clustering, convex hulls" +, succeeds = "mw-fobpp-90" +, precedes = "mw-fobpp-95" +, update = "98.03 mitchell" } @techreport{mw-fobpp-95 -, author = "Joseph S. B. Mitchell and E. L. Wynters" -, title = "Finding Optimal Bipartitions of Points and Polygons" -, type = "Technical {Report}" -, institution = "Applied Math, SUNY Stony Brook" -, year = 1995 -, keywords = "bipartitioning, separation, visibility, clustering, convex hulls" -, succeeds = "mw-fobpp-91" -, update = "98.03 mitchell" -, annote = "Full version of \cite{mw-fobpp-91}, which also corrects a +, author = "Joseph S. B. Mitchell and E. L. Wynters" +, title = "Finding Optimal Bipartitions of Points and Polygons" +, type = "Technical {Report}" +, institution = "Applied Math, SUNY Stony Brook" +, year = 1995 +, keywords = "bipartitioning, separation, visibility, clustering, convex hulls" +, succeeds = "mw-fobpp-91" +, update = "98.03 mitchell" +, annote = "Full version of \cite{mw-fobpp-91}, which also corrects a misstatement made in the proceedings version." } @techreport{mw-omcpo-90t -, author = "J. S. B. Mitchell and E. L. Wynters" -, title = "Optimal motion of covisible points among obstacles in the plane" -, type = "Technical {Report}" -, number = 896 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, month = mar -, year = 1990 -, keywords = "path planning, visibility, shortest paths, multiple agents" -, precedes = "mw-omcpo-90i" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "J. S. B. Mitchell and E. L. Wynters" +, title = "Optimal motion of covisible points among obstacles in the plane" +, type = "Technical {Report}" +, number = 896 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, month = mar +, year = 1990 +, keywords = "path planning, visibility, shortest paths, multiple agents" +, precedes = "mw-omcpo-90i" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{mw-omcpo-90i -, author = "J. S. B. Mitchell and E. L. Wynters" -, title = "Optimal motion of covisible points among obstacles in the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "116--119" -, keywords = "path planning, shortest paths, multiple agents, visibility" -, succeeds = "mw-omcpo-90t" -, cites = "aaghi-vdp-86, cr-nlbtr-87, d-ntpcg-59, ft-fhtu-84, gm-osacv-87t, irwy-spls-89, km-eaesp-88, l-prp-78, lp-esppr-84, lw-apcfp-79, m-naspo-88, mw-omcpo-90t, ps-oplmo-86, ss-spps-86, w-cvgnl-85, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "J. S. B. Mitchell and E. L. Wynters" +, title = "Optimal motion of covisible points among obstacles in the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "116--119" +, keywords = "path planning, shortest paths, multiple agents, visibility" +, succeeds = "mw-omcpo-90t" +, cites = "aaghi-vdp-86, cr-nlbtr-87, d-ntpcg-59, ft-fhtu-84, gm-osacv-87t, irwy-spls-89, km-eaesp-88, l-prp-78, lp-esppr-84, lw-apcfp-79, m-naspo-88, mw-omcpo-90t, ps-oplmo-86, ss-spps-86, w-cvgnl-85, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{mw-wrmg-91 -, author = "Joseph S. B. Mitchell and E. L. Wynters" -, title = "Watchman routes for multiple guards" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "126--129" -, keywords = "watchman routes, shortest paths, multiple agents, art galleries, dynamic programming" -, cites = "c-tsplt-90t, c-ctpg-75, cn-owr-86, cn-owr-88, cn-wrsp-87, f-spcwt-78, gj-cigtn-79, k-mchco-86, ll-ccagp-86, nw-owrsp-90m, o-agta-87, mow-vv-87, ZZZ" -, update = "98.07 bibrelex" +, author = "Joseph S. B. Mitchell and E. L. Wynters" +, title = "Watchman routes for multiple guards" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "126--129" +, keywords = "watchman routes, shortest paths, multiple agents, art galleries, dynamic programming" +, cites = "c-tsplt-90t, c-ctpg-75, cn-owr-86, cn-owr-88, cn-wrsp-87, f-spcwt-78, gj-cigtn-79, k-mchco-86, ll-ccagp-86, nw-owrsp-90m, o-agta-87, mow-vv-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{m-cqmsw-95 -, author = "S. Mitchell" -, title = "A characterization of the quadrilateral meshes of a surface which admit a compatible hexahedral mesh of the enclosed volume" -, booktitle = "Proc. 5th Workshop Comput. Geom." -, year = 1995 -, update = "97.11 bibrelex" +, author = "S. Mitchell" +, title = "A characterization of the quadrilateral meshes of a surface which admit a compatible hexahedral mesh of the enclosed volume" +, booktitle = "Proc. 5th Workshop Comput. Geom." +, year = 1995 +, update = "97.11 bibrelex" } @article{m-amact-97 -, author = "S. Mitchell" -, title = "Approximating the maxmin angle covering triangulation" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "93--111" -, update = "97.03 devillers" +, author = "S. Mitchell" +, title = "Approximating the maxmin angle covering triangulation" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "93--111" +, update = "97.03 devillers" } @inproceedings{m-ccrmm-97 -, author = "S. Mitchell" -, title = "Choosing corners of rectangles for mapped meshing" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "87--93" -, cites = "bbehlmstwobclpwwt-cmgev-94, mmw-mrbfm-96, ta-femci-93, achkm-ecmcp-89, m-cqmsw-96, t-hdp-93, e-lchmg-96, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "S. Mitchell" +, title = "Choosing corners of rectangles for mapped meshing" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "87--93" +, cites = "bbehlmstwobclpwwt-cmgev-94, mmw-mrbfm-96, ta-femci-93, achkm-ecmcp-89, m-cqmsw-96, t-hdp-93, e-lchmg-96, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{m-fctma-97 -, author = "S. Mitchell" -, title = "Finding a covering triangulation whose maximum angle is provably small" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "5--20" -, succeeds = "mp-fctma-93" -, update = "98.11 bibrelex, 97.07 devillers" +, author = "S. Mitchell" +, title = "Finding a covering triangulation whose maximum angle is provably small" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "5--20" +, succeeds = "mp-fctma-93" +, update = "98.11 bibrelex, 97.07 devillers" } @inproceedings{mt-pdrme-95 -, author = "Scott Mitchell and Timothy J. Tautges" -, title = "Pillowing Doublets: Refining a Mesh to Ensure that Faces Share at Most One Edge" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "231--241" -, update = "96.01 samitchell" +, author = "Scott Mitchell and Timothy J. Tautges" +, title = "Pillowing Doublets: Refining a Mesh to Ensure that Faces Share at Most One Edge" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "231--241" +, update = "96.01 samitchell" } @incollection{m-cqmsw-96 -, author = "Scott A. Mitchell" -, title = "A Characterization of the Quadrilateral Meshes of a Surface which Admit a Compatible Hexahedral Mesh of the Enclosed Volume" -, booktitle = "Proc. 13th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1046 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "465--476" -, update = "96.05 mitchell+samitchell" +, author = "Scott A. Mitchell" +, title = "A Characterization of the Quadrilateral Meshes of a Surface which Admit a Compatible Hexahedral Mesh of the Enclosed Volume" +, booktitle = "Proc. 13th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1046 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "465--476" +, update = "96.05 mitchell+samitchell" } @inproceedings{m-amact-93 -, author = "Scott A. Mitchell" -, title = "Approximating the {MaxMin}-Angel Covering Triangulation" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "36--41" -, cites = "a-vdsfg-91, ba-acfem-76, b-ct-93, bde-tpwla-95, beemt-eiot-92i, be-mgot-92i, beg-pgmg-90, c-gqtm-89, etw-otama-90, f-vddt-92, l-scsi-77, m-mgpqb-93, mp-fctma-93, mv-qmgtd-92i, r-nsaq2-92, s-udzvd-28, ZZZ" -, update = "98.11 bibrelex" +, author = "Scott A. Mitchell" +, title = "Approximating the {MaxMin}-Angel Covering Triangulation" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "36--41" +, cites = "a-vdsfg-91, ba-acfem-76, b-ct-93, bde-tpwla-95, beemt-eiot-92i, be-mgot-92i, beg-pgmg-90, c-gqtm-89, etw-otama-90, f-vddt-92, l-scsi-77, m-mgpqb-93, mp-fctma-93, mv-qmgtd-92i, r-nsaq2-92, s-udzvd-28, ZZZ" +, update = "98.11 bibrelex" } @inproceedings{m-cbtbm-94 -, author = "S. A. Mitchell" -, title = "Cardinality Bounds for Triangulations with Bounded Minimum Angle" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "326--331" -, cites = "beg-pgmg-90, e-acg-87, g-dpnet-84, m-adtad-92, m-amact-93, m-mgpqb-93, mv-qmgtd-92i, r-nsaq2-93, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "S. A. Mitchell" +, title = "Cardinality Bounds for Triangulations with Bounded Minimum Angle" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "326--331" +, cites = "beg-pgmg-90, e-acg-87, g-dpnet-84, m-adtad-92, m-amact-93, m-mgpqb-93, mv-qmgtd-92i, r-nsaq2-93, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{m-fctwm-94 -, author = "S. A. Mitchell" -, title = "Finding a covering triangulation whose maximum angle is provably small" -, booktitle = "Proc. 17th Australian Annu. Comput. Sci. Conf." -, volume = 16 -, year = 1994 -, pages = "55--64" -, succeeds = "mp-fctma-93" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "S. A. Mitchell" +, title = "Finding a covering triangulation whose maximum angle is provably small" +, booktitle = "Proc. 17th Australian Annu. Comput. Sci. Conf." +, volume = 16 +, year = 1994 +, pages = "55--64" +, succeeds = "mp-fctma-93" +, update = "98.11 bibrelex, 98.03 bibrelex" } @phdthesis{m-mgpqb-93 -, author = "S. A. Mitchell" -, title = "Mesh generation with provable quality bounds" -, school = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1993 -, note = "Technical Report CS-TR-92-1327" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "S. A. Mitchell" +, title = "Mesh generation with provable quality bounds" +, school = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1993 +, note = "Technical Report CS-TR-92-1327" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{m-rtpsl-93 -, author = "Scott A. Mitchell" -, title = "Refining a Triangulation of a Planar Straight-Line Graph to Eliminate Large Angles" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "583--591" -, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Scott A. Mitchell" +, title = "Refining a Triangulation of a Planar Straight-Line Graph to Eliminate Large Angles" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "583--591" +, update = "98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } @techreport{mp-fctma-93 -, author = "S. A. Mitchell and J. K. Park" -, title = "Finding a Covering Triangulation whose Maximum Angle is Provably Small" -, type = "manuscript" -, institution = "Sandia National Laboratories" -, year = 1993 -, precedes = "m-fctwm-94, m-fctma-97" -, update = "98.11 bibrelex" +, author = "S. A. Mitchell and J. K. Park" +, title = "Finding a Covering Triangulation whose Maximum Angle is Provably Small" +, type = "manuscript" +, institution = "Sandia National Laboratories" +, year = 1993 +, precedes = "m-fctwm-94, m-fctma-97" +, update = "98.11 bibrelex" } @inproceedings{mv-arbtd-96 -, author = "Scott A. Mitchell and Stephen A. Vavasis" -, title = "An Aspect Ratio Bound for Triangulating a $d$-Grid Cut by a Hyperplace" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "48--57" -, cites = "bgr-ntp-88, bcer-dbmgh-95, beg-pgmg-90, bmr-lsntp-94, c-gqtm-89, d-q3d-94, fsg-famg3-94, j-nspde-87, ms-cinap-92, mv-qmgtd-92i, mv-qmghd-95, t-cfpa-76, v-qfemg-95, v-sfepw-93, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Scott A. Mitchell and Stephen A. Vavasis" +, title = "An Aspect Ratio Bound for Triangulating a $d$-Grid Cut by a Hyperplace" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "48--57" +, cites = "bgr-ntp-88, bcer-dbmgh-95, beg-pgmg-90, bmr-lsntp-94, c-gqtm-89, d-q3d-94, fsg-famg3-94, j-nspde-87, ms-cinap-92, mv-qmgtd-92i, mv-qmghd-95, t-cfpa-76, v-qfemg-95, v-sfepw-93, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @unpublished{mv-qmghd-95 -, author = "S. A. Mitchell and S. A. Vavasis" -, title = "Quality mesh generation in higher dimensions" -, year = 1995 -, update = "00.11 smid, 97.11 bibrelex" +, author = "S. A. Mitchell and S. A. Vavasis" +, title = "Quality mesh generation in higher dimensions" +, year = 1995 +, update = "00.11 smid, 97.11 bibrelex" } @article{mv-qmghd-00 -, author = "S. A. Mitchell and S. A. Vavasis" -, title = "Quality mesh generation in higher dimensions" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "1334--1370" -, update = "00.11 smid" +, author = "S. A. Mitchell and S. A. Vavasis" +, title = "Quality mesh generation in higher dimensions" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "1334--1370" +, update = "00.11 smid" } @techreport{mv-qmgtd-92t -, author = "S. A. Mitchell and S. A. Vavasis" -, title = "Quality mesh generation in three dimensions" -, type = "Technical {Report}" -, number = "TR~92-1267" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = feb -, year = 1992 -, precedes = "mv-qmgtd-92i" +, author = "S. A. Mitchell and S. A. Vavasis" +, title = "Quality mesh generation in three dimensions" +, type = "Technical {Report}" +, number = "TR~92-1267" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = feb +, year = 1992 +, precedes = "mv-qmgtd-92i" } @inproceedings{mv-qmgtd-92i -, author = "S. A. Mitchell and S. A. Vavasis" -, title = "Quality mesh generation in three dimensions" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "212--221" -, succeeds = "mv-qmgtd-92t" -, cites = "ba-acfem-76, bde-tpwla-92, beemt-eiot-92t, beg-pgmg-90, be-mgot-92t, csw-cds2d-88, cp-tncp-89, c-cdt-89, c-gqtm-89, e-acg-87, ht-nggcf-86, mtv-ugags-91, mt-sttd-90, mv-dgs-90, m-carte-87, m-umafe-88, mw-mamg-90, ps-cgi-85, ZZZ" -, update = "97.11 bibrelex" +, author = "S. A. Mitchell and S. A. Vavasis" +, title = "Quality mesh generation in three dimensions" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "212--221" +, succeeds = "mv-qmgtd-92t" +, cites = "ba-acfem-76, bde-tpwla-92, beemt-eiot-92t, beg-pgmg-90, be-mgot-92t, csw-cds2d-88, cp-tncp-89, c-cdt-89, c-gqtm-89, e-acg-87, ht-nggcf-86, mtv-ugags-91, mt-sttd-90, mv-dgs-90, m-carte-87, m-umafe-88, mw-mamg-90, ps-cgi-85, ZZZ" +, update = "97.11 bibrelex" } @article{m-agnq-92 -, author = "Pinaki Mitra" -, title = "Answering {Gabriel} Neighbour Queries" -, journal = "Pattern Recogn. Lett." -, volume = 13 -, year = 1992 -, pages = "557--560" -, update = "98.11 patrignani" +, author = "Pinaki Mitra" +, title = "Answering {Gabriel} Neighbour Queries" +, journal = "Pattern Recogn. Lett." +, volume = 13 +, year = 1992 +, pages = "557--560" +, update = "98.11 patrignani" } @inproceedings{mb-easpq-93 -, author = "P. Mitra and B. Bhattacharya" -, title = "Efficient Approximate Shortest-Path Queries among Isothetic Rectangular Obstacles" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "518--529" -, update = "96.05 agarwal, 93.09 milone+mitchell+smid, 93.05 jones" +, author = "P. Mitra and B. Bhattacharya" +, title = "Efficient Approximate Shortest-Path Queries among Isothetic Rectangular Obstacles" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "518--529" +, update = "96.05 agarwal, 93.09 milone+mitchell+smid, 93.05 jones" } @incollection{mn-ecrgv-96 -, author = "P. Mitra and S. C. Nandy" -, title = "Efficient computation of rectilinear geodesic {Voronoi} neighbor in presence of obstacles" -, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1180 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "76--87" -, precedes = "mn-ecrgv-98" -, update = "98.11 smid, 97.03 smid" +, author = "P. Mitra and S. C. Nandy" +, title = "Efficient computation of rectilinear geodesic {Voronoi} neighbor in presence of obstacles" +, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1180 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "76--87" +, precedes = "mn-ecrgv-98" +, update = "98.11 smid, 97.03 smid" } @article{mn-ecrgv-98 -, author = "P. Mitra and S. C. Nandy" -, title = "Efficient computation of rectilinear geodesic {Voronoi} neighbor in the presence of obstacles" -, journal = "J. Algorithms" -, volume = 28 -, year = 1998 -, pages = "315--338" -, succeeds = "mn-ecrgv-96" -, update = "98.11 smid" +, author = "P. Mitra and S. C. Nandy" +, title = "Efficient computation of rectilinear geodesic {Voronoi} neighbor in the presence of obstacles" +, journal = "J. Algorithms" +, volume = 28 +, year = 1998 +, pages = "315--338" +, succeeds = "mn-ecrgv-96" +, update = "98.11 smid" } @book{m-ai-70 -, author = "D. S. Mitrinovic" -, title = "Analytic inequalities" -, publisher = "Springer-Verlag" -, year = 1970 -, update = "97.11 bibrelex" +, author = "D. S. Mitrinovic" +, title = "Analytic inequalities" +, publisher = "Springer-Verlag" +, year = 1970 +, update = "97.11 bibrelex" } @techreport{ms-sabcp-89 -, author = "J. D. Mittleman and D. L. Souvaine" -, title = "Shortest Area-Bisector of a Convex Polygon" -, type = "Technical {Report}" -, number = "LCSR-TR-139" -, institution = "Rutgers Univ." -, address = "New Brunswick, NJ" -, month = nov -, year = 1989 -, update = "97.11 bibrelex" +, author = "J. D. Mittleman and D. L. Souvaine" +, title = "Shortest Area-Bisector of a Convex Polygon" +, type = "Technical {Report}" +, number = "LCSR-TR-139" +, institution = "Rutgers Univ." +, address = "New Brunswick, NJ" +, month = nov +, year = 1989 +, update = "97.11 bibrelex" } @article{mauy-dflat-98 -, author = "Youzou Miyadera and Koushi Anzai and Hiroshi Unno and Takeo Yaku" -, title = "Depth-first layout algorithm for trees" -, journal = "Inform. Process. Lett." -, volume = 66 -, year = 1998 -, pages = "187--194" -, keywords = "tree-structured diagram, tidy drawing problem, tree layout, hichart" -, update = "99.03 patrignani" +, author = "Youzou Miyadera and Koushi Anzai and Hiroshi Unno and Takeo Yaku" +, title = "Depth-first layout algorithm for trees" +, journal = "Inform. Process. Lett." +, volume = 66 +, year = 1998 +, pages = "187--194" +, keywords = "tree-structured diagram, tidy drawing problem, tree layout, hichart" +, update = "99.03 patrignani" } @inproceedings{mk-hcabk-78 -, author = "R. Mizoguchi and O. Kakusho" -, title = "Hierarchical clustering algorithms based on $k$-nearest neighbors" -, booktitle = "4th International Joint Conference on Pattern Recognition" -, site = "Kyoto, Japan" -, year = 1978 -, pages = "314--316" +, author = "R. Mizoguchi and O. Kakusho" +, title = "Hierarchical clustering algorithms based on $k$-nearest neighbors" +, booktitle = "4th International Joint Conference on Pattern Recognition" +, site = "Kyoto, Japan" +, year = 1978 +, pages = "314--316" } @incollection{m-utcpc-89 -, author = "M. E. Mnev" -, title = "The {Universality} theorems on the classification problem of configuration varieties and convex polytopes varieties" -, editor = "O. Y. Viro" -, booktitle = "Topology and Geometry - Rohlin Seminar" -, series = "Lecture Notes Math." -, volume = 1346 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "527--544" -, update = "97.11 bibrelex" +, author = "M. E. Mnev" +, title = "The {Universality} theorems on the classification problem of configuration varieties and convex polytopes varieties" +, editor = "O. Y. Viro" +, booktitle = "Topology and Geometry - Rohlin Seminar" +, series = "Lecture Notes Math." +, volume = 1346 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "527--544" +, update = "97.11 bibrelex" } @incollection{m-utoms-91 -, author = "N. E. Mn{\"e}v" -, title = "The universality theorem on the oriented matroid stratification of the space of real matrices" -, editor = "J. E. Goodman and R. Pollack and W. Steiger" -, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 6 -, publisher = "American Mathematical Society, Association for Computing Machinery" -, year = 1991 -, pages = "237--243" -, update = "99.11 bibrelex, 97.11 orourke" +, author = "N. E. Mn{\"e}v" +, title = "The universality theorem on the oriented matroid stratification of the space of real matrices" +, editor = "J. E. Goodman and R. Pollack and W. Steiger" +, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 6 +, publisher = "American Mathematical Society, Association for Computing Machinery" +, year = 1991 +, pages = "237--243" +, update = "99.11 bibrelex, 97.11 orourke" } @article{mr-tcomd-93 -, author = "N. E. Mn{\"e}v and J{\"u}rgen Richter-Gebert" -, title = "Two constructions of oriented matroids with disconnected extention space" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "271--285" -, update = "96.05 pocchiola" +, author = "N. E. Mn{\"e}v and J{\"u}rgen Richter-Gebert" +, title = "Two constructions of oriented matroids with disconnected extention space" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "271--285" +, update = "96.05 pocchiola" } @article{mz-cmfdg-93 -, author = "N. E. Mn{\"e}v and G. M. Ziegler" -, title = "Combinatorial Models for the finite-dimensional {G}rassmannians" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "241--250" -, update = "96.05 pocchiola" +, author = "N. E. Mn{\"e}v and G. M. Ziegler" +, title = "Combinatorial Models for the finite-dimensional {G}rassmannians" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "241--250" +, update = "96.05 pocchiola" } @inproceedings{m-iutmw-91 -, author = "B. Mobasseri" -, title = "Impact of uncertain terrain models on the weighted region problem" -, booktitle = "Proceedings of the SPIE, The International Society for Optical Engineering" -, volume = 1388 -, year = 1991 -, pages = "270--277" -, keywords = "Uncertain terrain models, Weighted region problem, Obstacle avoidance problem, Surface patches, Traversability indices, Probability distribution, Decision basis, Search" -, update = "93.09 milone+mitchell" -, abstract = "Outdoor navigation is characterized by motions through +, author = "B. Mobasseri" +, title = "Impact of uncertain terrain models on the weighted region problem" +, booktitle = "Proceedings of the SPIE, The International Society for Optical Engineering" +, volume = 1388 +, year = 1991 +, pages = "270--277" +, keywords = "Uncertain terrain models, Weighted region problem, Obstacle avoidance problem, Surface patches, Traversability indices, Probability distribution, Decision basis, Search" +, update = "93.09 milone+mitchell" +, abstract = "Outdoor navigation is characterized by motions through regions of varied terrain. The weighted region problem, (WRP), is a generalization of the obstacle avoidance problem with 1/ infinity cost structure. By assigning indices to surface patches proportional @@ -107041,14 +107041,14 @@ @inproceedings{m-iutmw-91 } @inproceedings{m-daawr-90 -, author = "B. G. Mobasseri" -, title = "Decision analytic approach to the weighted region problem" -, booktitle = "Proceedings of the SPIE, The International Society for Optical Engineering" -, volume = 1293 -, year = 1990 -, pages = "438--445" -, update = "93.09 milone+mitchell" -, abstract = "The weighted region problem is a generalization of the +, author = "B. G. Mobasseri" +, title = "Decision analytic approach to the weighted region problem" +, booktitle = "Proceedings of the SPIE, The International Society for Optical Engineering" +, volume = 1293 +, year = 1990 +, pages = "438--445" +, update = "93.09 milone+mitchell" +, abstract = "The weighted region problem is a generalization of the obstacle avoidance problem. By defining a multiple-valued index, terrain patches can be distinguished on the basis of their traversability. The paper generalizes the weighted region problem by @@ -107064,2197 +107064,2197 @@ @inproceedings{m-daawr-90 } @inproceedings{m-ppuda-89 -, author = "B. G. Mobasseri" -, title = "Path Planning Under Uncertainty from a Decision Analytic Perspective" -, booktitle = "Proc. IEEE International Symposium on Intelligent Control" -, site = "Albany, NY" -, month = sep -, year = 1989 -, pages = "556--560" +, author = "B. G. Mobasseri" +, title = "Path Planning Under Uncertainty from a Decision Analytic Perspective" +, booktitle = "Proc. IEEE International Symposium on Intelligent Control" +, site = "Albany, NY" +, month = sep +, year = 1989 +, pages = "556--560" } @article{m-ddt-90 -, author = "S. Moen" -, title = "Drawing Dynamic Trees" -, journal = "IEEE Softw." -, volume = 7 -, year = 1990 -, pages = "21--28" -, keywords = "graph drawing" -, update = "98.07 vismara, 93.09 tamassia" +, author = "S. Moen" +, title = "Drawing Dynamic Trees" +, journal = "IEEE Softw." +, volume = 7 +, year = 1990 +, pages = "21--28" +, keywords = "graph drawing" +, update = "98.07 vismara, 93.09 tamassia" } @mastersthesis{m-rsast-93 -, author = "S. Mohaban" -, title = "Ray shooting amidst spheres in three dimensions" -, type = "M. {Sc}. Thesis" -, school = "Tel Aviv University" -, month = jun -, year = 1993 -, keywords = "master thesis" -, update = "93.09 milone+mitchell" +, author = "S. Mohaban" +, title = "Ray shooting amidst spheres in three dimensions" +, type = "M. {Sc}. Thesis" +, school = "Tel Aviv University" +, month = jun +, year = 1993 +, keywords = "master thesis" +, update = "93.09 milone+mitchell" } @techreport{ms-rsast-93 -, author = "S. Mohaban and M. Sharir" -, title = "Ray shooting amidst spheres in three dimensions" -, type = "Manuscript" -, institution = "??" -, year = 1993 -, update = "98.03 bibrelex" +, author = "S. Mohaban and M. Sharir" +, title = "Ray shooting amidst spheres in three dimensions" +, type = "Manuscript" +, institution = "??" +, year = 1993 +, update = "98.03 bibrelex" } @article{ms-rsast-97 -, author = "S. Mohaban and Micha Sharir" -, title = "Ray shooting amidst spheres in three dimensions and related problems" -, journal = "SIAM J. Comput." -, volume = 26 -, year = 1997 -, pages = "654--674" -, update = "98.03 mitchell, 97.07 smid" +, author = "S. Mohaban and Micha Sharir" +, title = "Ray shooting amidst spheres in three dimensions and related problems" +, journal = "SIAM J. Comput." +, volume = 26 +, year = 1997 +, pages = "654--674" +, update = "98.03 mitchell, 97.07 smid" } @inproceedings{mr-rplta-01 -, author = "Ali Mohades and Mohammadreza Razzazi" -, title = "Reaching a Point with a Linkage in Two Attached Squares" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "162--165" -, update = "01.04 icking" +, author = "Ali Mohades and Mohammadreza Razzazi" +, title = "Reaching a Point with a Linkage in Two Attached Squares" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "162--165" +, update = "01.04 icking" } @techreport{m-spcts-83 -, author = "J. Mohan" -, title = "A Study in Parallel Computation: the Travelling Salesman Problem" -, number = "CMU-CS-82-136(R)" -, institution = "Dept. Computer Science, Carnegie-Mellon University" -, address = "Pittsburgh, USA" -, year = 1983 -, update = "93.09 held" +, author = "J. Mohan" +, title = "A Study in Parallel Computation: the Travelling Salesman Problem" +, number = "CMU-CS-82-136(R)" +, institution = "Dept. Computer Science, Carnegie-Mellon University" +, address = "Pittsburgh, USA" +, year = 1983 +, update = "93.09 held" } @article{m-ptcpa-93 -, author = "B. Mohar" -, title = "A Polynomial Time Circle Packing Algorithm" -, journal = "Discrete Math." -, volume = 117 -, year = 1993 -, pages = "257--263" -, update = "98.07 tamassia+vismara" +, author = "B. Mohar" +, title = "A Polynomial Time Circle Packing Algorithm" +, journal = "Discrete Math." +, volume = 117 +, year = 1993 +, pages = "257--263" +, update = "98.07 tamassia+vismara" } @article{m-bc-88 -, author = "B. Mohar" -, title = "Branched coverings" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "339--348" +, author = "B. Mohar" +, title = "Branched coverings" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "339--348" } @article{m-ngncb-88 -, author = "B. Mohar" -, title = "Nonorientable genus of nearly complete bipartite graphs" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "137--146" +, author = "B. Mohar" +, title = "Nonorientable genus of nearly complete bipartite graphs" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "137--146" } @inproceedings{mr-faudt-95 -, author = "B. Mohar and P. Rosenstiehl" -, title = "A Flow Approach to Upward Drawings of Toroidal Maps" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "33--39" -, keywords = "graph drawing, topological graph theory" -, update = "95.01 tamassia" +, author = "B. Mohar and P. Rosenstiehl" +, title = "A Flow Approach to Upward Drawings of Toroidal Maps" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "33--39" +, keywords = "graph drawing, topological graph theory" +, update = "95.01 tamassia" } @book{mt-gs-01 -, author = "Bojan Mohar and Carsten Thomassen" -, title = "Graphs on Surfaces" -, publisher = "Johns Hopkins University Press" -, address = "Baltimore" -, year = 2001 -, update = "02.03 icking+pocchiola, 01.11 orourke" +, author = "Bojan Mohar and Carsten Thomassen" +, title = "Graphs on Surfaces" +, publisher = "Johns Hopkins University Press" +, address = "Baltimore" +, year = 2001 +, update = "02.03 icking+pocchiola, 01.11 orourke" } @incollection{m-ctcos-89 -, author = "R. H. M{\"o}hring" -, title = "Computationally Tractable Classes of Ordered Sets" -, editor = "I. Rival" -, booktitle = "Algorithms and Order" -, year = 1989 -, pages = "105--193" -, update = "98.07 bibrelex" +, author = "R. H. M{\"o}hring" +, title = "Computationally Tractable Classes of Ordered Sets" +, editor = "I. Rival" +, booktitle = "Algorithms and Order" +, year = 1989 +, pages = "105--193" +, update = "98.07 bibrelex" } @inproceedings{mm-cmamr-97 -, author = "Rolf H. M{\"o}hring and Matthias M{\"u}ller-Hannemann" -, title = "Complexity and Modeling Aspects of Mesh Refinement into Quadrilaterals" -, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '97" -, site = "Singapore" -, series = "Lecture Notes Comput. Sci." -, volume = 1350 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "263--272" -, update = "98.07 bibrelex+mitchell, 98.03 mitchell" +, author = "Rolf H. M{\"o}hring and Matthias M{\"u}ller-Hannemann" +, title = "Complexity and Modeling Aspects of Mesh Refinement into Quadrilaterals" +, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '97" +, site = "Singapore" +, series = "Lecture Notes Comput. Sci." +, volume = 1350 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "263--272" +, update = "98.07 bibrelex+mitchell, 98.03 mitchell" } @techreport{mmw-mrbfm-96 -, author = "R. H. M{\"o}hring and M. M{\"u}ller-Hannemann and K. Weihe" -, title = "Mesh refinement via bidirected flows: {Modeling}, complexity and computational results" -, type = "Report" -, number = 520 -, institution = "Dept. Math., Technische Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, year = 1996 -, url = "http://www.math.TU-Berlin.DE/~mhannema/projecteng.html" -, update = "98.07 bibrelex" +, author = "R. H. M{\"o}hring and M. M{\"u}ller-Hannemann and K. Weihe" +, title = "Mesh refinement via bidirected flows: {Modeling}, complexity and computational results" +, type = "Report" +, number = 520 +, institution = "Dept. Math., Technische Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, year = 1996 +, url = "http://www.math.TU-Berlin.DE/~mhannema/projecteng.html" +, update = "98.07 bibrelex" } @inproceedings{mmw-unfsm-95 -, author = "Rolf H. M{\"o}hring and Matthias M{\"u}ller-Hannemann and Karsten Weihe" -, title = "Using Network Flows for Surface Modeling" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "350--359" -, keywords = "mesh generation, CAD, surface refinement" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "Rolf H. M{\"o}hring and Matthias M{\"u}ller-Hannemann and Karsten Weihe" +, title = "Using Network Flows for Surface Modeling" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "350--359" +, keywords = "mesh generation, CAD, surface refinement" +, update = "96.09 agarwal, 96.05 mitchell" } @book{m-gtd23-77 -, author = "E. Moise" -, title = "Geometric Topology in Dimensions 2 and 3" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1977 -, update = "98.03 bibrelex" +, author = "E. Moise" +, title = "Geometric Topology in Dimensions 2 and 3" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1977 +, update = "98.03 bibrelex" } @phdthesis{m-epacb-89 -, author = "D. Moitra" -, title = "Efficient parallel algorithms for covering binary images" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1989 -, note = "Technical Report TR-89-1013" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "D. Moitra" +, title = "Efficient parallel algorithms for covering binary images" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1989 +, note = "Technical Report TR-89-1013" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @article{m-fmcbi-91 -, author = "D. Moitra" -, title = "Finding a minimal cover for binary images: an optimal parallel algorithm" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "624--657" +, author = "D. Moitra" +, title = "Finding a minimal cover for binary images: an optimal parallel algorithm" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "624--657" } @article{mt-fmsrt-97 -, author = "T. M{\"o}ller and B. Trumbore" -, title = "Fast, Minimum Storage Ray-Triangle Intersection" -, journal = "J. Graphics Tools" -, volume = 2 -, number = 1 -, year = 1997 -, pages = "21--28" -, update = "97.11 held" +, author = "T. M{\"o}ller and B. Trumbore" +, title = "Fast, Minimum Storage Ray-Triangle Intersection" +, journal = "J. Graphics Tools" +, volume = 2 +, number = 1 +, year = 1997 +, pages = "21--28" +, update = "97.11 held" } @article{m-udzts-57 -, author = "J. Moln{\'a}r" -, title = "{\"U}ber den zweidimensionalen topologischen {Satz} von {Helly}" -, journal = "Mat. Lapok" -, volume = 8 -, year = 1957 -, pages = "108--114" -, note = "Hungarian with German and Russian Summaries" -, update = "98.03 bibrelex" +, author = "J. Moln{\'a}r" +, title = "{\"U}ber den zweidimensionalen topologischen {Satz} von {Helly}" +, journal = "Mat. Lapok" +, volume = 8 +, year = 1957 +, pages = "108--114" +, note = "Hungarian with German and Russian Summaries" +, update = "98.03 bibrelex" } @inproceedings{mrs-psaaf-96 -, author = "B. Monien and F. Ramme and H. Salmen" -, title = "A Parallel Simulated Annealing Algorithm for Generating {3D} Layouts of Undirected Graphs" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "396--408" -, keywords = "graph drawing, 3D, straight-line" -, update = "96.09 tamassia, 96.04 garg" +, author = "B. Monien and F. Ramme and H. Salmen" +, title = "A Parallel Simulated Annealing Algorithm for Generating {3D} Layouts of Undirected Graphs" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "396--408" +, keywords = "graph drawing, 3D, straight-line" +, update = "96.09 tamassia, 96.04 garg" } @article{m-csmdc-80 -, author = "L. Monier" -, title = "Combinatorial solutions of multidimensional divide-and-conquer recurrences" -, journal = "J. Algorithms" -, volume = 1 -, year = 1980 -, pages = "60--74" +, author = "L. Monier" +, title = "Combinatorial solutions of multidimensional divide-and-conquer recurrences" +, journal = "J. Algorithms" +, volume = 1 +, year = 1980 +, pages = "60--74" } @inproceedings{mpsy-cemst-88 -, author = "C. Monma and M. Paterson and Subhash Suri and F. Yao" -, title = "Computing {Euclidean} maximum spanning trees" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "241--251" -, precedes = "mpsy-cemst-90" -, cites = "abky-cabmm-88, akmsw-gamsa-87, a-dp-86, c-hsh-85, e-ga-79, gbt-srtgp-84, gh-hmstp-85, j-hcs-67, j-nccog-82, l-fnvda-80, ps-cgi-85, s-cg-78, ss-pnt-63, tb-gatuf-81, y-cmstk-82, j-snnms-78, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "C. Monma and M. Paterson and Subhash Suri and F. Yao" +, title = "Computing {Euclidean} maximum spanning trees" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "241--251" +, precedes = "mpsy-cemst-90" +, cites = "abky-cabmm-88, akmsw-gamsa-87, a-dp-86, c-hsh-85, e-ga-79, gbt-srtgp-84, gh-hmstp-85, j-hcs-67, j-nccog-82, l-fnvda-80, ps-cgi-85, s-cg-78, ss-pnt-63, tb-gatuf-81, y-cmstk-82, j-snnms-78, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{mpsy-cemst-90 -, author = "C. Monma and M. Paterson and Subhash Suri and F. Yao" -, title = "Computing {Euclidean} maximum spanning trees" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "407--419" -, succeeds = "mpsy-cemst-88" -, update = "98.03 mitchell" +, author = "C. Monma and M. Paterson and Subhash Suri and F. Yao" +, title = "Computing {Euclidean} maximum spanning trees" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "407--419" +, succeeds = "mpsy-cemst-88" +, update = "98.03 mitchell" } @inproceedings{ms-ppgmm-91 -, author = "C. Monma and Subhash Suri" -, title = "Partitioning points and graphs to minimize the maximum or the sum of diameters" -, booktitle = "Graph Theory, Combinatorics and Applications (Proc. 6th Internat. Conf. Theory Appl. Graphs)" -, volume = 2 -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1991 -, pages = "899--912" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "C. Monma and Subhash Suri" +, title = "Partitioning points and graphs to minimize the maximum or the sum of diameters" +, booktitle = "Graph Theory, Combinatorics and Applications (Proc. 6th Internat. Conf. Theory Appl. Graphs)" +, volume = 2 +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1991 +, pages = "899--912" +, update = "99.11 bibrelex, 98.03 mitchell" } @techreport{ms-setpc-90 -, author = "C. Monma and Subhash Suri" -, title = "Some Embedding and topological problems concerning minimum spanning trees" -, month = dec -, year = 1990 -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "C. Monma and Subhash Suri" +, title = "Some Embedding and topological problems concerning minimum spanning trees" +, month = dec +, year = 1990 +, update = "98.03 mitchell, 93.09 milone+mitchell" } @techreport{ms-tgmst-91t -, author = "C. Monma and Subhash Suri" -, title = "Transitions in geometric minimum spanning trees" -, type = "Technical {Memorandum}" -, institution = "Bell Communications Research" -, year = 1991 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "C. Monma and Subhash Suri" +, title = "Transitions in geometric minimum spanning trees" +, type = "Technical {Memorandum}" +, institution = "Bell Communications Research" +, year = 1991 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{ms-tgmst-91 -, author = "C. Monma and Subhash Suri" -, title = "Transitions in geometric minimum spanning trees" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "239--249" -, keywords = "proximity, minimum spanning tree" -, cites = "abky-cabmm-88, a-sdcgp-85, ccpy-nubns-86, cd-vdbcd-85, c-oarn-85, d-mstia-86, e-acg-87, ggt-fpmfa-89, g-bpstp-79, g-saco-80, g-pccpp-83, gi-psmmc-89, gm-fagpm-89, ms-tgmst-91t, pq-samcn-82, pr-cardf-78, st-dsdt-83, t-dsna-83, y-cmstk-82, z-gtmdg-71, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "C. Monma and Subhash Suri" +, title = "Transitions in geometric minimum spanning trees" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "239--249" +, keywords = "proximity, minimum spanning tree" +, cites = "abky-cabmm-88, a-sdcgp-85, ccpy-nubns-86, cd-vdbcd-85, c-oarn-85, d-mstia-86, e-acg-87, ggt-fpmfa-89, g-bpstp-79, g-saco-80, g-pccpp-83, gi-psmmc-89, gm-fagpm-89, ms-tgmst-91t, pq-samcn-82, pr-cardf-78, st-dsdt-83, t-dsna-83, y-cmstk-82, z-gtmdg-71, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ms-tgmst-92 -, author = "C. Monma and Subhash Suri" -, title = "Transitions in geometric minimum spanning trees" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "265--293" -, keywords = "proximity, minimum spanning tree" -, update = "98.03 mitchell, 95.09 agarwal" +, author = "C. Monma and Subhash Suri" +, title = "Transitions in geometric minimum spanning trees" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "265--293" +, keywords = "proximity, minimum spanning tree" +, update = "98.03 mitchell, 95.09 agarwal" } @article{mrt-ttg-88 -, author = "C. T. Monma and B. Reed and W. T. Trotter" -, title = "Threshold tolerance graphs" -, journal = "J. Graph Theory" -, volume = 12 -, year = 1988 -, pages = "343--362" -, update = "98.11 bibrelex" +, author = "C. T. Monma and B. Reed and W. T. Trotter" +, title = "Threshold tolerance graphs" +, journal = "J. Graph Theory" +, volume = 12 +, year = 1988 +, pages = "343--362" +, update = "98.11 bibrelex" } @book{m-cacpp-82 -, author = "M. S. Monmonier" -, title = "Computer Assisted Cartography: Principles and Prospects" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs" -, year = 1982 -, update = "96.09 kreveld" +, author = "M. S. Monmonier" +, title = "Computer Assisted Cartography: Principles and Prospects" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs" +, year = 1982 +, update = "96.09 kreveld" } @book{m-hlm-91 -, author = "M. S. Monmonier" -, title = "How to Lie with Maps" -, publisher = "The Chicago University Press" -, address = "Chicago" -, year = 1991 -, update = "96.09 kreveld" +, author = "M. S. Monmonier" +, title = "How to Lie with Maps" +, publisher = "The Chicago University Press" +, address = "Chicago" +, year = 1991 +, update = "96.09 kreveld" } @inproceedings{m-pgrth-91 -, author = "Paul-Andr{\'e} Monney" -, title = "Planar geometric reasoning with the theory of hints" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "141--159" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Paul-Andr{\'e} Monney" +, title = "Planar geometric reasoning with the theory of hints" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "141--159" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{mmp-lban2-94 -, author = "J. L. Monta{\~n}a and J. E. Morais and Luis M. Pardo" -, title = "Lower Bounds for Arithmetic Networks {II}: Sum of {Betti} Numbers" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "45--48" -, update = "00.11 smid, 00.07 icking" +, author = "J. L. Monta{\~n}a and J. E. Morais and Luis M. Pardo" +, title = "Lower Bounds for Arithmetic Networks {II}: Sum of {Betti} Numbers" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "45--48" +, update = "00.11 smid, 00.07 icking" } @article{m-mosuq-68 -, author = "U. Montanari" -, title = "A method for obtaining skeletons using a quasi-{Euclidean} distance" -, journal = "J. ACM" -, volume = 15 -, year = 1968 -, pages = "600--624" +, author = "U. Montanari" +, title = "A method for obtaining skeletons using a quasi-{Euclidean} distance" +, journal = "J. ACM" +, volume = 15 +, year = 1968 +, pages = "600--624" } @article{m-csdi-69 -, author = "U. Montanari" -, title = "Continuous skeletons from digitized images" -, journal = "J. ACM" -, volume = 16 -, year = 1969 -, pages = "534--549" -, update = "93.05 freimer" +, author = "U. Montanari" +, title = "Continuous skeletons from digitized images" +, journal = "J. ACM" +, volume = 16 +, year = 1969 +, pages = "534--549" +, update = "93.05 freimer" } @article{mss-mluti-94 -, author = "Claudio Montani and Riccardo Scateni and Roberto Scopigno" -, title = "A modified look--up table for implicit disambiguation of {M}arching {C}ubes" -, journal = "Visual Comput." -, volume = 10 -, year = 1994 -, pages = "353--355" -, update = "01.07 wenger" +, author = "Claudio Montani and Riccardo Scateni and Roberto Scopigno" +, title = "A modified look--up table for implicit disambiguation of {M}arching {C}ubes" +, journal = "Visual Comput." +, volume = 10 +, year = 1994 +, pages = "353--355" +, update = "01.07 wenger" } @article{mt-cmcag-84 -, author = "Y. Montaudin and W. Tilles" -, title = "The {Cayley} method in computer aided geometric design" -, journal = "Comput. Aided Geom. Design" -, volume = 1 -, year = 1984 -, pages = "309--326" -, update = "98.03 bibrelex" +, author = "Y. Montaudin and W. Tilles" +, title = "The {Cayley} method in computer aided geometric design" +, journal = "Comput. Aided Geom. Design" +, volume = 1 +, year = 1984 +, pages = "309--326" +, update = "98.03 bibrelex" } @inproceedings{mu-ifp-91 -, author = "L. Montejano and J. Urrutia" -, title = "Immobilizing figures on the plane" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "46--49" -, cites = "csu-is-90, mnp-ogp-89, mnp-gg-90, k-dwp-90, o-cgc9-90, ZZZ" -, update = "98.07 bibrelex" +, author = "L. Montejano and J. Urrutia" +, title = "Immobilizing figures on the plane" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "46--49" +, cites = "csu-is-90, mnp-ogp-89, mnp-gg-90, k-dwp-90, o-cgc9-90, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{mr-csrp-94 -, author = "A. Monti and A. Roncato" -, title = "On the Complexity of Some Reachability Problems" -, booktitle = "Proc. 2nd Italian Conference on Algorithms and Complexity" -, year = 1994 -, update = "95.01 mitchell" +, author = "A. Monti and A. Roncato" +, title = "On the Complexity of Some Reachability Problems" +, booktitle = "Proc. 2nd Italian Conference on Algorithms and Complexity" +, year = 1994 +, update = "95.01 mitchell" } @book{m-oe-79 -, author = "J. Montroll" -, title = "Origami for the Enthusiast" -, publisher = "Dover" -, year = 1979 -, update = "97.11 bibrelex" +, author = "J. Montroll" +, title = "Origami for the Enthusiast" +, publisher = "Dover" +, year = 1979 +, update = "97.11 bibrelex" } @book{m-po-89 -, author = "J. Montroll" -, title = "Prehistoric Origami" -, publisher = "Dover Publications" -, year = 1989 -, update = "97.11 bibrelex" +, author = "J. Montroll" +, title = "Prehistoric Origami" +, publisher = "Dover Publications" +, year = 1989 +, update = "97.11 bibrelex" } @book{ml-osl-90 -, author = "J. Montroll and R. J. Lang" -, title = "Origami Sea Life" -, publisher = "Dover" -, year = 1990 -, update = "97.11 bibrelex" +, author = "J. Montroll and R. J. Lang" +, title = "Origami Sea Life" +, publisher = "Dover" +, year = 1990 +, update = "97.11 bibrelex" } @techreport{mf-lttsp-85 -, author = "D. Montuno and A. Fournier" -, title = "A linear time triangulation for simple polygons" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Toronto" -, address = "Toronto, ON" -, year = 1985 +, author = "D. Montuno and A. Fournier" +, title = "A linear time triangulation for simple polygons" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Toronto" +, address = "Toronto, ON" +, year = 1985 } @techreport{mf-diasp-82 -, author = "D. Montuno and A. Fournier" -, title = "Detecting intersections among star polygons" -, institution = "University of Toronto" -, year = 1982 -, update = "97.11 bibrelex" +, author = "D. Montuno and A. Fournier" +, title = "Detecting intersections among star polygons" +, institution = "University of Toronto" +, year = 1982 +, update = "97.11 bibrelex" } @techreport{mw-mamg-90 -, author = "D. Moore and J. Warren" -, title = "Multidimensional adaptive mesh generation" -, type = "Technical {Report}" -, number = "90-106" -, institution = "Dept. Comput. Sci., Rice Univ." -, year = 1990 -, update = "97.11 bibrelex" +, author = "D. Moore and J. Warren" +, title = "Multidimensional adaptive mesh generation" +, type = "Technical {Report}" +, number = "90-106" +, institution = "Dept. Comput. Sci., Rice Univ." +, year = 1990 +, update = "97.11 bibrelex" } @phdthesis{m-smga-92 -, author = "D. W. Moore" -, title = "Simplicial mesh generation with applications" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1992 -, note = "Report 92-1322" -, keywords = "doctoral thesis" -, update = "95.01 mitchell" +, author = "D. W. Moore" +, title = "Simplicial mesh generation with applications" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1992 +, note = "Report 92-1322" +, keywords = "doctoral thesis" +, update = "95.01 mitchell" } @inproceedings{m-sptm- -, author = "E. Moore" -, title = "Shortest Path Through a Maze" -, booktitle = "Proc. of an International Symposium on the Theory of Switching" -, publisher = "Harvard University Press" -, pages = "285--292" -, update = "93.09 milone+mitchell" +, author = "E. Moore" +, title = "Shortest Path Through a Maze" +, booktitle = "Proc. of an International Symposium on the Theory of Switching" +, publisher = "Harvard University Press" +, pages = "285--292" +, update = "93.09 milone+mitchell" } @article{mw-cdrca-88 -, author = "M. Moore and J. Willhelms" -, title = "Collision detection and response for computer animation" -, journal = "Comput. Graph." -, volume = 22 -, number = 4 -, month = aug -, year = 1988 -, pages = "289--298" -, note = "Proc. SIGGRAPH '88" -, update = "93.09 milone+mitchell" +, author = "M. Moore and J. Willhelms" +, title = "Collision detection and response for computer animation" +, journal = "Comput. Graph." +, volume = 22 +, number = 4 +, month = aug +, year = 1988 +, pages = "289--298" +, note = "Proc. SIGGRAPH '88" +, update = "93.09 milone+mitchell" } @book{m-ia-66 -, author = "R. E. Moore" -, title = "Interval Analysis" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1966 -, update = "98.03 bibrelex" +, author = "R. E. Moore" +, title = "Interval Analysis" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1966 +, update = "98.03 bibrelex" } @book{m-maia-79 -, author = "R. E. Moore" -, title = "Methods and Applications of Interval Analysis" -, publisher = "SIAM" -, year = 1979 -, update = "98.03 bibrelex" +, author = "R. E. Moore" +, title = "Methods and Applications of Interval Analysis" +, publisher = "SIAM" +, year = 1979 +, update = "98.03 bibrelex" } @inproceedings{mm-chf-83 -, author = "F. Mora and H. Moller" -, title = "Computation of the {Hilbert} Function" -, booktitle = "Proc. European Comput. Algebra Conf." -, series = "Lecture Notes Comput. Sci." -, volume = 162 -, publisher = "Springer-Verlag" -, year = 1983 -, pages = "157--167" -, update = "97.11 bibrelex" +, author = "F. Mora and H. Moller" +, title = "Computation of the {Hilbert} Function" +, booktitle = "Proc. European Comput. Algebra Conf." +, series = "Lecture Notes Comput. Sci." +, volume = 162 +, publisher = "Springer-Verlag" +, year = 1983 +, pages = "157--167" +, update = "97.11 bibrelex" } @inproceedings{mh-vdvso-91 -, author = "B. A. Moran and W. Hansmann" -, title = "Visual Design Verification of Sculptured Objects" -, booktitle = "Proceedings of the First International Offshore and Polar Engineering Conference" -, year = 1991 -, update = "95.05 abrams" +, author = "B. A. Moran and W. Hansmann" +, title = "Visual Design Verification of Sculptured Objects" +, booktitle = "Proceedings of the First International Offshore and Polar Engineering Conference" +, year = 1991 +, update = "95.05 abrams" } @article{m-nrsgp-66 -, author = "P. A. P. Moran" -, title = "A note on recent search in geometrical probability" -, journal = "J. Appl. Probab." -, volume = 3 -, year = 1966 -, pages = "453--463" +, author = "P. A. P. Moran" +, title = "A note on recent search in geometrical probability" +, journal = "J. Appl. Probab." +, volume = 3 +, year = 1966 +, pages = "453--463" } @article{m-cdopm-83 -, author = "S. Moran" -, title = "On the complexity of designing optimal partial-match retrieval systems" -, journal = "ACM Trans. Database Syst." -, volume = 8 -, year = 1983 -, pages = "543--551" +, author = "S. Moran" +, title = "On the complexity of designing optimal partial-match retrieval systems" +, journal = "ACM Trans. Database Syst." +, volume = 8 +, year = 1983 +, pages = "543--551" } @article{m-lotcs-84 -, author = "S. Moran" -, title = "On the length of optimal {TSP} circuits in sets of bounded diameter" -, journal = "J. Combin. Theory Ser. B" -, volume = 37 -, year = 1984 -, pages = "113--141" -, update = "97.11 bibrelex" +, author = "S. Moran" +, title = "On the length of optimal {TSP} circuits in sets of bounded diameter" +, journal = "J. Combin. Theory Ser. B" +, volume = 37 +, year = 1984 +, pages = "113--141" +, update = "97.11 bibrelex" } @phdthesis{m-rrvn-81 -, author = "H. P. Moravac" -, title = "Robot Rover Visual Navigation" -, school = "Stanford University" -, year = 1981 -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "H. P. Moravac" +, title = "Robot Rover Visual Navigation" +, school = "Stanford University" +, year = 1981 +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @techreport{m-oanrw-80 -, author = "H. P. Moravec" -, title = "Obstacle avoidance and navigation in the real world by a setting robot rover" -, type = "Report" -, number = "STAN-CS-80-813" -, institution = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, year = 1980 +, author = "H. P. Moravec" +, title = "Obstacle avoidance and navigation in the real world by a setting robot rover" +, type = "Report" +, number = "STAN-CS-80-813" +, institution = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, year = 1980 } @phdthesis{m-fhrsg-90 -, author = "J.-M. Moreau" -, title = "Fac{\'e}tisation et hi{\'e}rarchisation de la repr{\'e}sentation par segments d'un graphe planaire dans le cadre d'une arithm{\'e}tique mixte" -, school = "{\'E}cole Nationale Sup{\'e}rieure des Mines de Saint-{\'E}tienne" -, year = 1990 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "J.-M. Moreau" +, title = "Fac{\'e}tisation et hi{\'e}rarchisation de la repr{\'e}sentation par segments d'un graphe planaire dans le cadre d'une arithm{\'e}tique mixte" +, school = "{\'E}cole Nationale Sup{\'e}rieure des Mines de Saint-{\'E}tienne" +, year = 1990 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @inproceedings{m-hdt-94 -, author = "J.-M. Moreau" -, title = "Hierarchical {Delaunay} Triangulation" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "165--170" -, cites = "a-vdsfg-91, c-cdt-89, c-ucplg-75, c-llpqb-72, f-savd-87, gs-pmgsc-85, ll-gdtpg-86, ls-tacdt-80, mv-cdtr-93, s-ac-90, hsa-fdsc-93, j-cegt-70, s-cdtvd-88, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "J.-M. Moreau" +, title = "Hierarchical {Delaunay} Triangulation" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "165--170" +, cites = "a-vdsfg-91, c-cdt-89, c-ucplg-75, c-llpqb-72, f-savd-87, gs-pmgsc-85, ll-gdtpg-86, ls-tacdt-80, mv-cdtr-93, s-ac-90, hsa-fdsc-93, j-cegt-70, s-cdtvd-88, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{mv-cdtr-93 -, author = "J.-M. Moreau and P. Volino" -, title = "Constrained {Delaunay} triangulation revisited" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "340--345" -, cites = "a-vdsfg-91, bt-hrodt-86, c-cdt-87, c-cdt-89, es-cvdpu-90, f-savd-86, f-savd-87, gs-pmgsc-85, k-eccs-79, l-prp-78p, ll-gdtpg-86, ls-tacdt-80, ps-cgi-85, s-cdtvd-88, sh-cpp-75, dmt-fddtl-91t, ws-oacdt-87, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "J.-M. Moreau and P. Volino" +, title = "Constrained {Delaunay} triangulation revisited" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "340--345" +, cites = "a-vdsfg-91, bt-hrodt-86, c-cdt-87, c-cdt-89, es-cvdpu-90, f-savd-86, f-savd-87, gs-pmgsc-85, k-eccs-79, l-prp-78p, ll-gdtpg-86, ls-tacdt-80, ps-cgi-85, s-cdtvd-88, sh-cpp-75, dmt-fddtl-91t, ws-oacdt-87, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{m-dtd-82 -, author = "B. Moret" -, title = "Decision trees and diagrams" -, journal = "ACM Comput. Surv." -, volume = "??" -, year = 1982 -, pages = "593--623" -, update = "98.03 bibrelex" +, author = "B. Moret" +, title = "Decision trees and diagrams" +, journal = "ACM Comput. Surv." +, volume = "??" +, year = 1982 +, pages = "593--623" +, update = "98.03 bibrelex" } @inproceedings{mcsy-irp-97 -, author = "B. M. E. Moret and M. Collins and J. Saia and L. Yu" -, title = "The Ice Rink Problem" -, booktitle = "Proc. Workshop on Algorithm Engineering" -, nickname = "WAE '97" -, site = "Venice" -, month = sep -, year = 1997 -, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap11.ps.gz" -, update = "00.11 smid, 00.07 icking, 98.07 bibrelex+smid+vahrenhold+vismara, 98.03 mitchell+moret" +, author = "B. M. E. Moret and M. Collins and J. Saia and L. Yu" +, title = "The Ice Rink Problem" +, booktitle = "Proc. Workshop on Algorithm Engineering" +, nickname = "WAE '97" +, site = "Venice" +, month = sep +, year = 1997 +, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap11.ps.gz" +, update = "00.11 smid, 00.07 icking, 98.07 bibrelex+smid+vahrenhold+vismara, 98.03 mitchell+moret" } @inproceedings{ms-eaacm-91 -, author = "B. M. E. Moret and H. D. Shapiro" -, title = "An empirical analysis of algorithms for constructing a minimum spanning tree" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "400--411" -, update = "93.05 moret" +, author = "B. M. E. Moret and H. D. Shapiro" +, title = "An empirical analysis of algorithms for constructing a minimum spanning tree" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "400--411" +, update = "93.05 moret" } @inproceedings{ms-hfmst-91 -, author = "B. M. E. Moret and H. D. Shapiro" -, title = "How to find a minimum spanning tree in practice" -, booktitle = "Proc. Conf. on New Results and New Trends in Computer Science" -, series = "Lecture Notes Comput. Sci." -, volume = 555 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "192--203" -, update = "93.09 erickson, 93.05 moret" +, author = "B. M. E. Moret and H. D. Shapiro" +, title = "How to find a minimum spanning tree in practice" +, booktitle = "Proc. Conf. on New Results and New Trends in Computer Science" +, series = "Lecture Notes Comput. Sci." +, volume = 555 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "192--203" +, update = "93.09 erickson, 93.05 moret" } @book{m-gmtbg-88 -, author = "F. Morgan" -, title = "Geometric Measure Theory: a Beginner's Guide" -, publisher = "Academic Press" -, year = 1988 -, update = "97.11 bibrelex" +, author = "F. Morgan" +, title = "Geometric Measure Theory: a Beginner's Guide" +, publisher = "Academic Press" +, year = 1988 +, update = "97.11 bibrelex" } @inproceedings{m-mscnr-91 -, author = "F. Morgan" -, title = "Minimal surfaces, crystals, and norms on {$R^{n}$}" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "204--213" -, cites = "abfhz-csbp-90, achlkkmh-scmfe-90, achlkkmh-sspmn-91, c-sp-67, c-emnr-89, cr-wim-41, h-sprd-66, lm-mcnif-91, l-emnmo-90, m-gmtbg-88, m-rgbg-91, m-sbcsn-91, t-sssbl-76, ZZZ" -, update = "97.11 bibrelex" +, author = "F. Morgan" +, title = "Minimal surfaces, crystals, and norms on {$R^{n}$}" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "204--213" +, cites = "abfhz-csbp-90, achlkkmh-scmfe-90, achlkkmh-sspmn-91, c-sp-67, c-emnr-89, cr-wim-41, h-sprd-66, lm-mcnif-91, l-emnmo-90, m-gmtbg-88, m-rgbg-91, m-sbcsn-91, t-sssbl-76, ZZZ" +, update = "97.11 bibrelex" } @techreport{m-rgbg-91 -, author = "F. Morgan" -, title = "{Riemannian} Geometry: a Beginner's guide" -, type = "Manuscript" -, institution = "Williams College" -, year = 1991 -, update = "97.11 bibrelex" +, author = "F. Morgan" +, title = "{Riemannian} Geometry: a Beginner's guide" +, type = "Manuscript" +, institution = "Williams College" +, year = 1991 +, update = "97.11 bibrelex" } @techreport{m-sbcsn-91 -, author = "F. Morgan" -, title = "Soap-bubble-clusters, shortest networks, and minimal surfaces" -, type = "Preprint" -, institution = "Williams College" -, year = 1991 -, update = "97.11 bibrelex" +, author = "F. Morgan" +, title = "Soap-bubble-clusters, shortest networks, and minimal surfaces" +, type = "Preprint" +, institution = "Williams College" +, year = 1991 +, update = "97.11 bibrelex" } @article{msy-hrord-92 -, author = "S. Mori and C. Suen and K. Yamamoto" -, title = "Historical review of {OCR} research and development" -, journal = "Proc. IEEE" -, volume = 80 -, year = 1992 -, pages = "1029--1058" -, update = "98.07 bibrelex" +, author = "S. Mori and C. Suen and K. Yamamoto" +, title = "Historical review of {OCR} research and development" +, journal = "Proc. IEEE" +, volume = 80 +, year = 1992 +, pages = "1029--1058" +, update = "98.07 bibrelex" } @article{myy-rmrhc-84 -, author = "S. Mori and K. Yamamoto and M. Yasuda" -, title = "Research on machine recognition of handprinted characters" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-6" -, year = 1984 -, pages = "386--405" -, update = "98.07 bibrelex" +, author = "S. Mori and K. Yamamoto and M. Yasuda" +, title = "Research on machine recognition of handprinted characters" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-6" +, year = 1984 +, pages = "386--405" +, update = "98.07 bibrelex" } @incollection{mpz-cgmlp-96 -, author = "T. L. Morin and N. Prabhu and Z. Zhang" -, title = "Complexity of the gravitational method for linear programming" -, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1180 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "212--223" -, update = "97.03 smid" +, author = "T. L. Morin and N. Prabhu and Z. Zhang" +, title = "Complexity of the gravitational method for linear programming" +, booktitle = "Proc. 16th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1180 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "212--223" +, update = "97.03 smid" } @phdthesis{m-tphpu-73 -, author = "H. C. Morris" -, title = "Two pigeon hole principles and unions of convexly disjoint sets" -, school = "Califonia Inst. Tech." -, address = "Pasadena, CA" -, year = 1973 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "H. C. Morris" +, title = "Two pigeon hole principles and unions of convexly disjoint sets" +, school = "Califonia Inst. Tech." +, address = "Pasadena, CA" +, year = 1973 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{mn-salfl-80 -, author = "J. G. Morris and J. P. Norback" -, title = "A simple approach to linear facility location" -, journal = "Transp. Sci." -, volume = 14 -, year = 1980 -, pages = "1--8" -, update = "98.03 bibrelex" +, author = "J. G. Morris and J. P. Norback" +, title = "A simple approach to linear facility location" +, journal = "Transp. Sci." +, volume = 14 +, year = 1980 +, pages = "1--8" +, update = "98.03 bibrelex" } @article{ms-esppc-00 -, author = "W. Morris and V. Soltan" -, title = "The {Erd{\H{o}}s-Szekeres} problem on points in convex position - a survey" -, journal = "Bull. Amer. Math. Soc." -, volume = 37 -, year = 2000 -, pages = "437--458" -, update = "02.03 devillers" +, author = "W. Morris and V. Soltan" +, title = "The {Erd{\H{o}}s-Szekeres} problem on points in convex position - a survey" +, journal = "Bull. Amer. Math. Soc." +, volume = 37 +, year = 2000 +, pages = "437--458" +, update = "02.03 devillers" } @book{m-cghgm-90 -, author = "M. E. Mortenson" -, title = "Computer Graphics Handbook: Geometry and Mathematics" -, publisher = "Industrial Press" -, year = 1990 -, isbn = "0-8311-1002-3" -, update = "93.09 held" -, annote = "a self-contained collection of analytic geometry concepts" +, author = "M. E. Mortenson" +, title = "Computer Graphics Handbook: Geometry and Mathematics" +, publisher = "Industrial Press" +, year = 1990 +, isbn = "0-8311-1002-3" +, update = "93.09 held" +, annote = "a self-contained collection of analytic geometry concepts" } @book{m-gm-85 -, author = "M. E. Mortenson" -, title = "Geometric Modeling" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1985 -, update = "99.11 bibrelex, 93.05 orourke" +, author = "M. E. Mortenson" +, title = "Geometric Modeling" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1985 +, update = "99.11 bibrelex, 93.05 orourke" } @techreport{m-cogdb-66 -, author = "G. M. Morton" -, title = "A computer oriented geodetic data base and a new technique in file sequencing" -, institution = "IBM Ltd." -, address = "Ottawa, Canada" -, year = 1966 -, update = "97.07 agarwal" +, author = "G. M. Morton" +, title = "A computer oriented geodetic data base and a new technique in file sequencing" +, institution = "IBM Ltd." +, address = "Ottawa, Canada" +, year = 1966 +, update = "97.07 agarwal" } @inproceedings{mf-iicsf-96 -, author = "S. M. Morvan and G. M. Fadel" -, title = "IVECS, interactive correction of .{STL} files in a virtual environment" -, booktitle = "Proc. Sympos. on Solid Freeform Fabrication" -, site = "Austin, TX" -, organization = "Dept. Mech. Eng., Univ. Texas Austin" -, year = 1996 -, update = "98.07 bibrelex" +, author = "S. M. Morvan and G. M. Fadel" +, title = "IVECS, interactive correction of .{STL} files in a virtual environment" +, booktitle = "Proc. Sympos. on Solid Freeform Fabrication" +, site = "Austin, TX" +, organization = "Dept. Mech. Eng., Univ. Texas Austin" +, year = 1996 +, update = "98.07 bibrelex" } @inproceedings{myap-vimps-95 -, author = "M. A. Mosaad and X. Ye and S. L. Abrams and N. M. Patrikalakis" -, title = "Visualization and Information Modeling of Propeller Surface Roughness" -, booktitle = "Proc. IMAM '95, 7th International Maritime Association of Mediterranean Congress" -, year = 1995 -, update = "95.09 korneenko, 95.05 abrams" +, author = "M. A. Mosaad and X. Ye and S. L. Abrams and N. M. Patrikalakis" +, title = "Visualization and Information Modeling of Propeller Surface Roughness" +, booktitle = "Proc. IMAM '95, 7th International Maritime Association of Mediterranean Congress" +, year = 1995 +, update = "95.09 korneenko, 95.05 abrams" } @article{m-dddnp-52 -, author = "L. Moser" -, title = "On the different distances determined by $n$ points" -, journal = "Amer. Math. Monthly" -, volume = 59 -, year = 1952 -, pages = "85--91" -, update = "98.07 bibrelex" +, author = "L. Moser" +, title = "On the different distances determined by $n$ points" +, journal = "Amer. Math. Monthly" +, volume = 59 +, year = 1952 +, pages = "85--91" +, update = "98.07 bibrelex" } @techreport{m-rpdg-81 -, author = "W. Moser" -, title = "Research Problems in Discrete Geometry" -, institution = "Dept. Math., McGill Univ." -, address = "Montreal, PQ" -, year = 1981 -, update = "97.11 bibrelex" +, author = "W. Moser" +, title = "Research Problems in Discrete Geometry" +, institution = "Dept. Math., McGill Univ." +, address = "Montreal, PQ" +, year = 1981 +, update = "97.11 bibrelex" } @incollection{mp-rdcg-93 -, author = "W. Moser and J. Pach" -, title = "Recent Developments in Combinatorial Geometry" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "281--302" -, keywords = "survey paper, combinatorial geometry, distance distribution, geometric graphs, lines in space" -, update = "93.09 erickson+rote" +, author = "W. Moser and J. Pach" +, title = "Recent Developments in Combinatorial Geometry" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "281--302" +, keywords = "survey paper, combinatorial geometry, distance distribution, geometric graphs, lines in space" +, update = "93.09 erickson+rote" } % ### others? @incollection{m-pepfs-85 -, author = "W. O. J. Moser" -, title = "Problems on extremal properties of a finite set of points" -, editor = "Goodman and others" -, booktitle = "??" -, publisher = "New York Academy of Sciences" -, year = 1985 -, pages = "52--64" -, update = "97.11 bibrelex" +, author = "W. O. J. Moser" +, title = "Problems on extremal properties of a finite set of points" +, editor = "Goodman and others" +, booktitle = "??" +, publisher = "New York Academy of Sciences" +, year = 1985 +, pages = "52--64" +, update = "97.11 bibrelex" } @inproceedings{m-bafva-89 -, author = "G. S. Moss" -, title = "``{BURST}:'' {Air} {Force} vulnerability analyses from {BRL-CAD} models" -, booktitle = "Proc. BRL-CAD Symposium `89" -, publisher = "American Defense Preparadness Assoc." -, address = "Aberdeen Proving Ground, MD" -, year = 1989 -, pages = "88--109" -, update = "95.05 agarwal" +, author = "G. S. Moss" +, title = "``{BURST}:'' {Air} {Force} vulnerability analyses from {BRL-CAD} models" +, booktitle = "Proc. BRL-CAD Symposium `89" +, publisher = "American Defense Preparadness Assoc." +, address = "Aberdeen Proving Ground, MD" +, year = 1989 +, pages = "88--109" +, update = "95.05 agarwal" } @article{m-snaga-67 -, author = "W. W. Moss" -, title = "Some new analytic and graphic approaches to numerical taxonomy, with an example from the dermanyssidae" -, journal = "Systematic Zoology" -, volume = 16 -, year = 1967 -, pages = "177--207" +, author = "W. W. Moss" +, title = "Some new analytic and graphic approaches to numerical taxonomy, with an example from the dermanyssidae" +, journal = "Systematic Zoology" +, volume = 16 +, year = 1967 +, pages = "177--207" } @incollection{mfs-2dcmc-87 -, author = "R. C. Mosteller and A. H. Frey and R. Suaya" -, title = "$2$-d compaction a {Monte}-{Carlo} method" -, editor = "P. Lasleber" -, booktitle = "Advanced Research in VLSI" -, publisher = "MIT Press" -, year = 1987 -, update = "98.03 bibrelex" +, author = "R. C. Mosteller and A. H. Frey and R. Suaya" +, title = "$2$-d compaction a {Monte}-{Carlo} method" +, editor = "P. Lasleber" +, booktitle = "Advanced Research in VLSI" +, publisher = "MIT Press" +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{mas-ast-90 -, author = "P. H. Mott and A. S. Argon and U. W. Suter" -, title = "The atomic strain tensor" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "125--128" -, cites = "too-natdv-83, ZZZ" -, update = "98.07 bibrelex" +, author = "P. H. Mott and A. S. Argon and U. W. Suter" +, title = "The atomic strain tensor" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "125--128" +, cites = "too-natdv-83, ZZZ" +, update = "98.07 bibrelex" } @techreport{m-hmcs-96 -, author = "R. Motwani" -, title = "Hashing Molecules for Common Substructures" -, type = "Working paper" -, institution = "??" -, year = 1996 -, update = "98.07 bibrelex" +, author = "R. Motwani" +, title = "Hashing Molecules for Common Substructures" +, type = "Working paper" +, institution = "??" +, year = 1996 +, update = "98.07 bibrelex" } @inproceedings{mnn-pmydp-89 -, author = "R. Motwani and J. Naor and M. Naor" -, title = "The probabilistic method yields deterministic parallel algorithms" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "8--13" -, keywords = "random sampling, derandomization" -, comments = "to appear in J. Comput. Syst. Sci." +, author = "R. Motwani and J. Naor and M. Naor" +, title = "The probabilistic method yields deterministic parallel algorithms" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "8--13" +, keywords = "random sampling, derandomization" +, comments = "to appear in J. Comput. Syst. Sci." } @inproceedings{mr-ddsqd-86 -, author = "R. Motwani and P. Raghavan" -, title = "Deferred data structuring: query-driven preprocessing for geometric search problems" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "303--312" -, precedes = "kmr-dds-88" -, cites = "b-lbact-83, b-mdc-80, cgl-pgd-83, d-ltatt-84, km-pstoo-85, ks-upcha-82, m-pst-85, m-ltalp-83, sh-cpp-75, sh-gip-76, s-cg-78, ZZZ" -, update = "98.03 bibrelex" +, author = "R. Motwani and P. Raghavan" +, title = "Deferred data structuring: query-driven preprocessing for geometric search problems" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "303--312" +, precedes = "kmr-dds-88" +, cites = "b-lbact-83, b-mdc-80, cgl-pgd-83, d-ltatt-84, km-pstoo-85, ks-upcha-82, m-pst-85, m-ltalp-83, sh-cpp-75, sh-gip-76, s-cg-78, ZZZ" +, update = "98.03 bibrelex" } @book{mr-ra-95 -, author = "R. Motwani and P. Raghavan" -, title = "Randomized Algorithms" -, publisher = "Cambridge University Press" -, address = "New York, NY" -, year = 1995 -, update = "97.03 agarwal, 96.05 ramkumar+smid" +, author = "R. Motwani and P. Raghavan" +, title = "Randomized Algorithms" +, publisher = "Cambridge University Press" +, address = "New York, NY" +, year = 1995 +, update = "97.03 agarwal, 96.05 ramkumar+smid" } @inproceedings{mrs-copsp-88 -, author = "R. Motwani and A. Raghunathan and H. Saran" -, title = "Covering orthogonal polygons with star polygons: the perfect graph approach" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "211--223" -, precedes = "mrs-copsp-89" -, cites = "a-agpiv-84, cr-dduap-87, gj-cigtn-79, g-amcmc-72, g-agtpg-80, gls-emicc-81, h-wtg-85, hhm-owtg-87, k-mchco-86, l-pg-83, m-udzts-57, mrs-pgocc-89, o-agta-87, rc-csopm-87, r-cocpt-87, os-snhpd-83, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "R. Motwani and A. Raghunathan and H. Saran" +, title = "Covering orthogonal polygons with star polygons: the perfect graph approach" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "211--223" +, precedes = "mrs-copsp-89" +, cites = "a-agpiv-84, cr-dduap-87, gj-cigtn-79, g-amcmc-72, g-agtpg-80, gls-emicc-81, h-wtg-85, hhm-owtg-87, k-mchco-86, l-pg-83, m-udzts-57, mrs-pgocc-89, o-agta-87, rc-csopm-87, r-cocpt-87, os-snhpd-83, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{mrs-copsp-89 -, author = "R. Motwani and A. Raghunathan and H. Saran" -, title = "Covering orthogonal polygons with star polygons: the perfect graph approach" -, journal = "J. Comput. Syst. Sci." -, volume = 40 -, year = 1989 -, pages = "19--48" -, keywords = "perfect graphs, polygon covering" -, succeeds = "mrs-copsp-88" +, author = "R. Motwani and A. Raghunathan and H. Saran" +, title = "Covering orthogonal polygons with star polygons: the perfect graph approach" +, journal = "J. Comput. Syst. Sci." +, volume = 40 +, year = 1989 +, pages = "19--48" +, keywords = "perfect graphs, polygon covering" +, succeeds = "mrs-copsp-88" } @article{mrs-pgocc-88 -, author = "R. Motwani and A. Raghunathan and H. Saran" -, title = "Perfect Graphs and Orthogonally Convex Covers" -, journal = "4th SIAM Conf. on Discr. Math." -, volume = "??" -, month = jun -, year = 1988 -, update = "98.07 bibrelex" +, author = "R. Motwani and A. Raghunathan and H. Saran" +, title = "Perfect Graphs and Orthogonally Convex Covers" +, journal = "4th SIAM Conf. on Discr. Math." +, volume = "??" +, month = jun +, year = 1988 +, update = "98.07 bibrelex" } @article{mrs-pgocc-89 -, author = "R. Motwani and A. Raghunathan and H. Saran" -, title = "Perfect graphs and orthogonally convex covers" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 2 -, year = 1989 -, pages = "371--392" -, keywords = "perfect graphs, polygon covering" +, author = "R. Motwani and A. Raghunathan and H. Saran" +, title = "Perfect graphs and orthogonally convex covers" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 2 +, year = 1989 +, pages = "371--392" +, keywords = "perfect graphs, polygon covering" } @article{m-lpcpf-51 -, author = "T. Motzkin" -, title = "The lines and planes connecting the points of a finite set" -, journal = "Trans. Amer. Math. Soc." -, volume = 70 -, year = 1951 -, pages = "451--464" -, update = "98.07 devillers" +, author = "T. Motzkin" +, title = "The lines and planes connecting the points of a finite set" +, journal = "Trans. Amer. Math. Soc." +, volume = 70 +, year = 1951 +, pages = "451--464" +, update = "98.07 devillers" } @article{mrtt-ddm-53 -, author = "T. S. Motzkin and H. Raiffa and G. L. Thompson and R. M. Thrall" -, title = "The Double Desription Method" -, journal = "Annals of Math. Studies" -, volume = 8 -, year = 1953 -, update = "97.11 bibrelex" +, author = "T. S. Motzkin and H. Raiffa and G. L. Thompson and R. M. Thrall" +, title = "The Double Desription Method" +, journal = "Annals of Math. Studies" +, volume = 8 +, year = 1953 +, update = "97.11 bibrelex" } @inproceedings{m-mospv-90 -, author = "N. Mouawad" -, title = "Minimal obscuring sets: the parallel view case" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "232--235" -, cites = "ZZZ" -, update = "98.07 bibrelex" +, author = "N. Mouawad" +, title = "Minimal obscuring sets: the parallel view case" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "232--235" +, cites = "ZZZ" +, update = "98.07 bibrelex" } @techreport{m-nvg-?? -, author = "N. Mouawad" -, title = "On the nature of visibility graphs" -, institution = "University of Waterloo" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "N. Mouawad" +, title = "On the nature of visibility graphs" +, institution = "University of Waterloo" +, year = "??" +, update = "93.09 milone+mitchell" } @inproceedings{m-mcscp-91 -, author = "Naji Mouawad" -, title = "The minimal cone-segment cover problem" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "100--103" -, cites = "b-lbact-83, dls-rphs-88, s-mplbc-85, h-tsm-85, hv-splsp-49, ll-ccmp-84, m-dsass-81, o-agta-87, v-msv-53, ZZZ" -, update = "98.07 bibrelex" +, author = "Naji Mouawad" +, title = "The minimal cone-segment cover problem" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "100--103" +, cites = "b-lbact-83, dls-rphs-88, s-mplbc-85, h-tsm-85, hv-splsp-49, ll-ccmp-84, m-dsass-81, o-agta-87, v-msv-53, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{ms-sp-89 -, author = "N. Mouawad and T. Shermer" -, title = "The {Superman} problem" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 39 -, update = "95.01 smid" +, author = "N. Mouawad and T. Shermer" +, title = "The {Superman} problem" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 39 +, update = "95.01 smid" } @article{ms-sp-94 -, author = "N. Mouawad and T. Shermer" -, title = "The {Superman} problem" -, journal = "Visual Comput." -, volume = 10 -, year = 1994 -, pages = "459--473" -, update = "95.01 smid" +, author = "N. Mouawad and T. Shermer" +, title = "The {Superman} problem" +, journal = "Visual Comput." +, volume = 10 +, year = 1994 +, pages = "459--473" +, update = "95.01 smid" } @incollection{m-gi-97 -, author = "D. Mount" -, title = "Geometric intersection" -, chapter = 33 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "615--632" -, update = "97.11 orourke" +, author = "D. Mount" +, title = "Geometric intersection" +, chapter = 33 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "615--632" +, update = "97.11 orourke" } @inproceedings{m-idssp-92 -, author = "D. M. Mount" -, title = "Intersection detection and separators for simple polygons" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "303--311" -, cites = "c-tsplt-90i, cd-icott-87, cegghss-rspug-91, cg-vippg-89, ck-plscc-89, dk-dsppu-90, e-cedbt-85, f-fapct-85, gs-pmgsc-85, km-accvd-91, ls-pptmc-87, ps-cgi-85, s-dasds-90, s-ltaml-86, ZZZ" -, update = "97.11 bibrelex" +, author = "D. M. Mount" +, title = "Intersection detection and separators for simple polygons" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "303--311" +, cites = "c-tsplt-90i, cd-icott-87, cegghss-rspug-91, cg-vippg-89, ck-plscc-89, dk-dsppu-90, e-cedbt-85, f-fapct-85, gs-pmgsc-85, km-accvd-91, ls-pptmc-87, ps-cgi-85, s-dasds-90, s-ltaml-86, ZZZ" +, update = "97.11 bibrelex" } @techreport{m-fspcp-85 -, author = "D. M. Mount" -, title = "On Finding Shortest Paths on Convex Polyhedra" -, type = "Technical {Report}" -, number = 1495 -, institution = "Department of Computer Science, University of Maryland" -, year = 1985 -, update = "95.09 agarwal" +, author = "D. M. Mount" +, title = "On Finding Shortest Paths on Convex Polyhedra" +, type = "Technical {Report}" +, number = 1495 +, institution = "Department of Computer Science, University of Maryland" +, year = 1985 +, update = "95.09 agarwal" } @inproceedings{m-ssps-86 -, author = "D. M. Mount" -, title = "Storing the subdivision of a polyhedral surface" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "150--158" -, precedes = "m-ssps-87" -, cites = "dk-fdpi-83, dm-eup-85, egs-oplms-86, gs-pmgsc-85, k-osps-83, lp-lppsi-77, mmp-dgp-87, m-fspcp-85, m-vdsp-85, mp-fitcp-78, p-nappl-81, sh-cpp-75, ss-spps-84, s-icpps-85, ZZZ" -, update = "97.11 bibrelex" +, author = "D. M. Mount" +, title = "Storing the subdivision of a polyhedral surface" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "150--158" +, precedes = "m-ssps-87" +, cites = "dk-fdpi-83, dm-eup-85, egs-oplms-86, gs-pmgsc-85, k-osps-83, lp-lppsi-77, mmp-dgp-87, m-fspcp-85, m-vdsp-85, mp-fitcp-78, p-nappl-81, sh-cpp-75, ss-spps-84, s-icpps-85, ZZZ" +, update = "97.11 bibrelex" } @article{m-ssps-87 -, author = "D. M. Mount" -, title = "Storing the subdivision of a polyhedral surface" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "153--174" -, succeeds = "m-ssps-86" +, author = "D. M. Mount" +, title = "Storing the subdivision of a polyhedral surface" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "153--174" +, succeeds = "m-ssps-86" } @techreport{m-ddlpc-91 -, author = "D. M. Mount" -, title = "The densest double-lattice packing of a convex polygon" -, type = "Report" -, number = 2584 -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1991 -, keywords = "packing, convex" -, update = "95.09 agarwal" +, author = "D. M. Mount" +, title = "The densest double-lattice packing of a convex polygon" +, type = "Report" +, number = 2584 +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1991 +, keywords = "packing, convex" +, update = "95.09 agarwal" } @incollection{m-ddlpc-91i -, author = "D. M. Mount" -, title = "The densest double-lattice packing of a convex polygon" -, editor = "J. E. Goodman and R. Pollack and W. Steiger" -, booktitle = "Discrete Comput. Geom." -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1991 -, pages = "245--262" -, update = "98.03 bibrelex" +, author = "D. M. Mount" +, title = "The densest double-lattice packing of a convex polygon" +, editor = "J. E. Goodman and R. Pollack and W. Steiger" +, booktitle = "Discrete Comput. Geom." +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1991 +, pages = "245--262" +, update = "98.03 bibrelex" } @techreport{m-nspsp-86 -, author = "D. M. Mount" -, title = "The number of shortest paths on the surface of a polyhedron" -, type = "Report" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1986 -, update = "97.11 bibrelex" +, author = "D. M. Mount" +, title = "The number of shortest paths on the surface of a polyhedron" +, type = "Report" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1986 +, update = "97.11 bibrelex" } @article{m-nspsp-90 -, author = "D. M. Mount" -, title = "The number of shortest paths on the surface of a polyhedron" -, journal = "SIAM J. Comput." -, volume = 19 -, year = 1990 -, pages = "593--611" +, author = "D. M. Mount" +, title = "The number of shortest paths on the surface of a polyhedron" +, journal = "SIAM J. Comput." +, volume = 19 +, year = 1990 +, pages = "593--611" } @techreport{m-vdsp-85 -, author = "D. M. Mount" -, title = "Voronoi Diagrams on the Surface of a Polyhedron" -, type = "Technical Report" -, number = 1496 -, institution = "Department of Computer Science, University of Maryland" -, year = 1985 -, update = "93.09 milone+mitchell" +, author = "D. M. Mount" +, title = "Voronoi Diagrams on the Surface of a Polyhedron" +, type = "Technical Report" +, number = 1496 +, institution = "Department of Computer Science, University of Maryland" +, year = 1985 +, update = "93.09 milone+mitchell" } @inproceedings{mc-uafet-88 -, author = "D. M. Mount and S. Chandran" -, title = "A unified approach to finding enclosing and enclosed triangles" -, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." -, year = 1988 -, update = "98.07 bibrelex" +, author = "D. M. Mount and S. Chandran" +, title = "A unified approach to finding enclosing and enclosed triangles" +, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." +, year = 1988 +, update = "98.07 bibrelex" } @inproceedings{mn-earca-93 -, author = "D. M. Mount and N. Netanyahu" -, title = "Efficient algorithms for robust circular arc estimators" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "79--84" -, succeeds = "mn-earca-93u" -, cites = "am-rsss-92, a-afccf-90, c-ocfod-90, ck-ocfwd-93, csss-otass-89, clr-ia-90, dmn-rass-92, hrrs-rsabi-86, m-ept-91, m-roass-91, mmn-erarm-93, mn-earca-93u, rl-rrod-87, s-ercbk-68, s-rrurm-82, sw-rssf-92, to-lseec-89a, t-mlpra1-50, t-mlpra2-50, t-mlpra3-50, tc-saeca-89, ZZZ" -, update = "98.11 bibrelex, 95.09 agarwal, 93.09 milone+mitchell" +, author = "D. M. Mount and N. Netanyahu" +, title = "Efficient algorithms for robust circular arc estimators" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "79--84" +, succeeds = "mn-earca-93u" +, cites = "am-rsss-92, a-afccf-90, c-ocfod-90, ck-ocfwd-93, csss-otass-89, clr-ia-90, dmn-rass-92, hrrs-rsabi-86, m-ept-91, m-roass-91, mmn-erarm-93, mn-earca-93u, rl-rrod-87, s-ercbk-68, s-rrurm-82, sw-rssf-92, to-lseec-89a, t-mlpra1-50, t-mlpra2-50, t-mlpra3-50, tc-saeca-89, ZZZ" +, update = "98.11 bibrelex, 95.09 agarwal, 93.09 milone+mitchell" } @techreport{mn-ceahr-91 -, author = "D. M. Mount and N. S. Netanyahu" -, title = "Computationally Efficient Algorithms for a Highly Robust Line Estimators" -, type = "Technical Report" -, number = "CS-TR-2816" -, institution = "Center for Automation Research, University of Maryland" -, month = dec -, year = 1991 -, update = "98.07 bibrelex" +, author = "D. M. Mount and N. S. Netanyahu" +, title = "Computationally Efficient Algorithms for a Highly Robust Line Estimators" +, type = "Technical Report" +, number = "CS-TR-2816" +, institution = "Center for Automation Research, University of Maryland" +, month = dec +, year = 1991 +, update = "98.07 bibrelex" } @unpublished{mn-ceahd-92u -, author = "D. M. Mount and N. S. Netanyahu" -, title = "Computationally efficient algorithms for high-dimensional robust estimators" -, year = 1992 -, note = "Technical Report in preparation, Center for Automation Research, University of Maryland" -, precedes = "mn-ceahd-92" -, update = "98.07 bibrelex" +, author = "D. M. Mount and N. S. Netanyahu" +, title = "Computationally efficient algorithms for high-dimensional robust estimators" +, year = 1992 +, note = "Technical Report in preparation, Center for Automation Research, University of Maryland" +, precedes = "mn-ceahd-92" +, update = "98.07 bibrelex" } @inproceedings{mn-ceahd-92 -, author = "D. M. Mount and N. S. Netanyahu" -, title = "Computationally efficient algorithms for high-dimensional robust estimators" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "257--263" -, succeeds = "mn-ceahd-92u" -, cites = "dmn-rass-92, dh-nbp-83, es-cmsrl-90, gp-ms-83, m-roass-91, r-msr-84, ss-tseal-87, sw-frmrl-92, t-mlpra1-50, csss-otass-89, mmn-erarm-92, mn-ceahr-91, mn-ceahd-92u, n-ceare-91, on-rerc-84, rl-rrod-87, s-ercbk-68, s-rrurm-82, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "D. M. Mount and N. S. Netanyahu" +, title = "Computationally efficient algorithms for high-dimensional robust estimators" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "257--263" +, succeeds = "mn-ceahd-92u" +, cites = "dmn-rass-92, dh-nbp-83, es-cmsrl-90, gp-ms-83, m-roass-91, r-msr-84, ss-tseal-87, sw-frmrl-92, t-mlpra1-50, csss-otass-89, mmn-erarm-92, mn-ceahr-91, mn-ceahd-92u, n-ceare-91, on-rerc-84, rl-rrod-87, s-ercbk-68, s-rrurm-82, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @unpublished{mn-earca-93u -, author = "D. M. Mount and N. S. Netanyahu" -, title = "Efficient algorithms for robust circular arc estimators" -, note = "technical report in preparation" -, precedes = "mn-earca-93" -, update = "98.11 bibrelex" +, author = "D. M. Mount and N. S. Netanyahu" +, title = "Efficient algorithms for robust circular arc estimators" +, note = "technical report in preparation" +, precedes = "mn-earca-93" +, update = "98.11 bibrelex" } @article{mn-erare-01 -, author = "D. M. Mount and N. S. Netanyahu" -, title = "Efficient randomized algorithms for robust estimation of circular arcs and aligned ellipses" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "1--33" -, update = "01.07 smid" +, author = "D. M. Mount and N. S. Netanyahu" +, title = "Efficient randomized algorithms for robust estimation of circular arcs and aligned ellipses" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "1--33" +, update = "01.07 smid" } @article{mnpsw-qarse-00 -, author = "D. M. Mount and N. S. Netanyahu and C. D. Piatko and R. Silverman and A. Y. Wu" -, title = "Quantile approximation for robust statistical estimation and {$k$}-enclosing problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "593--608" -, update = "01.04 smid" +, author = "D. M. Mount and N. S. Netanyahu and C. D. Piatko and R. Silverman and A. Y. Wu" +, title = "Quantile approximation for robust statistical estimation and {$k$}-enclosing problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "593--608" +, update = "01.04 smid" } @inproceedings{mnrsy-paall-97 -, author = "D. M. Mount and N. S. Netanyahu and K. R. Romanik and R. Silverman and A. Y. Yu" -, title = "A Practical Approximation Algorithm for the LMS Line Estimator" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1997 -, pages = "473--482" -, update = "97.03 held" +, author = "D. M. Mount and N. S. Netanyahu and K. R. Romanik and R. Silverman and A. Y. Yu" +, title = "A Practical Approximation Algorithm for the LMS Line Estimator" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1997 +, pages = "473--482" +, update = "97.03 held" } @inproceedings{mnsw-cnnsq-95 -, author = "David M. Mount and Nathan S. Netanyahu and Ruth Silverman and Angela Y. Wu" -, title = "Chromatic Nearest Neighbour Searching: a Query Sensitive Approach" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "261--266" -, precedes = "mnsw-cnnsq-00" -, update = "01.04 icking, 95.09 jones" +, author = "David M. Mount and Nathan S. Netanyahu and Ruth Silverman and Angela Y. Wu" +, title = "Chromatic Nearest Neighbour Searching: a Query Sensitive Approach" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "261--266" +, precedes = "mnsw-cnnsq-00" +, update = "01.04 icking, 95.09 jones" } @article{mnsw-cnnsq-00 -, author = "David M. Mount and Nathan S. Netanyahu and Ruth Silverman and Angela Y. Wu" -, title = "Chromatic Nearest Neighbour Searching: a Query Sensitive Approach" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "97--119" -, succeeds = "mnsw-cnnsq-95" -, update = "01.04 icking+smid" +, author = "David M. Mount and Nathan S. Netanyahu and Ruth Silverman and Angela Y. Wu" +, title = "Chromatic Nearest Neighbour Searching: a Query Sensitive Approach" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "97--119" +, succeeds = "mnsw-cnnsq-95" +, update = "01.04 icking+smid" } @inproceedings{ms-getcc-88 -, author = "D. M. Mount and A. Saalfeld" -, title = "Globally-equiangular triangulations of co-circular points in {$O(n \log n)$} time" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "143--152" -, cites = "e-p33-87, e-acg-87, or-imtfe-76, ps-cgi-85, ZZZ" -, update = "98.03 bibrelex" +, author = "D. M. Mount and A. Saalfeld" +, title = "Globally-equiangular triangulations of co-circular points in {$O(n \log n)$} time" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "143--152" +, cites = "e-p33-87, e-acg-87, or-imtfe-76, ps-cgi-85, ZZZ" +, update = "98.03 bibrelex" } @article{ms-pcptc-90 -, author = "D. M. Mount and R. Silverman" -, title = "Packing and covering the plane with translates of a convex polygon" -, journal = "J. Algorithms" -, volume = 11 -, year = 1990 -, pages = "564--580" -, keywords = "packing, decomposition" -, update = "95.09 agarwal" +, author = "D. M. Mount and R. Silverman" +, title = "Packing and covering the plane with translates of a convex polygon" +, journal = "J. Algorithms" +, volume = 11 +, year = 1990 +, pages = "564--580" +, keywords = "packing, decomposition" +, update = "95.09 agarwal" } @article{msw-aotp-93 -, author = "D. M. Mount and R. Silverman and A. Wu" -, title = "On the area of overlap of translated polygons" -, journal = "SPIE Vision Geometry II" -, volume = 2060 -, year = 1993 -, pages = "254--264" -, update = "99.11 devillers" +, author = "D. M. Mount and R. Silverman and A. Wu" +, title = "On the area of overlap of translated polygons" +, journal = "SPIE Vision Geometry II" +, volume = 2060 +, year = 1993 +, pages = "254--264" +, update = "99.11 devillers" } % c-stsar-94 quotes this work incompletely. @phdthesis{m--83 -, author = "J. T. Mowchenko" -, title = "??" -, school = "Department of Electrical Engineering, University of Waterloo" -, year = 1983 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "J. T. Mowchenko" +, title = "??" +, school = "Department of Electrical Engineering, University of Waterloo" +, year = 1983 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @article{m-ccchf-82 -, author = "Y. J. Mu" -, title = "Computer construction of the convex hull of finite point sets ({Chinese} {English} summary)" -, journal = "J. Northwest Univ." -, volume = 12 -, year = 1982 -, pages = "28--34" +, author = "Y. J. Mu" +, title = "Computer construction of the convex hull of finite point sets ({Chinese} {English} summary)" +, journal = "J. Northwest Univ." +, volume = 12 +, year = 1982 +, pages = "28--34" } @article{m-ritdd-98 -, author = "E. P. M{\"u}cke" -, title = "A Robust Implementation for Three-Dimensional {Delaunay} Triangulations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, number = 2 -, year = 1998 -, pages = "255--276" -, update = "98.07 held" +, author = "E. P. M{\"u}cke" +, title = "A Robust Implementation for Three-Dimensional {Delaunay} Triangulations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, number = 2 +, year = 1998 +, pages = "255--276" +, update = "98.07 held" } @mastersthesis{m-emzed-85 -, author = "E. P. M{\"u}cke" -, title = "Ein {Modell} zur {Elimination} degeneriertter {F{\"a}lle} in geometrischen {Algorithmen}" -, school = "Inst. Informationsverarb., Techn. Univ. Graz" -, address = "Graz, Austria" -, year = 1985 -, note = "Graduating thesis" -, keywords = "master thesis" -, update = "98.03 bibrelex" +, author = "E. P. M{\"u}cke" +, title = "Ein {Modell} zur {Elimination} degeneriertter {F{\"a}lle} in geometrischen {Algorithmen}" +, school = "Inst. Informationsverarb., Techn. Univ. Graz" +, address = "Graz, Austria" +, year = 1985 +, note = "Graduating thesis" +, keywords = "master thesis" +, update = "98.03 bibrelex" } @phdthesis{m-sitdg-93 -, author = "E. P. M{\"u}cke" -, title = "Shapes and Implementations in Three-Dimensional Geometry" -, school = "Department of Computer Science, University of Illinois" -, address = "Urbana, IL" -, year = 1993 -, note = "Technical Report UIUCDCS-R-93-1836" -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "E. P. M{\"u}cke" +, title = "Shapes and Implementations in Three-Dimensional Geometry" +, school = "Department of Computer Science, University of Illinois" +, address = "Urbana, IL" +, year = 1993 +, note = "Technical Report UIUCDCS-R-93-1836" +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @inproceedings{msz-frplw-96 -, author = "Ernst P. M{\"u}cke and Isaac Saias and Binhai Zhu" -, title = "Fast Randomized Point Location Without Preprocessing in Two- and Three-Dimensional {Delaunay} Triangulations" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "274--283" -, cites = "aeiim-pubtc-85, bp-adtaa-91, bd-irgo-95, bey-eedt-91a, b-cdt-81, b-rgsdd-93, dl-pmtds-89, dl-msp-76, dmz-npldt-98, d-hdvdl-91, gh-dmcpd-92, gs-cdtp-78, gs-pmgsc-85, m-sitdg-93, ps-cgi-85, ZZZ" -, update = "99.03 bibrelex, 97.11 bibrelex, 96.05 efrat" +, author = "Ernst P. M{\"u}cke and Isaac Saias and Binhai Zhu" +, title = "Fast Randomized Point Location Without Preprocessing in Two- and Three-Dimensional {Delaunay} Triangulations" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "274--283" +, cites = "aeiim-pubtc-85, bp-adtaa-91, bd-irgo-95, bey-eedt-91a, b-cdt-81, b-rgsdd-93, dl-pmtds-89, dl-msp-76, dmz-npldt-98, d-hdvdl-91, gh-dmcpd-92, gs-cdtp-78, gs-pmgsc-85, m-sitdg-93, ps-cgi-85, ZZZ" +, update = "99.03 bibrelex, 97.11 bibrelex, 96.05 efrat" } @article{m-hbins-90 -, author = "D. J. Muder" -, title = "How Big Is an {N}-Sided {Voronoi} Polygon" -, journal = "Proceedings Of The London Mathematical Society" -, volume = 61 -, month = jul -, year = 1990 -, pages = "91--108" -, annote = "If $a_n$ is area of the smallest VP defined by a point - set with closest distance 2 then $a_n/n$ tends to - $1/\pi$." +, author = "D. J. Muder" +, title = "How Big Is an {N}-Sided {Voronoi} Polygon" +, journal = "Proceedings Of The London Mathematical Society" +, volume = 61 +, month = jul +, year = 1990 +, pages = "91--108" +, annote = "If $a_n$ is area of the smallest VP defined by a point + set with closest distance 2 then $a_n/n$ tends to + $1/\pi$." } @article{m-snuls-87 -, author = "H. Mueller" -, title = "Sorting numbers using limited systolic coprocessors" -, journal = "IPL" -, volume = "??" -, year = 1987 -, pages = "351--354" -, update = "98.03 bibrelex" +, author = "H. Mueller" +, title = "Sorting numbers using limited systolic coprocessors" +, journal = "IPL" +, volume = "??" +, year = 1987 +, pages = "351--354" +, update = "98.03 bibrelex" } @techreport{sfh-vchnt-95 -, author = "S. Mukherjee and J. D. Foley and S. E. Hudson" -, title = "Visualizing Complex Hypermedia Networks Through Multiple Hierarchical Views" -, institution = "Graphics and Visualization Center, GeorgiaTech" -, year = 1995 -, keywords = "graph drawing" -, update = "96.09 tamassia, 96.04 garg" +, author = "S. Mukherjee and J. D. Foley and S. E. Hudson" +, title = "Visualizing Complex Hypermedia Networks Through Multiple Hierarchical Views" +, institution = "Graphics and Visualization Center, GeorgiaTech" +, year = 1995 +, keywords = "graph drawing" +, update = "96.09 tamassia, 96.04 garg" } @article{mah-olpcg-97 -, author = "A. Mukhopadhyay and A. Agrawal and R. M. Hosabettu" -, title = "On the ordinary line problem in computational geometry" -, journal = "Nordic J. Comput." -, volume = 4 -, year = 1997 -, pages = "330--341" -, update = "98.07 smid" +, author = "A. Mukhopadhyay and A. Agrawal and R. M. Hosabettu" +, title = "On the ordinary line problem in computational geometry" +, journal = "Nordic J. Comput." +, volume = 4 +, year = 1997 +, pages = "330--341" +, update = "98.07 smid" } @inproceedings{mkb-caocp-93 -, author = "A. Mukhopadhyay and C. Kumar and B. Bhattacharya" -, title = "Computing an area-optimal convex polygonal stabber of a set of parallel line segments" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "169--174" -, cites = "ad-ahdsp-90, aw-plts-89, bcetsu-csts-91, emprww-sls-82, gpw-gtt-91, gs-spscp-90, hdk-cgp-64, jmb-oairs-92, o-olafs-81, ol-mcp-81, e-ftssg-85, lmr-mpsil-, sm-ssps-92, ZZZ" -, update = "98.11 bibrelex, 95.01 smid, 93.09 milone+mitchell" +, author = "A. Mukhopadhyay and C. Kumar and B. Bhattacharya" +, title = "Computing an area-optimal convex polygonal stabber of a set of parallel line segments" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "169--174" +, cites = "ad-ahdsp-90, aw-plts-89, bcetsu-csts-91, emprww-sls-82, gpw-gtt-91, gs-spscp-90, hdk-cgp-64, jmb-oairs-92, o-olafs-81, ol-mcp-81, e-ftssg-85, lmr-mpsil-, sm-ssps-92, ZZZ" +, update = "98.11 bibrelex, 95.01 smid, 93.09 milone+mitchell" } @article{m-eprcg-88 -, author = "C. M{\"u}ller" -, title = "Equidecomposability of polyhedra with reference to crystallographic groups" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "383--389" +, author = "C. M{\"u}ller" +, title = "Equidecomposability of polyhedra with reference to crystallographic groups" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "383--389" } @article{mp-fitcp-78 -, author = "D. E. Muller and F. P. Preparata" -, title = "Finding the intersection of two convex polyhedra" -, journal = "Theoret. Comput. Sci." -, volume = 7 -, year = 1978 -, pages = "217--236" +, author = "D. E. Muller and F. P. Preparata" +, title = "Finding the intersection of two convex polyhedra" +, journal = "Theoret. Comput. Sci." +, volume = 7 +, year = 1978 +, pages = "217--236" } @inproceedings{m-bnpdb-90 -, author = "Heinrich M{\"u}ller" -, title = "{Bestimmung} von {Nullstellen} von {Polynomgleichungssystemen} durch {Basistransformation}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = "18--19" -, update = "00.03 bibrelex" +, author = "Heinrich M{\"u}ller" +, title = "{Bestimmung} von {Nullstellen} von {Polynomgleichungssystemen} durch {Basistransformation}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = "18--19" +, update = "00.03 bibrelex" } @inproceedings{m-ct-92 -, author = "Heinrich M{\"u}ller" -, title = "Contour Triangulation" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "93--96" -, update = "00.03 bibrelex" +, author = "Heinrich M{\"u}ller" +, title = "Contour Triangulation" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "93--96" +, update = "00.03 bibrelex" } @incollection{m-rpl-85 -, author = "H. M{\"u}ller" -, title = "Rasterized point location" -, booktitle = "Proc. Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, publisher = "Trauner Verlag" -, address = "Linz, Austria" -, year = 1985 -, pages = "281--293" -, update = "97.03 schwarzkopf" +, author = "H. M{\"u}ller" +, title = "Rasterized point location" +, booktitle = "Proc. Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, publisher = "Trauner Verlag" +, address = "Linz, Austria" +, year = 1985 +, pages = "281--293" +, update = "97.03 schwarzkopf" } @techreport{m-rcsg-85 -, author = "H. M{\"u}ller" -, title = "Raytracing complex scenes by grids" -, type = "Report" -, number = "??" -, institution = "Inst. Inform., Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1985 +, author = "H. M{\"u}ller" +, title = "Raytracing complex scenes by grids" +, type = "Report" +, number = "??" +, institution = "Inst. Inform., Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1985 } @inproceedings{m-srsng-01 -, author = "Heinrich M{\"u}ller" -, title = "Surface Reconstruction by Spatial Neighborhood Graphs" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "7--10" -, update = "01.04 icking" +, author = "Heinrich M{\"u}ller" +, title = "Surface Reconstruction by Spatial Neighborhood Graphs" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "7--10" +, update = "01.04 icking" } @inproceedings{m-tccar-88 -, author = "H. M{\"u}ller" -, title = "Time coherence in computer animation by ray tracing" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "187--201" -, keywords = "design of algorithms, computer graphics, rays, interval trees" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "H. M{\"u}ller" +, title = "Time coherence in computer animation by ray tracing" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "187--201" +, keywords = "design of algorithms, computer graphics, rays, interval trees" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @inproceedings{mo-sasbb-91 -, author = "Heinrich M{\"u}ller and Matthias Otte" -, title = "Solving algebraic systems in {Bernstein}-{B{\'e}zier} representation" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "161--169" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Heinrich M{\"u}ller and Matthias Otte" +, title = "Solving algebraic systems in {Bernstein}-{B{\'e}zier} representation" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "161--169" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{ms-ib-89 -, author = "H. M{\"u}ller and M. Stark" -, title = "{Implementierung} eines {Bildinterpolationsverfahrens}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "H. M{\"u}ller and M. Stark" +, title = "{Implementierung} eines {Bildinterpolationsverfahrens}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{m-iscsh-00 -, author = "Matthias M{\"u}ller-Hannemann" -, title = "Improving the Surface Cycle Structure for Hexahedral Mesh Generation" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "19--28" -, update = "00.11 jones" +, author = "Matthias M{\"u}ller-Hannemann" +, title = "Improving the Surface Cycle Structure for Hexahedral Mesh Generation" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "19--28" +, update = "00.11 jones" } @inproceedings{mw-mscqc-97 -, author = "M. M{\"u}ller-Hannemann and K. Weihe" -, title = "Minimum Strictly Convex Quadrangulations of Convex Polygons" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "193--202" -, cites = "be-mgot-92i, elosu-scqp-92, gj-cigtn-79, h-femgm-88, j-qmgpr-95, l-dprcq-85, mmw-unfsm-95, nc-pgta-88, s-oadrp-82, st-ltadr-81, ta-femci-93, t-qps-95, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "M. M{\"u}ller-Hannemann and K. Weihe" +, title = "Minimum Strictly Convex Quadrangulations of Convex Polygons" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "193--202" +, cites = "be-mgot-92i, elosu-scqp-92, gj-cigtn-79, h-femgm-88, j-qmgpr-95, l-dprcq-85, mmw-unfsm-95, nc-pgta-88, s-oadrp-82, st-ltadr-81, ta-femci-93, t-qps-95, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{mw-gfemg-93 -, author = "Matthias M{\"u}ller-Hannemann and Karsten Weihe" -, title = "On the Generation of Finite Element Meshes with Graph Theoretical Methods" -, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" -, month = jun -, year = 1993 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Matthias M{\"u}ller-Hannemann and Karsten Weihe" +, title = "On the Generation of Finite Element Meshes with Graph Theoretical Methods" +, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" +, month = jun +, year = 1993 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{m-pabst-93 -, author = "J.-D. M{\"u}ller" -, title = "Proven angular bounds and stretched triangulations with the frontal {Delaunay} method" -, booktitle = "Proc. 11th AIAA Comput. Fluid Dynamics Conf." -, site = "Orlando" -, year = 1993 -, update = "98.03 bibrelex" +, author = "J.-D. M{\"u}ller" +, title = "Proven angular bounds and stretched triangulations with the frontal {Delaunay} method" +, booktitle = "Proc. 11th AIAA Comput. Fluid Dynamics Conf." +, site = "Orlando" +, year = 1993 +, update = "98.03 bibrelex" } @techreport{mz-icha-94 -, author = "M. M{\"u}ller and J. Ziegler" -, title = "An implementation of a convex hull algorithm" -, type = "Report" -, number = "MPI-I-94-105" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "94.05 smid" +, author = "M. M{\"u}ller and J. Ziegler" +, title = "An implementation of a convex hull algorithm" +, type = "Report" +, number = "MPI-I-94-105" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "94.05 smid" } @article{mkf-arbam-92 -, author = "S. M{\"u}ller and K. Kells and W. Fichtner" -, title = "Automatic rectangle-based adaptive mesh generation without obtuse angles" -, journal = "IEEE Trans. Comput.-Aided Design" -, volume = 10 -, year = 1992 -, pages = "855--863" -, update = "98.03 bibrelex" +, author = "S. M{\"u}ller and K. Kells and W. Fichtner" +, title = "Automatic rectangle-based adaptive mesh generation without obtuse angles" +, journal = "IEEE Trans. Comput.-Aided Design" +, volume = 10 +, year = 1992 +, pages = "855--863" +, update = "98.03 bibrelex" } @article{m-ssedh-85 -, author = "J. K. Mullin" -, title = "Spiral storage: {E}fficient dynamic hashing with constant-performance" -, journal = "Comput. J." -, volume = 28 -, year = 1985 -, pages = "330--334" -, update = "97.07 agarwal" +, author = "J. K. Mullin" +, title = "Spiral storage: {E}fficient dynamic hashing with constant-performance" +, journal = "Comput. J." +, volume = 28 +, year = 1985 +, pages = "330--334" +, update = "97.07 agarwal" } @article{ms-madss-72 -, author = "R. Mullin and R. Stanton" -, title = "A map-theoretic approach to {Davenport--Schinzel} sequences" -, journal = "Pacific J. Math." -, volume = 40 -, year = 1972 -, pages = "167--172" -, update = "95.09 agarwal" +, author = "R. Mullin and R. Stanton" +, title = "A map-theoretic approach to {Davenport--Schinzel} sequences" +, journal = "Pacific J. Math." +, volume = 40 +, year = 1972 +, pages = "167--172" +, update = "95.09 agarwal" } @inproceedings{m-rodis-92 -, author = "D. Mullis" -, title = "Reporting overlaps in a dynamic interval set by filtering search" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "160--169" -, cites = "bl-oavdr-89, c-fsnaq-86, m-mdscg-84, ps-cgi-85, p-slpab-90, p-slc-89, ZZZ" -, update = "98.07 bibrelex" +, author = "D. Mullis" +, title = "Reporting overlaps in a dynamic interval set by filtering search" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "160--169" +, cites = "bl-oavdr-89, c-fsnaq-86, m-mdscg-84, ps-cgi-85, p-slpab-90, p-slc-89, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{m-fppa1-88 -, author = "K. Mulmuley" -, title = "A fast planar partition algorithm, {I}" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "580--589" -, comments = "To appear in J. Symbolic Logic" -, succeeds = "m-fppap-88" +, author = "K. Mulmuley" +, title = "A fast planar partition algorithm, {I}" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "580--589" +, comments = "To appear in J. Symbolic Logic" +, succeeds = "m-fppap-88" } @article{m-fppa-90 -, author = "K. Mulmuley" -, title = "A Fast Planar Partition Algorithm, {I}" -, journal = "J. Symbolic Comput." -, volume = 10 -, number = "3-4" -, year = 1990 -, pages = "253--280" -, update = "97.03 agarwal" +, author = "K. Mulmuley" +, title = "A Fast Planar Partition Algorithm, {I}" +, journal = "J. Symbolic Comput." +, volume = 10 +, number = "3-4" +, year = 1990 +, pages = "253--280" +, update = "97.03 agarwal" } @inproceedings{m-fppa2-89 -, author = "K. Mulmuley" -, title = "A fast planar partition algorithm, {II}" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "33--43" -, precedes = "m-fppa2-91" -, cites = "c-crmp-87, ce-oails-88, c-arscg-88, eka-nplai-84, egs-oplms-86, gs-ccrs-87, k-osps-83, lt-apst-77, m-fppa1-88, m-fppa2-91, m-eahsr-89, m-lavd-88, ps-cgi-85, st-pplup-86, sss-cthsa-74, ZZZ" -, update = "98.03 bibrelex" +, author = "K. Mulmuley" +, title = "A fast planar partition algorithm, {II}" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "33--43" +, precedes = "m-fppa2-91" +, cites = "c-crmp-87, ce-oails-88, c-arscg-88, eka-nplai-84, egs-oplms-86, gs-ccrs-87, k-osps-83, lt-apst-77, m-fppa1-88, m-fppa2-91, m-eahsr-89, m-lavd-88, ps-cgi-85, st-pplup-86, sss-cthsa-74, ZZZ" +, update = "98.03 bibrelex" } @article{m-fppa2-91 -, author = "K. Mulmuley" -, title = "A fast planar partition algorithm, {II}" -, journal = "J. ACM" -, volume = 38 -, year = 1991 -, pages = "74--103" -, succeeds = "m-fppa2-89" +, author = "K. Mulmuley" +, title = "A fast planar partition algorithm, {II}" +, journal = "J. ACM" +, volume = 38 +, year = 1991 +, pages = "74--103" +, succeeds = "m-fppa2-89" } @techreport{m-fppap-88 -, author = "K. Mulmuley" -, title = "A fast planar partition algorithm: part {I}" -, type = "Technical {Report}" -, number = "88-007" -, institution = "Dept. Comput. Sci., Univ. Chicago" -, address = "Chicago, IL" -, year = 1988 -, precedes = "m-fppa1-88" +, author = "K. Mulmuley" +, title = "A fast planar partition algorithm: part {I}" +, type = "Technical {Report}" +, number = "88-007" +, institution = "Dept. Comput. Sci., Univ. Chicago" +, address = "Chicago, IL" +, year = 1988 +, precedes = "m-fppa1-88" } @inproceedings{m-gdsrs-91 -, author = "K. Mulmuley" -, title = "A generalization of {Dehn}-{Sommerville} relations to simple stratified spaces" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "115--120" -, keywords = "polytopes" -, precedes = "m-gdsrs-93" -, cites = "b-lfitm-62, gg-smts-73, gm-smt-87, g-cp-67, l-at-42, ms-cpubc-71, s-nfscp-80, ZZZ" -, update = "97.11 bibrelex, 95.05 aronov" +, author = "K. Mulmuley" +, title = "A generalization of {Dehn}-{Sommerville} relations to simple stratified spaces" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "115--120" +, keywords = "polytopes" +, precedes = "m-gdsrs-93" +, cites = "b-lfitm-62, gg-smts-73, gm-smt-87, g-cp-67, l-at-42, ms-cpubc-71, s-nfscp-80, ZZZ" +, update = "97.11 bibrelex, 95.05 aronov" } @article{m-gdsrs-93 -, author = "Ketan Mulmuley" -, title = "A Generalization of {Dehn}-{Sommerville} Relations to Simple Stratified Spaces" -, journal = "??" -, volume = 9 -, year = 1993 -, pages = "47--55" -, keywords = "polytopes" -, update = "95.05 aronov" +, author = "Ketan Mulmuley" +, title = "A Generalization of {Dehn}-{Sommerville} Relations to Simple Stratified Spaces" +, journal = "??" +, volume = 9 +, year = 1993 +, pages = "47--55" +, keywords = "polytopes" +, update = "95.05 aronov" } @article{m-eahsr-89 -, author = "K. Mulmuley" -, title = "An efficient algorithm for hidden surface removal" -, journal = "Comput. Graph." -, volume = 23 -, number = 3 -, month = 1989 -, year = 1989 -, pages = "379--388" -, update = "98.11 bibrelex" +, author = "K. Mulmuley" +, title = "An efficient algorithm for hidden surface removal" +, journal = "Comput. Graph." +, volume = 23 +, number = 3 +, month = 1989 +, year = 1989 +, pages = "379--388" +, update = "98.11 bibrelex" } @article{m-eahsr-90 -, author = "K. Mulmuley" -, title = "An efficient algorithm for hidden surface removal, {II}" -, journal = "J. Algorithms" -, volume = "??" -, year = 1990 -, note = "To appear in special issue on FOCS 1990" -, update = "97.11 bibrelex" +, author = "K. Mulmuley" +, title = "An efficient algorithm for hidden surface removal, {II}" +, journal = "J. Algorithms" +, volume = "??" +, year = 1990 +, note = "To appear in special issue on FOCS 1990" +, update = "97.11 bibrelex" } @book{m-cgitr-93 -, author = "K. Mulmuley" -, title = "Computational Geometry: An Introduction Through Randomized Algorithms" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1993 -, update = "99.11 bibrelex, 96.05 pascucci, 95.09 schwarzkopf, 93.09 devillers, 93.05 orourke" -, annote = "Graduate text" +, author = "K. Mulmuley" +, title = "Computational Geometry: An Introduction Through Randomized Algorithms" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1993 +, update = "99.11 bibrelex, 96.05 pascucci, 95.09 schwarzkopf, 93.09 devillers, 93.05 orourke" +, annote = "Graduate text" } @inproceedings{m-dsrub-93 -, author = "K. Mulmuley" -, title = "Dehn-Sommerville relations, upper bound theorem, and levels in arrangements" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "240--246" -, cites = "ag-nssfs-86, acegsw-ptphp-91, bfl-nhp-89, cp-hrsaa-86, c-blmat-92, cs-arscg-89, csy-khrp-87, es-vda-86, ew-nlsfs-85, elss-dgpps-73, gp-nkssn-84, l-knnvd-82, m-mnfcp-70, mw-glbcs-71, m-osclv-90, m-lavd-91, pss-ubnpk-92, w-mksfs-86, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "K. Mulmuley" +, title = "Dehn-Sommerville relations, upper bound theorem, and levels in arrangements" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "240--246" +, cites = "ag-nssfs-86, acegsw-ptphp-91, bfl-nhp-89, cp-hrsaa-86, c-blmat-92, cs-arscg-89, csy-khrp-87, es-vda-86, ew-nlsfs-85, elss-dgpps-73, gp-nkssn-84, l-knnvd-82, m-mnfcp-70, mw-glbcs-71, m-osclv-90, m-lavd-91, pss-ubnpk-92, w-mksfs-86, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @inproceedings{m-hsrrm-91 -, author = "K. Mulmuley" -, title = "Hidden surface removal with respect to a moving point" -, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." -, year = 1991 -, pages = "512--522" -, keywords = "hidden line/surface elimination, probabilistic analysis" +, author = "K. Mulmuley" +, title = "Hidden surface removal with respect to a moving point" +, booktitle = "Proc. 23rd Annu. ACM Sympos. Theory Comput." +, year = 1991 +, pages = "512--522" +, keywords = "hidden line/surface elimination, probabilistic analysis" } @inproceedings{m-gafpc-94 -, author = "Ketan Mulmuley" -, title = "On a Geometric Approach in Finite-Precision Complexity: a Lower Bound for Linear Programming" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "" -, update = "94.01 jones" +, author = "Ketan Mulmuley" +, title = "On a Geometric Approach in Finite-Precision Complexity: a Lower Bound for Linear Programming" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "" +, update = "94.01 jones" } @techreport{m-lavd-88 -, author = "K. Mulmuley" -, title = "On levels in arrangements and {Voronoi} diagrams" -, number = "TR 88-21" -, institution = "University of Chicago" -, month = dec -, year = 1988 -, update = "98.03 bibrelex" +, author = "K. Mulmuley" +, title = "On levels in arrangements and {Voronoi} diagrams" +, number = "TR 88-21" +, institution = "University of Chicago" +, month = dec +, year = 1988 +, update = "98.03 bibrelex" } @article{m-lavd-91 -, author = "K. Mulmuley" -, title = "On levels in arrangements and {Voronoi} diagrams" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "307--338" -, succeeds = "m-orfv-89" +, author = "K. Mulmuley" +, title = "On levels in arrangements and {Voronoi} diagrams" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "307--338" +, succeeds = "m-orfv-89" } @inproceedings{m-orfv-89 -, author = "K. Mulmuley" -, title = "On obstructions in relation to a fixed viewpoint" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "592--597" -, precedes = "m-lavd-91" +, author = "K. Mulmuley" +, title = "On obstructions in relation to a fixed viewpoint" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "592--597" +, precedes = "m-lavd-91" } @inproceedings{m-osclv-90 -, author = "K. Mulmuley" -, title = "Output sensitive construction of levels and {Voronoi} diagrams in {$\Re^d$} of order 1 to $k$" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "322--330" +, author = "K. Mulmuley" +, title = "Output sensitive construction of levels and {Voronoi} diagrams in {$\Re^d$} of order 1 to $k$" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "322--330" } @incollection{m-racg-00 -, author = "Ketan Mulmuley" -, title = "Randomized Algorithms in Computational Geometry" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "703--724" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 16 of su-hcg-00" +, author = "Ketan Mulmuley" +, title = "Randomized Algorithms in Computational Geometry" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "703--724" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 16 of su-hcg-00" } @inproceedings{m-rgapr-92 -, author = "K. Mulmuley" -, title = "Randomized geometric algorithms and pseudo-random generators" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "90--100" +, author = "K. Mulmuley" +, title = "Randomized geometric algorithms and pseudo-random generators" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "90--100" } @article{m-rgapg-96 -, author = "K. Mulmuley" -, title = "Randomized geometric algorithms and pseudorandom generators" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "450--463" -, update = "97.03 smid" +, author = "K. Mulmuley" +, title = "Randomized geometric algorithms and pseudorandom generators" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "450--463" +, update = "97.03 smid" } @inproceedings{m-rmstd-91 -, author = "K. Mulmuley" -, title = "Randomized multidimensional search trees: {D}ynamic sampling" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "121--131" -, keywords = "random sampling, dynamizing data structures" -, cites = "agss-ltacv-87, as-rst-89, bt-rcdt-89, c-narsc-87, cs-arscg-89, cj-nrdpl-90, dmt-fddtl-91, fmn-dgds-85, gks-ricdv-89, hw-ensrq-87, m-fppa1-88, m-fppa2-89, m-eahsr-89, m-eahsr-90, m-lavd-91, ms-dplah-91, o-ddds-83, pt-fdplm-89, p-slpab-90, s-mapl-, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex, 96.05 agarwal" +, author = "K. Mulmuley" +, title = "Randomized multidimensional search trees: {D}ynamic sampling" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "121--131" +, keywords = "random sampling, dynamizing data structures" +, cites = "agss-ltacv-87, as-rst-89, bt-rcdt-89, c-narsc-87, cs-arscg-89, cj-nrdpl-90, dmt-fddtl-91, fmn-dgds-85, gks-ricdv-89, hw-ensrq-87, m-fppa1-88, m-fppa2-89, m-eahsr-89, m-eahsr-90, m-lavd-91, ms-dplah-91, o-ddds-83, pt-fdplm-89, p-slpab-90, s-mapl-, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex, 96.05 agarwal" } @inproceedings{m-rmstf-91 -, author = "K. Mulmuley" -, title = "Randomized multidimensional search trees: {F}urther results in dynamic sampling" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "216--227" -, update = "96.05 agarwal" +, author = "K. Mulmuley" +, title = "Randomized multidimensional search trees: {F}urther results in dynamic sampling" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "216--227" +, update = "96.05 agarwal" } @inproceedings{m-rmstl-91 -, author = "K. Mulmuley" -, title = "Randomized multidimensional search trees: {L}azy balancing and dynamic shuffling" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "180--196" -, update = "96.05 agarwal" +, author = "K. Mulmuley" +, title = "Randomized multidimensional search trees: {L}azy balancing and dynamic shuffling" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "180--196" +, update = "96.05 agarwal" } @incollection{ms-ra-97 -, author = "K. Mulmuley and O. Schwarzkopf" -, title = "Randomized algorithms" -, chapter = 34 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "633--652" -, update = "97.11 orourke" +, author = "K. Mulmuley and O. Schwarzkopf" +, title = "Randomized algorithms" +, chapter = 34 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "633--652" +, update = "97.11 orourke" } @inproceedings{ms-dplah-91 -, author = "K. Mulmuley and S. Sen" -, title = "Dynamic point location in arrangements of hyperplanes" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "132--141" -, keywords = "arrangements, hyperplane, point location, dynamizing data structures" -, cites = "as-rst-89, c-maeth-52, cf-dvrsi-88, c-narsc-87, cs-arscg-89, cj-nrdpl-90, dk-ladsc-85, eos-calha-86, fmn-dgds-85, hw-ensrq-87, m-rmstd-91, o-ddds-83, pt-fdplm-89, p-slpab-90, rs-orpac-87, st-pplup-86, ZZZ" -, update = "97.11 bibrelex" +, author = "K. Mulmuley and S. Sen" +, title = "Dynamic point location in arrangements of hyperplanes" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "132--141" +, keywords = "arrangements, hyperplane, point location, dynamizing data structures" +, cites = "as-rst-89, c-maeth-52, cf-dvrsi-88, c-narsc-87, cs-arscg-89, cj-nrdpl-90, dk-ladsc-85, eos-calha-86, fmn-dgds-85, hw-ensrq-87, m-rmstd-91, o-ddds-83, pt-fdplm-89, p-slpab-90, rs-orpac-87, st-pplup-86, ZZZ" +, update = "97.11 bibrelex" } @article{ms-dplah-92 -, author = "K. Mulmuley and S. Sen" -, title = "Dynamic point location in arrangements of hyperplanes" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "335--360" -, update = "98.07 agarwal" +, author = "K. Mulmuley and S. Sen" +, title = "Dynamic point location in arrangements of hyperplanes" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "335--360" +, update = "98.07 agarwal" } @inproceedings{m-prsd-87 -, author = "D. Mumford" -, title = "The problem of robust shape descriptors" -, booktitle = "Proc. 1st. Internat. Conf. Comput. Vision" -, year = 1987 -, pages = "602--606" -, update = "97.11 bibrelex" +, author = "D. Mumford" +, title = "The problem of robust shape descriptors" +, booktitle = "Proc. 1st. Internat. Conf. Comput. Vision" +, year = 1987 +, pages = "602--606" +, update = "97.11 bibrelex" } @book{m-eat-84 -, author = "J. R. Munkers" -, title = "Elements of algebraic topology" -, publisher = "Addison-Wesley" -, address = "Redwood City, California" -, year = 1984 -, update = "98.11 bibrelex, 93.09 matousek" +, author = "J. R. Munkers" +, title = "Elements of algebraic topology" +, publisher = "Addison-Wesley" +, address = "Redwood City, California" +, year = 1984 +, update = "98.11 bibrelex, 93.09 matousek" } @book{m-tfc-75 -, author = "J. R. Munkres" -, title = "Topology: {A} first course" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1975 -, update = "98.03 bibrelex" +, author = "J. R. Munkres" +, title = "Topology: {A} first course" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1975 +, update = "98.03 bibrelex" } @inproceedings{m-msp-79 -, author = "J. I. Munro" -, title = "A multikey search problem" -, booktitle = "Proc. 17th Allerton Conf. Commun. Control Comput." -, year = 1979 -, pages = "241--244" +, author = "J. I. Munro" +, title = "A multikey search problem" +, booktitle = "Proc. 17th Allerton Conf. Commun. Control Comput." +, year = 1979 +, pages = "241--244" } @inproceedings{mow-vv-87 -, author = "J. I. Munro and M. H. Overmars and D. Wood" -, title = "Variations on visibility" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "291--299" -, precedes = "ow-rv-88" -, cites = "afk-sppsb-85, bw-owcar-80, e-ndrs-81, gjs-agcpc-76, k-mchco-86, m-mdscg-84, ps-cgi-85, rw-roc-86, wl-arrcd-85, w-ivcg-85, ZZZ" -, update = "98.03 bibrelex, 93.09 milone+mitchell" +, author = "J. I. Munro and M. H. Overmars and D. Wood" +, title = "Variations on visibility" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "291--299" +, precedes = "ow-rv-88" +, cites = "afk-sppsb-85, bw-owcar-80, e-ndrs-81, gjs-agcpc-76, k-mchco-86, m-mdscg-84, ps-cgi-85, rw-roc-86, wl-arrcd-85, w-ivcg-85, ZZZ" +, update = "98.03 bibrelex, 93.09 milone+mitchell" } @article{ms-idsfs-80 -, author = "J. I. Munro and H. Suwanda" -, title = "Implicit data structure for fast search and update" -, journal = "J. Comput. Syst. Sci." -, volume = "??" -, year = 1980 -, pages = "236--250" -, update = "97.11 bibrelex" +, author = "J. I. Munro and H. Suwanda" +, title = "Implicit data structure for fast search and update" +, journal = "J. Comput. Syst. Sci." +, volume = "??" +, year = 1980 +, pages = "236--250" +, update = "97.11 bibrelex" } @techreport{m-ecple-71 -, author = "J. H. Munson" -, title = "Efficient calculations on points and lines in the {Euclidean} plane" -, month = oct -, year = 1971 -, update = "93.09 milone+mitchell" +, author = "J. H. Munson" +, title = "Efficient calculations on points and lines in the {Euclidean} plane" +, month = oct +, year = 1971 +, update = "93.09 milone+mitchell" } @inproceedings{mf-csbra-97 -, author = "T. M. Murali and Thomas A. Funkhouser" -, title = "Consistent Solid and Boundary Representations from Arbitrary Polygonal Data" -, booktitle = "Proc. 1997 Sympos. Interactive 3D Graphics" -, year = 1997 -, update = "97.07 agarwal" +, author = "T. M. Murali and Thomas A. Funkhouser" +, title = "Consistent Solid and Boundary Representations from Arbitrary Polygonal Data" +, booktitle = "Proc. 1997 Sympos. Interactive 3D Graphics" +, year = 1997 +, update = "97.07 agarwal" } @article{mbbm-cbmrc- -, author = "P. Murdoch and S. Benzley and T. D. Blacker and S. A. Mitchell" -, title = "A connectivity based method for representing and constructing all-hexahedral finite element meshes, {Part} {I}: {The} spatial twist continuum" -, journal = "Internat. J. Numer. Methods Eng." -, volume = "??" -, year = "??" -, note = "Submitted" -, update = "98.03 bibrelex" +, author = "P. Murdoch and S. Benzley and T. D. Blacker and S. A. Mitchell" +, title = "A connectivity based method for representing and constructing all-hexahedral finite element meshes, {Part} {I}: {The} spatial twist continuum" +, journal = "Internat. J. Numer. Methods Eng." +, volume = "??" +, year = "??" +, note = "Submitted" +, update = "98.03 bibrelex" } @inproceedings{mb-stc-95 -, author = "Pete Murdoch and Steven E. Benzley" -, title = "The Spatial Twist Continuum" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "243--252" -, update = "96.01 samitchell" +, author = "Pete Murdoch and Steven E. Benzley" +, title = "The Spatial Twist Continuum" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "243--252" +, update = "96.01 samitchell" } @techreport{m-ppmp-85 -, author = "F. Murgola" -, title = "Probabilistic point matching in the plane" -, type = "Report" -, number = "??" -, institution = "Dept. Math. Comput. Sci., Univ. California Riverside" -, address = "Riverside, CA" -, year = 1985 +, author = "F. Murgola" +, title = "Probabilistic point matching in the plane" +, type = "Report" +, number = "??" +, institution = "Dept. Math. Comput. Sci., Univ. California Riverside" +, address = "Riverside, CA" +, year = 1985 } @book{m-odes-60 -, author = "G. M. Murphy" -, title = "Ordinary Differential Equations and Their Solutions" -, publisher = "D. van Nostrand" -, address = "Princeton" -, year = 1960 -, update = "98.11 bibrelex" +, author = "G. M. Murphy" +, title = "Ordinary Differential Equations and Their Solutions" +, publisher = "D. van Nostrand" +, address = "Princeton" +, year = 1960 +, update = "98.11 bibrelex" } @inproceedings{mmg-ppscd-00 -, author = "Michael Murphy and David M. Mount and Carl W. Gable" -, title = "A point-placement strategy for conforming {Delaunay} tetrahedralization" -, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA" -, year = 2000 -, pages = "67--74" -, update = "01.07 devillers" +, author = "Michael Murphy and David M. Mount and Carl W. Gable" +, title = "A point-placement strategy for conforming {Delaunay} tetrahedralization" +, booktitle = "Proc. 11th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA" +, year = 2000 +, pages = "67--74" +, update = "01.07 devillers" } @inproceedings{ms-rtnns-93 -, author = "M. Murphy and Steven S. Skiena" -, title = "Ranger: {A} tool for nearest neighbor search in high dimensions" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "403--404" -, keywords = "video review" -, cites = "b-mbstu-75, b-kdtsp-90, fbf-afbml-77, s-rnns-91, y-dsann-93, ZZZ" -, update = "98.03 bibrelex+mitchell, 96.05 agarwal, 93.09 jones" +, author = "M. Murphy and Steven S. Skiena" +, title = "Ranger: {A} tool for nearest neighbor search in high dimensions" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "403--404" +, keywords = "video review" +, cites = "b-mbstu-75, b-kdtsp-90, fbf-afbml-77, s-rnns-91, y-dsann-93, ZZZ" +, update = "98.03 bibrelex+mitchell, 96.05 agarwal, 93.09 jones" } @article{ms-fnnvt-90 -, author = "O. J. Murphy and S. M. Selkow" -, title = "Finding Nearest Neighbors With {Voronoi} Tessellations" -, journal = "Inform. Process. Lett." -, volume = 34 -, number = 1 -, month = feb -, year = 1990 -, pages = "37--41" -, keywords = "nearest neighbors, Voronoi tessellations, multi key searching" -, annote = "Use buckets containing a list of points whose VPs - intersect the bucket." -, abstract = "J. L. Bentley et al. have shown that, subject to - certain assumptions, nearest neighbors in k-dimensional - space can be computed in O(3**k) expected time. This - paper presents a new method for finding nearest - neighbors in any bounded region. The algorithm employs - the Voronoi tessellation to allow nearest neighbor - retrievals to be performed in expected constant time - which is independent of the dimension. Under the - assumption that the points in the file are uniformly - distributed, it is shown that as the amount of storage - is increased, the expected number of records examined - will approach 1. (Author abstract) 7 Refs." +, author = "O. J. Murphy and S. M. Selkow" +, title = "Finding Nearest Neighbors With {Voronoi} Tessellations" +, journal = "Inform. Process. Lett." +, volume = 34 +, number = 1 +, month = feb +, year = 1990 +, pages = "37--41" +, keywords = "nearest neighbors, Voronoi tessellations, multi key searching" +, annote = "Use buckets containing a list of points whose VPs + intersect the bucket." +, abstract = "J. L. Bentley et al. have shown that, subject to + certain assumptions, nearest neighbors in k-dimensional + space can be computed in O(3**k) expected time. This + paper presents a new method for finding nearest + neighbors in any bounded region. The algorithm employs + the Voronoi tessellation to allow nearest neighbor + retrievals to be performed in expected constant time + which is independent of the dimension. Under the + assumption that the points in the file are uniformly + distributed, it is shown that as the amount of storage + is increased, the expected number of records examined + will approach 1. (Author abstract) 7 Refs." } @book{mls-mirm-94 -, author = "Richard M. Murray and Zexiang Li and S. Shankar Sastry" -, title = "A Mathematical Introduction to Robotic Manipulation" -, publisher = "CRC Press" -, year = 1994 -, location = "Boca Raton" -, update = "02.03 orourke" +, author = "Richard M. Murray and Zexiang Li and S. Shankar Sastry" +, title = "A Mathematical Introduction to Robotic Manipulation" +, publisher = "CRC Press" +, year = 1994 +, location = "Boca Raton" +, update = "02.03 orourke" } @article{m-etcrh-83 -, author = "Murtagh" -, title = "Expected-time complexity results for hierarchic clustering algorithms which use cluster centers" -, journal = "Inform. Process. Lett." -, volume = 16 -, year = 1983 -, update = "97.11 bibrelex" +, author = "Murtagh" +, title = "Expected-time complexity results for hierarchic clustering algorithms which use cluster centers" +, journal = "Inform. Process. Lett." +, volume = 16 +, year = 1983 +, update = "97.11 bibrelex" } @techreport{m-srahc-?? -, author = "F. Murtagh" -, title = "A survey of recent advances in hierarchical clustering algorithms" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Univ. College Dublin" -, address = "Dublin, Ireland" -, year = "??" +, author = "F. Murtagh" +, title = "A survey of recent advances in hierarchical clustering algorithms" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Univ. College Dublin" +, address = "Dublin, Ireland" +, year = "??" } @article{mks-siodt-94 -, author = "S. K. Murthy and S. Kasif and S. Salzberg" -, title = "A System for Induction of Oblique Decision Trees" -, journal = "Journal of Artificial Intelligence Research" -, volume = 2 -, year = 1994 -, pages = "1--33" -, update = "95.05 agarwal" +, author = "S. K. Murthy and S. Kasif and S. Salzberg" +, title = "A System for Induction of Oblique Decision Trees" +, journal = "Journal of Artificial Intelligence Research" +, volume = 2 +, year = 1994 +, pages = "1--33" +, update = "95.05 agarwal" } @book{m-lcp-76 -, author = "K. Murty" -, title = "Linear and Combinatorial Programming" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1976 -, update = "97.03 gaertner+salinger" +, author = "K. Murty" +, title = "Linear and Combinatorial Programming" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1976 +, update = "97.03 gaertner+salinger" } @article{m-gap-73 -, author = "K. Murty" -, title = "The graph of an abstract polytope" -, journal = "Math. Program." -, volume = 4 -, year = 1973 -, pages = "336--346" -, update = "97.03 gaertner+salinger" +, author = "K. Murty" +, title = "The graph of an abstract polytope" +, journal = "Math. Program." +, volume = 4 +, year = 1973 +, pages = "336--346" +, update = "97.03 gaertner+salinger" } @article{m-ccplp-80 -, author = "Katta G. Murty" -, title = "Computational complexity of parametric linear programming" -, journal = "Math. Program." -, volume = 19 -, year = 1980 -, pages = "213--219" -, update = "97.11 bibrelex" +, author = "Katta G. Murty" +, title = "Computational complexity of parametric linear programming" +, journal = "Math. Program." +, volume = 19 +, year = 1980 +, pages = "213--219" +, update = "97.11 bibrelex" } @inproceedings{m-pdt-97 -, author = "O. Musin" -, title = "Properties of the {Delaunay} Triangulation" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "424--426" -, cites = "ds-oiti-89, d-otmgc-91, b-kuk-16, j-ctddt-91, l-scsi-77, l-pndt-86, m-dto-93, m-ihdt-95, m-fvtp-97, r-odtr-91, r-mrpdt-90, s-let-78, v-nadpc-08, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "O. Musin" +, title = "Properties of the {Delaunay} Triangulation" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "424--426" +, cites = "ds-oiti-89, d-otmgc-91, b-kuk-16, j-ctddt-91, l-scsi-77, l-pndt-86, m-dto-93, m-ihdt-95, m-fvtp-97, r-odtr-91, r-mrpdt-90, s-let-78, v-nadpc-08, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @incollection{m-cvdsp-98 -, author = "O. R. Musin" -, title = "Construction of the {Voronoi} diagram and secondary polytope" -, editor = "P. Engel and H. Syta" -, booktitle = "Voronoi's Impact on Modern Science, Book 2" -, publisher = "Institute of Mathematics of the National Academy of Sciences of Ukraine" -, address = "Kyiv" -, year = 1998 -, pages = "105--114" -, update = "00.11 smid" +, author = "O. R. Musin" +, title = "Construction of the {Voronoi} diagram and secondary polytope" +, editor = "P. Engel and H. Syta" +, booktitle = "Voronoi's Impact on Modern Science, Book 2" +, publisher = "Institute of Mathematics of the National Academy of Sciences of Ukraine" +, address = "Kyiv" +, year = 1998 +, pages = "105--114" +, update = "00.11 smid" } @inproceedings{m-dto-93 -, author = "O. R. Musin" -, title = "Delaunay triangulation and optimality" -, booktitle = "ARO Workshop Comp. Geom." -, site = "Raleigh, NC" -, year = 1993 -, pages = "37--38" -, update = "98.07 bibrelex" +, author = "O. R. Musin" +, title = "Delaunay triangulation and optimality" +, booktitle = "ARO Workshop Comp. Geom." +, site = "Raleigh, NC" +, year = 1993 +, pages = "37--38" +, update = "98.07 bibrelex" } @article{m-eatmp-92 -, author = "O. R. Musin" -, title = "Efficient algorithms for testing membership of a point in polygons and polyhedra" -, journal = "Programming and computer software" -, volume = 17 -, number = 4 -, publisher = "Plenum Publishing Corporation" -, year = 1992 -, pages = "228--235" -, keywords = "design of algorithms, detecting, point location, polygons, polyhedra, two-dimensional, three-dimensional" -, comments = "translation from Russian: Programmirovanie, 1991, No. 4, pp. 72--81" -, update = "96.09 devillers, 95.01 korneenko" +, author = "O. R. Musin" +, title = "Efficient algorithms for testing membership of a point in polygons and polyhedra" +, journal = "Programming and computer software" +, volume = 17 +, number = 4 +, publisher = "Plenum Publishing Corporation" +, year = 1992 +, pages = "228--235" +, keywords = "design of algorithms, detecting, point location, polygons, polyhedra, two-dimensional, three-dimensional" +, comments = "translation from Russian: Programmirovanie, 1991, No. 4, pp. 72--81" +, update = "96.09 devillers, 95.01 korneenko" } @article{m-fvtp-97 -, author = "O. R. Musin" -, title = "Four-vertex theorem for polygon" -, journal = "Kvant" -, volume = "??" -, year = 1997 -, note = "In Russian" -, update = "98.07 bibrelex" +, author = "O. R. Musin" +, title = "Four-vertex theorem for polygon" +, journal = "Kvant" +, volume = "??" +, year = 1997 +, note = "In Russian" +, update = "98.07 bibrelex" } @article{m-ihdt-95 -, author = "O. R. Musin" -, title = "Index of harmony and {Delaunay} triangulation" -, journal = "Symmetry: Culture and Science" -, volume = 6 -, number = 3 -, year = 1995 -, pages = "389--392" -, update = "98.07 bibrelex" +, author = "O. R. Musin" +, title = "Index of harmony and {Delaunay} triangulation" +, journal = "Symmetry: Culture and Science" +, volume = 6 +, number = 3 +, year = 1995 +, pages = "389--392" +, update = "98.07 bibrelex" } @incollection{m-spcgt-92 -, author = "O. R. Musin" -, title = "On some problems of computational geometry and topology" -, booktitle = "??" -, series = "Lecture Notes Math." -, volume = 1520 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "58--80" -, keywords = "computational topology, geometric modelling, partition of unity, manifold embedding, curve fitting, surface fitting, terrain fitting, vector field, piecewise-linear vector field, singular point, separatrix, talweg, watershed, index of vector field, piecewise-linear manifold, distance, distance function, shortest path" -, update = "95.01 korneenko" -, annote = "Exposition of author's research in CGeo \& CTop in +, author = "O. R. Musin" +, title = "On some problems of computational geometry and topology" +, booktitle = "??" +, series = "Lecture Notes Math." +, volume = 1520 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "58--80" +, keywords = "computational topology, geometric modelling, partition of unity, manifold embedding, curve fitting, surface fitting, terrain fitting, vector field, piecewise-linear vector field, singular point, separatrix, talweg, watershed, index of vector field, piecewise-linear manifold, distance, distance function, shortest path" +, update = "95.01 korneenko" +, annote = "Exposition of author's research in CGeo \& CTop in three directions: geometric modelling algorithms via partition of unity; discrete analogue of the index of vector field rotation for singular point and separatrix search; distance @@ -109262,72 +109262,72 @@ @incollection{m-spcgt-92 } @inproceedings{m-amcmh-97 -, author = "Petra Mutzel" -, title = "An Alternative Method to Crossing Minimization on Hierarchical Graphs" -, editor = "Stephen North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "318--333" -, update = "98.11 bibrelex, 98.07 tamassia+vismara" +, author = "Petra Mutzel" +, title = "An Alternative Method to Crossing Minimization on Hierarchical Graphs" +, editor = "Stephen North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "318--333" +, update = "98.11 bibrelex, 98.07 tamassia+vismara" } @inproceedings{mw-tlpgd-98 -, author = "P. Mutzel and R. Weiskircher" -, title = "Two-Layer Planarization in Graph Drawing" -, editor = "K.-Y. Chwa and O. H. Ibarra" -, booktitle = "Algorithms and Computation" -, nickname = "ISAAC '98" -, series = "Lecture Notes Comput. Sci." -, volume = 1533 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "69--78" -, update = "00.03 vismara" +, author = "P. Mutzel and R. Weiskircher" +, title = "Two-Layer Planarization in Graph Drawing" +, editor = "K.-Y. Chwa and O. H. Ibarra" +, booktitle = "Algorithms and Computation" +, nickname = "ISAAC '98" +, series = "Lecture Notes Comput. Sci." +, volume = 1533 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "69--78" +, update = "00.03 vismara" } @article{m-ceicw-86 -, author = "B. Myers" -, title = "A complete and efficient implementation of covered windows" -, journal = "Computer" -, volume = 19 -, month = sep -, year = 1986 -, pages = "57--69" -, update = "98.03 bibrelex" +, author = "B. Myers" +, title = "A complete and efficient implementation of covered windows" +, journal = "Computer" +, volume = 19 +, month = sep +, year = 1986 +, pages = "57--69" +, update = "98.03 bibrelex" } @article{mhc-sdhci-96 -, author = "Brad Myers and Jim Hollan and Isabel Cruz and others" -, title = "Strategic Directions in Human Computer Interaction" -, journal = "ACM Comput. Surv." -, volume = 28 -, number = 4 -, year = 1996 -, url = "http://www.cs.cmu.edu/~bam/nsfworkshop/hcireport.html" -, update = "97.03 tamassia" +, author = "Brad Myers and Jim Hollan and Isabel Cruz and others" +, title = "Strategic Directions in Human Computer Interaction" +, journal = "ACM Comput. Surv." +, volume = 28 +, number = 4 +, year = 1996 +, url = "http://www.cs.cmu.edu/~bam/nsfworkshop/hcireport.html" +, update = "97.03 tamassia" } @article{m-oetap-85 -, author = "E. W. Myers" -, title = "An {$O(E \log E+I)$} expected time algorithm for the planar segment intersection problem" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "625--637" +, author = "E. W. Myers" +, title = "An {$O(E \log E+I)$} expected time algorithm for the planar segment intersection problem" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "625--637" } @article{mok-fcdbc-95 -, author = "K. Myszkowski and O. G. Okunev and T. L. Kunii" -, title = "Fast Collision Detection Between Complex Solids Using Rasterizing Graphics Hardware" -, journal = "Visual Comput." -, volume = 11 -, number = 9 -, year = 1995 -, pages = "497--511" -, update = "96.01 held+mitchell" +, author = "K. Myszkowski and O. G. Okunev and T. L. Kunii" +, title = "Fast Collision Detection Between Complex Solids Using Rasterizing Graphics Hardware" +, journal = "Visual Comput." +, volume = 11 +, number = 9 +, year = 1995 +, pages = "497--511" +, update = "96.01 held+mitchell" } @article{nan2017polyfit, @@ -109338,1350 +109338,1350 @@ @article{nan2017polyfit } @article{nhl-merp-84 -, author = "A. Naamad and W.-L. Hsu and D. T. Lee" -, title = "On the maximum empty rectangle problem" -, journal = "Discrete Appl. Math." -, volume = 8 -, year = 1984 -, pages = "267--277" +, author = "A. Naamad and W.-L. Hsu and D. T. Lee" +, title = "On the maximum empty rectangle problem" +, journal = "Discrete Appl. Math." +, volume = 8 +, year = 1984 +, pages = "267--277" } @article{n-crtds-82 -, author = "L. R. Nackman" -, title = "Curvature relations in three-dimensional symmetric axes" -, journal = "Comput. Graph. Image Process." -, volume = 20 -, year = 1982 -, pages = "43--57" +, author = "L. R. Nackman" +, title = "Curvature relations in three-dimensional symmetric axes" +, journal = "Comput. Graph. Image Process." +, volume = 20 +, year = 1982 +, pages = "43--57" } @article{n-tdcpc-84 -, author = "L. R. Nackman" -, title = "Two-dimensional critical point configuration graphs" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-1" -, year = 1984 -, pages = "442--450" +, author = "L. R. Nackman" +, title = "Two-dimensional critical point configuration graphs" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-1" +, year = 1984 +, pages = "442--450" } @article{np-tdsdu-85 -, author = "L. R. Nackman and S. M. Pizer" -, title = "Three-dimensional shape description using the symmetric axis transform {I}: {T}heory" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-7" -, year = 1985 -, pages = "187--202" -, keywords = "symmetric" -, update = "96.05 agarwal" +, author = "L. R. Nackman and S. M. Pizer" +, title = "Three-dimensional shape description using the symmetric axis transform {I}: {T}heory" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-7" +, year = 1985 +, pages = "187--202" +, keywords = "symmetric" +, update = "96.05 agarwal" } @article{ns-blss-91 -, author = "L. R. Nackman and V. Srinivasan" -, title = "Bisectors of linearly separable sets" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "263--275" +, author = "L. R. Nackman and V. Srinivasan" +, title = "Bisectors of linearly separable sets" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "263--275" } @inproceedings{ns-ppdtp-91 -, author = "L. R. Nackman and V. Srinivasan" -, title = "Point placement for {Delaunay} triangulation of polygonal domains" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "37--40" -, cites = "beg-pgmg-90, bfl-rsddt-88i, b-srpcs-88, b-ls-79, c-cdt-89, dfp-dbrsd-85, gs-pmgsc-85, ll-gdtpg-86, sp-dtasp-91, ZZZ" -, update = "98.07 bibrelex" +, author = "L. R. Nackman and V. Srinivasan" +, title = "Point placement for {Delaunay} triangulation of polygonal domains" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "37--40" +, cites = "beg-pgmg-90, bfl-rsddt-88i, b-srpcs-88, b-ls-79, c-cdt-89, dfp-dbrsd-85, gs-pmgsc-85, ll-gdtpg-86, sp-dtasp-91, ZZZ" +, update = "98.07 bibrelex" } @techreport{nk-itpsp-85 -, author = "S. Nagashima and F. Kimura" -, title = "An inside test for polyhedron by spherical projection and its application" -, type = "Report" -, number = "??" -, institution = "Dept. Graph., College Arts Sci., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1985 +, author = "S. Nagashima and F. Kimura" +, title = "An inside test for polyhedron by spherical projection and its application" +, type = "Report" +, number = "??" +, institution = "Dept. Graph., College Arts Sci., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1985 } % ### others? @inproceedings{no-itpp-88 -, author = "S. Nagashima and others" -, title = "Inclusion Tests for Polygons and Polyhedra" -, editor = "S. M. Slaby and H. Stachel" -, booktitle = "Proc. 3rd Internat. Conf. Engineering Graphics and Descriptive Geometry" -, site = "TU Wien, Austria" -, month = jul -, year = 1988 -, pages = "II:60--63" -, update = "93.09 held" +, author = "S. Nagashima and others" +, title = "Inclusion Tests for Polygons and Polyhedra" +, editor = "S. M. Slaby and H. Stachel" +, booktitle = "Proc. 3rd Internat. Conf. Engineering Graphics and Descriptive Geometry" +, site = "TU Wien, Austria" +, month = jul +, year = 1988 +, pages = "II:60--63" +, update = "93.09 held" } @inproceedings{n-acs-80 -, author = "L. W. Nagel" -, title = "ADVICE for circuit simulation" -, booktitle = "Proc. ISCAS" -, site = "Houston, Texas" -, year = 1980 -, update = "98.03 bibrelex" +, author = "L. W. Nagel" +, title = "ADVICE for circuit simulation" +, booktitle = "Proc. ISCAS" +, site = "Houston, Texas" +, year = 1980 +, update = "98.03 bibrelex" } @inproceedings{nz-dsgrg-79 -, author = "M. Nagl and H. Zischler" -, title = "A Dialog System for the Graphical Representation of Graphs" -, booktitle = "Proc. Workshop WG '78 on Graph Theoretic Concepts in Computer Science" -, series = "Applied Computer Science" -, volume = 13 -, year = 1979 -, pages = "325--339" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. Nagl and H. Zischler" +, title = "A Dialog System for the Graphical Representation of Graphs" +, booktitle = "Proc. Workshop WG '78 on Graph Theoretic Concepts in Computer Science" +, series = "Applied Computer Science" +, volume = 13 +, year = 1979 +, pages = "325--339" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{sn-sp3763-39 -, author = "B. de Sz. Nagy" -, title = "Solution to Problem 3763" -, journal = "Amer. Math. Monthly" -, volume = 46 -, year = 1939 -, pages = "176--177" -, comments = "See e-p3763-35." -, update = "98.11 orourke" -, annote = "Flipping polygon pockets." +, author = "B. de Sz. Nagy" +, title = "Solution to Problem 3763" +, journal = "Amer. Math. Monthly" +, volume = 46 +, year = 1939 +, pages = "176--177" +, comments = "See e-p3763-35." +, update = "98.11 orourke" +, annote = "Flipping polygon pockets." } @inproceedings{n-acg-78 -, author = "G. Nagy" -, title = "Advances in computational geometry" -, booktitle = "Proc. 21st Midwest Sympos. Circuits Systems" -, site = "Ames, IA" -, year = 1978 -, pages = "598--603" +, author = "G. Nagy" +, title = "Advances in computational geometry" +, booktitle = "Proc. 21st Midwest Sympos. Circuits Systems" +, site = "Ames, IA" +, year = 1978 +, pages = "598--603" } @article{n-sapr-68 -, author = "G. Nagy" -, title = "State of the art in pattern recognition" -, journal = "Proc. IEEE" -, volume = 56 -, year = 1968 -, pages = "836--860" -, update = "98.07 bibrelex" +, author = "G. Nagy" +, title = "State of the art in pattern recognition" +, journal = "Proc. IEEE" +, volume = 56 +, year = 1968 +, pages = "836--860" +, update = "98.07 bibrelex" } @techreport{n-tv-82 -, author = "G. Nagy" -, title = "Terrain visibility" -, type = "Technical {Report}" -, institution = "Rensselaer Polytech. Inst." -, address = "Troy, NY" -, year = 1982 -, keywords = "Digital elevation models, geometric visibility, hidden-surface algorithms, topography" -, update = "93.09 milone+mitchell" +, author = "G. Nagy" +, title = "Terrain visibility" +, type = "Technical {Report}" +, institution = "Rensselaer Polytech. Inst." +, address = "Troy, NY" +, year = 1982 +, keywords = "Digital elevation models, geometric visibility, hidden-surface algorithms, topography" +, update = "93.09 milone+mitchell" } @article{ns-fapd-88 -, author = "S. Nahar and Sahni" -, title = "Fast algorithm for polygon decomposition" -, journal = "IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems" -, volume = "??" -, year = 1988 -, pages = "473--483" -, update = "98.03 bibrelex" +, author = "S. Nahar and Sahni" +, title = "Fast algorithm for polygon decomposition" +, journal = "IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems" +, volume = "??" +, year = 1988 +, pages = "473--483" +, update = "98.03 bibrelex" } @inproceedings{nm-lledt-90 -, author = "S. N{\"a}her and K. Mehlhorn" -, title = "{LEDA}: {A} Library of Efficient Data Types and Algorithms" -, booktitle = "Proc. Internat. Colloq. Automata Lang. Program." -, year = 1990 -, pages = "1--5" -, update = "98.11 smid, 95.05 agarwal" +, author = "S. N{\"a}her and K. Mehlhorn" +, title = "{LEDA}: {A} Library of Efficient Data Types and Algorithms" +, booktitle = "Proc. Internat. Colloq. Automata Lang. Program." +, year = 1990 +, pages = "1--5" +, update = "98.11 smid, 95.05 agarwal" } @manual{nu-lmum-95 -, author = "S. N{\"a}her and C. Uhrig" -, title = "The {LEDA} Manual User Manual" -, year = 1995 -, update = "97.11 bibrelex" +, author = "S. N{\"a}her and C. Uhrig" +, title = "The {LEDA} Manual User Manual" +, year = 1995 +, update = "97.11 bibrelex" } @article{nw-ipseb-97 -, author = "D. Naiman and H. Wynn" -, title = "On intersecting a point set with {Euclidean} balls" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "237--244" -, update = "97.07 devillers" +, author = "D. Naiman and H. Wynn" +, title = "On intersecting a point set with {Euclidean} balls" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "237--244" +, update = "97.07 devillers" } @article{nw-iebii-92 -, author = "D. Q. Naiman and H. P. Wynn" -, title = "Inclusion-exclusion {Bonferroni} identities and inequalities for discrete tubelike problems via {Euler} characteristics" -, journal = "Ann. Statist." -, volume = 20 -, year = 1992 -, pages = "43--76" -, update = "98.03 bibrelex" +, author = "D. Q. Naiman and H. P. Wynn" +, title = "Inclusion-exclusion {Bonferroni} identities and inequalities for discrete tubelike problems via {Euler} characteristics" +, journal = "Ann. Statist." +, volume = 20 +, year = 1992 +, pages = "43--76" +, update = "98.03 bibrelex" } @article{n-avsir-87 -, author = "S. Naito" -, title = "Applications of Visual Sensors to Industrial Robots" -, journal = "Sensor Technology" -, volume = 7 -, year = 1987 -, pages = "90--93" -, update = "98.03 bibrelex" +, author = "S. Naito" +, title = "Applications of Visual Sensors to Industrial Robots" +, journal = "Sensor Technology" +, volume = 7 +, year = 1987 +, pages = "90--93" +, update = "98.03 bibrelex" } @phdthesis{n-adccg-78 -, author = "I. Najfeld" -, title = "Analytic design of compensators and computational geometry" -, type = "Ph.{D}. Thesis" -, school = "Brown Univ." -, address = "Providence, RI" -, year = 1978 -, keywords = "doctoral thesis" +, author = "I. Najfeld" +, title = "Analytic design of compensators and computational geometry" +, type = "Ph.{D}. Thesis" +, school = "Brown Univ." +, address = "Providence, RI" +, year = 1978 +, keywords = "doctoral thesis" } @article{nb-o3dhl-95 -, author = "M. A. Najork and M. H. Brown" -, title = "Obliq-$3${D}: {A} high-level, fast-turnaround $3$d animation system" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 1 -, number = 2 -, year = 1995 -, pages = "175--192" -, update = "98.07 bibrelex" +, author = "M. A. Najork and M. H. Brown" +, title = "Obliq-$3${D}: {A} high-level, fast-turnaround $3$d animation system" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 1 +, number = 2 +, year = 1995 +, pages = "175--192" +, update = "98.07 bibrelex" } @inproceedings{nh-aplpg-84 -, author = "M. Nakajima and K. Hayashi" -, title = "Automated Parts Layout Planning in Garment Industry By Using Group Technology" -, booktitle = "Computers in the World of Textiles" -, year = 1984 -, pages = "297--310" -, note = "Textile Institute Annual World Conference" -, update = "98.07 bibrelex" +, author = "M. Nakajima and K. Hayashi" +, title = "Automated Parts Layout Planning in Garment Industry By Using Group Technology" +, booktitle = "Computers in the World of Textiles" +, year = 1984 +, pages = "297--310" +, note = "Textile Institute Annual World Conference" +, update = "98.07 bibrelex" } @techreport{nost-dgsmw-85 -, author = "N. Nakajima and Y. Ohta and S. Shinotuka and S. Tokumasu" -, title = "Direct generation of solid model from wire-frame model" -, type = "Manuscript" -, institution = "??" -, year = 1985 +, author = "N. Nakajima and Y. Ohta and S. Shinotuka and S. Tokumasu" +, title = "Direct generation of solid model from wire-frame model" +, type = "Manuscript" +, institution = "??" +, year = 1985 } @article{na-dc-84 -, author = "A. Nakamura and K. Aizawa" -, title = "Digital circles" -, journal = "Comput. Vision Graph. Image Process." -, volume = 26 -, year = 1984 -, pages = "42--255" -, update = "98.07 bibrelex" +, author = "A. Nakamura and K. Aizawa" +, title = "Digital circles" +, journal = "Comput. Vision Graph. Image Process." +, volume = 26 +, year = 1984 +, pages = "42--255" +, update = "98.07 bibrelex" } @article{na-digp-85 -, author = "A. Nakamura and K. Aizawa" -, title = "Digital images of geometric pictures" -, journal = "Comput. Vision Graph. Image Process." -, volume = 30 -, year = 1985 -, pages = "107--120" -, update = "98.07 bibrelex" +, author = "A. Nakamura and K. Aizawa" +, title = "Digital images of geometric pictures" +, journal = "Comput. Vision Graph. Image Process." +, volume = 30 +, year = 1985 +, pages = "107--120" +, update = "98.07 bibrelex" } @article{na-ds-90 -, author = "A. Nakamura and K. Aizawa" -, title = "Digital squares" -, journal = "Comput. Vision Graph. Image Process." -, volume = 49 -, year = 1990 -, pages = "357--368" -, update = "98.07 bibrelex" +, author = "A. Nakamura and K. Aizawa" +, title = "Digital squares" +, journal = "Comput. Vision Graph. Image Process." +, volume = 49 +, year = 1990 +, pages = "357--368" +, update = "98.07 bibrelex" } @inproceedings{nfstk-vpecs-86 -, author = "K. Nakamura and H. Fujimoto and T. Suzuki and Y. Tarui and Y. Kiyokane" -, title = "Visual Programming Environment in Communications Software" -, booktitle = "Proc. 5th IEEE Global Telecom Conference" -, year = 1986 -, pages = "435--439" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Nakamura and H. Fujimoto and T. Suzuki and Y. Tarui and Y. Kiyokane" +, title = "Visual Programming Environment in Communications Software" +, booktitle = "Proc. 5th IEEE Global Telecom Conference" +, year = 1986 +, pages = "435--439" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{nm-nppa-89 -, author = "Y. Nakamura and R. Mukherjee" -, title = "Nonholonomic path planning and automation" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1989 -, pages = "1050--1055" -, update = "97.11 bibrelex" +, author = "Y. Nakamura and R. Mukherjee" +, title = "Nonholonomic path planning and automation" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1989 +, pages = "1050--1055" +, update = "97.11 bibrelex" } @inproceedings{n-hsnmt-95 -, author = "Tran Quoc Nam" -, title = "A Hybrid Symbolic-Numerical Method for Tracing Curves and Surface Intersections" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "79--82" -, update = "00.03 bibrelex" +, author = "Tran Quoc Nam" +, title = "A Hybrid Symbolic-Numerical Method for Tracing Curves and Surface Intersections" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "79--82" +, update = "00.03 bibrelex" } @unpublished{nf-u3dcp-93 -, author = "M. Namiki and K. Fukuda" -, title = "Unfolding 3-dimensional convex polytopes: {A} package for {Mathematica} 1.2 or 2.0" -, year = 1993 -, note = "Mathematica Notebook, Univ. of Tokyo" -, update = "98.11 orourke, 97.11 orourke" +, author = "M. Namiki and K. Fukuda" +, title = "Unfolding 3-dimensional convex polytopes: {A} package for {Mathematica} 1.2 or 2.0" +, year = 1993 +, note = "Mathematica Notebook, Univ. of Tokyo" +, update = "98.11 orourke, 97.11 orourke" } @inproceedings{nmb-slp-96 -, author = "S. C. Nandy and K. Mukhopadhyaya and Bhargab B. Bhattacharya" -, title = "Shooter location problem" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "93--98" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "S. C. Nandy and K. Mukhopadhyaya and Bhargab B. Bhattacharya" +, title = "Shooter location problem" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "93--98" +, update = "97.03 agarwal, 96.09 mitchell" } @article{nwm-dkssp-90 -, author = "P. Nanua and K. J. Waldron and V. Murthy" -, title = "Direct kinematic solution of a stewart platform" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, number = 4 -, year = 1990 -, pages = "438--444" -, update = "98.07 bibrelex" +, author = "P. Nanua and K. J. Waldron and V. Murthy" +, title = "Direct kinematic solution of a stewart platform" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, number = 4 +, year = 1990 +, pages = "438--444" +, update = "98.07 bibrelex" } @inproceedings{ns-cpcps-90 -, author = "N. Naor and M. Sharir" -, title = "Computing a point in the center of a point set in three dimensions" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "10--13" -, cites = "aks-osn-83, c-pms-86, c-sdsno-87, csy-khrp-87, eos-calha-86, m-apcad-83, ns-fpcng-, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "N. Naor and M. Sharir" +, title = "Computing a point in the center of a point set in three dimensions" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "10--13" +, cites = "aks-osn-83, c-pms-86, c-sdsno-87, csy-khrp-87, eos-calha-86, m-apcad-83, ns-fpcng-, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @techreport{ns-fpcng- -, author = "N. Naor and M. Sharir" -, title = "On finding a point in the center of $n$ given points in three dimensional space" -, institution = "??" -, year = "??" -, note = "In preparation" -, update = "98.07 bibrelex" +, author = "N. Naor and M. Sharir" +, title = "On finding a point in the center of $n$ given points in three dimensional space" +, institution = "??" +, year = "??" +, note = "In preparation" +, update = "98.07 bibrelex" } @inproceedings{n-ohtsp-97 -, author = "G. Narasimhan" -, title = "On {Hamiltonian} triangulations in simple polygons" -, booktitle = "Proc. 5th Workshop Algorithms Data Struct." -, nickname = "WADS '97" -, site = "Halifax, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 1272 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "321--330" -, update = "99.07 bibrelex, 98.07 smid" +, author = "G. Narasimhan" +, title = "On {Hamiltonian} triangulations in simple polygons" +, booktitle = "Proc. 5th Workshop Algorithms Data Struct." +, nickname = "WADS '97" +, site = "Halifax, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 1272 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "321--330" +, update = "99.07 bibrelex, 98.07 smid" } @article{n-htsp-99 -, author = "G. Narasimhan" -, title = "On {Hamiltonian} Triangulations in Simple Polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, number = 3 -, month = jun -, year = 1999 -, pages = "261--275" -, update = "99.07 held+smid" +, author = "G. Narasimhan" +, title = "On {Hamiltonian} Triangulations in Simple Polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, number = 3 +, month = jun +, year = 1999 +, pages = "261--275" +, update = "99.07 held+smid" } @techreport{ns-asfeg-99 -, author = "G. Narasimhan and M. Smid" -, title = "Approximating the stretch factor of {Euclidean} graphs" -, type = "Report" -, number = 16 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1999 -, update = "99.07 smid" +, author = "G. Narasimhan and M. Smid" +, title = "Approximating the stretch factor of {Euclidean} graphs" +, type = "Report" +, number = 16 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1999 +, update = "99.07 smid" } @article{ns-asfeg-00 -, author = "G. Narasimhan and M. Smid" -, title = "Approximating the stretch factor of {Euclidean} graphs" -, journal = "SIAM J. Comput." -, volume = 30 -, year = 2000 -, pages = "978--989" -, update = "00.11 smid" +, author = "G. Narasimhan and M. Smid" +, title = "Approximating the stretch factor of {Euclidean} graphs" +, journal = "SIAM J. Comput." +, volume = 30 +, year = 2000 +, pages = "978--989" +, update = "00.11 smid" } @techreport{ns-asfep-99 -, author = "G. Narasimhan and M. Smid" -, title = "Approximating the stretch factor of {Euclidean} paths, cycles and trees" -, type = "Report" -, number = 9 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1999 -, update = "99.07 smid" +, author = "G. Narasimhan and M. Smid" +, title = "Approximating the stretch factor of {Euclidean} paths, cycles and trees" +, type = "Report" +, number = 9 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1999 +, update = "99.07 smid" } @techreport{ns-aabsf-00 -, author = "G. Narasimhan and M. Smid" -, title = "Approximation algorithms for the bottleneck stretch factor problem" -, type = "Report" -, number = 13 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 2000 -, update = "00.11 smid" +, author = "G. Narasimhan and M. Smid" +, title = "Approximation algorithms for the bottleneck stretch factor problem" +, type = "Report" +, number = 13 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 2000 +, update = "00.11 smid" } @inproceedings{ns-aabsf-01 -, author = "G. Narasimhan and M. Smid" -, title = "Approximation algorithms for the bottleneck stretch factor problem" -, booktitle = "Proc. 18th Sympos. Theoret. Aspects Comput. Sci." -, nickname = "STACS '01" -, series = "Lecture Notes Comput. Sci." -, volume = 2010 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "502--513" -, update = "01.04 smid" +, author = "G. Narasimhan and M. Smid" +, title = "Approximation algorithms for the bottleneck stretch factor problem" +, booktitle = "Proc. 18th Sympos. Theoret. Aspects Comput. Sci." +, nickname = "STACS '01" +, series = "Lecture Notes Comput. Sci." +, volume = 2010 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "502--513" +, update = "01.04 smid" } @inproceedings{nzz-ecgms-00 -, author = "G. Narasimhan and J. Zhu and M. Zachariasen" -, title = "Experiments with computing geometric minimum spanning trees" -, booktitle = "Proc. 2nd Workshop Algorithm Eng. Exper." -, nickname = "ALENEX '00" -, year = 2000 -, pages = "183--196" -, update = "01.11 smid" +, author = "G. Narasimhan and J. Zhu and M. Zachariasen" +, title = "Experiments with computing geometric minimum spanning trees" +, booktitle = "Proc. 2nd Workshop Algorithm Eng. Exper." +, nickname = "ALENEX '00" +, year = 2000 +, pages = "183--196" +, update = "01.11 smid" } @phdthesis{n-rpoca-88 -, author = "L. S. Narasimhan" -, title = "Recognition of Polyhedral Objects: {Concepts} and Algorithms" -, school = "The University of Texas" -, address = "Dallas, Texas" -, year = 1988 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "L. S. Narasimhan" +, title = "Recognition of Polyhedral Objects: {Concepts} and Algorithms" +, school = "The University of Texas" +, address = "Dallas, Texas" +, year = 1988 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{nsv-rpamu-92 -, author = "H. Narayanan and H. Saran and V. V. Vazirani" -, title = "Randomized parallel algorithms for matroid union and intersection, with applications to arborescences, and edge-disjoint spanning trees" -, booktitle = "Proc. 3rd ACM Sympos. Discr. Alg." -, year = 1992 -, update = "98.11 bibrelex" +, author = "H. Narayanan and H. Saran and V. V. Vazirani" +, title = "Randomized parallel algorithms for matroid union and intersection, with applications to arborescences, and edge-disjoint spanning trees" +, booktitle = "Proc. 3rd ACM Sympos. Discr. Alg." +, year = 1992 +, update = "98.11 bibrelex" } @article{n-ppca-96 -, author = "C. Narayanaswami" -, title = "A Parallel Polygon-Clipping Algorithm" -, journal = "Visual Comput." -, volume = 12 -, number = 3 -, year = 1996 -, pages = "147--158" -, update = "96.09 held" +, author = "C. Narayanaswami" +, title = "A Parallel Polygon-Clipping Algorithm" +, journal = "Visual Comput." +, volume = 12 +, number = 3 +, year = 1996 +, pages = "147--158" +, update = "96.09 held" } @phdthesis{n-ppga-91 -, author = "Chandrasekhar Narayanaswami" -, title = "Parallel Processing for Geometric Applications" -, school = "Electrical, Computer, and Systems Engineering Dept., Rensselaer Polytechnic Institute" -, year = 1991 -, note = "UMI no. 92-02201" -, keywords = "doctoral thesis, area, parallel computation, grids" -, update = "93.09 franklin" +, author = "Chandrasekhar Narayanaswami" +, title = "Parallel Processing for Geometric Applications" +, school = "Electrical, Computer, and Systems Engineering Dept., Rensselaer Polytechnic Institute" +, year = 1991 +, note = "UMI no. 92-02201" +, keywords = "doctoral thesis, area, parallel computation, grids" +, update = "93.09 franklin" } @article{nf-dmppc-91a -, author = "C. Narayanaswami and W. R. Franklin" -, title = "Determination of mass properties of polygonal {CSG} objects in parallel" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 4 -, year = 1991 -, pages = "381--403" -, keywords = "parallel computation, intersection, constructive solid geometry, area, grids" -, succeeds = "nf-dmppc-91i" -, update = "97.11 bibrelex, 93.09 franklin" +, author = "C. Narayanaswami and W. R. Franklin" +, title = "Determination of mass properties of polygonal {CSG} objects in parallel" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 4 +, year = 1991 +, pages = "381--403" +, keywords = "parallel computation, intersection, constructive solid geometry, area, grids" +, succeeds = "nf-dmppc-91i" +, update = "97.11 bibrelex, 93.09 franklin" } @inproceedings{nf-bcpp-92 -, author = "Chandrasekhar Narayanaswami and Wm. Randolph Franklin" -, title = "Boolean Combinations of Polygons in Parallel" -, booktitle = "Proc. 1992 Internat. Conf. Parallel Process." -, volume = "" -, month = aug -, year = 1992 -, pages = "" -, keywords = "parallel computation, grids, intersection, CAD" -, update = "93.09 franklin" +, author = "Chandrasekhar Narayanaswami and Wm. Randolph Franklin" +, title = "Boolean Combinations of Polygons in Parallel" +, booktitle = "Proc. 1992 Internat. Conf. Parallel Process." +, volume = "" +, month = aug +, year = 1992 +, pages = "" +, keywords = "parallel computation, grids, intersection, CAD" +, update = "93.09 franklin" } @inproceedings{nf-dmppc-91i -, author = "Chandrasekhar Narayanaswami and Wm. Randolph Franklin" -, title = "Determination of Mass Properties of Polygonal {CSG} Objects in Parallel" -, editor = "Joshua Turner" -, booktitle = "Proc. Symposium on Solid Modeling Foundations and CAD/CAM Applications" -, organization = "ACM/SIGGRAPH" -, month = jun -, year = 1991 -, pages = "279--?" -, keywords = "parallel computation, intersection, grids, constructive solid geometry, area" -, precedes = "nf-dmppc-91a" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Chandrasekhar Narayanaswami and Wm. Randolph Franklin" +, title = "Determination of Mass Properties of Polygonal {CSG} Objects in Parallel" +, editor = "Joshua Turner" +, booktitle = "Proc. Symposium on Solid Modeling Foundations and CAD/CAM Applications" +, organization = "ACM/SIGGRAPH" +, month = jun +, year = 1991 +, pages = "279--?" +, keywords = "parallel computation, intersection, grids, constructive solid geometry, area" +, precedes = "nf-dmppc-91a" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @article{nf-eihc-92 -, author = "Chandrasekhar Narayanaswami and Wm. Randolph Franklin" -, title = "Edge Intersection on the {Hypercube} Computer" -, journal = "Inform. Process. Lett." -, volume = 41 -, number = 5 -, month = apr -, year = 1992 -, pages = "257--262" -, keywords = "parallel algorithms, performance evaluation, intersection, grids" -, update = "00.11 smid, 00.07 icking, 93.09 franklin" +, author = "Chandrasekhar Narayanaswami and Wm. Randolph Franklin" +, title = "Edge Intersection on the {Hypercube} Computer" +, journal = "Inform. Process. Lett." +, volume = 41 +, number = 5 +, month = apr +, year = 1992 +, pages = "257--262" +, keywords = "parallel algorithms, performance evaluation, intersection, grids" +, update = "00.11 smid, 00.07 icking, 93.09 franklin" } @techreport{nt-fapsd-84 -, author = "E. Nardelli and M. Talamo" -, title = "A Fast Algorithm for Planarization of Sparse Diagrams" -, number = "R.105" -, institution = "IASI-CNR, Rome" -, year = 1984 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Nardelli and M. Talamo" +, title = "A Fast Algorithm for Planarization of Sparse Diagrams" +, number = "R.105" +, institution = "IASI-CNR, Rome" +, year = 1984 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @incollection{nm-fptbs-95 -, author = "A. Narkhede and D. Manocha" -, title = "Fast Polygon Triangulation Based on Seidel's Algorithm" -, editor = "A. W. Paeth" -, booktitle = "Graphics Gems V" -, publisher = "Academic Press" -, year = 1995 -, pages = "394--397" -, note = "ISBN 0-12-543455-3" -, update = "97.11 held" +, author = "A. Narkhede and D. Manocha" +, title = "Fast Polygon Triangulation Based on Seidel's Algorithm" +, editor = "A. W. Paeth" +, booktitle = "Graphics Gems V" +, publisher = "Academic Press" +, year = 1995 +, pages = "394--397" +, note = "ISBN 0-12-543455-3" +, update = "97.11 held" } @book{n-nt-83 -, author = "W. Narkiewicz" -, title = "Number Theory" -, edition = "2nd" -, publisher = "World Scientific" -, year = 1983 -, update = "97.11 bibrelex" +, author = "W. Narkiewicz" +, title = "Number Theory" +, edition = "2nd" +, publisher = "World Scientific" +, year = 1983 +, update = "97.11 bibrelex" } @techreport{nddd-padwm-94 -, author = "J. M. Nash and P. M. Dew and M. E. Dyer and J. R. Davy" -, title = "Parallel Algorithm Design on the {WPRAM} Model" -, type = "Technical {Report}" -, number = "94.24" -, institution = "School of Computer Science, Univeristy of Leeds" -, year = 1994 -, update = "96.09 orourke" +, author = "J. M. Nash and P. M. Dew and M. E. Dyer and J. R. Davy" +, title = "Parallel Algorithm Design on the {WPRAM} Model" +, type = "Technical {Report}" +, number = "94.24" +, institution = "School of Computer Science, Univeristy of Leeds" +, year = 1994 +, update = "96.09 orourke" } @article{n-edstf-61 -, author = "C. St. J. A. {Nash-Williams}" -, title = "Edge-disjoint spanning trees of finite graphs" -, journal = "J. London Math. Soc." -, volume = 36 -, year = 1961 -, pages = "445--450" -, update = "98.11 bibrelex" +, author = "C. St. J. A. {Nash-Williams}" +, title = "Edge-disjoint spanning trees of finite graphs" +, journal = "J. London Math. Soc." +, volume = 36 +, year = 1961 +, pages = "445--450" +, update = "98.11 bibrelex" } @article{n-psmff-85 -, author = "A. H. Nasri" -, title = "Polyhedral subdivision methods for free-form surfaces" -, journal = "ACM Trans. Graph." -, volume = 6 -, year = 1985 -, pages = "29--73" +, author = "A. H. Nasri" +, title = "Polyhedral subdivision methods for free-form surfaces" +, journal = "ACM Trans. Graph." +, volume = 6 +, year = 1985 +, pages = "29--73" } @article{ns-dbsc-81 -, author = "D. Nassimi and S. Sahni" -, title = "Data Broadcasting in SIMD Computers" -, journal = "IEEE Trans. on Compu." -, volume = "c-30" -, number = 2 -, year = 1981 -, pages = "101--106" -, update = "98.07 bibrelex" +, author = "D. Nassimi and S. Sahni" +, title = "Data Broadcasting in SIMD Computers" +, journal = "IEEE Trans. on Compu." +, volume = "c-30" +, number = 2 +, year = 1981 +, pages = "101--106" +, update = "98.07 bibrelex" } @article{ns-fccco-80 -, author = "D. Nassimi and S. Sahni" -, title = "Finding connected components and connected ones on a mesh-connected parallel computer" -, journal = "SIAM J. Comput." -, volume = 9 -, year = 1980 -, pages = "744--757" -, update = "97.11 bibrelex" +, author = "D. Nassimi and S. Sahni" +, title = "Finding connected components and connected ones on a mesh-connected parallel computer" +, journal = "SIAM J. Comput." +, volume = 9 +, year = 1980 +, pages = "744--757" +, update = "97.11 bibrelex" } @article{ns-ppsan-82 -, author = "D. Nassimi and S. Sahni" -, title = "Parallel permutation and sorting algorithms and a new generalized connection network" -, journal = "J. ACM" -, volume = 29 -, number = 3 -, year = 1982 -, pages = "642--667" -, update = "96.09 orourke" +, author = "D. Nassimi and S. Sahni" +, title = "Parallel permutation and sorting algorithms and a new generalized connection network" +, journal = "J. ACM" +, volume = 29 +, number = 3 +, year = 1982 +, pages = "642--667" +, update = "96.09 orourke" } @inproceedings{n-aaadp-86 -, author = "B. K. Natarajan" -, title = "An Algorithmic Approach to the Automated Design of Parts Orienters" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, publisher = "IEEE Computer Society" -, year = 1986 -, pages = "132--142" -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "B. K. Natarajan" +, title = "An Algorithmic Approach to the Automated Design of Parts Orienters" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, publisher = "IEEE Computer Society" +, year = 1986 +, pages = "132--142" +, update = "98.07 bibrelex, 98.03 bibrelex" } @article{n-aa-89 -, author = "B. K. Natarajan" -, title = "An analysis of assembly" -, journal = "Visual Comput." -, volume = 5 -, number = 5 -, month = oct -, year = 1989 -, pages = "316--323" -, keywords = "assembly of composite subjects, classes, sequence of motions" +, author = "B. K. Natarajan" +, title = "An analysis of assembly" +, journal = "Visual Comput." +, volume = 5 +, number = 5 +, month = oct +, year = 1989 +, pages = "316--323" +, keywords = "assembly of composite subjects, classes, sequence of motions" } @techreport{n-ccpwl-91 -, author = "B. K. Natarajan" -, title = "On comparing and compressing piece-wise linear curves" -, institution = "Hewlett Packard" -, year = 1991 +, author = "B. K. Natarajan" +, title = "On comparing and compressing piece-wise linear curves" +, institution = "Hewlett Packard" +, year = 1991 } @inproceedings{n-cibs-90 -, author = "B. K. Natarajan" -, title = "On computing the intersection of {B}-splines" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "157--167" -, cites = "bhlh-tsi-88, bfjp-ssi-87, bbb-isucg-87, b-pgs-78, clr-dbsst-80, d-fibsr-85, fmm-saubd-86, ks-gictr-??, lr-bp-81, s-sfbt-81, w-smfib-84, ZZZ" -, update = "97.11 bibrelex" +, author = "B. K. Natarajan" +, title = "On computing the intersection of {B}-splines" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "157--167" +, cites = "bhlh-tsi-88, bfjp-ssi-87, bbb-isucg-87, b-pgs-78, clr-dbsst-80, d-fibsr-85, fmm-saubd-86, ks-gictr-??, lr-bp-81, s-sfbt-81, w-smfib-84, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{n-dopp-87 -, author = "B. K. Natarajan" -, title = "On detecting the orientation of polygons and polyhedra" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "146--152" -, cites = "b-dscns-84, cy-sp-83, dey-pcp-86, em-esm-86, n-aaadp-86, ZZZ" -, update = "98.03 bibrelex" +, author = "B. K. Natarajan" +, title = "On detecting the orientation of polygons and polyhedra" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "146--152" +, cites = "b-dscns-84, cy-sp-83, dey-pcp-86, em-esm-86, n-aaadp-86, ZZZ" +, update = "98.03 bibrelex" } @phdthesis{n-moo-86 -, author = "B. K. Natarajan" -, title = "On Moving and Orienting Objects" -, type = "Technical {Report}" -, school = "Dept. Computer Science, Cornell University" -, year = 1986 -, note = "86-775" -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "B. K. Natarajan" +, title = "On Moving and Orienting Objects" +, type = "Technical {Report}" +, school = "Dept. Computer Science, Cornell University" +, year = 1986 +, note = "86-775" +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @techreport{n-pwlac-91 -, author = "B. K. Natarajan" -, title = "On piece-wise linear approximations to curves" -, type = "Technical Report" -, number = "HPL-91-36" -, institution = "Hewlett Packard Labs" -, address = "Palo Alto, CA" -, year = 1991 -, update = "00.11 smid, 00.07 smid, 98.07 bibrelex" +, author = "B. K. Natarajan" +, title = "On piece-wise linear approximations to curves" +, type = "Technical Report" +, number = "HPL-91-36" +, institution = "Hewlett Packard Labs" +, address = "Palo Alto, CA" +, year = 1991 +, update = "00.11 smid, 00.07 smid, 98.07 bibrelex" } @inproceedings{n-oplac-91 -, author = "B. K. Natarajan" -, title = "On piecewise linear approximations to curves" -, booktitle = "SIAM Conference on Geometric Design" -, year = 1991 -, update = "98.07 bibrelex" +, author = "B. K. Natarajan" +, title = "On piecewise linear approximations to curves" +, booktitle = "SIAM Conference on Geometric Design" +, year = 1991 +, update = "98.07 bibrelex" } @inproceedings{n-pa-88 -, author = "B. K. Natarajan" -, title = "On planning assemblies" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "299--308" -, cites = "c-crsdr-85, d-rbwdo-84, gy-tsr-80, hss-cmpmi-84, lw-aapsc-77, o-ar-85, r-ra-85, r-cmpg-79, te-stmpl-84, ts-snrmp-83, ZZZ" -, update = "98.03 bibrelex" +, author = "B. K. Natarajan" +, title = "On planning assemblies" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "299--308" +, cites = "c-crsdr-85, d-rbwdo-84, gy-tsr-80, hss-cmpmi-84, lw-aapsc-77, o-ar-85, r-ra-85, r-cmpg-79, te-stmpl-84, ts-snrmp-83, ZZZ" +, update = "98.03 bibrelex" } @article{n-spadp-89 -, author = "B. K. Natarajan" -, title = "Some paradigms for the automated design of parts feeders" -, journal = "Internat. J. Robot. Res." -, volume = 8 -, number = 6 -, month = dec -, year = 1989 -, pages = "98--109" -, update = "98.07 bibrelex" +, author = "B. K. Natarajan" +, title = "Some paradigms for the automated design of parts feeders" +, journal = "Internat. J. Robot. Res." +, volume = 8 +, number = 6 +, month = dec +, year = 1989 +, pages = "98--109" +, update = "98.07 bibrelex" } @inproceedings{nr-sacf-92 -, author = "B. K. Natarajan and J. Ruppert" -, title = "On sparse approximations of curves and functions" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "250--256" -, cites = "abgw-acp-90, ag-mrpc-92, ii-oaapl-86a, ii-cgmpa-86, g-nmccd-91, ghms-apsml-91, mo-pca-88, ms-saps-92, t-capcp-85, in-pladc-91, ii-cgmpa-86, ishs-spadc-83, lm-krpbc-87, n-pwlac-91, n-oplac-91, nh-dp-88, n-asf-89, r-iaf-69, r-licab-90, s-ldpsp-88, ZZZ" -, update = "98.07 bibrelex" +, author = "B. K. Natarajan and J. Ruppert" +, title = "On sparse approximations of curves and functions" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "250--256" +, cites = "abgw-acp-90, ag-mrpc-92, ii-oaapl-86a, ii-cgmpa-86, g-nmccd-91, ghms-apsml-91, mo-pca-88, ms-saps-92, t-capcp-85, in-pladc-91, ii-cgmpa-86, ishs-spadc-83, lm-krpbc-87, n-pwlac-91, n-oplac-91, nh-dp-88, n-asf-89, r-iaf-69, r-licab-90, s-ldpsp-88, ZZZ" +, update = "98.07 bibrelex" } @techreport{nmb-pacht-81 -, author = "D. Nath and S. N. Maheshwari and P. C. P. Bhatt" -, title = "Parallel Algorithms for the Convex Hull in Two Dimensions" -, number = "EE 8005" -, institution = "Indian Inst. Technology" -, address = "New Delhi, India" -, year = 1981 -, pages = "358--372" -, update = "97.11 bibrelex, 93.09 held" +, author = "D. Nath and S. N. Maheshwari and P. C. P. Bhatt" +, title = "Parallel Algorithms for the Convex Hull in Two Dimensions" +, number = "EE 8005" +, institution = "Indian Inst. Technology" +, address = "New Delhi, India" +, year = 1981 +, pages = "358--372" +, update = "97.11 bibrelex, 93.09 held" } @techreport{nmb-pachp-80 -, author = "D. Nath and S. N. Maheshwari and P. C. P. Bhatt" -, title = "Parallel algorithms for the convex hull problem in two dimensions" -, type = "Report" -, number = "EE 8005" -, institution = "Indian Inst. Tech." -, address = "New Delhi, India" -, year = 1980 +, author = "D. Nath and S. N. Maheshwari and P. C. P. Bhatt" +, title = "Parallel algorithms for the convex hull problem in two dimensions" +, type = "Report" +, number = "EE 8005" +, institution = "Indian Inst. Tech." +, address = "New Delhi, India" +, year = 1980 } @article{n-crp2d-66 -, author = "J. I. Naus" -, title = "Clustering of random points in $2$ dimensions" -, journal = "Biometrika" -, volume = 52 -, year = 1966 -, pages = "263--267" +, author = "J. I. Naus" +, title = "Clustering of random points in $2$ dimensions" +, journal = "Biometrika" +, volume = 52 +, year = 1966 +, pages = "263--267" } @inproceedings{n-cgpt-93 -, author = "B. Naylor" -, title = "Constructing good partitioning trees" -, booktitle = "Proc. Graphics Interface '93" -, site = "Toronto, ON" -, year = 1993 -, pages = "181--191" -, update = "96.05 pascucci" +, author = "B. Naylor" +, title = "Constructing good partitioning trees" +, booktitle = "Proc. Graphics Interface '93" +, site = "Toronto, ON" +, year = 1993 +, pages = "181--191" +, update = "96.05 pascucci" } @article{nat-mbtyp-90 -, author = "B. Naylor and J. A. Amanatides and W. Thibault" -, title = "Merging {BSP} trees yields polyhedral set operations" -, journal = "Comput. Graph." -, volume = 24 -, number = 4 -, month = aug -, year = 1990 -, pages = "115--124" -, note = "Proc. SIGGRAPH '90" -, update = "96.05 pascucci, 93.09 milone+mitchell" +, author = "B. Naylor and J. A. Amanatides and W. Thibault" +, title = "Merging {BSP} trees yields polyhedral set operations" +, journal = "Comput. Graph." +, volume = 24 +, number = 4 +, month = aug +, year = 1990 +, pages = "115--124" +, note = "Proc. SIGGRAPH '90" +, update = "96.05 pascucci, 93.09 milone+mitchell" } @techreport{nt-abtrt-86 -, author = "Bruce Naylor and William Thibault" -, title = "Application of {BSP} Trees to Ray-Tracing and {CSG} Evaluation" -, type = "Technical Report" -, number = "GIT-ICS 86/03" -, institution = "Georgia Institute of Tech., School of Information and Computer Science" -, month = feb -, year = 1986 -, keywords = "hierarchies" -, update = "97.07 agarwal" +, author = "Bruce Naylor and William Thibault" +, title = "Application of {BSP} Trees to Ray-Tracing and {CSG} Evaluation" +, type = "Technical Report" +, number = "GIT-ICS 86/03" +, institution = "Georgia Institute of Tech., School of Information and Computer Science" +, month = feb +, year = 1986 +, keywords = "hierarchies" +, update = "97.07 agarwal" } @unpublished{n-cgpt- -, author = "Bruce F. Naylor" -, title = "Constructing Good Partitioning Trees" -, institution = "AT\& T Bell Laboratories" -, year = "??" -, note = "Manuscript" -, update = "95.01 mitchell" +, author = "Bruce F. Naylor" +, title = "Constructing Good Partitioning Trees" +, institution = "AT\& T Bell Laboratories" +, year = "??" +, note = "Manuscript" +, update = "95.01 mitchell" } @inproceedings{n-isgpt-92 -, author = "Bruce F. Naylor" -, title = "Interactive solid geometry via partitioning trees" -, booktitle = "Proc. Graphics Interface '92" -, year = 1992 -, pages = "11--18" -, update = "97.07 agarwal" +, author = "Bruce F. Naylor" +, title = "Interactive solid geometry via partitioning trees" +, booktitle = "Proc. Graphics Interface '92" +, year = 1992 +, pages = "11--18" +, update = "97.07 agarwal" } @unpublished{n-ptirg- -, author = "Bruce F. Naylor" -, title = "Partitioning Tree Image Representation and Generation from 3D Geometric Models" -, institution = "AT\& T Bell Laboratories" -, year = "??" -, note = "Manuscript" -, update = "95.01 mitchell" +, author = "Bruce F. Naylor" +, title = "Partitioning Tree Image Representation and Generation from 3D Geometric Models" +, institution = "AT\& T Bell Laboratories" +, year = "??" +, note = "Manuscript" +, update = "95.01 mitchell" } @inproceedings{n-sismt-90 -, author = "B. F. Naylor" -, title = "SCULPT: an interactive solid modeling tool" -, booktitle = "Proc. Graphics Interface '90" -, year = 1990 -, pages = "138--148" -, update = "98.07 bibrelex" +, author = "B. F. Naylor" +, title = "SCULPT: an interactive solid modeling tool" +, booktitle = "Proc. Graphics Interface '90" +, year = 1990 +, pages = "138--148" +, update = "98.07 bibrelex" } @inproceedings{n-acpwd-99 -, author = "Manuela Neagu" -, title = "Arrangements of Curves in the Plane: What Does ``Equivalence'' Mean?" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "181--183" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Manuela Neagu" +, title = "Arrangements of Curves in the Plane: What Does ``Equivalence'' Mean?" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "181--183" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{nl-ccsac-98 -, author = "Manuela Neagu and Bernard Lacolle" -, title = "Computing the Combinatorial Structure of Arrangements of Curves Using Polygonal Approximations" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "121--123" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Manuela Neagu and Bernard Lacolle" +, title = "Computing the Combinatorial Structure of Arrangements of Curves Using Polygonal Approximations" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "121--123" +, update = "00.03 bibrelex, 98.07 bibrelex" } @book{n-bztdp-78 -, author = "W. Nef" -, title = "Beitr{\"a}ge zur {Theorie} der {Polyeder}" -, publisher = "Herbert Lang" -, address = "Bern" -, year = 1978 -, update = "98.07 icking, 97.11 icking, 93.09 devillers" +, author = "W. Nef" +, title = "Beitr{\"a}ge zur {Theorie} der {Polyeder}" +, publisher = "Herbert Lang" +, address = "Bern" +, year = 1978 +, update = "98.07 icking, 97.11 icking, 93.09 devillers" } @proceedings{nb-iwcg-84 -, title = "Abstracts 2nd Intern. Workshop Comput. Geom." -, editor = "W. Nef and H. Bieri" -, nickname = "CG '84" -, site = "Bern" -, publisher = "Universit{\"a}t Bern" -, year = 1984 -, update = "00.03 bibrelex" +, title = "Abstracts 2nd Intern. Workshop Comput. Geom." +, editor = "W. Nef and H. Bieri" +, nickname = "CG '84" +, site = "Bern" +, publisher = "Universit{\"a}t Bern" +, year = 1984 +, update = "00.03 bibrelex" } @article{n-fdbtc-90 -, author = "C. A. Neff" -, title = "Finding the distance between two circles in three-dimensional space" -, journal = "IBM J. Res. Develop." -, volume = 34 -, year = 1990 -, pages = "770--775" +, author = "C. A. Neff" +, title = "Finding the distance between two circles in three-dimensional space" +, journal = "IBM J. Res. Develop." +, volume = 34 +, year = 1990 +, pages = "770--775" } @inproceedings{n-dfts-92 -, author = "S. Negami" -, title = "Diagonal flips of triangulations on surfaces" -, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" -, site = "Kyoto, Japan" -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "S. Negami" +, title = "Diagonal flips of triangulations on surfaces" +, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" +, site = "Kyoto, Japan" +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @article{n-jcbgs-85 -, author = "G. Nelson" -, title = "Juno, a constraint-based graphics system" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, year = 1985 -, pages = "235--243" -, note = "Proc. SIGGRAPH '85" +, author = "G. Nelson" +, title = "Juno, a constraint-based graphics system" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, year = 1985 +, pages = "235--243" +, note = "Proc. SIGGRAPH '85" } @article{n-taapd-78 -, author = "J. M. Nelson" -, title = "A triangulation algorithm for arbitrary planar domains" -, journal = "Appl. Math. Modelling" -, volume = 2 -, year = 1978 -, pages = "151--159" +, author = "J. M. Nelson" +, title = "A triangulation algorithm for arbitrary planar domains" +, journal = "Appl. Math. Modelling" +, volume = 2 +, year = 1978 +, pages = "151--159" } @article{ns-chrvd-86 -, author = "R. C. Nelson and H. Samet" -, title = "A consistent hierarchical representation for vector data" -, journal = "Comput. Graph." -, volume = 20 -, number = 4 -, month = aug -, year = 1986 -, pages = "197--206" -, note = "Proc. SIGGRAPH '86" -, update = "96.09 devillers, 96.05 efrat" +, author = "R. C. Nelson and H. Samet" +, title = "A consistent hierarchical representation for vector data" +, journal = "Comput. Graph." +, volume = 20 +, number = 4 +, month = aug +, year = 1986 +, pages = "197--206" +, note = "Proc. SIGGRAPH '86" +, update = "96.09 devillers, 96.05 efrat" } @inproceedings{ns-pahds-87 -, author = "R. C. Nelson and H. Samet" -, title = "A population analysis for hierarchical data structures" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, site = "San Francisco" -, month = may -, year = 1987 -, pages = "270--277" -, update = "97.07 agarwal, 96.05 efrat" +, author = "R. C. Nelson and H. Samet" +, title = "A population analysis for hierarchical data structures" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, site = "San Francisco" +, month = may +, year = 1987 +, pages = "270--277" +, update = "97.07 agarwal, 96.05 efrat" } @techreport{ns-paqvn-86 -, author = "R. C. Nelson and H. Samet" -, title = "A population analysis of quadtrees with variable node size" -, type = "Computer Science" -, number = "TR--1740" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = dec -, year = 1986 -, update = "96.05 efrat" +, author = "R. C. Nelson and H. Samet" +, title = "A population analysis of quadtrees with variable node size" +, type = "Computer Science" +, number = "TR--1740" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = dec +, year = 1986 +, update = "96.05 efrat" } @article{nt-vpspa-75 -, author = "G. L. Nemhauser and L. E. {Trotter, Jr.}" -, title = "Vertex packing: {structural} properties and algorithms" -, journal = "Math. Prog." -, volume = 8 -, year = 1975 -, pages = "232--248" -, update = "98.07 bibrelex" +, author = "G. L. Nemhauser and L. E. {Trotter, Jr.}" +, title = "Vertex packing: {structural} properties and algorithms" +, journal = "Math. Prog." +, volume = 8 +, year = 1975 +, pages = "232--248" +, update = "98.07 bibrelex" } @book{ny-pcmeo-83 -, author = "A. S. Nemirovsky and D. B. Yudin" -, title = "Problem Complexity and Method Efficiency in Optimization" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1983 -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "A. S. Nemirovsky and D. B. Yudin" +, title = "Problem Complexity and Method Efficiency in Optimization" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1983 +, update = "99.11 bibrelex, 98.11 bibrelex" } @article{nv-rpot-98 -, author = "J. Ne{\v s}et{\v r}il and P. Valtr" -, title = "A {Ramsey} property of order types" -, journal = "J. Combin. Theory Ser. A" -, volume = 81 -, year = 1998 -, pages = "88--107" -, update = "02.03 devillers" +, author = "J. Ne{\v s}et{\v r}il and P. Valtr" +, title = "A {Ramsey} property of order types" +, journal = "J. Combin. Theory Ser. A" +, volume = 81 +, year = 1998 +, pages = "88--107" +, update = "02.03 devillers" } @article{nv-rttp-94 -, author = "J. Ne{\v s}et{\v r}il and P. Valtr" -, title = "A {Ramsey}-type theorem in the plane" -, journal = "Combinatorics, Probability and Computing" -, volume = 3 -, year = 1994 -, pages = "127--135" -, update = "02.03 devillers, 97.03 gaertner+salinger" +, author = "J. Ne{\v s}et{\v r}il and P. Valtr" +, title = "A {Ramsey}-type theorem in the plane" +, journal = "Combinatorics, Probability and Computing" +, volume = 3 +, year = 1994 +, pages = "127--135" +, update = "02.03 devillers, 97.03 gaertner+salinger" } @inproceedings{nvs-imc-99 -, author = "J. Ne{\v s}et{\v r}il and P. Valtr and J. Solymosi" -, title = "Induced monochromatic configurations" -, booktitle = "Contemporary trends in Discrete Math." -, series = "DIMACS Series 49" -, year = 1999 -, pages = "219--228" -, update = "02.03 devillers" +, author = "J. Ne{\v s}et{\v r}il and P. Valtr and J. Solymosi" +, title = "Induced monochromatic configurations" +, booktitle = "Contemporary trends in Discrete Math." +, series = "DIMACS Series 49" +, year = 1999 +, pages = "219--228" +, update = "02.03 devillers" } @phdthesis{n-ceare-91 -, author = "N. S. Netanyahu" -, title = "Computationally efficient algorithms for robust estimation" -, school = "Department of Computer Science, University of Maryland" -, year = 1991 -, keywords = "doctoral thesis" -, precedes = "n-ceare-92" -, update = "98.07 bibrelex" +, author = "N. S. Netanyahu" +, title = "Computationally efficient algorithms for robust estimation" +, school = "Department of Computer Science, University of Maryland" +, year = 1991 +, keywords = "doctoral thesis" +, precedes = "n-ceare-92" +, update = "98.07 bibrelex" } @techreport{n-ceare-92 -, author = "N. S. Netanyahu" -, title = "Computationally efficient algorithms for robust estimation" -, number = "cs-tr-2898" -, institution = "University of Maryland" -, month = may -, year = 1992 -, succeeds = "n-ceare-91" -, update = "98.07 bibrelex, 93.09 milone+mitchell" +, author = "N. S. Netanyahu" +, title = "Computationally efficient algorithms for robust estimation" +, number = "cs-tr-2898" +, institution = "University of Maryland" +, month = may +, year = 1992 +, succeeds = "n-ceare-91" +, update = "98.07 bibrelex, 93.09 milone+mitchell" } @book{nh-dp-88 -, author = "A. N. Netravali and B. G. Haskell" -, title = "Digital Pictures --- Representation and Compression" -, publisher = "Plenum Press" -, address = "New York, NY" -, year = 1988 -, update = "98.07 bibrelex" +, author = "A. N. Netravali and B. G. Haskell" +, title = "Digital Pictures --- Representation and Compression" +, publisher = "Plenum Press" +, address = "New York, NY" +, year = 1988 +, update = "98.07 bibrelex" } @inproceedings{nd-imgns-96 -, author = "Friedhelm Neugebauer and Ralf Dickmann" -, title = "Improved mesh generation: not simple but good" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "257--270" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Friedhelm Neugebauer and Ralf Dickmann" +, title = "Improved mesh generation: not simple but good" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "257--270" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @article{n-tnas-94 -, author = "A. Neumann" -, title = "The new {ASME Y14.5M} standard" -, journal = "Manufacturing Review" -, volume = 7 -, number = 4 -, year = 1994 -, pages = "9--15" -, update = "98.03 agarwal" +, author = "A. Neumann" +, title = "The new {ASME Y14.5M} standard" +, journal = "Manufacturing Review" +, volume = 7 +, number = 4 +, year = 1994 +, pages = "9--15" +, update = "98.03 agarwal" } @article{nu-crpcp-88 -, author = "C. Neumann-Lara and J. Urrutia" -, title = "A combinatorial result on points and circles in the plane" -, journal = "Discrete Math." -, volume = 69 -, year = 1988 -, pages = "173--178" -, update = "98.03 bibrelex" +, author = "C. Neumann-Lara and J. Urrutia" +, title = "A combinatorial result on points and circles in the plane" +, journal = "Discrete Math." +, volume = 69 +, year = 1988 +, pages = "173--178" +, update = "98.03 bibrelex" } @techreport{ne-nmsta-80 -, author = "O. Nevalainen and J. Ernvall" -, title = "A note on a minimal spanning tree algorithm for {Euclidean} space" -, type = "Report" -, number = 25 -, institution = "Dept. Comput. Sci., Univ. Turku" -, address = "Turku, Finland" -, year = 1980 +, author = "O. Nevalainen and J. Ernvall" +, title = "A note on a minimal spanning tree algorithm for {Euclidean} space" +, type = "Report" +, number = 25 +, institution = "Dept. Comput. Sci., Univ. Turku" +, address = "Turku, Finland" +, year = 1980 } @article{nek-fmste-81 -, author = "O. Nevalainen and J. Ernvall and J. Katajainen" -, title = "Finding minimal spanning trees in a {Euclidean} coordinate space" -, journal = "BIT" -, volume = 21 -, year = 1981 -, pages = "46--54" +, author = "O. Nevalainen and J. Ernvall and J. Katajainen" +, title = "Finding minimal spanning trees in a {Euclidean} coordinate space" +, journal = "BIT" +, volume = 21 +, year = 1981 +, pages = "46--54" } @inproceedings{n-idlge-88 -, author = "F. Newbery" -, title = "An Interface Description Language for Graph Editors" -, booktitle = "Proc. IEEE Workshop on Visual Languages" -, nickname = "VL '88" -, year = 1988 -, keywords = "graph drawing" -, update = "98.07 bibrelex, 93.09 tamassia" +, author = "F. Newbery" +, title = "An Interface Description Language for Graph Editors" +, booktitle = "Proc. IEEE Workshop on Visual Languages" +, nickname = "VL '88" +, year = 1988 +, keywords = "graph drawing" +, update = "98.07 bibrelex, 93.09 tamassia" } @inproceedings{n-ecmcd-89 -, author = "F. J. Newbery" -, title = "Edge Concentration: {A} Method for Clustering Directed Graphs" -, booktitle = "Proc. 2nd Internat. Workshop on Software Configuration Management" -, year = 1989 -, pages = "76--85" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "F. J. Newbery" +, title = "Edge Concentration: {A} Method for Clustering Directed Graphs" +, booktitle = "Proc. 2nd Internat. Workshop on Software Configuration Management" +, year = 1989 +, pages = "76--85" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{nt-eege-90 -, author = "F. {Newbery Paulisch} and W. F. Tichy" -, title = "{EDGE}: An Extendible Graph Editor" -, journal = "Softw. -- Pract. Exp." -, volume = 20 -, number = "S1" -, year = 1990 -, pages = "63--88" -, note = "also as Technical Report 8/88, Fakultat fur +, author = "F. {Newbery Paulisch} and W. F. Tichy" +, title = "{EDGE}: An Extendible Graph Editor" +, journal = "Softw. -- Pract. Exp." +, volume = 20 +, number = "S1" +, year = 1990 +, pages = "63--88" +, note = "also as Technical Report 8/88, Fakultat fur Informatik, Univ. of Karlsruhe, 1988" -, keywords = "graph drawing" -, update = "99.07 forrest, 98.07 vismara, 93.09 tamassia" +, keywords = "graph drawing" +, update = "99.07 forrest, 98.07 vismara, 93.09 tamassia" } @article{nm-ocfhc-80 -, author = "M. Newborn and W. O. J. Moser" -, title = "Optimal crossing-free {Hamiltonian} circuit drawings of {$K_{n}$}" -, journal = "J. Combin. Theory Ser. B" -, volume = 29 -, year = 1980 -, pages = "13--26" -, update = "98.07 bibrelex" +, author = "M. Newborn and W. O. J. Moser" +, title = "Optimal crossing-free {Hamiltonian} circuit drawings of {$K_{n}$}" +, journal = "J. Combin. Theory Ser. B" +, volume = 29 +, year = 1980 +, pages = "13--26" +, update = "98.07 bibrelex" } @inproceedings{nns-nshsp-72 -, author = "M. Newell and R. Newell and T. Sancha" -, title = "A new solution to the hidden surface problem" -, booktitle = "Proc. ACM Annu. Conf." -, year = 1972 -, pages = "443--448" -, update = "98.07 bibrelex" +, author = "M. Newell and R. Newell and T. Sancha" +, title = "A new solution to the hidden surface problem" +, booktitle = "Proc. ACM Annu. Conf." +, year = 1972 +, pages = "443--448" +, update = "98.07 bibrelex" } @article{ns-issip-80 -, author = "M. E. Newell and C. H. Sequin" -, title = "The inside story on self-intersecting polygons" -, journal = "Lambda" -, volume = 1 -, year = 1980 -, pages = "20--21" -, update = "98.03 bibrelex" +, author = "M. E. Newell and C. H. Sequin" +, title = "The inside story on self-intersecting polygons" +, journal = "Lambda" +, volume = 1 +, year = 1980 +, pages = "20--21" +, update = "98.03 bibrelex" } @book{n-ps-82 -, author = "D. J. Newman" -, title = "A problem seminar" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1982 -, update = "97.11 bibrelex" +, author = "D. J. Newman" +, title = "A problem seminar" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1982 +, update = "97.11 bibrelex" } @book{ns-picg-79 -, author = "W. M. Newman and R. F. Sproull" -, title = "Principles of Interactive Computer Graphics" -, publisher = "McGraw-Hill" -, address = "New York, NY" -, year = 1979 +, author = "W. M. Newman and R. F. Sproull" +, title = "Principles of Interactive Computer Graphics" +, publisher = "McGraw-Hill" +, address = "New York, NY" +, year = 1979 } @inproceedings{nh-eecms-94 -, author = "R. T. Ng and J. Han" -, title = "Efficient and Effective Clustering Methods for Spatial Data Mining" -, booktitle = "Proceedings of the Twentieth International Conference on Very Large Databases" -, site = "Santiago, Chile" -, year = 1994 -, pages = "144--155" -, update = "98.07 agarwal" +, author = "R. T. Ng and J. Han" +, title = "Efficient and Effective Clustering Methods for Spatial Data Mining" +, booktitle = "Proceedings of the Twentieth International Conference on Very Large Databases" +, site = "Santiago, Chile" +, year = 1994 +, pages = "144--155" +, update = "98.07 agarwal" } @inproceedings{nrw-bcsh-93 -, author = "V. Nguyen and T. Roos and P. Widmayer" -, title = "Balanced cuts of a set of hyperrectangles" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "121--126" -, cites = "df-ssh-93, df-obpps-92p, b-mbstu-75, g-rtdis-84, py-bpahs-89, s-dasds-90, nhs-gfasm-84, py-obspo-90, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "V. Nguyen and T. Roos and P. Widmayer" +, title = "Balanced cuts of a set of hyperrectangles" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "121--126" +, cites = "df-ssh-93, df-obpps-92p, b-mbstu-75, g-rtdis-84, py-bpahs-89, s-dasds-90, nhs-gfasm-84, py-obspo-90, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @techreport{n-fppp-84 -, author = "Van-Duc Nguyen" -, title = "The Find-Path Problem in the Plane" -, type = "A.I. Memo" -, number = 760 -, institution = "MIT, AI Laboratory" -, year = 1984 -, update = "93.09 milone+mitchell" +, author = "Van-Duc Nguyen" +, title = "The Find-Path Problem in the Plane" +, type = "A.I. Memo" +, number = 760 +, institution = "MIT, AI Laboratory" +, year = 1984 +, update = "93.09 milone+mitchell" } @techreport{n-ssfcg-86 -, author = "V.-D. Nguyen" -, title = "The synthesis of stable force-closure grasps" -, type = "Technical {Report}" -, number = "MIT AI-TR-905" -, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1986 -, update = "98.07 bibrelex" +, author = "V.-D. Nguyen" +, title = "The synthesis of stable force-closure grasps" +, type = "Technical {Report}" +, number = "MIT AI-TR-905" +, institution = "Artif. Intell. Lab., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1986 +, update = "98.07 bibrelex" } @inproceedings{nwr-bcsh-93 -, author = "Viet Hai Nguyen and Peter Widmayer and Thomas Roos" -, title = "Best cuts of a set of hyperrectangles" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "1--5" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Viet Hai Nguyen and Peter Widmayer and Thomas Roos" +, title = "Best cuts of a set of hyperrectangles" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "1--5" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{n-amgte-82 -, author = "V. Ph. Nguyen" -, title = "Automatic mesh generation with tetrahedron elements" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 18 -, year = 1982 -, pages = "273--289" +, author = "V. Ph. Nguyen" +, title = "Automatic mesh generation with tetrahedron elements" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 18 +, year = 1982 +, pages = "273--289" } @article{nllw-xchsx-83 -, author = "T. M. Nicholl and D. T. Lee and Y. Z. Liao and C. K. Wong" -, title = "On the {$X-Y$} convex hull of a set of {$X-Y$} polygons" -, journal = "BIT" -, volume = 23 -, number = 4 -, year = 1983 -, pages = "456--471" -, update = "98.11 bibrelex" +, author = "T. M. Nicholl and D. T. Lee and Y. Z. Liao and C. K. Wong" +, title = "On the {$X-Y$} convex hull of a set of {$X-Y$} polygons" +, journal = "BIT" +, volume = 23 +, number = 4 +, year = 1983 +, pages = "456--471" +, update = "98.11 bibrelex" } @techreport{nprw-gcmlp-97 -, author = "S. Nickel and J. Puerto and A. Rodriguez-Chia and A. Wei{\ss}ler" -, title = "General Continuous Multicriteria Location Problems" -, type = "Report in Wirtschaftsmathematik" -, number = 28 -, institution = "University of Kaiserslautern, Department of Mathematics" -, year = 1997 -, update = "01.04 icking" +, author = "S. Nickel and J. Puerto and A. Rodriguez-Chia and A. Wei{\ss}ler" +, title = "General Continuous Multicriteria Location Problems" +, type = "Report in Wirtschaftsmathematik" +, number = 28 +, institution = "University of Kaiserslautern, Department of Mathematics" +, year = 1997 +, update = "01.04 icking" } @inproceedings{npw-gscpo-99 -, author = "Stefan Nickel and Justo Puerto and Ansgar Wei{\ss}ler" -, title = "Geometric Solution Comcepts for Planar Ordered {Weber} Problems" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "43--46" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Stefan Nickel and Justo Puerto and Ansgar Wei{\ss}ler" +, title = "Geometric Solution Comcepts for Planar Ordered {Weber} Problems" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "43--46" +, update = "00.03 bibrelex, 99.07 bibrelex" } @incollection{n-med-71 -, author = "H. Niederreiter" -, title = "Methods for estimating discrepancy" -, editor = "S. K. Zaremba" -, booktitle = "Applications of Number Theory to Numerical Analysis" -, publisher = "Academic Press" -, year = 1971 -, pages = "203--236" -, update = "98.03 bibrelex" +, author = "H. Niederreiter" +, title = "Methods for estimating discrepancy" +, editor = "S. K. Zaremba" +, booktitle = "Applications of Number Theory to Numerical Analysis" +, publisher = "Academic Press" +, year = 1971 +, pages = "203--236" +, update = "98.03 bibrelex" } @techreport{n-sqsfp-79 -, author = "W. P. Niedringhaus" -, title = "Scheduling with queueing: {T}he space factory problem" -, institution = "Princeton University" -, year = 1979 -, update = "96.05 agarwal" +, author = "W. P. Niedringhaus" +, title = "Scheduling with queueing: {T}he space factory problem" +, institution = "Princeton University" +, year = 1979 +, update = "96.05 agarwal" } @phdthesis{n-aga-96 -, author = "F. Nielsen" -, title = "Algorithmes g{\'e}om{\'e}triques adaptatifs" -, type = "Th\`{e}se de doctorat en sciences" -, school = "universit\'e de Nice-Sophia Antipolis" -, address = "France" -, year = 1996 -, keywords = "doctoral thesis" -, update = "98.07 devillers" +, author = "F. Nielsen" +, title = "Algorithmes g{\'e}om{\'e}triques adaptatifs" +, type = "Th\`{e}se de doctorat en sciences" +, school = "universit\'e de Nice-Sophia Antipolis" +, address = "France" +, year = 1996 +, keywords = "doctoral thesis" +, update = "98.07 devillers" } @inproceedings{n-capma-99 -, author = "Frank Nielsen" -, title = "Constrained Approximate Pattern Matching and its Applications" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "191--193" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Frank Nielsen" +, title = "Constrained Approximate Pattern Matching and its Applications" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "191--193" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{n-fsbhd-96 -, author = "F. Nielsen" -, title = "Fast stabbing of boxes in high dimensions" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "87--92" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "F. Nielsen" +, title = "Fast stabbing of boxes in high dimensions" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "87--92" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{n-fsbhd-96c -, author = "Franck Nielsen" -, title = "Fast Stabbing of Boxes in High Dimensions" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = 121 -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Franck Nielsen" +, title = "Fast Stabbing of Boxes in High Dimensions" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = 121 +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{n-ospcm-96 -, author = "F. Nielsen" -, title = "Output-sensitive {P}eeling of {C}onvex and {M}aximal {L}ayers" -, journal = "Inform. Process. Lett." -, volume = 59 -, year = 1996 -, pages = "255--259" -, update = "98.11 devillers" +, author = "F. Nielsen" +, title = "Output-sensitive {P}eeling of {C}onvex and {M}aximal {L}ayers" +, journal = "Inform. Process. Lett." +, volume = 59 +, year = 1996 +, pages = "255--259" +, update = "98.11 devillers" } @techreport{ny-oscha-94 -, author = "F. Nielsen and M. Yvinec" -, title = "Output-Sensitive Convex Hull Algorithms of Planar Convex Objects" -, type = "Research {Report}" -, number = 2575 -, institution = "INRIA" -, address = "BP93, 06902 Sophia-Antipolis, France" -, year = 1994 -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=2575" -, precedes = "ny-oscha-98" -, update = "98.07 devillers, 95.09 devillers" -, abstract = "A set of planar objects is said to be of type $m$ if the +, author = "F. Nielsen and M. Yvinec" +, title = "Output-Sensitive Convex Hull Algorithms of Planar Convex Objects" +, type = "Research {Report}" +, number = 2575 +, institution = "INRIA" +, address = "BP93, 06902 Sophia-Antipolis, France" +, year = 1994 +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=2575" +, precedes = "ny-oscha-98" +, update = "98.07 devillers, 95.09 devillers" +, abstract = "A set of planar objects is said to be of type $m$ if the convex hull of any two objects has its size bounded by $2m$. In this paper, we present an algorithm based on the marriage-before-conquest paradigm to compute the convex hull of a set of $n$ planar convex objects @@ -110700,16 +110700,16 @@ @techreport{ny-oscha-94 } @article{ny-oscha-98 -, author = "F. Nielsen and M. Yvinec" -, title = "Output-Sensitive Convex Hull Algorithms of Planar Convex Objects" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, number = 1 -, year = 1998 -, pages = "39--66" -, succeeds = "ny-oscha-94" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers" -, abstract = "A set of planar objects is said to be of type $m$ if the +, author = "F. Nielsen and M. Yvinec" +, title = "Output-Sensitive Convex Hull Algorithms of Planar Convex Objects" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, number = 1 +, year = 1998 +, pages = "39--66" +, succeeds = "ny-oscha-94" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 devillers" +, abstract = "A set of planar objects is said to be of type $m$ if the convex hull of any two objects has its size bounded by $2m$. In this paper, we present an algorithm based on the marriage-before-conquest paradigm to compute the convex hull of a set of $n$ planar convex objects of fixed type @@ -110727,233 +110727,233 @@ @article{ny-oscha-98 } @incollection{nf-scbut-83 -, author = "G. M. Nielson and R. Franke" -, title = "Surface Construction Based Upon Triangulations" -, editor = "R. Barnhill and W. Boehm" -, booktitle = "Surfaces in Computer-Aided Geometric Design" -, publisher = "North-Holland" -, year = 1983 -, pages = "163--177" -, annote = "Two different triangulations considered for surface - generation. DT and ``min-max'' triangulation which - minimizes maximum triangle angles." +, author = "G. M. Nielson and R. Franke" +, title = "Surface Construction Based Upon Triangulations" +, editor = "R. Barnhill and W. Boehm" +, booktitle = "Surfaces in Computer-Aided Geometric Design" +, publisher = "North-Holland" +, year = 1983 +, pages = "163--177" +, annote = "Two different triangulations considered for surface + generation. DT and ``min-max'' triangulation which + minimizes maximum triangle angles." } @proceedings{n-iwcg-83 -, title = "Abstracts 1st Intern. Workshop Comput. Geom." -, editor = "J. Nievergelt" -, nickname = "CG '83" -, site = "Z{\"u}rich" -, publisher = "ETH Z{\"u}rich" -, year = 1983 -, update = "00.03 bibrelex" +, title = "Abstracts 1st Intern. Workshop Comput. Geom." +, editor = "J. Nievergelt" +, nickname = "CG '83" +, site = "Z{\"u}rich" +, publisher = "ETH Z{\"u}rich" +, year = 1983 +, update = "00.03 bibrelex" } @inproceedings{n-kbgr-89 -, author = "J. Nievergelt" -, title = "{Konsistenzprobleme} beim geometrischen {Rechner}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "J. Nievergelt" +, title = "{Konsistenzprobleme} beim geometrischen {Rechner}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @book{nh-adsag-93 -, author = "J. Nievergelt and K. H. Hinrichs" -, title = "Algorithms and Data Structures: {W}ith Applications to Graphics and Geometry" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1993 -, keywords = "book" -, comments = "Computing Reviews 9401-0020" -, update = "97.03 schwarzkopf, 96.05 agarwal, 94.09 jones, 93.09 held" +, author = "J. Nievergelt and K. H. Hinrichs" +, title = "Algorithms and Data Structures: {W}ith Applications to Graphics and Geometry" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1993 +, keywords = "book" +, comments = "Computing Reviews 9401-0020" +, update = "97.03 schwarzkopf, 96.05 agarwal, 94.09 jones, 93.09 held" } @techreport{nhs-gfasm-81 -, author = "J. Nievergelt and H. Hinterberger and K. C. Sevcik" -, title = "The grid file: {A}n adaptable, symmetric multi-key file structure" -, type = "Report" -, number = 46 -, institution = "Inst. Inform., Eidgen{\"o}ssische Tech. Hochschule Z{\"u}rich" -, address = "Z{\"u}rich, Switzerland" -, year = 1981 -, update = "96.05 agarwal" +, author = "J. Nievergelt and H. Hinterberger and K. C. Sevcik" +, title = "The grid file: {A}n adaptable, symmetric multi-key file structure" +, type = "Report" +, number = 46 +, institution = "Inst. Inform., Eidgen{\"o}ssische Tech. Hochschule Z{\"u}rich" +, address = "Z{\"u}rich, Switzerland" +, year = 1981 +, update = "96.05 agarwal" } @article{nhs-gfasm-84 -, author = "J. Nievergelt and H. Hinterberger and K. C. Sevcik" -, title = "The grid file: {A}n adaptable, symmetric multi-key file structure" -, journal = "ACM Trans. Database Syst." -, volume = 9 -, number = 1 -, year = 1984 -, pages = "38--71" -, update = "98.11 bibrelex, 97.07 agarwal" +, author = "J. Nievergelt and H. Hinterberger and K. C. Sevcik" +, title = "The grid file: {A}n adaptable, symmetric multi-key file structure" +, journal = "ACM Trans. Database Syst." +, volume = 9 +, number = 1 +, year = 1984 +, pages = "38--71" +, update = "98.11 bibrelex, 97.07 agarwal" } @article{np-psaig-82 -, author = "J. Nievergelt and F. P. Preparata" -, title = "Plane-sweep algorithms for intersecting geometric figures" -, journal = "Commun. ACM" -, volume = 25 -, year = 1982 -, pages = "739--747" -, keywords = "polygons, intersection, two-dimensional" +, author = "J. Nievergelt and F. P. Preparata" +, title = "Plane-sweep algorithms for intersecting geometric figures" +, journal = "Commun. ACM" +, volume = 25 +, year = 1982 +, pages = "739--747" +, keywords = "polygons, intersection, two-dimensional" } @article{nr-bstbb-73 -, author = "J. Nievergelt and E. M. Reingold" -, title = "Binary search trees of bounded balance" -, journal = "SIAM J. Comput." -, volume = 2 -, year = 1973 -, pages = "33--43" -, update = "97.11 bibrelex" +, author = "J. Nievergelt and E. M. Reingold" +, title = "Binary search trees of bounded balance" +, journal = "SIAM J. Comput." +, volume = 2 +, year = 1973 +, pages = "33--43" +, update = "97.11 bibrelex" } @inproceedings{nslab-xpegc-91 -, author = "J{\"u}rg Nievergelt and Peter Schorn and Michele de Lorenzi and Christoph Ammann and Adrian Br{\"u}ngger" -, title = "{XYZ}: A project in experimental geometric computation" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "171--186" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "J{\"u}rg Nievergelt and Peter Schorn and Michele de Lorenzi and Christoph Ammann and Adrian Br{\"u}ngger" +, title = "{XYZ}: A project in experimental geometric computation" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "171--186" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @techreport{nslab-xsgc-91 -, author = "J. Nievergelt and P. Schorn and M. de Lorenzi and C. Ammann and A. {Br\"ungger}" -, title = "{XYZ}: Software for geometric computation" -, type = "Report" -, number = 163 -, institution = "Institut f{\"u}r Theorische Informatik, ETH" -, address = "Z{\"u}rich, Switzerland" -, month = jul -, year = 1991 -, update = "93.09 erickson+rote" +, author = "J. Nievergelt and P. Schorn and M. de Lorenzi and C. Ammann and A. {Br\"ungger}" +, title = "{XYZ}: Software for geometric computation" +, type = "Report" +, number = 163 +, institution = "Institut f{\"u}r Theorische Informatik, ETH" +, address = "Z{\"u}rich, Switzerland" +, month = jul +, year = 1991 +, update = "93.09 erickson+rote" } @article{nw-gfsiq-93 -, author = "J. Nievergelt and P. Widmayer" -, title = "Guard files: {S}tabbing and intersection queries on fat spatial objects" -, journal = "Comput. J." -, volume = 36 -, year = 1993 -, pages = "107--116" -, update = "97.07 agarwal" +, author = "J. Nievergelt and P. Widmayer" +, title = "Guard files: {S}tabbing and intersection queries on fat spatial objects" +, journal = "Comput. J." +, volume = 36 +, year = 1993 +, pages = "107--116" +, update = "97.07 agarwal" } @unpublished{nw-sdscd-96 -, author = "J. Nievergelt and P. Widmayer" -, title = "Spatial data structures: {C}oncepts and design choices" -, year = 1996 -, note = "unpublished manuscript" -, update = "97.07 agarwal" +, author = "J. Nievergelt and P. Widmayer" +, title = "Spatial data structures: {C}oncepts and design choices" +, year = 1996 +, note = "unpublished manuscript" +, update = "97.07 agarwal" } @incollection{nw-sdscd-00 -, author = "J{\"u}rg Nievergelt and Peter Widmayer" -, title = "Spatial Data Structures: {Concepts} and Design Choices" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "725--764" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 17 of su-hcg-00" +, author = "J{\"u}rg Nievergelt and Peter Widmayer" +, title = "Spatial Data Structures: {Concepts} and Design Choices" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "725--764" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 17 of su-hcg-00" } @article{ny-piids-94 -, author = "Masatoshi Niizeki and Fujio Yamaguchi" -, title = "Projectively invariant intersection detection for solid modelling" -, journal = "ACM Trans. Graph." -, volume = 13 -, number = 3 -, year = 1994 -, pages = "277--299" -, keywords = "intersection, homogeneous coordinates, solid modeling" -, comments = "Correction to mst-ialc-89" -, update = "95.09 korneenko" +, author = "Masatoshi Niizeki and Fujio Yamaguchi" +, title = "Projectively invariant intersection detection for solid modelling" +, journal = "ACM Trans. Graph." +, volume = 13 +, number = 3 +, year = 1994 +, pages = "277--299" +, keywords = "intersection, homogeneous coordinates, solid modeling" +, comments = "Correction to mst-ialc-89" +, update = "95.09 korneenko" } @book{ns-gg-87 -, author = "V. V. Nikulin and I. R. Shafarevich" -, title = "Geometrics and Groups" -, publisher = "Springer-Verlag" -, year = 1987 -, update = "98.07 bibrelex" +, author = "V. V. Nikulin and I. R. Shafarevich" +, title = "Geometrics and Groups" +, publisher = "Springer-Verlag" +, year = 1987 +, update = "98.07 bibrelex" } @phdthesis{n-gagmm-95 -, author = "Bengt J. Nilsson" -, title = "Guarding Art Galleries --- Methods for Mobile Guards" -, school = "Lund University" -, year = 1995 -, keywords = "doctoral thesis" -, update = "98.03 mitchell, 95.09 mitchell" +, author = "Bengt J. Nilsson" +, title = "Guarding Art Galleries --- Methods for Mobile Guards" +, school = "Lund University" +, year = 1995 +, keywords = "doctoral thesis" +, update = "98.03 mitchell, 95.09 mitchell" } @incollection{nosi-rocg-92 -, author = "Bengt J. Nilsson and Thomas Ottmann and Sven Schuierer and Christian Icking" -, title = "Restricted Orientation Computational Geometry" -, editor = "Burkhard Monien and Thomas Ottmann" -, booktitle = "Data Structures and Efficient Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 594 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "148--185" -, update = "99.11 bibrelex, 97.03 icking" +, author = "Bengt J. Nilsson and Thomas Ottmann and Sven Schuierer and Christian Icking" +, title = "Restricted Orientation Computational Geometry" +, editor = "Burkhard Monien and Thomas Ottmann" +, booktitle = "Data Structures and Efficient Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 594 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "148--185" +, update = "99.11 bibrelex, 97.03 icking" } @inproceedings{ns-oarlc-91 -, author = "Bengt J. Nilsson and S. Schuierer" -, title = "An optimal algorithm for the rectilinear link center of a rectilinear polygon" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "249--260" -, keywords = "link distance, link center, orthohedral, visibility, polygon" -, precedes = "ns-oarlc-96" -, update = "98.03 mitchell, 96.09 devillers" +, author = "Bengt J. Nilsson and S. Schuierer" +, title = "An optimal algorithm for the rectilinear link center of a rectilinear polygon" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "249--260" +, keywords = "link distance, link center, orthohedral, visibility, polygon" +, precedes = "ns-oarlc-96" +, update = "98.03 mitchell, 96.09 devillers" } @article{ns-oarlc-96 -, author = "Bengt J. Nilsson and S. Schuierer" -, title = "An optimal algorithm for the rectilinear link center of a rectilinear polygon" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "169--194" -, keywords = "link distance, link center, orthohedral, visibility, polygon" -, succeeds = "ns-oarlc-91" -, update = "98.03 mitchell, 96.09 devillers" +, author = "Bengt J. Nilsson and S. Schuierer" +, title = "An optimal algorithm for the rectilinear link center of a rectilinear polygon" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "169--194" +, keywords = "link distance, link center, orthohedral, visibility, polygon" +, succeeds = "ns-oarlc-91" +, update = "98.03 mitchell, 96.09 devillers" } @inproceedings{ns-crldp-91 -, author = "Bengt J. Nilsson and Sven Schuierer" -, title = "Computing the rectilinear link diameter of a polygon" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "203--215" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." -, abstract = "The problem of finding the diameter of a simple polygon has +, author = "Bengt J. Nilsson and Sven Schuierer" +, title = "Computing the rectilinear link diameter of a polygon" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "203--215" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." +, abstract = "The problem of finding the diameter of a simple polygon has been studied extensively in recent years. $O(n \log n)$ time upper bounds have been given for computing the geodesic diameter and the link diameter for a polygon. @@ -110965,199 +110965,199 @@ @inproceedings{ns-crldp-91 } @misc{nw-owrsp-90m -, author = "Bengt J. Nilsson and D. Wood" -, title = "Optimum watchmen routes in spiral polygons" -, month = aug -, year = 1989 -, note = "Manuscript, University of Waterloo, Ontario, Canada" -, precedes = "nw-owrsp-90i" -, update = "98.07 bibrelex" +, author = "Bengt J. Nilsson and D. Wood" +, title = "Optimum watchmen routes in spiral polygons" +, month = aug +, year = 1989 +, note = "Manuscript, University of Waterloo, Ontario, Canada" +, precedes = "nw-owrsp-90i" +, update = "98.07 bibrelex" } @inproceedings{nw-owrsp-90i -, author = "B. J. Nilsson and D. Wood" -, title = "Optimum watchmen routes in spiral polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "269--272" -, succeeds = "nw-owrsp-90m" -, cites = "c-ctpg-75, cn-owr-86, cn-wrsp-87, cn-owr-88, f-spcwt-78, o-agta-87, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "B. J. Nilsson and D. Wood" +, title = "Optimum watchmen routes in spiral polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "269--272" +, succeeds = "nw-owrsp-90m" +, cites = "c-ctpg-75, cn-owr-86, cn-wrsp-87, cn-owr-88, f-spcwt-78, o-agta-87, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{n-maaai-69 -, author = "N. Nilsson" -, title = "A mobile automaton: {A}n application of artificial intelligence techniques" -, booktitle = "Proc. IJCAI" -, year = 1969 -, pages = "509--520" -, update = "96.05 agarwal" +, author = "N. Nilsson" +, title = "A mobile automaton: {A}n application of artificial intelligence techniques" +, booktitle = "Proc. IJCAI" +, year = 1969 +, pages = "509--520" +, update = "96.05 agarwal" } @inproceedings{n-asmpc-90 -, author = "N. Nishimura" -, title = "Asynchronous shared memory parallel computation" -, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "76--84" -, update = "96.09 orourke" +, author = "N. Nishimura" +, title = "Asynchronous shared memory parallel computation" +, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "76--84" +, update = "96.09 orourke" } @techreport{n-lbcmm-77 -, author = "T. Nishizeki" -, title = "Lower bounds on cardinality of the maximum matchings of planar graphs" -, type = "Technical {Report}" -, institution = "Carnegie-Mellon Univ." -, address = "Phildelphia, PA" -, year = 1977 -, update = "98.07 bibrelex" +, author = "T. Nishizeki" +, title = "Lower bounds on cardinality of the maximum matchings of planar graphs" +, type = "Technical {Report}" +, institution = "Carnegie-Mellon Univ." +, address = "Phildelphia, PA" +, year = 1977 +, update = "98.07 bibrelex" } @book{nc-pgta-88 -, author = "T. Nishizeki and N. Chiba" -, title = "Planar Graphs: Theory and Algorithms" -, series = "Ann. Discrete Math." -, volume = 32 -, publisher = "North-Holland" -, address = "Amsterdam, The Netherlands" -, year = 1988 -, keywords = "graph drawing" -, update = "00.03 vismara, 96.09 devillers, 96.05 agarwal, 93.09 tamassia" +, author = "T. Nishizeki and N. Chiba" +, title = "Planar Graphs: Theory and Algorithms" +, series = "Ann. Discrete Math." +, volume = 32 +, publisher = "North-Holland" +, address = "Amsterdam, The Netherlands" +, year = 1988 +, keywords = "graph drawing" +, update = "00.03 vismara, 96.09 devillers, 96.05 agarwal, 93.09 tamassia" } @article{n-coatd-88 -, author = "H. Noborio" -, title = "Construction of the octree approximating three-dimensional objects by using multiple views" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 10 -, year = 1988 -, pages = "769--782" -, update = "98.11 bibrelex" +, author = "H. Noborio" +, title = "Construction of the octree approximating three-dimensional objects by using multiple views" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 10 +, year = 1988 +, pages = "769--782" +, update = "98.11 bibrelex" } @article{nfa-ficmu-89 -, author = "H. Noborio and S. Fukuda and S. Arimoto" -, title = "Fast interference check method using octree representation" -, journal = "Advanced robotics" -, volume = 3 -, number = 3 -, year = 1989 -, pages = "193--212" -, update = "93.09 milone+mitchell" +, author = "H. Noborio and S. Fukuda and S. Arimoto" +, title = "Fast interference check method using octree representation" +, journal = "Advanced robotics" +, volume = 3 +, number = 3 +, year = 1989 +, pages = "193--212" +, update = "93.09 milone+mitchell" } @inproceedings{nyt-usbna-97 -, author = "Hiroshi Noborio and Takahashi Yoshioka and Shoji Tominaga" -, title = "An Universal Sensor-Based Navigation Algorithm" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 23 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Hiroshi Noborio and Takahashi Yoshioka and Shoji Tominaga" +, title = "An Universal Sensor-Based Navigation Algorithm" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 23 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{ngv-begs-93 -, author = "M. H. Nodine and M. T. Goodrich and J. S. Vitter" -, title = "Blocking for External Graph Searching" -, booktitle = "Proc. 12th Annu. ACM Sympos. Principles Database Syst." -, nickname = "PODS '93" -, year = 1993 -, pages = "222--232" -, update = "94.09 vitter" +, author = "M. H. Nodine and M. T. Goodrich and J. S. Vitter" +, title = "Blocking for External Graph Searching" +, booktitle = "Proc. 12th Annu. ACM Sympos. Principles Database Syst." +, nickname = "PODS '93" +, year = 1993 +, pages = "222--232" +, update = "94.09 vitter" } @article{ngv-begs-96 -, author = "M. H. Nodine and M. T. Goodrich and J. S. Vitter" -, title = "Blocking for External Graph Searching" -, journal = "Algorithmica" -, volume = 16 -, number = 2 -, month = aug -, year = 1996 -, pages = "181--214" -, update = "97.03 murali" +, author = "M. H. Nodine and M. T. Goodrich and J. S. Vitter" +, title = "Blocking for External Graph Searching" +, journal = "Algorithmica" +, volume = 16 +, number = 2 +, month = aug +, year = 1996 +, pages = "181--214" +, update = "97.03 murali" } @inproceedings{nv-ddssd-93 -, author = "M. H. Nodine and J. S. Vitter" -, title = "Deterministic Distribution Sort in Shared and Distributed Memory Multiprocessors" -, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." -, year = 1993 -, pages = "120--129" -, update = "96.09 orourke+tamassia" +, author = "M. H. Nodine and J. S. Vitter" +, title = "Deterministic Distribution Sort in Shared and Distributed Memory Multiprocessors" +, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." +, year = 1993 +, pages = "120--129" +, update = "96.09 orourke+tamassia" } @article{nv-gsosa-95 -, author = "M. H. Nodine and J. S. Vitter" -, title = "Greed Sort: An Optimal Sorting Algorithm for Multiple Disks" -, journal = "J. ACM" -, volume = 42 -, number = 4 -, month = jul -, year = 1995 -, pages = "919--933" -, update = "97.03 murali" +, author = "M. H. Nodine and J. S. Vitter" +, title = "Greed Sort: An Optimal Sorting Algorithm for Multiple Disks" +, journal = "J. ACM" +, volume = 42 +, number = 4 +, month = jul +, year = 1995 +, pages = "919--933" +, update = "97.03 murali" } @inproceedings{nv-lsspm-91 -, author = "M. H. Nodine and J. S. Vitter" -, title = "Large-Scale Sorting in Parallel Memories" -, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Architect." -, year = 1991 -, pages = "29--39" -, update = "96.09 orourke" +, author = "M. H. Nodine and J. S. Vitter" +, title = "Large-Scale Sorting in Parallel Memories" +, booktitle = "Proc. 3rd ACM Sympos. Parallel Algorithms Architect." +, year = 1991 +, pages = "29--39" +, update = "96.09 orourke" } @inproceedings{n-spetv-94 -, author = "E. G. Noik" -, title = "A Space of Presentation Emphasis Techniques for Visualizing Graphs" -, booktitle = "GI '94: Graphics Interface 1994" -, site = "Banff, Alberta, Canada" -, month = may -, year = 1994 -, url = "ftp://db.toronto.edu/pub/papers/gi94.ps.Z" -, update = "94.05 tamassia" +, author = "E. G. Noik" +, title = "A Space of Presentation Emphasis Techniques for Visualizing Graphs" +, booktitle = "GI '94: Graphics Interface 1994" +, site = "Banff, Alberta, Canada" +, month = may +, year = 1994 +, url = "ftp://db.toronto.edu/pub/papers/gi94.ps.Z" +, update = "94.05 tamassia" } @inproceedings{n-epeag-95 -, author = "E. G. Noik" -, title = "Encoding Presentation Emphasis Algorithms for Graphs" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "428--435" -, keywords = "graph drawing, fisheye view, system" -, update = "95.01 tamassia" -} - -%, day = "14--18" +, author = "E. G. Noik" +, title = "Encoding Presentation Emphasis Algorithms for Graphs" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "428--435" +, keywords = "graph drawing, fisheye view, system" +, update = "95.01 tamassia" +} + +%, day = "14--18" @inproceedings{n-elhfv-93 -, author = "E. G. Noik" -, title = "Exploring Large Hyperdocuments: {F}isheye Views of Nested Networks" -, booktitle = "Hypertext '93: ACM Conf. on Hypertext" -, site = "Seattle, WA" -, month = nov -, year = 1993 -, pages = "192--205" -, update = "96.05 agarwal, 94.01 tamassia" +, author = "E. G. Noik" +, title = "Exploring Large Hyperdocuments: {F}isheye Views of Nested Networks" +, booktitle = "Hypertext '93: ACM Conf. on Hypertext" +, site = "Seattle, WA" +, month = nov +, year = 1993 +, pages = "192--205" +, update = "96.05 agarwal, 94.01 tamassia" } @incollection{n-gshvu-93 -, author = "E. G. Noik" -, title = "Graphite: {A} Suite of Hygraph Visualization Utilities" -, editor = "A. O. Mendelzon" -, booktitle = "Declarative database visualization: Recent papers from the Hy+/GraphLog project" -, publisher = "Technical report CSRI-285, University of Toronto" -, month = jul -, year = 1993 -, update = "96.05 agarwal, 94.01 tamassia" -, annote = "Graphite is a set of Unix programs that support +, author = "E. G. Noik" +, title = "Graphite: {A} Suite of Hygraph Visualization Utilities" +, editor = "A. O. Mendelzon" +, booktitle = "Declarative database visualization: Recent papers from the Hy+/GraphLog project" +, publisher = "Technical report CSRI-285, University of Toronto" +, month = jul +, year = 1993 +, update = "96.05 agarwal, 94.01 tamassia" +, annote = "Graphite is a set of Unix programs that support general and directed graphs and hygraphs (a nested graph formalism) and perform the following functions: -draw graphs using combinations of 10 basic graph layout algorithms -generate several types of fisheye views @@ -111168,4797 +111168,4797 @@ @incollection{n-gshvu-93 encapsulated PostScript" } -%, day = "24--27" +%, day = "24--27" @inproceedings{n-lifvn-93 -, author = "E. G. Noik" -, title = "Layout-independent Fisheye Views of Nested Graphs" -, booktitle = "VL '93: IEEE Symposium on Visual Languages" -, site = "Bergen, Norway" -, month = aug -, year = 1993 -, pages = "336--341" -, update = "94.01 tamassia" +, author = "E. G. Noik" +, title = "Layout-independent Fisheye Views of Nested Graphs" +, booktitle = "VL '93: IEEE Symposium on Visual Languages" +, site = "Bergen, Norway" +, month = aug +, year = 1993 +, pages = "336--341" +, update = "94.01 tamassia" } @inproceedings{n-nemrp-94 -, author = "Hartmut Noltemeier" -, title = "A New Efficient Method to Represent and Process Proximity and Similarity in Sets of Complex Objects" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = 77 -, cites = "ZZZ" -, update = "00.11 smid, 00.07 icking" +, author = "Hartmut Noltemeier" +, title = "A New Efficient Method to Represent and Process Proximity and Similarity in Sets of Complex Objects" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = 77 +, cites = "ZZZ" +, update = "00.11 smid, 00.07 icking" } @proceedings{n-cgia-88 -, title = "Computational Geometry and its Applications" -, editor = "H. Noltemeier" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, update = "00.03 bibrelex, 99.11 bibrelex, 97.11 icking, 93.09 milone+mitchell" -, annote = "4th Intern. Workshop Comput. Geom." +, title = "Computational Geometry and its Applications" +, editor = "H. Noltemeier" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, update = "00.03 bibrelex, 99.11 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, annote = "4th Intern. Workshop Comput. Geom." } @inproceedings{n-lfmss-91 -, author = "Hartmut Noltemeier" -, title = "Layout of flexible manufacturing systems: selected problems" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "217--226" -, update = "00.03 bibrelex, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Hartmut Noltemeier" +, title = "Layout of flexible manufacturing systems: selected problems" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "217--226" +, update = "00.03 bibrelex, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{n-vta-89 -, author = "H. Noltemeier" -, title = "Voronoi trees and applications" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "69--74" -, update = "95.09 mitchell" +, author = "H. Noltemeier" +, title = "Voronoi trees and applications" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "69--74" +, update = "95.09 mitchell" } @inproceedings{nvz-mbtte-92 -, author = "H. Noltemeier and K. Verbarg and C. Zirkelbach" -, title = "Monotonous Bisector Trees: {A} Tool for Efficient Partitioning of Complex Scenes of Geometric Objects" -, booktitle = "Data Structures and Efficient Algorithms: Final Report on the DFG Special Joint Initiative" -, series = "Lecture Notes Comput. Sci." -, volume = 594 -, publisher = "Springer-Verlag" -, year = 1992 -, succeeds = "z-mbtcp-90" -, update = "96.05 agarwal, 94.05 franciosa" +, author = "H. Noltemeier and K. Verbarg and C. Zirkelbach" +, title = "Monotonous Bisector Trees: {A} Tool for Efficient Partitioning of Complex Scenes of Geometric Objects" +, booktitle = "Data Structures and Efficient Algorithms: Final Report on the DFG Special Joint Initiative" +, series = "Lecture Notes Comput. Sci." +, volume = 594 +, publisher = "Springer-Verlag" +, year = 1992 +, succeeds = "z-mbtcp-90" +, update = "96.05 agarwal, 94.05 franciosa" } @article{n-scpsn-81 -, author = "A. K. Noor" -, title = "Survey of computer programs for solutions of nonlinear structural and solid mechanics problems" -, journal = "Comput. Struct." -, volume = 13 -, year = 1981 -, pages = "424--465" +, author = "A. K. Noor" +, title = "Survey of computer programs for solutions of nonlinear structural and solid mechanics problems" +, journal = "Comput. Struct." +, volume = 13 +, year = 1981 +, pages = "424--465" } @article{nr-ccppp-67 -, author = "S. Nordbeck and B. Rystedt" -, title = "Computer cartography point-in-polygon programs" -, journal = "BIT" -, volume = 7 -, year = 1967 -, pages = "39--64" +, author = "S. Nordbeck and B. Rystedt" +, title = "Computer cartography point-in-polygon programs" +, journal = "BIT" +, volume = 7 +, year = 1967 +, pages = "39--64" } @incollection{n-cte-83 -, author = "A. C. Norman" -, title = "Computing in transcendental extensions" -, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" -, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" -, publisher = "Springer-Verlag" -, year = 1983 -, pages = "169--172" -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "A. C. Norman" +, title = "Computing in transcendental extensions" +, editor = "B. Buchberger and G. E. Collins and R. Loos and R. Albrecht" +, booktitle = "Computer Algebra: Symbolic and Algebraic Computation" +, publisher = "Springer-Verlag" +, year = 1983 +, pages = "169--172" +, update = "99.11 bibrelex, 98.03 bibrelex" } @misc{n-5dg-95 -, author = "S. North" -, title = "5114 directed graphs" -, year = 1995 -, note = "Manuscript. \url{ftp.research.bell-labs.com/dist/drawdag/}" -, keywords = "graph drawing, experiments" -, update = "96.09 tamassia" +, author = "S. North" +, title = "5114 directed graphs" +, year = 1995 +, note = "Manuscript. \url{ftp.research.bell-labs.com/dist/drawdag/}" +, keywords = "graph drawing, experiments" +, update = "96.09 tamassia" } @inproceedings{n-ild-96 -, author = "S. North" -, title = "Incremental Layout in {DynaDAG}" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "409--418" -, update = "98.11 bibrelex, 98.07 vismara" +, author = "S. North" +, title = "Incremental Layout in {DynaDAG}" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "409--418" +, update = "98.11 bibrelex, 98.07 vismara" } @techreport{nk-agv-95 -, author = "S. North and E. Koutsofios" -, title = "Applications of Graph Visualization" -, institution = "AT\&T Bell Laboratories, Murray Hill, NJ." -, year = 1995 -, note = "Available from \url{http://www.research.bell-labs.com/dist/drawdag}" -, keywords = "graph drawing" -, update = "96.09 tamassia, 96.04 garg" +, author = "S. North and E. Koutsofios" +, title = "Applications of Graph Visualization" +, institution = "AT\&T Bell Laboratories, Murray Hill, NJ." +, year = 1995 +, note = "Available from \url{http://www.research.bell-labs.com/dist/drawdag}" +, keywords = "graph drawing" +, update = "96.09 tamassia, 96.04 garg" } @proceedings{n-gd-97 -, title = "Graph Drawing (Proc. GD '96)" -, editor = "S. C. North" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, update = "99.11 bibrelex, 98.11 bibrelex, 98.07 vismara+tamassia" +, title = "Graph Drawing (Proc. GD '96)" +, editor = "S. C. North" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, update = "99.11 bibrelex, 98.11 bibrelex, 98.07 vismara+tamassia" } @inproceedings{npt-usafd-90 -, author = "C. H. Norton and S. A. Plotkin and {\'E}. Tardos" -, title = "Using separation algorithms in fixed dimension" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "377--387" -, precedes = "npt-usafd-92" -, update = "93.09 rote" +, author = "C. H. Norton and S. A. Plotkin and {\'E}. Tardos" +, title = "Using separation algorithms in fixed dimension" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "377--387" +, precedes = "npt-usafd-92" +, update = "93.09 rote" } @article{npt-usafd-92 -, author = "C. H. Norton and S. A. Plotkin and {\'E}. Tardos" -, title = "Using separation algorithms in fixed dimensions" -, journal = "J. Algorithms" -, volume = 13 -, year = 1992 -, pages = "79--98" -, succeeds = "npt-usafd-90" -, update = "93.09 rote" +, author = "C. H. Norton and S. A. Plotkin and {\'E}. Tardos" +, title = "Using separation algorithms in fixed dimensions" +, journal = "J. Algorithms" +, volume = 13 +, year = 1992 +, pages = "79--98" +, succeeds = "npt-usafd-90" +, update = "93.09 rote" } @article{npl-wplm-92 -, author = "R. Norwood and G. Poole and M. Laidacker" -, title = "The worm problem of {Leo} {Moser}" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "153--162" +, author = "R. Norwood and G. Poole and M. Laidacker" +, title = "The worm problem of {Leo} {Moser}" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "153--162" } @article{n-edlde-48 -, author = "M. Nosarzewska" -, title = "Evaluation de la diff{\'e}rence entre l'aire d'une r{\'e}gion plane convexe et le nombre des points aux coordonn{\'e}es enti{\`e}res couverts par elle" -, journal = "Colloq. Math." -, volume = 1 -, year = 1948 -, update = "97.11 bibrelex" +, author = "M. Nosarzewska" +, title = "Evaluation de la diff{\'e}rence entre l'aire d'une r{\'e}gion plane convexe et le nombre des points aux coordonn{\'e}es enti{\`e}res couverts par elle" +, journal = "Colloq. Math." +, volume = 1 +, year = 1948 +, update = "97.11 bibrelex" } @inproceedings{nk-sdprl-89 -, author = "L. V. Nosov and N. M. Korneenko" -, title = "Special dissection of polygonal regions in {LSI} mask pattern design" -, booktitle = "GEOBILD'89, Proc. 4th Workshop on Geometrical Problems of Image Processing, Georgenthal, March 13--17, 1989" -, series = "Math. Res." -, volume = 51 -, publisher = "Akademie-Verlag" -, address = "Berlin, GDR" -, year = 1989 -, pages = "53--57" -, keywords = "isothetic domain, dissection, decomposition, {VLSI} layout design" -, update = "95.01 korneenko" +, author = "L. V. Nosov and N. M. Korneenko" +, title = "Special dissection of polygonal regions in {LSI} mask pattern design" +, booktitle = "GEOBILD'89, Proc. 4th Workshop on Geometrical Problems of Image Processing, Georgenthal, March 13--17, 1989" +, series = "Math. Res." +, volume = 51 +, publisher = "Akademie-Verlag" +, address = "Berlin, GDR" +, year = 1989 +, pages = "53--57" +, keywords = "isothetic domain, dissection, decomposition, {VLSI} layout design" +, update = "95.01 korneenko" } @article{np-ospp-89 -, author = "R. Nowakowski and A. Parker" -, title = "Ordered sets, pagenumbers and planarity" -, journal = "Order" -, volume = 6 -, year = 1989 -, pages = "209--218" -, update = "98.07 bibrelex" +, author = "R. Nowakowski and A. Parker" +, title = "Ordered sets, pagenumbers and planarity" +, journal = "Order" +, volume = 6 +, year = 1989 +, pages = "209--218" +, update = "98.07 bibrelex" } @inproceedings{nr-bsotc-91 -, author = "R. Nowakowski and I. Rival" -, title = "Bending and stretching orders into three channels" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "15--18" -, cites = "bk-btg-79, cm-ecgt-78, d-dtpos-50, f-slrpg-48, f-ioig-85, k-fpos-87, m-ctcos-89, np-ospp-89, nru-lcpop-88, t-eggmn-87, w-bzv-36, ZZZ" -, update = "98.07 bibrelex" +, author = "R. Nowakowski and I. Rival" +, title = "Bending and stretching orders into three channels" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "15--18" +, cites = "bk-btg-79, cm-ecgt-78, d-dtpos-50, f-slrpg-48, f-ioig-85, k-fpos-87, m-ctcos-89, np-ospp-89, nru-lcpop-88, t-eggmn-87, w-bzv-36, ZZZ" +, update = "98.07 bibrelex" } @unpublished{nru-lcpop-88 -, author = "R. Nowakowski and I. Rival and J. Urrutia" -, title = "Lattices contained in planar orders are planar" -, note = "University of Ottawa TR-88-12, to appear in Algebra Universalis" -, update = "98.07 bibrelex" +, author = "R. Nowakowski and I. Rival and J. Urrutia" +, title = "Lattices contained in planar orders are planar" +, note = "University of Ottawa TR-88-12, to appear in Algebra Universalis" +, update = "98.07 bibrelex" } @article{nru-roptp-90 -, author = "R. J. Nowakowski and I. Rival and J. Urrutia" -, title = "Representing orders on the plane by translating points and lines" -, journal = "Discrete Appl. Math." -, volume = "??" -, year = 1990 -, pages = "147--156" -, update = "98.07 bibrelex" +, author = "R. J. Nowakowski and I. Rival and J. Urrutia" +, title = "Representing orders on the plane by translating points and lines" +, journal = "Discrete Appl. Math." +, volume = "??" +, year = 1990 +, pages = "147--156" +, update = "98.07 bibrelex" } @article{n-gwg-86 -, author = "Simeon Ntafos" -, title = "On gallery watchmen in grids" -, journal = "Inform. Process. Lett." -, volume = 23 -, number = 2 -, month = aug -, year = 1986 -, pages = "99--102" -, update = "98.03 mitchell" +, author = "Simeon Ntafos" +, title = "On gallery watchmen in grids" +, journal = "Inform. Process. Lett." +, volume = 23 +, number = 2 +, month = aug +, year = 1986 +, pages = "99--102" +, update = "98.03 mitchell" } @techreport{n-rrp-88 -, author = "S. Ntafos" -, title = "The Robber Route Problem" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Texas" -, address = "Dallas, TX" -, year = 1988 -, keywords = "visibility" -, precedes = "n-rrp-90" -, update = "98.03 mitchell" +, author = "S. Ntafos" +, title = "The Robber Route Problem" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Texas" +, address = "Dallas, TX" +, year = 1988 +, keywords = "visibility" +, precedes = "n-rrp-90" +, update = "98.03 mitchell" } @article{n-rrp-90 -, author = "Simeon Ntafos" -, title = "The Robber Route Problem" -, journal = "Inform. Process. Lett." -, volume = 34 -, number = 2 -, month = mar -, year = 1990 -, pages = "59--63" -, keywords = "watchman route, visibility, concealment, TSP" -, succeeds = "n-rrp-88" -, update = "98.03 mitchell" +, author = "Simeon Ntafos" +, title = "The Robber Route Problem" +, journal = "Inform. Process. Lett." +, volume = 34 +, number = 2 +, month = mar +, year = 1990 +, pages = "59--63" +, keywords = "watchman route, visibility, concealment, TSP" +, succeeds = "n-rrp-88" +, update = "98.03 mitchell" } @inproceedings{n-wrlv-90 -, author = "S. Ntafos" -, title = "Watchman routes under limited visibility" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "89--92" -, precedes = "n-wrlv-92" -, cites = "cn-owr-88, cn-wrsp-91, cn-ozr-87, hch-rfomr-86, ips-hpgg-82, j-nccog-82, o-agta-87, p-etspi-77, r-pc-64, ZZZ" -, update = "98.07 bibrelex" +, author = "S. Ntafos" +, title = "Watchman routes under limited visibility" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "89--92" +, precedes = "n-wrlv-92" +, cites = "cn-owr-88, cn-wrsp-91, cn-ozr-87, hch-rfomr-86, ips-hpgg-82, j-nccog-82, o-agta-87, p-etspi-77, r-pc-64, ZZZ" +, update = "98.07 bibrelex" } @article{n-wrlv-92 -, author = "S. Ntafos" -, title = "Watchman routes under limited visibility" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 3 -, year = 1992 -, pages = "149--170" -, succeeds = "n-wrlv-90" +, author = "S. Ntafos" +, title = "Watchman routes under limited visibility" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 3 +, year = 1992 +, pages = "149--170" +, succeeds = "n-wrlv-90" } @techreport{ng-ewr-89 -, author = "S. Ntafos and L. Gewali" -, title = "External Watchman Routes" -, type = "Technical {Report}" -, institution = "Computer Science, University of Texas at Dallas" -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "S. Ntafos and L. Gewali" +, title = "External Watchman Routes" +, type = "Technical {Report}" +, institution = "Computer Science, University of Texas at Dallas" +, year = 1989 +, update = "93.09 milone+mitchell" } @article{ng-ewr-94 -, author = "S. Ntafos and L. Gewali" -, title = "External watchman routes" -, journal = "Visual Comput." -, volume = 10 -, year = 1994 -, pages = "474--483" -, update = "95.01 smid" +, author = "S. Ntafos and L. Gewali" +, title = "External watchman routes" +, journal = "Visual Comput." +, volume = 10 +, year = 1994 +, pages = "474--483" +, update = "95.01 smid" } @unpublished{nt-opg -, author = "S. Ntafos and M. Tsoukalas" -, title = "Optimum placement of guards" -, note = "to appear in Information Science" -, succeeds = "nt-opg-91" -, update = "98.11 bibrelex" +, author = "S. Ntafos and M. Tsoukalas" +, title = "Optimum placement of guards" +, note = "to appear in Information Science" +, succeeds = "nt-opg-91" +, update = "98.11 bibrelex" } @inproceedings{nt-opg-91 -, author = "S. Ntafos and M. Tsoukalas" -, title = "Optimum placement of guards" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "122--125" -, precedes = "nt-opg" -, cites = "a-agpiv-84, c-tsplt-90i, ea-lacvp-81, ll-ccagp-86, gj-cigtn-79, o-agta-87, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "S. Ntafos and M. Tsoukalas" +, title = "Optimum placement of guards" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "122--125" +, precedes = "nt-opg" +, cites = "a-agpiv-84, c-tsplt-90i, ea-lacvp-81, ll-ccagp-86, gj-cigtn-79, o-agta-87, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @phdthesis{n-rtsgp-98 -, author = "St{\'e}phane Nullans" -, title = "Reconstruction tridimensionnelle de structures g{\'e}ologiques {\`a} partir de donn{\'e}es h{\'e}t{\'e}rog{\`e}nes" -, type = "Th\`{e}se de doctorat en sciences" -, school = "Universit\'e de Nice-Sophia Antipolis" -, address = "France" -, year = 1998 -, note = "TU-0606" -, keywords = "doctoral thesis" -, update = "00.03 devillers" +, author = "St{\'e}phane Nullans" +, title = "Reconstruction tridimensionnelle de structures g{\'e}ologiques {\`a} partir de donn{\'e}es h{\'e}t{\'e}rog{\`e}nes" +, type = "Th\`{e}se de doctorat en sciences" +, school = "Universit\'e de Nice-Sophia Antipolis" +, address = "France" +, year = 1998 +, note = "TU-0606" +, keywords = "doctoral thesis" +, update = "00.03 devillers" } @inproceedings{nt-scs-90 -, author = "K. Numata and T. Tokuyama" -, title = "Splitting a configuration in a simplex" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "429--438" +, author = "K. Numata and T. Tokuyama" +, title = "Splitting a configuration in a simplex" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "429--438" } @inproceedings{nt-cledv-90 -, author = "J. Nummenmaa and J. Tuomi" -, title = "Constructing Layouts for {ER}-Diagrams from Visibility Representations" -, booktitle = "Proc. 9th Internat. Conf. on Entity-Relationship Approach" -, year = 1990 -, pages = "303--317" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Nummenmaa and J. Tuomi" +, title = "Constructing Layouts for {ER}-Diagrams from Visibility Representations" +, booktitle = "Proc. 9th Internat. Conf. on Entity-Relationship Approach" +, year = 1990 +, pages = "303--317" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{n-flsah-85 -, author = "O. Nurmi" -, title = "A fast line-sweep algorithm for hidden line elimination" -, journal = "BIT" -, volume = 25 -, year = 1985 -, pages = "466--472" +, author = "O. Nurmi" +, title = "A fast line-sweep algorithm for hidden line elimination" +, journal = "BIT" +, volume = 25 +, year = 1985 +, pages = "466--472" } @techreport{n-tsott-84 -, author = "O. Nurmi" -, title = "On translating a set of objects in two- and three-dimensional spaces" -, type = "Report" -, number = "Bericht 141" -, institution = "Inst. Angew., Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1984 -, precedes = "n-tsott-86" +, author = "O. Nurmi" +, title = "On translating a set of objects in two- and three-dimensional spaces" +, type = "Report" +, number = "Bericht 141" +, institution = "Inst. Angew., Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1984 +, precedes = "n-tsott-86" } @article{n-tsott-86 -, author = "O. Nurmi" -, title = "On translating a set of objects in two- and three-dimensional spaces" -, journal = "Comput. Vision Graph. Image Process." -, volume = 36 -, year = 1986 -, pages = "42--52" -, succeeds = "n-tsott-84" +, author = "O. Nurmi" +, title = "On translating a set of objects in two- and three-dimensional spaces" +, journal = "Comput. Vision Graph. Image Process." +, volume = 36 +, year = 1986 +, pages = "42--52" +, succeeds = "n-tsott-84" } @inproceedings{ns-spots-89 -, author = "O. Nurmi and J.-R. Sack" -, title = "Separating a polyhedron by one translation from a set of obstacles" -, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '88" -, series = "Lecture Notes Comput. Sci." -, volume = 344 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "202--212" -, keywords = "separation" -, update = "98.07 smid" +, author = "O. Nurmi and J.-R. Sack" +, title = "Separating a polyhedron by one translation from a set of obstacles" +, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '88" +, series = "Lecture Notes Comput. Sci." +, volume = 344 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "202--212" +, keywords = "separation" +, update = "98.07 smid" } @book{n-asf-89 -, author = "G. Nurnberger" -, title = "Approximation by sine functions" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1989 -, update = "98.07 bibrelex" +, author = "G. Nurnberger" +, title = "Approximation by sine functions" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1989 +, update = "98.07 bibrelex" } @mastersthesis{n-dsttd-88 -, author = "D. Nussbaum" -, title = "Directional separability in two and three dimensional space" -, type = "M.{Sc}. Thesis" -, school = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1988 -, keywords = "master thesis, separation" +, author = "D. Nussbaum" +, title = "Directional separability in two and three dimensional space" +, type = "M.{Sc}. Thesis" +, school = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1988 +, keywords = "master thesis, separation" } @inproceedings{n-rppp-97 -, author = "D. Nussbaum" -, title = "Rectilinear $p$-piercing problems" -, booktitle = "Proceedings of the Annual International Symposium on Symbolic and Algebraic Computation" -, nickname = "ISSAC '97" -, year = 1997 -, pages = "316--323" -, update = "98.11 smid, 98.07 agarwal" +, author = "D. Nussbaum" +, title = "Rectilinear $p$-piercing problems" +, booktitle = "Proceedings of the Annual International Symposium on Symbolic and Algebraic Computation" +, nickname = "ISSAC '97" +, year = 1997 +, pages = "316--323" +, update = "98.11 smid, 98.07 agarwal" } @inproceedings{ns-dtdcp-89 -, author = "D. Nussbaum and J.-R. Sack" -, title = "Disassembling two-dimensional composite parts via translations" -, booktitle = "Proc. Optimal Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 401 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "153--167" -, precedes = "ns-dtdcp-93" -, update = "96.09 devillers" +, author = "D. Nussbaum and J.-R. Sack" +, title = "Disassembling two-dimensional composite parts via translations" +, booktitle = "Proc. Optimal Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 401 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "153--167" +, precedes = "ns-dtdcp-93" +, update = "96.09 devillers" } @article{ns-dtdcp-93 -, author = "D. Nussbaum and J.-R. Sack" -, title = "Disassembling two-dimensional composite parts via translations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "71--84" -, keywords = "computational geometry, translation motion, upper-bounds, lower-bounds" -, succeeds = "ns-dtdcp-89" -, update = "96.09 devillers" +, author = "D. Nussbaum and J.-R. Sack" +, title = "Disassembling two-dimensional composite parts via translations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "71--84" +, keywords = "computational geometry, translation motion, upper-bounds, lower-bounds" +, succeeds = "ns-dtdcp-89" +, update = "96.09 devillers" } @inproceedings{ns-tsp-89 -, author = "D. Nussbaum and J.-R. Sack" -, title = "Translation separability of polyhedra" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 34 +, author = "D. Nussbaum and J.-R. Sack" +, title = "Translation separability of polyhedra" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 34 } @techreport{nw-edmbm-90 -, author = "R. Nussinov and H. J. Wolfson" -, title = "Efficient Detection of Motifs in biological Macromolecules by computer Vision Techniques" -, number = "166/90" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "R. Nussinov and H. J. Wolfson" +, title = "Efficient Detection of Motifs in biological Macromolecules by computer Vision Techniques" +, number = "166/90" +, year = 1990 +, update = "93.09 milone+mitchell" } @book{o-iqgmm-92 -, author = "L. O'Brian" -, title = "Introducing Quantitative Geography: measurement, methods and generalised linear models" -, publisher = "Routledge" -, address = "London" -, year = 1992 -, update = "96.09 kreveld" +, author = "L. O'Brian" +, title = "Introducing Quantitative Geography: measurement, methods and generalised linear models" +, publisher = "Routledge" +, address = "London" +, year = 1992 +, update = "96.09 kreveld" } @article{o-adnnp-75 -, author = "J. F. O'Callaghan" -, title = "An alternative definition for near-neighbourhood of a point" -, journal = "IEEE Trans. Comput." -, volume = "C-24" -, year = 1975 -, pages = "1121--1125" +, author = "J. F. O'Callaghan" +, title = "An alternative definition for near-neighbourhood of a point" +, journal = "IEEE Trans. Comput." +, volume = "C-24" +, year = 1975 +, pages = "1121--1125" } @article{o-cpbdp-74 -, author = "J. F. O'Callaghan" -, title = "Computing the perceptual boundaries of dot patterns" -, journal = "Comput. Graph. Image Process." -, volume = 3 -, year = 1974 -, pages = "141--162" +, author = "J. F. O'Callaghan" +, title = "Computing the perceptual boundaries of dot patterns" +, journal = "Comput. Graph. Image Process." +, volume = 3 +, year = 1974 +, pages = "141--162" } @article{o-hphdp-74 -, author = "J. F. O'Callaghan" -, title = "Human perception of homogeneous dot patterns" -, journal = "Perception" -, volume = 3 -, year = 1974 -, pages = "33--45" +, author = "J. F. O'Callaghan" +, title = "Human perception of homogeneous dot patterns" +, journal = "Perception" +, volume = 3 +, year = 1974 +, pages = "33--45" } @article{ohg-riitf-85 -, author = "E. Ochoa and L. Hesselink and J. Goodman" -, title = "Real-time intensity inversion using two-wave and four-wave mixing in photorefractive {$Bi_{12}SiO_{20}$}" -, journal = "Applied Optics" -, volume = 24 -, number = 12 -, year = 1985 -, pages = "1826--1832" -, update = "98.11 bibrelex" +, author = "E. Ochoa and L. Hesselink and J. Goodman" +, title = "Real-time intensity inversion using two-wave and four-wave mixing in photorefractive {$Bi_{12}SiO_{20}$}" +, journal = "Applied Optics" +, volume = 24 +, number = 12 +, year = 1985 +, pages = "1826--1832" +, update = "98.11 bibrelex" } @incollection{oss-picpu-87 -, author = "S. Ocken and J. T. Schwartz and Micha Sharir" -, title = "Precise implementation of {CAD} primitives using rational parameterization of standard surfaces" -, editor = "J. Hopcroft and J. Schwartz and Micha Sharir" -, booktitle = "Planning, Geometry, and Complexity of Robot Motion" -, publisher = "Ablex Publishing" -, address = "Norwood, NJ" -, year = 1987 -, pages = "245--266" -, keywords = "CAD, rational parameterization, quadric surfaces, intersection" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "S. Ocken and J. T. Schwartz and Micha Sharir" +, title = "Precise implementation of {CAD} primitives using rational parameterization of standard surfaces" +, editor = "J. Hopcroft and J. Schwartz and Micha Sharir" +, booktitle = "Planning, Geometry, and Complexity of Robot Motion" +, publisher = "Ablex Publishing" +, address = "Norwood, NJ" +, year = 1987 +, pages = "245--266" +, keywords = "CAD, rational parameterization, quadric surfaces, intersection" +, update = "98.07 bibrelex, 98.03 mitchell" } @techreport{og-suvog-86 -, author = "M. A. O'Connor and G. Gentili" -, title = "Simple unit vectors orthogonal to a given vector" -, type = "Report" -, number = "RC 12263" -, institution = "Manufacturing Res. Dept., IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1986 +, author = "M. A. O'Connor and G. Gentili" +, title = "Simple unit vectors orthogonal to a given vector" +, type = "Report" +, number = "RC 12263" +, institution = "Manufacturing Res. Dept., IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1986 } @techreport{or-sdimp-89t -, author = "M. A. O'Connor and J. R. Rossignac" -, title = "SCG: {A} dimension independent model for pointsets with internal structures and incomplete boundaries" -, type = "Technical {Report}" -, number = "RC14340" -, institution = "IBM" -, year = 1989 -, update = "98.07 bibrelex" +, author = "M. A. O'Connor and J. R. Rossignac" +, title = "SCG: {A} dimension independent model for pointsets with internal structures and incomplete boundaries" +, type = "Technical {Report}" +, number = "RC14340" +, institution = "IBM" +, year = 1989 +, update = "98.07 bibrelex" } @book{or-imtfe-76 -, author = "J. T. Oden and J. N. Reddy" -, title = "An Introduction to the Mathematical Theory of Finite Elements" -, publisher = "John Wiley \& Sons" -, year = 1976 -, update = "98.03 bibrelex" +, author = "J. T. Oden and J. N. Reddy" +, title = "An Introduction to the Mathematical Theory of Finite Elements" +, publisher = "John Wiley \& Sons" +, year = 1976 +, update = "98.03 bibrelex" } -% ? title = "... $3.6n-3.4$ edges ..." +% ? title = "... $3.6n-3.4$ edges ..." @techreport{op-eggnv-91 -, author = "P. O'Donnel and M. Perles" -, title = "Every geometric graph with $n$ vertices and $3.6n + 3.4$ edges contains $3$ pairwise disjoint edges" -, type = "Manuscript" -, institution = "Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1991 -, update = "98.03 bibrelex" +, author = "P. O'Donnel and M. Perles" +, title = "Every geometric graph with $n$ vertices and $3.6n + 3.4$ edges contains $3$ pairwise disjoint edges" +, type = "Manuscript" +, institution = "Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1991 +, update = "98.03 bibrelex" } @article{o-tlbcp-88 -, author = "C. {\'O}'D{\'u}nlaing" -, title = "A tight lower bound for the complexity of path-planning for a disc" -, journal = "Inform. Process. Lett." -, volume = 28 -, year = 1988 -, pages = "165--170" +, author = "C. {\'O}'D{\'u}nlaing" +, title = "A tight lower bound for the complexity of path-planning for a disc" +, journal = "Inform. Process. Lett." +, volume = 28 +, year = 1988 +, pages = "165--170" } @techreport{o-mpic-86 -, author = "C. {\'O}'D{\'u}nlaing" -, title = "Motion Planning with Inertial Constraints" -, number = "TR 230" -, institution = "Robotics Lab., New York Univ." -, address = "New York, NY" -, year = 1986 -, update = "97.11 bibrelex" +, author = "C. {\'O}'D{\'u}nlaing" +, title = "Motion Planning with Inertial Constraints" +, number = "TR 230" +, institution = "Robotics Lab., New York Univ." +, address = "New York, NY" +, year = 1986 +, update = "97.11 bibrelex" } @article{o-mpic-87 -, author = "C. {\'O}'D{\'u}nlaing" -, title = "Motion-planning with inertial constraints" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "431--475" +, author = "C. {\'O}'D{\'u}nlaing" +, title = "Motion-planning with inertial constraints" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "431--475" } @article{osy-gvdl-86 -, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" -, title = "Generalized {Voronoi} diagrams for a ladder: {I}. {Topological} analysis" -, journal = "Commun. Pure Appl. Math." -, volume = 39 -, year = 1986 -, pages = "423--483" -, keywords = "Voronoi diagrams, motion planning" -, update = "98.03 mitchell, 96.01 aronov" +, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" +, title = "Generalized {Voronoi} diagrams for a ladder: {I}. {Topological} analysis" +, journal = "Commun. Pure Appl. Math." +, volume = 39 +, year = 1986 +, pages = "423--483" +, keywords = "Voronoi diagrams, motion planning" +, update = "98.03 mitchell, 96.01 aronov" } @techreport{osy-gvdl1-84 -, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" -, title = "Generalized {Voronoi} diagrams for a ladder: {I}. {Topological} considerations" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Courant Inst." -, address = "New York, NY" -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" +, title = "Generalized {Voronoi} diagrams for a ladder: {I}. {Topological} considerations" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Courant Inst." +, address = "New York, NY" +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{osy-gvdl2-84 -, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" -, title = "Generalized {Voronoi} diagrams for a ladder: {II}. {Efficient} construction of the diagram" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Courant Inst." -, address = "New York, NY" -, month = oct -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" +, title = "Generalized {Voronoi} diagrams for a ladder: {II}. {Efficient} construction of the diagram" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Courant Inst." +, address = "New York, NY" +, month = oct +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{osy-gvdl-87 -, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" -, title = "Generalized {Voronoi} diagrams for a ladder: {II}. {Efficient} construction of the diagram" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "27--59" -, keywords = "Voronoi diagrams, Davenport-Schinzel sequences, motion planning" -, update = "98.03 mitchell, 96.01 aronov" +, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" +, title = "Generalized {Voronoi} diagrams for a ladder: {II}. {Efficient} construction of the diagram" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "27--59" +, keywords = "Voronoi diagrams, Davenport-Schinzel sequences, motion planning" +, update = "98.03 mitchell, 96.01 aronov" } @inproceedings{osy-rnamp-83 -, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" -, title = "Retraction: {A} new approach to motion-planning" -, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." -, year = 1983 -, pages = "207--220" -, comments = "Split into three journal papers: \cite{oy-rmpmd-85}, - \cite{osy-gvdl-87}, and \cite{osy-gvdl-86}" -, precedes = "oy-rmpmd-85" -, update = "98.03 mitchell, 96.05 agarwal" +, author = "C. {\'O}'D{\'u}nlaing and Micha Sharir and C. K. Yap" +, title = "Retraction: {A} new approach to motion-planning" +, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." +, year = 1983 +, pages = "207--220" +, comments = "Split into three journal papers: \cite{oy-rmpmd-85}, + \cite{osy-gvdl-87}, and \cite{osy-gvdl-86}" +, precedes = "oy-rmpmd-85" +, update = "98.03 mitchell, 96.05 agarwal" } @inproceedings{ow-mta-92 -, author = "Colm {\'O}'D{\'u}nlaing and Colum Watt" -, title = "Miscellaneous Topological Algorithms" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "65--66" -, update = "00.03 bibrelex" +, author = "Colm {\'O}'D{\'u}nlaing and Colum Watt" +, title = "Miscellaneous Topological Algorithms" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "65--66" +, update = "00.03 bibrelex" } @article{oww-h2ceg-00 -, author = "C. {\'O}'D{\'u}nlaing and C. Watt and D. Wilkins" -, title = "Homeomorphism of 2-complexes is equivalent to grap isomorphism" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "453--476" -, update = "01.04 smid" +, author = "C. {\'O}'D{\'u}nlaing and C. Watt and D. Wilkins" +, title = "Homeomorphism of 2-complexes is equivalent to grap isomorphism" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "453--476" +, update = "01.04 smid" } @article{oy-rmpmd-85 -, author = "C. {\'O}'D{\'u}nlaing and C. K. Yap" -, title = "A ``retraction'' method for planning the motion of a disk" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "104--111" -, succeeds = "osy-rnamp-83" +, author = "C. {\'O}'D{\'u}nlaing and C. K. Yap" +, title = "A ``retraction'' method for planning the motion of a disk" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "104--111" +, succeeds = "osy-rnamp-83" } @techreport{oy-vmmp1-83 -, author = "C. {\'O}'D{\'u}nlaing and C. K. Yap" -, title = "The {Voronoi} method for motion-planning: {I}. the case of a disc" -, type = "Report" -, number = 53 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1983 +, author = "C. {\'O}'D{\'u}nlaing and C. K. Yap" +, title = "The {Voronoi} method for motion-planning: {I}. the case of a disc" +, type = "Report" +, number = 53 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1983 } @book{o-eig-69 -, author = "C. Stanley Ogilvy" -, title = "Excursions in Geometry" -, publisher = "Dover Publications" -, year = 1969 -, location = "New York" -, update = "02.03 orourke" +, author = "C. Stanley Ogilvy" +, title = "Excursions in Geometry" +, publisher = "Dover Publications" +, year = 1969 +, location = "New York" +, update = "02.03 orourke" } @article{os-wftcb-85 -, author = "L. O'Gorman and A. C. Sanderson" -, title = "The wedge filter technique for convex boundary estimation" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-7" -, year = 1985 -, pages = "326--332" +, author = "L. O'Gorman and A. C. Sanderson" +, title = "The wedge filter technique for convex boundary estimation" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-7" +, year = 1985 +, pages = "326--332" } @incollection{o-flaed-94 -, author = "Yoshikazu Ohashi" -, title = "Fast Linear Approximations of {Euclidean} Distance in Higher Dimensions" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "120--124" -, keywords = "integer arithmetic, square root" -, update = "94.09 heckbert" -, annote = "Provides optimized formulas for approximating Euclidean +, author = "Yoshikazu Ohashi" +, title = "Fast Linear Approximations of {Euclidean} Distance in Higher Dimensions" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "120--124" +, keywords = "integer arithmetic, square root" +, update = "94.09 heckbert" +, annote = "Provides optimized formulas for approximating Euclidean distance in two or more dimensions without square roots. Contains C code." } @techreport{o-otrta-85 -, author = "M. Ohta" -, title = "An optimal-time ray tracing algorithm based on direction index" -, type = "Report" -, number = "??" -, institution = "Dept. Inform. Sci., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1985 +, author = "M. Ohta" +, title = "An optimal-time ray tracing algorithm based on direction index" +, type = "Report" +, number = "??" +, institution = "Dept. Inform. Sci., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1985 } @inproceedings{o-mdrp-82 -, author = "T. Ohtsuki" -, title = "Minimum Dissection of Rectilinear Polygons" -, booktitle = "Proc. IEEE Symp. on Circuits and Systems" -, year = 1982 -, pages = "1210--1213" -, update = "98.07 bibrelex" +, author = "T. Ohtsuki" +, title = "Minimum Dissection of Rectilinear Polygons" +, booktitle = "Proc. IEEE Symp. on Circuits and Systems" +, year = 1982 +, pages = "1210--1213" +, update = "98.07 bibrelex" } @article{o-mdrr-83 -, author = "T. Ohtsuki" -, title = "Minimum dissection of rectilinear regions" -, journal = "Trans. Inform. Processing Soc. Japan" -, volume = "??" -, year = 1983 -, pages = "1210--1213" -, update = "98.03 bibrelex" +, author = "T. Ohtsuki" +, title = "Minimum dissection of rectilinear regions" +, journal = "Trans. Inform. Processing Soc. Japan" +, volume = "??" +, year = 1983 +, pages = "1210--1213" +, update = "98.03 bibrelex" } @techreport{osk-cgawr-?? -, author = "T. Ohtsuki and M. Sato and I. Kojima" -, title = "Computational geometry approach to wire routing design" -, type = "Manuscript" -, institution = "School Sci. Engrg., Waseda Univ." -, address = "Tokyo, Japan" -, year = "??" +, author = "T. Ohtsuki and M. Sato and I. Kojima" +, title = "Computational geometry approach to wire routing design" +, type = "Manuscript" +, institution = "School Sci. Engrg., Waseda Univ." +, address = "Tokyo, Japan" +, year = "??" } @article{ostt-mprr-83 -, author = "T. Ohtsuki and M. Sato and M. Tachibana and S. Torii" -, title = "Minimum partitioning of rectilinear regions" -, journal = "Trans. Inform. Processing Soc. Japan" -, volume = "??" -, year = 1983 -, pages = "??" +, author = "T. Ohtsuki and M. Sato and M. Tachibana and S. Torii" +, title = "Minimum partitioning of rectilinear regions" +, journal = "Trans. Inform. Processing Soc. Japan" +, volume = "??" +, year = 1983 +, pages = "??" } @inproceedings{o-rfvaa-83 -, author = "T. Ohya" -, title = "Robustness of the fast {Voronoi} algorithm against nonuniform distribution of points" -, booktitle = "Proc. Spring Conf. Oper. Res. Soc. Japan" -, volume = "C-1" -, year = 1983 -, pages = "90--91" +, author = "T. Ohya" +, title = "Robustness of the fast {Voronoi} algorithm against nonuniform distribution of points" +, booktitle = "Proc. Spring Conf. Oper. Res. Soc. Japan" +, volume = "C-1" +, year = 1983 +, pages = "90--91" } @article{oim-fvdaq-84 -, author = "T. Ohya and M. Iri and K. Murota" -, title = "A fast {Voronoi}-diagram algorithm with quaternary tree bucketing" -, journal = "Inform. Process. Lett." -, volume = 18 -, year = 1984 -, pages = "227--231" +, author = "T. Ohya and M. Iri and K. Murota" +, title = "A fast {Voronoi}-diagram algorithm with quaternary tree bucketing" +, journal = "Inform. Process. Lett." +, volume = 18 +, year = 1984 +, pages = "227--231" } @inproceedings{oim-iacvd-82 -, author = "T. Ohya and M. Iri and K. Murota" -, title = "An improved algorithm for constructing the {Voronoi} diagram" -, booktitle = "Proc. Fall Conf. Oper. Res. Soc. Japan" -, volume = "E-8" -, year = 1982 -, pages = "152--153" +, author = "T. Ohya and M. Iri and K. Murota" +, title = "An improved algorithm for constructing the {Voronoi} diagram" +, booktitle = "Proc. Fall Conf. Oper. Res. Soc. Japan" +, volume = "E-8" +, year = 1982 +, pages = "152--153" } @article{oim-iimvd-84 -, author = "T. Ohya and M. Iri and K. Murota" -, title = "Improvements of the Incremental Method for the {Voronoi} Diagram with Computational Comparison of Various Algorithms" -, journal = "J. Oper. Res. Soc. Japan" -, volume = 27 -, number = 4 -, year = 1984 -, pages = "306--336" -, update = "93.09 held" +, author = "T. Ohya and M. Iri and K. Murota" +, title = "Improvements of the Incremental Method for the {Voronoi} Diagram with Computational Comparison of Various Algorithms" +, journal = "J. Oper. Res. Soc. Japan" +, volume = 27 +, number = 4 +, year = 1984 +, pages = "306--336" +, update = "93.09 held" } @inproceedings{om-adscv-82 -, author = "T. Ohya and K. Murota" -, title = "Algorithms and data structures for constructing the {Voronoi} diagram" -, booktitle = "Proc. Spring Conf. Oper. Res. Soc. Japan" -, volume = "2C-3" -, year = 1982 -, pages = "185--186" +, author = "T. Ohya and K. Murota" +, title = "Algorithms and data structures for constructing the {Voronoi} diagram" +, booktitle = "Proc. Spring Conf. Oper. Res. Soc. Japan" +, volume = "2C-3" +, year = 1982 +, pages = "185--186" } @unpublished{os-nrdca -, author = "Y. Oishi and K. Sugihara" -, title = "Numerically Robust Divide-and-Conquer Algorithm for Constructing {Voronoi} Diagrams" -, note = "in Japanese, Transactions of the Information Processing Society of Japan, to appear" -, update = "98.07 bibrelex" +, author = "Y. Oishi and K. Sugihara" +, title = "Numerically Robust Divide-and-Conquer Algorithm for Constructing {Voronoi} Diagrams" +, note = "in Japanese, Transactions of the Information Processing Society of Japan, to appear" +, update = "98.07 bibrelex" } @article{os-todqa-95 -, author = "Y. Oishi and K. Sugihara" -, title = "Topology Oriented Divide and Conquer Algorithm for {Voronoi} Diagrams" -, journal = "Graphical Models and Image Processing" -, volume = 57 -, number = 4 -, year = 1995 -, pages = "303--314" -, keywords = "robustness, numerical precision" -, update = "96.01 tamassia" +, author = "Y. Oishi and K. Sugihara" +, title = "Topology Oriented Divide and Conquer Algorithm for {Voronoi} Diagrams" +, journal = "Graphical Models and Image Processing" +, volume = 57 +, number = 4 +, year = 1995 +, pages = "303--314" +, keywords = "robustness, numerical precision" +, update = "96.01 tamassia" } @techreport{on-rerc-84 -, author = "H. Oja and Niinimaa" -, title = "On Robust Estimation of Regression Coefficients" -, type = "Research Report" -, institution = "Department of Applied Mathematics and Statistics, University of Oulu" -, address = "Finland" -, year = 1984 -, update = "98.07 bibrelex" +, author = "H. Oja and Niinimaa" +, title = "On Robust Estimation of Regression Coefficients" +, type = "Research Report" +, institution = "Department of Applied Mathematics and Statistics, University of Oulu" +, address = "Finland" +, year = 1984 +, update = "98.07 bibrelex" } % review in Science (21 May 1993), 1170--1173 @book{obs-stcav-92 -, author = "Atsuyuki Okabe and Barry Boots and Kokichi Sugihara" -, title = "Spatial Tessellations: {C}oncepts and Applications of {Voronoi} Diagrams" -, publisher = "John Wiley \& Sons" -, address = "Chichester, UK" -, year = 1992 -, isbn = "0-471-93430-5" -, keywords = "book, Voronoi diagrams, three-dimensional" -, comments = "532 pages" -, update = "97.07 kuehn, 97.03 schwarzkopf, 96.05 agarwal, 93.09 jones, 93.05 jones" +, author = "Atsuyuki Okabe and Barry Boots and Kokichi Sugihara" +, title = "Spatial Tessellations: {C}oncepts and Applications of {Voronoi} Diagrams" +, publisher = "John Wiley \& Sons" +, address = "Chichester, UK" +, year = 1992 +, isbn = "0-471-93430-5" +, keywords = "book, Voronoi diagrams, three-dimensional" +, comments = "532 pages" +, update = "97.07 kuehn, 97.03 schwarzkopf, 96.05 agarwal, 93.09 jones, 93.05 jones" } @article{os-lopst-97 -, author = "A. Okabe and A. Suzuki" -, title = "Locational Optimization Problems Solved Through {Voronoi} Diagrams" -, journal = "European J. Oper. Res." -, volume = 98 -, number = 3 -, month = may -, year = 1997 -, pages = "445--456" -, update = "97.11 held" +, author = "A. Okabe and A. Suzuki" +, title = "Locational Optimization Problems Solved Through {Voronoi} Diagrams" +, journal = "European J. Oper. Res." +, volume = 98 +, number = 3 +, month = may +, year = 1997 +, pages = "445--456" +, update = "97.11 held" } @article{o-ucp-88 -, author = "Stephan Olariu" -, title = "On the unimodality of convex polygons" -, journal = "Inform. Process. Lett." -, volume = 29 -, number = 6 -, month = dec -, year = 1988 -, pages = "289--292" -, abstract = "An open problem proposed by G. T. Toussaint is to find - the smallest value of n such that a convex polygon with - n vertices is not guaranteed to have any unimodal - vertices. Toussaint conjectured that this value is 6. - The purpose of this article is to prove Toussaint's - conjecture." +, author = "Stephan Olariu" +, title = "On the unimodality of convex polygons" +, journal = "Inform. Process. Lett." +, volume = 29 +, number = 6 +, month = dec +, year = 1988 +, pages = "289--292" +, abstract = "An open problem proposed by G. T. Toussaint is to find + the smallest value of n such that a convex polygon with + n vertices is not guaranteed to have any unimodal + vertices. Toussaint conjectured that this value is 6. + The purpose of this article is to prove Toussaint's + conjecture." } @inproceedings{osz-tosam-92 -, author = "S. Olariu and J. L. Schwing and J. Zhang" -, title = "Time-Optimal Sorting and Applications on {$n$}x{$n$} Enhanced Meshes" -, booktitle = "Proc. 6th Annu. European Comp. Conf." -, month = may -, year = 1982 -, update = "98.11 bibrelex" +, author = "S. Olariu and J. L. Schwing and J. Zhang" +, title = "Time-Optimal Sorting and Applications on {$n$}x{$n$} Enhanced Meshes" +, booktitle = "Proc. 6th Annu. European Comp. Conf." +, month = may +, year = 1982 +, update = "98.11 bibrelex" } @inproceedings{osz-topgc-96 -, author = "S. Olariu and I. Stojmenovic and A. Y. Zomaya" -, title = "Time-optimal proximity graph computations on enhanced meshes" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "119--124" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "S. Olariu and I. Stojmenovic and A. Y. Zomaya" +, title = "Time-optimal proximity graph computations on enhanced meshes" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "119--124" +, update = "97.03 agarwal, 96.09 mitchell" } @article{otz-cph-88 -, author = "S. Olariu and S. Toida and M. Zubaer" -, title = "On a Conjecture by {Plaisted} and {Hong}" -, journal = "J. Algorithms" -, volume = 9 -, number = 4 -, year = 1988 -, pages = "597--598" -, annote = "Shows that~\cite{ph-hta-87} produces - triangulations $\Omega(\log n)$ from MLT." +, author = "S. Olariu and S. Toida and M. Zubaer" +, title = "On a Conjecture by {Plaisted} and {Hong}" +, journal = "J. Algorithms" +, volume = 9 +, number = 4 +, year = 1988 +, pages = "597--598" +, annote = "Shows that~\cite{ph-hta-87} produces + triangulations $\Omega(\log n)$ from MLT." } @inproceedings{o-es12o-00 -, author = "Vladimir Oliker" -, title = "Electromagnetic Scattering, {1D/2D} Obstacle Problem, and Discrete Geodesics" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "66--69" -, update = "00.03 bibrelex" +, author = "Vladimir Oliker" +, title = "Electromagnetic Scattering, {1D/2D} Obstacle Problem, and Discrete Geodesics" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "66--69" +, update = "00.03 bibrelex" } @article{opc-3drcp-96 -, author = "J. M. Oliva and M. Perrin and S. Coquillart" -, title = "3D Reconstruction of Complex Polyhedral Shapes from Contours Using a Simplified Generalized {Voronoi} Diagram" -, journal = "Comput. Graph. Forum" -, volume = 15 -, number = 3 -, year = 1996 -, pages = "397--408" -, update = "97.11 held" +, author = "J. M. Oliva and M. Perrin and S. Coquillart" +, title = "3D Reconstruction of Complex Polyhedral Shapes from Contours Using a Simplified Generalized {Voronoi} Diagram" +, journal = "Comput. Graph. Forum" +, volume = 15 +, number = 3 +, year = 1996 +, pages = "397--408" +, update = "97.11 held" } @inproceedings{onm-mfddt-96 -, author = "Antonio Oliveira and Sara do Nascimento and Sonja A. L. Meerbaum" -, title = "Morphing Fields of Directions Defined on Triangulations to Morph Simple Polygons" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "117--119" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Antonio Oliveira and Sara do Nascimento and Sonja A. L. Meerbaum" +, title = "Morphing Fields of Directions Defined on Triangulations to Morph Simple Polygons" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "117--119" +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{og-cgvnc-85 -, author = "J. H. Oliver and E. D. Goodman" -, title = "Color Graphic Verification of {N}/{C} Milling Programs for Sculptured Surfaces" -, booktitle = "10th Annual Automotive Computer Graphics Conference and Exposition" -, organization = "Engineering Soceitey of Detroit" -, month = dec -, year = 1985 -, update = "98.03 bibrelex" +, author = "J. H. Oliver and E. D. Goodman" +, title = "Color Graphic Verification of {N}/{C} Milling Programs for Sculptured Surfaces" +, booktitle = "10th Annual Automotive Computer Graphics Conference and Exposition" +, organization = "Engineering Soceitey of Detroit" +, month = dec +, year = 1985 +, update = "98.03 bibrelex" } @article{ow-oqei-83 -, author = "M. A. Oliver and N. E. Wiseman" -, title = "Operations on quadtree encoded images" -, journal = "Comput. J." -, volume = 26 -, year = 1983 -, pages = "83--91" +, author = "M. A. Oliver and N. E. Wiseman" +, title = "Operations on quadtree encoded images" +, journal = "Comput. J." +, volume = 26 +, year = 1983 +, pages = "83--91" } @article{ow-oqlri-83 -, author = "M. A. Oliver and N. E. Wiseman" -, title = "Operations on quadtree leaves and related image areas" -, journal = "Comput. J." -, volume = 26 -, year = 1983 -, pages = "375--380" +, author = "M. A. Oliver and N. E. Wiseman" +, title = "Operations on quadtree leaves and related image areas" +, journal = "Comput. J." +, volume = 26 +, year = 1983 +, pages = "375--380" } @article{o-ncbbs-82 -, author = "H. J. Olivie" -, title = "A new class of balanced binary search trees: half-balanced binary search trees" -, journal = "RAIRO Informatique Theoretique" -, volume = 16 -, year = 1982 -, pages = "51--71" -, update = "97.11 bibrelex" +, author = "H. J. Olivie" +, title = "A new class of balanced binary search trees: half-balanced binary search trees" +, journal = "RAIRO Informatique Theoretique" +, volume = 16 +, year = 1982 +, pages = "51--71" +, update = "97.11 bibrelex" } @article{o-tavc-91 -, author = "A. A. Oloufa" -, title = "Triangulation applications in volume calculation" -, journal = "J. Comput. Civil Engrg." -, volume = 5 -, year = 1991 -, pages = "103--119" -, update = "97.11 bibrelex" +, author = "A. A. Oloufa" +, title = "Triangulation applications in volume calculation" +, journal = "J. Comput. Civil Engrg." +, volume = 5 +, year = 1991 +, pages = "103--119" +, update = "97.11 bibrelex" } @article{ot-ppvtd-80 -, author = "E. A. Olszewski and W. J. Thompson" -, title = "A program for perceptive views of three-dimensional surfaces" -, journal = "Comput. Phys. Comm." -, volume = 21 -, year = 1980 -, pages = "185--191" +, author = "E. A. Olszewski and W. J. Thompson" +, title = "A program for perceptive views of three-dimensional surfaces" +, journal = "Comput. Phys. Comm." +, volume = 21 +, year = 1980 +, pages = "185--191" } @techreport{o-fgl-88 -, author = "S. M. Omohundro" -, title = "Fundamentals of geometric learning" -, type = "Report" -, number = "UIUCDCS-R-88-1408" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1988 -, keywords = "geometric learning, robotics, computer vision, intersection" +, author = "S. M. Omohundro" +, title = "Fundamentals of geometric learning" +, type = "Report" +, number = "UIUCDCS-R-88-1408" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1988 +, keywords = "geometric learning, robotics, computer vision, intersection" } @techreport{o-dtfl-90 -, author = "Stephen M. Omohundro" -, title = "The {Delaunay} triangulation and function learning" -, type = "Technical Report" -, number = "TR-90-001" -, institution = "International Computer Science Institute" -, address = "Berkeley, CA" -, year = 1990 -, update = "98.11 bibrelex" +, author = "Stephen M. Omohundro" +, title = "The {Delaunay} triangulation and function learning" +, type = "Technical Report" +, number = "TR-90-001" +, institution = "International Computer Science Institute" +, address = "Berkeley, CA" +, year = 1990 +, update = "98.11 bibrelex" } @article{o-hcnc-71 -, author = "Patrick E. O'Neil" -, title = "Hyperplane Cuts of an $n$-cube" -, journal = "Discrete Math." -, volume = 1 -, year = 1971 -, pages = "193--195" -, update = "94.05 aich" +, author = "Patrick E. O'Neil" +, title = "Hyperplane Cuts of an $n$-cube" +, journal = "Discrete Math." +, volume = 1 +, year = 1971 +, pages = "193--195" +, update = "94.05 aich" } @inproceedings{o-vdddh-96 -, author = "K. Onishi" -, title = "Voronoi diagram in the $d$-dimensional hyperbolic space" -, booktitle = "Proc. Internat. Sympos. on Combinatorics and Applications" -, site = "Tianjin, Japan" -, organization = "Nankai Univ." -, year = 1996 -, pages = "314--324" -, update = "98.07 bibrelex" +, author = "K. Onishi" +, title = "Voronoi diagram in the $d$-dimensional hyperbolic space" +, booktitle = "Proc. Internat. Sympos. on Combinatorics and Applications" +, site = "Tianjin, Japan" +, organization = "Nankai Univ." +, year = 1996 +, pages = "314--324" +, update = "98.07 bibrelex" } @inproceedings{oi-vdsps-97 -, author = "K. Onishi and H. Imai" -, title = "Voronoi Diagram in Statistical Parametric Space by Kull\-back-\-Leibler Divergence" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "463--465" -, cites = "a-dgms-85, cd-vdbcd-85, ct-eit-91, e-acg-87, hk-mic-94, ot-cvduh-96, o-vdddh-96, ps-cgi-85, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "K. Onishi and H. Imai" +, title = "Voronoi Diagram in Statistical Parametric Space by Kull\-back-\-Leibler Divergence" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "463--465" +, cites = "a-dgms-85, cd-vdbcd-85, ct-eit-91, e-acg-87, hk-mic-94, ot-cvduh-96, o-vdddh-96, ps-cgi-85, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{ot-cvduh-96 -, author = "K. Onishi and N. Takayama" -, title = "Construction of {Voronoi} diagrams on the upper half-plane" -, journal = "IEICE Trans. Fundamentals" -, volume = "E79-A" -, number = 4 -, year = 1996 -, pages = "533--539" -, update = "98.07 bibrelex" +, author = "K. Onishi and N. Takayama" +, title = "Construction of {Voronoi} diagrams on the upper half-plane" +, journal = "IEICE Trans. Fundamentals" +, volume = "E79-A" +, number = 4 +, year = 1996 +, pages = "533--539" +, update = "98.07 bibrelex" } @article{o-gccrp-91 -, author = "S. Onn" -, title = "On the geometry and computational complexity of {Radon} partitions in the integer lattice" -, journal = "SIAM J. Discrete Math." -, volume = 4 -, year = 1991 -, pages = "436--447" -, keywords = "abstract convexity, convexity spaces, geometry of numbers, Radon number, Radon partition, lattice polytopes, integer programming, integer lattice" -, succeeds = "o-rnil-90" +, author = "S. Onn" +, title = "On the geometry and computational complexity of {Radon} partitions in the integer lattice" +, journal = "SIAM J. Discrete Math." +, volume = 4 +, year = 1991 +, pages = "436--447" +, keywords = "abstract convexity, convexity spaces, geometry of numbers, Radon number, Radon partition, lattice polytopes, integer programming, integer lattice" +, succeeds = "o-rnil-90" } @inproceedings{o-rnil-90 -, author = "S. Onn" -, title = "On the {Radon} number of the integer lattice" -, editor = "Ravi Kannan and W. R. Pulleyblank" -, booktitle = "Integer Programmming and Combinatorial Optimization" -, publisher = "Univ. Waterloo Press" -, address = "Waterloo, ON" -, year = 1990 -, pages = "385--396" -, keywords = "abstract convexity, convexity spaces, geometry of numbers, Radon number, Radon partition, lattice polytopes, integer programming, integer lattice" -, precedes = "o-gccrp-91" -, update = "97.03 rote" +, author = "S. Onn" +, title = "On the {Radon} number of the integer lattice" +, editor = "Ravi Kannan and W. R. Pulleyblank" +, booktitle = "Integer Programmming and Combinatorial Optimization" +, publisher = "Univ. Waterloo Press" +, address = "Waterloo, ON" +, year = 1990 +, pages = "385--396" +, keywords = "abstract convexity, convexity spaces, geometry of numbers, Radon number, Radon partition, lattice polytopes, integer programming, integer lattice" +, precedes = "o-gccrp-91" +, update = "97.03 rote" } @article{os-qst-94 -, author = "S. Onn and B. Sturmfels" -, title = "A quantitative {Steinitz}' theorem" -, journal = "{Beitr\"age} zur Algebra und Geometrie / Contributions to Algebra and Geometry" -, volume = 35 -, year = 1994 -, pages = "125--129" -, keywords = "graph drawing, 3D, grid, convex" -, update = "96.09 tamassia" +, author = "S. Onn and B. Sturmfels" +, title = "A quantitative {Steinitz}' theorem" +, journal = "{Beitr\"age} zur Algebra und Geometrie / Contributions to Algebra and Geometry" +, volume = 35 +, year = 1994 +, pages = "125--129" +, keywords = "graph drawing, 3D, grid, convex" +, update = "96.09 tamassia" } @mastersthesis{o-mcarg-96 -, author = "T. Ono" -, title = "A {Markov} Chain Approach to Random Generation of Triangulation" -, school = "Dept. Inform. Sci., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1996 -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "T. Ono" +, title = "A {Markov} Chain Approach to Random Generation of Triangulation" +, school = "Dept. Inform. Sci., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1996 +, keywords = "master thesis" +, update = "97.11 bibrelex" } @inproceedings{o-ewptt-94 -, author = "T. Ono" -, title = "An Eight-Way Perturbation Technique for the Three-Dimensional Convex Hull" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "159--164" -, cites = "d-iafch-90, d-i2dch-90, em-sstcd-88, ph-chfsp-77, y-gctsp-88, y-stgd-, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "T. Ono" +, title = "An Eight-Way Perturbation Technique for the Three-Dimensional Convex Hull" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "159--164" +, cites = "d-iafch-90, d-i2dch-90, em-sstcd-88, ph-chfsp-77, y-gctsp-88, y-stgd-, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{okmhsniiia-pt-96 -, author = "T. Ono and Y. Kyoda and T. Masada and K. Hayase and T. Shibuya and M. Nakade and M. Inaba and H. Imai and K. Imai and D. Avis" -, title = "A package for triangulations" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "V17--V18" -, cites = "almp-gsgv-95, af-pachv-92, k-sgmwt-96, mii-ert-96, o-mcarg-96, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "T. Ono and Y. Kyoda and T. Masada and K. Hayase and T. Shibuya and M. Nakade and M. Inaba and H. Imai and K. Imai and D. Avis" +, title = "A package for triangulations" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "V17--V18" +, cites = "almp-gsgv-95, af-pachv-92, k-sgmwt-96, mii-ert-96, o-mcarg-96, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @mastersthesis{o-nridc-90 -, author = "Y. Ooishi" -, title = "Numerically robust implementation of the divide-and-conquer algorithm for constructing {Voronoi} diagrams" -, school = "Department of Mathematical Engineering and Information Physics, Faculty of Engineering, University of Tokyo" -, address = "Tokyo, Japan" -, year = 1990 -, note = "Bachelor's Thesis in Japanese" -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "Y. Ooishi" +, title = "Numerically robust implementation of the divide-and-conquer algorithm for constructing {Voronoi} diagrams" +, school = "Department of Mathematical Engineering and Information Physics, Faculty of Engineering, University of Tokyo" +, address = "Tokyo, Japan" +, year = 1990 +, note = "Bachelor's Thesis in Japanese" +, keywords = "master thesis" +, update = "98.07 bibrelex" } @techreport{o-lassm-85 -, author = "B. J. Oommen" -, title = "A learning automation solution to the stochastic minimum spanning circle problem" -, type = "Report" -, number = "SCS-TR-81" -, institution = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1985 +, author = "B. J. Oommen" +, title = "A learning automation solution to the stochastic minimum spanning circle problem" +, type = "Report" +, number = "SCS-TR-81" +, institution = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1985 } @techreport{oirk-rnutu-86 -, author = "B. J. Oommen and S. S. Iyengar and S. V. Rao and R. L. Kashyap" -, title = "Robot Navigation in Unknown Terrains Using Learned Visibility Graphs. Part {I}: {T}he Disjoint Convex Obstacle Case" -, number = "SCS-TR-86" -, institution = "School of Computer Science, Carleton University" -, month = feb -, year = 1986 -, update = "96.05 agarwal" +, author = "B. J. Oommen and S. S. Iyengar and S. V. Rao and R. L. Kashyap" +, title = "Robot Navigation in Unknown Terrains Using Learned Visibility Graphs. Part {I}: {T}he Disjoint Convex Obstacle Case" +, number = "SCS-TR-86" +, institution = "School of Computer Science, Carleton University" +, month = feb +, year = 1986 +, update = "96.05 agarwal" } @techreport{or-pteot-85 -, author = "B. J. Oommen and I. Reichstein" -, title = "On the problem of translating an elliptic object through a workspace of elliptic obstacles" -, type = "Report" -, number = "SCS-TR-79" -, institution = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1985 +, author = "B. J. Oommen and I. Reichstein" +, title = "On the problem of translating an elliptic object through a workspace of elliptic obstacles" +, type = "Report" +, number = "SCS-TR-79" +, institution = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1985 } @inproceedings{o-rtbmo-94 -, author = "P. van Oosterom" -, title = "An {R}-Tree Based Map-Overlay Algorithm" -, booktitle = "Proc. EGIS '94" -, year = 1994 -, pages = "318--327" -, update = "96.09 kreveld" +, author = "P. van Oosterom" +, title = "An {R}-Tree Based Map-Overlay Algorithm" +, booktitle = "Proc. EGIS '94" +, year = 1994 +, pages = "318--327" +, update = "96.09 kreveld" } @article{op-csppa-94 -, author = "K. Opitz and H. Pottmann" -, title = "Computing shortest paths on polyhedra: applications in geometric modeling and scientific visualization" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "165--178" -, keywords = "shortest paths, scattered data, interpolation, surface approximation, exponential map" -, update = "96.09 devillers+orourke" +, author = "K. Opitz and H. Pottmann" +, title = "Computing shortest paths on polyhedra: applications in geometric modeling and scientific visualization" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "165--178" +, keywords = "shortest paths, scattered data, interpolation, surface approximation, exponential map" +, update = "96.09 devillers+orourke" } @inproceedings{o-csqpt-90 -, author = "J. Orenstein" -, title = "A comparison of spatial query processing techniques for native and parameter spaces" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1990 -, pages = "343--352" -, update = "97.07 agarwal" +, author = "J. Orenstein" +, title = "A comparison of spatial query processing techniques for native and parameter spaces" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1990 +, pages = "343--352" +, update = "97.07 agarwal" } @inproceedings{om-cdsas-84 -, author = "J. Orenstein and T. H. Merrett" -, title = "A class of data structures for associative searching" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1984 -, pages = "181--190" -, update = "97.07 agarwal" +, author = "J. Orenstein and T. H. Merrett" +, title = "A class of data structures for associative searching" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1984 +, pages = "181--190" +, update = "97.07 agarwal" } @article{o-mtuas-82 -, author = "J. A. Orenstein" -, title = "Multidimensional tries used for associative searching" -, journal = "Inform. Process. Lett." -, volume = 13 -, year = 1982 -, pages = "150--157" +, author = "J. A. Orenstein" +, title = "Multidimensional tries used for associative searching" +, journal = "Inform. Process. Lett." +, volume = 13 +, year = 1982 +, pages = "150--157" } @incollection{o-at-91 -, author = "P. Orlik" -, title = "Arrangements in topology" -, editor = "J. E. Goodman and R. Pollack and W. Steiger" -, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" -, publisher = "American Mathematical Society, Association for Computing Machinery" -, address = "Providence, RI" -, year = 1991 -, pages = "263--272" -, update = "99.11 bibrelex, 98.07 agarwal" +, author = "P. Orlik" +, title = "Arrangements in topology" +, editor = "J. E. Goodman and R. Pollack and W. Steiger" +, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" +, publisher = "American Mathematical Society, Association for Computing Machinery" +, address = "Providence, RI" +, year = 1991 +, pages = "263--272" +, update = "99.11 bibrelex, 98.07 agarwal" } @book{o-ia-89 -, author = "Peter Orlik" -, title = "Introduction to Arrangements" -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1989 -, isbn = "0-8218-0723-4" -, update = "96.01 mitchell" -, annote = "13.00" +, author = "Peter Orlik" +, title = "Introduction to Arrangements" +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1989 +, isbn = "0-8218-0723-4" +, update = "96.01 mitchell" +, annote = "13.00" } @article{os-ctch-80 -, author = "Peter Orlik and L. Solomon" -, title = "Combinatorics and topology of complements of hyperplanes" -, journal = "Invent. Math." -, volume = 59 -, year = 1980 -, pages = "77--94" -, update = "98.07 agarwal" +, author = "Peter Orlik and L. Solomon" +, title = "Combinatorics and topology of complements of hyperplanes" +, journal = "Invent. Math." +, volume = 59 +, year = 1980 +, pages = "77--94" +, update = "98.07 agarwal" } @book{ot-ah-91 -, author = "Peter Orlik and Hiroaki Terao" -, title = "Arrangements of Hyperplanes" -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1991 -, update = "98.07 agarwal" +, author = "Peter Orlik and Hiroaki Terao" +, title = "Arrangements of Hyperplanes" +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1991 +, update = "98.07 agarwal" } @article{o-chaps-85 -, author = "M. Orlowski" -, title = "A convex hull algorithm for planar simple polygons" -, journal = "Pattern Recogn." -, volume = 18 -, year = 1985 -, pages = "361--366" +, author = "M. Orlowski" +, title = "A convex hull algorithm for planar simple polygons" +, journal = "Pattern Recogn." +, volume = 18 +, year = 1985 +, pages = "361--366" } @article{o-naler-90 -, author = "M. Orlowski" -, title = "A new algorithm for the largest empty rectangle problem" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "65--73" -, keywords = "area" -, annote = "$O(n \log n)$ expected time, $O(n)$ space" +, author = "M. Orlowski" +, title = "A new algorithm for the largest empty rectangle problem" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "65--73" +, keywords = "area" +, annote = "$O(n \log n)$ expected time, $O(n)$ space" } @article{o-cssch-83 -, author = "M. Orlowski" -, title = "On the conditions for success of {Sklansky}'s convex hull algorithm" -, journal = "Pattern Recogn." -, volume = 16 -, year = 1983 -, pages = "579--586" +, author = "M. Orlowski" +, title = "On the conditions for success of {Sklansky}'s convex hull algorithm" +, journal = "Pattern Recogn." +, volume = 16 +, year = 1983 +, pages = "579--586" } @techreport{o-lbml-85 -, author = "J. O'Rourke" -, title = "A lower bound on moving a ladder" -, type = "Report" -, number = "JHU/EECS-85/20" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1985 -, keywords = "motion planning, lower bounds, ladder" +, author = "J. O'Rourke" +, title = "A lower bound on moving a ladder" +, type = "Report" +, number = "JHU/EECS-85/20" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1985 +, keywords = "motion planning, lower bounds, ladder" } @techreport{o-nftvpl-97 -, author = "J. O'Rourke" -, title = "A note on fully-turned vertex $\pi$-lights" -, type = "Technical {Report}" -, number = 056 -, institution = "Dept. Comput. Sci., Smith College" -, month = oct -, year = 1997 -, keywords = "art gallery theorems, floodlights" -, update = "97.11 orourke" +, author = "J. O'Rourke" +, title = "A note on fully-turned vertex $\pi$-lights" +, type = "Technical {Report}" +, number = 056 +, institution = "Dept. Comput. Sci., Smith College" +, month = oct +, year = 1997 +, keywords = "art gallery theorems, floodlights" +, update = "97.11 orourke" } @techreport{o-nmccp-82 -, author = "J. O'Rourke" -, title = "A note on minimum convex covers for polygons" -, type = "Report" -, number = "JHU-EECS 82-3" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1982 +, author = "J. O'Rourke" +, title = "A note on minimum convex covers for polygons" +, type = "Report" +, number = "JHU-EECS 82-3" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1982 } @article{o-6369-81 -, author = "Joseph O'Rourke" -, title = "Advanced Problem 6369" -, journal = "Amer. Math. Monthly" -, volume = 88 -, number = 10 -, year = 1981 -, pages = 769 -, comments = "The sum of square roots problem" -, update = "01.11 orourke" +, author = "Joseph O'Rourke" +, title = "Advanced Problem 6369" +, journal = "Amer. Math. Monthly" +, volume = 88 +, number = 10 +, year = 1981 +, pages = 769 +, comments = "The sum of square roots problem" +, update = "01.11 orourke" } @article{o-aprag-83 -, author = "J. O'Rourke" -, title = "An alternative proof of the rectilinear art gallery theorem" -, journal = "J. Geom." -, volume = 21 -, year = 1983 -, pages = "118--130" -, keywords = "covering, star-shaped" +, author = "J. O'Rourke" +, title = "An alternative proof of the rectilinear art gallery theorem" +, journal = "J. Geom." +, volume = 21 +, year = 1983 +, pages = "118--130" +, keywords = "covering, star-shaped" } @inproceedings{o-ecala-01 -, author = "Joseph O'Rourke" -, title = "An Extension of {Cauchy}'s Arm Lemma with Application to Curve Development" -, booktitle = "Discrete Comput. Geom." -, series = "Lecture Notes Comput. Sci." -, volume = 2098 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "280--291" -, note = "Papers from the Japan Conf. Discrete Comput. Geom., Tokyo, Nov. 2000" -, update = "01.11 orourke, 01.07 orourke" +, author = "Joseph O'Rourke" +, title = "An Extension of {Cauchy}'s Arm Lemma with Application to Curve Development" +, booktitle = "Discrete Comput. Geom." +, series = "Lecture Notes Comput. Sci." +, volume = 2098 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "280--291" +, note = "Papers from the Japan Conf. Discrete Comput. Geom., Tokyo, Nov. 2000" +, update = "01.11 orourke, 01.07 orourke" } @article{o-olafs-81 -, author = "J. O'Rourke" -, title = "An on-line algorithm for fitting straight lines between data ranges" -, journal = "Commun. ACM" -, volume = 24 -, year = 1981 -, pages = "574--578" -, keywords = "stabbing" +, author = "J. O'Rourke" +, title = "An on-line algorithm for fitting straight lines between data ranges" +, journal = "Commun. ACM" +, volume = 24 +, year = 1981 +, pages = "574--578" +, keywords = "stabbing" } @book{o-agta-87 -, author = "J. O'Rourke" -, title = "Art Gallery Theorems and Algorithms" -, series = "The International Series of Monographs on Computer Science" -, publisher = "Oxford University Press" -, address = "New York, NY" -, year = 1987 -, keywords = "visibility, decomposition, covering, partition, geometric graphs" -, update = "98.11 bibrelex" +, author = "J. O'Rourke" +, title = "Art Gallery Theorems and Algorithms" +, series = "The International Series of Monographs on Computer Science" +, publisher = "Oxford University Press" +, address = "New York, NY" +, year = 1987 +, keywords = "visibility, decomposition, covering, partition, geometric graphs" +, update = "98.11 bibrelex" } @inproceedings{o-avfdd-81 -, author = "J. O'Rourke" -, title = "Automatic visual focusing via a dynamic data structure" -, booktitle = "Proc. 1981 Conf. Info. Sciences and Systems" -, month = mar -, year = 1981 -, pages = "301--106" -, keywords = "$k$-d trees, computer vision" +, author = "J. O'Rourke" +, title = "Automatic visual focusing via a dynamic data structure" +, booktitle = "Proc. 1981 Conf. Info. Sciences and Systems" +, month = mar +, year = 1981 +, pages = "301--106" +, keywords = "$k$-d trees, computer vision" } @article{o-cg-88 -, author = "J. O'Rourke" -, title = "Computational geometry" -, journal = "Annu. Rev. Comput. Sci." -, volume = 3 -, year = 1988 -, pages = "389--411" -, keywords = "survey paper, convex hull, Voronoi diagrams, Delaunay triangulations, arrangements, polygons, triangulation, range search, point location, motion planning, Davenport-Schinzel sequences, parallel computation" +, author = "J. O'Rourke" +, title = "Computational geometry" +, journal = "Annu. Rev. Comput. Sci." +, volume = 3 +, year = 1988 +, pages = "389--411" +, keywords = "survey paper, convex hull, Voronoi diagrams, Delaunay triangulations, arrangements, polygons, triangulation, range search, point location, motion planning, Davenport-Schinzel sequences, parallel computation" } % 1 through 9 use ~ placeholder to sort before 10 @article{o-cgc1-86 -, author = "J. O'Rourke" -, title = "Computational geometry column ~1" -, journal = "SIGACT News" -, volume = 18 -, number = 1 -, year = 1986 -, pages = "17--19" -, note = "Also in Computer Graphics 20(1986), 232." -, update = "93.09 erickson" -, annote = "Report on the 2nd ACM Sympos. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column ~1" +, journal = "SIGACT News" +, volume = 18 +, number = 1 +, year = 1986 +, pages = "17--19" +, note = "Also in Computer Graphics 20(1986), 232." +, update = "93.09 erickson" +, annote = "Report on the 2nd ACM Sympos. Comput. Geom." } @article{o-cgc2-87 -, author = "J. O'Rourke" -, title = "Computational geometry column ~2" -, journal = "SIGACT News" -, volume = 18 -, number = 2 -, year = 1987 -, pages = "10--12" -, note = "Also in Computer Graphics 21(1987), 155--157." -, annote = "Old and new problems" +, author = "J. O'Rourke" +, title = "Computational geometry column ~2" +, journal = "SIGACT News" +, volume = 18 +, number = 2 +, year = 1987 +, pages = "10--12" +, note = "Also in Computer Graphics 21(1987), 155--157." +, annote = "Old and new problems" } @article{o-cgc3-87 -, author = "J. O'Rourke" -, title = "Computational geometry column ~3" -, journal = "SIGACT News" -, volume = 18 -, number = 4 -, year = 1987 -, pages = "13--15" -, note = "Also in Computer Graphics 21(1987), 314--315." -, annote = "Old and new problems" +, author = "J. O'Rourke" +, title = "Computational geometry column ~3" +, journal = "SIGACT News" +, volume = 18 +, number = 4 +, year = 1987 +, pages = "13--15" +, note = "Also in Computer Graphics 21(1987), 314--315." +, annote = "Old and new problems" } @article{o-cgc4-88 -, author = "J. O'Rourke" -, title = "Computational geometry column ~4" -, journal = "SIGACT News" -, volume = 19 -, number = 2 -, year = 1988 -, pages = "22--24" -, note = "Also in Computer Graphics 22(1988), 111--112." -, keywords = "hidden line elimination, Delaunay triangulations, link distance, stabbing" -, annote = "Old and new problems" +, author = "J. O'Rourke" +, title = "Computational geometry column ~4" +, journal = "SIGACT News" +, volume = 19 +, number = 2 +, year = 1988 +, pages = "22--24" +, note = "Also in Computer Graphics 22(1988), 111--112." +, keywords = "hidden line elimination, Delaunay triangulations, link distance, stabbing" +, annote = "Old and new problems" } @article{o-cgc5-88 -, author = "J. O'Rourke" -, title = "Computational geometry column ~5" -, journal = "SIGACT News" -, volume = 19 -, number = "3--4" -, year = 1988 -, pages = "21--26" -, annote = "Open problems from the 4th ACM Sympos. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column ~5" +, journal = "SIGACT News" +, volume = 19 +, number = "3--4" +, year = 1988 +, pages = "21--26" +, annote = "Open problems from the 4th ACM Sympos. Comput. Geom." } @article{o-cgc6-89 -, author = "J. O'Rourke" -, title = "Computational geometry column ~6" -, journal = "SIGACT News" -, volume = 20 -, number = 2 -, year = 1989 -, pages = "10--12" -, annote = "Old and new problems" +, author = "J. O'Rourke" +, title = "Computational geometry column ~6" +, journal = "SIGACT News" +, volume = 20 +, number = 2 +, year = 1989 +, pages = "10--12" +, annote = "Old and new problems" } @article{o-cgc7-89 -, author = "J. O'Rourke" -, title = "Computational geometry column ~7" -, journal = "SIGACT News" -, volume = 20 -, number = 3 -, year = 1989 -, pages = "25--26" -, annote = "Open problems from the 5th ACM Sympos. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column ~7" +, journal = "SIGACT News" +, volume = 20 +, number = 3 +, year = 1989 +, pages = "25--26" +, annote = "Open problems from the 5th ACM Sympos. Comput. Geom." } @article{o-cgc8-89 -, author = "J. O'Rourke" -, title = "Computational geometry column ~8" -, journal = "SIGACT News" -, volume = 20 -, number = 4 -, year = 1989 -, pages = 30 -, keywords = "distance" -, annote = "Error corrections" +, author = "J. O'Rourke" +, title = "Computational geometry column ~8" +, journal = "SIGACT News" +, volume = 20 +, number = 4 +, year = 1989 +, pages = 30 +, keywords = "distance" +, annote = "Error corrections" } @article{o-cgc9-90 -, author = "J. O'Rourke" -, title = "Computational geometry column ~9" -, journal = "SIGACT News" -, volume = 21 -, number = 1 -, year = 1990 -, pages = "18--20" -, keywords = "hidden surface elimination, visibility, triangulations, robotics, stabbing, shape" -, annote = "Old and new problems" +, author = "J. O'Rourke" +, title = "Computational geometry column ~9" +, journal = "SIGACT News" +, volume = 21 +, number = 1 +, year = 1990 +, pages = "18--20" +, keywords = "hidden surface elimination, visibility, triangulations, robotics, stabbing, shape" +, annote = "Old and new problems" } @article{o-cgc10-90 -, author = "J. O'Rourke" -, title = "Computational geometry column 10" -, journal = "SIGACT News" -, volume = 21 -, number = 3 -, year = 1990 -, pages = "22--25" -, annote = "Open problems from the 6th ACM Sympos. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column 10" +, journal = "SIGACT News" +, volume = 21 +, number = 3 +, year = 1990 +, pages = "22--25" +, annote = "Open problems from the 6th ACM Sympos. Comput. Geom." } @article{o-cgc11-91 -, author = "J. O'Rourke" -, title = "Computational geometry column 11" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 1 -, year = 1991 -, pages = "93--98" -, note = "Also in SIGACT News 21:4 (1990), 22--25" -, keywords = "shape, robotics, motion planning, arrangements, partition" -, annote = "Problems, old and new" +, author = "J. O'Rourke" +, title = "Computational geometry column 11" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 1 +, year = 1991 +, pages = "93--98" +, note = "Also in SIGACT News 21:4 (1990), 22--25" +, keywords = "shape, robotics, motion planning, arrangements, partition" +, annote = "Problems, old and new" } @article{o-cgc12-91 -, author = "J. O'Rourke" -, title = "Computational geometry column 12" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 2 -, year = 1991 -, pages = "197--200" -, note = "Also in SIGACT News 22:2 (1991), 26--29" -, keywords = "Voronoi diagrams, arrangements, visibility, Delaunay triangulations, path planning, shortest paths, separation" -, annote = "Seven open problems from various sources" +, author = "J. O'Rourke" +, title = "Computational geometry column 12" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 2 +, year = 1991 +, pages = "197--200" +, note = "Also in SIGACT News 22:2 (1991), 26--29" +, keywords = "Voronoi diagrams, arrangements, visibility, Delaunay triangulations, path planning, shortest paths, separation" +, annote = "Seven open problems from various sources" } @article{o-cgc12-91a -, author = "J. O'Rourke" -, title = "Computational geometry column 12" -, journal = "{SIGACT} News" -, volume = 22 -, number = 2 -, year = 1991 -, pages = "26--29" -, update = "98.11 bibrelex" +, author = "J. O'Rourke" +, title = "Computational geometry column 12" +, journal = "{SIGACT} News" +, volume = 22 +, number = 2 +, year = 1991 +, pages = "26--29" +, update = "98.11 bibrelex" } @article{o-cgc13-91 -, author = "J. O'Rourke" -, title = "Computational geometry column 13" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 3 -, year = 1991 -, pages = "341--343" -, note = "Also in SIGACT News 22:3 (1991), 13--15" -, annote = "Open problems from the 7th ACM Sympos. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column 13" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 3 +, year = 1991 +, pages = "341--343" +, note = "Also in SIGACT News 22:3 (1991), 13--15" +, annote = "Open problems from the 7th ACM Sympos. Comput. Geom." } @article{o-cgc14-91 -, author = "J. O'Rourke" -, title = "Computational geometry column 14" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 4 -, year = 1991 -, pages = "517--522" -, note = "Also in SIGACT News 23:1 (1992), 5--9" -, annote = "Abstracts of papers from the 3rd Canad. Conf. Comput. - Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column 14" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 4 +, year = 1991 +, pages = "517--522" +, note = "Also in SIGACT News 23:1 (1992), 5--9" +, annote = "Abstracts of papers from the 3rd Canad. Conf. Comput. + Geom." } @article{o-cgc15-92 -, author = "J. O'Rourke" -, title = "Computational geometry column 15" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 2 -, year = 1992 -, pages = "215--217" -, note = "Also in SIGACT News 23:2 (1992)" -, keywords = "visibility" -, annote = "Art gallery theorems" +, author = "J. O'Rourke" +, title = "Computational geometry column 15" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 2 +, year = 1992 +, pages = "215--217" +, note = "Also in SIGACT News 23:2 (1992)" +, keywords = "visibility" +, annote = "Art gallery theorems" } @article{o-cgc16-92 -, author = "J. O'Rourke" -, title = "Computational geometry column 16" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "335--339" -, note = "Also in SIGACT News 23:3 (1992)" -, annote = "Summary of 8th ACM Sympos. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column 16" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "335--339" +, note = "Also in SIGACT News 23:3 (1992)" +, annote = "Summary of 8th ACM Sympos. Comput. Geom." } @article{o-cgc17-92 -, author = "J. O'Rourke" -, title = "Computational geometry column 17" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, year = 1992 -, pages = "443--447" -, note = "Also in SIGACT News 23:4 (1992), 2--4" -, update = "93.05 orourke" -, annote = "Summary of 4th Canad. Conf. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column 17" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, year = 1992 +, pages = "443--447" +, note = "Also in SIGACT News 23:4 (1992), 2--4" +, update = "93.05 orourke" +, annote = "Summary of 4th Canad. Conf. Comput. Geom." } @article{o-cgc18-93 -, author = "J. O'Rourke" -, title = "Computational geometry column 18" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, number = 1 -, year = 1993 -, pages = "107--113" -, note = "Also in SIGACT News 24:1 (1993), 20--25" -, update = "98.11 bibrelex, 93.05 orourke" -, annote = "Visibility graphs" +, author = "J. O'Rourke" +, title = "Computational geometry column 18" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, number = 1 +, year = 1993 +, pages = "107--113" +, note = "Also in SIGACT News 24:1 (1993), 20--25" +, update = "98.11 bibrelex, 93.05 orourke" +, annote = "Visibility graphs" } @article{o-cgc18-93a -, author = "J. O'Rourke" -, title = "Computational geometry column 18" -, journal = "SIGACT News 24" -, volume = 24 -, number = 1 -, year = 1993 -, pages = "20--25" -, update = "98.11 bibrelex" +, author = "J. O'Rourke" +, title = "Computational geometry column 18" +, journal = "SIGACT News 24" +, volume = 24 +, number = 1 +, year = 1993 +, pages = "20--25" +, update = "98.11 bibrelex" } @article{o-cgc19-93 -, author = "J. O'Rourke" -, title = "Computational geometry column 19" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, number = 1 -, year = 1993 -, pages = "221--224" -, note = "Also in SIGACT News 24:2 (1993), 15--17" -, update = "98.11 bibrelex, 94.01 orourke" -, annote = "Description of computational geometry bibliography" +, author = "J. O'Rourke" +, title = "Computational geometry column 19" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, number = 1 +, year = 1993 +, pages = "221--224" +, note = "Also in SIGACT News 24:2 (1993), 15--17" +, update = "98.11 bibrelex, 94.01 orourke" +, annote = "Description of computational geometry bibliography" } @article{o-cgc20-93 -, author = "J. O'Rourke" -, title = "Computational geometry column 20" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "347--349" -, note = "Also in SIGACT News 24:3 (1993), 21--22" -, update = "94.01 orourke" -, annote = "Open problems from the 9th Annu. ACM Sympos. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column 20" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "347--349" +, note = "Also in SIGACT News 24:3 (1993), 21--22" +, update = "94.01 orourke" +, annote = "Open problems from the 9th Annu. ACM Sympos. Comput. Geom." } @article{o-cgc21-93 -, author = "J. O'Rourke" -, title = "Computational geometry column 21" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "463--465" -, note = "Also in SIGACT News 24:4 (1993), 14--15" -, update = "96.09 devillers, 94.05 devillers+orourke, 94.01 orourke" -, annote = "Open problems from the 5th Canad. Conf. Comput. Geom." +, author = "J. O'Rourke" +, title = "Computational geometry column 21" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "463--465" +, note = "Also in SIGACT News 24:4 (1993), 14--15" +, update = "96.09 devillers, 94.05 devillers+orourke, 94.01 orourke" +, annote = "Open problems from the 5th Canad. Conf. Comput. Geom." } @article{o-cgc22-94 -, author = "J. O'Rourke" -, title = "Computational geometry column 22" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "119--122" -, note = "Also in SIGACT News 25:1 (1994), 31--33" -, update = "94.09 lambert, 94.05 devillers+orourke" -, annote = "$n^2$-hard problems" +, author = "J. O'Rourke" +, title = "Computational geometry column 22" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "119--122" +, note = "Also in SIGACT News 25:1 (1994), 31--33" +, update = "94.09 lambert, 94.05 devillers+orourke" +, annote = "$n^2$-hard problems" } @article{o-cgc23-94 -, author = "J. O'Rourke" -, title = "Computational geometry column 23" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "239--242" -, note = "Also in SIGACT News 25:3 (1994), 24--27" -, update = "95.01 orourke" -, annote = "Open problems on tetrahedralization" +, author = "J. O'Rourke" +, title = "Computational geometry column 23" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "239--242" +, note = "Also in SIGACT News 25:3 (1994), 24--27" +, update = "95.01 orourke" +, annote = "Open problems on tetrahedralization" } @article{o-cgc24-94 -, author = "J. O'Rourke" -, title = "Computational geometry column 24" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "363--366" -, note = "Also in SIGACT News 25:4 (1994), 12--14" -, update = "95.01 orourke" -, annote = "Open problems from 10th SoCG and 6th CCCG" +, author = "J. O'Rourke" +, title = "Computational geometry column 24" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "363--366" +, note = "Also in SIGACT News 25:4 (1994), 12--14" +, update = "95.01 orourke" +, annote = "Open problems from 10th SoCG and 6th CCCG" } @article{o-cgc25-95 -, author = "J. O'Rourke" -, title = "Computational geometry column 25" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "215--218" -, note = "Also in SIGACT News 26:1 (1995), 14--16" -, update = "95.05 orourke" -, annote = "Lower envelope of surfaces: new complexity bounds" +, author = "J. O'Rourke" +, title = "Computational geometry column 25" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "215--218" +, note = "Also in SIGACT News 26:1 (1995), 14--16" +, update = "95.05 orourke" +, annote = "Lower envelope of surfaces: new complexity bounds" } @article{o-cgc26-95 -, author = "J. O'Rourke" -, title = "Computational geometry column 26" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "339--341" -, note = "Also in SIGACT News 26:2 (1995), 15--17" -, update = "96.01 orourke, 95.05 orourke" -, annote = "An advance on Conway's Thrackle conjecture" +, author = "J. O'Rourke" +, title = "Computational geometry column 26" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "339--341" +, note = "Also in SIGACT News 26:2 (1995), 15--17" +, update = "96.01 orourke, 95.05 orourke" +, annote = "An advance on Conway's Thrackle conjecture" } @article{o-cgc27-96 -, author = "J. O'Rourke" -, title = "Computational geometry column 27" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "123--125" -, note = "Also in SIGACT News 26:4 (1995), 19--21" -, update = "96.05 orourke, 96.01 orourke" -, annote = "Perfect matching between edges of triangulations" +, author = "J. O'Rourke" +, title = "Computational geometry column 27" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "123--125" +, note = "Also in SIGACT News 26:4 (1995), 19--21" +, update = "96.05 orourke, 96.01 orourke" +, annote = "Perfect matching between edges of triangulations" } @article{o-cgc28-96 -, author = "J. O'Rourke" -, title = "Computational geometry column 28" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "243--244" -, note = "Also in SIGACT News 27:2 (1996) 18--19" -, update = "97.03 orourke, 96.09 devillers+orourke" -, annote = "Web directory of Computational Geometry Software" +, author = "J. O'Rourke" +, title = "Computational geometry column 28" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "243--244" +, note = "Also in SIGACT News 27:2 (1996) 18--19" +, update = "97.03 orourke, 96.09 devillers+orourke" +, annote = "Web directory of Computational Geometry Software" } @article{o-cgc29-96 -, author = "J. O'Rourke" -, title = "Computational geometry column 29" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "507--511" -, note = "Also in SIGACT News, 27(3):55--59 (1996), Issue 100" -, update = "97.03 agarwal+orourke, 96.09 orourke" -, annote = "Past accomplishments of Computational Geometry are reviewed - and future directions adumbrated." +, author = "J. O'Rourke" +, title = "Computational geometry column 29" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "507--511" +, note = "Also in SIGACT News, 27(3):55--59 (1996), Issue 100" +, update = "97.03 agarwal+orourke, 96.09 orourke" +, annote = "Past accomplishments of Computational Geometry are reviewed + and future directions adumbrated." } @article{o-cgc30-97 -, author = "J. O'Rourke" -, title = "Computational geometry column 30" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "165--166" -, note = "Also in SIGACT News, 28(1):7--8 (1997), Issue 102" -, update = "97.07 orourke, 97.03 orourke" -, annote = "Several results from {\em Combinatorial Geometry} - (J. Pach and P.K. Agarwal) are detailed." +, author = "J. O'Rourke" +, title = "Computational geometry column 30" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "165--166" +, note = "Also in SIGACT News, 28(1):7--8 (1997), Issue 102" +, update = "97.07 orourke, 97.03 orourke" +, annote = "Several results from {\em Combinatorial Geometry} + (J. Pach and P.K. Agarwal) are detailed." } @article{o-cgc31-97 -, author = "J. O'Rourke" -, title = "Computational geometry column 31" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "379--382" -, note = "Also in SIGACT News, 28(2):20--23 (1997), Issue 103" -, keywords = "packing, spheres" -, update = "98.03 orourke, 97.07 orourke" -, annote = "Sphere packing work of Neil Sloane et al." +, author = "J. O'Rourke" +, title = "Computational geometry column 31" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "379--382" +, note = "Also in SIGACT News, 28(2):20--23 (1997), Issue 103" +, keywords = "packing, spheres" +, update = "98.03 orourke, 97.07 orourke" +, annote = "Sphere packing work of Neil Sloane et al." } @article{o-cgc32-97 -, author = "J. O'Rourke" -, title = "Computational geometry column 32" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "509--513" -, note = "Also in SIGACT News, 28(3):12--17 (1997), Issue 104" -, keywords = "k-sets, arrangements" -, update = "98.03 orourke" -, annote = "Dey's new $k$-set bound is illustrated." +, author = "J. O'Rourke" +, title = "Computational geometry column 32" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "509--513" +, note = "Also in SIGACT News, 28(3):12--17 (1997), Issue 104" +, keywords = "k-sets, arrangements" +, update = "98.03 orourke" +, annote = "Dey's new $k$-set bound is illustrated." } @article{o-cgc33-98 -, author = "J. O'Rourke" -, title = "Computational geometry column 33" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1999 -, pages = "381--384" -, note = "Also in SIGACT News, 29(2):12-16 (1998), Issue 107" -, update = "00.03 orourke" -, annote = "Two results in ``computational origami'' are illustrated." +, author = "J. O'Rourke" +, title = "Computational geometry column 33" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1999 +, pages = "381--384" +, note = "Also in SIGACT News, 29(2):12-16 (1998), Issue 107" +, update = "00.03 orourke" +, annote = "Two results in ``computational origami'' are illustrated." } @article{ao-cgc34-98 -, author = "J. O'Rourke" -, title = "Computational geometry column 34" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = "??" -, year = 1999 -, pages = "??--??" -, note = "Also in SIGACT News, 29(3):27--32 (1998), Issue 108" -, update = "00.03 orourke" -, annote = "Problems presented at the open-problem session of the - 14th Annual ACM Symposium on Computational Geometry are listed." +, author = "J. O'Rourke" +, title = "Computational geometry column 34" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = "??" +, year = 1999 +, pages = "??--??" +, note = "Also in SIGACT News, 29(3):27--32 (1998), Issue 108" +, update = "00.03 orourke" +, annote = "Problems presented at the open-problem session of the + 14th Annual ACM Symposium on Computational Geometry are listed." } @article{o-cgc35-99 -, author = "J. O'Rourke" -, title = "Computational geometry column 35" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = "??" -, year = 1999 -, pages = "??--??" -, note = "Also in SIGACT News, 30(2):31-32 (1999), Issue 111" -, keywords = "shortest paths" -, update = "00.03 orourke" -, annote = "The subquadratic algorithm of Kapoor for finding shortest - paths on a polyhedron is described." +, author = "J. O'Rourke" +, title = "Computational geometry column 35" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = "??" +, year = 1999 +, pages = "??--??" +, note = "Also in SIGACT News, 30(2):31-32 (1999), Issue 111" +, keywords = "shortest paths" +, update = "00.03 orourke" +, annote = "The subquadratic algorithm of Kapoor for finding shortest + paths on a polyhedron is described." } @article{o-cgc36-99 -, author = "J. O'Rourke" -, title = "Computational geometry column 36" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, number = 6 -, year = 1999 -, pages = "615--618" -, note = "Also in SIGACT News, 30(3):35--38 (1999), Issue 112" -, update = "00.11 smid, 00.07 orourke, 00.03 orourke" -, annote = "Two results in ``computational origami'' are illustrated." +, author = "J. O'Rourke" +, title = "Computational geometry column 36" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, number = 6 +, year = 1999 +, pages = "615--618" +, note = "Also in SIGACT News, 30(3):35--38 (1999), Issue 112" +, update = "00.11 smid, 00.07 orourke, 00.03 orourke" +, annote = "Two results in ``computational origami'' are illustrated." } @article{o-cgc38-00 -, author = "J. O'Rourke" -, title = "Computational geometry column 38" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, number = 2 -, year = 2000 -, pages = "221--223" -, note = "Also in SIGACT News, 31(1):28--30 (2000), Issue 114" -, update = "00.11 smid, 00.07 orourke" -, annote = "Recent results on curve reconstruction are described." +, author = "J. O'Rourke" +, title = "Computational geometry column 38" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, number = 2 +, year = 2000 +, pages = "221--223" +, note = "Also in SIGACT News, 31(1):28--30 (2000), Issue 114" +, update = "00.11 smid, 00.07 orourke" +, annote = "Recent results on curve reconstruction are described." } @article{o-cgc39-00 -, author = "J. O'Rourke" -, title = "Computational geometry column 39" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, number = 4 -, year = 2000 -, pages = "441--444" -, note = "Also in SIGACT News, 31(3):47--49 (2000), Issue 116" -, update = "01.04 orourke+pocchiola" -, annote = "The resolution of a decades-old open problem is described: polygonal chains cannot lock in the plane." +, author = "J. O'Rourke" +, title = "Computational geometry column 39" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, number = 4 +, year = 2000 +, pages = "441--444" +, note = "Also in SIGACT News, 31(3):47--49 (2000), Issue 116" +, update = "01.04 orourke+pocchiola" +, annote = "The resolution of a decades-old open problem is described: polygonal chains cannot lock in the plane." } @article{o-cgc40-00 -, author = "J. O'Rourke" -, title = "Computational geometry column 40" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, number = 6 -, year = 2000 -, pages = "649--651" -, note = "Also in SIGACT News, 31(4):62--64 (2000), Issue 117" -, update = "01.07 orourke, 01.04 orourke" -, annote = "It has recently been established by Below, De Loera, and Richter-Gebert that finding a minimum size (or even just a +, author = "J. O'Rourke" +, title = "Computational geometry column 40" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, number = 6 +, year = 2000 +, pages = "649--651" +, note = "Also in SIGACT News, 31(4):62--64 (2000), Issue 117" +, update = "01.07 orourke, 01.04 orourke" +, annote = "It has recently been established by Below, De Loera, and Richter-Gebert that finding a minimum size (or even just a small) triangulation of a convex polyhedron is NP-complete. Their 3SAT-reduction proof is discussed." } @article{o-cgc41-01 -, author = "J. O'Rourke" -, title = "Computational geometry column 41" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = "??" -, number = "??" -, year = 2001 -, pages = "??--??" -, note = "Also in SIGACT News, 32(1):53-55 (2001), Issue 118" -, update = "01.07 orourke" -, annote = "The recent result that $n$ congruent balls in $R^d$ - have at most 4 distinct geometric permutations is described." +, author = "J. O'Rourke" +, title = "Computational geometry column 41" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = "??" +, number = "??" +, year = 2001 +, pages = "??--??" +, note = "Also in SIGACT News, 32(1):53-55 (2001), Issue 118" +, update = "01.07 orourke" +, annote = "The recent result that $n$ congruent balls in $R^d$ + have at most 4 distinct geometric permutations is described." } @book{o-cgc-94 -, author = "J. O'Rourke" -, title = "Computational Geometry in {C}" -, edition = "1st" -, publisher = "Cambridge University Press" -, year = 1994 -, comments = "ISBN 0-521-44592-2/Pb \$24.95, - ISBN 0-521-44034-3/Hc \$49.95. - Cambridge University Press, - 40 West 20th Street, - New York, NY 10011-4211, - 1-800-872-7423. - 346+xi pages, 228 exercises, 200 figures, 219 references. - C code and errata available by anonymous ftp from - grendel.csc.smith.edu (131.229.222.23), - in the directory /pub/compgeom. - Third Printing: Dec. 1995. - Chapter titles: - 1. Polygon triangulation - 2. Polygon partitioning - 3. Convex hulls in two dimensions - 4. Convex hulls in three dimensions - 5. Voronoi diagrams - 6. Arrangements - 7. Search and intersection - 8. Motion planning - 9. Additional topics" -, update = "99.11 bibrelex, 97.07 orourke, 96.05 efrat, 96.01 orourke, 95.05 orourke, 95.01 orourke, 94.05 orourke, 94.01 orourke, 95.05 orourke" -, annote = "Textbook" +, author = "J. O'Rourke" +, title = "Computational Geometry in {C}" +, edition = "1st" +, publisher = "Cambridge University Press" +, year = 1994 +, comments = "ISBN 0-521-44592-2/Pb \$24.95, + ISBN 0-521-44034-3/Hc \$49.95. + Cambridge University Press, + 40 West 20th Street, + New York, NY 10011-4211, + 1-800-872-7423. + 346+xi pages, 228 exercises, 200 figures, 219 references. + C code and errata available by anonymous ftp from + grendel.csc.smith.edu (131.229.222.23), + in the directory /pub/compgeom. + Third Printing: Dec. 1995. + Chapter titles: + 1. Polygon triangulation + 2. Polygon partitioning + 3. Convex hulls in two dimensions + 4. Convex hulls in three dimensions + 5. Voronoi diagrams + 6. Arrangements + 7. Search and intersection + 8. Motion planning + 9. Additional topics" +, update = "99.11 bibrelex, 97.07 orourke, 96.05 efrat, 96.01 orourke, 95.05 orourke, 95.01 orourke, 94.05 orourke, 94.01 orourke, 95.05 orourke" +, annote = "Textbook" } @book{o-cgc-98 -, author = "J. O'Rourke" -, title = "Computational Geometry in {C}" -, edition = "2nd" -, publisher = "Cambridge University Press" -, year = 1998 -, url = "https://www.science.smith.edu/~jorourke/books/compgeom.html" -, comments = "Printed 28 Sep 1998" -, update = "01.11 orourke, 99.11 bibrelex, 98.11 orourke" -, annote = "Textbook" +, author = "J. O'Rourke" +, title = "Computational Geometry in {C}" +, edition = "2nd" +, publisher = "Cambridge University Press" +, year = 1998 +, url = "https://www.science.smith.edu/~jorourke/books/compgeom.html" +, comments = "Printed 28 Sep 1998" +, update = "01.11 orourke, 99.11 bibrelex, 98.11 orourke" +, annote = "Textbook" } @article{o-crngl-82 -, author = "J. O'Rourke" -, title = "Computing the relative neighborhood graph in the {$L_{1}$} and {$L_{\infty}$} metrics" -, journal = "Pattern Recogn." -, volume = 15 -, year = 1982 -, pages = "189--192" -, keywords = "geometric graphs" +, author = "J. O'Rourke" +, title = "Computing the relative neighborhood graph in the {$L_{1}$} and {$L_{\infty}$} metrics" +, journal = "Pattern Recogn." +, volume = 15 +, year = 1982 +, pages = "189--192" +, keywords = "geometric graphs" } @inproceedings{o-chvdt-84 -, author = "J. O'Rourke" -, title = "Convex hulls, {Voronoi} diagrams, and terrain navigation" -, booktitle = "Proc. 9th Pecora Sympos. Spatial Inform. Tech." -, year = 1984 -, pages = "358--361" -, keywords = "shortest paths" +, author = "J. O'Rourke" +, title = "Convex hulls, {Voronoi} diagrams, and terrain navigation" +, booktitle = "Proc. 9th Pecora Sympos. Spatial Inform. Tech." +, year = 1984 +, pages = "358--361" +, keywords = "shortest paths" } @article{o-cmca-85 -, author = "J. O'Rourke" -, title = "Counterexamples to a minimal circumscription algorithm" -, journal = "Comput. Vision Graph. Image Process." -, volume = 30 -, month = jun -, year = 1985 -, pages = "364--366" -, keywords = "triangles, area, approximation" +, author = "J. O'Rourke" +, title = "Counterexamples to a minimal circumscription algorithm" +, journal = "Comput. Vision Graph. Image Process." +, volume = 30 +, month = jun +, year = 1985 +, pages = "364--366" +, keywords = "triangles, area, approximation" } @techreport{o-dqsam-81 -, author = "J. O'Rourke" -, title = "Dynamically quantized spaces applied to motion analysis" -, type = "Technical {Report}" -, number = "JHU-EE 81-1" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = jan -, year = 1981 -, keywords = "$k$-d trees, computer vision" +, author = "J. O'Rourke" +, title = "Dynamically quantized spaces applied to motion analysis" +, type = "Technical {Report}" +, number = "JHU-EE 81-1" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = jan +, year = 1981 +, keywords = "$k$-d trees, computer vision" } @inproceedings{o-dqsfh-81 -, author = "J. O'Rourke" -, title = "Dynamically quantized spaces for focusing the {Hough} transform" -, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." -, year = 1981 -, pages = "737--739" -, keywords = "cluster analysis" +, author = "J. O'Rourke" +, title = "Dynamically quantized spaces for focusing the {Hough} transform" +, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." +, year = 1981 +, pages = "737--739" +, keywords = "cluster analysis" } @article{o-frca-90 -, author = "J. O'Rourke" -, title = "Feature {Review}: {The} complexity of arrangements" -, journal = "ACM Comput. Rev." -, volume = 31 -, number = 12 -, month = dec -, year = 1990 -, pages = "654--657" -, keywords = "arrangements, combinatorial complexity, zones" +, author = "J. O'Rourke" +, title = "Feature {Review}: {The} complexity of arrangements" +, journal = "ACM Comput. Rev." +, volume = 31 +, number = 12 +, month = dec +, year = 1990 +, pages = "654--657" +, keywords = "arrangements, combinatorial complexity, zones" } @techreport{o-fslps-87 -, author = "J. O'Rourke" -, title = "Finding a shortest ladder path: a special case" -, type = "{IMA} {Preprint} {Series}" -, number = 353 -, institution = "Inst. Math. Appl., Univ. Minnesota" -, address = "Minneapolis, MN" -, year = 1987 -, keywords = "motion planning, ladder" +, author = "J. O'Rourke" +, title = "Finding a shortest ladder path: a special case" +, type = "{IMA} {Preprint} {Series}" +, number = 353 +, institution = "Inst. Math. Appl., Univ. Minnesota" +, address = "Minneapolis, MN" +, year = 1987 +, keywords = "motion planning, ladder" } @techreport{o-fmeb-84 -, author = "J. O'Rourke" -, title = "Finding Minimal Enclosing Boxes" -, type = "Technical {Report}" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1984 -, update = "97.11 bibrelex" +, author = "J. O'Rourke" +, title = "Finding Minimal Enclosing Boxes" +, type = "Technical {Report}" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1984 +, update = "97.11 bibrelex" } @article{o-fmeb-85 -, author = "J. O'Rourke" -, title = "Finding minimal enclosing boxes" -, journal = "Internat. J. Comput. Inform. Sci." -, volume = 14 -, month = jun -, year = 1985 -, pages = "183--199" -, keywords = "approximation, volume" +, author = "J. O'Rourke" +, title = "Finding minimal enclosing boxes" +, journal = "Internat. J. Comput. Inform. Sci." +, volume = 14 +, month = jun +, year = 1985 +, pages = "183--199" +, keywords = "approximation, volume" } @article{o-fmeb-86 -, author = "Joseph O'Rourke" -, title = "Finding Minimal Enclosing Boxes" -, journal = "Internat. J. Comput. Info. Sci." -, volume = 14 -, number = 3 -, month = feb -, year = 1986 -, pages = "183--199" -, update = "01.04 orourke" +, author = "Joseph O'Rourke" +, title = "Finding Minimal Enclosing Boxes" +, journal = "Internat. J. Comput. Info. Sci." +, volume = 14 +, number = 3 +, month = feb +, year = 1986 +, pages = "183--199" +, update = "01.04 orourke" } @inproceedings{o-fucg-98 -, author = "J. O'Rourke" -, title = "Folding and Unfolding in Computational Geometry" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" -, site = "Tokyo" -, month = dec -, year = 1998 -, pages = "142--147" -, note = "Revised version to appear in LNCS" -, update = "01.04 orourke, 00.11 smid, 00.07 icking, 00.03 orourke, 99.03 orourke, 98.11 orourke" +, author = "J. O'Rourke" +, title = "Folding and Unfolding in Computational Geometry" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" +, site = "Tokyo" +, month = dec +, year = 1998 +, pages = "142--147" +, note = "Revised version to appear in LNCS" +, update = "01.04 orourke, 00.11 smid, 00.07 icking, 00.03 orourke, 99.03 orourke, 98.11 orourke" } @inproceedings{o-fucg-00 -, author = "Joseph O'Rourke" -, title = "Folding and unfolding in computational geometry" -, booktitle = "Discrete Comput. Geom." -, series = "Lecture Notes Comput. Sci." -, volume = 1763 -, publisher = "Springer-Verlag" -, year = 2000 -, pages = "258--266" -, note = "Papers from the Japan Conf. Discrete Comput. Geom., Tokyo, Dec. 1998" -, succeeds = "o-fucg-98" -, update = "01.11 orourke, 01.04 icking, 00.11 smid, 00.07 orourke" +, author = "Joseph O'Rourke" +, title = "Folding and unfolding in computational geometry" +, booktitle = "Discrete Comput. Geom." +, series = "Lecture Notes Comput. Sci." +, volume = 1763 +, publisher = "Springer-Verlag" +, year = 2000 +, pages = "258--266" +, note = "Papers from the Japan Conf. Discrete Comput. Geom., Tokyo, Dec. 1998" +, succeeds = "o-fucg-98" +, update = "01.11 orourke, 01.04 icking, 00.11 smid, 00.07 orourke" } @article{o-gnfmg-83 -, author = "J. O'Rourke" -, title = "Galleries need fewer mobile guards: a variation on {Chv{\'a}tal}'s theorem" -, journal = "Geom. Dedicata" -, volume = 14 -, year = 1983 -, pages = "273--283" -, keywords = "covering, star-shaped" +, author = "J. O'Rourke" +, title = "Galleries need fewer mobile guards: a variation on {Chv{\'a}tal}'s theorem" +, journal = "Geom. Dedicata" +, volume = 14 +, year = 1983 +, pages = "273--283" +, keywords = "covering, star-shaped" } @incollection{o-gcs-94 -, author = "J. O'Rourke" -, title = "Guarding corpulent stars" -, booktitle = "Snapshots of Computational and Discrete Geometry" -, volume = 3 -, publisher = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, month = jul -, year = 1994 -, pages = "63--71" -, note = "Technical Report SOCS-94.50" -, keywords = "visibility, art gallery theorems" -, comments = "Also Technical Report 032, Dept. Comput. Sci., Smith College" -, update = "96.05 orourke, 96.01 orourke, 94.09 orourke" -, annote = "I've been informed of an error by H. Meijer, but haven't worked on it." +, author = "J. O'Rourke" +, title = "Guarding corpulent stars" +, booktitle = "Snapshots of Computational and Discrete Geometry" +, volume = 3 +, publisher = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, month = jul +, year = 1994 +, pages = "63--71" +, note = "Technical Report SOCS-94.50" +, keywords = "visibility, art gallery theorems" +, comments = "Also Technical Report 032, Dept. Comput. Sci., Smith College" +, update = "96.05 orourke, 96.01 orourke, 94.09 orourke" +, annote = "I've been informed of an error by H. Meijer, but haven't worked on it." } @techreport{o-mccps-82 -, author = "J. O'Rourke" -, title = "Minimum convex cover for polygons: some counterexamples" -, type = "Report" -, number = "JHU-EE 82-1" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1982 +, author = "J. O'Rourke" +, title = "Minimum convex cover for polygons: some counterexamples" +, type = "Report" +, number = "JHU-EE 82-1" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1982 } @inproceedings{o-mduht-81 -, author = "J. O'Rourke" -, title = "Motion detection using {Hough} techniques" -, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn. Image Process." -, year = 1981 -, pages = "82--87" -, keywords = "computer vision, cluster analysis" +, author = "J. O'Rourke" +, title = "Motion detection using {Hough} techniques" +, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn. Image Process." +, year = 1981 +, pages = "82--87" +, keywords = "computer vision, cluster analysis" } @techreport{o-dipp-00 -, author = "J. O'Rourke" -, title = "On the Development of the Intersection of a Plane with a Polytope" -, type = "Technical {Report}" -, number = 068 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = jun -, year = 2000 -, note = "LANL arXiv cs.CG/0006035 v3, - \url{https://www.science.smith.edu/~jorourke/papers.php}" -, url = "https://www.science.smith.edu/~jorourke/papers.php" -, archive = "LANL arXiv cs.CG/0006035 v3" -, keywords = "polygonal chains, polytopes, polyhedra" -, cites = "c-cses-89, s-usedkkk-21" -, update = "01.04 orourke, 00.11 smid, 00.07 orourke" +, author = "J. O'Rourke" +, title = "On the Development of the Intersection of a Plane with a Polytope" +, type = "Technical {Report}" +, number = 068 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = jun +, year = 2000 +, note = "LANL arXiv cs.CG/0006035 v3, + \url{https://www.science.smith.edu/~jorourke/papers.php}" +, url = "https://www.science.smith.edu/~jorourke/papers.php" +, archive = "LANL arXiv cs.CG/0006035 v3" +, keywords = "polygonal chains, polytopes, polyhedra" +, cites = "c-cses-89, s-usedkkk-21" +, update = "01.04 orourke, 00.11 smid, 00.07 orourke" } @techreport{o-shrs-93 -, author = "J. O'Rourke" -, title = "On the scaling heuristic for reconstruction from slices" -, type = "Technical {Report}" -, number = 029 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = jun -, year = 1993 -, keywords = "triangulations, polyhedra, surface reconstruction" -, update = "94.01 orourke, 93.09 milone+mitchell" -} - -%, number = 3 +, author = "J. O'Rourke" +, title = "On the scaling heuristic for reconstruction from slices" +, type = "Technical {Report}" +, number = 029 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = jun +, year = 1993 +, keywords = "triangulations, polyhedra, surface reconstruction" +, update = "94.01 orourke, 93.09 milone+mitchell" +} + +%, number = 3 @article{o-shrs-94 -, author = "J. O'Rourke" -, title = "On the scaling heuristic for reconstruction from slices" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 56 -, month = sep -, year = 1994 -, pages = "420--423" -, keywords = "triangulations, polyhedra, surface reconstruction" -, succeeds = "o-shrs-93" -, update = "95.01 orourke" +, author = "J. O'Rourke" +, title = "On the scaling heuristic for reconstruction from slices" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 56 +, month = sep +, year = 1994 +, pages = "420--423" +, keywords = "triangulations, polyhedra, surface reconstruction" +, succeeds = "o-shrs-93" +, update = "95.01 orourke" } @incollection{o-opcvi-99 -, author = "J. O'Rourke" -, title = "Open problems in the combinatorics of visibility and illumination" -, editor = "B. Chazelle and J. E. Goodman and R. Pollack" -, booktitle = "Advances in Discrete and Computational Geometry" -, series = "Contemporary Mathematics" -, volume = 223 -, publisher = "American Mathematical Society" -, address = "Providence" -, year = 1999 -, pages = "237--243" -, update = "00.03 smid, 99.07 orourke, 97.11 orourke" +, author = "J. O'Rourke" +, title = "Open problems in the combinatorics of visibility and illumination" +, editor = "B. Chazelle and J. E. Goodman and R. Pollack" +, booktitle = "Advances in Discrete and Computational Geometry" +, series = "Contemporary Mathematics" +, volume = 223 +, publisher = "American Mathematical Society" +, address = "Providence" +, year = 1999 +, pages = "237--243" +, update = "00.03 smid, 99.07 orourke, 97.11 orourke" } @article{o-pdsfm-82 -, author = "J. O'Rourke" -, title = "Polygon decomposition and switching function minimization" -, journal = "Comput. Graph. Image Process." -, volume = 18 -, year = 1982 -, pages = "382--391" -, keywords = "decomposition" +, author = "J. O'Rourke" +, title = "Polygon decomposition and switching function minimization" +, journal = "Comput. Graph. Image Process." +, volume = 18 +, year = 1982 +, pages = "382--391" +, keywords = "decomposition" } @inproceedings{o-pma3d-81 -, author = "J. O'Rourke" -, title = "Polyhedra of minimal area as $3$-d object models" -, editor = "Patrick J. Hayes" -, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." -, publisher = "William Kaufmann" -, year = 1981 -, pages = "664--666" -, keywords = "polyhedra, area" -, update = "97.11 bibrelex" +, author = "J. O'Rourke" +, title = "Polyhedra of minimal area as $3$-d object models" +, editor = "Patrick J. Hayes" +, booktitle = "Proc. 7th Internat. Joint Conf. Artif. Intell." +, publisher = "William Kaufmann" +, year = 1981 +, pages = "664--666" +, keywords = "polyhedra, area" +, update = "97.11 bibrelex" } @techreport{o-pom3d-80 -, author = "J. O'Rourke" -, title = "Polyhedral Object Models from $3$-D Points" -, type = "Technical {Report}" -, number = "IFI-HH-M-77/80" -, institution = "Universit{\"a}t Hamburg" -, address = "Hamburg, Germany" -, month = jul -, year = 1980 -, update = "98.03 bibrelex" +, author = "J. O'Rourke" +, title = "Polyhedral Object Models from $3$-D Points" +, type = "Technical {Report}" +, number = "IFI-HH-M-77/80" +, institution = "Universit{\"a}t Hamburg" +, address = "Hamburg, Germany" +, month = jul +, year = 1980 +, update = "98.03 bibrelex" } @techreport{o-ropv-85 -, author = "J. O'Rourke" -, title = "Reconstruction of orthogonal polygons from vertices" -, type = "Report" -, number = "JHU-EECS 85-13" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1985 +, author = "J. O'Rourke" +, title = "Reconstruction of orthogonal polygons from vertices" +, type = "Report" +, number = "JHU-EECS 85-13" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1985 } @techreport{o-rcvg-90 -, author = "J. O'Rourke" -, title = "Recovery of convexity from visibility graphs" -, type = "Technical {Report}" -, number = "90.4.6" -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = apr -, year = 1990 -, keywords = "visibility graphs, convexity" +, author = "J. O'Rourke" +, title = "Recovery of convexity from visibility graphs" +, type = "Technical {Report}" +, number = "90.4.6" +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = apr +, year = 1990 +, keywords = "visibility graphs, convexity" } @inproceedings{o-ccmcc-82 -, author = "J. O'Rourke" -, title = "The complexity of computing minimum convex covers for polygons" -, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." -, year = 1982 -, pages = "75--84" -, keywords = "decomposition, covering" +, author = "J. O'Rourke" +, title = "The complexity of computing minimum convex covers for polygons" +, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." +, year = 1982 +, pages = "75--84" +, keywords = "decomposition, covering" } @techreport{o-dccp-82 -, author = "J. O'Rourke" -, title = "The decidability of covering by convex polygons" -, type = "Report" -, number = "JHU-EECS 82-4" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1982 +, author = "J. O'Rourke" +, title = "The decidability of covering by convex polygons" +, type = "Report" +, number = "JHU-EECS 82-4" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1982 } @techreport{o-ftcgc-90 -, author = "J. O'Rourke" -, title = "The first ten computational geometry columns" -, type = "Technical Report" -, number = 4 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, year = 1990 -, annote = "Unedited copies of the first ten columns" +, author = "J. O'Rourke" +, title = "The first ten computational geometry columns" +, type = "Technical Report" +, number = 4 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, year = 1990 +, annote = "Unedited copies of the first ten columns" } @article{o-spc-86 -, author = "J. O'Rourke" -, title = "The signature of a plane curve" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "34--51" -, keywords = "length, pattern recognition" +, author = "J. O'Rourke" +, title = "The signature of a plane curve" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "34--51" +, keywords = "length, pattern recognition" } @incollection{o-uocd-88 -, author = "J. O'Rourke" -, title = "Uniqueness of orthogonal connect-the-dots" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "97--104" -, keywords = "pattern recognition" +, author = "J. O'Rourke" +, title = "Uniqueness of orthogonal connect-the-dots" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "97--104" +, keywords = "pattern recognition" } @techreport{o-uocd-86 -, author = "J. O'Rourke" -, title = "Uniqueness of orthogonal connected-the-dots" -, institution = "Johns Hokins Univ." -, address = "Baltimore, MD" -, year = 1986 -, update = "98.03 bibrelex" +, author = "J. O'Rourke" +, title = "Uniqueness of orthogonal connected-the-dots" +, institution = "Johns Hokins Univ." +, address = "Baltimore, MD" +, year = 1986 +, update = "98.03 bibrelex" } @inproceedings{o-vplmm-97 -, author = "Joseph O'Rourke" -, title = "Vertex $\pi$-Lights for Monotone Mountains" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "1--5" -, keywords = "art gallery theorems, floodlights, monotone polygons" -, update = "97.11 orourke, 97.07 orourke" +, author = "Joseph O'Rourke" +, title = "Vertex $\pi$-Lights for Monotone Mountains" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "1--5" +, keywords = "art gallery theorems, floodlights, monotone polygons" +, update = "97.11 orourke, 97.07 orourke" } @incollection{o-v-97 -, author = "J. O'Rourke" -, title = "Visibility" -, chapter = 25 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "467--480" -, update = "97.11 icking+orourke, 97.07 orourke, 97.03 orourke" +, author = "J. O'Rourke" +, title = "Visibility" +, chapter = 25 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "467--480" +, update = "97.11 icking+orourke, 97.07 orourke, 97.03 orourke" } @techreport{oamb-oafme-84 -, author = "J. O'Rourke and A. Aggarwal and S. Maddila and M. Baldwin" -, title = "An optimal algorithm for finding minimal enclosing triangles" -, type = "Technical {Report}" -, number = "JHU/EECS-84/08" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1984 -, update = "97.11 bibrelex" +, author = "J. O'Rourke and A. Aggarwal and S. Maddila and M. Baldwin" +, title = "An optimal algorithm for finding minimal enclosing triangles" +, type = "Technical {Report}" +, number = "JHU/EECS-84/08" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1984 +, update = "97.11 bibrelex" } @article{oamb-oafme-86 -, author = "J. O'Rourke and A. Aggarwal and S. Maddila and M. Baldwin" -, title = "An optimal algorithm for finding minimal enclosing triangles" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "258--269" -, keywords = "triangles, area, approximation" +, author = "J. O'Rourke and A. Aggarwal and S. Maddila and M. Baldwin" +, title = "An optimal algorithm for finding minimal enclosing triangles" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "258--269" +, keywords = "triangles, area, approximation" } @article{ob-dtdos-79 -, author = "J. O'Rourke and N. I. Badler" -, title = "Decomposition of three-dimensional objects into spheres" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-1" -, year = 1979 -, pages = "295--305" -, keywords = "decomposition, spheres" +, author = "J. O'Rourke and N. I. Badler" +, title = "Decomposition of three-dimensional objects into spheres" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-1" +, year = 1979 +, pages = "295--305" +, keywords = "decomposition, spheres" } @article{ob-mbiah-80 -, author = "J. O'Rourke and N. I. Badler" -, title = "Model-based image analysis of human motion using constraint propagation" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-2" -, year = 1980 -, pages = "522--536" -, keywords = "computer vision" +, author = "J. O'Rourke and N. I. Badler" +, title = "Model-based image analysis of human motion using constraint propagation" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-2" +, year = 1980 +, pages = "522--536" +, keywords = "computer vision" } @article{obw-cdnh-87 -, author = "J. O'Rourke and H. Booth and R. Washington" -, title = "Connect-the-dots: {A} new heuristic" -, journal = "Comput. Vision Graph. Image Process." -, volume = 39 -, year = 1987 -, pages = "258--266" -, keywords = "pattern recognition, Delaunay triangulations, Hamiltonian cycles" -, update = "00.03 orourke" +, author = "J. O'Rourke and H. Booth and R. Washington" +, title = "Connect-the-dots: {A} new heuristic" +, journal = "Comput. Vision Graph. Image Process." +, volume = 39 +, year = 1987 +, pages = "258--266" +, keywords = "pattern recognition, Delaunay triangulations, Hamiltonian cycles" +, update = "00.03 orourke" } @techreport{obw-cdnh-84 -, author = "J. O'Rourke and H. Booth and R. Washington" -, title = "Connected-the-Dots: {A} New Heuristic" -, type = "Technical {Report}" -, number = "JHU/EECS-84/11" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1984 -, update = "98.03 bibrelex" +, author = "J. O'Rourke and H. Booth and R. Washington" +, title = "Connected-the-Dots: {A} New Heuristic" +, type = "Technical {Report}" +, number = "JHU/EECS-84/11" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1984 +, update = "98.03 bibrelex" } @article{ocon-nlaic-82 -, author = "J. O'Rourke and C.-B. Chien and T. Olson and D. Naddor" -, title = "A new linear algorithm for intersecting convex polygons" -, journal = "Comput. Graph. Image Process." -, volume = 19 -, year = 1982 -, pages = "384--391" -, keywords = "intersection, polygons" +, author = "J. O'Rourke and C.-B. Chien and T. Olson and D. Naddor" +, title = "A new linear algorithm for intersecting convex polygons" +, journal = "Comput. Graph. Image Process." +, volume = 19 +, year = 1982 +, pages = "384--391" +, keywords = "intersection, polygons" } @techreport{os-ppnph3d-99 -, author = "J. O'Rourke and {the Smith Problem Solving Group}" -, title = "{PushPush} is {NP}-hard in {3D}" -, number = 064 -, institution = "Smith College, Northampton, MA" -, month = nov -, year = 1999 -, note = "LANL XXX archive cs.CG/9911013" -, archive = "XXX:cs.CG/9911013" -, cites = "do-mpams-92" -, update = "00.03 orourke" +, author = "J. O'Rourke and {the Smith Problem Solving Group}" +, title = "{PushPush} is {NP}-hard in {3D}" +, number = 064 +, institution = "Smith College, Northampton, MA" +, month = nov +, year = 1999 +, note = "LANL XXX archive cs.CG/9911013" +, archive = "XXX:cs.CG/9911013" +, cites = "do-mpams-92" +, update = "00.03 orourke" } @article{okm-ccs-86 -, author = "J. O'Rourke and S. R. Kosaraju and N. Megiddo" -, title = "Computing circular separability" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "105--113" -, keywords = "circles, separation, design of algorithms, prune-and-search" +, author = "J. O'Rourke and S. R. Kosaraju and N. Megiddo" +, title = "Computing circular separability" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "105--113" +, keywords = "circles, separation, design of algorithms, prune-and-search" } @inproceedings{op-zps-98 -, author = "J. O'Rourke and I. Pashchenko" -, title = "Zero-Parity Stabbing Information" -, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" -, site = "Tokyo" -, month = dec -, year = 1998 -, pages = "93--97" -, note = "To appear" -, keywords = "visibility graphs" -, update = "00.11 smid, 00.07 icking, 99.03 orourke, 98.11 orourke" +, author = "J. O'Rourke and I. Pashchenko" +, title = "Zero-Parity Stabbing Information" +, booktitle = "Proc. Japan Conf. Discrete Comput. Geom. '98" +, site = "Tokyo" +, month = dec +, year = 1998 +, pages = "93--97" +, note = "To appear" +, keywords = "visibility graphs" +, update = "00.11 smid, 00.07 icking, 99.03 orourke, 98.11 orourke" } @inproceedings{opt-nlrm-01 -, author = "Joseph O'Rourke and Irena Pashchenko and Geetika Tewari" -, title = "Partitioning Orthogonal Polygons into Fat Rectangles" -, booktitle = "Proc. 13th Canad. Conf. Comput. Geom." -, site = "Waterloo" -, year = 2001 -, pages = "??--??" -, update = "02.03 icking, 01.07 orourke" +, author = "Joseph O'Rourke and Irena Pashchenko and Geetika Tewari" +, title = "Partitioning Orthogonal Polygons into Fat Rectangles" +, booktitle = "Proc. 13th Canad. Conf. Comput. Geom." +, site = "Waterloo" +, year = 2001 +, pages = "??--??" +, update = "02.03 icking, 01.07 orourke" } @inproceedings{op-nlrm-01 -, author = "Joseph O'Rourke and Octavia Petrovici" -, title = "Narrowing Light Rays with Mirrors" -, booktitle = "Proc. 13th Canad. Conf. Comput. Geom." -, site = "Waterloo" -, year = 2001 -, pages = "137--140" -, update = "02.03 icking, 01.11 orourke, 01.07 orourke" +, author = "Joseph O'Rourke and Octavia Petrovici" +, title = "Narrowing Light Rays with Mirrors" +, booktitle = "Proc. 13th Canad. Conf. Comput. Geom." +, site = "Waterloo" +, year = 2001 +, pages = "137--140" +, update = "02.03 icking, 01.11 orourke, 01.07 orourke" } @techreport{or-cswvg-91 -, author = "J. O'Rourke and J. Rippel" -, title = "A class of segments whose visibility graphs are {Hamiltonian}" -, type = "Technical {Report}" -, number = 12 -, institution = "Dept. Comput. Sci., Smith College" -, year = 1991 -, keywords = "visibility graphs, Hamiltonian cycles" +, author = "J. O'Rourke and J. Rippel" +, title = "A class of segments whose visibility graphs are {Hamiltonian}" +, type = "Technical {Report}" +, number = 12 +, institution = "Dept. Comput. Sci., Smith College" +, year = 1991 +, keywords = "visibility graphs, Hamiltonian cycles" } @inproceedings{or-svgsr-92 -, author = "J. O'Rourke and J. Rippel" -, title = "Segment visibility graphs: several results" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "35--38" -, keywords = "visibility graphs, Hamiltonian cycles" -, cites = "aek-rvgsp-91, a-srvg-89, lmw-nvg-87, m-htcpd-92, o-agta-87, or-cswvg-91, tt-uavrp-86, ZZZ" -, update = "98.07 bibrelex" +, author = "J. O'Rourke and J. Rippel" +, title = "Segment visibility graphs: several results" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "35--38" +, keywords = "visibility graphs, Hamiltonian cycles" +, cites = "aek-rvgsp-91, a-srvg-89, lmw-nvg-87, m-htcpd-92, o-agta-87, or-cswvg-91, tt-uavrp-86, ZZZ" +, update = "98.07 bibrelex" } @article{or-tschv-94 -, author = "J. O'Rourke and J. Rippel" -, title = "Two segment classes with {Hamiltonian} visibility graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "209--218" -, keywords = "visibility graphs, Hamiltonian cycles" -, update = "95.01 orourke" +, author = "J. O'Rourke and J. Rippel" +, title = "Two segment classes with {Hamiltonian} visibility graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "209--218" +, keywords = "visibility graphs, Hamiltonian cycles" +, update = "95.01 orourke" } @techreport{os-tdccc-87 -, author = "J. O'Rourke and C. Schevon" -, title = "A theorem on the development of closed convex curves" -, type = "Report" -, number = "JHU-87/16" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1987 -, precedes = "os-odcc3p-89" -, update = "97.11 orourke" +, author = "J. O'Rourke and C. Schevon" +, title = "A theorem on the development of closed convex curves" +, type = "Report" +, number = "JHU-87/16" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1987 +, precedes = "os-odcc3p-89" +, update = "97.11 orourke" } @inproceedings{os-cgd3p-89 -, author = "J. O'Rourke and C. Schevon" -, title = "Computing the geodesic diameter of a $3$-polytope" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "370--379" -, keywords = "polytopes, shortest paths, diameter" -, cites = "afw-fsgvd-88, cs-adpch-88, e-acg-87, egppss-acptc-88, es-vda-86, mmp-dgp-87, mo-al3sd-88, m-fspcp-85, m-nspsp-86, p-gcc-70, s-spacp-87, so-nmesc-88, so-afesp-89, ss-spps-86, s-agfnp-87, ZZZ" -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "J. O'Rourke and C. Schevon" +, title = "Computing the geodesic diameter of a $3$-polytope" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "370--379" +, keywords = "polytopes, shortest paths, diameter" +, cites = "afw-fsgvd-88, cs-adpch-88, e-acg-87, egppss-acptc-88, es-vda-86, mmp-dgp-87, mo-al3sd-88, m-fspcp-85, m-nspsp-86, p-gcc-70, s-spacp-87, so-nmesc-88, so-afesp-89, ss-spps-86, s-agfnp-87, ZZZ" +, update = "98.07 bibrelex, 98.03 bibrelex" } @article{os-odcc3p-89 -, author = "J. O'Rourke and C. Schevon" -, title = "On the development of closed convex curves on 3-polytopes" -, journal = "J. Geom." -, volume = 13 -, year = 1989 -, pages = "152--157" -, succeeds = "os-tdccc-87" -, update = "97.11 orourke" +, author = "J. O'Rourke and C. Schevon" +, title = "On the development of closed convex curves on 3-polytopes" +, journal = "J. Geom." +, volume = 13 +, year = 1989 +, pages = "152--157" +, succeeds = "os-tdccc-87" +, update = "97.11 orourke" } @techreport{oss-icpvf-95t -, author = "J. O'Rourke and T. Shermer and I. Streinu" -, title = "Illuminating convex polygons with vertex floodlights" -, type = "Technical {Report}" -, number = 039 -, institution = "Dept. Comput. Sci., Smith College" -, month = apr -, year = 1995 -, keywords = "visibility, floodlights" -, update = "95.09 jones, 95.05 orourke, 95.05 orourke" +, author = "J. O'Rourke and T. Shermer and I. Streinu" +, title = "Illuminating convex polygons with vertex floodlights" +, type = "Technical {Report}" +, number = 039 +, institution = "Dept. Comput. Sci., Smith College" +, month = apr +, year = 1995 +, keywords = "visibility, floodlights" +, update = "95.09 jones, 95.05 orourke, 95.05 orourke" } @inproceedings{oss-icpvf-95i -, author = "Joseph O'Rourke and Thomas Shermer and Ileana Streinu" -, title = "Illuminating Convex Polygons with Vertex Floodlights" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "151--156" -, keywords = "visibility, floodlights" -, update = "95.09 jones" +, author = "Joseph O'Rourke and Thomas Shermer and Ileana Streinu" +, title = "Illuminating Convex Polygons with Vertex Floodlights" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "151--156" +, keywords = "visibility, floodlights" +, update = "95.09 jones" } @article{os-dqtad-84 -, author = "J. O'Rourke and K. R. {Sloan, Jr.}" -, title = "Dynamic quantization: two adaptive data structures for multidimensional spaces" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-6" -, number = 3 -, month = may -, year = 1984 -, pages = "266--280" -, keywords = "cluster analysis" +, author = "J. O'Rourke and K. R. {Sloan, Jr.}" +, title = "Dynamic quantization: two adaptive data structures for multidimensional spaces" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-6" +, number = 3 +, month = may +, year = 1984 +, pages = "266--280" +, keywords = "cluster analysis" } @techreport{os-pvgpp1-96 -, author = "J. O'Rourke and I. Streinu" -, title = "Pseudo-visibility graphs in pseudo-polygons: {Part I}" -, type = "Technical {Report}" -, number = 041 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = jan -, year = 1996 -, note = "Slightly revised Apr. 1996" -, update = "98.07 bibrelex, 96.05 orourke" +, author = "J. O'Rourke and I. Streinu" +, title = "Pseudo-visibility graphs in pseudo-polygons: {Part I}" +, type = "Technical {Report}" +, number = 041 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = jan +, year = 1996 +, note = "Slightly revised Apr. 1996" +, update = "98.07 bibrelex, 96.05 orourke" } @techreport{os-pvgpp2-96 -, author = "J. O'Rourke and I. Streinu" -, title = "Pseudo-visibility graphs in pseudo-polygons: {Part II}" -, type = "Technical {Report}" -, number = 042 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = apr -, year = 1996 -, update = "98.07 bibrelex, 96.05 orourke" +, author = "J. O'Rourke and I. Streinu" +, title = "Pseudo-visibility graphs in pseudo-polygons: {Part II}" +, type = "Technical {Report}" +, number = 042 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = apr +, year = 1996 +, update = "98.07 bibrelex, 96.05 orourke" } @techreport{os-vevgp-96 -, author = "J. O'Rourke and I. Streinu" -, title = "The Vertex-Edge Visibility Graph of a Polygon" -, type = "Technical {Report}" -, number = 047 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = jun -, year = 1996 -, note = "Revised Feb. 1997" -, update = "97.03 orourke" +, author = "J. O'Rourke and I. Streinu" +, title = "The Vertex-Edge Visibility Graph of a Polygon" +, type = "Technical {Report}" +, number = 047 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = jun +, year = 1996 +, note = "Revised Feb. 1997" +, update = "97.03 orourke" } @article{os-vevgp-97 -, author = "J. O'Rourke and I. Streinu" -, title = "The vertex-edge visibility graph of a polygon" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "1--17" -, keywords = "visibility, geometric graphs" -, succeeds = "os-pvgpp1-96" -, update = "98.07 bibrelex, 97.07 orourke" -, annote = "A new polygon visibility graph is introduced. It is +, author = "J. O'Rourke and I. Streinu" +, title = "The vertex-edge visibility graph of a polygon" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "1--17" +, keywords = "visibility, geometric graphs" +, succeeds = "os-pvgpp1-96" +, update = "98.07 bibrelex, 97.07 orourke" +, annote = "A new polygon visibility graph is introduced. It is demonstrated that it encodes more geometric - information about the polygon than does the vertex + information about the polygon than does the vertex visibility graph. For example, it determines the shortest path tree for each vertex." } @article{os-vevgp-98 -, author = "Joseph O'Rourke and Ileana Streinu" -, title = "The vertex--edge visibility graph of a polygon" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "105--120" -, update = "98.11 devillers" +, author = "Joseph O'Rourke and Ileana Streinu" +, title = "The vertex--edge visibility graph of a polygon" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "105--120" +, update = "98.11 devillers" } @inproceedings{os-vepvgcr-97 -, author = "J. O'Rourke and I. Streinu" -, title = "Vertex-Edge Pseudo-Visibility Graphs: Characterization and Recognition" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "119--128" -, keywords = "visibility, geometric graphs, arrangements" -, succeeds = "os-pvgpp2-96" -, cites = "ak-vgom-95, blwsz-om-93, e-vgr-90, g-rcvgs-88, g-rcvgs-97, gp-sccca-84, k-ah-92, m-utoms-91, o-cgc18-93, os-pvgpp1-96, os-vevgp-97, s-spinh-91, s-cs-96, s-nspvg-96, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat+orourke" -, annote = "Vertex-edge visibility graphs of pseudo-polygons - are characterized combinatorially, showing that the - decision problem for them is in P. This also establishes - that the decision problem for vertex-vertex - visibility graphs of pseudo-polygons is in NP." +, author = "J. O'Rourke and I. Streinu" +, title = "Vertex-Edge Pseudo-Visibility Graphs: Characterization and Recognition" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "119--128" +, keywords = "visibility, geometric graphs, arrangements" +, succeeds = "os-pvgpp2-96" +, cites = "ak-vgom-95, blwsz-om-93, e-vgr-90, g-rcvgs-88, g-rcvgs-97, gp-sccca-84, k-ah-92, m-utoms-91, o-cgc18-93, os-pvgpp1-96, os-vevgp-97, s-spinh-91, s-cs-96, s-nspvg-96, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat+orourke" +, annote = "Vertex-edge visibility graphs of pseudo-polygons + are characterized combinatorially, showing that the + decision problem for them is in P. This also establishes + that the decision problem for vertex-vertex + visibility graphs of pseudo-polygons is in NP." } @techreport{os-rpps-91 -, author = "J. O'Rourke and V. Subramanian" -, title = "On reconstructing polyhedra from parallel slices" -, type = "Technical {Report}" -, number = 008 -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, month = jun -, year = 1991 -, keywords = "triangulations, polyhedra, surface reconstruction" -, update = "94.01 orourke" +, author = "J. O'Rourke and V. Subramanian" +, title = "On reconstructing polyhedra from parallel slices" +, type = "Technical {Report}" +, number = 008 +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, month = jun +, year = 1991 +, keywords = "triangulations, polyhedra, surface reconstruction" +, update = "94.01 orourke" } @article{os-snhpd-83 -, author = "J. O'Rourke and K. J. Supowit" -, title = "Some {NP}-hard polygon decomposition problems" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-30" -, year = 1983 -, pages = "181--190" -, keywords = "decomposition, NP-completeness" -, update = "94.09 lambert" +, author = "J. O'Rourke and K. J. Supowit" +, title = "Some {NP}-hard polygon decomposition problems" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-30" +, year = 1983 +, pages = "181--190" +, keywords = "decomposition, NP-completeness" +, update = "94.09 lambert" } @techreport{osb-spps-84 -, author = "J. O'Rourke and Subhash Suri and H. Booth" -, title = "Shortest paths on polyhedral surfaces" -, type = "Manuscript" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "J. O'Rourke and Subhash Suri and H. Booth" +, title = "Shortest paths on polyhedral surfaces" +, type = "Manuscript" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{osb-spps-85 -, author = "J. O'Rourke and Subhash Suri and H. Booth" -, title = "Shortest paths on polyhedral surfaces" -, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 182 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "243--254" -, keywords = "shortest paths" -, update = "98.03 mitchell" +, author = "J. O'Rourke and Subhash Suri and H. Booth" +, title = "Shortest paths on polyhedral surfaces" +, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 182 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "243--254" +, keywords = "shortest paths" +, update = "98.03 mitchell" } @incollection{ot-pr-97 -, author = "J. O'Rourke and G. T. Toussaint" -, title = "Pattern recognition" -, chapter = 43 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "797--814" -, update = "97.11 icking+orourke, 97.07 orourke, 97.03 orourke" +, author = "J. O'Rourke and G. T. Toussaint" +, title = "Pattern recognition" +, chapter = 43 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "797--814" +, update = "97.11 icking+orourke, 97.07 orourke, 97.03 orourke" } @techreport{ov-grp-91 -, author = "J. O'Rourke and M. Virmani" -, title = "Generating random polygons" -, number = 11 -, institution = "Dept. Comput. Sci., Smith College" -, year = 1991 -, keywords = "polygons, randomness" +, author = "J. O'Rourke and M. Virmani" +, title = "Generating random polygons" +, number = 11 +, institution = "Dept. Comput. Sci., Smith College" +, year = 1991 +, keywords = "polygons, randomness" } @incollection{ow-css-85 -, author = "J. O'Rourke and R. Washington" -, title = "Curve similarity via signatures" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "295--317" -, keywords = "length, pattern recognition" +, author = "J. O'Rourke and R. Washington" +, title = "Curve similarity via signatures" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "295--317" +, keywords = "length, pattern recognition" } @techreport{ox-spi-96 -, author = "J. O'Rourke and C. Xiao" -, title = "Some polyhedra are irreducible" -, type = "Technical {Report}" -, number = 49 -, institution = "Dept. Comput. Sci., Smith College" -, month = jun -, year = 1996 -, keywords = "morphing" -, update = "97.11 orourke" -, annote = "Proves that Guibas-Hershberger polygon morphing - cannot extend to an analogous morphing of polyhedra" +, author = "J. O'Rourke and C. Xiao" +, title = "Some polyhedra are irreducible" +, type = "Technical {Report}" +, number = 49 +, institution = "Dept. Comput. Sci., Smith College" +, month = jun +, year = 1996 +, keywords = "morphing" +, update = "97.11 orourke" +, annote = "Proves that Guibas-Hershberger polygon morphing + cannot extend to an analogous morphing of polyhedra" } @incollection{ox-ip90v-94 -, author = "J. O'Rourke and D. Xu" -, title = "Illumination of polygons with $90^\circ$ vertex lights" -, booktitle = "Snapshots of Computational and Discrete Geometry" -, volume = 3 -, publisher = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, month = jul -, year = 1994 -, pages = "108--117" -, note = "Technical Report SOCS-94.50" -, keywords = "visibility, floodlights" -, update = "94.09 orourke" -, annote = "Also Technical Report 034, Dept. Comput. Sci., Smith College" +, author = "J. O'Rourke and D. Xu" +, title = "Illumination of polygons with $90^\circ$ vertex lights" +, booktitle = "Snapshots of Computational and Discrete Geometry" +, volume = 3 +, publisher = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, month = jul +, year = 1994 +, pages = "108--117" +, note = "Technical Report SOCS-94.50" +, keywords = "visibility, floodlights" +, update = "94.09 orourke" +, annote = "Also Technical Report 034, Dept. Comput. Sci., Smith College" } @techreport{o-artpc-85 -, author = "D. J. Orser" -, title = "An algebraic representation for the topology of polytope complexes" -, type = "Report" -, number = "??" -, institution = "Center Manufacturing Engrg., National Bureau Standards" -, year = 1985 +, author = "D. J. Orser" +, title = "An algebraic representation for the topology of polytope complexes" +, type = "Report" +, number = "??" +, institution = "Center Manufacturing Engrg., National Bureau Standards" +, year = 1985 } @inproceedings{o-efo-83 -, author = "R. H. J. Otten" -, title = "Efficient Floorplan Optimization" -, booktitle = "IEEE Int. Conf. Computer Design inVLSI in Computers" -, year = 1983 -, pages = "499--522" -, update = "98.11 bibrelex" +, author = "R. H. J. Otten" +, title = "Efficient Floorplan Optimization" +, booktitle = "IEEE Int. Conf. Computer Design inVLSI in Computers" +, year = 1983 +, pages = "499--522" +, update = "98.11 bibrelex" } @inproceedings{ow-grild-78 -, author = "R. H. J. M. Otten and J. G. van Wijk" -, title = "Graph Representations in Interactive Layout Design" -, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" -, year = 1978 -, pages = "914--918" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. H. J. M. Otten and J. G. van Wijk" +, title = "Graph Representations in Interactive Layout Design" +, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" +, year = 1978 +, pages = "914--918" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @proceedings{o-iwcg-89 -, title = "Abstracts 5th Intern. Workshop Comput. Geom." -, editor = "Thomas Ottmann" -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, title = "Abstracts 5th Intern. Workshop Comput. Geom." +, editor = "Thomas Ottmann" +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @techreport{osh-kaoa-94 -, author = "Thomas Ottmann and Sven Schuierer and Christoph A. Hipke" -, title = "Kompetitive {Analyse} f{\"u}r {Online-Algorithmen}: {Eine} kommentierte {Bibliographie}" -, number = 61 -, institution = "Institut f{\"u}r Informatik, Universit{\"a}t Freiburg" -, address = "Germany" -, year = 1994 -, update = "00.03 bibrelex" +, author = "Thomas Ottmann and Sven Schuierer and Christoph A. Hipke" +, title = "Kompetitive {Analyse} f{\"u}r {Online-Algorithmen}: {Eine} kommentierte {Bibliographie}" +, number = 61 +, institution = "Institut f{\"u}r Informatik, Universit{\"a}t Freiburg" +, address = "Germany" +, year = 1994 +, update = "00.03 bibrelex" } @incollection{oss-eephd-95 -, author = "T. Ottmann and S. Schuierer and S. Soundaralakshmi" -, title = "Enumerating extreme points in higher dimensions" -, booktitle = "Proc. 12th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 900 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "562--570" -, update = "95.05 smid" +, author = "T. Ottmann and S. Schuierer and S. Soundaralakshmi" +, title = "Enumerating extreme points in higher dimensions" +, booktitle = "Proc. 12th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 900 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "562--570" +, update = "95.05 smid" } @techreport{osw-dcrch-83 -, author = "T. Ottmann and E. Soisalon-Soininen and D. Wood" -, title = "On the definition and computation of rectilinear convex hulls" -, number = "CS-83-07" -, institution = "Univ. Waterloo" -, year = 1983 -, update = "97.11 bibrelex" +, author = "T. Ottmann and E. Soisalon-Soininen and D. Wood" +, title = "On the definition and computation of rectilinear convex hulls" +, number = "CS-83-07" +, institution = "Univ. Waterloo" +, year = 1983 +, update = "97.11 bibrelex" } @article{osw-dcrch-85 -, author = "T. Ottmann and E. Soisalon-Soininen and D. Wood" -, title = "On the definition and computation of rectilinear convex hulls" -, journal = "Inform. Sci." -, volume = 33 -, year = 1985 -, pages = "157--171" +, author = "T. Ottmann and E. Soisalon-Soininen and D. Wood" +, title = "On the definition and computation of rectilinear convex hulls" +, journal = "Inform. Sci." +, volume = 33 +, year = 1985 +, pages = "157--171" } @techreport{osw-rchps-83 -, author = "T. Ottmann and E. Soisalon-Soininen and D. Wood" -, title = "Rectilinear convex hull partitioning of sets of rectilinear polygons" -, type = "Report" -, number = "CS-83-19" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1983 +, author = "T. Ottmann and E. Soisalon-Soininen and D. Wood" +, title = "Rectilinear convex hull partitioning of sets of rectilinear polygons" +, type = "Report" +, number = "CS-83-19" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1983 } @inproceedings{otu-nsga-87 -, author = "T. Ottmann and G. Thiemt and C. Ullrich" -, title = "Numerical stability of geometric algorithms" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "119--125" -, comments = "parts of the results appeared in: Th. Ottmann, G. Thiemt, C. Ullrich, On Arithmetical Problems of geometric Algorithms in the plane, Computing supplement 6 (1988), 13-136" -, cites = "a-spapo-85, b-ipsap-84, bo-arcgi-79, bruw-pcmls-86, f-cgset-87, gs-pmgsc-85, km-catp-81, km-nasc-83, lp-cgs-84, -mrm-83, m-mdscg-84, ps-cgi-85, r-cnebf-82, r-snsls-82, rb-lsbea-83, t-dnsga-86, t-cg-85, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex, 93.09 milone+mitchell" +, author = "T. Ottmann and G. Thiemt and C. Ullrich" +, title = "Numerical stability of geometric algorithms" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "119--125" +, comments = "parts of the results appeared in: Th. Ottmann, G. Thiemt, C. Ullrich, On Arithmetical Problems of geometric Algorithms in the plane, Computing supplement 6 (1988), 13-136" +, cites = "a-spapo-85, b-ipsap-84, bo-arcgi-79, bruw-pcmls-86, f-cgset-87, gs-pmgsc-85, km-catp-81, km-nasc-83, lp-cgs-84, -mrm-83, m-mdscg-84, ps-cgi-85, r-cnebf-82, r-snsls-82, rb-lsbea-83, t-dnsga-86, t-cg-85, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex, 93.09 milone+mitchell" } @book{ow-ad-90 -, author = "Thomas Ottmann and Peter Widmayer" -, title = "Algorithmen und {Datenstrukturen}" -, publisher = "BI-Wissenschaftsverlag" -, address = "Mannheim" -, year = 1990 -, update = "00.03 bibrelex" +, author = "Thomas Ottmann and Peter Widmayer" +, title = "Algorithmen und {Datenstrukturen}" +, publisher = "BI-Wissenschaftsverlag" +, address = "Mannheim" +, year = 1990 +, update = "00.03 bibrelex" } @techreport{ow-plsss-82 -, author = "T. Ottmann and P. Widmayer" -, title = "On the placement of line segments into a skeleton structure" -, type = "Report" -, number = 117 -, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1982 +, author = "T. Ottmann and P. Widmayer" +, title = "On the placement of line segments into a skeleton structure" +, type = "Report" +, number = 117 +, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1982 } @article{ow-tsls-83 -, author = "T. Ottmann and P. Widmayer" -, title = "On translating a set of line segments" -, journal = "Comput. Vision Graph. Image Process." -, volume = 24 -, year = 1983 -, pages = "382--389" +, author = "T. Ottmann and P. Widmayer" +, title = "On translating a set of line segments" +, journal = "Comput. Vision Graph. Image Process." +, volume = 24 +, year = 1983 +, pages = "382--389" } @techreport{ow-remrp-81 -, author = "T. Ottmann and P. Widmayer" -, title = "Reasonable encodings make rectangle problems hard" -, type = "Report" -, number = "??" -, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1981 +, author = "T. Ottmann and P. Widmayer" +, title = "Reasonable encodings make rectangle problems hard" +, type = "Report" +, number = "??" +, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1981 } @techreport{ow-svpus-84 -, author = "T. Ottmann and P. Widmayer" -, title = "Solving visibility problems by using skeleton structures" -, type = "Report" -, number = 133 -, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1984 +, author = "T. Ottmann and P. Widmayer" +, title = "Solving visibility problems by using skeleton structures" +, type = "Report" +, number = 133 +, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1984 } @techreport{oww-fabmo-82 -, author = "T. Ottmann and P. Widmayer and D. Wood" -, title = "A fast algorithm for {Boolean} mask operations" -, type = "Report" -, number = 112 -, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1982 -, precedes = "oww-fabmo-85" +, author = "T. Ottmann and P. Widmayer and D. Wood" +, title = "A fast algorithm for {Boolean} mask operations" +, type = "Report" +, number = 112 +, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1982 +, precedes = "oww-fabmo-85" } @article{oww-fabmo-85 -, author = "T. Ottmann and P. Widmayer and D. Wood" -, title = "A fast algorithm for {Boolean} mask operations" -, journal = "Comput. Vision Graph. Image Process." -, volume = 30 -, year = 1985 -, pages = "249--268" -, succeeds = "oww-fabmo-82" +, author = "T. Ottmann and P. Widmayer and D. Wood" +, title = "A fast algorithm for {Boolean} mask operations" +, journal = "Comput. Vision Graph. Image Process." +, volume = 30 +, year = 1985 +, pages = "249--268" +, succeeds = "oww-fabmo-82" } @article{oww-wceah-85 -, author = "T. Ottmann and P. Widmayer and D. Wood" -, title = "A worst-case efficient algorithm for hidden line elimination" -, journal = "Internat. J. Comput. Math." -, volume = 18 -, year = 1985 -, pages = "93--119" +, author = "T. Ottmann and P. Widmayer and D. Wood" +, title = "A worst-case efficient algorithm for hidden line elimination" +, journal = "Internat. J. Comput. Math." +, volume = 18 +, year = 1985 +, pages = "93--119" } @techreport{ow-dsp-84t -, author = "T. Ottmann and D. Wood" -, title = "Dynamical sets of points" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, year = 1984 -, update = "98.07 bibrelex" +, author = "T. Ottmann and D. Wood" +, title = "Dynamical sets of points" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, year = 1984 +, update = "98.07 bibrelex" } @article{ow-dsp-84 -, author = "T. Ottmann and D. Wood" -, title = "Dynamical sets of points" -, journal = "Comput. Vision Graph. Image Process." -, volume = 27 -, year = 1984 -, pages = "157--166" +, author = "T. Ottmann and D. Wood" +, title = "Dynamical sets of points" +, journal = "Comput. Vision Graph. Image Process." +, volume = 27 +, year = 1984 +, pages = "157--166" } @techreport{ow-sepsa-84 -, author = "T. Ottmann and D. Wood" -, title = "Space-economical plane-sweep algorithms" -, type = "Report" -, number = "CS-84-32" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1984 -, precedes = "ow-sepsa-86" +, author = "T. Ottmann and D. Wood" +, title = "Space-economical plane-sweep algorithms" +, type = "Report" +, number = "CS-84-32" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1984 +, precedes = "ow-sepsa-86" } @article{ow-sepsa-86 -, author = "T. Ottmann and D. Wood" -, title = "Space-economical plane-sweep algorithms" -, journal = "Comput. Vision Graph. Image Process." -, volume = 34 -, year = 1986 -, pages = "35--51" -, succeeds = "ow-sepsa-84" +, author = "T. Ottmann and D. Wood" +, title = "Space-economical plane-sweep algorithms" +, journal = "Comput. Vision Graph. Image Process." +, volume = 34 +, year = 1986 +, pages = "35--51" +, succeeds = "ow-sepsa-84" } @techreport{ow-cpp-84 -, author = "T. Ottmann and D. Wood" -, title = "The contour problem for polygons" -, type = "Report" -, number = "CS-84-33" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1984 +, author = "T. Ottmann and D. Wood" +, title = "The contour problem for polygons" +, type = "Report" +, number = "CS-84-33" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1984 } @techreport{o-gpbvd-84 -, author = "T. A. Ottmann" -, title = "Geometrische {Probleme} beim {VLSI}-{Design}" -, type = "Report" -, number = 138 -, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1984 +, author = "T. A. Ottmann" +, title = "Geometrische {Probleme} beim {VLSI}-{Design}" +, type = "Report" +, number = 138 +, institution = "Inst. Angew. Inform. Formale Beschreibungsverfahren, Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1984 } @article{o-schle-85 -, author = "T. A. Ottmann" -, title = "Special cases of the hidden-line elimination problem" -, journal = "Bull. EATCS" -, volume = 26 -, year = 1985 -, pages = "163--164" -, update = "96.09 devillers" +, author = "T. A. Ottmann" +, title = "Special cases of the hidden-line elimination problem" +, journal = "Bull. EATCS" +, volume = 26 +, year = 1985 +, pages = "163--164" +, update = "96.09 devillers" } @article{osw-pssop-87 -, author = "Th. Ottmann and E. Soisalon-Soininen and D. Wood" -, title = "Partitioning and Separating Sets of Orthogonal Polygons" -, journal = "Inform. Sci." -, volume = 42 -, year = 1987 -, pages = "31--49" +, author = "Th. Ottmann and E. Soisalon-Soininen and D. Wood" +, title = "Partitioning and Separating Sets of Orthogonal Polygons" +, journal = "Inform. Sci." +, volume = 42 +, year = 1987 +, pages = "31--49" } @book{ow-ad-93 -, author = "Th. Ottmann and P. Widmayer" -, title = "Algorithmen und Datenstrukturen" -, series = "Reihe Informatik" -, volume = 70 -, publisher = "BI Wissenschaftsverlag" -, address = "Mannheim" -, year = 1993 -, update = "98.11 bibrelex" +, author = "Th. Ottmann and P. Widmayer" +, title = "Algorithmen und Datenstrukturen" +, series = "Reihe Informatik" +, volume = 70 +, publisher = "BI Wissenschaftsverlag" +, address = "Mannheim" +, year = 1993 +, update = "98.11 bibrelex" } @techreport{ow-ubtcl-89 -, author = "Th. Ottmann and D. Wood" -, title = "Updating Binary Trees with Constant Linkage Cost" -, type = "Research Report" -, number = "CS-89-45" -, institution = "Data Structuring Group, University of Waterloo" -, year = 1989 -, update = "98.11 bibrelex" +, author = "Th. Ottmann and D. Wood" +, title = "Updating Binary Trees with Constant Linkage Cost" +, type = "Research Report" +, number = "CS-89-45" +, institution = "Data Structuring Group, University of Waterloo" +, year = 1989 +, update = "98.11 bibrelex" } @inproceedings{o-ibgf-85 -, author = "M. Ouksel" -, title = "The interpolation-based grid file" -, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." -, year = 1985 -, pages = "20--27" -, update = "97.07 agarwal" +, author = "M. Ouksel" +, title = "The interpolation-based grid file" +, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." +, year = 1985 +, pages = "20--27" +, update = "97.07 agarwal" } @article{os-mbtad-81 -, author = "M. Ouksel and P. Scheuermann" -, title = "Multidimensional {$B$}-trees: analysis of dynamic behavior" -, journal = "BIT" -, volume = 21 -, year = 1981 -, pages = "401--418" +, author = "M. Ouksel and P. Scheuermann" +, title = "Multidimensional {$B$}-trees: analysis of dynamic behavior" +, journal = "BIT" +, volume = 21 +, year = 1981 +, pages = "401--418" } @techreport{o-csdst-?? -, author = "J. K. Ousterhout" -, title = "Corner {Stitching}: a data structuring technique for {VLSI} design tools" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "J. K. Ousterhout" +, title = "Corner {Stitching}: a data structuring technique for {VLSI} design tools" +, type = "Manuscript" +, institution = "??" +, year = "??" } @book{o-ttt-94 -, author = "J. K. Ousterhout" -, title = "Tcl and the {Tk} toolkit" -, publisher = "Addison-Wesley" -, year = 1994 -, update = "98.07 bibrelex" +, author = "J. K. Ousterhout" +, title = "Tcl and the {Tk} toolkit" +, publisher = "Addison-Wesley" +, year = 1994 +, update = "98.07 bibrelex" } @inproceedings{o-cp-88 -, author = "M. Overmars" -, title = "Connectability problems" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "105--112" +, author = "M. Overmars" +, title = "Connectability problems" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "105--112" } @inproceedings{o-fd-96 -, author = "Mark Overmars" -, title = "Fixture Design" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = 49 -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Mark Overmars" +, title = "Fixture Design" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = 49 +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{o-tcg-93 -, author = "M. Overmars" -, title = "Teaching computational geometry" -, type = "Technical {Report}" -, number = "RUU-CS-93-34" -, institution = "Utrecht University" -, address = "Utrecht, Netherlands" -, year = 1993 -, update = "98.03 bibrelex" +, author = "M. Overmars" +, title = "Teaching computational geometry" +, type = "Technical {Report}" +, number = "RUU-CS-93-34" +, institution = "Utrecht University" +, address = "Utrecht, Netherlands" +, year = 1993 +, update = "98.03 bibrelex" } @inproceedings{orsw-ipaw-95 -, author = "Mark Overmars and Anil Rao and Otfried Schwarzkopf and Chantal Wentink" -, title = "Immobilizing Polygons against a Wall" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "29--38" -, keywords = "grasping, form-closure, clamping, fixtures" -, cites = "am-rsps-93, ab-kawff-85, by-kmafr-90, b-hjfd-89, bg-casmf-94, ccb-maacm-89, b-rsdoh-93, gt-admff-86, h-mf-87, l-matps-82, mnp-gg-90, m-wap-91, mss-esmpg-87, ps-cgi-85, r-km-76, wc-pmhf-94, zgw-emf-94, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell+schwarzkopf" +, author = "Mark Overmars and Anil Rao and Otfried Schwarzkopf and Chantal Wentink" +, title = "Immobilizing Polygons against a Wall" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "29--38" +, keywords = "grasping, form-closure, clamping, fixtures" +, cites = "am-rsps-93, ab-kawff-85, by-kmafr-90, b-hjfd-89, bg-casmf-94, ccb-maacm-89, b-rsdoh-93, gt-admff-86, h-mf-87, l-matps-82, mnp-gg-90, m-wap-91, mss-esmpg-87, ps-cgi-85, r-km-76, wc-pmhf-94, zgw-emf-94, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell+schwarzkopf" } @article{oss-slspt-90 -, author = "M. Overmars and H. Schipper and Micha Sharir" -, title = "Storing line segments in partition trees" -, journal = "BIT" -, volume = 30 -, year = 1990 -, pages = "385--403" -, succeeds = "oss-slspt-89" -, update = "98.03 mitchell" +, author = "M. Overmars and H. Schipper and Micha Sharir" +, title = "Storing line segments in partition trees" +, journal = "BIT" +, volume = 30 +, year = 1990 +, pages = "385--403" +, succeeds = "oss-slspt-89" +, update = "98.03 mitchell" } @inproceedings{os-oshsr-89 -, author = "M. Overmars and Micha Sharir" -, title = "Output-sensitive hidden surface removal" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "598--603" -, comments = "To appear as two papers in ACM Trans. Graphics and - Algorithmica" -, update = "98.03 mitchell" +, author = "M. Overmars and Micha Sharir" +, title = "Output-sensitive hidden surface removal" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "598--603" +, comments = "To appear as two papers in ACM Trans. Graphics and + Algorithmica" +, update = "98.03 mitchell" } @techreport{o-ramp-92 -, author = "M. H. Overmars" -, title = "A Random Approach to Motion Planning" -, type = "Report" -, number = "RUU-CS-92-32" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, month = oct -, year = 1992 -, update = "95.01 devillers" +, author = "M. H. Overmars" +, title = "A Random Approach to Motion Planning" +, type = "Report" +, number = "RUU-CS-92-32" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, month = oct +, year = 1992 +, update = "95.01 devillers" } @incollection{o-cggo-88 -, author = "M. H. Overmars" -, title = "Computational geometry on a grid: an overview" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "167--184" -, update = "99.11 bibrelex" +, author = "M. H. Overmars" +, title = "Computational geometry on a grid: an overview" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "167--184" +, update = "99.11 bibrelex" } @inproceedings{o-dcgal-96 -, author = "Mark H. Overmars" -, title = "Designing the {C}omputational {G}eometry {A}lgorithms {L}ibrary {CGAL}" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, site = "Philadelphia, PA, USA" -, series = "Lecture Notes Comput. Sci." -, volume = 1148 -, publisher = "Springer-Verlag" -, month = may -, year = 1996 -, pages = "53--58" -, url = "http://www.cs.uu.nl/CGAL/Papers/panel.ps.gz" -, update = "00.03 vismara, 99.11 bibrelex, 98.11 bibrelex, 97.11 held" +, author = "Mark H. Overmars" +, title = "Designing the {C}omputational {G}eometry {A}lgorithms {L}ibrary {CGAL}" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, site = "Philadelphia, PA, USA" +, series = "Lecture Notes Comput. Sci." +, volume = 1148 +, publisher = "Springer-Verlag" +, month = may +, year = 1996 +, pages = "53--58" +, url = "http://www.cs.uu.nl/CGAL/Papers/panel.ps.gz" +, update = "00.03 vismara, 99.11 bibrelex, 98.11 bibrelex, 97.11 held" } @incollection{o-dzdhg-82 -, author = "M. H. Overmars" -, title = "Dynamische zoekstructuren die hun geschiedenis onthouden" -, editor = "P. M. B. Vitanyi and J. van Leeuwen and P. van {Emde Boas}" -, booktitle = "Colloquium Complexiteit en Algorithmen" -, publisher = "Mathematisch Centrum, Amsterdam" -, year = 1982 -, pages = "109--136" -, update = "94.01 smid, 93.09 rote" +, author = "M. H. Overmars" +, title = "Dynamische zoekstructuren die hun geschiedenis onthouden" +, editor = "P. M. B. Vitanyi and J. van Leeuwen and P. van {Emde Boas}" +, booktitle = "Colloquium Complexiteit en Algorithmen" +, publisher = "Mathematisch Centrum, Amsterdam" +, year = 1982 +, pages = "109--136" +, update = "94.01 smid, 93.09 rote" } @article{o-dodsp-81 -, author = "M. H. Overmars" -, title = "Dynamization of order decomposable set problems" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "245--260" -, note = "Corrigendum in 4(1983), 301" +, author = "M. H. Overmars" +, title = "Dynamization of order decomposable set problems" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "245--260" +, note = "Corrigendum in 4(1983), 301" } @techreport{o-edsrs-87 -, author = "M. H. Overmars" -, title = "Efficient data structures for range searching on a grid" -, type = "Report" -, number = "RUU-CS-87-2" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1987 -, precedes = "o-edsrs-88" -, update = "94.05 schwarzkopf" +, author = "M. H. Overmars" +, title = "Efficient data structures for range searching on a grid" +, type = "Report" +, number = "RUU-CS-87-2" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1987 +, precedes = "o-edsrs-88" +, update = "94.05 schwarzkopf" } @article{o-edsrs-88 -, author = "M. H. Overmars" -, title = "Efficient data structures for range searching on a grid" -, journal = "J. Algorithms" -, volume = 9 -, year = 1988 -, pages = "254--275" -, succeeds = "o-edsrs-87" +, author = "M. H. Overmars" +, title = "Efficient data structures for range searching on a grid" +, journal = "J. Algorithms" +, volume = 9 +, year = 1988 +, pages = "254--275" +, succeeds = "o-edsrs-87" } @article{o-gmaea-81 -, author = "M. H. Overmars" -, title = "General methods for ``all elements'' and ``all pairs'' problems" -, journal = "Inform. Process. Lett." -, volume = 12 -, year = 1981 -, pages = "99--102" +, author = "M. H. Overmars" +, title = "General methods for ``all elements'' and ``all pairs'' problems" +, journal = "Inform. Process. Lett." +, volume = 12 +, year = 1981 +, pages = "99--102" } @techreport{o-gdscg-85t -, author = "M. H. Overmars" -, title = "Geometric data structures for computer graphics" -, type = "Report" -, number = "RUU-CS-85-13" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1985 -, precedes = "o-gdscg-85i" -, update = "94.05 schwarzkopf" +, author = "M. H. Overmars" +, title = "Geometric data structures for computer graphics" +, type = "Report" +, number = "RUU-CS-85-13" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1985 +, precedes = "o-gdscg-85i" +, update = "94.05 schwarzkopf" } @incollection{o-gdscg-85i -, author = "M. H. Overmars" -, title = "Geometric data structures for computer graphics" -, editor = "R. A. Earnshaw" -, booktitle = "Fundamental Algorithms for Computer Graphics" -, series = "NATO ASI Series~F" -, volume = 17 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "919--931" -, succeeds = "o-gdscg-85t" -, precedes = "o-gdscg-88" -, update = "97.03 schwarzkopf" +, author = "M. H. Overmars" +, title = "Geometric data structures for computer graphics" +, editor = "R. A. Earnshaw" +, booktitle = "Fundamental Algorithms for Computer Graphics" +, series = "NATO ASI Series~F" +, volume = 17 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "919--931" +, succeeds = "o-gdscg-85t" +, precedes = "o-gdscg-88" +, update = "97.03 schwarzkopf" } @incollection{o-gdscg-88 -, author = "M. H. Overmars" -, title = "Geometric data structures for computer graphics: an overview" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "21--49" -, keywords = "survey paper, quad trees, range trees, segment trees, dynamizing data structures" -, succeeds = "o-gdscg-85i" -, update = "97.03 schwarzkopf" +, author = "M. H. Overmars" +, title = "Geometric data structures for computer graphics: an overview" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "21--49" +, keywords = "survey paper, quad trees, range trees, segment trees, dynamizing data structures" +, succeeds = "o-gdscg-85i" +, update = "97.03 schwarzkopf" } @inproceedings{o-nmhsr-90 -, author = "Mark H. Overmars" -, title = "New Methods for Hidden Surface Removal" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 20 -, update = "00.03 bibrelex" +, author = "Mark H. Overmars" +, title = "New Methods for Hidden Surface Removal" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 20 +, update = "00.03 bibrelex" } @techreport{o-plfs-91 -, author = "M. H. Overmars" -, title = "Point location in fat subdivisions" -, type = "Technical {Report}" -, number = "RUU-CS-91-40" -, institution = "Univ. of Utrecht" -, address = "Utrecht, Netherlands" -, month = nov -, year = 1991 -, update = "93.09 milone+mitchell" +, author = "M. H. Overmars" +, title = "Point location in fat subdivisions" +, type = "Technical {Report}" +, number = "RUU-CS-91-40" +, institution = "Univ. of Utrecht" +, address = "Utrecht, Netherlands" +, month = nov +, year = 1991 +, update = "93.09 milone+mitchell" } @article{o-plfs-92 -, author = "M. H. Overmars" -, title = "Point location in fat subdivisions" -, journal = "Inform. Process. Lett." -, volume = 44 -, year = 1992 -, pages = "261--265" -, succeeds = "o-plfs-91" -, update = "94.05 matousek" +, author = "M. H. Overmars" +, title = "Point location in fat subdivisions" +, journal = "Inform. Process. Lett." +, volume = 44 +, year = 1992 +, pages = "261--265" +, succeeds = "o-plfs-91" +, update = "94.05 matousek" } @inproceedings{o-rssls-85 -, author = "M. H. Overmars" -, title = "Range searching in a set of line segments" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "177--185" -, cites = "e-ndrs-81, em-ioo-81, em-sosgr-81, eos-smcga-84a, k-osps-83, l-tarrc-79, m-pst-81, o-ddds-83, ol-wcoid-81, l-gcg-82, w-sbta-79, ZZZ" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "M. H. Overmars" +, title = "Range searching in a set of line segments" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "177--185" +, cites = "e-ndrs-81, em-ioo-81, em-sosgr-81, eos-smcga-84a, k-osps-83, l-tarrc-79, m-pst-81, o-ddds-83, ol-wcoid-81, l-gcg-82, w-sbta-79, ZZZ" +, update = "98.07 bibrelex, 97.11 bibrelex" } @techreport{o-rsg-85t -, author = "M. H. Overmars" -, title = "Range searching on a grid" -, type = "Report" -, number = "RUU-CS-85-17a" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1985 -, precedes = "o-rsg-85i" -, update = "94.05 schwarzkopf" +, author = "M. H. Overmars" +, title = "Range searching on a grid" +, type = "Report" +, number = "RUU-CS-85-17a" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1985 +, precedes = "o-rsg-85i" +, update = "94.05 schwarzkopf" } @inproceedings{o-rsg-85i -, author = "M. H. Overmars" -, title = "Range searching on a grid" -, booktitle = "Proc. 11th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '85" -, publisher = "Trauner Verlag" -, address = "Linz, Austria" -, year = 1985 -, pages = "295--305" -, succeeds = "o-rsg-85t" -, update = "98.07 bibrelex, 94.05 smid" +, author = "M. H. Overmars" +, title = "Range searching on a grid" +, booktitle = "Proc. 11th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '85" +, publisher = "Trauner Verlag" +, address = "Linz, Austria" +, year = 1985 +, pages = "295--305" +, succeeds = "o-rsg-85t" +, update = "98.07 bibrelex, 94.05 smid" } @article{o-rciac-81 -, author = "M. H. Overmars" -, title = "Reporting and counting intersections of arcs on a circle" -, journal = "Bull. EATCS" -, volume = 14 -, year = 1981 -, pages = "7--15" +, author = "M. H. Overmars" +, title = "Reporting and counting intersections of arcs on a circle" +, journal = "Bull. EATCS" +, volume = 14 +, year = 1981 +, pages = "7--15" } @techreport{o-sp1-81 -, author = "M. H. Overmars" -, title = "Searching in the past {I}" -, type = "Report" -, number = "RUU-CS-81-7" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1981 -, update = "94.05 schwarzkopf" +, author = "M. H. Overmars" +, title = "Searching in the past {I}" +, type = "Report" +, number = "RUU-CS-81-7" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1981 +, update = "94.05 schwarzkopf" } @techreport{o-sp2gt-81 -, author = "M. H. Overmars" -, title = "Searching in the past {II}: general transforms" -, type = "Report" -, number = "RUU-CS-81-9" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1981 -, update = "94.05 schwarzkopf" +, author = "M. H. Overmars" +, title = "Searching in the past {II}: general transforms" +, type = "Report" +, number = "RUU-CS-81-9" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1981 +, update = "94.05 schwarzkopf" } @book{o-ddds-83 -, author = "M. H. Overmars" -, title = "The Design of Dynamic Data Structures" -, series = "Lecture Notes Comput. Sci." -, volume = 156 -, publisher = "Springer-Verlag" -, address = "Heidelberg, West Germany" -, year = 1983 -, keywords = "book" -, update = "96.05 agarwal" +, author = "M. H. Overmars" +, title = "The Design of Dynamic Data Structures" +, series = "Lecture Notes Comput. Sci." +, volume = 156 +, publisher = "Springer-Verlag" +, address = "Heidelberg, West Germany" +, year = 1983 +, keywords = "book" +, update = "96.05 agarwal" } @inproceedings{o-la-83 -, author = "M. H. Overmars" -, title = "The locus approach" -, booktitle = "Proc. 9th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '83" -, publisher = "Trauner Verlag" -, address = "Linz, Austria" -, year = 1983 -, pages = "263--273" -, update = "98.07 bibrelex, 94.05 smid" +, author = "M. H. Overmars" +, title = "The locus approach" +, booktitle = "Proc. 9th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '83" +, publisher = "Trauner Verlag" +, address = "Linz, Austria" +, year = 1983 +, pages = "263--273" +, update = "98.07 bibrelex, 94.05 smid" } @inproceedings{o-tsdds-82 -, author = "M. H. Overmars" -, title = "Transforming semi-dynamic data structures into dynamic structures" -, booktitle = "Proc. 7th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, nickname = "WG '81" -, publisher = "Carl Hanser Verlag" -, year = 1982 -, pages = "173--182" -, update = "98.07 bibrelex" +, author = "M. H. Overmars" +, title = "Transforming semi-dynamic data structures into dynamic structures" +, booktitle = "Proc. 7th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, nickname = "WG '81" +, publisher = "Carl Hanser Verlag" +, year = 1982 +, pages = "173--182" +, update = "98.07 bibrelex" } @techreport{ok-csdp-89 -, author = "M. H. Overmars and M. J. van Kreveld" -, title = "Concatenable structures for decomposable problems" -, number = "RUU-CS-89-16" -, institution = "Univ. of Utrecht" -, address = "Utrecht, Netherlands" -, month = aug -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "M. H. Overmars and M. J. van Kreveld" +, title = "Concatenable structures for decomposable problems" +, number = "RUU-CS-89-16" +, institution = "Univ. of Utrecht" +, address = "Utrecht, Netherlands" +, month = aug +, year = 1989 +, update = "93.09 milone+mitchell" } @article{ol-dmdds-82 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Dynamic multi-dimensional data structures based on quad- and $k$-d trees" -, journal = "Acta Inform." -, volume = 17 -, year = 1982 -, pages = "267--285" -, update = "96.05 smid" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Dynamic multi-dimensional data structures based on quad- and $k$-d trees" +, journal = "Acta Inform." +, volume = 17 +, year = 1982 +, pages = "267--285" +, update = "96.05 smid" } @inproceedings{ol-dmcp-80 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Dynamically maintaining configurations in the plane" -, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." -, year = 1980 -, pages = "135--145" -, succeeds = "ol-nmcp-80" -, precedes = "ol-mcp-81" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Dynamically maintaining configurations in the plane" +, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." +, year = 1980 +, pages = "135--145" +, succeeds = "ol-nmcp-80" +, precedes = "ol-mcp-81" } @inproceedings{ol-ddspy-81 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Dynamization of decomposable searching problems yielding good worst-case bounds" -, booktitle = "Proc. 5th GI Conf. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 104 -, publisher = "Springer-Verlag" -, year = 1981 -, pages = "224--233" -, update = "99.11 bibrelex, 96.05 agarwal" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Dynamization of decomposable searching problems yielding good worst-case bounds" +, booktitle = "Proc. 5th GI Conf. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 104 +, publisher = "Springer-Verlag" +, year = 1981 +, pages = "224--233" +, update = "99.11 bibrelex, 96.05 agarwal" } @article{ol-fcbch-80 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Further comments on {Bykat}'s convex hull algorithm" -, journal = "Inform. Process. Lett." -, volume = 10 -, year = 1980 -, pages = "209--212" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Further comments on {Bykat}'s convex hull algorithm" +, journal = "Inform. Process. Lett." +, volume = 10 +, year = 1980 +, pages = "209--212" } @article{ol-mcp-81 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Maintenance of configurations in the plane" -, journal = "J. Comput. Syst. Sci." -, volume = 23 -, year = 1981 -, pages = "166--204" -, succeeds = "ol-dmcp-80" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Maintenance of configurations in the plane" +, journal = "J. Comput. Syst. Sci." +, volume = 23 +, year = 1981 +, pages = "166--204" +, succeeds = "ol-dmcp-80" } @techreport{ol-nmcp-80 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Notes on maintenance of configurations in the plane" -, type = "Report" -, number = "RUU-CS-80-5" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1980 -, precedes = "ol-dmcp-80" -, update = "94.05 schwarzkopf" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Notes on maintenance of configurations in the plane" +, type = "Report" +, number = "RUU-CS-80-5" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1980 +, precedes = "ol-dmcp-80" +, update = "94.05 schwarzkopf" } @article{ol-spdds-81 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Some principles for dynamizing decomposable searching problems" -, journal = "Inform. Process. Lett." -, volume = 12 -, year = 1981 -, pages = "49--54" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Some principles for dynamizing decomposable searching problems" +, journal = "Inform. Process. Lett." +, volume = 12 +, year = 1981 +, pages = "49--54" } @article{ol-tgmdd-81 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Two general methods for dynamizing decomposable searching problems" -, journal = "Computing" -, volume = 26 -, year = 1981 -, pages = "155--166" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Two general methods for dynamizing decomposable searching problems" +, journal = "Computing" +, volume = 26 +, year = 1981 +, pages = "155--166" } @article{ol-wcoid-81 -, author = "M. H. Overmars and J. van Leeuwen" -, title = "Worst-case optimal insertion and deletion methods for decomposable searching problems" -, journal = "Inform. Process. Lett." -, volume = 12 -, year = 1981 -, pages = "168--173" +, author = "M. H. Overmars and J. van Leeuwen" +, title = "Worst-case optimal insertion and deletion methods for decomposable searching problems" +, journal = "Inform. Process. Lett." +, volume = 12 +, year = 1981 +, pages = "168--173" } @techreport{oss-slspt-89 -, author = "M. H. Overmars and H. Schipper and Micha Sharir" -, title = "Storing line segments in partition trees" -, type = "Report" -, number = "RUU-CS-89-17" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1989 -, precedes = "oss-slspt-90" -, update = "98.03 mitchell, 94.05 schwarzkopf" +, author = "M. H. Overmars and H. Schipper and Micha Sharir" +, title = "Storing line segments in partition trees" +, type = "Report" +, number = "RUU-CS-89-17" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1989 +, precedes = "oss-slspt-90" +, update = "98.03 mitchell, 94.05 schwarzkopf" } @techreport{osv-swec6-88 -, author = "M. H. Overmars and B. Scholten and I. Vincent" -, title = "Sets without empty convex $6$-gons" -, type = "Report" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1988 -, update = "98.03 bibrelex" +, author = "M. H. Overmars and B. Scholten and I. Vincent" +, title = "Sets without empty convex $6$-gons" +, type = "Report" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1988 +, update = "98.03 bibrelex" } @article{osv-swec6-89 -, author = "M. H. Overmars and B. Scholten and I. Vincent" -, title = "Sets without Empty Convex $6$-gons" -, journal = "Bull. EATCS" -, volume = 37 -, year = 1989 -, pages = 160 +, author = "M. H. Overmars and B. Scholten and I. Vincent" +, title = "Sets without Empty Convex $6$-gons" +, journal = "Bull. EATCS" +, volume = 37 +, year = 1989 +, pages = 160 } @techreport{os-itosh-89 -, author = "M. H. Overmars and Micha Sharir" -, title = "An improved technique for output-sensitive hidden surface removal" -, number = "RUU-CS-89-32" -, institution = "Univ. of Utrecht" -, address = "Utrecht, Netherlands" -, month = dec -, year = 1989 -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "M. H. Overmars and Micha Sharir" +, title = "An improved technique for output-sensitive hidden surface removal" +, number = "RUU-CS-89-32" +, institution = "Univ. of Utrecht" +, address = "Utrecht, Netherlands" +, month = dec +, year = 1989 +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{os-mvm-90 -, author = "M. H. Overmars and Micha Sharir" -, title = "Merging visibility maps" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "168--176" -, precedes = "os-mvm-91" -, cites = "b-hsrr-90, ce-oails-88, d-qbhle-86, egs-ccmfa-90, g-pahle-87i, gao-isost-90, go-nasch-87, ms-rcibt-88, m-eahsr-89, m-wcohs-87, n-flsah-85, os-oshsr-89, py-bpahs-89, rs-eoshs-88i, so-sosah-92, pvy-cavsi-88, s-tsbhl-81, sss-cthsa-74, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "M. H. Overmars and Micha Sharir" +, title = "Merging visibility maps" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "168--176" +, precedes = "os-mvm-91" +, cites = "b-hsrr-90, ce-oails-88, d-qbhle-86, egs-ccmfa-90, g-pahle-87i, gao-isost-90, go-nasch-87, ms-rcibt-88, m-eahsr-89, m-wcohs-87, n-flsah-85, os-oshsr-89, py-bpahs-89, rs-eoshs-88i, so-sosah-92, pvy-cavsi-88, s-tsbhl-81, sss-cthsa-74, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{os-mvm-91 -, author = "M. H. Overmars and Micha Sharir" -, title = "Merging visibility maps" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, year = 1991 -, pages = "35--49" -, succeeds = "os-mvm-90" -, update = "98.03 mitchell" +, author = "M. H. Overmars and Micha Sharir" +, title = "Merging visibility maps" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, year = 1991 +, pages = "35--49" +, succeeds = "os-mvm-90" +, update = "98.03 mitchell" } @article{osbk-mrtsm-90 -, author = "M. H. Overmars and M. H. M. Smid and M. T. de Berg and M. J. van Kreveld" -, title = "Maintaining range trees in secondary memory, part {I}: {P}artitions" -, journal = "Acta Inform." -, volume = 27 -, year = 1990 -, pages = "423--452" -, update = "97.07 agarwal" +, author = "M. H. Overmars and M. H. M. Smid and M. T. de Berg and M. J. van Kreveld" +, title = "Maintaining range trees in secondary memory, part {I}: {P}artitions" +, journal = "Acta Inform." +, volume = 27 +, year = 1990 +, pages = "423--452" +, update = "97.07 agarwal" } @inproceedings{os-rsplf-94 -, author = "M. H. Overmars and A. F. van der Stappen" -, title = "Range Searching and Point Location among Fat Objects" -, editor = "J. van Leeuwen" -, booktitle = "Algorithms -- ESA'94" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "240--253" -, update = "99.11 bibrelex, 97.03 schwarzkopf, 96.05 agarwal, 95.01 held" +, author = "M. H. Overmars and A. F. van der Stappen" +, title = "Range Searching and Point Location among Fat Objects" +, editor = "J. van Leeuwen" +, booktitle = "Algorithms -- ESA'94" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "240--253" +, update = "99.11 bibrelex, 97.03 schwarzkopf, 96.05 agarwal, 95.01 held" } @article{os-rsplf-96 -, author = "M. H. Overmars and A. F. van der Stappen" -, title = "Range Searching and Point Location among Fat Objects" -, journal = "J. Algorithms" -, volume = 21 -, year = 1996 -, pages = "629--656" -, update = "97.03 agarwal+smid, 96.05 agarwal, 95.01 held" +, author = "M. H. Overmars and A. F. van der Stappen" +, title = "Range Searching and Point Location among Fat Objects" +, journal = "J. Algorithms" +, volume = 21 +, year = 1996 +, pages = "629--656" +, update = "97.03 agarwal+smid, 96.05 agarwal, 95.01 held" } @incollection{os-plamp-94 -, author = "M. H. Overmars and P. {\v S}vestka" -, title = "A Probabilistic Learning Approach to Motion Planning" -, booktitle = "Algorithmic Foundations of Robotics" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1995 -, keywords = "probabilistic, motion planning, learning" -, update = "99.11 bibrelex, 98.07 agarwal, 97.03 schwarzkopf" +, author = "M. H. Overmars and P. {\v S}vestka" +, title = "A Probabilistic Learning Approach to Motion Planning" +, booktitle = "Algorithmic Foundations of Robotics" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1995 +, keywords = "probabilistic, motion planning, learning" +, update = "99.11 bibrelex, 98.07 agarwal, 97.03 schwarzkopf" } @article{ow-sms2d-85 -, author = "M. H. Overmars and Emo Welzl" -, title = "A simple method for solving $2$-dimensional static range searching" -, journal = "Bull. EATCS" -, volume = 25 -, year = 1985 -, pages = "31--33" -, keywords = "range search" -, update = "98.03 mitchell" +, author = "M. H. Overmars and Emo Welzl" +, title = "A simple method for solving $2$-dimensional static range searching" +, journal = "Bull. EATCS" +, volume = 25 +, year = 1985 +, pages = "31--33" +, keywords = "range search" +, update = "98.03 mitchell" } @techreport{ow-csvg-87 -, author = "M. H. Overmars and Emo Welzl" -, title = "Construction of Sparse Visibility Graphs" -, type = "Technical {Report}" -, number = "RUU-CS-87-9" -, institution = "Department of Computer Science, University of Utrecht" -, year = 1987 -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "M. H. Overmars and Emo Welzl" +, title = "Construction of Sparse Visibility Graphs" +, type = "Technical {Report}" +, number = "RUU-CS-87-9" +, institution = "Department of Computer Science, University of Utrecht" +, year = 1987 +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{ow-nmcvg-88 -, author = "M. H. Overmars and Emo Welzl" -, title = "New methods for computing visibility graphs" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "164--171" -, cites = "aaghi-vdp-86, eg-tsa-86, gm-osacv-87, hs-ndssg-86, h-fvgsp-87, l-prp-78, lw-apcfp-79, ow-csvg-87, ss-spps-84, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "M. H. Overmars and Emo Welzl" +, title = "New methods for computing visibility graphs" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "164--171" +, cites = "aaghi-vdp-86, eg-tsa-86, gm-osacv-87, hs-ndssg-86, h-fvgsp-87, l-prp-78, lw-apcfp-79, ow-csvg-87, ss-spps-84, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex+mitchell" } @inproceedings{ow-ccp-85 -, author = "M. H. Overmars and Emo Welzl" -, title = "The complexity of cutting paper" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "316--321" -, keywords = "shape, dynamic programming" -, cites = "ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "M. H. Overmars and Emo Welzl" +, title = "The complexity of cutting paper" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "316--321" +, keywords = "shape, dynamic programming" +, cites = "ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{ow-rv-88 -, author = "M. H. Overmars and D. Wood" -, title = "On rectangular visibility" -, journal = "J. Algorithms" -, volume = 9 -, year = 1988 -, pages = "372--390" -, keywords = "isothetic rectangles" -, succeeds = "mow-vv-87" -, update = "93.09 milone+mitchell" +, author = "M. H. Overmars and D. Wood" +, title = "On rectangular visibility" +, journal = "J. Algorithms" +, volume = 9 +, year = 1988 +, pages = "372--390" +, keywords = "isothetic rectangles" +, succeeds = "mow-vv-87" +, update = "93.09 milone+mitchell" } @inproceedings{oy-nubkm-88 -, author = "M. H. Overmars and C.-K. Yap" -, title = "New upper bounds in {Klee}'s measure problem" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "550--556" -, keywords = "$d$-dimensional" -, comments = "$O(n^{d/2}\log n)$ time, $O(n)$ space" -, succeeds = "k-cmbbc-77" -, precedes = "oy-nubkm-91" +, author = "M. H. Overmars and C.-K. Yap" +, title = "New upper bounds in {Klee}'s measure problem" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "550--556" +, keywords = "$d$-dimensional" +, comments = "$O(n^{d/2}\log n)$ time, $O(n)$ space" +, succeeds = "k-cmbbc-77" +, precedes = "oy-nubkm-91" } @article{oy-nubkm-91 -, author = "M. H. Overmars and C.-K. Yap" -, title = "New upper bounds in {Klee}'s measure problem" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "1034--1045" -, succeeds = "oy-nubkm-88" +, author = "M. H. Overmars and C.-K. Yap" +, title = "New upper bounds in {Klee}'s measure problem" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "1034--1045" +, succeeds = "oy-nubkm-88" } @article{o-csgtt-96 -, author = "J. Owen" -, title = "Constraint on simple geometry in two and three dimensions" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "421--434" -, update = "97.03 devillers" +, author = "J. Owen" +, title = "Constraint on simple geometry in two and three dimensions" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "421--434" +, update = "97.03 devillers" } @mastersthesis{o-innit-92 -, author = "S. J. Owen" -, title = "An implementation of natural neighbor interpolation in three dimensions" -, journal = "Master's thesis" -, school = "Brigham Young University" -, year = 1992 -, keywords = "master thesis" -, update = "01.07 devillers, 00.03 devillers" +, author = "S. J. Owen" +, title = "An implementation of natural neighbor interpolation in three dimensions" +, journal = "Master's thesis" +, school = "Brigham Young University" +, year = 1992 +, keywords = "master thesis" +, update = "01.07 devillers, 00.03 devillers" } @book{o-ar-85 -, author = "T. Owen" -, title = "Assembly with Robots" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1985 -, update = "98.03 bibrelex" +, author = "T. Owen" +, title = "Assembly with Robots" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1985 +, update = "98.03 bibrelex" } @article{o-sft-85 -, author = "A. Oxley" -, title = "Surface Fitting by Triangulation" -, journal = "Comput. J." -, volume = 28 -, number = 3 -, year = 1985 -, pages = "335--339" -, annote = "Almost content-free. Implementation of Lewis-Robinson - algorithm. Suggests constraining of non-boundary edges. - Suggests ear cutting to construct initial - triangulation." +, author = "A. Oxley" +, title = "Surface Fitting by Triangulation" +, journal = "Comput. J." +, volume = 28 +, number = 3 +, year = 1985 +, pages = "335--339" +, annote = "Almost content-free. Implementation of Lewis-Robinson + algorithm. Suggests constraining of non-boundary edges. + Suggests ear cutting to construct initial + triangulation." } @inproceedings{o-ptilc-80 -, author = "T. Ozawa" -, title = "Planarity Testing for {IC} Layout with Constraints for Pin Order and Congestion Between Pins" -, booktitle = "IEEE Conf. Record of the 14th Asilomar Conf. on Circuits, Systems and Computers" -, year = 1980 -, pages = "188--192" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "T. Ozawa" +, title = "Planarity Testing for {IC} Layout with Constraints for Pin Order and Congestion Between Pins" +, booktitle = "IEEE Conf. Record of the 14th Asilomar Conf. on Circuits, Systems and Computers" +, year = 1980 +, pages = "188--192" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @incollection{ot-gpaia-81 -, author = "T. Ozawa and H. Takahashi" -, title = "A Graph-planarization Algorithm and its Applications to Random Graphs" -, booktitle = "Graph Theory and Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 108 -, publisher = "Springer-Verlag" -, year = 1981 -, pages = "95--107" -, keywords = "graph drawing" -, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" +, author = "T. Ozawa and H. Takahashi" +, title = "A Graph-planarization Algorithm and its Applications to Random Graphs" +, booktitle = "Graph Theory and Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 108 +, publisher = "Springer-Verlag" +, year = 1981 +, pages = "95--107" +, keywords = "graph drawing" +, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" } @article{p-ttrms-98 -, author = "J{\'a}nos Pach" -, title = "A {Tverberg}-type result on multicolored simplices" -, chapter = 1 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1998 -, pages = "71--76" -, update = "98.11 devillers, 97.11 orourke" +, author = "J{\'a}nos Pach" +, title = "A {Tverberg}-type result on multicolored simplices" +, chapter = 1 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1998 +, pages = "71--76" +, update = "98.11 devillers, 97.11 orourke" } @article{p-cpcp-86 -, author = "J. Pach" -, title = "Covering the plane with convex polygons" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "73--81" +, author = "J. Pach" +, title = "Covering the plane with convex polygons" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "73--81" } @incollection{p-fpc-97 -, author = "J. Pach" -, title = "Finite point configurations" -, chapter = 1 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "3--18" -, update = "97.11 orourke" +, author = "J. Pach" +, title = "Finite point configurations" +, chapter = 1 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "3--18" +, update = "97.11 orourke" } @book{p-ntdcg-93 -, title = "New Trends in Discrete and Computational Geometry" -, editor = "J. Pach" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, keywords = "discrete/computational geometry, book, survey papers" -, comments = "contains gs-caa-93, s-barga-93, m-encg-93, k-cpvc-93, gp-asotd-93, km-hart-93, gpw-gtt-93, b-hlcpr-93, b-gcabt-93, fk-rrtpc-93, mp-rdcg-93, and k-stces-93" -, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 pocchiola, 93.09 erickson" +, title = "New Trends in Discrete and Computational Geometry" +, editor = "J. Pach" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, keywords = "discrete/computational geometry, book, survey papers" +, comments = "contains gs-caa-93, s-barga-93, m-encg-93, k-cpvc-93, gp-asotd-93, km-hart-93, gpw-gtt-93, b-hlcpr-93, b-gcabt-93, fk-rrtpc-93, mp-rdcg-93, and k-stces-93" +, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 pocchiola, 93.09 erickson" } @incollection{p-nggt-91 -, author = "J{\'a}nos Pach" -, title = "Notes on geometric graph theory" -, editor = "J. E. Goodman and R. Pollack and W. Steiger" -, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" -, publisher = "American Mathematical Society, Association for Computing Machinery" -, year = 1991 -, pages = "273--285" -, comments = "survey paper, geometric graphs" -, update = "99.11 bibrelex, 97.07 agarwal" +, author = "J{\'a}nos Pach" +, title = "Notes on geometric graph theory" +, editor = "J. E. Goodman and R. Pollack and W. Steiger" +, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" +, publisher = "American Mathematical Society, Association for Computing Machinery" +, year = 1991 +, pages = "273--285" +, comments = "survey paper, geometric graphs" +, update = "99.11 bibrelex, 97.07 agarwal" } @article{p-ip-78 -, author = "J. Pach" -, title = "On an isoperimetric problem" -, journal = "Studia Sci. Math. Hungar." -, volume = 13 -, year = 1978 -, pages = "43--45" +, author = "J. Pach" +, title = "On an isoperimetric problem" +, journal = "Studia Sci. Math. Hungar." +, volume = 13 +, year = 1978 +, pages = "43--45" } @inproceedings{p-ssp-98 -, author = "J{\'a}nos Pach" -, title = "Systems of Segments in the Plane" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "5--6" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "J{\'a}nos Pach" +, title = "Systems of Segments in the Plane" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "5--6" +, update = "00.03 bibrelex, 98.07 bibrelex" } @book{pa-cg-95 -, author = "Janos Pach and Pankaj K. Agarwal" -, title = "Combinatorial Geometry" -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1995 -, isbn = "0-471-58890-3" -, update = "96.05 agarwal+smid, 95.09 mitchell, 95.05 orourke" +, author = "Janos Pach and Pankaj K. Agarwal" +, title = "Combinatorial Geometry" +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1995 +, isbn = "0-471-58890-3" +, update = "96.05 agarwal+smid, 95.09 mitchell, 95.05 orourke" } @inproceedings{ppw-wplls-90 -, author = "J. Pach and R. Pollack and Emo Welzl" -, title = "Weaving patterns of lines and line segments in space" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "439--446" -, update = "98.03 mitchell" +, author = "J. Pach and R. Pollack and Emo Welzl" +, title = "Weaving patterns of lines and line segments in space" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "439--446" +, update = "98.03 mitchell" } @article{ppw-wplls-93 -, author = "J. Pach and R. Pollack and Emo Welzl" -, title = "Weaving Patterns of Lines and Line Segments in Space" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "561--571" -, update = "98.03 mitchell, 97.03 gaertner+salinger" +, author = "J. Pach and R. Pollack and Emo Welzl" +, title = "Weaving Patterns of Lines and Line Segments in Space" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "561--571" +, update = "98.03 mitchell, 97.03 gaertner+salinger" } @article{pr-cpls-98 -, author = "J{\'a}nos Pach and Eduardo Rivera-Campo" -, title = "On circumscribing polygons for line segments" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "121--124" -, update = "98.11 devillers" +, author = "J{\'a}nos Pach and Eduardo Rivera-Campo" +, title = "On circumscribing polygons for line segments" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "121--124" +, update = "98.11 devillers" } @inproceedings{pss-ucc3d-01 -, author = "Janos Pach and Ido Safruit and Micha Sharir" -, title = "The union of congruent cubes in three dimensions" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "19--28" -, update = "01.07 orourke" +, author = "Janos Pach and Ido Safruit and Micha Sharir" +, title = "The union of congruent cubes in three dimensions" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "19--28" +, update = "01.07 orourke" } @inproceedings{pss-acn-94 -, author = "J. Pach and F. Shahrokhi and M. Szegedy" -, title = "Applications of the Crossing Number" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "198--202" -, cites = "ddsv-espgt-88, e-sdnp-46, gm-psen-90, gkk-fdsp-, hp-an1-34, k-epcg-79, l-civ-83, lt-stpg-79, m-fsscs-86, op-eggnv-91, p-nggt-91, pt-sgadt-93, s-jttm-87, sw-cplh-94, u-cav-84, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "J. Pach and F. Shahrokhi and M. Szegedy" +, title = "Applications of the Crossing Number" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "198--202" +, cites = "ddsv-espgt-88, e-sdnp-46, gm-psen-90, gkk-fdsp-, hp-an1-34, k-epcg-79, l-civ-83, lt-stpg-79, m-fsscs-86, op-eggnv-91, p-nggt-91, pt-sgadt-93, s-jttm-87, sw-cplh-94, u-cav-84, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @article{pss-acn-96 -, author = "J. Pach and F. Shahrokhi and M. Szegedy" -, title = "Applications of the Crossing Number" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "111--117" -, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" -, keywords = "graph drawing, straight-line, geometric graph theory" -, succeeds = "pss-acn-94" -, update = "96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" +, author = "J. Pach and F. Shahrokhi and M. Szegedy" +, title = "Applications of the Crossing Number" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "111--117" +, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" +, keywords = "graph drawing, straight-line, geometric graph theory" +, succeeds = "pss-acn-94" +, update = "96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" } @article{ps-bupcs-99 -, author = "J. Pach and M. Sharir" -, title = "On the Boundary of the Union of Planar Convex Sets" -, journal = "Discrete Comput. Geom." -, volume = 21 -, year = 1999 -, pages = "321--328" -, succeeds = "ps-rivbu-97" -, update = "00.03 bibrelex, 98.03 agarwal" +, author = "J. Pach and M. Sharir" +, title = "On the Boundary of the Union of Planar Convex Sets" +, journal = "Discrete Comput. Geom." +, volume = 21 +, year = 1999 +, pages = "321--328" +, succeeds = "ps-rivbu-97" +, update = "00.03 bibrelex, 98.03 agarwal" } @article{ps-nibpc-98 -, author = "J. Pach and M. Sharir" -, title = "On the number of incidences between points and curves" -, journal = "Combinatorics, Probability, and Computing" -, volume = 7 -, year = 1998 -, pages = "in press" -, update = "98.03 agarwal" +, author = "J. Pach and M. Sharir" +, title = "On the number of incidences between points and curves" +, journal = "Combinatorics, Probability, and Computing" +, volume = 7 +, year = 1998 +, pages = "in press" +, update = "98.03 agarwal" } @inproceedings{ps-vvasq-89 -, author = "J. Pach and Micha Sharir" -, title = "On vertical visibility in arrangements of segments and the queue size in the {Bentley}-{Ottman} line sweeping algorithm" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 48 -, precedes = "ps-vvasq-91" -, update = "98.03 mitchell" +, author = "J. Pach and Micha Sharir" +, title = "On vertical visibility in arrangements of segments and the queue size in the {Bentley}-{Ottman} line sweeping algorithm" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 48 +, precedes = "ps-vvasq-91" +, update = "98.03 mitchell" } @article{ps-vvasq-91 -, author = "J. Pach and Micha Sharir" -, title = "On vertical visibility in arrangements of segments and the queue size in the {Bentley}-{Ottmann} line sweeping algorithm" -, journal = "SIAM J. Comput." -, volume = 20 -, year = 1991 -, pages = "460--470" -, succeeds = "ps-vvasq-89" -, update = "98.03 mitchell, 97.11 icking" +, author = "J. Pach and Micha Sharir" +, title = "On vertical visibility in arrangements of segments and the queue size in the {Bentley}-{Ottmann} line sweeping algorithm" +, journal = "SIAM J. Comput." +, volume = 20 +, year = 1991 +, pages = "460--470" +, succeeds = "ps-vvasq-89" +, update = "98.03 mitchell, 97.11 icking" } @techreport{ps-rivbu-97 -, author = "Janos Pach and Micha Sharir" -, title = "Regular and Irregular Vertices on the Boundary of the Union of Planar Convex Sets" -, type = "Manuscript" -, institution = "Tel Aviv University" -, year = 1997 -, precedes = "ps-bupcs-99" -, update = "00.03 bibrelex, 98.03 mitchell" +, author = "Janos Pach and Micha Sharir" +, title = "Regular and Irregular Vertices on the Boundary of the Union of Planar Convex Sets" +, type = "Manuscript" +, institution = "Tel Aviv University" +, year = 1997 +, precedes = "ps-bupcs-99" +, update = "00.03 bibrelex, 98.03 mitchell" } @techreport{ps-raprp-90 -, author = "J. Pach and Micha Sharir" -, title = "Repeated Angles in the Plane and Related Problems" -, type = "Technical {Report}" -, number = "90-10" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "J. Pach and Micha Sharir" +, title = "Repeated Angles in the Plane and Related Problems" +, type = "Technical {Report}" +, number = "90-10" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, update = "98.03 mitchell, 93.09 milone+mitchell" } @article{ps-raprp-92 -, author = "J. Pach and Micha Sharir" -, title = "Repeated angles in the plane and related problems" -, journal = "J. Combin. Theory Ser. A" -, volume = 59 -, year = 1992 -, pages = "12--22" -, update = "98.03 mitchell" +, author = "J. Pach and Micha Sharir" +, title = "Repeated angles in the plane and related problems" +, journal = "J. Combin. Theory Ser. A" +, volume = 59 +, year = 1992 +, pages = "12--22" +, update = "98.03 mitchell" } @techreport{ps-ueplf-87 -, author = "J. Pach and Micha Sharir" -, title = "The upper envelope of piecewise linear functions and the boundary of a region enclosed by convex plates: Combinatorial analysis" -, type = "Report" -, number = 279 -, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1987 -, precedes = "ps-ueplf-89" -, update = "98.03 agarwal+mitchell" +, author = "J. Pach and Micha Sharir" +, title = "The upper envelope of piecewise linear functions and the boundary of a region enclosed by convex plates: Combinatorial analysis" +, type = "Report" +, number = 279 +, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1987 +, precedes = "ps-ueplf-89" +, update = "98.03 agarwal+mitchell" } @article{ps-ueplf-89 -, author = "J. Pach and Micha Sharir" -, title = "The upper envelope of piecewise linear functions and the boundary of a region enclosed by convex plates: combinatorial analysis" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "291--309" -, keywords = "upper envelope" -, succeeds = "ps-ueplf-87" -, update = "98.03 mitchell" +, author = "J. Pach and Micha Sharir" +, title = "The upper envelope of piecewise linear functions and the boundary of a region enclosed by convex plates: combinatorial analysis" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "291--309" +, keywords = "upper envelope" +, succeeds = "ps-ueplf-87" +, update = "98.03 mitchell" } @article{pst-nbcn-00 -, author = "J. Pach and J. Spencer and G. T\'{o}th" -, title = "New Bounds on Crossing Numbers" -, journal = "Discrete Comput. Geom." -, volume = 24 -, year = 2000 -, pages = "623--644" -, update = "01.04 pocchiola" +, author = "J. Pach and J. Spencer and G. T\'{o}th" +, title = "New Bounds on Crossing Numbers" +, journal = "Discrete Comput. Geom." +, volume = 24 +, year = 2000 +, pages = "623--644" +, update = "01.04 pocchiola" } @inproceedings{pss-ubnpk-89 -, author = "J. Pach and W. Steiger and E. Szemer{\'e}di" -, title = "An upper bound on the number of planar $k$-sets" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "72--79" -, precedes = "pss-ubnpk-92" +, author = "J. Pach and W. Steiger and E. Szemer{\'e}di" +, title = "An upper bound on the number of planar $k$-sets" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "72--79" +, precedes = "pss-ubnpk-92" } @techreport{pss-ubnpk-90 -, author = "J. Pach and W. Steiger and E. Szemeredi" -, title = "An Upper Bound on the Number of Planar $k$-Sets" -, type = "Technical {Report}" -, number = "90-12" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "J. Pach and W. Steiger and E. Szemeredi" +, title = "An Upper Bound on the Number of Planar $k$-Sets" +, type = "Technical {Report}" +, number = "90-12" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, update = "93.09 milone+mitchell" } @article{pss-ubnpk-92 -, author = "J. Pach and W. Steiger and E. Szemer{\'e}di" -, title = "An upper bound on the number of planar $k$-sets" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "109--123" -, succeeds = "pss-ubnpk-89" -, update = "93.05 jones" -, annote = "bound of $O(n \sqrt{k} / \log^* k)$ for any planar +, author = "J. Pach and W. Steiger and E. Szemer{\'e}di" +, title = "An upper bound on the number of planar $k$-sets" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "109--123" +, succeeds = "pss-ubnpk-89" +, update = "93.05 jones" +, annote = "bound of $O(n \sqrt{k} / \log^* k)$ for any planar configuration of size $n$" } @inproceedings{pt-cg-00 -, author = "J{\'a}nos Pach and G{\'a}bor Tardos" -, title = "Cutting Glass" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "360--369" -, update = "00.11 jones" +, author = "J{\'a}nos Pach and G{\'a}bor Tardos" +, title = "Cutting Glass" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "360--369" +, update = "00.11 jones" } @inproceedings{ptt-tdgdg-97 -, author = "J{\'a}nos Pach and Torsten Thiele and G{\'e}za T{\'o}th" -, title = "Three-dimensional Grid Drawings of Graphs" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "47--51" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "J{\'a}nos Pach and Torsten Thiele and G{\'e}za T{\'o}th" +, title = "Three-dimensional Grid Drawings of Graphs" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "47--51" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{pt-sgadt-93 -, author = "J. Pach and J. T{\"o}r{\H o}csik" -, title = "Some geometric applications of {Dilworth's} theorem" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "264--279" -, cites = "acns-cfs-82, ae-degg-89, ah-g-66, clr-ia-90, d-dtpos-50, dsw-bvcnh-, e-sdnp-46, es-cpg-35, gkk-fdsp-, grs-rt-90, gl-ccpri-85, hp-an1-34, k-epcg-79, lmpt-rtrpc-94, op-eggnv-91, r-pfl-30, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "J. Pach and J. T{\"o}r{\H o}csik" +, title = "Some geometric applications of {Dilworth's} theorem" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "264--279" +, cites = "acns-cfs-82, ae-degg-89, ah-g-66, clr-ia-90, d-dtpos-50, dsw-bvcnh-, e-sdnp-46, es-cpg-35, gkk-fdsp-, grs-rt-90, gl-ccpri-85, hp-an1-34, k-epcg-79, lmpt-rtrpc-94, op-eggnv-91, r-pfl-30, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @techreport{pt-gdfcp-96 -, author = "J. Pach and G. Toth" -, title = "Graphs drawn with few crossings per edge" -, type = "Preprint" -, institution = "??" -, year = 1996 -, update = "98.07 bibrelex" +, author = "J. Pach and G. Toth" +, title = "Graphs drawn with few crossings per edge" +, type = "Preprint" +, institution = "??" +, year = 1996 +, update = "98.07 bibrelex" } @article{pw-epgfv-01 -, author = "Janos Pach and Rephael Wenger" -, title = "Embedding planar graphs at fixed vertex locations" -, journal = "Graphs Combin." -, volume = 17 -, year = 2001 -, pages = "717--728" -, update = "02.03 wenger" +, author = "Janos Pach and Rephael Wenger" +, title = "Embedding planar graphs at fixed vertex locations" +, journal = "Graphs Combin." +, volume = 17 +, year = 2001 +, pages = "717--728" +, update = "02.03 wenger" } @techreport{pw-snben-89 -, author = "J. Pach and G. Woeginger" -, title = "Some new bounds for epsilon-nets" -, type = "Report" -, number = "B-89-08 Serie B" -, institution = "Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, year = 1989 -, update = "97.11 bibrelex" +, author = "J. Pach and G. Woeginger" +, title = "Some new bounds for epsilon-nets" +, type = "Report" +, number = "B-89-08 Serie B" +, institution = "Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{pw-snben-90 -, author = "J. Pach and G. Woeginger" -, title = "Some new bounds for epsilon-nets" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "10--15" -, precedes = "kpw-atben-92" -, cites = "a-dapal-89, behw-clgcv-89, cf-dvrsi-88, cw-qorss-89, c-narsc-87, cegsw-ccbac-88, e-acg-87, hw-ensrq-87, m-cen-89, msw-hnlls-90, p-cpcp-86, ZZZ" -, update = "97.11 bibrelex, 93.09 rote" +, author = "J. Pach and G. Woeginger" +, title = "Some new bounds for epsilon-nets" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "10--15" +, precedes = "kpw-atben-92" +, cites = "a-dapal-89, behw-clgcv-89, cf-dvrsi-88, cw-qorss-89, c-narsc-87, cegsw-ccbac-88, e-acg-87, hw-ensrq-87, m-cen-89, msw-hnlls-90, p-cpcp-86, ZZZ" +, update = "97.11 bibrelex, 93.09 rote" } @inproceedings{ph-srr-01 -, author = "Eli Packer and Dan Halperin" -, title = "Snap Rounding Revisited" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "82--85" -, update = "01.04 icking" +, author = "Eli Packer and Dan Halperin" +, title = "Snap Rounding Revisited" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "82--85" +, update = "01.04 icking" } @book{p-gg5-95 -, title = "Graphics Gems V" -, editor = "Alan W. Paeth" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1995 -, isbn = "0-12-543455-3" -, update = "98.07 vismara, 95.09 mitchell" +, title = "Graphics Gems V" +, editor = "Alan W. Paeth" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1995 +, isbn = "0-12-543455-3" +, update = "98.07 vismara, 95.09 mitchell" } @incollection{p-itsh-94 -, author = "Alan W. Paeth" -, title = "Ideal Tiles for Shading and Halftoning" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "486--492" -, keywords = "bitblt, dither, stipple" -, update = "94.09 heckbert" -, annote = "Discusses heuristics and design techniques for top-quality +, author = "Alan W. Paeth" +, title = "Ideal Tiles for Shading and Halftoning" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "486--492" +, keywords = "bitblt, dither, stipple" +, update = "94.09 heckbert" +, annote = "Discusses heuristics and design techniques for top-quality dither and stipple patterns." } @article{p-mstcm-74 -, author = "Page" -, title = "A minimum spanning tree clustering method" -, journal = "Commun. ACM" -, volume = 17 -, number = 6 -, year = 1974 -, update = "97.11 bibrelex" +, author = "Page" +, title = "A minimum spanning tree clustering method" +, journal = "Commun. ACM" +, volume = 17 +, number = 6 +, year = 1974 +, update = "97.11 bibrelex" } @incollection{pst-ttso-93 -, author = "B.-U. Pagel and H.-W. Six and H. Toben" -, title = "The transformation technique for spatial objects revisited" -, booktitle = "Proc. 3rd Intl. Symp. on Large Spatial Databases" -, series = "Lecture Notes Comput. Sci." -, volume = 692 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "73--88" -, update = "97.07 agarwal" +, author = "B.-U. Pagel and H.-W. Six and H. Toben" +, title = "The transformation technique for spatial objects revisited" +, booktitle = "Proc. 3rd Intl. Symp. on Large Spatial Databases" +, series = "Lecture Notes Comput. Sci." +, volume = 692 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "73--88" +, update = "97.07 agarwal" } @article{pr-cpm-00 -, author = "R. Pajarola and J. Rossignac" -, title = "Compressed progressive meshes" -, journal = "IEEE Transactions on Visualization and Computer Graphics" -, volume = 6 -, number = 1 -, year = 2000 -, pages = "79--93" -, update = "01.07 devillers" +, author = "R. Pajarola and J. Rossignac" +, title = "Compressed progressive meshes" +, journal = "IEEE Transactions on Visualization and Computer Graphics" +, volume = 6 +, number = 1 +, year = 2000 +, pages = "79--93" +, update = "01.07 devillers" } @phdthesis{p-wvrp-90 -, author = "S. P. Pal" -, title = "Weak Visibility and Related Problems in simple polygons" -, type = "Ph.{D}. Thesis" -, school = "Indian Inst. Science" -, year = 1990 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex, 94.05 ghosh" +, author = "S. P. Pal" +, title = "Weak Visibility and Related Problems in simple polygons" +, type = "Ph.{D}. Thesis" +, school = "Indian Inst. Science" +, year = 1990 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex, 94.05 ghosh" } @inproceedings{pdv-oppt-90 -, author = "S. P. Pal and B. DasGupta and C. E. {Veni Madhavan}" -, title = "Optimal polygon placement by translation" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "164--171" -, cites = "ab-scsp-87, bfm-pct-86, c-pcp-83, ce-oails-88, f-fapct-85, gjpt-tsp-78, l-spcsa-83, lw-apcfp-79, pdv-oppt-90t, ps-cgi-85, ZZZ" -, update = "98.07 bibrelex" +, author = "S. P. Pal and B. DasGupta and C. E. {Veni Madhavan}" +, title = "Optimal polygon placement by translation" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "164--171" +, cites = "ab-scsp-87, bfm-pct-86, c-pcp-83, ce-oails-88, f-fapct-85, gjpt-tsp-78, l-spcsa-83, lw-apcfp-79, pdv-oppt-90t, ps-cgi-85, ZZZ" +, update = "98.07 bibrelex" } @techreport{pdv-oppt-90t -, author = "S. P. Pal and C. E. Dasgupta and C. E. {Veni Madhavan}" -, title = "Optimal polygon placement by translation" -, type = "Technical {Report}" -, number = "IIsc-CSA-90-7" -, institution = "Department of Computer Science and Automation, Indian Institute of Science" -, address = "Bangalore, India" -, year = 1990 -, update = "98.07 bibrelex" +, author = "S. P. Pal and C. E. Dasgupta and C. E. {Veni Madhavan}" +, title = "Optimal polygon placement by translation" +, type = "Technical {Report}" +, number = "IIsc-CSA-90-7" +, institution = "Department of Computer Science and Automation, Indian Institute of Science" +, address = "Bangalore, India" +, year = 1990 +, update = "98.07 bibrelex" } @article{pr-dhsac-90 -, author = "Oscar Palacios-Velez and Baltasar Cuevas Renaud" -, title = "Dynamic Hierarchical Subdivision Algorithm For Computing {Delaunay} Triangulations And Other Closest-Point Problems" -, journal = "ACM Trans. Math. Softw." -, volume = 16 -, number = 3 -, month = sep -, year = 1990 -, pages = "275--292" -, keywords = "search methods, closest point problems, computational geometry, Delaunay triangulation, hierarchical search, mathematical software" -, annote = "By keeping around all the triangles formed in the - incremental algorithm, $O(\log n)$ search time is - obtained, at the cost of 3 times as much space. (And - worst case space is quadratic.)" -, abstract = "A new, dynamic, hierarchical subdivision and recursive - algorithm for computing Delaunay triangulations is - presented. The algorithm has four main steps: (1) - location of the already formed triangle that contains - the point to be inserted, (2) identification of other - adjoining triangles whose circumcircle contains the - point, (3) formation of the new triangles, and (4) - database update. Different search procedures are - analyzed. It is shown that the 'oriented walk' search - has a better performance than the asymptotically - optimal 'hierarchical subdivision' search, when the - total number of points is less than 417 or when the - points are presorted by distance or coordinates. The - algorithm has point-deletion capabilities which are - discussed in detail. (Author abstract) 25 Refs." +, author = "Oscar Palacios-Velez and Baltasar Cuevas Renaud" +, title = "Dynamic Hierarchical Subdivision Algorithm For Computing {Delaunay} Triangulations And Other Closest-Point Problems" +, journal = "ACM Trans. Math. Softw." +, volume = 16 +, number = 3 +, month = sep +, year = 1990 +, pages = "275--292" +, keywords = "search methods, closest point problems, computational geometry, Delaunay triangulation, hierarchical search, mathematical software" +, annote = "By keeping around all the triangles formed in the + incremental algorithm, $O(\log n)$ search time is + obtained, at the cost of 3 times as much space. (And + worst case space is quadratic.)" +, abstract = "A new, dynamic, hierarchical subdivision and recursive + algorithm for computing Delaunay triangulations is + presented. The algorithm has four main steps: (1) + location of the already formed triangle that contains + the point to be inserted, (2) identification of other + adjoining triangles whose circumcircle contains the + point, (3) formation of the new triangles, and (4) + database update. Different search procedures are + analyzed. It is shown that the 'oriented walk' search + has a better performance than the asymptotically + optimal 'hierarchical subdivision' search, when the + total number of points is less than 417 or when the + points are presorted by distance or coordinates. The + algorithm has point-deletion capabilities which are + discussed in detail. (Author abstract) 25 Refs." } @inproceedings{ps-crrbs-93 -, author = "Larry Palazzi and Jack Snoeyink" -, title = "Counting and Reporting Red/Blue Segment Intersections" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "530--540" -, update = "96.05 agarwal, 93.09 smid, 93.05 jones" +, author = "Larry Palazzi and Jack Snoeyink" +, title = "Counting and Reporting Red/Blue Segment Intersections" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "530--540" +, update = "96.05 agarwal, 93.09 smid, 93.05 jones" } @article{ps-crrbs-94 -, author = "L. Palazzi and J. Snoeyink" -, title = "Counting and reporting red/blue segment intersections" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 56 -, number = 4 -, year = 1994 -, pages = "304--311" -, update = "98.03 bibrelex" +, author = "L. Palazzi and J. Snoeyink" +, title = "Counting and reporting red/blue segment intersections" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 56 +, number = 4 +, year = 1994 +, pages = "304--311" +, update = "98.03 bibrelex" } @inproceedings{p-ltaco-01 -, author = "Leonidas Palios" -, title = "A Linear-Time Algorithm to Compute the Optimal Bridge Connecting Two Disjoint Convex Polygons" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "48--52" -, update = "01.04 icking" +, author = "Leonidas Palios" +, title = "A Linear-Time Algorithm to Compute the Optimal Bridge Connecting Two Disjoint Convex Polygons" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "48--52" +, update = "01.04 icking" } @inproceedings{p-nep-94 -, author = "L. Palios" -, title = "On the Number of Extrema of a Polyhedron" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "320--325" -, cites = "bd-cdpr-92, cp-tncp-90, cp-dbnp-92, cs-bst-94, m-mdscg-84, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "L. Palios" +, title = "On the Number of Extrema of a Polyhedron" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "320--325" +, cites = "bd-cdpr-92, cp-tncp-90, cp-dbnp-92, cs-bst-94, m-mdscg-84, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @techreport{p-ot3dr-94t -, author = "L. Palios" -, title = "Optimal Tetrahedralization of the 3d-region 'between' a Convex Polyhedron and a Convex Polygon" -, type = "Research Report" -, institution = "The Geometry Center, University of Minnesota" -, year = 1994 -, succeeds = "p-ot3dr-94" -, update = "98.11 bibrelex" +, author = "L. Palios" +, title = "Optimal Tetrahedralization of the 3d-region 'between' a Convex Polyhedron and a Convex Polygon" +, type = "Research Report" +, institution = "The Geometry Center, University of Minnesota" +, year = 1994 +, succeeds = "p-ot3dr-94" +, update = "98.11 bibrelex" } @inproceedings{p-ot3dr-94 -, author = "L. Palios" -, title = "Optimal Tetrahedralization of the $3$d Region ``Between'' a Convex Polyhedron and a Convex Polygon" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "350--356" -, precedes = "p-ot3dr-96, p-ot3dr-94t" -, cites = "b-prcv-75, b-ct-93, be-mgot-92t, cs-bst-94, e-acg-87, gp-cdpb-88, p-ot3dr-94t, mp-fitcp-78, ps-cgi-85, gs-pmgsc-85, ZZZ" -, update = "98.11 bibrelex, 97.03 devillers+smid, 94.09 jones" +, author = "L. Palios" +, title = "Optimal Tetrahedralization of the $3$d Region ``Between'' a Convex Polyhedron and a Convex Polygon" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "350--356" +, precedes = "p-ot3dr-96, p-ot3dr-94t" +, cites = "b-prcv-75, b-ct-93, be-mgot-92t, cs-bst-94, e-acg-87, gp-cdpb-88, p-ot3dr-94t, mp-fitcp-78, ps-cgi-85, gs-pmgsc-85, ZZZ" +, update = "98.11 bibrelex, 97.03 devillers+smid, 94.09 jones" } @article{p-ot3dr-96 -, author = "L. Palios" -, title = "Optimal Tetrahedralization of the $3$d Region ``Between'' a Convex Polyhedron and a Convex Polygon" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "263--276" -, succeeds = "p-ot3dr-94" -, update = "97.03 devillers+smid" +, author = "L. Palios" +, title = "Optimal Tetrahedralization of the $3$d Region ``Between'' a Convex Polyhedron and a Convex Polygon" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "263--276" +, succeeds = "p-ot3dr-94" +, update = "97.03 devillers+smid" } @article{pg-cdaus-95 -, author = "I. J. Palmer and R. L. Grimsdale" -, title = "Collision Detection for Animation Using Sphere-Trees" -, journal = "Comput. Graph. Forum" -, volume = 14 -, number = 2 -, month = jun -, year = 1995 -, pages = "105--116" -, update = "96.01 held" +, author = "I. J. Palmer and R. L. Grimsdale" +, title = "Collision Detection for Animation Using Sphere-Trees" +, journal = "Comput. Graph. Forum" +, volume = 14 +, number = 2 +, month = jun +, year = 1995 +, pages = "105--116" +, update = "96.01 held" } @phdthesis{p-ccmsp-87 -, author = "R. S. Palmer" -, title = "Computational Complexity of Motion and Stablility of Polygons" -, school = "Cornell Univ." -, address = "Ithaca, NY" -, month = jan -, year = 1987 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "R. S. Palmer" +, title = "Computational Complexity of Motion and Stablility of Polygons" +, school = "Cornell Univ." +, address = "Ithaca, NY" +, month = jan +, year = 1987 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{pr-epsls-85 -, author = "V. Pan and J. Reif" -, title = "Efficient parallel solution of linear systems" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "143--152" -, update = "98.03 bibrelex" +, author = "V. Pan and J. Reif" +, title = "Efficient parallel solution of linear systems" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "143--152" +, update = "98.03 bibrelex" } @article{p-pcpgs-96 -, author = "V. Y. Pan" -, title = "Parallel computation of polynomial {GCD} and some related parallel computations over abstract fields" -, journal = "Theoret. Comput. Sci." -, volume = 162 -, number = 2 -, year = 1996 -, pages = "173--223" -, update = "98.07 bibrelex" +, author = "V. Y. Pan" +, title = "Parallel computation of polynomial {GCD} and some related parallel computations over abstract fields" +, journal = "Theoret. Comput. Sci." +, volume = 162 +, number = 2 +, year = 1996 +, pages = "173--223" +, update = "98.07 bibrelex" } @article{pys-antcm-97 -, author = "V. Y. Pan and Y. Yu and C. Steward" -, title = "Algebraic and numerical techniques for the computation of matrix determinants" -, journal = "Comput. Math. Appl." -, volume = "??" -, year = 1997 -, note = "To appear" -, update = "98.07 bibrelex" +, author = "V. Y. Pan and Y. Yu and C. Steward" +, title = "Algebraic and numerical techniques for the computation of matrix determinants" +, journal = "Comput. Math. Appl." +, volume = "??" +, year = 1997 +, note = "To appear" +, update = "98.07 bibrelex" } @inproceedings{pd-nodec-95 -, author = "A. Panconesi and D. Dubhashi" -, title = "Near optimal distributed edge coloring" -, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 979 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "448--459" -, update = "97.03 gaertner+salinger" +, author = "A. Panconesi and D. Dubhashi" +, title = "Near optimal distributed edge coloring" +, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 979 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "448--459" +, update = "97.03 gaertner+salinger" } @article{ps-lndci-95 -, author = "A. Panconesi and A. Srinivasan" -, title = "The local nature of $\Delta$-colorings and its algorithmic applications" -, journal = "Combinatorica" -, volume = 15 -, year = 1995 -, pages = "255--280" -, update = "97.03 gaertner+salinger" +, author = "A. Panconesi and A. Srinivasan" +, title = "The local nature of $\Delta$-colorings and its algorithmic applications" +, journal = "Combinatorica" +, volume = 15 +, year = 1995 +, pages = "255--280" +, update = "97.03 gaertner+salinger" } @techreport{p-s3dps-85 -, author = "A. T. Pang" -, title = "Solid: a $3$-d polygon surface program" -, type = "Report" -, number = "??" -, institution = "MPDI Medical Sci. Center" -, year = 1985 +, author = "A. T. Pang" +, title = "Solid: a $3$-d polygon surface program" +, type = "Report" +, number = "??" +, institution = "MPDI Medical Sci. Center" +, year = 1985 } @article{pbcf-dimsc-93 -, author = "A. Paoluzzi and F. Bernardini and C. Cattani and V. Ferrucci" -, title = "Dimension-independent modeling with simplical complexes" -, journal = "ACM Trans. Graph." -, volume = 12 -, number = 1 -, month = jan -, year = 1993 -, pages = "56--102" -, update = "97.11 bibrelex" +, author = "A. Paoluzzi and F. Bernardini and C. Cattani and V. Ferrucci" +, title = "Dimension-independent modeling with simplical complexes" +, journal = "ACM Trans. Graph." +, volume = 12 +, number = 1 +, month = jan +, year = 1993 +, pages = "56--102" +, update = "97.11 bibrelex" } @article{pp-dmtvr-90 -, author = "N. Papadakis and A. Perakis" -, title = "Deterministic Minimal Time Vessel Routing" -, journal = "Oper. Res." -, volume = 38 -, number = 3 -, year = 1990 -, pages = "426--438" +, author = "N. Papadakis and A. Perakis" +, title = "Deterministic Minimal Time Vessel Routing" +, journal = "Oper. Res." +, volume = 38 +, number = 3 +, year = 1990 +, pages = "426--438" } @article{pp-mtvrt-89 -, author = "N. Papadakis and A. Perakis" -, title = "Minimal Time Vessel Routing in a Time-Dependent Environment" -, journal = "Transp. Sci." -, volume = 23 -, number = 4 -, year = 1989 -, pages = "266--276" +, author = "N. Papadakis and A. Perakis" +, title = "Minimal Time Vessel Routing in a Time-Dependent Environment" +, journal = "Transp. Sci." +, volume = 23 +, number = 4 +, year = 1989 +, pages = "266--276" } @inproceedings{p-dmabq-95 -, author = "C. Papadimitriou" -, title = "Database Metatheory: Asking the Big Queries" -, booktitle = "Proc. Principles of Distributed Systems" -, year = 1995 -, pages = "1--10" -, comments = "addresses relationship between theory and practice in computer science" -, update = "96.05 ramkumar" +, author = "C. Papadimitriou" +, title = "Database Metatheory: Asking the Big Queries" +, booktitle = "Proc. Principles of Distributed Systems" +, year = 1995 +, pages = "1--10" +, comments = "addresses relationship between theory and practice in computer science" +, update = "96.05 ramkumar" } @article{pt-ipct-86 -, author = "C. Papadimitriou and J. Tsitsiklis" -, title = "Intractable Problems in Control Theory" -, journal = "SIAM J. Control Optimization" -, volume = 24 -, number = 4 -, year = 1986 -, update = "97.11 bibrelex" +, author = "C. Papadimitriou and J. Tsitsiklis" +, title = "Intractable Problems in Control Theory" +, journal = "SIAM J. Control Optimization" +, volume = 24 +, number = 4 +, year = 1986 +, update = "97.11 bibrelex" } @article{p-aspmt-85 -, author = "C. H. Papadimitriou" -, title = "An algorithm for shortest-path motion in three dimensions" -, journal = "Inform. Process. Lett." -, volume = 20 -, year = 1985 -, pages = "259--263" -, keywords = "motion planning, path planning, geodesic distance, shortest paths" +, author = "C. H. Papadimitriou" +, title = "An algorithm for shortest-path motion in three dimensions" +, journal = "Inform. Process. Lett." +, volume = 20 +, year = 1985 +, pages = "259--263" +, keywords = "motion planning, path planning, geodesic distance, shortest paths" } @book{p-cc-94 -, author = "C. H. Papadimitriou" -, title = "Computational Complexity" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1994 -, keywords = "complexity theory" -, update = "97.03 schwarzkopf, 96.09 agarwal" +, author = "C. H. Papadimitriou" +, title = "Computational Complexity" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1994 +, keywords = "complexity theory" +, update = "97.03 schwarzkopf, 96.09 agarwal" } @techreport{p-cpav-91 -, author = "C. H. Papadimitriou" -, title = "On certain problems in algorithmic vision" -, type = "Technical {Report}" -, institution = "UCSD" -, year = 1991 -, update = "98.03 bibrelex" +, author = "C. H. Papadimitriou" +, title = "On certain problems in algorithmic vision" +, type = "Technical {Report}" +, institution = "UCSD" +, year = 1991 +, update = "98.03 bibrelex" } @incollection{p-spm-86 -, author = "C. H. Papadimitriou" -, title = "Shortest-Path Motion" -, editor = "G. Goos and J. Hartmanis" -, booktitle = "Proc. Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = "??" -, publisher = "Springer-Verlag" -, month = dec -, year = 1986 -, update = "93.09 milone+mitchell" +, author = "C. H. Papadimitriou" +, title = "Shortest-Path Motion" +, editor = "G. Goos and J. Hartmanis" +, booktitle = "Proc. Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = "??" +, publisher = "Springer-Verlag" +, month = dec +, year = 1986 +, update = "93.09 milone+mitchell" } @article{p-etspi-77 -, author = "C. H. Papadimitriou" -, title = "The {Euclidean} traveling salesman problem is {NP}-complete" -, journal = "Theoret. Comput. Sci." -, volume = 4 -, year = 1977 -, pages = "237--244" -, succeeds = "ps-clsts-77" +, author = "C. H. Papadimitriou" +, title = "The {Euclidean} traveling salesman problem is {NP}-complete" +, journal = "Theoret. Comput. Sci." +, volume = 4 +, year = 1977 +, pages = "237--244" +, succeeds = "ps-clsts-77" } @article{p-ncbmp-76 -, author = "C. H. Papadimitriou" -, title = "The {NP}-completeness of the bandwidth minimization problem" -, journal = "Computing" -, volume = 16 -, year = 1976 -, pages = "263--270" -, update = "97.11 bibrelex" +, author = "C. H. Papadimitriou" +, title = "The {NP}-completeness of the bandwidth minimization problem" +, journal = "Computing" +, volume = 16 +, year = 1976 +, pages = "263--270" +, update = "97.11 bibrelex" } @inproceedings{p-pamh-77 -, author = "C. H. Papadimitriou" -, title = "The probabilistic analysis of matching heuristics" -, booktitle = "Proc. 15th Allerton Conf. Commun. Control Comput." -, year = 1977 -, pages = "368--378" +, author = "C. H. Papadimitriou" +, title = "The probabilistic analysis of matching heuristics" +, booktitle = "Proc. 15th Allerton Conf. Commun. Control Comput." +, year = 1977 +, pages = "368--378" } @article{p-wcpag-81 -, author = "C. H. Papadimitriou" -, title = "Worst-case and probabilistic analysis of a geometric location problem" -, journal = "SIAM J. Comput." -, volume = 10 -, year = 1981 -, pages = "542--557" +, author = "C. H. Papadimitriou" +, title = "Worst-case and probabilistic analysis of a geometric location problem" +, journal = "SIAM J. Comput." +, volume = 10 +, year = 1981 +, pages = "542--557" } @techreport{pb-wcann-80t -, author = "C. H. Papadimitriou and J. L. Bentley" -, title = "A worst-case analysis of nearest neighbor searching by projection" -, type = "Report" -, number = "CMU-CS-80-109" -, institution = "Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1980 -, update = "97.11 bibrelex" +, author = "C. H. Papadimitriou and J. L. Bentley" +, title = "A worst-case analysis of nearest neighbor searching by projection" +, type = "Report" +, number = "CMU-CS-80-109" +, institution = "Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1980 +, update = "97.11 bibrelex" } @inproceedings{pb-wcann-80 -, author = "C. H. Papadimitriou and J. L. Bentley" -, title = "A worst-case analysis of nearest neighbor searching by projection" -, booktitle = "Proc. 7th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 85 -, publisher = "Springer-Verlag" -, year = 1980 -, pages = "470--482" +, author = "C. H. Papadimitriou and J. L. Bentley" +, title = "A worst-case analysis of nearest neighbor searching by projection" +, booktitle = "Proc. 7th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 85 +, publisher = "Springer-Verlag" +, year = 1980 +, pages = "470--482" } @inproceedings{ps-bwgg-90 -, author = "C. H. Papadimitriou and M. Sideri" -, title = "The bisection width of grid graphs" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "405--410" +, author = "C. H. Papadimitriou and M. Sideri" +, title = "The bisection width of grid graphs" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "405--410" } @techreport{ps-ffptp-87 -, author = "C. H. Papadimitriou and E. B. Silverberg" -, title = "Finding feasible paths for a two-point body" -, type = "Technical {Memo}" -, number = "45413-870603-01" -, institution = "Bell Lab." -, address = "Murray Hill, NJ" -, year = 1987 -, keywords = "motion planning, path planning, geodesic distance, shortest paths" +, author = "C. H. Papadimitriou and E. B. Silverberg" +, title = "Finding feasible paths for a two-point body" +, type = "Technical {Memo}" +, number = "45413-870603-01" +, institution = "Bell Lab." +, address = "Murray Hill, NJ" +, year = 1987 +, keywords = "motion planning, path planning, geodesic distance, shortest paths" } @techreport{ps-oplmo-86 -, author = "C. H. Papadimitriou and E. B. Silverberg" -, title = "Optimal piecewise linear motion of an object among obstacles" -, type = "Technical {Report}" -, institution = "Dept. Oper. Res., Stanford Univ." -, address = "Stanford, CA" -, year = 1986 -, update = "98.07 bibrelex" +, author = "C. H. Papadimitriou and E. B. Silverberg" +, title = "Optimal piecewise linear motion of an object among obstacles" +, type = "Technical {Report}" +, institution = "Dept. Oper. Res., Stanford Univ." +, address = "Stanford, CA" +, year = 1986 +, update = "98.07 bibrelex" } @article{ps-oplmo-87 -, author = "C. H. Papadimitriou and E. B. Silverberg" -, title = "Optimal piecewise linear motion of an object among obstacles" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "523--539" -, keywords = "motion planning, path planning, shortest paths" +, author = "C. H. Papadimitriou and E. B. Silverberg" +, title = "Optimal piecewise linear motion of an object among obstacles" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "523--539" +, keywords = "motion planning, path planning, shortest paths" } @book{ps-coac-82 -, author = "C. H. Papadimitriou and K. Steiglitz" -, title = "Combinatorial Optimization: Algorithms and Complexity" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1982 +, author = "C. H. Papadimitriou and K. Steiglitz" +, title = "Combinatorial Optimization: Algorithms and Complexity" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1982 } @inproceedings{ps-scrts-76 -, author = "C. H. Papadimitriou and K. Steiglitz" -, title = "Some complexity results for the traveling salesman problem" -, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." -, year = 1976 -, pages = "1--9" -, comments = "Split into two journal papers: \cite{ps-clsts-77} and - \cite{p-etspi-77}" -, precedes = "ps-clsts-77, p-etspi-77" -, update = "93.09 jones" +, author = "C. H. Papadimitriou and K. Steiglitz" +, title = "Some complexity results for the traveling salesman problem" +, booktitle = "Proc. 8th Annu. ACM Sympos. Theory Comput." +, year = 1976 +, pages = "1--9" +, comments = "Split into two journal papers: \cite{ps-clsts-77} and + \cite{p-etspi-77}" +, precedes = "ps-clsts-77, p-etspi-77" +, update = "93.09 jones" } @article{ps-clsts-77 -, author = "C. H. Papadimitriou and K. Steiglitz" -, title = "The complexity of local search for the traveling salesman problem" -, journal = "SIAM J. Comput." -, volume = 6 -, year = 1977 -, pages = "76--83" -, succeeds = "ps-scrts-76" -, precedes = "p-etspi-77" +, author = "C. H. Papadimitriou and K. Steiglitz" +, title = "The complexity of local search for the traveling salesman problem" +, journal = "SIAM J. Comput." +, volume = 6 +, year = 1977 +, pages = "76--83" +, succeeds = "ps-scrts-76" +, precedes = "p-etspi-77" } @article{pv-tgprt-84 -, author = "C. H. Papadimitriou and U. V. Vazirani" -, title = "On two geometric problems related to the traveling salesman problem" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "231--246" +, author = "C. H. Papadimitriou and U. V. Vazirani" +, title = "On two geometric problems related to the traveling salesman problem" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "231--246" } @article{py-crstp-82 -, author = "C. H. Papadimitriou and M. Yanakakis" -, title = "The complexity of restricted spanning tree problems" -, journal = "J. ACM" -, volume = 29 -, year = 1982 -, pages = "285--309" -, update = "98.03 bibrelex" +, author = "C. H. Papadimitriou and M. Yanakakis" +, title = "The complexity of restricted spanning tree problems" +, journal = "J. ACM" +, volume = 29 +, year = 1982 +, pages = "285--309" +, update = "98.03 bibrelex" } @inproceedings{py-spwm-89 -, author = "C. H. Papadimitriou and M. Yannakakis" -, title = "Shortest paths without a map" -, booktitle = "Proc. 16th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 372 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "610--620" -, keywords = "path planning" -, precedes = "py-spwm-91" -, update = "98.03 icking" +, author = "C. H. Papadimitriou and M. Yannakakis" +, title = "Shortest paths without a map" +, booktitle = "Proc. 16th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 372 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "610--620" +, keywords = "path planning" +, precedes = "py-spwm-91" +, update = "98.03 icking" } @article{py-spwm-91 -, author = "C. H. Papadimitriou and M. Yannakakis" -, title = "Shortest Paths Without a Map" -, journal = "Theoret. Comput. Sci." -, volume = 84 -, number = 1 -, year = 1991 -, pages = "127--150" -, keywords = "path planning, competitive ratio, unknown map" -, succeeds = "py-spwm-89" -, update = "98.03 bibrelex+icking+mitchell" +, author = "C. H. Papadimitriou and M. Yannakakis" +, title = "Shortest Paths Without a Map" +, journal = "Theoret. Comput. Sci." +, volume = 84 +, number = 1 +, year = 1991 +, pages = "127--150" +, keywords = "path planning, competitive ratio, unknown map" +, succeeds = "py-spwm-89" +, update = "98.03 bibrelex+icking+mitchell" } @inproceedings{py-cfsfc-82 -, author = "C. H. Papadimitriou and M. Yannakakis" -, title = "The complexity of facets (and some facets of complexity)" -, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." -, year = 1982 -, pages = "255--260" -, precedes = "py-cfsfc-84" +, author = "C. H. Papadimitriou and M. Yannakakis" +, title = "The complexity of facets (and some facets of complexity)" +, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." +, year = 1982 +, pages = "255--260" +, precedes = "py-cfsfc-84" } @article{py-cfsfc-84 -, author = "C. H. Papadimitriou and M. Yannakakis" -, title = "The complexity of facets (and some facets of complexity)" -, journal = "J. Comput. Syst. Sci." -, volume = 28 -, year = 1984 -, pages = "244--259" -, succeeds = "py-cfsfc-82" +, author = "C. H. Papadimitriou and M. Yannakakis" +, title = "The complexity of facets (and some facets of complexity)" +, journal = "J. Comput. Syst. Sci." +, volume = 28 +, year = 1984 +, pages = "244--259" +, succeeds = "py-cfsfc-82" } @inproceedings{py-cfr-85 -, author = "C. H. Papadimitriou and M. Yannakakis" -, title = "The complexity of facets resolved" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "74--78" -, precedes = "py-cfr-88" +, author = "C. H. Papadimitriou and M. Yannakakis" +, title = "The complexity of facets resolved" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "74--78" +, precedes = "py-cfr-88" } @article{py-cfr-88 -, author = "C. H. Papadimitriou and M. Yannakakis" -, title = "The complexity of facets resolved" -, journal = "J. Comput. Syst. Sci." -, volume = 37 -, year = 1988 -, pages = "2--13" -, succeeds = "py-cfr-85" +, author = "C. H. Papadimitriou and M. Yannakakis" +, title = "The complexity of facets resolved" +, journal = "J. Comput. Syst. Sci." +, volume = 37 +, year = 1988 +, pages = "2--13" +, succeeds = "py-cfr-85" } @incollection{pm-pnnqr-97 -, author = "Apostolos Papadopoulos and Yannis Manolopoulos" -, title = "Performance of nearest neighbor queries in {R}-trees" -, booktitle = "Database Theory---ICDT'97, 6th International Conference" -, series = "Lecture Notes Comput. Sci." -, volume = 1186 -, publisher = "Springer" -, year = 1997 -, pages = "394--408" -, isbn = "3-540-62222-5" -, update = "98.03 mitchell, 97.07 agarwal" +, author = "Apostolos Papadopoulos and Yannis Manolopoulos" +, title = "Performance of nearest neighbor queries in {R}-trees" +, booktitle = "Database Theory---ICDT'97, 6th International Conference" +, series = "Lecture Notes Comput. Sci." +, volume = 1186 +, publisher = "Springer" +, year = 1997 +, pages = "394--408" +, isbn = "3-540-62222-5" +, update = "98.03 mitchell, 97.07 agarwal" } @inproceedings{pl-ecgvd-95 -, author = "Evanthia Papadopoulou and D. T. Lee" -, title = "Efficient computation of the geodesic {Voronoi} diagram of points in a simple polygon" -, booktitle = "Algorithms---ESA~'95, Third Annual European Symposium" -, site = "Corfu, Greece" -, series = "Lecture Notes Comput. Sci." -, volume = 979 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "238--251" -, issn = "3-540-60313-1" -, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "Evanthia Papadopoulou and D. T. Lee" +, title = "Efficient computation of the geodesic {Voronoi} diagram of points in a simple polygon" +, booktitle = "Algorithms---ESA~'95, Third Annual European Symposium" +, site = "Corfu, Greece" +, series = "Lecture Notes Comput. Sci." +, volume = 979 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "238--251" +, issn = "3-540-60313-1" +, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @inproceedings{pl-spspp-94 -, author = "E. Papadopoulou and D. T. Lee" -, title = "Shortest Paths in a Simple Polygon in the Presence of ``Forbidden'' Vertices" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "110--115" -, cites = "a-gvdps-89, gm-osacv-91, ghlst-ltavs-87, hs-cmlpg-91, lp-esppr-84, m-spop-93, ms-scg-, ps-cgi-85, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "E. Papadopoulou and D. T. Lee" +, title = "Shortest Paths in a Simple Polygon in the Presence of ``Forbidden'' Vertices" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "110--115" +, cites = "a-gvdps-89, gm-osacv-91, ghlst-ltavs-87, hs-cmlpg-91, lp-esppr-84, m-spop-93, ms-scg-, ps-cgi-85, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{pl-svdlinf-2001 @@ -115972,4399 +115972,4399 @@ @article{pl-svdlinf-2001 } @phdthesis{p-ivodg-96 -, author = "A. Papakostas" -, title = "Information Visualization: Orthogonal Drawings of Graphs" -, type = "Ph.{D}. Thesis" -, school = "Department of Computer Science, University of Texas at Dallas" -, month = dec -, year = 1996 -, keywords = "doctoral thesis, graph drawing, orthogonal, 3D" -, update = "98.07 patrignani" +, author = "A. Papakostas" +, title = "Information Visualization: Orthogonal Drawings of Graphs" +, type = "Ph.{D}. Thesis" +, school = "Department of Computer Science, University of Texas at Dallas" +, month = dec +, year = 1996 +, keywords = "doctoral thesis, graph drawing, orthogonal, 3D" +, update = "98.07 patrignani" } @inproceedings{p-uptod-95 -, author = "A. Papakostas" -, title = "Upward Planarity Testing of Outerplanar Dags" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "298--306" -, keywords = "graph drawing, planar, upward" -, update = "95.01 tamassia" +, author = "A. Papakostas" +, title = "Upward Planarity Testing of Outerplanar Dags" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "298--306" +, keywords = "graph drawing, planar, upward" +, update = "95.01 tamassia" } @inproceedings{pst-etrio-97 -, author = "Achilleas Papakostas and Janet M. Six and Ioannis G. Tollis" -, title = "Experimental and Theoretical Results in Interactive Graph Drawing" -, editor = "Stephen North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "371--386" -, update = "98.11 bibrelex, 98.07 tamassia+vismara" +, author = "Achilleas Papakostas and Janet M. Six and Ioannis G. Tollis" +, title = "Experimental and Theoretical Results in Interactive Graph Drawing" +, editor = "Stephen North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "371--386" +, update = "98.11 bibrelex, 98.07 tamassia+vismara" } @techreport{pst-iogde-99 -, author = "A. Papakostas and J. M. Six and I. G. Tollis" -, title = "Interactive Orthogonal Graph Drawing: An Experimental Study" -, type = "Technical Report" -, number = "UTDCS-3-99" -, institution = "Dept. Comput. Sci., Univ. Texas Dallas" -, month = may -, year = 1999 -, update = "99.07 vismara" +, author = "A. Papakostas and J. M. Six and I. G. Tollis" +, title = "Interactive Orthogonal Graph Drawing: An Experimental Study" +, type = "Technical Report" +, number = "UTDCS-3-99" +, institution = "Dept. Comput. Sci., Univ. Texas Dallas" +, month = may +, year = 1999 +, update = "99.07 vismara" } @article{pt-aaeod-98 -, author = "Achilleas Papakostas and Ioannis G. Tollis" -, title = "Algorithms for Area-Efficient Orthogonal Drawings" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, number = "1--2" -, year = 1998 -, pages = "83--110" -, note = "Special Issue on Geometric Representations of +, author = "Achilleas Papakostas and Ioannis G. Tollis" +, title = "Algorithms for Area-Efficient Orthogonal Drawings" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, number = "1--2" +, year = 1998 +, pages = "83--110" +, note = "Special Issue on Geometric Representations of Graphs, G.~{Di Battista} and R.~Tamassia, editors" -, keywords = "graph drawing, orthogonal" -, succeeds = "pt-iabod-95" -, update = "98.11 patrignani+tamassia+vismara" +, keywords = "graph drawing, orthogonal" +, succeeds = "pt-iabod-95" +, update = "98.11 patrignani+tamassia+vismara" } @techreport{pt-iabod-96 -, author = "A. Papakostas and I. G. Tollis" -, title = "Improved Algorithms and Bounds for Orthogonal Drawings" -, type = "Manuscript" -, year = 1995 -, keywords = "graph drawing" -, update = "98.07 bibrelex, 96.09 tamassia" +, author = "A. Papakostas and I. G. Tollis" +, title = "Improved Algorithms and Bounds for Orthogonal Drawings" +, type = "Manuscript" +, year = 1995 +, keywords = "graph drawing" +, update = "98.07 bibrelex, 96.09 tamassia" } @inproceedings{pt-iabod-95 -, author = "A. Papakostas and I. G. Tollis" -, title = "Improved Algorithms and Bounds for Orthogonal Drawings" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "40--51" -, keywords = "graph drawing, orthogonal" -, update = "95.01 tamassia" +, author = "A. Papakostas and I. G. Tollis" +, title = "Improved Algorithms and Bounds for Orthogonal Drawings" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "40--51" +, keywords = "graph drawing, orthogonal" +, update = "95.01 tamassia" } @inproceedings{pt-iogdt-97 -, author = "Achilleas Papakostas and Ioannis G. Tollis" -, title = "Incremental Orthogonal Graph Drawing in Three Dimensions" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "52--63" -, keywords = "graph drawing, orthogonal, 3D" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Achilleas Papakostas and Ioannis G. Tollis" +, title = "Incremental Orthogonal Graph Drawing in Three Dimensions" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "52--63" +, keywords = "graph drawing, orthogonal, 3D" +, update = "99.07 patrignani, 98.07 patrignani" } @article{pt-iogd-98 -, author = "A. Papakostas and I. G. Tollis" -, title = "Interactive Orthogonal Graph Drawing" -, journal = "IEEE Trans. Comput." -, volume = "C-47" -, number = 11 -, year = 1998 -, pages = "1297--1309" -, succeeds = "pt-iiogd-96" -, update = "99.07 vismara" +, author = "A. Papakostas and I. G. Tollis" +, title = "Interactive Orthogonal Graph Drawing" +, journal = "IEEE Trans. Comput." +, volume = "C-47" +, number = 11 +, year = 1998 +, pages = "1297--1309" +, succeeds = "pt-iiogd-96" +, update = "99.07 vismara" } @inproceedings{pt-iiogd-96 -, author = "A. Papakostas and I. G. Tollis" -, title = "Issues in Interactive Orthogonal Graph Drawing" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "419--430" -, update = "98.11 bibrelex, 98.07 vismara" +, author = "A. Papakostas and I. G. Tollis" +, title = "Issues in Interactive Orthogonal Graph Drawing" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "419--430" +, update = "98.11 bibrelex, 98.07 vismara" } @book{p-mccpi-80 -, author = "S. Papert" -, title = "Mindstorms: {Children}, Computers and Powerful Ideas" -, publisher = "Basic Books" -, address = "New York, NY" -, year = 1980 -, update = "97.11 bibrelex" +, author = "S. Papert" +, title = "Mindstorms: {Children}, Computers and Powerful Ideas" +, publisher = "Basic Books" +, address = "New York, NY" +, year = 1980 +, update = "97.11 bibrelex" } @article{pm-cmeso-94 -, author = "L. Parida and S. P. Mudur" -, title = "Computational Methods for Evaluating Swept Object Boundaries" -, journal = "Visual Comput." -, volume = 10 -, number = 5 -, year = 1994 -, pages = "266--276" -, update = "96.01 held" +, author = "L. Parida and S. P. Mudur" +, title = "Computational Methods for Evaluating Swept Object Boundaries" +, journal = "Visual Comput." +, volume = 10 +, number = 5 +, year = 1994 +, pages = "266--276" +, update = "96.01 held" } @mastersthesis{p-prr-89 -, author = "P. Paripati" -, title = "Polyhedra: Representation and Recognition" -, school = "Dept. Comput. Sci., Virginia Poytechnic Inst. and State Univ." -, address = "Blacksburg, VA" -, year = 1989 -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "P. Paripati" +, title = "Polyhedra: Representation and Recognition" +, school = "Dept. Comput. Sci., Virginia Poytechnic Inst. and State Univ." +, address = "Blacksburg, VA" +, year = 1989 +, keywords = "master thesis" +, update = "98.07 bibrelex" } @incollection{ph-mipa-77 -, author = "J. Paris and L. Harrington" -, title = "A mathematical incompleteness in {P}eano arithmetic" -, editor = "J. Barwise" -, booktitle = "Handbook of Mathematical Logic" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1977 -, pages = "1133--1142" -, update = "95.09 agarwal" +, author = "J. Paris and L. Harrington" +, title = "A mathematical incompleteness in {P}eano arithmetic" +, editor = "J. Barwise" +, booktitle = "Handbook of Mathematical Logic" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1977 +, pages = "1133--1142" +, update = "95.09 agarwal" } @inproceedings{pg-taitd-92 -, author = "K. Park and Z. Galil" -, title = "Truly alphabet-independent two-dimensional pattern matching" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "247--256" +, author = "K. Park and Z. Galil" +, title = "Truly alphabet-independent two-dimensional pattern matching" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "247--256" } @inproceedings{plc-ccps1-01 -, author = "Sang-Min Park and Jae-Ha Lee and Kyung-Yong Chwa" -, title = "A Characterizatin of the Class of Polygons Searchable by a 1-Searcher" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "133--136" -, update = "01.04 icking" +, author = "Sang-Min Park and Jae-Ha Lee and Kyung-Yong Chwa" +, title = "A Characterizatin of the Class of Polygons Searchable by a 1-Searcher" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "133--136" +, update = "01.04 icking" } @inproceedings{p-bbcra-96 -, author = "L. E. Parker" -, title = "Behavior-based cooperative robotics applied to multi-target observation" -, booktitle = "Proc. Dagstuhl Seminar on Modeling and Planning for Sensor-Based Intelligent Robot Systems" -, site = "Dagstuhl, Germany" -, month = sep -, year = 1996 -, update = "98.07 bibrelex" +, author = "L. E. Parker" +, title = "Behavior-based cooperative robotics applied to multi-target observation" +, booktitle = "Proc. Dagstuhl Seminar on Modeling and Planning for Sensor-Based Intelligent Robot Systems" +, site = "Dagstuhl, Germany" +, month = sep +, year = 1996 +, update = "98.07 bibrelex" } @article{p-culdo-96 -, author = "P. Parodi" -, title = "The Complexity of Understanding Line Drawings of Origami Scenes" -, journal = "Internat. J. Comput. Vision" -, volume = 18 -, number = 2 -, year = 1996 -, pages = "139--170" -, update = "97.03 held" +, author = "P. Parodi" +, title = "The Complexity of Understanding Line Drawings of Origami Scenes" +, journal = "Internat. J. Comput. Vision" +, volume = 18 +, number = 2 +, year = 1996 +, pages = "139--170" +, update = "97.03 held" } @techreport{plvt-edecl-96 -, author = "P. Parodi and R. Lancewicki and A. Vijh and J. K. Tsotsos" -, title = "Empirically-derived Estimates of the Complexity of Labelling Line Drawings of Polyhedral Scenes" -, number = "RBCV-TR-96-52" -, institution = "Dept. Comput. Sci., Univ. Toronto" -, address = "Toronto, ON" -, year = 1996 -, update = "98.03 mitchell, 97.03 held" +, author = "P. Parodi and R. Lancewicki and A. Vijh and J. K. Tsotsos" +, title = "Empirically-derived Estimates of the Complexity of Labelling Line Drawings of Polyhedral Scenes" +, number = "RBCV-TR-96-52" +, institution = "Dept. Comput. Sci., Univ. Toronto" +, address = "Toronto, ON" +, year = 1996 +, update = "98.03 mitchell, 97.03 held" } @article{pp-3dsru-96 -, author = "P. Parodi and G. Piccioli" -, title = "3D Shape Reconstruction by Using Vanishing Points" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 18 -, number = 2 -, month = feb -, year = 1996 -, pages = "211--217" -, update = "97.03 held" +, author = "P. Parodi and G. Piccioli" +, title = "3D Shape Reconstruction by Using Vanishing Points" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 18 +, number = 2 +, month = feb +, year = 1996 +, pages = "211--217" +, update = "97.03 held" } @article{pt-clppp-94 -, author = "P. Parodi and V. Torre" -, title = "On the Complexity of Labeling Perspective Projections of Polyhedra" -, journal = "Artif. Intell." -, volume = 70 -, number = 1 -, year = 1994 -, pages = "1--38" -, update = "97.03 held" +, author = "P. Parodi and V. Torre" +, title = "On the Complexity of Labeling Perspective Projections of Polyhedra" +, journal = "Artif. Intell." +, volume = 70 +, number = 1 +, year = 1994 +, pages = "1--38" +, update = "97.03 held" } @inproceedings{pt-cocpc-92 -, author = "D. Parson and C. Torras" -, title = "The combinatorics of overlapping convex polygons in contact" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "83--92" -, cites = "c-pcp-83, ls-ncfcc-87, pt-ccsbc-91, ss-pmp1c-83, s-pds-74, tt-mtcpc-89, ZZZ" -, update = "98.07 bibrelex" +, author = "D. Parson and C. Torras" +, title = "The combinatorics of overlapping convex polygons in contact" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "83--92" +, cites = "c-pcp-83, ls-ncfcc-87, pt-ccsbc-91, ss-pmp1c-83, s-pds-74, tt-mtcpc-89, ZZZ" +, update = "98.07 bibrelex" } @techreport{pt-ccsbc-91 -, author = "D. Parsons and C. Torras" -, title = "On the complexity of the contact space between convex polyhedra" -, type = "Technical {Report}" -, institution = "Institut de Cibern{\`e}tica, Universitat Polit{\'e}cnica de Catalunia - CSIC" -, address = "Barcelona, Spain" -, year = 1991 -, update = "98.07 bibrelex" +, author = "D. Parsons and C. Torras" +, title = "On the complexity of the contact space between convex polyhedra" +, type = "Technical {Report}" +, institution = "Institut de Cibern{\`e}tica, Universitat Polit{\'e}cnica de Catalunia - CSIC" +, address = "Barcelona, Spain" +, year = 1991 +, update = "98.07 bibrelex" } @incollection{p-peg-76 -, author = "T. D. Parsons" -, title = "Pursuit-evasion in a graph" -, editor = "Y. Alavi and D. Lick" -, booktitle = "Theory and Applications of Graphs" -, series = "Lecture Notes Math." -, volume = 642 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1976 -, pages = "426--441" -, update = "98.07 bibrelex" +, author = "T. D. Parsons" +, title = "Pursuit-evasion in a graph" +, editor = "Y. Alavi and D. Lick" +, booktitle = "Theory and Applications of Graphs" +, series = "Lecture Notes Math." +, volume = 642 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1976 +, pages = "426--441" +, update = "98.07 bibrelex" } @article{pd-padbo-91 -, author = "S. K. Parui and A. Datta" -, title = "A parallel algorithm for decomposition of binary objects through skeletonization" -, journal = "Pattern Recogn. Lett." -, volume = 12 -, year = 1991 -, pages = "235--240" -, update = "93.09 milone+mitchell" +, author = "S. K. Parui and A. Datta" +, title = "A parallel algorithm for decomposition of binary objects through skeletonization" +, journal = "Pattern Recogn. Lett." +, volume = 12 +, year = 1991 +, pages = "235--240" +, update = "93.09 milone+mitchell" } @phdthesis{p-kpudz-82 -, author = "I. Paschinger" -, title = "{Konvexe} {Polytope} und {Dirichletsche} {Zellenkomplexe}" -, type = "Ph.{D}. Thesis" -, school = "Institut f{\"u}r Mathematik, Universit{\"a}t Salzburg" -, address = "Salzburg, Austria" -, year = 1982 -, keywords = "doctoral thesis" +, author = "I. Paschinger" +, title = "{Konvexe} {Polytope} und {Dirichletsche} {Zellenkomplexe}" +, type = "Ph.{D}. Thesis" +, school = "Institut f{\"u}r Mathematik, Universit{\"a}t Salzburg" +, address = "Salzburg, Austria" +, year = 1982 +, keywords = "doctoral thesis" } @inproceedings{pfp-diccb-95 -, author = "V. Pascucci and V. Ferrucci and A. Paoluzzi" -, title = "Dimension-independent convex-cell based HPC: Representation scheme and implementation issues" -, editor = "C. Hoffmann and J. Rossignac" -, booktitle = "Solid Modeling '95" -, publisher = "ACM Press" -, year = 1995 -, pages = "163--174" -, update = "97.11 bibrelex" +, author = "V. Pascucci and V. Ferrucci and A. Paoluzzi" +, title = "Dimension-independent convex-cell based HPC: Representation scheme and implementation issues" +, editor = "C. Hoffmann and J. Rossignac" +, booktitle = "Solid Modeling '95" +, publisher = "ACM Press" +, year = 1995 +, pages = "163--174" +, update = "97.11 bibrelex" } @article{p-isnod-90 -, author = "M. Paterson" -, title = "Improved sorting networks with $O(\log N)$ depth" -, journal = "Algorithmica" -, volume = 5 -, number = 1 -, year = 1990 -, pages = "75--92" -, update = "96.09 orourke" +, author = "M. Paterson" +, title = "Improved sorting networks with $O(\log N)$ depth" +, journal = "Algorithmica" +, volume = 5 +, number = 1 +, year = 1990 +, pages = "75--92" +, update = "96.09 orourke" } @inproceedings{py-bpahs-89 -, author = "M. S. Paterson and F. F. Yao" -, title = "Binary partitions with applications to hidden surface removal and solid modelling" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, site = "Saarbr{\"u}cken" -, year = 1989 -, pages = "23--32" -, precedes = "py-ebsph-90" -, cites = "c-iies-84, cgl-pgd-83, dghs-eafcr-88, e-acg-87, fkn-vsgpt-80, g m-vlbe-59, gy-tsr-83, k-acp-73, p-hresr-84, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "M. S. Paterson and F. F. Yao" +, title = "Binary partitions with applications to hidden surface removal and solid modelling" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, site = "Saarbr{\"u}cken" +, year = 1989 +, pages = "23--32" +, precedes = "py-ebsph-90" +, cites = "c-iies-84, cgl-pgd-83, dghs-eafcr-88, e-acg-87, fkn-vsgpt-80, g m-vlbe-59, gy-tsr-83, k-acp-73, p-hresr-84, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{py-ebsph-90 -, author = "M. S. Paterson and F. F. Yao" -, title = "Efficient binary space partitions for hidden-surface removal and solid modeling" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "485--503" -, succeeds = "py-bpahs-89" +, author = "M. S. Paterson and F. F. Yao" +, title = "Efficient binary space partitions for hidden-surface removal and solid modeling" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "485--503" +, succeeds = "py-bpahs-89" } @incollection{py-nng-92 -, author = "M. S. Paterson and F. F. Yao" -, title = "On Nearest-Neighbor Graphs" -, booktitle = "Proc. 19th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 623 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "416--426" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "M. S. Paterson and F. F. Yao" +, title = "On Nearest-Neighbor Graphs" +, booktitle = "Proc. 19th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 623 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "416--426" +, update = "94.01 smid, 93.09 milone+mitchell" } @techreport{py-obspo-90t -, author = "M. S. Paterson and F. F. Yao" -, title = "Optimal binary space partitions for orthogonal objects" -, type = "Research {Report}" -, number = 158 -, institution = "Univ. Warwick" -, year = 1990 -, succeeds = "py-obspo-90" -, precedes = "py-obspo-92" -, update = "98.07 bibrelex" +, author = "M. S. Paterson and F. F. Yao" +, title = "Optimal binary space partitions for orthogonal objects" +, type = "Research {Report}" +, number = 158 +, institution = "Univ. Warwick" +, year = 1990 +, succeeds = "py-obspo-90" +, precedes = "py-obspo-92" +, update = "98.07 bibrelex" } @inproceedings{py-obspo-90 -, author = "M. S. Paterson and F. F. Yao" -, title = "Optimal binary space partitions for orthogonal objects" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "100--106" -, precedes = "py-obspo-92" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "M. S. Paterson and F. F. Yao" +, title = "Optimal binary space partitions for orthogonal objects" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "100--106" +, precedes = "py-obspo-92" +, update = "98.11 bibrelex, 98.07 bibrelex" } @article{py-obspo-92 -, author = "M. S. Paterson and F. F. Yao" -, title = "Optimal binary space partitions for orthogonal objects" -, journal = "J. Algorithms" -, volume = 13 -, year = 1992 -, pages = "99--113" -, succeeds = "py-obspo-90, py-obspo-90t" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "M. S. Paterson and F. F. Yao" +, title = "Optimal binary space partitions for orthogonal objects" +, journal = "J. Algorithms" +, volume = 13 +, year = 1992 +, pages = "99--113" +, succeeds = "py-obspo-90, py-obspo-90t" +, update = "98.11 bibrelex, 98.07 bibrelex" } @article{py-prp-86 -, author = "M. S. Paterson and F. F. Yao" -, title = "Point retrieval for polygons" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "441--447" +, author = "M. S. Paterson and F. F. Yao" +, title = "Point retrieval for polygons" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "441--447" } @book{p-fpr-72 -, author = "E. A. Patrick" -, title = "Fundamentals of Pattern Recognition" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1972 -, update = "97.03 schwarzkopf" +, author = "E. A. Patrick" +, title = "Fundamentals of Pattern Recognition" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1972 +, update = "97.03 schwarzkopf" } @article{pf-gknnd-70 -, author = "E. A. Patrick and F. P. Fisher" -, title = "Generalized $k$-nearest neighbor decision rule" -, journal = "Inform. Control" -, volume = 16 -, month = apr -, year = 1970 -, pages = "128--152" +, author = "E. A. Patrick and F. P. Fisher" +, title = "Generalized $k$-nearest neighbor decision rule" +, journal = "Inform. Control" +, volume = 16 +, month = apr +, year = 1970 +, pages = "128--152" } @techreport{p-coc-99 -, author = "Maurizio Patrignani" -, title = "On the Complexity of Orthogonal Compaction" -, type = "Technical {Report}" -, number = "RT-DIA-39-99" -, institution = "Dipartimento di Informatica e Automazione, Universit{\`a} di Roma Tre" -, address = "Rome, Italy" -, month = jan -, year = 1999 -, url = "http://www.dia.uniroma3.it/research/tech-rep/dia-39-99.ps" -, keywords = "graph drawing, planar, orthogonal, area, edge length, NP-completeness" -, update = "99.03 patrignani+vismara" +, author = "Maurizio Patrignani" +, title = "On the Complexity of Orthogonal Compaction" +, type = "Technical {Report}" +, number = "RT-DIA-39-99" +, institution = "Dipartimento di Informatica e Automazione, Universit{\`a} di Roma Tre" +, address = "Rome, Italy" +, month = jan +, year = 1999 +, url = "http://www.dia.uniroma3.it/research/tech-rep/dia-39-99.ps" +, keywords = "graph drawing, planar, orthogonal, area, edge length, NP-completeness" +, update = "99.03 patrignani+vismara" } @inproceedings{p-coc-99i -, author = "M. Patrignani" -, title = "On the Complexity of Orthogonal Compaction" -, editor = "F. Dehne and A. Gupta and J.-R. Sack and R. Tamassia" -, booktitle = "Algorithms and Data Structures" -, nickname = "WADS '99" -, series = "Lecture Notes Comput. Sci." -, volume = 1663 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "56--61" -, update = "00.03 vismara" +, author = "M. Patrignani" +, title = "On the Complexity of Orthogonal Compaction" +, editor = "F. Dehne and A. Gupta and J.-R. Sack and R. Tamassia" +, booktitle = "Algorithms and Data Structures" +, nickname = "WADS '99" +, series = "Lecture Notes Comput. Sci." +, volume = 1663 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "56--61" +, update = "00.03 vismara" } @article{p-coc-01 -, author = "M. Patrignani" -, title = "On the Complexity of Orthogonal Compaction" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "47--67" -, update = "01.07 smid" +, author = "M. Patrignani" +, title = "On the Complexity of Orthogonal Compaction" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "47--67" +, update = "01.07 smid" } @inproceedings{pv-3dttd-97 -, author = "Maurizio Patrignani and Francesco Vargiu" -, title = "{3DCube}: A Tool for Three Dimensional Graph Drawing" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "284--290" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Maurizio Patrignani and Francesco Vargiu" +, title = "{3DCube}: A Tool for Three Dimensional Graph Drawing" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "284--290" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{p-acrs-89 -, author = "N. M. Patrikalakis" -, title = "Approximate Conversion of Rational Splines" -, journal = "Comput. Aided Geom. Design" -, volume = 6 -, number = 2 -, year = 1989 -, pages = "155--165" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis" +, title = "Approximate Conversion of Rational Splines" +, journal = "Comput. Aided Geom. Design" +, volume = 6 +, number = 2 +, year = 1989 +, pages = "155--165" +, update = "95.05 abrams" } @inproceedings{p-gmcas-86 -, author = "N. M. Patrikalakis" -, title = "Geometric Modeling in Computer Aided Ship Design" -, booktitle = "Proc. Marine Computers '86" -, year = 1986 -, update = "95.05 abrams" +, author = "N. M. Patrikalakis" +, title = "Geometric Modeling in Computer Aided Ship Design" +, booktitle = "Proc. Marine Computers '86" +, year = 1986 +, update = "95.05 abrams" } @incollection{p-isi-92 -, author = "N. M. Patrikalakis" -, title = "Interrogation of Surface Intersections" -, chapter = 8 -, editor = "R. E. Barnhill" -, booktitle = "Geometry Processing for Design and Manufacturing" -, publisher = "Society for Industrial and Applied Mathematics" -, address = "Philadelphia, PA" -, year = 1992 -, pages = "161--185" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis" +, title = "Interrogation of Surface Intersections" +, chapter = 8 +, editor = "R. E. Barnhill" +, booktitle = "Geometry Processing for Design and Manufacturing" +, publisher = "Society for Industrial and Applied Mathematics" +, address = "Philadelphia, PA" +, year = 1992 +, pages = "161--185" +, update = "95.05 abrams" } @inproceedings{p-si-88 -, author = "N. M. Patrikalakis" -, title = "Shape Interrogation" -, editor = "C. Chryssostomidis" -, booktitle = "Proc. 16th Annual MIT Sea Grant College Program Lecture and Seminar: Automation in the Design and Manufacture of Large Marine Systems" -, year = 1990 -, pages = "83--104" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis" +, title = "Shape Interrogation" +, editor = "C. Chryssostomidis" +, booktitle = "Proc. 16th Annual MIT Sea Grant College Program Lecture and Seminar: Automation in the Design and Manufacture of Large Marine Systems" +, year = 1990 +, pages = "83--104" +, update = "95.05 abrams" } @article{p-ssi-93 -, author = "N. M. Patrikalakis" -, title = "Surface-to-Surface Intersections" -, journal = "IEEE Comput. Graph. Appl." -, volume = 13 -, number = 1 -, year = 1993 -, pages = "89--95" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis" +, title = "Surface-to-Surface Intersections" +, journal = "IEEE Comput. Graph. Appl." +, volume = 13 +, number = 1 +, year = 1993 +, pages = "89--95" +, update = "95.05 abrams" } @inproceedings{paht-pcagm-90 -, author = "N. M. Patrikalakis and P. G. Alourdas and G. R. Hottel and S. T. Tuohy" -, title = "Praxiteles: A Computer Aided Geometric Modeling System" -, booktitle = "Proc. Fifth International Conference on Marine Technology" -, year = 1990 -, pages = "221--227" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and P. G. Alourdas and G. R. Hottel and S. T. Tuohy" +, title = "Praxiteles: A Computer Aided Geometric Modeling System" +, booktitle = "Proc. Fifth International Conference on Marine Technology" +, year = 1990 +, pages = "221--227" +, update = "95.05 abrams" } @article{pb-febmp-92 -, author = "N. M. Patrikalakis and L. Bardis" -, title = "Feature Extraction from {B}-Spline Marine Propeller Representations" -, journal = "Journal of Ship Research" -, volume = 36 -, number = 3 -, year = 1992 -, pages = "233--247" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and L. Bardis" +, title = "Feature Extraction from {B}-Spline Marine Propeller Representations" +, journal = "Journal of Ship Research" +, volume = 36 +, number = 3 +, year = 1992 +, pages = "233--247" +, update = "95.05 abrams" } @article{pb-lrbs-91 -, author = "N. M. Patrikalakis and L. Bardis" -, title = "Localization of Rational {B}-Spline Surfaces" -, journal = "Engineering with Computers" -, volume = 7 -, number = 4 -, year = 1991 -, pages = "237--252" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and L. Bardis" +, title = "Localization of Rational {B}-Spline Surfaces" +, journal = "Engineering with Computers" +, volume = 7 +, number = 4 +, year = 1991 +, pages = "237--252" +, update = "95.05 abrams" } @article{pb-ocrbs-89 -, author = "N. M. Patrikalakis and L. Bardis" -, title = "Offsets of Curves on Rational {B}-Spline Surfaces" -, journal = "Engineering with Computers" -, volume = 5 -, year = 1989 -, pages = "39--46" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and L. Bardis" +, title = "Offsets of Curves on Rational {B}-Spline Surfaces" +, journal = "Engineering with Computers" +, volume = 5 +, year = 1989 +, pages = "39--46" +, update = "95.05 abrams" } @article{pbk-abgld-90 -, author = "N. M. Patrikalakis and L. Bardis and G. A. Kriezis" -, title = "Approximation of {B}-Spline Geometries with Lower Degree Representations" -, journal = "Journal of Offshore Mechanics and Arctic Engineering, ASME Transactions" -, volume = 112 -, number = 3 -, year = 1990 -, pages = "192--198" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and L. Bardis and G. A. Kriezis" +, title = "Approximation of {B}-Spline Geometries with Lower Degree Representations" +, journal = "Journal of Offshore Mechanics and Arctic Engineering, ASME Transactions" +, volume = 112 +, number = 3 +, year = 1990 +, pages = "192--198" +, update = "95.05 abrams" } @inproceedings{pchmsz-trgm1-94 -, author = "N. M. Patrikalakis and W. Cho and C.-Y. Hu and T. Maekawa and E. C. Sherbrooke and J. Zhou" -, title = "Towards Robust Geometric Modellers, 1994 Progress Report" -, booktitle = "Proc. 1995 NSF Design and Manufacturing Grantees Conference" -, year = 1995 -, pages = "139--140" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and W. Cho and C.-Y. Hu and T. Maekawa and E. C. Sherbrooke and J. Zhou" +, title = "Towards Robust Geometric Modellers, 1994 Progress Report" +, booktitle = "Proc. 1995 NSF Design and Manufacturing Grantees Conference" +, year = 1995 +, pages = "139--140" +, update = "95.05 abrams" } @inproceedings{pctblbmy-veoev-95 -, author = "N. M. Patrikalakis and C. Chryssostomidis and S. T. Tuohy and J. G. Bellingham and J. J. Leonard and J. W. Bales and B. A. Moran and J. W. Yoon" -, title = "Virtual Environments for Ocean Exploration and Visualization" -, booktitle = "Proc. CES '95: Workshop on Computer Technology for the Exploration of the Sea" -, year = 1995 -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and C. Chryssostomidis and S. T. Tuohy and J. G. Bellingham and J. J. Leonard and J. W. Bales and B. A. Moran and J. W. Yoon" +, title = "Virtual Environments for Ocean Exploration and Visualization" +, booktitle = "Proc. CES '95: Workshop on Computer Technology for the Exploration of the Sea" +, year = 1995 +, update = "95.05 abrams" } @inproceedings{pg-simat-90 -, author = "N. M. Patrikalakis and H. N. G{\"u}rsoy" -, title = "Shape Interrogation by Medial Axis Transform" -, booktitle = "Proc. 16th ASME Design Automation Conference" -, site = "Chicago" -, month = sep -, year = 1990 -, pages = "" -, update = "93.09 held" +, author = "N. M. Patrikalakis and H. N. G{\"u}rsoy" +, title = "Shape Interrogation by Medial Axis Transform" +, booktitle = "Proc. 16th ASME Design Automation Conference" +, site = "Chicago" +, month = sep +, year = 1990 +, pages = "" +, update = "93.09 held" } @inproceedings{phms-trgm-94 -, author = "N. M. Patrikalakis and C.-Y. Hu and T. Maekawa and E. C. Sherbrooke" -, title = "Towards Robust Geometric Modellers" -, booktitle = "Proc. 1994 NSF Design and Manufacturing Grantees Conference" -, year = 1994 -, pages = "199--200" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and C.-Y. Hu and T. Maekawa and E. C. Sherbrooke" +, title = "Towards Robust Geometric Modellers" +, booktitle = "Proc. 1994 NSF Design and Manufacturing Grantees Conference" +, year = 1994 +, pages = "199--200" +, update = "95.05 abrams" } @inproceedings{pk-pcast-90 -, author = "N. M. Patrikalakis and G. A. Kriezis" -, title = "Piecewise Continuous Algebraic Surfaces in Terms of {B}-Splines" -, editor = "M. J. Wozny and J. U. Turner and K. Preiss" -, booktitle = "Proc. of the 1988 International Federation of Information Processing WG 5.2 / National Science Foundation Working Conference on Geometric Modeling: Geometric Modeling for Product Engineering" -, year = 1990 -, pages = "3--19" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and G. A. Kriezis" +, title = "Piecewise Continuous Algebraic Surfaces in Terms of {B}-Splines" +, editor = "M. J. Wozny and J. U. Turner and K. Preiss" +, booktitle = "Proc. of the 1988 International Federation of Information Processing WG 5.2 / National Science Foundation Working Conference on Geometric Modeling: Geometric Modeling for Product Engineering" +, year = 1990 +, pages = "3--19" +, update = "95.05 abrams" } @article{pk-rpcas-89 -, author = "N. M. Patrikalakis and G. A. Kriezis" -, title = "Representation of Piecewise Continuous Algebraic Surfaces in Terms of {B}-Splines" -, journal = "Visual Comput." -, volume = 5 -, number = 6 -, year = 1989 -, pages = "360--374" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and G. A. Kriezis" +, title = "Representation of Piecewise Continuous Algebraic Surfaces in Terms of {B}-Splines" +, journal = "Visual Comput." +, volume = 5 +, number = 6 +, year = 1989 +, pages = "360--374" +, update = "95.05 abrams" } @inproceedings{pkp-issip-90 -, author = "N. M. Patrikalakis and G. A. Kriezis and P. V. Prakash" -, title = "Investigation on Surface-to-Surface Intersection Problems" -, booktitle = "Proc. 16th Annual NSF Grantees Conference on Manufacturing Systems Research" -, year = 1990 -, pages = "169--176" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and G. A. Kriezis and P. V. Prakash" +, title = "Investigation on Surface-to-Surface Intersection Problems" +, booktitle = "Proc. 16th Annual NSF Grantees Conference on Manufacturing Systems Research" +, year = 1990 +, pages = "169--176" +, update = "95.05 abrams" } @inproceedings{pmsz-csed-92 -, author = "N. M. Patrikalakis and T. Maekawa and E. C. Sherbrooke and J. Zhou" -, title = "Computation of Singularities for Engineering Design" -, editor = "L. Kunii and Y. Shinagawa" -, booktitle = "Proc. International Workshop on Modern Geometric Computing for Visualization" -, year = 1992 -, pages = "167--191" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and T. Maekawa and E. C. Sherbrooke and J. Zhou" +, title = "Computation of Singularities for Engineering Design" +, editor = "L. Kunii and Y. Shinagawa" +, booktitle = "Proc. International Workshop on Modern Geometric Computing for Visualization" +, year = 1992 +, pages = "167--191" +, update = "95.05 abrams" } @article{pp-ffpmu-88 -, author = "N. M. Patrikalakis and P. V. Prakash" -, title = "Free-Form Plate Modeling Using Offset Surfaces" -, journal = "Journal of Offshore Mechanics and Arctic Engineering, ASME Transactions" -, volume = 110 -, number = 3 -, year = 1988 -, pages = "287--294" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and P. V. Prakash" +, title = "Free-Form Plate Modeling Using Offset Surfaces" +, journal = "Journal of Offshore Mechanics and Arctic Engineering, ASME Transactions" +, volume = 110 +, number = 3 +, year = 1988 +, pages = "287--294" +, update = "95.05 abrams" } @inproceedings{pp-itsp-89 -, author = "N. M. Patrikalakis and P. V. Prakash" -, title = "Intersections for Trimmed Surface Patches" -, booktitle = "Proc. 8th International Symposium on Offshore Mechanics and Arctic Engineering" -, year = 1989 -, pages = "211--222" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and P. V. Prakash" +, title = "Intersections for Trimmed Surface Patches" +, booktitle = "Proc. 8th International Symposium on Offshore Mechanics and Arctic Engineering" +, year = 1989 +, pages = "211--222" +, update = "95.05 abrams" } @article{pp-sigm-90 -, author = "N. M. Patrikalakis and P. V. Prakash" -, title = "Surface Intersections for Geometric Modeling" -, journal = "Journal of Mechanical Design, ASME Transactions" -, volume = 112 -, number = 1 -, year = 1990 -, pages = "100--107" -, update = "95.05 abrams" +, author = "N. M. Patrikalakis and P. V. Prakash" +, title = "Surface Intersections for Geometric Modeling" +, journal = "Journal of Mechanical Design, ASME Transactions" +, volume = 112 +, number = 1 +, year = 1990 +, pages = "100--107" +, update = "95.05 abrams" } @incollection{ppgk-rtsi-91 -, author = "N. M. Patrikalakis and P. V. Prakash and H. N. G{\"u}rsoy and G. A. Kriezis" -, title = "Research Topics in Shape Interrogation" -, chapter = 2 -, editor = "N. Magnenat-Thalmann and D. Thalmann" -, booktitle = "New Trends in Animation and Visualization" -, publisher = "John Wiley \& Sons" -, address = "London, UK" -, year = 1991 -, pages = "13--41" -, update = "99.11 bibrelex, 95.05 abrams" +, author = "N. M. Patrikalakis and P. V. Prakash and H. N. G{\"u}rsoy and G. A. Kriezis" +, title = "Research Topics in Shape Interrogation" +, chapter = 2 +, editor = "N. Magnenat-Thalmann and D. Thalmann" +, booktitle = "New Trends in Animation and Visualization" +, publisher = "John Wiley \& Sons" +, address = "London, UK" +, year = 1991 +, pages = "13--41" +, update = "99.11 bibrelex, 95.05 abrams" } @article{p-dmdci-35 -, author = "A. L. Patterson" -, title = "A direct method for the determination of the components of interatomic distances in crystals" -, journal = "Zeitschrift Krist." -, volume = 90 -, year = 1935 -, pages = "517--542" -, update = "97.11 bibrelex" +, author = "A. L. Patterson" +, title = "A direct method for the determination of the components of interatomic distances in crystals" +, journal = "Zeitschrift Krist." +, volume = 90 +, year = 1935 +, pages = "517--542" +, update = "97.11 bibrelex" } @article{p-axrac-44 -, author = "A. L. Patterson" -, title = "Amibguities in the {X}-ray analysis of crystal structures" -, journal = "Physical Review" -, volume = 65 -, year = 1944 -, pages = "195--201" -, update = "97.11 bibrelex" +, author = "A. L. Patterson" +, title = "Amibguities in the {X}-ray analysis of crystal structures" +, journal = "Physical Review" +, volume = 65 +, year = 1944 +, pages = "195--201" +, update = "97.11 bibrelex" } @book{p-rmmpc-81 -, author = "R. P. Paul" -, title = "Robot Manipulators, Mathematics, Programming and Control" -, publisher = "MIT Press" -, year = 1981 -, update = "97.11 bibrelex" +, author = "R. P. Paul" +, title = "Robot Manipulators, Mathematics, Programming and Control" +, publisher = "MIT Press" +, year = 1981 +, update = "97.11 bibrelex" } @book{ps-dtram-80 -, author = "W. Paul and J. Simon" -, title = "Decision trees and random access machines" -, series = "Logic and Algorithmic Monographs" -, volume = 30 -, publisher = "Enseignement Mathematique" -, year = 1980 -, update = "97.11 bibrelex" +, author = "W. Paul and J. Simon" +, title = "Decision trees and random access machines" +, series = "Logic and Algorithmic Monographs" +, volume = 30 +, publisher = "Enseignement Mathematique" +, year = 1980 +, update = "97.11 bibrelex" } @inproceedings{pvw-pd23t-83 -, author = "W. Paul and U. Vishkin and H. Wagener" -, title = "Parallel Dictionaries on 2-3 Trees" -, booktitle = "Proceedings of the Tenth ICALP" -, year = 1983 -, pages = "597--609" -, update = "96.09 orourke" +, author = "W. Paul and U. Vishkin and H. Wagener" +, title = "Parallel Dictionaries on 2-3 Trees" +, booktitle = "Proceedings of the Tenth ICALP" +, year = 1983 +, pages = "597--609" +, update = "96.09 orourke" } @inproceedings{phkv-vboos-93 -, author = "W. De Pauw and R. Helm and D. Kimelman and J. Vlissides" -, title = "Visualizing the Behavior of Object-Oriented Systems" -, booktitle = "Proc. 8th Annu. ACM Conf. Object-Oriented Program. Syst. Lang. Appl." -, series = "SIGPLAN Notices" -, volume = 28 -, year = 1993 -, pages = "326--337" -, keywords = "graph drawing" -, update = "96.09 tamassia, 96.04 garg" +, author = "W. De Pauw and R. Helm and D. Kimelman and J. Vlissides" +, title = "Visualizing the Behavior of Object-Oriented Systems" +, booktitle = "Proc. 8th Annu. ACM Conf. Object-Oriented Program. Syst. Lang. Appl." +, series = "SIGPLAN Notices" +, volume = 28 +, year = 1993 +, pages = "326--337" +, keywords = "graph drawing" +, update = "96.09 tamassia, 96.04 garg" } @book{p-agip-82 -, author = "T. Pavlidis" -, title = "Algorithms for Graphics and Image Processing" -, publisher = "Computer Science Press" -, address = "Berlin, West Germany" -, year = 1982 +, author = "T. Pavlidis" +, title = "Algorithms for Graphics and Image Processing" +, publisher = "Computer Science Press" +, address = "Berlin, West Germany" +, year = 1982 } @article{p-asp-68 -, author = "T. Pavlidis" -, title = "Analysis of set patterns" -, journal = "Pattern Recogn." -, volume = 1 -, year = 1968 -, pages = "165--178" +, author = "T. Pavlidis" +, title = "Analysis of set patterns" +, journal = "Pattern Recogn." +, volume = 1 +, year = 1968 +, pages = "165--178" } @book{p-cg-78 -, author = "T. Pavlidis" -, title = "Computer Graphics" -, publisher = "Computer Science Press" -, address = "Potomac, MD" -, year = 1978 -, update = "98.11 bibrelex" +, author = "T. Pavlidis" +, title = "Computer Graphics" +, publisher = "Computer Science Press" +, address = "Potomac, MD" +, year = 1978 +, update = "98.11 bibrelex" } @article{p-farg-79 -, author = "T. Pavlidis" -, title = "Filling algorithms for raster graphics" -, journal = "Comput. Graph. Image Process." -, volume = 10 -, year = 1979 -, pages = "126--141" -, update = "98.07 bibrelex" +, author = "T. Pavlidis" +, title = "Filling algorithms for raster graphics" +, journal = "Comput. Graph. Image Process." +, volume = 10 +, year = 1979 +, pages = "126--141" +, update = "98.07 bibrelex" } @article{p-rflg-72 -, author = "T. Pavlidis" -, title = "Representation of figures by labelled graphs" -, journal = "Pattern Recogn." -, volume = 4 -, year = 1972 -, pages = "5--17" +, author = "T. Pavlidis" +, title = "Representation of figures by labelled graphs" +, journal = "Pattern Recogn." +, volume = 4 +, year = 1972 +, pages = "5--17" } @article{pv-abdi-85 -, author = "T. Pavlidis and C. J. {Van Wyk}" -, title = "An Automatic Beautifier for Drawings and Illustrations" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, year = 1985 -, pages = "225--234" -, note = "Proc. SIGGRAPH '85" -, update = "94.09 lambert, 93.09 milone+mitchell" +, author = "T. Pavlidis and C. J. {Van Wyk}" +, title = "An Automatic Beautifier for Drawings and Illustrations" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, year = 1985 +, pages = "225--234" +, note = "Proc. SIGGRAPH '85" +, update = "94.09 lambert, 93.09 milone+mitchell" } @article{p-mttss-67 -, author = "A. Paz" -, title = "Minimization theorems and techniques for sequential stochastic machines" -, journal = "Inform. Control" -, volume = 11 -, year = 1967 -, pages = "155--166" -, update = "93.09 milone+mitchell" +, author = "A. Paz" +, title = "Minimization theorems and techniques for sequential stochastic machines" +, journal = "Inform. Control" +, volume = 11 +, year = 1967 +, pages = "155--166" +, update = "93.09 milone+mitchell" } @book{p-hissc-84 -, author = "J. Pearl" -, title = "Heuristics: Intelligent Search Strategies for Computer Problem Solving" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1984 -, keywords = "book" +, author = "J. Pearl" +, title = "Heuristics: Intelligent Search Strategies for Computer Problem Solving" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1984 +, keywords = "book" } @article{p-icnt-86 -, author = "J. Pecht" -, title = "On the index of concavity of neighborhood templates" -, journal = "Acta Cybern." -, volume = 7 -, year = 1986 -, pages = "373--376" +, author = "J. Pecht" +, title = "On the index of concavity of neighborhood templates" +, journal = "Acta Cybern." +, volume = 7 +, year = 1986 +, pages = "373--376" } @article{p-oksp-85 -, author = "G. W. Peck" -, title = "On $k$-sets in the plane" -, journal = "Discrete Math." -, volume = 56 -, year = 1985 -, pages = "73--74" -, update = "98.03 agarwal" +, author = "G. W. Peck" +, title = "On $k$-sets in the plane" +, journal = "Discrete Math." +, volume = 56 +, year = 1985 +, pages = "73--74" +, update = "98.03 agarwal" } @techreport{p-crz-91 -, author = "P. Pedersen" -, title = "Counting real zeros" -, type = "Technical {Report}" -, number = "545-R243" -, institution = "New York Univ." -, address = "New York, NY" -, year = 1991 -, update = "98.03 bibrelex" +, author = "P. Pedersen" +, title = "Counting real zeros" +, type = "Technical {Report}" +, number = "545-R243" +, institution = "New York Univ." +, address = "New York, NY" +, year = 1991 +, update = "98.03 bibrelex" } @book{p-gcc-70 -, author = "D. Pedoe" -, title = "Geometry, a comprehensive course" -, publisher = "Dover Publications" -, address = "New York" -, year = 1970 +, author = "D. Pedoe" +, title = "Geometry, a comprehensive course" +, publisher = "Dover Publications" +, address = "New York" +, year = 1970 } @inproceedings{pw-spcgs-89 -, author = "J. Pegna and F.-E. Wolter" -, title = "A Simple Practical Criterion to Guarantee Second Order Smoothness of Blend Surfaces" -, editor = "B. Ravani" -, booktitle = "Proc. 15th ASME Design Automation Conference: Advances in Design Automation" -, volume = 1 -, year = 1989 -, pages = "93--105" -, update = "95.05 abrams" +, author = "J. Pegna and F.-E. Wolter" +, title = "A Simple Practical Criterion to Guarantee Second Order Smoothness of Blend Surfaces" +, editor = "B. Ravani" +, booktitle = "Proc. 15th ASME Design Automation Conference: Advances in Design Automation" +, volume = 1 +, year = 1989 +, pages = "93--105" +, update = "95.05 abrams" } @inproceedings{pw-dmtcs-90 -, author = "J. Pegna and F.-E. Wolter" -, title = "Designing and Mapping Trimming Curves on Surfaces Using Orthogonal Projection" -, editor = "B. Ravani" -, booktitle = "Proc. of the 16th ASME Design Automation Conference: Advances in Design Automation, Computer Aided and Computational Design" -, volume = "I" -, year = 1990 -, pages = "235--245" -, update = "95.05 abrams" +, author = "J. Pegna and F.-E. Wolter" +, title = "Designing and Mapping Trimming Curves on Surfaces Using Orthogonal Projection" +, editor = "B. Ravani" +, booktitle = "Proc. of the 16th ASME Design Automation Conference: Advances in Design Automation, Computer Aided and Computational Design" +, volume = "I" +, year = 1990 +, pages = "235--245" +, update = "95.05 abrams" } @article{pw-dmtcs-94 -, author = "J. Pegna and F.-E. Wolter" -, title = "Designing and Mapping Trimming Curves on Surfaces Using Orthogonal Projection" -, journal = "Journal of Mechanical Design, ASME Transactions" -, volume = "??" -, year = 1994 -, note = "To appear" -, update = "95.05 abrams" +, author = "J. Pegna and F.-E. Wolter" +, title = "Designing and Mapping Trimming Curves on Surfaces Using Orthogonal Projection" +, journal = "Journal of Mechanical Design, ASME Transactions" +, volume = "??" +, year = 1994 +, note = "To appear" +, update = "95.05 abrams" } @article{pw-gcgcc-92 -, author = "J. Pegna and F.-E. Wolter" -, title = "Geometrical Criteria to Guarantee Curvature Continuity of Blend Surfaces" -, journal = "Journal of Mechanical Design, ASME Transactions" -, volume = 114 -, number = 1 -, year = 1992 -, pages = "201--210" -, update = "95.05 abrams" +, author = "J. Pegna and F.-E. Wolter" +, title = "Geometrical Criteria to Guarantee Curvature Continuity of Blend Surfaces" +, journal = "Journal of Mechanical Design, ASME Transactions" +, volume = 114 +, number = 1 +, year = 1992 +, pages = "201--210" +, update = "95.05 abrams" } @inproceedings{pw-frrp-97 -, author = "Naixun Pei and Sue Whitesides" -, title = "On Folding Rulers in Regular Polygons" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "11--16" -, update = "97.11 jones" +, author = "Naixun Pei and Sue Whitesides" +, title = "On Folding Rulers in Regular Polygons" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "11--16" +, update = "97.11 jones" } @inproceedings{pw-rrc-96 -, author = "N. Pei and S. Whitesides" -, title = "On the reachable regions of chains" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "161--166" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "N. Pei and S. Whitesides" +, title = "On the reachable regions of chains" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "161--166" +, update = "97.03 agarwal, 96.09 mitchell" } @article{p-rcbt-94 -, author = "Roberto Peirone" -, title = "Reflections can be trapped" -, journal = "Amer. Math. Monthly" -, volume = 101 -, year = 1994 -, pages = "259--260" -, update = "01.04 orourke" +, author = "Roberto Peirone" +, title = "Reflections can be trapped" +, journal = "Amer. Math. Monthly" +, volume = 101 +, year = 1994 +, pages = "259--260" +, update = "01.04 orourke" } @techreport{pr-old-87 -, author = "A. Pelc and I. Rival" -, title = "Orders with Level Diagrams" -, number = "TR-87-11" -, institution = "Department of Computer Science, University of Ottawa" -, month = mar -, year = 1987 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "A. Pelc and I. Rival" +, title = "Orders with Level Diagrams" +, number = "TR-87-11" +, institution = "Department of Computer Science, University of Ottawa" +, month = mar +, year = 1987 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ps-gs-89 -, author = "D. Peleg and A. Sch{\"a}ffer" -, title = "Graph spanners" -, journal = "J. Graph Theory" -, volume = 13 -, year = 1989 -, pages = "99--116" -, update = "97.11 bibrelex" +, author = "D. Peleg and A. Sch{\"a}ffer" +, title = "Graph spanners" +, journal = "J. Graph Theory" +, volume = 13 +, year = 1989 +, pages = "99--116" +, update = "97.11 bibrelex" } @inproceedings{pu-osh-87 -, author = "D. Peleg and J. Ullman" -, title = "An optimal synchonizer for the hypercube" -, booktitle = "Proc. 6th ACM Symp. on Princ. Distr. Comp." -, year = 1987 -, pages = "77--85" -, precedes = "pu-osh-89" -, update = "98.07 bibrelex" +, author = "D. Peleg and J. Ullman" +, title = "An optimal synchonizer for the hypercube" +, booktitle = "Proc. 6th ACM Symp. on Princ. Distr. Comp." +, year = 1987 +, pages = "77--85" +, precedes = "pu-osh-89" +, update = "98.07 bibrelex" } @article{pu-osh-89 -, author = "D. Peleg and J. Ullman" -, title = "An optimal synchonizer for the hypercube" -, journal = "SIAM J. Comput." -, volume = 18 -, year = 1989 -, pages = "740--747" -, succeeds = "pu-osh-87" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "D. Peleg and J. Ullman" +, title = "An optimal synchonizer for the hypercube" +, journal = "SIAM J. Comput." +, volume = 18 +, year = 1989 +, pages = "740--747" +, succeeds = "pu-osh-87" +, update = "98.07 bibrelex, 97.11 bibrelex" } @inproceedings{pu-tbser-88 -, author = "D. Peleg and E. Upfal" -, title = "A tradeoff between space and efficiency for routing tables" -, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." -, year = 1988 -, pages = "43--52" -, update = "97.11 bibrelex" +, author = "D. Peleg and E. Upfal" +, title = "A tradeoff between space and efficiency for routing tables" +, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." +, year = 1988 +, pages = "43--52" +, update = "97.11 bibrelex" } @techreport{p-bcspi-93 -, author = "M. Pellegrini" -, title = "Building convex space partitions induced by pairwise interior-disjoint simplices" -, type = "Technical {Report}" -, number = "ICSI TR-93-039" -, institution = "ICSI" -, month = aug -, year = 1993 -, update = "98.03 bibrelex" +, author = "M. Pellegrini" +, title = "Building convex space partitions induced by pairwise interior-disjoint simplices" +, type = "Technical {Report}" +, number = "ICSI TR-93-039" +, institution = "ICSI" +, month = aug +, year = 1993 +, update = "98.03 bibrelex" } @phdthesis{p-caasv-91 -, author = "M. Pellegrini" -, title = "Combinatorical and algorithmic analysis of stabbing and visibility problems in $3$-dimensional space" -, school = "Courant Inst. Math. Sci., New York University" -, address = "New York, NY" -, month = feb -, year = 1991 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "M. Pellegrini" +, title = "Combinatorical and algorithmic analysis of stabbing and visibility problems in $3$-dimensional space" +, school = "Courant Inst. Math. Sci., New York University" +, address = "New York, NY" +, month = feb +, year = 1991 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @inproceedings{p-efwst-96 -, author = "Marco Pellegrini" -, title = "Electrostatic fields without singularities: {Theory} and algorithms" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "184--191" -, keywords = "electrostatic force between simplices, Monte Carlo method, integral geometry, approximation, charge densities" -, update = "96.09 agarwal, 96.01 mitchell" +, author = "Marco Pellegrini" +, title = "Electrostatic fields without singularities: {Theory} and algorithms" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "184--191" +, keywords = "electrostatic force between simplices, Monte Carlo method, integral geometry, approximation, charge densities" +, update = "96.09 agarwal, 96.01 mitchell" } @inproceedings{p-innpl-92 -, author = "M. Pellegrini" -, title = "Incidence and nearest-neighbor problems for lines in $3$-space" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "130--137" -, cites = "aass-sdp-90, am-rsps-92, as-tsbac-90, as-anps-91, as-cscas-, as-zsha-91, cegpsss-ccclr-90, cegs-lscaa-89, cegs-sessr-89, cegs-dwclp-92, ck-plscc-89, c-sdsno-87, cs-agpli-88, csw-qoubs-90, bhosk-ershs-91, egs-ccmfa-90, fhs-cmsp-89, gss-gmppt-88, h-cscca-91, ho-empls-89, ks-ampsc-88, ls-esmpa-87, ls-pptmc-87, m-ept-91, m-apcad-83, p-srs3d-90, p-rsicl-91, ps-fsl3s-92, ss-smprg-89, t-epcp-91, ZZZ" -, update = "97.11 bibrelex" +, author = "M. Pellegrini" +, title = "Incidence and nearest-neighbor problems for lines in $3$-space" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "130--137" +, cites = "aass-sdp-90, am-rsps-92, as-tsbac-90, as-anps-91, as-cscas-, as-zsha-91, cegpsss-ccclr-90, cegs-lscaa-89, cegs-sessr-89, cegs-dwclp-92, ck-plscc-89, c-sdsno-87, cs-agpli-88, csw-qoubs-90, bhosk-ershs-91, egs-ccmfa-90, fhs-cmsp-89, gss-gmppt-88, h-cscca-91, ho-empls-89, ks-ampsc-88, ls-esmpa-87, ls-pptmc-87, m-ept-91, m-apcad-83, p-srs3d-90, p-rsicl-91, ps-fsl3s-92, ss-smprg-89, t-epcp-91, ZZZ" +, update = "97.11 bibrelex" } @article{p-lbsl3-93 -, author = "M. Pellegrini" -, title = "Lower bounds on stabbing lines in 3-space" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "53--58" -, update = "97.11 aronov" +, author = "M. Pellegrini" +, title = "Lower bounds on stabbing lines in 3-space" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "53--58" +, update = "97.11 aronov" } @inproceedings{p-mcaff-95 -, author = "Marco Pellegrini" -, title = "{Monte Carlo} Approximation of Form Factors with Error Bounded a Priori" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "287--296" -, keywords = "" -, cites = "a-ijpop-94, bgsss-mcm-66, bo-arcgi-79, cg-hrsce-85, dr-mni-75, ejla-csmcd-91, f-iptia-68, hsa-rhra-91, jvv-rgcsu-86, kkkll-mcaep-90, lsg-beer-94, m-sosdr-91, m-hsrrm-91, ps-cgi-85, pt-dpplo-90, s-igbmf-93, s-iggp-76, sh-trht-92, sp-gtpmi-89, s-tlpm-87, weh-rtapr-89, wrc-rtsdi-88, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Marco Pellegrini" +, title = "{Monte Carlo} Approximation of Form Factors with Error Bounded a Priori" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "287--296" +, keywords = "" +, cites = "a-ijpop-94, bgsss-mcm-66, bo-arcgi-79, cg-hrsce-85, dr-mni-75, ejla-csmcd-91, f-iptia-68, hsa-rhra-91, jvv-rgcsu-86, kkkll-mcaep-90, lsg-beer-94, m-sosdr-91, m-hsrrm-91, ps-cgi-85, pt-dpplo-90, s-igbmf-93, s-iggp-76, sh-trht-92, sp-gtpmi-89, s-tlpm-87, weh-rtapr-89, wrc-rtsdi-88, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @techreport{p-nrrsi-91 -, author = "M. Pellegrini" -, title = "New results on ray-shooting and isotopy classes of lines in $3$-dimensional space" -, year = 1991 -, update = "97.11 bibrelex" +, author = "M. Pellegrini" +, title = "New results on ray-shooting and isotopy classes of lines in $3$-dimensional space" +, year = 1991 +, update = "97.11 bibrelex" } @article{p-cfpsc-94 -, author = "M. Pellegrini" -, title = "On Collision-Free Placements of Simplices and the Closest Pair of Lines in 3-Space" -, journal = "SIAM J. Comput." -, volume = 23 -, number = 1 -, year = 1994 -, pages = "133--153" -, update = "97.03 agarwal" +, author = "M. Pellegrini" +, title = "On Collision-Free Placements of Simplices and the Closest Pair of Lines in 3-Space" +, journal = "SIAM J. Comput." +, volume = 23 +, number = 1 +, year = 1994 +, pages = "133--153" +, update = "97.03 agarwal" } @inproceedings{p-lmps3-93 -, author = "M. Pellegrini" -, title = "On lines missing polyhedral sets in $3$-space" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "19--28" -, cites = "am-rsps-92, as-anps-91, as-tsbac-90, as-car-92, c-oaitd-89, cegs-lscaa-89, cegs-ablsp-89, cegs-dwclp-92, cosw-cds-84, c-narsc-87, bhosk-ershs-91, bhok-sanvp-92, e-acg-87, egs-ccmfa-90, gy-tsr-80, m-cen-89, m-cha-90i, m-rph-91, n-pa-88, n-tsott-86, ns-spots-89, ns-tsp-89, p-srs3d-90, p-rst3s-93, p-innpl-92, ps-fsl3s-92, pss-stsps-88, ps-cgi-85, pt-espl-89, rs-eoshs-88i, ss-smprg-89, t-mss-85, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" +, author = "M. Pellegrini" +, title = "On lines missing polyhedral sets in $3$-space" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "19--28" +, cites = "am-rsps-92, as-anps-91, as-tsbac-90, as-car-92, c-oaitd-89, cegs-lscaa-89, cegs-ablsp-89, cegs-dwclp-92, cosw-cds-84, c-narsc-87, bhosk-ershs-91, bhok-sanvp-92, e-acg-87, egs-ccmfa-90, gy-tsr-80, m-cen-89, m-cha-90i, m-rph-91, n-pa-88, n-tsott-86, ns-spots-89, ns-tsp-89, p-srs3d-90, p-rst3s-93, p-innpl-92, ps-fsl3s-92, pss-stsps-88, ps-cgi-85, pt-espl-89, rs-eoshs-88i, ss-smprg-89, t-mss-85, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 93.09 jones" } @article{p-lmps3-94 -, author = "M. Pellegrini" -, title = "On lines missing polyhedral sets in $3$-space" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "203--221" -, update = "97.03 agarwal" +, author = "M. Pellegrini" +, title = "On lines missing polyhedral sets in $3$-space" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "203--221" +, update = "97.03 agarwal" } @inproceedings{p-plmps-94 -, author = "Marco Pellegrini" -, title = "On Point Location and Motion Planning among Simplices" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "95--104" -, precedes = "p-plmps-96" -, update = "97.03 smid, 96.09 orourke, 94.01 jones" +, author = "Marco Pellegrini" +, title = "On Point Location and Motion Planning among Simplices" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "95--104" +, precedes = "p-plmps-96" +, update = "97.03 smid, 96.09 orourke, 94.01 jones" } @article{p-plmps-96 -, author = "Marco Pellegrini" -, title = "On Point Location and Motion Planning among Simplices" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "1061--1081" -, succeeds = "p-plmps-94" -, update = "97.03 smid" +, author = "Marco Pellegrini" +, title = "On Point Location and Motion Planning among Simplices" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "1061--1081" +, succeeds = "p-plmps-94" +, update = "97.03 smid" } @inproceedings{p-zcdps-91 -, author = "M. Pellegrini" -, title = "On the zone of a co-dimension $p$ surface in a hyperplane arrangement" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "233--238" -, precedes = "aps-zsha-93" -, cites = "ams-sscch-91, as-zsha-91, c-narsc-87, e-acg-87, g-cp-67, ZZZ" -, update = "98.07 bibrelex, 95.09 aronov" +, author = "M. Pellegrini" +, title = "On the zone of a co-dimension $p$ surface in a hyperplane arrangement" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "233--238" +, precedes = "aps-zsha-93" +, cites = "ams-sscch-91, as-zsha-91, c-narsc-87, e-acg-87, g-cp-67, ZZZ" +, update = "98.07 bibrelex, 95.09 aronov" } @inproceedings{p-rsicl-91 -, author = "M. Pellegrini" -, title = "Ray-shooting and isotopy classes of lines in $3$-dimensional space" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "20--31" -, keywords = "ray tracing, random sampling" +, author = "M. Pellegrini" +, title = "Ray-shooting and isotopy classes of lines in $3$-dimensional space" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "20--31" +, keywords = "ray tracing, random sampling" } @incollection{p-rsls-97 -, author = "M. Pellegrini" -, title = "Ray shooting and lines in space" -, chapter = 32 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "599--614" -, update = "97.11 orourke" +, author = "M. Pellegrini" +, title = "Ray shooting and lines in space" +, chapter = 32 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "599--614" +, update = "97.11 orourke" } @article{p-rst3s-93 -, author = "M. Pellegrini" -, title = "Ray shooting on triangles in $3$-space" -, journal = "Algorithmica" -, volume = 9 -, year = 1993 -, pages = "471--494" -, update = "94.05 matousek" +, author = "M. Pellegrini" +, title = "Ray shooting on triangles in $3$-space" +, journal = "Algorithmica" +, volume = 9 +, year = 1993 +, pages = "471--494" +, update = "94.05 matousek" } @article{p-rhsrp-96 -, author = "M. Pellegrini" -, title = "Repetitive hidden surface removal for polyhedra" -, journal = "J. Algorithms" -, volume = 21 -, year = 1996 -, pages = "80--101" -, update = "96.09 smid" +, author = "M. Pellegrini" +, title = "Repetitive hidden surface removal for polyhedra" +, journal = "J. Algorithms" +, volume = 21 +, year = 1996 +, pages = "80--101" +, update = "96.09 smid" } @inproceedings{p-rhsrp-93 -, author = "Marco Pellegrini" -, title = "Repetitive Hidden Surface Removal for Polyhedral Scenes" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "541--552" -, update = "96.05 agarwal, 93.09 smid, 93.05 jones" +, author = "Marco Pellegrini" +, title = "Repetitive Hidden Surface Removal for Polyhedral Scenes" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "541--552" +, update = "96.05 agarwal, 93.09 smid, 93.05 jones" } @inproceedings{p-srs3d-90 -, author = "M. Pellegrini" -, title = "Stabbing and ray shooting in $3$-dimensional space" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "177--186" -, cites = "a-dapal-89, a-rsoas-89, ak-frtrc-87, aw-alts-87, bdeg-vmpv-90, cegs-lscaa-89, c-narsc-87, cs-vppt-86, e-acg-87, egs-cmfal-88, emprww-sls-82, eos-calha-86, g-irt-89, gos-rsipl-89, hp-mag-52, hs-ndssg-86, jk-spals-88, m-ai-70, mo-al3sd-88, os-oshsr-89, s-chdch-86, sml-rtatp-88, s-agtd-34, s-pcg-88, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex, 97.11 bibrelex" +, author = "M. Pellegrini" +, title = "Stabbing and ray shooting in $3$-dimensional space" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "177--186" +, cites = "a-dapal-89, a-rsoas-89, ak-frtrc-87, aw-alts-87, bdeg-vmpv-90, cegs-lscaa-89, c-narsc-87, cs-vppt-86, e-acg-87, egs-cmfal-88, emprww-sls-82, eos-calha-86, g-irt-89, gos-rsipl-89, hp-mag-52, hs-ndssg-86, jk-spals-88, m-ai-70, mo-al3sd-88, os-oshsr-89, s-chdch-86, sml-rtatp-88, s-agtd-34, s-pcg-88, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex, 97.11 bibrelex" } @inproceedings{ps-fsl3d-91 -, author = "M. Pellegrini and P. Shor" -, title = "Finding stabbing lines in $3$-dimensional space" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "24--31" +, author = "M. Pellegrini and P. Shor" +, title = "Finding stabbing lines in $3$-dimensional space" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "24--31" } @article{ps-fsl3s-92 -, author = "M. Pellegrini and P. Shor" -, title = "Finding stabbing lines in $3$-space" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "191--208" -, update = "94.01 matousek" +, author = "M. Pellegrini and P. Shor" +, title = "Finding stabbing lines in $3$-space" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "191--208" +, update = "94.01 matousek" } @article{p-afilb-84 -, author = "Q. S. Peng" -, title = "An Algorithm for Finding Intersection Lines between Two {B}-Spline Surfaces" -, journal = "CAD" -, volume = 16 -, number = 4 -, month = jul -, year = 1984 -, update = "97.11 bibrelex" +, author = "Q. S. Peng" +, title = "An Algorithm for Finding Intersection Lines between Two {B}-Spline Surfaces" +, journal = "CAD" +, volume = 16 +, number = 4 +, month = jul +, year = 1984 +, update = "97.11 bibrelex" } @inproceedings{p-emmls-73 -, author = "K. R. Penrose" -, title = "Extremal Motion of a Moved Line Segment" -, booktitle = "Proc. of the Montana Acad. of Sciences" -, year = 1973 -, pages = "46--51" -, update = "93.09 milone+mitchell" +, author = "K. R. Penrose" +, title = "Extremal Motion of a Moved Line Segment" +, booktitle = "Proc. of the Montana Acad. of Sciences" +, year = 1973 +, pages = "46--51" +, update = "93.09 milone+mitchell" } @article{p-p-78 -, author = "R. Penrose" -, title = "Pentaplexity" -, journal = "Eureka" -, volume = 39 -, year = 1978 -, update = "97.11 bibrelex" +, author = "R. Penrose" +, title = "Pentaplexity" +, journal = "Eureka" +, volume = 39 +, year = 1978 +, update = "97.11 bibrelex" } @inproceedings{pmp-ufemg-89 -, author = "J. Peraire and K. Morgan and J. Peiro" -, title = "Unstructured finite element mesh generation and adaptive procedures for cfd." -, booktitle = "{AGARD FDP}: Specialists's Meeting" -, month = may -, year = 1989 -, update = "98.11 bibrelex" +, author = "J. Peraire and K. Morgan and J. Peiro" +, title = "Unstructured finite element mesh generation and adaptive procedures for cfd." +, booktitle = "{AGARD FDP}: Specialists's Meeting" +, month = may +, year = 1989 +, update = "98.11 bibrelex" } @book{psu-mnp-88 -, author = "A. L. Peressini and F. E. Sullivan and J. J. Uhl" -, title = "The Mathematics of Nonlinear Programming" -, series = "Undergraduate Texts in Mathematics" -, publisher = "Springer-Verlag" -, year = 1988 -, update = "97.03 gaertner+salinger" +, author = "A. L. Peressini and F. E. Sullivan and J. J. Uhl" +, title = "The Mathematics of Nonlinear Programming" +, series = "Undergraduate Texts in Mathematics" +, publisher = "Springer-Verlag" +, year = 1988 +, update = "97.03 gaertner+salinger" } @article{ps-cncsr-90 -, author = "M. Perles and S. Shelah" -, title = "A closed $(n+1)$-convex set in {$R^{2}$} is a union of $n^{6}$ convex sets" -, journal = "Israel J. Math." -, volume = 70 -, year = 1990 -, pages = "305--312" -, update = "98.03 bibrelex" +, author = "M. Perles and S. Shelah" +, title = "A closed $(n+1)$-convex set in {$R^{2}$} is a union of $n^{6}$ convex sets" +, journal = "Israel J. Math." +, volume = 70 +, year = 1990 +, pages = "305--312" +, update = "98.03 bibrelex" } @article{p--92 -, author = "G. Perrot" -, title = "??" -, journal = "J. Comp. Chem." -, volume = 13 -, number = 1 -, year = 1992 -, pages = "1--11" -, update = "98.03 bibrelex" +, author = "G. Perrot" +, title = "??" +, journal = "J. Comp. Chem." +, volume = 13 +, number = 1 +, year = 1992 +, pages = "1--11" +, update = "98.03 bibrelex" } @article{p-nmasp-78 -, author = "H. Persson" -, title = "{NC} Machining of Arbitrarily Shaped Pockets" -, journal = "Comput. Aided Design" -, volume = 10 -, number = 3 -, month = may -, year = 1978 -, pages = "169--174" -, update = "93.09 held" -, annote = "makes use of `bisector' net" +, author = "H. Persson" +, title = "{NC} Machining of Arbitrarily Shaped Pockets" +, journal = "Comput. Aided Design" +, volume = 10 +, number = 3 +, month = may +, year = 1978 +, pages = "169--174" +, update = "93.09 held" +, annote = "makes use of `bisector' net" } @incollection{p-gsa-89 -, author = "J. Pertin-Troccaz" -, title = "Grasping: {A} state of the art" -, editor = "O. Khatib and J. J. Craig and T. Lozano-Perez" -, booktitle = "The Robotics Review" -, volume = 1 -, publisher = "MIT Press" -, year = 1989 -, pages = "71--98" -, update = "98.03 bibrelex" +, author = "J. Pertin-Troccaz" +, title = "Grasping: {A} state of the art" +, editor = "O. Khatib and J. J. Craig and T. Lozano-Perez" +, booktitle = "The Robotics Review" +, volume = 1 +, publisher = "MIT Press" +, year = 1989 +, pages = "71--98" +, update = "98.03 bibrelex" } @article{ps-prmsw-88 -, author = "M. A. Peshkin and A. C. Sanderson" -, title = "Planning robotic manipulation strategies for workpieces that slide" -, journal = "Internat. J. Robot. Autom." -, volume = 4 -, number = 5 -, year = 1988 -, pages = "524--531" -, update = "98.07 bibrelex" +, author = "M. A. Peshkin and A. C. Sanderson" +, title = "Planning robotic manipulation strategies for workpieces that slide" +, journal = "Internat. J. Robot. Autom." +, volume = 4 +, number = 5 +, year = 1988 +, pages = "524--531" +, update = "98.07 bibrelex" } @techreport{ps-rgpcr-85 -, author = "M. A. Peshkin and A. C. Sanderson" -, title = "Reachable grasps on a polygon: {The} convex rope algorithm" -, type = "Technical {Report}" -, number = "CMU-RI-TR-85-6" -, institution = "Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1985 -, update = "97.11 bibrelex" +, author = "M. A. Peshkin and A. C. Sanderson" +, title = "Reachable grasps on a polygon: {The} convex rope algorithm" +, type = "Technical {Report}" +, number = "CMU-RI-TR-85-6" +, institution = "Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1985 +, update = "97.11 bibrelex" } @article{ps-rgpcr-86 -, author = "M. A. Peshkin and A. C. Sanderson" -, title = "Reachable Grasps on a Polygon: {The} Convex Rope Algorithm" -, journal = "Internat. J. Robot. Autom." -, volume = "RA-2" -, year = 1986 -, pages = "53--58" -, update = "93.09 milone+mitchell" +, author = "M. A. Peshkin and A. C. Sanderson" +, title = "Reachable Grasps on a Polygon: {The} Convex Rope Algorithm" +, journal = "Internat. J. Robot. Autom." +, volume = "RA-2" +, year = 1986 +, pages = "53--58" +, update = "93.09 milone+mitchell" } @article{ps-mpsw-88 -, author = "M. A. Peshkin and A. C. Sanderson" -, title = "The motion of a pushed sliding workpiece" -, journal = "Internat. J. Robot. Res." -, volume = 4 -, number = 6 -, year = 1988 -, pages = "569--598" -, update = "98.07 bibrelex" +, author = "M. A. Peshkin and A. C. Sanderson" +, title = "The motion of a pushed sliding workpiece" +, journal = "Internat. J. Robot. Res." +, volume = 4 +, number = 6 +, year = 1988 +, pages = "569--598" +, update = "98.07 bibrelex" } @inproceedings{p-srdss-73 -, author = "C. Peterkin" -, title = "Some results on {Davenport--Schinzel} sequences" -, editor = "R. Thomas and H. Williams" -, booktitle = "Congressus Numer. IX: Proc. 3rd Manitoba Conf. on Numer. Math. and Computing" -, year = 1973 -, pages = "337--344" -, update = "95.09 agarwal" +, author = "C. Peterkin" +, title = "Some results on {Davenport--Schinzel} sequences" +, editor = "R. Thomas and H. Williams" +, booktitle = "Congressus Numer. IX: Proc. 3rd Manitoba Conf. on Numer. Math. and Computing" +, year = 1973 +, pages = "337--344" +, update = "95.09 agarwal" } @techreport{p-lssic- -, author = "J. Peters" -, title = "Local smooth surface interpolation: {A} classification" -, type = "Preprint" -, institution = "Univ. Wisconsin" -, year = "??" -, update = "98.07 bibrelex" +, author = "J. Peters" +, title = "Local smooth surface interpolation: {A} classification" +, type = "Preprint" +, institution = "Univ. Wisconsin" +, year = "??" +, update = "98.07 bibrelex" } @inproceedings{psff-atsde-97 -, author = "T. Peters and N. Stewart and P. Fussel and D. Ferguson" -, title = "Algorithmic tolerances and semantics in data exchange" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "403--405" -, cites = "ds-rnmgc-, hpy-rismp1-96, hpy-rismp2-96, -nwp-91, -sp-, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "T. Peters and N. Stewart and P. Fussel and D. Ferguson" +, title = "Algorithmic tolerances and semantics in data exchange" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "403--405" +, cites = "ds-rnmgc-, hpy-rismp1-96, hpy-rismp2-96, -nwp-91, -sp-, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{p-bcsgm-?? -, author = "D. P. Peterson" -, title = "Boundary to constructive solid geometry mappings: a focus on $2$-d issues" -, type = "Report" -, number = "??" -, institution = "CAD Tech. Div., Sandia National Lab." -, address = "Albuquerque, NM" -, year = "??" +, author = "D. P. Peterson" +, title = "Boundary to constructive solid geometry mappings: a focus on $2$-d issues" +, type = "Report" +, number = "??" +, institution = "CAD Tech. Div., Sandia National Lab." +, address = "Albuquerque, NM" +, year = "??" } @techreport{p-hresr-84 -, author = "D. P. Peterson" -, title = "Halfspace representation of extrusions, solids of revolution, and pyramids" -, type = "Report" -, number = "SAND84-0572" -, institution = "Sandia National Lab." -, address = "Albuquerque, NM" -, year = 1984 +, author = "D. P. Peterson" +, title = "Halfspace representation of extrusions, solids of revolution, and pyramids" +, type = "Report" +, number = "SAND84-0572" +, institution = "Sandia National Lab." +, address = "Albuquerque, NM" +, year = 1984 } @incollection{p-tns-94 -, author = "John W. Peterson" -, title = "Tessellation of {NURB} Surfaces" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "286--320" -, keywords = "surface subdivision, NURB, Bezier surface, B-spline surface, polygonization" -, update = "94.09 heckbert" -, annote = "Gives code for polygonizing a very general class of +, author = "John W. Peterson" +, title = "Tessellation of {NURB} Surfaces" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "286--320" +, keywords = "surface subdivision, NURB, Bezier surface, B-spline surface, polygonization" +, update = "94.09 heckbert" +, annote = "Gives code for polygonizing a very general class of parametric surfaces: NURBs. Polygonization of parametric surfaces is useful both for rendering and for modeling. Contains C code." } @article{p-cgavh-98 -, author = "S. Petitjean" -, title = "A Computational Geometric Approach to Visual Hulls" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "407--436" -, update = "98.11 devillers" +, author = "S. Petitjean" +, title = "A Computational Geometric Approach to Visual Hulls" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "407--436" +, update = "98.11 devillers" } @article{pb-rnrps-01 -, author = "S. Petitjean and E. Boyer" -, title = "Regular and non-regular point sets: {Properties} and reconstruction" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "101--126" -, update = "01.11 smid" +, author = "S. Petitjean and E. Boyer" +, title = "Regular and non-regular point sets: {Properties} and reconstruction" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "101--126" +, update = "01.11 smid" } @article{po-tras-49 -, author = "I. G. Petrovski{\u{\i}} and O. A. Ole{\u{\i}}nik" -, title = "On the topology of real algebraic surfaces" -, journal = "Isvestia Akad. Nauk SSSR. Ser. Mat." -, volume = 13 -, year = 1949 -, pages = "389--402" -, note = "In Russian." -, update = "98.07 agarwal" +, author = "I. G. Petrovski{\u{\i}} and O. A. Ole{\u{\i}}nik" +, title = "On the topology of real algebraic surfaces" +, journal = "Isvestia Akad. Nauk SSSR. Ser. Mat." +, volume = 13 +, year = 1949 +, pages = "389--402" +, note = "In Russian." +, update = "98.07 agarwal" } @article{pc-cds-75 -, author = "T. Peucker and N. Chrisman" -, title = "Cartographic data structures" -, journal = "Amer. Cartogr." -, volume = 2 -, year = 1975 -, pages = "55--69" -, update = "98.11 bibrelex" +, author = "T. Peucker and N. Chrisman" +, title = "Cartographic data structures" +, journal = "Amer. Cartogr." +, volume = 2 +, year = 1975 +, pages = "55--69" +, update = "98.11 bibrelex" } @inproceedings{pflm-tin-78 -, author = "T. K. Peucker and R. J. Fowler and J. J. Little and D. M. Mark" -, title = "The triangulated irregular network" -, booktitle = "Amer. Soc. Photogrammetry Proc. Digital Terrain Models Symposium" -, year = 1978 -, pages = "516--532" -, update = "98.07 bibrelex" +, author = "T. K. Peucker and R. J. Fowler and J. J. Little and D. M. Mark" +, title = "The triangulated irregular network" +, booktitle = "Amer. Soc. Photogrammetry Proc. Digital Terrain Models Symposium" +, year = 1978 +, pages = "516--532" +, update = "98.07 bibrelex" } @incollection{pm-aiecg-90 -, title = "{ARC}/{INFO}: an example of contemporary geograhic information system" -, editor = "D. J. Peuquet and D. F. Marble" -, booktitle = "Introductory Readings in Geographic Information Systems" -, publisher = "Taylor \& Francis" -, address = "London" -, year = 1990 -, pages = "90--99" -, update = "97.11 bibrelex" +, title = "{ARC}/{INFO}: an example of contemporary geograhic information system" +, editor = "D. J. Peuquet and D. F. Marble" +, booktitle = "Introductory Readings in Geographic Information Systems" +, publisher = "Taylor \& Francis" +, address = "London" +, year = 1990 +, pages = "90--99" +, update = "97.11 bibrelex" } @book{pm-irgis-90 -, title = "Introductory Readings in Geographic Information Systems" -, editor = "D. J. Peuquet and D. F. Marble" -, publisher = "Taylor \& Francis" -, address = "London" -, year = 1990 -, update = "96.09 kreveld" +, title = "Introductory Readings in Geographic Information Systems" +, editor = "D. J. Peuquet and D. F. Marble" +, publisher = "Taylor \& Francis" +, address = "London" +, year = 1990 +, update = "96.09 kreveld" } @incollection{pm-tdds-90 -, title = "Technical description of the {DIME} system" -, editor = "D. J. Peuquet and D. F. Marble" -, booktitle = "Introductory Readings in Geographic Information Systems" -, publisher = "Taylor \& Francis" -, address = "London" -, year = 1990 -, pages = "100--111" -, update = "97.11 bibrelex" +, title = "Technical description of the {DIME} system" +, editor = "D. J. Peuquet and D. F. Marble" +, booktitle = "Introductory Readings in Geographic Information Systems" +, publisher = "Taylor \& Francis" +, address = "London" +, year = 1990 +, pages = "100--111" +, update = "97.11 bibrelex" } @article{p-ccdmd-83 -, author = "J. L. Pfaltz" -, title = "Convex clusters in a discrete $m$-dimensional space" -, journal = "SIAM J. Comput." -, volume = 12 -, year = 1983 -, pages = "734--750" +, author = "J. L. Pfaltz" +, title = "Convex clusters in a discrete $m$-dimensional space" +, journal = "SIAM J. Comput." +, volume = 12 +, year = 1983 +, pages = "734--750" } @article{pbc-pmrui-80 -, author = "J. L. Pfaltz and W. J. Berman and E. M. Cagley" -, title = "Partial-match retrieval using indexed descriptor files" -, journal = "Commun. ACM" -, volume = 23 -, year = 1980 -, pages = "522--528" +, author = "J. L. Pfaltz and W. J. Berman and E. M. Cagley" +, title = "Partial-match retrieval using indexed descriptor files" +, journal = "Commun. ACM" +, volume = 23 +, year = 1980 +, pages = "522--528" } @article{prw-sgcp-94 -, author = "U. Pferschy and R. Rudolf and G. J. Woeginger" -, title = "Some geometric clustering problems" -, journal = "Nordic J. Comput." -, volume = 1 -, year = 1994 -, pages = "246--263" -, update = "95.01 smid" +, author = "U. Pferschy and R. Rudolf and G. J. Woeginger" +, title = "Some geometric clustering problems" +, journal = "Nordic J. Comput." +, volume = 1 +, year = 1994 +, pages = "246--263" +, update = "95.01 smid" } @inproceedings{pk-c4sar-96 -, author = "H. Pfister and A. E. Kaufman" -, title = "Cube-4 -- {A} Scalable Architecture for Real-Time Volume Rendering" -, booktitle = "IEEE Visualization '96 Proceedings" -, publisher = "ACM/SIGGRAPH Press" -, address = "San Francisco, CA" -, month = oct -, year = 1996 -, pages = "47--54" -, update = "98.03 mitchell" +, author = "H. Pfister and A. E. Kaufman" +, title = "Cube-4 -- {A} Scalable Architecture for Real-Time Volume Rendering" +, booktitle = "IEEE Visualization '96 Proceedings" +, publisher = "ACM/SIGGRAPH Press" +, address = "San Francisco, CA" +, month = oct +, year = 1996 +, pages = "47--54" +, update = "98.03 mitchell" } @article{p-rpsts-95 -, author = "G. Ch. Pflug" -, title = "Random planar shapes and their statistical recognition" -, journal = "Ann. Math. Artif. Intell." -, volume = 13 -, year = 1995 -, pages = "267--280" -, keywords = "matching, shape recognition, vision" -, update = "98.07 bibrelex, 95.09 mitchell" +, author = "G. Ch. Pflug" +, title = "Random planar shapes and their statistical recognition" +, journal = "Ann. Math. Artif. Intell." +, volume = 13 +, year = 1995 +, pages = "267--280" +, keywords = "matching, shape recognition, vision" +, update = "98.07 bibrelex, 95.09 mitchell" } @inproceedings{pkgh-rcsmc-97 -, author = "M. Pharr and C. Kolb and R. Gershbein and P. Hanrahan" -, title = "Rendering complex scenes with memory-coherent ray tracing" -, booktitle = "Proc. SIGGRAPH '97" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "Addison-Wesley" -, year = 1997 -, pages = "101--108" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "M. Pharr and C. Kolb and R. Gershbein and P. Hanrahan" +, title = "Rendering complex scenes with memory-coherent ray tracing" +, booktitle = "Proc. SIGGRAPH '97" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "Addison-Wesley" +, year = 1997 +, pages = "101--108" +, update = "98.07 agarwal, 98.03 agarwal" } @book{p-mh-85 -, author = "C. G. Phillips" -, title = "Movements of the hand" -, publisher = "Liverpool University Press" -, year = 1985 -, update = "98.07 bibrelex" +, author = "C. G. Phillips" +, title = "Movements of the hand" +, publisher = "Liverpool University Press" +, year = 1985 +, update = "98.07 bibrelex" } @techreport{p-amasg-90 -, author = "J. Phillips" -, title = "On approximate matching against sets of geometric models" -, type = "Technical {Report}" -, institution = "RUTCOR, Ruters University" -, address = "New Brunswick, New Jersey" -, month = jul -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "J. Phillips" +, title = "On approximate matching against sets of geometric models" +, type = "Technical {Report}" +, institution = "RUTCOR, Ruters University" +, address = "New Brunswick, New Jersey" +, month = jul +, year = 1990 +, update = "93.09 milone+mitchell" } @article{pg-aldit-84 -, author = "M. B. Phillips and M. O. Garret" -, title = "An algorithm for locating and displaying the intersection of two arbitary surfaces" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, year = 1984 -, update = "98.03 bibrelex" +, author = "M. B. Phillips and M. O. Garret" +, title = "An algorithm for locating and displaying the intersection of two arbitary surfaces" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, year = 1984 +, update = "98.03 bibrelex" } @techreport{pbc-muccm-93 -, author = "S. D. Phillips and B. Borchardt and G. Caskey" -, title = "Measurement uncertainty considerations for coordinate measuring machines" -, type = "Technical {Report}" -, number = "NISTIR 5170" -, institution = "Precision Engineering Division, National Institute of Standards and Technology" -, address = "Gaithersburg, MD" -, month = apr -, year = 1993 -, update = "98.07 bibrelex" +, author = "S. D. Phillips and B. Borchardt and G. Caskey" +, title = "Measurement uncertainty considerations for coordinate measuring machines" +, type = "Technical {Report}" +, number = "NISTIR 5170" +, institution = "Precision Engineering Division, National Institute of Standards and Technology" +, address = "Gaithersburg, MD" +, month = apr +, year = 1993 +, update = "98.07 bibrelex" } @unpublished{prs-crtcs-94 -, author = "B. Piazza and R. Ringeisen and S. Stueckle" -, title = "On {Conway}'s reduction of the thrackle conjecture and some associated drawings" -, year = 1994 -, note = "To appear" -, update = "99.03 forrest, 98.03 bibrelex" +, author = "B. Piazza and R. Ringeisen and S. Stueckle" +, title = "On {Conway}'s reduction of the thrackle conjecture and some associated drawings" +, year = 1994 +, note = "To appear" +, update = "99.03 forrest, 98.03 bibrelex" } @incollection{prs-pnmcs-91 -, author = "B. Piazza and R. Ringeisen and S. Stueckle" -, title = "Properties of non-minimum crossings for some classes of graphs" -, editor = "Y. Alavi" -, booktitle = "Graph Theory, Combinatorics and Applications" -, volume = 2 -, publisher = "John Wiley \& Sons" -, address = "New York, NY" -, year = 1991 -, update = "99.11 bibrelex, 98.03 bibrelex" +, author = "B. Piazza and R. Ringeisen and S. Stueckle" +, title = "Properties of non-minimum crossings for some classes of graphs" +, editor = "Y. Alavi" +, booktitle = "Graph Theory, Combinatorics and Applications" +, volume = 2 +, publisher = "John Wiley \& Sons" +, address = "New York, NY" +, year = 1991 +, update = "99.11 bibrelex, 98.03 bibrelex" } @article{pq-samcn-82 -, author = "J. C. Picard and M. Queyranne" -, title = "Selected applications of minimum cuts in a network" -, journal = "INFOR- Canad. J. Oper. Res. Inform. Process." -, volume = 20 -, year = 1982 -, pages = "394--422" -, update = "97.11 bibrelex" +, author = "J. C. Picard and M. Queyranne" +, title = "Selected applications of minimum cuts in a network" +, journal = "INFOR- Canad. J. Oper. Res. Inform. Process." +, volume = 20 +, year = 1982 +, pages = "394--422" +, update = "97.11 bibrelex" } @article{pr-cardf-78 -, author = "J. C. Picard and H. Ratliff" -, title = "A cut approach to the rectilinear distance facility location problem" -, journal = "Oper. Res." -, volume = "??" -, year = 1978 -, pages = "422--433" -, update = "97.11 bibrelex" +, author = "J. C. Picard and H. Ratliff" +, title = "A cut approach to the rectilinear distance facility location problem" +, journal = "Oper. Res." +, volume = "??" +, year = 1978 +, pages = "422--433" +, update = "97.11 bibrelex" } @article{p-sledd-39 -, author = "S. Piccard" -, title = "Sur les ensembles de Distances des Ensembles de points d'un Espace {Euclidean}" -, journal = "Mem. Univ. Neuchatel" -, volume = 13 -, year = 1939 -, update = "97.11 bibrelex" +, author = "S. Piccard" +, title = "Sur les ensembles de Distances des Ensembles de points d'un Espace {Euclidean}" +, journal = "Mem. Univ. Neuchatel" +, volume = 13 +, year = 1939 +, update = "97.11 bibrelex" } @article{p-gzz-99 -, author = "G. Pick" -, title = "Geometrisches zur {Zahlenlehre}" -, journal = "Naturwissenschaftliche Zeitschrift Lotus (Prag)" -, volume = "??" -, year = 1899 -, pages = "311--319" -, update = "98.03 bibrelex" +, author = "G. Pick" +, title = "Geometrisches zur {Zahlenlehre}" +, journal = "Naturwissenschaftliche Zeitschrift Lotus (Prag)" +, volume = "??" +, year = 1899 +, pages = "311--319" +, update = "98.03 bibrelex" } @article{p-rngpg-95 -, author = "C. A. Pickover" -, title = "Random Number Generators: Pretty Good Ones Are Easy to Find" -, journal = "Visual Comput." -, volume = 11 -, number = 7 -, year = 1995 -, pages = "369--377" -, update = "96.01 held" +, author = "C. A. Pickover" +, title = "Random Number Generators: Pretty Good Ones Are Easy to Find" +, journal = "Visual Comput." +, volume = 11 +, number = 7 +, year = 1995 +, pages = "369--377" +, update = "96.01 held" } @book{p-ota-86 -, author = "D. Pierre" -, title = "Optimization theory with applications" -, publisher = "Dover" -, address = "New York, NY" -, year = 1986 -, update = "98.07 bibrelex" +, author = "D. Pierre" +, title = "Optimization theory with applications" +, publisher = "Dover" +, address = "New York, NY" +, year = 1986 +, update = "98.07 bibrelex" } @inproceedings{pp-pcsds-93 -, author = "A. Pietracaprina and F. P. Preparata" -, title = "A Practical Constructive Scheme for Deterministic Shared-Memory Access" -, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." -, year = 1993 -, pages = "101--109" -, update = "96.09 orourke" +, author = "A. Pietracaprina and F. P. Preparata" +, title = "A Practical Constructive Scheme for Deterministic Shared-Memory Access" +, booktitle = "Proc. 5th ACM Sympos. Parallel Algorithms Architect." +, year = 1993 +, pages = "101--109" +, update = "96.09 orourke" } @article{p-orrc-81 -, author = "P. Y. Pinter" -, title = "Optimal routing in rectilinear channels" -, journal = "VLSI Systems and computations" -, volume = "??" -, year = 1981 -, pages = "160--177" -, update = "98.07 bibrelex" +, author = "P. Y. Pinter" +, title = "Optimal routing in rectilinear channels" +, journal = "VLSI Systems and computations" +, volume = "??" +, year = 1981 +, pages = "160--177" +, update = "98.07 bibrelex" } @phdthesis{p-gacg-99 -, author = "Sylvain Pion" -, title = "De la g\'eom\'etrie algorithmique au calcul g\'eom\'etrique" -, type = "Th\`{e}se de doctorat en sciences" -, school = "Universit\'e de Nice-Sophia Antipolis" -, address = "France" -, year = 1999 -, note = "TU-0619" -, keywords = "doctoral thesis" -, update = "02.03 devillers, 00.03 devillers" +, author = "Sylvain Pion" +, title = "De la g\'eom\'etrie algorithmique au calcul g\'eom\'etrique" +, type = "Th\`{e}se de doctorat en sciences" +, school = "Universit\'e de Nice-Sophia Antipolis" +, address = "France" +, year = 1999 +, note = "TU-0619" +, keywords = "doctoral thesis" +, update = "02.03 devillers, 00.03 devillers" } @inproceedings{p-iaeia-99 -, author = "Sylvain Pion" -, title = "Interval Arithmetic: An efficient implementation and an application to computational geometry" -, booktitle = "Workshop on Applications of Interval Analysis to systems and Control" -, year = 1999 -, pages = "99--110" -, url = "https://hal.inria.fr/inria-00344513" -, update = "01.07 devillers, 00.03 devillers, 99.07 devillers" +, author = "Sylvain Pion" +, title = "Interval Arithmetic: An efficient implementation and an application to computational geometry" +, booktitle = "Workshop on Applications of Interval Analysis to systems and Control" +, year = 1999 +, pages = "99--110" +, url = "https://inria.hal.science/inria-00344513" +, update = "01.07 devillers, 00.03 devillers, 99.07 devillers" } @inproceedings{pw-caa3d-95 -, author = "C. Pisupati and L. Wolff" -, title = "A Central Axis Algorithm for 3D Bronchial Tree Structures" -, booktitle = "IEEE Internat. Sympos. Comput. Vision" -, year = 1995 -, pages = "259--264" -, update = "97.11 bibrelex" +, author = "C. Pisupati and L. Wolff" +, title = "A Central Axis Algorithm for 3D Bronchial Tree Structures" +, booktitle = "IEEE Internat. Sympos. Comput. Vision" +, year = 1995 +, pages = "259--264" +, update = "97.11 bibrelex" } @techreport{pw-cltv-96 -, author = "C. Pisupati and L. Wolff" -, title = "Corresponding Lung Tree Volumes" -, number = "1996.03" -, institution = "Johns Hopkins University" -, month = mar -, year = 1996 -, update = "97.11 bibrelex" +, author = "C. Pisupati and L. Wolff" +, title = "Corresponding Lung Tree Volumes" +, number = "1996.03" +, institution = "Johns Hopkins University" +, month = mar +, year = 1996 +, update = "97.11 bibrelex" } @inproceedings{pwmz-gtma3-96 -, author = "Chandrasekhar Pisupati and Lawrence Wolff and Wayne Mitzner and Elias Zerhouni" -, title = "Geometric Tree Matching with Applications to 3D Lung Structures" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C19--C20" -, cites = "gmo-pmagp-94, pw-caa3d-95, pw-cltv-96, w-igt-95, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Chandrasekhar Pisupati and Lawrence Wolff and Wayne Mitzner and Elias Zerhouni" +, title = "Geometric Tree Matching with Applications to 3D Lung Structures" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C19--C20" +, cites = "gmo-pmagp-94, pw-caa3d-95, pw-cltv-96, w-igt-95, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @techreport{pr-ptscc-87 -, author = "L. Pitt and R. E. Reinke" -, title = "Polynomial-time solvability of clustering and conceptual clustering problems: the agglomerative-hierarchical algorithm" -, type = "Report" -, number = "R-87-1371" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1987 +, author = "L. Pitt and R. E. Reinke" +, title = "Polynomial-time solvability of clustering and conceptual clustering problems: the agglomerative-hierarchical algorithm" +, type = "Report" +, number = "R-87-1371" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1987 } @inproceedings{p-cgrae-73 -, author = "N. L. K. Pitteway" -, title = "Computer graphics research in an academic environment" -, booktitle = "Proc. Datafair '73 Conf." -, year = 1973 -, pages = "471--478" +, author = "N. L. K. Pitteway" +, title = "Computer graphics research in an academic environment" +, booktitle = "Proc. Datafair '73 Conf." +, year = 1973 +, pages = "471--478" } @article{p-hmgst-84 -, author = "D. A. Plaisted" -, title = "Heuristic matching for graphs satisfying the triangle inequality" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "163--179" +, author = "D. A. Plaisted" +, title = "Heuristic matching for graphs satisfying the triangle inequality" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "163--179" } @article{ph-hta-87 -, author = "D. A. Plaisted and J. Hong" -, title = "A heuristic triangulation algorithm" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "405--437" -, abstract = "We propose a heuristic triangulation algorithm. The - algorithm runs in polynomial time and produces a - triangulation within a ratio of O(log n) to the cost of - an optimal triangulation of a set of n points in the - Euclidean plane" +, author = "D. A. Plaisted and J. Hong" +, title = "A heuristic triangulation algorithm" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "405--437" +, abstract = "We propose a heuristic triangulation algorithm. The + algorithm runs in polynomial time and produces a + triangulation within a ratio of O(log n) to the cost of + an optimal triangulation of a set of n points in the + Euclidean plane" } @inproceedings{p-afwvf-92 -, author = "H. Plantinga" -, title = "An algorithm for finding the weakly visible faces from a polygon in $3$-d" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "45--51" -, cites = "arb-tiriu-90, bdeg-vmpv-90, fdfh-cgpp-90, fst-mladi-92, kd-irssr-79, m-wcohs-87, m-eahsr-89, m-hsrrm-91, o-agta-87, pd-voag-90, pds-rthle-90, p-cvpew-92, ps-cgi-85, ss-oadwv-90, sss-cthsa-74, ZZZ" -, update = "98.07 bibrelex" +, author = "H. Plantinga" +, title = "An algorithm for finding the weakly visible faces from a polygon in $3$-d" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "45--51" +, cites = "arb-tiriu-90, bdeg-vmpv-90, fdfh-cgpp-90, fst-mladi-92, kd-irssr-79, m-wcohs-87, m-eahsr-89, m-hsrrm-91, o-agta-87, pd-voag-90, pds-rthle-90, p-cvpew-92, ps-cgi-85, ss-oadwv-90, sss-cthsa-74, ZZZ" +, update = "98.07 bibrelex" } @techreport{p-cvpew-92 -, author = "H. Plantinga" -, title = "Conservative visibility preprocessing for efficient walkthroughs of $3${D} Scenes" -, type = "Technical {Report}" -, number = "92-4" -, institution = "Dept. Comput. Sci., Univ. Pittsburgh" -, address = "Pittsburgh, PA" -, year = 1992 -, update = "98.07 bibrelex" +, author = "H. Plantinga" +, title = "Conservative visibility preprocessing for efficient walkthroughs of $3${D} Scenes" +, type = "Technical {Report}" +, number = "92-4" +, institution = "Dept. Comput. Sci., Univ. Pittsburgh" +, address = "Pittsburgh, PA" +, year = 1992 +, update = "98.07 bibrelex" } @article{pd-voag-90 -, author = "H. Plantinga and C. R. Dyer" -, title = "Visibility, occlusion, and the aspect graph" -, journal = "Internat. J. Comput. Vision" -, volume = 5 -, number = 2 -, year = 1990 -, pages = "137--160" -, update = "93.09 rote" +, author = "H. Plantinga and C. R. Dyer" +, title = "Visibility, occlusion, and the aspect graph" +, journal = "Internat. J. Comput. Vision" +, volume = 5 +, number = 2 +, year = 1990 +, pages = "137--160" +, update = "93.09 rote" } @inproceedings{pds-rthle-90 -, author = "H. Plantinga and C. R. Dyer and W. B. Seals" -, title = "Real-time hidden-line elimination for a rotating polyhedral scene using the aspect representation" -, booktitle = "Proc. Graphics Interface '90" -, year = 1990 -, pages = "9--16" -, update = "98.07 bibrelex" +, author = "H. Plantinga and C. R. Dyer and W. B. Seals" +, title = "Real-time hidden-line elimination for a rotating polyhedral scene using the aspect representation" +, booktitle = "Proc. Graphics Interface '90" +, year = 1990 +, pages = "9--16" +, update = "98.07 bibrelex" } @inproceedings{pd-acag-86 -, author = "W. Platinga and C. Dyer" -, title = "An algorithm for constructing the aspect graph" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "123--131" -, update = "98.11 bibrelex" +, author = "W. Platinga and C. Dyer" +, title = "An algorithm for constructing the aspect graph" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "123--131" +, update = "98.11 bibrelex" } @article{p-plpg-76 -, author = "C. Platt" -, title = "Planar Lattices and Planar Graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 21 -, year = 1976 -, pages = "30--39" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "C. Platt" +, title = "Planar Lattices and Planar Graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 21 +, year = 1976 +, pages = "30--39" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{pb-cmfm-88 -, author = "J. C. Platt and A. H. Barr" -, title = "Constraint methods for flexible models" -, journal = "Comput. Graph." -, volume = 22 -, number = 4 -, year = 1988 -, pages = "279--287" -, note = "Proc. SIGGRAPH '88" -, update = "98.03 bibrelex" +, author = "J. C. Platt and A. H. Barr" +, title = "Constraint methods for flexible models" +, journal = "Comput. Graph." +, volume = 22 +, number = 4 +, year = 1988 +, pages = "279--287" +, note = "Proc. SIGGRAPH '88" +, update = "98.03 bibrelex" } @article{pb-scpts-89 -, author = "L. K. Platzman and J. J. {Bartholdi, III}" -, title = "Spacefilling Curves and the Planar Travelling Salesman Problem" -, journal = "J. ACM" -, volume = 36 -, number = 4 -, month = oct -, year = 1989 -, pages = "719--737" -, keywords = "graph theory, optimization, traveling salesman tours, two-dimensional, $L_{2}$ metric, heuristics, fractal geometry, empirical analysis" -, update = "93.09 held+jones" +, author = "L. K. Platzman and J. J. {Bartholdi, III}" +, title = "Spacefilling Curves and the Planar Travelling Salesman Problem" +, journal = "J. ACM" +, volume = 36 +, number = 4 +, month = oct +, year = 1989 +, pages = "719--737" +, keywords = "graph theory, optimization, traveling salesman tours, two-dimensional, $L_{2}$ metric, heuristics, fractal geometry, empirical analysis" +, update = "93.09 held+jones" } @inproceedings{pc-alrtg-96 -, author = "A. Plaza and G. F. Carey" -, title = "About local refinement of tetrahedral grids based on bisection" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "123--136" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "A. Plaza and G. F. Carey" +, title = "About local refinement of tetrahedral grids based on bisection" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "123--136" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @article{p-hppg-87 -, author = "J. Plesnik" -, title = "A Heuristic for the $p$-Center Problem in Graphs" -, journal = "Discrete Appl. Math." -, volume = 17 -, year = 1987 -, pages = "263--268" -, update = "98.07 agarwal" +, author = "J. Plesnik" +, title = "A Heuristic for the $p$-Center Problem in Graphs" +, journal = "Discrete Appl. Math." +, volume = 17 +, year = 1987 +, pages = "263--268" +, update = "98.07 agarwal" } @article{p-nchcp-79 -, author = "J. Ples{\'n}ik" -, title = "The {NP}-completeness of the {Hamiltonian} cycle problem in planar digraphs with degree bound two" -, journal = "Inform. Process. Lett." -, volume = 8 -, year = 1979 -, pages = "199--201" -, update = "98.03 bibrelex" +, author = "J. Ples{\'n}ik" +, title = "The {NP}-completeness of the {Hamiltonian} cycle problem in planar digraphs with degree bound two" +, journal = "Inform. Process. Lett." +, volume = 8 +, year = 1979 +, pages = "199--201" +, update = "98.03 bibrelex" } @inproceedings{pt-idns-90 -, author = "S. A. Plotkin and {\'E}. Tardos" -, title = "Improved dual network simplex" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "367--376" -, update = "93.09 rote" +, author = "S. A. Plotkin and {\'E}. Tardos" +, title = "Improved dual network simplex" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "367--376" +, update = "93.09 rote" } @article{ple-togip-71 -, author = "A. Pnueli and A. Lempel and S. Even" -, title = "Transitive orientation of graphs and identification of permutation graphs" -, journal = "Cand. J. Math." -, volume = 23 -, year = 1971 -, pages = "160--175" -, update = "98.11 bibrelex" +, author = "A. Pnueli and A. Lempel and S. Even" +, title = "Transitive orientation of graphs and identification of permutation graphs" +, journal = "Cand. J. Math." +, volume = 23 +, year = 1971 +, pages = "160--175" +, update = "98.11 bibrelex" } @article{p-afhbs-85 -, author = "P. V. Poblete" -, title = "The analysis of a fringe heuristic for binary search trees" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "336--350" +, author = "P. V. Poblete" +, title = "The analysis of a fringe heuristic for binary search trees" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "336--350" } @inproceedings{p-gfr-90 -, author = "M. Pocchiola" -, title = "Graphics in {Flatland} revisited" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "85--96" +, author = "M. Pocchiola" +, title = "Graphics in {Flatland} revisited" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "85--96" } @inproceedings{p-htvpt-97 -, author = "Michel Pocchiola" -, title = "Horizon Trees versus Pseudo-Triangulations" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 12 -, cites = "agt-wat-94, eg-tsa-89, pv-tsvcpt-96, r-cve2d-97, ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Michel Pocchiola" +, title = "Horizon Trees versus Pseudo-Triangulations" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 12 +, cites = "agt-wat-94, eg-tsa-89, pv-tsvcpt-96, r-cve2d-97, ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{p-vc-92 -, author = "M. Pocchiola" -, title = "The visibility complex" -, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" -, site = "Kyoto, Japan" -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "M. Pocchiola" +, title = "The visibility complex" +, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" +, site = "Kyoto, Japan" +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{p-vc-92c -, author = "Michel Pocchiola" -, title = "The Visibility Complex" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "67--68" -, update = "00.03 bibrelex" +, author = "Michel Pocchiola" +, title = "The Visibility Complex" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "67--68" +, update = "00.03 bibrelex" } @inproceedings{pv-cvgpt-95 -, author = "M. Pocchiola and G. Vegter" -, title = "Computing the Visibility Graph via Pseudo-Triangulations" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "248--257" -, keywords = "topological sweep, visibility complex" -, cites = "ce-oails-92, eg-tsa-89, gt-ltasc-85, gm-osacv-91, hmrt-sjslt-86, ow-nmcvg-88, pv-vc-93, s-ec-86, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex, 96.05 pocchiola, 95.09 mitchell" +, author = "M. Pocchiola and G. Vegter" +, title = "Computing the Visibility Graph via Pseudo-Triangulations" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "248--257" +, keywords = "topological sweep, visibility complex" +, cites = "ce-oails-92, eg-tsa-89, gt-ltasc-85, gm-osacv-91, hmrt-sjslt-86, ow-nmcvg-88, pv-vc-93, s-ec-86, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex, 96.05 pocchiola, 95.09 mitchell" } @inproceedings{pv-mtvg-94 -, author = "M. Pocchiola and G. Vegter" -, title = "Minimal Tangent Visibility Graphs" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "24--29" -, cites = "aaghi-vdp-86, ch-mvg-91, eg-tsa-89, gm-osacv-91, gs-rwnpc-90, gh-cvgnl-85, lw-apcfp-79, o-cgc18-93, ow-nmcvg-88, pv-vc-93, pv-otvtc-94, pv-savgc-94, r-sppcp-86, r-tseas-88, sh-nmvg-93, sr-facsv-90, km-eaesp-88, se-tlbsv-87, w-cvgnl-85, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "M. Pocchiola and G. Vegter" +, title = "Minimal Tangent Visibility Graphs" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "24--29" +, cites = "aaghi-vdp-86, ch-mvg-91, eg-tsa-89, gm-osacv-91, gs-rwnpc-90, gh-cvgnl-85, lw-apcfp-79, o-cgc18-93, ow-nmcvg-88, pv-vc-93, pv-otvtc-94, pv-savgc-94, r-sppcp-86, r-tseas-88, sh-nmvg-93, sr-facsv-90, km-eaesp-88, se-tlbsv-87, w-cvgnl-85, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{pv-mtvg-96 -, author = "M. Pocchiola and G. Vegter" -, title = "Minimal Tangent Visibility Graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "303--314" -, keywords = "visibility graphs, triangulations" -, succeeds = "pv-mtvg-94" -, update = "97.03 devillers+pocchiola+smid, 96.05 pocchiola" +, author = "M. Pocchiola and G. Vegter" +, title = "Minimal Tangent Visibility Graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "303--314" +, keywords = "visibility graphs, triangulations" +, succeeds = "pv-mtvg-94" +, update = "97.03 devillers+pocchiola+smid, 96.05 pocchiola" } @techreport{pv-pc-96 -, author = "M. Pocchiola and G. Vegter" -, title = "On polygonal covers" -, number = "96-16" -, institution = "Labo. Inf. Ens" -, address = "45 rue d'Ulm 75230 Paris, France" -, month = jul -, year = 1996 -, note = "" -, keywords = "illumination, covering, separation" -, comments = "" -, succeeds = "pv-ptta-96" -, update = "97.03 pocchiola" +, author = "M. Pocchiola and G. Vegter" +, title = "On polygonal covers" +, number = "96-16" +, institution = "Labo. Inf. Ens" +, address = "45 rue d'Ulm 75230 Paris, France" +, month = jul +, year = 1996 +, note = "" +, keywords = "illumination, covering, separation" +, comments = "" +, succeeds = "pv-ptta-96" +, update = "97.03 pocchiola" } @incollection{pv-pc-99 -, author = "M. Pocchiola and G. Vegter" -, title = "On polygonal covers" -, editor = "B. Chazelle and J. Goodman and R. Pollack" -, booktitle = "Advances in Discrete and Computational Geometry" -, series = "Contemporary Mathematics" -, volume = 223 -, publisher = "AMS, Providence" -, year = 1999 -, pages = "257--268" -, update = "01.04 pocchiola" +, author = "M. Pocchiola and G. Vegter" +, title = "On polygonal covers" +, editor = "B. Chazelle and J. Goodman and R. Pollack" +, booktitle = "Advances in Discrete and Computational Geometry" +, series = "Contemporary Mathematics" +, volume = 223 +, publisher = "AMS, Providence" +, year = 1999 +, pages = "257--268" +, update = "01.04 pocchiola" } @techreport{pv-otvtc-94 -, author = "M. Pocchiola and G. Vegter" -, title = "Order types and visibility types of configurations of disjoint convex plane sets (Extended abstract)" -, number = "94-4" -, institution = "Labo. Inf. Ens" -, month = jan -, year = 1994 -, keywords = "arrangements, visibility complexes" -, comments = "" -, update = "96.05 pocchiola" +, author = "M. Pocchiola and G. Vegter" +, title = "Order types and visibility types of configurations of disjoint convex plane sets (Extended abstract)" +, number = "94-4" +, institution = "Labo. Inf. Ens" +, month = jan +, year = 1994 +, keywords = "arrangements, visibility complexes" +, comments = "" +, update = "96.05 pocchiola" } @inproceedings{pv-ptta-96 -, author = "Michel Pocchiola and Gert Vegter" -, title = "Pseudo-Triangulations: Theory and Applications" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "291--300" -, cites = "pv-vc-96, pv-cvgpt-95, b-rsdoh-93, c-cgr-95, f-icd-77, ers-ccsno-90, blwsz-om-93, rz-rspu-95, pa-cg-95, gp-ms-83, bcm-anlcg-90" -, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 efrat+pocchiola" +, author = "Michel Pocchiola and Gert Vegter" +, title = "Pseudo-Triangulations: Theory and Applications" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "291--300" +, cites = "pv-vc-96, pv-cvgpt-95, b-rsdoh-93, c-cgr-95, f-icd-77, ers-ccsno-90, blwsz-om-93, rz-rspu-95, pa-cg-95, gp-ms-83, bcm-anlcg-90" +, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 efrat+pocchiola" } @techreport{pv-savgc-93 -, author = "M. Pocchiola and G. Vegter" -, title = "Sweep algorithm for visibility graphs of curved obstacles" -, type = "Manuscript" -, institution = "??" -, year = 1993 -, precedes = "pv-savgc-94" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "M. Pocchiola and G. Vegter" +, title = "Sweep algorithm for visibility graphs of curved obstacles" +, type = "Manuscript" +, institution = "??" +, year = 1993 +, precedes = "pv-savgc-94" +, update = "98.11 bibrelex, 98.03 bibrelex" } @techreport{pv-savgc-94 -, author = "M. Pocchiola and G. Vegter" -, title = "Sweep algorithms for visibility graphs of curved obstacles" -, type = "Technical Report" -, institution = "??" -, address = "Liens" -, year = 1994 -, note = "in preparation" -, update = "98.11 bibrelex" +, author = "M. Pocchiola and G. Vegter" +, title = "Sweep algorithms for visibility graphs of curved obstacles" +, type = "Technical Report" +, institution = "??" +, address = "Liens" +, year = 1994 +, note = "in preparation" +, update = "98.11 bibrelex" } @inproceedings{pv-vc-93 -, author = "M. Pocchiola and G. Vegter" -, title = "The visibility complex" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "328--337" -, precedes = "pv-vc-96" -, cites = "cg-vippg-89, gm-osacv-91, hm-oacvp-91, p-gfr-90, v-vddsv-90, v-dmvg-91, w-cvgnl-85, ZZZ" -, update = "98.03 bibrelex, 97.03 devillers, 93.09 jones" +, author = "M. Pocchiola and G. Vegter" +, title = "The visibility complex" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "328--337" +, precedes = "pv-vc-96" +, cites = "cg-vippg-89, gm-osacv-91, hm-oacvp-91, p-gfr-90, v-vddsv-90, v-dmvg-91, w-cvgnl-85, ZZZ" +, update = "98.03 bibrelex, 97.03 devillers, 93.09 jones" } @article{pv-vc-96 -, author = "M. Pocchiola and G. Vegter" -, title = "The visibility complex" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, number = 3 -, year = 1996 -, pages = "279--308" -, keywords = "visibility graphs, visibility complexes, triangulations" -, succeeds = "pv-vc-93" -, update = "97.11 bibrelex+orourke, 97.03 devillers+orourke+pocchiola+schwarzkopf" +, author = "M. Pocchiola and G. Vegter" +, title = "The visibility complex" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, number = 3 +, year = 1996 +, pages = "279--308" +, keywords = "visibility graphs, visibility complexes, triangulations" +, succeeds = "pv-vc-93" +, update = "97.11 bibrelex+orourke, 97.03 devillers+orourke+pocchiola+schwarzkopf" } @article{pv-tsvcpt-96 -, author = "M. Pocchiola and G. Vegter" -, title = "Topologically sweeping visibility complexes via pseudo-triangulations" -, journal = "Discrete Comput. Geom." -, volume = 16 -, month = dec -, year = 1996 -, pages = "419--453" -, keywords = "topological sweep, visibility complex, visibility graph, triangulation, pseudo-triangulation" -, succeeds = "pv-cvgpt-95" -, update = "97.03 pocchiola, 96.05 pocchiola" +, author = "M. Pocchiola and G. Vegter" +, title = "Topologically sweeping visibility complexes via pseudo-triangulations" +, journal = "Discrete Comput. Geom." +, volume = 16 +, month = dec +, year = 1996 +, pages = "419--453" +, keywords = "topological sweep, visibility complex, visibility graph, triangulation, pseudo-triangulation" +, succeeds = "pv-cvgpt-95" +, update = "97.03 pocchiola, 96.05 pocchiola" } @inproceedings{pv-iplft-96 -, author = "Michel Pochiola and Gert Vegter" -, title = "The Illumination Problem of L. Fejes T{\'o}th Revisited" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "29--30" -, update = "01.11 devillers, 00.03 bibrelex, 99.03 bibrelex" +, author = "Michel Pochiola and Gert Vegter" +, title = "The Illumination Problem of L. Fejes T{\'o}th Revisited" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "29--30" +, update = "01.11 devillers, 00.03 bibrelex, 99.03 bibrelex" } @article{p-smfsp-80 -, author = "A. N. Podkorytov" -, title = "Summation of multiple {Fourier} series over polyhedra" -, journal = "Mat., Mekh., Astronom." -, volume = "N 1" -, year = 1980 -, pages = "51--58" -, update = "97.11 bibrelex" +, author = "A. N. Podkorytov" +, title = "Summation of multiple {Fourier} series over polyhedra" +, journal = "Mat., Mekh., Astronom." +, volume = "N 1" +, year = 1980 +, pages = "51--58" +, update = "97.11 bibrelex" } @book{p-egcs-73 -, author = "A. V. Pogorelov" -, title = "Extrinsic Geometry of Convex Surfaces" -, series = "Translations of Mathematical Monographs" -, volume = 35 -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1973 -, update = "94.09 orourke" +, author = "A. V. Pogorelov" +, title = "Extrinsic Geometry of Convex Surfaces" +, series = "Translations of Mathematical Monographs" +, volume = 35 +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1973 +, update = "94.09 orourke" } @book{p-lfg-66 -, author = "A. V. Pogorelov" -, title = "Lectures on the Foundations of Geometry" -, publisher = "Noordhoff" -, year = 1966 -, update = "98.03 bibrelex" +, author = "A. V. Pogorelov" +, title = "Lectures on the Foundations of Geometry" +, publisher = "Noordhoff" +, year = 1966 +, update = "98.03 bibrelex" } @article{p-qglcs-49 -, author = "A. V. Pogorelov" -, title = "Quasi-geodesic lines on a convex surface" -, journal = "Mat. Sb." -, volume = 25 -, number = 62 -, year = 1949 -, pages = "275--306" -, note = "English transl., {\em Amer. Math. Soc. Transl.} 74, 1952." -, update = "94.09 orourke" +, author = "A. V. Pogorelov" +, title = "Quasi-geodesic lines on a convex surface" +, journal = "Mat. Sb." +, volume = 25 +, number = 62 +, year = 1949 +, pages = "275--306" +, note = "English transl., {\em Amer. Math. Soc. Transl.} 74, 1952." +, update = "94.09 orourke" } @book{p-mmp-78 -, author = "A. V. Pogorelov" -, title = "The {Minkowski} Multidimensional Problem" -, publisher = "Winston" -, address = "New York, NY" -, year = 1978 -, update = "98.03 bibrelex" +, author = "A. V. Pogorelov" +, title = "The {Minkowski} Multidimensional Problem" +, publisher = "Winston" +, address = "New York, NY" +, year = 1978 +, update = "98.03 bibrelex" } @techreport{ph-bmni-85 -, author = "G. Politis and D. Herbison-Evans" -, title = "A {Benesh} movement notation interpreter" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Sydney" -, address = "Sydney, Australia" -, year = 1985 +, author = "G. Politis and D. Herbison-Evans" +, title = "A {Benesh} movement notation interpreter" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Sydney" +, address = "Sydney, Australia" +, year = 1985 } @article{pr-rn-92 -, author = "S. Poljak and J. Rohn" -, title = "Radius of nonsingularity" -, journal = "Mathematics of Systems, Signals and Control" -, volume = "??" -, year = 1992 -, note = "To appear" -, update = "98.03 bibrelex" +, author = "S. Poljak and J. Rohn" +, title = "Radius of nonsingularity" +, journal = "Mathematics of Systems, Signals and Control" +, volume = "??" +, year = 1992 +, note = "To appear" +, update = "98.03 bibrelex" } @article{pr-ncdsp-93 -, author = "R. Pollack and M. F. Roy" -, title = "On the number of cells defined by a set of polynomials" -, journal = "C. R. Acad. Sci. Paris" -, volume = 316 -, year = 1993 -, pages = "573--577" -, update = "98.03 agarwal+bibrelex" +, author = "R. Pollack and M. F. Roy" +, title = "On the number of cells defined by a set of polynomials" +, journal = "C. R. Acad. Sci. Paris" +, volume = 316 +, year = 1993 +, pages = "573--577" +, update = "98.03 agarwal+bibrelex" } @techreport{ps-cgcsp-86 -, author = "R. Pollack and Micha Sharir" -, title = "Computing the Geodesic Center of a Simple Polygon" -, type = "Technical Report" -, number = 231 -, institution = "Dept. of Computer Science, Courant Institute of Mathematical Sciences" -, year = 1986 -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "R. Pollack and Micha Sharir" +, title = "Computing the Geodesic Center of a Simple Polygon" +, type = "Technical Report" +, number = 231 +, institution = "Dept. of Computer Science, Courant Institute of Mathematical Sciences" +, year = 1986 +, update = "98.03 mitchell, 93.09 milone+mitchell" } @article{psr-cgcsp-89 -, author = "R. Pollack and Micha Sharir and G{\"u}nter Rote" -, title = "Computing of the geodesic center of a simple polygon" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "611--626" -, keywords = "polygons, simple, shortest paths" -, update = "98.03 mitchell" +, author = "R. Pollack and Micha Sharir and G{\"u}nter Rote" +, title = "Computing of the geodesic center of a simple polygon" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "611--626" +, keywords = "polygons, simple, shortest paths" +, update = "98.03 mitchell" } @techreport{pss-stsps-86 -, author = "R. Pollack and M. Sharir and S. Sifrony" -, title = "Separating two simple polygons by a sequence of translations" -, type = "Technical {Report}" -, number = 215 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1986 -, update = "98.03 bibrelex" +, author = "R. Pollack and M. Sharir and S. Sifrony" +, title = "Separating two simple polygons by a sequence of translations" +, type = "Technical {Report}" +, number = 215 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1986 +, update = "98.03 bibrelex" } @article{pss-stsps-88 -, author = "R. Pollack and Micha Sharir and S. Sifrony" -, title = "Separating two simple polygons by a sequence of translations" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "123--136" -, keywords = "polygons, simple, Davenport-Schinzel sequences, motion planning, rays" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "R. Pollack and Micha Sharir and S. Sifrony" +, title = "Separating two simple polygons by a sequence of translations" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "123--136" +, keywords = "polygons, simple, Davenport-Schinzel sequences, motion planning, rays" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{pw-nscht-89 -, author = "R. Pollack and R. Wenger" -, title = "Necessary and sufficient conditions for hyperplane transversals" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "152--155" -, precedes = "pw-nscht-90" -, cites = "dgk-htir-63, e-rt-79, gp-ms-83, gp-htthd-88, g-ts-55, hdk-cgp-64, h-uegt-57, hk-crp-71, h-umkkm-23, k-tsct-80, k-ta-03, m-eat-84, s-tsppe-40, w-ghtti-90, ZZZ" -, update = "98.03 bibrelex" +, author = "R. Pollack and R. Wenger" +, title = "Necessary and sufficient conditions for hyperplane transversals" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "152--155" +, precedes = "pw-nscht-90" +, cites = "dgk-htir-63, e-rt-79, gp-ms-83, gp-htthd-88, g-ts-55, hdk-cgp-64, h-uegt-57, hk-crp-71, h-umkkm-23, k-tsct-80, k-ta-03, m-eat-84, s-tsppe-40, w-ghtti-90, ZZZ" +, update = "98.03 bibrelex" } @article{pw-nscht-90 -, author = "R. Pollack and R. Wenger" -, title = "Necessary and sufficient conditions for hyperplane transversals" -, journal = "Combinatorica" -, volume = 10 -, year = 1990 -, pages = "307--311" -, succeeds = "pw-nscht-89" +, author = "R. Pollack and R. Wenger" +, title = "Necessary and sufficient conditions for hyperplane transversals" +, journal = "Combinatorica" +, volume = 10 +, year = 1990 +, pages = "307--311" +, succeeds = "pw-nscht-89" } @article{p-kafgg-37 -, author = "G. Polya" -, title = "Kombinatorische {Anzahlbestimmungen} f{\"u}r {Gruppen}, {Graphen} und chemische {Verbindungen}" -, journal = "Acta Math." -, volume = 68 -, year = 1937 -, pages = "145--254" -, update = "97.11 bibrelex" +, author = "G. Polya" +, title = "Kombinatorische {Anzahlbestimmungen} f{\"u}r {Gruppen}, {Graphen} und chemische {Verbindungen}" +, journal = "Acta Math." +, volume = 68 +, year = 1937 +, pages = "145--254" +, update = "97.11 bibrelex" } @phdthesis{p-sdsdp-92 -, author = "G. H. Polychronopoulos" -, title = "Stochastic and dynamic shortest distance problems" -, type = "Ph.{D}. Thesis" -, school = "Operations Research Center, Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1992 -, note = "Report 199" -, keywords = "weighted regions, dynamic shortest paths" -, update = "93.05 jones" +, author = "G. H. Polychronopoulos" +, title = "Stochastic and dynamic shortest distance problems" +, type = "Ph.{D}. Thesis" +, school = "Operations Research Center, Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1992 +, note = "Report 199" +, keywords = "weighted regions, dynamic shortest paths" +, update = "93.05 jones" } @inproceedings{plm-icdpm-95 -, author = "Madhav K. Ponamgi and Ming C. Lin and Dinesh Manocha" -, title = "Incremental Collision Detection for Polygonal Models" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "V7--V8" -, keywords = "video review" -, cites = "cd-icott-87, c-oaitd-89, clmp-ecdie-94, clmp-iciec-95, pml-iacdb-95, lc-eaidc-91, mp-fitcp-78, ZZZ" -, update = "99.03 forrest, 98.03 bibrelex, 95.09 mitchell" +, author = "Madhav K. Ponamgi and Ming C. Lin and Dinesh Manocha" +, title = "Incremental Collision Detection for Polygonal Models" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "V7--V8" +, keywords = "video review" +, cites = "cd-icott-87, c-oaitd-89, clmp-ecdie-94, clmp-iciec-95, pml-iacdb-95, lc-eaidc-91, mp-fitcp-78, ZZZ" +, update = "99.03 forrest, 98.03 bibrelex, 95.09 mitchell" } @techreport{pml-iacdb-94 -, author = "M. K. Ponamgi and D. Manocha and M. C. Lin" -, title = "Incremental Algorithms for Collision Detection Between General Solid Models" -, type = "Technical {Report}" -, number = "TR94-061" -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, year = 1994 -, precedes = "pml-iacdb-95" -, update = "96.05 klosowski" +, author = "M. K. Ponamgi and D. Manocha and M. C. Lin" +, title = "Incremental Algorithms for Collision Detection Between General Solid Models" +, type = "Technical {Report}" +, number = "TR94-061" +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, year = 1994 +, precedes = "pml-iacdb-95" +, update = "96.05 klosowski" } @inproceedings{pml-iacdb-95 -, author = "M. K. Ponamgi and D. Manocha and M. C. Lin" -, title = "Incremental Algorithms for Collision Detection between General Solid Models" -, booktitle = "Proc. ACM Siggraph Sympos. Solid Modeling" -, year = 1995 -, pages = "293--304" -, succeeds = "pml-iacdb-94" -, update = "96.05 klosowski, 96.01 held" +, author = "M. K. Ponamgi and D. Manocha and M. C. Lin" +, title = "Incremental Algorithms for Collision Detection between General Solid Models" +, booktitle = "Proc. ACM Siggraph Sympos. Solid Modeling" +, year = 1995 +, pages = "293--304" +, succeeds = "pml-iacdb-94" +, update = "96.05 klosowski, 96.01 held" } @phdthesis{p-remdt-83 -, author = "J. Ponce" -, title = "Representation et manipulation d'objets tridimensionnels" -, school = "Universite d'Orsay" -, address = "Orsay, France" -, year = 1983 -, note = "These de troisueme cycle" -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "J. Ponce" +, title = "Representation et manipulation d'objets tridimensionnels" +, school = "Universite d'Orsay" +, address = "Orsay, France" +, year = 1983 +, note = "These de troisueme cycle" +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @article{pf-ctffc-95 -, author = "Jean Ponce and Bernard Faverjon" -, title = "On computing three-finger force-closure grasps of polygonal objects" -, journal = "IEEE Trans. Robot. Autom." -, volume = 11 -, number = 6 -, year = 1995 -, update = "97.11 bibrelex" +, author = "Jean Ponce and Bernard Faverjon" +, title = "On computing three-finger force-closure grasps of polygonal objects" +, journal = "IEEE Trans. Robot. Autom." +, volume = 11 +, number = 6 +, year = 1995 +, update = "97.11 bibrelex" } @article{pssbm-cffef-96 -, author = "Jean Ponce and Steve Sullivan and Attawith Sudsang and Jean-Daniel Boissonnat and Jean-Pierre Merlet" -, title = "On computing four-finger equilibrium and force-closure grasps of polyhedral objects" -, journal = "Internat. J. Robot. Res." -, volume = "??" -, year = 1996 -, update = "97.11 bibrelex" +, author = "Jean Ponce and Steve Sullivan and Attawith Sudsang and Jean-Daniel Boissonnat and Jean-Pierre Merlet" +, title = "On computing four-finger equilibrium and force-closure grasps of polyhedral objects" +, journal = "Internat. J. Robot. Res." +, volume = "??" +, year = 1996 +, update = "97.11 bibrelex" } @inproceedings{p-sagsp-91 -, author = "C. Ponder" -, title = "A search approach to general stabbing problems" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "195--202" -, cites = "ad-ahdsp-87, cgppsw-ccht-90, dgk-htir-63, e-ftssg-85, gl-mc-83, jk-spals-88, mkb-ma-79, pr-rn-92, pw-nscht-89, p-allpm-90, p-pcaam, r-lie-89, ZZZ" -, update = "98.07 bibrelex" +, author = "C. Ponder" +, title = "A search approach to general stabbing problems" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "195--202" +, cites = "ad-ahdsp-87, cgppsw-ccht-90, dgk-htir-63, e-ftssg-85, gl-mc-83, jk-spals-88, mkb-ma-79, pr-rn-92, pw-nscht-89, p-allpm-90, p-pcaam, r-lie-89, ZZZ" +, update = "98.07 bibrelex" } @techreport{p-allpm-90 -, author = "C. Ponder" -, title = "An Analytical Look at Linear Performance Models" -, type = "Technical Report" -, number = "UCRL-JC-106105" -, institution = "Lawrence Livermore National Laboratory" -, month = sep -, year = 1990 -, update = "98.07 bibrelex" +, author = "C. Ponder" +, title = "An Analytical Look at Linear Performance Models" +, type = "Technical Report" +, number = "UCRL-JC-106105" +, institution = "Lawrence Livermore National Laboratory" +, month = sep +, year = 1990 +, update = "98.07 bibrelex" } @unpublished{p-pcaam -, author = "C. Ponder" -, title = "Principle Component Analysis Under Alternative Error-Metrics" -, note = "in preparation" -, update = "98.07 bibrelex" +, author = "C. Ponder" +, title = "Principle Component Analysis Under Alternative Error-Metrics" +, note = "in preparation" +, update = "98.07 bibrelex" } @inproceedings{psv-srusb-97 -, author = "Serge Pontier and Behzad Shariat and Denis Vandorpe" -, title = "Shape Reconstruction Using Skeleton--Based Implicit Surface" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "205--210" -, update = "97.11 jones" +, author = "Serge Pontier and Behzad Shariat and Denis Vandorpe" +, title = "Shape Reconstruction Using Skeleton--Based Implicit Surface" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "205--210" +, update = "97.11 jones" } @book{pbgm-mtop-62 -, author = "L. S. Pontryagin and V. G. Boltyanskii and R. V. Gamkrelidze and E. F. Mishchenko" -, title = "The mathematical theory of optimal processes" -, publisher = "Interscience Publishers" -, year = 1962 +, author = "L. S. Pontryagin and V. G. Boltyanskii and R. V. Gamkrelidze and E. F. Mishchenko" +, title = "The mathematical theory of optimal processes" +, publisher = "Interscience Publishers" +, year = 1962 } @inproceedings{pzc-ptslr-97 -, author = "C. Poon and B. Zhu and F. Chin" -, title = "A Polynomial Time Solution for Labeling a Rectilinear Map" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "451--453" -, precedes = "pzc-ptslr-98" -, cites = "bc-ap1sq-94, cms-aclp-93, df-rbsdm-92, dmmmz-mlig-97, eis-ctmfp-76, fw-ppalm-91, i-pnm-75, j-cnpp-89, kr-pcr-92, ps-cgi-85, w-amlon-94, ww-mlhpg-95, y-laml-72, ZZZ" -, update = "99.03 patrignani, 98.07 bibrelex, 97.07 efrat" +, author = "C. Poon and B. Zhu and F. Chin" +, title = "A Polynomial Time Solution for Labeling a Rectilinear Map" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "451--453" +, precedes = "pzc-ptslr-98" +, cites = "bc-ap1sq-94, cms-aclp-93, df-rbsdm-92, dmmmz-mlig-97, eis-ctmfp-76, fw-ppalm-91, i-pnm-75, j-cnpp-89, kr-pcr-92, ps-cgi-85, w-amlon-94, ww-mlhpg-95, y-laml-72, ZZZ" +, update = "99.03 patrignani, 98.07 bibrelex, 97.07 efrat" } @article{pzc-ptslr-98 -, author = "Chung Keung Poon and Binhai Zhu and Francis Chin" -, title = "A Polynomial Time Solution for Labeling a Rectilinear Map" -, journal = "Inform. Process. Lett." -, volume = 65 -, number = 4 -, pages = "201--207" -, succeeds = "pzc-ptslr-97" -, update = "99.03 patrignani, 98.07 bibrelex, 98.03 mitchell" +, author = "Chung Keung Poon and Binhai Zhu and Francis Chin" +, title = "A Polynomial Time Solution for Labeling a Rectilinear Map" +, journal = "Inform. Process. Lett." +, volume = 65 +, number = 4 +, pages = "201--207" +, succeeds = "pzc-ptslr-97" +, update = "99.03 patrignani, 98.07 bibrelex, 98.03 mitchell" } @inproceedings{pssw-lpw-01 -, author = "Sheung-Hung Poon and Chan-Su Shin and Tycho Strijk and Alexander Wolff" -, title = "Labeling Points with Weights" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "97--100" -, update = "01.04 icking" +, author = "Sheung-Hung Poon and Chan-Su Shin and Tycho Strijk and Alexander Wolff" +, title = "Labeling Points with Weights" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "97--100" +, update = "01.04 icking" } % also claimed, pages = "251--258" @inproceedings{ph-psc-97 -, author = "Jovan Popovi{\'c} and Hugues Hoppe" -, title = "Progressive Simplicial Complexes" -, booktitle = "Proc. SIGGRAPH '97" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "ACM Press" -, year = 1997 -, pages = "217 -- 224" -, update = "98.07 agarwal, 98.03 agarwal+mitchell" +, author = "Jovan Popovi{\'c} and Hugues Hoppe" +, title = "Progressive Simplicial Complexes" +, booktitle = "Proc. SIGGRAPH '97" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "ACM Press" +, year = 1997 +, pages = "217 -- 224" +, update = "98.07 agarwal, 98.03 agarwal+mitchell" } % ### others? @inproceedings{po-saims-91 -, author = "M. Popovic and others" -, title = "Several Approaches to Implement the Merging Step of the Split and Merge Region Segmentation" -, editor = "F. H. Post and W. Barth" -, booktitle = "Proc. Eurographics '91" -, publisher = "Elsevier Science" -, address = "Vienna, Austria" -, month = sep -, year = 1991 -, pages = "399--412" -, update = "93.09 held" +, author = "M. Popovic and others" +, title = "Several Approaches to Implement the Merging Step of the Split and Merge Region Segmentation" +, editor = "F. H. Post and W. Barth" +, booktitle = "Proc. Eurographics '91" +, publisher = "Elsevier Science" +, address = "Vienna, Austria" +, month = sep +, year = 1991 +, pages = "399--412" +, update = "93.09 held" } @techreport{p-smtsr-79 -, author = "R. J. Popplestone" -, title = "Specifying Manipulation in Terms of Spatial Relationships" -, type = "Research {Report}" -, number = 117 -, institution = "Dept. Artif. Intell., Univ. Edinburgh" -, address = "Edinburgh, Scotland" -, year = 1979 -, update = "97.11 bibrelex" +, author = "R. J. Popplestone" +, title = "Specifying Manipulation in Terms of Spatial Relationships" +, type = "Research {Report}" +, number = 117 +, institution = "Dept. Artif. Intell., Univ. Edinburgh" +, address = "Edinburgh, Scotland" +, year = 1979 +, update = "97.11 bibrelex" } @inproceedings{p-ahart-93 -, author = "Mary-Anne K. Posenau" -, title = "Approaches to High Aspect Ratio Triangulations" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "30--35" -, cites = "pm-dtcfd-92, b-nacvh-91, lp-gtdug-88, pmp-ufemg-89, m-amgvf-90, cd-vdbcd-85, e-acg-87, ZZZ" -, update = "98.11 bibrelex" +, author = "Mary-Anne K. Posenau" +, title = "Approaches to High Aspect Ratio Triangulations" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "30--35" +, cites = "pm-dtcfd-92, b-nacvh-91, lp-gtdug-88, pmp-ufemg-89, m-amgvf-90, cd-vdbcd-85, e-acg-87, ZZZ" +, update = "98.11 bibrelex" } @inproceedings{pm-dtcfd-92 -, author = "M.-A. K. Posenau and D. M. Mount" -, title = "Delaunay triangulations and computational fluid dynamics meshes" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "316--321" -, cites = "bgr-ntp-88, b-amgct-89, ps-cgi-85, rs-metep-90, beg-pgmg-90, ahet-nggcf-91, twm-ngg-85, w-ngg-90, c-cdt-89, c-gqtm-89, b-nacvh-91, m-amgvf-90, w-msuma-90, ZZZ" -, update = "98.07 bibrelex" +, author = "M.-A. K. Posenau and D. M. Mount" +, title = "Delaunay triangulations and computational fluid dynamics meshes" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "316--321" +, cites = "bgr-ntp-88, b-amgct-89, ps-cgi-85, rs-metep-90, beg-pgmg-90, ahet-nggcf-91, twm-ngg-85, w-ngg-90, c-cdt-89, c-gqtm-89, b-nacvh-91, m-amgvf-90, w-msuma-90, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{p-msea-81 -, author = "M. J. Post" -, title = "A minimum spanning ellipse algorithm" -, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1981 -, pages = "115--122" +, author = "M. J. Post" +, title = "A minimum spanning ellipse algorithm" +, booktitle = "Proc. 22nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1981 +, pages = "115--122" } @techreport{p-cmse-82 -, author = "M. J. Post" -, title = "Computing minimum spanning ellipses" -, type = "Technical {Report}" -, number = "CS-82-16" -, institution = "Dept. Comput. Sci., Brown Univ." -, address = "Providence, RI" -, year = 1982 -, update = "98.07 bibrelex" +, author = "M. J. Post" +, title = "Computing minimum spanning ellipses" +, type = "Technical {Report}" +, number = "CS-82-16" +, institution = "Dept. Comput. Sci., Brown Univ." +, address = "Providence, RI" +, year = 1982 +, update = "98.07 bibrelex" } @inproceedings{p-mse-84 -, author = "M. J. Post" -, title = "Minimum spanning ellipsoids" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "108--116" -, annote = "$O(n^{2})$ time" +, author = "M. J. Post" +, title = "Minimum spanning ellipsoids" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "108--116" +, annote = "$O(n^{2})$ time" } @book{p-lat-83 -, author = "M. M. Postinov" -, title = "Lectures in Algebraic Topology" -, publisher = "Nauka" -, address = "Moscow" -, year = 1983 -, update = "98.07 bibrelex" +, author = "M. M. Postinov" +, title = "Lectures in Algebraic Topology" +, publisher = "Nauka" +, address = "Moscow" +, year = 1983 +, update = "98.07 bibrelex" } @article{p-gom3o-87 -, author = "M. Potemesil" -, title = "Generating octree models of {3D} objects from their silhouettes in a sequence of images" -, journal = "Comput. Vision Graph. Image Process." -, volume = 40 -, year = 1987 -, pages = "1--29" -, update = "98.11 bibrelex" +, author = "M. Potemesil" +, title = "Generating octree models of {3D} objects from their silhouettes in a sequence of images" +, journal = "Comput. Vision Graph. Image Process." +, volume = 40 +, year = 1987 +, pages = "1--29" +, update = "98.11 bibrelex" } @article{pf-ithla-80 -, author = "M. Potmesil and H. Freeman" -, title = "Implementation of two hidden-line algorithms" -, journal = "Computers and Graphics" -, volume = 5 -, year = 1980 -, pages = "31--40" +, author = "M. Potmesil and H. Freeman" +, title = "Implementation of two hidden-line algorithms" +, journal = "Computers and Graphics" +, volume = 5 +, year = 1980 +, pages = "31--40" } @book{pr-cap-88 -, author = "M. B. {Pour-El} and J. I. Richards" -, title = "Computability in Analysis and Physics" -, publisher = "Springer-Verlag" -, address = "Berlin, Heidelberg" -, year = 1988 -, update = "98.11 bibrelex" +, author = "M. B. {Pour-El} and J. I. Richards" +, title = "Computability in Analysis and Physics" +, publisher = "Springer-Verlag" +, address = "Berlin, Heidelberg" +, year = 1988 +, update = "98.11 bibrelex" } @article{p-mrpdt-92 -, author = "P. L. Powar" -, title = "Minimal roughness property of the {Delaunay} triangulation: a shorter approach" -, journal = "Comput. Aided Geom. Design" -, volume = 9 -, year = 1992 -, pages = "491--494" -, update = "98.11 bibrelex" +, author = "P. L. Powar" +, title = "Minimal roughness property of the {Delaunay} triangulation: a shorter approach" +, journal = "Comput. Aided Geom. Design" +, volume = 9 +, year = 1992 +, pages = "491--494" +, update = "98.11 bibrelex" } @article{ps-pqat-77 -, author = "M. J. D. Powell and M. A. Sabin" -, title = "Piecewise quadratic approximations on triangles" -, journal = "ACM Trans. Math. Softw." -, volume = 3 -, year = 1977 -, pages = "316--325" +, author = "M. J. D. Powell and M. A. Sabin" +, title = "Piecewise quadratic approximations on triangles" +, journal = "ACM Trans. Math. Softw." +, volume = 3 +, year = 1977 +, pages = "316--325" } @techreport{p-hsp-90 -, author = "N. Prabhu" -, title = "Hamiltonian Simple Polytopes" -, type = "Technical {Report}" -, number = "90-17" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "N. Prabhu" +, title = "Hamiltonian Simple Polytopes" +, type = "Technical {Report}" +, number = "90-17" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, update = "93.09 milone+mitchell" } @phdthesis{p-ssigm-88 -, author = "P. V. Prakash" -, title = "Surface-to-Surface Intersections for Geometric Modeling" -, type = "Ph.{D}. Thesis" -, school = "Massachusetts Institute of Technology" -, address = "Cambridge, Massachusetts" -, year = 1988 -, keywords = "doctoral thesis" -, update = "95.05 abrams" +, author = "P. V. Prakash" +, title = "Surface-to-Surface Intersections for Geometric Modeling" +, type = "Ph.{D}. Thesis" +, school = "Massachusetts Institute of Technology" +, address = "Cambridge, Massachusetts" +, year = 1988 +, keywords = "doctoral thesis" +, update = "95.05 abrams" } @article{ppd-vmdr-98 -, author = "D. Chithra Prasad and Sudebkumar P. Pal and Tamal K. Dey" -, title = "Visibility with multiple diffuse reflections" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "187--196" -, update = "98.11 devillers" +, author = "D. Chithra Prasad and Sudebkumar P. Pal and Tamal K. Dey" +, title = "Visibility with multiple diffuse reflections" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "187--196" +, update = "98.11 devillers" } @article{pr-apmb-87 -, author = "V. K. Prasanna and C. S. Raghavendra" -, title = "Array Processor with Multiple Broadcasting" -, journal = "Journal of Parallel and Distributed Processing" -, volume = 4 -, year = 1987 -, pages = "173--190" -, update = "98.11 bibrelex" +, author = "V. K. Prasanna and C. S. Raghavendra" +, title = "Array Processor with Multiple Broadcasting" +, journal = "Journal of Parallel and Distributed Processing" +, volume = 4 +, year = 1987 +, pages = "173--190" +, update = "98.11 bibrelex" } @inproceedings{pr-popp-92 -, author = "V. K. Prasanna and A. S. Rao" -, title = "Parallel orientation of polygonal parts" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1992 -, update = "98.07 bibrelex" +, author = "V. K. Prasanna and A. S. Rao" +, title = "Parallel orientation of polygonal parts" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1992 +, update = "98.07 bibrelex" } @article{ph-ddocs-92 -, author = "J. P. Pratt and V. P. Heuring" -, title = "Designing digital optical computing systems: power and and crosstalk" -, journal = "Appl. Optics" -, volume = 31 -, number = 23 -, year = 1992 -, pages = "4657--4661" -, update = "98.03 bibrelex" +, author = "J. P. Pratt and V. P. Heuring" +, title = "Designing digital optical computing systems: power and and crosstalk" +, journal = "Appl. Optics" +, volume = 31 +, number = 23 +, year = 1992 +, pages = "4657--4661" +, update = "98.03 bibrelex" } @inproceedings{p-dlsfas-87 -, author = "V. Pratt" -, title = "Direct least squares fitting of algebraic surfaces" -, booktitle = "Proc. Siggraph '87" -, year = 1987 -, update = "98.03 bibrelex" +, author = "V. Pratt" +, title = "Direct least squares fitting of algebraic surfaces" +, booktitle = "Proc. Siggraph '87" +, year = 1987 +, update = "98.03 bibrelex" } @article{p-tcs-85 -, author = "V. Pratt" -, title = "Techniques for conic splines" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, year = 1985 -, pages = "151--159" -, note = "Proc. SIGGRAPH '85" +, author = "V. Pratt" +, title = "Techniques for conic splines" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, year = 1985 +, pages = "151--159" +, note = "Proc. SIGGRAPH '85" } @book{pl-pdavs-88 -, author = "B. T. Preas and M. J. Lorenzetti" -, title = "Physical design automation of {VLSI} systems" -, publisher = "Benjamin Cummings" -, address = "Menlo Park, CA" -, year = 1988 -, update = "98.03 bibrelex" +, author = "B. T. Preas and M. J. Lorenzetti" +, title = "Physical design automation of {VLSI} systems" +, publisher = "Benjamin Cummings" +, address = "Menlo Park, CA" +, year = 1988 +, update = "98.03 bibrelex" } @inproceedings{p-ptnp-92 -, author = "Waldemar Preilowski" -, title = "Parallel triangulation of nonconvex polytopes" -, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Waldemar Preilowski" +, title = "Parallel triangulation of nonconvex polytopes" +, booktitle = "Proc. 18th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{p-ptnp-92c -, author = "W. Preilowski" -, title = "Parallel Triangulation of Nonconvex Polytopes" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "97--99" -, update = "00.03 bibrelex" +, author = "W. Preilowski" +, title = "Parallel Triangulation of Nonconvex Polytopes" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "97--99" +, update = "00.03 bibrelex" } @inproceedings{p-psdpr-93 -, author = "Waldemar Preilowski" -, title = "The Pathtree: a Suitable Datastructure for Parallel Rayshooting" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "14--16" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" +, author = "Waldemar Preilowski" +, title = "The Pathtree: a Suitable Datastructure for Parallel Rayshooting" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "14--16" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" } @inproceedings{pm-toacv-89 -, author = "W. Preilowski and W. Mumbeck" -, title = "A Time-Optimal Algorithm for the computing of {Voronoi} Diagrams" -, booktitle = "Graph-Theoretic Concepts in Computer Science. Proceedings." -, year = 1989 -, pages = "424--433" +, author = "W. Preilowski and W. Mumbeck" +, title = "A Time-Optimal Algorithm for the computing of {Voronoi} Diagrams" +, booktitle = "Graph-Theoretic Concepts in Computer Science. Proceedings." +, year = 1989 +, pages = "424--433" } @inproceedings{pdw-npach-92 -, author = "W. Preilowsky and E. Dahlhaus and G. Wechsung" -, title = "New parallel algorithms for convex hull and triangulation in $3$-dimensional space" -, booktitle = "Proc. 17th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 629 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "442--450" -, update = "98.03 bibrelex" +, author = "W. Preilowsky and E. Dahlhaus and G. Wechsung" +, title = "New parallel algorithms for convex hull and triangulation in $3$-dimensional space" +, booktitle = "Proc. 17th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 629 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "442--450" +, update = "98.03 bibrelex" } @article{p-nappl-81 -, author = "F. P. Preparata" -, title = "A new approach to planar point location" -, journal = "SIAM J. Comput." -, volume = 10 -, number = 3 -, year = 1981 -, pages = "473--482" -, update = "98.07 tamassia" +, author = "F. P. Preparata" +, title = "A new approach to planar point location" +, journal = "SIAM J. Comput." +, volume = 10 +, number = 3 +, year = 1981 +, pages = "473--482" +, update = "98.07 tamassia" } @article{p-nlspp-79 -, author = "F. P. Preparata" -, title = "A note on locating a set of points in a planar subdivision" -, journal = "SIAM J. Comput." -, volume = 8 -, year = 1979 -, pages = "542--545" +, author = "F. P. Preparata" +, title = "A note on locating a set of points in a planar subdivision" +, journal = "SIAM J. Comput." +, volume = 8 +, year = 1979 +, pages = "542--545" } @article{p-ortap-79 -, author = "F. P. Preparata" -, title = "An optimal real-time algorithm for planar convex hulls" -, journal = "Commun. ACM" -, volume = 22 -, year = 1979 -, pages = "402--405" +, author = "F. P. Preparata" +, title = "An optimal real-time algorithm for planar convex hulls" +, journal = "Commun. ACM" +, volume = 22 +, year = 1979 +, pages = "402--405" } @book{p-cg-83 -, title = "Computational Geometry" -, editor = "Franco P. Preparata" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, update = "01.04 icking" -, annote = "Contains the following items: - c-pcp-83, eow-gfcs-83, gy-tsr-83, d-gatcl-83, l-mcprg-83, be-ewcst-83, - bow-cmhds-83, ab-acddv-83, ddg-fsp-83, s-ghsgc-83, g-dpcp-83, mz-pmhfa-83" +, title = "Computational Geometry" +, editor = "Franco P. Preparata" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, update = "01.04 icking" +, annote = "Contains the following items: + c-pcp-83, eow-gfcs-83, gy-tsr-83, d-gatcl-83, l-mcprg-83, be-ewcst-83, + bow-cmhds-83, ab-acddv-83, ddg-fsp-83, s-ghsgc-83, g-dpcp-83, mz-pmhfa-83" } @techreport{p-msc-77 -, author = "F. P. Preparata" -, title = "Minimum spanning circle" -, institution = "Univ. Illinois" -, address = "Urbana, IL" -, year = 1977 -, note = "in 'Steps into Computational Geometry'" -, update = "01.11 devillers, 98.03 bibrelex" +, author = "F. P. Preparata" +, title = "Minimum spanning circle" +, institution = "Univ. Illinois" +, address = "Urbana, IL" +, year = 1977 +, note = "in 'Steps into Computational Geometry'" +, update = "01.11 devillers, 98.03 bibrelex" } @article{p-otdvl-83 -, author = "F. P. Preparata" -, title = "Optimal Three-Dimensional {VLSI} Layouts" -, journal = "Math. Syst. Theory" -, volume = 16 -, year = 1983 -, pages = "1--8" -, update = "98.07 patrignani" +, author = "F. P. Preparata" +, title = "Optimal Three-Dimensional {VLSI} Layouts" +, journal = "Math. Syst. Theory" +, volume = 16 +, year = 1983 +, pages = "1--8" +, update = "98.07 patrignani" } @book{p-pdc-87 -, title = "Parallel and Distributed Computing" -, editor = "Franco P. Preparata" -, series = "Adv. Comput. Res." -, volume = 4 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1987 -, update = "01.04 icking" +, title = "Parallel and Distributed Computing" +, editor = "Franco P. Preparata" +, series = "Adv. Comput. Res." +, volume = 4 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1987 +, update = "01.04 icking" } @article{p-pplr-90 -, author = "F. P. Preparata" -, title = "Planar point location revisited" -, journal = "Internat. J. Found. Comput. Sci." -, volume = 1 -, number = 1 -, year = 1990 -, pages = "71--86" -, update = "98.07 tamassia" +, author = "F. P. Preparata" +, title = "Planar point location revisited" +, journal = "Internat. J. Found. Comput. Sci." +, volume = 1 +, number = 1 +, year = 1990 +, pages = "71--86" +, update = "98.07 tamassia" } @inproceedings{p-rga-96 -, author = "F. P. Preparata" -, title = "Robustness in Geometric Algorithms" -, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." -, site = "Philadelphia, PA, USA" -, month = may -, year = 1996 -, pages = "29--30" -, update = "97.11 held" +, author = "F. P. Preparata" +, title = "Robustness in Geometric Algorithms" +, booktitle = "Proc. 1st ACM Workshop on Appl. Comput. Geom." +, site = "Philadelphia, PA, USA" +, month = may +, year = 1996 +, pages = "29--30" +, update = "97.11 held" } @techreport{p-scg-77 -, author = "F. P. Preparata" -, title = "Steps into computational geometry" -, type = "Report" -, number = "R-760" -, institution = "Coordinated Sci. Lab., Univ. Illinois" -, address = "Urbana, IL" -, year = 1977 +, author = "F. P. Preparata" +, title = "Steps into computational geometry" +, type = "Report" +, number = "R-760" +, institution = "Coordinated Sci. Lab., Univ. Illinois" +, address = "Urbana, IL" +, year = 1977 } @techreport{p-scgn2-77 -, author = "F. P. Preparata" -, title = "Steps into computational geometry: {Notebook} {II}" -, type = "Report" -, number = "R-792" -, institution = "Coordinated Sci. Lab., Univ. Illinois" -, address = "Urbana, IL" -, year = 1977 +, author = "F. P. Preparata" +, title = "Steps into computational geometry: {Notebook} {II}" +, type = "Report" +, number = "R-792" +, institution = "Coordinated Sci. Lab., Univ. Illinois" +, address = "Urbana, IL" +, year = 1977 } @inproceedings{p-masp-77 -, author = "F. P. Preparata" -, title = "The medial axis of a simple polygon" -, booktitle = "Proc. 6th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 53 -, publisher = "Springer-Verlag" -, year = 1977 -, pages = "443--450" +, author = "F. P. Preparata" +, title = "The medial axis of a simple polygon" +, booktitle = "Proc. 6th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 53 +, publisher = "Springer-Verlag" +, year = 1977 +, pages = "443--450" } @book{p-vt-84 -, title = "{VLSI} Theory" -, editor = "Franco P. Preparata" -, series = "Adv. Comput. Res." -, volume = 2 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1984 -, update = "01.04 icking" +, title = "{VLSI} Theory" +, editor = "Franco P. Preparata" +, series = "Adv. Comput. Res." +, volume = 2 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1984 +, update = "01.04 icking" } @article{ph-chfsp-77 -, author = "F. P. Preparata and S. J. Hong" -, title = "Convex hulls of finite sets of points in two and three dimensions" -, journal = "Commun. ACM" -, volume = 20 -, year = 1977 -, pages = "87--93" -, keywords = "divide-and-conquer, worst-case analysis" -, annote = "Claims $O(n \log n)$ time, but actually takes $O(n^2)$ - time in special cases [d-iafch-90]" +, author = "F. P. Preparata and S. J. Hong" +, title = "Convex hulls of finite sets of points in two and three dimensions" +, journal = "Commun. ACM" +, volume = 20 +, year = 1977 +, pages = "87--93" +, keywords = "divide-and-conquer, worst-case analysis" +, annote = "Claims $O(n \log n)$ time, but actually takes $O(n^2)$ + time in special cases [d-iafch-90]" } @article{pl-otlcr-84 -, author = "F. P. Preparata and W. {Lipski, Jr.}" -, title = "Optimal three-layer channel routing" -, journal = "IEEE Trans. Comput." -, volume = "C-33" -, year = 1984 -, pages = "427--437" -, succeeds = "pl-tlae-82" +, author = "F. P. Preparata and W. {Lipski, Jr.}" +, title = "Optimal three-layer channel routing" +, journal = "IEEE Trans. Comput." +, volume = "C-33" +, year = 1984 +, pages = "427--437" +, succeeds = "pl-tlae-82" } @inproceedings{pl-tlae-82 -, author = "F. P. Preparata and W. {Lipski, Jr.}" -, title = "Three layers are enough" -, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1982 -, pages = "350--357" -, precedes = "pl-otlcr-84" +, author = "F. P. Preparata and W. {Lipski, Jr.}" +, title = "Three layers are enough" +, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1982 +, pages = "350--357" +, precedes = "pl-otlcr-84" } @article{pm-finhs-79 -, author = "F. P. Preparata and D. E. Muller" -, title = "Finding the intersection of $n$ half-spaces in time {$O(n \log n)$}" -, journal = "Theoret. Comput. Sci." -, volume = 8 -, year = 1979 -, pages = "45--55" +, author = "F. P. Preparata and D. E. Muller" +, title = "Finding the intersection of $n$ half-spaces in time {$O(n \log n)$}" +, journal = "Theoret. Comput. Sci." +, volume = 8 +, year = 1979 +, pages = "45--55" } @book{ps-cgi-85 -, author = "F. P. Preparata and M. I. Shamos" -, title = "Computational Geometry: An Introduction" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1985 -, comments = "corrected and expanded second printing, 1988" -, precedes = "ps-cgi-90" -, update = "98.11 bibrelex, 95.09 agarwal" +, author = "F. P. Preparata and M. I. Shamos" +, title = "Computational Geometry: An Introduction" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1985 +, comments = "corrected and expanded second printing, 1988" +, precedes = "ps-cgi-90" +, update = "98.11 bibrelex, 95.09 agarwal" } @book{ps-cgi-90 -, author = "F. P. Preparata and M. I. Shamos" -, title = "Computational Geometry: An Introduction" -, edition = "3rd" -, publisher = "Springer-Verlag" -, month = oct -, year = 1990 -, isbn = "3-540-96131-3" -, succeeds = "ps-cgi-85" -, update = "98.11 bibrelex" +, author = "F. P. Preparata and M. I. Shamos" +, title = "Computational Geometry: An Introduction" +, edition = "3rd" +, publisher = "Springer-Verlag" +, month = oct +, year = 1990 +, isbn = "3-540-96131-3" +, succeeds = "ps-cgi-85" +, update = "98.11 bibrelex" } @article{ps-tspm-81 -, author = "F. P. Preparata and K. J. Supowit" -, title = "Testing a simple polygon for monotonicity" -, journal = "Inform. Process. Lett." -, volume = 12 -, number = 4 -, year = 1981 -, pages = "161--164" -, keywords = "polygons, design of algorithms" -, update = "98.07 bibrelex" +, author = "F. P. Preparata and K. J. Supowit" +, title = "Testing a simple polygon for monotonicity" +, journal = "Inform. Process. Lett." +, volume = 12 +, number = 4 +, year = 1981 +, pages = "161--164" +, keywords = "polygons, design of algorithms" +, update = "98.07 bibrelex" } @techreport{pt-fdppl-87 -, author = "F. P. Preparata and R. Tamassia" -, title = "A fully dynamic planar point location technique" -, type = "Report" -, number = "UILU-ENG-87-2266" -, institution = "Coordinated Sci. Lab., Univ. Illinois" -, address = "Urbana, IL" -, year = 1987 -, keywords = "point location, data structuring, on-line" -, precedes = "pt-dpplo-89" +, author = "F. P. Preparata and R. Tamassia" +, title = "A fully dynamic planar point location technique" +, type = "Report" +, number = "UILU-ENG-87-2266" +, institution = "Coordinated Sci. Lab., Univ. Illinois" +, address = "Urbana, IL" +, year = 1987 +, keywords = "point location, data structuring, on-line" +, precedes = "pt-dpplo-89" } @inproceedings{pt-dpplo-89 -, author = "F. P. Preparata and R. Tamassia" -, title = "Dynamic planar point location with optimal query time" -, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 349 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "84--95" -, keywords = "subdivisions, point location, on-line, two-dimensional" -, succeeds = "pt-fdppl-87" -, precedes = "pt-dpplo-90" +, author = "F. P. Preparata and R. Tamassia" +, title = "Dynamic planar point location with optimal query time" +, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 349 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "84--95" +, keywords = "subdivisions, point location, on-line, two-dimensional" +, succeeds = "pt-fdppl-87" +, precedes = "pt-dpplo-90" } @article{pt-dpplo-90 -, author = "F. P. Preparata and R. Tamassia" -, title = "Dynamic planar point location with optimal query time" -, journal = "Theoret. Comput. Sci." -, volume = 74 -, year = 1990 -, pages = "95--114" -, succeeds = "pt-dpplo-89" +, author = "F. P. Preparata and R. Tamassia" +, title = "Dynamic planar point location with optimal query time" +, journal = "Theoret. Comput. Sci." +, volume = 74 +, year = 1990 +, pages = "95--114" +, succeeds = "pt-dpplo-89" } @article{pt-eplcs-92 -, author = "F. P. Preparata and R. Tamassia" -, title = "Efficient point location in a convex spatial cell-complex" -, journal = "SIAM J. Comput." -, volume = 21 -, year = 1992 -, pages = "267--280" -, succeeds = "pt-espl-89" +, author = "F. P. Preparata and R. Tamassia" +, title = "Efficient point location in a convex spatial cell-complex" +, journal = "SIAM J. Comput." +, volume = 21 +, year = 1992 +, pages = "267--280" +, succeeds = "pt-espl-89" } @inproceedings{pt-espl-89 -, author = "F. P. Preparata and R. Tamassia" -, title = "Efficient spatial point location" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "3--11" -, precedes = "pt-eplcs-92" +, author = "F. P. Preparata and R. Tamassia" +, title = "Efficient spatial point location" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "3--11" +, precedes = "pt-eplcs-92" } @article{pt-fdplm-89 -, author = "F. P. Preparata and R. Tamassia" -, title = "Fully dynamic point location in a monotone subdivision" -, journal = "SIAM J. Comput." -, volume = 18 -, number = 4 -, year = 1989 -, pages = "811--830" -, update = "98.11 bibrelex" +, author = "F. P. Preparata and R. Tamassia" +, title = "Fully dynamic point location in a monotone subdivision" +, journal = "SIAM J. Comput." +, volume = 18 +, number = 4 +, year = 1989 +, pages = "811--830" +, update = "98.11 bibrelex" } @inproceedings{pt-fdtpl-88 -, author = "F. P. Preparata and R. Tamassia" -, title = "Fully dynamic techniques for point location and transitive closure in planar structures" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "558--567" -, comments = "In two journal papers: \cite{tp-dmpda-90}, - \cite{pt-fdplm-89}" +, author = "F. P. Preparata and R. Tamassia" +, title = "Fully dynamic techniques for point location and transitive closure in planar structures" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "558--567" +, comments = "In two journal papers: \cite{tp-dmpda-90}, + \cite{pt-fdplm-89}" } @inproceedings{pv-sthle-92 -, author = "F. P. Preparata and J. S. Vitter" -, title = "A simplified technique for hidden-line elimination in terrains" -, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 577 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "135--146" -, precedes = "pv-sthle-93" -, update = "94.09 vitter" +, author = "F. P. Preparata and J. S. Vitter" +, title = "A simplified technique for hidden-line elimination in terrains" +, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 577 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "135--146" +, precedes = "pv-sthle-93" +, update = "94.09 vitter" } @article{pv-sthle-93 -, author = "F. P. Preparata and J. S. Vitter" -, title = "A Simplified Technique for Hidden-Line Elimination in Terrains" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "167--181" -, succeeds = "pv-sthle-92" -, update = "94.09 vitter" +, author = "F. P. Preparata and J. S. Vitter" +, title = "A Simplified Technique for Hidden-Line Elimination in Terrains" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "167--181" +, succeeds = "pv-sthle-92" +, update = "94.09 vitter" } @techreport{pvy-cavsi-88 -, author = "F. P. Preparata and J. S. Vitter and M. Yvinec" -, title = "Computation of the axial view of a set of isothetic parallelepipeds" -, type = "Report" -, number = "LIENS-88-1" -, institution = "Lab. d'Informatique, Dept. Math. d'Informatique, Ecole Normale Sup{\'e}rieure" -, address = "Paris, France" -, year = 1988 -, precedes = "pvy-cavsi-90" +, author = "F. P. Preparata and J. S. Vitter and M. Yvinec" +, title = "Computation of the axial view of a set of isothetic parallelepipeds" +, type = "Report" +, number = "LIENS-88-1" +, institution = "Lab. d'Informatique, Dept. Math. d'Informatique, Ecole Normale Sup{\'e}rieure" +, address = "Paris, France" +, year = 1988 +, precedes = "pvy-cavsi-90" } @article{pvy-cavsi-90 -, author = "F. P. Preparata and J. S. Vitter and M. Yvinec" -, title = "Computation of the axial view of a set of isothetic parallelepipeds" -, journal = "ACM Trans. Graph." -, volume = 9 -, year = 1990 -, pages = "278--300" -, succeeds = "pvy-cavsi-88" +, author = "F. P. Preparata and J. S. Vitter and M. Yvinec" +, title = "Computation of the axial view of a set of isothetic parallelepipeds" +, journal = "ACM Trans. Graph." +, volume = 9 +, year = 1990 +, pages = "278--300" +, succeeds = "pvy-cavsi-88" } @inproceedings{pvy-osgpv-90 -, author = "F. P. Preparata and J. S. Vitter and M. Yvinec" -, title = "Output-sensitive generation of the perspective view of isothetic parallelepipeds" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "71--84" +, author = "F. P. Preparata and J. S. Vitter and M. Yvinec" +, title = "Output-sensitive generation of the perspective view of isothetic parallelepipeds" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "71--84" } @article{pvy-osgpv-92 -, author = "F. P. Preparata and J. S. Vitter and M. Yvinec" -, title = "Output-Sensitive Generation of the Perspective View of Isothetic Parallelepipeds" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "257--283" -, keywords = "geometric probing, polyhedral scenes" +, author = "F. P. Preparata and J. S. Vitter and M. Yvinec" +, title = "Output-Sensitive Generation of the Perspective View of Isothetic Parallelepipeds" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "257--283" +, keywords = "geometric probing, polyhedral scenes" } @book{ptvf-nrc-88 -, author = "W. Press and S. Teukolsky and W. Vetterling and B. Flannery" -, title = "Numerical Recipes in {C}" -, edition = "1st" -, publisher = "Cambridge University Press" -, year = 1988 -, succeeds = "pftv-nr-86" -, update = "98.11 bibrelex, 97.11 bibrelex" +, author = "W. Press and S. Teukolsky and W. Vetterling and B. Flannery" +, title = "Numerical Recipes in {C}" +, edition = "1st" +, publisher = "Cambridge University Press" +, year = 1988 +, succeeds = "pftv-nr-86" +, update = "98.11 bibrelex, 97.11 bibrelex" } @book{pftv-nr-86 -, author = "W. H. Press and B. P. Flannery and S. A. Teukolsky and W. T. Vetterling" -, title = "Numerical Recipes" -, publisher = "Cambridge University Press" -, year = 1986 -, precedes = "ptvf-nrc-88" -, update = "97.11 bibrelex" +, author = "W. H. Press and B. P. Flannery and S. A. Teukolsky and W. T. Vetterling" +, title = "Numerical Recipes" +, publisher = "Cambridge University Press" +, year = 1986 +, precedes = "ptvf-nrc-88" +, update = "97.11 bibrelex" } @book{pftv-nrc-93 -, author = "William H. Press and Brian P. Flannery and Saul A. Teukolsky and William T. Vetterling" -, title = "Numerical Recipes in~{C}" -, edition = "2nd" -, publisher = "Cambridge University Press" -, address = "Cambridge, England" -, year = 1993 -, update = "98.07 tamassia+vismara, 97.11 bibrelex" +, author = "William H. Press and Brian P. Flannery and Saul A. Teukolsky and William T. Vetterling" +, title = "Numerical Recipes in~{C}" +, edition = "2nd" +, publisher = "Cambridge University Press" +, address = "Cambridge, England" +, year = 1993 +, update = "98.07 tamassia+vismara, 97.11 bibrelex" } @book{pu-mipa-82 -, author = "K. Preston and L. Uhr" -, title = "Multicomputers and Image Processing Algorithms" -, publisher = "Academic Press" -, year = 1982 -, update = "97.11 bibrelex" +, author = "K. Preston and L. Uhr" +, title = "Multicomputers and Image Processing Algorithms" +, publisher = "Academic Press" +, year = 1982 +, update = "97.11 bibrelex" } @incollection{p-mrisf-87 -, author = "W. I. Pribble" -, title = "Molds for reaction injection, structural foam and expandable styrene molding" -, editor = "J. H. DuBois and W. I. Pribble" -, booktitle = "Plastics mold engineering handbook" -, publisher = "Van Nostrand Reinhold Company Inc." -, address = "New York, NY" -, year = 1987 -, update = "98.03 bibrelex" +, author = "W. I. Pribble" +, title = "Molds for reaction injection, structural foam and expandable styrene molding" +, editor = "J. H. DuBois and W. I. Pribble" +, booktitle = "Plastics mold engineering handbook" +, publisher = "Van Nostrand Reinhold Company Inc." +, address = "New York, NY" +, year = 1987 +, update = "98.03 bibrelex" } @book{p-lb-71 -, author = "K. H. Pribram" -, title = "Languages of the brain" -, publisher = "Prentice-Hall inc." -, address = "Englewood cliffs, New Jersey" -, year = 1971 -, update = "98.11 bibrelex" +, author = "K. H. Pribram" +, title = "Languages of the brain" +, publisher = "Prentice-Hall inc." +, address = "Englewood cliffs, New Jersey" +, year = 1971 +, update = "98.11 bibrelex" } @inproceedings{psb-motmo-95 -, author = "Mark Price and Clive Stops and Geoffrey Butlin" -, title = "A Medial Object Toolkit for Meshing and Other Applications" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "219--230" -, update = "96.01 samitchell" +, author = "Mark Price and Clive Stops and Geoffrey Butlin" +, title = "A Medial Object Toolkit for Meshing and Other Applications" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "219--230" +, update = "96.01 samitchell" } @inproceedings{p-aapfp-91 -, author = "D. Priest" -, title = "Algorithms for arbitrary precision floating point arithmetic" -, booktitle = "Proc. 10th Symp. on coputer arithmetic" -, year = 1991 -, pages = "132--143" -, update = "96.05 devillers" +, author = "D. Priest" +, title = "Algorithms for arbitrary precision floating point arithmetic" +, booktitle = "Proc. 10th Symp. on coputer arithmetic" +, year = 1991 +, pages = "132--143" +, update = "96.05 devillers" } @phdthesis{p-pfpan-92 -, author = "D. Priest" -, title = "On properties of floating point arithmetics: numerical stability and the cost of accurate computations" -, type = "Ph.{D}. Thesis" -, school = "Dept. of mathematics" -, address = "Univ. of California at Berkeley" -, year = 1992 -, keywords = "doctoral thesis" -, update = "96.05 devillers" +, author = "D. Priest" +, title = "On properties of floating point arithmetics: numerical stability and the cost of accurate computations" +, type = "Ph.{D}. Thesis" +, school = "Dept. of mathematics" +, address = "Univ. of California at Berkeley" +, year = 1992 +, keywords = "doctoral thesis" +, update = "96.05 devillers" } @article{p-aicad-86 -, author = "D. Prill" -, title = "On approximations and incidence in cylindrical algebraic decompositions" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "972--993" -, update = "98.03 bibrelex" +, author = "D. Prill" +, title = "On approximations and incidence in cylindrical algebraic decompositions" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "972--993" +, update = "98.03 bibrelex" } @article{p-scnsg-57 -, author = "R. C. Prim" -, title = "Shortest connection networks and some generalizations" -, journal = "Bell Syst. Tech. J." -, volume = 36 -, year = 1957 -, pages = "1389--1401" +, author = "R. C. Prim" +, title = "Shortest connection networks and some generalizations" +, journal = "Bell Syst. Tech. J." +, volume = 36 +, year = 1957 +, pages = "1389--1401" } @article{psts-tagsd-91 -, author = "L. B. Protsko and P. G. Sorenson and J. P. Tremblay and D. A. Schaefer" -, title = "Towards the Automatic Generation of Software Diagrams" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-17" -, number = 1 -, year = 1991 -, pages = "10--21" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "L. B. Protsko and P. G. Sorenson and J. P. Tremblay and D. A. Schaefer" +, title = "Towards the Automatic Generation of Software Diagrams" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-17" +, number = 1 +, year = 1991 +, pages = "10--21" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{p-cstp-88 -, author = "J. S. Provan" -, title = "Convexity and the {Steiner} Tree Problem" -, journal = "Networks" -, volume = 18 -, year = 1988 -, pages = "57--72" -, update = "98.11 bibrelex" +, author = "J. S. Provan" +, title = "Convexity and the {Steiner} Tree Problem" +, journal = "Networks" +, volume = 18 +, year = 1988 +, pages = "57--72" +, update = "98.11 bibrelex" } @article{p-tncfs-92 -, author = "J. S. Provan" -, title = "Two new criteria for finding {Steiner} hulls in {Steiner} tree problems" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "289--302" -, update = "98.11 bibrelex" +, author = "J. S. Provan" +, title = "Two new criteria for finding {Steiner} hulls in {Steiner} tree problems" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "289--302" +, update = "98.11 bibrelex" } @techreport{p-sccps-84 -, author = "P. Prusinkiewicz" -, title = "Space complexity of the contour problem for a set of iso-rectangles" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Univ. Regina" -, address = "Regina, SK" -, month = dec -, year = 1984 -, keywords = "isothetic rectangles, construction, plane-sweep, segment trees, worst-case analysis, output-sensitive" -, annote = "$O(n \log n + k)$ time, $O(n)$ space" +, author = "P. Prusinkiewicz" +, title = "Space complexity of the contour problem for a set of iso-rectangles" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Univ. Regina" +, address = "Regina, SK" +, month = dec +, year = 1984 +, keywords = "isothetic rectangles, construction, plane-sweep, segment trees, worst-case analysis, output-sensitive" +, annote = "$O(n \log n + k)$ time, $O(n)$ space" } @techreport{pr-ssoca-83 -, author = "P. Prusinkiewicz and V. V. Raghavan" -, title = "A simple space-optimal contour algorithm for a set of iso-rectangles" -, type = "Report" -, number = "CS-83-03" -, institution = "Dept. Comput. Sci., Univ. Regina" -, address = "Regina, SK" -, year = 1983 -, keywords = "isothetic rectangles, construction, plane-sweep, linked lists, worst-case analysis" -, annote = "$O(n^{2})$ time, $O(n)$ space" +, author = "P. Prusinkiewicz and V. V. Raghavan" +, title = "A simple space-optimal contour algorithm for a set of iso-rectangles" +, type = "Report" +, number = "CS-83-03" +, institution = "Dept. Comput. Sci., Univ. Regina" +, address = "Regina, SK" +, year = 1983 +, keywords = "isothetic rectangles, construction, plane-sweep, linked lists, worst-case analysis" +, annote = "$O(n^{2})$ time, $O(n)$ space" } @techreport{py-anfaq-84 -, author = "C. Puech and H. Yahia" -, title = "Analysis of a neighbour finding algorithm in quadtrees" -, type = "Report" -, number = "??" -, institution = "Lab. Recherche Inform., Univ. Paris Sud" -, address = "Orsay, France" -, year = 1984 +, author = "C. Puech and H. Yahia" +, title = "Analysis of a neighbour finding algorithm in quadtrees" +, type = "Report" +, number = "??" +, institution = "Lab. Recherche Inform., Univ. Paris Sud" +, address = "Orsay, France" +, year = 1984 } @inproceedings{py-qohua-85 -, author = "C. Puech and H. Yahia" -, title = "Quadtrees, octrees, hyperoctrees: a unified analytical approach to tree data structures used in graphics, geometric modeling and image processing" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "272--280" -, cites = "achllstu-mairp-81, an-bp-72, beh-gms-79, b-gmcv-74, b-ame-74, dt-dtoeo-81, drs-rrbcq-80, e-rsp-70, fp-ochr3-84, f-addmd-79, fs-ppmta-83, ftyk-oasm-83, ftyk-eotds-83, g-ewrq-82, gd-tdsgi-81, h-ecdsg-78, hs-oiuqt-79, i-lgto-81, j-cmtdo-79, jt-otur3-82, kd-epurd-76, m-oe-80, m-gmuqe-82, mm-anrt-78, p-remdt-83, py-anfaq-84, rr-rtdo-78, r-rrstm-80, rv-smcsr-83, s-rrqba-80, s-dtdqt-80, s-rrqbc-80, s-cpirq-81, s-ccluq-81, s-acrq-81, s-nftir-82, s-qmat-83, s-qrhds-84, sw-ebq-84, s-rtddi-81, s-lfdle-81, ykf-ordsa-84, yk-lsdso-83, ys-hdsmd-83, ZZZ" -, update = "97.11 bibrelex" +, author = "C. Puech and H. Yahia" +, title = "Quadtrees, octrees, hyperoctrees: a unified analytical approach to tree data structures used in graphics, geometric modeling and image processing" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "272--280" +, cites = "achllstu-mairp-81, an-bp-72, beh-gms-79, b-gmcv-74, b-ame-74, dt-dtoeo-81, drs-rrbcq-80, e-rsp-70, fp-ochr3-84, f-addmd-79, fs-ppmta-83, ftyk-oasm-83, ftyk-eotds-83, g-ewrq-82, gd-tdsgi-81, h-ecdsg-78, hs-oiuqt-79, i-lgto-81, j-cmtdo-79, jt-otur3-82, kd-epurd-76, m-oe-80, m-gmuqe-82, mm-anrt-78, p-remdt-83, py-anfaq-84, rr-rtdo-78, r-rrstm-80, rv-smcsr-83, s-rrqba-80, s-dtdqt-80, s-rrqbc-80, s-cpirq-81, s-ccluq-81, s-acrq-81, s-nftir-82, s-qmat-83, s-qrhds-84, sw-ebq-84, s-rtddi-81, s-lfdle-81, ykf-ordsa-84, yk-lsdso-83, ys-hdsmd-83, ZZZ" +, update = "97.11 bibrelex" } @techreport{p-slc-89 -, author = "W. Pugh" -, title = "Skip List Cookbook" -, type = "Technical {Report}" -, number = "CS-TR-2286" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, month = jul -, year = 1989 -, update = "98.07 bibrelex" +, author = "W. Pugh" +, title = "Skip List Cookbook" +, type = "Technical {Report}" +, number = "CS-TR-2286" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, month = jul +, year = 1989 +, update = "98.07 bibrelex" } @article{p-slpab-90 -, author = "W. Pugh" -, title = "Skip lists: a probabilistic alternative to balanced trees" -, journal = "Commun. ACM" -, volume = 33 -, number = 6 -, year = 1990 -, pages = "668--676" -, keywords = "data structuring, randomized algorithms" -, update = "97.11 bibrelex, 93.05 jones" +, author = "W. Pugh" +, title = "Skip lists: a probabilistic alternative to balanced trees" +, journal = "Commun. ACM" +, volume = 33 +, number = 6 +, year = 1990 +, pages = "668--676" +, keywords = "data structuring, randomized algorithms" +, update = "97.11 bibrelex, 93.05 jones" } @inproceedings{p-csarg-90 -, author = "D. Pullar" -, title = "Comparative study of algorithms for reporting geometrical intersections" -, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" -, year = 1990 -, pages = "66--76" -, update = "98.03 bibrelex" +, author = "D. Pullar" +, title = "Comparative study of algorithms for reporting geometrical intersections" +, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" +, year = 1990 +, pages = "66--76" +, update = "98.03 bibrelex" } @incollection{p-pc-89 -, author = "W. R. Pulleyblank" -, title = "Polyhedral combinatorics" -, editor = "G. L. Nemhauser and A. H. G. {Rinnooy Kan} and M. J. Todd" -, booktitle = "Optimization" -, series = "Handbooks in Operations Research and Management Science" -, volume = 1 -, publisher = "North-Holland" -, year = 1989 -, pages = "371--446" -, update = "97.11 bibrelex" +, author = "W. R. Pulleyblank" +, title = "Polyhedral combinatorics" +, editor = "G. L. Nemhauser and A. H. G. {Rinnooy Kan} and M. J. Todd" +, booktitle = "Optimization" +, series = "Handbooks in Operations Research and Management Science" +, volume = 1 +, publisher = "North-Holland" +, year = 1989 +, pages = "371--446" +, update = "97.11 bibrelex" } @inproceedings{p-vrts-96 -, author = "E. Puppo" -, title = "Variable resolution terrain surfaces" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "202--210" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "E. Puppo" +, title = "Variable resolution terrain surfaces" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "202--210" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{p-wageh-97 -, author = "Helen Purchase" -, title = "Which Aesthetic has the Greatest Effect on Human Understanding?" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "248--261" -, keywords = "graph drawing" -, update = "99.11 bibrelex, 98.07 patrignani+tamassia+vismara" +, author = "Helen Purchase" +, title = "Which Aesthetic has the Greatest Effect on Human Understanding?" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "248--261" +, keywords = "graph drawing" +, update = "99.11 bibrelex, 98.07 patrignani+tamassia+vismara" } @article{p-eivsg-00 -, author = "Helen C. Purchase" -, title = "Effective Information Visualisation: A Study of Graph Drawing Aesthetics and Algorithms" -, journal = "Interact. Comput." -, volume = 13 -, number = 2 -, year = 2000 -, pages = "147--162" -, succeeds = "p-wageh-97" -, update = "01.04 vismara" +, author = "Helen C. Purchase" +, title = "Effective Information Visualisation: A Study of Graph Drawing Aesthetics and Algorithms" +, journal = "Interact. Comput." +, volume = 13 +, number = 2 +, year = 2000 +, pages = "147--162" +, succeeds = "p-wageh-97" +, update = "01.04 vismara" } @article{p-placc-98 -, author = "Helen C. Purchase" -, title = "Performance of Layout Algorithms: Comprehension, not Computation" -, journal = "J. Visual Lang. Comput." -, volume = 9 -, number = 6 -, year = 1998 -, pages = "647--657" -, update = "01.04 vismara" +, author = "Helen C. Purchase" +, title = "Performance of Layout Algorithms: Comprehension, not Computation" +, journal = "J. Visual Lang. Comput." +, volume = 9 +, number = 6 +, year = 1998 +, pages = "647--657" +, update = "01.04 vismara" } @inproceedings{pcj-vgda-96 -, author = "H. C. Purchase and R. F. Cohen and M. James" -, title = "Validating Graph Drawing Aesthetics" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "435--446" -, keywords = "graph drawing, aesthetics, human-computer interaction" -, update = "98.07 vismara, 96.09 tamassia, 96.04 garg" +, author = "H. C. Purchase and R. F. Cohen and M. James" +, title = "Validating Graph Drawing Aesthetics" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "435--446" +, keywords = "graph drawing, aesthetics, human-computer interaction" +, update = "98.07 vismara, 96.09 tamassia, 96.04 garg" } @article{pcj-esbgd-97 -, author = "H. C. Purchase and R. F. Cohen and M. I. James" -, title = "An Experimental Study of the Basis for Graph Drawing Algorithms" -, journal = "ACM J. Experim. Algorithmics" -, volume = 2 -, number = 4 -, year = 1997 -, url = "http://www.jea.acm.org/1997/PurchaseDrawing/" -, succeeds = "pcj-vgda-96" -, update = "99.07 vismara" +, author = "H. C. Purchase and R. F. Cohen and M. I. James" +, title = "An Experimental Study of the Basis for Graph Drawing Algorithms" +, journal = "ACM J. Experim. Algorithmics" +, volume = 2 +, number = 4 +, year = 1997 +, url = "http://www.jea.acm.org/1997/PurchaseDrawing/" +, succeeds = "pcj-vgda-96" +, update = "99.07 vismara" } @article{p-rae-88 -, author = "G. Purdy" -, title = "Repeated angles in {$E_4$}" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "73--75" +, author = "G. Purdy" +, title = "Repeated angles in {$E_4$}" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "73--75" } @article{p-mnet-82 -, author = "G. B. Purdy" -, title = "The minimum number of empty triangles" -, journal = "AMS Abstracts" -, volume = 3 -, year = 1982 -, pages = 318 -, update = "02.03 devillers" +, author = "G. B. Purdy" +, title = "The minimum number of empty triangles" +, journal = "AMS Abstracts" +, volume = 3 +, year = 1982 +, pages = 318 +, update = "02.03 devillers" } @techreport{qam-spinp-91 -, author = "K. Qiu and S. G. Akl and H. Meijer" -, title = "The Star and Pancake Interconnection Networks: Properties and Algorithms" -, type = "Technical Report" -, number = "91-297" -, institution = "Dept. Computing and Information Sci, Queen's University" -, address = "Canada" -, month = mar -, year = 1991 -, update = "98.07 bibrelex" +, author = "K. Qiu and S. G. Akl and H. Meijer" +, title = "The Star and Pancake Interconnection Networks: Properties and Algorithms" +, type = "Technical Report" +, number = "91-297" +, institution = "Dept. Computing and Information Sci, Queen's University" +, address = "Canada" +, month = mar +, year = 1991 +, update = "98.07 bibrelex" } @inproceedings{qma-dsgdc-90 -, author = "K. Qiu and H. Meijer and S. Akl" -, title = "Decomposing a star graph into disjoint cycles" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "70--73" -, cites = "ak-gtmsi-86, ahk-sgaan-87, ak-ftsg-87, a-dapa-89, qma-dsgdc-90t, ZZZ" -, update = "98.07 bibrelex" +, author = "K. Qiu and H. Meijer and S. Akl" +, title = "Decomposing a star graph into disjoint cycles" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "70--73" +, cites = "ak-gtmsi-86, ahk-sgaan-87, ak-ftsg-87, a-dapa-89, qma-dsgdc-90t, ZZZ" +, update = "98.07 bibrelex" } @techreport{qma-dsgdc-90t -, author = "K. Qiu and H. Meijer and S. G. Akl" -, title = "Decomposing a star graph into disjoint cycles" -, type = "Technical {Report}" -, number = "90-278" -, institution = "Dept. Comput. Inform. Sci., Queen's Univ." -, address = "Kingston, Canada" -, month = may -, year = 1990 -, update = "98.07 bibrelex" +, author = "K. Qiu and H. Meijer and S. G. Akl" +, title = "Decomposing a star graph into disjoint cycles" +, type = "Technical {Report}" +, number = "90-278" +, institution = "Dept. Comput. Inform. Sci., Queen's Univ." +, address = "Kingston, Canada" +, month = may +, year = 1990 +, update = "98.07 bibrelex" } @unpublished{qma-prspn-91 -, author = "K. Qiu and H. Meijer and S. G. Akl" -, title = "Parallel Routing and Sorting on the Pancake Network" -, month = may -, year = 1991 -, note = "Proc. International Conf. on Computing and Information, Ottawa, to appear-91" -, update = "98.07 bibrelex" +, author = "K. Qiu and H. Meijer and S. G. Akl" +, title = "Parallel Routing and Sorting on the Pancake Network" +, month = may +, year = 1991 +, note = "Proc. International Conf. on Computing and Information, Ottawa, to appear-91" +, update = "98.07 bibrelex" } @article{qs-csfdd-90 -, author = "E. Quak and L. Schumaker" -, title = "Cubic spline fitting using data dependent triangulations" -, journal = "Comput. Aided Geom. Design" -, volume = 7 -, year = 1990 -, pages = "293--302" -, update = "97.03 schwarzkopf" +, author = "E. Quak and L. Schumaker" +, title = "Cubic spline fitting using data dependent triangulations" +, journal = "Comput. Aided Geom. Design" +, volume = 7 +, year = 1990 +, pages = "293--302" +, update = "97.03 schwarzkopf" } @inproceedings{qfp-dsarn-85 -, author = "F. K. H. Quek and R. F. Franklin and F. Pont" -, title = "A Decision System for Autonomous Robot Navigation Over Rough Terrain" -, booktitle = "Proc. SPIE Applications of Artificial Intelligence" -, volume = "??" -, year = 1985 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "F. K. H. Quek and R. F. Franklin and F. Pont" +, title = "A Decision System for Autonomous Robot Navigation Over Rough Terrain" +, booktitle = "Proc. SPIE Applications of Artificial Intelligence" +, volume = "??" +, year = 1985 +, pages = "??" +, update = "93.09 milone+mitchell" } @article{q-abtps-89 -, author = "M. J. Quinn" -, title = "Analysis and benchmarking of two parallel sorting algorithms: hyperquicksort and quickmerge" -, journal = "BIT" -, volume = 29 -, number = 2 -, year = 1989 -, pages = "239--250" -, update = "96.09 orourke" +, author = "M. J. Quinn" +, title = "Analysis and benchmarking of two parallel sorting algorithms: hyperquicksort and quickmerge" +, journal = "BIT" +, volume = 29 +, number = 2 +, year = 1989 +, pages = "239--250" +, update = "96.09 orourke" } @incollection{r-fcdmc-94 -, author = "Rich Rabbitz" -, title = "Fast Collision Detection of Moving Convex Polyhedra" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "83--109" -, keywords = "animation, collision detection, computational geometry, polyhedron" -, update = "94.09 heckbert" -, annote = "A turn-key piece of software that solves a difficult but +, author = "Rich Rabbitz" +, title = "Fast Collision Detection of Moving Convex Polyhedra" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "83--109" +, keywords = "animation, collision detection, computational geometry, polyhedron" +, update = "94.09 heckbert" +, annote = "A turn-key piece of software that solves a difficult but basic problem in physically based animation and interactive modeling. Contains C code." } @incollection{r-pa-76 -, author = "M. O. Rabin" -, title = "Probabilistic algorithms" -, editor = "J. F. Traub" -, booktitle = "Algorithms and Complexity: New Directions and Recent Results" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1976 -, pages = "21--39" -, update = "98.11 bibrelex" +, author = "M. O. Rabin" +, title = "Probabilistic algorithms" +, editor = "J. F. Traub" +, booktitle = "Algorithms and Complexity: New Directions and Recent Results" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1976 +, pages = "21--39" +, update = "98.11 bibrelex" } @article{r-paff-80 -, author = "M. O. Rabin" -, title = "Probabilistic algorithms in finite fields" -, journal = "SIAM J. Comput." -, volume = 9 -, number = 2 -, year = 1980 -, pages = "273--280" -, update = "98.03 bibrelex" +, author = "M. O. Rabin" +, title = "Probabilistic algorithms in finite fields" +, journal = "SIAM J. Comput." +, volume = 9 +, number = 2 +, year = 1980 +, pages = "273--280" +, update = "98.03 bibrelex" } @article{r-psplf-72 -, author = "M. O. Rabin" -, title = "Proving simultaneous positivity of linear forms" -, journal = "J. Comput. Syst. Sci." -, volume = 6 -, year = 1972 -, pages = "639--650" +, author = "M. O. Rabin" +, title = "Proving simultaneous positivity of linear forms" +, journal = "J. Comput. Syst. Sci." +, volume = 6 +, year = 1972 +, pages = "639--650" } @techreport{rb-nbeaj-?? -, author = "G. Radack and N. Badler" -, title = "A new boundary encoding with applications to jigsaw puzzles" -, type = "Manuscript" -, institution = "Dept. Comput. Inform. Sci., Univ. Pennsylvania" -, address = "Philadelphia, PA" -, year = "??" +, author = "G. Radack and N. Badler" +, title = "A new boundary encoding with applications to jigsaw puzzles" +, type = "Manuscript" +, institution = "Dept. Comput. Inform. Sci., Univ. Pennsylvania" +, address = "Philadelphia, PA" +, year = "??" } @book{r-lent-64 -, author = "H. Rademacher" -, title = "Lectures on Elementary Number Theory" -, publisher = "Blaisdell" -, address = "New York, NY" -, year = 1964 -, update = "97.11 bibrelex" +, author = "H. Rademacher" +, title = "Lectures on Elementary Number Theory" +, publisher = "Blaisdell" +, address = "New York, NY" +, year = 1964 +, update = "97.11 bibrelex" } @book{rt-em-57 -, author = "H. Rademacher and O. Toeplitz" -, title = "The Enjoyment of Mathematics" -, publisher = "Princeton University Press" -, address = "Princeton, NJ" -, year = 1957 -, update = "98.03 bibrelex" +, author = "H. Rademacher and O. Toeplitz" +, title = "The Enjoyment of Mathematics" +, publisher = "Princeton University Press" +, address = "Princeton, NJ" +, year = 1957 +, update = "98.03 bibrelex" } @incollection{rt-scfsp-57 -, author = "H. Rademacher and O. Toeplitz" -, title = "The spanning circle of a finite set of points" -, chapter = 16 -, booktitle = "The Enjoyment of Mathematics" -, publisher = "Princeton University Press" -, year = 1957 -, update = "98.07 bibrelex" +, author = "H. Rademacher and O. Toeplitz" +, title = "The spanning circle of a finite set of points" +, chapter = 16 +, booktitle = "The Enjoyment of Mathematics" +, publisher = "Princeton University Press" +, year = 1957 +, update = "98.07 bibrelex" } @incollection{r-ssp-88 -, author = "J. D. Radke" -, title = "On the shape of a set of points" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "105--136" +, author = "J. D. Radke" +, title = "On the shape of a set of points" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "105--136" } @incollection{r-mpg-78 -, author = "R. Rado" -, title = "Monochromatic paths in graphs" -, editor = "B. Bollob{\'a}s" -, booktitle = "Advances in Graph Theory" -, series = "Ann. Discrete Math." -, volume = 3 -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 1978 -, pages = "191--194" -, update = "97.11 bibrelex" +, author = "R. Rado" +, title = "Monochromatic paths in graphs" +, editor = "B. Bollob{\'a}s" +, booktitle = "Advances in Graph Theory" +, series = "Ann. Discrete Math." +, volume = 3 +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 1978 +, pages = "191--194" +, update = "97.11 bibrelex" } @article{r-mkkde-21 -, author = "J. Radon" -, title = "Mengen konvexer {K{\"o}rper}, die einen gemeinsamen {Punkt} enthalten" -, journal = "Math. Ann." -, volume = 83 -, year = 1921 -, pages = "113--115" -, update = "97.11 bibrelex" +, author = "J. Radon" +, title = "Mengen konvexer {K{\"o}rper}, die einen gemeinsamen {Punkt} enthalten" +, journal = "Math. Ann." +, volume = 83 +, year = 1921 +, pages = "113--115" +, update = "97.11 bibrelex" } @article{r-bfigm-17 -, author = "J. Radon" -, title = "{\"Uber} die Bestimmung von Funktionen duch ihre Integralwerte {l\"angs} gewisser Mannigfaltigkeiten" -, journal = "Ber. Verb. {S\"achs.} Wiss., Leipzig, Math. Phys. Kl." -, volume = 69 -, year = 1917 -, pages = "262--277" -, update = "98.11 bibrelex" +, author = "J. Radon" +, title = "{\"Uber} die Bestimmung von Funktionen duch ihre Integralwerte {l\"angs} gewisser Mannigfaltigkeiten" +, journal = "Ber. Verb. {S\"achs.} Wiss., Leipzig, Math. Phys. Kl." +, volume = 69 +, year = 1917 +, pages = "262--277" +, update = "98.11 bibrelex" } @inproceedings{r-pscc-90 -, author = "P. Ragde" -, title = "The Parallel Simplicity of Compaction and Chaining" -, booktitle = "Proc. 17th International Colloquium on Automata, Languages and Programming, LNCS 443" -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "744--751" -, update = "97.11 bibrelex, 96.09 orourke" +, author = "P. Ragde" +, title = "The Parallel Simplicity of Compaction and Chaining" +, booktitle = "Proc. 17th International Colloquium on Automata, Languages and Programming, LNCS 443" +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "744--751" +, update = "97.11 bibrelex, 96.09 orourke" } @inproceedings{r-cgipb-96 -, author = "P. Raghavan" -, title = "Computational geometry impact potential: {A} business and industrial perspective" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "276--276" -, update = "97.03 agarwal, 96.09 mitchell" -, annote = "Invited Lecture by P. Raghavan" +, author = "P. Raghavan" +, title = "Computational geometry impact potential: {A} business and industrial perspective" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "276--276" +, update = "97.03 agarwal, 96.09 mitchell" +, annote = "Invited Lecture by P. Raghavan" } @inproceedings{r-iras -, author = "P. Raghavan" -, title = "Information Retrieval Algorithms: {A} Survey" -, booktitle = "Proc. 18th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1997 -, pages = "11--18" -, update = "98.07 agarwal" +, author = "P. Raghavan" +, title = "Information Retrieval Algorithms: {A} Survey" +, booktitle = "Proc. 18th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1997 +, pages = "11--18" +, update = "98.07 agarwal" } @techreport{r-lnra-90 -, author = "P. Raghavan" -, title = "Lecture notes on randomized algorithms" -, type = "Research {Report}" -, number = "RC15340" -, institution = "IBM" -, year = 1990 -, update = "97.11 bibrelex" +, author = "P. Raghavan" +, title = "Lecture notes on randomized algorithms" +, type = "Research {Report}" +, number = "RC15340" +, institution = "IBM" +, year = 1990 +, update = "97.11 bibrelex" } @inproceedings{rcs-mw-81 -, author = "V. V. Raghavan and J. Cohon and S. Sahni" -, title = "Manhattan wiring" -, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." -, year = 1981 -, pages = "1--10" +, author = "V. V. Raghavan and J. Cohon and S. Sahni" +, title = "Manhattan wiring" +, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." +, year = 1981 +, pages = "1--10" } @article{ry-nmsp-77 -, author = "V. V. Raghavan and C. T. Yu" -, title = "A note on a multidimensional searching problem" -, journal = "Inform. Process. Lett." -, volume = 6 -, year = 1977 -, pages = "133--135" +, author = "V. V. Raghavan and C. T. Yu" +, title = "A note on a multidimensional searching problem" +, journal = "Inform. Process. Lett." +, volume = 6 +, year = 1977 +, pages = "133--135" } @inproceedings{rs-ncbrv-97 -, author = "S. Raghotama and V. Shapiro" -, title = "Necessary conditions for boundary representation variance" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "77--86" -, cites = "a-at-76, adps-pptpt-95, a-bt-79, bfhcp-gcs-93, cch-gngcb-96, ch-efbd-96, hy-t-61, hr-rmsm-96, h-gsm-89, h-sggr-93, hd-pvd-94, k-ts-93, k-mpnte-95, lm-sgch-95, m-eat-84, or-sdimp-89t, p-lat-83, r-dsmbr-96, r-mmrso-79, r-rrstm-80, r-rtsmi-84, r-cfitf-96, s-mgrsd-97, sv-wipfs-95, rs-brvps-97, s-scctf-92, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "S. Raghotama and V. Shapiro" +, title = "Necessary conditions for boundary representation variance" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "77--86" +, cites = "a-at-76, adps-pptpt-95, a-bt-79, bfhcp-gcs-93, cch-gngcb-96, ch-efbd-96, hy-t-61, hr-rmsm-96, h-gsm-89, h-sggr-93, hd-pvd-94, k-ts-93, k-mpnte-95, lm-sgch-95, m-eat-84, or-sdimp-89t, p-lat-83, r-dsmbr-96, r-mmrso-79, r-rrstm-80, r-rtsmi-84, r-cfitf-96, s-mgrsd-97, sv-wipfs-95, rs-brvps-97, s-scctf-92, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{rs-brvps-97 -, author = "S. Raghothama and V. Shapiro" -, title = "Boundary representation variance in parametric solid modeling" -, type = "Technical {Report}" -, number = "SAL 1997-1" -, institution = "Univ. Wisconsin" -, address = "Madison, WI" -, month = jan -, year = 1997 -, update = "98.07 bibrelex" +, author = "S. Raghothama and V. Shapiro" +, title = "Boundary representation variance in parametric solid modeling" +, type = "Technical {Report}" +, number = "SAL 1997-1" +, institution = "Univ. Wisconsin" +, address = "Madison, WI" +, month = jan +, year = 1997 +, update = "98.07 bibrelex" } @phdthesis{r-edt-93 -, author = "Ingemar Ragnemalm" -, title = "The {Euclidean} Distance Transform" -, type = "Link{\"o}ping Studies in Science and Technology, Ph.{D}. Dissertation" -, school = "Department of Electrical Engineering, Link{\"o}ping University" -, address = "Sweden" -, year = 1993 -, note = 304 -, keywords = "doctoral thesis" -, update = "98.03 mitchell" +, author = "Ingemar Ragnemalm" +, title = "The {Euclidean} Distance Transform" +, type = "Link{\"o}ping Studies in Science and Technology, Ph.{D}. Dissertation" +, school = "Department of Electrical Engineering, Link{\"o}ping University" +, address = "Sweden" +, year = 1993 +, note = 304 +, keywords = "doctoral thesis" +, update = "98.03 mitchell" } @article{rnn-rgdpg-98 -, author = "Md. Saidur Rahman and Shin-ichi Nakano and Takao Nishizeki" -, title = "Rectangular Grid Drawings of Plane Graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, number = 3 -, year = 1998 -, pages = "203--220" -, update = "98.11 devillers+vismara" +, author = "Md. Saidur Rahman and Shin-ichi Nakano and Takao Nishizeki" +, title = "Rectangular Grid Drawings of Plane Graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, number = 3 +, year = 1998 +, pages = "203--220" +, update = "98.11 devillers+vismara" } @inproceedings{rnn-laood-97 -, author = "Md. Saidur Rahman and {Shin-ichi} Nakano and Takao Nishizeki" -, title = "A Linear Algorithm for Optimal Orthogonal Drawings of Triconnected Cubic Plane Graphs" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "99--110" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Md. Saidur Rahman and {Shin-ichi} Nakano and Takao Nishizeki" +, title = "A Linear Algorithm for Optimal Orthogonal Drawings of Triconnected Cubic Plane Graphs" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "99--110" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{rh-adll-91 -, author = "M. H. Raibert and J. K. Hodgins" -, title = "Animation of dynamic legged locomotion" -, journal = "Comput. Graph." -, volume = "??" -, year = 1991 -, pages = "349--358" -, note = "Proc. SIGGRAPH '91" -, update = "97.11 bibrelex" +, author = "M. H. Raibert and J. K. Hodgins" +, title = "Animation of dynamic legged locomotion" +, journal = "Comput. Graph." +, volume = "??" +, year = 1991 +, pages = "349--358" +, note = "Proc. SIGGRAPH '91" +, update = "97.11 bibrelex" } @inproceedings{r-mttp-85 -, author = "V. T. Rajan" -, title = "Minimum Time Trajectory Planning" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, month = mar -, year = 1985 -, pages = "759--764" -, update = "93.09 milone+mitchell" +, author = "V. T. Rajan" +, title = "Minimum Time Trajectory Planning" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, month = mar +, year = 1985 +, pages = "759--764" +, update = "93.09 milone+mitchell" } @inproceedings{r-odtr-91 -, author = "V. T. Rajan" -, title = "Optimality of the {Delaunay} triangulation in {$R^{d}$}" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "357--363" -, keywords = "Delaunay triangulation" -, precedes = "r-odtr-94" -, cites = "a-vds-88, b-vdch-79, e-acg-87, es-vda-86, e-atccd-89, f-savd-87, gs-pmgsc-85, l-gtgac-72, ps-cgi-85, sh-cpp-75, s-cg-78, sntm-amgus-90, ZZZ" -, update = "00.03 bibrelex, 97.11 bibrelex" +, author = "V. T. Rajan" +, title = "Optimality of the {Delaunay} triangulation in {$R^{d}$}" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "357--363" +, keywords = "Delaunay triangulation" +, precedes = "r-odtr-94" +, cites = "a-vds-88, b-vdch-79, e-acg-87, es-vda-86, e-atccd-89, f-savd-87, gs-pmgsc-85, l-gtgac-72, ps-cgi-85, sh-cpp-75, s-cg-78, sntm-amgus-90, ZZZ" +, update = "00.03 bibrelex, 97.11 bibrelex" } @article{r-odtr-94 -, author = "V. T. Rajan" -, title = "Optimality of the {Delaunay} triangulation in {$R^d$}" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "189--202" -, succeeds = "r-odtr-91" -, update = "00.03 bibrelex" +, author = "V. T. Rajan" +, title = "Optimality of the {Delaunay} triangulation in {$R^d$}" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "189--202" +, succeeds = "r-odtr-91" +, update = "00.03 bibrelex" } @inproceedings{rr-oprav-94 -, author = "S. Rajasekaran and S. Ramaswami" -, title = "Optimal Parallel Randomized Algorithms for the {Voronoi} Diagram of Line Segments in the Plane and Related Problems" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "57--66" -, cites = "acgoy-pcg-88, ap-np3dc-93, acg-cdctd-89, ag-epsgp-85, c-pagp-80, cs-arscg-89, c-pms-88, cg-opapp-92, dk-ppess-87, f-savd-86, gmv-ttnct-92, g-gpmee-93, goy-cvdsl-89, hw-ensrq-87, k-eccs-79, k-osps-83, ld-gvdp-81, m-fppa1-88, oy-rmpmd-85, rs-pnrst-89, rs-oprat-92, rs-orpac-92, y-oavds-87, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "S. Rajasekaran and S. Ramaswami" +, title = "Optimal Parallel Randomized Algorithms for the {Voronoi} Diagram of Line Segments in the Plane and Related Problems" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "57--66" +, cites = "acgoy-pcg-88, ap-np3dc-93, acg-cdctd-89, ag-epsgp-85, c-pagp-80, cs-arscg-89, c-pms-88, cg-opapp-92, dk-ppess-87, f-savd-86, gmv-ttnct-92, g-gpmee-93, goy-cvdsl-89, hw-ensrq-87, k-eccs-79, k-osps-83, ld-gvdp-81, m-fppa1-88, oy-rmpmd-85, rs-pnrst-89, rs-oprat-92, rs-orpac-92, y-oavds-87, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @article{rr-ostrp-89 -, author = "S. Rajasekaran and J. H. Reif" -, title = "Optimal and sublogarithmic time randomized parallel sorting algorithms" -, journal = "SIAM J. Comput." -, volume = "??" -, year = 1989 -, pages = "594--607" -, update = "97.11 bibrelex" +, author = "S. Rajasekaran and J. H. Reif" +, title = "Optimal and sublogarithmic time randomized parallel sorting algorithms" +, journal = "SIAM J. Comput." +, volume = "??" +, year = 1989 +, pages = "594--607" +, update = "97.11 bibrelex" } @incollection{rs-rstpa-93 -, author = "S. Rajasekaran and S. Sen" -, title = "Random Sampling Techniques and Parallel Algorithms Design" -, editor = "J. H. Reif" -, booktitle = "Synthesis of Parallel Algorithms" -, publisher = "Morgan Kaufmann Publishers" -, year = 1993 -, pages = "411--452" -, update = "96.09 orourke" +, author = "S. Rajasekaran and S. Sen" +, title = "Random Sampling Techniques and Parallel Algorithms Design" +, editor = "J. H. Reif" +, booktitle = "Synthesis of Parallel Algorithms" +, publisher = "Morgan Kaufmann Publishers" +, year = 1993 +, pages = "411--452" +, update = "96.09 orourke" } @techreport{rr-ptp-90 -, author = "V. Ramachandran and J. Reif" -, title = "Planarity Testing in Parallel" -, number = "TR-90-15" -, institution = "Department of Computer Science, University of Texas at Austin" -, year = 1990 -, keywords = "graph drawing" -, update = "98.07 patrignani, 93.09 tamassia" +, author = "V. Ramachandran and J. Reif" +, title = "Planarity Testing in Parallel" +, number = "TR-90-15" +, institution = "Department of Computer Science, University of Texas at Austin" +, year = 1990 +, keywords = "graph drawing" +, update = "98.07 patrignani, 93.09 tamassia" } @inproceedings{rr-opagp-89 -, author = "V. Ramachandran and J. H. Reif" -, title = "An Optimal Parallel Algorithm for Graph Planarity" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "282--293" -, keywords = "graph drawing" -, comments = "Submitted to J. Comput. System Sci." -, update = "93.09 tamassia" +, author = "V. Ramachandran and J. H. Reif" +, title = "An Optimal Parallel Algorithm for Graph Planarity" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "282--293" +, keywords = "graph drawing" +, comments = "Submitted to J. Comput. System Sci." +, update = "93.09 tamassia" } @article{rlt-pmruh-83 -, author = "K. Ramamohanarao and J. W. Lloyd and J. A. Thom" -, title = "Partial-match retrieval using hashing and descriptors" -, journal = "ACM Trans. Database Syst." -, volume = 8 -, year = 1983 -, pages = "552--576" +, author = "K. Ramamohanarao and J. W. Lloyd and J. A. Thom" +, title = "Partial-match retrieval using hashing and descriptors" +, journal = "ACM Trans. Database Syst." +, volume = 8 +, year = 1983 +, pages = "552--576" } @article{ri-pafqp-83 -, author = "V. Raman and S. S. Iyengar" -, title = "Properties and applications of forests of quadtrees for pictorial data representation" -, journal = "BIT" -, volume = 23 -, year = 1983 -, pages = "472--486" +, author = "V. Raman and S. S. Iyengar" +, title = "Properties and applications of forests of quadtrees for pictorial data representation" +, journal = "BIT" +, volume = 23 +, year = 1983 +, pages = "472--486" } @inproceedings{r-nlbti-91 -, author = "P. Ramanan" -, title = "A new lower bound technique and its application: tight lower bound for a polygon triangulation problem" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "281--290" -, annote = "$\Omega(n \log n)$ for minimum-weight triangulation of - simple polygon with weighted vertices" +, author = "P. Ramanan" +, title = "A new lower bound technique and its application: tight lower bound for a polygon triangulation problem" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "281--290" +, annote = "$\Omega(n \log n)$ for minimum-weight triangulation of + simple polygon with weighted vertices" } @inproceedings{ra-amprc-85 -, author = "G. Ramanathan and V. S. Alagar" -, title = "Algorithmic motion planning in robotics: {Coordinated} motion of several discs amidst polygonal barriers" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1985 -, pages = "514--522" -, update = "98.03 bibrelex" +, author = "G. Ramanathan and V. S. Alagar" +, title = "Algorithmic motion planning in robotics: {Coordinated} motion of several discs amidst polygonal barriers" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1985 +, pages = "514--522" +, update = "98.03 bibrelex" } @article{rn-isbmn-87 -, author = "R. Ramaraj and G. M. Nielson" -, title = "Interpolation Over a Sphere Based on a Minimum Norm Network" -, journal = "Comput. Aided Geom. Design" -, volume = 4 -, year = 1987 -, pages = "41--57" -, annote = "Sphere triangulation. Switching based on max-min angle - test. (Is this the same as taking the convex hull?)" +, author = "R. Ramaraj and G. M. Nielson" +, title = "Interpolation Over a Sphere Based on a Minimum Norm Network" +, journal = "Comput. Aided Geom. Design" +, volume = 4 +, year = 1987 +, pages = "41--57" +, annote = "Sphere triangulation. Switching based on max-min angle + test. (Is this the same as taking the convex hull?)" } @article{rp-fkdta-92 -, author = "V. Ramasubramanian and K. K. Paliwal" -, title = "Fast $k$-dimensional tree algorithms for nearest neighbor search with applications to vector quantization encoding" -, journal = "IEEE Trans. Signal Processing" -, volume = 40 -, year = 1992 -, pages = "518--531" -, update = "97.07 agarwal" +, author = "V. Ramasubramanian and K. K. Paliwal" +, title = "Fast $k$-dimensional tree algorithms for nearest neighbor search with applications to vector quantization encoding" +, journal = "IEEE Trans. Signal Processing" +, volume = 40 +, year = 1992 +, pages = "518--531" +, update = "97.07 agarwal" } @inproceedings{ryp-spsff-97 -, author = "K. Ramaswami and Y. Yamaguchi and F. B. Prinz" -, title = "Spatial Partitioning of Solids for Freeform Fabrication" -, booktitle = "Proc. 4th Sympos. Solid Modeling Found. Applications" -, site = "Atlanta, GA, USA" -, month = may -, year = 1997 -, pages = "346--353" -, update = "97.07 held" +, author = "K. Ramaswami and Y. Yamaguchi and F. B. Prinz" +, title = "Spatial Partitioning of Solids for Freeform Fabrication" +, booktitle = "Proc. 4th Sympos. Solid Modeling Found. Applications" +, site = "Atlanta, GA, USA" +, month = may +, year = 1997 +, pages = "346--353" +, update = "97.07 held" } @inproceedings{rrt-ctq-95 -, author = "Suneeta Ramaswami and Pedro Ramos and Godfried Toussaint" -, title = "Converting Triangulations to Quadrangulations" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "297--302" -, precedes = "rrt-ctq-98" -, update = "98.03 mitchell, 95.09 jones" +, author = "Suneeta Ramaswami and Pedro Ramos and Godfried Toussaint" +, title = "Converting Triangulations to Quadrangulations" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "297--302" +, precedes = "rrt-ctq-98" +, update = "98.03 mitchell, 95.09 jones" } @article{rrt-ctq-98 -, author = "Suneeta Ramaswami and Pedro Ramos and Godfried Toussaint" -, title = "Converting Triangulations to Quadrangulations" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, number = 4 -, year = 1998 -, pages = "257--276" -, succeeds = "rrt-ctq-95" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Suneeta Ramaswami and Pedro Ramos and Godfried Toussaint" +, title = "Converting Triangulations to Quadrangulations" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, number = 4 +, year = 1998 +, pages = "257--276" +, succeeds = "rrt-ctq-95" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{rs-pctoe-94 -, author = "S. Ramaswamy and S. Subramanian" -, title = "Path caching: A technique for optimal external searching" -, booktitle = "Proc. 13th Annu. ACM Sympos. Principles Database Syst." -, year = 1994 -, pages = "25--35" -, update = "96.05 agarwal" +, author = "S. Ramaswamy and S. Subramanian" +, title = "Path caching: A technique for optimal external searching" +, booktitle = "Proc. 13th Annu. ACM Sympos. Principles Database Syst." +, year = 1994 +, pages = "25--35" +, update = "96.05 agarwal" } @article{r-ippap- -, author = "Urs Ramer" -, title = "An iterative procedure for the polygonal approximation of plane curves" -, journal = "Comput. Graph. Image Process." -, volume = 1 -, pages = "244--256" -, update = "93.09 milone+mitchell" +, author = "Urs Ramer" +, title = "An iterative procedure for the polygonal approximation of plane curves" +, journal = "Comput. Graph. Image Process." +, volume = 1 +, pages = "244--256" +, update = "93.09 milone+mitchell" } @inproceedings{r-acmso-96 -, author = "G. D. Ramkumar" -, title = "An Algorithm to Compute the {Minkowski} Sum Outer-Face of Two Simple Polygons" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "234--241" -, cites = "bgrr-pttc-, cegghss-rspug-91, cegss-cfals-93, gt-drssp-93, grs-kfcg-83, gs-ccrs-87, hcahs-csfms-95, kos-cmsrp-91i, l-spcsa-83, ZZZ" -, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 efrat" +, author = "G. D. Ramkumar" +, title = "An Algorithm to Compute the {Minkowski} Sum Outer-Face of Two Simple Polygons" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "234--241" +, cites = "bgrr-pttc-, cegghss-rspug-91, cegss-cfals-93, gt-drssp-93, grs-kfcg-83, gs-ccrs-87, hcahs-csfms-95, kos-cmsrp-91i, l-spcsa-83, ZZZ" +, update = "98.07 bibrelex, 97.11 bibrelex, 96.05 efrat" } @inproceedings{r-c1dle-97 -, author = "E. Ramos" -, title = "Construction of $1$-d lower envelopes and applications" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "57--66" -, cites = "a-gpia-91i, am-rsss-94, agr-cfssa-95, agr-pahdc-94, ar-cvddp-96, a-sdcgp-85, c-osrch-95, csy-oscpf-95, c-chdc-93, cegs-dwclp-93, cm-dosch-92, cm-ltdao-93, cs-arscg-89, c-sdsno-87, cgo-mftpe-90, dk-fdpi-83, e-acg-87, es-otatd-91, em-sstcd-90, gg-ptpch-91, gz-odapp-95, g-uaadp-91, g-gpmee-93, g-fdplp-96, goy-cvdsl-93, gr-bidgp-97, gs-fospc-96, hr-wmhtb-92, h-bevv-56, ks-upcha-86, k-cavd-89, m-aogdc-91, m-cha-91, m-ept-92, ms-datdd-96, ms-ufetp-91, m-apcad-83, m-cgitr-93, p-plmps-94, ps-cgi-85, rr-oprav-94, r-aierb-94, rs-oprat-92, sa-dsstg-95, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "E. Ramos" +, title = "Construction of $1$-d lower envelopes and applications" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "57--66" +, cites = "a-gpia-91i, am-rsss-94, agr-cfssa-95, agr-pahdc-94, ar-cvddp-96, a-sdcgp-85, c-osrch-95, csy-oscpf-95, c-chdc-93, cegs-dwclp-93, cm-dosch-92, cm-ltdao-93, cs-arscg-89, c-sdsno-87, cgo-mftpe-90, dk-fdpi-83, e-acg-87, es-otatd-91, em-sstcd-90, gg-ptpch-91, gz-odapp-95, g-uaadp-91, g-gpmee-93, g-fdplp-96, goy-cvdsl-93, gr-bidgp-97, gs-fospc-96, hr-wmhtb-92, h-bevv-56, ks-upcha-86, k-cavd-89, m-aogdc-91, m-cha-91, m-ept-92, ms-datdd-96, ms-ufetp-91, m-apcad-83, m-cgitr-93, p-plmps-94, ps-cgi-85, rr-oprav-94, r-aierb-94, rs-oprat-92, sa-dsstg-95, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{r-iubdp-96 -, author = "E. Ramos" -, title = "Intersection of unit-balls and diameter of a point set in {$R^3$}" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "in press" -, update = "98.07 agarwal, 97.03 agarwal, 96.05 agarwal, 95.09 agarwal" +, author = "E. Ramos" +, title = "Intersection of unit-balls and diameter of a point set in {$R^3$}" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "in press" +, update = "98.07 agarwal, 97.03 agarwal, 96.05 agarwal, 95.09 agarwal" } @article{r-iubdp-97 -, author = "E. Ramos" -, title = "Intersection of unit-balls and diameter of a point set in {$R^3$}" -, journal = "Computat. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "57--65" -, update = "98.03 agarwal" +, author = "E. Ramos" +, title = "Intersection of unit-balls and diameter of a point set in {$R^3$}" +, journal = "Computat. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "57--65" +, update = "98.03 agarwal" } @techreport{r-n3sfp-93 -, author = "E. Ramos" -, title = "The number of $3$-sets of a finite point set in the plane" -, type = "Technical {Report}" -, number = "UIUCDCS-R-93-1843" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana-Champaign , IL" -, year = 1993 -, update = "98.03 bibrelex" +, author = "E. Ramos" +, title = "The number of $3$-sets of a finite point set in the plane" +, type = "Technical {Report}" +, number = "UIUCDCS-R-93-1843" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana-Champaign , IL" +, year = 1993 +, update = "98.03 bibrelex" } @techreport{r-aierb-94 -, author = "E. A. Ramos" -, title = "An algorithm for intersecting equal radius balls ${R^3}$" -, type = "Technical {Report}" -, number = "UIUCDCS-R-94-1851" -, institution = "Dept. of Computer Science, University of Illinois at Urbana-Champaign" -, year = 1994 -, update = "97.03 agarwal, 96.09 orourke" +, author = "E. A. Ramos" +, title = "An algorithm for intersecting equal radius balls ${R^3}$" +, type = "Technical {Report}" +, number = "UIUCDCS-R-94-1851" +, institution = "Dept. of Computer Science, University of Illinois at Urbana-Champaign" +, year = 1994 +, update = "97.03 agarwal, 96.09 orourke" } @article{r-odacd-01 -, author = "E. A. Ramos" -, title = "An Optimal Deterministic Algorithm for Computing the Diameter of a Three-Dimensional Point Set" -, journal = "Discrete Comput. Geom." -, volume = 26 -, year = 2001 -, pages = "233--244" -, update = "01.11 smid" +, author = "E. A. Ramos" +, title = "An Optimal Deterministic Algorithm for Computing the Diameter of a Three-Dimensional Point Set" +, journal = "Discrete Comput. Geom." +, volume = 26 +, year = 2001 +, pages = "233--244" +, update = "01.11 smid" } @inproceedings{r-dadsl-00 -, author = "Edgar A. Ramos" -, title = "Deterministic Algorithms for {3-D} Diameter and some {2-D} Lower Envelopes" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "290--299" -, update = "00.11 smid, 00.07 agarwal" +, author = "Edgar A. Ramos" +, title = "Deterministic Algorithms for {3-D} Diameter and some {2-D} Lower Envelopes" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "290--299" +, update = "00.11 smid, 00.07 agarwal" } @inproceedings{r-lpqr-00 -, author = "Edgar A. Ramos" -, title = "Linear Programming Queries Revisited" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "176--181" -, update = "00.11 smid, 00.07 agarwal" +, author = "Edgar A. Ramos" +, title = "Linear Programming Queries Revisited" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "176--181" +, update = "00.11 smid, 00.07 agarwal" } @phdthesis{r-tegc -, author = "P. Ramos" -, title = "Tolerancia de Estructuras Geom{\'e}trias y Combinatorias" -, school = "??" -, note = "in spanish, in preparation" -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "P. Ramos" +, title = "Tolerancia de Estructuras Geom{\'e}trias y Combinatorias" +, school = "??" +, note = "in spanish, in preparation" +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @inproceedings{r-crp-98 -, author = "Pedro A. Ramos" -, title = "Computing Roundness in Practice" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "125--126" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Pedro A. Ramos" +, title = "Computing Roundness in Practice" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "125--126" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{r-cresa-99 -, author = "Pedro A. Ramos" -, title = "Computing Roundness is Easy if the Set is Almost Round" -, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." -, year = 1999 -, pages = "307--315" -, update = "99.07 devillers" +, author = "Pedro A. Ramos" +, title = "Computing Roundness is Easy if the Set is Almost Round" +, booktitle = "Proc. 15th Annu. ACM Sympos. Comput. Geom." +, year = 1999 +, pages = "307--315" +, update = "99.07 devillers" } @article{r-pfl-30 -, author = "F. P. Ramsey" -, title = "On a problem of formal logic" -, journal = "Proc. London Math. Soc." -, volume = 30 -, year = 1930 -, pages = "264--286" -, update = "98.03 bibrelex" +, author = "F. P. Ramsey" +, title = "On a problem of formal logic" +, journal = "Proc. London Math. Soc." +, volume = 30 +, year = 1930 +, pages = "264--286" +, update = "98.03 bibrelex" } @techreport{r-bcdas-87 -, author = "L. Ramshaw" -, title = "Blossoming: {A} connected-the-dots approach to splines" -, type = "Technical {Report}" -, number = 19 -, institution = "Digital Systems Research Center" -, address = "Palo Alto, CA" -, year = 1987 -, update = "98.07 bibrelex" +, author = "L. Ramshaw" +, title = "Blossoming: {A} connected-the-dots approach to splines" +, type = "Technical {Report}" +, number = 19 +, institution = "Digital Systems Research Center" +, address = "Palo Alto, CA" +, year = 1987 +, update = "98.07 bibrelex" } @unpublished{r-cnebf-82 -, author = "L. Ramshaw" -, title = "{CSL} notebook entry: {The} braiding of floating point lines" -, year = 1982 -, note = "Unpublished note" -, update = "98.03 bibrelex" +, author = "L. Ramshaw" +, title = "{CSL} notebook entry: {The} braiding of floating point lines" +, year = 1982 +, note = "Unpublished note" +, update = "98.03 bibrelex" } @inproceedings{rs-dgtsv-00 -, author = "Adee Ran and Nir Sochen" -, title = "Differential Geometry Techniques in Stereo Vision" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "98--103" -, update = "00.03 bibrelex" +, author = "Adee Ran and Nir Sochen" +, title = "Differential Geometry Techniques in Stereo Vision" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "98--103" +, update = "00.03 bibrelex" } @article{r-hesm-91 -, author = "A. G. Ranade" -, title = "How to emulate shared memory" -, journal = "J. Comput. Syst. Sci." -, volume = 42 -, year = 1991 -, pages = "307--326" -, update = "96.09 orourke" +, author = "A. G. Ranade" +, title = "How to emulate shared memory" +, journal = "J. Comput. Syst. Sci." +, volume = 42 +, year = 1991 +, pages = "307--326" +, update = "96.09 orourke" } @techreport{rrp-uqis-80 -, author = "S. Ranade and A. Rosenfeld and J. M. S. Prewitt" -, title = "Use of quadtrees for image segmentation" -, type = "Report" -, number = "TR-878" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1980 +, author = "S. Ranade and A. Rosenfeld and J. M. S. Prewitt" +, title = "Use of quadtrees for image segmentation" +, type = "Report" +, number = "TR-878" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1980 } @techreport{rrs-sauq-79 -, author = "S. Ranade and A. Rosenfeld and H. Samet" -, title = "Shape approximation using quadtrees" -, type = "Report" -, number = "TR-847" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1979 +, author = "S. Ranade and A. Rosenfeld and H. Samet" +, title = "Shape approximation using quadtrees" +, type = "Report" +, number = "TR-847" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1979 } @article{rrs-sauq-82 -, author = "S. Ranade and A. Rosenfeld and H. Samet" -, title = "Shape approximation using quadtrees" -, journal = "Pattern Recogn." -, volume = 15 -, number = 1 -, year = 1982 -, pages = "31--40" -, update = "96.05 efrat" +, author = "S. Ranade and A. Rosenfeld and H. Samet" +, title = "Shape approximation using quadtrees" +, journal = "Pattern Recogn." +, volume = 15 +, number = 1 +, year = 1982 +, pages = "31--40" +, update = "96.05 efrat" } @article{rs-uqsi-81 -, author = "S. Ranade and M. Shneier" -, title = "Using quadtrees for smooth images" -, journal = "Pattern Recogn." -, volume = 15 -, year = 1981 -, pages = "31--40" +, author = "S. Ranade and M. Shneier" +, title = "Using quadtrees for smooth images" +, journal = "Pattern Recogn." +, volume = 15 +, year = 1981 +, pages = "31--40" } @book{r-cag-61 -, author = "J. F. Randolph" -, title = "Calculus and Analytic Geometry" -, publisher = "Wadsworth" -, year = 1961 -, update = "98.03 bibrelex" +, author = "J. F. Randolph" +, title = "Calculus and Analytic Geometry" +, publisher = "Wadsworth" +, year = 1961 +, update = "98.03 bibrelex" } @inproceedings{rsb-ocd-88 -, author = "K. Rangarajan and M. Shah and D. V. Brackle" -, title = "Optimal corner detector" -, booktitle = "Proc. 2nd Int. Conf. Comput. Visison" -, year = 1988 -, pages = "90--94" -, update = "98.11 bibrelex" +, author = "K. Rangarajan and M. Shah and D. V. Brackle" +, title = "Optimal corner detector" +, booktitle = "Proc. 2nd Int. Conf. Comput. Visison" +, year = 1988 +, pages = "90--94" +, update = "98.11 bibrelex" } @article{rf-cusmm-96 -, author = "V. Ranjan and A. Fournier" -, title = "Creating Union of Spheres Models from Multiple Views" -, journal = "J. Graphics Tools" -, volume = 1 -, number = 4 -, year = 1996 -, pages = "21--39" -, update = "97.11 held" +, author = "V. Ranjan and A. Fournier" +, title = "Creating Union of Spheres Models from Multiple Views" +, journal = "J. Graphics Tools" +, volume = 1 +, number = 4 +, year = 1996 +, pages = "21--39" +, update = "97.11 held" } @inproceedings{rf-usumv-95 -, author = "Vishwa Ranjan and Alain Fournier" -, title = "Union of Spheres (UoS) Model for Volumetric Data" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C2--C3" -, keywords = "" -, cites = "a-pdpaa-87, e-ubids-93, em-tdas-94, rf-vmvd-94, w-sedbe-91, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Vishwa Ranjan and Alain Fournier" +, title = "Union of Spheres (UoS) Model for Volumetric Data" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C2--C3" +, keywords = "" +, cites = "a-pdpaa-87, e-ubids-93, em-tdas-94, rf-vmvd-94, w-sedbe-91, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{rf-vmvd-94 -, author = "V. Ranjan and A. Fournier" -, title = "Volume models for volumetric data" -, journal = "IEEE Computer" -, volume = 27 -, number = 7 -, month = jul -, year = 1994 -, pages = "28--36" -, update = "98.03 bibrelex" +, author = "V. Ranjan and A. Fournier" +, title = "Volume models for volumetric data" +, journal = "IEEE Computer" +, volume = 27 +, number = 7 +, month = jul +, year = 1994 +, pages = "28--36" +, update = "98.03 bibrelex" } @article{r-cpscn-55 -, author = "R. A. Rankin" -, title = "The closest packing of spherical caps in $n$ dimensions" -, journal = "Proc. Glasgow Math. Assoc." -, volume = 2 -, year = 1955 -, pages = "139--144" -, update = "97.11 bibrelex" +, author = "R. A. Rankin" +, title = "The closest packing of spherical caps in $n$ dimensions" +, journal = "Proc. Glasgow Math. Assoc." +, volume = 2 +, year = 1955 +, pages = "139--144" +, update = "97.11 bibrelex" } @article{rg-prm-94 -, author = "Anil Rao and Ken Goldberg" -, title = "Placing Registration Marks" -, journal = "IEEE Transactions on Industrial Electronics" -, volume = 41 -, month = feb -, year = 1994 -, update = "98.03 agarwal" +, author = "Anil Rao and Ken Goldberg" +, title = "Placing Registration Marks" +, journal = "IEEE Transactions on Industrial Electronics" +, volume = 41 +, month = feb +, year = 1994 +, update = "98.03 agarwal" } @techreport{rg-rspid-91 -, author = "A. Rao and K. Y. Goldberg" -, title = "Recovering the shape of a polygon from its diameter" -, type = "Technical {Report}" -, institution = "Inst. Robot. Intell. Syst., Univ. Southern California" -, year = 1991 -, update = "98.07 bibrelex" +, author = "A. Rao and K. Y. Goldberg" +, title = "Recovering the shape of a polygon from its diameter" +, type = "Technical {Report}" +, institution = "Inst. Robot. Intell. Syst., Univ. Southern California" +, year = 1991 +, update = "98.07 bibrelex" } @techreport{rkg-carpp-94 -, author = "A. Rao and D. Kriegman and K. Goldberg" -, title = "Complete algorithms for reorienting polyhedral parts using a pivoting gripper" -, type = "Technical {Report}" -, number = "UU-CS-1994-49" -, institution = "Utrecht university" -, address = "Utrecht, Netherlands" -, year = 1994 -, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-49.ps.gz" -, update = "98.03 bibrelex" +, author = "A. Rao and D. Kriegman and K. Goldberg" +, title = "Complete algorithms for reorienting polyhedral parts using a pivoting gripper" +, type = "Technical {Report}" +, number = "UU-CS-1994-49" +, institution = "Utrecht university" +, address = "Utrecht, Netherlands" +, year = 1994 +, url = "ftp://ftp.cs.uu.nl/pub/RUU/CS/techreps/CS-1994/1994-49.ps.gz" +, update = "98.03 bibrelex" } @inproceedings{rkg-carpp-95 -, author = "Anil Rao and David Kriegman and Ken Goldberg" -, title = "Complete Algorithms for Reorienting Polyhedral Parts Using a Pivoting Gripper" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C22--C23" -, keywords = "" -, cites = "cgrw-pgfip-94, h-fuenl-89, k-cspps-92, rkg-carpp-94, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Anil Rao and David Kriegman and Ken Goldberg" +, title = "Complete Algorithms for Reorienting Polyhedral Parts Using a Pivoting Gripper" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C22--C23" +, keywords = "" +, cites = "cgrw-pgfip-94, h-fuenl-89, k-cspps-92, rkg-carpp-94, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{rg-cgf-96 -, author = "A. S. Rao and K. Y. Goldberg" -, title = "Computing grasp functions" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "145--168" -, update = "96.09 devillers" +, author = "A. S. Rao and K. Y. Goldberg" +, title = "Computing grasp functions" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "145--168" +, update = "96.09 devillers" } @article{rg-mapp-95 -, author = "A. S. Rao and K. Y. Goldberg" -, title = "Manipulating Algebraic Parts in the Plane" -, journal = "IEEE Trans. Robot. Autom." -, volume = 11 -, number = 4 -, month = aug -, year = 1995 -, pages = "598--602" -, update = "96.01 held" +, author = "A. S. Rao and K. Y. Goldberg" +, title = "Manipulating Algebraic Parts in the Plane" +, journal = "IEEE Trans. Robot. Autom." +, volume = 11 +, number = 4 +, month = aug +, year = 1995 +, pages = "598--602" +, update = "96.01 held" } @inproceedings{rg-rpsid-92 -, author = "A. S. Rao and K. Y. Goldberg" -, title = "On the recovery of a polygon's shapes from its diameter function" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "210--215" -, cites = "cy-sp-87, d-argon-92, g-sprm-90, g-oppws-93, ic-copop-91, j-atag-85, kg-srrg-92, k-oeupj-88, l-rpp-88, pr-popp-92, ps-cgi-85, rg-sdrpp-94, rg-sdrps-91, rg-ogp-92, r-cscsl-87, s-pgp-89, yb-cf-61, ZZZ" -, update = "98.07 bibrelex" +, author = "A. S. Rao and K. Y. Goldberg" +, title = "On the recovery of a polygon's shapes from its diameter function" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "210--215" +, cites = "cy-sp-87, d-argon-92, g-sprm-90, g-oppws-93, ic-copop-91, j-atag-85, kg-srrg-92, k-oeupj-88, l-rpp-88, pr-popp-92, ps-cgi-85, rg-sdrpp-94, rg-sdrps-91, rg-ogp-92, r-cscsl-87, s-pgp-89, yb-cf-61, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{rg-ogp-92 -, author = "A. S. Rao and K. Y. Goldberg" -, title = "Orienting generalized polygons" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Nice, France" -, month = may -, year = 1992 -, update = "98.07 bibrelex" +, author = "A. S. Rao and K. Y. Goldberg" +, title = "Orienting generalized polygons" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Nice, France" +, month = may +, year = 1992 +, update = "98.07 bibrelex" } @techreport{rg-sdrps-91 -, author = "A. S. Rao and K. Y. Goldberg" -, title = "Shape from diameter: on the recovery of a polygon's shape from its diameter function" -, type = "Technical {Report}" -, number = 270 -, institution = "Inst. Robot. Intell. Syst., Univ. Southern California" -, address = "Los Angeles, CA" -, month = aug -, year = 1991 -, update = "98.07 bibrelex" +, author = "A. S. Rao and K. Y. Goldberg" +, title = "Shape from diameter: on the recovery of a polygon's shape from its diameter function" +, type = "Technical {Report}" +, number = 270 +, institution = "Inst. Robot. Intell. Syst., Univ. Southern California" +, address = "Los Angeles, CA" +, month = aug +, year = 1991 +, update = "98.07 bibrelex" } @article{rg-sdrpp-94 -, author = "A. S. Rao and K. Y. Goldberg" -, title = "Shape from Diameter: Recognizing Polygonal Parts with a Parallel-Jaw Gripper" -, journal = "IRob" -, volume = 13 -, number = 1 -, year = 1994 -, pages = "16--37" -, update = "95.01 held" +, author = "A. S. Rao and K. Y. Goldberg" +, title = "Shape from Diameter: Recognizing Polygonal Parts with a Parallel-Jaw Gripper" +, journal = "IRob" +, volume = 13 +, number = 1 +, year = 1994 +, pages = "16--37" +, update = "95.01 held" } @book{r-pta-84 -, author = "M. M. Rao" -, title = "Probability Theory with Applications" -, publisher = "Academic Press" -, address = "Orlando, FL" -, year = 1984 -, update = "98.03 bibrelex" +, author = "M. M. Rao" +, title = "Probability Theory with Applications" +, publisher = "Academic Press" +, address = "Orlando, FL" +, year = 1984 +, update = "98.03 bibrelex" } @article{r-aflrv-89 -, author = "N. S. V. Rao" -, title = "Algorithmic Framework for Learned Robot Navigation in Unknown Terrain" -, journal = "IEEE Computer" -, volume = 22 -, year = 1989 -, pages = "37--43" -, keywords = "on-line motion planning" -, update = "98.03 mitchell" +, author = "N. S. V. Rao" +, title = "Algorithmic Framework for Learned Robot Navigation in Unknown Terrain" +, journal = "IEEE Computer" +, volume = 22 +, year = 1989 +, pages = "37--43" +, keywords = "on-line motion planning" +, update = "98.03 mitchell" } @techreport{rijw-cgaar-85 -, author = "N. S. V. Rao and S. S. Iyengar and C. C. Jorgensen and C. R. Weisbin" -, title = "Computational geometry approach to autonomous robot navigation in an unexplored terrain" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Louisiana State Univ. Baton Rouge" -, address = "Baton Rouge, LA" -, year = 1985 +, author = "N. S. V. Rao and S. S. Iyengar and C. C. Jorgensen and C. R. Weisbin" +, title = "Computational geometry approach to autonomous robot navigation in an unexplored terrain" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Louisiana State Univ. Baton Rouge" +, address = "Baton Rouge, LA" +, year = 1985 } @inproceedings{rijw-tafsm-87 -, author = "N. S. V. Rao and S. S. Iyengar and C. C. Jorgensen and C. R. Weisbin" -, title = "On Terrain Acquisition by a Finite-Sized Mobile Robot in Plane" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Raleigh, NC" -, year = 1987 -, pages = "1314--1319" -, update = "93.09 milone+mitchell" +, author = "N. S. V. Rao and S. S. Iyengar and C. C. Jorgensen and C. R. Weisbin" +, title = "On Terrain Acquisition by a Finite-Sized Mobile Robot in Plane" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Raleigh, NC" +, year = 1987 +, pages = "1314--1319" +, update = "93.09 milone+mitchell" } @article{rijw-rnut-86 -, author = "N. S. V. Rao and S. S. Iyengar and C. C. Jorgensen and C. R. Weisbin" -, title = "Robot Navigation in an Unexplored Terrain" -, journal = "Journal of Robotic Systems" -, volume = 3 -, number = 4 -, year = 1986 -, pages = "389--407" +, author = "N. S. V. Rao and S. S. Iyengar and C. C. Jorgensen and C. R. Weisbin" +, title = "Robot Navigation in an Unexplored Terrain" +, journal = "Journal of Robotic Systems" +, volume = 3 +, number = 4 +, year = 1986 +, pages = "389--407" } @article{riok-tmapr-88 -, author = "N. S. V. Rao and S. S. Iyengar and B. J. Oommen and R. L. Kashyap" -, title = "On Terrain Model Acquisition by a Point Robot Amidst Polyhedral Obstacles" -, journal = "Internat. J. Robot. Autom." -, volume = 4 -, number = 4 -, year = 1988 -, pages = "450--455" +, author = "N. S. V. Rao and S. S. Iyengar and B. J. Oommen and R. L. Kashyap" +, title = "On Terrain Model Acquisition by a Point Robot Amidst Polyhedral Obstacles" +, journal = "Internat. J. Robot. Autom." +, volume = 4 +, number = 4 +, year = 1988 +, pages = "450--455" } @techreport{rksi-rnut-93 -, author = "N. S. V. Rao and S. Kareti and W. Shi and S. S. Iyengar" -, title = "Robot navigation in unknown terrains: introductory survey of non-heuristic algorithms" -, number = "ORNL/TM-12410" -, institution = "Oak Ridge National Laboratory" -, year = 1993 -, update = "98.03 icking" +, author = "N. S. V. Rao and S. Kareti and W. Shi and S. S. Iyengar" +, title = "Robot navigation in unknown terrains: introductory survey of non-heuristic algorithms" +, number = "ORNL/TM-12410" +, institution = "Oak Ridge National Laboratory" +, year = 1993 +, update = "98.03 icking" } @techreport{rsi-rmlnu-88 -, author = "N. S. V. Rao and N. Stoltzfus and S. S. Iyengar" -, title = "A ``Retraction'' Method for Learned Navigation in Unknown Terrains for a Circular Robot" -, type = "Technical {Report}" -, institution = "Computer Science, Old dominion Univ." -, year = 1988 -, update = "93.09 milone+mitchell" +, author = "N. S. V. Rao and N. Stoltzfus and S. S. Iyengar" +, title = "A ``Retraction'' Method for Learned Navigation in Unknown Terrains for a Circular Robot" +, type = "Technical {Report}" +, institution = "Computer Science, Old dominion Univ." +, year = 1988 +, update = "93.09 milone+mitchell" } @article{rvi-dds-88 -, author = "N. S. V. Rao and V. K. Vaishnavi and S. S. Iyengar" -, title = "On the dynamization of data structures" -, journal = "BIT" -, volume = 28 -, year = 1988 -, pages = "37--53" +, author = "N. S. V. Rao and V. K. Vaishnavi and S. S. Iyengar" +, title = "On the dynamization of data structures" +, journal = "BIT" +, volume = 28 +, year = 1988 +, pages = "37--53" } @inproceedings{rs-aggsb-98 -, author = "Satish B. Rao and Warren D. Smith" -, title = "Approximating geometrical graphs via ``spanners'' and ``banyans''" -, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." -, year = 1998 -, pages = "540--550" -, keywords = "Polynomial time approximation schemes, optimal algorithms, derandomization, Traveling salesman tour, Steiner minimum tree, Minimum spanning tree, Minimum matchings, 2-matchings, Edge cover, Rectilinear Steiner minimum tree, quadtrees, spanners, banyans." -, update = "00.11 smid, 00.07 smid, 98.03 mitchell" -, abstract = " +, author = "Satish B. Rao and Warren D. Smith" +, title = "Approximating geometrical graphs via ``spanners'' and ``banyans''" +, booktitle = "Proc. 30th Annu. ACM Sympos. Theory Comput." +, year = 1998 +, pages = "540--550" +, keywords = "Polynomial time approximation schemes, optimal algorithms, derandomization, Traveling salesman tour, Steiner minimum tree, Minimum spanning tree, Minimum matchings, 2-matchings, Edge cover, Rectilinear Steiner minimum tree, quadtrees, spanners, banyans." +, update = "00.11 smid, 00.07 smid, 98.03 mitchell" +, abstract = " We give deterministic and randomized algorithms to find a Euclidean traveling salesman tour (TST) of length within $(1+1/s)$ times optimal. They run in $O(N \log N)$ time and $O(N)$ space for constant @@ -120413,4428 +120413,4428 @@ @inproceedings{rs-aggsb-98 } @inproceedings{rm-eacbs-97 -, author = "S. V. Rao and A. Mukhopadhyay" -, title = "An Efficient Algorithm for Computing $\beta$-Skeleton and its Generalization" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "7--9" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "S. V. Rao and A. Mukhopadhyay" +, title = "An Efficient Algorithm for Computing $\beta$-Skeleton and its Generalization" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "7--9" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{r-dsmbr-96 -, author = "A. Rappaport" -, title = "Displayable-selectable models and boundary representations in geometric operation graphs" -, booktitle = "Theory and Practice of Geometric Modeling" -, site = "T{\"u}bingen, Germany" -, month = oct -, year = 1996 -, update = "98.07 bibrelex" +, author = "A. Rappaport" +, title = "Displayable-selectable models and boundary representations in geometric operation graphs" +, booktitle = "Theory and Practice of Geometric Modeling" +, site = "T{\"u}bingen, Germany" +, month = oct +, year = 1996 +, update = "98.07 bibrelex" } @article{r-chada-92 -, author = "D. Rappaport" -, title = "A convex hull algorithm for discs, and applications" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 3 -, year = 1992 -, pages = "171--181" -, keywords = "disc, convex hull, Voronoi diagram, transversals, minimum spanning circle" +, author = "D. Rappaport" +, title = "A convex hull algorithm for discs, and applications" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 3 +, year = 1992 +, pages = "171--181" +, keywords = "disc, convex hull, Voronoi diagram, transversals, minimum spanning circle" } @article{r-laehl-86 -, author = "D. Rappaport" -, title = "A linear algorithm for eliminating hidden lines from a polygonal cylinder" -, journal = "Visual Comput." -, volume = 2 -, year = 1986 -, pages = "44--53" -, keywords = "design of algorithms, computer graphics, visibility, hidden line/surface elimination, worst-case analysis, three-dimensional" +, author = "D. Rappaport" +, title = "A linear algorithm for eliminating hidden lines from a polygonal cylinder" +, journal = "Visual Comput." +, volume = 2 +, year = 1986 +, pages = "44--53" +, keywords = "design of algorithms, computer graphics, visibility, hidden line/surface elimination, worst-case analysis, three-dimensional" } @techreport{r-cscsl-86 -, author = "D. Rappaport" -, title = "Computing simple circuits from a set of line segments is {NP}-complete" -, number = "SOCS-86.6" -, institution = "McGill University" -, year = 1986 -, update = "97.11 bibrelex" +, author = "D. Rappaport" +, title = "Computing simple circuits from a set of line segments is {NP}-complete" +, number = "SOCS-86.6" +, institution = "McGill University" +, year = 1986 +, update = "97.11 bibrelex" } @inproceedings{r-cscsl-87 -, author = "D. Rappaport" -, title = "Computing simple circuits from a set of line segments is {NP}-complete" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "322--330" -, keywords = "complexity theory, visibility, NP-completeness, polygons, polygonal chains, geometric graphs, traveling salesman tours, line segments" -, cites = "gjt-phcpn-76, ips-hpgg-82, llrs-tsp-85, m-vcihr-82, o-uocd-86, obw-cdnh-84, r-ccops-86, r-ccscp-86, rit-cscsl-86, rt-rplbo-86, t-prgc-80, t-cgm-86, ZZZ" -, update = "98.03 bibrelex" +, author = "D. Rappaport" +, title = "Computing simple circuits from a set of line segments is {NP}-complete" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "322--330" +, keywords = "complexity theory, visibility, NP-completeness, polygons, polygonal chains, geometric graphs, traveling salesman tours, line segments" +, cites = "gjt-phcpn-76, ips-hpgg-82, llrs-tsp-85, m-vcihr-82, o-uocd-86, obw-cdnh-84, r-ccops-86, r-ccscp-86, rit-cscsl-86, rt-rplbo-86, t-prgc-80, t-cgm-86, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{r-cfsvd-89 -, author = "D. Rappaport" -, title = "Computing the furthest-site {Voronoi} diagram for a set of discs" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "57--66" +, author = "D. Rappaport" +, title = "Computing the furthest-site {Voronoi} diagram for a set of discs" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "57--66" } @techreport{r-mptls-92 -, author = "D. Rappaport" -, title = "Minimum Polygon Transversals of Line segments" -, number = "CISC-92-333" -, institution = "Queen's University" -, year = 1992 -, precedes = "r-mptls-95" -, update = "98.11 bibrelex" +, author = "D. Rappaport" +, title = "Minimum Polygon Transversals of Line segments" +, number = "CISC-92-333" +, institution = "Queen's University" +, year = 1992 +, precedes = "r-mptls-95" +, update = "98.11 bibrelex" } @article{r-mptls-95 -, author = "D. Rappaport" -, title = "Minimum polygon transversals of line segments" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 5 -, year = 1995 -, pages = "243--256" -, keywords = "computational geometry, transversal, simple polygon, convex hull" -, succeeds = "r-mptls-92" -, update = "98.11 bibrelex, 96.09 devillers" +, author = "D. Rappaport" +, title = "Minimum polygon transversals of line segments" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 5 +, year = 1995 +, pages = "243--256" +, keywords = "computational geometry, transversal, simple polygon, convex hull" +, succeeds = "r-mptls-92" +, update = "98.11 bibrelex, 96.09 devillers" } @techreport{r-ccops-86 -, author = "D. Rappaport" -, title = "On the complexity of computing orthogonal polygons from a set of points" -, type = "Technical {Report}" -, number = "TR-SOCS-86.9" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1986 -, update = "98.03 bibrelex" +, author = "D. Rappaport" +, title = "On the complexity of computing orthogonal polygons from a set of points" +, type = "Technical {Report}" +, number = "TR-SOCS-86.9" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1986 +, update = "98.03 bibrelex" } @proceedings{r-p9ccc-97 -, title = "Proc. 9th Canad. Conf. Comput. Geom." -, editor = "David Rappaport" -, publisher = "Dept. Comput. Info. Sci., Queen's Univ." -, address = "Kingston, ON" -, month = aug -, year = 1997 -, url = "http://www.qucis.queensu.ca/cccg97" -, comments = "electronic proceedings online; paper copies C\$20 plus postage, order form on website" -, update = "97.11 jones" +, title = "Proc. 9th Canad. Conf. Comput. Geom." +, editor = "David Rappaport" +, publisher = "Dept. Comput. Info. Sci., Queen's Univ." +, address = "Kingston, ON" +, month = aug +, year = 1997 +, url = "http://www.qucis.queensu.ca/cccg97" +, comments = "electronic proceedings online; paper copies C\$20 plus postage, order form on website" +, update = "97.11 jones" } @phdthesis{r-ccscp-86 -, author = "D. Rappaport" -, title = "The complexity of computing simple circuits in the plane" -, type = "Ph.{D}. Thesis" -, school = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1986 -, keywords = "complexity theory, design of algorithms, operations research, worst-case analysis, NP-completeness, points, line segments, polygons, polygonal chains, doctoral thesis" +, author = "D. Rappaport" +, title = "The complexity of computing simple circuits in the plane" +, type = "Ph.{D}. Thesis" +, school = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1986 +, keywords = "complexity theory, design of algorithms, operations research, worst-case analysis, NP-completeness, points, line segments, polygons, polygonal chains, doctoral thesis" } @article{rit-cscsl-90 -, author = "D. Rappaport and H. Imai and G. T. Toussaint" -, title = "Computing simple circuits from a set of line segments" -, journal = "Discrete Comput. Geom." -, volume = 5 -, number = 3 -, year = 1990 -, pages = "289--304" -, succeeds = "rit-cscsl-86" -, update = "98.11 bibrelex" +, author = "D. Rappaport and H. Imai and G. T. Toussaint" +, title = "Computing simple circuits from a set of line segments" +, journal = "Discrete Comput. Geom." +, volume = 5 +, number = 3 +, year = 1990 +, pages = "289--304" +, succeeds = "rit-cscsl-86" +, update = "98.11 bibrelex" } @inproceedings{rit-cscsl-86 -, author = "D. Rappaport and H. Imai and G. T. Toussaint" -, title = "On computing simple circuits on a set of line segments" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "52--60" -, precedes = "rit-cscsl-90" -, cites = "bo-arcgi-79, g-eadch-72, hk-nammb-73, r-cscsl-86, sh-gip-76, t-hnchf-85, ZZZ" -, update = "97.11 bibrelex" +, author = "D. Rappaport and H. Imai and G. T. Toussaint" +, title = "On computing simple circuits on a set of line segments" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "52--60" +, precedes = "rit-cscsl-90" +, cites = "bo-arcgi-79, g-eadch-72, hk-nammb-73, r-cscsl-86, sh-gip-76, t-hnchf-85, ZZZ" +, update = "97.11 bibrelex" } @article{rr-mcp-94 -, author = "D. Rappaport and A. Rosenbloom" -, title = "Moldable and castable polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "219--233" -, succeeds = "rr-mcp-92" -, update = "96.09 devillers" +, author = "D. Rappaport and A. Rosenbloom" +, title = "Moldable and castable polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "219--233" +, succeeds = "rr-mcp-92" +, update = "96.09 devillers" } @techreport{rt-slhla-83 -, author = "D. Rappaport and G. T. Toussaint" -, title = "A Simple Linear Hidden-Line Algorithm for Star-Shaped Polygones" -, type = "Technical {Report}" -, number = "SOCS-83.23" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1983 -, update = "97.11 bibrelex" +, author = "D. Rappaport and G. T. Toussaint" +, title = "A Simple Linear Hidden-Line Algorithm for Star-Shaped Polygones" +, type = "Technical {Report}" +, number = "SOCS-83.23" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1983 +, update = "97.11 bibrelex" } @article{rt-slhla-85 -, author = "D. Rappaport and G. T. Toussaint" -, title = "A simple linear hidden-line algorithm for star-shaped polygons" -, journal = "Pattern Recogn. Lett." -, volume = 3 -, year = 1985 -, pages = "35--39" -, keywords = "design of algorithms, visibility, star-shaped" +, author = "D. Rappaport and G. T. Toussaint" +, title = "A simple linear hidden-line algorithm for star-shaped polygons" +, journal = "Pattern Recogn. Lett." +, volume = 3 +, year = 1985 +, pages = "35--39" +, keywords = "design of algorithms, visibility, star-shaped" } @article{r-eaccd-92 -, author = "A. Rappoport" -, title = "An Efficient Algorithm for Constructing the Convex Differences Tree of a Simple Polygon" -, journal = "Comput. Graph. Forum" -, volume = 11 -, number = 4 -, month = oct -, year = 1992 -, pages = "235--240" -, update = "93.09 held" +, author = "A. Rappoport" +, title = "An Efficient Algorithm for Constructing the Convex Differences Tree of a Simple Polygon" +, journal = "Comput. Graph. Forum" +, volume = 11 +, number = 4 +, month = oct +, year = 1992 +, pages = "235--240" +, update = "93.09 held" } @article{r-ealpc-91 -, author = "A. Rappoport" -, title = "An Efficient Algorithm for Line and Polygon Clipping" -, journal = "Visual Comput." -, volume = 7 -, number = 1 -, month = jan -, year = 1991 -, pages = "19--28" -, update = "93.09 held" +, author = "A. Rappoport" +, title = "An Efficient Algorithm for Line and Polygon Clipping" +, journal = "Visual Comput." +, volume = 7 +, number = 1 +, month = jan +, year = 1991 +, pages = "19--28" +, update = "93.09 held" } @article{r-ecdte-91 -, author = "A. Rappoport" -, title = "The extended convex difference tree ({ECDT}) representation for {$N$}-dimensional polyhedra" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 3 -, year = 1991 -, pages = "227--241" -, keywords = "$n$-dimensional polyhedra, constructive solid geometry, CSG, convexity, boolean operations, geometric data structures, convex difference tree, CDT" +, author = "A. Rappoport" +, title = "The extended convex difference tree ({ECDT}) representation for {$N$}-dimensional polyhedra" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 3 +, year = 1991 +, pages = "227--241" +, keywords = "$n$-dimensional polyhedra, constructive solid geometry, CSG, convexity, boolean operations, geometric data structures, convex difference tree, CDT" } @inproceedings{r-ucdhr-90 -, author = "Ari Rappoport" -, title = "Using Convex Differences for Hierarchical Representations of Polygonal Maps" -, booktitle = "Proc. Graphics Interface'90" -, site = "Halifax, Canada" -, month = may -, year = 1990 -, pages = "183--189" -, update = "98.03 mitchell" +, author = "Ari Rappoport" +, title = "Using Convex Differences for Hierarchical Representations of Polygonal Maps" +, booktitle = "Proc. Graphics Interface'90" +, site = "Halifax, Canada" +, month = may +, year = 1990 +, pages = "183--189" +, update = "98.03 mitchell" } @incollection{rfnw-3ddpm-93 -, author = "Norel Raquel and Daniel Fischer and Ruth Nussinov and Haim J. Wolfson" -, title = "3-D Docking of Protein Molecules" -, booktitle = "Combinatorial Pattern Matching" -, series = "Lecture Notes Comput. Sci." -, volume = "??" -, institution = "Tel Aviv University" -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Norel Raquel and Daniel Fischer and Ruth Nussinov and Haim J. Wolfson" +, title = "3-D Docking of Protein Molecules" +, booktitle = "Combinatorial Pattern Matching" +, series = "Lecture Notes Comput. Sci." +, volume = "??" +, institution = "Tel Aviv University" +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "??" +, update = "93.09 milone+mitchell" } @techreport{r-gapzc-?? -, author = "R. Rasala" -, title = "Geometric aspects of the polaroid {Zip} {Code} based mapping system" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "R. Rasala" +, title = "Geometric aspects of the polaroid {Zip} {Code} based mapping system" +, type = "Manuscript" +, institution = "??" +, year = "??" } @phdthesis{r-aiv-94 -, author = "R. Rasch" -, title = "Abstrakte inverse {Voronoidiagramme}" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, keywords = "doctoral thesis" -, update = "95.01 smid" +, author = "R. Rasch" +, title = "Abstrakte inverse {Voronoidiagramme}" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, keywords = "doctoral thesis" +, update = "95.01 smid" } @book{r-ra-85 -, author = "?? Rathmill" -, title = "Robotics Assembly" -, publisher = "Springer-Verlag" -, year = 1985 -, update = "98.03 bibrelex" +, author = "?? Rathmill" +, title = "Robotics Assembly" +, publisher = "Springer-Verlag" +, year = 1985 +, update = "98.03 bibrelex" } @unpublished{rr-dess-95 -, author = "H. Ratschek and J. Rokne" -, title = "Determination of the exact sign of a sum" -, address = "Dept. of Computer Science, Univ. of Calgary, Canada" -, year = 1995 -, note = "Unpublished manuscript" -, update = "00.11 smid, 00.07 smid, 96.05 devillers" +, author = "H. Ratschek and J. Rokne" +, title = "Determination of the exact sign of a sum" +, address = "Dept. of Computer Science, Univ. of Calgary, Canada" +, year = 1995 +, note = "Unpublished manuscript" +, update = "00.11 smid, 00.07 smid, 96.05 devillers" } @article{rr-eochd-00 -, author = "H. Ratschek and J. Rokne" -, title = "Exact and optimal convex hulls in 2{D}" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 10 -, year = 2000 -, pages = "109--129" -, update = "00.11 smid, 00.07 smid" +, author = "H. Ratschek and J. Rokne" +, title = "Exact and optimal convex hulls in 2{D}" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 10 +, year = 2000 +, pages = "109--129" +, update = "00.11 smid, 00.07 smid" } @article{rpib-cppcs1-80 -, author = "V. G. Rau and L. G. Parkomov and V. V. Ilyukhin and N. V. Belov" -, title = "On the calculation of possible {Patterson} cyclotomic sets, I" -, journal = "Doklady Akad. Nauk SSSR" -, volume = 255 -, number = 4 -, year = 1980 -, pages = "858--861" -, precedes = "rpib-cppcs2-80" -, update = "97.11 bibrelex" +, author = "V. G. Rau and L. G. Parkomov and V. V. Ilyukhin and N. V. Belov" +, title = "On the calculation of possible {Patterson} cyclotomic sets, I" +, journal = "Doklady Akad. Nauk SSSR" +, volume = 255 +, number = 4 +, year = 1980 +, pages = "858--861" +, precedes = "rpib-cppcs2-80" +, update = "97.11 bibrelex" } @article{rpib-cppcs2-80 -, author = "V. G. Rau and L. G. Parkomov and V. V. Ilyukhin and N. V. Belov" -, title = "On the calculation of possible {Patterson} cyclotomic sets, II" -, journal = "Doklady Akad. Nauk SSSR" -, volume = 255 -, number = 5 -, year = 1980 -, pages = "1110--1113" -, succeeds = "rpib-cppcs1-80" -, update = "97.11 bibrelex" +, author = "V. G. Rau and L. G. Parkomov and V. V. Ilyukhin and N. V. Belov" +, title = "On the calculation of possible {Patterson} cyclotomic sets, II" +, journal = "Doklady Akad. Nauk SSSR" +, volume = 255 +, number = 5 +, year = 1980 +, pages = "1110--1113" +, succeeds = "rpib-cppcs1-80" +, update = "97.11 bibrelex" } @inproceedings{r-fdbg-92 -, author = "M. Rauch" -, title = "Fully Dynamic Biconnectivity in Graphs" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "50--59" -, update = "00.03 vismara, 99.07 vismara, 94.01 tamassia" +, author = "M. Rauch" +, title = "Fully Dynamic Biconnectivity in Graphs" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "50--59" +, update = "00.03 vismara, 99.07 vismara, 94.01 tamassia" } @inproceedings{r-idsfd-94 -, author = "M. Rauch" -, title = "Improved Data Structures for Fully Dynamic Biconnectivity" -, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "686--695" -, update = "95.05 tamassia" +, author = "M. Rauch" +, title = "Improved Data Structures for Fully Dynamic Biconnectivity" +, booktitle = "Proc. 26th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "686--695" +, update = "95.05 tamassia" } @techreport{rws-cmcs-96 -, author = "Thomas Rausch and Franz-Erich Wolter and Oliver Sniehotta" -, title = "Computation of Medial Curves on Surfaces" -, number = 1 -, institution = "Welfen Laboratory, Universit{\"a}t Hannover" -, month = aug -, year = 1996 -, url = "http://www-c.informatik.uni-hannover.de" -, keywords = "CAD, geometric modeling, equidistantial set, medial curve, cut locus, focal curves, geodesics on surfaces, medial axis, offsets" -, update = "98.03 mitchell" -, annote = "To appear, IMA Conference Proceedings Series of the 7th +, author = "Thomas Rausch and Franz-Erich Wolter and Oliver Sniehotta" +, title = "Computation of Medial Curves on Surfaces" +, number = 1 +, institution = "Welfen Laboratory, Universit{\"a}t Hannover" +, month = aug +, year = 1996 +, url = "http://www-c.informatik.uni-hannover.de" +, keywords = "CAD, geometric modeling, equidistantial set, medial curve, cut locus, focal curves, geodesics on surfaces, medial axis, offsets" +, update = "98.03 mitchell" +, annote = "To appear, IMA Conference Proceedings Series of the 7th IMA Conference on The Mathematics of Surfaces" } @inproceedings{rsmrr-stss-94 -, author = "R. Ravi and R. Sundaram and M. V. Marathe and D. J. Rosenkrantz and S. S. Ravi" -, title = "Spanning trees short and small" -, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1994 -, pages = "546--555" -, update = "96.09 agarwal, 95.09 mitchell" +, author = "R. Ravi and R. Sundaram and M. V. Marathe and D. J. Rosenkrantz and S. S. Ravi" +, title = "Spanning trees short and small" +, booktitle = "Proc. 5th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1994 +, pages = "546--555" +, update = "96.09 agarwal, 95.09 mitchell" } @inproceedings{rrt-fdphs-91 -, author = "S. S. Ravi and D. J. Rosenkrantz and G. K. Tayi" -, title = "Facility Dispersion Problems: {Heuristics} and Special Cases" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "355--366" -, update = "93.09 milone+mitchell" +, author = "S. S. Ravi and D. J. Rosenkrantz and G. K. Tayi" +, title = "Facility Dispersion Problems: {Heuristics} and Special Cases" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "355--366" +, update = "93.09 milone+mitchell" } @techreport{rw-rocs-89 -, author = "G. Rawlings and D. Wood" -, title = "Restricted-oriented convex sets" -, type = "Technical {Report}" -, number = "CS-89-01" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, year = 1989 -, update = "98.07 bibrelex" +, author = "G. Rawlings and D. Wood" +, title = "Restricted-oriented convex sets" +, type = "Technical {Report}" +, number = "CS-89-01" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, year = 1989 +, update = "98.07 bibrelex" } @phdthesis{r-erog-87 -, author = "G. J. E. Rawlins" -, title = "Explorations in restricted-orientation geometry" -, type = "Ph.{D}. Thesis" -, school = "Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1987 -, keywords = "doctoral thesis" +, author = "G. J. E. Rawlins" +, title = "Explorations in restricted-orientation geometry" +, type = "Ph.{D}. Thesis" +, school = "Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1987 +, keywords = "doctoral thesis" } @inproceedings{rbc-su-88 -, author = "G. J. E. Rawlins and R. Baeza-Yates and J. C. Culberson" -, title = "Searching with uncertainty" -, editor = "R. Karlsson and A. Lingas" -, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 318 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "176--189" +, author = "G. J. E. Rawlins and R. Baeza-Yates and J. C. Culberson" +, title = "Searching with uncertainty" +, editor = "R. Karlsson and A. Lingas" +, booktitle = "Proc. 1st Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 318 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "176--189" } @techreport{ro-cldph-88 -, author = "G. J. E. Rawlins and M. Overmars" -, title = "Computing the link diameter of a polygon with holes" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1988 -, comments = "Neither author has any recollection (as of May 1998) of +, author = "G. J. E. Rawlins and M. Overmars" +, title = "Computing the link diameter of a polygon with holes" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1988 +, comments = "Neither author has any recollection (as of May 1998) of this paper ever existing or what it was about. We can probably remove it from the bib file. (Comment added by Joe Mitchell, after conferring with both authors by email.)" -, update = "98.07 mitchell, 94.05 devillers+schwarzkopf" +, update = "98.07 mitchell, 94.05 devillers+schwarzkopf" } @article{rww-hprp-88 -, author = "G. J. E. Rawlins and P. Widmayer and D. Wood" -, title = "Hole problems for rectangles in the plane" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 1 -, year = 1988 -, pages = "86--97" +, author = "G. J. E. Rawlins and P. Widmayer and D. Wood" +, title = "Hole problems for rectangles in the plane" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 1 +, year = 1988 +, pages = "86--97" } @article{rw-dtcs-89 -, author = "G. J. E. Rawlins and D. Wood" -, title = "A decomposition theorem for convexity spaces" -, journal = "J. Geom." -, volume = 36 -, year = 1989 -, pages = "143--159" +, author = "G. J. E. Rawlins and D. Wood" +, title = "A decomposition theorem for convexity spaces" +, journal = "J. Geom." +, volume = 36 +, year = 1989 +, pages = "143--159" } @inproceedings{rw-cgro-88 -, author = "G. J. E. Rawlins and D. Wood" -, title = "Computational geometry with restricted orientations" -, booktitle = "Proc. 13th IFIP Conf. System Modelling and Optimization" -, series = "Lecture Notes in Control and Information Science" -, volume = 113 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "375--384" +, author = "G. J. E. Rawlins and D. Wood" +, title = "Computational geometry with restricted orientations" +, booktitle = "Proc. 13th IFIP Conf. System Modelling and Optimization" +, series = "Lecture Notes in Control and Information Science" +, volume = 113 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "375--384" } @techreport{rw-gmsnv-88 -, author = "G. J. E. Rawlins and D. Wood" -, title = "Guards with monotone sight: a new version of the art gallery theorem" -, type = "Report" -, number = "??" -, institution = "Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1988 +, author = "G. J. E. Rawlins and D. Wood" +, title = "Guards with monotone sight: a new version of the art gallery theorem" +, type = "Report" +, number = "??" +, institution = "Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1988 } @article{rw-ocfoc-87 -, author = "G. J. E. Rawlins and D. Wood" -, title = "Optimal computation of finitely oriented convex hulls" -, journal = "Inform. Comput." -, volume = 72 -, year = 1987 -, pages = "150--166" +, author = "G. J. E. Rawlins and D. Wood" +, title = "Optimal computation of finitely oriented convex hulls" +, journal = "Inform. Comput." +, volume = 72 +, year = 1987 +, pages = "150--166" } @incollection{rw-ocig-88 -, author = "G. J. E. Rawlins and D. Wood" -, title = "Ortho-convexity and its generalizations" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "137--152" +, author = "G. J. E. Rawlins and D. Wood" +, title = "Ortho-convexity and its generalizations" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "137--152" } @techreport{rw-roc-86 -, author = "G. J. E. Rawlins and D. Wood" -, title = "Restricted-orientation convexity" -, type = "Technical {Report}" -, number = "86-36" -, institution = "Univ. Waterloo" -, address = "Waterloo, ON" -, year = 1986 +, author = "G. J. E. Rawlins and D. Wood" +, title = "Restricted-orientation convexity" +, type = "Technical {Report}" +, number = "86-36" +, institution = "Univ. Waterloo" +, address = "Waterloo, ON" +, year = 1986 } @article{rw-rocs-91 -, author = "G. J. E. Rawlins and D. Wood" -, title = "Restricted-Oriented Convex Sets" -, journal = "Inform. Sci." -, volume = 54 -, year = 1991 -, pages = "263--281" +, author = "G. J. E. Rawlins and D. Wood" +, title = "Restricted-Oriented Convex Sets" +, journal = "Inform. Sci." +, volume = 54 +, year = 1991 +, pages = "263--281" } @article{rr-napa-91 -, author = "B. Ray and K. Ray" -, title = "A new approach to polygonal approximation" -, journal = "Pattern Recogn. Lett." -, volume = 12 -, year = 1991 -, pages = "229--234" -, update = "93.09 milone+mitchell" +, author = "B. Ray and K. Ray" +, title = "A new approach to polygonal approximation" +, journal = "Pattern Recogn. Lett." +, volume = 12 +, year = 1991 +, pages = "229--234" +, update = "93.09 milone+mitchell" } @article{r-slcdn-70 -, author = "H. Raynaud" -, title = "Sur l'enveloppe convex des nuages de points aleatoires dans {$R^{n}$}" -, journal = "J. Appl. Probab." -, volume = 7 -, year = 1970 -, pages = "35--48" +, author = "H. Raynaud" +, title = "Sur l'enveloppe convex des nuages de points aleatoires dans {$R^{n}$}" +, journal = "J. Appl. Probab." +, volume = 7 +, year = 1970 +, pages = "35--48" } @article{rc-fsv-86 -, author = "V. J. Rayward-Smith and A. Clare" -, title = "On finding {Steiner} vertices" -, journal = "Networks" -, volume = 16 -, year = 1986 -, pages = "283--294" +, author = "V. J. Rayward-Smith and A. Clare" +, title = "On finding {Steiner} vertices" +, journal = "Networks" +, volume = 16 +, year = 1986 +, pages = "283--294" } @techreport{r-mcdmg-86 -, author = "R. Read" -, title = "Methods for Computer Display and Manipulation of Graphs and the Corresponding Algorithms" -, number = "86-12" -, institution = "Faculty of Mathematics, Univ. of Waterloo" -, month = jul -, year = 1986 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Read" +, title = "Methods for Computer Display and Manipulation of Graphs and the Corresponding Algorithms" +, number = "86-12" +, institution = "Faculty of Mathematics, Univ. of Waterloo" +, month = jul +, year = 1986 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{r-nmdpg-87 -, author = "R. Read" -, title = "New Methods for Drawing a Planar Graph Given the Cyclic Order of the Edges at Each Vertex" -, journal = "Congr. Numer." -, volume = 56 -, year = 1987 -, pages = "31--44" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Read" +, title = "New Methods for Drawing a Planar Graph Given the Cyclic Order of the Edges at Each Vertex" +, journal = "Congr. Numer." +, volume = 56 +, year = 1987 +, pages = "31--44" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @phdthesis{r-??-60 -, author = "D. F. Rearick" -, title = "??" -, school = "California Inst. Tech." -, year = 1960 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "D. F. Rearick" +, title = "??" +, school = "California Inst. Tech." +, year = 1960 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @article{r-ert-68 -, author = "J. Reay" -, title = "An extension of Radon's theorem" -, journal = "Illinois J. Math." -, volume = 12 -, year = 1968 -, pages = "184--189" -, update = "98.03 bibrelex" +, author = "J. Reay" +, title = "An extension of Radon's theorem" +, journal = "Illinois J. Math." +, volume = 12 +, year = 1968 +, pages = "184--189" +, update = "98.03 bibrelex" } @inproceedings{r-hrpcc-97 -, author = "Fran{\c c}ois Rebufat" -, title = "Handling Rotations in the Placement of Curved Convex Polygons" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "87--92" -, update = "00.03 bibrelex, 97.11 jones" +, author = "Fran{\c c}ois Rebufat" +, title = "Handling Rotations in the Placement of Curved Convex Polygons" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "87--92" +, update = "00.03 bibrelex, 97.11 jones" } @techreport{r-cocpt-87 -, author = "R. Reckhow" -, title = "Covering Orthogonally Convex Polygons with Three Orientations of Dents" -, type = "Technical {Report}" -, number = "87-17" -, institution = "Dept. Comput. Sci., Univ. Alberta" -, address = "Edmonton, Alberta, Canada" -, month = aug -, year = 1987 -, update = "98.03 bibrelex" +, author = "R. Reckhow" +, title = "Covering Orthogonally Convex Polygons with Three Orientations of Dents" +, type = "Technical {Report}" +, number = "87-17" +, institution = "Dept. Comput. Sci., Univ. Alberta" +, address = "Edmonton, Alberta, Canada" +, month = aug +, year = 1987 +, update = "98.03 bibrelex" } @inproceedings{rc-csopm-87 -, author = "R. A. Reckhow and J. Culberson" -, title = "Covering a simple orthogonal polygon with a minimum number of orthogonally convex polygons" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "268--277" -, precedes = "cr-occop-89a" -, cites = "a-agpiv-84, fk-acrri-84, k-mchco-86, m-snpcs-79, os-snhpd-83, rw-roc-86, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 bibrelex" +, author = "R. A. Reckhow and J. Culberson" +, title = "Covering a simple orthogonal polygon with a minimum number of orthogonally convex polygons" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "268--277" +, precedes = "cr-occop-89a" +, cites = "a-agpiv-84, fk-acrri-84, k-mchco-86, m-snpcs-79, os-snhpd-83, rw-roc-86, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 bibrelex" } @techreport{rr-rtdo-78 -, author = "D. R. Reddy and S. M. Rubin" -, title = "Representation of three-dimensional objects" -, type = "Report" -, number = "CMU-CS-78-113" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1978 +, author = "D. R. Reddy and S. M. Rubin" +, title = "Representation of three-dimensional objects" +, type = "Report" +, number = "CMU-CS-78-113" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1978 } @article{rt-c3dsu-95 -, author = "Jayachandra Reddy and George Turkiyyah" -, title = "Computation of {3D} Skeletons Using a Generalized {Delaunay} Triangulation Technique" -, journal = "Comput. Aided Design" -, volume = 27 -, number = 9 -, year = 1995 -, pages = "677--694" -, update = "98.07 mitchell" +, author = "Jayachandra Reddy and George Turkiyyah" +, title = "Computation of {3D} Skeletons Using a Generalized {Delaunay} Triangulation Technique" +, journal = "Comput. Aided Design" +, volume = 27 +, number = 9 +, year = 1995 +, pages = "677--694" +, update = "98.07 mitchell" } @article{r-pdpr-96 -, author = "M. Reddy" -, title = "Perceptually-Driven Polygon Reduction" -, journal = "Comput. Graph. Forum" -, volume = 15 -, number = 4 -, month = oct -, year = 1996 -, pages = "191--203" -, update = "97.03 held" +, author = "M. Reddy" +, title = "Perceptually-Driven Polygon Reduction" +, journal = "Comput. Graph. Forum" +, volume = 15 +, number = 4 +, month = oct +, year = 1996 +, pages = "191--203" +, update = "97.03 held" } @article{r-slpsd-46 -, author = "G. Reeb" -, title = "Sur les points singuliers d'une forme de pfaff complement integrable ou d'une fonction numerique" -, journal = "Comptes Rendus Acad. Sciences Paris" -, volume = 222 -, year = 1946 -, pages = "847--849" -, update = "98.07 bibrelex" +, author = "G. Reeb" +, title = "Sur les points singuliers d'une forme de pfaff complement integrable ou d'une fonction numerique" +, journal = "Comptes Rendus Acad. Sciences Paris" +, volume = 222 +, year = 1946 +, pages = "847--849" +, update = "98.07 bibrelex" } @article{rs-opctg-90 -, author = "J. A. Reeds and L. A. Shepp" -, title = "Optimal paths for a car that goes both forwards and backwards" -, journal = "Pacific Journal of Mathematics" -, volume = 145 -, number = 2 -, year = 1990 +, author = "J. A. Reeds and L. A. Shepp" +, title = "Optimal paths for a car that goes both forwards and backwards" +, journal = "Pacific Journal of Mathematics" +, volume = 145 +, number = 2 +, year = 1990 } @article{rsfl-sudp-91 -, author = "J. A. Reeds and L. A. Shepp and P. C. Fishburn and J. C. Lagarias" -, title = "Sets uniquely determined by projections" -, journal = "Discrete Math." -, volume = 91 -, year = 1991 -, update = "98.11 bibrelex" +, author = "J. A. Reeds and L. A. Shepp and P. C. Fishburn and J. C. Lagarias" +, title = "Sets uniquely determined by projections" +, journal = "Discrete Math." +, volume = 91 +, year = 1991 +, update = "98.11 bibrelex" } @book{r-ng-83 -, author = "E. G. Rees" -, title = "Notes on Geometry" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1983 -, update = "97.11 bibrelex" +, author = "E. G. Rees" +, title = "Notes on Geometry" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1983 +, update = "97.11 bibrelex" } @techreport{ram-tm-84 -, author = "J. A. Rees and N. I. Adams and J. R. Meehan" -, title = "The {T} manual" -, institution = "Dept. Comput. Sci., Yale Univ." -, address = "New Haven, CT" -, year = 1984 -, update = "98.03 bibrelex" +, author = "J. A. Rees and N. I. Adams and J. R. Meehan" +, title = "The {T} manual" +, institution = "Dept. Comput. Sci., Yale Univ." +, address = "New Haven, CT" +, year = 1984 +, update = "98.03 bibrelex" } @article{r-pstmc-83 -, author = "W. T. Reeves" -, title = "Particle systems - a technique for modeling a class of fuzzy objects" -, journal = "ACM Trans. Graph." -, volume = 2 -, number = 2 -, month = apr -, year = 1983 -, pages = "91--108" -, update = "98.07 bibrelex" +, author = "W. T. Reeves" +, title = "Particle systems - a technique for modeling a class of fuzzy objects" +, journal = "ACM Trans. Graph." +, volume = 2 +, number = 2 +, month = apr +, year = 1983 +, pages = "91--108" +, update = "98.07 bibrelex" } @techreport{r-cpagt-95t -, author = "A. Rege" -, title = "A complete and practical algorithm for geometric theorem proving" -, type = "Technical {Report}" -, institution = "Univ. California" -, address = "Berkeley, CA" -, year = 1995 -, update = "98.03 bibrelex" +, author = "A. Rege" +, title = "A complete and practical algorithm for geometric theorem proving" +, type = "Technical {Report}" +, institution = "Univ. California" +, address = "Berkeley, CA" +, year = 1995 +, update = "98.03 bibrelex" } @inproceedings{r-cpagt-95 -, author = "Ashutosh Rege" -, title = "A Complete and Practical Algorithm for Geometric Theorem Proving" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "277--286" -, keywords = "" -, cites = "c-crsas-91, c-isda-91, c-pegtu-84, c-mgtp-88, clo-iva-92, gm-eabwr-91, g-rgtpm-63, k-gtpuh-86, k-ragtp-89, ks-abaag-86, r-cpagt-95t, rc-slprf-95, rc-tag-95, r-ccgfo-89, r-deas-32, r-da-50, w-dpmtp-78, w-sramt-84, z-epc-93, ZZZ" -, update = "99.11 bibrelex, 98.03 bibrelex, 95.09 mitchell" +, author = "Ashutosh Rege" +, title = "A Complete and Practical Algorithm for Geometric Theorem Proving" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "277--286" +, keywords = "" +, cites = "c-crsas-91, c-isda-91, c-pegtu-84, c-mgtp-88, clo-iva-92, gm-eabwr-91, g-rgtpm-63, k-gtpuh-86, k-ragtp-89, ks-abaag-86, r-cpagt-95t, rc-slprf-95, rc-tag-95, r-ccgfo-89, r-deas-32, r-da-50, w-dpmtp-78, w-sramt-84, z-epc-93, ZZZ" +, update = "99.11 bibrelex, 98.03 bibrelex, 95.09 mitchell" } @inproceedings{rc-tag-95 -, author = "A. Rege and J. Canny" -, title = "A toolkit for algebra and geometry" -, booktitle = "Proc. ACM Sympos. Symbolic and Algebraic Computation" -, site = "Montreal" -, year = 1995 -, note = "Submitted" -, update = "98.03 bibrelex" +, author = "A. Rege and J. Canny" +, title = "A toolkit for algebra and geometry" +, booktitle = "Proc. ACM Sympos. Symbolic and Algebraic Computation" +, site = "Montreal" +, year = 1995 +, note = "Submitted" +, update = "98.03 bibrelex" } @article{rc-slprf-95 -, author = "A. Rege and J. Canny" -, title = "Straight-line programs for real field extensions and perturbations" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = "??" -, year = 1995 -, note = "Submitted" -, update = "98.03 bibrelex" +, author = "A. Rege and J. Canny" +, title = "Straight-line programs for real field extensions and perturbations" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = "??" +, year = 1995 +, note = "Submitted" +, update = "98.03 bibrelex" } @article{rm-pmrh-88 -, author = "M. G. Reggiani and F. E. Marchetti" -, title = "A Proposed Method for Representing Hierarchies" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 18 -, number = 1 -, year = 1988 -, pages = "2--8" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. G. Reggiani and F. E. Marchetti" +, title = "A Proposed Method for Representing Hierarchies" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 18 +, number = 1 +, year = 1988 +, pages = "2--8" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{rw-bspvo-89 -, author = "Gabriele Reich and Peter Widmayer" -, title = "Beyond {Steiner's} problem: {A} {VLSI} oriented generalization" -, booktitle = "Proc. 15th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 411 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "196--210" -, update = "99.11 bibrelex, 98.11 smid, 98.03 mitchell, 95.01 mitchell" +, author = "Gabriele Reich and Peter Widmayer" +, title = "Beyond {Steiner's} problem: {A} {VLSI} oriented generalization" +, booktitle = "Proc. 15th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 411 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "196--210" +, update = "99.11 bibrelex, 98.11 smid, 98.03 mitchell, 95.01 mitchell" } @article{r-dcikc-88a -, author = "M. Reichling" -, title = "On the detection of a common intersection of $k$ convex objects in the plane" -, journal = "Inform. Process. Lett." -, volume = 29 -, year = 1988 -, pages = "25--29" -, update = "98.07 bibrelex, 96.05 agarwal" +, author = "M. Reichling" +, title = "On the detection of a common intersection of $k$ convex objects in the plane" +, journal = "Inform. Process. Lett." +, volume = 29 +, year = 1988 +, pages = "25--29" +, update = "98.07 bibrelex, 96.05 agarwal" } @inproceedings{r-dcikc-88i -, author = "M. Reichling" -, title = "On the detection of a common intersection of $k$ convex polyhedra" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "180--186" -, update = "00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "M. Reichling" +, title = "On the detection of a common intersection of $k$ convex polyhedra" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "180--186" +, update = "00.03 bibrelex, 99.11 bibrelex, 98.07 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @article{r-pfcrp- -, author = "M. Reid" -, title = "Potential field computation for robotic path planning using a microchannel SLM" -, journal = "??" -, institution = "NASA AMES Research Center" -, pages = "188--191" -, update = "93.09 milone+mitchell" +, author = "M. Reid" +, title = "Potential field computation for robotic path planning using a microchannel SLM" +, journal = "??" +, institution = "NASA AMES Research Center" +, pages = "188--191" +, update = "93.09 milone+mitchell" } @incollection{rmm-lrptc-93 -, author = "M. Reid-Miller and G. L. Miller and F. Modugno" -, title = "List Ranking and Parallel Tree Contraction" -, editor = "J. H. Reif" -, booktitle = "Synthesis of Parallel Algorithms" -, publisher = "Morgan Kaufmann Publishers, Inc." -, address = "San Mateo, CA" -, year = 1993 -, pages = "115--194" -, update = "96.09 orourke" +, author = "M. Reid-Miller and G. L. Miller and F. Modugno" +, title = "List Ranking and Parallel Tree Contraction" +, editor = "J. H. Reif" +, booktitle = "Synthesis of Parallel Algorithms" +, publisher = "Morgan Kaufmann Publishers, Inc." +, address = "San Mateo, CA" +, year = 1993 +, pages = "115--194" +, update = "96.09 orourke" } @techreport{rs-mppmo-85t -, author = "J. Reif and M. Sharir" -, title = "Motion planning in the presence of moving obstacles" -, type = "Manuscript" -, institution = "??" -, year = 1985 -, update = "98.07 bibrelex" +, author = "J. Reif and M. Sharir" +, title = "Motion planning in the presence of moving obstacles" +, type = "Manuscript" +, institution = "??" +, year = 1985 +, update = "98.07 bibrelex" } @article{rs-mppmo-94 -, author = "John Reif and Micha Sharir" -, title = "Motion Planning in the Presence of Moving Obstacles" -, journal = "J. ACM" -, volume = 41 -, number = 4 -, month = jul -, year = 1994 -, pages = "764--790" -, succeeds = "rs-mppmo-85" -, update = "98.03 mitchell" +, author = "John Reif and Micha Sharir" +, title = "Motion Planning in the Presence of Moving Obstacles" +, journal = "J. ACM" +, volume = 41 +, number = 4 +, month = jul +, year = 1994 +, pages = "764--790" +, succeeds = "rs-mppmo-85" +, update = "98.03 mitchell" } @techreport{rs-mtdmi-85 -, author = "J. Reif and J. Storer" -, title = "Minimizing turns for discrete movement in the interior of a polygon" -, type = "Technical {Report}" -, institution = "Harvard Univ.," -, address = "Cambridge, MA" -, month = dec -, year = 1985 -, update = "98.03 bibrelex" +, author = "J. Reif and J. Storer" +, title = "Minimizing turns for discrete movement in the interior of a polygon" +, type = "Technical {Report}" +, institution = "Harvard Univ.," +, address = "Cambridge, MA" +, month = dec +, year = 1985 +, update = "98.03 bibrelex" } @techreport{rt-akpul-89 -, author = "J. Reif and S. Tate" -, title = "Approximate kinodynamic planning using ${L}_{2}$ norm dynamic bounds" -, type = "Technical {Report}" -, institution = "Duke Univ." -, address = "Durham, NC" -, year = 1989 -, precedes = "rt-akpul-94" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "J. Reif and S. Tate" +, title = "Approximate kinodynamic planning using ${L}_{2}$ norm dynamic bounds" +, type = "Technical {Report}" +, institution = "Duke Univ." +, address = "Durham, NC" +, year = 1989 +, precedes = "rt-akpul-94" +, update = "98.03 mitchell, 97.11 bibrelex" } @incollection{rt-epaoc-90 -, author = "J. Reif and A. Tyagi" -, title = "Efficient parallel algorithms for optical computing with the {DFT} primitive" -, booktitle = "Proc. 10th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 472 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "149--160" -, update = "97.11 bibrelex" +, author = "J. Reif and A. Tyagi" +, title = "Efficient parallel algorithms for optical computing with the {DFT} primitive" +, booktitle = "Proc. 10th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 472 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "149--160" +, update = "97.11 bibrelex" } @article{rty-ccrt-94 -, author = "J. Reif and J. Tygar and A. Yoshida" -, title = "Computability and complexity of ray tracing" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "265--288" -, succeeds = "rty-ccobt-90" -, update = "97.11 bibrelex, 95.01 matousek" +, author = "J. Reif and J. Tygar and A. Yoshida" +, title = "Computability and complexity of ray tracing" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "265--288" +, succeeds = "rty-ccobt-90" +, update = "97.11 bibrelex, 95.01 matousek" } @inproceedings{rw-nudkm-96 -, author = "John Reif and Hongyan Wang" -, title = "Non-Uniform Discretization for Kinodynamic Motion Planning and its Applications" -, editor = "Jean-Paul Laumond and Mark Overmars" -, booktitle = "Algorithms for Robotic Motion and Manipulation" -, nickname = "WAFR '96" -, publisher = "A.K. Peters" -, address = "Wellesley, MA" -, year = 1997 -, pages = "97--112" -, note = "Proc. 1996 Workshop on the Algorithmic Foundations of +, author = "John Reif and Hongyan Wang" +, title = "Non-Uniform Discretization for Kinodynamic Motion Planning and its Applications" +, editor = "Jean-Paul Laumond and Mark Overmars" +, booktitle = "Algorithms for Robotic Motion and Manipulation" +, nickname = "WAFR '96" +, publisher = "A.K. Peters" +, address = "Wellesley, MA" +, year = 1997 +, pages = "97--112" +, note = "Proc. 1996 Workshop on the Algorithmic Foundations of Robotics, Toulouse, France, July 1996" -, update = "98.07 agarwal, 98.03 mitchell" +, update = "98.07 agarwal, 98.03 mitchell" } @inproceedings{rw-ctdcc-98 -, author = "John Reif and Hongyan Wang" -, title = "The Complexity of the Two Dimensional Curvature-Constrained Shortest-Path Problem" -, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." -, nickname = "WAFR '98" -, year = 1998 -, pages = "to appear" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "John Reif and Hongyan Wang" +, title = "The Complexity of the Two Dimensional Curvature-Constrained Shortest-Path Problem" +, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." +, nickname = "WAFR '98" +, year = 1998 +, pages = "to appear" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @article{r-tadgc-87 -, author = "J. H. Reif" -, title = "A Topological Approach to Dynamic Graph Connectivity" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "65--70" -, update = "94.01 tamassia" +, author = "J. H. Reif" +, title = "A Topological Approach to Dynamic Graph Connectivity" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "65--70" +, update = "94.01 tamassia" } @inproceedings{r-opais-85 -, author = "J. H. Reif" -, title = "An optimal parallel algorithm for integer sorting" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "496--504" +, author = "J. H. Reif" +, title = "An optimal parallel algorithm for integer sorting" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "496--504" } @incollection{r-cgmp-87 -, author = "J. H. Reif" -, title = "Complexity of the generalized movers problem" -, editor = "J. Hopcroft and J. Schwartz and Micha Sharir" -, booktitle = "Planning, Geometry and Complexity of Robot Motion" -, publisher = "Ablex Publishing" -, address = "Norwood, NJ" -, year = 1987 -, pages = "267--281" -, succeeds = "r-cmpg-79" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "J. H. Reif" +, title = "Complexity of the generalized movers problem" +, editor = "J. Hopcroft and J. Schwartz and Micha Sharir" +, booktitle = "Planning, Geometry and Complexity of Robot Motion" +, publisher = "Ablex Publishing" +, address = "Norwood, NJ" +, year = 1987 +, pages = "267--281" +, succeeds = "r-cmpg-79" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{r-cmpg-79 -, author = "J. H. Reif" -, title = "Complexity of the mover's problem and generalizations" -, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1979 -, pages = "421--427" -, precedes = "r-cgmp-87" +, author = "J. H. Reif" +, title = "Complexity of the mover's problem and generalizations" +, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1979 +, pages = "421--427" +, precedes = "r-cgmp-87" } @book{r-spa-93 -, author = "J. H. Reif" -, title = "Synthesis of Parallel Algorithms" -, publisher = "Morgan Kaufmann Publishers, Inc." -, address = "San Mateo, CA" -, year = 1993 -, update = "96.09 orourke" +, author = "J. H. Reif" +, title = "Synthesis of Parallel Algorithms" +, publisher = "Morgan Kaufmann Publishers, Inc." +, address = "San Mateo, CA" +, year = 1993 +, update = "96.09 orourke" } @techreport{rs-eoshs-88t -, author = "J. H. Reif and S. Sen" -, title = "An Efficient Output-Sensitive Hidden-Surface Removal Algorithm and Its Parallelization" -, number = "" -, institution = "CS Dept., Duke U." -, address = "Durham, NC 27706, USA" -, year = 1988 -, update = "93.09 held" +, author = "J. H. Reif and S. Sen" +, title = "An Efficient Output-Sensitive Hidden-Surface Removal Algorithm and Its Parallelization" +, number = "" +, institution = "CS Dept., Duke U." +, address = "Durham, NC 27706, USA" +, year = 1988 +, update = "93.09 held" } @inproceedings{rs-eoshs-88i -, author = "J. H. Reif and S. Sen" -, title = "An efficient output-sensitive hidden-surface removal algorithms and its parallelization" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "193--200" -, cites = "cg-vippg-85, mn-dfc-86, cs-vppt-86, m-ss-84, m-mdscg-84, ps-cgi-85, c-tpca-82, m-wcohs-86, w-tsshl-83, lp-lppsi-77, p-ortap-79, cd-icott-87, m-awcdt-81, n-flsah-85, s-tsbhl-81, g-pahle-87, acg-cdctd-87, sss-cthsa-74, ZZZ" -, update = "98.03 bibrelex" +, author = "J. H. Reif and S. Sen" +, title = "An efficient output-sensitive hidden-surface removal algorithms and its parallelization" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "193--200" +, cites = "cg-vippg-85, mn-dfc-86, cs-vppt-86, m-ss-84, m-mdscg-84, ps-cgi-85, c-tpca-82, m-wcohs-86, w-tsshl-83, lp-lppsi-77, p-ortap-79, cd-icott-87, m-awcdt-81, n-flsah-85, s-tsbhl-81, g-pahle-87, acg-cdctd-87, sss-cthsa-74, ZZZ" +, update = "98.03 bibrelex" } @techreport{rs-opacg-88 -, author = "J. H. Reif and S. Sen" -, title = "Optimal parallel algorithms for computational geometry" -, type = "Report" -, number = "CS-1988-1" -, institution = "Dept. Comput. Sci., Duke Univ." -, address = "Durham, NC" -, year = 1988 +, author = "J. H. Reif and S. Sen" +, title = "Optimal parallel algorithms for computational geometry" +, type = "Report" +, number = "CS-1988-1" +, institution = "Dept. Comput. Sci., Duke Univ." +, address = "Durham, NC" +, year = 1988 } @article{rs-oprat-92 -, author = "J. H. Reif and S. Sen" -, title = "Optimal Parallel Randomized Algorithms for Three-Dimensional Convex Hulls and Related Problems" -, journal = "SIAM J. Comput." -, volume = 21 -, year = 1992 -, pages = "466--485" -, update = "96.09 orourke" +, author = "J. H. Reif and S. Sen" +, title = "Optimal Parallel Randomized Algorithms for Three-Dimensional Convex Hulls and Related Problems" +, journal = "SIAM J. Comput." +, volume = 21 +, year = 1992 +, pages = "466--485" +, update = "96.09 orourke" } @inproceedings{rs-orpac-87 -, author = "John H. Reif and Sandeep Sen" -, title = "Optimal Randomized Parallel Algorithms For Computational Geometry" -, booktitle = "Proc. 1987 Internat. Conf. Parallel Process." -, publisher = "Pennsylvania State Univ Press" -, address = "University Park, PA" -, year = 1987 -, pages = "270--277" -, keywords = "randomized parallel algorithms, computational geometry, concurrent-read exclusive write, parallel random-access machines" -, annote = "Including polygon triangulation." -, abstract = "The authors present parallel algorithms for some - fundamental problems in computational geometry which - have optimal running time with very high probability - (approaching 1 as n yields infinity). These include - planar point location, triangulation, trapezoidal - decomposition, 3-D maxima, two- set dominance counting, - and range-counting, among others. Most of these - algorithms run on the CREW PRAM model with O(n) - processors and execute in O(log n) time. Most of these - algorithms use a novel data structure called the nested - plane sweep tree. Random splitting is used very - effectively to divide and conquer on the plane, raising - the possibility of extending this technique to higher - dimensions. 20 refs." +, author = "John H. Reif and Sandeep Sen" +, title = "Optimal Randomized Parallel Algorithms For Computational Geometry" +, booktitle = "Proc. 1987 Internat. Conf. Parallel Process." +, publisher = "Pennsylvania State Univ Press" +, address = "University Park, PA" +, year = 1987 +, pages = "270--277" +, keywords = "randomized parallel algorithms, computational geometry, concurrent-read exclusive write, parallel random-access machines" +, annote = "Including polygon triangulation." +, abstract = "The authors present parallel algorithms for some + fundamental problems in computational geometry which + have optimal running time with very high probability + (approaching 1 as n yields infinity). These include + planar point location, triangulation, trapezoidal + decomposition, 3-D maxima, two- set dominance counting, + and range-counting, among others. Most of these + algorithms run on the CREW PRAM model with O(n) + processors and execute in O(log n) time. Most of these + algorithms use a novel data structure called the nested + plane sweep tree. Random splitting is used very + effectively to divide and conquer on the plane, raising + the possibility of extending this technique to higher + dimensions. 20 refs." } @article{rs-orpac-92 -, author = "John H. Reif and Sandeep Sen" -, title = "Optimal Randomized Parallel Algorithms For Computational Geometry" -, journal = "Algorithmica" -, volume = 7 -, number = 1 -, year = 1992 -, pages = "91--117" -, keywords = "randomized algorithms, parallel algorithms, crew pram, computational geometry" -, update = "93.09 rote" -, abstract = "We present parallel algorithms for some fundamental - problems in computational geometry which have a running - time of O(log n) using n processors, with very high - probability (approaching 1 as n yields infinity ). - These include planar-point location, triangulation, and - trapezoidal decomposition. We also present optimal - algorithms for three-dimensional maxima and two-set - dominance counting by an application of integer - sorting. Most of these algorithms run on a CREW PRAM - model and have optimal processor-time product which - improve on the previously best-known algorithms of - Atallah and Goodrich [5] for these problems. The crux - of these algorithms is a useful data structure which - emulates the plane- sweeping paradigm used for - sequential algorithms. We extend some of the techniques - used by Reischuk [26] and Reif and Valiant [25] for - flashsort algorithm to perform divide and conquer in a - plane very efficiently leading to the improved - performance by our approach. (Author abstract) 28 - Refs." +, author = "John H. Reif and Sandeep Sen" +, title = "Optimal Randomized Parallel Algorithms For Computational Geometry" +, journal = "Algorithmica" +, volume = 7 +, number = 1 +, year = 1992 +, pages = "91--117" +, keywords = "randomized algorithms, parallel algorithms, crew pram, computational geometry" +, update = "93.09 rote" +, abstract = "We present parallel algorithms for some fundamental + problems in computational geometry which have a running + time of O(log n) using n processors, with very high + probability (approaching 1 as n yields infinity ). + These include planar-point location, triangulation, and + trapezoidal decomposition. We also present optimal + algorithms for three-dimensional maxima and two-set + dominance counting by an application of integer + sorting. Most of these algorithms run on a CREW PRAM + model and have optimal processor-time product which + improve on the previously best-known algorithms of + Atallah and Goodrich [5] for these problems. The crux + of these algorithms is a useful data structure which + emulates the plane- sweeping paradigm used for + sequential algorithms. We extend some of the techniques + used by Reischuk [26] and Reif and Valiant [25] for + flashsort algorithm to perform divide and conquer in a + plane very efficiently leading to the improved + performance by our approach. (Author abstract) 28 + Refs." } @incollection{rs-pcgau-00 -, author = "John H. Reif and Sandeep Sen" -, title = "Parallel Computational Geometry: {An} Approach Using Randomization" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "765--828" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 18 of su-hcg-00" +, author = "John H. Reif and Sandeep Sen" +, title = "Parallel Computational Geometry: {An} Approach Using Randomization" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "765--828" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 18 of su-hcg-00" } @inproceedings{rs-pnrst-89 -, author = "J. H. Reif and S. Sen" -, title = "Polling: a new randomized sampling technique for computational geometry" -, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." -, year = 1989 -, pages = "394--404" -, comments = "To appear in SIAM J. Comput. as Optimal parallel - algorithms for {3D} convex hulls and related problems" -, update = "94.01 smid" +, author = "J. H. Reif and S. Sen" +, title = "Polling: a new randomized sampling technique for computational geometry" +, booktitle = "Proc. 21st Annu. ACM Sympos. Theory Comput." +, year = 1989 +, pages = "394--404" +, comments = "To appear in SIAM J. Comput. as Optimal parallel + algorithms for {3D} convex hulls and related problems" +, update = "94.01 smid" } @inproceedings{rs-rabsl-90 -, author = "J. H. Reif and S. Sen" -, title = "Randomized algorithms for binary search and load balancing on fixed connection networks with geometric applications" -, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "327--337" -, update = "96.09 orourke" +, author = "J. H. Reif and S. Sen" +, title = "Randomized algorithms for binary search and load balancing on fixed connection networks with geometric applications" +, booktitle = "Proc. 2nd ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "327--337" +, update = "96.09 orourke" } @article{rs-rabsl-94 -, author = "J. H. Reif and S. Sen" -, title = "Randomized algorithms for binary search and Load Balancing on fixed connection networks with Geometric Applications" -, journal = "SIAM J. Comput." -, volume = 23 -, number = 3 -, year = 1994 -, pages = "633--651" -, update = "97.11 bibrelex" +, author = "J. H. Reif and S. Sen" +, title = "Randomized algorithms for binary search and Load Balancing on fixed connection networks with Geometric Applications" +, journal = "SIAM J. Comput." +, volume = 23 +, number = 3 +, year = 1994 +, pages = "633--651" +, update = "97.11 bibrelex" } @inproceedings{rs-mppmo-85 -, author = "J. H. Reif and Micha Sharir" -, title = "Motion planning in the presence of moving obstacles" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "144--154" -, keywords = "motion planning, lower bounds, algebraic geometry" -, precedes = "rs-mppmo-94" -, update = "98.03 mitchell" +, author = "J. H. Reif and Micha Sharir" +, title = "Motion planning in the presence of moving obstacles" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "144--154" +, keywords = "motion planning, lower bounds, algebraic geometry" +, precedes = "rs-mppmo-94" +, update = "98.03 mitchell" } @inproceedings{rs-dsppp-88 -, author = "J. H. Reif and J. A. Storer" -, title = "3-Dimensional Shortest Paths in the Presence of Polyhedral Obstacles" -, booktitle = "Proc. 13th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = "3:24" -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "85--92" -, succeeds = "rs-spesp-85" -, update = "95.01 mitchell" +, author = "J. H. Reif and J. A. Storer" +, title = "3-Dimensional Shortest Paths in the Presence of Polyhedral Obstacles" +, booktitle = "Proc. 13th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = "3:24" +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "85--92" +, succeeds = "rs-spesp-85" +, update = "95.01 mitchell" } @techreport{rs-seubf-?? -, author = "J. H. Reif and J. A. Storer" -, title = "A single-exponential upper bound for finding shortest paths in three dimensions" -, type = "Technical {Report}" -, year = "??" -, comments = "To appear, JACM. The original report was broken into two papers." -, succeeds = "rs-spesp-85" -, update = "93.09 milone+mitchell" +, author = "J. H. Reif and J. A. Storer" +, title = "A single-exponential upper bound for finding shortest paths in three dimensions" +, type = "Technical {Report}" +, year = "??" +, comments = "To appear, JACM. The original report was broken into two papers." +, succeeds = "rs-spesp-85" +, update = "93.09 milone+mitchell" } @article{rs-seubf-94 -, author = "J. H. Reif and J. A. Storer" -, title = "A single-exponential upper bound for finding shortest paths in three dimensions" -, journal = "J. ACM" -, volume = 41 -, number = 5 -, year = 1994 -, pages = "1013--1019" -, succeeds = "rs-spesp-85" -, update = "95.05 mitchell" +, author = "J. H. Reif and J. A. Storer" +, title = "A single-exponential upper bound for finding shortest paths in three dimensions" +, journal = "J. ACM" +, volume = 41 +, number = 5 +, year = 1994 +, pages = "1013--1019" +, succeeds = "rs-spesp-85" +, update = "95.05 mitchell" } @article{rs-mtdmi-87 -, author = "J. H. Reif and J. A. Storer" -, title = "Minimizing turns for discrete movement in the interior of a polygon" -, journal = "Internat. J. Robot. Autom." -, volume = "??" -, year = 1987 -, pages = "182--193" +, author = "J. H. Reif and J. A. Storer" +, title = "Minimizing turns for discrete movement in the interior of a polygon" +, journal = "Internat. J. Robot. Autom." +, volume = "??" +, year = 1987 +, pages = "182--193" } @techreport{rs-spesp-85 -, author = "J. H. Reif and J. A. Storer" -, title = "Shortest paths in {Euclidean} spaces with polyhedral obstacles" -, type = "Report" -, number = "CS-85-121" -, institution = "Dept. Comput. Sci., Brandeis Univ." -, address = "Waltham, MA" -, year = 1985 -, precedes = "rs-dsppp-88" -, update = "95.01 mitchell" +, author = "J. H. Reif and J. A. Storer" +, title = "Shortest paths in {Euclidean} spaces with polyhedral obstacles" +, type = "Report" +, number = "CS-85-121" +, institution = "Dept. Comput. Sci., Brandeis Univ." +, address = "Waltham, MA" +, year = 1985 +, precedes = "rs-dsppp-88" +, update = "95.01 mitchell" } @article{rt-akpul-94 -, author = "John H. Reif and Stephen R. Tate" -, title = "Approximate Kinodynamic Planning Using {$L_2$}-Norm Dynamic Bounds" -, journal = "Comput. Math. Appl." -, volume = 27 -, number = 5 -, year = 1994 -, pages = "29--44" -, succeeds = "rt-akpul-89" -, update = "98.03 mitchell" +, author = "John H. Reif and Stephen R. Tate" +, title = "Approximate Kinodynamic Planning Using {$L_2$}-Norm Dynamic Bounds" +, journal = "Comput. Math. Appl." +, volume = 27 +, number = 5 +, year = 1994 +, pages = "29--44" +, succeeds = "rt-akpul-89" +, update = "98.03 mitchell" } @inproceedings{rty-ccobt-90 -, author = "J. H. Reif and J. D. Tyger and A. Yoshida" -, title = "The computability and complexity of optical beam tracing" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "106--115" -, keywords = "ray tracing, complexity theory" +, author = "J. H. Reif and J. D. Tyger and A. Yoshida" +, title = "The computability and complexity of optical beam tracing" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "106--115" +, keywords = "ray tracing, complexity theory" } @article{rv-ltsls-87 -, author = "J. H. Reif and L. G. Valiant" -, title = "A logarithmic time sort for linear size networks" -, journal = "J. ACM" -, volume = 34 -, number = 1 -, year = 1987 -, pages = "60--76" -, update = "98.03 bibrelex" +, author = "J. H. Reif and L. G. Valiant" +, title = "A logarithmic time sort for linear size networks" +, journal = "J. ACM" +, volume = 34 +, number = 1 +, year = 1987 +, pages = "60--76" +, update = "98.03 bibrelex" } @techreport{rw-olntr-93 -, author = "J. H. Reif and H. Wang" -, title = "On-Line Navigation Through Weighted Regions" -, type = "Technical Report" -, institution = "Dept. Computer Science, Duke University" -, year = 1993 -, comments = "Presented at the fall workshop, October 1993. +, author = "J. H. Reif and H. Wang" +, title = "On-Line Navigation Through Weighted Regions" +, type = "Technical Report" +, institution = "Dept. Computer Science, Duke University" +, year = 1993 +, comments = "Presented at the fall workshop, October 1993. Previous title: On-Line Navigation Through Regions of Variable Densities" -, update = "98.03 mitchell" +, update = "98.03 mitchell" } @article{r-fhlgt-92 -, author = "G. Reinelt" -, title = "Fast heuristics for large geometric traveling salesman problems" -, journal = "ORSA J. Comput." -, volume = 4 -, year = 1992 -, pages = "206--217" -, update = "94.09 bernal" +, author = "G. Reinelt" +, title = "Fast heuristics for large geometric traveling salesman problems" +, journal = "ORSA J. Comput." +, volume = 4 +, year = 1992 +, pages = "206--217" +, update = "94.09 bernal" } @inproceedings{rbbcfklr-ddewp-84 -, author = "D. Reiner and M. Brodie and G. Brown and M. Chilenskas and M. Friedell and D. Kramlich and J. Lehman and A. Rosenthal" -, title = "A Database Design and Evaluation Workbench: Preliminary Report" -, booktitle = "Proc. Internat. Conf. on Systems Development and Requirements Specification" -, year = 1984 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. Reiner and M. Brodie and G. Brown and M. Chilenskas and M. Friedell and D. Kramlich and J. Lehman and A. Rosenthal" +, title = "A Database Design and Evaluation Workbench: Preliminary Report" +, booktitle = "Proc. Internat. Conf. on Systems Development and Requirements Specification" +, year = 1984 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @misc{rb-hlded-85 -, author = "D. Reiner and G. Brown" -, title = "Heuristic Layout for {DDEW} {ER}+ Diagrams" -, institution = "Computer Corporation of America" -, year = 1985 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. Reiner and G. Brown" +, title = "Heuristic Layout for {DDEW} {ER}+ Diagrams" +, institution = "Computer Corporation of America" +, year = 1985 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{rbflmrr-ddw-87 -, author = "D. Reiner and G. Brown and M. Friedell and J. Lehman and R. McKee and P. Rheingans and A. Rosenthal" -, title = "A Database Designer's Workbench" -, editor = "S. Spaccapietra" -, booktitle = "Entity-Relationship Approach: Proc. 5th Internat. Conf. on Entity-Relationship Approach (Dijon France 1987)" -, publisher = "North-Holland" -, address = "New York, NY" -, year = 1987 -, pages = "347--360" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "D. Reiner and G. Brown and M. Friedell and J. Lehman and R. McKee and P. Rheingans and A. Rosenthal" +, title = "A Database Designer's Workbench" +, editor = "S. Spaccapietra" +, booktitle = "Entity-Relationship Approach: Proc. 5th Internat. Conf. on Entity-Relationship Approach (Dijon France 1987)" +, publisher = "North-Holland" +, address = "New York, NY" +, year = 1987 +, pages = "347--360" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{rt-tdt-81 -, author = "E. Reingold and J. Tilford" -, title = "Tidier Drawing of Trees" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-7" -, number = 2 -, year = 1981 -, pages = "223--228" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. Reingold and J. Tilford" +, title = "Tidier Drawing of Trees" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-7" +, number = 2 +, year = 1981 +, pages = "223--228" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{r-ossa-72 -, author = "E. M. Reingold" -, title = "On the optimality of some set algorithms" -, journal = "J. ACM" -, volume = 19 -, year = 1972 -, pages = "649--659" +, author = "E. M. Reingold" +, title = "On the optimality of some set algorithms" +, journal = "J. ACM" +, volume = 19 +, year = 1972 +, pages = "649--659" } @book{rnd-catp-77 -, author = "E. M. Reingold and J. Nievergelt and N. Deo" -, title = "Combinatorial Algorithms: Theory and Practice" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1977 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "E. M. Reingold and J. Nievergelt and N. Deo" +, title = "Combinatorial Algorithms: Theory and Practice" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1977 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{rs-padch-83 -, author = "E. M. Reingold and K. J. Supowit" -, title = "Probabilistic analysis of divide-and-conquer heuristics for minimum weighted {Euclidean} matching" -, journal = "Networks" -, volume = 13 -, year = 1983 -, pages = "49--66" -, keywords = "matchings, average-case analysis, divide-and-conquer" +, author = "E. M. Reingold and K. J. Supowit" +, title = "Probabilistic analysis of divide-and-conquer heuristics for minimum weighted {Euclidean} matching" +, journal = "Networks" +, volume = 13 +, year = 1983 +, pages = "49--66" +, keywords = "matchings, average-case analysis, divide-and-conquer" } @article{rt-ghcm-81 -, author = "E. M. Reingold and R. E. Tarjan" -, title = "On a greedy heuristic for complete matching" -, journal = "SIAM J. Comput." -, volume = 10 -, year = 1981 -, pages = "676--681" +, author = "E. M. Reingold and R. E. Tarjan" +, title = "On a greedy heuristic for complete matching" +, journal = "SIAM J. Comput." +, volume = 10 +, year = 1981 +, pages = "676--681" } @article{r-ppass-85 -, author = "R. Reischuk" -, title = "Probabilistic parallel algorithms for sorting and selection" -, journal = "SIAM J. Comput." -, volume = 14 -, number = 2 -, month = may -, year = 1985 -, pages = "396--409" -, update = "98.11 bibrelex" +, author = "R. Reischuk" +, title = "Probabilistic parallel algorithms for sorting and selection" +, journal = "SIAM J. Comput." +, volume = 14 +, number = 2 +, month = may +, year = 1985 +, pages = "396--409" +, update = "98.11 bibrelex" } @inproceedings{r-3dvpi-95 -, author = "S. P. Reiss" -, title = "{3-D} Visualization of Program Information" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "12--24" -, keywords = "graph drawing, 3D" -, update = "95.01 tamassia" +, author = "S. P. Reiss" +, title = "{3-D} Visualization of Program Information" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "12--24" +, keywords = "graph drawing, 3D" +, update = "95.01 tamassia" } @inproceedings{r-cpe-87 -, author = "Steven P. Reiss" -, title = "A Conceptual Programming Environment" -, booktitle = "Proc. 9th Intl. Conf. on Software Engineering" -, year = 1987 -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "A Conceptual Programming Environment" +, booktitle = "Proc. 9th Intl. Conf. on Software Engineering" +, year = 1987 +, update = "97.03 tamassia" } @inproceedings{r-fa3v-93 -, author = "S. P. Reiss" -, title = "A Framework for Abstract 3D Visualization" -, booktitle = "Proc. IEEE Sympos. on Visual Languages" -, nickname = "VL '93" -, year = 1993 -, keywords = "graph drawing" -, update = "95.09 agarwal, 95.01 tamassia" +, author = "S. P. Reiss" +, title = "A Framework for Abstract 3D Visualization" +, booktitle = "Proc. IEEE Sympos. on Visual Languages" +, nickname = "VL '93" +, year = 1993 +, keywords = "graph drawing" +, update = "95.09 agarwal, 95.01 tamassia" } @unpublished{r-rvfpe-94 -, author = "Steven P. Reiss" -, title = "A retrospective view of the {FIELD} programming environment" -, year = 1994 -, note = "Brown {University}, submitted for publication" -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "A retrospective view of the {FIELD} programming environment" +, year = 1994 +, note = "Brown {University}, submitted for publication" +, update = "97.03 tamassia" } @article{r-e3vpi-95 -, author = "S. P. Reiss" -, title = "An Engine for the {3D} Visualization of Program Information" -, journal = "J. Visual Lang. Comput." -, volume = 6 -, number = 3 -, year = 1995 -, pages = "299--323" -, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" -, keywords = "graph drawing, 3D, system, software visualization" -, succeeds = "r-3dvpi-95" -, update = "98.07 vismara, 95.09 agarwal+devillers, 95.05 tamassia" +, author = "S. P. Reiss" +, title = "An Engine for the {3D} Visualization of Program Information" +, journal = "J. Visual Lang. Comput." +, volume = 6 +, number = 3 +, year = 1995 +, pages = "299--323" +, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" +, keywords = "graph drawing, 3D, system, software visualization" +, succeeds = "r-3dvpi-95" +, update = "98.07 vismara, 95.09 agarwal+devillers, 95.05 tamassia" } @book{r-ffiel-94 -, author = "Steven P. Reiss" -, title = "{FIELD}: A Friendly Integrated Environment for Learning and Development" -, publisher = "Kluwer" -, year = 1994 -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "{FIELD}: A Friendly Integrated Environment for Learning and Development" +, publisher = "Kluwer" +, year = 1994 +, update = "97.03 tamassia" } @unpublished{r-fmlcd-95 -, author = "Steven P. Reiss" -, title = "Fragments: {A} mechanism for low cost data integration" -, month = may -, year = 1995 -, note = "Brown {U}. {Computer} {Science} {Tech} {Report}" -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "Fragments: {A} mechanism for low cost data integration" +, month = may +, year = 1995 +, note = "Brown {U}. {Computer} {Science} {Tech} {Report}" +, update = "97.03 tamassia" } @inproceedings{r-gtsgp-86 -, author = "Steven P. Reiss" -, title = "{GARDEN} tools: support for graphical programming" -, booktitle = "Proc. Workshop on Advanced Software Development Environments" -, year = 1986 -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "{GARDEN} tools: support for graphical programming" +, booktitle = "Proc. Workshop on Advanced Software Development Environments" +, year = 1986 +, update = "97.03 tamassia" } @techreport{r-imfe-88 -, author = "S. P. Reiss" -, title = "Integration Mechanisms in the {FIELD} Environment" -, number = "CS-88-18" -, institution = "Department of Computer Science, Brown University" -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "S. P. Reiss" +, title = "Integration Mechanisms in the {FIELD} Environment" +, number = "CS-88-18" +, institution = "Department of Computer Science, Brown University" +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{r-pes3g-93 -, author = "Steven P. Reiss" -, title = "Presentation and editing of structured 3-{D} graphics" -, journal = "Proc. HCI '93" -, volume = "??" -, month = aug -, year = 1993 -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "Presentation and editing of structured 3-{D} graphics" +, journal = "Proc. HCI '93" +, volume = "??" +, month = aug +, year = 1993 +, update = "97.03 tamassia" } @inproceedings{r-sdidd-96 -, author = "Steven P. Reiss" -, title = "Simplifying data integration: the design of the {Desert} software development environment" -, booktitle = "Proc. 18th Intl Conf on Software Engineering" -, year = 1996 -, pages = "398--407" -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "Simplifying data integration: the design of the {Desert} software development environment" +, booktitle = "Proc. 18th Intl Conf on Software Engineering" +, year = 1996 +, pages = "398--407" +, update = "97.03 tamassia" } @inproceedings{r-vlgs-86 -, author = "Steven P. Reiss" -, title = "Visual Languages and the {GARDEN} system" -, booktitle = "Proc. Intl. Workshop on Visual Aids To Programming" -, year = 1986 -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "Visual Languages and the {GARDEN} system" +, booktitle = "Proc. Intl. Workshop on Visual Aids To Programming" +, year = 1986 +, update = "97.03 tamassia" } @article{r-wgecp-87 -, author = "Steven P. Reiss" -, title = "Working in the {GARDEN} Garden environment for conceptual programming" -, journal = "IEEE Softw." -, volume = 4 -, number = 6 -, year = 1987 -, pages = "16--27" -, update = "97.03 tamassia" +, author = "Steven P. Reiss" +, title = "Working in the {GARDEN} Garden environment for conceptual programming" +, journal = "IEEE Softw." +, volume = 4 +, number = 6 +, year = 1987 +, pages = "16--27" +, update = "97.03 tamassia" } @article{rc-psv-94 -, author = "Steven P. Reiss and Isabel F. Cruz" -, title = "Practical software visualization" -, journal = "Proc. CHI Workshop on Program Visualization" -, volume = "??" -, month = apr -, year = 1994 -, update = "97.03 tamassia" +, author = "Steven P. Reiss and Isabel F. Cruz" +, title = "Practical software visualization" +, journal = "Proc. CHI Workshop on Program Visualization" +, volume = "??" +, month = apr +, year = 1994 +, update = "97.03 tamassia" } @inproceedings{rgr-pvlgs-86 -, author = "Steven P. Reiss and Eric J. Golin and Robert V. Rubin" -, title = "Prototyping visual languages with the {GARDEN} system" -, booktitle = "Proc. IEEE Symp. on Visual Languages" -, year = 1986 -, update = "97.03 tamassia" +, author = "Steven P. Reiss and Eric J. Golin and Robert V. Rubin" +, title = "Prototyping visual languages with the {GARDEN} system" +, booktitle = "Proc. IEEE Symp. on Visual Languages" +, year = 1986 +, update = "97.03 tamassia" } @inproceedings{rmd-ugvss-89 -, author = "S. P. Reiss and S. Meyers and C. Duby" -, title = "Using {GELO} to Visualize Software Systems" -, booktitle = "Proc. UIST" -, year = 1989 -, pages = "149--157" -, keywords = "graph drawing" -, update = "95.05 tamassia" +, author = "S. P. Reiss and S. Meyers and C. Duby" +, title = "Using {GELO} to Visualize Software Systems" +, booktitle = "Proc. UIST" +, year = 1989 +, pages = "149--157" +, keywords = "graph drawing" +, update = "95.05 tamassia" } @inproceedings{rp-dpds-87 -, author = "S. P. Reiss and J. N. Pato" -, title = "Displaying Program and Data Structures" -, booktitle = "Proc. 20th Hawaii Internat. Conf. on System Sciences" -, year = 1987 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "S. P. Reiss and J. N. Pato" +, title = "Displaying Program and Data Structures" +, booktitle = "Proc. 20th Hawaii Internat. Conf. on System Sciences" +, year = 1987 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @unpublished{rs-gpauo-92 -, author = "Steven P. Reiss and Manojit Sarkar" -, title = "Generating program abstractions using an object-oriented database" -, year = 1992 -, note = "Brown {University} {Department} of {Computer} {Science}" -, update = "97.03 tamassia" +, author = "Steven P. Reiss and Manojit Sarkar" +, title = "Generating program abstractions using an object-oriented database" +, year = 1992 +, note = "Brown {University} {Department} of {Computer} {Science}" +, update = "97.03 tamassia" } @article{rp-totmr-94 -, author = "D. B. Reister and F. G. Pin" -, title = "Time-Optimal Trajectories for Mobile Robots with Two Independently Driven Wheels" -, journal = "Internat. J. Robot. Res." -, volume = 13 -, year = 1994 -, pages = "38--54" -, update = "98.03 mitchell" -, annote = "related to \cite{ci-totrp-97}, but uses methods of optimal +, author = "D. B. Reister and F. G. Pin" +, title = "Time-Optimal Trajectories for Mobile Robots with Two Independently Driven Wheels" +, journal = "Internat. J. Robot. Res." +, volume = 13 +, year = 1994 +, pages = "38--54" +, update = "98.03 mitchell" +, annote = "related to \cite{ci-totrp-97}, but uses methods of optimal control" } @article{rrs-eges-89 -, author = "R. Reiterman and V. R{\"o}del and E. {\v S}i{\v n}ajov{\'a}" -, title = "Embeddings of graphs in {Euclidean} spaces" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "349--364" +, author = "R. Reiterman and V. R{\"o}del and E. {\v S}i{\v n}ajov{\'a}" +, title = "Embeddings of graphs in {Euclidean} spaces" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "349--364" } @article{r-eap-88 -, author = "F. Rendl" -, title = "On the {Euclidean} assignment problem" -, journal = "J. Comput. Appl. Math." -, volume = 23 -, year = 1988 -, pages = "257--265" -, keywords = "optimization, expected-case analysis" -, comments = "replaces the techreport r-eap-87" -, update = "93.09 rote" -, annote = "linear-time heuristic for the MAXIMUM bipartite matching - between two sets of $n$ points in the unit square with - an abolute error of $O(n^{5/6})$. For uniformly distributed - points, the $z$ of the value of the maximum matching - satisfies $\lim_{n\to\infty} = (\sqrt{3}+\log(1+\sqrt{2}))/3$ - almost surely." +, author = "F. Rendl" +, title = "On the {Euclidean} assignment problem" +, journal = "J. Comput. Appl. Math." +, volume = 23 +, year = 1988 +, pages = "257--265" +, keywords = "optimization, expected-case analysis" +, comments = "replaces the techreport r-eap-87" +, update = "93.09 rote" +, annote = "linear-time heuristic for the MAXIMUM bipartite matching + between two sets of $n$ points in the unit square with + an abolute error of $O(n^{5/6})$. For uniformly distributed + points, the $z$ of the value of the maximum matching + satisfies $\lim_{n\to\infty} = (\sqrt{3}+\log(1+\sqrt{2}))/3$ + almost surely." } @techreport{rw-rsols-90 -, author = "F. Rendl and G. Woeginger" -, title = "Reconstructing sets of orthogonal line segments in the plane" -, institution = "Tecnische Univ. Graz" -, address = "Graz, Austria" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "F. Rendl and G. Woeginger" +, title = "Reconstructing sets of orthogonal line segments in the plane" +, institution = "Tecnische Univ. Graz" +, address = "Graz, Austria" +, year = 1990 +, update = "93.09 milone+mitchell" } @inproceedings{r-fpade-88 -, author = "J. Renegar" -, title = "A faster {PSPACE} algorithm for deciding the existential theory of the reals" -, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1988 -, pages = "291--295" -, update = "97.11 bibrelex" +, author = "J. Renegar" +, title = "A faster {PSPACE} algorithm for deciding the existential theory of the reals" +, booktitle = "Proc. 29th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1988 +, pages = "291--295" +, update = "97.11 bibrelex" } @techreport{r-ccgfo-89 -, author = "J. Renegar" -, title = "On the computational complexity and geometry of the first order theory of the reals" -, type = "Technical {Report}" -, number = 853 -, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." -, address = "Ithaca, NY" -, month = jul -, year = 1989 -, update = "97.11 bibrelex" +, author = "J. Renegar" +, title = "On the computational complexity and geometry of the first order theory of the reals" +, type = "Technical {Report}" +, number = 853 +, institution = "School Oper. Res. Indust. Engrg., Cornell Univ." +, address = "Ithaca, NY" +, month = jul +, year = 1989 +, update = "97.11 bibrelex" } @article{r-ccgfo-92 -, author = "J. Renegar" -, title = "On the computational complexity and geometry of the first order theory of the reals" -, journal = "J. Symbolic Comput." -, volume = 13 -, number = 3 -, year = 1992 -, pages = "255--352" -, update = "93.09 matousek" +, author = "J. Renegar" +, title = "On the computational complexity and geometry of the first order theory of the reals" +, journal = "J. Symbolic Comput." +, volume = 13 +, number = 3 +, year = 1992 +, pages = "255--352" +, update = "93.09 matousek" } @article{r-a623i-84 -, author = "R. J. Renka" -, title = "Algorithm 623: {Interpolation} on the surface of a sphere" -, journal = "ACM Trans. Math. Softw." -, volume = 10 -, number = 4 -, year = 1984 -, pages = "437--439" -, succeeds = "r-idss-84" +, author = "R. J. Renka" +, title = "Algorithm 623: {Interpolation} on the surface of a sphere" +, journal = "ACM Trans. Math. Softw." +, volume = 10 +, number = 4 +, year = 1984 +, pages = "437--439" +, succeeds = "r-idss-84" } @article{r-a624t-84 -, author = "R. J. Renka" -, title = "Algorithm 624: {Triangulation} and interpolation of arbitrary distributed points in the plane" -, journal = "ACM Trans. Math. Softw." -, volume = 10 -, year = 1984 -, pages = "440--442" +, author = "R. J. Renka" +, title = "Algorithm 624: {Triangulation} and interpolation of arbitrary distributed points in the plane" +, journal = "ACM Trans. Math. Softw." +, volume = 10 +, year = 1984 +, pages = "440--442" } @article{r-idss-84 -, author = "R. J. Renka" -, title = "Interpolation of data on the surface of a sphere" -, journal = "ACM Trans. Math. Softw." -, volume = 10 -, number = 4 -, year = 1984 -, pages = "417--436" -, precedes = "r-a623i-84" -, annote = "constructs Delaunay triangulation on sphere surface - using iterative (flip) algorithm; used to fit $C^{1}$ - surface; $O(n^{2})$ time" +, author = "R. J. Renka" +, title = "Interpolation of data on the surface of a sphere" +, journal = "ACM Trans. Math. Softw." +, volume = 10 +, number = 4 +, year = 1984 +, pages = "417--436" +, precedes = "r-a623i-84" +, annote = "constructs Delaunay triangulation on sphere surface + using iterative (flip) algorithm; used to fit $C^{1}$ + surface; $O(n^{2})$ time" } @article{rc-tbcim-84 -, author = "R. L. Renka and A. K. Cline" -, title = "A triangle-based {$C^{1}$} interpolation method" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "223--238" +, author = "R. L. Renka and A. K. Cline" +, title = "A triangle-based {$C^{1}$} interpolation method" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "223--238" } @article{rd-ublds-75 -, author = "B. Rennie and A. Dobson" -, title = "Upper bounds for the lengths of {Davenport--Schinzel} sequences" -, journal = "Utilitas Math." -, volume = 8 -, year = 1975 -, pages = "181--185" -, update = "95.09 agarwal" +, author = "B. Rennie and A. Dobson" +, title = "Upper bounds for the lengths of {Davenport--Schinzel} sequences" +, journal = "Utilitas Math." +, volume = 8 +, year = 1975 +, pages = "181--185" +, update = "95.09 agarwal" } @article{rs-udkhv-63 -, author = "A. R{\'e}nyi and R. Sulanke" -, title = "{\"U}ber die konvexe {H{\"u}lle} von $n$ zuf{\"a}llig gerw{\"a}hten {Punkten} {I}" -, journal = "Z. Wahrsch. Verw. Gebiete" -, volume = 2 -, year = 1963 -, pages = "75--84" +, author = "A. R{\'e}nyi and R. Sulanke" +, title = "{\"U}ber die konvexe {H{\"u}lle} von $n$ zuf{\"a}llig gerw{\"a}hten {Punkten} {I}" +, journal = "Z. Wahrsch. Verw. Gebiete" +, volume = 2 +, year = 1963 +, pages = "75--84" } @article{rs-zkper-68 -, author = "A. R{\'e}nyi and R. Sulanke" -, title = "Zuf{\"a}llige konvexe {Polygone} in einem {Ringgebiet}" -, journal = "Z. Wahrsch. Verw. Gebiete" -, volume = 9 -, year = 1968 -, pages = "146--157" -, update = "93.09 rote" +, author = "A. R{\'e}nyi and R. Sulanke" +, title = "Zuf{\"a}llige konvexe {Polygone} in einem {Ringgebiet}" +, journal = "Z. Wahrsch. Verw. Gebiete" +, volume = 9 +, year = 1968 +, pages = "146--157" +, update = "93.09 rote" } @article{ro-gud-96 -, author = "Kevin J. Renze and James H. Oliver" -, title = "Generalized unstructured decimation" -, journal = "IEEE Comput. Graph. Appl." -, volume = 16 -, number = 6 -, month = nov -, year = 1996 -, pages = "24--32" -, keywords = "surface simplification, volume decimation, irregular grids" -, update = "98.03 mitchell" +, author = "Kevin J. Renze and James H. Oliver" +, title = "Generalized unstructured decimation" +, journal = "IEEE Comput. Graph. Appl." +, volume = 16 +, number = 6 +, month = nov +, year = 1996 +, pages = "24--32" +, keywords = "surface simplification, volume decimation, irregular grids" +, update = "98.03 mitchell" } @book{r-glbe-84 -, author = "T. W. Reps" -, title = "Generating Language-Based Environments" -, publisher = "MIT Press" -, year = 1984 -, update = "96.01 tamassia" +, author = "T. W. Reps" +, title = "Generating Language-Based Environments" +, publisher = "MIT Press" +, year = 1984 +, update = "96.01 tamassia" } @book{rt-sg-89 -, author = "T. W. Reps and T. Teitelbaum" -, title = "The Synthesizer Generator" -, publisher = "Springer-Verlag" -, year = 1989 -, update = "96.01 tamassia" +, author = "T. W. Reps and T. Teitelbaum" +, title = "The Synthesizer Generator" +, publisher = "Springer-Verlag" +, year = 1989 +, update = "96.01 tamassia" } @incollection{r-rrso-80 -, author = "A. Requicha" -, title = "Representations of Rigid Solid Objects" -, booktitle = "Comput. Aided Design" -, series = "Lecture Notes Comput. Sci." -, volume = 89 -, publisher = "Springer-Verlag" -, year = 1980 -, pages = "2--78" -, update = "98.03 bibrelex" +, author = "A. Requicha" +, title = "Representations of Rigid Solid Objects" +, booktitle = "Comput. Aided Design" +, series = "Lecture Notes Comput. Sci." +, volume = 89 +, publisher = "Springer-Verlag" +, year = 1980 +, pages = "2--78" +, update = "98.03 bibrelex" } @article{rv-smhsc-82 -, author = "A. A. Requicha and H. B. Voelcker" -, title = "Solid Modeling: {A} Historical Summary and Contemporary Assessment" -, journal = "IEEE Comput. Graph. Appl." -, volume = 2 -, number = 2 -, month = mar -, year = 1982 -, pages = "9--24" -, update = "98.03 bibrelex" +, author = "A. A. Requicha and H. B. Voelcker" +, title = "Solid Modeling: {A} Historical Summary and Contemporary Assessment" +, journal = "IEEE Comput. Graph. Appl." +, volume = 2 +, number = 2 +, month = mar +, year = 1982 +, pages = "9--24" +, update = "98.03 bibrelex" } @inproceedings{r-mmcrt-93 -, author = "A. A. G. Requicha" -, title = "Mathematical Meaning and Computational Representation of Tolerance Specifications" -, booktitle = "Proc. 1993 Int. Forum on Dimensional Tolerancing and Metrology" -, year = 1993 -, pages = "61--68" -, update = "96.09 orourke" +, author = "A. A. G. Requicha" +, title = "Mathematical Meaning and Computational Representation of Tolerance Specifications" +, booktitle = "Proc. 1993 Int. Forum on Dimensional Tolerancing and Metrology" +, year = 1993 +, pages = "61--68" +, update = "96.09 orourke" } @techreport{r-mmrso-79 -, author = "A. A. G. Requicha" -, title = "Mathematical models of rigid solid objects" -, type = "Report" -, number = "TM-28" -, institution = "College Engrg. Appl. Sci., Univ. Rochester" -, address = "Rochester, NY" -, year = 1979 +, author = "A. A. G. Requicha" +, title = "Mathematical models of rigid solid objects" +, type = "Report" +, number = "TM-28" +, institution = "College Engrg. Appl. Sci., Univ. Rochester" +, address = "Rochester, NY" +, year = 1979 } @incollection{r-rtsmi-84 -, author = "A. A. G. Requicha" -, title = "Representation of tolerances in solid modeling: {Issues} and alternative approaches" -, editor = "M. S. Pickett and J. W. Boyse" -, booktitle = "Solid Modeling by Computers" -, publisher = "Plenum Publishers Corp." -, year = 1984 -, update = "98.07 bibrelex" +, author = "A. A. G. Requicha" +, title = "Representation of tolerances in solid modeling: {Issues} and alternative approaches" +, editor = "M. S. Pickett and J. W. Boyse" +, booktitle = "Solid Modeling by Computers" +, publisher = "Plenum Publishers Corp." +, year = 1984 +, update = "98.07 bibrelex" } @article{r-rrstm-80 -, author = "A. A. G. Requicha" -, title = "Representations of rigid solids: theory, methods, and systems" -, journal = "ACM Comput. Surv." -, volume = 12 -, year = 1980 -, pages = "437--464" +, author = "A. A. G. Requicha" +, title = "Representations of rigid solids: theory, methods, and systems" +, journal = "ACM Comput. Surv." +, volume = 12 +, year = 1980 +, pages = "437--464" } @techreport{rt-mfcsg-78 -, author = "A. A. G. Requicha and R. B. Tilove" -, title = "Mathematical foundations of constructive solid geometry: general topology of closed regular sets" -, type = "Report" -, number = "TM-27" -, institution = "College Engrg. Appl. Sci., Univ. Rochester" -, address = "Rochester, NY" -, year = 1978 +, author = "A. A. G. Requicha and R. B. Tilove" +, title = "Mathematical foundations of constructive solid geometry: general topology of closed regular sets" +, type = "Report" +, number = "TM-27" +, institution = "College Engrg. Appl. Sci., Univ. Rochester" +, address = "Rochester, NY" +, year = 1978 } @techreport{rv-bosmb-84 -, author = "A. A. G. Requicha and H. B. Voelcker" -, title = "Boolean operations in solid modelling: boundary evaluation and merging algorithms" -, type = "Report" -, number = "??" -, institution = "College Engrg. Appl. Sci., Univ. Rochester" -, address = "Rochester, NY" -, year = 1984 +, author = "A. A. G. Requicha and H. B. Voelcker" +, title = "Boolean operations in solid modelling: boundary evaluation and merging algorithms" +, type = "Report" +, number = "??" +, institution = "College Engrg. Appl. Sci., Univ. Rochester" +, address = "Rochester, NY" +, year = 1984 } @article{rv-bosmb-85 -, author = "A. A. G. Requicha and H. B. Voelcker" -, title = "Boolean operations in solid modelling: boundary evaluation and merging algorithms" -, journal = "Proc. IEEE" -, volume = 73 -, number = 1 -, year = 1985 -, update = "93.09 goodrich" +, author = "A. A. G. Requicha and H. B. Voelcker" +, title = "Boolean operations in solid modelling: boundary evaluation and merging algorithms" +, journal = "Proc. IEEE" +, volume = 73 +, number = 1 +, year = 1985 +, update = "93.09 goodrich" } @techreport{rv-csg-80 -, author = "A. A. G. Requicha and H. B. Voelcker" -, title = "Constructive solid geometry" -, type = "Report" -, number = "TM-25" -, institution = "Production Automat. Project, Univ. Rochester" -, address = "Rochester, NY" -, year = 1980 +, author = "A. A. G. Requicha and H. B. Voelcker" +, title = "Constructive solid geometry" +, type = "Report" +, number = "TM-25" +, institution = "Production Automat. Project, Univ. Rochester" +, address = "Rochester, NY" +, year = 1980 } @article{rv-smcsr-83 -, author = "A. A. G. Requicha and H. B. Voelcker" -, title = "Solid Modeling: {Current} status and research directions" -, journal = "IEEE Comput. Graph. Appl." -, volume = 3 -, month = oct -, year = 1983 -, pages = "25--37" -, update = "97.11 bibrelex" +, author = "A. A. G. Requicha and H. B. Voelcker" +, title = "Solid Modeling: {Current} status and research directions" +, journal = "IEEE Comput. Graph. Appl." +, volume = 3 +, month = oct +, year = 1983 +, pages = "25--37" +, update = "97.11 bibrelex" } @book{r-km-76 -, author = "F. Reuleaux" -, title = "The Kinematics of Machinery" -, publisher = "Macmilly and Company" -, year = 1876 -, note = "Republished by Dover in 1963" -, update = "98.03 bibrelex" +, author = "F. Reuleaux" +, title = "The Kinematics of Machinery" +, publisher = "Macmilly and Company" +, year = 1876 +, note = "Republished by Dover in 1963" +, update = "98.03 bibrelex" } @inproceedings{r-mfdg-93 -, author = "Jean-Pierre Reveilles" -, title = "Mathematical foundations of Discrete Geometry" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "27--30" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Jean-Pierre Reveilles" +, title = "Mathematical foundations of Discrete Geometry" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "27--30" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @article{rw-dolml-87 -, author = "C. Rey and R. Ward" -, title = "On determining the on-line minimax linear fit to a discrete point set in the plane" -, journal = "Inform. Process. Lett." -, volume = 24 -, year = 1987 -, pages = "97--101" +, author = "C. Rey and R. Ward" +, title = "On determining the on-line minimax linear fit to a discrete point set in the plane" +, journal = "Inform. Process. Lett." +, volume = 24 +, year = 1987 +, pages = "97--101" } @article{r-fhsdb-87 -, author = "C. W. Reynolds" -, title = "Flocks, herds, and schools: A distributed behavioral model" -, journal = "Comput. Graph." -, volume = 21 -, number = 4 -, year = 1987 -, pages = "25--34" -, note = "Proc. SIGGRAPH '87" -, keywords = "bird, fish, aggregate motion, particle system, actor, flight, behavioral animation, constraints, path, planning" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "C. W. Reynolds" +, title = "Flocks, herds, and schools: A distributed behavioral model" +, journal = "Comput. Graph." +, volume = 21 +, number = 4 +, year = 1987 +, pages = "25--34" +, note = "Proc. SIGGRAPH '87" +, keywords = "bird, fish, aggregate motion, particle system, actor, flight, behavioral animation, constraints, path, planning" +, update = "98.07 bibrelex, 97.11 bibrelex" } @article{r-msa3d-96 -, author = "M. Rezayat" -, title = "Mid-Surface Abstraction from 3D Solid Models: General Theory and Applications" -, journal = "Comput. Aided Design" -, volume = 28 -, number = 11 -, month = nov -, year = 1996 -, pages = "905--915" -, update = "97.03 held" +, author = "M. Rezayat" +, title = "Mid-Surface Abstraction from 3D Solid Models: General Theory and Applications" +, journal = "Comput. Aided Design" +, volume = 28 +, number = 11 +, month = nov +, year = 1996 +, pages = "905--915" +, update = "97.03 held" } @inproceedings{rj-gedac-93 -, author = "P. de Rezende and W. Jacometti" -, title = "GeoLab: {An} environment for development of algorithms in computational geometry" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "175--180" -, cites = "ra-aeaa-, b-aa-87, b-zsaam-92, rj-agaug-93, ey-dlge-88, j-guapd-92, mn-lledt-89a, s-ooweg-90, kmmns-cgw-90, s-tfsaa-90, rj-agaug-93, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "P. de Rezende and W. Jacometti" +, title = "GeoLab: {An} environment for development of algorithms in computational geometry" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "175--180" +, cites = "ra-aeaa-, b-aa-87, b-zsaam-92, rj-agaug-93, ey-dlge-88, j-guapd-92, mn-lledt-89a, s-ooweg-90, kmmns-cgw-90, s-tfsaa-90, rj-agaug-93, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @misc{ra-aeaa- -, author = "P. J. de Rezende and R. V. Amorim" -, title = "AnimA - {An} Environment for Algorithm Animation" -, year = "??" -, note = "To appear" -, update = "98.03 bibrelex" +, author = "P. J. de Rezende and R. V. Amorim" +, title = "AnimA - {An} Environment for Algorithm Animation" +, year = "??" +, note = "To appear" +, update = "98.03 bibrelex" } @inproceedings{rj-agaug-93 -, author = "P. J. de Rezende and W. R. Jacometti" -, title = "Animation of Geometric Algorithms using {GeoLab}" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "401--402" -, keywords = "video review" -, cites = "b-aa-87, b-zsaam-92, ra-aeaa-, ey-dlge-88, j-guapd-92, k-iacgw-90, mn-lledt-89, s-ooweg-90, s-tfsaa-90, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "P. J. de Rezende and W. R. Jacometti" +, title = "Animation of Geometric Algorithms using {GeoLab}" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "401--402" +, keywords = "video review" +, cites = "b-aa-87, b-zsaam-92, ra-aeaa-, ey-dlge-88, j-guapd-92, k-iacgw-90, mn-lledt-89, s-ooweg-90, s-tfsaa-90, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{rl-pspmd-95 -, author = "P. J. de Rezende and D. T. Lee" -, title = "Point set pattern matching in $d$-dimensions" -, journal = "Algorithmica" -, volume = 13 -, year = 1995 -, pages = "387--404" -, update = "98.07 bibrelex" +, author = "P. J. de Rezende and D. T. Lee" +, title = "Point set pattern matching in $d$-dimensions" +, journal = "Algorithmica" +, volume = 13 +, year = 1995 +, pages = "387--404" +, update = "98.07 bibrelex" } @article{rlw-rsppr-89 -, author = "P. J. de Rezende and D. T. Lee and Y. F. Wu" -, title = "Rectilinear shortest paths in the presence of rectangular barriers" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "41--53" -, succeeds = "rlw-rsprb-85" +, author = "P. J. de Rezende and D. T. Lee and Y. F. Wu" +, title = "Rectilinear shortest paths in the presence of rectangular barriers" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "41--53" +, succeeds = "rlw-rsprb-85" } @inproceedings{rlw-rsprb-85 -, author = "P. J. de Rezende and D. T. Lee and Y. F. Wu" -, title = "Rectilinear shortest paths with rectangular barriers" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "204--213" -, precedes = "rlw-rsppr-89" -, cites = "ahu-daca-74, b-lbact-83, d-ntpcg-59, egs-oplms-86, k-osps-83, ll-fmrdp-81, l-prp-78, lp-esppr-84, lw-apcfp-79, s-cg-78, ss-spps-84, v-atmtd-74, wpw-mtpr-74, ZZZ" -, update = "97.11 bibrelex" +, author = "P. J. de Rezende and D. T. Lee and Y. F. Wu" +, title = "Rectilinear shortest paths with rectangular barriers" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "204--213" +, precedes = "rlw-rsppr-89" +, cites = "ahu-daca-74, b-lbact-83, d-ntpcg-59, egs-oplms-86, k-osps-83, ll-fmrdp-81, l-prp-78, lp-esppr-84, lw-apcfp-79, s-cg-78, ss-spps-84, v-atmtd-74, wpw-mtpr-74, ZZZ" +, update = "97.11 bibrelex" } @techreport{r-drmrc-88 -, author = "G. Rhee" -, title = "{DNA} restriction mapping from random-clone data" -, type = "Technical {Report}" -, number = "WUCS-88-18" -, institution = "Dept. Comput. Sci., Washington Univ." -, address = "St. Louis, MO" -, year = 1988 -, update = "97.11 bibrelex" +, author = "G. Rhee" +, title = "{DNA} restriction mapping from random-clone data" +, type = "Technical {Report}" +, number = "WUCS-88-18" +, institution = "Dept. Comput. Sci., Washington Univ." +, address = "St. Louis, MO" +, year = 1988 +, update = "97.11 bibrelex" } @article{r-asoi-53 -, author = "J. E. Rhodes" -, title = "Analysis and synthesis of optical images" -, journal = "Amer. J. Phys." -, volume = 21 -, month = may -, year = 1953 -, pages = "337--343" -, update = "97.11 bibrelex" +, author = "J. E. Rhodes" +, title = "Analysis and synthesis of optical images" +, journal = "Amer. J. Phys." +, volume = 21 +, month = may +, year = 1953 +, pages = "337--343" +, update = "97.11 bibrelex" } @inproceedings{r-ospft-86 -, author = "W. T. Rhodes" -, title = "Optical signal processing: Fourier Transform and Convolution/Correlation" -, booktitle = "Proc. of SPIE" -, volume = 634 -, year = 1986 -, pages = "57--63" -, update = "98.07 bibrelex" +, author = "W. T. Rhodes" +, title = "Optical signal processing: Fourier Transform and Convolution/Correlation" +, booktitle = "Proc. of SPIE" +, volume = 634 +, year = 1986 +, pages = "57--63" +, update = "98.07 bibrelex" } @article{r-adtp-73 -, author = "D. Rhynsburger" -, title = "Analytic delineation of {Thiessen} polygons" -, journal = "Geogr. Anal." -, volume = 5 -, year = 1973 -, pages = "133--144" +, author = "D. Rhynsburger" +, title = "Analytic delineation of {Thiessen} polygons" +, journal = "Geogr. Anal." +, volume = 5 +, year = 1973 +, pages = "133--144" } @article{r-cgcg-72 -, author = "A. Ricci" -, title = "A constructive geometry for computer graphics" -, journal = "Comput. J." -, volume = "??" -, year = 1972 -, update = "98.03 bibrelex" +, author = "A. Ricci" +, title = "A constructive geometry for computer graphics" +, journal = "Comput. J." +, volume = "??" +, year = 1972 +, update = "98.03 bibrelex" } @article{r-arhl3-71 -, author = "A. Ricci" -, title = "An algorithm for the removal of hidden lines in $3$-d scenes" -, journal = "Comput. J." -, volume = 14 -, year = 1971 -, pages = "375--377" +, author = "A. Ricci" +, title = "An algorithm for the removal of hidden lines in $3$-d scenes" +, journal = "Comput. J." +, volume = 14 +, year = 1971 +, pages = "375--377" } @book{r-ms3-77 -, author = "J. Rice" -, title = "Mathematical Software {III}" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1977 +, author = "J. Rice" +, title = "Mathematical Software {III}" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1977 } @book{rb-sepue-85 -, author = "J. R. Rice and R. F. Boisvert" -, title = "Solving Elliptical Problems Using {ELLPACK}" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1985 -, update = "95.05 agarwal" +, author = "J. R. Rice and R. F. Boisvert" +, title = "Solving Elliptical Problems Using {ELLPACK}" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1985 +, update = "95.05 agarwal" } @article{r-fhars-89 -, author = "D. Richards" -, title = "Fast heuristic algorithms for rectilinear {Steiner} trees" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "191--207" +, author = "D. Richards" +, title = "Fast heuristic algorithms for rectilinear {Steiner} trees" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "191--207" } @techreport{rl-dcps-90 -, author = "D. Richards and A. L. Liestman" -, title = "Degree-Constrained Pyramid Spanners" -, type = "Technical Report" -, number = "TR-90-16" -, institution = "University of Virginia" -, year = 1990 -, update = "98.07 bibrelex" +, author = "D. Richards and A. L. Liestman" +, title = "Degree-Constrained Pyramid Spanners" +, type = "Technical Report" +, number = "TR-90-16" +, institution = "University of Virginia" +, year = 1990 +, update = "98.07 bibrelex" } @article{rs-msttp-99 -, author = "D. Richards and J. S. Salowe" -, title = "Mixed Spanning Trees in Theory and Practice" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, number = 3 -, month = jun -, year = 1999 -, pages = "277--292" -, update = "99.07 held+smid" +, author = "D. Richards and J. S. Salowe" +, title = "Mixed Spanning Trees in Theory and Practice" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, number = 3 +, month = jun +, year = 1999 +, pages = "277--292" +, update = "99.07 held+smid" } @article{rs-ltacr-92 -, author = "D. S. Richards and J. S. Salowe" -, title = "A linear-time algorithm to construct a rectilinear {Steiner} minimal tree for $k$-extremal point sets" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "247--276" -, update = "94.09 smid" +, author = "D. S. Richards and J. S. Salowe" +, title = "A linear-time algorithm to construct a rectilinear {Steiner} minimal tree for $k$-extremal point sets" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "247--276" +, update = "94.09 smid" } @inproceedings{rs-rsmta-90 -, author = "D. S. Richards and J. S. Salowe" -, title = "A rectilinear {Steiner} minimal tree algorithm for convex point sets" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "201--212" +, author = "D. S. Richards and J. S. Salowe" +, title = "A rectilinear {Steiner} minimal tree algorithm for convex point sets" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "201--212" } @article{rs-sphtr-91 -, author = "D. S. Richards and J. S. Salowe" -, title = "A simple proof of {Hwang's} theorem for rectilinear {Steiner} minimal tree" -, journal = "Ann. Oper. Res." -, volume = 33 -, year = 1991 -, pages = "549--556" -, update = "98.11 bibrelex" +, author = "D. S. Richards and J. S. Salowe" +, title = "A simple proof of {Hwang's} theorem for rectilinear {Steiner} minimal tree" +, journal = "Ann. Oper. Res." +, volume = 33 +, year = 1991 +, pages = "549--556" +, update = "98.11 bibrelex" } @article{rs-sqdos-92 -, author = "D. S. Richards and J. S. Salowe" -, title = "Stacks, queues, and deques with order-statistic operations" -, journal = "Acta Inform." -, volume = 29 -, year = 1992 -, pages = "395--414" -, update = "94.09 smid" +, author = "D. S. Richards and J. S. Salowe" +, title = "Stacks, queues, and deques with order-statistic operations" +, journal = "Acta Inform." +, volume = 29 +, year = 1992 +, pages = "395--414" +, update = "94.09 smid" } @article{r-avpps-77 -, author = "F. M. Richards" -, title = "Areas, volumes, packing, and protein structure" -, journal = "Annu. Rev. Biophys. Bioeng." -, volume = 6 -, year = 1977 -, pages = "151--176" -, update = "98.03 agarwal+bibrelex" +, author = "F. M. Richards" +, title = "Areas, volumes, packing, and protein structure" +, journal = "Annu. Rev. Biophys. Bioeng." +, volume = 6 +, year = 1977 +, pages = "151--176" +, update = "98.03 agarwal+bibrelex" } @article{r-ipstv-74 -, author = "F. M. Richards" -, title = "The Interpretation of Protein Structures: Total Volume, Group Volume Distributions and Packing Density" -, journal = "Journal of Molecular Biology" -, volume = 82 -, year = 1974 -, pages = "1--14" -, annote = "Voronoi polyhedron models volume of an atom. VP - calculated with $O(N^3)$ iterative algorithm." +, author = "F. M. Richards" +, title = "The Interpretation of Protein Structures: Total Volume, Group Volume Distributions and Packing Density" +, journal = "Journal of Molecular Biology" +, volume = 82 +, year = 1974 +, pages = "1--14" +, annote = "Voronoi polyhedron models volume of an atom. VP + calculated with $O(N^3)$ iterative algorithm." } @phdthesis{r-scsrp-87 -, author = "R. F. Richbourg" -, title = "Solving a Class of Spatial Reasoning Problems: {Minimal}-Cost Path Planning in the Cartesian Plane" -, school = "Naval Postgraduate School" -, address = "Monterey, CA" -, year = 1987 -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "R. F. Richbourg" +, title = "Solving a Class of Spatial Reasoning Problems: {Minimal}-Cost Path Planning in the Cartesian Plane" +, school = "Naval Postgraduate School" +, address = "Monterey, CA" +, year = 1987 +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @techreport{rrz-eccsg-86 -, author = "R. F. Richbourg and N. C. Rowe and M. J. Zyda" -, title = "Exploiting Capability Constraints To Solve Global, Two-Dimensional Path Planning Problems" -, type = "Technical {Report}" -, number = "NPS-86-006" -, institution = "Department of Computer Science, Naval Postgraduate School" -, year = 1986 -, update = "93.09 milone+mitchell" +, author = "R. F. Richbourg and N. C. Rowe and M. J. Zyda" +, title = "Exploiting Capability Constraints To Solve Global, Two-Dimensional Path Planning Problems" +, type = "Technical {Report}" +, number = "NPS-86-006" +, institution = "Department of Computer Science, Naval Postgraduate School" +, year = 1986 +, update = "93.09 milone+mitchell" } @inproceedings{rrzm-sgtdr-87 -, author = "R. F. Richbourg and N. C. Rowe and M. J. Zyda and R. McGhee" -, title = "Solving Global Two-Dimensional Routing Problems Using {Snell's} law" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Raleigh, NC" -, year = 1987 -, pages = "1631--1636" -, update = "93.09 milone+mitchell" +, author = "R. F. Richbourg and N. C. Rowe and M. J. Zyda and R. McGhee" +, title = "Solving Global Two-Dimensional Routing Problems Using {Snell's} law" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Raleigh, NC" +, year = 1987 +, pages = "1631--1636" +, update = "93.09 milone+mitchell" } @article{rrn-arpld-80 -, author = "M. Richetin and G. Rives and M. Naranjo" -, title = "Algorithm rapide pour la determination des $k$ plus proches voisins" -, journal = "RAIRO Inform. Theor." -, volume = 14 -, year = 1980 -, pages = "369--378" +, author = "M. Richetin and G. Rives and M. Naranjo" +, title = "Algorithm rapide pour la determination des $k$ plus proches voisins" +, journal = "RAIRO Inform. Theor." +, volume = 14 +, year = 1980 +, pages = "369--378" } @article{r-colwd-93 -, author = "J. Richter-Gebert" -, title = "Combinatorial obstructions to the lifting of weaving diagrams" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "287--312" -, update = "96.05 pocchiola" +, author = "J. Richter-Gebert" +, title = "Combinatorial obstructions to the lifting of weaving diagrams" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "287--312" +, update = "96.05 pocchiola" } @article{r-omfm-93 -, author = "J. Richter-Gebert" -, title = "Oriented matroids with few mutations" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "251--269" -, update = "96.05 pocchiola" +, author = "J. Richter-Gebert" +, title = "Oriented matroids with few mutations" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "251--269" +, update = "96.05 pocchiola" } @incollection{rgz-om-97 -, author = "J. Richter-Gebert and G. M. Ziegler" -, title = "Oriented matroids" -, chapter = 6 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "111--132" -, update = "97.11 orourke" +, author = "J. Richter-Gebert and G. M. Ziegler" +, title = "Oriented matroids" +, chapter = 6 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "111--132" +, update = "97.11 orourke" } @article{rz-rspu-95 -, author = "J. Richter-Gebert and G. M. Ziegler" -, title = "Realization spaces of $4$-polytopes are universal" -, journal = "Bull. Amer. Math. Soc." -, volume = 32 -, number = 4 -, month = oct -, year = 1995 -, update = "96.05 pocchiola" +, author = "J. Richter-Gebert and G. M. Ziegler" +, title = "Realization spaces of $4$-polytopes are universal" +, journal = "Bull. Amer. Math. Soc." +, volume = 32 +, number = 4 +, month = oct +, year = 1995 +, update = "96.05 pocchiola" } @article{rohg-nrgdv-88 -, author = "R. Riedinger and P. Oelhafen and M. Habar and H. J. Guntherodt" -, title = "A New Realization of the Global {Delaunay}-{Voronoi} Tessellation in Arbitrary Dimension" -, journal = "Zeitschrift Fur Physikalische Chemie Neue Folge" -, volume = 157 -, number = "P1" -, year = 1988 -, pages = "47--51" -, annote = "Insertion algorithm?" +, author = "R. Riedinger and P. Oelhafen and M. Habar and H. J. Guntherodt" +, title = "A New Realization of the Global {Delaunay}-{Voronoi} Tessellation in Arbitrary Dimension" +, journal = "Zeitschrift Fur Physikalische Chemie Neue Folge" +, volume = 157 +, number = "P1" +, year = 1988 +, pages = "47--51" +, annote = "Insertion algorithm?" } @article{rohg-advt-88 -, author = "R. Riedinger and P. Oelhafen and M. Habar and H. J. Guntherodt" -, title = "About the {Delaunay}-{Voronoi} Tessellation" -, journal = "J. Comput. Phys." -, volume = 74 -, number = 1 -, year = 1988 -, pages = "61--72" -, annote = "Circumsphere (selection) algorithm." +, author = "R. Riedinger and P. Oelhafen and M. Habar and H. J. Guntherodt" +, title = "About the {Delaunay}-{Voronoi} Tessellation" +, journal = "J. Comput. Phys." +, volume = 74 +, number = 1 +, year = 1988 +, pages = "61--72" +, annote = "Circumsphere (selection) algorithm." } @techreport{r-absag-73 -, author = "R. Riesenfeld" -, title = "Applications of {B}-spline approximation to geometric problems of computer-aided design" -, type = "Technical {Report}" -, number = "UTEC-CS-73-126" -, institution = "Dept. Comput. Sci., Univ. Utah" -, address = "Salt Lake City, UT" -, year = 1973 +, author = "R. Riesenfeld" +, title = "Applications of {B}-spline approximation to geometric problems of computer-aided design" +, type = "Technical {Report}" +, number = "UTEC-CS-73-126" +, institution = "Dept. Comput. Sci., Univ. Utah" +, address = "Salt Lake City, UT" +, year = 1973 } @article{r-hcppc-81 -, author = "R. F. Riesenfeld" -, title = "Homogeneous Coordinates and Projective Planes in Computer Graphics" -, journal = "IEEE Comput. Graph. Appl." -, volume = 1 -, year = 1981 -, pages = "50--55" -, update = "99.03 forrest, 98.11 ghali" +, author = "R. F. Riesenfeld" +, title = "Homogeneous Coordinates and Projective Planes in Computer Graphics" +, journal = "IEEE Comput. Graph. Appl." +, volume = 1 +, year = 1981 +, pages = "50--55" +, update = "99.03 forrest, 98.11 ghali" } @article{rsp-sbmc-91 -, author = "R. Ringeisen and S. Stueckle and B. Piazza" -, title = "Subgraphs and bounds on maximum crossings" -, journal = "Bulletin of the Institute for Combinatorics and its Applications" -, volume = 2 -, year = 1991 -, pages = "33--46" -, update = "98.03 bibrelex" +, author = "R. Ringeisen and S. Stueckle and B. Piazza" +, title = "Subgraphs and bounds on maximum crossings" +, journal = "Bulletin of the Institute for Combinatorics and its Applications" +, volume = 2 +, year = 1991 +, pages = "33--46" +, update = "98.03 bibrelex" } @book{r-mct-74 -, author = "G. Ringel" -, title = "Map-color theorem" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1974 -, update = "98.07 bibrelex" +, author = "G. Ringel" +, title = "Map-color theorem" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1974 +, update = "98.07 bibrelex" } @article{r-msp-72 -, author = "B. D. Ripley" -, title = "Modelling spatial patterns" -, journal = "J. Roy. Statist. Soc. Ser. B" -, volume = 39 -, year = 1972 -, pages = "172--192" +, author = "B. D. Ripley" +, title = "Modelling spatial patterns" +, journal = "J. Roy. Statist. Soc. Ser. B" +, volume = 39 +, year = 1972 +, pages = "172--192" } @article{r-lttcb-92 -, author = "Samuel Rippa" -, title = "Long And Thin Triangles Can Be Good For Linear Interpolation" -, journal = "SIAM J. Numer. Anal." -, volume = 29 -, number = 1 -, month = feb -, year = 1992 -, pages = "257--270" -, keywords = "piecewise linear interpolation surface (plis), triangulations" -, abstract = "Given a set of data points in R**2 and corresponding - data values, it is clear that the quality of a - Piecewise Linear Interpolation Surface (PLIS) over - triangles depends on the specific triangulation of the - data points. In this paper, the question of what are - good triangles (and triangulations) for linear - interpolation is studied further. First, the model - problem of constructing optimal triangulations for - interpolating quadratic functions by PLIS is - considered. Next, a new interpretation of existing - error bounds for interpolating general smooth functions - by PLIS is studied. The conclusion is that triangles - should be long in directions where the magnitude of the - second directional derivative of F is small and thin in - directions where the magnitude of the second - directional derivative of F is large. (Author abstract) - 17 Refs." +, author = "Samuel Rippa" +, title = "Long And Thin Triangles Can Be Good For Linear Interpolation" +, journal = "SIAM J. Numer. Anal." +, volume = 29 +, number = 1 +, month = feb +, year = 1992 +, pages = "257--270" +, keywords = "piecewise linear interpolation surface (plis), triangulations" +, abstract = "Given a set of data points in R**2 and corresponding + data values, it is clear that the quality of a + Piecewise Linear Interpolation Surface (PLIS) over + triangles depends on the specific triangulation of the + data points. In this paper, the question of what are + good triangles (and triangulations) for linear + interpolation is studied further. First, the model + problem of constructing optimal triangulations for + interpolating quadratic functions by PLIS is + considered. Next, a new interpretation of existing + error bounds for interpolating general smooth functions + by PLIS is studied. The conclusion is that triangles + should be long in directions where the magnitude of the + second directional derivative of F is small and thin in + directions where the magnitude of the second + directional derivative of F is large. (Author abstract) + 17 Refs." } @article{r-mrpdt-90 -, author = "Samuel Rippa" -, title = "Minimal Roughness Property of the {Delaunay} Triangulation" -, journal = "Comput. Aided Geom. Design" -, volume = 7 -, year = 1990 -, pages = "489--497" -, annote = "If we use a triangulation to define a surface, the - roughness measure is the $l_2$ norm squared of the - surface. Proves that DT minimizes roughness, - irrespective of height. Key point: is that if we call - the distances between each vertex and the intersection - of the diagonals a,b,c,d then quad is cyclic iff ac = - bd" +, author = "Samuel Rippa" +, title = "Minimal Roughness Property of the {Delaunay} Triangulation" +, journal = "Comput. Aided Geom. Design" +, volume = 7 +, year = 1990 +, pages = "489--497" +, annote = "If we use a triangulation to define a surface, the + roughness measure is the $l_2$ norm squared of the + surface. Proves that DT minimizes roughness, + irrespective of height. Key point: is that if we call + the distances between each vertex and the intersection + of the diagonals a,b,c,d then quad is cyclic iff ac = + bd" } @article{rs-metep-90 -, author = "S. Rippa and B. Schiff" -, title = "Minimum Energy Triangulations for Elliptic Problems" -, journal = "Computer Methods in Applied Mechanics and Engineering" -, volume = 84 -, year = 1990 -, pages = "257--274" -, annote = "MET is triangulation that minimizes some energy - function $J$. Shows that DT minimizes Laplace - functional. Switchings to improve triangulation." -, abstract = "We consider the family of finite element spaces of - fixed dimension, defined over all triangulations of a - given polygonal domain in $R^2$, based on a common set - of nodes (vertices). A minimum energy triangulation, - relative to a given elliptic problem, is a - triangulation for which the finite element solution has - the minimal energy. The minimum energy triangulation - can be considered optimal, as it minimizes the solution - error in the natural norm associated with the problem. - It is shown in this paper that the well-known Delaunay - triangulation of a set of points in $R^2$ is a minimum - energy triangulation for the energy functional - associated with the nonhomogeneous Laplace equation. - Minimum energy triangulations may be very expensive to - compute. In this paper, therefore, we present - algorithms for constructing locally minimal energy - triangulations and outline efficient schemes for - computing suboptimal triangulations. In both cases the - basic idea is to improve an initial triangulation by - using local operations on the edges of the - triangulation. It is shown for several model problems - that such sub- minimal energy triangulations can - significantly improve the quality of the approximate - solution. (Author abstract) 13 Refs." +, author = "S. Rippa and B. Schiff" +, title = "Minimum Energy Triangulations for Elliptic Problems" +, journal = "Computer Methods in Applied Mechanics and Engineering" +, volume = 84 +, year = 1990 +, pages = "257--274" +, annote = "MET is triangulation that minimizes some energy + function $J$. Shows that DT minimizes Laplace + functional. Switchings to improve triangulation." +, abstract = "We consider the family of finite element spaces of + fixed dimension, defined over all triangulations of a + given polygonal domain in $R^2$, based on a common set + of nodes (vertices). A minimum energy triangulation, + relative to a given elliptic problem, is a + triangulation for which the finite element solution has + the minimal energy. The minimum energy triangulation + can be considered optimal, as it minimizes the solution + error in the natural norm associated with the problem. + It is shown in this paper that the well-known Delaunay + triangulation of a set of points in $R^2$ is a minimum + energy triangulation for the energy functional + associated with the nonhomogeneous Laplace equation. + Minimum energy triangulations may be very expensive to + compute. In this paper, therefore, we present + algorithms for constructing locally minimal energy + triangulations and outline efficient schemes for + computing suboptimal triangulations. In both cases the + basic idea is to improve an initial triangulation by + using local operations on the edges of the + triangulation. It is shown for several model problems + that such sub- minimal energy triangulations can + significantly improve the quality of the approximate + solution. (Author abstract) 13 Refs." } @techreport{r-nhvg-91 -, author = "J. Rippel" -, title = "A non-{Hamiltonian} visibility graph" -, number = 009 -, institution = "Smith College" -, year = 1991 -, update = "93.09 milone+mitchell" +, author = "J. Rippel" +, title = "A non-{Hamiltonian} visibility graph" +, number = 009 +, institution = "Smith College" +, year = 1991 +, update = "93.09 milone+mitchell" } @techreport{r-pcp-91 -, author = "J. Risler" -, title = "Placement of Curved Polygons" -, type = "Report" -, number = "LMENS-91 -2" -, institution = "Laboratoire de Math{\'e}matiques, Ecole Normale Sup{\'e}rieure" -, address = "UA 762 du CNRS" -, year = 1991 -, update = "96.05 ramkumar" +, author = "J. Risler" +, title = "Placement of Curved Polygons" +, type = "Report" +, number = "LMENS-91 -2" +, institution = "Laboratoire de Math{\'e}matiques, Ecole Normale Sup{\'e}rieure" +, address = "UA 762 du CNRS" +, year = 1991 +, update = "96.05 ramkumar" } @article{r-trcad-89 -, author = "T. Risse" -, title = "Hough Transform for Line Recognition: Complexity of Evidence Accumulation and Cluster Detection" -, journal = "Computer Vision" -, volume = 46 -, year = 1989 -, pages = "327--345" -, update = "98.07 bibrelex" +, author = "T. Risse" +, title = "Hough Transform for Line Recognition: Complexity of Evidence Accumulation and Cluster Detection" +, journal = "Computer Vision" +, volume = 46 +, year = 1989 +, pages = "327--345" +, update = "98.07 bibrelex" } @inproceedings{rs-rtsaf-93 -, author = "T. Risset and S. W. Song" -, title = "A real-time systolic algorithm for on-the-fly hidden surface removal" -, booktitle = "Proc. 1993 Internat. Conf. Application-Specific Array Processors, Venice, Italy" -, nickname = "ASAP" -, month = oct -, year = 1993 -, pages = "??" -, keywords = "parallel computation" -, comments = "to appear" -, update = "93.09 rote" +, author = "T. Risset and S. W. Song" +, title = "A real-time systolic algorithm for on-the-fly hidden surface removal" +, booktitle = "Proc. 1993 Internat. Conf. Application-Specific Array Processors, Venice, Italy" +, nickname = "ASAP" +, month = oct +, year = 1993 +, pages = "??" +, keywords = "parallel computation" +, comments = "to appear" +, update = "93.09 rote" } @book{r-da-50 -, author = "J. F. Ritt" -, title = "Differential Algebra" -, series = "Colloquium Publications" -, volume = 33 -, publisher = "American Mathematical Society" -, address = "New York, NY" -, year = 1950 -, update = "98.03 bibrelex" +, author = "J. F. Ritt" +, title = "Differential Algebra" +, series = "Colloquium Publications" +, volume = 33 +, publisher = "American Mathematical Society" +, address = "New York, NY" +, year = 1950 +, update = "98.03 bibrelex" } @book{r-deas-32 -, author = "J. F. Ritt" -, title = "Differential Equations from the Algebraic Standpoint" -, series = "Colloquium Publications" -, volume = 14 -, publisher = "American Mathematical Society" -, address = "New York, NY" -, year = 1932 -, update = "98.03 bibrelex" +, author = "J. F. Ritt" +, title = "Differential Equations from the Algebraic Standpoint" +, series = "Colloquium Publications" +, volume = 14 +, publisher = "American Mathematical Society" +, address = "New York, NY" +, year = 1932 +, update = "98.03 bibrelex" } @article{rwli-asnnd-75 -, author = "G. L. Ritter and H. B. Woodruff and S. R. Lowry and T. L. Isenhour" -, title = "An algorithm for the selective nearest neighbor decision rule" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-21" -, year = 1975 -, pages = "665--669" +, author = "G. L. Ritter and H. B. Woodruff and S. R. Lowry and T. L. Isenhour" +, title = "An algorithm for the selective nearest neighbor decision rule" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-21" +, year = 1975 +, pages = "665--669" } @incollection{r-gdsos-89 -, author = "I. Rival" -, title = "Graphical Data Structures for Ordered Sets" -, editor = "I. Rival" -, booktitle = "Algorithms and Order" -, publisher = "Kluwer Academic Publishers" -, year = 1989 -, pages = "3--31" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "I. Rival" +, title = "Graphical Data Structures for Ordered Sets" +, editor = "I. Rival" +, booktitle = "Algorithms and Order" +, publisher = "Kluwer Academic Publishers" +, year = 1989 +, pages = "3--31" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @incollection{r-rdo-93 -, author = "I. Rival" -, title = "Reading, Drawing, and Order" -, editor = "I. G. Rosenberg and G. Sabidussi" -, booktitle = "Algebras and Orders" -, publisher = "Kluwer Academic Publishers" -, year = 1993 -, pages = "359--404" -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "I. Rival" +, title = "Reading, Drawing, and Order" +, editor = "I. G. Rosenberg and G. Sabidussi" +, booktitle = "Algebras and Orders" +, publisher = "Kluwer Academic Publishers" +, year = 1993 +, pages = "359--404" +, keywords = "graph drawing" +, update = "95.01 tamassia" } @incollection{r-d-85 -, author = "I. Rival" -, title = "The Diagram" -, editor = "I. Rival" -, booktitle = "Graphs and Orders" -, publisher = "Reidel Publishing" -, year = 1985 -, pages = "103--133" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "I. Rival" +, title = "The Diagram" +, editor = "I. Rival" +, booktitle = "Graphs and Orders" +, publisher = "Reidel Publishing" +, year = 1985 +, pages = "103--133" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{ru-ommts-89 -, author = "I. Rival and J. Urrutia" -, title = "Order models for motion in three-space" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 33 -, keywords = "motion planning" +, author = "I. Rival and J. Urrutia" +, title = "Order models for motion in three-space" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 33 +, keywords = "motion planning" } @article{ru-roptc-88 -, author = "I. Rival and J. Urrutia" -, title = "Representing Orders on the Plane by Translating Convex Figures" -, journal = "Order" -, volume = 4 -, year = 1988 -, pages = "319--339" -, update = "97.11 bibrelex" +, author = "I. Rival and J. Urrutia" +, title = "Representing Orders on the Plane by Translating Convex Figures" +, journal = "Order" +, volume = 4 +, year = 1988 +, pages = "319--339" +, update = "97.11 bibrelex" } @article{rw-lfgpo-79 -, author = "I. Rival and R. Wille" -, title = "Lattices Freely Generated by Partially Ordered Sets: Which can be Drawn?" -, journal = "J. Reine Angew. Math." -, volume = 310 -, year = 1979 -, pages = "56--80" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "I. Rival and R. Wille" +, title = "Lattices Freely Generated by Partially Ordered Sets: Which can be Drawn?" +, journal = "J. Reine Angew. Math." +, volume = 310 +, year = 1979 +, pages = "56--80" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{r-dtrp-93 -, author = "Maria-Cecilia Rivara" -, title = "A Discussion on the Triangulation Refinement Problem" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "42--47" -, cites = "bde-tpwla-92, bc-mgrfc-92, ps-cgi-85, r-ddsfa-84, r-artgs-84, r-srdas-89, r-lmmam-91, rs-lbatc-75, ir-scstp-92, r-ggb4t-87, rl-3rasa-92, s-fcbmt-80, ZZZ" -, update = "98.11 bibrelex" +, author = "Maria-Cecilia Rivara" +, title = "A Discussion on the Triangulation Refinement Problem" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "42--47" +, cites = "bde-tpwla-92, bc-mgrfc-92, ps-cgi-85, r-ddsfa-84, r-artgs-84, r-srdas-89, r-lmmam-91, rs-lbatc-75, ir-scstp-92, r-ggb4t-87, rl-3rasa-92, s-fcbmt-80, ZZZ" +, update = "98.11 bibrelex" } @article{r-ggb4t-87 -, author = "M. C. Rivara" -, title = "A Grid Generator Based on 4-Triangles Conforming Mesh-Refinement Algorithms" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 24 -, number = 7 -, year = 1987 -, pages = "1343--1354" -, annote = "Works by subdividing triangles." +, author = "M. C. Rivara" +, title = "A Grid Generator Based on 4-Triangles Conforming Mesh-Refinement Algorithms" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 24 +, number = 7 +, year = 1987 +, pages = "1343--1354" +, annote = "Works by subdividing triangles." } @article{r-artgs-84 -, author = "M. C. Rivara" -, title = "Algorithms for refining triangular grids suitable for adaptive and multigrid techniques" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 20 -, year = 1984 -, pages = "745--756" -, update = "94.05 orourke" -, annote = "Repeatedly bisects longest side of triangle" +, author = "M. C. Rivara" +, title = "Algorithms for refining triangular grids suitable for adaptive and multigrid techniques" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 20 +, year = 1984 +, pages = "745--756" +, update = "94.05 orourke" +, annote = "Repeatedly bisects longest side of triangle" } @article{r-ddsfa-84 -, author = "M. C. Rivara" -, title = "Design and data structure of fully adaptive multigrid, finite-element software" -, journal = "ACM Trans. Math. Softw." -, volume = 10 -, year = 1984 -, pages = "242--264" -, update = "98.11 bibrelex" +, author = "M. C. Rivara" +, title = "Design and data structure of fully adaptive multigrid, finite-element software" +, journal = "ACM Trans. Math. Softw." +, volume = 10 +, year = 1984 +, pages = "242--264" +, update = "98.11 bibrelex" } @article{r-lmmam-91 -, author = "M. C. Rivara" -, title = "Local modification of meshes for adaptive and/or multigrid finite element methods" -, journal = "J. Comp. Appl. Math." -, volume = 36 -, year = 1991 -, pages = "79--89" -, update = "98.11 bibrelex" +, author = "M. C. Rivara" +, title = "Local modification of meshes for adaptive and/or multigrid finite element methods" +, journal = "J. Comp. Appl. Math." +, volume = 36 +, year = 1991 +, pages = "79--89" +, update = "98.11 bibrelex" } @inproceedings{r-nmttr-96 -, author = "Maria-Cecilia Rivara" -, title = "New mathematical tool and techniques for the refinement and/or improvement of unstructured triangulations" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "77--86" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Maria-Cecilia Rivara" +, title = "New mathematical tool and techniques for the refinement and/or improvement of unstructured triangulations" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "77--86" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{r-np3le-99 -, author = "Mar{\'\i}a-Cecilia Rivara" -, title = "Nondegeneracy Properties of {3D} Longest-Edge Algorithms for the Quality Refinement of Triangulations" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "73--75" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Mar{\'\i}a-Cecilia Rivara" +, title = "Nondegeneracy Properties of {3D} Longest-Edge Algorithms for the Quality Refinement of Triangulations" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "73--75" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{r-ngnsg-87 -, author = "Mar{\'\i}a-Cecilia Rivara" -, title = "Numerical Generation of Nested Series of General Triangular Grids" -, editor = "C. K. Chui and L. L. Schumaker and F. I. Utreras" -, booktitle = "Topics in Multivariate Approximation" -, publisher = "Academic Press" -, address = "New York" -, year = 1987 -, pages = "193--206" -, annote = "Basic idea is to split a triangle with an edge to the - centre of its longest side. This can then trigger - further splits to remove non conforming points. - Resulting should be as good as the original one." +, author = "Mar{\'\i}a-Cecilia Rivara" +, title = "Numerical Generation of Nested Series of General Triangular Grids" +, editor = "C. K. Chui and L. L. Schumaker and F. I. Utreras" +, booktitle = "Topics in Multivariate Approximation" +, publisher = "Academic Press" +, address = "New York" +, year = 1987 +, pages = "193--206" +, annote = "Basic idea is to split a triangle with an edge to the + centre of its longest side. This can then trigger + further splits to remove non conforming points. + Resulting should be as good as the original one." } @article{r-srdas-89 -, author = "M. C. Rivara" -, title = "Selctive refinement/derefinement algorithms for sequences of nested triangulations" -, journal = "Internat. J. Numer. Methods Eng." -, volume = "??" -, year = 1989 -, pages = "2289--2906" -, update = "98.11 bibrelex" +, author = "M. C. Rivara" +, title = "Selctive refinement/derefinement algorithms for sequences of nested triangulations" +, journal = "Internat. J. Numer. Methods Eng." +, volume = "??" +, year = 1989 +, pages = "2289--2906" +, update = "98.11 bibrelex" } @article{rl-3rasa-92 -, author = "M. C. Rivara and C. Levin" -, title = "A 3-{D} refinement algorithm suitable for adaptive and multigrid techniques" -, journal = "Comm. Applied Numer. Meth." -, volume = 8 -, year = 1992 -, pages = "281--290" -, update = "98.11 bibrelex" +, author = "M. C. Rivara and C. Levin" +, title = "A 3-{D} refinement algorithm suitable for adaptive and multigrid techniques" +, journal = "Comm. Applied Numer. Meth." +, volume = 8 +, year = 1992 +, pages = "281--290" +, update = "98.11 bibrelex" } @inproceedings{ri-dmlsm-95 -, author = "Mari'a-Cecilia Rivara and Patricio Inostroza" -, title = "A Discussion on Mixed (Longest-Side Midpoint Insertion) {Delaunay} Techniques for the Triangulation Refinement Problem" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "335--346" -, update = "96.01 samitchell" +, author = "Mari'a-Cecilia Rivara and Patricio Inostroza" +, title = "A Discussion on Mixed (Longest-Side Midpoint Insertion) {Delaunay} Techniques for the Triangulation Refinement Problem" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "335--346" +, update = "96.01 samitchell" } @inproceedings{r-nspcs-90 -, author = "E. Rivera-Campo" -, title = "A note on separation of plane convex sets" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "78--80" -, cites = "t-sppcs-79, ZZZ" -, update = "98.07 bibrelex" +, author = "E. Rivera-Campo" +, title = "A note on separation of plane convex sets" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "78--80" +, cites = "t-sppcs-79, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{ru-ntgsp-97 -, author = "Eduardo Rivera-Campo and Virginia Urrutia-Galicia" -, title = "A Note on the Tree Graph of a Set of Points in the Plane" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "46--49" -, update = "97.11 jones" +, author = "Eduardo Rivera-Campo and Virginia Urrutia-Galicia" +, title = "A Note on the Tree Graph of a Set of Points in the Plane" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "46--49" +, update = "97.11 jones" } @article{ru-hcpgs-01 -, author = "E. Rivera-Campo and V. Urrutia-Galicia" -, title = "Hamilton cycles in the path graph of a set of points in convex position" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "65--72" -, update = "01.07 smid" +, author = "E. Rivera-Campo and V. Urrutia-Galicia" +, title = "Hamilton cycles in the path graph of a set of points in convex position" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "65--72" +, update = "01.07 smid" } @inproceedings{ru-pcp-91 -, author = "E. Rivera-Campo and J. Urrutia" -, title = "A property of convex polygons" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "203--206" -, cites = "ers-ccsno-90, f-icd-77, hk-spcs-90, r-nspcs-90, t-sppcs-79, ZZZ" -, update = "98.07 bibrelex" +, author = "E. Rivera-Campo and J. Urrutia" +, title = "A property of convex polygons" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "203--206" +, cites = "ers-ccsno-90, f-icd-77, hk-spcs-90, r-nspcs-90, t-sppcs-79, ZZZ" +, update = "98.07 bibrelex" } @techreport{ri-eaade-84 -, author = "J. Rivero and A. Inselberg" -, title = "Extensi{\'o}n al an{\'a}sis del espacio de fase de sistemas dina{\'a}micos por las coordenadas paralelas" -, type = "Report" -, number = "??" -, institution = "IBM Los Angeles Sci. Center" -, address = "Los Angeles, CA" -, year = 1984 +, author = "J. Rivero and A. Inselberg" +, title = "Extensi{\'o}n al an{\'a}sis del espacio de fase de sistemas dina{\'a}micos por las coordenadas paralelas" +, type = "Report" +, number = "??" +, institution = "IBM Los Angeles Sci. Center" +, address = "Los Angeles, CA" +, year = 1984 } @techreport{r-aara-74 -, author = "R. L. Rivest" -, title = "Analysis of associative retrieval algorithms" -, type = "Report" -, number = "STAN-CS-74-415" -, institution = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, year = 1974 +, author = "R. L. Rivest" +, title = "Analysis of associative retrieval algorithms" +, type = "Report" +, number = "STAN-CS-74-415" +, institution = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, year = 1974 } @inproceedings{r-hcapm-74 -, author = "R. L. Rivest" -, title = "On hash-coding algorithms for partial-match retrieval" -, booktitle = "Proc. 15th Annu. IEEE Sympos. Switching Automata Theory" -, year = 1974 -, pages = "95--103" -, precedes = "r-pmra-76" +, author = "R. L. Rivest" +, title = "On hash-coding algorithms for partial-match retrieval" +, booktitle = "Proc. 15th Annu. IEEE Sympos. Switching Automata Theory" +, year = 1974 +, pages = "95--103" +, precedes = "r-pmra-76" } @incollection{r-oeapb-74 -, author = "R. L. Rivest" -, title = "On the optimality of {Elias}'s algorithm for performing best-match searches" -, booktitle = "Information Processing" -, publisher = "North-Holland" -, year = 1974 -, pages = "678--681" -, update = "98.03 bibrelex" +, author = "R. L. Rivest" +, title = "On the optimality of {Elias}'s algorithm for performing best-match searches" +, booktitle = "Information Processing" +, publisher = "North-Holland" +, year = 1974 +, pages = "678--681" +, update = "98.03 bibrelex" } @article{r-pmra-76 -, author = "R. L. Rivest" -, title = "Partial-match retrieval algorithms" -, journal = "SIAM J. Comput." -, volume = 5 -, year = 1976 -, pages = "19--50" -, succeeds = "r-hcapm-74" +, author = "R. L. Rivest" +, title = "Partial-match retrieval algorithms" +, journal = "SIAM J. Comput." +, volume = 5 +, year = 1976 +, pages = "19--50" +, succeeds = "r-hcapm-74" } @inproceedings{r-ppis-82 -, author = "R. L. Rivest" -, title = "The ``{PI}'' (placement and interconnect) system" -, booktitle = "Proc. 19th ACM-IEEE Design Automation Conf." -, year = 1982 -, pages = "475--481" +, author = "R. L. Rivest" +, title = "The ``{PI}'' (placement and interconnect) system" +, booktitle = "Proc. 19th ACM-IEEE Design Automation Conf." +, year = 1982 +, pages = "475--481" } @phdthesis{r-cve2d-97 -, author = "S. Rivi{\`e}re" -, title = "Calculs de Visibilit{\'e} dans un Environnement 2D" -, school = "Universit{\'e} Joseph Fourier" -, address = "Grenoble, France" -, year = 1997 -, keywords = "doctoral thesis" -, update = "01.11 pocchiola, 98.07 bibrelex" +, author = "S. Rivi{\`e}re" +, title = "Calculs de Visibilit{\'e} dans un Environnement 2D" +, school = "Universit{\'e} Joseph Fourier" +, address = "Grenoble, France" +, year = 1997 +, keywords = "doctoral thesis" +, update = "01.11 pocchiola, 98.07 bibrelex" } @techreport{r-cddcd-93 -, author = "S. Rivi{\`e}re" -, title = "Comparison d'algorithmes de calcul de graphes de visibilit{\'e}" -, type = "Rapport du stage" -, institution = "DEA IMA" -, year = 1993 -, update = "98.03 bibrelex" +, author = "S. Rivi{\`e}re" +, title = "Comparison d'algorithmes de calcul de graphes de visibilit{\'e}" +, type = "Rapport du stage" +, institution = "DEA IMA" +, year = 1993 +, update = "98.03 bibrelex" } @inproceedings{r-ddnic-96 -, author = "St{\'e}phane Rivi{\`e}re" -, title = "Dealing with Degeneracies and Numerical Imprecisions when Computing Visibility Graphs" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "35--38" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "St{\'e}phane Rivi{\`e}re" +, title = "Dealing with Degeneracies and Numerical Imprecisions when Computing Visibility Graphs" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "35--38" +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{r-dvpsv-97 -, author = "S. Rivi{\`e}re" -, title = "Dynamic visibility in polygonal scenes with the visibility complex" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "421--423" -, cites = "dy-rchyd-93, gs-iuvms-96, ol-mcp-81, pv-vc-96, r-vc2dp-97, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "S. Rivi{\`e}re" +, title = "Dynamic visibility in polygonal scenes with the visibility complex" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "421--423" +, cites = "dy-rchyd-93, gs-iuvms-96, ol-mcp-81, pv-vc-96, r-vc2dp-97, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{r-ectac-93 -, author = "S. Rivi{\`e}re" -, title = "Experimental comparison of two algorithms for computing visibility graphs" -, type = "Manuscript" -, institution = "??" -, year = 1993 -, update = "98.03 bibrelex" +, author = "S. Rivi{\`e}re" +, title = "Experimental comparison of two algorithms for computing visibility graphs" +, type = "Manuscript" +, institution = "??" +, year = 1993 +, update = "98.03 bibrelex" } @inproceedings{r-tsvcp-95 -, author = "St{\'e}phane Rivi{\`e}re" -, title = "Topologically Sweeping the Visibility Complex of Polygonal Scenes" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C36--C37" -, keywords = "visibility graph optimal algorithm, experimental" -, cites = "eg-tsa-86, gm-osacv-87, ow-nmcvg-88, pv-savgc-93, pv-vc-93, pv-cvgpt-95, r-ectac-93, ZZZ" -, update = "98.07 icking, 98.03 bibrelex, 95.09 mitchell" +, author = "St{\'e}phane Rivi{\`e}re" +, title = "Topologically Sweeping the Visibility Complex of Polygonal Scenes" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C36--C37" +, keywords = "visibility graph optimal algorithm, experimental" +, cites = "eg-tsa-86, gm-osacv-87, ow-nmcvg-88, pv-savgc-93, pv-vc-93, pv-cvgpt-95, r-ectac-93, ZZZ" +, update = "98.07 icking, 98.03 bibrelex, 95.09 mitchell" } @phdthesis{r-vc2dp-97 -, author = "S. Rivi{\`e}re" -, title = "Visibility computations in $2${D} polygonal scenes" -, school = "Universit{\'e} Joseph Fourier" -, address = "Grenoble, France" -, year = 1997 -, keywords = "doctoral thesis" -, update = "01.11 pocchiola, 98.07 bibrelex" +, author = "S. Rivi{\`e}re" +, title = "Visibility computations in $2${D} polygonal scenes" +, school = "Universit{\'e} Joseph Fourier" +, address = "Grenoble, France" +, year = 1997 +, keywords = "doctoral thesis" +, update = "01.11 pocchiola, 98.07 bibrelex" } @inproceedings{r-wvcav-97 -, author = "St{\'e}phane Rivi{\`e}re" -, title = "Walking in the Visibility Complex with Applications to Visibility Polygons and Dynamic Visibility" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "147--152" -, update = "98.07 icking, 97.11 jones" +, author = "St{\'e}phane Rivi{\`e}re" +, title = "Walking in the Visibility Complex with Applications to Visibility Polygons and Dynamic Visibility" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "147--152" +, update = "98.07 icking, 97.11 jones" } @inproceedings{rodp-uvcrc-96 -, author = "S. Rivi{\`e}re and R. Orti and F. Durand and C. Puech" -, title = "Using the visibility complex for radiosity computation" -, booktitle = "ACM Workshop Appl. Comput. Geom." -, month = may -, year = 1996 -, update = "97.11 bibrelex" +, author = "S. Rivi{\`e}re and R. Orti and F. Durand and C. Puech" +, title = "Using the visibility complex for radiosity computation" +, booktitle = "ACM Workshop Appl. Comput. Geom." +, month = may +, year = 1996 +, update = "97.11 bibrelex" } @techreport{r-ciph3-92 -, author = "I. Rivin" -, title = "A characterization of ideal polyhedra in hyperbolic $3$-space" -, type = "Preprint" -, institution = "??" -, year = 1992 -, update = "97.11 bibrelex" +, author = "I. Rivin" +, title = "A characterization of ideal polyhedra in hyperbolic $3$-space" +, type = "Preprint" +, institution = "??" +, year = 1992 +, update = "97.11 bibrelex" } @article{r-esssh-94 -, author = "Igor Rivin" -, title = "Euclidean Structures on Simplicial Surfaces and Hyperbolic Volume" -, journal = "Ann. Math." -, volume = 139 -, number = 3 -, year = 1994 -, pages = "553--580" -, update = "98.07 tamassia+vismara" +, author = "Igor Rivin" +, title = "Euclidean Structures on Simplicial Surfaces and Hyperbolic Volume" +, journal = "Ann. Math." +, volume = 139 +, number = 3 +, year = 1994 +, pages = "553--580" +, update = "98.07 tamassia+vismara" } @phdthesis{r-gcph3-86 -, author = "I. Rivin" -, title = "On geometry of convex polyhedra in hyperbolic $3$-space" -, type = "Ph.{D}. Thesis" -, school = "Princeton Univ." -, address = "Princeton, NJ" -, year = 1986 -, keywords = "doctoral thesis" +, author = "I. Rivin" +, title = "On geometry of convex polyhedra in hyperbolic $3$-space" +, type = "Ph.{D}. Thesis" +, school = "Princeton Univ." +, address = "Princeton, NJ" +, year = 1986 +, keywords = "doctoral thesis" } @article{r-giph3- -, author = "I. Rivin" -, title = "On the geometry of ideal polyhedra in hyperbolic $3$-space" -, journal = "Topology" -, volume = "??" -, year = "??" -, note = "To appear" -, update = "97.11 bibrelex" +, author = "I. Rivin" +, title = "On the geometry of ideal polyhedra in hyperbolic $3$-space" +, journal = "Topology" +, volume = "??" +, year = "??" +, note = "To appear" +, update = "97.11 bibrelex" } @misc{r-ahvfl-92 -, author = "I. Rivin" -, title = "Some applications of the hyperbolic volume formula of {Lobachevskii} and {Milnor}" -, howpublished = "preprint" -, year = 1992 -, update = "98.11 bibrelex" +, author = "I. Rivin" +, title = "Some applications of the hyperbolic volume formula of {Lobachevskii} and {Milnor}" +, howpublished = "preprint" +, year = 1992 +, update = "98.11 bibrelex" } @techreport{rs-iphdd-91 -, author = "I. Rivin and W. D. Smith" -, title = "Ideal polyhedra in $H^3$ are determined by their dihedral angles" -, type = "manuscript" -, institution = "NEC Research Institute" -, year = 1991 -, update = "98.11 bibrelex" +, author = "I. Rivin and W. D. Smith" +, title = "Ideal polyhedra in $H^3$ are determined by their dihedral angles" +, type = "manuscript" +, institution = "NEC Research Institute" +, year = 1991 +, update = "98.11 bibrelex" } @techreport{rs-ig-91 -, author = "I. Rivin and W. D. Smith" -, title = "Inscribable graphs" -, type = "Manuscript" -, institution = "NEC Research Institute" -, address = "Princeton, NJ" -, year = 1991 -, update = "97.11 bibrelex" +, author = "I. Rivin and W. D. Smith" +, title = "Inscribable graphs" +, type = "Manuscript" +, institution = "NEC Research Institute" +, address = "Princeton, NJ" +, year = 1991 +, update = "97.11 bibrelex" } @book{r-iaf-69 -, author = "T. Rivlin" -, title = "An Introduction to the Approcimation of Functions" -, publisher = "Dover" -, address = "New York" -, year = 1969 -, update = "98.07 bibrelex" +, author = "T. Rivlin" +, title = "An Introduction to the Approcimation of Functions" +, publisher = "Dover" +, address = "New York" +, year = 1969 +, update = "98.07 bibrelex" } @article{r-ac-79 -, author = "T. J. Rivlin" -, title = "Approximating by circles" -, journal = "Computing" -, volume = 21 -, year = 1979 -, pages = "93--104" -, update = "98.07 bibrelex" +, author = "T. J. Rivlin" +, title = "Approximating by circles" +, journal = "Computing" +, volume = 21 +, year = 1979 +, pages = "93--104" +, update = "98.07 bibrelex" } @article{rpw-csbsd-87 -, author = "J. W. Roach and P. Paripati and J. Wright" -, title = "A {CAD} system based on spherical dual representation" -, journal = "IEEE Comput." -, volume = 20 -, number = 8 -, year = 1987 -, pages = "37--44" -, update = "98.07 bibrelex" +, author = "J. W. Roach and P. Paripati and J. Wright" +, title = "A {CAD} system based on spherical dual representation" +, journal = "IEEE Comput." +, volume = 20 +, number = 8 +, year = 1987 +, pages = "37--44" +, update = "98.07 bibrelex" } @inproceedings{rwr-sdi3d-86 -, author = "J. W. Roach and J. Wright and V. Ramesh" -, title = "Spherical dual images: {A} $3$-{D} representation method that combines dual space and {Gaussian} spheres" -, booktitle = "Proceedings of Workshop on Computer Vision: Representation and Control" -, year = 1986 -, pages = "236--241" -, update = "98.07 bibrelex" +, author = "J. W. Roach and J. Wright and V. Ramesh" +, title = "Spherical dual images: {A} $3$-{D} representation method that combines dual space and {Gaussian} spheres" +, booktitle = "Proceedings of Workshop on Computer Vision: Representation and Control" +, year = 1986 +, pages = "236--241" +, update = "98.07 bibrelex" } @article{r-tgs-86 -, author = "L. Robbiano" -, title = "On the theory of graded structures" -, journal = "J. Symbolic Comput." -, volume = 2 -, year = 1986 -, pages = "139--170" -, update = "98.03 bibrelex" +, author = "L. Robbiano" +, title = "On the theory of graded structures" +, journal = "J. Symbolic Comput." +, volume = 2 +, year = 1986 +, pages = "139--170" +, update = "98.03 bibrelex" } @inproceedings{r-topr-85 -, author = "L. Robbiano" -, title = "Term orderings on the polynomial ring" -, booktitle = "European Conference on Computer Algebra" -, nickname = "EUROCAL '85" -, series = "Lecture Notes Comput. Sci." -, volume = 20 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "513--517" -, update = "98.03 bibrelex" +, author = "L. Robbiano" +, title = "Term orderings on the polynomial ring" +, booktitle = "European Conference on Computer Algebra" +, nickname = "EUROCAL '85" +, series = "Lecture Notes Comput. Sci." +, volume = 20 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "513--517" +, update = "98.03 bibrelex" } @article{rt-cvssm-91 -, author = "M. O. Robbins and P. A. Thompson" -, title = "Critical Velocity of Stick-Slip Motion" -, journal = "Science" -, volume = 253 -, year = 1991 -, pages = "916--925" -, update = "96.09 orourke" +, author = "M. O. Robbins and P. A. Thompson" +, title = "Critical Velocity of Stick-Slip Motion" +, journal = "Science" +, volume = 253 +, year = 1991 +, pages = "916--925" +, update = "96.09 orourke" } @techreport{rt-cgfl-90 -, author = "J. Robert and G. Toussaint" -, title = "Computational geometry and facility location" -, type = "Technical {Report}" -, number = "SOCS 90.20" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "J. Robert and G. Toussaint" +, title = "Computational geometry and facility location" +, type = "Technical {Report}" +, number = "SOCS 90.20" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, update = "93.09 milone+mitchell" } @inproceedings{r-gohtt-93 -, author = "J.-M. Robert" -, title = "Geometric orderings and {Helly}-type theorem for intersecting translates in the plane" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "61--66" -, precedes = "r-goita-97" -, cites = "ab-eact-87, es-mnwsn-90, ew-spdtl-89, gpw-gtt-93, h-uegt-57, k-cgct-86, kll-gpct-86, kll-gpdt-87, kll-gpdt-87, t-pgcct-89, w-ghtti-90, w-gpcc-90, ZZZ" -, update = "98.11 bibrelex, 97.03 devillers, 93.09 milone+mitchell" +, author = "J.-M. Robert" +, title = "Geometric orderings and {Helly}-type theorem for intersecting translates in the plane" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "61--66" +, precedes = "r-goita-97" +, cites = "ab-eact-87, es-mnwsn-90, ew-spdtl-89, gpw-gtt-93, h-uegt-57, k-cgct-86, kll-gpct-86, kll-gpdt-87, kll-gpdt-87, t-pgcct-89, w-ghtti-90, w-gpcc-90, ZZZ" +, update = "98.11 bibrelex, 97.03 devillers, 93.09 milone+mitchell" } @article{r-goita-97 -, author = "J.-M. Robert" -, title = "Geometric orderings of intersecting translates and their applications" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "59--72" -, succeeds = "r-gohtt-93" -, update = "97.03 devillers" +, author = "J.-M. Robert" +, title = "Geometric orderings of intersecting translates and their applications" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "59--72" +, succeeds = "r-gohtt-93" +, update = "97.03 devillers" } @inproceedings{rt-laso-92 -, author = "J.-M. Robert and G. Toussaint" -, title = "Linear approximation of simple objects" -, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 577 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "233--244" -, precedes = "rt-laso-94" -, update = "96.09 devillers" +, author = "J.-M. Robert and G. Toussaint" +, title = "Linear approximation of simple objects" +, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 577 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "233--244" +, precedes = "rt-laso-94" +, update = "96.09 devillers" } @article{rt-laso-94 -, author = "J.-M. Robert and G. Toussaint" -, title = "Linear approximation of simple objects" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "27--52" -, succeeds = "rt-laso-92" -, update = "96.09 devillers" +, author = "J.-M. Robert and G. Toussaint" +, title = "Linear approximation of simple objects" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "27--52" +, succeeds = "rt-laso-92" +, update = "96.09 devillers" } @article{r-gtaps-78 -, author = "Fred S. Roberts" -, title = "Graph Theory and Its Applications to Problems of Society" -, journal = "SIAM, CBMS-NSF REgional Conf. Series in Applied Mathematics, Philadelphia" -, volume = "??" -, year = 1978 -, update = "98.07 bibrelex" +, author = "Fred S. Roberts" +, title = "Graph Theory and Its Applications to Problems of Society" +, journal = "SIAM, CBMS-NSF REgional Conf. Series in Applied Mathematics, Philadelphia" +, volume = "??" +, year = 1978 +, update = "98.07 bibrelex" } @incollection{r-ig-69 -, author = "F. S. Roberts" -, title = "Indifference Graphs" -, editor = "F. Harary" -, booktitle = "Proof Techniques in Graph Theory" -, publisher = "Academic Press" -, address = "New York" -, year = 1969 -, pages = "139--146" -, update = "98.11 bibrelex" +, author = "F. S. Roberts" +, title = "Indifference Graphs" +, editor = "F. Harary" +, booktitle = "Proof Techniques in Graph Theory" +, publisher = "Academic Press" +, address = "New York" +, year = 1969 +, pages = "139--146" +, update = "98.11 bibrelex" } @article{r-ffiss-88 -, author = "S. Roberts" -, title = "On the figures formed by the intercepts of a system of straight lines in a plane, and an analogous relations in space of three dimensions" -, journal = "Proc. London Math. Soc." -, volume = 19 -, year = 1888 -, pages = "405--422" +, author = "S. Roberts" +, title = "On the figures formed by the intercepts of a system of straight lines in a plane, and an analogous relations in space of three dimensions" +, journal = "Proc. London Math. Soc." +, volume = 19 +, year = 1888 +, pages = "405--422" } @inproceedings{rmc-cta3v-91 -, author = "G. G. Robertson and J. D. Mackinlay and S. K. Card" -, title = "Cone Trees: Animated {3D} Visualizations of Hierarchical Information" -, booktitle = "Proc. ACM Conf. on Human Factors in Computing Systems" -, nickname = "CHI" -, year = 1991 -, pages = "189--193" -, keywords = "graph drawing" -, update = "97.03 tamassia, 96.09 tamassia, 95.01 tamassia" +, author = "G. G. Robertson and J. D. Mackinlay and S. K. Card" +, title = "Cone Trees: Animated {3D} Visualizations of Hierarchical Information" +, booktitle = "Proc. ACM Conf. on Human Factors in Computing Systems" +, nickname = "CHI" +, year = 1991 +, pages = "189--193" +, keywords = "graph drawing" +, update = "97.03 tamassia, 96.09 tamassia, 95.01 tamassia" } @article{r-cal-70 -, author = "H. G. Robertson" -, title = "Curvature and arc length" -, journal = "SIAM J. Appl. Math." -, volume = 19 -, year = 1970 -, pages = "697--699" -, update = "94.05 devillers" +, author = "H. G. Robertson" +, title = "Curvature and arc length" +, journal = "SIAM J. Appl. Math." +, volume = 19 +, year = 1970 +, pages = "697--699" +, update = "94.05 devillers" } @inproceedings{rsst-efcpg-96 -, author = "N. Robertson and D. P. Sanders and P. Seymour and R. Thomas" -, title = "Efficiently four-coloring planar graphs" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, year = 1996 -, pages = "571--575" -, update = "98.07 bibrelex" +, author = "N. Robertson and D. P. Sanders and P. Seymour and R. Thomas" +, title = "Efficiently four-coloring planar graphs" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, year = 1996 +, pages = "571--575" +, update = "98.07 bibrelex" } @article{rs-gm2aa-86 -, author = "N. Robertson and P. D. Seymour" -, title = "Graph minors {II}. {Algorithmic} aspects of tree width" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "309--322" -, update = "97.11 bibrelex" +, author = "N. Robertson and P. D. Seymour" +, title = "Graph minors {II}. {Algorithmic} aspects of tree width" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "309--322" +, update = "97.11 bibrelex" } @techreport{r-igptd-87 -, author = "G. Robins" -, title = "The {ISI} Grapher: {A} Portable Tool for Displaying Graphs Pictorially" -, number = "ISI/RS-87-196" -, institution = "Information Sciences Inst., University of Southern California" -, year = 1987 -, note = "also in Proc. Symboliikka '87 Helsinki Finland August +, author = "G. Robins" +, title = "The {ISI} Grapher: {A} Portable Tool for Displaying Graphs Pictorially" +, number = "ISI/RS-87-196" +, institution = "Information Sciences Inst., University of Southern California" +, year = 1987 +, note = "also in Proc. Symboliikka '87 Helsinki Finland August 1987" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{rs-ldmst-95 -, author = "G. Robins and J. S. Salowe" -, title = "Low-degree minimum spanning trees" -, journal = "Discrete Comput. Geom." -, volume = 14 -, year = 1995 -, pages = "151--165" -, update = "02.03 smid" +, author = "G. Robins and J. S. Salowe" +, title = "Low-degree minimum spanning trees" +, journal = "Discrete Comput. Geom." +, volume = 14 +, year = 1995 +, pages = "151--165" +, update = "02.03 smid" } @inproceedings{rs-mdmst-94 -, author = "G. Robins and J. S. Salowe" -, title = "On the Maximum Degree of Minimum Spanning Trees" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "250--258" -, cites = "bgmrz-tsees-93, bgrz-ngnos-93, clr-ia-90, cfg-upg-90, de-eaahc-84, gj-cigtn-79, gp-1stp-87, gh-hmstp-85, gs-canen-83, h-tdicl-91, hvw-narst-90, kl-bpss-78, kr-ncist-92, k-sssgt-56, pv-tgprt-84, pl-pdavs-88, p-scnsg-57, sw-ersta-93, t-nrtpc-83, w-cbdd-65, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "G. Robins and J. S. Salowe" +, title = "On the Maximum Degree of Minimum Spanning Trees" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "250--258" +, cites = "bgmrz-tsees-93, bgrz-ngnos-93, clr-ia-90, cfg-upg-90, de-eaahc-84, gj-cigtn-79, gp-1stp-87, gh-hmstp-85, gs-canen-83, h-tdicl-91, hvw-narst-90, kl-bpss-78, kr-ncist-92, k-sssgt-56, pv-tgprt-84, pl-pdavs-88, p-scnsg-57, sw-ersta-93, t-nrtpc-83, w-cbdd-65, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @techreport{r-kdbts-81t -, author = "J. T. Robinson" -, title = "The $k$-d-{B}-tree: {A} search structure for large multidimensional dynamic indexes" -, type = "Report" -, number = "CMU-CS-81-106" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1981 -, precedes = "r-kdbts-81i" -, update = "97.07 agarwal, 94.05 franciosa" +, author = "J. T. Robinson" +, title = "The $k$-d-{B}-tree: {A} search structure for large multidimensional dynamic indexes" +, type = "Report" +, number = "CMU-CS-81-106" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1981 +, precedes = "r-kdbts-81i" +, update = "97.07 agarwal, 94.05 franciosa" } @inproceedings{r-kdbts-81i -, author = "J. T. Robinson" -, title = "The $k$-d-b-tree: a search structure for large multidimensional dynamic indexes" -, booktitle = "Proc. ACM SIGACT-SIGMOD Conf. Principles Database Systems" -, year = 1981 -, pages = "10--18" -, succeeds = "r-kdbts-81t" -, update = "94.05 franciosa" +, author = "J. T. Robinson" +, title = "The $k$-d-b-tree: a search structure for large multidimensional dynamic indexes" +, booktitle = "Proc. ACM SIGACT-SIGMOD Conf. Principles Database Systems" +, year = 1981 +, pages = "10--18" +, succeeds = "r-kdbts-81t" +, update = "94.05 franciosa" } @article{r-untp-71 -, author = "R. M. Robinson" -, title = "Undecidability and nonperiodicity of tilings of the plane" -, journal = "Invent. Math." -, volume = 12 -, year = 1971 -, pages = "177--909" -, update = "97.11 bibrelex" +, author = "R. M. Robinson" +, title = "Undecidability and nonperiodicity of tilings of the plane" +, journal = "Invent. Math." +, volume = 12 +, year = 1971 +, pages = "177--909" +, update = "97.11 bibrelex" } @article{rwp-3dimp-88 -, author = "Michel Roch and Jacques Weber and Christian Pellegrini" -, title = "3{D} images of molecular properties by triangulation of contour lines" -, journal = "Comput. Graph. Forum" -, volume = 7 -, number = 3 -, month = sep -, year = 1988 -, pages = "195--202" -, annote = "I can't understand their algorithm." +, author = "Michel Roch and Jacques Weber and Christian Pellegrini" +, title = "3{D} images of molecular properties by triangulation of contour lines" +, journal = "Comput. Graph. Forum" +, volume = 7 +, number = 3 +, month = sep +, year = 1988 +, pages = "195--202" +, annote = "I can't understand their algorithm." } @inproceedings{r-pdsrr-99 -, author = "Jairo Rocha" -, title = "Polygonal Decomposition into Singular and Regular Regions" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "185--190" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Jairo Rocha" +, title = "Polygonal Decomposition into Singular and Regular Regions" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "185--190" +, update = "00.03 bibrelex, 99.07 bibrelex" } @book{r-ca-70 -, author = "R. T. Rockafellar" -, title = "Convex Analysis" -, publisher = "Princeton University Press" -, year = 1970 -, update = "98.03 bibrelex" +, author = "R. T. Rockafellar" +, title = "Convex Analysis" +, publisher = "Princeton University Press" +, year = 1970 +, update = "98.03 bibrelex" } @inproceedings{rhd-rtrts-89 -, author = "A. Rockwood and K. Heaton and T. Davis" -, title = "Real-time rendering of trimmed surfaces" -, booktitle = "Proc. SIGGRAPH '89" -, year = 1989 -, pages = "107--117" -, update = "97.11 bibrelex" +, author = "A. Rockwood and K. Heaton and T. Davis" +, title = "Real-time rendering of trimmed surfaces" +, booktitle = "Proc. SIGGRAPH '89" +, year = 1989 +, pages = "107--117" +, update = "97.11 bibrelex" } @inproceedings{ro-bssgm-85 -, author = "A. Rockwood and J. Owen" -, title = "Blending Surfaces in Solid Geometric Modeling" -, booktitle = "SIAM Conf. on Geometric Modeling and Robotics" -, site = "Albany, NY" -, year = 1985 -, update = "98.03 bibrelex" +, author = "A. Rockwood and J. Owen" +, title = "Blending Surfaces in Solid Geometric Modeling" +, booktitle = "SIAM Conf. on Geometric Modeling and Robotics" +, site = "Albany, NY" +, year = 1985 +, update = "98.03 bibrelex" } @techreport{rnp-falp-97 -, author = "A. Rodriguez-Chia and S. Nickel and J. Puerto" -, title = "A flexible Approach to Location Problems" -, type = "Report in Wirtschaftsmathematik" -, number = 26 -, institution = "University of Kaiserslautern, Department of Mathematics" -, year = 1997 -, update = "01.04 icking" +, author = "A. Rodriguez-Chia and S. Nickel and J. Puerto" +, title = "A flexible Approach to Location Problems" +, type = "Report in Wirtschaftsmathematik" +, number = 26 +, institution = "University of Kaiserslautern, Department of Mathematics" +, year = 1997 +, update = "01.04 icking" } @article{r-css-63 -, author = "C. A. Rogers" -, title = "Covering a sphere with spheres" -, journal = "Mathematika" -, volume = 10 -, year = 1963 -, pages = "157--164" -, update = "98.03 smid, 97.11 bibrelex" +, author = "C. A. Rogers" +, title = "Covering a sphere with spheres" +, journal = "Mathematika" +, volume = 10 +, year = 1963 +, pages = "157--164" +, update = "98.03 smid, 97.11 bibrelex" } @book{r-pc-64 -, author = "C. A. Rogers" -, title = "Packing and Covering" -, publisher = "Cambridge University Press" -, address = "Cambridge, England" -, year = 1964 -, keywords = "book" -, update = "98.03 smid" +, author = "C. A. Rogers" +, title = "Packing and Covering" +, publisher = "Cambridge University Press" +, address = "Cambridge, England" +, year = 1964 +, keywords = "book" +, update = "98.03 smid" } @book{ra-mecg-76 -, author = "D. F. Rogers and J. A. Adams" -, title = "Mathematical Elements for Computer Graphics" -, edition = "1st" -, publisher = "McGraw-Hill" -, year = 1976 -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "D. F. Rogers and J. A. Adams" +, title = "Mathematical Elements for Computer Graphics" +, edition = "1st" +, publisher = "McGraw-Hill" +, year = 1976 +, update = "98.11 bibrelex, 98.03 bibrelex" } @book{ra-mecg-90 -, author = "D. F. Rogers and J. A. Adams" -, title = "Mathematical Elements for Computer Graphics" -, edition = "2nd" -, publisher = "McGraw-Hill" -, address = "New York" -, year = 1990 -, update = "98.11 bibrelex, 98.07 orourke" +, author = "D. F. Rogers and J. A. Adams" +, title = "Mathematical Elements for Computer Graphics" +, edition = "2nd" +, publisher = "McGraw-Hill" +, address = "New York" +, year = 1990 +, update = "98.11 bibrelex, 98.07 orourke" } @book{r-trfec-67 -, author = "H. Rogers" -, title = "Theory of Recursive Functions and Effective Computability" -, publisher = "McGraw-Hill" -, address = "New York" -, year = 1967 -, update = "95.09 agarwal" +, author = "H. Rogers" +, title = "Theory of Recursive Functions and Effective Computability" +, publisher = "McGraw-Hill" +, address = "New York" +, year = 1967 +, update = "95.09 agarwal" } @mastersthesis{r-phsgt-97 -, author = "Andr{\'e} Rohe" -, title = "{Parallele} {Heuristiken} f{\"u}r sehr gro{\ss}e {Traveling} {Saleman} {Probleme}" -, type = "Diplomarbeit" -, school = "Universit{\"a}t Bonn, Institut f{\"u}r Diskrete Mathematik" -, year = 1997 -, url = "http://www.or.uni-bonn.de/home/rohe/diplom.ps.gz" -, keywords = "master thesis" -, update = "00.03 bibrelex" +, author = "Andr{\'e} Rohe" +, title = "{Parallele} {Heuristiken} f{\"u}r sehr gro{\ss}e {Traveling} {Saleman} {Probleme}" +, type = "Diplomarbeit" +, school = "Universit{\"a}t Bonn, Institut f{\"u}r Diskrete Mathematik" +, year = 1997 +, url = "http://www.or.uni-bonn.de/home/rohe/diplom.ps.gz" +, keywords = "master thesis" +, update = "00.03 bibrelex" } @article{r-pmsta-78 -, author = "F. J. Rohlf" -, title = "A probabilistic minimum spanning tree algorithm" -, journal = "Inform. Process. Lett." -, volume = 7 -, year = 1978 -, pages = "44--48" +, author = "F. J. Rohlf" +, title = "A probabilistic minimum spanning tree algorithm" +, journal = "Inform. Process. Lett." +, volume = 7 +, year = 1978 +, pages = "44--48" } @techreport{r-ceaca-77 -, author = "F. J. Rohlf" -, title = "Computational efficiency of agglomerative clustering algorithms" -, type = "Report" -, number = "RC 6831 (\#29312)" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1977 +, author = "F. J. Rohlf" +, title = "Computational efficiency of agglomerative clustering algorithms" +, type = "Report" +, number = "RC 6831 (\#29312)" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1977 } @article{r-hcums-73 -, author = "F. J. Rohlf" -, title = "Hierarchical clustering using the minimum spanning tree" -, journal = "Comput. J." -, volume = 16 -, year = 1973 -, pages = "93--95" +, author = "F. J. Rohlf" +, title = "Hierarchical clustering using the minimum spanning tree" +, journal = "Comput. J." +, volume = 16 +, year = 1973 +, pages = "93--95" } @article{r-lie-89 -, author = "J. Rohn" -, title = "Linear interval equations" -, journal = "Linear Algebra and its applications" -, volume = 126 -, year = 1989 -, pages = "39--78" -, update = "98.03 bibrelex" +, author = "J. Rohn" +, title = "Linear interval equations" +, journal = "Linear Algebra and its applications" +, volume = 126 +, year = 1989 +, pages = "39--78" +, update = "98.03 bibrelex" } @inproceedings{r-daplc-85 -, author = "H. Rohnert" -, title = "A Dynamization of the All-Pairs Least Cost Problem" -, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 182 -, publisher = "Springer-Verlag" -, year = 1985 -, pages = "279--286" -, update = "94.01 tamassia" +, author = "H. Rohnert" +, title = "A Dynamization of the All-Pairs Least Cost Problem" +, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 182 +, publisher = "Springer-Verlag" +, year = 1985 +, pages = "279--286" +, update = "94.01 tamassia" } @techreport{r-naspa-86 -, author = "H. Rohnert" -, title = "A new algorithm for shortest paths avoiding convex polygonal obstacles" -, type = "Report" -, number = "A86/02" -, institution = "Fachber. Inform., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1986 +, author = "H. Rohnert" +, title = "A new algorithm for shortest paths avoiding convex polygonal obstacles" +, type = "Report" +, number = "A86/02" +, institution = "Fachber. Inform., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1986 } @inproceedings{r-mdbp-87 -, author = "H. Rohnert" -, title = "Moving a disc between polygons" -, booktitle = "Proc. 1st Internat. Conf. Indust. Applied Math." -, site = "Paris, France" -, year = 1987 -, pages = "85--98" -, precedes = "r-mdbp-91" +, author = "H. Rohnert" +, title = "Moving a disc between polygons" +, booktitle = "Proc. 1st Internat. Conf. Indust. Applied Math." +, site = "Paris, France" +, year = 1987 +, pages = "85--98" +, precedes = "r-mdbp-91" } @article{r-mdbp-91 -, author = "H. Rohnert" -, title = "Moving a disc between polygons" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "182--191" -, succeeds = "r-mdbp-87" +, author = "H. Rohnert" +, title = "Moving a disc between polygons" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "182--191" +, succeeds = "r-mdbp-87" } @article{r-sppcp-86 -, author = "H. Rohnert" -, title = "Shortest paths in the plane with convex polygonal obstacles" -, journal = "Inform. Process. Lett." -, volume = 23 -, year = 1986 -, pages = "71--76" +, author = "H. Rohnert" +, title = "Shortest paths in the plane with convex polygonal obstacles" +, journal = "Inform. Process. Lett." +, volume = 23 +, year = 1986 +, pages = "71--76" } @article{r-tseas-88 -, author = "H. Rohnert" -, title = "Time and space efficient algorithms for shortest paths between convex polygons" -, journal = "Inform. Process. Lett." -, volume = 27 -, year = 1988 -, pages = "175--179" -, update = "98.11 bibrelex" +, author = "H. Rohnert" +, title = "Time and space efficient algorithms for shortest paths between convex polygons" +, journal = "Inform. Process. Lett." +, volume = 27 +, year = 1988 +, pages = "175--179" +, update = "98.11 bibrelex" } @phdthesis{r-svcvc-89 -, author = "A. S. Rojer" -, title = "Space-variant computer vision with a complex-logarithmic sensor geometry" -, school = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1989 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "A. S. Rojer" +, title = "Space-variant computer vision with a complex-logarithmic sensor geometry" +, school = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1989 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @inproceedings{rs-dcsvv-90 -, author = "A. S. Rojer and E. L. Schwartz" -, title = "Design considerations for a space-variant visual sensor with a complex-logarithmic sensor geometry" -, booktitle = "Proc. 10th IEEE Internat. Conf. Pattern Recogn." -, volume = 2 -, year = 1990 -, pages = "278--285" -, update = "98.07 bibrelex" +, author = "A. S. Rojer and E. L. Schwartz" +, title = "Design considerations for a space-variant visual sensor with a complex-logarithmic sensor geometry" +, booktitle = "Proc. 10th IEEE Internat. Conf. Pattern Recogn." +, volume = 2 +, year = 1990 +, pages = "278--285" +, update = "98.07 bibrelex" } @inproceedings{rww-obps-92 -, author = "J. Rokne and S. Wang and X. Wu" -, title = "Optimal bipartitions of point sets" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "11--16" -, cites = "aiks-fkpmd-91, abky-cabmm-88, a-dp-86, bh-cpcoe-89, c-acdl-83, dn-cgacp-85, eg-tsa-89, eos-calha-86, crw-gc-91, cgl-pgd-85, hs-ftp-91, mw-fobpp-91, ol-mcp-81, p-ortap-79, ZZZ" -, update = "98.07 bibrelex" +, author = "J. Rokne and S. Wang and X. Wu" +, title = "Optimal bipartitions of point sets" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "11--16" +, cites = "aiks-fkpmd-91, abky-cabmm-88, a-dp-86, bh-cpcoe-89, c-acdl-83, dn-cgacp-85, eg-tsa-89, eos-calha-86, crw-gc-91, cgl-pgd-85, hs-ftp-91, mw-fobpp-91, ol-mcp-81, p-ortap-79, ZZZ" +, update = "98.07 bibrelex" } @techreport{rw-oasdp-92 -, author = "J. Rokne and S. Z. Wang" -, title = "An optimal algorithm for the set diameter problem in three dimensions" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Univ. Calgary" -, address = "Calgary, AB" -, month = jun -, year = 1992 -, keywords = "diameter, antipodal pair, polyhedra, three-dimensional, geometric transformations, reciprocal search" +, author = "J. Rokne and S. Z. Wang" +, title = "An optimal algorithm for the set diameter problem in three dimensions" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Univ. Calgary" +, address = "Calgary, AB" +, month = jun +, year = 1992 +, keywords = "diameter, antipodal pair, polyhedra, three-dimensional, geometric transformations, reciprocal search" } @techreport{rww-lvirt-92 -, author = "J. Rokne and S. Z. Wang and X. Wu" -, title = "The largest-volume inscribed rooted tetrahedron in a convex polyhedron" -, type = "Research {Report}" -, number = "92/471/09" -, institution = "Dept. Comput. Sci., Univ. Calgary" -, address = "Calgary, AB" -, month = mar -, year = 1992 -, keywords = "design of algorithms, three-dimensional, tetrahedra, polyhedra, geometric transformations" -, abstract = "Given a polyhedron with $n$ vertices, we present an - algorithm for finding the maximum tetrahedron rooted on - a face of the polyhedron in $O(n \log n)$ time. For the - result we need to discuss a class of reciprocal search - problems." +, author = "J. Rokne and S. Z. Wang and X. Wu" +, title = "The largest-volume inscribed rooted tetrahedron in a convex polyhedron" +, type = "Research {Report}" +, number = "92/471/09" +, institution = "Dept. Comput. Sci., Univ. Calgary" +, address = "Calgary, AB" +, month = mar +, year = 1992 +, keywords = "design of algorithms, three-dimensional, tetrahedra, polyhedra, geometric transformations" +, abstract = "Given a polyhedron with $n$ vertices, we present an + algorithm for finding the maximum tetrahedron rooted on + a face of the polyhedron in $O(n \log n)$ time. For the + result we need to discuss a class of reciprocal search + problems." } @article{rww-flsc-90 -, author = "J. G. Rokne and B. Wyvill and X. Wu" -, title = "Fast line scan-conversion" -, journal = "ACM Trans. Graph." -, volume = 9 -, year = 1990 -, pages = "376--388" -, keywords = "digital geometry, computer graphics, design of algorithms, approximation, incrementation, lines, two-dimensional, empirical analysis" -, update = "94.05 smid" -, annote = "``an overall gain in speed of about 4 over the - original Bresenham algorithm''" +, author = "J. G. Rokne and B. Wyvill and X. Wu" +, title = "Fast line scan-conversion" +, journal = "ACM Trans. Graph." +, volume = 9 +, year = 1990 +, pages = "376--388" +, keywords = "digital geometry, computer graphics, design of algorithms, approximation, incrementation, lines, two-dimensional, empirical analysis" +, update = "94.05 smid" +, annote = "``an overall gain in speed of about 4 over the + original Bresenham algorithm''" } @book{r-kl-76 -, author = "D. Rolfsen" -, title = "Knots and Links" -, publisher = "Publish or Perish" -, address = "Berkeley, CA" -, year = 1976 -, update = "97.11 bibrelex" +, author = "D. Rolfsen" +, title = "Knots and Links" +, publisher = "Publish or Perish" +, address = "Berkeley, CA" +, year = 1976 +, update = "97.11 bibrelex" } @phdthesis{r-att-92 -, author = "Kathleen Romanik" -, title = "Approximate Testing Theory" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Maryland at College Park" -, address = "College Park, MD" -, month = aug -, year = 1992 -, note = "Technical Report CS-TR-2947/UMIACS-TR-92-89" -, keywords = "doctoral thesis, probing, point probes, approximate testing" -, update = "96.09 romanik" +, author = "Kathleen Romanik" +, title = "Approximate Testing Theory" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Maryland at College Park" +, address = "College Park, MD" +, month = aug +, year = 1992 +, note = "Technical Report CS-TR-2947/UMIACS-TR-92-89" +, keywords = "doctoral thesis, probing, point probes, approximate testing" +, update = "96.09 romanik" } @inproceedings{r-drvgh-95 -, author = "Kathleen Romanik" -, title = "Directed Rectangle-Visibility Graphs have Unbounded Dimension" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "163--167" -, keywords = "graph drawing, visibility, order" -, comments = "To appear in Discrete Appl. Math." -, update = "96.09 romanik, 95.09 jones" +, author = "Kathleen Romanik" +, title = "Directed Rectangle-Visibility Graphs have Unbounded Dimension" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "163--167" +, keywords = "graph drawing, visibility, order" +, comments = "To appear in Discrete Appl. Math." +, update = "96.09 romanik, 95.09 jones" } @inproceedings{r-dvrgh-95 -, author = "K. Romanik" -, title = "Directed VR-Representable Graphs have Unbounded Dimension" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "177--181" -, keywords = "graph drawing, visibility, order" -, update = "95.01 tamassia" +, author = "K. Romanik" +, title = "Directed VR-Representable Graphs have Unbounded Dimension" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "177--181" +, keywords = "graph drawing, visibility, order" +, update = "95.01 tamassia" } @techreport{r-gpts-95t -, author = "Kathleen Romanik" -, title = "Geometric Probing and Testing - A Survey" -, type = "Technical {Report}" -, number = "95-42" -, institution = "DIMACS, Rutgers Univ." -, month = sep -, year = 1995 -, keywords = "probing, testing" -, succeeds = "r-gpts-95i" -, update = "96.09 romanik" +, author = "Kathleen Romanik" +, title = "Geometric Probing and Testing - A Survey" +, type = "Technical {Report}" +, number = "95-42" +, institution = "DIMACS, Rutgers Univ." +, month = sep +, year = 1995 +, keywords = "probing, testing" +, succeeds = "r-gpts-95i" +, update = "96.09 romanik" } @inproceedings{r-gpts-95i -, author = "Kathleen Romanik" -, title = "Geometric Probing and Testing - A Survey" -, booktitle = "Proc. VI Congreso Espa{\~{n}}ol de Geometria Computacional" -, site = "Barcelona, Spain" -, month = jul -, year = 1995 -, pages = "" -, keywords = "probing, testing" -, precedes = "r-gpts-95t" -, update = "96.09 romanik" +, author = "Kathleen Romanik" +, title = "Geometric Probing and Testing - A Survey" +, booktitle = "Proc. VI Congreso Espa{\~{n}}ol de Geometria Computacional" +, site = "Barcelona, Spain" +, month = jul +, year = 1995 +, pages = "" +, keywords = "probing, testing" +, precedes = "r-gpts-95t" +, update = "96.09 romanik" } @inproceedings{rs-tos-92 -, author = "K. Romanik and S. Salzberg" -, title = "Testing orthogonal shapes" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "216--222" -, keywords = "probing, point probes, testing, orthogonal" -, precedes = "rs-tos-95" -, update = "96.09 devillers+romanik" +, author = "K. Romanik and S. Salzberg" +, title = "Testing orthogonal shapes" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "216--222" +, keywords = "probing, point probes, testing, orthogonal" +, precedes = "rs-tos-95" +, update = "96.09 devillers+romanik" } @article{rs-tos-95 -, author = "Kathleen Romanik and Steven Salzberg" -, title = "Testing Orthogonal Shapes" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "33--49" -, keywords = "probing, point probes, testing, orthogonal" -, succeeds = "rs-tos-92" -, update = "96.09 devillers+romanik" +, author = "Kathleen Romanik and Steven Salzberg" +, title = "Testing Orthogonal Shapes" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "33--49" +, keywords = "probing, point probes, testing, orthogonal" +, succeeds = "rs-tos-92" +, update = "96.09 devillers+romanik" } @inproceedings{rs-orlt-96 -, author = "Kathleen Romanik and Sven Schuierer" -, title = "Optimal Robot Localization in Trees" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "264--273" -, keywords = "localization, on-line" -, cites = "bcr-sp-93, bbfy-olnr-94, brs-plue-93, brs-nugt-91, bc-olaip-93, drw-lrmt-95, gmr-rlptd-92, kp-caasu-93, k-lpmr-94, mawm-ancmr-89, py-spwm-89, sn-anpld-89, st-aelup-85, tpbhss-mbldo-90, yd-cgalr-88, ZZZ" -, update = "97.11 bibrelex, 96.09 romanik, 96.05 efrat" +, author = "Kathleen Romanik and Sven Schuierer" +, title = "Optimal Robot Localization in Trees" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "264--273" +, keywords = "localization, on-line" +, cites = "bcr-sp-93, bbfy-olnr-94, brs-plue-93, brs-nugt-91, bc-olaip-93, drw-lrmt-95, gmr-rlptd-92, kp-caasu-93, k-lpmr-94, mawm-ancmr-89, py-spwm-89, sn-anpld-89, st-aelup-85, tpbhss-mbldo-90, yd-cgalr-88, ZZZ" +, update = "97.11 bibrelex, 96.09 romanik, 96.05 efrat" } @inproceedings{rs-orlt-96c -, author = "Kathleen Romanik and Sven Schuierer" -, title = "Optimal Robot Localization in Trees" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "91--93" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Kathleen Romanik and Sven Schuierer" +, title = "Optimal Robot Localization in Trees" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "91--93" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{rs-tgo-90t -, author = "K. Romanik and C. Smith" -, title = "Testing Geometric Objects" -, type = "Technical {Report}" -, number = "UMIACS-TR-90-69" -, institution = "University of Maryland, Institute for Advanced Computer Studies" -, month = may -, year = 1990 -, keywords = "probing, point probes, testing" -, precedes = "rs-tgo-90i" -, update = "96.09 romanik, 93.09 milone+mitchell" +, author = "K. Romanik and C. Smith" +, title = "Testing Geometric Objects" +, type = "Technical {Report}" +, number = "UMIACS-TR-90-69" +, institution = "University of Maryland, Institute for Advanced Computer Studies" +, month = may +, year = 1990 +, keywords = "probing, point probes, testing" +, precedes = "rs-tgo-90i" +, update = "96.09 romanik, 93.09 milone+mitchell" } @inproceedings{rs-tgo-90i -, author = "K. Romanik and C. Smith" -, title = "Testing geometric objects" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "14--19" -, keywords = "probing, point probes, testing" -, precedes = "rs-tgo-94" -, cites = "bbehw-clgcv-86, b-dscns-86, cy-sp-87, hw-ensrq-87, s-gp-88, v-tl-84, vc-ucrfe-71, ZZZ" -, update = "98.07 bibrelex, 96.09 devillers+romanik, 94.05 smid" +, author = "K. Romanik and C. Smith" +, title = "Testing geometric objects" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "14--19" +, keywords = "probing, point probes, testing" +, precedes = "rs-tgo-94" +, cites = "bbehw-clgcv-86, b-dscns-86, cy-sp-87, hw-ensrq-87, s-gp-88, v-tl-84, vc-ucrfe-71, ZZZ" +, update = "98.07 bibrelex, 96.09 devillers+romanik, 94.05 smid" } @article{rs-tgo-94 -, author = "Kathleen Romanik and Carl Smith" -, title = "Testing geometric objects" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "157--176" -, keywords = "probing, point probes, testing" -, succeeds = "rs-tgo-90i" -, update = "96.09 devillers+romanik" +, author = "Kathleen Romanik and Carl Smith" +, title = "Testing geometric objects" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "157--176" +, keywords = "probing, point probes, testing" +, succeeds = "rs-tgo-90i" +, update = "96.09 devillers+romanik" } @inproceedings{rv-uclta-93 -, author = "K. Romanik and J. S. Vitter" -, title = "Using Computational Learning Theory to Analyze the Testing Complexity of Program Segments" -, booktitle = "Proceedings of the 17th Annual IEEE International Computer Software and Applications Conference" -, nickname = "COMPSAC '93" -, month = nov -, year = 1993 -, pages = "367--373" -, keywords = "random testing, software complexity, Vapnik-Chervonenkis dimension, pseudo dimension" -, comments = "To appear in Inform. Comput." -, update = "96.09 romanik, 94.09 vitter" +, author = "K. Romanik and J. S. Vitter" +, title = "Using Computational Learning Theory to Analyze the Testing Complexity of Program Segments" +, booktitle = "Proceedings of the 17th Annual IEEE International Computer Software and Applications Conference" +, nickname = "COMPSAC '93" +, month = nov +, year = 1993 +, pages = "367--373" +, keywords = "random testing, software complexity, Vapnik-Chervonenkis dimension, pseudo dimension" +, comments = "To appear in Inform. Comput." +, update = "96.09 romanik, 94.09 vitter" } @techreport{rggr-esaac-94 -, author = "B. Romney and C. Godard and M. Goldwasser and G. Ramkumar" -, title = "An efficient system for analyzing assembly complexity" -, type = "Manuscript" -, institution = "Stanford Univ." -, address = "Stanford, CA" -, year = 1994 -, update = "98.03 bibrelex" +, author = "B. Romney and C. Godard and M. Goldwasser and G. Ramkumar" +, title = "An efficient system for analyzing assembly complexity" +, type = "Manuscript" +, institution = "Stanford Univ." +, address = "Stanford, CA" +, year = 1994 +, update = "98.03 bibrelex" } @phdthesis{r-tclir-90 -, author = "J. T. Rompel" -, title = "Techniques for Computing with Low-Independence Randomness" -, type = "Ph.{D}. Thesis" -, school = "Dept.\ of EECS, M.I.T." -, year = 1990 -, keywords = "doctoral thesis" -, update = "96.09 orourke" +, author = "J. T. Rompel" +, title = "Techniques for Computing with Low-Independence Randomness" +, type = "Ph.{D}. Thesis" +, school = "Dept.\ of EECS, M.I.T." +, year = 1990 +, keywords = "doctoral thesis" +, update = "96.09 orourke" } -%, address = "Oslo, Norway" -%, month = sep +%, address = "Oslo, Norway" +%, month = sep @article{rr-tmcps-94 -, author = "R. Ronfard and J. R. Rossignac" -, title = "Triangulating multiply-connected polygons: A simple yet efficient algorithm" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 3 -, year = 1994 -, pages = "C281--292" -, note = "Proc. Eurographics '94" -, update = "95.05 orourke" +, author = "R. Ronfard and J. R. Rossignac" +, title = "Triangulating multiply-connected polygons: A simple yet efficient algorithm" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 3 +, year = 1994 +, pages = "C281--292" +, note = "Proc. Eurographics '94" +, update = "95.05 orourke" } @article{r-bdcc-89 -, author = "C. Ronse" -, title = "A bibliography on digital and computational convexity" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 11 -, year = 1989 -, pages = "181--190" -, keywords = "bibliography" -, abstract = "This bibliography collects over 350 references of - books, papers in serial journals, and conference - papers, on convexity in relation to computer science. - The subject is subdivided into five topics: convexity - and straightness in digital images; convex hull - algorithms and their complexity; other computational - problems related to convexity; miscellaneous - applications; general mathematical sources. These - references range in time from 1961 to September 1988." +, author = "C. Ronse" +, title = "A bibliography on digital and computational convexity" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 11 +, year = 1989 +, pages = "181--190" +, keywords = "bibliography" +, abstract = "This bibliography collects over 350 references of + books, papers in serial journals, and conference + papers, on convexity in relation to computer science. + The subject is subdivided into five topics: convexity + and straightness in digital images; convex hull + algorithms and their complexity; other computational + problems related to convexity; miscellaneous + applications; general mathematical sources. These + references range in time from 1961 to September 1988." } @article{r-srsrf-77 -, author = "J. Rooney" -, title = "A Survey of Representations of Spatial Rotation about a Fixed Point" -, journal = "Environment and Planning B" -, volume = 4 -, year = 1977 -, pages = "185--210" -, update = "98.11 bibrelex" +, author = "J. Rooney" +, title = "A Survey of Representations of Spatial Rotation about a Fixed Point" +, journal = "Environment and Planning B" +, volume = 4 +, year = 1977 +, pages = "185--210" +, update = "98.11 bibrelex" } @phdthesis{r-dvd-91 -, author = "T. Roos" -, title = "Dynamic {Voronoi} diagrams" -, type = "Ph.{D}. Thesis" -, school = "Bayerische Julius-Maximilians-Univ." -, address = "W{\"u}rzburg, Germany" -, month = sep -, year = 1991 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "T. Roos" +, title = "Dynamic {Voronoi} diagrams" +, type = "Ph.{D}. Thesis" +, school = "Bayerische Julius-Maximilians-Univ." +, address = "W{\"u}rzburg, Germany" +, month = sep +, year = 1991 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @inproceedings{r-knnvd-89 -, author = "T. Roos" -, title = "$k$-Nearest-Neighbor {Voronoi} Diagrams for Sets of Convex Polygons, Line Segments and Points" -, booktitle = "Proc. 15th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 411 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "330--340" -, update = "99.11 bibrelex, 98.11 smid, 94.05 smid, 93.09 milone+mitchell" +, author = "T. Roos" +, title = "$k$-Nearest-Neighbor {Voronoi} Diagrams for Sets of Convex Polygons, Line Segments and Points" +, booktitle = "Proc. 15th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 411 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "330--340" +, update = "99.11 bibrelex, 98.11 smid, 94.05 smid, 93.09 milone+mitchell" } @inproceedings{r-knnvd-89c -, author = "T. Roos" -, title = "{$k$}-Nearest-Neighbor {Voronoi} Diagrams for Sets of Convex Polygons, Line Segments, and Points" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "T. Roos" +, title = "{$k$}-Nearest-Neighbor {Voronoi} Diagrams for Sets of Convex Polygons, Line Segments, and Points" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{r-tbvdm-93 -, author = "T. Roos" -, title = "Tighter bounds on {Voronoi} diagrams of moving points" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "358--363" -, cites = "ar-vdmph-92, e-acg-87, fl-vdmpp-91, gs-pmgsc-85, gmr-vdmpp-92, hd-kgde-60, ii-vdmp-90, k-cddvd-80, o-cgc12-91a, r-vdds-90, r-dvd-91, r-vdds-93, ra-mphds-92, a-tddvd-91, s-cvdhd-82, ZZZ" -, update = "99.11 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" +, author = "T. Roos" +, title = "Tighter bounds on {Voronoi} diagrams of moving points" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "358--363" +, cites = "ar-vdmph-92, e-acg-87, fl-vdmpp-91, gs-pmgsc-85, gmr-vdmpp-92, hd-kgde-60, ii-vdmp-90, k-cddvd-80, o-cgc12-91a, r-vdds-90, r-dvd-91, r-vdds-93, ra-mphds-92, a-tddvd-91, s-cvdhd-82, ZZZ" +, update = "99.11 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" } @mastersthesis{r-vd-88 -, author = "T. Roos" -, title = "Voronoi {Diagramme}" -, school = "Universit{\"a}t W{\"u}rzburg" -, address = "W{\"u}rzburg, West Germany" -, year = 1988 -, note = "Diploma Thesis" -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "T. Roos" +, title = "Voronoi {Diagramme}" +, school = "Universit{\"a}t W{\"u}rzburg" +, address = "W{\"u}rzburg, West Germany" +, year = 1988 +, note = "Diploma Thesis" +, keywords = "master thesis" +, update = "98.07 bibrelex" } @inproceedings{r-vdds-90 -, author = "T. Roos" -, title = "Voronoi diagrams over dynamic scenes" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "209--213" -, cites = "agss-ltacv-87, ce-iacko-87, dl-gvdp-78, e-esaa-86, e-acg-87, f-savd-86, gkln-dvd-83, gs-pmgsc-85, hd-kgde-60, l-knnvd-82, n-cgia-88, ps-cgi-85, r-vd-88, r-knnvd-89, sh-cpp-75, y-oavds-87, ZZZ" -, update = "98.07 bibrelex" +, author = "T. Roos" +, title = "Voronoi diagrams over dynamic scenes" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "209--213" +, cites = "agss-ltacv-87, ce-iacko-87, dl-gvdp-78, e-esaa-86, e-acg-87, f-savd-86, gkln-dvd-83, gs-pmgsc-85, hd-kgde-60, l-knnvd-82, n-cgia-88, ps-cgi-85, r-vd-88, r-knnvd-89, sh-cpp-75, y-oavds-87, ZZZ" +, update = "98.07 bibrelex" } @article{r-vdds-93 -, author = "T. Roos" -, title = "Voronoi diagrams over dynamic scenes" -, journal = "Discrete Appl. Math." -, volume = 43 -, year = 1993 -, pages = "243--259" -, succeeds = "r-vdds-90" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "T. Roos" +, title = "Voronoi diagrams over dynamic scenes" +, journal = "Discrete Appl. Math." +, volume = 43 +, year = 1993 +, pages = "243--259" +, succeeds = "r-vdds-90" +, update = "98.03 mitchell, 95.01 mitchell" } @inproceedings{ra-mphds-92 -, author = "T. Roos and G. Albers" -, title = "Maintaining Proximity in Higher Dimensional Spaces" -, booktitle = "Proc. 17th Internat. Sympos. Math. Found. Comput. Sci." -, site = "Prague, Czechoslovakia" -, series = "Lecture Notes Comput. Sci." -, volume = 629 -, month = aug -, year = 1992 -, pages = "483--493" -, update = "98.11 bibrelex" +, author = "T. Roos and G. Albers" +, title = "Maintaining Proximity in Higher Dimensional Spaces" +, booktitle = "Proc. 17th Internat. Sympos. Math. Found. Comput. Sci." +, site = "Prague, Czechoslovakia" +, series = "Lecture Notes Comput. Sci." +, volume = 629 +, month = aug +, year = 1992 +, pages = "483--493" +, update = "98.11 bibrelex" } @inproceedings{rn-dvdmp-91 -, author = "Thomas Roos and Hartmut Noltemeier" -, title = "Dynamic {Voronoi} diagrams in motion planning" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "227--236" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Thomas Roos and Hartmut Noltemeier" +, title = "Dynamic {Voronoi} diagrams in motion planning" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "227--236" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @incollection{rn-dvdmp-92 -, author = "T. Roos and H. Noltemeier" -, title = "Dynamic {Voronoi} diagrams in motion planning" -, booktitle = "Proc. 15th IFIP Conf." -, series = "Lecture Notes in Control and Information Science" -, volume = 180 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "102--111" -, update = "94.01 rote" +, author = "T. Roos and H. Noltemeier" +, title = "Dynamic {Voronoi} diagrams in motion planning" +, booktitle = "Proc. 15th IFIP Conf." +, series = "Lecture Notes in Control and Information Science" +, volume = 180 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "102--111" +, update = "94.01 rote" } @techreport{rw-cmkla-92 -, author = "T. Roos and P. Widmayer" -, title = "Computing the minimum of the $k$-level of an arrangement with applications" -, type = "Report" -, number = 185 -, institution = "Inst. Inform., Eidgen{\"o}ssische Tech. Hochschule Z{\"u}rich" -, address = "Z{\"u}rich, Switzerland" -, year = 1992 -, update = "93.05 smid" +, author = "T. Roos and P. Widmayer" +, title = "Computing the minimum of the $k$-level of an arrangement with applications" +, type = "Report" +, number = 185 +, institution = "Inst. Inform., Eidgen{\"o}ssische Tech. Hochschule Z{\"u}rich" +, address = "Z{\"u}rich, Switzerland" +, year = 1992 +, update = "93.05 smid" } @article{rw-cmkla-94 -, author = "T. Roos and P. Widmayer" -, title = "$k$-violation linear programming" -, journal = "Inform. Process. Lett." -, volume = 52 -, year = 1994 -, pages = "109--114" -, update = "98.07 agarwal" +, author = "T. Roos and P. Widmayer" +, title = "$k$-violation linear programming" +, journal = "Inform. Process. Lett." +, volume = 52 +, year = 1994 +, pages = "109--114" +, update = "98.07 agarwal" } @inproceedings{rm-vvdgv-94 -, author = "Waldir L. Roque and Clovis Maliska Jr." -, title = "Visualization of {Vorononi} Diagrams Generated by {VORONOI2}" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "8--11" -, update = "00.11 smid, 00.07 icking" +, author = "Waldir L. Roque and Clovis Maliska Jr." +, title = "Visualization of {Vorononi} Diagrams Generated by {VORONOI2}" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "8--11" +, update = "00.11 smid, 00.07 icking" } @inproceedings{rt-adsrc-98 -, author = "Llu{\'\i}s Ros and Frederico Thomas" -, title = "Applying Delta/Star Reductions for Checking the Spatial Realizability of Line Drawings" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "127--129" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Llu{\'\i}s Ros and Frederico Thomas" +, title = "Applying Delta/Star Reductions for Checking the Spatial Realizability of Line Drawings" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "127--129" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{r-aadss-74 -, author = "D. Roselle" -, title = "An algorithmic approach to {Davenport--Schinzel} sequences" -, journal = "Utilitas Math." -, volume = 6 -, year = 1974 -, pages = "91--93" -, update = "95.09 agarwal" +, author = "D. Roselle" +, title = "An algorithmic approach to {Davenport--Schinzel} sequences" +, journal = "Utilitas Math." +, volume = 6 +, year = 1974 +, pages = "91--93" +, update = "95.09 agarwal" } % ### others? @inproceedings{rs-rdss-70 -, author = "D. Roselle and R. Stanton" -, title = "Results on {Davenport--Schinzel} sequences" -, editor = "R. Mullin and others" -, booktitle = "Congressus Numer. I, Proc. Louisiana Conf. on Combinatorics, Graph Theory, and Computing" -, year = 1970 -, pages = "249--267" -, update = "95.09 agarwal" +, author = "D. Roselle and R. Stanton" +, title = "Results on {Davenport--Schinzel} sequences" +, editor = "R. Mullin and others" +, booktitle = "Congressus Numer. I, Proc. Louisiana Conf. on Combinatorics, Graph Theory, and Computing" +, year = 1970 +, pages = "249--267" +, update = "95.09 agarwal" } @article{rs-spdss-71 -, author = "D. Roselle and R. Stanton" -, title = "Some properties of {Davenport--Schinzel} sequences" -, journal = "Acta Arithmetica" -, volume = 17 -, year = 1971 -, pages = "355--362" -, update = "95.09 agarwal" +, author = "D. Roselle and R. Stanton" +, title = "Some properties of {Davenport--Schinzel} sequences" +, journal = "Acta Arithmetica" +, volume = 17 +, year = 1971 +, pages = "355--362" +, update = "95.09 agarwal" } @article{r-tdvcs-83 -, author = "A. L. Rosenberg" -, title = "Three-Dimensional {VLSI}: a case study" -, journal = "J. ACM" -, volume = 30 -, number = 3 -, year = 1983 -, pages = "397--416" -, keywords = "graph drawing, 3D, orthogonal" -, update = "96.09 tamassia" +, author = "A. L. Rosenberg" +, title = "Three-Dimensional {VLSI}: a case study" +, journal = "J. ACM" +, volume = 30 +, number = 3 +, year = 1983 +, pages = "397--416" +, keywords = "graph drawing, 3D, orthogonal" +, update = "96.09 tamassia" } @article{rl-cvp-73 -, author = "B. Rosenberg and D. J. Landridge" -, title = "A computational view of perception" -, journal = "Perception" -, volume = 2 -, year = 1973 -, pages = "415--424" +, author = "B. Rosenberg and D. J. Landridge" +, title = "A computational view of perception" +, journal = "Perception" +, volume = 2 +, year = 1973 +, pages = "415--424" } @mastersthesis{r-licab-90 -, author = "C. Rosenberg" -, title = "A lossy image compression algorithm based on nonuniform sampling and interpolation of image intensity surfaces" -, school = "Electrical Engineering and Computer Science, Mass. Inst. of Tech." -, year = 1990 -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "C. Rosenberg" +, title = "A lossy image compression algorithm based on nonuniform sampling and interpolation of image intensity surfaces" +, school = "Electrical Engineering and Computer Science, Mass. Inst. of Tech." +, year = 1990 +, keywords = "master thesis" +, update = "98.07 bibrelex" } @article{rs-lbatc-75 -, author = "I. G. Rosenberg and F. Stenger" -, title = "A lower bound on the angles of triangles constructed by bisecting the longes side" -, journal = "Math. Comput." -, volume = 29 -, year = 1975 -, pages = "390--395" -, update = "98.11 bibrelex" +, author = "I. G. Rosenberg and F. Stenger" +, title = "A lower bound on the angles of triangles constructed by bisecting the longes side" +, journal = "Math. Comput." +, volume = 29 +, year = 1975 +, pages = "390--395" +, update = "98.11 bibrelex" } @mastersthesis{r-okvds-88 -, author = "H. Rosenberger" -, title = "Order $k$ {Voronoi} diagrams of sites with additive weights in the plane" -, type = "M.{Sc}. Thesis" -, school = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1988 -, note = "Report UIUCDCS-R-88-1431" -, keywords = "discrete and computational geometry, Voronoi diagrams, order-$k$, additive weight, combinatorial complexity, plane-sweep" -, precedes = "r-okvds-91" -, update = "93.05 jones" +, author = "H. Rosenberger" +, title = "Order $k$ {Voronoi} diagrams of sites with additive weights in the plane" +, type = "M.{Sc}. Thesis" +, school = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1988 +, note = "Report UIUCDCS-R-88-1431" +, keywords = "discrete and computational geometry, Voronoi diagrams, order-$k$, additive weight, combinatorial complexity, plane-sweep" +, precedes = "r-okvds-91" +, update = "93.05 jones" } @article{r-okvds-91 -, author = "H. Rosenberger" -, title = "Order $k$ {Voronoi} diagrams of sites with additive weights in the plane" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "153--181" -, succeeds = "r-okvds-88" +, author = "H. Rosenberger" +, title = "Order $k$ {Voronoi} diagrams of sites with additive weights in the plane" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "153--181" +, succeeds = "r-okvds-88" } @techreport{r-tvgps-85 -, author = "H. Rosenberger" -, title = "Topological versus geometrical plane-sweep" -, type = "Manuscript" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1985 +, author = "H. Rosenberger" +, title = "Topological versus geometrical plane-sweep" +, type = "Manuscript" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1985 } @article{rs-shs-82 -, author = "J. Rosenblatt and P. Seymour" -, title = "The structure of homometric sets" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 3 -, number = 3 -, year = 1982 -, pages = "343--350" -, update = "97.11 bibrelex" +, author = "J. Rosenblatt and P. Seymour" +, title = "The structure of homometric sets" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 3 +, number = 3 +, year = 1982 +, pages = "343--350" +, update = "97.11 bibrelex" } @inproceedings{rr-mcp-92 -, author = "A. Rosenbloom and D. Rappaport" -, title = "Moldable and castable polygons" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "322--327" -, precedes = "rr-mcp-94" -, cites = "cd-icott-87, hs-ompc-91, ll-ccmp-84, ps-cgi-85, ps-tspm-81, crs-mpc-90, ZZZ" -, update = "98.07 bibrelex, 96.09 devillers" +, author = "A. Rosenbloom and D. Rappaport" +, title = "Moldable and castable polygons" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "322--327" +, precedes = "rr-mcp-94" +, cites = "cd-icott-87, hs-ompc-91, ll-ccmp-84, ps-cgi-85, ps-tspm-81, crs-mpc-90, ZZZ" +, update = "98.07 bibrelex, 96.09 devillers" } @article{r-cdp-70 -, author = "A. Rosenfeld" -, title = "Connectivity in digital pictures" -, journal = "J. ACM" -, volume = 17 -, year = 1970 -, pages = "146--160" +, author = "A. Rosenfeld" +, title = "Connectivity in digital pictures" +, journal = "J. ACM" +, volume = 17 +, year = 1970 +, pages = "146--160" } @inproceedings{r-dg-92 -, author = "A. Rosenfeld" -, title = "Digital geometry" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = 73 -, cites = "ZZZ" -, update = "97.11 bibrelex" +, author = "A. Rosenfeld" +, title = "Digital geometry" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = 73 +, cites = "ZZZ" +, update = "97.11 bibrelex" } @article{r-dsls-74 -, author = "A. Rosenfeld" -, title = "Digital straight line segments" -, journal = "IEEE Trans. Comput." -, volume = "C-23" -, year = 1974 -, pages = "1264--1269" -, update = "97.11 bibrelex" +, author = "A. Rosenfeld" +, title = "Digital straight line segments" +, journal = "IEEE Trans. Comput." +, volume = "C-23" +, year = 1974 +, pages = "1264--1269" +, update = "97.11 bibrelex" } @article{rd-hcaat-83 -, author = "A. Rosenfeld and P. {De La Torre}" -, title = "Histogram concavity analysis as an aid in threshold selection" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-13" -, year = 1983 -, pages = "231--235" +, author = "A. Rosenfeld and P. {De La Torre}" +, title = "Histogram concavity analysis as an aid in threshold selection" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-13" +, year = 1983 +, pages = "231--235" } @book{rk-dpp-82 -, author = "A. Rosenfeld and A. C. Kak" -, title = "Digital picture processing" -, volume = "1--2" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1982 -, update = "98.07 bibrelex" +, author = "A. Rosenfeld and A. C. Kak" +, title = "Digital picture processing" +, volume = "1--2" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1982 +, update = "98.07 bibrelex" } @article{rp-sodpp-66 -, author = "A. Rosenfeld and J. L. Pfaltz" -, title = "Sequential operations in digital picture processing" -, journal = "J. ACM" -, volume = 13 -, year = 1966 -, pages = "471--494" +, author = "A. Rosenfeld and J. L. Pfaltz" +, title = "Sequential operations in digital picture processing" +, journal = "J. ACM" +, volume = 13 +, year = 1966 +, pages = "471--494" } @techreport{rssw-ahdsg-82 -, author = "A. Rosenfeld and H. Samet and C. Shaffer and R. E. Webber" -, title = "Application of hierarchical data structures to geographical information systems" -, type = "Computer Science" -, number = "TR--1197" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = jun -, year = 1982 -, update = "96.05 efrat" +, author = "A. Rosenfeld and H. Samet and C. Shaffer and R. E. Webber" +, title = "Application of hierarchical data structures to geographical information systems" +, type = "Computer Science" +, number = "TR--1197" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = jun +, year = 1982 +, update = "96.05 efrat" } @techreport{rssw-ahdsg-83 -, author = "A. Rosenfeld and H. Samet and C. Shaffer and R. E. Webber" -, title = "Application of hierarchical data structures to geographical information systems: phase II" -, type = "Computer Science Department" -, number = "TR--1327" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = sep -, year = 1983 -, update = "96.05 efrat" +, author = "A. Rosenfeld and H. Samet and C. Shaffer and R. E. Webber" +, title = "Application of hierarchical data structures to geographical information systems: phase II" +, type = "Computer Science Department" +, number = "TR--1327" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = sep +, year = 1983 +, update = "96.05 efrat" } @book{rs-sp-77 -, author = "B. A. Rosenfeld and N. D. Sergeeva" -, title = "Stereographic Projection" -, publisher = "Mir Publishers" -, address = "Moscow" -, year = 1977 -, update = "98.03 bibrelex" +, author = "B. A. Rosenfeld and N. D. Sergeeva" +, title = "Stereographic Projection" +, publisher = "Mir Publishers" +, address = "Moscow" +, year = 1977 +, update = "98.03 bibrelex" } @article{rsl-ashts-77 -, author = "D. J. Rosenkrantz and R. E. Stearns and P. M. Lewis" -, title = "An analysis of several heuristics for the traveling salesman problem" -, journal = "SIAM J. Comput." -, volume = 6 -, year = 1977 -, pages = "563--581" -, succeeds = "rsl-aatsp-74" +, author = "D. J. Rosenkrantz and R. E. Stearns and P. M. Lewis" +, title = "An analysis of several heuristics for the traveling salesman problem" +, journal = "SIAM J. Comput." +, volume = 6 +, year = 1977 +, pages = "563--581" +, succeeds = "rsl-aatsp-74" } @inproceedings{rsl-aatsp-74 -, author = "D. J. Rosenkrantz and R. E. Stearns and P. M. Lewis" -, title = "Approximate algorithms for the traveling salesperson problem" -, booktitle = "Proc. 15th Annu. IEEE Sympos. Switching Automata Theory" -, year = 1974 -, pages = "33--42" -, precedes = "rsl-ashts-77" +, author = "D. J. Rosenkrantz and R. E. Stearns and P. M. Lewis" +, title = "Approximate algorithms for the traveling salesperson problem" +, booktitle = "Proc. 15th Annu. IEEE Sympos. Switching Automata Theory" +, year = 1974 +, pages = "33--42" +, precedes = "rsl-ashts-77" } @incollection{r-ppdti-84 -, author = "P. Rosenstiehl" -, title = "Planar permutations defined by two intersecting {Jordan} Curves" -, booktitle = "Graph Theory and Combinatorics" -, publisher = "Academic Press" -, address = "London, UK" -, year = 1984 -, pages = "259--271" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "P. Rosenstiehl" +, title = "Planar permutations defined by two intersecting {Jordan} Curves" +, booktitle = "Graph Theory and Combinatorics" +, publisher = "Academic Press" +, address = "London, UK" +, year = 1984 +, pages = "259--271" +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{rt-gcphg-84 -, author = "P. Rosenstiehl and R. E. Tarjan" -, title = "Gauss codes, planar {Hamiltonian} graphs, and stack-sortable permutations" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "375--390" -, update = "98.03 bibrelex" +, author = "P. Rosenstiehl and R. E. Tarjan" +, title = "Gauss codes, planar {Hamiltonian} graphs, and stack-sortable permutations" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "375--390" +, update = "98.03 bibrelex" } @article{rt-rplbo-86 -, author = "P. Rosenstiehl and R. E. Tarjan" -, title = "Rectilinear Planar Layouts and Bipolar Orientations of Planar Graphs" -, journal = "Discrete Comput. Geom." -, volume = 1 -, number = 4 -, year = 1986 -, pages = "343--353" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "P. Rosenstiehl and R. E. Tarjan" +, title = "Rectilinear Planar Layouts and Bipolar Orientations of Planar Graphs" +, journal = "Discrete Comput. Geom." +, volume = 1 +, number = 4 +, year = 1986 +, pages = "343--353" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @phdthesis{r-bosm-85 -, author = "J. Rossignac" -, title = "Blending and Offsetting Solid Models" -, school = "Dept. Elect. Engrg., Univ. Rochester" -, address = "Rochester, NY" -, month = jul -, year = 1985 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "J. Rossignac" +, title = "Blending and Offsetting Solid Models" +, school = "Dept. Elect. Engrg., Univ. Rochester" +, address = "Rochester, NY" +, month = jul +, year = 1985 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @incollection{ro-sdimp-89i -, author = "J. Rossignac and M. O'Connor" -, title = "SGC: {A} dimension-independent model for pointsets with internal structures and incomplete boundaries" -, editor = "M. Wozny and J. Turner and K. Preiss" -, booktitle = "Geometric Modeling for Product Engineering" -, publisher = "North-Holland" -, year = 1989 -, precedes = "or-sdimp-89t" -, update = "98.07 bibrelex" +, author = "J. Rossignac and M. O'Connor" +, title = "SGC: {A} dimension-independent model for pointsets with internal structures and incomplete boundaries" +, editor = "M. Wozny and J. Turner and K. Preiss" +, booktitle = "Geometric Modeling for Product Engineering" +, publisher = "North-Holland" +, year = 1989 +, precedes = "or-sdimp-89t" +, update = "98.07 bibrelex" } @article{rr-crbsm-84 -, author = "J. Rossignac and A. Requicha" -, title = "Constant Radius Blending in Solid Modeling" -, journal = "Computers in Mechanical Engineering" -, volume = 2 -, year = 1984 -, pages = "655--673" -, update = "98.03 bibrelex" +, author = "J. Rossignac and A. Requicha" +, title = "Constant Radius Blending in Solid Modeling" +, journal = "Computers in Mechanical Engineering" +, volume = 2 +, year = 1984 +, pages = "655--673" +, update = "98.03 bibrelex" } @article{rr-oosm-86 -, author = "J. Rossignac and A. Requicha" -, title = "Offsetting operations in solid modeling" -, journal = "Comput. Aided Geom. Design" -, volume = 3 -, year = 1986 -, pages = "129--148" -, update = "98.07 bibrelex" +, author = "J. Rossignac and A. Requicha" +, title = "Offsetting operations in solid modeling" +, journal = "Comput. Aided Geom. Design" +, volume = 3 +, year = 1986 +, pages = "129--148" +, update = "98.07 bibrelex" } @inproceedings{r-cirfd-89 -, author = "J. R. Rossignac" -, title = "Considerations on the interactive rendering of four-dimensional volumes" -, booktitle = "CH Volume Visualization Workshop" -, year = 1989 -, pages = "67--76" -, update = "98.07 bibrelex" +, author = "J. R. Rossignac" +, title = "Considerations on the interactive rendering of four-dimensional volumes" +, booktitle = "CH Volume Visualization Workshop" +, year = 1989 +, pages = "67--76" +, update = "98.07 bibrelex" } @inproceedings{r-cfitf-96 -, author = "J. R. Rossignac" -, title = "CSG formulations for identifying and for trimming faces of {CSG} models" -, booktitle = "CSG'96" -, site = "Winchester, UK" -, publisher = "Information Geometers" -, month = apr -, year = 1996 -, update = "98.07 bibrelex" +, author = "J. R. Rossignac" +, title = "CSG formulations for identifying and for trimming faces of {CSG} models" +, booktitle = "CSG'96" +, site = "Winchester, UK" +, publisher = "Information Geometers" +, month = apr +, year = 1996 +, update = "98.07 bibrelex" } @techreport{rb-mr3da-92 -, author = "J. R. Rossignac and P. Borrel" -, title = "Multi-Resolution {3D} Approximations for Rendering Complex Scenes" -, type = "Technical {Report}" -, number = "RC 17697 (\#77951)" -, institution = "IBM Research Division, T. J. Watson Research Center" -, address = "Yorktown Heights, NY 10958" -, year = 1992 -, update = "95.01 mitchell" +, author = "J. R. Rossignac and P. Borrel" +, title = "Multi-Resolution {3D} Approximations for Rendering Complex Scenes" +, type = "Technical {Report}" +, number = "RC 17697 (\#77951)" +, institution = "IBM Research Division, T. J. Watson Research Center" +, address = "Yorktown Heights, NY 10958" +, year = 1992 +, update = "95.01 mitchell" } @article{rr-pccgm-87 -, author = "J. R. Rossignac and A. A. G. Requicha" -, title = "Piecewise-circular curves for geometric modeling" -, journal = "IBM J. Res. Develop." -, volume = 31 -, year = 1987 -, pages = "296--313" +, author = "J. R. Rossignac and A. A. G. Requicha" +, title = "Piecewise-circular curves for geometric modeling" +, journal = "IBM J. Res. Develop." +, volume = 31 +, year = 1987 +, pages = "296--313" } @techreport{rv-azcsg-86 -, author = "J. R. Rossignac and H. B. Voelcker" -, title = "Active zones in constructive solid geometry for redundancy and interference detection" -, type = "Report" -, number = "RC 11991 (\#53914)" -, institution = "Auto. Res. Sci., IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1986 -, keywords = "computer graphics" +, author = "J. R. Rossignac and H. B. Voelcker" +, title = "Active zones in constructive solid geometry for redundancy and interference detection" +, type = "Report" +, number = "RC 11991 (\#53914)" +, institution = "Auto. Res. Sci., IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1986 +, keywords = "computer graphics" } @techreport{rv-azcab-88 -, author = "J. R. Rossignac and H. B. Voelcker" -, title = "Active Zones in {CSG} for Accelerating Boundary Evaluation, Redundancy Evaluation, Interference Detection, and Shading Algorithms" -, number = "RC-13490" -, institution = "IBM Thomas J. Watson Research Center" -, address = "Yorktown Heights, NY 10598, USA" -, month = feb -, year = 1988 -, comments = "appears in ACM Trans. on Graphics, Jan '89" -, update = "93.09 held" +, author = "J. R. Rossignac and H. B. Voelcker" +, title = "Active Zones in {CSG} for Accelerating Boundary Evaluation, Redundancy Evaluation, Interference Detection, and Shading Algorithms" +, number = "RC-13490" +, institution = "IBM Thomas J. Watson Research Center" +, address = "Yorktown Heights, NY 10598, USA" +, month = feb +, year = 1988 +, comments = "appears in ACM Trans. on Graphics, Jan '89" +, update = "93.09 held" } @inproceedings{r-cfecp-92 -, author = "V. Rosta" -, title = "Combinatorial face enumeration in convex polytopes" -, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" -, site = "Kyoto, Japan" -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "V. Rosta" +, title = "Combinatorial face enumeration in convex polytopes" +, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" +, site = "Kyoto, Japan" +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{r-nmbph-92 -, author = "G{\"u}nter Rote" -, title = "A new metric between polygons, and how to compute it" -, booktitle = "Proc. 19th Internat. Colloq. Automata Lang. Program." -, series = "Lecture Notes Comput. Sci." -, volume = 623 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "404--415" -, keywords = "bounded Lipschitz distance, Kantorovich Rubinshtein metric, transportation metric" -, update = "98.03 mitchell, 97.03 rote, 96.05 agarwal, 93.09 milone+mitchell+rote" -, abstract = "The bounded Lipschitz distance can be used as a distance - measure between polygons or between functions. It has several - properties which make it attractive to use from the viewpoint of - applications like pattern matching or quality control of woven - fabrics. There are several alternative definitions of the metric, - some of which are interesting in their own right. The bounded - Lipschitz distance is related to the Monge-Kantorovich mass - transfer problem, whose history goes back to 18th century work - of G. Monge and to L. Kantorovitch. - We also give an algorithm for computing the metric, and we - discuss possible implementations." +, author = "G{\"u}nter Rote" +, title = "A new metric between polygons, and how to compute it" +, booktitle = "Proc. 19th Internat. Colloq. Automata Lang. Program." +, series = "Lecture Notes Comput. Sci." +, volume = 623 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "404--415" +, keywords = "bounded Lipschitz distance, Kantorovich Rubinshtein metric, transportation metric" +, update = "98.03 mitchell, 97.03 rote, 96.05 agarwal, 93.09 milone+mitchell+rote" +, abstract = "The bounded Lipschitz distance can be used as a distance + measure between polygons or between functions. It has several + properties which make it attractive to use from the viewpoint of + applications like pattern matching or quality control of woven + fabrics. There are several alternative definitions of the metric, + some of which are interesting in their own right. The bounded + Lipschitz distance is related to the Monge-Kantorovich mass + transfer problem, whose history goes back to 18th century work + of G. Monge and to L. Kantorovitch. + We also give an algorithm for computing the metric, and we + discuss possible implementations." } @article{r-cmhdb-91 -, author = "G{\"u}nter Rote" -, title = "Computing the minimum {Hausdorff} distance between two point sets on a line under translation" -, journal = "Inform. Process. Lett." -, volume = 38 -, number = 3 -, month = may -, year = 1991 -, pages = "123--127" -, keywords = "pattern recognition, pattern matching" -, cites = "hk-cmhdp-90" -, update = "98.11 bibrelex, 98.03 mitchell, 94.01 rote, 93.09 rote" -, abstract = "Given two sets of points on a line, we want to translate - one of them so that their Hausdorff distance (the maximum - of the distances from a point in any of the sets to the - nearest point in the other set) is as small as possible. - We present an optimal $O(n \log n)$ algorithm for this - problem." +, author = "G{\"u}nter Rote" +, title = "Computing the minimum {Hausdorff} distance between two point sets on a line under translation" +, journal = "Inform. Process. Lett." +, volume = 38 +, number = 3 +, month = may +, year = 1991 +, pages = "123--127" +, keywords = "pattern recognition, pattern matching" +, cites = "hk-cmhdp-90" +, update = "98.11 bibrelex, 98.03 mitchell, 94.01 rote, 93.09 rote" +, abstract = "Given two sets of points on a line, we want to translate + one of them so that their Hausdorff distance (the maximum + of the distances from a point in any of the sets to the + nearest point in the other set) is as small as possible. + We present an optimal $O(n \log n)$ algorithm for this + problem." } @article{r-cic-94 -, author = "G{\"u}nther Rote" -, title = "Curves with increasing chords" -, journal = "Math. Proc. Camb. Phil. Soc." -, volume = 115 -, year = 1994 -, pages = "1--12" -, update = "99.03 bibrelex, 97.03 icking" +, author = "G{\"u}nther Rote" +, title = "Curves with increasing chords" +, journal = "Math. Proc. Camb. Phil. Soc." +, volume = 115 +, year = 1994 +, pages = "1--12" +, update = "99.03 bibrelex, 97.03 icking" } @inproceedings{r-dchhd-92 -, author = "G{\"u}nter Rote" -, title = "Degenerate convex hulls in high dimensions without extra storage" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "26--32" -, cites = "af-pachv-91, bcn-drg-89, ck-acp-70, chj-ololv-91, cjr-cdtsp-90, mr-scmfa-80, p-pc-89, s-lpchm-90, sw-cblpr-92, s-fchff-85, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex, 93.09 rote" +, author = "G{\"u}nter Rote" +, title = "Degenerate convex hulls in high dimensions without extra storage" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "26--32" +, cites = "af-pachv-91, bcn-drg-89, ck-acp-70, chj-ololv-91, cjr-cdtsp-90, mr-scmfa-80, p-pc-89, s-lpchm-90, sw-cblpr-92, s-fchff-85, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex, 93.09 rote" } @inproceedings{r-qcsaa-90 -, author = "G. Rote" -, title = "Quadratic convergence of the sandwich algorithms for approximating convex functions and convex figures in the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, site = "Ottawa, ON" -, year = 1990 -, pages = "120--124" -, update = "98.03 bibrelex" +, author = "G. Rote" +, title = "Quadratic convergence of the sandwich algorithms for approximating convex functions and convex figures in the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, site = "Ottawa, ON" +, year = 1990 +, pages = "120--124" +, update = "98.03 bibrelex" } @inproceedings{r-crsaa-90 -, author = "G. Rote" -, title = "The convergence rate of the {Sandwich} algorithm for approximating convex figures in the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "287--290" -, precedes = "r-crsaa-92" -, cites = "bhr-saucf-91, c-ocfpl-71, cy-sp-87, e-acg-87, fmrwy-sioas-90, fmrwy-sioas-92, fbr-accab-89, g-acb-83, ii-oaapl-86a, m-jtlfe-62, mv-papcb-75, s-sooau-84, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 93.09 rote" +, author = "G. Rote" +, title = "The convergence rate of the {Sandwich} algorithm for approximating convex figures in the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "287--290" +, precedes = "r-crsaa-92" +, cites = "bhr-saucf-91, c-ocfpl-71, cy-sp-87, e-acg-87, fmrwy-sioas-90, fmrwy-sioas-92, fbr-accab-89, g-acb-83, ii-oaapl-86a, m-jtlfe-62, mv-papcb-75, s-sooau-84, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 93.09 rote" } @article{r-crsaa-92 -, author = "G{\"u}nter Rote" -, title = "The convergence rate of the {Sandwich} algorithm for approximating convex functions" -, journal = "Computing" -, volume = 48 -, year = 1992 -, pages = "337--361" -, succeeds = "r-crsaa-90" -, cites = "bhr-saucf-91" -, update = "98.03 mitchell, 97.03 rote" -, abstract = "The Sandwich algorithm approximates a convex function of - one variable over an interval by evaluating the function and its - derivative at a sequence of points. The connection of the - obtained points is a piecewise linear upper approximation, and - the tangents yield a piecewise linear lower approximation. - Similarly, a PLANAR CONVEX FIGURE can be approximated by - convex polygons. - Different versions of the Sandwich algorithm use different rules - for selecting the next evaluation point. We consider four natural - rules (interval bisection, slope bisection, maximum error rule, - and chord rule) and show that the global approximation error - with $n$ evaluation points decreases by the order of $O(1/n^2)$, - which is optimal." +, author = "G{\"u}nter Rote" +, title = "The convergence rate of the {Sandwich} algorithm for approximating convex functions" +, journal = "Computing" +, volume = 48 +, year = 1992 +, pages = "337--361" +, succeeds = "r-crsaa-90" +, cites = "bhr-saucf-91" +, update = "98.03 mitchell, 97.03 rote" +, abstract = "The Sandwich algorithm approximates a convex function of + one variable over an interval by evaluating the function and its + derivative at a sequence of points. The connection of the + obtained points is a piecewise linear upper approximation, and + the tangents yield a piecewise linear lower approximation. + Similarly, a PLANAR CONVEX FIGURE can be approximated by + convex polygons. + Different versions of the Sandwich algorithm use different rules + for selecting the next evaluation point. We consider four natural + rules (interval bisection, slope bisection, maximum error rule, + and chord rule) and show that the global approximation error + with $n$ evaluation points decreases by the order of $O(1/n^2)$, + which is optimal." } @article{r-nltsp-92 -, author = "G{\"u}nter Rote" -, title = "The {$N$}-line traveling salesman problem" -, journal = "Networks" -, volume = 22 -, year = 1992 -, pages = "91--108" -, keywords = "optimization" -, comments = "replaces the techreport r-nltsp-88" -, update = "98.03 mitchell, 96.05 efrat, 93.09 rote" -, annote = "For the 3-line TSP, see ddl-chlts-92" -, abstract = "The special case of the Euclidean traveling salesman problem, - where the $n$ given points lie on a small number ($N$) - of parallel lines in the plane, is solved by a dynamic - programming approach in $O(n^N)$ time, for fixed $N$, ..." +, author = "G{\"u}nter Rote" +, title = "The {$N$}-line traveling salesman problem" +, journal = "Networks" +, volume = 22 +, year = 1992 +, pages = "91--108" +, keywords = "optimization" +, comments = "replaces the techreport r-nltsp-88" +, update = "98.03 mitchell, 96.05 efrat, 93.09 rote" +, annote = "For the 3-line TSP, see ddl-chlts-92" +, abstract = "The special case of the Euclidean traveling salesman problem, + where the $n$ given points lie on a small number ($N$) + of parallel lines in the plane, is solved by a dynamic + programming approach in $O(n^N)$ time, for fixed $N$, ..." } @inproceedings{rss-mawsp-93 -, author = "G{\"u}nter Rote and C. Schwarz and J. Snoeyink" -, title = "Maintaining the approximate width of a set of points in the plane" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "258--263" -, succeeds = "s-sdmwp-92" -, cites = "hs-asdch-90, ht-cws-85, ht-cws-88, j-mwdpp-91, ks-tpscv-93, ks-ccssb-93, m-dea-86, mn-dfc-90, ol-mcp-81, p-ortap-79, s-sdmwp-92, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 97.03 rote, 94.01 rote+smid, 93.09 rote" -, abstract = "We maintain the set of points under insertions and deletions of - points and we are able to report an approximation of the width - of this dynamic point set. Our data structure takes linear space - and allows for reporting the approximation with relative - accuracy $\epsilon$ in $O(sqrt(1/\epsilon)log n)$ time; and the - update time is $O(\log^2 n)$. The method uses the tentative - prune-and-search strategy of Kirkpatrick and Snoeyink." +, author = "G{\"u}nter Rote and C. Schwarz and J. Snoeyink" +, title = "Maintaining the approximate width of a set of points in the plane" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "258--263" +, succeeds = "s-sdmwp-92" +, cites = "hs-asdch-90, ht-cws-85, ht-cws-88, j-mwdpp-91, ks-tpscv-93, ks-ccssb-93, m-dea-86, mn-dfc-90, ol-mcp-81, p-ortap-79, s-sdmwp-92, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 97.03 rote, 94.01 rote+smid, 93.09 rote" +, abstract = "We maintain the set of points under insertions and deletions of + points and we are able to report an approximation of the width + of this dynamic point set. Our data structure takes linear space + and allows for reporting the approximation with relative + accuracy $\epsilon$ in $O(sqrt(1/\epsilon)log n)$ time; and the + update time is $O(\log^2 n)$. The method uses the tentative + prune-and-search strategy of Kirkpatrick and Snoeyink." } @article{rt-sdapa-95 -, author = "G{\"u}nter Rote and Robert Franz Tichy" -, title = "Spherical Dispersion with an Application to Polygonal Approximation of Curves" -, journal = "Anz. {\"O}sterreich. Akad. Wiss., Math.-natur. Kl., Abt. II" -, volume = 132 -, year = 1995 -, pages = "3--10" -, update = "97.03 rote" -, abstract = "We describe and analyze a procedure for the polygonal - approximation of spatial curves using well-distributed - points on the sphere. Here the dispersion of the point set - with respect to spherical slices (intersections of two - half-spheres) plays a role." +, author = "G{\"u}nter Rote and Robert Franz Tichy" +, title = "Spherical Dispersion with an Application to Polygonal Approximation of Curves" +, journal = "Anz. {\"O}sterreich. Akad. Wiss., Math.-natur. Kl., Abt. II" +, volume = 132 +, year = 1995 +, pages = "3--10" +, update = "97.03 rote" +, abstract = "We describe and analyze a procedure for the polygonal + approximation of spatial curves using well-distributed + points on the sphere. Here the dispersion of the point set + with respect to spherical slices (intersections of two + half-spheres) plays a role." } @techreport{rw-cmlps-89 -, author = "G{\"u}nter Rote and G. Woeginger" -, title = "Computing a minimum link path among a set of obstacles in the plane" -, type = "Manusript" -, institution = "Tech. Univ. Graz" -, year = 1989 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "G{\"u}nter Rote and G. Woeginger" +, title = "Computing a minimum link path among a set of obstacles in the plane" +, type = "Manusript" +, institution = "Tech. Univ. Graz" +, year = 1989 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{rw-cckgp-92 -, author = "G{\"u}nter Rote and G. Woeginger" -, title = "Counting Convex $k$-gons in Planar Point Sets" -, journal = "Inform. Process. Lett." -, volume = 41 -, year = 1992 -, pages = "191--194" -, keywords = "convexity, combinatorics" -, cites = "rwzw-cksck-91" -, update = "98.03 mitchell, 97.11 bibrelex, 97.03 rote, 94.01 rote" -, annote = "complexity was improved by the techniques - of eorw-fmakg-92, see mrsw-ccppp-95" +, author = "G{\"u}nter Rote and G. Woeginger" +, title = "Counting Convex $k$-gons in Planar Point Sets" +, journal = "Inform. Process. Lett." +, volume = 41 +, year = 1992 +, pages = "191--194" +, keywords = "convexity, combinatorics" +, cites = "rwzw-cksck-91" +, update = "98.03 mitchell, 97.11 bibrelex, 97.03 rote, 94.01 rote" +, annote = "complexity was improved by the techniques + of eorw-fmakg-92, see mrsw-ccppp-95" } @techreport{rw-gc-89 -, author = "G. Rote and G. Woeginger" -, title = "Geometric clusterings" -, type = "Technical Report" -, number = "B-89-04" -, institution = "Freie Universit{\"a}t Berlin" -, month = apr -, year = 1989 -, note = "Serie B-Informatik" -, precedes = "crw-gc-90, crw-gc-91" -, update = "98.07 bibrelex" +, author = "G. Rote and G. Woeginger" +, title = "Geometric clusterings" +, type = "Technical Report" +, number = "B-89-04" +, institution = "Freie Universit{\"a}t Berlin" +, month = apr +, year = 1989 +, note = "Serie B-Informatik" +, precedes = "crw-gc-90, crw-gc-91" +, update = "98.07 bibrelex" } @article{rwzw-cksck-91 -, author = "G{\"u}nter Rote and G. Woeginger and Binhai Zhu and Zhengyan Wang" -, title = "Counting $k$-subsets and convex $k$-gons in the plane" -, journal = "Inform. Process. Lett." -, volume = 38 -, year = 1991 -, pages = "149--151" -, update = "98.03 mitchell, 97.03 rote, 94.01 rote" -, annote = "improved by rw-cckgp-92, further improved by the - techniques of eorw-fmakg-92, see mrsw-ccppp-95" +, author = "G{\"u}nter Rote and G. Woeginger and Binhai Zhu and Zhengyan Wang" +, title = "Counting $k$-subsets and convex $k$-gons in the plane" +, journal = "Inform. Process. Lett." +, volume = 38 +, year = 1991 +, pages = "149--151" +, update = "98.03 mitchell, 97.03 rote, 94.01 rote" +, annote = "improved by rw-cckgp-92, further improved by the + techniques of eorw-fmakg-92, see mrsw-ccppp-95" } @article{r-id-54 -, author = "K. F. Roth" -, title = "On irregularities of distribution" -, journal = "Mathematica" -, volume = 1 -, year = 1954 -, pages = "73--79" -, update = "98.03 bibrelex" +, author = "K. F. Roth" +, title = "On irregularities of distribution" +, journal = "Mathematica" +, volume = 1 +, year = 1954 +, pages = "73--79" +, update = "98.03 bibrelex" } @article{r-rcms-82 -, author = "S. D. Roth" -, title = "Ray Casting for Modeling Solids" -, journal = "Comput. Graph. Image Process." -, volume = 18 -, year = 1982 -, pages = "109--144" -, update = "93.09 goodrich" +, author = "S. D. Roth" +, title = "Ray Casting for Modeling Solids" +, journal = "Comput. Graph. Image Process." +, volume = 18 +, year = 1982 +, pages = "109--144" +, update = "93.09 goodrich" } @inproceedings{r-aohr-90 -, author = "Christoph Rothe" -, title = "{Algorithmen} in einem optimierten hierarchischen {Raumraster}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 21 -, update = "00.03 bibrelex" +, author = "Christoph Rothe" +, title = "{Algorithmen} in einem optimierten hierarchischen {Raumraster}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 21 +, update = "00.03 bibrelex" } @article{rs-tchnp-85 -, author = "B. L. Rothschild and E. G. Straus" -, title = "On triangulations of the convex hull of $n$ points" -, journal = "Combinatorica" -, volume = 5 -, year = 1985 -, pages = "167--179" +, author = "B. L. Rothschild and E. G. Straus" +, title = "On triangulations of the convex hull of $n$ points" +, journal = "Combinatorica" +, volume = 5 +, year = 1985 +, pages = "167--179" } @book{r-iat-88 -, author = "J. J. Rotman" -, title = "An Introduction to Algebraic Topology" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1988 -, update = "98.03 bibrelex" +, author = "J. J. Rotman" +, title = "An Introduction to Algebraic Topology" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1988 +, update = "98.03 bibrelex" } @article{r-almnt-88 -, author = "J.-P. Roudneff" -, title = "Arrangements of lines with a minimum number of triangles are simple" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "97--102" +, author = "J.-P. Roudneff" +, title = "Arrangements of lines with a minimum number of triangles are simple" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "97--102" } @book{rs-iplt-72 -, author = "C. P. Rourke and B. J. Sanderson" -, title = "Introduction to Piecewise-Linear Topology" -, publisher = "Springer-Verlag" -, year = 1972 -, update = "97.11 bibrelex" +, author = "C. P. Rourke and B. J. Sanderson" +, title = "Introduction to Piecewise-Linear Topology" +, publisher = "Springer-Verlag" +, year = 1972 +, update = "97.11 bibrelex" } @article{r-msr-84 -, author = "P. J. Rousseeuw" -, title = "Least median of squares regression" -, journal = "J. Amer. Statist. Assoc." -, volume = 79 -, number = 388 -, month = dec -, year = 1984 -, pages = "871--880" -, update = "98.07 bibrelex" +, author = "P. J. Rousseeuw" +, title = "Least median of squares regression" +, journal = "J. Amer. Statist. Assoc." +, volume = 79 +, number = 388 +, month = dec +, year = 1984 +, pages = "871--880" +, update = "98.07 bibrelex" } @techreport{rh-dah-98 -, author = "Peter J. Rousseeuw and Mia Hubert" -, title = "Depth in an Arrangement of Hyperplanes" -, type = "Manuscript" -, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" -, month = may -, year = 1998 -, comments = "To appear, Discrete Comput. Geom." -, update = "98.07 mitchell" -, abstract = "A collection of n hyperplanes in Rp forms a hyperplane +, author = "Peter J. Rousseeuw and Mia Hubert" +, title = "Depth in an Arrangement of Hyperplanes" +, type = "Manuscript" +, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" +, month = may +, year = 1998 +, comments = "To appear, Discrete Comput. Geom." +, update = "98.07 mitchell" +, abstract = "A collection of n hyperplanes in Rp forms a hyperplane arrangement. The depth of any point $\theta$ in Rp is the smallest number of hyperplanes intersected by any halfline emanating from $\theta$. For p=2 we prove that there always exists a point $\theta$ @@ -124846,15 +124846,15 @@ @techreport{rh-dah-98 } @techreport{rh-rd-96 -, author = "Peter J. Rousseeuw and Mia Hubert" -, title = "Regression Depth" -, type = "Manuscript" -, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" -, year = 1996 -, keywords = "breakdown value, deepest fit, depth envelopes, halfspace depth, robust regression, simplicial depth" -, comments = "to appear, journal ??" -, update = "98.07 mitchell" -, abstract = " +, author = "Peter J. Rousseeuw and Mia Hubert" +, title = "Regression Depth" +, type = "Manuscript" +, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" +, year = 1996 +, keywords = "breakdown value, deepest fit, depth envelopes, halfspace depth, robust regression, simplicial depth" +, comments = "to appear, journal ??" +, update = "98.07 mitchell" +, abstract = " In this paper we introduce a notion of depth in the regression setting. It provides the `rank' of any line (plane), rather than ranks of observations or residuals. In simple regression we can compute the @@ -124874,36 +124874,36 @@ @techreport{rh-rd-96 } @book{rl-rrod-87 -, author = "P. J. Rousseeuw and A. M. Leroy" -, title = "Robust Regression and Outlier Detection" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1987 -, update = "99.11 bibrelex, 98.07 bibrelex" +, author = "P. J. Rousseeuw and A. M. Leroy" +, title = "Robust Regression and Outlier Detection" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1987 +, update = "99.11 bibrelex, 98.07 bibrelex" } @incollection{rnm-nscrr-93 -, author = "P. J. Rousseeuw and N. S. Netanyahu and D. M. Mount" -, title = "New statistical and computational results on the repeated median line" -, editor = "S. Morgenthaler and E. Ronchetti and W. Stahel" -, booktitle = "New Directions in Data Analysis and Robustness" -, publisher = "Birkh{\"a}user-Verlag" -, address = "Basel, Switzerland" -, year = 1993 -, pages = "177--194" -, update = "98.07 mitchell, 93.09 milone+mitchell" +, author = "P. J. Rousseeuw and N. S. Netanyahu and D. M. Mount" +, title = "New statistical and computational results on the repeated median line" +, editor = "S. Morgenthaler and E. Ronchetti and W. Stahel" +, booktitle = "New Directions in Data Analysis and Robustness" +, publisher = "Birkh{\"a}user-Verlag" +, address = "Basel, Switzerland" +, year = 1993 +, pages = "177--194" +, update = "98.07 mitchell, 93.09 milone+mitchell" } @techreport{rh-dah-97 -, author = "Peter J. Rousseeuw and Ida Ruts" -, title = "Constructing the Bivariate {Tukey} Median" -, type = "Manuscript" -, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" -, year = 1997 -, keywords = "halfplane depth, robustness, Tukey depth" -, comments = "Statistica Sinica, to appear" -, update = "98.07 mitchell" -, abstract = "The halfplane location depth of a point $\theta$ in R2 +, author = "Peter J. Rousseeuw and Ida Ruts" +, title = "Constructing the Bivariate {Tukey} Median" +, type = "Manuscript" +, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" +, year = 1997 +, keywords = "halfplane depth, robustness, Tukey depth" +, comments = "Statistica Sinica, to appear" +, update = "98.07 mitchell" +, abstract = "The halfplane location depth of a point $\theta$ in R2 relative to a bivariate data set $X=\{x_1, x_2, ..., x_n\}$ is the minimal number of observations in any closed halfplane that contains $\theta$ (Tukey 1975). The halfplane median or Tukey median is the @@ -124917,15 +124917,15 @@ @techreport{rh-dah-97 } @techreport{rs-cldrd-98 -, author = "Peter J. Rousseeuw and Anja Struyf" -, title = "Computing Location Depth and Regression Depth in Higher Dimensions" -, type = "Manuscript" -, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" -, year = 1998 -, keywords = "coordinate-free, multivariate ranks, robustness" -, comments = "to appear, Statistics and Computing" -, update = "98.07 mitchell" -, abstract = " +, author = "Peter J. Rousseeuw and Anja Struyf" +, title = "Computing Location Depth and Regression Depth in Higher Dimensions" +, type = "Manuscript" +, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" +, year = 1998 +, keywords = "coordinate-free, multivariate ranks, robustness" +, comments = "to appear, Statistics and Computing" +, update = "98.07 mitchell" +, abstract = " The location depth (Tukey 1975) of a point $\theta$ relative to a p-dimensional data set Z of size n is defined as the smallest number of data points in a closed halfspace with boundary through @@ -124951,515 +124951,515 @@ @techreport{rs-cldrd-98 } @unpublished{rbd-srfcw- -, author = "M. Roussille and V. Bruyere and P. Dufour" -, title = "Search of repeated factors" -, note = "To appear" -, update = "98.07 bibrelex" +, author = "M. Roussille and V. Bruyere and P. Dufour" +, title = "Search of repeated factors" +, note = "To appear" +, update = "98.07 bibrelex" } @inproceedings{rbd-sdpc-90 -, author = "M. Roussille and V. Bruy{\`e}re and P. Dufour" -, title = "Structure detection for polygon composition" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "152--155" -, cites = "at-iacps-78, as-cvp-86, fw-utpf-81, gjpt-tsp-78, h-oafsp-86, k-dpsc-85, l-cw-83, rbd-srfcw-, t-mdsp-81, ZZZ" -, update = "98.07 bibrelex" +, author = "M. Roussille and V. Bruy{\`e}re and P. Dufour" +, title = "Structure detection for polygon composition" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "152--155" +, cites = "at-iacps-78, as-cvp-86, fw-utpf-81, gjpt-tsp-78, h-oafsp-86, k-dpsc-85, l-cw-83, rbd-srfcw-, t-mdsp-81, ZZZ" +, update = "98.07 bibrelex" } @article{rd-gcpia-87 -, author = "M. Roussille and P. Dufour" -, title = "Generation of convex polygons with individual angular constraint" -, journal = "Inform. Process. Lett." -, volume = 24 -, year = 1987 -, pages = "159--164" +, author = "M. Roussille and P. Dufour" +, title = "Generation of convex polygons with individual angular constraint" +, journal = "Inform. Process. Lett." +, volume = 24 +, year = 1987 +, pages = "159--164" } @inproceedings{rkv-nnq-95 -, author = "N. Roussopoulos and S. Kelley and F. Vincent" -, title = "Nearest Neighbor Queries" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1995 -, pages = "71--79" -, update = "97.07 agarwal" +, author = "N. Roussopoulos and S. Kelley and F. Vincent" +, title = "Nearest Neighbor Queries" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1995 +, pages = "71--79" +, update = "97.07 agarwal" } @inproceedings{rkr-cobiu-97 -, author = "N. Roussopoulos and Y. Kotidis and M. Roussopoulos" -, title = "Cubetree: {O}rganization of and bulk incremental updates on the data cube" -, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" -, year = 1997 -, pages = "89--99" -, update = "97.07 agarwal" +, author = "N. Roussopoulos and Y. Kotidis and M. Roussopoulos" +, title = "Cubetree: {O}rganization of and bulk incremental updates on the data cube" +, booktitle = "Proc. ACM SIGMOD Conf. on Management of Data" +, year = 1997 +, pages = "89--99" +, update = "97.07 agarwal" } @inproceedings{r-cr-94 -, author = "Jean-Christophe Roux" -, title = "Curve reconstruction" -, editor = "Pierre-Jean Laurent and A. {Le M{\'e}hant{\'e}} and L. L. Schumaker" -, booktitle = "Curves and Surfaces in Geometric Design" -, publisher = "A. K. Peters" -, address = "Wellesley, MA" -, year = 1994 -, pages = "401--408" -, comments = "curve reconstruction from scattered data points in the plane; - locally uses best approximating circles; - deals with cusps and self-intersections. - best circles are formulated in such a way that the solution leads - to an eigenvalue problem of a $4\times4$-matrix. - see also the author's 1994 dissertation from Univ. Grenoble." -, update = "98.07 rote" +, author = "Jean-Christophe Roux" +, title = "Curve reconstruction" +, editor = "Pierre-Jean Laurent and A. {Le M{\'e}hant{\'e}} and L. L. Schumaker" +, booktitle = "Curves and Surfaces in Geometric Design" +, publisher = "A. K. Peters" +, address = "Wellesley, MA" +, year = 1994 +, pages = "401--408" +, comments = "curve reconstruction from scattered data points in the plane; + locally uses best approximating circles; + deals with cusps and self-intersections. + best circles are formulated in such a way that the solution leads + to an eigenvalue problem of a $4\times4$-matrix. + see also the author's 1994 dissertation from Univ. Grenoble." +, update = "98.07 rote" } @article{rdmmst-bdg-87 -, author = "L. A. Rowe and M. Davis and E. Messinger and C. Meyer and C. Spirakis and A. Tuan" -, title = "A Browser for Directed Graphs" -, journal = "Softw. -- Pract. Exp." -, volume = 17 -, number = 1 -, year = 1987 -, pages = "61--76" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "L. A. Rowe and M. Davis and E. Messinger and C. Meyer and C. Spirakis and A. Tuan" +, title = "A Browser for Directed Graphs" +, journal = "Softw. -- Pract. Exp." +, volume = 17 +, number = 1 +, year = 1987 +, pages = "61--76" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{r-oomrp-97 -, author = "Neil C. Rowe" -, title = "Obtaining Optimal Mobile-Robot Paths with Non-Smooth Anisotropic Cost Functions Using Qualitative-State Reasoning" -, journal = "Internat. J. Robot. Res." -, volume = 16 -, number = 3 -, month = jun -, year = 1997 -, pages = "375--399" -, keywords = "optimal paths, anisotropism, minimum-energy, friction, gravity, qualitative physics, cylinder" -, update = "98.03 mitchell, 97.03 rowe" +, author = "Neil C. Rowe" +, title = "Obtaining Optimal Mobile-Robot Paths with Non-Smooth Anisotropic Cost Functions Using Qualitative-State Reasoning" +, journal = "Internat. J. Robot. Res." +, volume = 16 +, number = 3 +, month = jun +, year = 1997 +, pages = "375--399" +, keywords = "optimal paths, anisotropism, minimum-energy, friction, gravity, qualitative physics, cylinder" +, update = "98.03 mitchell, 97.03 rowe" } @article{r-rroot-90 -, author = "N. C. Rowe" -, title = "Roads, rivers, and obstacles: optimal two-dimensional path planning around linear features for a mobile agent" -, journal = "Internat. J. Robot. Res." -, volume = 9 -, year = 1990 -, pages = "67--73" -, keywords = "shortest paths" +, author = "N. C. Rowe" +, title = "Roads, rivers, and obstacles: optimal two-dimensional path planning around linear features for a mobile agent" +, journal = "Internat. J. Robot. Res." +, volume = 9 +, year = 1990 +, pages = "67--73" +, keywords = "shortest paths" } @article{rk-nmep-94 -, author = "N. C. Rowe and Y. Kanayama" -, title = "Near-minimum energy paths on a vertical-axis cone with anisotropic friction and gravity effects" -, journal = "Internat. J. Robot. Res." -, volume = 13 -, year = 1994 -, pages = "408--432" -, keywords = "optimal paths, minimum-energy, friction, gravity, qualitative physics, cone" -, update = "97.03 rowe" +, author = "N. C. Rowe and Y. Kanayama" +, title = "Near-minimum energy paths on a vertical-axis cone with anisotropic friction and gravity effects" +, journal = "Internat. J. Robot. Res." +, volume = 13 +, year = 1994 +, pages = "408--432" +, keywords = "optimal paths, minimum-energy, friction, gravity, qualitative physics, cone" +, update = "97.03 rowe" } @inproceedings{rl-vppuo-89 -, author = "N. C. Rowe and D. H. Lewis" -, title = "Vehicle path-planning using optics analogs for optimizing visibility and energy cost" -, booktitle = "NASA Conference on Space Telerobotics" -, year = 1989 -, pages = "IV: 217--226" -, keywords = "weighted regions, optimal paths, three dimensions, minimum-energy, visibility, aircraft" -, update = "97.03 rowe" +, author = "N. C. Rowe and D. H. Lewis" +, title = "Vehicle path-planning using optics analogs for optimizing visibility and energy cost" +, booktitle = "NASA Conference on Space Telerobotics" +, year = 1989 +, pages = "IV: 217--226" +, keywords = "weighted regions, optimal paths, three dimensions, minimum-energy, visibility, aircraft" +, update = "97.03 rowe" } @techreport{rr-nmopp-87 -, author = "N. C. Rowe and R. F. Richbourg" -, title = "A new method for optimal path planning through nonhomogeneous free space" -, type = "Technical {Report}" -, number = "NPS52-87-003" -, institution = "Comput. Sci. Dept., Naval Postgraduate School" -, address = "Monterey, CA" -, year = 1987 -, keywords = "shortest paths, weights" +, author = "N. C. Rowe and R. F. Richbourg" +, title = "A new method for optimal path planning through nonhomogeneous free space" +, type = "Technical {Report}" +, number = "NPS52-87-003" +, institution = "Comput. Sci. Dept., Naval Postgraduate School" +, address = "Monterey, CA" +, year = 1987 +, keywords = "shortest paths, weights" } @article{rr-eslmo-90 -, author = "N. C. Rowe and R. F. Richbourg" -, title = "An efficient {Snell}'s law method for optimal-path planning across multiple two-dimensional, irregular, homogeneous-cost regions" -, journal = "Internat. J. Robot. Res." -, volume = 9 -, year = 1990 -, pages = "48--66" -, keywords = "shortest paths, weights" +, author = "N. C. Rowe and R. F. Richbourg" +, title = "An efficient {Snell}'s law method for optimal-path planning across multiple two-dimensional, irregular, homogeneous-cost regions" +, journal = "Internat. J. Robot. Res." +, volume = 9 +, year = 1990 +, pages = "48--66" +, keywords = "shortest paths, weights" } @article{rr-ogfpp-90 -, author = "N. C. Rowe and R. Ross" -, title = "Optimal grid-free path planning across arbitrarily-contoured terrain with anisotropic friction and gravity effects" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, year = 1990 -, pages = "540--553" -, keywords = "optimal paths, anisotropism, minimum-energy, friction, gravity, qualitative physics, polyhedra" -, update = "97.03 rowe" +, author = "N. C. Rowe and R. Ross" +, title = "Optimal grid-free path planning across arbitrarily-contoured terrain with anisotropic friction and gravity effects" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, year = 1990 +, pages = "540--553" +, keywords = "optimal paths, anisotropism, minimum-energy, friction, gravity, qualitative physics, polyhedra" +, update = "97.03 rowe" } @inproceedings{rs-gcumr-97 -, author = "Tom Roxborough and Arunabha Sen" -, title = "Graph Clustering Using Multiway Ratio Cut" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "291--296" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Tom Roxborough and Arunabha Sen" +, title = "Graph Clustering Using Multiway Ratio Cut" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "291--296" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{rlw-rdtrp-91 -, author = "U. Roy and C. R. Liu and T. C. Woo" -, title = "Review of dimensioning and tolerancing: representation and processing" -, journal = "Comput. Aided Design" -, volume = 23 -, number = 7 -, year = 1991 -, pages = "466--483" -, update = "98.07 bibrelex" +, author = "U. Roy and C. R. Liu and T. C. Woo" +, title = "Review of dimensioning and tolerancing: representation and processing" +, journal = "Comput. Aided Design" +, volume = 23 +, number = 7 +, year = 1991 +, pages = "466--483" +, update = "98.07 bibrelex" } @article{rz-epccm-92 -, author = "U. Roy and X. Zhang" -, title = "Establishment of a pair of concentric circles with the minimum radial separation for assessing roundness error" -, journal = "Comput. Aided Design" -, volume = 24 -, number = 3 -, year = 1992 -, pages = "161--168" -, update = "97.03 agarwal" +, author = "U. Roy and X. Zhang" +, title = "Establishment of a pair of concentric circles with the minimum radial separation for assessing roundness error" +, journal = "Comput. Aided Design" +, volume = 24 +, number = 3 +, year = 1992 +, pages = "161--168" +, update = "97.03 agarwal" } @inproceedings{rb-fnipg-90 -, author = "V. P. Roychowdhury and J. Bruck" -, title = "On finding non-intersecting paths in grids and its application in reconfiguring {VLSI}/{WSI} arrays" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "454--464" +, author = "V. P. Roychowdhury and J. Bruck" +, title = "On finding non-intersecting paths in grids and its application in reconfiguring {VLSI}/{WSI} arrays" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "454--464" } @article{rbk-earvw-90 -, author = "V. P. Roychowdhury and J. Bruck and T. Kailath" -, title = "Efficient algorithms for reconfiguration in {VLSI}/{WSI} arrays" -, journal = "IEEE Trans. Comput." -, volume = "??" -, year = 1990 -, pages = "480--489" -, update = "98.07 bibrelex" +, author = "V. P. Roychowdhury and J. Bruck and T. Kailath" +, title = "Efficient algorithms for reconfiguration in {VLSI}/{WSI} arrays" +, journal = "IEEE Trans. Comput." +, volume = "??" +, year = 1990 +, pages = "480--489" +, update = "98.07 bibrelex" } @book{r-ra-68 -, author = "H. Royden" -, title = "Real Analysis" -, publisher = "Macmillan" -, address = "New York, NY" -, year = 1968 -, update = "97.11 bibrelex" +, author = "H. Royden" +, title = "Real Analysis" +, publisher = "Macmillan" +, address = "New York, NY" +, year = 1968 +, update = "97.11 bibrelex" } % ### number?? @inproceedings{rs-saapm-96 -, author = "D. Roytenberg and J.-R. Sack" -, title = "A Simulator for the Alex-AVX Parallel Multi-Computer" -, booktitle = "Proc. HPCS '96 Conference" -, site = "Ottawa" -, number = 48 -, year = 1996 -, update = "97.11 sack" +, author = "D. Roytenberg and J.-R. Sack" +, title = "A Simulator for the Alex-AVX Parallel Multi-Computer" +, booktitle = "Proc. HPCS '96 Conference" +, site = "Ottawa" +, number = 48 +, year = 1996 +, update = "97.11 sack" } @techreport{r-ciarb-92t -, author = "C. R{\"u}b" -, title = "Computing intersections and arrangements for red-blue curve segments in parallel" -, type = "Technical {Report}" -, number = "MPI-I-92-108" -, institution = "Max Planck Institut f{\"u}r Informatik" -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 -, precedes = "r-ciarb-92" -, update = "98.07 bibrelex" +, author = "C. R{\"u}b" +, title = "Computing intersections and arrangements for red-blue curve segments in parallel" +, type = "Technical {Report}" +, number = "MPI-I-92-108" +, institution = "Max Planck Institut f{\"u}r Informatik" +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 +, precedes = "r-ciarb-92" +, update = "98.07 bibrelex" } @inproceedings{r-ciarb-92 -, author = "C. R{\"u}b" -, title = "Computing intersections and arrangements for red-blue curve segments in parallel" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "115--120" -, succeeds = "r-ciarb-92t" -, cites = "abb-paa-90, acg-cdctd-89, am-dplr-91, ce-oails-88, cct-rpatd-91, g-ilspo-89, g-caop-91, gsg-pmvsp-90, hjw-epcah-90, ms-rcibt-88, r-pazbd-90, r-lsirp-92, r-ciarb-92t, ZZZ" -, update = "98.07 bibrelex" +, author = "C. R{\"u}b" +, title = "Computing intersections and arrangements for red-blue curve segments in parallel" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "115--120" +, succeeds = "r-ciarb-92t" +, cites = "abb-paa-90, acg-cdctd-89, am-dplr-91, ce-oails-88, cct-rpatd-91, g-ilspo-89, g-caop-91, gsg-pmvsp-90, hjw-epcah-90, ms-rcibt-88, r-pazbd-90, r-lsirp-92, r-ciarb-92t, ZZZ" +, update = "98.07 bibrelex" } @article{r-lsirp-92 -, author = "C. R{\"u}b" -, title = "Line-Segment Intersection Reporting in Parallel" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "119--144" -, update = "96.09 orourke" +, author = "C. R{\"u}b" +, title = "Line-Segment Intersection Reporting in Parallel" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "119--144" +, update = "96.09 orourke" } @techreport{r-plsir-89 -, author = "C. R{\"u}b" -, title = "Parallel Line Segment Intersection Reporting" -, type = "Manuscript" -, institution = "??" -, year = 1989 -, update = "97.11 bibrelex" +, author = "C. R{\"u}b" +, title = "Parallel Line Segment Intersection Reporting" +, type = "Manuscript" +, institution = "??" +, year = 1989 +, update = "97.11 bibrelex" } @phdthesis{r-pazbd-90 -, author = "C. R{\"u}b" -, title = "Parallele {Algorithmen} zum {Berechnen} der {Schnittpunkte} von {Liniensegmenten}" -, school = "Univ. Saarbr{\"u}cken" -, address = "Saarbr{\"u}cken, Germany" -, year = 1990 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "C. R{\"u}b" +, title = "Parallele {Algorithmen} zum {Berechnen} der {Schnittpunkte} von {Liniensegmenten}" +, school = "Univ. Saarbr{\"u}cken" +, address = "Saarbr{\"u}cken, Germany" +, year = 1990 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @article{rw-3drfr-80 -, author = "S. M. Rubin and T. Whitted" -, title = "A $3$-dimensional representation for fast rendering of complex scenes" -, journal = "Comput. Graph." -, volume = 14 -, number = 3 -, year = 1980 -, pages = "110--116" -, note = "Proc. SIGGRAPH '80" +, author = "S. M. Rubin and T. Whitted" +, title = "A $3$-dimensional representation for fast rendering of complex scenes" +, journal = "Comput. Graph." +, volume = 14 +, number = 3 +, year = 1980 +, pages = "110--116" +, note = "Proc. SIGGRAPH '80" } @unpublished{r-dcptr-94 -, author = "R. Rubinfeld" -, title = "Designing Checkers for Programs that Run in Parallel" -, year = 1994 -, note = "Manuscript" -, update = "97.11 bibrelex" +, author = "R. Rubinfeld" +, title = "Designing Checkers for Programs that Run in Parallel" +, year = 1994 +, note = "Manuscript" +, update = "97.11 bibrelex" } @article{rt-srccp-92 -, author = "J. H. Rubinstein and D. A. Thomas" -, title = "The {Steiner} ratio conjecture for cocircular points" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "77--86" +, author = "J. H. Rubinstein and D. A. Thomas" +, title = "The {Steiner} ratio conjecture for cocircular points" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "77--86" } @inproceedings{r-lbchd-93 -, author = "W. Rucklidge" -, title = "Lower bounds for the complexity of the {Hausdorff} distance" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "145--150" -, cites = "ast-apsgo-92, abb-amps-91, cghkkk-gpmem-93, hks-uevsi-91, ck-igpmp-92, hhk-tirgc-88, r-cmhdb-91, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "W. Rucklidge" +, title = "Lower bounds for the complexity of the {Hausdorff} distance" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "145--150" +, cites = "ast-apsgo-92, abb-amps-91, cghkkk-gpmem-93, hks-uevsi-91, ck-igpmp-92, hhk-tirgc-88, r-cmhdb-91, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @incollection{rzz-vvagf- -, author = "A. Rudich and D. Zernik and G. Zodik" -, title = "Visage --- Visualization of Attribute Graphs: A foundation for a Parallel Programming Environment" -, editor = "J. J. Dongarra and B. Tourancheau" -, booktitle = "Environments and Tools for Parallel Scientific Computing" -, publisher = "North-Holland" -, pages = "171--192" -, keywords = "graph drawing" -, update = "95.01 tamassia" +, author = "A. Rudich and D. Zernik and G. Zodik" +, title = "Visage --- Visualization of Attribute Graphs: A foundation for a Parallel Programming Environment" +, editor = "J. J. Dongarra and B. Tourancheau" +, booktitle = "Environments and Tools for Parallel Scientific Computing" +, publisher = "North-Holland" +, pages = "171--192" +, keywords = "graph drawing" +, update = "95.01 tamassia" } @article{r-utt-58 -, author = "M. E. Rudin" -, title = "An Unshellable Triangulation of a Tetrahedron" -, journal = "Bull. Amer. Math. Soc." -, volume = 64 -, year = 1958 -, pages = "90--91" -, keywords = "triangulation, three-dimensional, shellability" -, update = "95.09 korneenko" -, annote = "An example of a 3D triangulation with 14 points and 41 - tetrahedra that cannot be built by sequentially adding - tetrahedrons." +, author = "M. E. Rudin" +, title = "An Unshellable Triangulation of a Tetrahedron" +, journal = "Bull. Amer. Math. Soc." +, volume = 64 +, year = 1958 +, pages = "90--91" +, keywords = "triangulation, three-dimensional, shellability" +, update = "95.09 korneenko" +, annote = "An example of a 3D triangulation with 14 points and 41 + tetrahedra that cannot be built by sequentially adding + tetrahedrons." } @book{r-pma-76 -, author = "W. Rudin" -, title = "Principles of Mathematical Analysis" -, edition = "3rd" -, publisher = "McGraw-Hill" -, address = "New York, NY" -, year = 1976 -, update = "98.03 bibrelex" +, author = "W. Rudin" +, title = "Principles of Mathematical Analysis" +, edition = "3rd" +, publisher = "McGraw-Hill" +, address = "New York, NY" +, year = 1976 +, update = "98.03 bibrelex" } @article{r-snsls-82 -, author = "S. M. Rump" -, title = "Solving nonlinear systems with least significant bit accuracy" -, journal = "Computing" -, volume = 29 -, year = 1982 -, pages = "183--200" -, update = "98.03 bibrelex" +, author = "S. M. Rump" +, title = "Solving nonlinear systems with least significant bit accuracy" +, journal = "Computing" +, volume = 29 +, year = 1982 +, pages = "183--200" +, update = "98.03 bibrelex" } @article{rb-lsbea-83 -, author = "S. M. Rump and H. B{\"o}hm" -, title = "Least significant bit evaluation of arithmetic expressions in single-precision" -, journal = "Computing" -, volume = 30 -, number = 3 -, year = 1983 -, pages = "189--199" -, update = "98.03 bibrelex" +, author = "S. M. Rump and H. B{\"o}hm" +, title = "Least significant bit evaluation of arithmetic expressions in single-precision" +, journal = "Computing" +, volume = 30 +, number = 3 +, year = 1983 +, pages = "189--199" +, update = "98.03 bibrelex" } @article{r-svp-66 -, author = "H. {Rumsey, Jr.}" -, title = "Sets of visible points" -, journal = "Duke Math. J." -, volume = 33 -, year = 1966 -, pages = "263--274" -, update = "97.11 bibrelex" +, author = "H. {Rumsey, Jr.}" +, title = "Sets of visible points" +, journal = "Duke Math. J." +, volume = 33 +, year = 1966 +, pages = "263--274" +, update = "97.11 bibrelex" } @article{r-draq2d-95 -, author = "J. Ruppert" -, title = "A {Delaunay} Refinement Algorithm for Quality 2-Dimensional Mesh Generation" -, journal = "J. Algorithms" -, volume = 18 -, year = 1995 -, pages = "548--585" -, update = "01.07 devillers, 00.03 devillers" +, author = "J. Ruppert" +, title = "A {Delaunay} Refinement Algorithm for Quality 2-Dimensional Mesh Generation" +, journal = "J. Algorithms" +, volume = 18 +, year = 1995 +, pages = "548--585" +, update = "01.07 devillers, 00.03 devillers" } @techreport{r-nsaq2-92 -, author = "J. Ruppert" -, title = "A new and simple algorithm for quality $2$-dimensional mesh generation" -, type = "Report" -, number = "UCB/CSD 92/694" -, institution = "Univ. California" -, address = "Berkeley, CA" -, year = 1992 -, update = "98.03 bibrelex" +, author = "J. Ruppert" +, title = "A new and simple algorithm for quality $2$-dimensional mesh generation" +, type = "Report" +, number = "UCB/CSD 92/694" +, institution = "Univ. California" +, address = "Berkeley, CA" +, year = 1992 +, update = "98.03 bibrelex" } @inproceedings{r-nsaq2-93 -, author = "J. Ruppert" -, title = "A New and Simple Algorithm for Quality 2-Dimensional Mesh Generation" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "83--92" -, update = "93.05 smid" +, author = "J. Ruppert" +, title = "A New and Simple Algorithm for Quality 2-Dimensional Mesh Generation" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "83--92" +, update = "93.05 smid" } @inproceedings{rs-addce-91 -, author = "J. Ruppert and R. Seidel" -, title = "Approximating the $d$-dimensional complete {Euclidean} graph" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "207--210" -, cites = "c-tipga-86, dfs-dgaag-90, t-nrtpc-83, k-aceg-88, kg-dtcac-89, m-dsa-84, ps-gs-89, r-css-63, ZZZ" -, update = "98.07 bibrelex" +, author = "J. Ruppert and R. Seidel" +, title = "Approximating the $d$-dimensional complete {Euclidean} graph" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "207--210" +, cites = "c-tipga-86, dfs-dgaag-90, t-nrtpc-83, k-aceg-88, kg-dtcac-89, m-dsa-84, ps-gs-89, r-css-63, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{rs-dt3dn-89 -, author = "J. Ruppert and R. Seidel" -, title = "On the difficulty of tetrahedralizing $3$-dimensional non-convex polyhedra" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "380--392" -, precedes = "rs-dttdn-92" -, cites = "ae-tpss-87, bd-cdsp-89, c-cgc-79, cp-tncp-89, ctv-flvat-88i, cr-cpih-88, epw-tpstd-86, gj-cigtn-79, o-agta-87, os-snhpd-83, ps-cgi-85, s-udzvd-28, tv-otats-88, h-fssp-81, ZZZ" -, update = "98.03 bibrelex" +, author = "J. Ruppert and R. Seidel" +, title = "On the difficulty of tetrahedralizing $3$-dimensional non-convex polyhedra" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "380--392" +, precedes = "rs-dttdn-92" +, cites = "ae-tpss-87, bd-cdsp-89, c-cgc-79, cp-tncp-89, ctv-flvat-88i, cr-cpih-88, epw-tpstd-86, gj-cigtn-79, o-agta-87, os-snhpd-83, ps-cgi-85, s-udzvd-28, tv-otats-88, h-fssp-81, ZZZ" +, update = "98.03 bibrelex" } @article{rs-dttdn-92 -, author = "J. Ruppert and R. Seidel" -, title = "On the difficulty of triangulating three-dimensional non-convex polyhedra" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "227--253" -, succeeds = "rs-dt3dn-89" +, author = "J. Ruppert and R. Seidel" +, title = "On the difficulty of triangulating three-dimensional non-convex polyhedra" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "227--253" +, succeeds = "rs-dt3dn-89" } @article{r-cmop-97 -, author = "D. Rus" -, title = "Coordinated Manipulation of Objects in a Plane" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "129--147" -, update = "97.07 held" +, author = "D. Rus" +, title = "Coordinated Manipulation of Objects in a Plane" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "129--147" +, update = "97.07 held" } @inproceedings{r-drp-90 -, author = "D. Rus" -, title = "Dexterous rotations of polygons" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "147--151" -, precedes = "r-drp-91" -, cites = "b-sgtfp-88, b-igs-85, b-edrhu-87, c-rgfm-85, e-mpu-84, kkmy-qstam-89, m-mgpo-82, ms-rhmm-85, mss-esmpg-87, ms-sdsgi-89, n-ssfcg-86, p-mh-85, y-gt-68, ZZZ" -, update = "98.07 bibrelex" +, author = "D. Rus" +, title = "Dexterous rotations of polygons" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "147--151" +, precedes = "r-drp-91" +, cites = "b-sgtfp-88, b-igs-85, b-edrhu-87, c-rgfm-85, e-mpu-84, kkmy-qstam-89, m-mgpo-82, ms-rhmm-85, mss-esmpg-87, ms-sdsgi-89, n-ssfcg-86, p-mh-85, y-gt-68, ZZZ" +, update = "98.07 bibrelex" } @techreport{r-drp-91 -, author = "D. Rus" -, title = "On dexterous rotations of polygons" -, type = "Technical {Report}" -, number = "TR~91-1258" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = dec -, year = 1991 -, succeeds = "r-drp-90" +, author = "D. Rus" +, title = "On dexterous rotations of polygons" +, type = "Technical {Report}" +, number = "TR~91-1258" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = dec +, year = 1991 +, succeeds = "r-drp-90" } @incollection{r-spct-97 -, author = "J. A. Rush" -, title = "Sphere packing and coding theory" -, chapter = 50 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "917--932" -, update = "97.11 orourke" +, author = "J. A. Rush" +, title = "Sphere packing and coding theory" +, chapter = 50 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "917--932" +, update = "97.11 orourke" } @article{r-algcc-75 -, author = "D. Rutovitz" -, title = "An algorithm for in-line generation of a convex cover" -, journal = "Comput. Graph. Image Process." -, volume = 4 -, year = 1975 -, pages = "74--78" +, author = "D. Rutovitz" +, title = "An algorithm for in-line generation of a convex cover" +, journal = "Comput. Graph. Image Process." +, volume = 4 +, year = 1975 +, pages = "74--78" } @article{rr-cdcbp-96 -, author = "Ida Ruts and Peter J. Rousseeuw" -, title = "Computing Depth Contours of Bivariate Point Clouds" -, journal = "Computational Statistics and Data Analysis" -, volume = 23 -, year = 1996 -, pages = "153--168" -, keywords = "k-sets, classification, graphical display, ranks, robustness" -, update = "98.07 mitchell" -, abstract = "In this paper we construct an exact algorithm for +, author = "Ida Ruts and Peter J. Rousseeuw" +, title = "Computing Depth Contours of Bivariate Point Clouds" +, journal = "Computational Statistics and Data Analysis" +, volume = 23 +, year = 1996 +, pages = "153--168" +, keywords = "k-sets, classification, graphical display, ranks, robustness" +, update = "98.07 mitchell" +, abstract = "In this paper we construct an exact algorithm for computing depth contours of a bivariate data set. For this we use the halfspace depth introduced by Tukey. The depth contours form a nested collection of convex sets. The deeper the contour, the more robust it @@ -125472,2520 +125472,2520 @@ @article{rr-cdcbp-96 } @inproceedings{rms-isdg-97 -, author = "K. Ryall and J. Marks and S. Shieber" -, title = "An Interactive System for Drawing Graphs" -, editor = "S. North" -, booktitle = "Graph Drawing (Proc. GD '96)" -, series = "Lecture Notes Comput. Sci." -, volume = 1190 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "387--393" -, keywords = "graph drawing, constraints, interactive" -, update = "98.07 tamassia+vismara" +, author = "K. Ryall and J. Marks and S. Shieber" +, title = "An Interactive System for Drawing Graphs" +, editor = "S. North" +, booktitle = "Graph Drawing (Proc. GD '96)" +, series = "Lecture Notes Comput. Sci." +, volume = 1190 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "387--393" +, keywords = "graph drawing, constraints, interactive" +, update = "98.07 tamassia+vismara" } @book{ahet-nggcf-91 -, title = "Numerical Grid Generation in Computational Fluid Dynamics and Related Fields" -, editor = "A. S.-Arcilla and J. Hauser and P. R. Eiseman and J. F. Thompson" -, publisher = "North-Holland" -, address = "New York, New York" -, year = 1991 -, update = "98.11 bibrelex" +, title = "Numerical Grid Generation in Computational Fluid Dynamics and Related Fields" +, editor = "A. S.-Arcilla and J. Hauser and P. R. Eiseman and J. F. Thompson" +, publisher = "North-Holland" +, address = "New York, New York" +, year = 1991 +, update = "98.11 bibrelex" } @inproceedings{s-ccops-90 -, author = "A. Saalfeld" -, title = "Canonical cyclic orderings for point sets in the plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "32--35" -, cites = "ahu-dsa-83, e-acg-87, gj-cigtn-79, k-ss-65, ps-cgi-85, ZZZ" -, update = "98.07 bibrelex" +, author = "A. Saalfeld" +, title = "Canonical cyclic orderings for point sets in the plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "32--35" +, cites = "ahu-dsa-83, e-acg-87, gj-cigtn-79, k-ss-65, ps-cgi-85, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{s-der-91 -, author = "A. Saalfeld" -, title = "Delaunay edge refinements" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "33--36" -, cites = "c-cdt-87, ZZZ" -, update = "98.07 bibrelex" +, author = "A. Saalfeld" +, title = "Delaunay edge refinements" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "33--36" +, cites = "c-cdt-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{s-dceat-89 -, author = "A. Saalfeld" -, title = "Divide-and-conquer in early algebraic topology: the {Mayer}-{Vietoris} exact homology sequence revisited" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 11 +, author = "A. Saalfeld" +, title = "Divide-and-conquer in early algebraic topology: the {Mayer}-{Vietoris} exact homology sequence revisited" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 11 } @inproceedings{s-jttm-87 -, author = "A. Saalfeld" -, title = "Joint triangulations and triangulation maps" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "195--204" -, cites = "c-tpc-79, gp-ms-83, ghlst-ltavs-86, l-aat-75, ps-cgi-85, wg-plrsm-85, w-tachm-83, ZZZ" -, update = "98.03 bibrelex" +, author = "A. Saalfeld" +, title = "Joint triangulations and triangulation maps" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "195--204" +, cites = "c-tpc-79, gp-ms-83, ghlst-ltavs-86, l-aat-75, ps-cgi-85, wg-plrsm-85, w-tachm-83, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{s-mggdp-95 -, author = "A. Saalfeld" -, title = "Map Generalization as a Graph Drawing Problem" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "444--451" -, keywords = "graph drawing, cartography, planar" -, update = "95.01 tamassia" +, author = "A. Saalfeld" +, title = "Map Generalization as a Graph Drawing Problem" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "444--451" +, keywords = "graph drawing, cartography, planar" +, update = "95.01 tamassia" } @article{s-gm-60 -, author = "G. Sabidussi" -, title = "Graph Multiplication" -, journal = "Math. Z." -, volume = 72 -, year = 1960 -, pages = "446--457" -, update = "97.11 bibrelex" +, author = "G. Sabidussi" +, title = "Graph Multiplication" +, journal = "Math. Z." +, volume = 72 +, year = 1960 +, pages = "446--457" +, update = "97.11 bibrelex" } @article{s-ggggg-57 -, author = "G. Sabidussi" -, title = "Graphs with a Given Group and Given Graph Theoretical Properties" -, journal = "Canad. J. Math." -, volume = 9 -, year = 1957 -, pages = "515--525" -, update = "97.11 bibrelex" +, author = "G. Sabidussi" +, title = "Graphs with a Given Group and Given Graph Theoretical Properties" +, journal = "Canad. J. Math." +, volume = 9 +, year = 1957 +, pages = "515--525" +, update = "97.11 bibrelex" } @article{s-mogga-59 -, author = "G. Sabidussi" -, title = "On the Minimum Order of Graphs with a Given Automorphism Group" -, journal = "Monatsh. Math." -, volume = 63 -, year = 1959 -, pages = "124--127" -, update = "97.11 bibrelex" +, author = "G. Sabidussi" +, title = "On the Minimum Order of Graphs with a Given Automorphism Group" +, journal = "Monatsh. Math." +, volume = 63 +, year = 1959 +, pages = "124--127" +, update = "97.11 bibrelex" } @article{s-cg-59 -, author = "G. Sabidussi" -, title = "The Composition of Graphs" -, journal = "Duke Math. J." -, volume = 26 -, year = 1959 -, pages = "693--696" -, update = "97.11 bibrelex" +, author = "G. Sabidussi" +, title = "The Composition of Graphs" +, journal = "Duke Math. J." +, volume = 26 +, year = 1959 +, pages = "693--696" +, update = "97.11 bibrelex" } @incollection{s-crmsd-80 -, author = "M. A. Sabin" -, title = "Contouring---{A} Review of Methods for Scattered Data" -, editor = "K. W. Brodlie" -, booktitle = "Mathematical Methods in Computer Graphics and Design" -, publisher = "Academic Press" -, address = "New York" -, year = 1980 -, pages = "105--121" -, annote = "Suggests best method is Delaunay triangulation with - linear or $C^1$ interpolation on triangles." +, author = "M. A. Sabin" +, title = "Contouring---{A} Review of Methods for Scattered Data" +, editor = "K. W. Brodlie" +, booktitle = "Mathematical Methods in Computer Graphics and Design" +, publisher = "Academic Press" +, address = "New York" +, year = 1980 +, pages = "105--121" +, annote = "Suggests best method is Delaunay triangulation with + linear or $C^1$ interpolation on triangles." } @inproceedings{s-nrsps-83 -, author = "M. A. Sabin" -, title = "Non-rectangular surface patches suitable for inclusion in a B-spline surface" -, booktitle = "Eurographics" -, year = 1983 -, update = "98.03 bibrelex" +, author = "M. A. Sabin" +, title = "Non-rectangular surface patches suitable for inclusion in a B-spline surface" +, booktitle = "Eurographics" +, year = 1983 +, update = "98.03 bibrelex" } @inproceedings{s-shlar-83 -, author = "J.-R. Sack" -, title = "A simple hidden-line algorithm for rectilinear polygons" -, booktitle = "Proc. 21st Allerton Conf. Commun. Control Comput." -, year = 1983 -, pages = "437--446" -, keywords = "computer graphics, visibility, convex hull, hidden line/surface elimination, polygons, two-dimensional" +, author = "J.-R. Sack" +, title = "A simple hidden-line algorithm for rectilinear polygons" +, booktitle = "Proc. 21st Allerton Conf. Commun. Control Comput." +, year = 1983 +, pages = "437--446" +, keywords = "computer graphics, visibility, convex hull, hidden line/surface elimination, polygons, two-dimensional" } @inproceedings{s-oadrp-82 -, author = "J.-R. Sack" -, title = "An {$O(n \log n)$} algorithm for decomposing rectilinear polygons into convex quadrilaterals" -, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." -, year = 1982 -, pages = "64--75" -, keywords = "decomposition, partition, visibility, shape, polygons, two-dimensional, convex" +, author = "J.-R. Sack" +, title = "An {$O(n \log n)$} algorithm for decomposing rectilinear polygons into convex quadrilaterals" +, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." +, year = 1982 +, pages = "64--75" +, keywords = "decomposition, partition, visibility, shape, polygons, two-dimensional, convex" } @phdthesis{s-rcg-84 -, author = "J.-R. Sack" -, title = "Rectilinear computational geometry" -, type = "Ph.{D}. Thesis" -, school = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1984 -, note = "Report SCS-TR-54" -, keywords = "computer graphics, decomposition, partition, visibility, shape, convex hull, hidden line/surface elimination, polygons, two-dimensional, convex, doctoral thesis" -, update = "93.05 jones" +, author = "J.-R. Sack" +, title = "Rectilinear computational geometry" +, type = "Ph.{D}. Thesis" +, school = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1984 +, note = "Report SCS-TR-54" +, keywords = "computer graphics, decomposition, partition, visibility, shape, convex hull, hidden line/surface elimination, polygons, two-dimensional, convex, doctoral thesis" +, update = "93.05 jones" } @article{s-r3scg-87 -, author = "J.-R. Sack" -, title = "Report on 3rd {Symposium} on {Computational} {Geometry}, 1987" -, journal = "Bull. EATCS" -, volume = 33 -, year = 1987 -, pages = "165--170" -, update = "97.11 icking, 95.05 korneenko" +, author = "J.-R. Sack" +, title = "Report on 3rd {Symposium} on {Computational} {Geometry}, 1987" +, journal = "Bull. EATCS" +, volume = 33 +, year = 1987 +, pages = "165--170" +, update = "97.11 icking, 95.05 korneenko" } @article{ssu-cego-84 -, author = "J.-R. Sack and N. Santoro and J. Urrutia" -, title = "Containment of elementary geometric objects" -, journal = "Congr. Numer." -, volume = 45 -, year = 1984 -, pages = "139--146" -, keywords = "polygons, triangles, rectangles, two-dimensional, domination" +, author = "J.-R. Sack and N. Santoro and J. Urrutia" +, title = "Containment of elementary geometric objects" +, journal = "Congr. Numer." +, volume = 45 +, year = 1984 +, pages = "139--146" +, keywords = "polygons, triangles, rectangles, two-dimensional, domination" } @article{ss-chia-90 -, author = "J.-R. Sack and Th. Strothotte" -, title = "A Characterization of Heaps and Its Applications" -, journal = "Inform. Comput." -, volume = 86 -, number = 1 -, year = 1990 -, pages = "69--86" -, update = "97.11 sack" +, author = "J.-R. Sack and Th. Strothotte" +, title = "A Characterization of Heaps and Its Applications" +, journal = "Inform. Comput." +, volume = 86 +, number = 1 +, year = 1990 +, pages = "69--86" +, update = "97.11 sack" } @techreport{ss-oadwv-86 -, author = "J.-R. Sack and Subhash Suri" -, title = "An optimal algorithm for detecting weak visibility of a polygon" -, type = "Report" -, number = "SCS-TR-114" -, institution = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1986 -, keywords = "computer graphics, visibility, hidden line/surface elimination, polygons, two-dimensional" -, update = "98.03 mitchell" +, author = "J.-R. Sack and Subhash Suri" +, title = "An optimal algorithm for detecting weak visibility of a polygon" +, type = "Report" +, number = "SCS-TR-114" +, institution = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1986 +, keywords = "computer graphics, visibility, hidden line/surface elimination, polygons, two-dimensional" +, update = "98.03 mitchell" } @inproceedings{ss-oadwv-88 -, author = "J.-R. Sack and Subhash Suri" -, title = "An Optimal Algorithm for Detecting Weak Visibility of a Polygon" -, editor = "R. Cori and M. Wirsing" -, booktitle = "Proc. 5th Sympos. Theoret. Aspects Comput. Sci." -, site = "Bordeaux, France" -, series = "Lecture Notes Comput. Sci." -, volume = 294 -, year = 1988 -, pages = "312--321" -, update = "98.11 bibrelex, 98.03 mitchell, 97.11 sack" +, author = "J.-R. Sack and Subhash Suri" +, title = "An Optimal Algorithm for Detecting Weak Visibility of a Polygon" +, editor = "R. Cori and M. Wirsing" +, booktitle = "Proc. 5th Sympos. Theoret. Aspects Comput. Sci." +, site = "Bordeaux, France" +, series = "Lecture Notes Comput. Sci." +, volume = 294 +, year = 1988 +, pages = "312--321" +, update = "98.11 bibrelex, 98.03 mitchell, 97.11 sack" } @article{ss-oadwv-90 -, author = "J.-R. Sack and Subhash Suri" -, title = "An optimal algorithm for detecting weak visibility of a polygon" -, journal = "IEEE Trans. Comput." -, volume = 39 -, number = 10 -, year = 1990 -, pages = "1213--1219" -, keywords = "computer graphics, visibility, hidden line/surface elimination, polygons, two-dimensional" -, succeeds = "ss-oadwv-86" -, update = "98.03 mitchell, 95.01 mitchell" +, author = "J.-R. Sack and Subhash Suri" +, title = "An optimal algorithm for detecting weak visibility of a polygon" +, journal = "IEEE Trans. Comput." +, volume = 39 +, number = 10 +, year = 1990 +, pages = "1213--1219" +, keywords = "computer graphics, visibility, hidden line/surface elimination, polygons, two-dimensional" +, succeeds = "ss-oadwv-86" +, update = "98.03 mitchell, 95.01 mitchell" } @inproceedings{st-ltadr-81 -, author = "J.-R. Sack and G. T. Toussaint" -, title = "A linear-time algorithm for decomposing rectilinear polygons into convex quadrilaterals" -, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." -, year = 1981 -, pages = "21--30" -, keywords = "decomposition, partition, visibility, shape, polygons, two-dimensional, convex" +, author = "J.-R. Sack and G. T. Toussaint" +, title = "A linear-time algorithm for decomposing rectilinear polygons into convex quadrilaterals" +, booktitle = "Proc. 19th Allerton Conf. Commun. Control Comput." +, year = 1981 +, pages = "21--30" +, keywords = "decomposition, partition, visibility, shape, polygons, two-dimensional, convex" } @incollection{st-gprp-88 -, author = "J.-R. Sack and G. T. Toussaint" -, title = "Guard placement in rectilinear polygons" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "153--175" -, keywords = "decomposition, covering, partition, visibility, shape, polygons, two-dimensional, convex" +, author = "J.-R. Sack and G. T. Toussaint" +, title = "Guard placement in rectilinear polygons" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "153--175" +, keywords = "decomposition, covering, partition, visibility, shape, polygons, two-dimensional, convex" } @article{st-sppts-87 -, author = "J.-R. Sack and G. T. Toussaint" -, title = "Separability of pairs of polygons through single translations" -, journal = "Robotica" -, volume = 5 -, year = 1987 -, pages = "55--63" -, keywords = "robotics, motion planning, decomposition, partition, separation, path planning, polygons, two-dimensional" +, author = "J.-R. Sack and G. T. Toussaint" +, title = "Separability of pairs of polygons through single translations" +, journal = "Robotica" +, volume = 5 +, year = 1987 +, pages = "55--63" +, keywords = "robotics, motion planning, decomposition, partition, separation, path planning, polygons, two-dimensional" } @book{su-hcg-00 -, title = "Handbook of Computational Geometry" -, editor = "J.-R. Sack and J. Urrutia" -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 2000 -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 97.03 tamassia" -, annote = "A collection of 22 survey articles: as-dssga-00, as-aa-00,ag-dgsmi-00, ac-dpcg-00, - ak-vd-00, bp-mg-00, dmp-acggi-00, hd-mgvia-00, e-sts-00, gr-gds-00, k-pd-00, msd-ldp-00, - m-dcg-00, s-rpigc-00, m-gspno-00, m-racg-00, nw-sdscd-00, rs-pcgau-00, ags-vp-00, - s-cppcg-00, t-gd-00, u-agip-00" +, title = "Handbook of Computational Geometry" +, editor = "J.-R. Sack and J. Urrutia" +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 2000 +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 97.03 tamassia" +, annote = "A collection of 22 survey articles: as-dssga-00, as-aa-00,ag-dgsmi-00, ac-dpcg-00, + ak-vd-00, bp-mg-00, dmp-acggi-00, hd-mgvia-00, e-sts-00, gr-gds-00, k-pd-00, msd-ldp-00, + m-dcg-00, s-rpigc-00, m-gspno-00, m-racg-00, nw-sdscd-00, rs-pcgau-00, ags-vp-00, + s-cppcg-00, t-gd-00, u-agip-00" } @article{sj-amksm-93 -, author = "E. Sacks and L. Joskowicz" -, title = "Automated modeling and kinematic simulation of mechanisms" -, journal = "Comput. Aided Design" -, volume = 25 -, number = 2 -, year = 1993 -, update = "98.03 bibrelex" +, author = "E. Sacks and L. Joskowicz" +, title = "Automated modeling and kinematic simulation of mechanisms" +, journal = "Comput. Aided Design" +, volume = 25 +, number = 2 +, year = 1993 +, update = "98.03 bibrelex" } @article{sj-ckahp-95 -, author = "E. Sacks and L. Joskowicz" -, title = "Computational Kinematic Analysis of Higher Pairs with Multiple Contacts" -, journal = "ASME J. Mech. Design" -, volume = "??" -, year = 1995 -, note = "To appear" -, update = "98.03 bibrelex" +, author = "E. Sacks and L. Joskowicz" +, title = "Computational Kinematic Analysis of Higher Pairs with Multiple Contacts" +, journal = "ASME J. Mech. Design" +, volume = "??" +, year = 1995 +, note = "To appear" +, update = "98.03 bibrelex" } @inproceedings{sj-cscmd-94 -, author = "E. Sacks and L. Joskowicz" -, title = "Configuration space computation for mechanism design" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1994 -, update = "98.03 bibrelex" +, author = "E. Sacks and L. Joskowicz" +, title = "Configuration space computation for mechanism design" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1994 +, update = "98.03 bibrelex" } @article{s-sagtf-80 -, author = "E. A. Sadek" -, title = "A Scheme for the Automatic Generation of Triangular Finite Elements" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 15 -, year = 1980 -, pages = "1813--1822" -, annote = "Triangulation of a region, no internal points - specified. Builds triangles around corners and then - proceeds along edges to cut off a layer and then - repeats. when subdividing a quadrilateral suggests that - with larger value of $R = \frac ab+ - \frac{b_1/b_2}{a_1/a_2}$ ($a$ and $b$ are lengths of - diagonals which cut each other into $a_1\ge a_2$ and - $b_1\ge b_2$)" +, author = "E. A. Sadek" +, title = "A Scheme for the Automatic Generation of Triangular Finite Elements" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 15 +, year = 1980 +, pages = "1813--1822" +, annote = "Triangulation of a region, no internal points + specified. Builds triangles around corners and then + proceeds along edges to cut off a layer and then + repeats. when subdividing a quadrilateral suggests that + with larger value of $R = \frac ab+ + \frac{b_1/b_2}{a_1/a_2}$ ($a$ and $b$ are lengths of + diagonals which cut each other into $a_1\ge a_2$ and + $b_1\ge b_2$)" } @techreport{spd-e2dso-88 -, author = "S. E. O. Saeed and A. de Pennington and J. R. Dodsworth" -, title = "An Efficient $2{D}$ Solid Offsetting Algorithm" -, institution = "Dept. of Mechanical Engineering, U. of Leeds" -, address = "Leeds, UK" -, year = 1988 -, update = "93.09 held" +, author = "S. E. O. Saeed and A. de Pennington and J. R. Dodsworth" +, title = "An Efficient $2{D}$ Solid Offsetting Algorithm" +, institution = "Dept. of Mechanical Engineering, U. of Leeds" +, address = "Leeds, UK" +, year = 1988 +, update = "93.09 held" } @article{spd-ogm-88 -, author = "S. E. O. Saeed and A. de Pennington and J. R. Dodsworth" -, title = "Offsetting in Geometric Modeling" -, journal = "Comput. Aided Design" -, volume = 20 -, number = 2 -, month = mar -, year = 1988 -, pages = "67--74" -, update = "93.09 held" +, author = "S. E. O. Saeed and A. de Pennington and J. R. Dodsworth" +, title = "Offsetting in Geometric Modeling" +, journal = "Comput. Aided Design" +, volume = 20 +, number = 2 +, month = mar +, year = 1988 +, pages = "67--74" +, update = "93.09 held" } @article{sl-sdtcm-91 -, author = "S. Safavian and D. Landgrebe" -, title = "A survey of decision tree classifier methodology" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 21 -, number = 3 -, year = 1991 -, pages = "660--674" -, update = "98.07 bibrelex" +, author = "S. Safavian and D. Landgrebe" +, title = "A survey of decision tree classifier methodology" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 21 +, number = 3 +, year = 1991 +, pages = "660--674" +, update = "98.07 bibrelex" } @book{s-sfc-94 -, author = "H. Sagan" -, title = "Space-filling curves" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1994 -, update = "97.07 agarwal" +, author = "H. Sagan" +, title = "Space-filling curves" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1994 +, update = "97.07 agarwal" } @inproceedings{s-ansiu-87 -, author = "J. Sage" -, title = "Artificial neural system implementations using {CCD} and {NMOS} technologies" -, booktitle = "Proc. Workshop on Artificial Neural Systems" -, organization = "Jet Propulsion Laboratory" -, year = 1987 -, pages = "72--84" -, update = "98.07 bibrelex" +, author = "J. Sage" +, title = "Artificial neural system implementations using {CCD} and {NMOS} technologies" +, booktitle = "Proc. Workshop on Artificial Neural Systems" +, organization = "Jet Propulsion Laboratory" +, year = 1987 +, pages = "72--84" +, update = "98.07 bibrelex" } @inproceedings{stw-annic-86 -, author = "J. Sage and K. Thompson and R. Withers" -, title = "An artificial neural network integrated circuit based on {NMOS}/{CCD} principles" -, editor = "J. Denker" -, booktitle = "Proc. AIP Conference: Neural Networks for Computing" -, site = "New York, NY" -, volume = 151 -, organization = "American Institute of Physics" -, year = 1986 -, pages = "381--385" -, update = "98.07 bibrelex" +, author = "J. Sage and K. Thompson and R. Withers" +, title = "An artificial neural network integrated circuit based on {NMOS}/{CCD} principles" +, editor = "J. Denker" +, booktitle = "Proc. AIP Conference: Neural Networks for Computing" +, site = "New York, NY" +, volume = 151 +, organization = "American Institute of Physics" +, year = 1986 +, pages = "381--385" +, update = "98.07 bibrelex" } @inproceedings{sh-pmttr-85 -, author = "G. Sahar and J. Hollerbach" -, title = "Planning of Minimum-Time Trajectories for Robot Arms" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "St. Louis" -, year = 1985 -, update = "97.11 bibrelex" +, author = "G. Sahar and J. Hollerbach" +, title = "Planning of Minimum-Time Trajectories for Robot Arms" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "St. Louis" +, year = 1985 +, update = "97.11 bibrelex" } @techreport{sh-pmttr-84 -, author = "G. Sahar and J. M. Hollerbach" -, title = "Planning of minimum-time trajectories for robot arms" -, type = "Technical {Report}" -, number = "A. I. Memo No. 804" -, institution = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, month = nov -, year = 1984 -, update = "97.11 bibrelex" +, author = "G. Sahar and J. M. Hollerbach" +, title = "Planning of minimum-time trajectories for robot arms" +, type = "Technical {Report}" +, number = "A. I. Memo No. 804" +, institution = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, month = nov +, year = 1984 +, update = "97.11 bibrelex" } @inproceedings{stv-dcasp-92 -, author = "S. Sairam and R. Tamassia and J. S. Vitter" -, title = "A Divide and Conquer Approach to Shortest Paths in Planar Layered Digraphs" -, booktitle = "Proc. 4th IEEE Symposium on Parallel and Distributed Processing" -, year = 1992 -, pages = "176--183" -, precedes = "stv-dcasp-" -, update = "94.09 vitter, 94.05 tamassia" +, author = "S. Sairam and R. Tamassia and J. S. Vitter" +, title = "A Divide and Conquer Approach to Shortest Paths in Planar Layered Digraphs" +, booktitle = "Proc. 4th IEEE Symposium on Parallel and Distributed Processing" +, year = 1992 +, pages = "176--183" +, precedes = "stv-dcasp-" +, update = "94.09 vitter, 94.05 tamassia" } @article{stv-dcasp- -, author = "S. Sairam and R. Tamassia and J. S. Vitter" -, title = "A Divide and Conquer Approach to Shortest Paths in Planar Layered Digraphs" -, journal = "Algorithmica" -, volume = "??" -, year = "to appear" -, note = "Preprint: Technical Report CS-92-15, Dept. of Computer Science, Brown Univ. (1992)" -, succeeds = "stv-dcasp-92" -, update = "94.05 tamassia" +, author = "S. Sairam and R. Tamassia and J. S. Vitter" +, title = "A Divide and Conquer Approach to Shortest Paths in Planar Layered Digraphs" +, journal = "Algorithmica" +, volume = "??" +, year = "to appear" +, note = "Preprint: Technical Report CS-92-15, Dept. of Computer Science, Brown Univ. (1992)" +, succeeds = "stv-dcasp-92" +, update = "94.05 tamassia" } @inproceedings{svt-ctaic-93 -, author = "S. Sairam and J. S. Vitter and R. Tamassia" -, title = "A Complexity Theoretic Approach to Incremental Computation" -, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 665 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "640--649" -, keywords = "dynamic computation, complexity theory" -, precedes = "msvt-cmic-94" -, update = "97.11 bibrelex, 94.05 tamassia" +, author = "S. Sairam and J. S. Vitter and R. Tamassia" +, title = "A Complexity Theoretic Approach to Incremental Computation" +, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 665 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "640--649" +, keywords = "dynamic computation, complexity theory" +, precedes = "msvt-cmic-94" +, update = "97.11 bibrelex, 94.05 tamassia" } @article{st-pwvt-88 -, author = "M. Sakamoto and M. Takagi" -, title = "Patterns of weighted {Voronoi} Tessellations" -, journal = "Science and Form" -, volume = 3 -, year = 1988 -, pages = "103--111" -, update = "00.03 bibrelex" +, author = "M. Sakamoto and M. Takagi" +, title = "Patterns of weighted {Voronoi} Tessellations" +, journal = "Science and Form" +, volume = 3 +, year = 1988 +, pages = "103--111" +, update = "00.03 bibrelex" } @techreport{s-pcpbg-81 -, author = "B. Sakoda" -, title = "Parallel construction of polygonal boundaries from given vertices on a raster" -, type = "Technical {Report}" -, number = "CS81 1-21" -, institution = "Dept. Comput. Sci., Pennsylvania State Univ." -, year = 1981 -, update = "97.11 bibrelex" +, author = "B. Sakoda" +, title = "Parallel construction of polygonal boundaries from given vertices on a raster" +, type = "Technical {Report}" +, number = "CS81 1-21" +, institution = "Dept. Comput. Sci., Pennsylvania State Univ." +, year = 1981 +, update = "97.11 bibrelex" } @incollection{s-sh-93 -, author = "Michael E. Saks" -, title = "Slicing the Hypercube" -, editor = "K. Walker" -, booktitle = "Surveys in Combinatorics" -, series = "London Mathematical Society Lecture Notes Series" -, volume = 187 -, publisher = "Cambridge University Press" -, year = 1993 -, pages = "211--256" -, update = "94.05 aich" +, author = "Michael E. Saks" +, title = "Slicing the Hypercube" +, editor = "K. Walker" +, booktitle = "Surveys in Combinatorics" +, series = "London Mathematical Society Lecture Notes Series" +, volume = 187 +, publisher = "Cambridge University Press" +, year = 1993 +, pages = "211--256" +, update = "94.05 aich" } @incollection{s-oiphv-82 -, author = "B. E. A. Saleh" -, title = "Optical information processing and the human visual system" -, booktitle = "Applications of Optical Fourier Transforms" -, year = 1982 -, pages = "431--463" -, update = "98.11 bibrelex" +, author = "B. E. A. Saleh" +, title = "Optical information processing and the human visual system" +, booktitle = "Applications of Optical Fourier Transforms" +, year = 1982 +, pages = "431--463" +, update = "98.11 bibrelex" } @mastersthesis{s-sbevc-96 -, author = "S. Salinger" -, title = "Struktureigenschaften von {Bereichsr{\"a}umen} endlicher {VC}-{Dimension}" -, type = "Masters Thesis" -, school = "Fachbereich Mathematik, Freie Univ. Berlin" -, address = "Berlin, Germany" -, year = 1996 -, keywords = "masters thesis" -, update = "97.03 gaertner+salinger" +, author = "S. Salinger" +, title = "Struktureigenschaften von {Bereichsr{\"a}umen} endlicher {VC}-{Dimension}" +, type = "Masters Thesis" +, school = "Fachbereich Mathematik, Freie Univ. Berlin" +, address = "Berlin, Germany" +, year = 1996 +, keywords = "masters thesis" +, update = "97.03 gaertner+salinger" } @inproceedings{s-dcah-84 -, author = "J. Salisbury" -, title = "Design and control of an articulated hand" -, booktitle = "Proc. 1st Intl. Sympos. Design and Synthesis" -, site = "Tokyo, Japan" -, year = 1984 -, update = "98.11 bibrelex" +, author = "J. Salisbury" +, title = "Design and control of an articulated hand" +, booktitle = "Proc. 1st Intl. Sympos. Design and Synthesis" +, site = "Tokyo, Japan" +, year = 1984 +, update = "98.11 bibrelex" } @article{s-irp-87 -, author = "G. T. Sallee" -, title = "Invertible relations on polytopes" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "395--399" +, author = "G. T. Sallee" +, title = "Invertible relations on polytopes" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "395--399" } @article{s-scsp-73 -, author = "G. T. Sallee" -, title = "Stretching chords of space curves" -, journal = "Geom. Dedicata" -, volume = 2 -, year = 1973 -, pages = "311--315" -, update = "02.03 orourke" +, author = "G. T. Sallee" +, title = "Stretching chords of space curves" +, journal = "Geom. Dedicata" +, volume = 2 +, year = 1973 +, pages = "311--315" +, update = "02.03 orourke" } @book{s-limha-85 -, author = "G. Salmon" -, title = "Lessons Introductory to the Modern Higher Algebra" -, publisher = "Chelsea Publishing Company" -, address = "New York, NY" -, year = 1985 -, update = "97.11 bibrelex" +, author = "G. Salmon" +, title = "Lessons Introductory to the Modern Higher Algebra" +, publisher = "Chelsea Publishing Company" +, address = "New York, NY" +, year = 1985 +, update = "97.11 bibrelex" } @article{s-eppa-78 -, author = "K. B. Salomon" -, title = "An efficient point-in-polygon algorithm" -, journal = "Comput. Geosci." -, volume = 4 -, year = 1978 -, pages = "173--178" +, author = "K. B. Salomon" +, title = "An efficient point-in-polygon algorithm" +, journal = "Comput. Geosci." +, volume = 4 +, year = 1978 +, pages = "173--178" } @article{s-lisps-89 -, author = "J. Salowe" -, title = "{$L_{\infty}$} interdistance selection by parametric search" -, journal = "Inform. Process. Lett." -, volume = 30 -, year = 1989 -, pages = "9--14" +, author = "J. Salowe" +, title = "{$L_{\infty}$} interdistance selection by parametric search" +, journal = "Inform. Process. Lett." +, volume = 30 +, year = 1989 +, pages = "9--14" } @incollection{s-ps-97 -, author = "J. Salowe" -, title = "Parametric search" -, chapter = 37 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "683--698" -, update = "97.11 orourke" +, author = "J. Salowe" +, title = "Parametric search" +, chapter = 37 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "683--698" +, update = "97.11 orourke" } @phdthesis{s-spcg-87 -, author = "J. Salowe" -, title = "Selection problems in computational geometry" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1987 -, keywords = "doctoral thesis" +, author = "J. Salowe" +, title = "Selection problems in computational geometry" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1987 +, keywords = "doctoral thesis" } @article{s-cmsg-91 -, author = "J. S. Salowe" -, title = "Constructing multidimensional spanner graphs" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 2 -, year = 1991 -, pages = "99--107" -, keywords = "distance, minimum spanning tree, spanning graph, sparse" +, author = "J. S. Salowe" +, title = "Constructing multidimensional spanner graphs" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 2 +, year = 1991 +, pages = "99--107" +, keywords = "distance, minimum spanning tree, spanning graph, sparse" } @inproceedings{s-cmsga-91 -, author = "J. S. Salowe" -, title = "Construction of multidimensional spanner graphs, with applications to minimum spanning trees" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "256--261" -, keywords = "proximity, minimum spanning tree" -, cites = "aesw-emstb-90, addj-gsswg-90, c-tipga-86, c-fetaa-84, dj-wtacg-89, dfs-dgaag-90, gbt-srtgp-84, ggst-eamst-86, k-aceg-88, kg-dtcac-89, ll-tapga-89, sh-cpp-75, v-mstkd-88, v-oaann-89, y-cmstk-82, ZZZ" -, update = "97.11 bibrelex" +, author = "J. S. Salowe" +, title = "Construction of multidimensional spanner graphs, with applications to minimum spanning trees" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "256--261" +, keywords = "proximity, minimum spanning tree" +, cites = "aesw-emstb-90, addj-gsswg-90, c-tipga-86, c-fetaa-84, dj-wtacg-89, dfs-dgaag-90, gbt-srtgp-84, ggst-eamst-86, k-aceg-88, kg-dtcac-89, ll-tapga-89, sh-cpp-75, v-mstkd-88, v-oaann-89, y-cmstk-82, ZZZ" +, update = "97.11 bibrelex" } @article{s-eis-92 -, author = "J. S. Salowe" -, title = "Enumerating interdistances in space" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, year = 1992 -, pages = "49--59" -, keywords = "distance, fixed-radius near neighbors, parametric search, selection" +, author = "J. S. Salowe" +, title = "Enumerating interdistances in space" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, year = 1992 +, pages = "49--59" +, keywords = "distance, fixed-radius near neighbors, parametric search, selection" } @article{s-esgdf-94 -, author = "J. S. Salowe" -, title = "Euclidean spanner graphs with degree four" -, journal = "Discrete Appl. Math." -, volume = 54 -, year = 1994 -, pages = "55--66" -, update = "95.01 smid" +, author = "J. S. Salowe" +, title = "Euclidean spanner graphs with degree four" +, journal = "Discrete Appl. Math." +, volume = 54 +, year = 1994 +, pages = "55--66" +, update = "95.01 smid" } @inproceedings{s-esgsd-92 -, author = "J. S. Salowe" -, title = "On {Euclidean} spanner graphs with small degree" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "186--191" -, cites = "de-eaahc-84, dfs-dgaag-90, sv-hsiub-89, v-sgagc-91, ZZZ" -, update = "97.11 bibrelex" +, author = "J. S. Salowe" +, title = "On {Euclidean} spanner graphs with small degree" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "186--191" +, cites = "de-eaahc-84, dfs-dgaag-90, sv-hsiub-89, v-sgagc-91, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{s-sklac-89 -, author = "J. S. Salowe" -, title = "Selecting the $k$th largest-area convex polygon" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "243--250" +, author = "J. S. Salowe" +, title = "Selecting the $k$th largest-area convex polygon" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "243--250" } @inproceedings{s-sisie-91 -, author = "J. S. Salowe" -, title = "Shallow interdistance selection and interdistance enumeration" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "117--128" -, keywords = "proximity, distance" +, author = "J. S. Salowe" +, title = "Shallow interdistance selection and interdistance enumeration" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "117--128" +, keywords = "proximity, distance" } @inproceedings{sw-ersta-93 -, author = "J. S. Salowe and D. M. Warme" -, title = "An exact rectilinear {Steiner} tree algorithm" -, booktitle = "Proc. IEEE Inernat. Conf. Comput. Design" -, site = "Cambridge, MA" -, month = oct -, year = 1993 -, pages = "472--475" -, update = "98.03 bibrelex" +, author = "J. S. Salowe and D. M. Warme" +, title = "An exact rectilinear {Steiner} tree algorithm" +, booktitle = "Proc. IEEE Inernat. Conf. Comput. Design" +, site = "Cambridge, MA" +, month = oct +, year = 1993 +, pages = "472--475" +, update = "98.03 bibrelex" } @article{sw-tfprs-95 -, author = "J. S. Salowe and D. M. Warme" -, title = "Thirty-five point rectilinear {Steiner} minimal trees in a day" -, journal = "Networks" -, volume = 25 -, year = 1995 -, pages = "69--87" -, update = "98.07 bibrelex" +, author = "J. S. Salowe and D. M. Warme" +, title = "Thirty-five point rectilinear {Steiner} minimal trees in a day" +, journal = "Networks" +, volume = 25 +, year = 1995 +, pages = "69--87" +, update = "98.07 bibrelex" } @book{s-atp-89 -, author = "G. Salton" -, title = "Automatic Text Processing" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1989 -, update = "97.07 agarwal" +, author = "G. Salton" +, title = "Automatic Text Processing" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1989 +, update = "97.07 agarwal" } @techreport{sdhk-lht-90 -, author = "S. Salzberg and A. Delcher and D. Heath and S. Kasif" -, title = "Learning with a helpful teacher" -, institution = "Dept. of Comp. Sci., Johns Hopkins Univ" -, address = "Baltimore, MD" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "S. Salzberg and A. Delcher and D. Heath and S. Kasif" +, title = "Learning with a helpful teacher" +, institution = "Dept. of Comp. Sci., Johns Hopkins Univ" +, address = "Baltimore, MD" +, year = 1990 +, update = "93.09 milone+mitchell" } @inproceedings{sdhk-lht-91 -, author = "S. Salzberg and A. Delcher and S. Heath and S. Kasif" -, title = "Learning with a helpful teacher" -, booktitle = "Proc. 12th Internat. Joint Conf. Artif. Intell." -, site = "Sydney, Australia" -, year = 1991 -, note = "To appear" -, update = "97.11 bibrelex" +, author = "S. Salzberg and A. Delcher and S. Heath and S. Kasif" +, title = "Learning with a helpful teacher" +, booktitle = "Proc. 12th Internat. Joint Conf. Artif. Intell." +, site = "Sydney, Australia" +, year = 1991 +, note = "To appear" +, update = "97.11 bibrelex" } @techreport{skw-gpsp-89 -, author = "K. Sambandan and K. Kedem and K. Wang" -, title = "Generalized planar sweeping of polygons" -, type = "Technical {Report}" -, number = "TR~89-1062" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = dec -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "K. Sambandan and K. Kedem and K. Wang" +, title = "Generalized planar sweeping of polygons" +, type = "Technical {Report}" +, number = "TR~89-1062" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = dec +, year = 1989 +, update = "93.09 milone+mitchell" } @article{sbm-gpiid-95 -, author = "M. Sambridge and J. Braun and H. McQueen" -, title = "Geophysical parameterization and interpolation of irregular data using natural neighbours" -, journal = "Geophys. J. Int." -, volume = 122 -, year = 1995 -, pages = "837--857" -, keywords = "natural neighbour interpolation, irregular parameterization" -, update = "95.09 sambridge" -, annote = "Presents details of algorithms for nn-interpolation of +, author = "M. Sambridge and J. Braun and H. McQueen" +, title = "Geophysical parameterization and interpolation of irregular data using natural neighbours" +, journal = "Geophys. J. Int." +, volume = 122 +, year = 1995 +, pages = "837--857" +, keywords = "natural neighbour interpolation, irregular parameterization" +, update = "95.09 sambridge" +, annote = "Presents details of algorithms for nn-interpolation of irregular data, including first derivatives. Tutorial style intended to introduce concepts and applications of natural neighbours to geophysicists." } @article{s-qmat-83 -, author = "H. Samet" -, title = "A quadtree medial axis transform" -, journal = "Commun. ACM" -, volume = 26 -, year = 1983 -, pages = "680--693" -, update = "97.11 bibrelex" +, author = "H. Samet" +, title = "A quadtree medial axis transform" +, journal = "Commun. ACM" +, volume = 26 +, year = 1983 +, pages = "680--693" +, update = "97.11 bibrelex" } @inproceedings{s-rhrss-92 -, author = "H. Samet" -, title = "A Review of Hierarchical Representations of Shape and Some Applications" -, editor = "C. Arcelli and L. P. Cordella and G. Sanniti di Baja" -, booktitle = "Visual Form Analysis and Recognition" -, publisher = "Plenum Press" -, address = "New York" -, year = 1992 -, pages = "451--467" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "A Review of Hierarchical Representations of Shape and Some Applications" +, editor = "C. Arcelli and L. P. Cordella and G. Sanniti di Baja" +, booktitle = "Visual Form Analysis and Recognition" +, publisher = "Plenum Press" +, address = "New York" +, year = 1992 +, pages = "451--467" +, update = "96.05 efrat" } @article{s-tdqta-85 -, author = "H. Samet" -, title = "A top--down quadtree traversal algorithm" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 7 -, number = 1 -, month = jan -, year = 1985 -, pages = "94--98" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "A top--down quadtree traversal algorithm" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 7 +, number = 1 +, month = jan +, year = 1985 +, pages = "94--98" +, update = "96.05 efrat" } @article{s-acqr-84 -, author = "H. Samet" -, title = "Algorithms for the conversion of quadtrees to rasters" -, journal = "Comput. Vision Graph. Image Process." -, volume = 26 -, number = 1 -, month = apr -, year = 1984 -, pages = "1--16" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "Algorithms for the conversion of quadtrees to rasters" +, journal = "Comput. Vision Graph. Image Process." +, volume = 26 +, number = 1 +, month = apr +, year = 1984 +, pages = "1--16" +, update = "96.05 efrat" } @article{s-acrq-81 -, author = "H. Samet" -, title = "An algorithm for converting rasters to quadtrees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-3" -, year = 1981 -, pages = "93--95" +, author = "H. Samet" +, title = "An algorithm for converting rasters to quadtrees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-3" +, year = 1981 +, pages = "93--95" } @incollection{s-oqorh-88 -, author = "H. Samet" -, title = "An overview of quadtrees, octrees, and related hierarchical data structures" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1988 -, pages = "51--68" -, keywords = "data structuring, quad trees, oct trees, survey paper" -, update = "97.03 schwarzkopf" +, author = "H. Samet" +, title = "An overview of quadtrees, octrees, and related hierarchical data structures" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1988 +, pages = "51--68" +, keywords = "data structuring, quad trees, oct trees, survey paper" +, update = "97.03 schwarzkopf" } @book{s-asdsc-90 -, author = "H. Samet" -, title = "Applications of Spatial Data Structures: Computer Graphics, Image Processing, and {GIS}" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1990 -, isbn = "0-201-50300-X" -, keywords = "octrees" -, update = "97.03 schwarzkopf, 93.09 held" +, author = "H. Samet" +, title = "Applications of Spatial Data Structures: Computer Graphics, Image Processing, and {GIS}" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1990 +, isbn = "0-201-50300-X" +, keywords = "octrees" +, update = "97.03 schwarzkopf, 93.09 held" } @article{s-cpirq-81 -, author = "H. Samet" -, title = "Computing perimeters of images represented by quadtrees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-3" -, year = 1981 -, pages = "686--687" +, author = "H. Samet" +, title = "Computing perimeters of images represented by quadtrees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-3" +, year = 1981 +, pages = "686--687" } @article{s-ccluq-81 -, author = "H. Samet" -, title = "Connected component labeling using quad trees" -, journal = "J. ACM" -, volume = 28 -, year = 1981 -, pages = "487--501" +, author = "H. Samet" +, title = "Connected component labeling using quad trees" +, journal = "J. ACM" +, volume = 28 +, year = 1981 +, pages = "487--501" } @article{s-dsqac-84 -, author = "H. Samet" -, title = "Data structures for quadtree approximation and compression" -, journal = "Commun. ACM" -, volume = 27 -, year = 1984 -, pages = "973--993" +, author = "H. Samet" +, title = "Data structures for quadtree approximation and compression" +, journal = "Commun. ACM" +, volume = 27 +, year = 1984 +, pages = "973--993" } @article{s-dtdqt-80 -, author = "H. Samet" -, title = "Deletion in two-dimensional quad trees" -, journal = "Commun. ACM" -, volume = 23 -, year = 1980 -, pages = "703--710" +, author = "H. Samet" +, title = "Deletion in two-dimensional quad trees" +, journal = "Commun. ACM" +, volume = 23 +, year = 1980 +, pages = "703--710" } @article{s-dtirq-82 -, author = "H. Samet" -, title = "Distance transform for images represented by quadtrees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-4" -, year = 1982 -, pages = "298--303" +, author = "H. Samet" +, title = "Distance transform for images represented by quadtrees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-4" +, year = 1982 +, pages = "298--303" } @inproceedings{s-hdssr-90 -, author = "H. Samet" -, title = "Hierarchical Data Structures for Spatial Reasoning" -, editor = "L. F. Pau" -, booktitle = "Mapping and Spatial Modelling for Navigation" -, publisher = "Springer-Verlag" -, address = "Berlin, Germany" -, year = 1990 -, pages = "41--58" -, update = "96.09 agarwal, 96.05 efrat" +, author = "H. Samet" +, title = "Hierarchical Data Structures for Spatial Reasoning" +, editor = "L. F. Pau" +, booktitle = "Mapping and Spatial Modelling for Navigation" +, publisher = "Springer-Verlag" +, address = "Berlin, Germany" +, year = 1990 +, pages = "41--58" +, update = "96.09 agarwal, 96.05 efrat" } @incollection{s-hdstd-92 -, author = "H. Samet" -, title = "Hierarchical Data Structures for Three-Dimensional Data" -, editor = "R. Vinken" -, booktitle = "From Geoscientific Map Series to Geo-Information Systems" -, series = "Geologisches Jahrbuch A" -, volume = 122 -, publisher = "??" -, address = "Hannover, Germany" -, year = 1992 -, pages = "45--58" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "Hierarchical Data Structures for Three-Dimensional Data" +, editor = "R. Vinken" +, booktitle = "From Geoscientific Map Series to Geo-Information Systems" +, series = "Geologisches Jahrbuch A" +, volume = 122 +, publisher = "??" +, address = "Hannover, Germany" +, year = 1992 +, pages = "45--58" +, update = "96.05 efrat" } @article{s-hrcsr-88 -, author = "H. Samet" -, title = "Hierarchical representations of collections of small rectangles" -, journal = "ACM Comput. Surv." -, volume = 20 -, number = 4 -, month = dec -, year = 1988 -, pages = "271--309" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "Hierarchical representations of collections of small rectangles" +, journal = "ACM Comput. Surv." +, volume = 20 +, number = 4 +, month = dec +, year = 1988 +, pages = "271--309" +, update = "96.05 efrat" } @inproceedings{s-hsds-89 -, author = "H. Samet" -, title = "Hierarchical spatial data structures" -, editor = "A. Buchmann and O. G{\"u}nther and T. R. Smith and Y. F. Wang" -, booktitle = "Design and Implementation of Large Spatial Databases: First Symposium" -, site = "Santa Barbara, California" -, month = jul -, year = 1989 -, pages = "193--212" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "Hierarchical spatial data structures" +, editor = "A. Buchmann and O. G{\"u}nther and T. R. Smith and Y. F. Wang" +, booktitle = "Design and Implementation of Large Spatial Databases: First Symposium" +, site = "Santa Barbara, California" +, month = jul +, year = 1989 +, pages = "193--212" +, update = "96.05 efrat" } @article{s-irton-89 -, author = "H. Samet" -, title = "Implementing ray tracing with octrees and neighbor finding" -, journal = "Computers \& Graphics" -, volume = 13 -, number = 4 -, year = 1989 -, pages = "445--460" -, note = "(also University of Maryland Computer +, author = "H. Samet" +, title = "Implementing ray tracing with octrees and neighbor finding" +, journal = "Computers \& Graphics" +, volume = 13 +, number = 4 +, year = 1989 +, pages = "445--460" +, note = "(also University of Maryland Computer Science TR--2204)" -, update = "96.05 efrat" +, update = "96.05 efrat" } @article{s-nfiro-89 -, author = "H. Samet" -, title = "Neighbor finding in images represented by octrees" -, journal = "Comput. Vision Graph. Image Process." -, volume = 46 -, number = 3 -, month = jun -, year = 1989 -, pages = "367--386" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "Neighbor finding in images represented by octrees" +, journal = "Comput. Vision Graph. Image Process." +, volume = 46 +, number = 3 +, month = jun +, year = 1989 +, pages = "367--386" +, update = "96.05 efrat" } @article{s-nftir-82 -, author = "H. Samet" -, title = "Neighbor finding techniques for images represented by quadtrees" -, journal = "Comput. Graph. Image Process." -, volume = 18 -, year = 1982 -, pages = "37--57" -, update = "97.11 bibrelex, 96.05 efrat" -, annote = "also Proceedings of Pattern Recognition and - Image Processing 81, Dallas, August 1981, 68--74" +, author = "H. Samet" +, title = "Neighbor finding techniques for images represented by quadtrees" +, journal = "Comput. Graph. Image Process." +, volume = 18 +, year = 1982 +, pages = "37--57" +, update = "97.11 bibrelex, 96.05 efrat" +, annote = "also Proceedings of Pattern Recognition and + Image Processing 81, Dallas, August 1981, 68--74" } @article{s-rqqma-85 -, author = "H. Samet" -, title = "Reconstruction of quadtrees from quadtree medial axis transforms" -, journal = "Comput. Vision Graph. Image Process." -, volume = 29 -, number = 3 -, month = mar -, year = 1985 -, pages = "311--328" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "Reconstruction of quadtrees from quadtree medial axis transforms" +, journal = "Comput. Vision Graph. Image Process." +, volume = 29 +, number = 3 +, month = mar +, year = 1985 +, pages = "311--328" +, update = "96.05 efrat" } @techreport{s-rrqrc-79 -, author = "H. Samet" -, title = "Region representation: quadtree-to-raster conversion" -, type = "Report" -, number = "TR-768" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1979 +, author = "H. Samet" +, title = "Region representation: quadtree-to-raster conversion" +, type = "Report" +, number = "TR-768" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1979 } @article{s-rrqba-80 -, author = "H. Samet" -, title = "Region representation: quadtrees from binary arrays" -, journal = "Comput. Graph. Image Process." -, volume = 13 -, year = 1980 -, pages = "88--93" +, author = "H. Samet" +, title = "Region representation: quadtrees from binary arrays" +, journal = "Comput. Graph. Image Process." +, volume = 13 +, year = 1980 +, pages = "88--93" } @article{s-rrqbc-80 -, author = "H. Samet" -, title = "Region representation: quadtrees from boundary codes" -, journal = "Commun. ACM" -, volume = 23 -, year = 1980 -, pages = "163--170" +, author = "H. Samet" +, title = "Region representation: quadtrees from boundary codes" +, journal = "Commun. ACM" +, volume = 23 +, year = 1980 +, pages = "163--170" } @techreport{s-rrrqc-79 -, author = "H. Samet" -, title = "Region representation: raster-to-quadtree conversion" -, type = "Report" -, number = "TR-766" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1979 +, author = "H. Samet" +, title = "Region representation: raster-to-quadtree conversion" +, type = "Report" +, number = "TR-766" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1979 } @article{s-remqt-94 -, author = "H. Samet" -, title = "Representaciones Especiales Mediante Quadtrees (translated by J. A. Cebrian)" -, journal = "Boleti\*'n del Asociacio\*'n Espan\*~ola de Sistemas de Informacio\*'n Geogra\*'fica" -, volume = 6 -, month = may -, year = 1994 -, pages = "10--12" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "Representaciones Especiales Mediante Quadtrees (translated by J. A. Cebrian)" +, journal = "Boleti\*'n del Asociacio\*'n Espan\*~ola de Sistemas de Informacio\*'n Geogra\*'fica" +, volume = 6 +, month = may +, year = 1994 +, pages = "10--12" +, update = "96.05 efrat" } @incollection{s-sds-95 -, author = "H. Samet" -, title = "Spatial data structures" -, editor = "W. Kim" -, booktitle = "Modern Database Systems, The Object Model, Interoperability and Beyond" -, publisher = "{ACM} Press and Addison-Wesley" -, year = 1995 -, pages = "361--385" -, update = "96.05 efrat" +, author = "H. Samet" +, title = "Spatial data structures" +, editor = "W. Kim" +, booktitle = "Modern Database Systems, The Object Model, Interoperability and Beyond" +, publisher = "{ACM} Press and Addison-Wesley" +, year = 1995 +, pages = "361--385" +, update = "96.05 efrat" } @book{s-sdsqo-89 -, author = "H. Samet" -, title = "Spatial Data Structures: Quadtrees, Octrees, and Other Hierarchical Methods" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1989 -, update = "97.11 bibrelex, 95.09 tamassia, 93.09 held" +, author = "H. Samet" +, title = "Spatial Data Structures: Quadtrees, Octrees, and Other Hierarchical Methods" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1989 +, update = "97.11 bibrelex, 95.09 tamassia, 93.09 held" } @book{s-dasds-90 -, author = "H. Samet" -, title = "The Design and Analysis of Spatial Data Structures" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1990 -, isbn = "0-201-50255-0" -, keywords = "octrees" -, update = "93.09 held" +, author = "H. Samet" +, title = "The Design and Analysis of Spatial Data Structures" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1990 +, isbn = "0-201-50255-0" +, keywords = "octrees" +, update = "93.09 held" } @article{s-qrhds-84 -, author = "H. Samet" -, title = "The quadtree and related hierarchical data structures" -, journal = "ACM Comput. Surv." -, volume = 16 -, number = 2 -, month = jun -, year = 1984 +, author = "H. Samet" +, title = "The quadtree and related hierarchical data structures" +, journal = "ACM Comput. Surv." +, volume = 16 +, number = 2 +, month = jun +, year = 1984 } @incollection{sa-sdmqp-95 -, author = "H. Samet and W. G. Aref" -, title = "Spatial data models and query processing" -, editor = "W. Kim" -, booktitle = "Modern Database Systems, The Object Model, Interoperability and Beyond" -, publisher = "{ACM} Press and Addison-Wesley" -, year = 1995 -, pages = "338--360" -, update = "96.05 efrat" +, author = "H. Samet and W. G. Aref" +, title = "Spatial data models and query processing" +, editor = "W. Kim" +, booktitle = "Modern Database Systems, The Object Model, Interoperability and Beyond" +, publisher = "{ACM} Press and Addison-Wesley" +, year = 1995 +, pages = "338--360" +, update = "96.05 efrat" } @inproceedings{sr-qrbi-80 -, author = "H. Samet and A. Rosenfeld" -, title = "Quadtree representations of binary images" -, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." -, site = "Miami Beach" -, month = dec -, year = 1980 -, pages = "815--818" -, update = "96.05 efrat" +, author = "H. Samet and A. Rosenfeld" +, title = "Quadtree representations of binary images" +, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." +, site = "Miami Beach" +, month = dec +, year = 1980 +, pages = "815--818" +, update = "96.05 efrat" } @inproceedings{sw-qrrce-83 -, author = "H. Samet and A. Rosenfeld and C. Shaffer and R. E. Webber" -, title = "Quadtree Region Representation in Cartography: Experimental Results" -, booktitle = "Proceedings of the CVPR83 Conference" -, site = "Washington DC" -, month = jun -, year = 1983 -, pages = "176--177" -, update = "96.05 efrat" +, author = "H. Samet and A. Rosenfeld and C. Shaffer and R. E. Webber" +, title = "Quadtree Region Representation in Cartography: Experimental Results" +, booktitle = "Proceedings of the CVPR83 Conference" +, site = "Washington DC" +, month = jun +, year = 1983 +, pages = "176--177" +, update = "96.05 efrat" } @inproceedings{srs-uhdsg-84 -, author = "H. Samet and A. Rosenfeld and C. A. Shaffer" -, title = "Use of hierarchical data structures in geographical information systems" -, booktitle = "ssdh84" -, site = "Zurich, Switzerland" -, month = aug -, year = 1984 -, pages = "392--411" -, update = "96.05 efrat" +, author = "H. Samet and A. Rosenfeld and C. A. Shaffer" +, title = "Use of hierarchical data structures in geographical information systems" +, booktitle = "ssdh84" +, site = "Zurich, Switzerland" +, month = aug +, year = 1984 +, pages = "392--411" +, update = "96.05 efrat" } @techreport{srsnh-ahdsg-84 -, author = "H. Samet and A. Rosenfeld and C. A. Shaffer and R. C. Nelson and Y. G. Huang" -, title = "Application of hierarchical data structures to geographic information systems: phase III" -, type = "Computer Science Department" -, number = "TR--1457" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = nov -, year = 1984 -, update = "96.05 efrat" +, author = "H. Samet and A. Rosenfeld and C. A. Shaffer and R. C. Nelson and Y. G. Huang" +, title = "Application of hierarchical data structures to geographic information systems: phase III" +, type = "Computer Science Department" +, number = "TR--1457" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = nov +, year = 1984 +, update = "96.05 efrat" } @techreport{srsnhf-ahdsg-85 -, author = "H. Samet and A. Rosenfeld and C. A. Shaffer and R. C. Nelson and Y. G. Huang and K. Fujimura" -, title = "Application of hierarchical data structures to geographic information systems: phase IV" -, type = "Computer Science Department" -, number = "TR--1578" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = dec -, year = 1985 -, update = "96.05 efrat" +, author = "H. Samet and A. Rosenfeld and C. A. Shaffer and R. C. Nelson and Y. G. Huang and K. Fujimura" +, title = "Application of hierarchical data structures to geographic information systems: phase IV" +, type = "Computer Science Department" +, number = "TR--1578" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = dec +, year = 1985 +, update = "96.05 efrat" } @article{srsw-gisuq-84 -, author = "H. Samet and A. Rosenfeld and C. A. Shaffer and R. E. Webber" -, title = "A geographic information system using quadtrees" -, journal = "Pattern Recogn." -, volume = 17 -, number = 6 -, month = "November/December" -, year = 1984 -, pages = "647--656" -, update = "96.05 efrat" +, author = "H. Samet and A. Rosenfeld and C. A. Shaffer and R. E. Webber" +, title = "A geographic information system using quadtrees" +, journal = "Pattern Recogn." +, volume = 17 +, number = 6 +, month = "November/December" +, year = 1984 +, pages = "647--656" +, update = "96.05 efrat" } @article{srsw-qrrce-83 -, author = "H. Samet and A. Rosenfeld and C. A. Shaffer and R. E. Webber" -, title = "Quadtree region representation in cartography: experimental results" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 13 -, number = 6 -, month = "November/December" -, year = 1983 -, pages = "1148--1154" -, update = "96.05 efrat" +, author = "H. Samet and A. Rosenfeld and C. A. Shaffer and R. E. Webber" +, title = "Quadtree region representation in cartography: experimental results" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 13 +, number = 6 +, month = "November/December" +, year = 1983 +, pages = "1148--1154" +, update = "96.05 efrat" } @techreport{ssw-dpcnu-85 -, author = "H. Samet and C. Shaffer and R. E. Webber" -, title = "Digitizing the plane with cells of non-uniform size" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "Baltimore, MD" -, year = 1985 +, author = "H. Samet and C. Shaffer and R. E. Webber" +, title = "Digitizing the plane with cells of non-uniform size" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "Baltimore, MD" +, year = 1985 } @article{ss-manfp-85 -, author = "H. Samet and C. A. Shaffer" -, title = "A model for the analysis of neighbor finding in pointer--based quadtrees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 7 -, number = 6 -, month = nov -, year = 1985 -, pages = "717--720" -, update = "96.05 efrat" +, author = "H. Samet and C. A. Shaffer" +, title = "A model for the analysis of neighbor finding in pointer--based quadtrees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 7 +, number = 6 +, month = nov +, year = 1985 +, pages = "717--720" +, update = "96.05 efrat" } @inproceedings{ssnhfr-rdqbg-86 -, author = "H. Samet and C. A. Shaffer and R. C. Nelson and Y. Huang and K. Fujimura and A. Rosenfeld" -, title = "Recent developments in quadtree-based geographic information systems" -, booktitle = "ssdh86" -, site = "Seattle, WA" -, month = jul -, year = 1986 -, pages = "15--32" -, update = "96.05 efrat" +, author = "H. Samet and C. A. Shaffer and R. C. Nelson and Y. Huang and K. Fujimura and A. Rosenfeld" +, title = "Recent developments in quadtree-based geographic information systems" +, booktitle = "ssdh86" +, site = "Seattle, WA" +, month = jul +, year = 1986 +, pages = "15--32" +, update = "96.05 efrat" } @article{ssnhfr-rdlqb-87 -, author = "H. Samet and C. A. Shaffer and R. C. Nelson and Y. G. Huang and K. Fujimura and A. Rosenfeld" -, title = "Recent developments in linear quadtree--based geographic information systems" -, journal = "Image Vision Comput." -, volume = 5 -, number = 3 -, month = aug -, year = 1987 -, pages = "187--197" -, update = "96.05 efrat" +, author = "H. Samet and C. A. Shaffer and R. C. Nelson and Y. G. Huang and K. Fujimura and A. Rosenfeld" +, title = "Recent developments in linear quadtree--based geographic information systems" +, journal = "Image Vision Comput." +, volume = 5 +, number = 3 +, month = aug +, year = 1987 +, pages = "187--197" +, update = "96.05 efrat" } @incollection{ssw-sqlqb-86 -, author = "H. Samet and C. A. Shaffer and R. E. Webber" -, title = "The segment quadtree: a linear quadtree--based representation for linear features" -, editor = "F. J. Peters and L. R. A. Kessener and M. L. P. van Lierop" -, booktitle = "Data Structures for Raster Graphics" -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1986 -, pages = "91--123" -, update = "96.09 agarwal, 96.05 efrat" -, annote = "also Proceedings of Computer Vision and +, author = "H. Samet and C. A. Shaffer and R. E. Webber" +, title = "The segment quadtree: a linear quadtree--based representation for linear features" +, editor = "F. J. Peters and L. R. A. Kessener and M. L. P. van Lierop" +, booktitle = "Data Structures for Raster Graphics" +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1986 +, pages = "91--123" +, update = "96.09 agarwal, 96.05 efrat" +, annote = "also Proceedings of Computer Vision and Pattern Recognition 85, San Francisco, June 1985, 385--389" } @techreport{st-gaccl-86 -, author = "H. Samet and M. Tamminen" -, title = "A general approach to connected component labeling of images" -, type = "Computer Science Department" -, number = "TR--1649" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = aug -, year = 1986 -, update = "96.05 efrat" -, annote = "also Proceedings of Computer Vision and +, author = "H. Samet and M. Tamminen" +, title = "A general approach to connected component labeling of images" +, type = "Computer Science Department" +, number = "TR--1649" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = aug +, year = 1986 +, update = "96.05 efrat" +, annote = "also Proceedings of Computer Vision and Pattern Recognition 86, Miami Beach, June 1986, 312--318" } @inproceedings{st-iaccl-86 -, author = "H. Samet and M. Tamminen" -, title = "An Improved Approach to Connected Component Labeling of Images" -, booktitle = "Proceedings of the CVPR86 Conference" -, site = "Miami Beach" -, month = jun -, year = 1986 -, pages = "312--318" -, update = "96.05 efrat" +, author = "H. Samet and M. Tamminen" +, title = "An Improved Approach to Connected Component Labeling of Images" +, booktitle = "Proceedings of the CVPR86 Conference" +, site = "Miami Beach" +, month = jun +, year = 1986 +, pages = "312--318" +, update = "96.05 efrat" } @article{st-actmo-90 -, author = "H. Samet and M. Tamminen" -, title = "Approximating {CSG} trees of moving objects" -, journal = "Visual Comput." -, volume = 6 -, number = 4 -, month = aug -, year = 1990 -, pages = "182--209" -, note = "(also University of Maryland Computer Science TR--1472)" -, update = "96.05 efrat" +, author = "H. Samet and M. Tamminen" +, title = "Approximating {CSG} trees of moving objects" +, journal = "Visual Comput." +, volume = 6 +, number = 4 +, month = aug +, year = 1990 +, pages = "182--209" +, note = "(also University of Maryland Computer Science TR--1472)" +, update = "96.05 efrat" } @article{st-bctt-85 -, author = "H. Samet and M. Tamminen" -, title = "Bintrees, {CSG} trees, and time" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, month = jul -, year = 1985 -, pages = "121--130" -, note = "Proc. SIGGRAPH '85" -, update = "96.09 devillers, 96.05 efrat" +, author = "H. Samet and M. Tamminen" +, title = "Bintrees, {CSG} trees, and time" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, month = jul +, year = 1985 +, pages = "121--130" +, note = "Proc. SIGGRAPH '85" +, update = "96.09 devillers, 96.05 efrat" } @article{st-cgpir-85 -, author = "H. Samet and M. Tamminen" -, title = "Computing geometric properties of images represented by linear quadtrees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 7 -, number = 2 -, month = mar -, year = 1985 -, pages = "229--24" -, note = "(also University of Maryland Computer +, author = "H. Samet and M. Tamminen" +, title = "Computing geometric properties of images represented by linear quadtrees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 7 +, number = 2 +, month = mar +, year = 1985 +, pages = "229--24" +, note = "(also University of Maryland Computer Science TR--1359)" -, update = "96.05 efrat" +, update = "96.05 efrat" } @article{st-eclia-88 -, author = "H. Samet and M. Tamminen" -, title = "Efficient component labeling of images of arbitrary dimension represented by linear bintrees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 10 -, number = 4 -, month = jul -, year = 1988 -, pages = "579--586" -, update = "96.05 efrat" +, author = "H. Samet and M. Tamminen" +, title = "Efficient component labeling of images of arbitrary dimension represented by linear bintrees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 10 +, number = 4 +, month = jul +, year = 1988 +, pages = "579--586" +, update = "96.05 efrat" } @inproceedings{st-enica-84 -, author = "H. Samet and M. Tamminen" -, title = "Experiences with new image component algorithms" -, editor = "K. Bo and H. A. Tucker" -, booktitle = "Proceedings of the EUROGRAPHICS'84 Conference" -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 1984 -, pages = "239--249" -, update = "96.05 efrat" +, author = "H. Samet and M. Tamminen" +, title = "Experiences with new image component algorithms" +, editor = "K. Bo and H. A. Tucker" +, booktitle = "Proceedings of the EUROGRAPHICS'84 Conference" +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 1984 +, pages = "239--249" +, update = "96.05 efrat" } @article{sw-csrmd-89 -, author = "Hanan Samet and Robert E. Webber" -, title = "A comparison of the space requirements of multi-dimensional quadtree-based file structures" -, journal = "Visual Comput." -, volume = 5 -, number = 6 -, month = dec -, year = 1989 -, pages = "349--359" -, keywords = "image databases, quadtrees, octrees, image compression" +, author = "Hanan Samet and Robert E. Webber" +, title = "A comparison of the space requirements of multi-dimensional quadtree-based file structures" +, journal = "Visual Comput." +, volume = 5 +, number = 6 +, month = dec +, year = 1989 +, pages = "349--359" +, keywords = "image databases, quadtrees, octrees, image compression" } @article{sw-dssbb-91 -, author = "H. Samet and R. E. Webber" -, title = "Data structures to support {B{\'e}zier}-based modeling" -, journal = "Comput. Aided Design" -, volume = 23 -, number = 3 -, month = apr -, year = 1991 -, pages = "162--176" -, update = "96.05 efrat" +, author = "H. Samet and R. E. Webber" +, title = "Data structures to support {B{\'e}zier}-based modeling" +, journal = "Comput. Aided Design" +, volume = 23 +, number = 3 +, month = apr +, year = 1991 +, pages = "162--176" +, update = "96.05 efrat" } @inproceedings{sw-hds-86 -, author = "H. Samet and R. E. Webber" -, title = "Hierarchical Data Structure" -, booktitle = "Proceedings of the Second International Electronic Image Week" -, site = "Nice, France" -, month = apr -, year = 1986 -, pages = "577--584" -, update = "96.05 efrat" +, author = "H. Samet and R. E. Webber" +, title = "Hierarchical Data Structure" +, booktitle = "Proceedings of the Second International Electronic Image Week" +, site = "Nice, France" +, month = apr +, year = 1986 +, pages = "577--584" +, update = "96.05 efrat" } @article{sw-hdsac1-88 -, author = "H. Samet and R. E. Webber" -, title = "Hierarchical data structures and algorithms for computer graphics, Part {I}: fundamentals" -, journal = "IEEE Comput. Graph. Appl." -, volume = 8 -, number = 5 -, month = may -, year = 1988 -, pages = "48--68" -, precedes = "sw-hdsac2-88" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "H. Samet and R. E. Webber" +, title = "Hierarchical data structures and algorithms for computer graphics, Part {I}: fundamentals" +, journal = "IEEE Comput. Graph. Appl." +, volume = 8 +, number = 5 +, month = may +, year = 1988 +, pages = "48--68" +, precedes = "sw-hdsac2-88" +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{sw-hdsac2-88 -, author = "H. Samet and R. E. Webber" -, title = "Hierarchical data structures and algorithms for computer graphics, Part {II}: applications" -, journal = "IEEE Comput. Graph. Appl." -, volume = 8 -, number = 4 -, month = jul -, year = 1988 -, pages = "59--75" -, keywords = "computer graphics --- Imaging Techniques; computer programming --- Algorithms; CSG; data processing; Data Structures; hidden-surface algorithms; octree; parallel and perspective projection methods; quadtree; ray tracing; surfaces --- Computer Simulation" -, succeeds = "sw-hdsac1-88" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "H. Samet and R. E. Webber" +, title = "Hierarchical data structures and algorithms for computer graphics, Part {II}: applications" +, journal = "IEEE Comput. Graph. Appl." +, volume = 8 +, number = 4 +, month = jul +, year = 1988 +, pages = "59--75" +, keywords = "computer graphics --- Imaging Techniques; computer programming --- Algorithms; CSG; data processing; Data Structures; hidden-surface algorithms; octree; parallel and perspective projection methods; quadtree; ray tracing; surfaces --- Computer Simulation" +, succeeds = "sw-hdsac1-88" +, update = "98.03 bibrelex, 97.11 bibrelex" } @techreport{sw-ebq-82 -, author = "H. Samet and R. E. Webber" -, title = "On encoding boundaries with quadtrees" -, type = "Computer Science" -, number = "TR--1162" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = feb -, year = 1982 -, update = "96.05 efrat" +, author = "H. Samet and R. E. Webber" +, title = "On encoding boundaries with quadtrees" +, type = "Computer Science" +, number = "TR--1162" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = feb +, year = 1982 +, update = "96.05 efrat" } @article{sw-ebq-84 -, author = "H. Samet and R. E. Webber" -, title = "On encoding boundaries with quadtrees" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 6 -, number = 3 -, month = may -, year = 1984 -, pages = "365--369" -, update = "97.11 bibrelex, 96.05 efrat" -, abstract = "efficient algorithms for boundary and superimposing - two maps encoded as line quadtrees" +, author = "H. Samet and R. E. Webber" +, title = "On encoding boundaries with quadtrees" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 6 +, number = 3 +, month = may +, year = 1984 +, pages = "365--369" +, update = "97.11 bibrelex, 96.05 efrat" +, abstract = "efficient algorithms for boundary and superimposing + two maps encoded as line quadtrees" } @article{sw-scpuq-85 -, author = "H. Samet and R. E. Webber" -, title = "Storing a Collection of Polygons Using Quadtrees" -, journal = "ACM Trans. Graph." -, volume = 4 -, number = 3 -, month = jul -, year = 1985 -, pages = "182--222" -, update = "93.09 held" +, author = "H. Samet and R. E. Webber" +, title = "Storing a Collection of Polygons Using Quadtrees" +, journal = "ACM Trans. Graph." +, volume = 4 +, number = 3 +, month = jul +, year = 1985 +, pages = "182--222" +, update = "93.09 held" } @inproceedings{sw-vr-91 -, author = "H. Samet and R. E. Webber" -, title = "Volume Representation" -, editor = "A. Kaufman" -, booktitle = "Volume Visualization" -, publisher = "IEEE Computer Society Press" -, address = "Washington, DC" -, year = 1991 -, pages = "19--22" -, update = "96.05 efrat" +, author = "H. Samet and R. E. Webber" +, title = "Volume Representation" +, editor = "A. Kaufman" +, booktitle = "Volume Visualization" +, publisher = "IEEE Computer Society Press" +, address = "Washington, DC" +, year = 1991 +, pages = "19--22" +, update = "96.05 efrat" } @book{s-pg-88 -, author = "Pierre Samuel" -, title = "Projective Geometry" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1988 -, update = "00.11 smid, 00.07 icking, 99.07 orourke" +, author = "Pierre Samuel" +, title = "Projective Geometry" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1988 +, update = "00.11 smid, 00.07 icking, 99.07 orourke" } @inproceedings{sk-ccmpc-92 -, author = "N. K. Sancheti and S. S. Keerthi" -, title = "Computation of Certain Measures of Proximity between Convex Polytopes : A Complexity Viewpoint" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Nice, France" -, year = 1992 -, pages = "2508--2513" -, update = "98.11 bibrelex" +, author = "N. K. Sancheti and S. S. Keerthi" +, title = "Computation of Certain Measures of Proximity between Convex Polytopes : A Complexity Viewpoint" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Nice, France" +, year = 1992 +, pages = "2508--2513" +, update = "98.11 bibrelex" } @inproceedings{s-fhhml-96 -, author = "G. Sander" -, title = "A Fast Heuristic for Hierarchical {Manhattan} Layout" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "447--458" -, keywords = "graph drawing, system" -, update = "98.11 bibrelex, 98.07 tamassia+vismara, 96.09 tamassia" +, author = "G. Sander" +, title = "A Fast Heuristic for Hierarchical {Manhattan} Layout" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "447--458" +, keywords = "graph drawing, system" +, update = "98.11 bibrelex, 98.07 tamassia+vismara, 96.09 tamassia" } @techreport{s-gdtrw-96 -, author = "G. Sander" -, title = "Graph Drawing Tools and Related Work" -, type = "manuscript" -, institution = "Universit{\"a}t des Saarlandes, Saarbr{\"u}ken, Germany" -, year = 1996 -, url = "http://www.cs.uni-sb.de/RW/users/sander/html/gstools.html" -, keywords = "graph drawing" -, update = "96.09 tamassia" +, author = "G. Sander" +, title = "Graph Drawing Tools and Related Work" +, type = "manuscript" +, institution = "Universit{\"a}t des Saarlandes, Saarbr{\"u}ken, Germany" +, year = 1996 +, url = "http://www.cs.uni-sb.de/RW/users/sander/html/gstools.html" +, keywords = "graph drawing" +, update = "96.09 tamassia" } @inproceedings{s-gltvt-95 -, author = "G. Sander" -, title = "Graph Layout through the {VCG} Tool" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "194--205" -, keywords = "graph drawing, system, layered" -, update = "95.01 tamassia" +, author = "G. Sander" +, title = "Graph Layout through the {VCG} Tool" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "194--205" +, keywords = "graph drawing, system, layered" +, update = "95.01 tamassia" } @mastersthesis{s-drpga-90 -, author = "L. Sander" -, title = "The design of robust primitives for geometric algorithms: with applications to line segment intersection and planar convex hull algorithms" -, school = "Dept. Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, keywords = "master thesis" -, update = "99.11 bibrelex, 98.07 bibrelex" +, author = "L. Sander" +, title = "The design of robust primitives for geometric algorithms: with applications to line segment intersection and planar convex hull algorithms" +, school = "Dept. Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, keywords = "master thesis" +, update = "99.11 bibrelex, 98.07 bibrelex" } @incollection{s-mv-93 -, author = "J. R. Sangwine-Yager" -, title = "Mixed volumes" -, booktitle = "Handbook of Convex Geometry" -, volume = "A" -, publisher = "North-Holland" -, year = 1993 -, pages = "43--71" -, update = "99.11 bibrelex, 97.11 bibrelex, 95.09 wenger, 95.01 matousek" +, author = "J. R. Sangwine-Yager" +, title = "Mixed volumes" +, booktitle = "Handbook of Convex Geometry" +, volume = "A" +, publisher = "North-Holland" +, year = 1993 +, pages = "43--71" +, update = "99.11 bibrelex, 97.11 bibrelex, 95.09 wenger, 95.01 matousek" } @article{sr-lvsta-75 -, author = "D. Sankoff and P. Rousseau" -, title = "Locating the vertices of a {Steiner} tree in an arbitrary metric space" -, journal = "Math. Program." -, volume = 9 -, year = 1975 -, pages = "240--246" -, update = "97.11 bibrelex" +, author = "D. Sankoff and P. Rousseau" +, title = "Locating the vertices of a {Steiner} tree in an arbitrary metric space" +, journal = "Math. Program." +, volume = 9 +, year = 1975 +, pages = "240--246" +, update = "97.11 bibrelex" } @phdthesis{s--92 -, author = "M. F. Sanner" -, title = "??" -, school = "UHA" -, address = "France" -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "M. F. Sanner" +, title = "??" +, school = "UHA" +, address = "France" +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{sos-frcms-95 -, author = "Michel F. Sanner and Arthur J. Olson and Jean-Claude Spehner" -, title = "Fast and Robust Computation of Molecular Surfaces" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C6--C7" -, keywords = "molecules, biology, visualization" -, cites = "lr-ipses-71, r-avpps-77, c-amsc-83, b--94, p--92, ea--93, c--93, s--90, v-hga-94, c--85, s--92, ho-smhsr-94, em-tdas-94, bh-hofca-86, do--93, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Michel F. Sanner and Arthur J. Olson and Jean-Claude Spehner" +, title = "Fast and Robust Computation of Molecular Surfaces" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C6--C7" +, keywords = "molecules, biology, visualization" +, cites = "lr-ipses-71, r-avpps-77, c-amsc-83, b--94, p--92, ea--93, c--93, s--90, v-hga-94, c--85, s--92, ho-smhsr-94, em-tdas-94, bh-hofca-86, do--93, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{s-vanpt-96 -, author = "C. Sansoni" -, title = "Visual Analysis: {A} New Probabilistic Technique to Obtain Landscape Visibility" -, journal = "Comput. Aided Design" -, volume = 28 -, number = 4 -, month = apr -, year = 1996 -, pages = "289--299" -, update = "98.03 mitchell, 97.03 held" +, author = "C. Sansoni" +, title = "Visual Analysis: {A} New Probabilistic Technique to Obtain Landscape Visibility" +, journal = "Comput. Aided Design" +, volume = 28 +, number = 4 +, month = apr +, year = 1996 +, pages = "289--299" +, update = "98.03 mitchell, 97.03 held" } @book{s-ipgp-79 -, author = "L. Santal{\'o}" -, title = "Integral Probability and Geometric Probability" -, series = "Encyclopedia of Mathematics and its Applications" -, volume = 1 -, publisher = "Addison-Wesley" -, year = 1979 -, update = "98.07 bibrelex" +, author = "L. Santal{\'o}" +, title = "Integral Probability and Geometric Probability" +, series = "Encyclopedia of Mathematics and its Applications" +, volume = 1 +, publisher = "Addison-Wesley" +, year = 1979 +, update = "98.07 bibrelex" } @article{s-tsppe-40 -, author = "L. A. Santal{\'o}" -, title = "A theorem on sets of parallelepipeds with parallel edges" -, journal = "Publ. Inst. Mat. Univ. Nac. Litoral" -, volume = 2 -, year = 1940 -, pages = "49--60" -, update = "98.03 bibrelex" +, author = "L. A. Santal{\'o}" +, title = "A theorem on sets of parallelepipeds with parallel edges" +, journal = "Publ. Inst. Mat. Univ. Nac. Litoral" +, volume = 2 +, year = 1940 +, pages = "49--60" +, update = "98.03 bibrelex" } @inbook{s-ig4km-36 -, author = "L. A. Santal{\'o}" -, title = "Integral geometry 4: on the kinematic measure in the plane" -, series = "Abh. Math. Senn." -, volume = 11 -, publisher = "Hamburg Univ." -, year = 1936 -, pages = "222--236" -, update = "98.07 bibrelex" +, author = "L. A. Santal{\'o}" +, title = "Integral geometry 4: on the kinematic measure in the plane" +, series = "Abh. Math. Senn." +, volume = 11 +, publisher = "Hamburg Univ." +, year = 1936 +, pages = "222--236" +, update = "98.07 bibrelex" } @book{s-ig5km-36 -, author = "L. A. Santal{\'o}" -, title = "Integral geometry 5: on the kinematic measure in space" -, series = "Actualit{\'e}s scientifiques et industrielles" -, volume = 357 -, publisher = "Hermann" -, address = "Paris, France" -, year = 1936 +, author = "L. A. Santal{\'o}" +, title = "Integral geometry 5: on the kinematic measure in space" +, series = "Actualit{\'e}s scientifiques et industrielles" +, volume = 357 +, publisher = "Hermann" +, address = "Paris, France" +, year = 1936 } @book{s-iggp-76 -, author = "L. A. Santal{\'o}" -, title = "Integral Geometry and Geometric Probability" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1976 +, author = "L. A. Santal{\'o}" +, title = "Integral Geometry and Geometric Probability" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1976 } @book{s-iig-53 -, author = "L. A. Santal{\'o}" -, title = "Introduction to integral geometry" -, series = "Actualit{\'e}s scientifiques et industrielles" -, volume = 1198 -, publisher = "Hermann" -, address = "Paris, France" -, year = 1953 +, author = "L. A. Santal{\'o}" +, title = "Introduction to integral geometry" +, series = "Actualit{\'e}s scientifiques et industrielles" +, volume = 1198 +, publisher = "Hermann" +, address = "Paris, France" +, year = 1953 } @article{sssu-gcpo-89 -, author = "N. Santoro and J. B. Sidney and S. J. Sidney and J. Urrutia" -, title = "Geometric containment and partial orders" -, journal = "SIAM J. Discrete Math." -, volume = 2 -, number = 2 -, year = 1989 -, pages = "245--254" -, update = "94.05 franciosa" +, author = "N. Santoro and J. B. Sidney and S. J. Sidney and J. Urrutia" +, title = "Geometric containment and partial orders" +, journal = "SIAM J. Discrete Math." +, volume = 2 +, number = 2 +, year = 1989 +, pages = "245--254" +, update = "94.05 franciosa" } @article{sssu-gcvd-87 -, author = "N. Santoro and J. B. Sidney and S. J. Sidney and J. Urrutia" -, title = "Geometric containment and vector dominance" -, journal = "Theoret. Comput. Sci." -, volume = 53 -, year = 1987 -, pages = "345--352" -, succeeds = "sssu-gcinr-84" +, author = "N. Santoro and J. B. Sidney and S. J. Sidney and J. Urrutia" +, title = "Geometric containment and vector dominance" +, journal = "Theoret. Comput. Sci." +, volume = 53 +, year = 1987 +, pages = "345--352" +, succeeds = "sssu-gcinr-84" } @techreport{sssu-gcinr-84 -, author = "N. Santoro and J. B. Sidney and S. J. Sidney and J. Urrutia" -, title = "Geometric containment is not reducible to pareto dominance" -, type = "Report" -, number = "SCS-TR-37" -, institution = "School Comput. Sci., Carleton Univ." -, address = "Ottawa, ON" -, year = 1984 -, precedes = "sssu-gcvd-87" +, author = "N. Santoro and J. B. Sidney and S. J. Sidney and J. Urrutia" +, title = "Geometric containment is not reducible to pareto dominance" +, type = "Report" +, number = "SCS-TR-37" +, institution = "School Comput. Sci., Carleton Univ." +, address = "Ottawa, ON" +, year = 1984 +, precedes = "sssu-gcvd-87" } @article{s-pcstd-00 -, author = "Francisco Santos" -, title = "A point configuration whose space of triangulations is disconnected" -, journal = "J. Amer. Math. Soc." -, volume = 13 -, number = 3 -, year = 2000 -, pages = "611--637" -, comments = "Example in $R^6$ is not in general position" -, update = "02.03 orourke" +, author = "Francisco Santos" +, title = "A point configuration whose space of triangulations is disconnected" +, journal = "J. Amer. Math. Soc." +, volume = 13 +, number = 3 +, year = 2000 +, pages = "611--637" +, comments = "Example in $R^6$ is not in general position" +, update = "02.03 orourke" } @inproceedings{s-acttp-01 -, author = "Francisco Santos" -, title = "Applications of the {Cayley} Trick to Triangulations of Polytopes" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "150--153" -, update = "01.04 icking" +, author = "Francisco Santos" +, title = "Applications of the {Cayley} Trick to Triangulations of Polytopes" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "150--153" +, update = "01.04 icking" } @inproceedings{s-bftpc-98 -, author = "Francisco Santos" -, title = "Bistellar Flips in Triangulations of Point Configurations" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "131--133" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Francisco Santos" +, title = "Bistellar Flips in Triangulations of Point Configurations" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "131--133" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{s-ctges-95 -, author = "F. Santos" -, title = "Codifying the Topology of Graph Embeddings on a Surface" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "57--59" -, update = "00.03 bibrelex" +, author = "F. Santos" +, title = "Codifying the Topology of Graph Embeddings on a Surface" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "57--59" +, update = "00.03 bibrelex" } @unpublished{s-nromd- -, author = "F. Santos" -, title = "Non-realizable oriented matroids coming from {Delaunay} triangulations for strictly convex matrics" -, note = "in preparation" -, update = "98.11 bibrelex" +, author = "F. Santos" +, title = "Non-realizable oriented matroids coming from {Delaunay} triangulations for strictly convex matrics" +, note = "in preparation" +, update = "98.11 bibrelex" } @inproceedings{s-dom-94 -, author = "F. Santos" -, title = "On {Delaunay} Oriented Matroids" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "195--200" -, keywords = "convex distance" -, cites = "bv-om-78, b-vdch-79, cd-vdbcd-85, cmrs-tspvd-93, iklm-cdf3s-93, k-cavd-89, m-dmpcg-90, m-ddvec-92, s-nromd-, sh-cpp-75, blwsz-om-93, cl-hcdc-88, ZZZ" -, update = "00.03 bibrelex, 98.11 bibrelex, 94.09 jones" +, author = "F. Santos" +, title = "On {Delaunay} Oriented Matroids" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "195--200" +, keywords = "convex distance" +, cites = "bv-om-78, b-vdch-79, cd-vdbcd-85, cmrs-tspvd-93, iklm-cdf3s-93, k-cavd-89, m-dmpcg-90, m-ddvec-92, s-nromd-, sh-cpp-75, blwsz-om-93, cl-hcdc-88, ZZZ" +, update = "00.03 bibrelex, 98.11 bibrelex, 94.09 jones" } @inproceedings{s-domcd-94 -, author = "Francisco Santos" -, title = "On {Delaunay} Oriented Matroids for Convex Distance Functions" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "20--24" -, update = "00.11 smid, 00.07 icking" +, author = "Francisco Santos" +, title = "On {Delaunay} Oriented Matroids for Convex Distance Functions" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "20--24" +, update = "00.11 smid, 00.07 icking" } @article{s-tvfgb-00 -, author = "Francisco Santos" -, title = "Triangulations with very few geometric bistellar neighbors" -, journal = "Discrete Comput. Geom." -, volume = 23 -, number = 1 -, year = 2000 -, pages = "15--33" -, update = "02.03 orourke" +, author = "Francisco Santos" +, title = "Triangulations with very few geometric bistellar neighbors" +, journal = "Discrete Comput. Geom." +, volume = 23 +, number = 1 +, year = 2000 +, pages = "15--33" +, update = "02.03 orourke" } @article{snb-vods3-99 -, author = "C. Saona-V{\'a}zquez and I. Navazo and P. Brunet" -, title = "The Visibility Octree: A Data structure for 3D Navigation" -, journal = "Comput. \& Graphics" -, volume = 23 -, number = 5 -, month = oct -, year = 1999 -, pages = "635--643" -, update = "00.03 held" +, author = "C. Saona-V{\'a}zquez and I. Navazo and P. Brunet" +, title = "The Visibility Octree: A Data structure for 3D Navigation" +, journal = "Comput. \& Graphics" +, volume = 23 +, number = 5 +, month = oct +, year = 1999 +, pages = "635--643" +, update = "00.03 held" } @article{sp-dtasp-91 -, author = "Nickolas Sapidis and Renato Perucchio" -, title = "Delaunay Triangulation Of Arbitrarily Shaped Planar Domains" -, journal = "Comput. Aided Geom. Design" -, volume = 8 -, number = 6 -, month = dec -, year = 1991 -, pages = "421--437" -, keywords = "Delaunay triangulation, planar domains, computer aided geometric design, computational geometry" -, abstract = "An algorithm is presented for constructing a Domain - Delaunay triangulation (DDT) of an arbitrarily shaped, - multiply-connected (manifold or nonmanifold), planar - domain. DDT preserves the boundary of the given region - and has properties identical to those of the standard - Delaunay triangulation. Construction of this - triangulation involves operations (node refinement, - triangulation extraction) that are based solely on - properties of the standard Delaunay diagram. Examples - are included that demonstrate the validity of the - algorithm. (Author abstract) 22 Refs." +, author = "Nickolas Sapidis and Renato Perucchio" +, title = "Delaunay Triangulation Of Arbitrarily Shaped Planar Domains" +, journal = "Comput. Aided Geom. Design" +, volume = 8 +, number = 6 +, month = dec +, year = 1991 +, pages = "421--437" +, keywords = "Delaunay triangulation, planar domains, computer aided geometric design, computational geometry" +, abstract = "An algorithm is presented for constructing a Domain + Delaunay triangulation (DDT) of an arbitrarily shaped, + multiply-connected (manifold or nonmanifold), planar + domain. DDT preserves the boundary of the given region + and has properties identical to those of the standard + Delaunay triangulation. Construction of this + triangulation involves operations (node refinement, + triangulation extraction) that are based solely on + properties of the standard Delaunay diagram. Examples + are included that demonstrate the validity of the + algorithm. (Author abstract) 22 Refs." } @phdthesis{s-dtcpd-92 -, author = "N. S. Sapidis" -, title = "Domain Tetrahedrization of Curved Polyhedra Defined in a Solid Modeling System" -, school = "Dept. of Mech. Engg., University of Rochester, Rochester, NY 14627, USA" -, year = 1992 -, keywords = "doctoral thesis" -, update = "95.01 held" +, author = "N. S. Sapidis" +, title = "Domain Tetrahedrization of Curved Polyhedra Defined in a Solid Modeling System" +, school = "Dept. of Mech. Engg., University of Rochester, Rochester, NY 14627, USA" +, year = 1992 +, keywords = "doctoral thesis" +, update = "95.01 held" } @article{sp-ddtsm-91 -, author = "N. S. Sapidis and R. Perucchio" -, title = "Domain {Delaunay} tetrahedrization of solid models" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 3 -, year = 1991 -, pages = "299--325" -, keywords = "tetrahedrization, Delaunay triangulation, solid modeling, topological validity" +, author = "N. S. Sapidis and R. Perucchio" +, title = "Domain {Delaunay} tetrahedrization of solid models" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 3 +, year = 1991 +, pages = "299--325" +, keywords = "tetrahedrization, Delaunay triangulation, solid modeling, topological validity" } @article{sp-sscor-92 -, author = "N. S. Sapidis and R. Perucchio" -, title = "Solid/Solid Classification Operations for Recursive Spatial Decomposition and Domain Triangulation of Solid Models" -, journal = "Comput. Aided Design" -, volume = 24 -, number = 10 -, month = oct -, year = 1992 -, pages = "517--529" -, update = "96.09 devillers, 95.01 held" +, author = "N. S. Sapidis and R. Perucchio" +, title = "Solid/Solid Classification Operations for Recursive Spatial Decomposition and Domain Triangulation of Solid Models" +, journal = "Comput. Aided Design" +, volume = 24 +, number = 10 +, month = oct +, year = 1992 +, pages = "517--529" +, update = "96.09 devillers, 95.01 held" } @techreport{skskb-icsmc-93 -, author = "G. Sapiro and R. Kimmel and D. Shaked and B. B. Kimia and A. M. Bruckstein" -, title = "Implementing continuous-scale morphology via curve evolution" -, number = "CIS 9302" -, institution = "Technion IIT" -, address = "Haifa, Israel" -, month = jan -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "G. Sapiro and R. Kimmel and D. Shaked and B. B. Kimia and A. M. Bruckstein" +, title = "Implementing continuous-scale morphology via curve evolution" +, number = "CIS 9302" +, institution = "Technion IIT" +, address = "Haifa, Israel" +, month = jan +, year = 1993 +, update = "93.09 milone+mitchell" } @inproceedings{sk-arngv-92 -, author = "V. Sarin and S. Kapoor" -, title = "Algorithms for relative neighbourhood graphs and {Voronoi} diagrams in simple polygons" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "292--298" -, cites = "c-cdt-87, et-crnds-88, ghlst-ltavs-86, km-eaesp-88, ps-cgi-85, s-rngam-83, t-rngfp-80, ws-oacdt-87, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "V. Sarin and S. Kapoor" +, title = "Algorithms for relative neighbourhood graphs and {Voronoi} diagrams in simple polygons" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "292--298" +, cites = "c-cdt-87, et-crnds-88, ghlst-ltavs-86, km-eaesp-88, ps-cgi-85, s-rngam-83, t-rngfp-80, ws-oacdt-87, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @article{sb-gfv-94 -, author = "M. Sarkar and M. H. Brown" -, title = "Graphical Fisheye Views" -, journal = "Commun. ACM" -, volume = 37 -, number = 12 -, year = 1994 -, pages = "73--84" -, keywords = "graph drawing, fisheye view, system" -, update = "95.05 tamassia" +, author = "M. Sarkar and M. H. Brown" +, title = "Graphical Fisheye Views" +, journal = "Commun. ACM" +, volume = 37 +, number = 12 +, year = 1994 +, pages = "73--84" +, keywords = "graph drawing, fisheye view, system" +, update = "95.05 tamassia" } @techreport{sb-gfvg-91 -, author = "M. Sarkar and Marc H. Brown" -, title = "Graphical Fisheye Views of Graphs" -, number = "CS-91-61" -, institution = "Department of Computer Science, Brown University" -, year = 1991 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "M. Sarkar and Marc H. Brown" +, title = "Graphical Fisheye Views of Graphs" +, number = "CS-91-61" +, institution = "Department of Computer Science, Brown University" +, year = 1991 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{sstr-srsmv-93 -, author = "Manojit Sarkar and Scott S. Snibbe and Oren J. Tversky and Steven P. Reiss" -, title = "Stretching the rubber sheet: a metaphor for viewing large layouts on small screens" -, journal = "Proc. ACM UIST" -, volume = "??" -, month = nov -, year = 1993 -, pages = "81--91" -, update = "97.03 tamassia" +, author = "Manojit Sarkar and Scott S. Snibbe and Oren J. Tversky and Steven P. Reiss" +, title = "Stretching the rubber sheet: a metaphor for viewing large layouts on small screens" +, journal = "Proc. ACM UIST" +, volume = "??" +, month = nov +, year = 1993 +, pages = "81--91" +, update = "97.03 tamassia" } @article{s-gvkft-91 -, author = "K. Sarkaria" -, title = "A generalized {van Kampen}-{Flores} theorem" -, journal = "Proc. Amer. Math. Soc." -, volume = 11 -, year = 1991 -, pages = "559--565" -, update = "95.01 matousek" +, author = "K. Sarkaria" +, title = "A generalized {van Kampen}-{Flores} theorem" +, journal = "Proc. Amer. Math. Soc." +, volume = 11 +, year = 1991 +, pages = "559--565" +, update = "95.01 matousek" } @techreport{s-sesc-92 -, author = "K. Sarkaria" -, title = "Shifting and embeddability of simplicial complexes" -, number = "91/51" -, institution = "Max-Planck Institut f{\"u}r Mathematik, Bonn" -, year = 1992 -, comments = "Proves that a simplicial comples on $n$ vertices +, author = "K. Sarkaria" +, title = "Shifting and embeddability of simplicial complexes" +, number = "91/51" +, institution = "Max-Planck Institut f{\"u}r Mathematik, Bonn" +, year = 1992 +, comments = "Proves that a simplicial comples on $n$ vertices topologically embeddable in $d$-space has $O(n^{\lceil{d/2}\rceil})$ simplices. Vast generalization of Upper Bound Theorem etc." -, update = "95.01 matousek" +, update = "95.01 matousek" } @article{s-cfazz-99 -, author = "S. E. Sarma" -, title = "The crossing function and its application to zig-zag tool paths" -, journal = "Comput. Aided Design" -, volume = 31 -, year = 1999 -, pages = "881--890" -, update = "00.03 smid" +, author = "S. E. Sarma" +, title = "The crossing function and its application to zig-zag tool paths" +, journal = "Comput. Aided Design" +, volume = 31 +, year = 1999 +, pages = "881--890" +, update = "00.03 smid" } @article{st-pplup-86 -, author = "N. Sarnak and R. E. Tarjan" -, title = "Planar point location using persistent search trees" -, journal = "Commun. ACM" -, volume = 29 -, number = 7 -, month = jul -, year = 1986 -, pages = "669--679" -, update = "98.11 bibrelex" +, author = "N. Sarnak and R. E. Tarjan" +, title = "Planar point location using persistent search trees" +, journal = "Commun. ACM" +, volume = 29 +, number = 7 +, month = jul +, year = 1986 +, pages = "669--679" +, update = "98.11 bibrelex" } @article{sl-rtaa-94 -, author = "M. Sarrafzadeh and D. T. Lee" -, title = "Restricted track assignment with applications" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "53--68" -, keywords = "track assignment, circular arc model, NP-hardness, approximation algorithm" -, update = "96.09 devillers" +, author = "M. Sarrafzadeh and D. T. Lee" +, title = "Restricted track assignment with applications" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "53--68" +, keywords = "track assignment, circular arc model, NP-hardness, approximation algorithm" +, update = "96.09 devillers" } @inproceedings{swww-wkklg-92 -, author = "M. Sarrafzadeh and D. Wagner and F. Wagner and K. Weihe" -, title = "Wiring Knock-Knee Layouts: A Global Approach" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "388--399" -, update = "94.09 smid, 93.09 milone+mitchell" +, author = "M. Sarrafzadeh and D. Wagner and F. Wagner and K. Weihe" +, title = "Wiring Knock-Knee Layouts: A Global Approach" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "388--399" +, update = "94.09 smid, 93.09 milone+mitchell" } @article{swww-wkklg-94 -, author = "M. Sarrafzadeh and D. Wagner and F. Wagner and K. Weihe" -, title = "Wiring Knock-Knee Layouts: A Global Approach" -, journal = "IEEE Trans. Comput." -, volume = 43 -, year = 1994 -, pages = "581--589" -, update = "97.03 gaertner+salinger" +, author = "M. Sarrafzadeh and D. Wagner and F. Wagner and K. Weihe" +, title = "Wiring Knock-Knee Layouts: A Global Approach" +, journal = "IEEE Trans. Comput." +, volume = 43 +, year = 1994 +, pages = "581--589" +, update = "97.03 gaertner+salinger" } @unpublished{sw-hstcu- -, author = "M. Sarrafzadeh and C. K. Wong" -, title = "Hierarchical {Steiner} tree construction in uniform orientations" -, note = "Unpublished manuscript" -, update = "98.03 bibrelex" +, author = "M. Sarrafzadeh and C. K. Wong" +, title = "Hierarchical {Steiner} tree construction in uniform orientations" +, note = "Unpublished manuscript" +, update = "98.03 bibrelex" } @article{s-igubc-87 -, author = "R. Sarraga" -, title = "$G^1$ Interpolation of generally unrestrictedcubic bezier curves" -, journal = "Comput. Aided Geom. Design" -, volume = "??" -, number = 4 -, year = 1987 -, pages = "23--39" -, update = "98.03 bibrelex" +, author = "R. Sarraga" +, title = "$G^1$ Interpolation of generally unrestrictedcubic bezier curves" +, journal = "Comput. Aided Geom. Design" +, volume = "??" +, number = 4 +, year = 1987 +, pages = "23--39" +, update = "98.03 bibrelex" } @article{s-dfs-72 -, author = "N. Sauer" -, title = "On the density of families of sets" -, journal = "J. Combin. Theory Ser. A" -, volume = 13 -, year = 1972 -, pages = "145--147" -, update = "94.05 matousek" +, author = "N. Sauer" +, title = "On the density of families of sets" +, journal = "J. Combin. Theory Ser. A" +, volume = 13 +, year = 1972 +, pages = "145--147" +, update = "94.05 matousek" } @article{s-rdclt-93 -, author = "P. Sauer" -, title = "On the Recognition of Digital Circles in Linear Time" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 5 -, month = mar -, year = 1993 -, pages = "287--302" -, update = "93.09 held" +, author = "P. Sauer" +, title = "On the Recognition of Digital Circles in Linear Time" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 5 +, month = mar +, year = 1993 +, pages = "287--302" +, update = "93.09 held" } @inproceedings{s-hlge-83 -, author = "J. E. Savage" -, title = "Heuristics for Level Graph Embeddings" -, booktitle = "Proc. Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, publisher = "Trauner Verlag" -, address = "Linz, Austria" -, year = 1983 -, pages = "307--318" -, keywords = "graph drawing" -, update = "94.05 smid, 93.09 tamassia" +, author = "J. E. Savage" +, title = "Heuristics for Level Graph Embeddings" +, booktitle = "Proc. Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, publisher = "Trauner Verlag" +, address = "Linz, Austria" +, year = 1983 +, pages = "307--318" +, keywords = "graph drawing" +, update = "94.05 smid, 93.09 tamassia" } @article{s-rbndt-70 -, author = "W. J. Savitch" -, title = "Relationships between nondeterministic and deterministic tape complexities" -, journal = "J. Comput. Syst. Sci." -, volume = 4 -, number = 2 -, year = 1970 -, pages = "177--192" -, update = "98.07 bibrelex" +, author = "W. J. Savitch" +, title = "Relationships between nondeterministic and deterministic tape complexities" +, journal = "J. Comput. Syst. Sci." +, volume = 4 +, number = 2 +, year = 1970 +, pages = "177--192" +, update = "98.07 bibrelex" } @article{ssk-cpsd-87 -, author = "D. G. Sawker and G. R. Shevare and S. P. Koruthu" -, title = "Contour Plotting for Scattered Data" -, journal = "Computers and Graphics" -, volume = 11 -, number = 2 -, year = 1987 -, pages = "101--104" -, annote = "Usual triangulation, optimization, linear - interpolation. Wrinkles: data is shelled, successive - convex hulls are formed. Switching DT between hulls - only. A (pointless?) subdivision stage is added." +, author = "D. G. Sawker and G. R. Shevare and S. P. Koruthu" +, title = "Contour Plotting for Scattered Data" +, journal = "Computers and Graphics" +, volume = 11 +, number = 2 +, year = 1987 +, pages = "101--104" +, annote = "Usual triangulation, optimization, linear + interpolation. Wrinkles: data is shelled, successive + convex hulls are formed. Switching DT between hulls + only. A (pointless?) subdivision stage is added." } @phdthesis{s-dspco-85 -, author = "J. B. Saxe" -, title = "Decomposable searching problems and circuit optimization by retiming: two studies in general transformations of computational structures" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1985 -, note = "Report CMU-CS-85-162" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "J. B. Saxe" +, title = "Decomposable searching problems and circuit optimization by retiming: two studies in general transformations of computational structures" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1985 +, note = "Report CMU-CS-85-162" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @inproceedings{s-ewgks-79 -, author = "J. B. Saxe" -, title = "Embeddability of weighted graphs in $k$-space is strongly {NP}-hard" -, booktitle = "Proc. 17th Allerton Conf. Commun. Control Comput." -, year = 1979 -, pages = "480--489" +, author = "J. B. Saxe" +, title = "Embeddability of weighted graphs in $k$-space is strongly {NP}-hard" +, booktitle = "Proc. 17th Allerton Conf. Commun. Control Comput." +, year = 1979 +, pages = "480--489" } @article{s-nrqks-79 -, author = "J. B. Saxe" -, title = "On the number of range queries in $k$-space" -, journal = "Discrete Appl. Math." -, volume = 1 -, year = 1979 -, pages = "217--225" +, author = "J. B. Saxe" +, title = "On the number of range queries in $k$-space" +, journal = "Discrete Appl. Math." +, volume = 1 +, year = 1979 +, pages = "217--225" } @techreport{s-tpgep-80 -, author = "J. B. Saxe" -, title = "Two papers on graph embedding problems" -, type = "Technical {Report}" -, number = "CMU-CS-80-102" -, institution = "Dept. Comput. Sci., Carnegie Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1980 -, update = "97.11 bibrelex" +, author = "J. B. Saxe" +, title = "Two papers on graph embedding problems" +, type = "Technical {Report}" +, number = "CMU-CS-80-102" +, institution = "Dept. Comput. Sci., Carnegie Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1980 +, update = "97.11 bibrelex" } @inproceedings{sb-tsdsd-79 -, author = "J. B. Saxe and J. L. Bentley" -, title = "Transforming static data structures to dynamic structures" -, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1979 -, pages = "148--168" -, precedes = "bs-dsp1s-80" +, author = "J. B. Saxe and J. L. Bentley" +, title = "Transforming static data structures to dynamic structures" +, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1979 +, pages = "148--168" +, precedes = "bs-dsp1s-80" } @article{sbp-evpad-90 -, author = "Sanjeev Saxena and P. C. P. Bhatt and V. C. Prasad" -, title = "Efficient {VLSI} Parallel Algorithm For {Delaunay} Triangulation On Orthogonal Tree Network In Two And Three Dimensions" -, journal = "IEEE Trans. Comput." -, volume = 39 -, number = 3 -, month = mar -, year = 1990 -, pages = "400--404" -, keywords = "computational geometry, parallel algorithms, triangulation, VLSI complexity" -, annote = "See correction in 40:1 (1991) p122. Uses circumcircle - algorithm in parallel starting with edge to nearest - neighbour. Circumcircle test is - $|a^2+b^2-c^2|/4a^2b^2$." -, abstract = "An algorithm with worst case time complexity - O(log**2N) in two dimensions and O(m**1**/**2log N) in - three dimensions with N input points and m as the - number of tetrahedra in triangulation is given. Its - AT**2 VLSI complexity on Thompson's logarithmic delay - model is O(N**2log**6N) in two dimensions and - O(m**2Nlog**4 N) in three dimensions. 19 Refs." +, author = "Sanjeev Saxena and P. C. P. Bhatt and V. C. Prasad" +, title = "Efficient {VLSI} Parallel Algorithm For {Delaunay} Triangulation On Orthogonal Tree Network In Two And Three Dimensions" +, journal = "IEEE Trans. Comput." +, volume = 39 +, number = 3 +, month = mar +, year = 1990 +, pages = "400--404" +, keywords = "computational geometry, parallel algorithms, triangulation, VLSI complexity" +, annote = "See correction in 40:1 (1991) p122. Uses circumcircle + algorithm in parallel starting with edge to nearest + neighbour. Circumcircle test is + $|a^2+b^2-c^2|/4a^2b^2$." +, abstract = "An algorithm with worst case time complexity + O(log**2N) in two dimensions and O(m**1**/**2log N) in + three dimensions with N input points and m as the + number of tetrahedra in triangulation is given. Its + AT**2 VLSI complexity on Thompson's logarithmic delay + model is O(N**2log**6N) in two dimensions and + O(m**2Nlog**4 N) in three dimensions. 19 Refs." } @inproceedings{sams-gdtoc-97 -, author = "G. Sazaklis and E. M. Arkin and J. S. B. Mitchell and S. S. Skiena" -, title = "Geometric decision trees for optical character recognition" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "394--396" -, cites = "agmmps-ppdtg-93, ammrs-dtgm-93, bfos-crt-84, c-opcrt-91, -eera-57, fkmprs-lofp-94, msy-hrord-92, myy-rmrhc-84, n-sapr-68, rs-tgo-94, sl-sdtcm-91, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" +, author = "G. Sazaklis and E. M. Arkin and J. S. B. Mitchell and S. S. Skiena" +, title = "Geometric decision trees for optical character recognition" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "394--396" +, cites = "agmmps-ppdtg-93, ammrs-dtgm-93, bfos-crt-84, c-opcrt-91, -eera-57, fkmprs-lofp-94, msy-hrord-92, myy-rmrhc-84, n-sapr-68, rs-tgo-94, sl-sdtcm-91, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell, 97.07 efrat" } @inproceedings{sams-pttcr-98 -, author = "G. Sazaklis and Esther M. Arkin and Joseph S. B. Mitchell and Steven S. Skiena" -, title = "Probe Trees for Touching Character Recognition" -, booktitle = "Proc. 1998 International Conference on Imaging Science, Systems and Technology" -, nickname = "CISST'98" -, site = "Las Vegas, NV" -, month = jul -, year = 1998 -, pages = "282--289" -, keywords = "geometric decision trees, optical character recognition, text processing" -, update = "98.07 mitchell" +, author = "G. Sazaklis and Esther M. Arkin and Joseph S. B. Mitchell and Steven S. Skiena" +, title = "Probe Trees for Touching Character Recognition" +, booktitle = "Proc. 1998 International Conference on Imaging Science, Systems and Technology" +, nickname = "CISST'98" +, site = "Las Vegas, NV" +, month = jul +, year = 1998 +, pages = "282--289" +, keywords = "geometric decision trees, optical character recognition, text processing" +, update = "98.07 mitchell" } @inproceedings{s-igbmf-93 -, author = "M. Sbert" -, title = "An integral geometry based method for fast form-factor computation" -, editor = "R. J. Hubbold and R. Joan" -, booktitle = "Proc. Eurographics '93" -, year = 1993 -, pages = "409--420" -, update = "98.03 bibrelex" +, author = "M. Sbert" +, title = "An integral geometry based method for fast form-factor computation" +, editor = "R. J. Hubbold and R. Joan" +, booktitle = "Proc. Eurographics '93" +, year = 1993 +, pages = "409--420" +, update = "98.03 bibrelex" } @techreport{s-srla-?? -, author = "H. E. Scarf" -, title = "Some remarks on {Lenstra}'s algorithm" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "H. E. Scarf" +, title = "Some remarks on {Lenstra}'s algorithm" +, type = "Manuscript" +, institution = "??" +, year = "??" } @phdthesis{s-sdrrv-93 -, author = "L. Scarlatos" -, title = "Spatial data representations for rapid visualization and analysis" -, type = "Ph.{D}. Thesis" -, school = "Department of Computer Science, State University of New York at Stony Brook" -, address = "Stony Brook, NY 11794-4400" -, year = 1993 -, keywords = "doctoral thesis" -, update = "95.09 mitchell" +, author = "L. Scarlatos" +, title = "Spatial data representations for rapid visualization and analysis" +, type = "Ph.{D}. Thesis" +, school = "Department of Computer Science, State University of New York at Stony Brook" +, address = "Stony Brook, NY 11794-4400" +, year = 1993 +, keywords = "doctoral thesis" +, update = "95.09 mitchell" } @inproceedings{sp-aht-91 -, author = "Lori Scarlatos and Theo Pavlidis" -, title = "Adaptive Hierarchical Triangulation" -, booktitle = "Proc. 10th Internat. Sympos. Comput.-Assist. Cartog." -, series = "Technical Papers 1991 ACSM-ASPRS Annual Convention" -, volume = 6 -, year = 1991 -, pages = "234--246" -, update = "93.05 freimer" -, annote = "Hierarchical triangulation to represent surface at - different levels of detail. Triangles are split in one - of different ways, depending on how it deviates from - underlying surface. This tends to avoid skinny - triangles, are require a less deep hierarchy." +, author = "Lori Scarlatos and Theo Pavlidis" +, title = "Adaptive Hierarchical Triangulation" +, booktitle = "Proc. 10th Internat. Sympos. Comput.-Assist. Cartog." +, series = "Technical Papers 1991 ACSM-ASPRS Annual Convention" +, volume = 6 +, year = 1991 +, pages = "234--246" +, update = "93.05 freimer" +, annote = "Hierarchical triangulation to represent surface at + different levels of detail. Triangles are split in one + of different ways, depending on how it deviates from + underlying surface. This tends to avoid skinny + triangles, are require a less deep hierarchy." } @article{sp-htucc-92 -, author = "Lori Scarlatos and Theo Pavlidis" -, title = "Hierarchical Triangulation Using Cartographics Coherence" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 54 -, number = 2 -, month = mar -, year = 1992 -, pages = "147--161" -, annote = "Triangles where there are large deviations from the - surface are split (preferably along an edge) into 2 3 - or 4 triangles each. Uses average ``sliveriness'' - ($P^2/A$) to measure mesh quality." +, author = "Lori Scarlatos and Theo Pavlidis" +, title = "Hierarchical Triangulation Using Cartographics Coherence" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 54 +, number = 2 +, month = mar +, year = 1992 +, pages = "147--161" +, annote = "Triangles where there are large deviations from the + surface are split (preferably along an edge) into 2 3 + or 4 triangles each. Uses average ``sliveriness'' + ($P^2/A$) to measure mesh quality." } @inproceedings{sp-htutf-90 -, author = "Lori Scarlatos and Theo Pavlidis" -, title = "Hierarchical Triangulation Using Terrain Features" -, booktitle = "Proceedings of the 1st 1990 IEEE Conference on Visualization, Visualization '90" -, publisher = "IEEE" -, address = "IEEE Service Center, Piscataway, NJ, USA (IEEE cat n 90CH2914-0)" -, year = 1990 -, pages = "168--175" -, keywords = "hierarchical triangulation, terrain features, digital elevation models, visualization" -, abstract = "A hierarchical triangulation built from a digital - elevation model in grid form is described. The authors - present an algorithm that produces a hierarchy of - triangulations in which each level of the hierarchy - corresponds to a guaranteed level of accuracy. The - number of very thin triangles (slivers) is - significantly reduced. Such triangles produced - undesirable effects in animation. In addition the - number of levels of the triangulated irregular network - (TIN) tree is reduced. This speeds up searching within - the data structure. Tests on data with digital - elevation input have confirmed the theoretical - expectations. On eight such sets the average - sliveriness with the method was between 1/5 and 1/10 of - old triangulations and number of levels was about one - third. There was an increase in the number of - descendants at each level, but the total number of - triangles was also lower. 20 Refs." +, author = "Lori Scarlatos and Theo Pavlidis" +, title = "Hierarchical Triangulation Using Terrain Features" +, booktitle = "Proceedings of the 1st 1990 IEEE Conference on Visualization, Visualization '90" +, publisher = "IEEE" +, address = "IEEE Service Center, Piscataway, NJ, USA (IEEE cat n 90CH2914-0)" +, year = 1990 +, pages = "168--175" +, keywords = "hierarchical triangulation, terrain features, digital elevation models, visualization" +, abstract = "A hierarchical triangulation built from a digital + elevation model in grid form is described. The authors + present an algorithm that produces a hierarchy of + triangulations in which each level of the hierarchy + corresponds to a guaranteed level of accuracy. The + number of very thin triangles (slivers) is + significantly reduced. Such triangles produced + undesirable effects in animation. In addition the + number of levels of the triangulated irregular network + (TIN) tree is reduced. This speeds up searching within + the data structure. Tests on data with digital + elevation input have confirmed the theoretical + expectations. On eight such sets the average + sliveriness with the method was between 1/5 and 1/10 of + old triangulations and number of levels was about one + third. There was an increase in the number of + descendants at each level, but the total number of + triangles was also lower. 20 Refs." } @inproceedings{sp-otce-92 -, author = "L. Scarlatos and T. Pavlidis" -, title = "Optimizing triangulation by curvature equalization" -, booktitle = "Proceedings of the 3rd 1992 IEEE Conference on Visualization, Visualization '92" -, publisher = "IEEE" -, year = 1992 -, pages = "333--339" -, keywords = "hierarchical triangulation, terrain features, digital elevation models, visualization" -, update = "95.09 mitchell" +, author = "L. Scarlatos and T. Pavlidis" +, title = "Optimizing triangulation by curvature equalization" +, booktitle = "Proceedings of the 3rd 1992 IEEE Conference on Visualization, Visualization '92" +, publisher = "IEEE" +, year = 1992 +, pages = "333--339" +, keywords = "hierarchical triangulation, terrain features, digital elevation models, visualization" +, update = "95.09 mitchell" } @article{s-dpcs-78 -, author = "B. Schachter" -, title = "Decomposition of Polygons into Convex Sets" -, journal = "IEEE Trans. Comput." -, volume = "C-27" -, number = 11 -, year = 1978 -, pages = "1078--1082" -, annote = "Cuts polygon along Delaunay edges at reflex angles. - $O(n)$ process to find De's at a given reflex vertex - - picks one or two to eliminate reflex. $O(mn)$" +, author = "B. Schachter" +, title = "Decomposition of Polygons into Convex Sets" +, journal = "IEEE Trans. Comput." +, volume = "C-27" +, number = 11 +, year = 1978 +, pages = "1078--1082" +, annote = "Cuts polygon along Delaunay edges at reflex angles. + $O(n)$ process to find De's at a given reflex vertex - + picks one or two to eliminate reflex. $O(mn)$" } @article{srd-rmmt-78 -, author = "B. Schachter and A. Rosenfeld and L. S. David" -, title = "Random mosaic models for textures" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 8 -, number = 9 -, year = 1978 -, pages = "694--702" +, author = "B. Schachter and A. Rosenfeld and L. S. David" +, title = "Random mosaic models for textures" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 8 +, number = 9 +, year = 1978 +, pages = "694--702" } @misc{s-ppmpe- -, author = "D. H. Schaefer" -, title = "The {PMMP} - a pyramid of {MPP} processing elements" -, note = "To appear" -, update = "97.11 bibrelex" +, author = "D. H. Schaefer" +, title = "The {PMMP} - a pyramid of {MPP} processing elements" +, note = "To appear" +, update = "97.11 bibrelex" } @article{s-obbtr-87 -, author = "H. M. Schaettler" -, title = "On the Optimality of bang-bang trajectories in ${R}^{3}$" -, journal = "Bull. Amer. Math. Soc." -, volume = 18 -, number = 1 -, year = 1987 -, pages = "113--116" -, update = "97.11 bibrelex" +, author = "H. M. Schaettler" +, title = "On the Optimality of bang-bang trajectories in ${R}^{3}$" +, journal = "Bull. Amer. Math. Soc." +, volume = 18 +, number = 1 +, year = 1987 +, pages = "113--116" +, update = "97.11 bibrelex" } @mastersthesis{s-tmsp-83 -, author = "A. A. Sch{\"a}ffer" -, title = "Trees for multidimensional search problems" -, type = "M.{S}. Thesis" -, school = "Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1983 -, keywords = "master thesis" +, author = "A. A. Sch{\"a}ffer" +, title = "Trees for multidimensional search problems" +, type = "M.{S}. Thesis" +, school = "Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1983 +, keywords = "master thesis" } @article{sv-chpsj-87 -, author = "A. A. Sch{\"a}ffer and C. J. {Van Wyk}" -, title = "Convex Hulls of Piecewise-Smooth {Jordan} Curves" -, journal = "J. Algorithms" -, volume = 8 -, year = 1987 -, pages = "66--94" -, update = "93.09 held" +, author = "A. A. Sch{\"a}ffer and C. J. {Van Wyk}" +, title = "Convex Hulls of Piecewise-Smooth {Jordan} Curves" +, journal = "J. Algorithms" +, volume = 8 +, year = 1987 +, pages = "66--94" +, update = "93.09 held" } @article{s-dgrg-95 -, author = "M. Sch{\"a}ffter" -, title = "Drawing graphs on rectangular grids" -, journal = "Discrete Appl. Math." -, volume = 63 -, year = 1995 -, pages = "75--89" -, keywords = "graph drawing, orthogonal, grid" -, update = "96.01 tamassia" +, author = "M. Sch{\"a}ffter" +, title = "Drawing graphs on rectangular grids" +, journal = "Discrete Appl. Math." +, volume = 63 +, year = 1995 +, pages = "75--89" +, keywords = "graph drawing, orthogonal, grid" +, update = "96.01 tamassia" } @techreport{s-ocf-91b -, author = "P. Schapira" -, title = "Operations on Constructible Functions" -, type = "Report" -, number = "88-2" -, institution = "Departement de mathematique et informatique, Universite Paris-Nord" -, address = "93430 Villetaneuse, France" -, year = 1988 -, comments = "Presents an equivalent of kinetic framework, grs-kfcg-83, in 2 and higher dimensions" -, update = "96.05 ramkumar" +, author = "P. Schapira" +, title = "Operations on Constructible Functions" +, type = "Report" +, number = "88-2" +, institution = "Departement de mathematique et informatique, Universite Paris-Nord" +, address = "93430 Villetaneuse, France" +, year = 1988 +, comments = "Presents an equivalent of kinetic framework, grs-kfcg-83, in 2 and higher dimensions" +, update = "96.05 ramkumar" } @incollection{ss-t-97 -, author = "D. Schattschneider and M. Senechal" -, title = "Tilings" -, chapter = 3 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "43--62" -, update = "97.11 orourke" +, author = "D. Schattschneider and M. Senechal" +, title = "Tilings" +, chapter = 3 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "43--62" +, update = "97.11 orourke" } @phdthesis{s-mwcgv-91 -, author = "B. F. Schaudt" -, title = "Multiplicative Weighted Crystal Growth {Voronoi} Diagrams" -, school = "Dartmouth College" -, year = 1991 -, url = "In preparation" -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "B. F. Schaudt" +, title = "Multiplicative Weighted Crystal Growth {Voronoi} Diagrams" +, school = "Dartmouth College" +, year = 1991 +, url = "In preparation" +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @inproceedings{sd-hdvdc-92 -, author = "B. F. Schaudt and R. L. Drysdale" -, title = "Higher-dimensional {Voronoi} diagrams for convex distance functions" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "274--279" -, cites = "a-vdsfg-91, cd-vdbcd-85, c-ochan-91, d-pacdt-90, e-acg-87, gs-pmgsc-85, l-tdvdl-80, lw-vdllm-80, ph-chfsp-77, rs-tchnp-85, sdt-opsal-91, ZZZ" -, update = "98.07 bibrelex" +, author = "B. F. Schaudt and R. L. Drysdale" +, title = "Higher-dimensional {Voronoi} diagrams for convex distance functions" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "274--279" +, cites = "a-vdsfg-91, cd-vdbcd-85, c-ochan-91, d-pacdt-90, e-acg-87, gs-pmgsc-85, l-tdvdl-80, lw-vdllm-80, ph-chfsp-77, rs-tchnp-85, sdt-opsal-91, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{sd-mwcgv-91 -, author = "B. F. Schaudt and R. L. Drysdale" -, title = "Multiplicatively weighted crystal growth {Voronoi} diagrams" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "214--223" -, keywords = "Voronoi diagrams" -, cites = "ae-oacwv-84, a-pdpaa-87, a-vds-88, bsh-sgfgt-84, cd-vdbcd-85, f-savd-87, ft-dmtf-87, ft-csmet-88, gb-msp-78, g-nivpo-71, ghj-gpma-67, gs-cdtp-78, g-dg-63, g-ims-72, hj-gifdg-68, hl-ius-79, l-cspc-72, mhm-cacjm-80, pftv-nr-86, ps-cgi-85, sb-ina-80, s-mwcgv-91, th-gmt1m-80, wt-fcwvd-90, ZZZ" -, update = "97.11 bibrelex" +, author = "B. F. Schaudt and R. L. Drysdale" +, title = "Multiplicatively weighted crystal growth {Voronoi} diagrams" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "214--223" +, keywords = "Voronoi diagrams" +, cites = "ae-oacwv-84, a-pdpaa-87, a-vds-88, bsh-sgfgt-84, cd-vdbcd-85, f-savd-87, ft-dmtf-87, ft-csmet-88, gb-msp-78, g-nivpo-71, ghj-gpma-67, gs-cdtp-78, g-dg-63, g-ims-72, hj-gifdg-68, hl-ius-79, l-cspc-72, mhm-cacjm-80, pftv-nr-86, ps-cgi-85, sb-ina-80, s-mwcgv-91, th-gmt1m-80, wt-fcwvd-90, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{ss-gmldp-95 -, author = "G. Schaufler and W. Stuerzlinger" -, title = "Generating multiple levels of detail for polygonal geometry models" -, booktitle = "Virtual Environments" -, site = "Monte Carlo, MC" -, month = jan -, year = 1995 -, pages = "53--62" -, keywords = "surface simplification" -, update = "96.01 mitchell" +, author = "G. Schaufler and W. Stuerzlinger" +, title = "Generating multiple levels of detail for polygonal geometry models" +, booktitle = "Virtual Environments" +, site = "Monte Carlo, MC" +, month = jan +, year = 1995 +, pages = "53--62" +, keywords = "surface simplification" +, update = "96.01 mitchell" } @article{s-psvtd-87 -, author = "C. F. Scheepers" -, title = "Polygon Shading on Vector Type Devices" -, journal = "Quaestiones Informaticae" -, volume = 5 -, number = 2 -, month = oct -, year = 1987 -, pages = "46--55" -, update = "95.01 held" +, author = "C. F. Scheepers" +, title = "Polygon Shading on Vector Type Devices" +, journal = "Quaestiones Informaticae" +, volume = 5 +, number = 2 +, month = oct +, year = 1987 +, pages = "46--55" +, update = "95.01 held" } @article{sg-xws-86 -, author = "Robert W. Scheifler and Jim Gettys" -, title = "The {X} Window System" -, journal = "ACM Trans. Graph." -, volume = 5 -, number = 2 -, year = 1986 -, pages = "79--109" -, keywords = "virtual terminals, window managers" -, update = "96.01 tamassia" +, author = "Robert W. Scheifler and Jim Gettys" +, title = "The {X} Window System" +, journal = "ACM Trans. Graph." +, volume = 5 +, number = 2 +, year = 1986 +, pages = "79--109" +, keywords = "virtual terminals, window managers" +, update = "96.01 tamassia" } @techreport{s-csg-85 -, author = "W. Schempp" -, title = "Computational signal geometry" -, type = "Report" -, number = "??" -, institution = "Lehrstuhl Math. I, Univ. Siegen" -, address = "Siegen, West Germany" -, year = 1985 +, author = "W. Schempp" +, title = "Computational signal geometry" +, type = "Report" +, number = "??" +, institution = "Lehrstuhl Math. I, Univ. Siegen" +, address = "Siegen, West Germany" +, year = 1985 } @article{sc-dstcr-87 -, author = "I. D. Scherson and E. Caspary" -, title = "Data structures and the time complexity of ray tracing" -, journal = "Visual Comput." -, volume = 3 -, year = 1987 -, pages = "201--213" +, author = "I. D. Scherson and E. Caspary" +, title = "Data structures and the time complexity of ray tracing" +, journal = "Visual Comput." +, volume = 3 +, year = 1987 +, pages = "201--213" } @techreport{so-mbtas-80 -, author = "P. Scheuermann and M. Ouksel" -, title = "Multidimensional $b$-trees for associative searching in database systems" -, type = "Report" -, number = "80-12-DBM-05" -, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." -, address = "Evanston, IL" -, year = 1980 +, author = "P. Scheuermann and M. Ouksel" +, title = "Multidimensional $b$-trees for associative searching in database systems" +, type = "Report" +, number = "80-12-DBM-05" +, institution = "Dept. Elect. Engrg. Comput. Sci., Northwestern Univ." +, address = "Evanston, IL" +, year = 1980 } @phdthesis{s-agp-89 -, author = "C. Schevon" -, title = "Algorithms for geodesics on polytopes" -, school = "Johns Hopkins University" -, year = 1989 -, keywords = "polytopes, shortest paths, diameter" -, update = "93.05 orourke" +, author = "C. Schevon" +, title = "Algorithms for geodesics on polytopes" +, school = "Johns Hopkins University" +, year = 1989 +, keywords = "polytopes, shortest paths, diameter" +, update = "93.05 orourke" } @techreport{so-cru-87 -, author = "C. Schevon and J. O'Rourke" -, title = "A conjecture on random unfoldings" -, type = "Technical {Report}" -, number = "JHU-87/20" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = jul -, year = 1987 -, keywords = "polytopes, unfoldings" +, author = "C. Schevon and J. O'Rourke" +, title = "A conjecture on random unfoldings" +, type = "Technical {Report}" +, number = "JHU-87/20" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = jul +, year = 1987 +, keywords = "polytopes, unfoldings" } @techreport{so-afesp-89 -, author = "C. Schevon and J. O'Rourke" -, title = "An algorithm for finding edge sequences on a polytope" -, type = "Technical {Report}" -, number = "JHU-89/03" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = feb -, year = 1989 -, keywords = "polytopes, shortest paths, edge sequences" +, author = "C. Schevon and J. O'Rourke" +, title = "An algorithm for finding edge sequences on a polytope" +, type = "Technical {Report}" +, number = "JHU-89/03" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = feb +, year = 1989 +, keywords = "polytopes, shortest paths, edge sequences" } @inproceedings{so-nmesc-88 -, author = "C. Schevon and J. O'Rourke" -, title = "The number of maximal edge sequences on a convex polytope" -, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." -, site = "University of Illinois at Urbana-Champaign" -, month = oct -, year = 1988 -, pages = "49--57" -, keywords = "shortest paths, polytopes" -, update = "93.05 orourke" +, author = "C. Schevon and J. O'Rourke" +, title = "The number of maximal edge sequences on a convex polytope" +, booktitle = "Proc. 26th Allerton Conf. Commun. Control Comput." +, site = "University of Illinois at Urbana-Champaign" +, month = oct +, year = 1988 +, pages = "49--57" +, keywords = "shortest paths, polytopes" +, update = "93.05 orourke" } @article{sv-parud-88 -, author = "C. A. Schevon and J. S. Vitter" -, title = "A Parallel Algorithm for Recognizing Unordered Depth-First Search" -, journal = "Inform. Process. Lett." -, volume = "??" -, year = "June 24, 1988" -, pages = "105--110" -, update = "97.03 murali" +, author = "C. A. Schevon and J. S. Vitter" +, title = "A Parallel Algorithm for Recognizing Unordered Depth-First Search" +, journal = "Inform. Process. Lett." +, volume = "??" +, year = "June 24, 1988" +, pages = "105--110" +, update = "97.03 murali" } @inproceedings{s-cmwkl-95 -, author = "Baruch Schieber" -, title = "Computing a Minimum-weight {$k$}-link Path in Graphs with the Concave {Monge} Property" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "405--411" -, keywords = "largest inscribed k-gon, smallest k-gon from set of n halfplanes, polygon containment, matrix searching" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "Baruch Schieber" +, title = "Computing a Minimum-weight {$k$}-link Path in Graphs with the Concave {Monge} Property" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "405--411" +, keywords = "largest inscribed k-gon, smallest k-gon from set of n halfplanes, polygon containment, matrix searching" +, update = "96.09 agarwal, 96.05 mitchell" } @inproceedings{sv-flcas-88 -, author = "B. Schieber and U. Vishkin" -, title = "On finding lowest common ancestors: {Simplification} and parallelization" -, booktitle = "Proc. 3rd Aegean Workshop Computing" -, series = "Lecture Notes Comput. Sci." -, volume = 319 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "111--123" -, update = "97.11 bibrelex" +, author = "B. Schieber and U. Vishkin" +, title = "On finding lowest common ancestors: {Simplification} and parallelization" +, booktitle = "Proc. 3rd Aegean Workshop Computing" +, series = "Lecture Notes Comput. Sci." +, volume = 319 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "111--123" +, update = "97.11 bibrelex" } @book{s-frac-90 -, author = "R. J. Schilling" -, title = "Fundamentals of Robotics, Analysis and Control" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1990 -, update = "97.03 schwarzkopf" +, author = "R. J. Schilling" +, title = "Fundamentals of Robotics, Analysis and Control" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1990 +, update = "97.03 schwarzkopf" } @inproceedings{shk-amc3d-95 -, author = "P. H. Schimpf and D. R. Haynor and Y. Kim" -, title = "Automated meshing of complex 3-D domains from classified images" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "193--204" -, update = "96.01 samitchell" +, author = "P. H. Schimpf and D. R. Haynor and Y. Kim" +, title = "Automated meshing of complex 3-D domains from classified images" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "193--204" +, update = "96.01 samitchell" } @article{s-emnas-94 -, author = "W. Schindler" -, title = "Equivariant mappings: a new approach in stochastic simulations" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "327--343" -, update = "96.09 devillers" +, author = "W. Schindler" +, title = "Equivariant mappings: a new approach in stochastic simulations" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "327--343" +, update = "96.09 devillers" } @inproceedings{s-dcc-92c -, author = "Haijo Schipper" -, title = "Determining Contractability of Curves" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = 31 -, update = "00.03 bibrelex" +, author = "Haijo Schipper" +, title = "Determining Contractability of Curves" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = 31 +, update = "00.03 bibrelex" } @inproceedings{s-dcc-92 -, author = "H. Schipper" -, title = "Determining contractibility of curves" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "358--367" -, cites = "d-uudg-12, d-tdkaz-12, h-cit-79, hs-aacsl-91, hs-cmlpg-91, my-chthu-88, s-tacg-90, s-ctcgt-80, v-kfdp-89, vy-cccs-90, ZZZ" -, update = "00.03 bibrelex, 97.11 bibrelex" +, author = "H. Schipper" +, title = "Determining contractibility of curves" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "358--367" +, cites = "d-uudg-12, d-tdkaz-12, h-cit-79, hs-aacsl-91, hs-cmlpg-91, my-chthu-88, s-tacg-90, s-ctcgt-80, v-kfdp-89, vy-cccs-90, ZZZ" +, update = "00.03 bibrelex, 97.11 bibrelex" } @techreport{s-gt2m-90 -, author = "H. Schipper" -, title = "Generating triangulations of $2$-manifolds" -, type = "Report" -, number = "CS-9008" -, institution = "Dept. Comput. Sci., Univ. Groningen" -, address = "Groningen, Netherlands" -, year = 1990 +, author = "H. Schipper" +, title = "Generating triangulations of $2$-manifolds" +, type = "Report" +, number = "CS-9008" +, institution = "Dept. Comput. Sci., Univ. Groningen" +, address = "Groningen, Netherlands" +, year = 1990 } @inproceedings{s-gt2m-91 -, author = "Haijo Schipper" -, title = "Generating triangulations of $2$-manifolds" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "237--248" -, keywords = "topology" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." -, abstract = "In this paper we will show how for a given triangulation +, author = "Haijo Schipper" +, title = "Generating triangulations of $2$-manifolds" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "237--248" +, keywords = "topology" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." +, abstract = "In this paper we will show how for a given triangulation {$T$} of a $2$-manifold {$M$} a minimal triangulation {$T_{\min}$} of {$M$} and a sequence {$S$} of vertex-splittings can be calculated such that performing @@ -127996,838 +127996,838 @@ @inproceedings{s-gt2m-91 } @inproceedings{s-wpga-92 -, author = "H. Schipper" -, title = "The word problem: a geometric approach" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "59--65" -, cites = "d-uudg-12, d-tdkaz-12, g-dawp-60, h-cit-79, hs-aacsl-91, hs-cmlpg-91, my-chthu-88, s-tacg-90, s-dcc-92, s-ctcgt-80, v-kfdp-89, vy-cccs-90, ZZZ" -, update = "98.07 bibrelex" +, author = "H. Schipper" +, title = "The word problem: a geometric approach" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "59--65" +, cites = "d-uudg-12, d-tdkaz-12, g-dawp-60, h-cit-79, hs-aacsl-91, hs-cmlpg-91, my-chthu-88, s-tacg-90, s-dcc-92, s-ctcgt-80, v-kfdp-89, vy-cccs-90, ZZZ" +, update = "98.07 bibrelex" } @techreport{so-dpt-89 -, author = "H. Schipper and M. H. Overmars" -, title = "Dynamic partition trees" -, type = "Report" -, number = "RUU-CS-89-25" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1989 -, precedes = "so-dpt-90" -, update = "94.05 schwarzkopf" +, author = "H. Schipper and M. H. Overmars" +, title = "Dynamic partition trees" +, type = "Report" +, number = "RUU-CS-89-25" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1989 +, precedes = "so-dpt-90" +, update = "94.05 schwarzkopf" } @inproceedings{so-dpt-90 -, author = "H. Schipper and M. H. Overmars" -, title = "Dynamic partition trees" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "404--417" -, succeeds = "so-dpt-89" +, author = "H. Schipper and M. H. Overmars" +, title = "Dynamic partition trees" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "404--417" +, succeeds = "so-dpt-89" } @article{so-dpt-91 -, author = "H. Schipper and M. H. Overmars" -, title = "Dynamic partition trees" -, journal = "BIT" -, volume = 31 -, year = 1991 -, pages = "421--436" -, succeeds = "so-dpt-90" -, update = "94.05 matousek" +, author = "H. Schipper and M. H. Overmars" +, title = "Dynamic partition trees" +, journal = "BIT" +, volume = 31 +, year = 1991 +, pages = "421--436" +, succeeds = "so-dpt-90" +, update = "94.05 matousek" } @inproceedings{s-cscgc-99 -, author = "S. Schirra" -, title = "A Case Study on the Cost of Geometric Computing" -, editor = "M. T. Goodrich and C. C. McGeoch" -, booktitle = "Algorithm Engineering and Experimentation (Proc. ALENEX~'99)" -, series = "Lecture Notes Comput. Sci." -, volume = 1619 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "156--176" -, update = "00.11 smid, 00.07 vismara" +, author = "S. Schirra" +, title = "A Case Study on the Cost of Geometric Computing" +, editor = "M. T. Goodrich and C. C. McGeoch" +, booktitle = "Algorithm Engineering and Experimentation (Proc. ALENEX~'99)" +, series = "Lecture Notes Comput. Sci." +, volume = 1619 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "156--176" +, update = "00.11 smid, 00.07 vismara" } @techreport{s-aaac-90 -, author = "S. Schirra" -, title = "Approximate algorithms for approximate congruence" -, type = "Report" -, number = "A-21/90" -, institution = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1990 +, author = "S. Schirra" +, title = "Approximate algorithms for approximate congruence" +, type = "Report" +, number = "A-21/90" +, institution = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1990 } @article{s-adaac-92 -, author = "S. Schirra" -, title = "Approximate decision algorithms for approximate congruence" -, journal = "Inform. Process. Lett." -, volume = 43 -, year = 1992 -, pages = "29--34" +, author = "S. Schirra" +, title = "Approximate decision algorithms for approximate congruence" +, journal = "Inform. Process. Lett." +, volume = 43 +, year = 1992 +, pages = "29--34" } @phdthesis{s-ab-92 -, author = "S. Schirra" -, title = "Approximative {Bewegungsplanungsverfahren}" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 -, keywords = "doctoral thesis" +, author = "S. Schirra" +, title = "Approximative {Bewegungsplanungsverfahren}" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 +, keywords = "doctoral thesis" } @inproceedings{s-mdbp-93 -, author = "S. Schirra" -, title = "Moving a disc between polygons" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "395--396" -, keywords = "video review" -, cites = "egs-oplms-86, ht-fafnc-84, nm-lledt-90, oy-rmpmd-85, r-mdbp-91, y-oavds-87, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "S. Schirra" +, title = "Moving a disc between polygons" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "395--396" +, keywords = "video review" +, cites = "egs-oplms-86, ht-fafnc-84, nm-lledt-90, oy-rmpmd-85, r-mdbp-91, y-oavds-87, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @incollection{s-rpigc-00 -, author = "Stefan Schirra" -, title = "Robustness and Precision Issues in Geometric Computation" -, chapter = 14 -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "597--632" -, update = "00.03 bibrelex+smid+vismara, 99.03 bibrelex, 98.07 mitchell" -, annote = "Chapter 14 of su-hcg-00" +, author = "Stefan Schirra" +, title = "Robustness and Precision Issues in Geometric Computation" +, chapter = 14 +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "597--632" +, update = "00.03 bibrelex+smid+vismara, 99.03 bibrelex, 98.07 mitchell" +, annote = "Chapter 14 of su-hcg-00" } @mastersthesis{s-udbde-88 -, author = "S. Schirra" -, title = "{\"U}ber die {Bitkomplexit{\"a}t} der $\epsilon$-{Kongruenz}" -, school = "Fachbereich Informatik, Universit{\"a}t des Saarlandes" -, year = 1988 -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "S. Schirra" +, title = "{\"U}ber die {Bitkomplexit{\"a}t} der $\epsilon$-{Kongruenz}" +, school = "Fachbereich Informatik, Universit{\"a}t des Saarlandes" +, year = 1988 +, keywords = "master thesis" +, update = "97.11 bibrelex" } @manual{svy-crm-99 -, title = "The {CGAL} Reference Manual" -, editor = "Stefan Schirra and Remco Veltkamp and Mariette Yvinec" -, year = 1999 -, note = "Release 2.0" -, url = "http://www.cs.uu.nl/CGAL/" -, update = "99.11 devillers, 99.07 devillers" -, key = "CGAL2.0" +, title = "The {CGAL} Reference Manual" +, editor = "Stefan Schirra and Remco Veltkamp and Mariette Yvinec" +, year = 1999 +, note = "Release 2.0" +, url = "http://www.cs.uu.nl/CGAL/" +, update = "99.11 devillers, 99.07 devillers" +, key = "CGAL2.0" } @incollection{s-feeri-94 -, author = "John Schlag" -, title = "Fast Embossing Effects on Raster Image Data" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "433--437" -, keywords = "bump mapping, texture, image filter, paint program, shading" -, update = "94.09 heckbert" -, annote = "Presents a simple, fast technique that interprets an image +, author = "John Schlag" +, title = "Fast Embossing Effects on Raster Image Data" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "433--437" +, keywords = "bump mapping, texture, image filter, paint program, shading" +, update = "94.09 heckbert" +, annote = "Presents a simple, fast technique that interprets an image as a height field or bump map, and then shades it, yielding an embossing effect. Contains C code." } @incollection{slmlw-vpvlc-84 -, author = "M. Schlag and F. Luccio and P. Maestrini and D. T. Lee and C. K. Wong" -, title = "A visibility problem in {VLSI} layout compaction" -, editor = "Franco P. Preparata" -, booktitle = "VLSI Theory" -, series = "Adv. Comput. Res." -, volume = 2 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1984 -, pages = "259--282" -, keywords = "graph drawing" -, update = "01.04 icking, 97.11 bibrelex" +, author = "M. Schlag and F. Luccio and P. Maestrini and D. T. Lee and C. K. Wong" +, title = "A visibility problem in {VLSI} layout compaction" +, editor = "Franco P. Preparata" +, booktitle = "VLSI Theory" +, series = "Adv. Comput. Res." +, volume = 2 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1984 +, pages = "259--282" +, keywords = "graph drawing" +, update = "01.04 icking, 97.11 bibrelex" } @incollection{s-fapsm-94 -, author = "Christophe Schlick" -, title = "A Fast Alternative to {Phong}'s Specular Model" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "385--387" -, keywords = "Phong illumination, specular reflection, exponentiation" -, update = "94.09 heckbert" -, annote = "Describes a simple approximation to Phong's specular +, author = "Christophe Schlick" +, title = "A Fast Alternative to {Phong}'s Specular Model" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "385--387" +, keywords = "Phong illumination, specular reflection, exponentiation" +, update = "94.09 heckbert" +, annote = "Describes a simple approximation to Phong's specular reflection formula that does not require exponentiation or table lookup." } @incollection{s-fapbg-94 -, author = "Christophe Schlick" -, title = "Fast Alternatives to {Perlin}'s Bias and Gain Functions" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "401--403" -, keywords = "hypertexture, texture synthesis" -, update = "94.09 heckbert" -, annote = "Gives a simple approximation to some formulas that are +, author = "Christophe Schlick" +, title = "Fast Alternatives to {Perlin}'s Bias and Gain Functions" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "401--403" +, keywords = "hypertexture, texture synthesis" +, update = "94.09 heckbert" +, annote = "Gives a simple approximation to some formulas that are commonly used in procedural texture synthesis and volume synthesis." } @incollection{s-hdrp-94 -, author = "Christophe Schlick" -, title = "High Dynamic Range Pixels" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "422--429" -, keywords = "quantization, dynamic range" -, update = "94.09 heckbert" -, annote = "Proposes a pixel encoding technique that allows color +, author = "Christophe Schlick" +, title = "High Dynamic Range Pixels" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "422--429" +, keywords = "quantization, dynamic range" +, update = "94.09 heckbert" +, annote = "Proposes a pixel encoding technique that allows color images with high dynamic range to be stored using only 24 bits per pixel. Contains C code." } @article{st-fpact-99 -, author = "D. Schmalstieg and R. F. Tobler" -, title = "Fast Projected Area Computation for Three-Dimensional Bounding Boxes" -, journal = "J. Graphics Tools" -, volume = 4 -, number = 2 -, year = 1999 -, pages = "37--43" -, update = "00.03 held" +, author = "D. Schmalstieg and R. F. Tobler" +, title = "Fast Projected Area Computation for Three-Dimensional Bounding Boxes" +, journal = "J. Graphics Tools" +, volume = 4 +, number = 2 +, year = 1999 +, pages = "37--43" +, update = "00.03 held" } @inproceedings{s-sltep-89 -, author = "F. Schmid" -, title = "{Symbolische} {L{\"o}sungen} und {Term}-{Ersetzungssysteme} in der projektiven und affinen {Geometrie}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "F. Schmid" +, title = "{Symbolische} {L{\"o}sungen} und {Term}-{Ersetzungssysteme} in der projektiven und affinen {Geometrie}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{sss-chbal-93 -, author = "J. P. Schmidt and A. Siegel and A. Srinivasan" -, title = "{Chernoff}-{Hoeffding} Bounds for Applications with Limited Idependence" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "331--340" -, update = "01.07 devillers, 98.03 bibrelex" +, author = "J. P. Schmidt and A. Siegel and A. Srinivasan" +, title = "{Chernoff}-{Hoeffding} Bounds for Applications with Limited Idependence" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "331--340" +, update = "01.07 devillers, 98.03 bibrelex" } @article{s-cgcsf-92 -, author = "P.-M. Schmidt" -, title = "Counting and generating circular sequences of finite planar point sets" -, journal = "Algorithms Rev." -, volume = 2 -, number = 3 -, year = 1992 -, pages = "139--151" +, author = "P.-M. Schmidt" +, title = "Counting and generating circular sequences of finite planar point sets" +, journal = "Algorithms Rev." +, volume = 2 +, number = 3 +, year = 1992 +, pages = "139--151" } @inproceedings{s-nppsg-94 -, author = "Peter-Michael Schmidt" -, title = "On the Number of Permutations of Point Sets Generated by Plane Sweeps and Sphere Sweeps" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "41--44" -, update = "00.11 smid, 00.07 icking" +, author = "Peter-Michael Schmidt" +, title = "On the Number of Permutations of Point Sets Generated by Plane Sweeps and Sphere Sweeps" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "41--44" +, update = "00.11 smid, 00.07 icking" } @article{s-ipcs-85 -, author = "W. M. Schmidt" -, title = "Integer points on curves and surfaces" -, journal = "Monatsh. Math." -, volume = 99 -, year = 1985 -, pages = "45--72" -, update = "97.11 bibrelex" +, author = "W. M. Schmidt" +, title = "Integer points on curves and surfaces" +, journal = "Monatsh. Math." +, volume = 99 +, year = 1985 +, pages = "45--72" +, update = "97.11 bibrelex" } @article{s-id7-72 -, author = "W. M. Schmidt" -, title = "Irregularities of distribution VII" -, journal = "Acta Arithmetica" -, volume = 21 -, year = 1972 -, pages = "45--50" -, update = "98.03 bibrelex" +, author = "W. M. Schmidt" +, title = "Irregularities of distribution VII" +, journal = "Acta Arithmetica" +, volume = 21 +, year = 1972 +, pages = "45--50" +, update = "98.03 bibrelex" } @techreport{s-tscce-81 -, author = "A. Schmitt" -, title = "On the time and space complexity of certain exact hidden line algorithms" -, type = "Report" -, number = "24/81" -, institution = "Fakult{\"a}t Inform., Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1981 +, author = "A. Schmitt" +, title = "On the time and space complexity of certain exact hidden line algorithms" +, type = "Report" +, number = "24/81" +, institution = "Fakult{\"a}t Inform., Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1981 } @techreport{s-rgiah-81 -, author = "A. Schmitt" -, title = "Reporting geometric inclusions with an application to the hidden line problem" -, type = "Report" -, number = "18/81" -, institution = "Univ. Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1981 +, author = "A. Schmitt" +, title = "Reporting geometric inclusions with an application to the hidden line problem" +, type = "Report" +, number = "18/81" +, institution = "Univ. Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1981 } @inproceedings{s-tsbhl-81 -, author = "A. Schmitt" -, title = "Time and space bounds for hidden line and hidden surface algorithms" -, booktitle = "Proc. Eurographics 81" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1981 -, pages = "43--56" -, update = "97.11 bibrelex, 93.05 smid" +, author = "A. Schmitt" +, title = "Time and space bounds for hidden line and hidden surface algorithms" +, booktitle = "Proc. Eurographics 81" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1981 +, pages = "43--56" +, update = "97.11 bibrelex, 93.05 smid" } @book{sdk-egga-96 -, author = "A. Schmitt and O. Deussen and M. Kreeb" -, title = "Einf{\"u}hrung in graphisch-geometrische {Algorithmen}" -, publisher = "B. G. Teubner" -, address = "Stuttgart" -, year = 1996 -, keywords = "textbook, in German" -, update = "99.11 bibrelex, 97.03 smid" +, author = "A. Schmitt and O. Deussen and M. Kreeb" +, title = "Einf{\"u}hrung in graphisch-geometrische {Algorithmen}" +, publisher = "B. G. Teubner" +, address = "Stuttgart" +, year = 1996 +, keywords = "textbook, in German" +, update = "99.11 bibrelex, 97.03 smid" } @proceedings{sm-iwcg-85 -, title = "Abstracts 3rd Intern. Workshop Comput. Geom." -, editor = "A. Schmitt and H. M{\"u}ller" -, nickname = "CG '85" -, site = "Karlsruhe" -, publisher = "Universit{\"a}t Karlsruhe" -, year = 1985 -, update = "00.03 bibrelex" +, title = "Abstracts 3rd Intern. Workshop Comput. Geom." +, editor = "A. Schmitt and H. M{\"u}ller" +, nickname = "CG '85" +, site = "Karlsruhe" +, publisher = "Universit{\"a}t Karlsruhe" +, year = 1985 +, update = "00.03 bibrelex" } @incollection{sml-rtatp-88 -, author = "A. Schmitt and H. M{\"u}ller and W. Leister" -, title = "Ray tracing algorithms: theory and practice" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "997--1030" -, keywords = "ray tracing, implementing algorithms, survey paper" -, update = "99.11 bibrelex" +, author = "A. Schmitt and H. M{\"u}ller and W. Leister" +, title = "Ray tracing algorithms: theory and practice" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "997--1030" +, keywords = "ray tracing, implementing algorithms, survey paper" +, update = "99.11 bibrelex" } @inproceedings{ss-dvdok-91 -, author = "D. Schmitt and J.-C. Spehner" -, title = "On {Delaunay} and {Voronoi} diagrams of order $k$ in the plane" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, year = 1991 -, pages = "29--32" -, cites = "agss-ltacv-89, a-ndrcv-90, bt-hrodt-86, bdt-dchov-90, ce-iacko-87, e-esaa-86, eos-calha-86, es-cvdpu-90, l-knnvd-82, sh-cpp-75, ZZZ" -, update = "98.07 bibrelex" +, author = "D. Schmitt and J.-C. Spehner" +, title = "On {Delaunay} and {Voronoi} diagrams of order $k$ in the plane" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, year = 1991 +, pages = "29--32" +, cites = "agss-ltacv-89, a-ndrcv-90, bt-hrodt-86, bdt-dchov-90, ce-iacko-87, e-esaa-86, eos-calha-86, es-cvdpu-90, l-knnvd-82, sh-cpp-75, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{ss-edded-93 -, author = "D. Schmitt and J.-C. Spehner" -, title = "On equiangularity of {Delaunay} diagrams in every dimension" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "346--351" -, cites = "a-vdsfg-91, e-acg-87, ms-getcc-88, ps-cgi-85, r-odtr-91, s-let-78, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "D. Schmitt and J.-C. Spehner" +, title = "On equiangularity of {Delaunay} diagrams in every dimension" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "346--351" +, cites = "a-vdsfg-91, e-acg-87, ms-getcc-88, ps-cgi-85, r-odtr-91, s-let-78, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{sg-apads-85 -, author = "F. Schmitt and B. Gholizadeh" -, title = "Adaptive Polyhedral Approximation of Digitized Surfaces" -, booktitle = "Proc. SPIE Conf. on Comput. Vision ind Robots" -, site = "Bellingham, Walsh" -, volume = 595 -, year = 1985 -, pages = "167--171" -, update = "98.11 bibrelex" +, author = "F. Schmitt and B. Gholizadeh" +, title = "Adaptive Polyhedral Approximation of Digitized Surfaces" +, booktitle = "Proc. SPIE Conf. on Comput. Vision ind Robots" +, site = "Bellingham, Walsh" +, volume = 595 +, year = 1985 +, pages = "167--171" +, update = "98.11 bibrelex" } @article{sbd-asmsf-86 -, author = "F. J. Schmitt and B. A. Barsky and W. Du" -, title = "An Adaptive Subdivision Method for Surface-fitting from Sampled Data" -, journal = "Comput. Graph." -, volume = 20 -, number = 4 -, year = 1986 -, pages = "179--188" -, note = "Proc. SIGGRAPH '86" -, update = "96.09 devillers, 95.01 mitchell" +, author = "F. J. Schmitt and B. A. Barsky and W. Du" +, title = "An Adaptive Subdivision Method for Surface-fitting from Sampled Data" +, journal = "Comput. Graph." +, volume = 20 +, number = 4 +, year = 1986 +, pages = "179--188" +, note = "Proc. SIGGRAPH '86" +, update = "96.09 devillers, 95.01 mitchell" } @inproceedings{s-seaac-89 -, author = "Michel Schmitt" -, title = "Some examples of Algorithms Analysis in Computational Geometry by Means of Mathematical Morphological Techniques" -, editor = "J.-D. Boissonnat and J.-P. Laumond" -, booktitle = "Proc. of the Workshop on Geometry and Robotics" -, series = "Lecture Notes Comput. Sci." -, volume = 391 -, publisher = "Springer-Verlag" -, year = 1989 -, update = "00.03 devillers" +, author = "Michel Schmitt" +, title = "Some examples of Algorithms Analysis in Computational Geometry by Means of Mathematical Morphological Techniques" +, editor = "J.-D. Boissonnat and J.-P. Laumond" +, booktitle = "Proc. of the Workshop on Geometry and Robotics" +, series = "Lecture Notes Comput. Sci." +, volume = 391 +, publisher = "Springer-Verlag" +, year = 1989 +, update = "00.03 devillers" } @article{s-dspdp-91 -, author = "P. Schmitt" -, title = "Disks with special properties of densest packings" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "181--190" +, author = "P. Schmitt" +, title = "Disks with special properties of densest packings" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "181--190" } @article{s-smsp-87 -, author = "P. Schmitt" -, title = "$\sigma$-morphic sets of prototiles" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "271--295" +, author = "P. Schmitt" +, title = "$\sigma$-morphic sets of prototiles" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "271--295" } @book{sb-mla-89 -, author = "H. Schneider and G. P. Barker" -, title = "Matrices and Linear Algebra" -, publisher = "Dover Publ." -, year = 1989 -, update = "98.11 bibrelex" +, author = "H. Schneider and G. P. Barker" +, title = "Matrices and Linear Algebra" +, publisher = "Dover Publ." +, year = 1989 +, update = "98.11 bibrelex" } @book{s-cbbmt-93 -, author = "R. Schneider" -, title = "Convex bodies: {The} {Brunn}-{Minkowski} theory" -, series = "Encyclopedia of Mathematics and its Applications" -, volume = 44 -, publisher = "Cambridge University Press" -, year = 1993 -, update = "98.03 bibrelex" +, author = "R. Schneider" +, title = "Convex bodies: {The} {Brunn}-{Minkowski} theory" +, series = "Encyclopedia of Mathematics and its Applications" +, volume = 44 +, publisher = "Cambridge University Press" +, year = 1993 +, update = "98.03 bibrelex" } @incollection{s-dasg-97 -, author = "R. Schneider" -, title = "Discrete aspects of stochastic geometry" -, chapter = 9 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "167--184" -, update = "97.11 orourke" +, author = "R. Schneider" +, title = "Discrete aspects of stochastic geometry" +, chapter = 9 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "167--184" +, update = "97.11 orourke" } @article{s-kkk-72 -, author = "R. Schneider" -, title = "Kr{\"u}mmungsschwerpunkte konvexer {K{\"o}rper}" -, journal = "Abh. Math. Sem. Hamburg" -, volume = 37 -, year = 1972 -, pages = "112--132" -, update = "98.03 bibrelex" +, author = "R. Schneider" +, title = "Kr{\"u}mmungsschwerpunkte konvexer {K{\"o}rper}" +, journal = "Abh. Math. Sem. Hamburg" +, volume = 37 +, year = 1972 +, pages = "112--132" +, update = "98.03 bibrelex" } @article{s-racs-88 -, author = "R. Schneider" -, title = "Random approximation of convex sets" -, journal = "Microscopy" -, volume = 151 -, year = 1988 -, pages = "211--227" -, update = "97.11 bibrelex" +, author = "R. Schneider" +, title = "Random approximation of convex sets" +, journal = "Microscopy" +, volume = 151 +, year = 1988 +, pages = "211--227" +, update = "97.11 bibrelex" } @article{s-tgh-87 -, author = "R. Schneider" -, title = "Tessellations generated by hyperplanes" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "223--232" +, author = "R. Schneider" +, title = "Tessellations generated by hyperplanes" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "223--232" } @inproceedings{sk-ttnrp-91 -, author = "Ralf Schneider and Hans-Peter Kriegel" -, title = "The {TR*}-tree: A new representation of polygonal objects supporting spatial queries and operations" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "249--263" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Ralf Schneider and Hans-Peter Kriegel" +, title = "The {TR*}-tree: A new representation of polygonal objects supporting spatial queries and operations" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "249--263" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{s-aghfe-95 -, author = "Robert Schneiders" -, title = "Automatic Generation of Hexahedral Finite Element Meshes" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "103--114" -, update = "96.01 samitchell" +, author = "Robert Schneiders" +, title = "Automatic Generation of Hexahedral Finite Element Meshes" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "103--114" +, update = "96.01 samitchell" } @misc{s-op- -, author = "R. Schneiders" -, title = "Open problem" -, url = "http://www-users.informatik.rwth-aachen.de/~roberts/open.html" -, update = "97.11 bibrelex" +, author = "R. Schneiders" +, title = "Open problem" +, url = "http://www-users.informatik.rwth-aachen.de/~roberts/open.html" +, update = "97.11 bibrelex" } @inproceedings{ssw-obghe-96 -, author = "R. Schneiders and R. Schindler and F. Weiler" -, title = "Octree-based generation of hexahedral element meshes" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "205--215" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "R. Schneiders and R. Schindler and F. Weiler" +, title = "Octree-based generation of hexahedral element meshes" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "205--215" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @inproceedings{s-epgg-90 -, author = "W. Schnyder" -, title = "Embedding Planar Graphs on the Grid" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "138--148" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "W. Schnyder" +, title = "Embedding Planar Graphs on the Grid" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "138--148" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{s-pgpd-89 -, author = "W. Schnyder" -, title = "Planar Graphs and Poset Dimension" -, journal = "Order" -, volume = 5 -, year = 1989 -, pages = "323--343" -, keywords = "graph drawing, convex polytope, order dimension" -, update = "95.05 tamassia" +, author = "W. Schnyder" +, title = "Planar Graphs and Poset Dimension" +, journal = "Order" +, volume = 5 +, year = 1989 +, pages = "323--343" +, keywords = "graph drawing, convex polytope, order dimension" +, update = "95.05 tamassia" } @article{st-ce3cp-92 -, author = "W. Schnyder and W. T. Trotter" -, title = "Convex Embeddings of 3-Connected Plane Graphs" -, journal = "Abstracts of the AMS" -, volume = 13 -, number = 5 -, year = 1992 -, pages = 502 -, keywords = "graph drawing, planar, convex, straight-line" -, update = "98.07 tamassia+vismara, 96.09 tamassia" +, author = "W. Schnyder and W. T. Trotter" +, title = "Convex Embeddings of 3-Connected Plane Graphs" +, journal = "Abstracts of the AMS" +, volume = 13 +, number = 5 +, year = 1992 +, pages = 502 +, keywords = "graph drawing, planar, convex, straight-line" +, update = "98.07 tamassia+vismara, 96.09 tamassia" } @article{s-npscf-91 -, author = "T. Sch{\"o}bel" -, title = "A new parsing strategy for context free grammars" -, journal = "Algorithms Rev." -, volume = 2 -, number = 2 -, year = 1991 -, pages = "63--76" +, author = "T. Sch{\"o}bel" +, title = "A new parsing strategy for context free grammars" +, journal = "Algorithms Rev." +, volume = 2 +, number = 2 +, year = 1991 +, pages = "63--76" } @inproceedings{s-dcamv-86 -, author = "A. H. Schoen" -, title = "A defect-correction algorithm for minimizing the volume of a simple polyhedron which circumscribes a sphere" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "159--168" -, cites = "bh-vpius-70, bs-dcmta-84, g-ipp-35, gp-taafp-86, g-cp-67, k-vmafs-72, l-rmctf-82, mks-eapuc-77, m-aludk-97, s-pur-22, s-uipkp-27, wwv-oasdt-85, ZZZ" -, update = "97.11 bibrelex" +, author = "A. H. Schoen" +, title = "A defect-correction algorithm for minimizing the volume of a simple polyhedron which circumscribes a sphere" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "159--168" +, cites = "bh-vpius-70, bs-dcmta-84, g-ipp-35, gp-taafp-86, g-cp-67, k-vmafs-72, l-rmctf-82, mks-eapuc-77, m-aludk-97, s-pur-22, s-uipkp-27, wwv-oasdt-85, ZZZ" +, update = "97.11 bibrelex" } @article{sz-clccp-67 -, author = "I. J. Schoenberg and S. K. Zaremba" -, title = "On {Cauchy}'s lemma concerning convex polygons" -, journal = "Canad. J. Math." -, volume = 19 -, year = 1967 -, pages = "1062--1077" -, update = "00.11 smid, 00.07 orourke" +, author = "I. J. Schoenberg and S. K. Zaremba" +, title = "On {Cauchy}'s lemma concerning convex polygons" +, journal = "Canad. J. Math." +, volume = 19 +, year = 1967 +, pages = "1062--1077" +, update = "00.11 smid, 00.07 orourke" } @book{ss-gisur-90 -, title = "Geographical Information Systems for Urban and Regional Planning" -, editor = "H. J. Scholten and J. C. H. Stillwell" -, publisher = "Kluwer Academic Publishers" -, address = "the Netherlands" -, year = 1990 -, update = "96.09 kreveld" +, title = "Geographical Information Systems for Urban and Regional Planning" +, editor = "H. J. Scholten and J. C. H. Stillwell" +, publisher = "Kluwer Academic Publishers" +, address = "the Netherlands" +, year = 1990 +, update = "96.09 kreveld" } @article{so-gmarr-89 -, author = "H. W. Scholten and M. H. Overmars" -, title = "General methods for adding range restrictions to decomposable searching problems" -, journal = "J. Symbolic Comput." -, volume = 7 -, year = 1989 -, pages = "1--10" +, author = "H. W. Scholten and M. H. Overmars" +, title = "General methods for adding range restrictions to decomposable searching problems" +, journal = "J. Symbolic Comput." +, volume = 7 +, year = 1989 +, pages = "1--10" } @phdthesis{s-immk-94 -, author = "E. Sch{\"o}mer" -, title = "Interaktive {Montagesimulation} mit {Kollisionserkennung}" -, school = "Universit{\"a}t des Saarlandes" -, address = "Saarbr{\"u}cken, Germanyy" -, year = 1994 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "E. Sch{\"o}mer" +, title = "Interaktive {Montagesimulation} mit {Kollisionserkennung}" +, school = "Universit{\"a}t des Saarlandes" +, address = "Saarbr{\"u}cken, Germanyy" +, year = 1994 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{ssty-easec-96 -, author = "E. Sch{\"o}mer and J. Sellen and M. Teichmann and C. Yap" -, title = "Efficient algorithms for the smallest enclosing cylinder problem" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "264--269" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "E. Sch{\"o}mer and J. Sellen and M. Teichmann and C. Yap" +, title = "Efficient algorithms for the smallest enclosing cylinder problem" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "264--269" +, update = "97.03 agarwal, 96.09 mitchell" } @techreport{ssty-sec-96t -, author = "Elmar Sch{\"o}mer and Jurgen Sellen and Marek Teichmann and Chee Yap" -, title = "Smallest Enclosing Cylinders" -, type = "Technical {Report}" -, institution = "Courant Institute, New York University" -, year = 1996 -, url = "https://cs.nyu.edu/" -, update = "97.11 bibrelex" +, author = "Elmar Sch{\"o}mer and Jurgen Sellen and Marek Teichmann and Chee Yap" +, title = "Smallest Enclosing Cylinders" +, type = "Technical {Report}" +, institution = "Courant Institute, New York University" +, year = 1996 +, url = "https://cs.nyu.edu/" +, update = "97.11 bibrelex" } @inproceedings{ssty-sec-96 -, author = "Elmar Sch{\"o}mer and Jurgen Sellen and Marek Teichmann and Chee Yap" -, title = "Smallest Enclosing Cylinders" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "C13--C14" -, cites = "agr-pahdc-94, am-rsss-94, m-apcad-83, ptvf-nrc-88, ssty-sec-96t, y-ecgtm-95, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Elmar Sch{\"o}mer and Jurgen Sellen and Marek Teichmann and Chee Yap" +, title = "Smallest Enclosing Cylinders" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "C13--C14" +, cites = "agr-pahdc-94, am-rsss-94, m-apcad-83, ptvf-nrc-88, ssty-sec-96t, y-ecgtm-95, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{ssty-sec-00 -, author = "E. Sch{\"o}mer and J. Sellen and M. Teichmann and C. K. Yap" -, title = "Smallest Enclosing Cylinders" -, journal = "Algorithmica" -, volume = 27 -, number = 2 -, year = 2000 -, pages = "170--186" -, update = "00.11 smid, 00.07 held" +, author = "E. Sch{\"o}mer and J. Sellen and M. Teichmann and C. K. Yap" +, title = "Smallest Enclosing Cylinders" +, journal = "Algorithmica" +, volume = 27 +, number = 2 +, year = 2000 +, pages = "170--186" +, update = "00.11 smid, 00.07 held" } @inproceedings{ssw-egcd-95 -, author = "Elmar Sch{\"o}mer and J{\"u}rgen Sellen and Markus Welsch" -, title = "Exact Geometric Collision Detection" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "211--216" -, update = "95.09 jones" +, author = "Elmar Sch{\"o}mer and J{\"u}rgen Sellen and Markus Welsch" +, title = "Exact Geometric Collision Detection" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "211--216" +, update = "95.09 jones" } @techreport{st-ecdmp-94 -, author = "E. Sch{\"o}mer and C. Thiel" -, title = "Efficient collision detection for moving polyhedra" -, type = "Report" -, number = "MPI-I-94-147" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "95.01 smid" +, author = "E. Sch{\"o}mer and C. Thiel" +, title = "Efficient collision detection for moving polyhedra" +, type = "Report" +, number = "MPI-I-94-147" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "95.01 smid" } @inproceedings{st-ecdmp-95 -, author = "Elmar Sch{\"o}mer and Christian Thiel" -, title = "Efficient Collision Detection for Moving Polyhedra" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "51--60" -, keywords = "intersection detection, linearization, range queries, parametric search, Plucker coordinates" -, cites = "am-rsss-92, am-rsps-92, aps-zsha-93, b-idss-79, dk-ladsc-85, c-dcbp-84, dk-dsppu-90, dhks-isccd-90, k-nrdsc-92, m-rsehc-91, m-apcad-83, n-flsah-85, p-crz-91, p-innpl-92, p-rst3s-93, ps-cgi-85, s-immk-94, us-hmsss-92, yy-gaddg-85, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Elmar Sch{\"o}mer and Christian Thiel" +, title = "Efficient Collision Detection for Moving Polyhedra" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "51--60" +, keywords = "intersection detection, linearization, range queries, parametric search, Plucker coordinates" +, cites = "am-rsss-92, am-rsps-92, aps-zsha-93, b-idss-79, dk-ladsc-85, c-dcbp-84, dk-dsppu-90, dhks-isccd-90, k-nrdsc-92, m-rsehc-91, m-apcad-83, n-flsah-85, p-crz-91, p-innpl-92, p-rst3s-93, ps-cgi-85, s-immk-94, us-hmsss-92, yy-gaddg-85, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{st-sagcd-96 -, author = "Elmar Sch{\"o}mer and Christian Thiel" -, title = "Subquadratic Algorithms for the General Collision Detection Problem" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "95--101" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Elmar Sch{\"o}mer and Christian Thiel" +, title = "Subquadratic Algorithms for the General Collision Detection Problem" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "95--101" +, update = "00.03 bibrelex, 99.03 bibrelex" } @techreport{s-ftatc-82 -, author = "A. Sch{\"o}nhage" -, title = "The fundamental theorem of algebra in terms of computational complexity" -, institution = "Univ. T{\"u}bingen" -, year = 1982 -, update = "98.03 bibrelex" +, author = "A. Sch{\"o}nhage" +, title = "The fundamental theorem of algebra in terms of computational complexity" +, institution = "Univ. T{\"u}bingen" +, year = 1982 +, update = "98.03 bibrelex" } @article{spp-fm-76 -, author = "A. Sch{\"o}nhage and M. Paterson and N. Pipinger" -, title = "Finding the median" -, journal = "J. Comput. Syst. Sci." -, volume = 13 -, year = 1976 -, pages = "184--199" -, update = "97.11 bibrelex" +, author = "A. Sch{\"o}nhage and M. Paterson and N. Pipinger" +, title = "Finding the median" +, journal = "J. Comput. Syst. Sci." +, volume = 13 +, year = 1976 +, pages = "184--199" +, update = "97.11 bibrelex" } @article{s-udzvd-28 -, author = "E. Sch{\"o}nhardt" -, title = "{\"U}ber die {Zerlegung} von {Dreieckspolyedern} in {Tetraeder}" -, journal = "Math. Ann." -, volume = 98 -, year = 1928 -, pages = "309--312" -, update = "97.11 bibrelex" +, author = "E. Sch{\"o}nhardt" +, title = "{\"U}ber die {Zerlegung} von {Dreieckspolyedern} in {Tetraeder}" +, journal = "Math. Ann." +, volume = 98 +, year = 1928 +, pages = "309--312" +, update = "97.11 bibrelex" } @mastersthesis{s-bkeup-94 -, author = "S. Sch{\"o}nherr" -, title = "Berechnung kleinster {Ellipsoide} um {Punktmengen}" -, school = "Free University Berlin" -, address = "Berlin, Germany" -, year = 1994 -, note = "Diploma Thesis" -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "S. Sch{\"o}nherr" +, title = "Berechnung kleinster {Ellipsoide} um {Punktmengen}" +, school = "Free University Berlin" +, address = "Berlin, Germany" +, year = 1994 +, note = "Diploma Thesis" +, keywords = "master thesis" +, update = "98.07 bibrelex" } @techreport{sl-tssp-80 -, author = "Anneke A. Schoone and J. van Leeuwen" -, title = "Triangulating a star-shaped polygon" -, type = "Report" -, number = "RUU-CS-80-3" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1980 -, update = "94.05 schwarzkopf, 93.09 rote+smid" +, author = "Anneke A. Schoone and J. van Leeuwen" +, title = "Triangulating a star-shaped polygon" +, type = "Report" +, number = "RUU-CS-80-3" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1980 +, update = "94.05 schwarzkopf, 93.09 rote+smid" } @inproceedings{s-adgc-90 -, author = "Peter Schorn" -, title = "Accuracy and Degeneracy in Geometric Computation" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 22 -, update = "00.03 bibrelex" +, author = "Peter Schorn" +, title = "Accuracy and Degeneracy in Geometric Computation" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 22 +, update = "00.03 bibrelex" } @inproceedings{s-aeapp-90 -, author = "P. Schorn" -, title = "Accurate and efficient algorithms for proximity problems" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "24--27" -, cites = "gy-frcg-86, h-pargc-89, hns-psscp-88, hns-arsa2-92, m-vigau-88t, m-dpggt-89, gss-egbra-89, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Schorn" +, title = "Accurate and efficient algorithms for proximity problems" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "24--27" +, cites = "gy-frcg-86, h-pargc-89, hns-psscp-88, hns-arsa2-92, m-vigau-88t, m-dpggt-89, gss-egbra-89, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{s-ooweg-90 -, author = "P. Schorn" -, title = "An object-oriented workbench for experimental geometric computation" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "172--175" -, cites = "f-savd-87, g-pacpa-88, hns-psscp-88, mn-lledt-89, ps-cgi-85, r-pa-76, ZZZ" -, update = "98.07 bibrelex" +, author = "P. Schorn" +, title = "An object-oriented workbench for experimental geometric computation" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "172--175" +, cites = "f-savd-87, g-pacpa-88, hns-psscp-88, mn-lledt-89, ps-cgi-85, r-pa-76, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{s-ixgpe-91 -, author = "Peter Schorn" -, title = "Implementing the {XYZ} {GeoBench}: A programming environment for geometric algorithms" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "187--202" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Peter Schorn" +, title = "Implementing the {XYZ} {GeoBench}: A programming environment for geometric algorithms" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "187--202" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @phdthesis{s-raplg-91t -, author = "P. Schorn" -, title = "Robust algorithms in a program library for geometric computation" -, type = "Ph.{D}. Thesis" -, school = "ETH Z{\"u}rich, Switzerland" -, year = 1991 -, note = "Report 9519" -, keywords = "doctoral thesis" -, precedes = "s-raplg-91" -, update = "98.11 bibrelex" +, author = "P. Schorn" +, title = "Robust algorithms in a program library for geometric computation" +, type = "Ph.{D}. Thesis" +, school = "ETH Z{\"u}rich, Switzerland" +, year = 1991 +, note = "Report 9519" +, keywords = "doctoral thesis" +, precedes = "s-raplg-91" +, update = "98.11 bibrelex" } @book{s-raplg-91 -, author = "P. Schorn" -, title = "Robust Algorithms in a Program Library for Geometric Computation" -, series = "Informatik-Dissertationen ETH Z{\"u}rich" -, volume = 32 -, publisher = "Verlag der Fachvereine" -, address = "Z{\"u}rich" -, year = 1991 -, succeeds = "s-raplg-91t" -, update = "98.11 bibrelex, 97.03 icking" +, author = "P. Schorn" +, title = "Robust Algorithms in a Program Library for Geometric Computation" +, series = "Informatik-Dissertationen ETH Z{\"u}rich" +, volume = 32 +, publisher = "Verlag der Fachvereine" +, address = "Z{\"u}rich" +, year = 1991 +, succeeds = "s-raplg-91t" +, update = "98.11 bibrelex, 97.03 icking" } @incollection{sf-tcp-94 -, author = "Peter Schorn and Frederick Fisher" -, title = "Testing the Convexity of a Polygon" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "7--15" -, keywords = "computational geometry, concave polygon" -, update = "94.09 heckbert" -, annote = "Gives an algorithm and code to determine if a polygon is +, author = "Peter Schorn and Frederick Fisher" +, title = "Testing the Convexity of a Polygon" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "7--15" +, keywords = "computational geometry, concave polygon" +, update = "94.09 heckbert" +, annote = "Gives an algorithm and code to determine if a polygon is convex, non-convex (concave but not convex), or non-simple (self-intersecting). For many polygon operations, faster algorithms can be used if the polygon is known to be convex. This is true when scan converting @@ -128836,2318 +128836,2318 @@ @incollection{sf-tcp-94 } @article{s-acspt-83 -, author = "Schrader" -, title = "Approximations of clustering and subgraph problems on trees" -, journal = "Discrete Appl. Math." -, volume = 6 -, year = 1983 -, update = "97.11 bibrelex" +, author = "Schrader" +, title = "Approximations of clustering and subgraph problems on trees" +, journal = "Discrete Appl. Math." +, volume = 6 +, year = 1983 +, update = "97.11 bibrelex" } @techreport{s-hce-90 -, author = "O. Schramm" -, title = "How to Cage an Egg" -, type = "Technical {Report}" -, institution = "Univ. of California, San Diego" -, year = 1990 -, keywords = "circumscribe, inscribe, packing, circle packing, convex, Cauchy Lemma, rigidity" -, update = "93.09 milone+mitchell" +, author = "O. Schramm" +, title = "How to Cage an Egg" +, type = "Technical {Report}" +, institution = "Univ. of California, San Diego" +, year = 1990 +, keywords = "circumscribe, inscribe, packing, circle packing, convex, Cauchy Lemma, rigidity" +, update = "93.09 milone+mitchell" } @techreport{s-ptdbp-?? -, author = "O. Schramm" -, title = "Packing two-dimensional bodies with prescribed combinatorics and applications to the construction of conformal and Quasiconformal mappings" -, type = "Technical {Report}" -, institution = "Univ. of California, San Diego" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "O. Schramm" +, title = "Packing two-dimensional bodies with prescribed combinatorics and applications to the construction of conformal and Quasiconformal mappings" +, type = "Technical {Report}" +, institution = "Univ. of California, San Diego" +, year = "??" +, update = "93.09 milone+mitchell" } @inproceedings{s-vdbak-91 -, author = "Thomas Schreiber" -, title = "A {Voronoi} diagram based adaptive $k$-means-type clustering algorithm for multidimensional weighted data" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "265--275" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Thomas Schreiber" +, title = "A {Voronoi} diagram based adaptive $k$-means-type clustering algorithm for multidimensional weighted data" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "265--275" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{s-pa3do-97 -, author = "Thomas Schreiber" -, title = "Polyhedral Approximation of 3D Objects from Scattered Boundary Points" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "43--44" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Thomas Schreiber" +, title = "Polyhedral Approximation of 3D Objects from Scattered Boundary Points" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "43--44" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{s-dhptp-91 -, author = "A. Schrijver" -, title = "Disjoint homotopic paths and trees in a planar graph" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "527--574" +, author = "A. Schrijver" +, title = "Disjoint homotopic paths and trees in a planar graph" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "527--574" } @techreport{s-pccfc-?? -, author = "A. Schrijver" -, title = "Packing and covering of crossing families of cuts" -, institution = "Instituut voor Actuariaat en Econometrie" -, address = "Amsterdam, Holland" -, year = "??" -, update = "93.09 milone+mitchell" +, author = "A. Schrijver" +, title = "Packing and covering of crossing families of cuts" +, institution = "Instituut voor Actuariaat en Econometrie" +, address = "Amsterdam, Holland" +, year = "??" +, update = "93.09 milone+mitchell" } @book{s-tlip-86 -, author = "A. Schrijver" -, title = "Theory of Linear and Integer Programming" -, publisher = "Wiley-Interscience" -, address = "New York, NY" -, year = 1986 -, update = "97.03 schwarzkopf, 93.09 milone+mitchell" +, author = "A. Schrijver" +, title = "Theory of Linear and Integer Programming" +, publisher = "Wiley-Interscience" +, address = "New York, NY" +, year = 1986 +, update = "97.03 schwarzkopf, 93.09 milone+mitchell" } @article{sh-ffbtp-93 -, author = "P. Schr{\"o}der and P. Hanrahan" -, title = "On the form factor between two polygons" -, journal = "Comput. Graph." -, volume = "??" -, year = 1993 -, pages = "163--164" -, note = "Proc. SIGGRAPH '93" -, update = "98.03 bibrelex" +, author = "P. Schr{\"o}der and P. Hanrahan" +, title = "On the form factor between two polygons" +, journal = "Comput. Graph." +, volume = "??" +, year = 1993 +, pages = "163--164" +, note = "Proc. SIGGRAPH '93" +, update = "98.03 bibrelex" } @article{ss-codmf-90 -, author = "W. J. Schroeder and M. S. Shephard" -, title = "A Combined Octree {Delaunay} Method for Fully-Automatic 3-{D} Mesh Generation" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 29 -, number = 1 -, year = 1990 -, pages = "37--55" -, annote = "Basically octree is used to generate nodes and - Delaunay triangulation of these nodes is created." +, author = "W. J. Schroeder and M. S. Shephard" +, title = "A Combined Octree {Delaunay} Method for Fully-Automatic 3-{D} Mesh Generation" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 29 +, number = 1 +, year = 1990 +, pages = "37--55" +, annote = "Basically octree is used to generate nodes and + Delaunay triangulation of these nodes is created." } @article{ss-gbfam-88 -, author = "W. J. Schroeder and M. S. Shephard" -, title = "Geometry-Based Fully-Automatic Mesh Generation and the {Delaunay} Triangulation" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 26 -, number = 11 -, year = 1988 -, pages = "2503--2515" -, annote = "Adds extra points to satisfy constrained edges." +, author = "W. J. Schroeder and M. S. Shephard" +, title = "Geometry-Based Fully-Automatic Mesh Generation and the {Delaunay} Triangulation" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 26 +, number = 11 +, year = 1988 +, pages = "2503--2515" +, annote = "Adds extra points to satisfy constrained edges." } @article{ss-oaagg-89 -, author = "W. J. Schroeder and M. S. Shephard" -, title = "${O}({N})$ Algorithm To Automatically Generate Geometric Triangulations Satisfying The {Delaunay} Circumsphere Criteria" -, journal = "Eng. Comput. (USA)" -, volume = 5 -, number = "3--4" -, year = 1989 -, pages = "177--193" -, keywords = "geometric triangulations, Delaunay circumsphere criteria" -, update = "00.11 smid, 00.07 icking, 96.09 devillers" -, annote = "Generates points in an octree." -, abstract = "This paper presents an algorithm for the generation of - Delaunay triangulations for general nonmanifold - geometric models. Octree concepts are used for point - placement and providing the linear, with respect to the - number of elements, growth rate of the algorithm. - Compatibility and classification procedures are used in - conjunction with point injection procedures to ensure - that the final Delaunay triangulation is a geometric - triangulation of the domain of interest. (Author - abstract) 23 Refs." +, author = "W. J. Schroeder and M. S. Shephard" +, title = "${O}({N})$ Algorithm To Automatically Generate Geometric Triangulations Satisfying The {Delaunay} Circumsphere Criteria" +, journal = "Eng. Comput. (USA)" +, volume = 5 +, number = "3--4" +, year = 1989 +, pages = "177--193" +, keywords = "geometric triangulations, Delaunay circumsphere criteria" +, update = "00.11 smid, 00.07 icking, 96.09 devillers" +, annote = "Generates points in an octree." +, abstract = "This paper presents an algorithm for the generation of + Delaunay triangulations for general nonmanifold + geometric models. Octree concepts are used for point + placement and providing the linear, with respect to the + number of elements, growth rate of the algorithm. + Compatibility and classification procedures are used in + conjunction with point injection procedures to ensure + that the final Delaunay triangulation is a geometric + triangulation of the domain of interest. (Author + abstract) 23 Refs." } @article{szl-dtm-92 -, author = "W. J. Schroeder and J. A. Zarge and W. E. Lorensen" -, title = "Decimation of Triangle Meshes" -, journal = "Comput. Graph." -, volume = 26 -, number = 2 -, year = 1992 -, pages = "65--70" -, note = "Proc. SIGGRAPH '92" -, keywords = "geometric modeling, medical imaging, terrain modeling, volume modeling" -, update = "93.09 milone+mitchell" +, author = "W. J. Schroeder and J. A. Zarge and W. E. Lorensen" +, title = "Decimation of Triangle Meshes" +, journal = "Comput. Graph." +, volume = 26 +, number = 2 +, year = 1992 +, pages = "65--70" +, note = "Proc. SIGGRAPH '92" +, keywords = "geometric modeling, medical imaging, terrain modeling, volume modeling" +, update = "93.09 milone+mitchell" } @article{sb-hismd-94 -, author = "P. Schroeter and J. Big{\"u}n" -, title = "Hierarchical Image Segmentation by Multi-Dimensional Clustering and Orientation-Adaptive Boundary Refinement" -, journal = "Pattern Recogn." -, volume = 28 -, number = 5 -, year = 1995 -, pages = "695--709" -, keywords = "hierarchical image segmentation, multi-dimensional clustering" -, update = "98.07 agarwal" +, author = "P. Schroeter and J. Big{\"u}n" +, title = "Hierarchical Image Segmentation by Multi-Dimensional Clustering and Orientation-Adaptive Boundary Refinement" +, journal = "Pattern Recogn." +, volume = 28 +, number = 5 +, year = 1995 +, pages = "695--709" +, keywords = "hierarchical image segmentation, multi-dimensional clustering" +, update = "98.07 agarwal" } @article{s-bdpvv-61 -, author = "H. Schubert" -, title = "{Bestimmung} der {Primfaktorzerlegung} von {Verkettungen}" -, journal = "Mathematische Zeitschrift" -, volume = 76 -, year = 1961 -, pages = "116--148" -, update = "97.11 bibrelex" +, author = "H. Schubert" +, title = "{Bestimmung} der {Primfaktorzerlegung} von {Verkettungen}" +, journal = "Mathematische Zeitschrift" +, volume = 76 +, year = 1961 +, pages = "116--148" +, update = "97.11 bibrelex" } @inproceedings{s-agtv-90 -, author = "Sven Schuierer" -, title = "A General Theory of Visibility" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 23 -, update = "00.03 bibrelex" +, author = "Sven Schuierer" +, title = "A General Theory of Visibility" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 23 +, update = "00.03 bibrelex" } @article{s-otack-94 -, author = "S. Schuierer" -, title = "An $O(\log \log n)$ Time Algorithm to Compute the Kernel of a Polygon" -, journal = "Nordic J. Comput." -, volume = 1 -, year = 1994 -, pages = "458--474" -, update = "95.05 smid" +, author = "S. Schuierer" +, title = "An $O(\log \log n)$ Time Algorithm to Compute the Kernel of a Polygon" +, journal = "Nordic J. Comput." +, volume = 1 +, year = 1994 +, pages = "458--474" +, update = "95.05 smid" } @article{s-odssr-96 -, author = "S. Schuierer" -, title = "An optimal data structure for shortest rectilinear path queries in a simple rectilinear polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "205--226" -, succeeds = "s-rpqsr-93" -, update = "96.09 devillers" +, author = "S. Schuierer" +, title = "An optimal data structure for shortest rectilinear path queries in a simple rectilinear polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "205--226" +, succeeds = "s-rpqsr-93" +, update = "96.09 devillers" } @inproceedings{s-cglds-94 -, author = "Sven Schuierer" -, title = "Computing the Geodesic {$L_1$}-Diameter of a Simple Rectilinear Polygon in Parallel" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = 72 -, cites = "hs-msspm-93, psr-cgcsp-89, ZZZ" -, update = "00.11 smid, 00.07 icking" +, author = "Sven Schuierer" +, title = "Computing the Geodesic {$L_1$}-Diameter of a Simple Rectilinear Polygon in Parallel" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = 72 +, cites = "hs-msspm-93, psr-cgcsp-89, ZZZ" +, update = "00.11 smid, 00.07 icking" } @inproceedings{s-cldcs-92 -, author = "Sven Schuierer" -, title = "Computing the {$L_1$}-Diameter and Center of a Simple Polygon" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "73--76" -, update = "00.03 bibrelex" +, author = "Sven Schuierer" +, title = "Computing the {$L_1$}-Diameter and Center of a Simple Polygon" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "73--76" +, update = "00.03 bibrelex" } @inproceedings{s-ersls-97 -, author = "Sven Schuierer" -, title = "Efficient Robot Self-Localization in Simple Polygons" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "20--22" -, cites = "drw-lrmt-95, gmr-rlptd-92 , ZZZ" -, update = "99.07 bibrelex, 98.07 bibrelex" +, author = "Sven Schuierer" +, title = "Efficient Robot Self-Localization in Simple Polygons" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "20--22" +, cites = "drw-lrmt-95, gmr-rlptd-92 , ZZZ" +, update = "99.07 bibrelex, 98.07 bibrelex" } @incollection{s-lbogs-97 -, author = "S. Schuierer" -, title = "Lower Bounds in On-line Geometric Searching" -, booktitle = "11th International Symposium on Fundamentals of Computation Theory" -, nickname = "FCT '97" -, site = "Krakow, Poland" -, series = "Lecture Notes Comput. Sci." -, volume = 1279 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "429--440" -, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "S. Schuierer" +, title = "Lower Bounds in On-line Geometric Searching" +, booktitle = "11th International Symposium on Fundamentals of Computation Theory" +, nickname = "FCT '97" +, site = "Krakow, Poland" +, series = "Lecture Notes Comput. Sci." +, volume = 1279 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "429--440" +, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @article{s-lbogs-01 -, author = "S. Schuierer" -, title = "Lower Bounds in On-line Geometric Searching" -, journal = "Comput. Geom. Theory Appl." -, volume = 18 -, year = 2001 -, pages = "37--53" -, update = "01.04 smid" +, author = "S. Schuierer" +, title = "Lower Bounds in On-line Geometric Searching" +, journal = "Comput. Geom. Theory Appl." +, volume = 18 +, year = 2001 +, pages = "37--53" +, update = "01.04 smid" } @phdthesis{s-gv-91 -, author = "S. Schuierer" -, title = "On Generalized Visibility" -, school = "Universit{\"a}t Freiburg" -, year = 1991 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "S. Schuierer" +, title = "On Generalized Visibility" +, school = "Universit{\"a}t Freiburg" +, year = 1991 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @inproceedings{s-olsgt-97 -, author = "Sven Schuierer" -, title = "On--Line Searching in Geometric Trees" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "135--140" -, update = "97.11 jones" +, author = "Sven Schuierer" +, title = "On--Line Searching in Geometric Trees" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "135--140" +, update = "97.11 jones" } @inproceedings{s-rpqsr-93 -, author = "S. Schuierer" -, title = "Rectilinear path queries in a simple rectilinear polygon" -, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 665 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "282--293" -, precedes = "s-odssr-96" -, update = "96.09 devillers, 93.05 smid" +, author = "S. Schuierer" +, title = "Rectilinear path queries in a simple rectilinear polygon" +, booktitle = "Proc. 10th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 665 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "282--293" +, precedes = "s-odssr-96" +, update = "96.09 devillers, 93.05 smid" } @techreport{s-smbr-98 -, author = "Sven Schuierer" -, title = "Searching on $m$ Bounded Rays Optimally" -, number = 112 -, institution = "Institut f{\"u}r Informatik, Universit{\"a}t Freiburg" -, address = "Germany" -, year = 1998 -, update = "00.03 bibrelex" +, author = "Sven Schuierer" +, title = "Searching on $m$ Bounded Rays Optimally" +, number = 112 +, institution = "Institut f{\"u}r Informatik, Universit{\"a}t Freiburg" +, address = "Germany" +, year = 1998 +, update = "00.03 bibrelex" } @techreport{srw-gtv-89 -, author = "S. Schuierer and G. Rawlings and D. Wood" -, title = "A general theory of visibility" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Univ. Waterloo" -, year = 1989 -, note = "In preparation" -, update = "98.07 bibrelex" +, author = "S. Schuierer and G. Rawlings and D. Wood" +, title = "A general theory of visibility" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Univ. Waterloo" +, year = 1989 +, note = "In preparation" +, update = "98.07 bibrelex" } @inproceedings{srw-gsv-91 -, author = "Sven Schuierer and Gregory J. E. Rawlins and Derick Wood" -, title = "A generalization of staircase visibility" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "277--287" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Sven Schuierer and Gregory J. E. Rawlins and Derick Wood" +, title = "A generalization of staircase visibility" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "277--287" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{srw-gsv-cccg-91 -, author = "S. Schuierer and G. J. E. Rawlins and D. Wood" -, title = "A generalization of staircase visibility" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "96--99" -, cites = "cg-opapp-88, cr-uaopc-89, lp-oafkp-79, mrs-copsp-88, rw-cgro-88, rw-ocfoc-87, ZZZ" -, update = "98.07 bibrelex" +, author = "S. Schuierer and G. J. E. Rawlins and D. Wood" +, title = "A generalization of staircase visibility" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "96--99" +, cites = "cg-opapp-88, cr-uaopc-89, lp-oafkp-79, mrs-copsp-88, rw-cgro-88, rw-ocfoc-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{srw-tgtv-90 -, author = "S. Schuierer and G. J. E. Rawlins and D. Wood" -, title = "Towards a general theory of visibility" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "354--357" -, cites = "b-cvdks-82, cr-cpih-88, ghlst-ltavs-87, h-etdf-63, j-pacca-82, k-mchco-86, l-htac-51, lp-fatsd-81, r-erog-87, s-ecsas-85, sw-oaccs-84, t-cvor-88, t-ghtt-88, v-lcls-65, ZZZ" -, update = "98.07 bibrelex" +, author = "S. Schuierer and G. J. E. Rawlins and D. Wood" +, title = "Towards a general theory of visibility" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "354--357" +, cites = "b-cvdks-82, cr-cpih-88, ghlst-ltavs-87, h-etdf-63, j-pacca-82, k-mchco-86, l-htac-51, lp-fatsd-81, r-erog-87, s-ecsas-85, sw-oaccs-84, t-cvor-88, t-ghtt-88, v-lcls-65, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{ss-ossus-99 -, author = "Sven Schuierer and Ines Semrau" -, title = "An Optimal Strategy for Searching in Unknown Streets" -, booktitle = "Proc. 16th Sympos. Theoret. Aspects Comput. Sci." -, nickname = "STACS '99" -, site = "Trier" -, series = "Lecture Notes Comput. Sci." -, volume = 1563 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "121--131" -, succeeds = "ss-oss-98" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Sven Schuierer and Ines Semrau" +, title = "An Optimal Strategy for Searching in Unknown Streets" +, booktitle = "Proc. 16th Sympos. Theoret. Aspects Comput. Sci." +, nickname = "STACS '99" +, site = "Trier" +, series = "Lecture Notes Comput. Sci." +, volume = 1563 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "121--131" +, succeeds = "ss-oss-98" +, update = "00.03 bibrelex, 99.07 bibrelex" } @techreport{ss-oss-98 -, author = "Sven Schuierer and Ines Semrau" -, title = "Eine optimale {Suchstrategie} f{\"u}r {Stra{\ss}en}" -, number = 97 -, institution = "Institut f{\"u}r Informatik, Universit{\"a}t Freiburg" -, address = "Germany" -, year = 1998 -, url = "http://www.informatik.uni-freiburg.de/tr/1998/Report97/" -, precedes = "ss-ossus-99" -, update = "00.03 bibrelex" +, author = "Sven Schuierer and Ines Semrau" +, title = "Eine optimale {Suchstrategie} f{\"u}r {Stra{\ss}en}" +, number = 97 +, institution = "Institut f{\"u}r Informatik, Universit{\"a}t Freiburg" +, address = "Germany" +, year = 1998 +, url = "http://www.informatik.uni-freiburg.de/tr/1998/Report97/" +, precedes = "ss-ossus-99" +, update = "00.03 bibrelex" } @inproceedings{sw-gkph-93 -, author = "S. Schuierer and D. Wood" -, title = "Generalized kernels of polygons with holes" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "222--227" -, cites = "be-nlcha-84, cg-opapp-88, cr-uaopc-89, gn-mcgop-90, gy-fchsp-83, k-mchco-86, l-fchsp-83, lp-oafkp-79, ma-lafch-79, mrs-copsp-88, mrs-pgocc-88, ow-rv-88, rw-cgro-88, r-erog-87, rw-ocig-88, rc-csopm-87, s-gv-91, srw-gsv-cccg-91, ce-oails-88, mow-vv-87, nllw-xchsx-83, rw-ocfoc-87, wy-ocsp-88, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "S. Schuierer and D. Wood" +, title = "Generalized kernels of polygons with holes" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "222--227" +, cites = "be-nlcha-84, cg-opapp-88, cr-uaopc-89, gn-mcgop-90, gy-fchsp-83, k-mchco-86, l-fchsp-83, lp-oafkp-79, ma-lafch-79, mrs-copsp-88, mrs-pgocc-88, ow-rv-88, rw-cgro-88, r-erog-87, rw-ocig-88, rc-csopm-87, s-gv-91, srw-gsv-cccg-91, ce-oails-88, mow-vv-87, nllw-xchsx-83, rw-ocfoc-87, wy-ocsp-88, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{sw-svck-95 -, author = "S. Schuierer and D. Wood" -, title = "Staircase visibility and computation of kernels" -, journal = "Algorithmica" -, volume = 14 -, year = 1995 -, pages = "1--26" -, update = "95.09 smid" +, author = "S. Schuierer and D. Wood" +, title = "Staircase visibility and computation of kernels" +, journal = "Algorithmica" +, volume = 14 +, year = 1995 +, pages = "1--26" +, update = "95.09 smid" } @article{s-eps-93 -, author = "L. J. Schulman" -, title = "An equipartition of planar sets" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "257--266" -, update = "94.05 matousek" +, author = "L. J. Schulman" +, title = "An equipartition of planar sets" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "257--266" +, update = "94.05 matousek" } @incollection{s-spp-97 -, author = "E. Schulte" -, title = "Symmetry of polytopes and polyhedra" -, chapter = 16 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "311--330" -, update = "97.11 orourke" +, author = "E. Schulte" +, title = "Symmetry of polytopes and polyhedra" +, chapter = 16 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "311--330" +, update = "97.11 orourke" } @incollection{s-t-93 -, author = "E. Schulte" -, title = "Tilings" -, editor = "P. M. Gruber and J. M. Wills" -, booktitle = "Handbook of convex geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1993 -, update = "98.03 bibrelex" +, author = "E. Schulte" +, title = "Tilings" +, editor = "P. M. Gruber and J. M. Wills" +, booktitle = "Handbook of convex geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1993 +, update = "98.03 bibrelex" } @article{sw-grdrm-86 -, author = "E. Schulte and J. M. Wills" -, title = "Geometric realizations for {Dyck}'s regular map on a surface of genus 3" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "141--153" +, author = "E. Schulte and J. M. Wills" +, title = "Geometric realizations for {Dyck}'s regular map on a surface of genus 3" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "141--153" } @techreport{sbgs-sacgi-69 -, author = "R. A. Schumacker and R. Brand and M. Gilliland and W. Sharp" -, title = "Study for Applying Computer-Generated Images to Visual Simulation" -, number = "AFHRL--TR--69--14" -, institution = "U.S. Air Force Human Resources Laboratory" -, year = 1969 -, update = "97.07 agarwal" +, author = "R. A. Schumacker and R. Brand and M. Gilliland and W. Sharp" +, title = "Study for Applying Computer-Generated Images to Visual Simulation" +, number = "AFHRL--TR--69--14" +, institution = "U.S. Air Force Human Resources Laboratory" +, year = 1969 +, update = "97.07 agarwal" } @book{s-sfbt-81 -, author = "L. Schumaker" -, title = "Spline functions, basic theory" -, publisher = "Wiley-Interscience" -, address = "New York, NY" -, year = 1981 -, update = "97.11 bibrelex" +, author = "L. Schumaker" +, title = "Spline functions, basic theory" +, publisher = "Wiley-Interscience" +, address = "New York, NY" +, year = 1981 +, update = "97.11 bibrelex" } @article{s-bdsmp-84 -, author = "L. L. Schumaker" -, title = "Bounds on the dimension of spaces of multivariate piecewise polynomials" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "251--264" +, author = "L. L. Schumaker" +, title = "Bounds on the dimension of spaces of multivariate piecewise polynomials" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "251--264" } @article{s-cotus-93 -, author = "L. L. Schumaker" -, title = "Computing Optimal Triangulations Using Simulated Annealing" -, journal = "Comput. Aided Geom. Design" -, volume = 10 -, number = "3--4" -, month = aug -, year = 1993 -, pages = "329--345" -, update = "95.05 held" +, author = "L. L. Schumaker" +, title = "Computing Optimal Triangulations Using Simulated Annealing" +, journal = "Comput. Aided Geom. Design" +, volume = 10 +, number = "3--4" +, month = aug +, year = 1993 +, pages = "329--345" +, update = "95.05 held" } @incollection{s-fssd-76 -, author = "L. L. Schumaker" -, title = "Fitting surfaces to scattered data" -, editor = "G. G. Lorentz and C. K. Chui and L. L. Schumaker" -, booktitle = "Approximation Theory II" -, publisher = "Academic Press" -, year = 1976 -, pages = "203--268" -, update = "97.11 bibrelex" +, author = "L. L. Schumaker" +, title = "Fitting surfaces to scattered data" +, editor = "G. G. Lorentz and C. K. Chui and L. L. Schumaker" +, booktitle = "Approximation Theory II" +, publisher = "Academic Press" +, year = 1976 +, pages = "203--268" +, update = "97.11 bibrelex" } @incollection{s-r3doc-89 -, author = "L. L. Schumaker" -, title = "Reconstructing $3$-d objects from cross-sections" -, editor = "W. Dahmen and M. Gasca and C. A. Micchelli" -, booktitle = "Computation of curves and surfaces" -, publisher = "Kluwer Academic Publishers" -, year = 1989 -, pages = "275--309" -, update = "98.03 bibrelex" +, author = "L. L. Schumaker" +, title = "Reconstructing $3$-d objects from cross-sections" +, editor = "W. Dahmen and M. Gasca and C. A. Micchelli" +, booktitle = "Computation of curves and surfaces" +, publisher = "Kluwer Academic Publishers" +, year = 1989 +, pages = "275--309" +, update = "98.03 bibrelex" } @incollection{s-tm-87 -, author = "L. L. Schumaker" -, title = "Triangulation methods" -, editor = "C. K. Chui and L. L. Schumaker and F. I. Utreras" -, booktitle = "Topics in Multivariate Approximation" -, publisher = "Academic Press" -, address = "New York" -, year = 1987 -, pages = "219--232" -, update = "98.11 bibrelex" +, author = "L. L. Schumaker" +, title = "Triangulation methods" +, editor = "C. K. Chui and L. L. Schumaker and F. I. Utreras" +, booktitle = "Topics in Multivariate Approximation" +, publisher = "Academic Press" +, address = "New York" +, year = 1987 +, pages = "219--232" +, update = "98.11 bibrelex" } @article{s-tc-93 -, author = "L. L. Schumaker" -, title = "Triangulations in CAGD" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, month = jan -, year = 1993 -, pages = "47--552" -, update = "97.11 bibrelex" +, author = "L. L. Schumaker" +, title = "Triangulations in CAGD" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, month = jan +, year = 1993 +, pages = "47--552" +, update = "97.11 bibrelex" } @article{s-usedkkk-21 -, author = "A. Schur" -, title = "{\"U}ber die {S}chwarzche {E}xtremaleigenschaft des {K}reises unter den {K}urven konstantes {K}r{\"u}mmung" -, journal = "Math. Ann." -, volume = 83 -, year = 1921 -, pages = "143--148" -, update = "00.11 smid, 00.07 orourke" +, author = "A. Schur" +, title = "{\"U}ber die {S}chwarzche {E}xtremaleigenschaft des {K}reises unter den {K}urven konstantes {K}r{\"u}mmung" +, journal = "Math. Ann." +, volume = 83 +, year = 1921 +, pages = "143--148" +, update = "00.11 smid, 00.07 orourke" } @phdthesis{s-uekvm-01 -, author = "I. Schur" -, title = "{\"U}ber eine {Klasse} von {Matrizen}, die sich einer gegebenen {Matrix} zuordnen lassen" -, school = "??" -, address = "Berlin" -, year = 1901 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "I. Schur" +, title = "{\"U}ber eine {Klasse} von {Matrizen}, die sich einer gegebenen {Matrix} zuordnen lassen" +, school = "??" +, address = "Berlin" +, year = 1901 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @book{s-tt-79 -, author = "A. W. Schurle" -, title = "Topics in topology" -, publisher = "North-Holland" -, address = "New York, NY" -, year = 1979 -, update = "98.07 bibrelex" +, author = "A. W. Schurle" +, title = "Topics in topology" +, publisher = "North-Holland" +, address = "New York, NY" +, year = 1979 +, update = "98.07 bibrelex" } @inproceedings{ss-astae-87 -, author = "A. Schwartz and C. Stanton" -, title = "Analyzing surfaces: the truth about elimination theory" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "348--353" -, cites = "b-iha-07, gsa-vetii-84, g-cvrtp-81, hm-im-77, hp-mag-52, hh-qbs-86, k-eag-77, m-ssr-79, mt-cmcag-84, s-limha-85, sg-agcag-86, s-bag-77, s-agtd-34, w-rfeb-, w-ma-53, w-ac-62, ZZZ" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "A. Schwartz and C. Stanton" +, title = "Analyzing surfaces: the truth about elimination theory" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "348--353" +, cites = "b-iha-07, gsa-vetii-84, g-cvrtp-81, hm-im-77, hp-mag-52, hh-qbs-86, k-eag-77, m-ssr-79, mt-cmcag-84, s-limha-85, sg-agcag-86, s-bag-77, s-agtd-34, w-rfeb-, w-ma-53, w-ac-62, ZZZ" +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{s-smpsp-77 -, author = "E. L. Schwartz" -, title = "Spatial Mapping in primate sensory projection; analytic structure and relevance in perception" -, journal = "Biological Cybernetics" -, volume = 25 -, year = 1977 -, pages = "181--194" -, update = "98.07 bibrelex" +, author = "E. L. Schwartz" +, title = "Spatial Mapping in primate sensory projection; analytic structure and relevance in perception" +, journal = "Biological Cybernetics" +, volume = 25 +, year = 1977 +, pages = "181--194" +, update = "98.07 bibrelex" } @article{s-dsvpm-77 -, author = "E. L. Schwartz" -, title = "The development of specific visual projections in the monkey and the goldfish: outline of a geometric theory of receptotopic structure" -, journal = "J. Theoret. Biol." -, volume = 69 -, year = 1977 -, pages = "655--685" -, update = "98.07 bibrelex" +, author = "E. L. Schwartz" +, title = "The development of specific visual projections in the monkey and the goldfish: outline of a geometric theory of receptotopic structure" +, journal = "J. Theoret. Biol." +, volume = 69 +, year = 1977 +, pages = "655--685" +, update = "98.07 bibrelex" } @article{sgb-svavd-95 -, author = "E. L. Schwartz and D. N. Grece and G. Bonmassar" -, title = "Space-variant active vision: {Definition}, overview and examples" -, journal = "Neural Networks" -, volume = 8 -, number = "7-8" -, year = 1995 -, pages = "1297--1308" -, update = "98.07 bibrelex" +, author = "E. L. Schwartz and D. N. Grece and G. Bonmassar" +, title = "Space-variant active vision: {Definition}, overview and examples" +, journal = "Neural Networks" +, volume = 8 +, number = "7-8" +, year = 1995 +, pages = "1297--1308" +, update = "98.07 bibrelex" } @techreport{ssw-nsgmm-87 -, author = "E. L. Schwartz and A. Shaw and E. Wolfson" -, title = "A Numerical Solution to the Generalized Map-Maker's Problem: {Flattening} Non-Convex Poleyderal Surfaces" -, type = "Technical Report" -, institution = "Dept. of Computer Science, Courant Institute of Mathematical Sciences" -, year = 1987 -, precedes = "ssw-nsgmm-89" -, update = "95.01 mitchell, 93.09 milone+mitchell" +, author = "E. L. Schwartz and A. Shaw and E. Wolfson" +, title = "A Numerical Solution to the Generalized Map-Maker's Problem: {Flattening} Non-Convex Poleyderal Surfaces" +, type = "Technical Report" +, institution = "Dept. of Computer Science, Courant Institute of Mathematical Sciences" +, year = 1987 +, precedes = "ssw-nsgmm-89" +, update = "95.01 mitchell, 93.09 milone+mitchell" } @article{ssw-nsgmm-89 -, author = "E. L. Schwartz and A. Shaw and E. Wolfson" -, title = "A Numerical Solution to the Generalized Map-Maker's Problem: {Flattening} Nonconvex Poleyderal Surfaces" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 11 -, number = 9 -, year = 1989 -, pages = "1005--1008" -, succeeds = "ssw-nsgmm-87" -, update = "95.01 mitchell, 95.01 mitchell" +, author = "E. L. Schwartz and A. Shaw and E. Wolfson" +, title = "A Numerical Solution to the Generalized Map-Maker's Problem: {Flattening} Nonconvex Poleyderal Surfaces" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 11 +, number = 9 +, year = 1989 +, pages = "1005--1008" +, succeeds = "ssw-nsgmm-87" +, update = "95.01 mitchell, 95.01 mitchell" } @techreport{sw-mmpco-85 -, author = "E. L. Schwartz and E. Wolfson" -, title = "On the map makers problem: computing an optimal quasi-isometry from an arbitrary polyhedron to the plane" -, type = "Report" -, number = "??" -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1985 +, author = "E. L. Schwartz and E. Wolfson" +, title = "On the map makers problem: computing an optimal quasi-isometry from an arbitrary polyhedron to the plane" +, type = "Report" +, number = "??" +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1985 } @article{s-fpavp-80 -, author = "J. Schwartz" -, title = "Fast Probabilistic Algorithms for Verification of Polynomial Identities" -, journal = "J. ACM" -, volume = 4 -, year = 1980 -, pages = "701--717" -, update = "97.11 bibrelex" +, author = "J. Schwartz" +, title = "Fast Probabilistic Algorithms for Verification of Polynomial Identities" +, journal = "J. ACM" +, volume = 4 +, year = 1980 +, pages = "701--717" +, update = "97.11 bibrelex" } @techreport{ss-pmp2g-82 -, author = "J. Schwartz and C. Yap" -, title = "On the ``piano movers'' problem {II}: general techniques for computing topological properties of real algebraic manifolds" -, number = 41 -, institution = "Dept. Comput. Sci., New York Univ." -, year = 1982 -, update = "98.03 bibrelex" +, author = "J. Schwartz and C. Yap" +, title = "On the ``piano movers'' problem {II}: general techniques for computing topological properties of real algebraic manifolds" +, number = 41 +, institution = "Dept. Comput. Sci., New York Univ." +, year = 1982 +, update = "98.03 bibrelex" } @misc{s-atdgi-85 -, author = "J. T. Schwartz" -, title = "Algebraic techniques for dealing with the geometry of intersecting surfaces in $n$ dimensions" -, year = 1985 -, note = "Invited talk at 1st Annu. ACM Sympos. Comput. Geom." +, author = "J. T. Schwartz" +, title = "Algebraic techniques for dealing with the geometry of intersecting surfaces in $n$ dimensions" +, year = 1985 +, note = "Invited talk at 1st Annu. ACM Sympos. Comput. Geom." } @article{s-fmdbt-81 -, author = "J. T. Schwartz" -, title = "Finding the minimum distance between two convex polygons" -, journal = "Inform. Process. Lett." -, volume = 13 -, year = 1981 -, pages = "168--170" +, author = "J. T. Schwartz" +, title = "Finding the minimum distance between two convex polygons" +, journal = "Inform. Process. Lett." +, volume = 13 +, year = 1981 +, pages = "168--170" } @book{s-nfa-69 -, author = "J. T. Schwartz" -, title = "Nonlinear Functional Analysis" -, publisher = "Gordon and Breach Science Publishers" -, address = "New York" -, year = 1969 -, update = "98.11 bibrelex" +, author = "J. T. Schwartz" +, title = "Nonlinear Functional Analysis" +, publisher = "Gordon and Breach Science Publishers" +, address = "New York" +, year = 1969 +, update = "98.11 bibrelex" } @article{ss-smprg-88 -, author = "J. T. Schwartz and Micha Sharir" -, title = "A survey of motion planning and related geometric algorithms" -, journal = "Artif. Intell." -, volume = 37 -, year = 1988 -, pages = "157--169" -, keywords = "motion planning, robotics, survey paper" -, succeeds = "ss-mprga-86" -, precedes = "ss-smprg-89" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "A survey of motion planning and related geometric algorithms" +, journal = "Artif. Intell." +, volume = 37 +, year = 1988 +, pages = "157--169" +, keywords = "motion planning, robotics, survey paper" +, succeeds = "ss-mprga-86" +, precedes = "ss-smprg-89" +, update = "98.03 mitchell" } @incollection{ss-smprg-89 -, author = "J. T. Schwartz and Micha Sharir" -, title = "A survey of motion planning and related geometric algorithms" -, editor = "D. Kapur and J. Mundy" -, booktitle = "Geometric Reasoning" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1989 -, pages = "157--169" -, keywords = "motion planning, robotics, survey paper" -, succeeds = "ss-smprg-88" -, update = "98.03 mitchell, 94.05 devillers+sharir" +, author = "J. T. Schwartz and Micha Sharir" +, title = "A survey of motion planning and related geometric algorithms" +, editor = "D. Kapur and J. Mundy" +, booktitle = "Geometric Reasoning" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1989 +, pages = "157--169" +, keywords = "motion planning, robotics, survey paper" +, succeeds = "ss-smprg-88" +, update = "98.03 mitchell, 94.05 devillers+sharir" } @incollection{ss-ampr-90 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Algorithmic motion planning in robotics" -, editor = "J. van Leeuwen" -, booktitle = "Algorithms and Complexity" -, series = "Handbook of Theoretical Computer Science" -, volume = "A" -, publisher = "Elsevier" -, address = "Amsterdam" -, year = 1990 -, pages = "391--430" -, keywords = "motion planning, robotics, survey paper" -, succeeds = "s-ampr-89" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Algorithmic motion planning in robotics" +, editor = "J. van Leeuwen" +, booktitle = "Algorithms and Complexity" +, series = "Handbook of Theoretical Computer Science" +, volume = "A" +, publisher = "Elsevier" +, address = "Amsterdam" +, year = 1990 +, pages = "391--430" +, keywords = "motion planning, robotics, survey paper" +, succeeds = "s-ampr-89" +, update = "98.03 mitchell" } @techreport{ss-empae-85 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Efficient motion planning algorithms in environments of bounded local complexity" -, type = "Report" -, number = 164 -, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1985 -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Efficient motion planning algorithms in environments of bounded local complexity" +, type = "Report" +, number = 164 +, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1985 +, update = "98.03 mitchell" } @inproceedings{ss-feftt-87 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Finding effective ``force targets'' for two-dimensional multifinger frictional grips" -, booktitle = "Proc. 25th Allerton Conf. Commun. Control Comput." -, year = 1987 -, pages = "843--848" -, update = "98.03 mitchell, 94.05 sharir" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Finding effective ``force targets'' for two-dimensional multifinger frictional grips" +, booktitle = "Proc. 25th Allerton Conf. Commun. Control Comput." +, year = 1987 +, pages = "843--848" +, update = "98.03 mitchell, 94.05 sharir" } @article{ss-feftt-92 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Finding effective ``force targets'' for two-dimensional multifinger frictional grips" -, journal = "Algorithmica" -, volume = 8 -, year = 1992 -, pages = "1--20" -, succeeds = "ss-feftt-87" -, update = "98.03 mitchell, 94.05 sharir" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Finding effective ``force targets'' for two-dimensional multifinger frictional grips" +, journal = "Algorithmica" +, volume = 8 +, year = 1992 +, pages = "1--20" +, succeeds = "ss-feftt-87" +, update = "98.03 mitchell, 94.05 sharir" } @article{ss-ipoot-87 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Identification of partially obscured objects in two dimensions by matching of noisy ``characteristic curves''" -, journal = "Internat. J. Robot. Res." -, volume = 6 -, number = 2 -, year = 1987 -, pages = "29--44" -, keywords = "computer vision, curves, matchings, two-dimensional" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Identification of partially obscured objects in two dimensions by matching of noisy ``characteristic curves''" +, journal = "Internat. J. Robot. Res." +, volume = 6 +, number = 2 +, year = 1987 +, pages = "29--44" +, keywords = "computer vision, curves, matchings, two-dimensional" +, update = "98.03 mitchell" } @article{ss-mptr-83 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Mathematical problems and training in robotics" -, journal = "Notices Amer. Math. Soc." -, volume = 30 -, year = 1983 -, pages = "478--481" -, keywords = "survey paper, robotics" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Mathematical problems and training in robotics" +, journal = "Notices Amer. Math. Soc." +, volume = 30 +, year = 1983 +, pages = "478--481" +, keywords = "survey paper, robotics" +, update = "98.03 mitchell" } @inproceedings{ss-mprga-86 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Motion planning and related geometric algorithms in robotics" -, booktitle = "Proc. Internat. Congress Math." -, site = "Berkeley, CA" -, volume = 2 -, year = 1986 -, pages = "1594--1611" -, keywords = "motion planning, robotics, survey paper" -, precedes = "ss-smprg-88" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Motion planning and related geometric algorithms in robotics" +, booktitle = "Proc. Internat. Congress Math." +, site = "Berkeley, CA" +, volume = 2 +, year = 1986 +, pages = "1594--1611" +, keywords = "motion planning, robotics, survey paper" +, precedes = "ss-smprg-88" +, update = "98.03 mitchell" } @inproceedings{ss-bfmpi-87 -, author = "J. T. Schwartz and Micha Sharir" -, title = "On the bivariate function minimization problem and its applications to motion planning" -, booktitle = "Proc. 14th Int. Colloq. Aut. Lang. Prog." -, year = 1987 -, pages = "357--363" -, update = "98.03 mitchell, 94.05 sharir" +, author = "J. T. Schwartz and Micha Sharir" +, title = "On the bivariate function minimization problem and its applications to motion planning" +, booktitle = "Proc. 14th Int. Colloq. Aut. Lang. Prog." +, year = 1987 +, pages = "357--363" +, update = "98.03 mitchell, 94.05 sharir" } @article{ss-pmp1c-83 -, author = "J. T. Schwartz and Micha Sharir" -, title = "On the ``piano movers'' problem {I}: {T}he case of a two-dimensional rigid polygonal body moving amidst polygonal barriers" -, journal = "Commun. Pure Appl. Math." -, volume = 36 -, year = 1983 -, pages = "345--398" -, keywords = "motion planning" -, update = "98.07 agarwal, 98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "On the ``piano movers'' problem {I}: {T}he case of a two-dimensional rigid polygonal body moving amidst polygonal barriers" +, journal = "Commun. Pure Appl. Math." +, volume = 36 +, year = 1983 +, pages = "345--398" +, keywords = "motion planning" +, update = "98.07 agarwal, 98.03 mitchell" } @article{ss-pmp2g-83 -, author = "J. T. Schwartz and Micha Sharir" -, title = "On the ``piano movers'' problem {II}: {G}eneral techniques for computing topological properties of real algebraic manifolds" -, journal = "Adv. Appl. Math." -, volume = 4 -, year = 1983 -, pages = "298--351" -, keywords = "motion planning, algebraic geometry" -, update = "98.07 agarwal, 98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "On the ``piano movers'' problem {II}: {G}eneral techniques for computing topological properties of real algebraic manifolds" +, journal = "Adv. Appl. Math." +, volume = 4 +, year = 1983 +, pages = "298--351" +, keywords = "motion planning, algebraic geometry" +, update = "98.07 agarwal, 98.03 mitchell" } @techreport{ss-pmp3c-82 -, author = "J. T. Schwartz and M. Sharir" -, title = "On the ``piano movers'' problem {III}: coordinating the motion of several independent bodies: the special case of circular bodies amidst polygonal barriers" -, type = "Technical {Report}" -, number = 52 -, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1982 -, update = "98.03 bibrelex" +, author = "J. T. Schwartz and M. Sharir" +, title = "On the ``piano movers'' problem {III}: coordinating the motion of several independent bodies: the special case of circular bodies amidst polygonal barriers" +, type = "Technical {Report}" +, number = 52 +, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1982 +, update = "98.03 bibrelex" } @article{ss-pmp3c-83 -, author = "J. T. Schwartz and Micha Sharir" -, title = "On the ``piano movers'' problem {III}: coordinating the motion of several independent bodies: the special case of circular bodies moving amidst polygonal barriers" -, journal = "Internat. J. Robot. Res." -, volume = 2 -, number = 3 -, year = 1983 -, pages = "46--75" -, keywords = "motion planning" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "On the ``piano movers'' problem {III}: coordinating the motion of several independent bodies: the special case of circular bodies moving amidst polygonal barriers" +, journal = "Internat. J. Robot. Res." +, volume = 2 +, number = 3 +, year = 1983 +, pages = "46--75" +, keywords = "motion planning" +, update = "98.03 mitchell" } @article{ss-pmp5c-84 -, author = "J. T. Schwartz and Micha Sharir" -, title = "On the ``piano movers'' problem {V}: the case of a rod moving in three-dimensional space amidst polyhedral obstacles" -, journal = "Commun. Pure Appl. Math." -, volume = 37 -, year = 1984 -, pages = "815--848" -, keywords = "motion planning, three-dimensional" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "On the ``piano movers'' problem {V}: the case of a rod moving in three-dimensional space amidst polyhedral obstacles" +, journal = "Commun. Pure Appl. Math." +, volume = 37 +, year = 1984 +, pages = "815--848" +, keywords = "motion planning, three-dimensional" +, update = "98.03 mitchell" } @article{ss-tddsp-90 -, author = "J. T. Schwartz and Micha Sharir" -, title = "On the two-dimensional {Davenport}-{Schinzel} problem" -, journal = "J. Symbolic Comput." -, volume = 10 -, year = 1990 -, pages = "371--393" -, keywords = "Davenport-Schinzel sequences, upper/lower envelope" -, succeeds = "s-tddsp-85" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "On the two-dimensional {Davenport}-{Schinzel} problem" +, journal = "J. Symbolic Comput." +, volume = 10 +, year = 1990 +, pages = "371--393" +, keywords = "Davenport-Schinzel sequences, upper/lower envelope" +, succeeds = "s-tddsp-85" +, update = "98.03 mitchell" } @techreport{ss-srrv-84 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Some remarks on robot vision" -, type = "Report" -, number = "TR119" -, institution = "Comput. Sci. Div., New York Univ." -, address = "New York, NY" -, year = 1984 -, keywords = "computer vision" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Some remarks on robot vision" +, type = "Report" +, number = "TR119" +, institution = "Comput. Sci. Div., New York Univ." +, address = "New York, NY" +, year = 1984 +, keywords = "computer vision" +, update = "98.03 mitchell" } @inproceedings{ss-srrv-85 -, author = "J. T. Schwartz and Micha Sharir" -, title = "Some remarks on robot vision" -, booktitle = "Trans. 3rd Army Conf. Applied Math. and Computing" -, site = "Atlanta, GA" -, year = 1985 -, pages = "1--36" -, keywords = "computer vision" -, succeeds = "ss-srrv-84" -, update = "98.03 mitchell, 94.05 sharir" +, author = "J. T. Schwartz and Micha Sharir" +, title = "Some remarks on robot vision" +, booktitle = "Trans. 3rd Army Conf. Applied Math. and Computing" +, site = "Atlanta, GA" +, year = 1985 +, pages = "1--36" +, keywords = "computer vision" +, succeeds = "ss-srrv-84" +, update = "98.03 mitchell, 94.05 sharir" } @techreport{sss-eafcc-85 -, author = "J. T. Schwartz and Micha Sharir and A. Siegel" -, title = "An efficient algorithm for finding connected components in a binary image" -, type = "Report" -, number = "TR 154" -, institution = "Comput. Sci. Div., New York Univ." -, address = "New York, NY" -, year = 1985 -, keywords = "image processing" -, update = "98.03 mitchell" +, author = "J. T. Schwartz and Micha Sharir and A. Siegel" +, title = "An efficient algorithm for finding connected components in a binary image" +, type = "Report" +, number = "TR 154" +, institution = "Comput. Sci. Div., New York Univ." +, address = "New York, NY" +, year = 1985 +, keywords = "image processing" +, update = "98.03 mitchell" } @book{sy-agar-87 -, title = "Algorithmic and Geometric Aspects of Robotics" -, editor = "Jacob T. Schwartz and Chee-Keng Yap" -, series = "Advances in Robotics" -, volume = 1 -, publisher = "Lawrence Erlbaum Associates" -, address = "Hillsdale, New Jersey" -, year = 1987 -, update = "97.03 icking" +, title = "Algorithmic and Geometric Aspects of Robotics" +, editor = "Jacob T. Schwartz and Chee-Keng Yap" +, series = "Advances in Robotics" +, volume = 1 +, publisher = "Lawrence Erlbaum Associates" +, address = "Hillsdale, New Jersey" +, year = 1987 +, update = "97.03 icking" } @phdthesis{s-dsadc-93 -, author = "C. Schwarz" -, title = "Data structures and algorithms for the dynamic closest pair problem" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, keywords = "doctoral thesis" -, update = "94.01 smid" +, author = "C. Schwarz" +, title = "Data structures and algorithms for the dynamic closest pair problem" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, keywords = "doctoral thesis" +, update = "94.01 smid" } @techreport{s-sdmwp-92 -, author = "C. Schwarz" -, title = "Semi-dynamic maintenance of the width of a planar point set" -, type = "Report" -, number = "MPI-I-92-153" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, month = dec -, year = 1992 -, precedes = "rss-mawsp-93,s-sdmwp-93" -, update = "98.11 bibrelex, 97.11 icking, 93.09 rote" +, author = "C. Schwarz" +, title = "Semi-dynamic maintenance of the width of a planar point set" +, type = "Report" +, number = "MPI-I-92-153" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, month = dec +, year = 1992 +, precedes = "rss-mawsp-93,s-sdmwp-93" +, update = "98.11 bibrelex, 97.11 icking, 93.09 rote" } @inproceedings{s-sdmwp-93 -, author = "Christian Schwarz" -, title = "Semi-dynamic Maintenance of the Width of a Planar Point Set" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "6--9" -, succeeds = "s-sdmwp-92" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" +, author = "Christian Schwarz" +, title = "Semi-dynamic Maintenance of the Width of a Planar Point Set" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "6--9" +, succeeds = "s-sdmwp-92" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" } @techreport{ss-oaolc-91 -, author = "C. Schwarz and M. Smid" -, title = "An {$O(n \log n \log\log n)$} algorithm for the on-line closest pair problem" -, type = "Report" -, number = "MPI-I-91-107" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1991 -, precedes = "ss-oaolc-92" +, author = "C. Schwarz and M. Smid" +, title = "An {$O(n \log n \log\log n)$} algorithm for the on-line closest pair problem" +, type = "Report" +, number = "MPI-I-91-107" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1991 +, precedes = "ss-oaolc-92" } @inproceedings{ss-oaolc-92 -, author = "C. Schwarz and M. Smid" -, title = "An {$O(n \log n \log\log n)$} algorithm for the on-line closest pair problem" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "280--285" -, succeeds = "ss-oaolc-91" +, author = "C. Schwarz and M. Smid" +, title = "An {$O(n \log n \log\log n)$} algorithm for the on-line closest pair problem" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "280--285" +, succeeds = "ss-oaolc-91" } @techreport{sss-oaolc-91 -, author = "C. Schwarz and M. Smid and J. Snoeyink" -, title = "An optimal algorithm for the on-line closest pair problem" -, type = "Report" -, number = "MPI-I-91-123" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1991 -, precedes = "sss-oaolc-92" -, update = "98.07 bibrelex" +, author = "C. Schwarz and M. Smid and J. Snoeyink" +, title = "An optimal algorithm for the on-line closest pair problem" +, type = "Report" +, number = "MPI-I-91-123" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1991 +, precedes = "sss-oaolc-92" +, update = "98.07 bibrelex" } @inproceedings{sss-oaolc-92 -, author = "C. Schwarz and M. Smid and J. Snoeyink" -, title = "An optimal algorithm for the on-line closest-pair problem" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "330--336" -, succeeds = "sss-oaolc-91" -, cites = "bs-dcms-76, c-tpca-82, dd-ekdnp-91, ghlst-ltavs-87, o-ddds-83, ps-cgi-85, s-sisie-91, ss-oaolc-92, sh-cpp-75, s-mmdpsl-91a, s-drpla-91, s-mmdpsp-91t, s-ntsdc-90, v-oaann-89, ZZZ" -, update = "97.11 bibrelex" +, author = "C. Schwarz and M. Smid and J. Snoeyink" +, title = "An optimal algorithm for the on-line closest-pair problem" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "330--336" +, succeeds = "sss-oaolc-91" +, cites = "bs-dcms-76, c-tpca-82, dd-ekdnp-91, ghlst-ltavs-87, o-ddds-83, ps-cgi-85, s-sisie-91, ss-oaolc-92, sh-cpp-75, s-mmdpsl-91a, s-drpla-91, s-mmdpsp-91t, s-ntsdc-90, v-oaann-89, ZZZ" +, update = "97.11 bibrelex" } @article{sss-oaolc-94 -, author = "C. Schwarz and M. Smid and J. Snoeyink" -, title = "An optimal algorithm for the on-line closest-pair problem" -, journal = "Algorithmica" -, volume = 12 -, year = 1994 -, pages = "18--29" -, update = "94.09 smid" +, author = "C. Schwarz and M. Smid and J. Snoeyink" +, title = "An optimal algorithm for the on-line closest-pair problem" +, journal = "Algorithmica" +, volume = 12 +, year = 1994 +, pages = "18--29" +, update = "94.09 smid" } @inproceedings{stvwe-mepa-95 -, author = "Christian Schwarz and J{\"u}rgen Teich and Alek Vainshtein and Emo Welzl and Brian L. Evans" -, title = "Minimal Enclosing Parallelogram with Application" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C34--C35" -, keywords = "" -, cites = "acy-macp-85, da-frkec-84, ets-adtdr-94, fs-dmaer-75, oamb-oafme-86, stwe-fmep-94, v-fmep-90, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Christian Schwarz and J{\"u}rgen Teich and Alek Vainshtein and Emo Welzl and Brian L. Evans" +, title = "Minimal Enclosing Parallelogram with Application" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C34--C35" +, keywords = "" +, cites = "acy-macp-85, da-frkec-84, ets-adtdr-94, fs-dmaer-75, oamb-oafme-86, stwe-fmep-94, v-fmep-90, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @techreport{stwe-fmep-94 -, author = "C. Schwarz and J. Teich and Emo Welzl and B. Evans" -, title = "On finding a minimal enclosing parallelogram" -, type = "Report" -, number = "TR-94-036" -, institution = "International Computer Science Institute" -, address = "Berkeley" -, year = 1994 -, update = "98.03 mitchell, 94.09 smid" +, author = "C. Schwarz and J. Teich and Emo Welzl and B. Evans" +, title = "On finding a minimal enclosing parallelogram" +, type = "Report" +, number = "TR-94-036" +, institution = "International Computer Science Institute" +, address = "Berkeley" +, year = 1994 +, update = "98.03 mitchell, 94.09 smid" } @book{s-naci-89 -, author = "H. R. Schwarz" -, title = "Numerical Analysis: A Comprehensive Introduction" -, publisher = "B. G. Teubner" -, address = "Stuttgart" -, year = 1989 -, update = "00.03 bibrelex" +, author = "H. R. Schwarz" +, title = "Numerical Analysis: A Comprehensive Introduction" +, publisher = "B. G. Teubner" +, address = "Stuttgart" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{s-ccmls-93 -, author = "Otfried Schwarzkopf" -, title = "Computing Convolutions On Mesh-Like Structures" -, booktitle = "??" -, publisher = "IEEE Computer Society" -, year = 1993 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Otfried Schwarzkopf" +, title = "Computing Convolutions On Mesh-Like Structures" +, booktitle = "??" +, publisher = "IEEE Computer Society" +, year = 1993 +, pages = "??" +, update = "93.09 milone+mitchell" } @phdthesis{s-dmcpr-92 -, author = "O. Schwarzkopf" -, title = "Dynamic Maintenance of Convex Polytopes and Related Structures" -, type = "Ph.{D}. Thesis" -, school = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, month = jun -, year = 1992 -, keywords = "doctoral thesis" -, succeeds = "s-dmgsm-91, s-rscp-92" +, author = "O. Schwarzkopf" +, title = "Dynamic Maintenance of Convex Polytopes and Related Structures" +, type = "Ph.{D}. Thesis" +, school = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, month = jun +, year = 1992 +, keywords = "doctoral thesis" +, succeeds = "s-dmgsm-91, s-rscp-92" } @inproceedings{s-dmgsm-91 -, author = "O. Schwarzkopf" -, title = "Dynamic maintenance of geometric structures made easy" -, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1991 -, pages = "197--206" -, precedes = "s-dmcpr-92" -, update = "93.05 schwarzkopf" +, author = "O. Schwarzkopf" +, title = "Dynamic maintenance of geometric structures made easy" +, booktitle = "Proc. 32nd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1991 +, pages = "197--206" +, precedes = "s-dmcpr-92" +, update = "93.05 schwarzkopf" } @techreport{s-pop-91 -, author = "O. Schwarzkopf" -, title = "On the post office problem" -, type = "Manuscript" -, institution = "??" -, year = 1991 -, update = "97.11 bibrelex" +, author = "O. Schwarzkopf" +, title = "On the post office problem" +, type = "Manuscript" +, institution = "??" +, year = 1991 +, update = "97.11 bibrelex" } @inproceedings{s-pcdvd-89 -, author = "O. Schwarzkopf" -, title = "Parallel computation of discrete {Voronoi} diagrams" -, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 349 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "193--204" -, precedes = "s-pcdt-91" +, author = "O. Schwarzkopf" +, title = "Parallel computation of discrete {Voronoi} diagrams" +, booktitle = "Proc. 6th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 349 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "193--204" +, precedes = "s-pcdt-91" } @article{s-pcdt-91 -, author = "O. Schwarzkopf" -, title = "Parallel computation of distance transforms" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "685--697" +, author = "O. Schwarzkopf" +, title = "Parallel computation of distance transforms" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "685--697" } @techreport{s-riads-91 -, author = "O. Schwarzkopf" -, title = "Randomized Incremental Algorithms in a Dynamic Setting" -, type = "Technical {Report}" -, institution = "Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, year = 1991 -, note = "To appear" -, update = "97.11 bibrelex" +, author = "O. Schwarzkopf" +, title = "Randomized Incremental Algorithms in a Dynamic Setting" +, type = "Technical {Report}" +, institution = "Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, year = 1991 +, note = "To appear" +, update = "97.11 bibrelex" } @inproceedings{s-rscp-92 -, author = "O. Schwarzkopf" -, title = "Ray shooting in convex polytopes" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "286--295" -, precedes = "s-dmcpr-92" -, cites = "aesw-emstb-90, am-dhsrr-91, am-rsps-92, bc-hhihr-92, bdsty-arsol-92, bdt-riach-, cegs-sessr-89, cf-plhur-94, c-hsh-85, c-narsc-87, c-racpq-88, cms-frric-92i, cs-arscg-89, dmt-fddtl-92, e-acg-87, gks-ricdv-92, m-ept-91, m-rph-91, m-fppa1-88, m-rmstd-91, m-rmstf-91, m-rmstl-91, s-dmgsm-91, s-sdlpc-91, s-sfira-91, ZZZ" -, update = "97.11 bibrelex, 93.05 schwarzkopf" +, author = "O. Schwarzkopf" +, title = "Ray shooting in convex polytopes" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "286--295" +, precedes = "s-dmcpr-92" +, cites = "aesw-emstb-90, am-dhsrr-91, am-rsps-92, bc-hhihr-92, bdsty-arsol-92, bdt-riach-, cegs-sessr-89, cf-plhur-94, c-hsh-85, c-narsc-87, c-racpq-88, cms-frric-92i, cs-arscg-89, dmt-fddtl-92, e-acg-87, gks-ricdv-92, m-ept-91, m-rph-91, m-fppa1-88, m-rmstd-91, m-rmstf-91, m-rmstl-91, s-dmgsm-91, s-sdlpc-91, s-sfira-91, ZZZ" +, update = "97.11 bibrelex, 93.05 schwarzkopf" } @inproceedings{s-edei-95 -, author = "Otfried Schwarzkopf" -, title = "The Extendible Drawing Editor {Ipe}" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C10--C11" -, keywords = "Latex, figure drawing, xfig, idraw" -, cites = "ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Otfried Schwarzkopf" +, title = "The Extendible Drawing Editor {Ipe}" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C10--C11" +, keywords = "Latex, figure drawing, xfig, idraw" +, cites = "ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @inproceedings{sfrw-acfpr-90 -, author = "O. Schwarzkopf and U. Fuchs and G{\"u}nter Rote and Emo Welzl" -, title = "Approximation of convex figures by pairs of rectangles" -, booktitle = "Proc. 7th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 415 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "240--249" -, precedes = "sfrw-acfpr-98" -, update = "98.07 bibrelex+rote, 98.03 mitchell, 97.11 bibrelex, 97.03 rote, 93.09 rote, 93.05 schwarzkopf" +, author = "O. Schwarzkopf and U. Fuchs and G{\"u}nter Rote and Emo Welzl" +, title = "Approximation of convex figures by pairs of rectangles" +, booktitle = "Proc. 7th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 415 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "240--249" +, precedes = "sfrw-acfpr-98" +, update = "98.07 bibrelex+rote, 98.03 mitchell, 97.11 bibrelex, 97.03 rote, 93.09 rote, 93.05 schwarzkopf" } @article{sfrw-acfpr-98 -, author = "O. Schwarzkopf and U. Fuchs and G{\"u}nter Rote and Emo Welzl" -, title = "Approximation of convex figures by pairs of rectangles" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "77--87" -, succeeds = "sfrw-acfpr-90" -, cites = "ks-tpscf-95" -, update = "98.07 bibrelex+rote, 98.03 mitchell, 97.03 rote" -, abstract = "We consider the problem of approximating a convex figure - in the plane by a pair $(r,R)$ of homothetic (i. e., similar and - parallel) rectangles with $r$ contained in $C$ and $R$ - containing $C$. We show the existence of such pairs where the - sides of the outer rectangle have length at most double the - length of the inner rectangle, thereby solving a problem posed - by P\'{o}lya and Szeg\H{o}. - If the $n$ vertices of a convex polygon $C$ are given as a - sorted array, such an approximating pair of rectangles can be - computed in time $O(log^2 n)$." +, author = "O. Schwarzkopf and U. Fuchs and G{\"u}nter Rote and Emo Welzl" +, title = "Approximation of convex figures by pairs of rectangles" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "77--87" +, succeeds = "sfrw-acfpr-90" +, cites = "ks-tpscf-95" +, update = "98.07 bibrelex+rote, 98.03 mitchell, 97.03 rote" +, abstract = "We consider the problem of approximating a convex figure + in the plane by a pair $(r,R)$ of homothetic (i. e., similar and + parallel) rectangles with $r$ contained in $C$ and $R$ + containing $C$. We show the existence of such pairs where the + sides of the outer rectangle have length at most double the + length of the inner rectangle, thereby solving a problem posed + by P\'{o}lya and Szeg\H{o}. + If the $n$ vertices of a convex polygon $C$ are given as a + sorted array, such an approximating pair of rectangles can be + computed in time $O(log^2 n)$." } @inproceedings{ss-vdsct-96 -, author = "Otfried Schwarzkopf and Micha Sharir" -, title = "Vertical Decomposition of a Single Cell in a Three-Dimensional Arrangement of Surfaces and its Applications" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "20--29" -, cites = "ass-oleia-96, ass-sulbl-89, as-tsbac-90, as-car-94, as-tmp3s-94, bds-lric-95, cegs-sessr-89, cegsw-ccbac-90, cs-arscg-89, hs-nblet-94, hs-atubs-95, hs-nqbmp-93, hs-atarr-95, hs-ndssg-86, s-ksacs-91, s-atubl-94, sa-dsstg-95, t-ntasa-95, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Otfried Schwarzkopf and Micha Sharir" +, title = "Vertical Decomposition of a Single Cell in a Three-Dimensional Arrangement of Surfaces and its Applications" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "20--29" +, cites = "ass-oleia-96, ass-sulbl-89, as-tsbac-90, as-car-94, as-tmp3s-94, bds-lric-95, cegs-sessr-89, cegsw-ccbac-90, cs-arscg-89, hs-nblet-94, hs-atubs-95, hs-nqbmp-93, hs-atarr-95, hs-ndssg-86, s-ksacs-91, s-atubl-94, sa-dsstg-95, t-ntasa-95, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{ss-vdsct-97 -, author = "Otfried Schwarzkopf and Micha Sharir" -, title = "Vertical Decomposition of a Single Cell in a Three-Dimensional Arrangement of Surfaces and its Applications" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "269--288" -, update = "98.03 agarwal" +, author = "Otfried Schwarzkopf and Micha Sharir" +, title = "Vertical Decomposition of a Single Cell in a Three-Dimensional Arrangement of Surfaces and its Applications" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "269--288" +, update = "98.03 agarwal" } @inproceedings{sv-rslde-96c -, author = "Otfried Schwarzkopf and Jules Vleugels" -, title = "Range Searching in Low-Density Environments" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = 3 -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Otfried Schwarzkopf and Jules Vleugels" +, title = "Range Searching in Low-Density Environments" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = 3 +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{sv-rslde-96 -, author = "Otfried Schwarzkopf and Jules Vleugels" -, title = "Range Searching in Low-Density Environments" -, journal = "Inform. Process. Lett." -, volume = 60 -, year = 1996 -, pages = "121--127" -, update = "99.03 bibrelex, 96.09 agarwal, 98.07 bibrelex" +, author = "Otfried Schwarzkopf and Jules Vleugels" +, title = "Range Searching in Low-Density Environments" +, journal = "Inform. Process. Lett." +, volume = 60 +, year = 1996 +, pages = "121--127" +, update = "99.03 bibrelex, 96.09 agarwal, 98.07 bibrelex" } @mastersthesis{s-ddbpi-96 -, author = "J. Schwerdt" -, title = "Das {Diameterproblem} einer bewegten {Punktemenge}: eine {Implementierung} mit {Hilfe} von parametric search" -, type = "Master's Thesis" -, school = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1996 -, keywords = "masters thesis" -, update = "97.03 smid" +, author = "J. Schwerdt" +, title = "Das {Diameterproblem} einer bewegten {Punktemenge}: eine {Implementierung} mit {Hilfe} von parametric search" +, type = "Master's Thesis" +, school = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1996 +, keywords = "masters thesis" +, update = "97.03 smid" } @phdthesis{s-eogpb-01 -, author = "J. Schwerdt" -, title = "Entwurf von {Optimierungsalgorithmen} f{\"u}r geometrische {Probleme} im {Bereich} {Rapid} {Prototyping} und {Manufacturing}" -, type = "Ph.{D}. Thesis" -, school = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 2001 -, keywords = "doctoral thesis" -, update = "01.11 smid" +, author = "J. Schwerdt" +, title = "Entwurf von {Optimierungsalgorithmen} f{\"u}r geometrische {Probleme} im {Bereich} {Rapid} {Prototyping} und {Manufacturing}" +, type = "Ph.{D}. Thesis" +, school = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 2001 +, keywords = "doctoral thesis" +, update = "01.11 smid" } @techreport{ss-cwtdp-99 -, author = "J. Schwerdt and M. Smid" -, title = "Computing the width of a three-dimensional point set: documentation" -, type = "Report" -, number = 4 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1999 -, update = "99.07 smid" +, author = "J. Schwerdt and M. Smid" +, title = "Computing the width of a three-dimensional point set: documentation" +, type = "Report" +, number = 4 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1999 +, update = "99.07 smid" } @techreport{sshj-cohdl-01 -, author = "J. Schwerdt and M. Smid and M. C. Hong and R. Janardan" -, title = "Computing an optimal hatching direction in layered manufacturing" -, type = "Report" -, number = 3 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 2001 -, update = "01.04 smid" +, author = "J. Schwerdt and M. Smid and M. C. Hong and R. Janardan" +, title = "Computing an optimal hatching direction in layered manufacturing" +, type = "Report" +, number = 3 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 2001 +, update = "01.04 smid" } @techreport{ssjj-pcflm-00t -, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson" -, title = "Protecting critical facets in layered manufacturing: implementation and experimental results" -, type = "Report" -, number = 6 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 2000 -, update = "00.11 smid, 00.07 smid" +, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson" +, title = "Protecting critical facets in layered manufacturing: implementation and experimental results" +, type = "Report" +, number = 6 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 2000 +, update = "00.11 smid, 00.07 smid" } @inproceedings{ssjj-pcflm-00i -, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson" -, title = "Protecting critical facets in layered manufacturing: implementation and experimental results" -, booktitle = "Proc. 2nd Workshop on Algorithm Engineering and Experiments" -, year = 2000 -, pages = "43--57" -, update = "00.11 smid, 00.07 smid, 00.03 smid" +, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson" +, title = "Protecting critical facets in layered manufacturing: implementation and experimental results" +, booktitle = "Proc. 2nd Workshop on Algorithm Engineering and Experiments" +, year = 2000 +, pages = "43--57" +, update = "00.11 smid, 00.07 smid, 00.03 smid" } @article{ssjjm-pcflm-00 -, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson and J. Majhi" -, title = "Protecting critical facets in layered manufacturing" -, journal = "Comput. Geom. Theory Appl." -, volume = 16 -, year = 2000 -, pages = "187--210" -, update = "00.11 smid, 00.07 smid" +, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson and J. Majhi" +, title = "Protecting critical facets in layered manufacturing" +, journal = "Comput. Geom. Theory Appl." +, volume = 16 +, year = 2000 +, pages = "187--210" +, update = "00.11 smid, 00.07 smid" } @techreport{ssjjm-pflm-99t -, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson and J. Majhi" -, title = "Protecting facets in layered manufacturing" -, type = "Report" -, number = 10 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1999 -, update = "00.03 smid, 99.07 smid" +, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson and J. Majhi" +, title = "Protecting facets in layered manufacturing" +, type = "Report" +, number = 10 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1999 +, update = "00.03 smid, 99.07 smid" } @inproceedings{ssjjm-pflm-99i -, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson and J. Majhi" -, title = "Protecting facets in layered manufacturing" -, booktitle = "Proc. 19th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1738 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "281--292" -, update = "00.03 smid" +, author = "J. Schwerdt and M. Smid and R. Janardan and E. Johnson and J. Majhi" +, title = "Protecting facets in layered manufacturing" +, booktitle = "Proc. 19th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1738 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "281--292" +, update = "00.03 smid" } @techreport{ssmj-cwtdp-98t -, author = "J. Schwerdt and M. Smid and J. Majhi and R. Janardan" -, title = "Computing the width of a three-dimensional point set: an experimental study" -, type = "Report" -, number = 18 -, institution = "Department of Computer Science, University of Magdeburg" -, address = "Magdeburg, Germany" -, year = 1998 -, succeeds = "ssmj-cwtdp-98i" -, update = "99.07 smid" +, author = "J. Schwerdt and M. Smid and J. Majhi and R. Janardan" +, title = "Computing the width of a three-dimensional point set: an experimental study" +, type = "Report" +, number = 18 +, institution = "Department of Computer Science, University of Magdeburg" +, address = "Magdeburg, Germany" +, year = 1998 +, succeeds = "ssmj-cwtdp-98i" +, update = "99.07 smid" } @inproceedings{ssmj-cwtdp-98i -, author = "J. Schwerdt and M. Smid and J. Majhi and R. Janardan" -, title = "Computing the width of a three-dimensional point set: an experimental study" -, booktitle = "Proc. 2nd Workshop on Algorithm Engineering" -, nickname = "WAE '98" -, site = "Saarbr{\"u}cken" -, month = aug -, year = 1998 -, pages = "62--73" -, update = "01.04 icking, 00.11 smid, 00.07 icking, 99.07 smid, 98.11 smid" +, author = "J. Schwerdt and M. Smid and J. Majhi and R. Janardan" +, title = "Computing the width of a three-dimensional point set: an experimental study" +, booktitle = "Proc. 2nd Workshop on Algorithm Engineering" +, nickname = "WAE '98" +, site = "Saarbr{\"u}cken" +, month = aug +, year = 1998 +, pages = "62--73" +, update = "01.04 icking, 00.11 smid, 00.07 icking, 99.07 smid, 98.11 smid" } @article{ssmj-cwtdp-99 -, author = "J. Schwerdt and M. Smid and J. Majhi and R. Janardan" -, title = "Computing the width of a three-dimensional point set: an experimental study" -, journal = "ACM Journal of Experimental Algorithmics" -, volume = 4 -, year = 1999 -, note = "Article 8" -, update = "00.11 smid, 00.07 smid" +, author = "J. Schwerdt and M. Smid and J. Majhi and R. Janardan" +, title = "Computing the width of a three-dimensional point set: an experimental study" +, journal = "ACM Journal of Experimental Algorithmics" +, volume = 4 +, year = 1999 +, note = "Article 8" +, update = "00.11 smid, 00.07 smid" } @inproceedings{sss-cmdmp-97 -, author = "J. Schwerdt and M. Smid and S. Schirra" -, title = "Computing the minimum diameter for moving points: an exact implementation using parametric search" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "466--468" -, cites = "ast-apsgo-94, bfms-secsb-97, bkmnsu-egcl-95, bms-lcrn-96, fgkss-ckbgc-96, gjs-facpp-96, m-apcad-83, nu-lmum-95, mn-lpcgc-95, ps-cgi-85, s-ddbpi-96, ZZZ" -, update = "98.07 bibrelex, 97.11 smid" +, author = "J. Schwerdt and M. Smid and S. Schirra" +, title = "Computing the minimum diameter for moving points: an exact implementation using parametric search" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "466--468" +, cites = "ast-apsgo-94, bfms-secsb-97, bkmnsu-egcl-95, bms-lcrn-96, fgkss-ckbgc-96, gjs-facpp-96, m-apcad-83, nu-lmum-95, mn-lpcgc-95, ps-cgi-85, s-ddbpi-96, ZZZ" +, update = "98.07 bibrelex, 97.11 smid" } @article{si-ttids-86 -, author = "D. Scott and S. Iyenger" -, title = "TID - {Translation} invariant data structure of storing images" -, journal = "Commun. ACM" -, volume = 29 -, year = 1986 -, pages = "418--428" -, update = "98.07 bibrelex" +, author = "D. Scott and S. Iyenger" +, title = "TID - {Translation} invariant data structure of storing images" +, journal = "Commun. ACM" +, volume = 29 +, year = 1986 +, pages = "418--428" +, update = "98.07 bibrelex" } @article{srm-alid-81 -, author = "T. J. Sebok and L. E. Roemer and G. S. Malindzak" -, title = "An algorithm for line intersection detection" -, journal = "Pattern Recogn." -, volume = 13 -, year = 1981 -, pages = "159--166" +, author = "T. J. Sebok and L. E. Roemer and G. S. Malindzak" +, title = "An algorithm for line intersection detection" +, journal = "Pattern Recogn." +, volume = 13 +, year = 1981 +, pages = "159--166" } @article{sg-vpra-82 -, author = "S. Sechrest and D. P. Greenberg" -, title = "A visible polygon reconstruction algorithm" -, journal = "ACM Trans. Graph." -, volume = 1 -, year = 1982 -, pages = "25--42" +, author = "S. Sechrest and D. P. Greenberg" +, title = "A visible polygon reconstruction algorithm" +, journal = "ACM Trans. Graph." +, volume = 1 +, year = 1982 +, pages = "25--42" } @article{s-pasp-85 -, author = "T. Sederberg" -, title = "Piecewise algebraic surface patches" -, journal = "Comput. Aided Geom. Design" -, volume = 2 -, year = 1985 -, pages = "53--59" -, update = "98.03 bibrelex" +, author = "T. Sederberg" +, title = "Piecewise algebraic surface patches" +, journal = "Comput. Aided Geom. Design" +, volume = 2 +, year = 1985 +, pages = "53--59" +, update = "98.03 bibrelex" } @article{sgwm-2dsbi-93 -, author = "T. Sederberg and P. Gao and G. Wang and H. Mu" -, title = "$2$-d shape blending: an intrinsic solution to the vertex path problem" -, journal = "Comput Graph." -, volume = 27 -, year = 1993 -, pages = "15--18" -, note = "Proc. SIGGRAPH '93" -, update = "98.03 bibrelex" +, author = "T. Sederberg and P. Gao and G. Wang and H. Mu" +, title = "$2$-d shape blending: an intrinsic solution to the vertex path problem" +, journal = "Comput Graph." +, volume = 27 +, year = 1993 +, pages = "15--18" +, note = "Proc. SIGGRAPH '93" +, update = "98.03 bibrelex" } @article{sg-agcag-86 -, author = "T. Sederberg and R. Goldman" -, title = "Algebraic geometry for computer-aided geometric design" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, month = jun -, year = 1986 -, pages = "52--59" -, update = "98.03 bibrelex" +, author = "T. Sederberg and R. Goldman" +, title = "Algebraic geometry for computer-aided geometric design" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, month = jun +, year = 1986 +, pages = "52--59" +, update = "98.03 bibrelex" } @article{sg-pba2d-92 -, author = "T. Sederberg and E. Greenwood" -, title = "A physically based approach to $2$-d shape blending" -, journal = "Comput. Graph." -, volume = 26 -, year = 1992 -, pages = "25--34" -, note = "Proc. SIGGRAPH '92" -, update = "98.03 bibrelex" +, author = "T. Sederberg and E. Greenwood" +, title = "A physically based approach to $2$-d shape blending" +, journal = "Comput. Graph." +, volume = 26 +, year = 1992 +, pages = "25--34" +, note = "Proc. SIGGRAPH '92" +, update = "98.03 bibrelex" } @incollection{ss-pcas-87 -, author = "T. Sederberg and J. Snively" -, title = "Parameterization of Cubic Algebraic Surfaces" -, editor = "R. Martin" -, booktitle = "The Mathematics of Surfaces II" -, publisher = "Oxford University Press" -, year = 1987 -, update = "97.11 bibrelex" +, author = "T. Sederberg and J. Snively" +, title = "Parameterization of Cubic Algebraic Surfaces" +, editor = "R. Martin" +, booktitle = "The Mathematics of Surfaces II" +, publisher = "Oxford University Press" +, year = 1987 +, update = "97.11 bibrelex" } @article{sa-irpcs-84 -, author = "T. W. Sederberg and D. C. Anderson" -, title = "Implicit representation of parametric curves and surfaces" -, journal = "Comput. Vision Graph. Image Process." -, volume = "??" -, year = 1984 -, update = "98.03 bibrelex" +, author = "T. W. Sederberg and D. C. Anderson" +, title = "Implicit representation of parametric curves and surfaces" +, journal = "Comput. Vision Graph. Image Process." +, volume = "??" +, year = 1984 +, update = "98.03 bibrelex" } @book{s-a-83 -, author = "R. Sedgewick" -, title = "Algorithms" -, edition = "1st" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1983 -, keywords = "book, convex hull" -, update = "98.03 bibrelex" -, annote = "Chapter 25 treats convex hull" +, author = "R. Sedgewick" +, title = "Algorithms" +, edition = "1st" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1983 +, keywords = "book, convex hull" +, update = "98.03 bibrelex" +, annote = "Chapter 25 treats convex hull" } @book{s-a-88 -, author = "R. Sedgewick" -, title = "Algorithms" -, edition = "2nd" -, publisher = "Addison-Wesley" -, address = "Reading, Mass." -, year = 1988 -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "R. Sedgewick" +, title = "Algorithms" +, edition = "2nd" +, publisher = "Addison-Wesley" +, address = "Reading, Mass." +, year = 1988 +, update = "98.07 bibrelex, 97.11 bibrelex" } @book{s-ac-90 -, author = "R. Sedgewick" -, title = "Algorithms in {C}" -, publisher = "Addison-Wesley" -, address = "Reading, Mass." -, year = 1988 -, update = "98.11 bibrelex" +, author = "R. Sedgewick" +, title = "Algorithms in {C}" +, publisher = "Addison-Wesley" +, address = "Reading, Mass." +, year = 1988 +, update = "98.11 bibrelex" } @book{s-ac-92 -, author = "R. Sedgewick" -, title = "Algorithms in {C}++" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1992 -, update = "97.03 schwarzkopf" +, author = "R. Sedgewick" +, title = "Algorithms in {C}++" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1992 +, update = "97.03 schwarzkopf" } @inproceedings{sv-speg-84 -, author = "R. Sedgewick and J. S. Vitter" -, title = "Shortest paths in {Euclidean} graphs" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "417--424" -, precedes = "sv-speg-86" +, author = "R. Sedgewick and J. S. Vitter" +, title = "Shortest paths in {Euclidean} graphs" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "417--424" +, precedes = "sv-speg-86" } @article{sv-speg-86 -, author = "R. Sedgewick and J. S. Vitter" -, title = "Shortest paths in {Euclidean} graphs" -, journal = "Algorithmica" -, volume = 1 -, year = 1986 -, pages = "31--48" -, succeeds = "sv-speg-84" +, author = "R. Sedgewick and J. S. Vitter" +, title = "Shortest paths in {Euclidean} graphs" +, journal = "Algorithmica" +, volume = 1 +, year = 1986 +, pages = "31--48" +, succeeds = "sv-speg-84" } @inproceedings{sk-btera-90 -, author = "B. Seeger and H.-P. Kriegel" -, title = "The buddy-tree: {A}n efficient and robust access method for spatial data base systems" -, booktitle = "Proc. 16th VLDB Conference" -, year = 1990 -, pages = "590--601" -, update = "97.07 agarwal" +, author = "B. Seeger and H.-P. Kriegel" +, title = "The buddy-tree: {A}n efficient and robust access method for spatial data base systems" +, booktitle = "Proc. 16th VLDB Conference" +, year = 1990 +, pages = "590--601" +, update = "97.07 agarwal" } @inproceedings{s-esadu-97 -, author = "Jochen Seemann" -, title = "Extending the Sugiyama Algorithm for Drawing {UML} Class Diagrams: Towards Automatic Layout of Object-Oriented Software Diagrams" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "415--424" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Jochen Seemann" +, title = "Extending the Sugiyama Algorithm for Drawing {UML} Class Diagrams: Towards Automatic Layout of Object-Oriented Software Diagrams" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "415--424" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @techreport{s-plga-85 -, author = "M. Segal" -, title = "A programming language for geometry applications" -, type = "Report" -, number = "??" -, institution = "Dept. Elect. Engrg. Comput. Sci., Univ. California Berkeley" -, address = "Berkeley, CA" -, year = 1985 +, author = "M. Segal" +, title = "A programming language for geometry applications" +, type = "Report" +, number = "??" +, institution = "Dept. Elect. Engrg. Comput. Sci., Univ. California Berkeley" +, address = "Berkeley, CA" +, year = 1985 } @unpublished{s-pipni- -, author = "M. Segal" -, title = "Partitioning Intersecting Polyhedra into Non-Intersecting Parts" -, note = "In Preparation" -, update = "97.11 bibrelex" +, author = "M. Segal" +, title = "Partitioning Intersecting Polyhedra into Non-Intersecting Parts" +, note = "In Preparation" +, update = "97.11 bibrelex" } @article{s-utgvp-90 -, author = "M. Segal" -, title = "Using tolerances to guarantee valid polyhedral modeling results" -, journal = "Comput. Graph." -, volume = 24 -, number = 4 -, month = aug -, year = 1990 -, pages = "105--114" -, precedes = "ss-ccsm-85, ss-mtgdn-89" -, update = "93.09 milone+mitchell" +, author = "M. Segal" +, title = "Using tolerances to guarantee valid polyhedral modeling results" +, journal = "Comput. Graph." +, volume = 24 +, number = 4 +, month = aug +, year = 1990 +, pages = "105--114" +, precedes = "ss-ccsm-85, ss-mtgdn-89" +, update = "93.09 milone+mitchell" } @inproceedings{sk-ekpsa-96 -, author = "M. Segal and K. Kedem" -, title = "Enclosing {$k$} points in the smallest axis parallel rectangle" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "20--25" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "M. Segal and K. Kedem" +, title = "Enclosing {$k$} points in the smallest axis parallel rectangle" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "20--25" +, update = "97.03 agarwal, 96.09 mitchell" } @article{sk-ekpsa-98 -, author = "M. Segal and K. Kedem" -, title = "Enclosing {$k$} points in the smallest axis parallel rectangle" -, journal = "Inform. Process. Lett." -, volume = 65 -, year = 1998 -, pages = "95--99" -, update = "99.11 smid" +, author = "M. Segal and K. Kedem" +, title = "Enclosing {$k$} points in the smallest axis parallel rectangle" +, journal = "Inform. Process. Lett." +, volume = 65 +, year = 1998 +, pages = "95--99" +, update = "99.11 smid" } @article{ss-pponp-88 -, author = "M. Segal and C. H. Sequin" -, title = "Partitioning Polyhedral Objects into Nonintersecting Parts" -, journal = "IEEE Comput. Graph. Appl." -, volume = 8 -, number = 1 -, month = jan -, year = 1988 -, pages = "53--67" -, update = "93.09 held" +, author = "M. Segal and C. H. Sequin" +, title = "Partitioning Polyhedral Objects into Nonintersecting Parts" +, journal = "IEEE Comput. Graph. Appl." +, volume = 8 +, number = 1 +, month = jan +, year = 1988 +, pages = "53--67" +, update = "93.09 held" } @inproceedings{ss-ccsm-85 -, author = "M. G. Segal and C. H. Sequin" -, title = "Consistent calculations for solids modelling" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "29--38" -, precedes = "ss-mtgdn-89" -, cites = "beh-gms-79, t-smcua-80, r-rrstm-80, gl-mc-83, ns-picg-79, w-at-42, hg-rshsa-77, sw-vfror-85, s-pipni-, ZZZ" -, update = "97.11 bibrelex, 93.09 milone+mitchell" +, author = "M. G. Segal and C. H. Sequin" +, title = "Consistent calculations for solids modelling" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "29--38" +, precedes = "ss-mtgdn-89" +, cites = "beh-gms-79, t-smcua-80, r-rrstm-80, gl-mc-83, ns-picg-79, w-at-42, hg-rshsa-77, sw-vfror-85, s-pipni-, ZZZ" +, update = "97.11 bibrelex, 93.09 milone+mitchell" } @techreport{ss-mtgdn-89 -, author = "M. G. Segal and C. H. Sequin" -, title = "Maintaining topology in geometric descriptions with numerical uncertainty" -, type = "Technical {Report}" -, number = "89/450" -, institution = "Comput. Sci. Div., Univ. California" -, address = "Berkeley, CA" -, year = 1989 -, succeeds = "ss-ccsm-85" -, precedes = "s-utgvp-90" -, update = "95.09 korneenko, 93.09 milone+mitchell" +, author = "M. G. Segal and C. H. Sequin" +, title = "Maintaining topology in geometric descriptions with numerical uncertainty" +, type = "Technical {Report}" +, number = "89/450" +, institution = "Comput. Sci. Div., Univ. California" +, address = "Berkeley, CA" +, year = 1989 +, succeeds = "ss-ccsm-85" +, precedes = "s-utgvp-90" +, update = "95.09 korneenko, 93.09 milone+mitchell" } @incollection{s-pftbs-92 -, author = "H.-P. Seidel" -, title = "Polar forms and triangular {B}-spline surfaces" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, publisher = "World Scientific" -, address = "Singapore" -, year = 1992 -, pages = "235--286" -, keywords = "survey paper, polar forms, triangular Bezier/B-spline surface patches" -, precedes = "s-pftbs-95" -, update = "98.07 icking, 93.09 erickson" +, author = "H.-P. Seidel" +, title = "Polar forms and triangular {B}-spline surfaces" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, publisher = "World Scientific" +, address = "Singapore" +, year = 1992 +, pages = "235--286" +, keywords = "survey paper, polar forms, triangular Bezier/B-spline surface patches" +, precedes = "s-pftbs-95" +, update = "98.07 icking, 93.09 erickson" } @incollection{s-pftbs-95 -, author = "Hans-Peter Seidel" -, title = "Polar Forms and Triangular {B}-Spline Surfaces" -, editor = "Ding-Zhu Du and Frank Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "299--350" -, keywords = "survey paper, polar forms, triangular Bezier/B-spline surface patches" -, succeeds = "s-pftbs-92" -, update = "98.07 icking" +, author = "Hans-Peter Seidel" +, title = "Polar Forms and Triangular {B}-Spline Surfaces" +, editor = "Ding-Zhu Du and Frank Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "299--350" +, keywords = "survey paper, polar forms, triangular Bezier/B-spline surface patches" +, succeeds = "s-pftbs-92" +, update = "98.07 icking" } @mastersthesis{s-chaop-81 -, author = "R. Seidel" -, title = "A convex hull algorithm optimal for point sets in even dimensions" -, type = "M.{Sc}. Thesis" -, school = "Dept. Comput. Sci., Univ. British Columbia" -, address = "Vancouver, BC" -, year = 1981 -, note = "Report 81/14" -, keywords = "convex hull, $d$-dimensional, incrementation, incidence graph, polyhedra" -, update = "93.05 jones" +, author = "R. Seidel" +, title = "A convex hull algorithm optimal for point sets in even dimensions" +, type = "M.{Sc}. Thesis" +, school = "Dept. Comput. Sci., Univ. British Columbia" +, address = "Vancouver, BC" +, year = 1981 +, note = "Report 81/14" +, keywords = "convex hull, $d$-dimensional, incrementation, incidence graph, polyhedra" +, update = "93.05 jones" } @techreport{s-mplbc-84 -, author = "R. Seidel" -, title = "A Method for Proving Lower Bounds for Certain Geometric Problems" -, type = "Technical {Report}" -, number = "84-592" -, institution = "??" -, month = feb -, year = 1984 -, update = "97.11 bibrelex" +, author = "R. Seidel" +, title = "A Method for Proving Lower Bounds for Certain Geometric Problems" +, type = "Technical {Report}" +, number = "84-592" +, institution = "??" +, month = feb +, year = 1984 +, update = "97.11 bibrelex" } @incollection{s-mplbc-85 -, author = "R. Seidel" -, title = "A method for proving lower bounds for certain geometric problems" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "319--334" -, keywords = "point location, triangulation, convex hull, geometric transformations, lower bounds" +, author = "R. Seidel" +, title = "A method for proving lower bounds for certain geometric problems" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "319--334" +, keywords = "point location, triangulation, convex hull, geometric transformations, lower bounds" } @techreport{s-sfira-90 -, author = "R. Seidel" -, title = "A simple and fast incremental randomized algorithm for computing trapezoidal decompositions and for triangulating polygons" -, type = "Technical {Report}" -, number = "B 90-07" -, institution = "Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, month = oct -, year = 1990 -, update = "97.11 bibrelex" +, author = "R. Seidel" +, title = "A simple and fast incremental randomized algorithm for computing trapezoidal decompositions and for triangulating polygons" +, type = "Technical {Report}" +, number = "B 90-07" +, institution = "Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, month = oct +, year = 1990 +, update = "97.11 bibrelex" } @article{s-sfira-91 -, author = "R. Seidel" -, title = "A simple and fast incremental randomized algorithm for computing trapezoidal decompositions and for triangulating polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 1 -, year = 1991 -, pages = "51--64" -, update = "98.07 bibrelex" +, author = "R. Seidel" +, title = "A simple and fast incremental randomized algorithm for computing trapezoidal decompositions and for triangulating polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 1 +, year = 1991 +, pages = "51--64" +, update = "98.07 bibrelex" } @techreport{s-barga-91 -, author = "R. Seidel" -, title = "Backwards Analysis of Randomized Geometric Algorithms" -, type = "Manuscript" -, institution = "ALCOM Summerschool on efficient algorithms design" -, address = "{\AA}rhus, Denmark" -, year = 1991 -, precedes = "s-barga-93, s-barg-92" -, update = "98.11 bibrelex, 93.09 erickson" +, author = "R. Seidel" +, title = "Backwards Analysis of Randomized Geometric Algorithms" +, type = "Manuscript" +, institution = "ALCOM Summerschool on efficient algorithms design" +, address = "{\AA}rhus, Denmark" +, year = 1991 +, precedes = "s-barga-93, s-barg-92" +, update = "98.11 bibrelex, 93.09 erickson" } @techreport{s-barg-92 -, author = "R. Seidel" -, title = "Backwards analysis of randomized geometric algorithms" -, type = "Report" -, number = "TR-92-014" -, institution = "Computer Science Division, University of California" -, address = "Berkeley" -, month = feb -, year = 1992 -, succeeds = "s-barga-91" -, precedes = "s-barga-93" -, update = "98.11 bibrelex" +, author = "R. Seidel" +, title = "Backwards analysis of randomized geometric algorithms" +, type = "Report" +, number = "TR-92-014" +, institution = "Computer Science Division, University of California" +, address = "Berkeley" +, month = feb +, year = 1992 +, succeeds = "s-barga-91" +, precedes = "s-barga-93" +, update = "98.11 bibrelex" } @incollection{s-barga-93 -, author = "R. Seidel" -, title = "Backwards Analysis of Randomized Geometric Algorithms" -, editor = "J. Pach" -, booktitle = "New Trends in Discrete and Computational Geometry" -, series = "Algorithms and Combinatorics" -, volume = 10 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "37--68" -, keywords = "survey paper, randomized algorithms, backwards analysis, Delaunay triangulation, segment intersection, convex hull, quicksort, linear programming" -, succeeds = "s-barg-92, s-barga-91" -, update = "98.11 bibrelex, 93.09 erickson+matousek" +, author = "R. Seidel" +, title = "Backwards Analysis of Randomized Geometric Algorithms" +, editor = "J. Pach" +, booktitle = "New Trends in Discrete and Computational Geometry" +, series = "Algorithms and Combinatorics" +, volume = 10 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "37--68" +, keywords = "survey paper, randomized algorithms, backwards analysis, Delaunay triangulation, segment intersection, convex hull, quicksort, linear programming" +, succeeds = "s-barg-92, s-barga-91" +, update = "98.11 bibrelex, 93.09 erickson+matousek" } @techreport{s-cdtvd-88 -, author = "R. Seidel" -, title = "Constrained {Delaunay} triangulations and {Voronoi} diagrams with obstacles" -, type = "Technical Report" -, number = 260 -, institution = "IIG-TU Graz" -, address = "Austria" -, year = 1988 -, precedes = "s-cdtvd-89" -, update = "99.03 forrest, 98.11 bibrelex" -, annote = "Plane sweep algorithm" +, author = "R. Seidel" +, title = "Constrained {Delaunay} triangulations and {Voronoi} diagrams with obstacles" +, type = "Technical Report" +, number = 260 +, institution = "IIG-TU Graz" +, address = "Austria" +, year = 1988 +, precedes = "s-cdtvd-89" +, update = "99.03 forrest, 98.11 bibrelex" +, annote = "Plane sweep algorithm" } @article{s-cdtvd-89 -, author = "R. Seidel" -, title = "Constrained {Delaunay} Triangulations and {Voronoi} Diagrams with Obstacles" -, journal = "Computer Science Division" -, volume = "??" -, month = jun -, year = 1989 -, note = "UC Berkeley" -, succeeds = "s-cdtvd-88" -, update = "99.03 forrest, 98.11 bibrelex, 98.07 bibrelex" +, author = "R. Seidel" +, title = "Constrained {Delaunay} Triangulations and {Voronoi} Diagrams with Obstacles" +, journal = "Computer Science Division" +, volume = "??" +, month = jun +, year = 1989 +, note = "UC Berkeley" +, succeeds = "s-cdtvd-88" +, update = "99.03 forrest, 98.11 bibrelex, 98.07 bibrelex" } @inproceedings{s-chdch-86 -, author = "R. Seidel" -, title = "Constructing higher-dimensional convex hulls at logarithmic cost per face" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "404--413" -, keywords = "convex hull, incidence graph, polyhedra, linear programming, $d$-dimensional, output dependent" +, author = "R. Seidel" +, title = "Constructing higher-dimensional convex hulls at logarithmic cost per face" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "404--413" +, keywords = "convex hull, incidence graph, polyhedra, linear programming, $d$-dimensional, output dependent" } @incollection{s-chc-97 -, author = "R. Seidel" -, title = "Convex hull computations" -, chapter = 19 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "361--376" -, update = "97.11 orourke" +, author = "R. Seidel" +, title = "Convex hull computations" +, chapter = 19 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "361--376" +, update = "97.11 orourke" } @incollection{s-eubnf-91 -, author = "R. Seidel" -, title = "Exact upper bounds for the number of faces in $d$-dimensional {V}oronoi diagrams" -, editor = "P. Gritzman and B. Sturmfels" -, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 4 -, publisher = "AMS Press" -, address = "Providence, RI" -, year = 1991 -, pages = "517--530" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "R. Seidel" +, title = "Exact upper bounds for the number of faces in $d$-dimensional {V}oronoi diagrams" +, editor = "P. Gritzman and B. Sturmfels" +, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 4 +, publisher = "AMS Press" +, address = "Providence, RI" +, year = 1991 +, pages = "517--530" +, update = "98.07 agarwal, 98.03 agarwal" } @inproceedings{s-lpchm-90 -, author = "R. Seidel" -, title = "Linear programming and convex hulls made easy" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "211--215" -, precedes = "s-sdlpc-91" -, cites = "ck-acp-70, c-lpot-86, c-lvali-89, cs-arscg-89, d-ltatt-84, df-rafdl-87, e-acg-87, g-eadch-72, k-chahd-81, m-ltalp-83, m-lpltw-84, ph-chfsp-77, s-chaop-81, s-chdch-86, s-fchff-85, ZZZ" -, update = "97.11 bibrelex" +, author = "R. Seidel" +, title = "Linear programming and convex hulls made easy" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "211--215" +, precedes = "s-sdlpc-91" +, cites = "ck-acp-70, c-lpot-86, c-lvali-89, cs-arscg-89, d-ltatt-84, df-rafdl-87, e-acg-87, g-eadch-72, k-chahd-81, m-ltalp-83, m-lpltw-84, ph-chfsp-77, s-chaop-81, s-chdch-86, s-fchff-85, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{s-apspp-92 -, author = "R. Seidel" -, title = "On the all-pairs-shortest-path problem" -, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." -, year = 1992 -, pages = "745--749" +, author = "R. Seidel" +, title = "On the all-pairs-shortest-path problem" +, booktitle = "Proc. 24th Annu. ACM Sympos. Theory Comput." +, year = 1992 +, pages = "745--749" } @inproceedings{s-eqcpp-98 -, author = "Raimund Seidel" -, title = "On the Exact Query Complexity of Planar Point Location" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "7--8" -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Raimund Seidel" +, title = "On the Exact Query Complexity of Planar Point Location" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "7--8" +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{s-nfhdv-87 -, author = "R. Seidel" -, title = "On the number of faces in higher-dimensional {Voronoi} diagrams" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "181--185" -, keywords = "$d$-dimensional, Voronoi diagrams, combinatorial geometry, polyhedra" -, cites = "bl-psmcf-81, b-vdch-79, ms-cpubc-71, p-kpudz-82, s-cvdhd-82, ZZZ" -, update = "98.03 bibrelex" +, author = "R. Seidel" +, title = "On the number of faces in higher-dimensional {Voronoi} diagrams" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "181--185" +, keywords = "$d$-dimensional, Voronoi diagrams, combinatorial geometry, polyhedra" +, cites = "bl-psmcf-81, b-vdch-79, ms-cpubc-71, p-kpudz-82, s-cvdhd-82, ZZZ" +, update = "98.03 bibrelex" } @techreport{s-scpvd-82 -, author = "R. Seidel" -, title = "On the size of closest-point {Voronoi} diagrams" -, type = "Report" -, number = "F94" -, institution = "Inst. Informationsverarb., Tech. Univ. Graz" -, address = "Graz, Austria" -, year = 1982 -, keywords = "Voronoi diagrams, lower bounds, polyhedra" -, precedes = "s-cvdhd-82" +, author = "R. Seidel" +, title = "On the size of closest-point {Voronoi} diagrams" +, type = "Report" +, number = "F94" +, institution = "Inst. Informationsverarb., Tech. Univ. Graz" +, address = "Graz, Austria" +, year = 1982 +, keywords = "Voronoi diagrams, lower bounds, polyhedra" +, precedes = "s-cvdhd-82" } @phdthesis{s-ossac-86 -, author = "R. Seidel" -, title = "Output-size sensitive algorithms for constructive problems in computational geometry" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1986 -, note = "Technical Report TR 86-784" -, keywords = "doctoral thesis, convex hull, incidence graph, divide-and-conquer, plane-sweep, domination, intersection, $d$-dimensional, output dependent" -, comments = "UMI AAC87-08959, 148 pp." -, update = "93.09 jones, 93.05 jones" +, author = "R. Seidel" +, title = "Output-size sensitive algorithms for constructive problems in computational geometry" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1986 +, note = "Technical Report TR 86-784" +, keywords = "doctoral thesis, convex hull, incidence graph, divide-and-conquer, plane-sweep, domination, intersection, $d$-dimensional, output dependent" +, comments = "UMI AAC87-08959, 148 pp." +, update = "93.09 jones, 93.05 jones" } @article{s-sdlpc-91 -, author = "R. Seidel" -, title = "Small-dimensional linear programming and convex hulls made easy" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "423--434" -, succeeds = "s-lpchm-90" +, author = "R. Seidel" +, title = "Small-dimensional linear programming and convex hulls made easy" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "423--434" +, succeeds = "s-lpchm-90" } @inproceedings{s-tcg-93 -, author = "Raimund Seidel" -, title = "Teaching Computational Geometry" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = 272 -, update = "93.09 milone+mitchell" +, author = "Raimund Seidel" +, title = "Teaching Computational Geometry" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = 272 +, update = "93.09 milone+mitchell" } @inproceedings{s-cvdhd-82 -, author = "R. Seidel" -, title = "The complexity of {Voronoi} diagrams in higher dimensions" -, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." -, year = 1982 -, pages = "94--95" -, keywords = "Voronoi diagrams, lower bounds, polyhedra" -, succeeds = "s-scpvd-82" +, author = "R. Seidel" +, title = "The complexity of {Voronoi} diagrams in higher dimensions" +, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." +, year = 1982 +, pages = "94--95" +, keywords = "Voronoi diagrams, lower bounds, polyhedra" +, succeeds = "s-scpvd-82" } @techreport{s-nmpgc-94t -, author = "R. Seidel" -, title = "The nature and meaning of perturbations in geometric computing" -, type = "Manuscript" -, institution = "??" -, year = 1994 -, update = "98.03 bibrelex" +, author = "R. Seidel" +, title = "The nature and meaning of perturbations in geometric computing" +, type = "Manuscript" +, institution = "??" +, year = 1994 +, update = "98.03 bibrelex" } @inproceedings{s-nmpgc-94 -, author = "R. Seidel" -, title = "The Nature and Meaning of Perturbations in Geometric Computing" -, booktitle = "Proc. 11th Sympos. Theoret. Aspects Comput. Sci." -, nickname = "STACS '94" -, series = "Lecture Notes Comput. Sci." -, volume = 775 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "3--17" -, update = "98.11 bibrelex, 96.09 devillers" +, author = "R. Seidel" +, title = "The Nature and Meaning of Perturbations in Geometric Computing" +, booktitle = "Proc. 11th Sympos. Theoret. Aspects Comput. Sci." +, nickname = "STACS '94" +, series = "Lecture Notes Comput. Sci." +, volume = 775 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "3--17" +, update = "98.11 bibrelex, 96.09 devillers" } @article{s-nmpgc-98 -, author = "R. Seidel" -, title = "The Nature and Meaning of Perturbations in Geometric Computing" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "1--17" -, update = "98.03 agarwal" +, author = "R. Seidel" +, title = "The Nature and Meaning of Perturbations in Geometric Computing" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "1--17" +, update = "98.03 agarwal" } @article{s-ubtpe-95 -, author = "R. Seidel" -, title = "The upper bound theorem for polytopes: an easy proof of its asymptotic version" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "115--116" -, update = "96.09 devillers" +, author = "R. Seidel" +, title = "The upper bound theorem for polytopes: an easy proof of its asymptotic version" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "115--116" +, update = "96.09 devillers" } @article{sa-rst-96 -, author = "R. Seidel and C. R. Aragon" -, title = "Randomized search trees" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "464--497" -, update = "97.03 smid" +, author = "R. Seidel and C. R. Aragon" +, title = "Randomized search trees" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "464--497" +, update = "97.03 smid" } @article{s-ndmea-54 -, author = "A. Seidenberg" -, title = "A new decision method for elementary algebra" -, journal = "Annals Math." -, volume = 60 -, year = 1954 -, pages = "365--374" -, update = "98.03 bibrelex" +, author = "A. Seidenberg" +, title = "A new decision method for elementary algebra" +, journal = "Annals Math." +, volume = 60 +, year = 1954 +, pages = "365--374" +, update = "98.03 bibrelex" } @book{st-ldt-47 -, author = "H. Seifert and W. Threlfall" -, title = "Lehrbuch der {Topologie}" -, publisher = "Chelsea Publishing Company" -, year = 1947 -, update = "98.03 bibrelex" +, author = "H. Seifert and W. Threlfall" +, title = "Lehrbuch der {Topologie}" +, publisher = "Chelsea Publishing Company" +, year = 1947 +, update = "98.03 bibrelex" } @book{st-vig-38 -, author = "H. Seifert and W. Threlfall" -, title = "Variationsrechnung im {Grossen}" -, publisher = "B. G. Teubner" -, address = "Berlin" -, year = 1938 -, update = "99.11 bibrelex, 98.07 bibrelex" +, author = "H. Seifert and W. Threlfall" +, title = "Variationsrechnung im {Grossen}" +, publisher = "B. G. Teubner" +, address = "Berlin" +, year = 1938 +, update = "99.11 bibrelex, 98.07 bibrelex" } @inproceedings{sd-sgslw-81 -, author = "A. Seigel and D. Dolev" -, title = "The separation for general single-layer wiring barriers" -, booktitle = "Proc. of the CMU Conference on VLSI" -, year = 1981 -, pages = "143--152" -, update = "98.03 bibrelex" +, author = "A. Seigel and D. Dolev" +, title = "The separation for general single-layer wiring barriers" +, booktitle = "Proc. of the CMU Conference on VLSI" +, year = 1981 +, pages = "143--152" +, update = "98.03 bibrelex" } @article{sy-rafmn-93 -, author = "K. Sekitani and Y. Yamamoto" -, title = "A recursive algorithm for finding the minimum norm point in a polytope and a pair of closest points in two polytopes" -, journal = "Math. Program. Ser. A" -, volume = 61 -, number = 2 -, year = 1993 -, pages = "233--249" -, update = "97.03 gaertner+salinger" +, author = "K. Sekitani and Y. Yamamoto" +, title = "A recursive algorithm for finding the minimum norm point in a polytope and a pair of closest points in two polytopes" +, journal = "Math. Program. Ser. A" +, volume = 61 +, number = 2 +, year = 1993 +, pages = "233--249" +, update = "97.03 gaertner+salinger" } @article{si-kmtag-84 -, author = "S. Z. Selim and M. A. Ismail" -, title = "$K$-Means-Type Algorithm: A Generalized Convergence Theorem and Characterization" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "??" -, year = 1984 -, pages = "81--87" -, update = "97.11 bibrelex" +, author = "S. Z. Selim and M. A. Ismail" +, title = "$K$-Means-Type Algorithm: A Generalized Convergence Theorem and Characterization" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "??" +, year = 1984 +, pages = "81--87" +, update = "97.11 bibrelex" } @inproceedings{s-adacc-98 -, author = "J{\"u}rgen Sellen" -, title = "Approximation and Decision Algorithms for Curvature-Constrained Path Planning: {A} State-Space Approach" -, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." -, nickname = "WAFR '98" -, year = 1998 -, pages = "to appear" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "J{\"u}rgen Sellen" +, title = "Approximation and Decision Algorithms for Curvature-Constrained Path Planning: {A} State-Space Approach" +, booktitle = "Proc. 3rd Workshop Algorithmic Found. Robot." +, nickname = "WAFR '98" +, year = 1998 +, pages = "to appear" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @inproceedings{s-dwspp-95 -, author = "J. Sellen" -, title = "Direction weighted shortest path planning" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Nagoya" -, year = 1995 -, pages = "1970--1975" -, update = "96.05 mitchell" +, author = "J. Sellen" +, title = "Direction weighted shortest path planning" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Nagoya" +, year = 1995 +, pages = "1970--1975" +, update = "96.05 mitchell" } @article{s-lbgpp-96 -, author = "J. Sellen" -, title = "Lower bounds for geometrical and physical problems" -, journal = "SIAM J. Comput." -, volume = 25 -, year = 1996 -, pages = "1231--1253" -, update = "97.03 smid" +, author = "J. Sellen" +, title = "Lower bounds for geometrical and physical problems" +, journal = "SIAM J. Comput." +, volume = 25 +, year = 1996 +, pages = "1231--1253" +, update = "97.03 smid" } @inproceedings{s-ppmc-95 -, author = "J. Sellen" -, title = "Planning paths of minimal curvature" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Nagoya" -, year = 1995 -, pages = "1976--1982" -, comments = "also contains an interesting algorithm for the Fortune-Wilfong - problem, to find a minimal-length curvature-constrained - path in a polygonal environment." -, update = "96.05 mitchell" +, author = "J. Sellen" +, title = "Planning paths of minimal curvature" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Nagoya" +, year = 1995 +, pages = "1976--1982" +, comments = "also contains an interesting algorithm for the Fortune-Wilfong + problem, to find a minimal-length curvature-constrained + path in a polygonal environment." +, update = "96.05 mitchell" } @article{scy-psesp-00 -, author = "J. Sellen and J. Choi and C.-K. Yap" -, title = "Precision-Sensitive {Euclidean} Shortest Path in 3-Space" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "1577--1595" -, update = "00.11 smid" +, author = "J. Sellen and J. Choi and C.-K. Yap" +, title = "Precision-Sensitive {Euclidean} Shortest Path in 3-Space" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "1577--1595" +, update = "00.11 smid" } @inproceedings{srf-rtdim-87 -, author = "T. Sellis and N. Roussopoulos and C. Faloutsos" -, title = "The {$\rm R^+$}-tree: {A} dynamic index for multi-dimensional objects" -, booktitle = "Proc. 13th VLDB Conference" -, year = 1987 -, pages = "507--517" -, update = "97.07 agarwal" +, author = "T. Sellis and N. Roussopoulos and C. Faloutsos" +, title = "The {$\rm R^+$}-tree: {A} dynamic index for multi-dimensional objects" +, booktitle = "Proc. 13th VLDB Conference" +, year = 1987 +, pages = "507--517" +, update = "97.07 agarwal" } @book{sr-iag-49 -, author = "J. Semple and L. Roth" -, title = "Introduction to Algebraic Geometry" -, publisher = "Clarendon Press" -, year = 1949 -, update = "97.11 bibrelex" +, author = "J. Semple and L. Roth" +, title = "Introduction to Algebraic Geometry" +, publisher = "Clarendon Press" +, year = 1949 +, update = "97.11 bibrelex" } @mastersthesis{s-aeusf-96 -, author = "I. Semrau" -, title = "Analyse und experimentelle {Untersuchung} von {Strategien} zum {Finden} eines {Ziels} in {Stra{\ss}enpolygonen}" -, type = "Diploma thesis" -, school = "FernUniversit{\"a}t Hagen" -, year = 1996 -, keywords = "master thesis" -, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "I. Semrau" +, title = "Analyse und experimentelle {Untersuchung} von {Strategien} zum {Finden} eines {Ziels} in {Stra{\ss}enpolygonen}" +, type = "Diploma thesis" +, school = "FernUniversit{\"a}t Hagen" +, year = 1996 +, keywords = "master thesis" +, update = "98.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @article{s-ercbk-68 -, author = "P. K. Sen" -, title = "Estimates of the Regression Coefficient Based on Kendall's Tau" -, journal = "J. Amer. Statist. Assoc." -, volume = 63 -, year = 1968 -, pages = "1379--1389" -, update = "98.07 bibrelex" +, author = "P. K. Sen" +, title = "Estimates of the Regression Coefficient Based on Kendall's Tau" +, journal = "J. Amer. Statist. Assoc." +, volume = 63 +, year = 1968 +, pages = "1379--1389" +, update = "98.07 bibrelex" } @techreport{s-dplto-95 -, author = "S. Sen" -, title = "A deterministic {poly($\log\log n$)} time optimal {CRCW} {PRAM} algorithm for linear programming in fixed dimension" -, type = "Technical {Report}" -, number = "95-08" -, institution = "Dept. of Computer Science, University of Newcastle" -, year = 1995 -, update = "96.09 orourke" +, author = "S. Sen" +, title = "A deterministic {poly($\log\log n$)} time optimal {CRCW} {PRAM} algorithm for linear programming in fixed dimension" +, type = "Technical {Report}" +, number = "95-08" +, institution = "Dept. of Computer Science, University of Newcastle" +, year = 1995 +, update = "96.09 orourke" } @inproceedings{s-fcs-92 -, author = "S. Sen" -, title = "Fractional cascading simplified" -, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 621 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "212--220" +, author = "S. Sen" +, title = "Fractional cascading simplified" +, booktitle = "Proc. 3rd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 621 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "212--220" } @inproceedings{s-lbadt-94 -, author = "S. Sen" -, title = "Lower bounds for algebraic decision trees, complexity of convex hulls and related problems" -, booktitle = "Proc. 14th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, site = "Madras, India" -, year = 1994 -, update = "97.11 bibrelex" +, author = "S. Sen" +, title = "Lower bounds for algebraic decision trees, complexity of convex hulls and related problems" +, booktitle = "Proc. 14th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, site = "Madras, India" +, year = 1994 +, update = "97.11 bibrelex" } @techreport{s-mapl- -, author = "S. Sen" -, title = "Maintaining arrangements for point location" -, type = "Technical {Memo}" -, institution = "Bell Lab." -, update = "97.11 bibrelex" +, author = "S. Sen" +, title = "Maintaining arrangements for point location" +, type = "Technical {Memo}" +, institution = "Bell Lab." +, update = "97.11 bibrelex" } @inproceedings{s-pmsua-96 -, author = "S. Sen" -, title = "Parallel multidimensional search using approximation algorithms: with applications to linear-programming and related problems" -, booktitle = "Proc. 8th ACM Sympos. Paral. Algorithms and Architectures" -, year = 1996 -, pages = "251--260" -, keywords = "parallel computations, linear programming" -, update = "96.09 agarwal, 96.05 agarwal" +, author = "S. Sen" +, title = "Parallel multidimensional search using approximation algorithms: with applications to linear-programming and related problems" +, booktitle = "Proc. 8th ACM Sympos. Paral. Algorithms and Architectures" +, year = 1996 +, pages = "251--260" +, keywords = "parallel computations, linear programming" +, update = "96.09 agarwal, 96.05 agarwal" } @unpublished{s-sosl- -, author = "S. Sen" -, title = "Some observations on skip lists" -, note = "??" -, update = "98.03 bibrelex" +, author = "S. Sen" +, title = "Some observations on skip lists" +, note = "??" +, update = "98.03 bibrelex" } @techreport{s-tbspc-93 -, author = "S. Sen" -, title = "Tight bounds for some problems in computational geometry: the complete sub-logarithmic parallel time range" -, type = "Report" -, number = "MPI-I-93-129" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, update = "93.09 smid" +, author = "S. Sen" +, title = "Tight bounds for some problems in computational geometry: the complete sub-logarithmic parallel time range" +, type = "Report" +, number = "MPI-I-93-129" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, update = "93.09 smid" } @incollection{s-cq-97 -, author = "M. Senechal" -, title = "Crystals and quasicrystals" -, chapter = 51 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "933--950" -, update = "97.11 orourke" +, author = "M. Senechal" +, title = "Crystals and quasicrystals" +, chapter = 51 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "933--950" +, update = "97.11 orourke" } @techreport{s-ods-88 -, author = "M. Senechal" -, title = "Orderly dispositions in space" -, type = "{IMA} {Preprint} {Series}" -, number = 406 -, institution = "Inst. Math. Appl., Univ. Minnesota" -, address = "Minneapolis, MN" -, year = 1988 +, author = "M. Senechal" +, title = "Orderly dispositions in space" +, type = "{IMA} {Preprint} {Series}" +, number = 406 +, institution = "Inst. Math. Appl., Univ. Minnesota" +, address = "Minneapolis, MN" +, year = 1988 } @article{s-ttosf-88 -, author = "M. Senechal" -, title = "Tiling the torus and other space forms" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "55--72" +, author = "M. Senechal" +, title = "Tiling the torus and other space forms" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "55--72" } @article{sw-vfror-85 -, author = "C. H. S{\'e}quin and P. R. Wensley" -, title = "Visible Feature Return at Object Resolution" -, journal = "IEEE Comput. Graph. Appl." -, volume = "??" -, year = 1985 -, note = "To be published" -, update = "97.11 bibrelex" +, author = "C. H. S{\'e}quin and P. R. Wensley" +, title = "Visible Feature Return at Object Resolution" +, journal = "IEEE Comput. Graph. Appl." +, volume = "??" +, year = 1985 +, note = "To be published" +, update = "97.11 bibrelex" } @techreport{svh-bpepa-89 -, author = "B. Serpette and J. Vuillemin and J. C. Herv{`e}" -, title = "{BigNum}: a portable and efficient package for arbitrary-precision arithmetic" -, institution = "INRIA" -, month = may -, year = 1989 -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "B. Serpette and J. Vuillemin and J. C. Herv{`e}" +, title = "{BigNum}: a portable and efficient package for arbitrary-precision arithmetic" +, institution = "INRIA" +, month = may +, year = 1989 +, update = "98.11 bibrelex, 98.03 bibrelex" } @book{s-iamm-82 -, author = "J. Serra" -, title = "Image Analysis and Mathematical Morphology" -, publisher = "Academic Press" -, address = "London, UK" -, year = 1982 -, update = "98.07 bibrelex" +, author = "J. Serra" +, title = "Image Analysis and Mathematical Morphology" +, publisher = "Academic Press" +, address = "London, UK" +, year = 1982 +, update = "98.07 bibrelex" } @book{s-iamm-88 -, title = "Image Analysis and Mathematical Morphology, volume 2: {Theoretical} Advances" -, editor = "J. Serra" -, publisher = "Academic Press" -, address = "New York" -, year = 1988 -, update = "98.07 bibrelex" +, title = "Image Analysis and Mathematical Morphology, volume 2: {Theoretical} Advances" +, editor = "J. Serra" +, publisher = "Academic Press" +, address = "New York" +, year = 1988 +, update = "98.07 bibrelex" } @article{s-harst-81 -, author = "M. Servit" -, title = "Heuristic algorithms for rectlinear {Steiner} trees" -, journal = "Digital Processes" -, volume = 7 -, year = 1981 -, pages = "21--32" -, update = "98.07 bibrelex" +, author = "M. Servit" +, title = "Heuristic algorithms for rectlinear {Steiner} trees" +, journal = "Digital Processes" +, volume = 7 +, year = 1981 +, pages = "21--32" +, update = "98.07 bibrelex" } @book{s-lsm-96 -, author = "J. A. Sethian" -, title = "Level Set Methods" -, publisher = "Cambridge University Press" -, year = 1996 -, update = "00.03 devillers" +, author = "J. A. Sethian" +, title = "Level Set Methods" +, publisher = "Cambridge University Press" +, year = 1996 +, update = "00.03 devillers" } @book{s-lsmfm-01 -, author = "J. A. Sethian" -, title = "Level set methods and fast marching methods" -, publisher = "Cambridge" -, year = 1999 -, note = "" -, update = "02.03 pocchiola" +, author = "J. A. Sethian" +, title = "Level set methods and fast marching methods" +, publisher = "Cambridge" +, year = 1999 +, note = "" +, update = "02.03 pocchiola" } @inproceedings{sk-ftmsd-96 -, author = "K. Sevcik and N. Koudas" -, title = "Filter trees for managing spatial data over a range of size granularities" -, booktitle = "Proc. 22nd VLDB Conference" -, year = 1996 -, pages = "16--27" -, update = "97.07 agarwal" +, author = "K. Sevcik and N. Koudas" +, title = "Filter trees for managing spatial data over a range of size granularities" +, booktitle = "Proc. 22nd VLDB Conference" +, year = 1996 +, pages = "16--27" +, update = "97.07 agarwal" } @article{s-dptds-86 -, author = "Michael Sever" -, title = "{Delaunay} Partitioning In Three Dimensions And Semiconductor Models" -, journal = "COMPEL: The International Journal for Computation and Mathematics in Electrical and Electronic Engineering" -, volume = 5 -, number = 2 -, month = jun -, year = 1986 -, pages = "75--93" -, keywords = "Delaunay partitioning, semiconductor models, scharfetter-gummel discretization, Voronoi cross-sections" -, annote = "Incremental algorithm in 3D. First take a surrounding - tetra. Connect new point to all points of tetra whose - c-sphere it lies in. Delete edges that are only in bad - tetrahedra. Yet another proof." -, abstract = "An algorithm for Delaunay partitioning in three - dimensions is given, and its use in numerical - semiconductor models is examined. In particular, - tetrahedral elements are found to be compatible with - the Scharfetter-Gummel discretization of the stationary - continuity equations associated with such models, using - the Voronoi cross-sections for each edge in the - obtained network. For tetrahedral elements, however, - the Voronoi cross-sections do not coincide with those - previously shown to be compatible with the - Scharfetter-Gummel method. (Author abstract) 16 refs." +, author = "Michael Sever" +, title = "{Delaunay} Partitioning In Three Dimensions And Semiconductor Models" +, journal = "COMPEL: The International Journal for Computation and Mathematics in Electrical and Electronic Engineering" +, volume = 5 +, number = 2 +, month = jun +, year = 1986 +, pages = "75--93" +, keywords = "Delaunay partitioning, semiconductor models, scharfetter-gummel discretization, Voronoi cross-sections" +, annote = "Incremental algorithm in 3D. First take a surrounding + tetra. Connect new point to all points of tetra whose + c-sphere it lies in. Delete edges that are only in bad + tetrahedra. Yet another proof." +, abstract = "An algorithm for Delaunay partitioning in three + dimensions is given, and its use in numerical + semiconductor models is examined. In particular, + tetrahedral elements are found to be compatible with + the Scharfetter-Gummel discretization of the stationary + continuity equations associated with such models, using + the Voronoi cross-sections for each edge in the + obtained network. For tetrahedral elements, however, + the Voronoi cross-sections do not coincide with those + previously shown to be compatible with the + Scharfetter-Gummel method. (Author abstract) 16 refs." } @inproceedings{slsds-hicaw-96 -, author = "Jonathan Shade and Dani Lischinski and David Salesin and Tony {DeRose} and John Snyder" -, title = "Hierarchical Image Caching for Accelerated Walkthroughs of Complex Environments" -, booktitle = "Proc. SIGGRAPH '96" -, series = "In {\em Comput. Graph.\/} Proceedings, Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "Addison-Wesley" -, year = 1996 -, pages = "75--82" -, update = "98.03 agarwal" +, author = "Jonathan Shade and Dani Lischinski and David Salesin and Tony {DeRose} and John Snyder" +, title = "Hierarchical Image Caching for Accelerated Walkthroughs of Complex Environments" +, booktitle = "Proc. SIGGRAPH '96" +, series = "In {\em Comput. Graph.\/} Proceedings, Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "Addison-Wesley" +, year = 1996 +, pages = "75--82" +, update = "98.03 agarwal" } @book{s-bag-77 -, author = "I. R. Shafarevich" -, title = "Basic Algebraic Geometry" -, edition = 2 -, publisher = "Springer" -, address = "Berlin" -, year = 1977 -, isbn = "3-540-08264-6" -, update = "97.11 bibrelex" -, annote = "Part I. Algebraic varieties in a projective space I. +, author = "I. R. Shafarevich" +, title = "Basic Algebraic Geometry" +, edition = 2 +, publisher = "Springer" +, address = "Berlin" +, year = 1977 +, isbn = "3-540-08264-6" +, update = "97.11 bibrelex" +, annote = "Part I. Algebraic varieties in a projective space I. Fundamental concepts II. Local properties III. Divisors and differential forms IV. Intersection indices Part II. Schemes and varieties V. Schemes VI. Varieties Part @@ -131158,1885 +131158,1885 @@ @book{s-bag-77 } @inproceedings{sa-sprint-96 -, author = "J. Shafer and R. Agrawal and M. Mehta" -, title = "SPRINT: A Scalable Parallel Classifier for Data Mining." -, booktitle = "Proceedings of the International Conference on Very Large Databases" -, publisher = "Morgan Kauffman" -, year = 1996 -, pages = "544--555" -, update = "98.07 agarwal" +, author = "J. Shafer and R. Agrawal and M. Mehta" +, title = "SPRINT: A Scalable Parallel Classifier for Data Mining." +, booktitle = "Proceedings of the International Conference on Very Large Databases" +, publisher = "Morgan Kauffman" +, year = 1996 +, pages = "544--555" +, update = "98.07 agarwal" } @inproceedings{ss-roga-93 -, author = "L. Shafer and W. Steiger" -, title = "Randomizing optimal geometric algorithms" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "133--138" -, precedes = "ss-roga-95" -, cites = "b-chfsp-78, csss-otass-89, e-nchap-77, e-acg-87, fr-etbs-75, ks-upcha-86, ls-otahs-90, lms-hscr-92, lms-ahsc-94, m-roass-91, mt-uchap-85, mt-uchap-85, fr-aasfs-75, gs-cchsp-79, ol-fcbch-80, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "L. Shafer and W. Steiger" +, title = "Randomizing optimal geometric algorithms" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "133--138" +, precedes = "ss-roga-95" +, cites = "b-chfsp-78, csss-otass-89, e-nchap-77, e-acg-87, fr-etbs-75, ks-upcha-86, ls-otahs-90, lms-hscr-92, lms-ahsc-94, m-roass-91, mt-uchap-85, mt-uchap-85, fr-aasfs-75, gs-cchsp-79, ol-fcbch-80, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @techreport{ss-roga-95 -, author = "L. Shafer and W. Steiger" -, title = "Randomizing optimal geometric algorithms" -, type = "Technical {Report}" -, number = "94-22" -, institution = "DIMACS" -, year = 1995 -, succeeds = "ss-roga-93" -, update = "98.11 bibrelex, 96.09 orourke" +, author = "L. Shafer and W. Steiger" +, title = "Randomizing optimal geometric algorithms" +, type = "Technical {Report}" +, number = "94-22" +, institution = "DIMACS" +, year = 1995 +, succeeds = "ss-roga-93" +, update = "98.11 bibrelex, 96.09 orourke" } @article{ss-aerrl-88 -, author = "C. A. Shaffer and H. Samet" -, title = "An algorithm to expand regions represented by linear quadtrees" -, journal = "Image Vision Comput." -, volume = 6 -, number = 3 -, month = aug -, year = 1988 -, pages = "162--168" -, update = "96.05 efrat" +, author = "C. A. Shaffer and H. Samet" +, title = "An algorithm to expand regions represented by linear quadtrees" +, journal = "Image Vision Comput." +, volume = 6 +, number = 3 +, month = aug +, year = 1988 +, pages = "162--168" +, update = "96.05 efrat" } @techreport{ss-chdso-87 -, author = "C. A. Shaffer and H. Samet" -, title = "An in--core hierarchical data structure organization for a geographic database" -, type = "Computer Science Department" -, number = "TR 1886" -, institution = "University of Maryland" -, address = "College Park, MD" -, month = jul -, year = 1987 -, update = "96.05 efrat" +, author = "C. A. Shaffer and H. Samet" +, title = "An in--core hierarchical data structure organization for a geographic database" +, type = "Computer Science Department" +, number = "TR 1886" +, institution = "University of Maryland" +, address = "College Park, MD" +, month = jul +, year = 1987 +, update = "96.05 efrat" } @article{ss-oqca-87 -, author = "C. A. Shaffer and H. Samet" -, title = "Optimal quadtree construction algorithms" -, journal = "Comput. Vision Graph. Image Process." -, volume = 37 -, number = 3 -, month = mar -, year = 1987 -, pages = "402--419" -, update = "96.05 efrat" +, author = "C. A. Shaffer and H. Samet" +, title = "Optimal quadtree construction algorithms" +, journal = "Comput. Vision Graph. Image Process." +, volume = 37 +, number = 3 +, month = mar +, year = 1987 +, pages = "402--419" +, update = "96.05 efrat" } @article{ss-soulq-90 -, author = "C. A. Shaffer and H. Samet" -, title = "Set operations for unaligned linear quadtrees" -, journal = "Comput. Vision Graph. Image Process." -, volume = 50 -, number = 1 -, month = apr -, year = 1990 -, pages = "29--4" -, note = "(also Virginia Polytechnic Institute and State University Computer Science TR 88--31)" -, update = "96.05 efrat" +, author = "C. A. Shaffer and H. Samet" +, title = "Set operations for unaligned linear quadtrees" +, journal = "Comput. Vision Graph. Image Process." +, volume = 50 +, number = 1 +, month = apr +, year = 1990 +, pages = "29--4" +, note = "(also Virginia Polytechnic Institute and State University Computer Science TR 88--31)" +, update = "96.05 efrat" } @article{ssn-qgisb-90 -, author = "C. A. Shaffer and H. Samet and R. C. Nelson" -, title = "{QUILT}: a geographic information system based on quadtrees" -, journal = "Internat. J. Geogr. Inform. Syst." -, volume = 4 -, number = 2 -, month = apr -, year = 1990 -, pages = "103--131" -, update = "00.11 smid, 00.07 icking, 96.09 devillers, 96.05 efrat" -, annote = "also University of Maryland Computer Science TR-1885.1" +, author = "C. A. Shaffer and H. Samet and R. C. Nelson" +, title = "{QUILT}: a geographic information system based on quadtrees" +, journal = "Internat. J. Geogr. Inform. Syst." +, volume = 4 +, number = 2 +, month = apr +, year = 1990 +, pages = "103--131" +, update = "00.11 smid, 00.07 icking, 96.09 devillers, 96.05 efrat" +, annote = "also University of Maryland Computer Science TR-1885.1" } @inproceedings{s-hmr-95 -, author = "Nimish R. Shah" -, title = "Homeomorphic Meshes in {$\Re^3$}" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "25--30" -, update = "95.09 jones" +, author = "Nimish R. Shah" +, title = "Homeomorphic Meshes in {$\Re^3$}" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "25--30" +, update = "95.09 jones" } @article{smr-ddssa-88 -, author = "Hamid Shahnasser and Ward Morgan and A. Raghuram" -, title = "Dynamic Date Structure Suitable For Adaptive Mesh Refinement In Finite Element Method" -, journal = "Finite Elements in Analysis and Design" -, volume = 4 -, number = 3 -, month = nov -, year = 1988 -, pages = "237--247" -, keywords = "dynamic data structure, mesh refinement" -, annote = "Claims that minimizing sum of the minimum angles is - equal to the DT. (Not true). Claims that sum of - opposite angles is cheapest way to implement DT test. - Lists Pascal code. Data structure is list of triangles, - with pointers to adjacent triangles. Inside flip - insertion." -, abstract = "This paper describes a dynamic data structure and its - implementation, used for an optimum mesh generator. The - implementation of this mesh generator was a part of a - software package implemented to solve electromagnetic - field problems using the finite element method. This - mesh generator takes advantage of the Delaunay - algorithm, which maximizes the summation of the - smallest angles in all triangles and thus creates a - mesh that is proved to be an optimum mesh for use in - the finite element method. The dynamic data structure - is explained and the source code is reviewed. The - programs have been written in Pascal programming - language. (Author abstract) 8 Refs." +, author = "Hamid Shahnasser and Ward Morgan and A. Raghuram" +, title = "Dynamic Date Structure Suitable For Adaptive Mesh Refinement In Finite Element Method" +, journal = "Finite Elements in Analysis and Design" +, volume = 4 +, number = 3 +, month = nov +, year = 1988 +, pages = "237--247" +, keywords = "dynamic data structure, mesh refinement" +, annote = "Claims that minimizing sum of the minimum angles is + equal to the DT. (Not true). Claims that sum of + opposite angles is cheapest way to implement DT test. + Lists Pascal code. Data structure is list of triangles, + with pointers to adjacent triangles. Inside flip + insertion." +, abstract = "This paper describes a dynamic data structure and its + implementation, used for an optimum mesh generator. The + implementation of this mesh generator was a part of a + software package implemented to solve electromagnetic + field problems using the finite element method. This + mesh generator takes advantage of the Delaunay + algorithm, which maximizes the summation of the + smallest angles in all triangles and thus creates a + mesh that is proved to be an optimum mesh for use in + the finite element method. The dynamic data structure + is explained and the source code is reviewed. The + programs have been written in Pascal programming + language. (Author abstract) 8 Refs." } @inproceedings{sssv-bcnmh-97 -, author = "Farhad Shahrokhi and Ondrej S{\'y}kora and L{\'a}szl{\'o} A. Sz{\'e}kely and Imrich {Vrt'o}" -, title = "Bipartite Crossing Numbers of Meshes and Hypercubes" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "37--46" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Farhad Shahrokhi and Ondrej S{\'y}kora and L{\'a}szl{\'o} A. Sz{\'e}kely and Imrich {Vrt'o}" +, title = "Bipartite Crossing Numbers of Meshes and Hypercubes" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "37--46" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{sssv-dgsfc-96 -, author = "F. Shahrokhi and L. A. {Sz\'ekely} and O. {S\'ykora} and I. {Vrt'o}" -, title = "Drawings of Graphs on Surfaces with Few Crossings" -, journal = "Algorithmica" -, volume = 16 -, year = 1996 -, pages = "118--131" -, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" -, keywords = "graph drawing, 3D, topological graph theory" -, update = "96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" +, author = "F. Shahrokhi and L. A. {Sz\'ekely} and O. {S\'ykora} and I. {Vrt'o}" +, title = "Drawings of Graphs on Surfaces with Few Crossings" +, journal = "Algorithmica" +, volume = 16 +, year = 1996 +, pages = "118--131" +, note = "(special issue on Graph Drawing, edited by G. {Di Battista} and R. Tamassia)" +, keywords = "graph drawing, 3D, topological graph theory" +, update = "96.09 smid, 95.09 agarwal+devillers+tamassia, 95.05 tamassia" } @inproceedings{ssv-cnglb-95 -, author = "F. Shahrokhi and L. A. Sz{\'e}kely and I. Vrt'o" -, title = "Crossing Numbers of Graphs, Lower Bound Techniques and Algorithms: a Survey" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "131--142" -, keywords = "graph drawing, planarization, crossing number, survey" -, update = "95.01 tamassia" +, author = "F. Shahrokhi and L. A. Sz{\'e}kely and I. Vrt'o" +, title = "Crossing Numbers of Graphs, Lower Bound Techniques and Algorithms: a Survey" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "131--142" +, keywords = "graph drawing, planarization, crossing number, survey" +, update = "95.01 tamassia" } @article{s-scpe-80 -, author = "A. V. Shaidenko" -, title = "Some Characteristic Properties of the Ellipsoid" -, journal = "Sibirsk Mat. Z." -, volume = 21 -, year = 1980 -, pages = "232--234, 240" -, note = "In Russian." -, update = "99.11 bibrelex" +, author = "A. V. Shaidenko" +, title = "Some Characteristic Properties of the Ellipsoid" +, journal = "Sibirsk Mat. Z." +, volume = 21 +, year = 1980 +, pages = "232--234, 240" +, note = "In Russian." +, update = "99.11 bibrelex" } @article{s-palp-93 -, author = "R. Shamir" -, title = "Probabilistic analysis in linear programming" -, journal = "Statistical Science" -, volume = 8 -, year = 1993 -, pages = "57--64" -, update = "94.05 matousek" +, author = "R. Shamir" +, title = "Probabilistic analysis in linear programming" +, journal = "Statistical Science" +, volume = 8 +, year = 1993 +, pages = "57--64" +, update = "94.05 matousek" } @article{s-esms-87 -, author = "R. Shamir" -, title = "The efficiency of the simplex method: a survey" -, journal = "Manage. Sci." -, volume = 33 -, year = 1987 -, pages = "301--334" -, keywords = "linear programming, Monte Carlo" +, author = "R. Shamir" +, title = "The efficiency of the simplex method: a survey" +, journal = "Manage. Sci." +, volume = 33 +, year = 1987 +, pages = "301--334" +, keywords = "linear programming, Monte Carlo" } @inproceedings{sd-cagst-90 -, author = "R. Shamir and B. Dietrich" -, title = "Characterization and algorithms for greedily solvable transportation problems" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "358--366" +, author = "R. Shamir and B. Dietrich" +, title = "Characterization and algorithms for greedily solvable transportation problems" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "358--366" } @incollection{sffr-hpgis-78 -, author = "M. Shamos and H. Freeman and R. Franklin and A. Rosenfeld" -, title = "??" -, editor = "G. Dutton" -, booktitle = "Harvard Papers on Geographical Information Systems" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1978 -, pages = "??" -, keywords = "complexity theory, design of algorithms, data structuring, cartography, searching, probing, divide-and-conquer, dynamizing data structures, triangulation, polygonal chains" +, author = "M. Shamos and H. Freeman and R. Franklin and A. Rosenfeld" +, title = "??" +, editor = "G. Dutton" +, booktitle = "Harvard Papers on Geographical Information Systems" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1978 +, pages = "??" +, keywords = "complexity theory, design of algorithms, data structuring, cartography, searching, probing, divide-and-conquer, dynamizing data structures, triangulation, polygonal chains" } @phdthesis{s-cg-78 -, author = "M. I. Shamos" -, title = "Computational Geometry" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Yale Univ." -, address = "New Haven, CT" -, year = 1978 -, keywords = "doctoral thesis" -, comments = "UMI 78-19047" -, succeeds = "s-pcg-77" -, update = "93.09 jones" +, author = "M. I. Shamos" +, title = "Computational Geometry" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Yale Univ." +, address = "New Haven, CT" +, year = 1978 +, keywords = "doctoral thesis" +, comments = "UMI 78-19047" +, succeeds = "s-pcg-77" +, update = "93.09 jones" } @inproceedings{s-gc-75 -, author = "M. I. Shamos" -, title = "Geometric complexity" -, booktitle = "Proc. 7th Annu. ACM Sympos. Theory Comput." -, year = 1975 -, pages = "224--233" +, author = "M. I. Shamos" +, title = "Geometric complexity" +, booktitle = "Proc. 7th Annu. ACM Sympos. Theory Comput." +, year = 1975 +, pages = "224--233" } @incollection{s-gspi-76 -, author = "M. I. Shamos" -, title = "Geometry and statistics: problems at the interface" -, editor = "J. F. Traub" -, booktitle = "Algorithms and Complexity: New Directions and Recent Results" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1976 -, pages = "251--280" +, author = "M. I. Shamos" +, title = "Geometry and statistics: problems at the interface" +, editor = "J. F. Traub" +, booktitle = "Algorithms and Complexity: New Directions and Recent Results" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1976 +, pages = "251--280" } @techreport{s-pcg-77 -, author = "M. I. Shamos" -, title = "Problems in computational geometry" -, type = "Report" -, number = "" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1977 -, comments = "An early version of his thesis?" -, precedes = "s-cg-78" -, update = "94.05 devillers" +, author = "M. I. Shamos" +, title = "Problems in computational geometry" +, type = "Report" +, number = "" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1977 +, comments = "An early version of his thesis?" +, precedes = "s-cg-78" +, update = "94.05 devillers" } @incollection{s-eycgp-99 -, author = "M. I. Shamos" -, title = "The early years of computational geometry---a personal memoir" -, editor = "B. Chazelle and J. E. Goodman and R. Pollack" -, booktitle = "Advances in Discrete and Computational Geometry" -, series = "Contemporary Mathematics" -, volume = 223 -, publisher = "American Mathematical Society" -, address = "Providence" -, year = 1999 -, pages = "313--333" -, update = "00.03 smid" +, author = "M. I. Shamos" +, title = "The early years of computational geometry---a personal memoir" +, editor = "B. Chazelle and J. E. Goodman and R. Pollack" +, booktitle = "Advances in Discrete and Computational Geometry" +, series = "Contemporary Mathematics" +, volume = 223 +, publisher = "American Mathematical Society" +, address = "Providence" +, year = 1999 +, pages = "313--333" +, update = "00.03 smid" } @inproceedings{sb-oasgd-77 -, author = "M. I. Shamos and J. L. Bentley" -, title = "Optimal algorithms for structuring geographic data" -, booktitle = "Proc. Sympos. Topological Data Structures for Geographic Inform. Systems" -, publisher = "Harvard Univ." -, year = 1977 -, pages = "43--51" +, author = "M. I. Shamos and J. L. Bentley" +, title = "Optimal algorithms for structuring geographic data" +, booktitle = "Proc. Sympos. Topological Data Structures for Geographic Inform. Systems" +, publisher = "Harvard Univ." +, year = 1977 +, pages = "43--51" } @inproceedings{sh-cpp-75 -, author = "M. I. Shamos and D. Hoey" -, title = "Closest-Point Problems" -, booktitle = "Proc. 16th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1975 -, pages = "151--162" -, annote = "Uses Voronoi tessellation to get $O(N\log N)$ - algorithms for: all closest points; Euclidean MST; - Triangulation; Convex Hull; Largest empty circle; - smallest enclosing circle. Divide and Conquer algorithm - for VD." +, author = "M. I. Shamos and D. Hoey" +, title = "Closest-Point Problems" +, booktitle = "Proc. 16th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1975 +, pages = "151--162" +, annote = "Uses Voronoi tessellation to get $O(N\log N)$ + algorithms for: all closest points; Euclidean MST; + Triangulation; Convex Hull; Largest empty circle; + smallest enclosing circle. Divide and Conquer algorithm + for VD." } @inproceedings{sh-gip-76 -, author = "M. I. Shamos and D. Hoey" -, title = "Geometric intersection problems" -, booktitle = "Proc. 17th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1976 -, pages = "208--215" +, author = "M. I. Shamos and D. Hoey" +, title = "Geometric intersection problems" +, booktitle = "Proc. 17th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1976 +, pages = "208--215" } @inproceedings{sy-lbcft-76 -, author = "M. I. Shamos and G. Yuval" -, title = "Lower bounds from complex function theory" -, booktitle = "Proc. 17th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1976 -, pages = "268--273" +, author = "M. I. Shamos and G. Yuval" +, title = "Lower bounds from complex function theory" +, booktitle = "Proc. 17th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1976 +, pages = "268--273" } @inproceedings{sbv-hslim-90 -, author = "Mark Shand and Patrice Bertin and Jean Vuillemin" -, title = "Hardware speedups in long integer multiplication" -, booktitle = "2nd ACM Sympos. Parallel Algorithms Arch." -, year = 1990 -, update = "98.11 bibrelex" +, author = "Mark Shand and Patrice Bertin and Jean Vuillemin" +, title = "Hardware speedups in long integer multiplication" +, booktitle = "2nd ACM Sympos. Parallel Algorithms Arch." +, year = 1990 +, update = "98.11 bibrelex" } @article{s-frbri-80 -, author = "U. Shani" -, title = "Filling regions in binary raster images: a graph-theoretical appoach" -, journal = "Computer graphics" -, volume = 14 -, year = 1980 -, pages = "321--327" -, update = "98.07 bibrelex" +, author = "U. Shani" +, title = "Filling regions in binary raster images: a graph-theoretical appoach" +, journal = "Computer graphics" +, volume = 14 +, year = 1980 +, pages = "321--327" +, update = "98.07 bibrelex" } @article{sp-viosd-91 -, author = "K. Shanmukh and A. K. Pujari" -, title = "Volume intersection with optimal set of directions" -, journal = "P. Reco. Letters" -, volume = "??" -, year = 1991 -, pages = "165--170" -, update = "98.11 bibrelex" +, author = "K. Shanmukh and A. K. Pujari" +, title = "Volume intersection with optimal set of directions" +, journal = "P. Reco. Letters" +, volume = "??" +, year = 1991 +, pages = "165--170" +, update = "98.11 bibrelex" } @article{s-sdbcd-81 -, author = "M. Shantz" -, title = "Surface definition for branching contour-defined objects" -, journal = "Comput. Graph." -, volume = 15 -, year = 1981 -, pages = "242--270" -, update = "98.03 bibrelex" +, author = "M. Shantz" +, title = "Surface definition for branching contour-defined objects" +, journal = "Comput. Graph." +, volume = 15 +, year = 1981 +, pages = "242--270" +, update = "98.03 bibrelex" } @article{sf-copva-79 -, author = "R. Shapira and H. Freeman" -, title = "The cyclic order property of vertices as an aid in scene analysis" -, journal = "Commun. ACM" -, volume = 22 -, year = 1979 -, pages = "3--9" +, author = "R. Shapira and H. Freeman" +, title = "The cyclic order property of vertices as an aid in scene analysis" +, journal = "Commun. ACM" +, volume = 22 +, year = 1979 +, pages = "3--9" } @book{s-daela-91 -, author = "R. E. Shapire" -, title = "The Design and Analysis of Efficient Learning Algorithms" -, publisher = "MIT Press" -, address = "Cambridge, MA" -, year = 1991 +, author = "R. E. Shapire" +, title = "The Design and Analysis of Efficient Learning Algorithms" +, publisher = "MIT Press" +, address = "Cambridge, MA" +, year = 1991 } @article{s-tleup-78 -, author = "H. D. Shapiro" -, title = "Theoretical limitations on the efficient use of parallel memories" -, journal = "IEEE Trans. Comput." -, volume = "??" -, year = 1978 -, update = "97.11 bibrelex" +, author = "H. D. Shapiro" +, title = "Theoretical limitations on the efficient use of parallel memories" +, journal = "IEEE Trans. Comput." +, volume = "??" +, year = 1978 +, update = "97.11 bibrelex" } @article{s-nlsad-81 -, author = "M. Shapiro" -, title = "A Note on {Lee} and {Schachter's} Algorithm for {Delaunay} Triangulation" -, journal = "Internat. J. Comput. Inform. Sci." -, volume = 10 -, number = 6 -, year = 1981 -, pages = "413--418" -, annote = "Modification of Lee and Schachter's second algorithm - such that points outside the convex hull can be added. - $O(n^2)$ worst case, claims $O(n^{4/3})$ in practice." +, author = "M. Shapiro" +, title = "A Note on {Lee} and {Schachter's} Algorithm for {Delaunay} Triangulation" +, journal = "Internat. J. Comput. Inform. Sci." +, volume = 10 +, number = 6 +, year = 1981 +, pages = "413--418" +, annote = "Modification of Lee and Schachter's second algorithm + such that points outside the convex hull can be added. + $O(n^2)$ worst case, claims $O(n^{4/3})$ in practice." } @article{s-mgrsd-97 -, author = "V. Shapiro" -, title = "Maintenance of geometric representations through space decompositions" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "21--56" -, update = "97.07 devillers" +, author = "V. Shapiro" +, title = "Maintenance of geometric representations through space decompositions" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "21--56" +, update = "97.07 devillers" } @techreport{s-rsasf-91 -, author = "V. Shapiro" -, title = "Representations of Semi-Algebraic Sets in Finite Algebras Generated by Space Decompositions" -, type = "Technical {Report}" -, number = "CPA 91-1" -, institution = "Cornell Univ." -, address = "Ithaca, New York" -, month = feb -, year = 1991 -, update = "93.09 milone+mitchell" +, author = "V. Shapiro" +, title = "Representations of Semi-Algebraic Sets in Finite Algebras Generated by Space Decompositions" +, type = "Technical {Report}" +, number = "CPA 91-1" +, institution = "Cornell Univ." +, address = "Ithaca, New York" +, month = feb +, year = 1991 +, update = "93.09 milone+mitchell" } @article{sh-dtdsg-79 -, author = "V. Shapiro and R. M. Haralick" -, title = "Decomposition of Two-Dimensinal Shapes by Graph Theoretic Clusters" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-1" -, number = 1 -, year = 1979 -, pages = "10--20" -, update = "93.09 milone+mitchell" +, author = "V. Shapiro and R. M. Haralick" +, title = "Decomposition of Two-Dimensinal Shapes by Graph Theoretic Clusters" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-1" +, number = 1 +, year = 1979 +, pages = "10--20" +, update = "93.09 milone+mitchell" } @techreport{sv-brrcc1-90 -, author = "V. Shapiro and D. Vossler" -, title = "{B}-rep $\rightarrow$ {CSG} conversion {I}: construction and optimization of {CSG} representations" -, type = "Technical {Report}" -, number = "CPA89-3a" -, institution = "Cornell Programmable Automation" -, address = "Ithaca, NY" -, month = sep -, year = 1990 +, author = "V. Shapiro and D. Vossler" +, title = "{B}-rep $\rightarrow$ {CSG} conversion {I}: construction and optimization of {CSG} representations" +, type = "Technical {Report}" +, number = "CPA89-3a" +, institution = "Cornell Programmable Automation" +, address = "Ithaca, NY" +, month = sep +, year = 1990 } @techreport{sv-brrcc2-90 -, author = "V. Shapiro and D. Vossler" -, title = "{B}-rep $\rightarrow$ {CSG} conversion {II}: efficient {CSG} representations of planar solids" -, type = "Technical {Report}" -, number = "CPA89-4a" -, institution = "Cornell Programmable Automation" -, address = "Ithaca, NY" -, month = may -, year = 1990 +, author = "V. Shapiro and D. Vossler" +, title = "{B}-rep $\rightarrow$ {CSG} conversion {II}: efficient {CSG} representations of planar solids" +, type = "Technical {Report}" +, number = "CPA89-4a" +, institution = "Cornell Programmable Automation" +, address = "Ithaca, NY" +, month = may +, year = 1990 } @techreport{sv-ecrps-89 -, author = "V. Shapiro and D. Vossler" -, title = "Efficient {CSG} representations of planar solids" -, type = "Technical {Report}" -, institution = "Sibley School of M\&AE, Cornell Univ." -, address = "Ithaca, NY" -, year = 1989 -, update = "98.07 bibrelex" +, author = "V. Shapiro and D. Vossler" +, title = "Efficient {CSG} representations of planar solids" +, type = "Technical {Report}" +, institution = "Sibley School of M\&AE, Cornell Univ." +, address = "Ithaca, NY" +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{sv-wipfs-95 -, author = "V. Shapiro and D. L. Vossler" -, title = "What is a parametric family of solids?" -, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" -, site = "Salt Lake City, UT" -, month = may -, year = 1995 -, update = "98.07 bibrelex" +, author = "V. Shapiro and D. L. Vossler" +, title = "What is a parametric family of solids?" +, booktitle = "Proc. 3rd ACM Symposium on Solid Modeling and Applications" +, site = "Salt Lake City, UT" +, month = may +, year = 1995 +, update = "98.07 bibrelex" } @inproceedings{s-nlap2-96 -, author = "Micha Sharir" -, title = "A Near-Linear Algorithm for the Planar $2$-Center Problem" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "106--112" -, cites = "as-pglp-94, d-ptctm-84, e-dtdlp-92, e-fcptc-96, e-samcp-93, h-fatcd-93, hlc-sdase-93, hs-ftp-91, jk-eaetc-94, ks-ebago-93, m-apcad-83, m-ltalp-83, ms-cscgl-84, ol-mcp-81, s-mpafo-94, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Micha Sharir" +, title = "A Near-Linear Algorithm for the Planar $2$-Center Problem" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "106--112" +, cites = "as-pglp-94, d-ptctm-84, e-dtdlp-92, e-fcptc-96, e-samcp-93, h-fatcd-93, hlc-sdase-93, hs-ftp-91, jk-eaetc-94, ks-ebago-93, m-apcad-83, m-ltalp-83, ms-cscgl-84, ol-mcp-81, s-mpafo-94, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @article{s-nlap2-97 -, author = "Micha Sharir" -, title = "A Near-Linear Algorithm for the Planar $2$-Center Problem" -, journal = "Discrete Comput. Geom." -, volume = 18 -, year = 1997 -, pages = "125--134" -, update = "98.03 agarwal" +, author = "Micha Sharir" +, title = "A Near-Linear Algorithm for the Planar $2$-Center Problem" +, journal = "Discrete Comput. Geom." +, volume = 18 +, year = 1997 +, pages = "125--134" +, update = "98.03 agarwal" } @techreport{s-npsap-89t -, author = "Micha Sharir" -, title = "A note on the {Papadimitriou}-{Silverberg} algorithm for planning optimal piecewise-linear motion of a ladder" -, number = "NYU Robotics Report 188" -, institution = "Courant Institute, New York University" -, year = 1989 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Micha Sharir" +, title = "A note on the {Papadimitriou}-{Silverberg} algorithm for planning optimal piecewise-linear motion of a ladder" +, number = "NYU Robotics Report 188" +, institution = "Courant Institute, New York University" +, year = 1989 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{s-npsap-89 -, author = "Micha Sharir" -, title = "A note on the {Papadimitriou}-{Silverberg} algorithm for planning optimal piecewise linear motion of a ladder" -, journal = "Inform. Process. Lett." -, volume = 32 -, year = 1989 -, pages = "187--190" -, keywords = "motion planning" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "A note on the {Papadimitriou}-{Silverberg} algorithm for planning optimal piecewise linear motion of a ladder" +, journal = "Inform. Process. Lett." +, volume = 32 +, year = 1989 +, pages = "187--190" +, keywords = "motion planning" +, update = "98.03 mitchell" } @incollection{s-amp-97 -, author = "Micha Sharir" -, title = "Algorithmic motion planning" -, chapter = 40 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "733--754" -, update = "98.03 mitchell, 97.11 orourke" +, author = "Micha Sharir" +, title = "Algorithmic motion planning" +, chapter = 40 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "733--754" +, update = "98.03 mitchell, 97.11 orourke" } @techreport{s-ampr-88 -, author = "Micha Sharir" -, title = "Algorithmic motion planning in robotics" -, type = "Report" -, number = 392 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1988 -, keywords = "motion planning, robotics, survey paper" -, precedes = "s-ampr-89" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "Algorithmic motion planning in robotics" +, type = "Report" +, number = 392 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1988 +, keywords = "motion planning, robotics, survey paper" +, precedes = "s-ampr-89" +, update = "98.03 mitchell" } @article{s-ampr-89 -, author = "Micha Sharir" -, title = "Algorithmic motion planning in robotics" -, journal = "Computer" -, volume = 22 -, year = 1989 -, pages = "9--20" -, keywords = "motion planning, robotics, survey paper" -, succeeds = "s-ampr-88" -, precedes = "ss-ampr-90" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "Algorithmic motion planning in robotics" +, journal = "Computer" +, volume = 22 +, year = 1989 +, pages = "9--20" +, keywords = "motion planning, robotics, survey paper" +, succeeds = "s-ampr-88" +, precedes = "ss-ampr-90" +, update = "98.03 mitchell" } @article{s-alubl-87 -, author = "Micha Sharir" -, title = "Almost linear upper bounds for the length of general {Davenport}-{Schinzel} sequences" -, journal = "Combinatorica" -, volume = 7 -, year = 1987 -, pages = "131--143" -, keywords = "Davenport-Schinzel sequences" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "Almost linear upper bounds for the length of general {Davenport}-{Schinzel} sequences" +, journal = "Combinatorica" +, volume = 7 +, year = 1987 +, pages = "131--143" +, keywords = "Davenport-Schinzel sequences" +, update = "98.03 mitchell" } @techreport{s-atubl-93t -, author = "Micha Sharir" -, title = "Almost Tight Upper Bounds for Lower Envelopes in Higher Dimensions" -, type = "manuscript" -, year = 1993 -, precedes = "s-atubl-93, s-atubl-94" -, update = "98.11 bibrelex" +, author = "Micha Sharir" +, title = "Almost Tight Upper Bounds for Lower Envelopes in Higher Dimensions" +, type = "manuscript" +, year = 1993 +, precedes = "s-atubl-93, s-atubl-94" +, update = "98.11 bibrelex" } @inproceedings{s-atubl-93 -, author = "Micha Sharir" -, title = "Almost Tight Upper Bounds for Lower Envelopes in Higher Dimensions" -, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '93" -, year = 1993 -, pages = "498--507" -, succeeds = "s-atubl-93t" -, update = "98.11 bibrelex, 98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" +, author = "Micha Sharir" +, title = "Almost Tight Upper Bounds for Lower Envelopes in Higher Dimensions" +, booktitle = "Proc. 34th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '93" +, year = 1993 +, pages = "498--507" +, succeeds = "s-atubl-93t" +, update = "98.11 bibrelex, 98.07 bibrelex, 97.03 agarwal, 94.01 smid, 93.09 milone+mitchell" } %, number = 3 @article{s-atubl-94 -, author = "Micha Sharir" -, title = "Almost Tight Upper Bounds for Lower Envelopes in Higher Dimensions" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "327--345" -, succeeds = "s-atubl-93, s-atubl-93t" -, update = "98.11 bibrelex, 98.03 mitchell, 95.01 orourke+smid" +, author = "Micha Sharir" +, title = "Almost Tight Upper Bounds for Lower Envelopes in Higher Dimensions" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "327--345" +, succeeds = "s-atubl-93, s-atubl-93t" +, update = "98.11 bibrelex, 98.03 mitchell, 95.01 orourke+smid" } @inproceedings{s-ahdvd-95 -, author = "Micha Sharir" -, title = "Arrangements in Higher Dimensions: {Voronoi} Diagrams, Motion Planning, and Other Applications" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "109--121" -, update = "00.03 bibrelex" +, author = "Micha Sharir" +, title = "Arrangements in Higher Dimensions: {Voronoi} Diagrams, Motion Planning, and Other Applications" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "109--121" +, update = "00.03 bibrelex" } @incollection{s-ashd-99 -, author = "Micha Sharir" -, title = "Arrangements of Surfaces in Higher Dimensions" -, editor = "B. Chazelle and J. E. Goodman and R. Pollack" -, booktitle = "Advances in Discrete and Computational Geometry" -, series = "Contemporary Mathematics" -, volume = 223 -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1999 -, pages = "335--353" -, update = "00.03 smid" +, author = "Micha Sharir" +, title = "Arrangements of Surfaces in Higher Dimensions" +, editor = "B. Chazelle and J. E. Goodman and R. Pollack" +, booktitle = "Advances in Discrete and Computational Geometry" +, series = "Contemporary Mathematics" +, volume = 223 +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1999 +, pages = "335--353" +, update = "00.03 smid" } @inproceedings{s-ashde-93 -, author = "Micha Sharir" -, title = "Arrangements of Surfaces in Higher Dimensions: {Envelopes}, Single Cells, and Other Recent Developments" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "181--186" -, cites = "ass-sulbl-89, aps-zsha-93, as-tsbac-90, as-car-92, bhok-sanvp-91, bdsty-arsol-92, bd-olrcu-93, cegs-dwclp-93, cegss-lsca-96, cs-arscg-89, e-acg-87, es-vda-86, fl-vdmpp-91, gks-ricdv-92, gmr-vdmpp-91t, gss-gmppt-89, h-ampac-92, hs-nblet-93, hs-nqbmp-93t, hs-cscas, hs-ndssg-86, ms-eracu-91, ps-ueplf-89, p-lmps3-93, pr-ncdsp-93, ss-tddsp-90, s-ksacs-91, s-atubl-93t, cegss-cfals-93, as-dssga-00, ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" +, author = "Micha Sharir" +, title = "Arrangements of Surfaces in Higher Dimensions: {Envelopes}, Single Cells, and Other Recent Developments" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "181--186" +, cites = "ass-sulbl-89, aps-zsha-93, as-tsbac-90, as-car-92, bhok-sanvp-91, bdsty-arsol-92, bd-olrcu-93, cegs-dwclp-93, cegss-lsca-96, cs-arscg-89, e-acg-87, es-vda-86, fl-vdmpp-91, gks-ricdv-92, gmr-vdmpp-91t, gss-gmppt-89, h-ampac-92, hs-nblet-93, hs-nqbmp-93t, hs-cscas, hs-ndssg-86, ms-eracu-91, ps-ueplf-89, p-lmps3-93, pr-ncdsp-93, ss-tddsp-90, s-ksacs-91, s-atubl-93t, cegss-cfals-93, as-dssga-00, ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 bibrelex, 93.09 milone+mitchell" } @incollection{s-dsstg-88 -, author = "Micha Sharir" -, title = "Davenport-{Schinzel} sequences and their geometric applications" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1988 -, pages = "253--278" -, keywords = "Davenport-Schinzel sequences, survey paper" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "Micha Sharir" +, title = "Davenport-{Schinzel} sequences and their geometric applications" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1988 +, pages = "253--278" +, keywords = "Davenport-Schinzel sequences, survey paper" +, update = "99.11 bibrelex, 98.03 mitchell" } @inproceedings{s-eappt-87 -, author = "Micha Sharir" -, title = "Efficient algorithms for planning purely translational collision-free motion in two and three dimensions" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1987 -, pages = "1326--1331" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "Efficient algorithms for planning purely translational collision-free motion in two and three dimensions" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1987 +, pages = "1326--1331" +, update = "98.03 mitchell" } @article{s-ilbld-88 -, author = "Micha Sharir" -, title = "Improved lower bounds on the length of {Davenport}-{Schinzel} sequences" -, journal = "Combinatorica" -, volume = 8 -, year = 1988 -, pages = "117--124" -, keywords = "Davenport-Schinzel sequences" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "Improved lower bounds on the length of {Davenport}-{Schinzel} sequences" +, journal = "Combinatorica" +, volume = 8 +, year = 1988 +, pages = "117--124" +, keywords = "Davenport-Schinzel sequences" +, update = "98.03 mitchell" } @inproceedings{s-ipca-96 -, author = "Micha Sharir" -, title = "Improved $p$-Center Algorithms" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = 85 -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Micha Sharir" +, title = "Improved $p$-Center Algorithms" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = 85 +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{s-icpps-85 -, author = "Micha Sharir" -, title = "Intersection and closest-pair problems for a set of planar discs" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "448--468" -, keywords = "Voronoi diagrams" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "Intersection and closest-pair problems for a set of planar discs" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "448--468" +, keywords = "Voronoi diagrams" +, update = "98.03 mitchell" } @article{s-ksrh-93 -, author = "Micha Sharir" -, title = "$k$-sets and random hulls" -, journal = "Combinatorica" -, volume = 13 -, year = 1993 -, pages = "483--495" -, update = "98.03 mitchell, 94.05 sharir" +, author = "Micha Sharir" +, title = "$k$-sets and random hulls" +, journal = "Combinatorica" +, volume = 13 +, year = 1993 +, pages = "483--495" +, update = "98.03 mitchell, 94.05 sharir" } @article{s-ksacs-91 -, author = "Micha Sharir" -, title = "On $k$-sets in arrangements of curves and surfaces" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "593--613" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "On $k$-sets in arrangements of curves and surfaces" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "593--613" +, update = "98.03 mitchell" } @techreport{s-spacp-85 -, author = "Micha Sharir" -, title = "On shortest paths amdist convex polyhedra" -, number = 181 -, institution = "Computer Science Division, Courant Institute of Mathematical Sciences" -, year = 1985 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Micha Sharir" +, title = "On shortest paths amdist convex polyhedra" +, number = 181 +, institution = "Computer Science Division, Courant Institute of Mathematical Sciences" +, year = 1985 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{s-spacp-87 -, author = "Micha Sharir" -, title = "On shortest paths amidst convex polyhedra" -, journal = "SIAM J. Comput." -, volume = 16 -, year = 1987 -, pages = "561--572" -, keywords = "shortest paths, polyhedra, convex, Davenport-Schinzel sequences, Voronoi diagrams" -, succeeds = "sb-spacp-86" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "On shortest paths amidst convex polyhedra" +, journal = "SIAM J. Comput." +, volume = 16 +, year = 1987 +, pages = "561--572" +, keywords = "shortest paths, polyhedra, convex, Davenport-Schinzel sequences, Voronoi diagrams" +, succeeds = "sb-spacp-86" +, update = "98.03 mitchell" } @techreport{s-tddsp-85 -, author = "Micha Sharir" -, title = "On the two-dimensional {Davenport}-{Schinzel} problem" -, type = "Report" -, number = 193 -, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1985 -, keywords = "Davenport-Schinzel sequences, upper/lower envelope" -, precedes = "ss-tddsp-90" -, update = "98.03 mitchell" +, author = "Micha Sharir" +, title = "On the two-dimensional {Davenport}-{Schinzel} problem" +, type = "Report" +, number = 193 +, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1985 +, keywords = "Davenport-Schinzel sequences, upper/lower envelope" +, precedes = "ss-tddsp-90" +, update = "98.03 mitchell" } @inproceedings{s-rdtas-99 -, author = "M. Sharir" -, title = "Recent developments in the theory of arrangements of surfaces" -, booktitle = "Proc. 19th Conf. Found. Softw. Tech. Theoret. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 1738 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "1--20" -, update = "00.03 smid" +, author = "M. Sharir" +, title = "Recent developments in the theory of arrangements of surfaces" +, booktitle = "Proc. 19th Conf. Found. Softw. Tech. Theoret. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 1738 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "1--20" +, update = "00.03 smid" } @inproceedings{s-cstre-01 -, author = "Micha Sharir" -, title = "The Clarkson-Shor Technique Revisited and Extended" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "252--256" -, update = "01.11 pocchiola" +, author = "Micha Sharir" +, title = "The Clarkson-Shor Technique Revisited and Extended" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "252--256" +, update = "01.11 pocchiola" } @article{s-swrpp-88 -, author = "Micha Sharir" -, title = "The shortest watchtower and related problems for polyhedral terrains" -, journal = "Inform. Process. Lett." -, volume = 29 -, number = 5 -, year = 1988 -, pages = "265--270" -, keywords = "visibility, polyhedral terrain" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Micha Sharir" +, title = "The shortest watchtower and related problems for polyhedral terrains" +, journal = "Inform. Process. Lett." +, volume = 29 +, number = 5 +, year = 1988 +, pages = "265--270" +, keywords = "visibility, polyhedral terrain" +, update = "98.07 bibrelex, 98.03 mitchell" } @book{sa-dsstg-95 -, author = "Micha Sharir and P. K. Agarwal" -, title = "{Davenport}-{Schinzel} Sequences and Their Geometric Applications" -, publisher = "Cambridge University Press" -, address = "New York" -, year = 1995 -, update = "98.03 mitchell, 95.09 agarwal, 94.05 matousek" +, author = "Micha Sharir and P. K. Agarwal" +, title = "{Davenport}-{Schinzel} Sequences and Their Geometric Applications" +, publisher = "Cambridge University Press" +, address = "New York" +, year = 1995 +, update = "98.03 mitchell, 95.09 agarwal, 94.05 matousek" } @article{sa-pmp4v-84 -, author = "Micha Sharir and E. Ariel-Sheffi" -, title = "On the ``piano movers'' problem {IV}: various decomposable two-dimensional motion planning problems" -, journal = "Commun. Pure Appl. Math." -, volume = 37 -, year = 1984 -, pages = "479--493" -, keywords = "motion planning" -, update = "98.03 mitchell" +, author = "Micha Sharir and E. Ariel-Sheffi" +, title = "On the ``piano movers'' problem {IV}: various decomposable two-dimensional motion planning problems" +, journal = "Commun. Pure Appl. Math." +, volume = 37 +, year = 1984 +, pages = "479--493" +, keywords = "motion planning" +, update = "98.03 mitchell" } @inproceedings{sb-spacp-86 -, author = "Micha Sharir and A. Baltsan" -, title = "On shortest paths amidst convex polyhedra" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "193--206" -, precedes = "s-spacp-87" -, cites = "sb-spbtc-85, hs-ndssg-84, m-fspcp-85, rs-spesp-85, s-alubl-87, s-spacp-85, ss-spps-86, s-pds-74, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Micha Sharir and A. Baltsan" +, title = "On shortest paths amidst convex polyhedra" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "193--206" +, precedes = "s-spacp-87" +, cites = "sb-spbtc-85, hs-ndssg-84, m-fspcp-85, rs-spesp-85, s-alubl-87, s-spacp-85, ss-spps-86, s-pds-74, ZZZ" +, update = "98.03 bibrelex+mitchell" } @techreport{sb-spbtc-85 -, author = "Micha Sharir and A. Baltsan" -, title = "On shortest paths between two convex polyhedra" -, type = "Report" -, number = 180 -, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1985 -, precedes = "bs-spbtc-88" -, update = "98.03 mitchell" +, author = "Micha Sharir and A. Baltsan" +, title = "On shortest paths between two convex polyhedra" +, type = "Report" +, number = 180 +, institution = "Dept. Comput. Sci., Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1985 +, precedes = "bs-spbtc-88" +, update = "98.03 mitchell" } @inproceedings{scklps-gadss-86 -, author = "Micha Sharir and R. Cole and K. Kedem and D. Leven and R. Pollack and S. Sifrony" -, title = "Geometric applications of {Davenport}-{Schinzel} sequences" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "77--86" -, keywords = "Davenport-Schinzel sequences, motion planning, visibility" -, comments = "In five journal papers: \cite{ls-ncfcc-87}, - \cite{pss-stsps-88}, \cite{ks-empac-90}, - \cite{cs-vppt-89}, \cite{ws-prnds-88}" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Micha Sharir and R. Cole and K. Kedem and D. Leven and R. Pollack and S. Sifrony" +, title = "Geometric applications of {Davenport}-{Schinzel} sequences" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "77--86" +, keywords = "Davenport-Schinzel sequences, motion planning, visibility" +, comments = "In five journal papers: \cite{ls-ncfcc-87}, + \cite{pss-stsps-88}, \cite{ks-empac-90}, + \cite{cs-vppt-89}, \cite{ws-prnds-88}" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{sl-mfipc-85 -, author = "Micha Sharir and R. Livne" -, title = "On minima of functions, intersection patterns of curves and {Davenport}-{Schinzel} sequences" -, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1985 -, pages = "312--320" -, update = "98.03 mitchell, 94.05 sharir" +, author = "Micha Sharir and R. Livne" +, title = "On minima of functions, intersection patterns of curves and {Davenport}-{Schinzel} sequences" +, booktitle = "Proc. 26th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1985 +, pages = "312--320" +, update = "98.03 mitchell, 94.05 sharir" } @article{so-sosah-92 -, author = "Micha Sharir and M. Overmars" -, title = "A simple output-sensitive algorithm for hidden-surface removal" -, journal = "ACM Trans. Graph." -, volume = 11 -, year = 1992 -, pages = "1--11" -, update = "98.03 mitchell" +, author = "Micha Sharir and M. Overmars" +, title = "A simple output-sensitive algorithm for hidden-surface removal" +, journal = "ACM Trans. Graph." +, volume = 11 +, year = 1992 +, pages = "1--11" +, update = "98.03 mitchell" } @inproceedings{ss-spps-84 -, author = "Micha Sharir and A. Schorr" -, title = "On shortest paths in polyhedral spaces" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1984 -, pages = "144--153" -, precedes = "ss-spps-86" -, update = "98.03 mitchell" +, author = "Micha Sharir and A. Schorr" +, title = "On shortest paths in polyhedral spaces" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1984 +, pages = "144--153" +, precedes = "ss-spps-86" +, update = "98.03 mitchell" } @article{ss-spps-86 -, author = "Micha Sharir and A. Schorr" -, title = "On shortest paths in polyhedral spaces" -, journal = "SIAM J. Comput." -, volume = 15 -, year = 1986 -, pages = "193--215" -, keywords = "shortest paths, three-dimensional, polyhedra" -, succeeds = "ss-spps-84" -, update = "98.03 mitchell" +, author = "Micha Sharir and A. Schorr" +, title = "On shortest paths in polyhedral spaces" +, journal = "SIAM J. Comput." +, volume = 15 +, year = 1986 +, pages = "193--215" +, keywords = "shortest paths, three-dimensional, polyhedra" +, succeeds = "ss-spps-84" +, update = "98.03 mitchell" } @inproceedings{ss-cmpti-88 -, author = "Micha Sharir and S. Sifrony" -, title = "Coordinated motion planning for two independent robots" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "319--328" -, keywords = "motion planning, configuration space" -, precedes = "ss-cmpti-91" -, cites = "ass-sulbl-87, as-tsbac-88, c-crmp-87, fwy-cmtra-86, gss-gmppt-88, hs-ndssg-86, hw-dt-48, klps-ujrcf-86, ko-mltdu-87, ks-empac-90, l-bc-61, ls-esmpa-87, oy-rmpmd-85, osy-gvdl-86, osy-gvdl-87, pss-stsps-88, ra-amprc-85, ss-pmp1c-83, ss-pmp2g-83, ss-pmp3c-83, ss-empae-85, ss-nempa-87, y-cmsd-84, y-oavds-87, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Micha Sharir and S. Sifrony" +, title = "Coordinated motion planning for two independent robots" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "319--328" +, keywords = "motion planning, configuration space" +, precedes = "ss-cmpti-91" +, cites = "ass-sulbl-87, as-tsbac-88, c-crmp-87, fwy-cmtra-86, gss-gmppt-88, hs-ndssg-86, hw-dt-48, klps-ujrcf-86, ko-mltdu-87, ks-empac-90, l-bc-61, ls-esmpa-87, oy-rmpmd-85, osy-gvdl-86, osy-gvdl-87, pss-stsps-88, ra-amprc-85, ss-pmp1c-83, ss-pmp2g-83, ss-pmp3c-83, ss-empae-85, ss-nempa-87, y-cmsd-84, y-oavds-87, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{ss-cmpti-91 -, author = "Micha Sharir and S. Sifrony" -, title = "Coordinated motion planning for two independent robots" -, journal = "Ann. Math. Artif. Intell." -, volume = 3 -, year = 1991 -, pages = "107--130" -, keywords = "motion planning, configuration space" -, succeeds = "ss-cmpti-88" -, update = "98.03 mitchell" +, author = "Micha Sharir and S. Sifrony" +, title = "Coordinated motion planning for two independent robots" +, journal = "Ann. Math. Artif. Intell." +, volume = 3 +, year = 1991 +, pages = "107--130" +, keywords = "motion planning, configuration space" +, succeeds = "ss-cmpti-88" +, update = "98.03 mitchell" } @article{ss-tbpli-91 -, author = "Micha Sharir and Steven S. Skiena" -, title = "Tight bounds on a problem of lines and intersections" -, journal = "Discrete Math." -, volume = 89 -, year = 1991 -, pages = "313--314" -, update = "98.03 mitchell" +, author = "Micha Sharir and Steven S. Skiena" +, title = "Tight bounds on a problem of lines and intersections" +, journal = "Discrete Math." +, volume = 89 +, year = 1991 +, pages = "313--314" +, update = "98.03 mitchell" } @inproceedings{sst-ibkst-00a -, author = "Micha Sharir and Shakhar Smorodinsky and G{\'a}bor Tardos" -, title = "An Improved Bound for $k$-Sets in Three Dimensions" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "43--49" -, update = "00.11 jones" +, author = "Micha Sharir and Shakhar Smorodinsky and G{\'a}bor Tardos" +, title = "An Improved Bound for $k$-Sets in Three Dimensions" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "43--49" +, update = "00.11 jones" } @inproceedings{sst-ibkst-00e -, author = "Micha Sharir and Shakhar Smorodinsky and G{\'a}bor Tardos" -, title = "An Improved Bound for {$k$}-Sets in Three Dimensions" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "132--135" -, update = "00.03 bibrelex" +, author = "Micha Sharir and Shakhar Smorodinsky and G{\'a}bor Tardos" +, title = "An Improved Bound for {$k$}-Sets in Three Dimensions" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "132--135" +, update = "00.03 bibrelex" } @techreport{st-epcp-91 -, author = "M. Sharir and S. Toledo" -, title = "Extremal polygon containment problems" -, type = "Technical {Report}" -, number = "228/91" -, institution = "Dept. Comput. Sci., Tel Aviv Univ." -, address = "Tel Aviv, Israel" -, year = 1991 -, succeeds = "st-epcp-91t" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "M. Sharir and S. Toledo" +, title = "Extremal polygon containment problems" +, type = "Technical {Report}" +, number = "228/91" +, institution = "Dept. Comput. Sci., Tel Aviv Univ." +, address = "Tel Aviv, Israel" +, year = 1991 +, succeeds = "st-epcp-91t" +, update = "98.11 bibrelex, 98.03 bibrelex" } @techreport{st-epcp-91t -, author = "M. Sharir and S. Toledo" -, title = "Extremal polygon containment problems" -, type = "manuscript" -, year = 1991 -, precedes = "st-epcp-91, t-epcpo-91, st-epcp-94, t-epcp-91" -, update = "98.11 bibrelex" +, author = "M. Sharir and S. Toledo" +, title = "Extremal polygon containment problems" +, type = "manuscript" +, year = 1991 +, precedes = "st-epcp-91, t-epcpo-91, st-epcp-94, t-epcp-91" +, update = "98.11 bibrelex" } @article{st-epcp-94 -, author = "Micha Sharir and S. Toledo" -, title = "Extremal polygon containment problems" -, journal = "Comput. Geom. Theory Appl." -, volume = 4 -, year = 1994 -, pages = "99--118" -, succeeds = "st-epcp-91t" -, update = "98.11 bibrelex, 98.03 mitchell, 95.09 agarwal" +, author = "Micha Sharir and S. Toledo" +, title = "Extremal polygon containment problems" +, journal = "Comput. Geom. Theory Appl." +, volume = 4 +, year = 1994 +, pages = "99--118" +, succeeds = "st-epcp-91t" +, update = "98.11 bibrelex, 98.03 mitchell, 95.09 agarwal" } @inproceedings{sw-cblpr-92 -, author = "Micha Sharir and Emo Welzl" -, title = "A combinatorial bound for linear programming and related problems" -, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 577 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "569--579" -, update = "98.03 mitchell" +, author = "Micha Sharir and Emo Welzl" +, title = "A combinatorial bound for linear programming and related problems" +, booktitle = "Proc. 9th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 577 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "569--579" +, update = "98.03 mitchell" } @inproceedings{sw-rpppp-96 -, author = "Micha Sharir and Emo Welzl" -, title = "Rectilinear and Polygonal $p$-Piercing and $p$-Center Problems" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "122--132" -, cites = "as-atgo-95, ast-apsgo-94, a-httgl-94, a-bbhdn-94, cm-ltdao-93, dg-ipbr-82, d-pcpho-84, d-rpcp-87, e-hrctt-93, eh-gssml-72, fw-fll-74, f-oatp-91, fj-csrxm-82, fj-fkppc-83, fj-gsrsm-84, gt-ltasc-85, gks-sgsop-95, g-agtpg-80, kh-aanlp-79, kn-cdg-96, kn-pso-96, kc-ltawt-92, kl-wrccp-91, klc-rmcp-87, klc-oaarm-90, msw-sblp-96, m-ltalp-83, m-we1cp-83, m-apcad-83, mt-nrcpc-83, ms-cscgl-84, ol-mcp-81, s-nlap2-96, sw-cblpr-92, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Micha Sharir and Emo Welzl" +, title = "Rectilinear and Polygonal $p$-Piercing and $p$-Center Problems" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "122--132" +, cites = "as-atgo-95, ast-apsgo-94, a-httgl-94, a-bbhdn-94, cm-ltdao-93, dg-ipbr-82, d-pcpho-84, d-rpcp-87, e-hrctt-93, eh-gssml-72, fw-fll-74, f-oatp-91, fj-csrxm-82, fj-fkppc-83, fj-gsrsm-84, gt-ltasc-85, gks-sgsop-95, g-agtpg-80, kh-aanlp-79, kn-cdg-96, kn-pso-96, kc-ltawt-92, kl-wrccp-91, klc-rmcp-87, klc-oaarm-90, msw-sblp-96, m-ltalp-83, m-we1cp-83, m-apcad-83, mt-nrcpc-83, ms-cscgl-84, ol-mcp-81, s-nlap2-96, sw-cblpr-92, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @techreport{sy-ricdd-90 -, author = "Micha Sharir and E. Yaniv" -, title = "Randomized incremental construction of {Delaunay} diagrams: {Theory} and Practice" -, institution = "Tel Aviv Univ, Israel" -, month = jul -, year = 1990 -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "Micha Sharir and E. Yaniv" +, title = "Randomized incremental construction of {Delaunay} diagrams: {Theory} and Practice" +, institution = "Tel Aviv Univ, Israel" +, month = jul +, year = 1990 +, update = "98.03 mitchell, 93.09 milone+mitchell" } @inproceedings{sw-tttpv-95 -, author = "A. Shashua and M. Werman" -, title = "On the Trilinear Tensor of Three Perspective Views and its Underlying Geometry" -, booktitle = "Proc. International Conference on Computer Vision" -, year = 1995 -, update = "96.01 werman" +, author = "A. Shashua and M. Werman" +, title = "On the Trilinear Tensor of Three Perspective Views and its Underlying Geometry" +, booktitle = "Proc. International Conference on Computer Vision" +, year = 1995 +, update = "96.01 werman" } @inproceedings{sz-aqrld-96 -, author = "H. Shatkay and S. Zdonik" -, title = "Approximate queries and representations for large data sequences" -, booktitle = "ICDE'96" -, year = 1996 -, update = "00.11 smid, 00.07 smid, 98.07 bibrelex" +, author = "H. Shatkay and S. Zdonik" +, title = "Approximate queries and representations for large data sequences" +, booktitle = "ICDE'96" +, year = 1996 +, update = "00.11 smid, 00.07 smid, 98.07 bibrelex" } @article{sp-msfmn-78 -, author = "R. D. Shaw and R. G. Pitchen" -, title = "Modifications to the Suhara-Fukuda Method of Network Generation" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 12 -, year = 1978 -, pages = "96--99" -, annote = "Modified S-F algorithm. Generates interior nodes on - equilateral triangle grid and then triangulates - resulting set. Builds triangle on each ``open'' edge in - turn." +, author = "R. D. Shaw and R. G. Pitchen" +, title = "Modifications to the Suhara-Fukuda Method of Network Generation" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 12 +, year = 1978 +, pages = "96--99" +, annote = "Modified S-F algorithm. Generates interior nodes on + equilateral triangle grid and then triangulates + resulting set. Builds triangle on each ``open'' edge in + turn." } @article{sar-sdmsc-96 -, author = "D. J. Sheehy and C. G. Armstrong and D. J. Robinson" -, title = "Shape Description by Medial Surface Construction" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 2 -, number = 1 -, month = mar -, year = 1996 -, pages = "62--72" -, update = "96.09 held" +, author = "D. J. Sheehy and C. G. Armstrong and D. J. Robinson" +, title = "Shape Description by Medial Surface Construction" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 2 +, number = 1 +, month = mar +, year = 1996 +, pages = "62--72" +, update = "96.09 held" } @inproceedings{sfyc-obdmcs-96 -, author = "Raj Shekhar and Elias Fayyad and Roni Yagel and J. Fredrick Cornhill" -, title = "Octree-Based Decimation of Marching Cubes Surfaces" -, editor = "Roni Yagel and Gregory M. Nielson" -, booktitle = "Proceedings of the Conference on Visualization" -, publisher = "IEEE" -, address = "Los Alamitos" -, year = 1996 -, pages = "335--344" -, isbn = "0-7803-3673-9" -, update = "01.07 wenger" +, author = "Raj Shekhar and Elias Fayyad and Roni Yagel and J. Fredrick Cornhill" +, title = "Octree-Based Decimation of Marching Cubes Surfaces" +, editor = "Roni Yagel and Gregory M. Nielson" +, booktitle = "Proceedings of the Conference on Visualization" +, publisher = "IEEE" +, address = "Los Alamitos" +, year = 1996 +, pages = "335--344" +, isbn = "0-7803-3673-9" +, update = "01.07 wenger" } @inproceedings{sn-anpld-89 -, author = "C. Shen and G. Nagy" -, title = "Autonomous navigation to provide long-distance surface traverses for {Mars} rover sample return missions" -, booktitle = "Proc. IEEE Internat. Sympos. Intelligent Control" -, year = 1989 -, pages = "362--367" -, update = "97.11 bibrelex" +, author = "C. Shen and G. Nagy" +, title = "Autonomous navigation to provide long-distance surface traverses for {Mars} rover sample return missions" +, booktitle = "Proc. IEEE Internat. Sympos. Intelligent Control" +, year = 1989 +, pages = "362--367" +, update = "97.11 bibrelex" } @techreport{se-tlbsv-86 -, author = "X. Shen and H. Edelsbrunner" -, title = "A tight lower bound on the size of visibility graphs" -, number = "UIUCDCS-R-86-1299" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1986 -, precedes = "se-tlbsv-87" -, update = "98.11 bibrelex" +, author = "X. Shen and H. Edelsbrunner" +, title = "A tight lower bound on the size of visibility graphs" +, number = "UIUCDCS-R-86-1299" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1986 +, precedes = "se-tlbsv-87" +, update = "98.11 bibrelex" } @article{se-tlbsv-87 -, author = "X. Shen and H. Edelsbrunner" -, title = "A tight lower bound on the size of visibility graphs" -, journal = "Inform. Process. Lett." -, volume = 26 -, year = 1987 -, pages = "61--64" -, succeeds = "se-tlbsv-86" -, update = "98.11 bibrelex" +, author = "X. Shen and H. Edelsbrunner" +, title = "A tight lower bound on the size of visibility graphs" +, journal = "Inform. Process. Lett." +, volume = 26 +, year = 1987 +, pages = "61--64" +, succeeds = "se-tlbsv-86" +, update = "98.11 bibrelex" } @article{sh-nmvg-93 -, author = "X. Shen and Q. Hu" -, title = "A note on minimal visibility graphs" -, journal = "Inform. Process. Lett." -, volume = 46 -, year = 1993 -, pages = 101 -, update = "98.11 bibrelex" +, author = "X. Shen and Q. Hu" +, title = "A note on minimal visibility graphs" +, journal = "Inform. Process. Lett." +, volume = 46 +, year = 1993 +, pages = 101 +, update = "98.11 bibrelex" } @incollection{s-cilc-94 -, author = "Ching-Kuang Shene" -, title = "Computing the Intersection of a Line and a Cylinder" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "353--355" -, keywords = "quadric surface, ray tracing, cone" -, update = "94.09 heckbert" -, annote = "Geometric method for intersecting a ray with a cylinder." +, author = "Ching-Kuang Shene" +, title = "Computing the Intersection of a Line and a Cylinder" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "353--355" +, keywords = "quadric surface, ray tracing, cone" +, update = "94.09 heckbert" +, annote = "Geometric method for intersecting a ray with a cylinder." } @incollection{s-ecc-94 -, author = "Ching-Kuang Shene" -, title = "Equations of Cylinders and Cones" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "321--323" -, keywords = "quadric surface" -, update = "94.09 heckbert" -, annote = "Derives the implicit equations of cylinders and cones." +, author = "Ching-Kuang Shene" +, title = "Equations of Cylinders and Cones" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "321--323" +, keywords = "quadric surface" +, update = "94.09 heckbert" +, annote = "Derives the implicit equations of cylinders and cones." } @techreport{sj-lditn-91 -, author = "C.-K. Shene and J. K. Johnstone" -, title = "On the lower degree intersections of two natural quadrics, part {I}: algorithms" -, type = "Technical {Report}" -, number = "JHU-91-15" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = sep -, year = 1991 -, succeeds = "sj-pinq-91" +, author = "C.-K. Shene and J. K. Johnstone" +, title = "On the lower degree intersections of two natural quadrics, part {I}: algorithms" +, type = "Technical {Report}" +, number = "JHU-91-15" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = sep +, year = 1991 +, succeeds = "sj-pinq-91" } @inproceedings{sj-pinq-91 -, author = "C.-K. Shene and J. K. Johnstone" -, title = "On the planar intersection of natural quadrics" -, booktitle = "Proc. ACM Sympos. Solid Modeling Found. CAD/CAM Appl." -, year = 1991 -, pages = "233--242" -, precedes = "sj-lditn-91" +, author = "C.-K. Shene and J. K. Johnstone" +, title = "On the planar intersection of natural quadrics" +, booktitle = "Proc. ACM Sympos. Solid Modeling Found. CAD/CAM Appl." +, year = 1991 +, pages = "233--242" +, precedes = "sj-lditn-91" } @article{sh-ttsps-92 -, author = "X. Sheng and B. E. Hirsch" -, title = "Triangulation of trimmed surfaces in parametric space" -, journal = "Comput. Aided Design" -, volume = 24 -, year = 1992 -, pages = "437--444" -, update = "98.07 bibrelex" +, author = "X. Sheng and B. E. Hirsch" +, title = "Triangulation of trimmed surfaces in parametric space" +, journal = "Comput. Aided Design" +, volume = 24 +, year = 1992 +, pages = "437--444" +, update = "98.07 bibrelex" } @inproceedings{st-tsms-91 -, author = "X. Sheng and U. Tucholke" -, title = "On triangulating suface models for {SLA}" -, booktitle = "Proc. 2nd Internat. Conf. on Rapid Prototyping" -, site = "Dayton, OH" -, year = 1991 -, pages = "236--239" -, update = "98.07 bibrelex" +, author = "X. Sheng and U. Tucholke" +, title = "On triangulating suface models for {SLA}" +, booktitle = "Proc. 2nd Internat. Conf. on Rapid Prototyping" +, site = "Dayton, OH" +, year = 1991 +, pages = "236--239" +, update = "98.07 bibrelex" } @article{sc-mesaa-86 -, author = "D. N. Shenton and Z. J. Cendes" -, title = "{MAX}---An Expert System for automatic adaptive magnetics modelling" -, journal = "IEEE Trans. Magn." -, volume = "MAG-22" -, year = 1986 -, pages = "805--807" -, annote = "DT mesh refined by adding points at circumcentre - instead of centroid." +, author = "D. N. Shenton and Z. J. Cendes" +, title = "{MAX}---An Expert System for automatic adaptive magnetics modelling" +, journal = "IEEE Trans. Magn." +, volume = "MAG-22" +, year = 1986 +, pages = "805--807" +, annote = "DT mesh refined by adding points at circumcentre + instead of centroid." } @article{sc-tdfem-85 -, author = "D. N. Shenton and Z. J. Cendes" -, title = "Three-Dimensional Finite Element Mesh Generation Using {Delaunay} Tessellation" -, journal = "IEEE Trans. Magn." -, volume = "MAG-21" -, number = 6 -, year = 1985 -, pages = "2535--2538" -, annote = "Switching extended to 3D basic incremental - algorithm." +, author = "D. N. Shenton and Z. J. Cendes" +, title = "Three-Dimensional Finite Element Mesh Generation Using {Delaunay} Tessellation" +, journal = "IEEE Trans. Magn." +, volume = "MAG-21" +, number = 6 +, year = 1985 +, pages = "2535--2538" +, annote = "Switching extended to 3D basic incremental + algorithm." } @inproceedings{s-tdifi-68 -, author = "D. Shepard" -, title = "A two-dimensional interpolation function for irregularly spaced data" -, booktitle = "Proc. 23rd Nat. Conf. ACM" -, year = 1968 -, pages = "517--524" +, author = "D. Shepard" +, title = "A two-dimensional interpolation function for irregularly spaced data" +, booktitle = "Proc. 23rd Nat. Conf. ACM" +, year = 1968 +, pages = "517--524" } @article{s-spcp-66 -, author = "G. C. Shepard" -, title = "The {Steiner} point of a convex polytope" -, journal = "Canad. J. Math." -, volume = 18 -, year = 1966 -, pages = "1294--1300" -, update = "98.03 bibrelex" +, author = "G. C. Shepard" +, title = "The {Steiner} point of a convex polytope" +, journal = "Canad. J. Math." +, volume = 18 +, year = 1966 +, pages = "1294--1300" +, update = "98.03 bibrelex" } @article{s-cpcn-75 -, author = "G. C. Shephard" -, title = "Convex Polytopes with Convex Nets" -, journal = "Math. Proc. Camb. Phil. Soc." -, volume = 78 -, year = 1975 -, pages = "389--403" -, update = "94.09 orourke" +, author = "G. C. Shephard" +, title = "Convex Polytopes with Convex Nets" +, journal = "Math. Proc. Camb. Phil. Soc." +, volume = 78 +, year = 1975 +, pages = "389--403" +, update = "94.09 orourke" } @article{s-aagcf-88 -, author = "M. S. Shephard" -, title = "Approaches to the automatic generation and control of finite element meshes" -, journal = "Appl. Mech. Rev." -, volume = 41 -, year = 1988 -, pages = "169--185" -, update = "97.11 bibrelex" +, author = "M. S. Shephard" +, title = "Approaches to the automatic generation and control of finite element meshes" +, journal = "Appl. Mech. Rev." +, volume = 41 +, year = 1988 +, pages = "169--185" +, update = "97.11 bibrelex" } @article{s-aamg-85 -, author = "M. S. Shephard" -, title = "Automatic and adaptive mesh generation" -, journal = "IEEE Trans. Magn." -, volume = "MAG-21" -, year = 1985 -, pages = "2484--2489" +, author = "M. S. Shephard" +, title = "Automatic and adaptive mesh generation" +, journal = "IEEE Trans. Magn." +, volume = "MAG-21" +, year = 1985 +, pages = "2484--2489" } @article{sl-agctd-91 -, author = "M. S. Shephard and J. A. Lo" -, title = "Automatic Generation of coarse three-dimensional meshes using the functionality of a geometric modeler" -, journal = "Advances in Engineering Software and Workstations" -, volume = 13 -, number = "5--6" -, month = sep -, year = 1991 -, pages = "273--286" -, annote = "Subdivides by chopping of tetrahedra. Tetra quality - measure is $\mbox{Volume}^2/\mbox{Area}^3$." +, author = "M. S. Shephard and J. A. Lo" +, title = "Automatic Generation of coarse three-dimensional meshes using the functionality of a geometric modeler" +, journal = "Advances in Engineering Software and Workstations" +, volume = 13 +, number = "5--6" +, month = sep +, year = 1991 +, pages = "273--286" +, annote = "Subdivides by chopping of tetrahedra. Tetra quality + measure is $\mbox{Volume}^2/\mbox{Area}^3$." } @article{syb-amgae-85 -, author = "M. S. Shephard and M. A. Yerry and P. O. Baehmann" -, title = "Automatic mesh generation allowing for efficient a priori and posteriori mesh refinement" -, journal = "Comput. Methods Appl. Mech. Engrg." -, volume = 55 -, year = 1985 -, pages = "161--180" +, author = "M. S. Shephard and M. A. Yerry and P. O. Baehmann" +, title = "Automatic mesh generation allowing for efficient a priori and posteriori mesh refinement" +, journal = "Comput. Methods Appl. Mech. Engrg." +, volume = 55 +, year = 1985 +, pages = "161--180" } @article{sk-ctnmx-78 -, author = "L. A. Shepp and J. B. Kruskal" -, title = "Computerized tomography: the new medical {X}-ray technology" -, journal = "Amer. Math. Monthly" -, volume = 85 -, year = 1978 -, pages = "420--439" -, update = "97.11 bibrelex" +, author = "L. A. Shepp and J. B. Kruskal" +, title = "Computerized tomography: the new medical {X}-ray technology" +, journal = "Amer. Math. Monthly" +, volume = 85 +, year = 1978 +, pages = "420--439" +, update = "97.11 bibrelex" } @techreport{s-qrm-78 -, author = "S. W. Sheppard" -, title = "Quaternion from Rotation Matrix" -, type = "NASA Contract" -, number = "NAS 9-13809" -, institution = "The Charles Stark Draper Laboratory, Inc." -, address = "Cambridge, MA" -, year = 1978 -, update = "98.11 bibrelex" +, author = "S. W. Sheppard" +, title = "Quaternion from Rotation Matrix" +, type = "NASA Contract" +, number = "NAS 9-13809" +, institution = "The Charles Stark Draper Laboratory, Inc." +, address = "Cambridge, MA" +, year = 1978 +, update = "98.11 bibrelex" } @phdthesis{s-3dsi-95 -, author = "E. C. Sherbrooke" -, title = "3-{D} Shape Interrogation by Medial Axis Transform" -, type = "Ph.{D}. Thesis" -, school = "Dept. Ocean Engineering, Massachusetts Institute of Technology" -, address = "Cambridge, Massachusetts" -, year = 1995 -, keywords = "doctoral thesis" -, update = "95.05 abrams+held" +, author = "E. C. Sherbrooke" +, title = "3-{D} Shape Interrogation by Medial Axis Transform" +, type = "Ph.{D}. Thesis" +, school = "Dept. Ocean Engineering, Massachusetts Institute of Technology" +, address = "Cambridge, Massachusetts" +, year = 1995 +, keywords = "doctoral thesis" +, update = "95.05 abrams+held" } @inproceedings{sp-cmat3-95 -, author = "E. C. Sherbrooke and N. M. Patrikalakis" -, title = "Computation of Medial Axis Transforms of 3D Polyhedra" -, editor = "J. R. Rossignac and C. M. Hoffmann" -, booktitle = "Proc. Third ACM Solid Modeling Conference" -, year = 1995 -, update = "95.05 abrams" +, author = "E. C. Sherbrooke and N. M. Patrikalakis" +, title = "Computation of Medial Axis Transforms of 3D Polyhedra" +, editor = "J. R. Rossignac and C. M. Hoffmann" +, booktitle = "Proc. Third ACM Solid Modeling Conference" +, year = 1995 +, update = "95.05 abrams" } @article{sp-csnps-93 -, author = "E. C. Sherbrooke and N. M. Patrikalakis" -, title = "Computation of the Solutions of Nonlinear Polynomial Systems" -, journal = "Comput. Aided Geom. Design" -, volume = 10 -, number = 5 -, year = 1993 -, pages = "379--405" -, update = "95.05 abrams" +, author = "E. C. Sherbrooke and N. M. Patrikalakis" +, title = "Computation of the Solutions of Nonlinear Polynomial Systems" +, journal = "Comput. Aided Geom. Design" +, volume = 10 +, number = 5 +, year = 1993 +, pages = "379--405" +, update = "95.05 abrams" } @article{spb-amat3-96 -, author = "E. C. Sherbrooke and N. M. Patrikalakis and E. Brisson" -, title = "An Algorithm for the Medial Axis Transform of 3D Polyhedral Solids" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 2 -, number = 1 -, month = mar -, year = 1996 -, pages = "45--61" -, update = "96.09 held" +, author = "E. C. Sherbrooke and N. M. Patrikalakis and E. Brisson" +, title = "An Algorithm for the Medial Axis Transform of 3D Polyhedral Solids" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 2 +, number = 1 +, month = mar +, year = 1996 +, pages = "45--61" +, update = "96.09 held" } @article{sp-simc-90 -, author = "D. Sherman and S. Peleg" -, title = "Stereo by incremental matching of contours" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 12 -, number = 11 -, year = 1990 -, pages = "1102--1106" -, update = "97.11 bibrelex" +, author = "D. Sherman and S. Peleg" +, title = "Stereo by incremental matching of contours" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 12 +, number = 11 +, year = 1990 +, pages = "1102--1106" +, update = "97.11 bibrelex" } @inproceedings{s-tbceg-94 -, author = "T. Shermer" -, title = "A tight bound on the combinatorial edge guarding problem" -, booktitle = "Snapshots of Computational and Discrete Geometry" -, volume = 3 -, publisher = "School Comput. Sci., McGill Univ." -, month = aug -, year = 1994 -, pages = "191--223" -, update = "97.11 orourke" +, author = "T. Shermer" +, title = "A tight bound on the combinatorial edge guarding problem" +, booktitle = "Snapshots of Computational and Discrete Geometry" +, volume = 3 +, publisher = "School Comput. Sci., McGill Univ." +, month = aug +, year = 1994 +, pages = "191--223" +, update = "97.11 orourke" } @inproceedings{s-cbtt-89 -, author = "T. Shermer" -, title = "Computing bushy and thin triangulations" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 49 -, precedes = "s-cbtt-91" +, author = "T. Shermer" +, title = "Computing bushy and thin triangulations" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 49 +, precedes = "s-cbtt-91" } @article{s-cbtt-91 -, author = "T. Shermer" -, title = "Computing bushy and thin triangulations" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, year = 1991 -, pages = "115--125" -, succeeds = "s-cbtt-89" +, author = "T. Shermer" +, title = "Computing bushy and thin triangulations" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, year = 1991 +, pages = "115--125" +, succeeds = "s-cbtt-89" } @techreport{s-cgopl-91 -, author = "T. Shermer" -, title = "Convering and Guarding Orthogonal Polygons with $l_k$-Sets" -, type = "manuscript" -, institution = "Simon Fraser University" -, year = 1991 -, update = "98.11 bibrelex" +, author = "T. Shermer" +, title = "Convering and Guarding Orthogonal Polygons with $l_k$-Sets" +, type = "manuscript" +, institution = "Simon Fraser University" +, year = 1991 +, update = "98.11 bibrelex" } @article{s-cgpul-91 -, author = "T. Shermer" -, title = "Convering and Guarding Polygons Using $L_k$-Sets" -, journal = "Geom. Dedicata" -, volume = 37 -, year = 1991 -, pages = "183--203" -, update = "98.11 bibrelex" +, author = "T. Shermer" +, title = "Convering and Guarding Polygons Using $L_k$-Sets" +, journal = "Geom. Dedicata" +, volume = 37 +, year = 1991 +, pages = "183--203" +, update = "98.11 bibrelex" } @techreport{s-hpp-87 -, author = "T. Shermer" -, title = "Hiding people in polygons" -, type = "Technical {Report}" -, number = "SOCS-87.18" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1987 -, precedes = "s-hpp-89" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "T. Shermer" +, title = "Hiding people in polygons" +, type = "Technical {Report}" +, number = "SOCS-87.18" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1987 +, precedes = "s-hpp-89" +, update = "98.11 bibrelex, 98.07 bibrelex" } @article{s-hpp-89 -, author = "T. Shermer" -, title = "Hiding People in Polygons" -, journal = "Computing" -, volume = 42 -, year = 1989 -, pages = "109--131" -, succeeds = "s-hpp-87" -, update = "98.11 bibrelex" +, author = "T. Shermer" +, title = "Hiding People in Polygons" +, journal = "Computing" +, volume = 42 +, year = 1989 +, pages = "109--131" +, succeeds = "s-hpp-87" +, update = "98.11 bibrelex" } @techreport{s-rvg3e-96 -, author = "T. Shermer" -, title = "On rectangle visibility graphs {III}: {External} visibility and complexity" -, institution = "DIMACS and Simon Fraser University" -, month = apr -, year = 1996 -, keywords = "visibility graphs" -, update = "96.09 orourke" +, author = "T. Shermer" +, title = "On rectangle visibility graphs {III}: {External} visibility and complexity" +, institution = "DIMACS and Simon Fraser University" +, month = apr +, year = 1996 +, keywords = "visibility graphs" +, update = "96.09 orourke" } @techreport{s-rrag-90 -, author = "T. Shermer" -, title = "Recent results in art galleries" -, type = "Technical {Report}" -, institution = "Simon Fraser Univ." -, address = "Burnaby, BC" -, month = oct -, year = 1990 -, precedes = "s-rrag-92" -, update = "98.07 bibrelex" +, author = "T. Shermer" +, title = "Recent results in art galleries" +, type = "Technical {Report}" +, institution = "Simon Fraser Univ." +, address = "Burnaby, BC" +, month = oct +, year = 1990 +, precedes = "s-rrag-92" +, update = "98.07 bibrelex" } @inproceedings{s-cgavp-93 -, author = "Thomas Shermer" -, title = "The continuous-graph approach to visibility problems" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = 321 -, update = "93.09 milone+mitchell" +, author = "Thomas Shermer" +, title = "The continuous-graph approach to visibility problems" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = 321 +, update = "93.09 milone+mitchell" } @techreport{s-tgtre-84 -, author = "T. Shermer" -, title = "Triangulation graphs that require extra guards" -, type = "Technical {Memo}" -, number = 13 -, institution = "3-D Animation Syst. Group, Comput. Graph. Lab., New York Inst. Tech." -, address = "New York, NY" -, year = 1984 +, author = "T. Shermer" +, title = "Triangulation graphs that require extra guards" +, type = "Technical {Memo}" +, number = 13 +, institution = "3-D Animation Syst. Group, Comput. Graph. Lab., New York Inst. Tech." +, address = "New York, NY" +, year = 1984 } @phdthesis{s-vpp-89 -, author = "T. Shermer" -, title = "Visibility properties of polygons" -, school = "McGill Univ." -, year = 1989 -, keywords = "doctoral thesis" -, update = "94.05 devillers" +, author = "T. Shermer" +, title = "Visibility properties of polygons" +, school = "McGill Univ." +, year = 1989 +, keywords = "doctoral thesis" +, update = "94.05 devillers" } @techreport{st-ccssp-88 -, author = "T. Shermer and G. T. Toussaint" -, title = "Characterizations of convex and star-shaped polygons" -, number = "SOCS-88.11" -, institution = "School of Computer Science, McGill University" -, month = jun -, year = 1988 -, update = "98.03 bibrelex" +, author = "T. Shermer and G. T. Toussaint" +, title = "Characterizations of convex and star-shaped polygons" +, number = "SOCS-88.11" +, institution = "School of Computer Science, McGill University" +, month = jun +, year = 1988 +, update = "98.03 bibrelex" } @article{s-labp-92 -, author = "T. C. Shermer" -, title = "A linear algorithm for bisecting a polygon" -, journal = "Inform. Process. Lett." -, volume = 41 -, year = 1992 -, pages = "135--140" +, author = "T. C. Shermer" +, title = "A linear algorithm for bisecting a polygon" +, journal = "Inform. Process. Lett." +, volume = 41 +, year = 1992 +, pages = "135--140" } @article{s-rutcp-93 -, author = "T. C. Shermer" -, title = "On recognizing unions of two convex polygons and related problems" -, journal = "Pattern Recogn. Lett." -, volume = 14 -, year = 1993 -, update = "98.07 bibrelex" +, author = "T. C. Shermer" +, title = "On recognizing unions of two convex polygons and related problems" +, journal = "Pattern Recogn. Lett." +, volume = 14 +, year = 1993 +, update = "98.07 bibrelex" } @inproceedings{s-rvgie-96 -, author = "T. C. Shermer" -, title = "On rectangle visibility graphs, {III}: {External} visibility and complexity" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "234--239" -, update = "97.11 orourke, 97.03 agarwal, 96.09 mitchell" +, author = "T. C. Shermer" +, title = "On rectangle visibility graphs, {III}: {External} visibility and complexity" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "234--239" +, update = "97.11 orourke, 97.03 agarwal, 96.09 mitchell" } @article{s-rrag-92 -, author = "T. C. Shermer" -, title = "Recent Results in Art Galleries" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1384--1399" -, succeeds = "s-rrag-90" -, update = "98.07 bibrelex, 93.09 held" +, author = "T. C. Shermer" +, title = "Recent Results in Art Galleries" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1384--1399" +, succeeds = "s-rrag-90" +, update = "98.07 bibrelex, 93.09 held" } @inproceedings{sy-pncrr-95 -, author = "T. C. Shermer and C. K. Yap" -, title = "Probing for near centers and relative roundness" -, booktitle = "Proc. ASME Workshop on Tolerancing and Metrology" -, year = 1995 -, update = "97.03 agarwal" +, author = "T. C. Shermer and C. K. Yap" +, title = "Probing for near centers and relative roundness" +, booktitle = "Proc. ASME Workshop on Tolerancing and Metrology" +, year = 1995 +, update = "97.03 agarwal" } @techreport{s-apfpa-96 -, author = "J. Shewchuk" -, title = "Adaptive precision floating point arithmetic and fast robust geometric predicates" -, number = "CMU-CS-96-140" -, institution = "Carnegie Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1996 -, update = "98.07 bibrelex" +, author = "J. Shewchuk" +, title = "Adaptive precision floating point arithmetic and fast robust geometric predicates" +, number = "CMU-CS-96-140" +, institution = "Carnegie Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1996 +, update = "98.07 bibrelex" } @inproceedings{s-cgehd-98 -, author = "Jonathan R. Shewchuk" -, title = "A Condition Guaranteeing the Existence of Higher-Dimensional Constrained {Delaunay} Triangulations" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "76--85" -, update = "00.11 smid, 00.07 devillers" +, author = "Jonathan R. Shewchuk" +, title = "A Condition Guaranteeing the Existence of Higher-Dimensional Constrained {Delaunay} Triangulations" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "76--85" +, update = "00.11 smid, 00.07 devillers" } @article{s-apfpa-97 -, author = "Jonathan Richard Shewchuk" -, title = "Adaptive Precision Floating-Point Arithmetic and Fast Robust Geometric Predicates" -, journal = "Discrete Comput. Geom." -, volume = 18 -, number = 3 -, year = 1997 -, pages = "305--363" -, succeeds = "s-apfpa-96,s-rafpg-96" -, update = "00.03 vismara" +, author = "Jonathan Richard Shewchuk" +, title = "Adaptive Precision Floating-Point Arithmetic and Fast Robust Geometric Predicates" +, journal = "Discrete Comput. Geom." +, volume = 18 +, number = 3 +, year = 1997 +, pages = "305--363" +, succeeds = "s-apfpa-96,s-rafpg-96" +, update = "00.03 vismara" } @inproceedings{s-mgdsa-00 -, author = "Jonathan R. Shewchuk" -, title = "Mesh Generation for Domains with Small Angles" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "1--10" -, update = "00.11 jones" +, author = "Jonathan R. Shewchuk" +, title = "Mesh Generation for Domains with Small Angles" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "1--10" +, update = "00.11 jones" } @inproceedings{s-rafpg-96 -, author = "Jonathan R. Shewchuk" -, title = "Robust Adaptive Floating-Point Geometric Predicates" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "141--150" -, cites = "abdpy-esdus-97, b-phpmp-93, c-sede-92, d-fptea-71, fv-eeacg-93, fv-sayee-96, g-wecss-91, gs-pmgsc-85, kln-edtur-91, k-sa-81, ls-tacdt-80, p-aapfp-91, p-pfpan-92, s-te2dq-96, w-cnddt-81, ZZZ" -, update = "98.07 bibrelex, 97.11 bibrelex, 96.09 devillers+orourke, 96.05 efrat" +, author = "Jonathan R. Shewchuk" +, title = "Robust Adaptive Floating-Point Geometric Predicates" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "141--150" +, cites = "abdpy-esdus-97, b-phpmp-93, c-sede-92, d-fptea-71, fv-eeacg-93, fv-sayee-96, g-wecss-91, gs-pmgsc-85, kln-edtur-91, k-sa-81, ls-tacdt-80, p-aapfp-91, p-pfpan-92, s-te2dq-96, w-cnddt-81, ZZZ" +, update = "98.07 bibrelex, 97.11 bibrelex, 96.09 devillers+orourke, 96.05 efrat" } @inproceedings{s-sachd-00 -, author = "Jonathan Richard Shewchuk" -, title = "Sweep Algorithms for Constructing Higher-Dimensional Constrained {Delaunay} Triangulations" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "350--359" -, update = "00.11 jones" +, author = "Jonathan Richard Shewchuk" +, title = "Sweep Algorithms for Constructing Higher-Dimensional Constrained {Delaunay} Triangulations" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "350--359" +, update = "00.11 jones" } @inproceedings{s-tmgdr-98 -, author = "Jonathan R. Shewchuk" -, title = "Tetrahedral mesh generation by {Delaunay} refinement" -, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." -, year = 1998 -, pages = "86--95" -, update = "02.03 devillers, ???" +, author = "Jonathan R. Shewchuk" +, title = "Tetrahedral mesh generation by {Delaunay} refinement" +, booktitle = "Proc. 14th Annu. ACM Sympos. Comput. Geom." +, year = 1998 +, pages = "86--95" +, update = "02.03 devillers, ???" } @inproceedings{s-te2dq-96 -, author = "J. R. Shewchuk" -, title = "Triangle: Engineering a $2$d quality mesh generator and {Delaunay} triangulator" -, booktitle = "First Workshop on Applied Computational Geometry" -, organization = "Association for Computing Machinery" -, month = may -, year = 1996 -, update = "01.07 devillers, 97.11 bibrelex" +, author = "J. R. Shewchuk" +, title = "Triangle: Engineering a $2$d quality mesh generator and {Delaunay} triangulator" +, booktitle = "First Workshop on Applied Computational Geometry" +, organization = "Association for Computing Machinery" +, month = may +, year = 1996 +, update = "01.07 devillers, 97.11 bibrelex" } @inproceedings{s-swa-92 -, author = "J. S. Shieh" -, title = "Shortsighted watchman arrangement" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "192--197" -, cites = "os-snhpd-83, k-dpsc-83, ags-ccrpd-88, o-agta-87, ws-oacdt-87, c-cdt-87, ZZZ" -, update = "98.07 bibrelex" +, author = "J. S. Shieh" +, title = "Shortsighted watchman arrangement" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "192--197" +, cites = "os-snhpd-83, k-dpsc-83, ags-ccrpd-88, o-agta-87, ws-oacdt-87, c-cdt-87, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{ss-ahmgs-96 -, author = "Bih-Yaw Shih and Hiroshi Sakurai" -, title = "Automated hexahedral mesh generation by swept volume decomposition and recomposition" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "273--280" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Bih-Yaw Shih and Hiroshi Sakurai" +, title = "Automated hexahedral mesh generation by swept volume decomposition and recomposition" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "273--280" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @article{scl-saeap-87 -, author = "Z. C. Shih and G. H. Chen and R. C. T. Lee" -, title = "Systolic algorithms to examine all pairs of elements" -, journal = "CACM" -, volume = "??" -, month = feb -, year = 1987 -, pages = "161--167" -, update = "98.03 bibrelex" +, author = "Z. C. Shih and G. H. Chen and R. C. T. Lee" +, title = "Systolic algorithms to examine all pairs of elements" +, journal = "CACM" +, volume = "??" +, month = feb +, year = 1987 +, pages = "161--167" +, update = "98.03 bibrelex" } @inproceedings{sd-gtomr-88 -, author = "Z. Shiller and S. Dubowsky" -, title = "Global Time-Optimal Motions of Robotic Manipulators in the Presence of Obstacles" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Philadelphia" -, year = 1988 -, update = "97.11 bibrelex" +, author = "Z. Shiller and S. Dubowsky" +, title = "Global Time-Optimal Motions of Robotic Manipulators in the Presence of Obstacles" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Philadelphia" +, year = 1988 +, update = "97.11 bibrelex" } @phdthesis{s-apgpl-76 -, author = "Y. Shiloach" -, title = "Arrangements of Planar Graphs on the Planar Lattice" -, school = "Weizmann Institute of Science" -, year = 1976 -, keywords = "doctoral thesis, graph drawing" -, update = "93.09 tamassia" +, author = "Y. Shiloach" +, title = "Arrangements of Planar Graphs on the Planar Lattice" +, school = "Weizmann Institute of Science" +, year = 1976 +, keywords = "doctoral thesis, graph drawing" +, update = "93.09 tamassia" } @article{sv-fmmsp-81 -, author = "Y. Shiloach and U. Vishkin" -, title = "Finding the maximum, merging and sorting in a parallel computation model" -, journal = "J. Algorithms" -, volume = 2 -, year = 1981 -, pages = "88--102" -, update = "97.11 bibrelex" +, author = "Y. Shiloach and U. Vishkin" +, title = "Finding the maximum, merging and sorting in a parallel computation model" +, journal = "J. Algorithms" +, volume = 2 +, year = 1981 +, pages = "88--102" +, update = "97.11 bibrelex" } @inproceedings{ssa-hdsj-97 -, author = "K. Shim and R. Srikant and R. Agrawarl" -, title = "High-dimensional similarity joins" -, booktitle = "Proc. 13th IEEE Internat. Conf. Data Eng." -, year = 1997 -, pages = "301--311" -, update = "97.07 agarwal" +, author = "K. Shim and R. Srikant and R. Agrawarl" +, title = "High-dimensional similarity joins" +, booktitle = "Proc. 13th IEEE Internat. Conf. Data Eng." +, year = 1997 +, pages = "301--311" +, update = "97.07 agarwal" } @inproceedings{sg-cmpbf-92 -, author = "K. Shimada and D. C. Gossard" -, title = "Computational methods for physically-based {FE} mesh generation" -, booktitle = "Proc. IFIP/TC5/WG5.3 8th Internat. Conf. PROLAMAT" -, site = "Tokyo, Japan" -, year = 1992 -, update = "98.03 bibrelex" +, author = "K. Shimada and D. C. Gossard" +, title = "Computational methods for physically-based {FE} mesh generation" +, booktitle = "Proc. IFIP/TC5/WG5.3 8th Internat. Conf. PROLAMAT" +, site = "Tokyo, Japan" +, year = 1992 +, update = "98.03 bibrelex" } @article{s-a112p-62 -, author = "M. Shimrat" -, title = "Algorithm 112: position of point relative to polygon" -, journal = "Commun. ACM" -, volume = 5 -, year = 1962 -, pages = 434 +, author = "M. Shimrat" +, title = "Algorithm 112: position of point relative to polygon" +, journal = "Commun. ACM" +, volume = 5 +, year = 1962 +, pages = 434 } @article{skc-aeasl-00 -, author = "C.-S. Shin and S. K. Kim and K.-Y. Chwa" -, title = "Area-efficient algorithms for straight-line tree drawings" -, journal = "Comput. Geom. Theory Appl." -, volume = 15 -, year = 2000 -, pages = "175--202" -, succeeds = "skc-aeaus-96" -, update = "00.03 smid" +, author = "C.-S. Shin and S. K. Kim and K.-Y. Chwa" +, title = "Area-efficient algorithms for straight-line tree drawings" +, journal = "Comput. Geom. Theory Appl." +, volume = 15 +, year = 2000 +, pages = "175--202" +, succeeds = "skc-aeaus-96" +, update = "00.03 smid" } @inproceedings{skc-aeaus-96 -, author = "C.-S. Shin and S. K. Kim and K.-Y. Chwa" -, title = "Area-Efficient Algorithms for Upward Straight-Line Tree Drawings" -, booktitle = "Proc. 2nd Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '96" -, site = "Hong Kong" -, series = "Lecture Notes Comput. Sci." -, volume = 1090 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "106--116" -, keywords = "graph drawing, tree drawing, straight line drawing" -, precedes = "skc-aeasl-00" -, update = "00.03 smid, 99.11 bibrelex, 97.11 shin" -, abstract = "The presented algorithm produces an upward, straight-line +, author = "C.-S. Shin and S. K. Kim and K.-Y. Chwa" +, title = "Area-Efficient Algorithms for Upward Straight-Line Tree Drawings" +, booktitle = "Proc. 2nd Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '96" +, site = "Hong Kong" +, series = "Lecture Notes Comput. Sci." +, volume = 1090 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "106--116" +, keywords = "graph drawing, tree drawing, straight line drawing" +, precedes = "skc-aeasl-00" +, update = "00.03 smid, 99.11 bibrelex, 97.11 shin" +, abstract = "The presented algorithm produces an upward, straight-line tree drawing whose area is $O(n\log \log n)$. Several related tree drawing problems are considered." } @inproceedings{sss-tdczr-86 -, author = "H. Shin and A. L. Sangiovanni-Vincentelli and C. H. S{\'e}quin" -, title = "Two dimensional compaction by 'zone refining'" -, booktitle = "Proc. 23rd Design Autom. Conf." -, year = 1986 -, pages = "115--122" -, update = "98.03 bibrelex" +, author = "H. Shin and A. L. Sangiovanni-Vincentelli and C. H. S{\'e}quin" +, title = "Two dimensional compaction by 'zone refining'" +, booktitle = "Proc. 23rd Design Autom. Conf." +, year = 1986 +, pages = "115--122" +, update = "98.03 bibrelex" } @article{sm-mtcrm-85 -, author = "K. G. Shin and N. D. McKay" -, title = "Minimum-time control of robotic manipulators with geometric path constraints" -, journal = "IEEE Trans. Autom. Control" -, volume = "AC-30" -, month = jun -, year = 1985 -, pages = "531--541" -, update = "97.11 bibrelex" +, author = "K. G. Shin and N. D. McKay" +, title = "Minimum-time control of robotic manipulators with geometric path constraints" +, journal = "IEEE Trans. Autom. Control" +, volume = "AC-30" +, month = jun +, year = 1985 +, pages = "531--541" +, update = "97.11 bibrelex" } @article{s-paipp-93 -, author = "S. Y. Shin" -, title = "A predictive algorithm for intersecting parametric polynomial surfaces" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "203--219" -, keywords = "computer graphics, parametric surfaces, ray-patch intersection algorithms" -, update = "96.09 devillers" +, author = "S. Y. Shin" +, title = "A predictive algorithm for intersecting parametric polynomial surfaces" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "203--219" +, keywords = "computer graphics, parametric surfaces, ray-patch intersection algorithms" +, update = "96.09 devillers" } @article{sw-fchsp-86 -, author = "S. Y. Shin and T. C. Woo" -, title = "Finding the convex hull of a simple polygon in linear time" -, journal = "Pattern Recogn." -, volume = 19 -, year = 1986 -, pages = "453--458" +, author = "S. Y. Shin and T. C. Woo" +, title = "Finding the convex hull of a simple polygon in linear time" +, journal = "Pattern Recogn." +, volume = 19 +, year = 1986 +, pages = "453--458" } @article{sk-crgac-91 -, author = "Y. Shinagawa and T. L. Kunii" -, title = "Constructing a {Reeb} graph automatically from cross sections" -, journal = "IEEE Comput. Graph. Appl." -, volume = 11 -, month = nov -, year = 1991 -, pages = "44--51" -, update = "98.07 bibrelex" +, author = "Y. Shinagawa and T. L. Kunii" +, title = "Constructing a {Reeb} graph automatically from cross sections" +, journal = "IEEE Comput. Graph. Appl." +, volume = 11 +, month = nov +, year = 1991 +, pages = "44--51" +, update = "98.07 bibrelex" } @article{skk-scbmt-91 -, author = "Y. Shinagawa and T. L. Kunii and Y. L. Kergosien" -, title = "Surface coding based on morse theory" -, journal = "IEEE Comput. Graph. Appl." -, volume = 11 -, month = sep -, year = 1991 -, pages = "66--78" -, update = "98.07 bibrelex" +, author = "Y. Shinagawa and T. L. Kunii and Y. L. Kergosien" +, title = "Surface coding based on morse theory" +, journal = "IEEE Comput. Graph. Appl." +, volume = 11 +, month = sep +, year = 1991 +, pages = "66--78" +, update = "98.07 bibrelex" } @article{sf-loogp-95 -, author = "M. Shinya and M.-C. Forgue" -, title = "Laying Out Objects with Geometric and Physical Constraints" -, journal = "Visual Comput." -, volume = 11 -, number = 4 -, year = 1995 -, pages = "188--201" -, update = "96.01 held" +, author = "M. Shinya and M.-C. Forgue" +, title = "Laying Out Objects with Geometric and Physical Constraints" +, journal = "Visual Comput." +, volume = 11 +, number = 4 +, year = 1995 +, pages = "188--201" +, update = "96.01 held" } @inproceedings{s-dqmsd-91 -, author = "P. Shirley" -, title = "Discrepancy as a Quality Measure for Sample Distributions" -, editor = "F. H. Post and W. Barth" -, booktitle = "Proc. Eurographics '91" -, publisher = "Elsevier Science" -, address = "Vienna, Austria" -, month = sep -, year = 1991 -, pages = "183--194" -, update = "93.09 held" +, author = "P. Shirley" +, title = "Discrepancy as a Quality Measure for Sample Distributions" +, editor = "F. H. Post and W. Barth" +, booktitle = "Proc. Eurographics '91" +, publisher = "Elsevier Science" +, address = "Vienna, Austria" +, month = sep +, year = 1991 +, pages = "183--194" +, update = "93.09 held" } @inproceedings{st-padsc-90 -, author = "P. Shirley and A. Tuchman" -, title = "A Polygonal Approximation to Direct Scalar Volume Rendering" -, booktitle = "San Diego Workshop on Volume Visualization" -, series = "Comput. Gr" -, volume = 24 -, month = dec -, year = 1990 -, pages = "63--70" -, update = "98.07 bibrelex" +, author = "P. Shirley and A. Tuchman" +, title = "A Polygonal Approximation to Direct Scalar Volume Rendering" +, booktitle = "San Diego Workshop on Volume Visualization" +, series = "Comput. Gr" +, volume = 24 +, month = dec +, year = 1990 +, pages = "63--70" +, update = "98.07 bibrelex" } @inproceedings{sta-aaflp-97 -, author = "D. Shmoys and E. Tardos and K. Aardel" -, title = "Approximation algorithms for facility location problems" -, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." -, year = 1997 -, pages = "265--274" -, update = "98.07 agarwal" +, author = "D. Shmoys and E. Tardos and K. Aardel" +, title = "Approximation algorithms for facility location problems" +, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." +, year = 1997 +, pages = "265--274" +, update = "98.07 agarwal" } @inproceedings{st-gigaa-97 -, author = "M. Shneerson and A. Tal" -, title = "GASP-II: A geometric algorithm animation system for an electronic classroom" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "379--381" -, cites = "bclt-aawww-96, b-aa-87, b-zsaam-92a, bn-catwb-96, bs-taa-85, ekkmns-wcg-94, mn-lledt-89, s-raplg-91, s-tfsaa-90, td-vga-95, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "M. Shneerson and A. Tal" +, title = "GASP-II: A geometric algorithm animation system for an electronic classroom" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "379--381" +, cites = "bclt-aawww-96, b-aa-87, b-zsaam-92a, bn-catwb-96, bs-taa-85, ekkmns-wcg-94, mn-lledt-89, s-raplg-91, s-tfsaa-90, td-vga-95, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @article{s-rciem-77 -, author = "B. Shneiderman" -, title = "Reduced combined indexes for efficient multiple attribute retrieval" -, journal = "Inform. Syst." -, volume = 2 -, year = 1977 -, pages = "149--154" +, author = "B. Shneiderman" +, title = "Reduced combined indexes for efficient multiple attribute retrieval" +, journal = "Inform. Syst." +, volume = 2 +, year = 1977 +, pages = "149--154" } @article{s-cgpuq-81 -, author = "M. Shneier" -, title = "Calculations of geometric properties using quadtrees" -, journal = "Comput. Graph. Image Process." -, volume = 16 -, year = 1981 -, pages = "296--302" +, author = "M. Shneier" +, title = "Calculations of geometric properties using quadtrees" +, journal = "Comput. Graph. Image Process." +, volume = 16 +, year = 1981 +, pages = "296--302" } @article{s-pldtq-81 -, author = "M. Shneier" -, title = "Path length distance transform for quadtrees" -, journal = "Inform. Sci." -, volume = 23 -, year = 1981 -, pages = "45--67" +, author = "M. Shneier" +, title = "Path length distance transform for quadtrees" +, journal = "Inform. Sci." +, volume = 23 +, year = 1981 +, pages = "45--67" } @article{s-thlfr-81 -, author = "M. Shneier" -, title = "Two hierarchical linear feature representations: edge pyramids and edge quadtrees" -, journal = "Comput. Graph. Image Process." -, volume = 17 -, year = 1981 -, pages = "211--224" +, author = "M. Shneier" +, title = "Two hierarchical linear feature representations: edge pyramids and edge quadtrees" +, journal = "Comput. Graph. Image Process." +, volume = 17 +, year = 1981 +, pages = "211--224" } @inproceedings{s-updlt-79 -, author = "M. Shneier" -, title = "Using pyramids to define local thresholds for blob detection" -, booktitle = "Proc. DARPA Image Understanding Workshop" -, year = 1979 -, pages = "31--35" +, author = "M. Shneier" +, title = "Using pyramids to define local thresholds for blob detection" +, booktitle = "Proc. DARPA Image Understanding Workshop" +, year = 1979 +, pages = "31--35" } @incollection{s-arc-94 -, author = "Ken Shoemake" -, title = "Arcball Rotation Control" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "175--192" -, keywords = "interaction, quaternion" -, update = "94.09 heckbert" -, annote = "Asks the question: how does one control the three degrees +, author = "Ken Shoemake" +, title = "Arcball Rotation Control" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "175--192" +, keywords = "interaction, quaternion" +, update = "94.09 heckbert" +, annote = "Asks the question: how does one control the three degrees of freedom of rotation in 3D, using a 2D input device such as a mouse? Shoemake's answer: use a pair of points to designate a relative rotation, and use quaternions to make the rotation axis specification intuitive and @@ -133044,17 +133044,17 @@ @incollection{s-arc-94 } @incollection{s-eac-94 -, author = "Ken Shoemake" -, title = "Euler Angle Conversion" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "222--229" -, keywords = "quaternion, rotation" -, update = "94.09 heckbert" -, annote = "Gives code to convert a rotation expressed by one triple +, author = "Ken Shoemake" +, title = "Euler Angle Conversion" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "222--229" +, keywords = "quaternion, rotation" +, update = "94.09 heckbert" +, annote = "Gives code to convert a rotation expressed by one triple of axes into another triple. Rotations in 3D are often described in terms of Euler angles: rotations about x, y, and z in some order. The order of rotations is significant, but not standardized. These routines are useful @@ -133062,199 +133062,199 @@ @incollection{s-eac-94 } @incollection{s-fbtr-94 -, author = "Ken Shoemake" -, title = "Fiber Bundle Twist Reduction" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "230--236" -, keywords = "animation, camera control, quaternion, topology, rotation" -, update = "94.09 heckbert" -, annote = "Applies some advanced concepts from topology to the +, author = "Ken Shoemake" +, title = "Fiber Bundle Twist Reduction" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "230--236" +, keywords = "animation, camera control, quaternion, topology, rotation" +, update = "94.09 heckbert" +, annote = "Applies some advanced concepts from topology to the problem of minimizing twist (rotation about the z axis of screen space) in animation." } @incollection{s-pmd-94 -, author = "Ken Shoemake" -, title = "Polar Matrix Decomposition" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "207--221" -, keywords = "quaternion, spectral decomposition, singular value decomposition" -, update = "94.09 heckbert" -, annote = "Describes a method for decomposing an affine 3D +, author = "Ken Shoemake" +, title = "Polar Matrix Decomposition" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "207--221" +, keywords = "quaternion, spectral decomposition, singular value decomposition" +, update = "94.09 heckbert" +, annote = "Describes a method for decomposing an affine 3D transformation into translation, scaling, and rotation transformations in a physically meaningful way. This can be useful for keyframe animation. Contains C code." } @incollection{s-urr-92 -, author = "K. Shoemake" -, title = "Uniform random rotations" -, editor = "D. Kirk" -, booktitle = "Graphics Gems III" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1992 -, pages = "124--132" -, update = "97.07 orourke" +, author = "K. Shoemake" +, title = "Uniform random rotations" +, editor = "D. Kirk" +, booktitle = "Graphics Gems III" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1992 +, pages = "124--132" +, update = "97.07 orourke" } @article{sbk-mdusd-92 -, author = "B. K. Shoichet and D. L. Bodian and I. D. Kuntz" -, title = "Molecular docking using shape descriptors" -, journal = "J. Computational Chemistry" -, volume = 13 -, year = 1992 -, pages = "380--397" -, update = "97.07 agarwal" +, author = "B. K. Shoichet and D. L. Bodian and I. D. Kuntz" +, title = "Molecular docking using shape descriptors" +, journal = "J. Computational Chemistry" +, volume = 13 +, year = 1992 +, pages = "380--397" +, update = "97.07 agarwal" } @unpublished{s-grsds-90 -, author = "P. Shor" -, title = "Geometric realization of superlinear {Davenport--Schinzel} sequences: I. {L}ine segments" -, year = 1990 -, note = "Unpublished manuscript" -, update = "95.09 agarwal" +, author = "P. Shor" +, title = "Geometric realization of superlinear {Davenport--Schinzel} sequences: I. {L}ine segments" +, year = 1990 +, note = "Unpublished manuscript" +, update = "95.09 agarwal" } @phdthesis{s-rpmbp-85 -, author = "P. W. Shor" -, title = "Random planar matching and bin packing" -, school = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, year = 1985 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "P. W. Shor" +, title = "Random planar matching and bin packing" +, school = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, year = 1985 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @incollection{s-spinh-91 -, author = "P. W. Shor" -, title = "Stretchability of Pseudolines is {NP}-Hard" -, editor = "P. Gritzman and B. Sturmfels" -, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" -, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" -, volume = 4 -, publisher = "AMS Press" -, year = 1991 -, pages = "531--554" -, keywords = "pseudolines, stretchability, NP-hard, isotopy conjecture" -, comments = "includes description of Mn{\"e}v's proof that any semialgebraic set is homotopy-equivalent to the realization space of some configuration of pseudolines" -, update = "98.07 agarwal, 93.09 erickson" +, author = "P. W. Shor" +, title = "Stretchability of Pseudolines is {NP}-Hard" +, editor = "P. Gritzman and B. Sturmfels" +, booktitle = "Applied Geometry and Discrete Mathematics: The Victor Klee Festschrift" +, series = "DIMACS Series in Discrete Mathematics and Theoretical Computer Science" +, volume = 4 +, publisher = "AMS Press" +, year = 1991 +, pages = "531--554" +, keywords = "pseudolines, stretchability, NP-hard, isotopy conjecture" +, comments = "includes description of Mn{\"e}v's proof that any semialgebraic set is homotopy-equivalent to the realization space of some configuration of pseudolines" +, update = "98.07 agarwal, 93.09 erickson" } @article{ss-fopgm-97 -, author = "P. W. Shor and N. J. A. Sloane" -, title = "A family of optimal packings in {Grassmannian} manifolds" -, journal = "J. Algebraic Combin." -, volume = "??" -, year = 1997 -, note = "To appear." -, update = "97.07 orourke" +, author = "P. W. Shor and N. J. A. Sloane" +, title = "A family of optimal packings in {Grassmannian} manifolds" +, journal = "J. Algebraic Combin." +, volume = "??" +, year = 1997 +, note = "To appear." +, update = "97.07 orourke" } @inproceedings{sv-ddsoc-89 -, author = "P. W. Shor and C. J. {Van Wyk}" -, title = "Detecting and decomposing self-overlapping curves" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "44--50" -, precedes = "sv-ddsoc-92" -, cites = "a-ca-66, ce-oails-88, fpp-sssfe-88, ll-gdtpg-86, ns-issip-80, rt-rplbo-86, w-rccp-37, ZZZ" -, update = "98.03 bibrelex" +, author = "P. W. Shor and C. J. {Van Wyk}" +, title = "Detecting and decomposing self-overlapping curves" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "44--50" +, precedes = "sv-ddsoc-92" +, cites = "a-ca-66, ce-oails-88, fpp-sssfe-88, ll-gdtpg-86, ns-issip-80, rt-rplbo-86, w-rccp-37, ZZZ" +, update = "98.03 bibrelex" } @article{sv-ddsoc-92 -, author = "P. W. Shor and C. J. {Van Wyk}" -, title = "Detecting and decomposing self-overlapping curves" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 1 -, year = 1992 -, pages = "31--50" -, keywords = "computational topology, constrained Delaunay triangulation, dynamic programming, immersions" -, succeeds = "sv-ddsoc-89" +, author = "P. W. Shor and C. J. {Van Wyk}" +, title = "Detecting and decomposing self-overlapping curves" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 1 +, year = 1992 +, pages = "31--50" +, keywords = "computational topology, constrained Delaunay triangulation, dynamic programming, immersions" +, succeeds = "sv-ddsoc-89" } @inproceedings{s-osdsd-97 -, author = "A. Shoshani" -, title = "{OLAP} and Statistical databases: {S}imilarities and differences" -, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." -, year = 1997 -, pages = "185--196" -, update = "97.07 agarwal" +, author = "A. Shoshani" +, title = "{OLAP} and Statistical databases: {S}imilarities and differences" +, booktitle = "Proc. Annu. ACM Sympos. Principles Database Syst." +, year = 1997 +, pages = "185--196" +, update = "97.07 agarwal" } @article{sl-qcia-87 -, author = "L. Shu-Xiang and M. H. Loew" -, title = "The quad-codes and its applications" -, journal = "Commun. ACM" -, volume = 30 -, year = 1987 -, pages = "621--625" -, update = "98.07 bibrelex" +, author = "L. Shu-Xiang and M. H. Loew" +, title = "The quad-codes and its applications" +, journal = "Commun. ACM" +, volume = 30 +, year = 1987 +, pages = "621--625" +, update = "98.07 bibrelex" } @inproceedings{s-rgrsm-90 -, author = "G. M. Shute" -, title = "A reduced grid for rectilinear {Steiner} minimal trees" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "309--314" -, precedes = "s-rgrsm-91" -, cites = "b-tprrs-86, ce-lsdst-86, gj-rstpi-77, h-sprd-66, h-smtrd-76, tds-crsmt-87, w-ndsor-85, yw-ossaw-72, ZZZ" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "G. M. Shute" +, title = "A reduced grid for rectilinear {Steiner} minimal trees" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "309--314" +, precedes = "s-rgrsm-91" +, cites = "b-tprrs-86, ce-lsdst-86, gj-rstpi-77, h-sprd-66, h-smtrd-76, tds-crsmt-87, w-ndsor-85, yw-ossaw-72, ZZZ" +, update = "98.11 bibrelex, 98.07 bibrelex" } @techreport{s-rgrsm-91 -, author = "G. M. Shute" -, title = "A reduced grid for rectilinear {Steiner} minimal trees" -, type = "Technical Report" -, institution = "Comput. Sci. Dept., Univ. of Minnesota" -, year = 1991 -, succeeds = "s-rgrsm-90" -, update = "98.11 bibrelex" +, author = "G. M. Shute" +, title = "A reduced grid for rectilinear {Steiner} minimal trees" +, type = "Technical Report" +, institution = "Comput. Sci. Dept., Univ. of Minnesota" +, year = 1991 +, succeeds = "s-rgrsm-90" +, update = "98.11 bibrelex" } @article{sdt-opsal-91 -, author = "G. M. Shute and L. L. Deneen and C. D. Thomborson" -, title = "An {$O(n \log n)$} plane-sweep algorithm for {$L_{1}$} and {$L_{\infty}$} {Delaunay} triangulations" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "207--221" +, author = "G. M. Shute and L. L. Deneen and C. D. Thomborson" +, title = "An {$O(n \log n)$} plane-sweep algorithm for {$L_{1}$} and {$L_{\infty}$} {Delaunay} triangulations" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "207--221" } @incollection{s-bdnni-81 -, author = "R. Sibson" -, title = "A Brief Description of Natural Neighbour Interpolation" -, editor = "Vic Barnet" -, booktitle = "Interpreting Multivariate Data" -, publisher = "John Wiley \& Sons" -, address = "Chichester" -, year = 1981 -, pages = "21--36" -, update = "99.11 bibrelex" -, annote = "Weights for an interpolant at a point $p$ can be found - by considering what fraction of the area of $VP(p)$ is - taken from the $VP$ for $p_1,p_2,\dots,p_n$." +, author = "R. Sibson" +, title = "A Brief Description of Natural Neighbour Interpolation" +, editor = "Vic Barnet" +, booktitle = "Interpreting Multivariate Data" +, publisher = "John Wiley \& Sons" +, address = "Chichester" +, year = 1981 +, pages = "21--36" +, update = "99.11 bibrelex" +, annote = "Weights for an interpolant at a point $p$ can be found + by considering what fraction of the area of $VP(p)$ is + taken from the $VP$ for $p_1,p_2,\dots,p_n$." } @article{s-vidt-80 -, author = "R. Sibson" -, title = "A vector identity for the {Dirichlet} Tessellation" -, journal = "Math. Proc. Camb. Phil. Soc." -, volume = 87 -, year = 1980 -, pages = "151--155" -, update = "98.07 rote" -, abstract = "Take away a site $p$ from a Voronoi diagram, and for every +, author = "R. Sibson" +, title = "A vector identity for the {Dirichlet} Tessellation" +, journal = "Math. Proc. Camb. Phil. Soc." +, volume = 87 +, year = 1980 +, pages = "151--155" +, update = "98.07 rote" +, abstract = "Take away a site $p$ from a Voronoi diagram, and for every other site $q$, let $w_q$ be the fraction of $p$'s cell that is taken by the cell of $q$. Then $p$ is the weighted average (centroid) of the other sites $q$ with weights $w_q$. @@ -133265,4086 +133265,4086 @@ @article{s-vidt-80 } @article{s-let-78 -, author = "R. Sibson" -, title = "Locally equiangular triangulations" -, journal = "Comput. J." -, volume = 21 -, number = 3 -, year = 1978 -, pages = "243--245" -, keywords = "point-set triangulation" -, update = "98.11 bibrelex" -, annote = "``Lawson has given a criterion of local equiangularity - of the convex hull of a finite set of distinct points - in the plane. In this note it is shown that (with - suitable modifications to deal with degeneracy) there - is only one such triangulation, and that it is the - Delaunay triangulation.''" +, author = "R. Sibson" +, title = "Locally equiangular triangulations" +, journal = "Comput. J." +, volume = 21 +, number = 3 +, year = 1978 +, pages = "243--245" +, keywords = "point-set triangulation" +, update = "98.11 bibrelex" +, annote = "``Lawson has given a criterion of local equiangularity + of the convex hull of a finite set of distinct points + in the plane. In this note it is shown that (with + suitable modifications to deal with degeneracy) there + is only one such triangulation, and that it is the + Delaunay triangulation.''" } @article{s-dtada-80 -, author = "R. Sibson" -, title = "The {Dirichlet} Tessellation as an aid in data analysis" -, journal = "Scand. J. Statist." -, volume = 7 -, year = 1980 -, pages = "14--20" +, author = "R. Sibson" +, title = "The {Dirichlet} Tessellation as an aid in data analysis" +, journal = "Scand. J. Statist." +, volume = 7 +, year = 1980 +, pages = "14--20" } @article{sd-sggrr-88 -, author = "A. Siegel and D. Dolev" -, title = "Some geometry for general river routing" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "583--605" +, author = "A. Siegel and D. Dolev" +, title = "Some geometry for general river routing" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "583--605" } @article{s-rrurm-82 -, author = "A. F. Siegel" -, title = "Robust Regression Using Repeated Medians" -, journal = "Biometrika" -, volume = 69 -, year = 1982 -, pages = "242--244" -, update = "98.07 bibrelex" +, author = "A. F. Siegel" +, title = "Robust Regression Using Repeated Medians" +, journal = "Biometrika" +, volume = 69 +, year = 1982 +, pages = "242--244" +, update = "98.07 bibrelex" } @book{sh-trht-92 -, author = "R. Siegel and J. R. Howell" -, title = "Thermal Radiation Heat Transfer" -, edition = "3rd" -, publisher = "Hemisphere Pu. Co." -, address = "Washington" -, year = 1992 -, update = "98.03 bibrelex" +, author = "R. Siegel and J. R. Howell" +, title = "Thermal Radiation Heat Transfer" +, edition = "3rd" +, publisher = "Hemisphere Pu. Co." +, address = "Washington" +, year = 1992 +, update = "98.03 bibrelex" } @article{s-ecsas-85 -, author = "G. Sierksma" -, title = "Extending a convexity space to an aligned space" -, journal = "Indagationes Mathematicae" -, volume = 46 -, year = 1985 -, pages = "429--435" -, update = "98.07 bibrelex" +, author = "G. Sierksma" +, title = "Extending a convexity space to an aligned space" +, journal = "Indagationes Mathematicae" +, volume = 46 +, year = 1985 +, pages = "429--435" +, update = "98.07 bibrelex" } @inproceedings{ss-nempa-86 -, author = "S. Sifrony and Micha Sharir" -, title = "A new efficient motion-planning algorithm for a rod in polygonal space" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "178--186" -, precedes = "ss-nempa-87" -, cites = "bo-arcgi-79, cd-vdbcd-85, f-fapct-85, ks-empac-90, ls-esmpa-85, ls-pptmc-87, ls-ncfcc-87, m-gtd23-77, o-lbml-85, osy-gvdl1-84, osy-gvdl2-84, oy-rmpmd-85, r-cmpg-79, ss-pmp2g-83, ss-pmp3c-83, ss-empae-85, ss-pmp5c-84, sa-pmp4v-84, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "S. Sifrony and Micha Sharir" +, title = "A new efficient motion-planning algorithm for a rod in polygonal space" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "178--186" +, precedes = "ss-nempa-87" +, cites = "bo-arcgi-79, cd-vdbcd-85, f-fapct-85, ks-empac-90, ls-esmpa-85, ls-pptmc-87, ls-ncfcc-87, m-gtd23-77, o-lbml-85, osy-gvdl1-84, osy-gvdl2-84, oy-rmpmd-85, r-cmpg-79, ss-pmp2g-83, ss-pmp3c-83, ss-empae-85, ss-pmp5c-84, sa-pmp4v-84, ZZZ" +, update = "98.03 bibrelex+mitchell" } @article{ss-nempa-87 -, author = "S. Sifrony and Micha Sharir" -, title = "A new efficient motion-planning algorithm for a rod in two-dimensional polygonal space" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "367--402" -, keywords = "motion planning" -, succeeds = "ss-nempa-86" -, update = "98.03 mitchell" +, author = "S. Sifrony and Micha Sharir" +, title = "A new efficient motion-planning algorithm for a rod in two-dimensional polygonal space" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "367--402" +, keywords = "motion planning" +, succeeds = "ss-nempa-86" +, update = "98.03 mitchell" } @manual{s-iipg-92 -, author = "SiliconGraphics" -, title = "Iris Inventor Programming Guide" -, year = 1992 -, update = "98.11 bibrelex" +, author = "SiliconGraphics" +, title = "Iris Inventor Programming Guide" +, year = 1992 +, update = "98.11 bibrelex" } @article{s-escae-79 -, author = "C. B. {Silio, Jr.}" -, title = "An efficient simplex coverability algorithm in {$E^{2}$} with applications to stochastic sequential machines" -, journal = "IEEE Trans. Comput." -, volume = "C-28" -, year = 1979 -, pages = "109--120" +, author = "C. B. {Silio, Jr.}" +, title = "An efficient simplex coverability algorithm in {$E^{2}$} with applications to stochastic sequential machines" +, journal = "IEEE Trans. Comput." +, volume = "C-28" +, year = 1979 +, pages = "109--120" } @article{s--90 -, author = "E. Silla" -, title = "??" -, journal = "J. Mol. Graphics" -, volume = 8 -, month = sep -, year = 1990 -, pages = "168--172" -, update = "98.03 bibrelex" +, author = "E. Silla" +, title = "??" +, journal = "J. Mol. Graphics" +, volume = 8 +, month = sep +, year = 1990 +, pages = "168--172" +, update = "98.03 bibrelex" } @article{sp-gtpmi-89 -, author = "F. Sillion and C. Puech" -, title = "A general two-pass method integrating specular and diffuse reflection" -, journal = "Comput. Graph." -, volume = 23 -, number = 3 -, year = 1989 -, pages = "335--344" -, note = "Proc. SIGGRAPH '89" -, update = "98.03 bibrelex" +, author = "F. Sillion and C. Puech" +, title = "A general two-pass method integrating specular and diffuse reflection" +, journal = "Comput. Graph." +, volume = 23 +, number = 3 +, year = 1989 +, pages = "335--344" +, note = "Proc. SIGGRAPH '89" +, update = "98.03 bibrelex" } @book{sp-rgi-94 -, author = "F. Sillion and C. Puech" -, title = "Radiosity Global Illumination" -, publisher = "Morgan Kauffmann" -, year = 1994 -, update = "96.05 pocchiola" +, author = "F. Sillion and C. Puech" +, title = "Radiosity Global Illumination" +, publisher = "Morgan Kauffmann" +, year = 1994 +, update = "96.05 pocchiola" } @article{sgg-rrde-90 -, author = "F. X. Sillion and D. D. George and D. P. Greenberg" -, title = "Radiosity redistribution for dynamic environments" -, journal = "IEEE Comput. Graph. Appl." -, volume = 10 -, number = 4 -, month = jul -, year = 1990 -, pages = "26--34" -, update = "97.11 bibrelex" +, author = "F. X. Sillion and D. D. George and D. P. Greenberg" +, title = "Radiosity redistribution for dynamic environments" +, journal = "IEEE Comput. Graph. Appl." +, volume = 10 +, number = 4 +, month = jul +, year = 1990 +, pages = "26--34" +, update = "97.11 bibrelex" } @article{sd-fbcve-95 -, author = "S. X. Sillion and G. Drettakis" -, title = "Feature-based control of visibility error: {A} multi-resolution clustering algorithm for global illumination" -, journal = "Comput. Graph." -, volume = "??" -, year = 1995 -, note = "Proc. SIGGRAPH '95" -, update = "98.07 bibrelex" +, author = "S. X. Sillion and G. Drettakis" +, title = "Feature-based control of visibility error: {A} multi-resolution clustering algorithm for global illumination" +, journal = "Comput. Graph." +, volume = "??" +, year = 1995 +, note = "Proc. SIGGRAPH '95" +, update = "98.07 bibrelex" } @inproceedings{smk-agtin-95 -, author = "C. Silva and Joseph S. B. Mitchell and A. E. Kaufman" -, title = "Automatic generation of triangular irregular networks using greedy cuts" -, booktitle = "Visualization 95" -, publisher = "IEEE Computer Society Press" -, address = "San Jose CA" -, year = 1995 -, pages = "201--208" -, update = "98.03 mitchell, 96.01 mitchell" +, author = "C. Silva and Joseph S. B. Mitchell and A. E. Kaufman" +, title = "Automatic generation of triangular irregular networks using greedy cuts" +, booktitle = "Visualization 95" +, publisher = "IEEE Computer Society Press" +, address = "San Jose CA" +, year = 1995 +, pages = "201--208" +, update = "98.03 mitchell, 96.01 mitchell" } @techreport{s-adfbr-81 -, author = "C. E. Silva" -, title = "Alternative definitions of faces in boundary representations of solid objects" -, type = "Report" -, number = "TM-36" -, institution = "College Engrg. Appl. Sci., Univ. Rochester" -, address = "Rochester, NY" -, year = 1981 +, author = "C. E. Silva" +, title = "Alternative definitions of faces in boundary representations of solid objects" +, type = "Report" +, number = "TM-36" +, institution = "College Engrg. Appl. Sci., Univ. Rochester" +, address = "Rochester, NY" +, year = 1981 } @inproceedings{sm-gcaft-98 -, author = "Cl\'{a}udio T. Silva and Joseph S. B. Mitchell" -, title = "Greedy Cuts: {An} Advancing Front Terrain Triangulation Algorithm" -, booktitle = "Proc. 6th ACM Workshop on Advances in GIS" -, year = 1998 -, pages = "to appear" -, update = "98.07 mitchell" +, author = "Cl\'{a}udio T. Silva and Joseph S. B. Mitchell" +, title = "Greedy Cuts: {An} Advancing Front Terrain Triangulation Algorithm" +, booktitle = "Proc. 6th ACM Workshop on Advances in GIS" +, year = 1998 +, pages = "to appear" +, update = "98.07 mitchell" } @article{sm-lsrca-97 -, author = "C. T. Silva and Joseph S. B. Mitchell" -, title = "The Lazy Sweep Ray Casting Algorithm for Rendering Irregular Grids" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 3 -, number = 2 -, month = apr -, year = 1997 -, pages = "142--157" -, keywords = "plane sweep, space sweep, ray shooting, volume visualization, graphics" -, succeeds = "smk-frig-96" -, update = "98.03 mitchell, 97.07 held" -, annote = "special issue devoted to selected papers from Volume Visualization'96" +, author = "C. T. Silva and Joseph S. B. Mitchell" +, title = "The Lazy Sweep Ray Casting Algorithm for Rendering Irregular Grids" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 3 +, number = 2 +, month = apr +, year = 1997 +, pages = "142--157" +, keywords = "plane sweep, space sweep, ray shooting, volume visualization, graphics" +, succeeds = "smk-frig-96" +, update = "98.03 mitchell, 97.07 held" +, annote = "special issue devoted to selected papers from Volume Visualization'96" } @inproceedings{smk-frig-96 -, author = "C. T. Silva and Joseph S. B. Mitchell and A. E. Kaufman" -, title = "Fast Rendering of Irregular Grids" -, booktitle = "Proc. 1996 Symposium on Volume Visualization" -, publisher = "ACM SIGGRAPH" -, address = "San Francisco" -, month = oct -, year = 1996 -, pages = "15--22; 97 (color plate)" -, keywords = "plane sweep, space sweep, ray shooting, volume visualization, graphics" -, precedes = "sm-lsrca-97" -, update = "00.11 smid, 00.07 icking, 98.03 mitchell" +, author = "C. T. Silva and Joseph S. B. Mitchell and A. E. Kaufman" +, title = "Fast Rendering of Irregular Grids" +, booktitle = "Proc. 1996 Symposium on Volume Visualization" +, publisher = "ACM SIGGRAPH" +, address = "San Francisco" +, month = oct +, year = 1996 +, pages = "15--22; 97 (color plate)" +, keywords = "plane sweep, space sweep, ray shooting, volume visualization, graphics" +, precedes = "sm-lsrca-97" +, update = "00.11 smid, 00.07 icking, 98.03 mitchell" } @article{s-acars-79 -, author = "Y. V. {Silva Filho}" -, title = "Average case analysis of region search in balanced $k$-d trees" -, journal = "Inform. Process. Lett." -, volume = 8 -, year = 1979 -, pages = "219--223" +, author = "Y. V. {Silva Filho}" +, title = "Average case analysis of region search in balanced $k$-d trees" +, journal = "Inform. Process. Lett." +, volume = 8 +, year = 1979 +, pages = "219--223" } @techreport{s-mstif-78 -, author = "Y. V. {Silva Filho}" -, title = "Multidimensional search trees as indices of files" -, type = "Report" -, number = "??" -, institution = "Univ. Kent" -, address = "Canterbury, England" -, year = 1978 +, author = "Y. V. {Silva Filho}" +, title = "Multidimensional search trees as indices of files" +, type = "Report" +, number = "??" +, institution = "Univ. Kent" +, address = "Canterbury, England" +, year = 1978 } @article{s-ocdbk-81 -, author = "Y. V. {Silva Filho}" -, title = "Optimal choice of discriminators in a balanced $k$-d binary search tree" -, journal = "Inform. Process. Lett." -, volume = 13 -, year = 1981 -, pages = "67--70" +, author = "Y. V. {Silva Filho}" +, title = "Optimal choice of discriminators in a balanced $k$-d binary search tree" +, journal = "Inform. Process. Lett." +, volume = 13 +, year = 1981 +, pages = "67--70" } @phdthesis{s-ggna-88 -, author = "D. Silver" -, title = "Geometry, Graphics \& Numerical Analysis" -, school = "Princeton Univ." -, address = "Princeton, NJ" -, year = 1988 -, note = "In preparation" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "D. Silver" +, title = "Geometry, Graphics \& Numerical Analysis" +, school = "Princeton Univ." +, address = "Princeton, NJ" +, year = 1988 +, note = "In preparation" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @phdthesis{s-mpspp-86 -, author = "E. B. Silverberg" -, title = "Motion planning and shortest paths in the plane" -, type = "Ph.{D}. Thesis" -, school = "Dept. Oper. Res., Stanford Univ." -, address = "Stanford, CA" -, year = 1986 -, keywords = "motion planning, path planning, geodesic distance, shortest paths" +, author = "E. B. Silverberg" +, title = "Motion planning and shortest paths in the plane" +, type = "Ph.{D}. Thesis" +, school = "Dept. Oper. Res., Stanford Univ." +, address = "Stanford, CA" +, year = 1986 +, keywords = "motion planning, path planning, geodesic distance, shortest paths" } @techreport{s-sppbt-85 -, author = "E. B. Silverberg" -, title = "Shortest Paths for Polygonal Bodies in Two Dimensions" -, type = "Manuscript" -, institution = "Dept. of Operations Research, Stanford University" -, year = 1985 -, update = "93.09 milone+mitchell" +, author = "E. B. Silverberg" +, title = "Shortest Paths for Polygonal Bodies in Two Dimensions" +, type = "Manuscript" +, institution = "Dept. of Operations Research, Stanford University" +, year = 1985 +, update = "93.09 milone+mitchell" } @article{st-mce-80 -, author = "B. W. Silverman and D. M. Titterington" -, title = "Minimum covering ellipses" -, journal = "SIAM J. Sci. Statist. Comput." -, volume = 1 -, year = 1980 -, pages = "401--409" +, author = "B. W. Silverman and D. M. Titterington" +, title = "Minimum covering ellipses" +, journal = "SIAM J. Sci. Statist. Comput." +, volume = 1 +, year = 1980 +, pages = "401--409" } @book{s-ansfp-90 -, author = "P. K. Simpson" -, title = "Artificial Neural Systems: Foundations, Paradigms, Applications, and Implementations" -, publisher = "Pergamon Press" -, year = 1990 -, update = "98.07 bibrelex" +, author = "P. K. Simpson" +, title = "Artificial Neural Systems: Foundations, Paradigms, Applications, and Implementations" +, publisher = "Pergamon Press" +, year = 1990 +, update = "98.07 bibrelex" } @incollection{s-cmspg-70 -, author = "C. Sims" -, title = "Computational Methods in the Study of Permutation Groups" -, editor = "J. Leech" -, booktitle = "Computational Problems in Abstract Algebra" -, publisher = "Pergamon Press" -, year = 1970 -, update = "97.11 bibrelex" +, author = "C. Sims" +, title = "Computational Methods in the Study of Permutation Groups" +, editor = "J. Leech" +, booktitle = "Computational Problems in Abstract Algebra" +, publisher = "Pergamon Press" +, year = 1970 +, update = "97.11 bibrelex" } @article{s-evc-94 -, author = "K. Sims" -, title = "Evolving virtual creatures" -, journal = "Comput. Graph." -, volume = "??" -, year = 1994 -, pages = "15--22" -, note = "Proc. SIGGRAPH '94" -, update = "97.11 bibrelex" +, author = "K. Sims" +, title = "Evolving virtual creatures" +, journal = "Comput. Graph." +, volume = "??" +, year = 1994 +, pages = "15--22" +, note = "Proc. SIGGRAPH '94" +, update = "97.11 bibrelex" } @article{s-parud-90 -, author = "K. Sims" -, title = "Particle animation and rendering using data parallel computation" -, journal = "Comput. Graph." -, volume = 24 -, number = 4 -, year = 1990 -, pages = "405--413" -, update = "98.07 bibrelex" +, author = "K. Sims" +, title = "Particle animation and rendering using data parallel computation" +, journal = "Comput. Graph." +, volume = 24 +, number = 4 +, year = 1990 +, pages = "405--413" +, update = "98.07 bibrelex" } @book{s-gpf-97 -, author = "David Singer" -, title = "Geometry: Plane and Fancy" -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1997 -, comments = "Describes Zaremba's proof, sz-clccp-67" -, update = "00.11 smid, 00.07 orourke" +, author = "David Singer" +, title = "Geometry: Plane and Fancy" +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1997 +, comments = "Describes Zaremba's proof, sz-clccp-67" +, update = "00.11 smid, 00.07 orourke" } @article{s-tfpgs-38 -, author = "J. Singer" -, title = "A theorem in finite projective geometry and some applications to number theory" -, journal = "Trans. Amer. Math. Soc." -, volume = 43 -, year = 1938 -, note = "377--385" -, update = "98.03 bibrelex" +, author = "J. Singer" +, title = "A theorem in finite projective geometry and some applications to number theory" +, journal = "Trans. Amer. Math. Soc." +, volume = 43 +, year = 1938 +, note = "377--385" +, update = "98.03 bibrelex" } @techreport{s-dpg-91 -, author = "S. Singh" -, title = "Documentation for {Paren-to-GDS}" -, type = "Manuscript" -, institution = "Dept. of Comp. Sci., Brown University" -, year = 1991 -, keywords = "graph drawing" -, update = "96.09 tamassia" +, author = "S. Singh" +, title = "Documentation for {Paren-to-GDS}" +, type = "Manuscript" +, institution = "Dept. of Comp. Sci., Brown University" +, year = 1991 +, keywords = "graph drawing" +, update = "96.09 tamassia" } @inproceedings{skw-etgps-85 -, author = "P. Sinha and E. Klassen and K. K. Wang" -, title = "Exploiting topological and geometric properties for selective subdivision" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "39--45" -, cites = "b-cbs-72, clr-dbsst-80, lr-tdcgd-80, mk-impgo-84, p-afilb-84, gp-dt-74, l-padps-76, v-ssidq-, -rpmv4-82, -t1-78, gl-mc-83, k-smrra-, c-sacdc-74, ZZZ" -, update = "97.11 bibrelex" +, author = "P. Sinha and E. Klassen and K. K. Wang" +, title = "Exploiting topological and geometric properties for selective subdivision" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "39--45" +, cites = "b-cbs-72, clr-dbsst-80, lr-tdcgd-80, mk-impgo-84, p-afilb-84, gp-dt-74, l-padps-76, v-ssidq-, -rpmv4-82, -t1-78, gl-mc-83, k-smrra-, c-sacdc-74, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{sc-aipta-86 -, author = "J. K. Sircar and J. A. Cerbrian" -, title = "Application of image processing techniques to the automated labelling of raster digitized contours" -, booktitle = "Proc. 2nd Internat. Sympos. Spatial Data Handling" -, year = 1986 -, pages = "171--184" -, update = "98.07 bibrelex" +, author = "J. K. Sircar and J. A. Cerbrian" +, title = "Application of image processing techniques to the automated labelling of raster digitized contours" +, booktitle = "Proc. 2nd Internat. Sympos. Spatial Data Handling" +, year = 1986 +, pages = "171--184" +, update = "98.07 bibrelex" } @article{sc-rss-91 -, author = "A. Sirjani and G. Cross" -, title = "On representation of a shape's skeleton" -, journal = "Pattern Recogn. Lett." -, volume = 12 -, year = 1991 -, pages = "149--154" -, update = "93.09 milone+mitchell" +, author = "A. Sirjani and G. Cross" +, title = "On representation of a shape's skeleton" +, journal = "Pattern Recogn. Lett." +, volume = 12 +, year = 1991 +, pages = "149--154" +, update = "93.09 milone+mitchell" } @inproceedings{sw-tcica-95 -, author = "A. Prasad Sistla and Ouri Wolfson" -, title = "Temporal Conditions and Integrity Constraints in Active Database Systems" -, booktitle = "Proceedings of the 1995 ACM SIGMOD International Conference on Management of Data" -, year = 1995 -, pages = "269--280" -, update = "00.03 agarwal" +, author = "A. Prasad Sistla and Ouri Wolfson" +, title = "Temporal Conditions and Integrity Constraints in Active Database Systems" +, booktitle = "Proceedings of the 1995 ACM SIGMOD International Conference on Management of Data" +, year = 1995 +, pages = "269--280" +, update = "00.03 agarwal" } @inproceedings{swcd-mqmo-97 -, author = "A. P. Sistla and O. Wolfson and S. Chamberlain and S. Dao" -, title = "Modeling and querying moving objects" -, booktitle = "Proc. Intl Conf. Data Engineering" -, year = 1997 -, pages = "422--432" -, update = "00.03 agarwal" +, author = "A. P. Sistla and O. Wolfson and S. Chamberlain and S. Dao" +, title = "Modeling and querying moving objects" +, booktitle = "Proc. Intl Conf. Data Engineering" +, year = 1997 +, pages = "422--432" +, update = "00.03 agarwal" } @misc{sr-pps-97 -, author = "Valeriu Sitaru and Tony Ruso" -, title = "Polygonizations of Point Sets" -, howpublished = "McGill University, School of Computer Science, http://www.CS.McGill.CA/$\sim$ktulu/507/" -, year = 1997 -, url = "http://www.CS.McGill.CA/~ktulu/507/" -, update = "00.03 bibrelex" +, author = "Valeriu Sitaru and Tony Ruso" +, title = "Polygonizations of Point Sets" +, howpublished = "McGill University, School of Computer Science, http://www.CS.McGill.CA/$\sim$ktulu/507/" +, year = 1997 +, url = "http://www.CS.McGill.CA/~ktulu/507/" +, update = "00.03 bibrelex" } @inproceedings{ss-acqsm-92 -, author = "R. Sivan and H. Samet" -, title = "Algorithms for constructing quadtree surface maps" -, booktitle = "Proceedings of the fifth international symposium on spatial data handling" -, site = "Charleston, South Carolina" -, volume = 1 -, month = aug -, year = 1992 -, pages = "361--370" -, update = "96.05 efrat" +, author = "R. Sivan and H. Samet" +, title = "Algorithms for constructing quadtree surface maps" +, booktitle = "Proceedings of the fifth international symposium on spatial data handling" +, site = "Charleston, South Carolina" +, volume = 1 +, month = aug +, year = 1992 +, pages = "361--370" +, update = "96.05 efrat" } @inproceedings{sem-vainn-86 -, author = "M. Sivilotti and M. Emerling and C. Mead" -, title = "VLSI architectures for implementation of neural networks" -, editor = "J. Denker" -, booktitle = "Proc. AIP Conference: Neural Networks for Computing" -, site = "New York, NY" -, volume = 151 -, organization = "American Institute of Physics" -, year = 1986 -, pages = "408--413" -, update = "98.07 bibrelex" +, author = "M. Sivilotti and M. Emerling and C. Mead" +, title = "VLSI architectures for implementation of neural networks" +, editor = "J. Denker" +, booktitle = "Proc. AIP Conference: Neural Networks for Computing" +, site = "New York, NY" +, volume = 151 +, organization = "American Institute of Physics" +, year = 1986 +, pages = "408--413" +, update = "98.07 bibrelex" } @inproceedings{s-dg-89 -, author = "H.-W. Six" -, title = "{Durchschnittsanalyse} von {Gitterdatenstrukturen}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "H.-W. Six" +, title = "{Durchschnittsanalyse} von {Gitterdatenstrukturen}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @article{sw-cridr-82 -, author = "H.-W. Six and D. Wood" -, title = "Counting and reporting intersections of {$D$}-ranges" -, journal = "IEEE Trans. Comput." -, volume = "C-31" -, year = 1982 -, pages = "181--187" +, author = "H.-W. Six and D. Wood" +, title = "Counting and reporting intersections of {$D$}-ranges" +, journal = "IEEE Trans. Comput." +, volume = "C-31" +, year = 1982 +, pages = "181--187" } @article{sw-ripr-80 -, author = "H.-W. Six and D. Wood" -, title = "The rectangle intersection problem revisited" -, journal = "BIT" -, volume = 20 -, year = 1980 -, pages = "426--433" +, author = "H.-W. Six and D. Wood" +, title = "The rectangle intersection problem revisited" +, journal = "BIT" +, volume = 20 +, year = 1980 +, pages = "426--433" } @inproceedings{skt-rogd-98 -, author = "J. M. Six and K. G. Kakoulis and I. G. Tollis" -, title = "Refinement of Orthogonal Graph Drawings" -, editor = "S. H. Whitesides" -, booktitle = "Graph Drawing (Proc. GD~'98)" -, series = "Lecture Notes Comput. Sci." -, volume = 1547 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "302--315" -, update = "99.07 vismara, 99.03 vismara" +, author = "J. M. Six and K. G. Kakoulis and I. G. Tollis" +, title = "Refinement of Orthogonal Graph Drawings" +, editor = "S. H. Whitesides" +, booktitle = "Graph Drawing (Proc. GD~'98)" +, series = "Lecture Notes Comput. Sci." +, volume = 1547 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "302--315" +, update = "99.07 vismara, 99.03 vismara" } @article{s-ealcc-96 -, author = "V. Skala" -, title = "An Efficient Algorithm for Line Clipping by Convex and Non-convex Polyhedra in $E^3$" -, journal = "Comput. Graph. Forum" -, volume = 15 -, number = 1 -, month = mar -, year = 1996 -, pages = "61--68" -, update = "96.05 held" +, author = "V. Skala" +, title = "An Efficient Algorithm for Line Clipping by Convex and Non-convex Polyhedra in $E^3$" +, journal = "Comput. Graph. Forum" +, volume = 15 +, number = 1 +, month = mar +, year = 1996 +, pages = "61--68" +, update = "96.05 held" } @inproceedings{s-olcae-94 -, author = "Vaclav Skala" -, title = "$O(\log n)$ line clipping algorithm in $E^2$" -, booktitle = "Winter School of Computer Graphics and CAD Systems 94" -, publisher = "University of West Bohemia" -, address = "Pilsel, Czech Republic" -, month = jan -, year = 1994 -, pages = "174--191" -, comments = "line in convex polygon clipping" -, update = "95.05 korneenko" +, author = "Vaclav Skala" +, title = "$O(\log n)$ line clipping algorithm in $E^2$" +, booktitle = "Winter School of Computer Graphics and CAD Systems 94" +, publisher = "University of West Bohemia" +, address = "Pilsel, Czech Republic" +, month = jan +, year = 1994 +, pages = "174--191" +, comments = "line in convex polygon clipping" +, update = "95.05 korneenko" } @article{s-ckpps-90 -, author = "S. Skiena" -, title = "Counting {$k$}-projections of a point set" -, journal = "J. Combin. Theory Ser. A" -, volume = 55 -, year = 1990 -, pages = "153--160" -, update = "98.11 bibrelex" +, author = "S. Skiena" +, title = "Counting {$k$}-projections of a point set" +, journal = "J. Combin. Theory Ser. A" +, volume = 55 +, year = 1990 +, pages = "153--160" +, update = "98.11 bibrelex" } @phdthesis{s-gp-88 -, author = "Steven S. Skiena" -, title = "Geometric probing" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1988 -, keywords = "probing, doctoral thesis" -, update = "98.03 mitchell" +, author = "Steven S. Skiena" +, title = "Geometric probing" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1988 +, keywords = "probing, doctoral thesis" +, update = "98.03 mitchell" } @incollection{s-grp-97 -, author = "Steven S. Skiena" -, title = "Geometric reconstruction problems" -, chapter = 26 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "481--490" -, update = "98.03 mitchell, 97.11 orourke" +, author = "Steven S. Skiena" +, title = "Geometric reconstruction problems" +, chapter = 26 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "481--490" +, update = "98.03 mitchell, 97.11 orourke" } @article{s-irgp-92 -, author = "Steven S. Skiena" -, title = "Interactive Reconstruction via Geometric Probing" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1364--1383" -, update = "98.03 mitchell, 93.09 held" +, author = "Steven S. Skiena" +, title = "Interactive Reconstruction via Geometric Probing" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1364--1383" +, update = "98.03 mitchell, 93.09 held" } @article{s-pcphp-91 -, author = "Steven S. Skiena" -, title = "Probing convex polygons with half-planes" -, journal = "J. Algorithms" -, volume = 12 -, year = 1991 -, pages = "359--374" -, update = "98.03 mitchell" +, author = "Steven S. Skiena" +, title = "Probing convex polygons with half-planes" +, journal = "J. Algorithms" +, volume = 12 +, year = 1991 +, pages = "359--374" +, update = "98.03 mitchell" } @article{s-pgp-89 -, author = "Steven S. Skiena" -, title = "Problems in geometric probing" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "599--605" -, keywords = "survey paper, problem collection" -, update = "98.03 mitchell" +, author = "Steven S. Skiena" +, title = "Problems in geometric probing" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "599--605" +, keywords = "survey paper, problem collection" +, update = "98.03 mitchell" } @article{s-rgcss-89 -, author = "Steven S. Skiena" -, title = "Reconstructing graphs from cut-set sizes" -, journal = "Inform. Process. Lett." -, volume = 32 -, number = 3 -, year = 1989 -, pages = "123--7" -, update = "98.03 mitchell" +, author = "Steven S. Skiena" +, title = "Reconstructing graphs from cut-set sizes" +, journal = "Inform. Process. Lett." +, volume = 32 +, number = 3 +, year = 1989 +, pages = "123--7" +, update = "98.03 mitchell" } @book{s-adm-98 -, author = "S. S. Skiena" -, title = "The Algorithm Design Manual" -, publisher = "Telos/Springer-Verlag" -, address = "New York" -, year = 1998 -, update = "98.07 orourke" +, author = "S. S. Skiena" +, title = "The Algorithm Design Manual" +, publisher = "Telos/Springer-Verlag" +, address = "New York" +, year = 1998 +, update = "98.07 orourke" } @inproceedings{ssl-rsid-90 -, author = "Steven S. Skiena and W. D. Smith and P. Lemke" -, title = "Reconstructing sets from interpoint distances" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "332--339" -, cites = "b-nccp-49, b-ctp-77, b-hs1-61, b-hs2-64, dk-ebsrs-88, e-sdnp-46, gj-cigtn-79, gs-tde-74, l-fpq-87, lw-ciaff-88, lll-fprc-82, m-ltn-76, p-ncbmp-76, p-dmdci-35, p-axrac-44, p-sledd-39, rpib-cppcs1-80, rpib-cppcs2-80, r-drmrc-88, rs-shs-82, s-ewgks-79, s-pcg-77, s-pcouc-71, s-adwag-49, s-idssd-78, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Steven S. Skiena and W. D. Smith and P. Lemke" +, title = "Reconstructing sets from interpoint distances" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "332--339" +, cites = "b-nccp-49, b-ctp-77, b-hs1-61, b-hs2-64, dk-ebsrs-88, e-sdnp-46, gj-cigtn-79, gs-tde-74, l-fpq-87, lw-ciaff-88, lll-fprc-82, m-ltn-76, p-ncbmp-76, p-dmdci-35, p-axrac-44, p-sledd-39, rpib-cppcs1-80, rpib-cppcs2-80, r-drmrc-88, rs-shs-82, s-ewgks-79, s-pcg-77, s-pcouc-71, s-adwag-49, s-idssd-78, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @article{s-fchsp-82 -, author = "J. Sklansky" -, title = "Finding the convex hull of a simple polygon" -, journal = "Pattern Recogn. Lett." -, volume = 1 -, year = 1982 -, pages = "79--83" +, author = "J. Sklansky" +, title = "Finding the convex hull of a simple polygon" +, journal = "Pattern Recogn. Lett." +, volume = 1 +, year = 1982 +, pages = "79--83" } @article{s-mcrm-72 -, author = "J. Sklansky" -, title = "Measuring concavity on rectangular mosaic" -, journal = "IEEE Trans. Comput." -, volume = "C-21" -, year = 1972 -, pages = "1355--1364" +, author = "J. Sklansky" +, title = "Measuring concavity on rectangular mosaic" +, journal = "IEEE Trans. Comput." +, volume = "C-21" +, year = 1972 +, pages = "1355--1364" } @article{s-fcc-75 -, author = "J. Sklansky" -, title = "On filling cellular concavities" -, journal = "Comput. Graph. Image Process." -, volume = 4 -, year = 1975 -, pages = "236--247" +, author = "J. Sklansky" +, title = "On filling cellular concavities" +, journal = "Comput. Graph. Image Process." +, volume = 4 +, year = 1975 +, pages = "236--247" } @article{s-rcb-70 -, author = "J. Sklansky" -, title = "Recognition of convex blobs" -, journal = "Pattern Recogn." -, volume = 2 -, year = 1970 -, pages = "3--10" +, author = "J. Sklansky" +, title = "Recognition of convex blobs" +, journal = "Pattern Recogn." +, volume = 2 +, year = 1970 +, pages = "3--10" } @article{sch-mppds-72 -, author = "J. Sklansky and R. L. Chazin and B. J. Hansen" -, title = "Minimum perimeter polygons of digitized silhouettes" -, journal = "IEEE Trans. Comput." -, volume = "C-21" -, year = 1972 -, pages = "260--268" +, author = "J. Sklansky and R. L. Chazin and B. J. Hansen" +, title = "Minimum perimeter polygons of digitized silhouettes" +, journal = "IEEE Trans. Comput." +, volume = "C-21" +, year = 1972 +, pages = "260--268" } @article{scl-pdccb-76 -, author = "J. Sklansky and L. P. Cordella and S. Levialdi" -, title = "Parallel detection of concavities in cellular blobs" -, journal = "IEEE Trans. Comput." -, volume = "C-25" -, year = 1976 -, pages = "187--196" +, author = "J. Sklansky and L. P. Cordella and S. Levialdi" +, title = "Parallel detection of concavities in cellular blobs" +, journal = "IEEE Trans. Comput." +, volume = "C-25" +, year = 1976 +, pages = "187--196" } @article{sg-fpadc-80 -, author = "J. Sklansky and V. Gonzalez" -, title = "Fast polygonal approximation of digitized curves" -, journal = "Pattern Recogn." -, volume = 12 -, year = 1980 -, pages = "327--331" +, author = "J. Sklansky and V. Gonzalez" +, title = "Fast polygonal approximation of digitized curves" +, journal = "Pattern Recogn." +, volume = 12 +, year = 1980 +, pages = "327--331" } @article{s-sacse-91 -, author = "S. Skyum" -, title = "A simple algorithm for computing the smallest enclosing circle" -, journal = "Inform. Process. Lett." -, volume = 37 -, year = 1991 -, pages = "121--125" -, keywords = "computational geometry, Voronoi diagrams, convex polygons" -, abstract = "Presented is a simple $O(n \log n)$ algorithm for - computing the smallest enclosing circle of a convex - polygon. It can be easily extended to algorithms that - compute the farthest- and the closest-point Voronoi - diagram of a convex polygon within the same time bound. - (Author abstract) 4 Refs." +, author = "S. Skyum" +, title = "A simple algorithm for computing the smallest enclosing circle" +, journal = "Inform. Process. Lett." +, volume = 37 +, year = 1991 +, pages = "121--125" +, keywords = "computational geometry, Voronoi diagrams, convex polygons" +, abstract = "Presented is a simple $O(n \log n)$ algorithm for + computing the smallest enclosing circle of a convex + polygon. It can be easily extended to algorithms that + compute the farthest- and the closest-point Voronoi + diagram of a convex polygon within the same time bound. + (Author abstract) 4 Refs." } @techreport{s-sagdt-91 -, author = "S. Skyum" -, title = "A sweepline algorithm for generalized {Delaunay} triangulations" -, number = "DAIMI PB-373" -, institution = "CS Dept., Aarhus University" -, year = 1991 -, update = "00.03 bibrelex" +, author = "S. Skyum" +, title = "A sweepline algorithm for generalized {Delaunay} triangulations" +, number = "DAIMI PB-373" +, institution = "CS Dept., Aarhus University" +, year = 1991 +, update = "00.03 bibrelex" } @inproceedings{s-sagdt-92 -, author = "Sven Skyum" -, title = "A Sweepline Algorithm for Generalized {Delaunay} Triangulations and a Simple Method for Nearest-Neighbour Search" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "41--43" -, update = "00.03 bibrelex" +, author = "Sven Skyum" +, title = "A Sweepline Algorithm for Generalized {Delaunay} Triangulations and a Simple Method for Nearest-Neighbour Search" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "41--43" +, update = "00.03 bibrelex" } @inproceedings{sd-udfft-80 -, author = "J. R. Slagle and J. K. Dixon" -, title = "Using descriptions to find figures that approximate the given points" -, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." -, year = 1980 -, pages = "1049--1054" +, author = "J. R. Slagle and J. K. Dixon" +, title = "Using descriptions to find figures that approximate the given points" +, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." +, year = 1980 +, pages = "1049--1054" } @article{sb-2dlpc-94 -, author = "M. Slater and B. A. Barsky" -, title = "2D Line and Polygon Clipping Based on Space Subdivision" -, journal = "Visual Comput." -, volume = 10 -, number = 7 -, year = 1994 -, pages = "407--422" -, update = "96.01 held" +, author = "M. Slater and B. A. Barsky" +, title = "2D Line and Polygon Clipping Based on Space Subdivision" +, journal = "Visual Comput." +, volume = 10 +, number = 7 +, year = 1994 +, pages = "407--422" +, update = "96.01 held" } @article{s-2toap-80 -, author = "D. D. Sleator" -, title = "A $2.5$ times optimal algorithm for packing in two dimensions" -, journal = "Inform. Process. Lett." -, volume = 10 -, year = 1980 -, pages = "37--40" +, author = "D. D. Sleator" +, title = "A $2.5$ times optimal algorithm for packing in two dimensions" +, journal = "Inform. Process. Lett." +, volume = 10 +, year = 1980 +, pages = "37--40" } @phdthesis{s-oamnf-80 -, author = "D. D. Sleator" -, title = "An {$0(nm\log n)$} algorithm for maximum network flow" -, school = "Stanford University" -, year = 1980 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "D. D. Sleator" +, title = "An {$0(nm\log n)$} algorithm for maximum network flow" +, school = "Stanford University" +, year = 1980 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @article{st-dsdt-83 -, author = "D. D. Sleator and R. E. Tarjan" -, title = "A Data Structure for Dynamic Trees" -, journal = "J. Comput. Syst. Sci." -, volume = 26 -, number = 3 -, year = 1983 -, pages = "362--381" -, keywords = "data structure, tree" -, update = "95.09 tamassia" +, author = "D. D. Sleator and R. E. Tarjan" +, title = "A Data Structure for Dynamic Trees" +, journal = "J. Comput. Syst. Sci." +, volume = 26 +, number = 3 +, year = 1983 +, pages = "362--381" +, keywords = "data structure, tree" +, update = "95.09 tamassia" } @article{st-aelup-85 -, author = "D. D. Sleator and R. E. Tarjan" -, title = "Amortized efficiency of list update and paging rules" -, journal = "Commun. ACM" -, volume = 28 -, year = 1985 -, pages = "202--208" -, update = "97.03 icking" +, author = "D. D. Sleator and R. E. Tarjan" +, title = "Amortized efficiency of list update and paging rules" +, journal = "Commun. ACM" +, volume = 28 +, year = 1985 +, pages = "202--208" +, update = "97.03 icking" } @article{st-sabst-85 -, author = "D. D. Sleator and R. E. Tarjan" -, title = "Self-Adjusting Binary Search Trees" -, journal = "J. ACM" -, volume = 32 -, number = 3 -, year = 1985 -, pages = "652--686" -, keywords = "data structure, search tree" -, update = "95.09 tamassia" +, author = "D. D. Sleator and R. E. Tarjan" +, title = "Self-Adjusting Binary Search Trees" +, journal = "J. ACM" +, volume = 32 +, number = 3 +, year = 1985 +, pages = "652--686" +, keywords = "data structure, search tree" +, update = "95.09 tamassia" } @article{st-sah-86 -, author = "D. D. Sleator and R. E. Tarjan" -, title = "Self-adjusting heaps" -, journal = "SIAM J. Comput." -, volume = 15 -, number = 1 -, month = feb -, year = 1986 -, pages = "52--69" -, update = "98.07 bibrelex" +, author = "D. D. Sleator and R. E. Tarjan" +, title = "Self-adjusting heaps" +, journal = "SIAM J. Comput." +, volume = 15 +, number = 1 +, month = feb +, year = 1986 +, pages = "52--69" +, update = "98.07 bibrelex" } @inproceedings{stt-rdthg-86 -, author = "D. D. Sleator and R. E. Tarjan and W. P. Thurston" -, title = "Rotation distance, triangulations, and hyperbolic geometry" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "122--135" -, precedes = "stt-rdthg-88" +, author = "D. D. Sleator and R. E. Tarjan and W. P. Thurston" +, title = "Rotation distance, triangulations, and hyperbolic geometry" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "122--135" +, precedes = "stt-rdthg-88" } @article{stt-rdthg-88 -, author = "D. D. Sleator and R. E. Tarjan and W. P. Thurston" -, title = "Rotation distance, triangulations, and hyperbolic geometry" -, journal = "J. Amer. Math. Soc." -, volume = 1 -, year = 1988 -, pages = "647--682" -, succeeds = "stt-rdthg-86" +, author = "D. D. Sleator and R. E. Tarjan and W. P. Thurston" +, title = "Rotation distance, triangulations, and hyperbolic geometry" +, journal = "J. Amer. Math. Soc." +, volume = 1 +, year = 1988 +, pages = "647--682" +, succeeds = "stt-rdthg-86" } @inproceedings{sh-srsd-81 -, author = "K. R. Sloan and L. M. Hrechanyk" -, title = "Surface reconstruction from sparse data" -, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." -, year = 1981 -, pages = "45--48" -, update = "98.03 bibrelex" +, author = "K. R. Sloan and L. M. Hrechanyk" +, title = "Surface reconstruction from sparse data" +, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." +, year = 1981 +, pages = "45--48" +, update = "98.03 bibrelex" } @inproceedings{sp-cstir-87 -, author = "K. R. Sloan and J. Painter" -, title = "From contours to surfaces: testbed and initial results" -, booktitle = "Proc. Graphics Interface '87" -, year = 1987 -, pages = "115--120" -, update = "98.03 bibrelex" +, author = "K. R. Sloan and J. Painter" +, title = "From contours to surfaces: testbed and initial results" +, booktitle = "Proc. Graphics Interface '87" +, year = 1987 +, pages = "115--120" +, update = "98.03 bibrelex" } @article{sp-pgmbo-88 -, author = "K. R. Sloan and J. Painter" -, title = "Pessimal guess may be optimal: {A} counterintuitive search result" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 10 -, year = 1988 -, pages = "949--955" -, update = "98.03 bibrelex" +, author = "K. R. Sloan and J. Painter" +, title = "Pessimal guess may be optimal: {A} counterintuitive search result" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 10 +, year = 1988 +, pages = "949--955" +, update = "98.03 bibrelex" } @article{s-facdt-87 -, author = "S. W. Sloan" -, title = "A fast algorithm for constructing {Delaunay} triangulations in the plane" -, journal = "Adv. Eng. Softw." -, volume = 9 -, number = 1 -, month = jan -, year = 1987 -, pages = "34--55" -, annote = "Your basic incremental switching algorithm. Points are - sorted into bins to increase speed of point location - (which walks the triangulation, starting at the - previous triangle.)" -, abstract = "The primary purpose of the paper is to present a - FORTRAN 77 code for the efficient triangulation of - planar data points as might be required for the mesh - generation of a finite element analysis. The author - describes in detail the various features of the - algorithm and compares them to existing routines. The - efficiency of the algorithm is demonstrated for - randomly distributed data points where the number of - points varies between 100 and 10,000. It is shown that - the proposed scheme outperforms existing routines for - both large and small data sets. -G. E. Bell, St. - Andrews, U" +, author = "S. W. Sloan" +, title = "A fast algorithm for constructing {Delaunay} triangulations in the plane" +, journal = "Adv. Eng. Softw." +, volume = 9 +, number = 1 +, month = jan +, year = 1987 +, pages = "34--55" +, annote = "Your basic incremental switching algorithm. Points are + sorted into bins to increase speed of point location + (which walks the triangulation, starting at the + previous triangle.)" +, abstract = "The primary purpose of the paper is to present a + FORTRAN 77 code for the efficient triangulation of + planar data points as might be required for the mesh + generation of a finite element analysis. The author + describes in detail the various features of the + algorithm and compares them to existing routines. The + efficiency of the algorithm is demonstrated for + randomly distributed data points where the number of + points varies between 100 and 10,000. It is shown that + the proposed scheme outperforms existing routines for + both large and small data sets. -G. E. Bell, St. + Andrews, U" } @techreport{s-fagcd-91 -, author = "S. W. Sloan" -, title = "A Fast Algorithm for Generating Constrained {Delaunay} Triangulations" -, type = "Research Report" -, number = "065.07.1991" -, institution = "The University of Newcastle Department of Civil Engineering and Surveying" -, address = "New South Wales" -, year = 1991 -, annote = "First computes DT then constrained edges are inserted - one at a time. Flips are done that decrease number of - crossings with constraint edges, until no crossings - remain. Then Delaunay flips are done. (DT algorithm - uses bin ordering to speed point location)" +, author = "S. W. Sloan" +, title = "A Fast Algorithm for Generating Constrained {Delaunay} Triangulations" +, type = "Research Report" +, number = "065.07.1991" +, institution = "The University of Newcastle Department of Civil Engineering and Surveying" +, address = "New South Wales" +, year = 1991 +, annote = "First computes DT then constrained edges are inserted + one at a time. Flips are done that decrease number of + crossings with constraint edges, until no crossings + remain. Then Delaunay flips are done. (DT algorithm + uses bin ordering to speed point location)" } @article{sh-iwac2-84 -, author = "S. W. Sloan and G. T. Houlsby" -, title = "An Implementation of {Watson's} Algorithm For Computing 2-dimensional {Delaunay} Triangulations" -, journal = "Adv. Eng. Softw." -, volume = 6 -, number = 4 -, year = 1984 -, pages = "192--197" -, annote = "Sigh. Incremental algorithm all triangles whose cc - contains new point are deleted. Points are sorted by x - coord, so only those triangles whose cc includes - current x coord need be included. F77 code included. - Does not keep adjacency info for triangles." +, author = "S. W. Sloan and G. T. Houlsby" +, title = "An Implementation of {Watson's} Algorithm For Computing 2-dimensional {Delaunay} Triangulations" +, journal = "Adv. Eng. Softw." +, volume = 6 +, number = 4 +, year = 1984 +, pages = "192--197" +, annote = "Sigh. Incremental algorithm all triangles whose cc + contains new point are deleted. Points are sorted by x + coord, so only those triangles whose cc includes + current x coord need be included. F77 code included. + Does not keep adjacency info for triangles." } @inproceedings{s-aeqes-82 -, author = "A. van der Sluis" -, title = "Asymptotic expansions for quadrature errors over a simplex" -, booktitle = "Proc. Conf. Numerical Integration" -, site = "Oberwolfach, West Germany" -, publisher = "Birkh{\"a}user" -, year = 1982 -, pages = "222--240" -, update = "98.07 bibrelex" +, author = "A. van der Sluis" +, title = "Asymptotic expansions for quadrature errors over a simplex" +, booktitle = "Proc. Conf. Numerical Integration" +, site = "Oberwolfach, West Germany" +, publisher = "Birkh{\"a}user" +, year = 1982 +, pages = "222--240" +, update = "98.07 bibrelex" } @techreport{sh-gpamg-?? -, author = "M. L. C. Sluiter and D. L. Hansen" -, title = "A general purpose automatic mesh generator for shell and solid finite elements" -, type = "Manuscript" -, institution = "??" -, year = "??" +, author = "M. L. C. Sluiter and D. L. Hansen" +, title = "A general purpose automatic mesh generator for shell and solid finite elements" +, type = "Manuscript" +, institution = "??" +, year = "??" } @inproceedings{s-caig-87 -, author = "M. Slusarek" -, title = "A Coloring Algorithm for Interval Graphs" -, booktitle = "Proc. 1987 MCFS." -, series = "Lecture Notes in CS" -, volume = 379 -, year = 1987 -, pages = "471--480" -, update = "98.07 bibrelex" +, author = "M. Slusarek" +, title = "A Coloring Algorithm for Interval Graphs" +, booktitle = "Proc. 1987 MCFS." +, series = "Lecture Notes in CS" +, volume = 379 +, year = 1987 +, pages = "471--480" +, update = "98.07 bibrelex" } @article{s-ta-87 -, author = "S. Smale" -, title = "On the topology of algorithms {I}" -, journal = "J. of Compl." -, volume = 3 -, year = 1987 -, pages = "81--89" -, update = "98.11 bibrelex" +, author = "S. Smale" +, title = "On the topology of algorithms {I}" +, journal = "J. of Compl." +, volume = 3 +, year = 1987 +, pages = "81--89" +, update = "98.11 bibrelex" } @article{s-rcrm-58 -, author = "S. Smale" -, title = "Regular curves on Riemannian manifolds" -, journal = "Trans. Amer. Math. Soc." -, volume = 87 -, year = 1958 -, pages = "492--512" -, update = "98.03 bibrelex" +, author = "S. Smale" +, title = "Regular curves on Riemannian manifolds" +, journal = "Trans. Amer. Math. Soc." +, volume = 87 +, year = 1958 +, pages = "492--512" +, update = "98.03 bibrelex" } @incollection{s-passm-83 -, author = "S. Smale" -, title = "The problem of the average speed of the simplex method" -, editor = "A. Bachem and M. Gr{\"o}tschel and B. Korte" -, booktitle = "Mathematical Programming: the state of the art" -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1983 -, pages = "530--539" +, author = "S. Smale" +, title = "The problem of the average speed of the simplex method" +, editor = "A. Bachem and M. Gr{\"o}tschel and B. Korte" +, booktitle = "Mathematical Programming: the state of the art" +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1983 +, pages = "530--539" } @inproceedings{sv-vvtcs-92 -, author = "J. C. Smart and V. Vemuri" -, title = "A-Vu: {A} Visualization Tool for Complex Software Systems" -, booktitle = "Proc. IEEE Symposium on Assessment of Quality Software Development Tools" -, month = may -, year = 1992 -, pages = "" -, keywords = "graph drawing" -, update = "94.05 devillers, 93.09 tamassia" +, author = "J. C. Smart and V. Vemuri" +, title = "A-Vu: {A} Visualization Tool for Complex Software Systems" +, booktitle = "Proc. IEEE Symposium on Assessment of Quality Software Development Tools" +, month = may +, year = 1992 +, pages = "" +, keywords = "graph drawing" +, update = "94.05 devillers, 93.09 tamassia" } % not in J. ACM in 1981 or any nearby years @article{sr-nnpir-81 -, author = "A. F. Smeaton and C. J. van Rijsbergen" -, title = "The nearest neighbour problem in information retrieval" -, journal = "J. ACM" -, volume = "??" -, year = 1981 -, pages = "83--87" +, author = "A. F. Smeaton and C. J. van Rijsbergen" +, title = "The nearest neighbour problem in information retrieval" +, journal = "J. ACM" +, volume = "??" +, year = 1981 +, pages = "83--87" } @article{skt-acc1v-95 -, author = "A. Smellie and S. Kahn and S. Teig" -, title = "Analysis of conformational coverage: $1$. validation and estimation of coverage" -, journal = "J. Chem. Inf. Comput. Sci." -, volume = 8 -, year = 1995 -, pages = "290--303" -, update = "98.07 bibrelex" +, author = "A. Smellie and S. Kahn and S. Teig" +, title = "Analysis of conformational coverage: $1$. validation and estimation of coverage" +, journal = "J. Chem. Inf. Comput. Sci." +, volume = 8 +, year = 1995 +, pages = "290--303" +, update = "98.07 bibrelex" } @incollection{sd-ddcps-91 -, author = "A. Smeulders and L. Dorst" -, title = "Decomposition of discrete curves into piece-wise straight segments in linear time" -, editor = "Melter and Rosenfeld and Bhattacharya" -, booktitle = "Vision Geometry" -, series = "Proc. Amer. Math. Soc." -, volume = 119 -, publisher = "Contemporary Mathematics," -, year = 1991 -, pages = "169--195" -, update = "98.11 bibrelex" +, author = "A. Smeulders and L. Dorst" +, title = "Decomposition of discrete curves into piece-wise straight segments in linear time" +, editor = "Melter and Rosenfeld and Bhattacharya" +, booktitle = "Vision Geometry" +, series = "Proc. Amer. Math. Soc." +, volume = 119 +, publisher = "Contemporary Mathematics," +, year = 1991 +, pages = "169--195" +, update = "98.11 bibrelex" } @techreport{s-wcaso-90 -, author = "M. Smid" -, title = "A worst-case algorithm for semi-online updates on decomposable problems" -, type = "Report" -, number = "A-03/90" -, institution = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1990 -, precedes = "s-asolu-90" +, author = "M. Smid" +, title = "A worst-case algorithm for semi-online updates on decomposable problems" +, type = "Report" +, number = "A-03/90" +, institution = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1990 +, precedes = "s-asolu-90" } @inproceedings{s-asolu-90 -, author = "M. Smid" -, title = "Algorithms for semi-online updates on decomposable problems" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "347--350" -, succeeds = "s-wcaso-90" -, cites = "ZZZ" -, update = "98.07 bibrelex" +, author = "M. Smid" +, title = "Algorithms for semi-online updates on decomposable problems" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "347--350" +, succeeds = "s-wcaso-90" +, cites = "ZZZ" +, update = "98.07 bibrelex" } @techreport{s-oafkp-93 -, author = "M. Smid" -, title = "An {$O(n \log n)$} algorithm for finding a $k$-point subset with minimal {$L_{\infty}$}-diameter" -, type = "Report" -, number = "MPI-I-93-116" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1993 -, update = "93.09 smid, 93.05 smid" -, annote = "The analysis of the running time is wrong; the actual running time is very high" +, author = "M. Smid" +, title = "An {$O(n \log n)$} algorithm for finding a $k$-point subset with minimal {$L_{\infty}$}-diameter" +, type = "Report" +, number = "MPI-I-93-116" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1993 +, update = "93.09 smid, 93.05 smid" +, annote = "The analysis of the running time is wrong; the actual running time is very high" } @techreport{s-cppcg-95 -, author = "M. Smid" -, title = "Closest point problems in computational geometry" -, type = "Report" -, number = "MPI-I-95-1-026" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1995 -, keywords = "survey paper" -, precedes = "s-cppcg-00" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 smid, 96.01 smid" +, author = "M. Smid" +, title = "Closest point problems in computational geometry" +, type = "Report" +, number = "MPI-I-95-1-026" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1995 +, keywords = "survey paper" +, precedes = "s-cppcg-00" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 smid, 96.01 smid" } @incollection{s-cppcg-00 -, author = "Michiel Smid" -, title = "Closest Point Problems in Computational Geometry" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "877--935" -, succeeds = "s-cppcg-95" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.11 smid, 98.07 mitchell" -, annote = "Chapter 20 of su-hcg-00" +, author = "Michiel Smid" +, title = "Closest Point Problems in Computational Geometry" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "877--935" +, succeeds = "s-cppcg-95" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 98.11 smid, 98.07 mitchell" +, annote = "Chapter 20 of su-hcg-00" } @phdthesis{s-ddsms-89 -, author = "M. Smid" -, title = "Dynamic data structures on multiple storage media" -, type = "Ph.{D}. Thesis" -, school = "Depts. Math. Comput. Sci., Univ. Amsterdam" -, address = "Amsterdam, Netherlands" -, year = 1989 -, keywords = "doctoral thesis" +, author = "M. Smid" +, title = "Dynamic data structures on multiple storage media" +, type = "Ph.{D}. Thesis" +, school = "Depts. Math. Comput. Sci., Univ. Amsterdam" +, address = "Amsterdam, Netherlands" +, year = 1989 +, keywords = "doctoral thesis" } @techreport{s-drpla-91 -, author = "M. Smid" -, title = "Dynamic rectangular point location, with an application to the closest pair problem" -, type = "Report" -, number = "MPI-I-91-101" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1991 -, precedes = "s-drpla-95" -, update = "95.05 smid" +, author = "M. Smid" +, title = "Dynamic rectangular point location, with an application to the closest pair problem" +, type = "Report" +, number = "MPI-I-91-101" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1991 +, precedes = "s-drpla-95" +, update = "95.05 smid" } @article{s-drpla-95 -, author = "M. Smid" -, title = "Dynamic rectangular point location, with an application to the closest pair problem" -, journal = "Inform. Comput." -, volume = 116 -, year = 1995 -, pages = "1--9" -, succeeds = "s-drpla-91" -, update = "95.05 smid" +, author = "M. Smid" +, title = "Dynamic rectangular point location, with an application to the closest pair problem" +, journal = "Inform. Comput." +, volume = 116 +, year = 1995 +, pages = "1--9" +, succeeds = "s-drpla-91" +, update = "95.05 smid" } @techreport{s-fkpse-92 -, author = "M. Smid" -, title = "Finding $k$ points with a smallest enclosing square" -, type = "Report" -, number = "MPI-I-92-152" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 +, author = "M. Smid" +, title = "Finding $k$ points with a smallest enclosing square" +, type = "Report" +, number = "MPI-I-92-152" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 } @techreport{s-lnstd-94 -, author = "M. Smid" -, title = "Lecture Notes: Selected Topics in Data Structures" -, type = "Report" -, number = "MPI-I-94-155" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, keywords = "skip lists, union-find, range trees, post-office problem, maintaining order in a list" -, update = "95.01 smid" +, author = "M. Smid" +, title = "Lecture Notes: Selected Topics in Data Structures" +, type = "Report" +, number = "MPI-I-94-155" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, keywords = "skip lists, union-find, range trees, post-office problem, maintaining order in a list" +, update = "95.01 smid" } @techreport{s-mmdpsl-90t -, author = "M. Smid" -, title = "Maintaining the minimal distance of a point set in less than linear time" -, type = "Report" -, number = "A-06/90" -, institution = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1990 -, precedes = "s-mmdpsl-90i" +, author = "M. Smid" +, title = "Maintaining the minimal distance of a point set in less than linear time" +, type = "Report" +, number = "A-06/90" +, institution = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1990 +, precedes = "s-mmdpsl-90i" } @inproceedings{s-mmdpsl-90i -, author = "M. Smid" -, title = "Maintaining the minimal distance of a point set in less than linear time" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "1--4" -, succeeds = "s-mmdpsl-90t" -, precedes = "s-mmdpsl-91a" -, cites = "agss-ltacv-89, ds-dcmdf-89, m-mdscg-84, v-oaann-86, ZZZ" -, update = "98.07 bibrelex" +, author = "M. Smid" +, title = "Maintaining the minimal distance of a point set in less than linear time" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "1--4" +, succeeds = "s-mmdpsl-90t" +, precedes = "s-mmdpsl-91a" +, cites = "agss-ltacv-89, ds-dcmdf-89, m-mdscg-84, v-oaann-86, ZZZ" +, update = "98.07 bibrelex" } @article{s-mmdpsl-91a -, author = "M. Smid" -, title = "Maintaining the minimal distance of a point set in less than linear time" -, journal = "Algorithms Rev." -, volume = 2 -, year = 1991 -, pages = "33--44" -, succeeds = "s-mmdpsl-90i" +, author = "M. Smid" +, title = "Maintaining the minimal distance of a point set in less than linear time" +, journal = "Algorithms Rev." +, volume = 2 +, year = 1991 +, pages = "33--44" +, succeeds = "s-mmdpsl-90i" } @techreport{s-mmdpsp-90t -, author = "M. Smid" -, title = "Maintaining the minimal distance of a point set in polylogarithmic time" -, type = "Report" -, number = "A-13/90" -, institution = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, West Germany" -, year = 1990 -, precedes = "s-mmdpsp-91i" +, author = "M. Smid" +, title = "Maintaining the minimal distance of a point set in polylogarithmic time" +, type = "Report" +, number = "A-13/90" +, institution = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, West Germany" +, year = 1990 +, precedes = "s-mmdpsp-91i" } @inproceedings{s-mmdpsp-91i -, author = "M. Smid" -, title = "Maintaining the minimal distance of a point set in polylogarithmic time" -, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1991 -, pages = "1--6" -, succeeds = "s-mmdpsp-90t" -, precedes = "s-mmdpsp-91t" +, author = "M. Smid" +, title = "Maintaining the minimal distance of a point set in polylogarithmic time" +, booktitle = "Proc. 2nd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1991 +, pages = "1--6" +, succeeds = "s-mmdpsp-90t" +, precedes = "s-mmdpsp-91t" } @article{s-mmdpsp-92a -, author = "M. Smid" -, title = "Maintaining the minimal distance of a point set in polylogarithmic time" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "415--431" -, succeeds = "s-mmdpsp-91t" +, author = "M. Smid" +, title = "Maintaining the minimal distance of a point set in polylogarithmic time" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "415--431" +, succeeds = "s-mmdpsp-91t" } @techreport{s-mmdpsp-91t -, author = "M. Smid" -, title = "Maintaining the minimal distance of a point set in polylogarithmic time (revised version)" -, type = "Report" -, number = "MPI-I-91-103" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1991 -, succeeds = "s-mmdpsp-91i" -, precedes = "s-mmdpsp-92a" +, author = "M. Smid" +, title = "Maintaining the minimal distance of a point set in polylogarithmic time (revised version)" +, type = "Report" +, number = "MPI-I-91-103" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1991 +, succeeds = "s-mmdpsp-91i" +, precedes = "s-mmdpsp-92a" } @techreport{s-ocaps-96 -, author = "M. Smid" -, title = "On the circumradius of acute point sets" -, type = "Report" -, number = "TR 96-08" -, institution = "Department of Computer Science, King's College" -, address = "London, UK" -, year = 1996 -, update = "96.05 smid" +, author = "M. Smid" +, title = "On the circumradius of acute point sets" +, type = "Report" +, number = "TR 96-08" +, institution = "Department of Computer Science, King's College" +, address = "London, UK" +, year = 1996 +, update = "96.05 smid" } @techreport{s-rtsp-91t -, author = "M. Smid" -, title = "Range trees with slack parameter" -, type = "Report" -, number = "MPI-I-91-102" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1991 -, precedes = "s-rtsp-91a" +, author = "M. Smid" +, title = "Range trees with slack parameter" +, type = "Report" +, number = "MPI-I-91-102" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1991 +, precedes = "s-rtsp-91a" } @article{s-rtsp-91a -, author = "M. Smid" -, title = "Range trees with slack parameter" -, journal = "Algorithms Rev." -, volume = 2 -, year = 1991 -, pages = "77--87" -, succeeds = "s-rtsp-91t" +, author = "M. Smid" +, title = "Range trees with slack parameter" +, journal = "Algorithms Rev." +, volume = 2 +, year = 1991 +, pages = "77--87" +, succeeds = "s-rtsp-91t" } @inproceedings{s-rpldc-91 -, author = "M. Smid" -, title = "Rectangular point location and the dynamic closest pair problem" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "364--374" +, author = "M. Smid" +, title = "Rectangular point location and the dynamic closest pair problem" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "364--374" } @techreport{sj-wrspp-94 -, author = "M. Smid and R. Janardan" -, title = "On the width and roundness of a set of points in the plane" -, type = "Report" -, number = "MPI-I-94-111" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1994 -, update = "95.01 smid" +, author = "M. Smid and R. Janardan" +, title = "On the width and roundness of a set of points in the plane" +, type = "Report" +, number = "MPI-I-94-111" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1994 +, update = "95.01 smid" } @inproceedings{sj-wrspp-95 -, author = "Michiel Smid and Ravi Janardan" -, title = "On the Width and Roundness of a Set of Points in the Plane" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "193--198" -, precedes = "sj-wrspp-99" -, update = "99.07 smid, 95.09 jones" +, author = "Michiel Smid and Ravi Janardan" +, title = "On the Width and Roundness of a Set of Points in the Plane" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "193--198" +, precedes = "sj-wrspp-99" +, update = "99.07 smid, 95.09 jones" } @article{sj-wrspp-99 -, author = "M. Smid and R. Janardan" -, title = "On the width and roundness of a set of points in the plane" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, year = 1999 -, pages = "97--108" -, succeeds = "sj-wrspp-95" -, update = "99.07 smid" +, author = "M. Smid and R. Janardan" +, title = "On the width and roundness of a set of points in the plane" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, year = 1999 +, pages = "97--108" +, succeeds = "sj-wrspp-95" +, update = "99.07 smid" } @article{s-dsufp-90 -, author = "M. H. Smid" -, title = "A data structure for the Union-Find problem having good single-operation complexity" -, journal = "Algorithms Rev." -, volume = 1 -, number = 1 -, year = 1990 -, pages = "1--11" +, author = "M. H. Smid" +, title = "A data structure for the Union-Find problem having good single-operation complexity" +, journal = "Algorithms Rev." +, volume = 1 +, number = 1 +, year = 1990 +, pages = "1--11" } @article{so-mrtsm-90 -, author = "M. H. M. Smid and M. H. Overmars" -, title = "Maintaining range trees in secondary memory, part {II}: lower bounds" -, journal = "Acta Inform." -, volume = 27 -, year = 1990 -, pages = "453--480" +, author = "M. H. M. Smid and M. H. Overmars" +, title = "Maintaining range trees in secondary memory, part {II}: lower bounds" +, journal = "Acta Inform." +, volume = 27 +, year = 1990 +, pages = "453--480" } @techreport{s-uesi-79 -, author = "D. A. Smith" -, title = "Using Enhanced Spherical Images" -, number = "MIT AI Memo 530" -, institution = "MIT" -, month = may -, year = 1979 -, update = "97.11 bibrelex" +, author = "D. A. Smith" +, title = "Using Enhanced Spherical Images" +, number = "MIT AI Memo 530" +, institution = "MIT" +, month = may +, year = 1979 +, update = "97.11 bibrelex" } @article{sv-hsiub-89 -, author = "D. J. Smith and M. K. Vamanamurthy" -, title = "How small is a unit ball?" -, journal = "Math. Mag." -, volume = 62 -, year = 1989 -, pages = "101--107" -, update = "97.11 bibrelex" +, author = "D. J. Smith and M. K. Vamanamurthy" +, title = "How small is a unit ball?" +, journal = "Math. Mag." +, volume = 62 +, year = 1989 +, pages = "101--107" +, update = "97.11 bibrelex" } @article{s-siec-61 -, author = "H. J. Smith" -, title = "On systems of indeterminate equations and congruences" -, journal = "Philos. Trans." -, volume = 151 -, year = 1861 -, pages = "293--326" -, update = "98.03 bibrelex" +, author = "H. J. Smith" +, title = "On systems of indeterminate equations and congruences" +, journal = "Philos. Trans." +, volume = 151 +, year = 1861 +, pages = "293--326" +, update = "98.03 bibrelex" } @article{sg-smtus-82 -, author = "J. M. Smith and M. Gross" -, title = "Steiner minimal trees and urban service networks" -, journal = "J. Socio. Econ. Plng." -, volume = 16 -, year = 1982 -, pages = "21--38" -, update = "98.03 bibrelex" +, author = "J. M. Smith and M. Gross" +, title = "Steiner minimal trees and urban service networks" +, journal = "J. Socio. Econ. Plng." +, volume = 16 +, year = 1982 +, pages = "21--38" +, update = "98.03 bibrelex" } @article{sll-ohars-80 -, author = "J. M. Smith and D. T. Lee and J. S. Liebman" -, title = "An {$O(n \log n)$} algorithm for the rectilinear {Steiner} minimal tree problem" -, journal = "Engineering Optimization" -, volume = 4 -, year = 1980 -, pages = "179--192" -, update = "98.07 bibrelex" +, author = "J. M. Smith and D. T. Lee and J. S. Liebman" +, title = "An {$O(n \log n)$} algorithm for the rectilinear {Steiner} minimal tree problem" +, journal = "Engineering Optimization" +, volume = 4 +, year = 1980 +, pages = "179--192" +, update = "98.07 bibrelex" } @article{sll-ohasm-81 -, author = "J. M. Smith and D. T. Lee and J. S. Liebman" -, title = "An {$O(n \log n)$} heuristic algorithm for {Steiner} minimal tree problems on the {Euclidean} metric" -, journal = "Networks" -, volume = 11 -, year = 1981 -, pages = "23--29" +, author = "J. M. Smith and D. T. Lee and J. S. Liebman" +, title = "An {$O(n \log n)$} heuristic algorithm for {Steiner} minimal tree problems on the {Euclidean} metric" +, journal = "Networks" +, volume = 11 +, year = 1981 +, pages = "23--29" } @incollection{sw-cgtnd-92 -, author = "J. M. Smith and P. Winter" -, title = "Computational geometry and topological network design" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 1 -, publisher = "World Scientific" -, address = "Singapore" -, year = 1992 -, pages = "287--385" -, keywords = "survey paper" -, comments = "includes morphological classification of basic computational geometry" -, precedes = "sw-cgtnd-95" -, update = "98.07 icking, 93.09 erickson" +, author = "J. M. Smith and P. Winter" +, title = "Computational geometry and topological network design" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 1 +, publisher = "World Scientific" +, address = "Singapore" +, year = 1992 +, pages = "287--385" +, keywords = "survey paper" +, comments = "includes morphological classification of basic computational geometry" +, precedes = "sw-cgtnd-95" +, update = "98.07 icking, 93.09 erickson" } @incollection{sw-cgtnd-95 -, author = "J. M. Smith and P. Winter" -, title = "Computational Geometry and Topological Network Design" -, editor = "Ding-Zhu Du and Frank Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "351--451" -, keywords = "survey paper" -, comments = "includes morphological classification of basic computational geometry" -, succeeds = "sw-cgtnd-92" -, update = "98.07 icking" +, author = "J. M. Smith and P. Winter" +, title = "Computational Geometry and Topological Network Design" +, editor = "Ding-Zhu Du and Frank Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "351--451" +, keywords = "survey paper" +, comments = "includes morphological classification of basic computational geometry" +, succeeds = "sw-cgtnd-92" +, update = "98.07 icking" } @article{ssw-pmapr-77 -, author = "K. T. Smith and D. C. Solomon and S. L. Wagner" -, title = "Practical and mathematical aspects of the problem of reconstructing objects from radiographs" -, journal = "Bull. Amer. Math. Soc." -, volume = 83 -, month = nov -, year = 1977 -, pages = "1227--1270" -, update = "98.11 bibrelex" +, author = "K. T. Smith and D. C. Solomon and S. L. Wagner" +, title = "Practical and mathematical aspects of the problem of reconstructing objects from radiographs" +, journal = "Bull. Amer. Math. Soc." +, volume = 83 +, month = nov +, year = 1977 +, pages = "1227--1270" +, update = "98.11 bibrelex" } @techreport{spg-flaip-88 -, author = "T. Smith and G. Peng and P. Gahinet" -, title = "A Family of Local, Asynchronous, Iterative, and Parallel Procedures for Solving the Weighted Region Least Cost Path Problem" -, institution = "Department of Computer Science, University of California, Santa Barbara" -, year = 1988 +, author = "T. Smith and G. Peng and P. Gahinet" +, title = "A Family of Local, Asynchronous, Iterative, and Parallel Procedures for Solving the Weighted Region Least Cost Path Problem" +, institution = "Department of Computer Science, University of California, Santa Barbara" +, year = 1988 } @inproceedings{sg-epesa-90 -, author = "T. R. Smith and P. Gao" -, title = "Experimental performance evaluations on spatial access methods" -, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" -, site = "Z{\"u}rich" -, month = jul -, year = 1990 -, pages = "991--1002" -, update = "00.11 smid, 00.07 icking, 94.05 franciosa" +, author = "T. R. Smith and P. Gao" +, title = "Experimental performance evaluations on spatial access methods" +, booktitle = "Proc. 4th Internat. Sympos. Spatial Data Handling" +, site = "Z{\"u}rich" +, month = jul +, year = 1990 +, pages = "991--1002" +, update = "00.11 smid, 00.07 icking, 94.05 franciosa" } @techreport{s-ptadi-92 -, author = "W. D. Smith" -, title = "A polynomial-time algorithm for deciding the inscribability of graphs" -, type = "Manuscript" -, institution = "NEC Research Institute" -, address = "Princeton, NJ" -, year = 1992 -, update = "97.11 bibrelex" +, author = "W. D. Smith" +, title = "A polynomial-time algorithm for deciding the inscribability of graphs" +, type = "Manuscript" +, institution = "NEC Research Institute" +, address = "Princeton, NJ" +, year = 1992 +, update = "97.11 bibrelex" } @article{s-hfsmt-92 -, author = "W. D. Smith" -, title = "How to find {Steiner} minimal trees in {Euclidean} $d$-space" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "137--177" -, update = "98.07 bibrelex" +, author = "W. D. Smith" +, title = "How to find {Steiner} minimal trees in {Euclidean} $d$-space" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "137--177" +, update = "98.07 bibrelex" } @techreport{s-ptdsi-87 -, author = "W. D. Smith" -, title = "Polytope triangulations in $d$-space, improving {Hadamard}'s inequality, and maximal volumes of regular polytopes in hyperbolic $d$-space" -, type = "Report" -, number = "??" -, institution = "Program Appl. Comput. Math., Princeton Univ." -, address = "Princeton, NJ" -, year = 1987 +, author = "W. D. Smith" +, title = "Polytope triangulations in $d$-space, improving {Hadamard}'s inequality, and maximal volumes of regular polytopes in hyperbolic $d$-space" +, type = "Report" +, number = "??" +, institution = "Program Appl. Comput. Math., Princeton Univ." +, address = "Princeton, NJ" +, year = 1987 } @phdthesis{s-scgmm-88 -, author = "W. D. Smith" -, title = "Studies in computational geometry motivated by mesh generation" -, school = "Priceton Univ." -, address = "Princeton, NJ" -, year = 1988 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "W. D. Smith" +, title = "Studies in computational geometry motivated by mesh generation" +, school = "Priceton Univ." +, address = "Princeton, NJ" +, year = 1988 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @article{sms-sbgpp-00 -, author = "S. Smorodinsky and J. S. B. Mitchell and M. Sharir" -, title = "Sharp Bounds on Geometric Permutations for Pairwise Disjoint Balls in {$\Re^d$}" -, journal = "Discrete Comput. Geom." -, volume = 23 -, year = 2000 -, pages = "247--259" -, update = "01.04 orourke" +, author = "S. Smorodinsky and J. S. B. Mitchell and M. Sharir" +, title = "Sharp Bounds on Geometric Permutations for Pairwise Disjoint Balls in {$\Re^d$}" +, journal = "Discrete Comput. Geom." +, volume = 23 +, year = 2000 +, pages = "247--259" +, update = "01.04 orourke" } @article{s-pcouc-71 -, author = "C. J. Smyth" -, title = "On the product of the conjugates outside the unit circle of an algebraic integer" -, journal = "Bull. London Math. Soc." -, volume = 3 -, year = 1971 -, pages = "169--175" -, update = "97.11 bibrelex" +, author = "C. J. Smyth" +, title = "On the product of the conjugates outside the unit circle of an algebraic integer" +, journal = "Bull. London Math. Soc." +, volume = 3 +, year = 1971 +, pages = "169--175" +, update = "97.11 bibrelex" } @article{s-mcssp-66 -, author = "P. H. A. Sneath" -, title = "A method for curve seeking from scattered points" -, journal = "Comput. J." -, volume = 9 -, year = 1966 -, pages = "383--391" +, author = "P. H. A. Sneath" +, title = "A method for curve seeking from scattered points" +, journal = "Comput. J." +, volume = 9 +, year = 1966 +, pages = "383--391" } @inproceedings{s-gbvtd-01 -, author = "Jack Snoeyink" -, title = "A Geometric Basis for Visualizing Time-Dependent Volume Data" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "13--16" -, update = "01.04 icking" +, author = "Jack Snoeyink" +, title = "A Geometric Basis for Visualizing Time-Dependent Volume Data" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "13--16" +, update = "01.04 icking" } @inproceedings{s-tkwsd-90 -, author = "J. Snoeyink" -, title = "A trivial knot whose spanning disks have exponential size" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "139--147" -, cites = "a-bt-79, cm-grdg-72, cf-ikt-65, f-pc6ck-89, h-tdnei-61, r-kl-76, rs-iplt-72, s-bdpvv-61, ZZZ" -, update = "98.03 bibrelex" +, author = "J. Snoeyink" +, title = "A trivial knot whose spanning disks have exponential size" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "139--147" +, cites = "a-bt-79, cm-grdg-72, cf-ikt-65, f-pc6ck-89, h-tdnei-61, r-kl-76, rs-iplt-72, s-bdpvv-61, ZZZ" +, update = "98.03 bibrelex" } @unpublished{s-edpti-88 -, author = "J. Snoeyink" -, title = "Etch: A drawing program that illustrates geometric duality" -, year = 1988 -, note = "Unpublished article" -, update = "98.03 bibrelex" +, author = "J. Snoeyink" +, title = "Etch: A drawing program that illustrates geometric duality" +, year = 1988 +, note = "Unpublished article" +, update = "98.03 bibrelex" } @incollection{s-pl-97 -, author = "J. Snoeyink" -, title = "Point location" -, chapter = 30 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "559--574" -, cites = "a-bt-79, cm-grdg-72, cf-ikt-65, f-pc6ck-89, h-tdnei-61, r-kl-76, rs-iplt-72, s-bdpvv-61, ZZZ" -, update = "97.11 bibrelex+orourke" +, author = "J. Snoeyink" +, title = "Point location" +, chapter = 30 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "559--574" +, cites = "a-bt-79, cm-grdg-72, cf-ikt-65, f-pc6ck-89, h-tdnei-61, r-kl-76, rs-iplt-72, s-bdpvv-61, ZZZ" +, update = "97.11 bibrelex+orourke" } @article{s-nvapo-91 -, author = "J. Snoeyink" -, title = "The number of views of axis-parallel objects" -, journal = "Algorithms Rev." -, volume = 2 -, year = 1991 -, pages = "27--32" +, author = "J. Snoeyink" +, title = "The number of views of axis-parallel objects" +, journal = "Algorithms Rev." +, volume = 2 +, year = 1991 +, pages = "27--32" } @inproceedings{s-votcb-93 -, author = "J. Snoeyink" -, title = "Video: Objects that cannot be taken apart with two hands" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = 405 -, keywords = "video review" -, succeeds = "ss-otcbt-93" -, cites = "fh-usk-63, n-pa-88, ss-otcbt-93, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "J. Snoeyink" +, title = "Video: Objects that cannot be taken apart with two hands" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = 405 +, keywords = "video review" +, succeeds = "ss-otcbt-93" +, cites = "fh-usk-63, n-pa-88, ss-otcbt-93, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @inproceedings{sh-sac-89 -, author = "J. Snoeyink and J. Hershberger" -, title = "Sweeping arrangements of curves" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "354--363" -, cites = "ass-sulbl-87, bo-arcgi-79, bgs-op-74, ce-oails-88, cgl-pgd-85, dghs-eafcr-88, e-acg-87, egppss-acptc-88, eg-tsa-86, eos-calha-86, epss-lebfi-87, g-pcbgs-80, gp-pgcsc-80, gp-tpdnd-81, gp-tod-82, gp-sccca-84, gp-httpa-82, gy-frcg-86, g-cp-67, g-ah-71, g-as-72, g-ibs-70, hs-ndssg-86, jk-spals-88, l-dtdpe-26, ms-rcibt-88, mo-al3sd-88, m-vigau-88p, ow-nmcvg-88, p-hresr-84, r-kl-76, sh-gip-76, scklps-gadss-86, ws-prnds-88, ZZZ" -, update = "98.03 bibrelex" +, author = "J. Snoeyink and J. Hershberger" +, title = "Sweeping arrangements of curves" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "354--363" +, cites = "ass-sulbl-87, bo-arcgi-79, bgs-op-74, ce-oails-88, cgl-pgd-85, dghs-eafcr-88, e-acg-87, egppss-acptc-88, eg-tsa-86, eos-calha-86, epss-lebfi-87, g-pcbgs-80, gp-pgcsc-80, gp-tpdnd-81, gp-tod-82, gp-sccca-84, gp-httpa-82, gy-frcg-86, g-cp-67, g-ah-71, g-as-72, g-ibs-70, hs-ndssg-86, jk-spals-88, l-dtdpe-26, ms-rcibt-88, mo-al3sd-88, m-vigau-88p, ow-nmcvg-88, p-hresr-84, r-kl-76, sh-gip-76, scklps-gadss-86, ws-prnds-88, ZZZ" +, update = "98.03 bibrelex" } @incollection{sh-sac-91 -, author = "J. Snoeyink and J. Hershberger" -, title = "Sweeping arrangements of curves" -, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" -, publisher = "American Mathematical Society, Association for Computing Machinery" -, address = "Providence, RI" -, year = 1991 -, pages = "309--349" -, update = "99.11 bibrelex, 97.11 bibrelex" +, author = "J. Snoeyink and J. Hershberger" +, title = "Sweeping arrangements of curves" +, booktitle = "Discrete and Computational Geometry: Papers from the DIMACS Special Year" +, publisher = "American Mathematical Society, Association for Computing Machinery" +, address = "Providence, RI" +, year = 1991 +, pages = "309--349" +, update = "99.11 bibrelex, 97.11 bibrelex" } @inproceedings{sk-goirc-97 -, author = "J. Snoeyink and M. van Kreveld" -, title = "Good orders for incremental (re)constructions" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "400--402" -, cites = "bkos-cgaa-97, be-mgot-92i, cns-l5cap-81, d-gc-95, dl-cvdrp-91, gks-ricdv-92, h-pm-96, k-osps-83, m-cgitr-93, pflm-tin-78, rsst-efcpg-96, s-barga-93, s-mplbc-85, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "J. Snoeyink and M. van Kreveld" +, title = "Good orders for incremental (re)constructions" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "400--402" +, cites = "bkos-cgaa-97, be-mgot-92i, cns-l5cap-81, d-gc-95, dl-cvdrp-91, gks-ricdv-92, h-pm-96, k-osps-83, m-cgitr-93, pflm-tin-78, rsst-efcpg-96, s-barga-93, s-mplbc-85, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{sk-ltrdt-97 -, author = "J. Snoeyink and M. van Kreveld" -, title = "Linear-time reconstruction of {D}elaunay triangulations with applications" -, booktitle = "Proc. Annu. European Sympos. Algorithms" -, nickname = "ESA'97" -, series = "Lecture Notes Comput. Sci." -, number = 1284 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "459--471" -, update = "98.07 oostrum" +, author = "J. Snoeyink and M. van Kreveld" +, title = "Linear-time reconstruction of {D}elaunay triangulations with applications" +, booktitle = "Proc. Annu. European Sympos. Algorithms" +, nickname = "ESA'97" +, series = "Lecture Notes Comput. Sci." +, number = 1284 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "459--471" +, update = "98.07 oostrum" } @inproceedings{ss-otcbt-93 -, author = "J. Snoeyink and J. Stolfi" -, title = "Objects that cannot be taken apart with two hands" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "247--256" -, precedes = "s-votcb-93" -, cites = "c-pwpd-91, d-rbwdo-84, b-navw-54, b-p11a-55, fh-usk-63, gy-tsr-80, m-camap-91, mss-esmpg-87, n-pa-88, p-gsa-89, p-pplr-90, wm-paimt-92, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "J. Snoeyink and J. Stolfi" +, title = "Objects that cannot be taken apart with two hands" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "247--256" +, precedes = "s-votcb-93" +, cites = "c-pwpd-91, d-rbwdo-84, b-navw-54, b-p11a-55, fh-usk-63, gy-tsr-80, m-camap-91, mss-esmpg-87, n-pa-88, p-gsa-89, p-pplr-90, wm-paimt-92, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{ss-otcbt-94 -, author = "J. Snoeyink and J. Stolfi" -, title = "Objects that cannot be taken apart with two hands" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "367--384" -, update = "95.01 smid" +, author = "J. Snoeyink and J. Stolfi" +, title = "Objects that cannot be taken apart with two hands" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "367--384" +, update = "95.01 smid" } @techreport{sz-grmp-93 -, author = "Jack Snoeyink and Chong Zhu" -, title = "Generating random monotone polygons" -, type = "Technical Report" -, number = "93-28" -, institution = "Dept. of Computer Science, University of British Columbia" -, month = sep -, year = 1993 -, update = "98.11 bibrelex" +, author = "Jack Snoeyink and Chong Zhu" +, title = "Generating random monotone polygons" +, type = "Technical Report" +, number = "93-28" +, institution = "Dept. of Computer Science, University of British Columbia" +, month = sep +, year = 1993 +, update = "98.11 bibrelex" } @techreport{s-tacg-90 -, author = "J. S. Snoeyink" -, title = "Topological Approaches in Computational Geometry" -, type = "Report" -, number = "STAN-CS-90-1331" -, institution = "Stanford Univ." -, address = "Standford, CA" -, year = 1990 -, update = "97.11 bibrelex" +, author = "J. S. Snoeyink" +, title = "Topological Approaches in Computational Geometry" +, type = "Report" +, number = "STAN-CS-90-1331" +, institution = "Stanford Univ." +, address = "Standford, CA" +, year = 1990 +, update = "97.11 bibrelex" } @article{swfcb-immcb-93 -, author = "J. M. Snyder and A. R. Woodbury and K. Fleischer and B. Currin and A. H. Barr" -, title = "Interval methods for multi-point collisions between time-dependent curved surfaces" -, journal = "Comput. Graph." -, volume = 27 -, month = aug -, year = 1993 -, pages = "321--334" -, note = "Proc. SIGGRAPH '93" -, update = "98.03 bibrelex" +, author = "J. M. Snyder and A. R. Woodbury and K. Fleischer and B. Currin and A. H. Barr" +, title = "Interval methods for multi-point collisions between time-dependent curved surfaces" +, journal = "Comput. Graph." +, volume = 27 +, month = aug +, year = 1993 +, pages = "321--334" +, note = "Proc. SIGGRAPH '93" +, update = "98.03 bibrelex" } @article{ss-chrw-93 -, author = "T. Snyder and J. M. Steele" -, title = "Convex hulls of random walks" -, journal = "Proc. Amer. Math. Soc." -, volume = 117 -, number = 4 -, year = 1993 -, pages = "1165--1173" -, update = "95.01 mitchell" +, author = "T. Snyder and J. M. Steele" +, title = "Convex hulls of random walks" +, journal = "Proc. Amer. Math. Soc." +, volume = 117 +, number = 4 +, year = 1993 +, pages = "1165--1173" +, update = "95.01 mitchell" } @phdthesis{s-awcls-87 -, author = "T. L. Snyder" -, title = "Asymptotic worst case lengths in some problems from classical Computational geometry and Combinatorial Optimization" -, school = "Princeton Univ." -, address = "Princeton, NJ" -, year = 1987 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "T. L. Snyder" +, title = "Asymptotic worst case lengths in some problems from classical Computational geometry and Combinatorial Optimization" +, school = "Princeton Univ." +, address = "Princeton, NJ" +, year = 1987 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @unpublished{s-lbrst-89 -, author = "T. L. Snyder" -, title = "Lower bounds for rectilinear {Steiner} trees in bounded space" -, year = 1989 -, note = "Submitted for publication" -, update = "97.11 bibrelex" +, author = "T. L. Snyder" +, title = "Lower bounds for rectilinear {Steiner} trees in bounded space" +, year = 1989 +, note = "Submitted for publication" +, update = "97.11 bibrelex" } @article{s-lbrst-91 -, author = "T. L. Snyder" -, title = "Lower bounds for rectilinear {Steiner} trees in bounded space" -, journal = "Inform. Process. Lett." -, volume = 37 -, year = 1991 -, pages = "71--74" -, update = "98.03 bibrelex" +, author = "T. L. Snyder" +, title = "Lower bounds for rectilinear {Steiner} trees in bounded space" +, journal = "Inform. Process. Lett." +, volume = 37 +, year = 1991 +, pages = "71--74" +, update = "98.03 bibrelex" } @inproceedings{s-mrsta-90 -, author = "T. L. Snyder" -, title = "On minimal rectilinear {Steiner} trees in all dimensions" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "311--320" -, cites = "bhh-sptmp-59, b-tprrs-88, cg-stbps-81, ch-lmrst-79, cr-wim-41, f-splrt-55, fhp-gtadm-79, gj-rstpi-77, ggj-sncgp-76, gp-smt-68, g-qwcet-88, gr-ibtsp-87, h-sprd-66, h-smtrd-76, k-hlcet-87, m-ps-61, m-lotcs-84, sr-lvsta-75, s-scgmm-88, s-awcls-87, s-sfars-89, s-lbrst-89, ss-wcgmu-90, s-sefnl-81, ss-wcgrs-89, srp-tspmm-83, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "T. L. Snyder" +, title = "On minimal rectilinear {Steiner} trees in all dimensions" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "311--320" +, cites = "bhh-sptmp-59, b-tprrs-88, cg-stbps-81, ch-lmrst-79, cr-wim-41, f-splrt-55, fhp-gtadm-79, gj-rstpi-77, ggj-sncgp-76, gp-smt-68, g-qwcet-88, gr-ibtsp-87, h-sprd-66, h-smtrd-76, k-hlcet-87, m-ps-61, m-lotcs-84, sr-lvsta-75, s-scgmm-88, s-awcls-87, s-sfars-89, s-lbrst-89, ss-wcgmu-90, s-sefnl-81, ss-wcgrs-89, srp-tspmm-83, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{s-wcmrs-92 -, author = "T. L. Snyder" -, title = "Worst-case minimal rectilinear {Steiner} trees in all dimensions" -, journal = "Discrete Comput. Geom." -, volume = 8 -, year = 1992 -, pages = "73--92" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "T. L. Snyder" +, title = "Worst-case minimal rectilinear {Steiner} trees in all dimensions" +, journal = "Discrete Comput. Geom." +, volume = 8 +, year = 1992 +, pages = "73--92" +, update = "98.11 bibrelex, 98.03 bibrelex" } @inproceedings{ss-piets-92 -, author = "T. L. Snyder and J. M. Steele" -, title = "A priori inequalities for the {Euclidean} traveling salesman" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "344--349" -, cites = "f-splrt-55, k-hlcet-89, n-ps-82, s-pwcac-90, ss-wcgrs-89, v-sptnp-51, ZZZ" -, update = "97.11 bibrelex" +, author = "T. L. Snyder and J. M. Steele" +, title = "A priori inequalities for the {Euclidean} traveling salesman" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "344--349" +, cites = "f-splrt-55, k-hlcet-89, n-ps-82, s-pwcac-90, ss-wcgrs-89, v-sptnp-51, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{ss-epsts-93 -, author = "T. L. Snyder and J. M. Steele" -, title = "Equidistribution of Point Sets for the Traveling Salesman and Related Problems" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "462--466" -, update = "93.09 milone+mitchell" +, author = "T. L. Snyder and J. M. Steele" +, title = "Equidistribution of Point Sets for the Traveling Salesman and Related Problems" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "462--466" +, update = "93.09 milone+mitchell" } @article{ss-wcgmu-90 -, author = "T. L. Snyder and J. M. Steele" -, title = "Worst-Case greedy matchings in the unit $d$-cube" -, journal = "Networks" -, volume = 20 -, year = 1990 -, pages = "779--800" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "T. L. Snyder and J. M. Steele" +, title = "Worst-Case greedy matchings in the unit $d$-cube" +, journal = "Networks" +, volume = 20 +, year = 1990 +, pages = "779--800" +, update = "98.03 bibrelex, 97.11 bibrelex" } @inproceedings{ss-wctps-94 -, author = "T. L. Snyder and J. M. Steele" -, title = "Worst-Case {TSP} Point Sets in All Dimensions are Asymptotically Equidistributed" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "147--152" -, cites = "bhh-sptmp-59, f-splrt-55, g-qwcet-88, hlp-i-64, k-hlcet-89, k-pascs-76, s-wcmrs-92, ss-epsts-93, ss-wcgrs-89, srp-tspmm-83, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "T. L. Snyder and J. M. Steele" +, title = "Worst-Case {TSP} Point Sets in All Dimensions are Asymptotically Equidistributed" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "147--152" +, cites = "bhh-sptmp-59, f-splrt-55, g-qwcet-88, hlp-i-64, k-hlcet-89, k-pascs-76, s-wcmrs-92, ss-epsts-93, ss-wcgrs-89, srp-tspmm-83, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{st-ccdac-82 -, author = "W. E. Snyder and D. A. Tang" -, title = "Comments on ``{A} counterexample to a diameter algorithm for convex polygons''" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-4" -, year = 1982 -, pages = 309 -, succeeds = "bt-cdacp-82" +, author = "W. E. Snyder and D. A. Tang" +, title = "Comments on ``{A} counterexample to a diameter algorithm for convex polygons''" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-4" +, year = 1982 +, pages = 309 +, succeeds = "bt-cdacp-82" } @article{st-fer-80 -, author = "W. E. Snyder and D. A. Tang" -, title = "Finding the extrema of a region" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = "PAMI-2" -, year = 1980 -, pages = "266--269" -, keywords = "diameter, polygons" -, precedes = "bt-cdacp-82" +, author = "W. E. Snyder and D. A. Tang" +, title = "Finding the extrema of a region" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = "PAMI-2" +, year = 1980 +, pages = "266--269" +, keywords = "diameter, polygons" +, precedes = "bt-cdacp-82" } @techreport{s-aedsd-92 -, author = "J. Soares" -, title = "Approximating {Euclidean} distances by small degree graphs" -, type = "Technical {Report}" -, number = "92-05" -, institution = "Univ. Chicago" -, year = 1992 -, update = "97.11 bibrelex" +, author = "J. Soares" +, title = "Approximating {Euclidean} distances by small degree graphs" +, type = "Technical {Report}" +, number = "92-05" +, institution = "Univ. Chicago" +, year = 1992 +, update = "97.11 bibrelex" } @article{s-aedsd-94 -, author = "J. Soares" -, title = "Approximating {Euclidean} distances by small degree graphs" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "213--233" -, update = "94.05 smid" +, author = "J. Soares" +, title = "Approximating {Euclidean} distances by small degree graphs" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "213--233" +, update = "94.05 smid" } @phdthesis{s-gs-92 -, author = "J. Soares" -, title = "Graph Spanners" -, school = "Univ. Chicago" -, address = "Chicago, IL" -, year = 1992 -, note = "Report CS 92-14" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "J. Soares" +, title = "Graph Spanners" +, school = "Univ. Chicago" +, address = "Chicago, IL" +, year = 1992 +, note = "Report CS 92-14" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{s-gss-92 -, author = "J. Soares" -, title = "Graph spanners: a survey" -, journal = "Congr. Numer." -, volume = 89 -, year = 1992 -, pages = "225--238" -, update = "98.03 smid" +, author = "J. Soares" +, title = "Graph spanners: a survey" +, journal = "Congr. Numer." +, volume = 89 +, year = 1992 +, pages = "225--238" +, update = "98.03 smid" } @unpublished{s-s-91 -, author = "J. Soares" -, title = "Spanners" -, year = 1991 -, note = "Unpublished Manuscript" -, update = "97.11 bibrelex" +, author = "J. Soares" +, title = "Spanners" +, year = 1991 +, note = "Unpublished Manuscript" +, update = "97.11 bibrelex" } @book{s-hb-70 -, author = "H. A. Sober" -, title = "Handbook of Biochemistry" -, edition = "2nd" -, publisher = "The Chemical Rubber Co." -, year = 1970 -, update = "98.03 bibrelex" +, author = "H. A. Sober" +, title = "Handbook of Biochemistry" +, edition = "2nd" +, publisher = "The Chemical Rubber Co." +, year = 1970 +, update = "98.03 bibrelex" } @article{s-ebrtd-89 -, author = "C. Sobhanpanah" -, title = "Extension of a boundary representation technique for the description of $n$-dimensional polytopes" -, journal = "Comput. Graph." -, volume = 13 -, number = 1 -, year = 1989 -, pages = "17--23" -, update = "98.07 bibrelex" +, author = "C. Sobhanpanah" +, title = "Extension of a boundary representation technique for the description of $n$-dimensional polytopes" +, journal = "Comput. Graph." +, volume = 13 +, number = 1 +, year = 1989 +, pages = "17--23" +, update = "98.07 bibrelex" } @article{sb-ic3dm-91 -, author = "W. Sohrt and B. D. Br{\"u}derlin" -, title = "Interaction with constraints in {3D} modeling" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 4 -, year = 1991 -, pages = "405--425" -, keywords = "geometric constraints, graphical interactive modeling, CAD/CAM" +, author = "W. Sohrt and B. D. Br{\"u}derlin" +, title = "Interaction with constraints in {3D} modeling" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 4 +, year = 1991 +, pages = "405--425" +, keywords = "geometric constraints, graphical interactive modeling, CAD/CAM" } @article{s-cach-83 -, author = "E. Soisalon-Soininen" -, title = "On computing approximate convex hulls" -, journal = "Inform. Process. Lett." -, volume = 16 -, year = 1983 -, pages = "121--126" -, keywords = "designing algorithms, convex hull, two-dimensional, approximation" +, author = "E. Soisalon-Soininen" +, title = "On computing approximate convex hulls" +, journal = "Inform. Process. Lett." +, volume = 16 +, year = 1983 +, pages = "121--126" +, keywords = "designing algorithms, convex hull, two-dimensional, approximation" } @inproceedings{sw-oatsd-82 -, author = "E. Soisalon-Soininen and D. Wood" -, title = "An optimal algorithm for testing for safety and detecting deadlocks in locked transaction systems" -, booktitle = "Proc. ACM SIGACT-SIGMOD Conf. Principles Database Systems" -, year = 1982 -, pages = "108--116" +, author = "E. Soisalon-Soininen and D. Wood" +, title = "An optimal algorithm for testing for safety and detecting deadlocks in locked transaction systems" +, booktitle = "Proc. ACM SIGACT-SIGMOD Conf. Principles Database Systems" +, year = 1982 +, pages = "108--116" } @article{sw-oaccs-84 -, author = "E. Soisalon-Soininen and D. Wood" -, title = "Optimal algorithms to compute the closure of a set of iso-rectangles" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "199--214" +, author = "E. Soisalon-Soininen and D. Wood" +, title = "Optimal algorithms to compute the closure of a set of iso-rectangles" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "199--214" } @inproceedings{s-tseaj-97 -, author = "Eduard Sojka" -, title = "Three Simple and Efficient Algorithms for {Jordan} Sorting" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "24--26" -, cites = "fntv-sltjs-90, hmrt-sjslt-86, ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Eduard Sojka" +, title = "Three Simple and Efficient Algorithms for {Jordan} Sorting" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "24--26" +, cites = "fntv-sltjs-90, hmrt-sjslt-86, ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @book{ss-pnt-63 -, author = "R. R. Sokal and P. H. Sneath" -, title = "Principles of Numerical Taxonomy" -, publisher = "W. H. Freeman" -, address = "San Francisco, CA" -, year = 1963 -, update = "98.03 bibrelex" +, author = "R. R. Sokal and P. H. Sneath" +, title = "Principles of Numerical Taxonomy" +, publisher = "W. H. Freeman" +, address = "San Francisco, CA" +, year = 1963 +, update = "98.03 bibrelex" } @inproceedings{sg-mdrpa-92 -, author = "V. Soltan and A. Gorpinevich" -, title = "Minimum dissection of rectilinear polygon with arbitrary holes into rectangles" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, pages = "296--302" -, keywords = "polygons, decomposition, rectangles, isothetic" -, precedes = "sg-mdrpa-93" -, cites = "l-fmprp-83, l-ompa-84, ia-eaggs-86, l-pnrh-82, ZZZ" -, update = "97.11 bibrelex, 95.09 korneenko, 93.09 rote" +, author = "V. Soltan and A. Gorpinevich" +, title = "Minimum dissection of rectilinear polygon with arbitrary holes into rectangles" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, pages = "296--302" +, keywords = "polygons, decomposition, rectangles, isothetic" +, precedes = "sg-mdrpa-93" +, cites = "l-fmprp-83, l-ompa-84, ia-eaggs-86, l-pnrh-82, ZZZ" +, update = "97.11 bibrelex, 95.09 korneenko, 93.09 rote" } @article{sg-mdrpa-93 -, author = "V. Soltan and A. Gorpinevich" -, title = "Minimum dissection of rectilinear polygon with arbitrary holes into rectangles" -, journal = "Discrete Comput. Geom." -, volume = 9 -, year = 1993 -, pages = "57--79" -, keywords = "polygons, decomposition, rectangles, isothetic" -, succeeds = "sg-mdrpa-92" -, cites = "l-pnrh-82" -, update = "95.09 korneenko, 93.09 rote" +, author = "V. Soltan and A. Gorpinevich" +, title = "Minimum dissection of rectilinear polygon with arbitrary holes into rectangles" +, journal = "Discrete Comput. Geom." +, volume = 9 +, year = 1993 +, pages = "57--79" +, keywords = "polygons, decomposition, rectangles, isothetic" +, succeeds = "sg-mdrpa-92" +, cites = "l-pnrh-82" +, update = "95.09 korneenko, 93.09 rote" } @phdthesis{s-cpfrt-88 -, author = "J. Solymosi" -, title = "Combinatorial problems in finite {Ramsey} theory" -, type = "Master's Thesis" -, school = "E{\"{o}}tv{\"{o}}s University" -, address = "Budapest" -, year = 1988 -, keywords = "doctoral thesis" -, update = "02.03 devillers" +, author = "J. Solymosi" +, title = "Combinatorial problems in finite {Ramsey} theory" +, type = "Master's Thesis" +, school = "E{\"{o}}tv{\"{o}}s University" +, address = "Budapest" +, year = 1988 +, keywords = "doctoral thesis" +, update = "02.03 devillers" } @article{st-ddp-01 -, author = "J. Solymosi and Cs. D. T\'{o}th" -, title = "Distinct distances in the plane" -, journal = "Discrete Comput. Geom." -, volume = 25 -, number = 4 -, year = 2001 -, pages = "629--634" -, update = "02.03 orourke" +, author = "J. Solymosi and Cs. D. T\'{o}th" +, title = "Distinct distances in the plane" +, journal = "Discrete Comput. Geom." +, volume = 25 +, number = 4 +, year = 2001 +, pages = "629--634" +, update = "02.03 orourke" } @book{s-agtd-34 -, author = "D. M. Y. Sommerville" -, title = "Analytical Geometry in Three Dimensions" -, publisher = "Cambridge University Press" -, address = "Cambridge" -, year = 1934 -, keywords = "geometry, lines" -, update = "98.11 bibrelex, 98.03 agarwal, 96.05 agarwal" +, author = "D. M. Y. Sommerville" +, title = "Analytical Geometry in Three Dimensions" +, publisher = "Cambridge University Press" +, address = "Cambridge" +, year = 1934 +, keywords = "geometry, lines" +, update = "98.11 bibrelex, 98.03 agarwal, 96.05 agarwal" } @techreport{ss-tocm-86 -, author = "E. Sonatg and H. Sussmann" -, title = "Time-Optimal Control of Manipulators" -, institution = "Dept. Math., Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1986 -, update = "97.11 bibrelex" +, author = "E. Sonatg and H. Sussmann" +, title = "Time-Optimal Control of Manipulators" +, institution = "Dept. Math., Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1986 +, update = "97.11 bibrelex" } @article{s-sooau-84 -, author = "G. Sonnevend" -, title = "Sequential optimal order algorithms for the uniform approximation of functions with convex $r$-th derivates" -, journal = "Analysis Mathematica" -, volume = 10 -, year = 1984 -, pages = "311--335" -, update = "98.07 bibrelex" +, author = "G. Sonnevend" +, title = "Sequential optimal order algorithms for the uniform approximation of functions with convex $r$-th derivates" +, journal = "Analysis Mathematica" +, volume = 10 +, year = 1984 +, pages = "311--335" +, update = "98.07 bibrelex" } @article{s-sdbh-89 -, author = "?? Sontag" -, title = "Sigmoids distinguish better than heavisides" -, journal = "Neural Computation" -, volume = 1 -, year = 1989 -, pages = "470--472" -, update = "98.07 bibrelex" +, author = "?? Sontag" +, title = "Sigmoids distinguish better than heavisides" +, journal = "Neural Computation" +, volume = 1 +, year = 1989 +, pages = "470--472" +, update = "98.07 bibrelex" } @inproceedings{ss-rtoct-85 -, author = "E. Sontag and H. Sussmann" -, title = "Remarks on the Time-Optimal Control of Two-Link Manipulators" -, booktitle = "Proc. 24th Conf. Decision Control" -, site = "Ft. Lauderdale" -, year = 1985 -, update = "97.11 bibrelex" +, author = "E. Sontag and H. Sussmann" +, title = "Remarks on the Time-Optimal Control of Two-Link Manipulators" +, booktitle = "Proc. 24th Conf. Decision Control" +, site = "Ft. Lauderdale" +, year = 1985 +, update = "97.11 bibrelex" } @article{s-tfga-94 -, author = "J. Sorenson" -, title = "Two fast {GCD} algorithms" -, journal = "J. Algorithms" -, volume = 16 -, year = 1994 -, pages = "110--144" -, update = "97.11 bibrelex" +, author = "J. Sorenson" +, title = "Two fast {GCD} algorithms" +, journal = "J. Algorithms" +, volume = 16 +, year = 1994 +, pages = "110--144" +, update = "97.11 bibrelex" } @article{st-gcapr-00 -, author = "M. Soss and G. T. Toussaint" -, title = "Geometric and computational aspects of polymer reconfiguration", journal = "J. Math. Chemistry" -, volume = 27 -, number = 4 -, year = 2000 -, pages = "303--318" -, update = "01.07 orourke" +, author = "M. Soss and G. T. Toussaint" +, title = "Geometric and computational aspects of polymer reconfiguration", journal = "J. Math. Chemistry" +, volume = 27 +, number = 4 +, year = 2000 +, pages = "303--318" +, update = "01.07 orourke" } @techreport{st-rp3dl-00 -, author = "M. Soss and G. T. Toussaint" -, title = "Reconfiguring polymer-like {3D} linkages" -, number = "SOCS-00.2" -, institution = "McGill Univ., Montreal" -, year = 2000 -, update = "01.04 orourke" +, author = "M. Soss and G. T. Toussaint" +, title = "Reconfiguring polymer-like {3D} linkages" +, number = "SOCS-00.2" +, institution = "McGill Univ., Montreal" +, year = 2000 +, update = "01.04 orourke" } @inproceedings{sfl-srpc-94 -, author = "P. Sou{\`e}res and J.-Y. Fourquet and J.-P. Laumond" -, title = "Set of reachable positions for a car" -, booktitle = "IEEE Transaction on Automatic Control" -, year = 1994 -, pages = "" -, note = "to appear" -, update = "94.05 devillers" +, author = "P. Sou{\`e}res and J.-Y. Fourquet and J.-P. Laumond" +, title = "Set of reachable positions for a car" +, booktitle = "IEEE Transaction on Automatic Control" +, year = 1994 +, pages = "" +, note = "to appear" +, update = "94.05 devillers" } @techreport{sl-sdpcc-92 -, author = "P. Sou{\`e}res and J.-P. Laumond" -, title = "Synth{\`e}se des plus courts chemins pour la voiture de Reeds et Shepp" -, type = "Research {Report}" -, number = "LAAS/CNRS 92234" -, institution = "LAAS" -, address = "Toulouse, France" -, year = 1992 +, author = "P. Sou{\`e}res and J.-P. Laumond" +, title = "Synth{\`e}se des plus courts chemins pour la voiture de Reeds et Shepp" +, type = "Research {Report}" +, number = "LAAS/CNRS 92234" +, institution = "LAAS" +, address = "Toulouse, France" +, year = 1992 } @article{sp-frsms-96 -, author = "A. I. Sourin and A. A. Pasko" -, title = "Function Representation for Sweeping by a Moving Solid" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 2 -, number = 1 -, month = mar -, year = 1996 -, pages = "11--18" -, update = "96.09 held" +, author = "A. I. Sourin and A. A. Pasko" +, title = "Function Representation for Sweeping by a Moving Solid" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 2 +, number = 1 +, month = mar +, year = 1996 +, pages = "11--18" +, update = "96.09 held" } @book{s-rmes-40 -, author = "R. V. Southwell" -, title = "Relaxation Methods in Engineering Science" -, publisher = "Oxford University Press" -, year = 1940 -, update = "98.03 bibrelex" +, author = "R. V. Southwell" +, title = "Relaxation Methods in Engineering Science" +, publisher = "Oxford University Press" +, year = 1940 +, update = "98.03 bibrelex" } @techreport{sw-cplh-94 -, author = "Diane Souvaine and Rephael Wenger" -, title = "Constructing Piecewise Linear Homeomorphisms" -, type = "Technical Report" -, number = "94--52" -, institution = "DIMACS" -, address = "New Brunswick, New Jersey" -, year = 1994 -, update = "01.07 wenger" +, author = "Diane Souvaine and Rephael Wenger" +, title = "Constructing Piecewise Linear Homeomorphisms" +, type = "Technical Report" +, number = "94--52" +, institution = "DIMACS" +, address = "New Brunswick, New Jersey" +, year = 1994 +, update = "01.07 wenger" } @phdthesis{s-cgcw-86 -, author = "D. L. Souvaine" -, title = "Computational geometry in a curved world" -, type = "Ph.{D}. Thesis" -, school = "Princeton Univ." -, address = "Princeton, NJ" -, year = 1986 -, keywords = "doctoral thesis, design of algorithms" -, comments = "UMI AAC86-29439, 134 pp." -, precedes = "ds-cgcw-90" -, update = "93.09 jones" +, author = "D. L. Souvaine" +, title = "Computational geometry in a curved world" +, type = "Ph.{D}. Thesis" +, school = "Princeton Univ." +, address = "Princeton, NJ" +, year = 1986 +, keywords = "doctoral thesis, design of algorithms" +, comments = "UMI AAC86-29439, 134 pp." +, precedes = "ds-cgcw-90" +, update = "93.09 jones" } @inproceedings{s-cprop-89 -, author = "D. L. Souvaine" -, title = "The contour problem for restricted-orientation polygons" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 38 +, author = "D. L. Souvaine" +, title = "The contour problem for restricted-orientation polygons" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 38 } @techreport{sb-cprop-89 -, author = "D. L. Souvaine and I. Bjorling-Sachs" -, title = "The contour problem for restricted-orientation polygons" -, type = "Report" -, number = "LCSR-TR-137" -, institution = "Lab. Comput. Sci. Res., Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1989 -, keywords = "contour of union, plane-sweep, segment tree, divide-and-conquer, VLSI" +, author = "D. L. Souvaine and I. Bjorling-Sachs" +, title = "The contour problem for restricted-orientation polygons" +, type = "Report" +, number = "LCSR-TR-137" +, institution = "Lab. Comput. Sci. Res., Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1989 +, keywords = "contour of union, plane-sweep, segment tree, divide-and-conquer, VLSI" } @article{sb-cprop-92 -, author = "D. L. Souvaine and I. Bjorling-Sachs" -, title = "The Contour Problem for Restricted-Oriented Polygons" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1449--1470" -, update = "93.09 held" +, author = "D. L. Souvaine and I. Bjorling-Sachs" +, title = "The Contour Problem for Restricted-Oriented Polygons" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1449--1470" +, update = "93.09 held" } @article{ss-tseal-87 -, author = "D. L. Souvaine and J. M. Steele" -, title = "Time- and space- efficient algorithms for least median of squares regression" -, journal = "J. Amer. Statist. Assoc." -, volume = 82 -, year = 1987 -, pages = "794--801" -, keywords = "statistics, optimization, plane-sweep, geometric transformations, points, lines" +, author = "D. L. Souvaine and J. M. Steele" +, title = "Time- and space- efficient algorithms for least median of squares regression" +, journal = "J. Amer. Statist. Assoc." +, volume = 82 +, year = 1987 +, pages = "794--801" +, keywords = "statistics, optimization, plane-sweep, geometric transformations, points, lines" } @techreport{sv-cp-89t -, author = "D. L. Souvaine and C. J. {Van Wyk}" -, title = "Clamping a polygon" -, type = "Report" -, number = "LCSR-TR-98" -, institution = "Lab. Comput. Sci. Res., Rutgers Univ." -, address = "New Brunswick, NJ" -, year = 1989 -, keywords = "clamp, convex polygon, simple polygon" -, precedes = "sv-cp-89i" +, author = "D. L. Souvaine and C. J. {Van Wyk}" +, title = "Clamping a polygon" +, type = "Report" +, number = "LCSR-TR-98" +, institution = "Lab. Comput. Sci. Res., Rutgers Univ." +, address = "New Brunswick, NJ" +, year = 1989 +, keywords = "clamp, convex polygon, simple polygon" +, precedes = "sv-cp-89i" } @inproceedings{sv-cp-89i -, author = "D. L. Souvaine and C. J. {Van Wyk}" -, title = "Clamping a polygon" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 6 -, succeeds = "sv-cp-89t" +, author = "D. L. Souvaine and C. J. {Van Wyk}" +, title = "Clamping a polygon" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 6 +, succeeds = "sv-cp-89t" } @article{sv-cp-94 -, author = "D. L. Souvaine and C. J. {Van Wyk}" -, title = "Clamping a polygon" -, journal = "Visual Comput." -, volume = 10 -, year = 1994 -, pages = "484--494" -, update = "95.01 smid" +, author = "D. L. Souvaine and C. J. {Van Wyk}" +, title = "Clamping a polygon" +, journal = "Visual Comput." +, volume = 10 +, year = 1994 +, pages = "484--494" +, update = "95.01 smid" } @article{sv-hhcib-90 -, author = "D. L. Souvaine and C. J. {Van Wyk}" -, title = "How hard can it be to draw a pie chart?" -, journal = "Math. Mag." -, volume = 63 -, year = 1990 -, pages = "165--172" -, keywords = "design of algorithms, NP-hard" +, author = "D. L. Souvaine and C. J. {Van Wyk}" +, title = "How hard can it be to draw a pie chart?" +, journal = "Math. Mag." +, volume = 63 +, year = 1990 +, pages = "165--172" +, keywords = "design of algorithms, NP-hard" } @inproceedings{sy-ccsd-93 -, author = "Diane L. Souvaine and Chee-Keng Yap" -, title = "Combinatorial Complexity of Signed Discs" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "577--588" -, precedes = "sy-ccsd-95" -, update = "96.09 devillers, 96.05 agarwal, 93.09 smid, 93.05 jones" +, author = "Diane L. Souvaine and Chee-Keng Yap" +, title = "Combinatorial Complexity of Signed Discs" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "577--588" +, precedes = "sy-ccsd-95" +, update = "96.09 devillers, 96.05 agarwal, 93.09 smid, 93.05 jones" } @article{sy-ccsd-95 -, author = "Diane L. Souvaine and Chee-Keng Yap" -, title = "Combinatorial Complexity of Signed Discs" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "207--223" -, succeeds = "sy-ccsd-93" -, update = "96.09 devillers" +, author = "Diane L. Souvaine and Chee-Keng Yap" +, title = "Combinatorial Complexity of Signed Discs" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "207--223" +, succeeds = "sy-ccsd-93" +, update = "96.09 devillers" } @book{s-ac-57 -, author = "B. Spain" -, title = "Analytical Conics" -, publisher = "Pergamon Press" -, year = 1957 -, update = "98.07 bibrelex" +, author = "B. Spain" +, title = "Analytical Conics" +, publisher = "Pergamon Press" +, year = 1957 +, update = "98.07 bibrelex" } @book{s-at-66 -, author = "E. H. Spanier" -, title = "Algebraic Topology" -, publisher = "McGraw-Hill Book Company" -, address = "New York" -, year = 1966 -, update = "97.03 gaertner+salinger" +, author = "E. H. Spanier" +, title = "Algebraic Topology" +, publisher = "McGraw-Hill Book Company" +, address = "New York" +, year = 1966 +, update = "97.03 gaertner+salinger" } @article{sw-qaisc-85 -, author = "M. Spann and R. Wilson" -, title = "Quadtree Approach to Image Segmentation which Statistical and Spatial Information" -, journal = "Pattern Recogn." -, volume = 18 -, year = 1985 -, pages = "257--269" -, update = "98.07 agarwal" +, author = "M. Spann and R. Wilson" +, title = "Quadtree Approach to Image Segmentation which Statistical and Spatial Information" +, journal = "Pattern Recogn." +, volume = 18 +, year = 1985 +, pages = "257--269" +, update = "98.07 agarwal" } @inproceedings{s-olsfc-97 -, author = "H. Sp{\"a}th" -, title = "Orthogonal Least Squares Fitting by Conic Sections and other Algebraic Curves and Surfaces with a Special Two-Step Descent Method" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 27 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "H. Sp{\"a}th" +, title = "Orthogonal Least Squares Fitting by Conic Sections and other Algebraic Curves and Surfaces with a Special Two-Step Descent Method" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 27 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{sw-olla-87 -, author = "H. Sp{\"a}th and G. A. Watson" -, title = "On orthogonal linear {$L_{1}$} approximation" -, journal = "Numer. Math." -, volume = 51 -, year = 1987 -, pages = "531--543" -, update = "98.03 bibrelex" +, author = "H. Sp{\"a}th and G. A. Watson" +, title = "On orthogonal linear {$L_{1}$} approximation" +, journal = "Numer. Math." +, volume = 51 +, year = 1987 +, pages = "531--543" +, update = "98.03 bibrelex" } @article{s-adwag-49 -, author = "W. Specht" -, title = "{Absch{\"a}tzungen} der {Wurzeln} algebraischer {Gleichungen}" -, journal = "Math. Z." -, volume = 52 -, year = 1949 -, pages = "310--321" -, update = "97.11 bibrelex" +, author = "W. Specht" +, title = "{Absch{\"a}tzungen} der {Wurzeln} algebraischer {Gleichungen}" +, journal = "Math. Z." +, volume = 52 +, year = 1949 +, pages = "310--321" +, update = "97.11 bibrelex" } @inproceedings{ss-etstt-97 -, author = "Bettina Speckmann and Jack Snoeyink" -, title = "Easy Triangle Strips for {TIN} Terrain Models" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "239--244" -, update = "97.11 jones" +, author = "Bettina Speckmann and Jack Snoeyink" +, title = "Easy Triangle Strips for {TIN} Terrain Models" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "239--244" +, update = "97.11 jones" } @article{s-eaovs-86 -, author = "T. Speevak" -, title = "An efficient algorithm for obtaining the volume of a special kind of pyramid and application to convex polyhedra" -, journal = "Math. Comput." -, volume = 46 -, year = 1986 -, pages = "531--536" +, author = "T. Speevak" +, title = "An efficient algorithm for obtaining the volume of a special kind of pyramid and application to convex polyhedra" +, journal = "Math. Comput." +, volume = 46 +, year = 1986 +, pages = "531--536" } @techreport{s-mmp-91 -, author = "J.-C. Spehner" -, title = "Merging in maps and pavings" -, type = "Research {Report}" -, number = 48 -, institution = "Laboratoire de Math{\'e}matiques et Informatique, Universit{\'e} des Haute-Alsace" -, address = "Mulhouse, France" -, year = 1991 -, update = "98.07 bibrelex" +, author = "J.-C. Spehner" +, title = "Merging in maps and pavings" +, type = "Research {Report}" +, number = 48 +, institution = "Laboratoire de Math{\'e}matiques et Informatique, Universit{\'e} des Haute-Alsace" +, address = "Mulhouse, France" +, year = 1991 +, update = "98.07 bibrelex" } @article{s-ssds-85 -, author = "J. Spencer" -, title = "Six standard deviations suffice" -, journal = "Trans. Amer. Math. Soc." -, volume = 289 -, year = 1985 -, pages = "679--706" -, keywords = "discrepancy, probabilistic method" -, update = "94.01 matousek" +, author = "J. Spencer" +, title = "Six standard deviations suffice" +, journal = "Trans. Amer. Math. Soc." +, volume = 289 +, year = 1985 +, pages = "679--706" +, keywords = "discrepancy, probabilistic method" +, update = "94.01 matousek" } @book{s-tlpm-87 -, author = "J. Spencer" -, title = "Ten lectures on the probabilistic method" -, series = "CBMS-NSF" -, publisher = "SIAM" -, year = 1987 -, update = "94.05 matousek" +, author = "J. Spencer" +, title = "Ten lectures on the probabilistic method" +, series = "CBMS-NSF" +, publisher = "SIAM" +, year = 1987 +, update = "94.05 matousek" } @incollection{sst-udep-84 -, author = "J. Spencer and E. Szemer{\' e}di and W. T. Trotter" -, title = "Unit distances in the {Euclidean} plane" -, editor = "B. Bollob{\'a}s" -, booktitle = "Graph Theory and Combinatorics" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1984 -, pages = "293--303" -, update = "98.07 agarwal, 98.03 agarwal" +, author = "J. Spencer and E. Szemer{\' e}di and W. T. Trotter" +, title = "Unit distances in the {Euclidean} plane" +, editor = "B. Bollob{\'a}s" +, booktitle = "Graph Theory and Combinatorics" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1984 +, pages = "293--303" +, update = "98.07 agarwal, 98.03 agarwal" } @techreport{s-cgru-89 -, author = "J. Spiegels" -, title = "Computational geometry in a restricted universe" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1989 -, keywords = "survey paper, two-dimensional, domination, convex hull, rectangles, subdivisions, range search" -, update = "94.05 schwarzkopf" +, author = "J. Spiegels" +, title = "Computational geometry in a restricted universe" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1989 +, keywords = "survey paper, two-dimensional, domination, convex hull, rectangles, subdivisions, range search" +, update = "94.05 schwarzkopf" } @inproceedings{st-dpps-96 -, author = "Daniel A. Spielman and Shang-Hua Teng" -, title = "Disk Packings and Planar Separators" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "349--358" -, cites = "ast-ps-94, a-cpls-70, a-cpfvl-70, pa-cg-95, cgt-pumlp-96, cemst-acpir-93, d-pppg-82, e-acg-87, emt-dltag-93, f-slrpg-48, fpp-sssfe-88, gl-cslsp-81, g-iaspg-86, gm-psen-90, hlp-i-52, k-kdka-36, lt-stpg-79, lrt-gnd-79, m-fsscs-86, mtv-ugags-91, mttv-gsfem-95, mt-sttd-90, t-pssug-90, t-pdfip-80, t-gt3m-88, t-crg-60, t-hdg-63, ZZZ" -, update = "97.11 bibrelex, 96.05 efrat" +, author = "Daniel A. Spielman and Shang-Hua Teng" +, title = "Disk Packings and Planar Separators" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "349--358" +, cites = "ast-ps-94, a-cpls-70, a-cpfvl-70, pa-cg-95, cgt-pumlp-96, cemst-acpir-93, d-pppg-82, e-acg-87, emt-dltag-93, f-slrpg-48, fpp-sssfe-88, gl-cslsp-81, g-iaspg-86, gm-psen-90, hlp-i-52, k-kdka-36, lt-stpg-79, lrt-gnd-79, m-fsscs-86, mtv-ugags-91, mttv-gsfem-95, mt-sttd-90, t-pssug-90, t-pdfip-80, t-gt3m-88, t-crg-60, t-hdg-63, ZZZ" +, update = "97.11 bibrelex, 96.05 efrat" } @techreport{sy-ccmc-83 -, author = "P. Spirakis and C. Yap" -, title = "On the combinatorial complexity of motion coordination" -, type = "Report" -, number = 76 -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1983 +, author = "P. Spirakis and C. Yap" +, title = "On the combinatorial complexity of motion coordination" +, type = "Report" +, number = 76 +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1983 } @article{sy-snhmd-84 -, author = "P. Spirakis and C. Yap" -, title = "Strong {NP}-hardness of moving many discs" -, journal = "Inform. Process. Lett." -, volume = 19 -, year = 1984 -, pages = "55--59" -, update = "98.11 bibrelex" +, author = "P. Spirakis and C. Yap" +, title = "Strong {NP}-hardness of moving many discs" +, journal = "Inform. Process. Lett." +, volume = 19 +, year = 1984 +, pages = "55--59" +, update = "98.11 bibrelex" } @techreport{s-vumsp-84 -, author = "P. G. Spirakis" -, title = "The volume of the union of many spheres and point inclusion problems" -, type = "Report" -, number = "TR 133" -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1984 +, author = "P. G. Spirakis" +, title = "The volume of the union of many spheres and point inclusion problems" +, type = "Report" +, number = "TR 133" +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1984 } @techreport{s-vfaau-83 -, author = "P. G. Spirakis" -, title = "Very fast algorithms for the area of the union of many circles" -, type = "Report" -, number = 98 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, year = 1983 +, author = "P. G. Spirakis" +, title = "Very fast algorithms for the area of the union of many circles" +, type = "Report" +, number = 98 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, year = 1983 } @book{s-cidg-79 -, author = "M. Spivak" -, title = "A Comprehensive Introduction to Differential Geometry" -, volume = 3 -, publisher = "Publish or Perish Press" -, address = "Berkeley, CA" -, year = 1979 -, update = "97.11 bibrelex" +, author = "M. Spivak" +, title = "A Comprehensive Introduction to Differential Geometry" +, volume = 3 +, publisher = "Publish or Perish Press" +, address = "Berkeley, CA" +, year = 1979 +, update = "97.11 bibrelex" } @book{s-cm-65 -, author = "M. Spivak" -, title = "Calculus on Manifolds" -, publisher = "W. A. Benjamin Inc." -, address = "New York" -, year = 1965 -, update = "98.03 bibrelex" +, author = "M. Spivak" +, title = "Calculus on Manifolds" +, publisher = "W. A. Benjamin Inc." +, address = "New York" +, year = 1965 +, update = "98.03 bibrelex" } @inproceedings{sa-u3tst-95 -, author = "L. Spratt and A. Ambler" -, title = "Using {3D} Tubes to Solve the Intersecting Line Representation Problem" -, booktitle = "Proc. IEEE Symp. on Visual Languages, 1994" -, year = 1995 -, pages = "254--261" -, keywords = "graph drawing, 3D" -, update = "97.03 tamassia, 96.09 tamassia, 96.04 garg" +, author = "L. Spratt and A. Ambler" +, title = "Using {3D} Tubes to Solve the Intersecting Line Representation Problem" +, booktitle = "Proc. IEEE Symp. on Visual Languages, 1994" +, year = 1995 +, pages = "254--261" +, keywords = "graph drawing, 3D" +, update = "97.03 tamassia, 96.09 tamassia, 96.04 garg" } @article{sk-nbmlu-02 -, author = "M. J. Spriggs and J. M. Keil" -, title = "A new bound for map labeling with uniform circle pairs" -, journal = "Inform. Process. Lett." -, volume = 81 -, year = 2002 -, pages = "47--53" -, update = "01.11 smid" +, author = "M. J. Spriggs and J. M. Keil" +, title = "A new bound for map labeling with uniform circle pairs" +, journal = "Inform. Process. Lett." +, volume = 81 +, year = 2002 +, pages = "47--53" +, update = "01.11 smid" } @book{s-irs-81 -, author = "G. Springer" -, title = "Introduction to {Riemann} Surfaces" -, publisher = "Chelsea" -, year = 1981 -, update = "98.03 bibrelex" +, author = "G. Springer" +, title = "Introduction to {Riemann} Surfaces" +, publisher = "Chelsea" +, year = 1981 +, update = "98.03 bibrelex" } @mastersthesis{s-pma-90 -, author = "J. Sprinzak" -, title = "Point Matching Algorithms" -, type = "Masters Thesis" -, school = "Dept. Comput. Sci., Hebrew Univ." -, address = "Jerusalem, Israel" -, year = 1990 -, keywords = "master thesis" +, author = "J. Sprinzak" +, title = "Point Matching Algorithms" +, type = "Masters Thesis" +, school = "Dept. Comput. Sci., Hebrew Univ." +, address = "Jerusalem, Israel" +, year = 1990 +, keywords = "master thesis" } @article{sw-apm-94 -, author = "J. Sprinzak and M. Werman" -, title = "Affine Point Matching" -, journal = "Pattern Recogn. Lett." -, volume = 15 -, year = 1994 -, pages = "337--339" -, update = "96.01 werman" +, author = "J. Sprinzak and M. Werman" +, title = "Affine Point Matching" +, journal = "Pattern Recogn. Lett." +, volume = 15 +, year = 1994 +, pages = "337--339" +, update = "96.01 werman" } @inproceedings{sw-epm-90 -, author = "J. Sprinzak and M. Werman" -, title = "Exact Point Matching" -, booktitle = "Proc. Israeli Symposium on AI, Vision and Pattern Recognition" -, publisher = "Elsevier Science Publishers" -, year = 1990 +, author = "J. Sprinzak and M. Werman" +, title = "Exact Point Matching" +, booktitle = "Proc. Israeli Symposium on AI, Vision and Pattern Recognition" +, publisher = "Elsevier Science Publishers" +, year = 1990 } @article{s-rnns-91 -, author = "R. F. Sproull" -, title = "Refinements to nearest-neighbor searching" -, journal = "Algorithmica" -, volume = 6 -, year = 1991 -, pages = "579--589" +, author = "R. F. Sproull" +, title = "Refinements to nearest-neighbor searching" +, journal = "Algorithmica" +, volume = 6 +, year = 1991 +, pages = "579--589" } @techreport{s-rnnsk-88 -, author = "R. F. Sproull" -, title = "Refinements to nearest-neighbor searching in $k$-d trees" -, number = "SSAPP 184" -, institution = "Southerland, Sproull and Associates" -, month = jul -, year = 1988 -, update = "97.11 bibrelex" +, author = "R. F. Sproull" +, title = "Refinements to nearest-neighbor searching in $k$-d trees" +, number = "SSAPP 184" +, institution = "Southerland, Sproull and Associates" +, month = jul +, year = 1988 +, update = "97.11 bibrelex" } % ### others? @article{so-npdsb-88 -, author = "G. Spur and others" -, title = "{NC} Programming and Dynamic Simulation Based on Solid Models in a {CIM} Strategy" -, journal = "Robotics and Computer-Integrated Manufacturing" -, volume = 4 -, number = "3--4" -, year = 1988 -, pages = "471--481" -, update = "93.09 held" -, annote = "claims to use Voronoi diagrams" +, author = "G. Spur and others" +, title = "{NC} Programming and Dynamic Simulation Based on Solid Models in a {CIM} Strategy" +, journal = "Robotics and Computer-Integrated Manufacturing" +, volume = 4 +, number = "3--4" +, year = 1988 +, pages = "471--481" +, update = "93.09 held" +, annote = "claims to use Voronoi diagrams" } @inproceedings{ssk-cdmpp-93 -, author = "K. Sridharan and H. E. Stephanou and S. S. Deerthi" -, title = "On Computing a Distance Measure for Path Planning" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Atlanta Georgia" -, year = 1993 -, pages = "554--559" -, update = "98.11 bibrelex" +, author = "K. Sridharan and H. E. Stephanou and S. S. Deerthi" +, title = "On Computing a Distance Measure for Path Planning" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Atlanta Georgia" +, year = 1993 +, pages = "554--559" +, update = "98.11 bibrelex" } @article{s-rtddi-81 -, author = "S. N. Srihari" -, title = "Representation of three-dimensional digital images" -, journal = "ACM Comput. Surv." -, volume = 13 -, number = 4 -, year = 1981 -, pages = "399--424" -, update = "98.11 bibrelex" +, author = "S. N. Srihari" +, title = "Representation of three-dimensional digital images" +, journal = "ACM Comput. Surv." +, volume = 13 +, number = 4 +, year = 1981 +, pages = "399--424" +, update = "98.11 bibrelex" } % ### others? @article{s-cgmvi-90 -, author = "P. Srinivasan and others" -, title = "Computational geometric methods in volumetric intersection for {3D} reconstruction" -, journal = "Pattern Recogn." -, volume = 23 -, year = 1990 -, pages = "843--857" -, update = "98.11 bibrelex" +, author = "P. Srinivasan and others" +, title = "Computational geometric methods in volumetric intersection for {3D} reconstruction" +, journal = "Pattern Recogn." +, volume = 23 +, year = 1990 +, pages = "843--857" +, update = "98.11 bibrelex" } @unpublished{s-dgvm-94 -, author = "V. Srinivasan" -, title = "Dealing with Geometric Variations in Manufacturing" -, year = 1994 -, note = "Invited lecture, NSF Workshop on Manufacturing and +, author = "V. Srinivasan" +, title = "Dealing with Geometric Variations in Manufacturing" +, year = 1994 +, note = "Invited lecture, NSF Workshop on Manufacturing and Computational Geometry, April~1" -, update = "95.01 mitchell" +, update = "95.01 mitchell" } @unpublished{s-gmm-94 -, author = "V. Srinivasan" -, title = "Geometry, Measurements, and Manufacturing" -, year = 1994 -, note = "Invited lecture, Fourth MSI Workshop on +, author = "V. Srinivasan" +, title = "Geometry, Measurements, and Manufacturing" +, year = 1994 +, note = "Invited lecture, Fourth MSI Workshop on Computational Geometry, October 14-15" -, update = "95.01 mitchell" +, update = "95.01 mitchell" } @inproceedings{s-rsts-93 -, author = "V. Srinivasan" -, title = "Role of Sweeps in Tolerance Semantics" -, booktitle = "Proc. 1993 Int. Forum on Dimensional Tolerancing and Metrology" -, year = 1993 -, pages = "69--78" -, update = "96.09 orourke" +, author = "V. Srinivasan" +, title = "Role of Sweeps in Tolerance Semantics" +, booktitle = "Proc. 1993 Int. Forum on Dimensional Tolerancing and Metrology" +, year = 1993 +, pages = "69--78" +, update = "96.09 orourke" } @techreport{sn-acvdm-85 -, author = "V. Srinivasan and L. R. Nackman" -, title = "An algorithm to compute the {Voronoi} diagram of a multiply connected polygonal domain" -, type = "Report" -, number = "RC 11605 (\#52150)" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1985 -, update = "94.09 bernal" +, author = "V. Srinivasan and L. R. Nackman" +, title = "An algorithm to compute the {Voronoi} diagram of a multiply connected polygonal domain" +, type = "Report" +, number = "RC 11605 (\#52150)" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1985 +, update = "94.09 bernal" } @techreport{sn-mblss-89 -, author = "V. Srinivasan and L. R. Nackman" -, title = "Maximal balls of linearly separable sets" -, type = "Report" -, number = "RC 14596" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, month = may -, year = 1989 -, precedes = "sn-mblss-94" -, update = "96.09 devillers" +, author = "V. Srinivasan and L. R. Nackman" +, title = "Maximal balls of linearly separable sets" +, type = "Report" +, number = "RC 14596" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, month = may +, year = 1989 +, precedes = "sn-mblss-94" +, update = "96.09 devillers" } @article{sn-mblss-94 -, author = "V. Srinivasan and L. R. Nackman" -, title = "Maximal balls of linearly separable sets" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, year = 1994 -, pages = "25--38" -, keywords = "separable sets, maximal balls, bissectors, triangulation" -, succeeds = "sn-mblss-89" -, update = "96.09 devillers" +, author = "V. Srinivasan and L. R. Nackman" +, title = "Maximal balls of linearly separable sets" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, year = 1994 +, pages = "25--38" +, keywords = "separable sets, maximal balls, bissectors, triangulation" +, succeeds = "sn-mblss-89" +, update = "96.09 devillers" } @article{sn-vdmcp-87 -, author = "V. Srinivasan and L. R. Nackman" -, title = "Voronoi diagram for multiply-connected polygonal domains {I}: algorithm" -, journal = "IBM J. Res. Develop." -, volume = 31 -, year = 1987 -, pages = "361--372" +, author = "V. Srinivasan and L. R. Nackman" +, title = "Voronoi diagram for multiply-connected polygonal domains {I}: algorithm" +, journal = "IBM J. Res. Develop." +, volume = 31 +, year = 1987 +, pages = "361--372" } @techreport{sntm-amgus-90 -, author = "V. Srinivasan and L. R. Nackman and J. Tang and S. N. Meshkat" -, title = "Automatic Mesh Generation unsing the Symmetric Axis Transformation of Polygonal Domains" -, number = "RC 16132" -, institution = "IBM Res. Center" -, year = 1990 -, update = "97.11 bibrelex" +, author = "V. Srinivasan and L. R. Nackman and J. Tang and S. N. Meshkat" +, title = "Automatic Mesh Generation unsing the Symmetric Axis Transformation of Polygonal Domains" +, number = "RC 16132" +, institution = "IBM Res. Center" +, year = 1990 +, update = "97.11 bibrelex" } @article{sntm-amgus-92 -, author = "V. Srinivasan and L. R. Nackman and J.-M. Tang and S. N. Meshkat" -, title = "Automatic Mesh Generation Using the Symmetric Axis Transform of Polygonal Domains" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1485--1501" -, update = "93.09 held" +, author = "V. Srinivasan and L. R. Nackman and J.-M. Tang and S. N. Meshkat" +, title = "Automatic Mesh Generation Using the Symmetric Axis Transform of Polygonal Domains" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1485--1501" +, update = "93.09 held" } @article{so-oist-94 -, author = "V. Srinivasan and M. A. O'Connor" -, title = "On interpreting statistical tolerancing" -, journal = "Manufacturing Review" -, volume = 7 -, number = 4 -, year = 1994 -, pages = "304--311" -, update = "98.03 agarwal" +, author = "V. Srinivasan and M. A. O'Connor" +, title = "On interpreting statistical tolerancing" +, journal = "Manufacturing Review" +, volume = 7 +, number = 4 +, year = 1994 +, pages = "304--311" +, update = "98.03 agarwal" } @book{sv-dtm-93 -, title = "Dimensional Tolerancing and Metrology" -, editor = "V. Srinivasan and H. B. Voelcker" -, series = "CRTD" -, volume = 27 -, publisher = "The American Society of Mechanical Engineers" -, year = 1993 -, update = "98.07 bibrelex" +, title = "Dimensional Tolerancing and Metrology" +, editor = "V. Srinivasan and H. B. Voelcker" +, series = "CRTD" +, volume = 27 +, publisher = "The American Society of Mechanical Engineers" +, year = 1993 +, update = "98.07 bibrelex" } @phdthesis{s-vipcg-92 -, author = "G. Srinivasaraghavan" -, title = "On Some Visibility and Intersection Problems in Computational Geometry" -, school = "Department of Computer Science and Engineering, Indian Institute of Technology" -, address = "Kanpur, India" -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "G. Srinivasaraghavan" +, title = "On Some Visibility and Intersection Problems in Computational Geometry" +, school = "Department of Computer Science and Engineering, Indian Institute of Technology" +, address = "Kanpur, India" +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @article{sm-nncvv-94 -, author = "G. Srinivasaraghavan and A. Mukhopadhyay" -, title = "A new necessary condition for the vertex visibility graphs of simple polygons" -, journal = "Discrete Comput. Geom." -, volume = 12 -, year = 1994 -, pages = "65--82" -, keywords = "visibility" -, update = "94.09 orourke" +, author = "G. Srinivasaraghavan and A. Mukhopadhyay" +, title = "A new necessary condition for the vertex visibility graphs of simple polygons" +, journal = "Discrete Comput. Geom." +, volume = 12 +, year = 1994 +, pages = "65--82" +, keywords = "visibility" +, update = "94.09 orourke" } @inproceedings{sm-ncra-93 -, author = "G. Srinivasaraghavan and A. Mukhopadhyay" -, title = "On the notion of completeness for reconstruction algorithms" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "315--320" -, cites = "o-agta-87, s-vipcg-92, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "G. Srinivasaraghavan and A. Mukhopadhyay" +, title = "On the notion of completeness for reconstruction algorithms" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "315--320" +, cites = "o-agta-87, s-vipcg-92, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @techreport{sm-ssps-92 -, author = "G. Srinivasaraghavan and Asish Mukhopadhyay" -, title = "Stabbing simple planar sets" -, type = "Technical Report" -, number = "TRCS-92-152" -, institution = "IIT Kanpur, Computer Science and Engg. Dept." -, year = 1992 -, update = "98.11 bibrelex" +, author = "G. Srinivasaraghavan and Asish Mukhopadhyay" +, title = "Stabbing simple planar sets" +, type = "Technical Report" +, number = "TRCS-92-152" +, institution = "IIT Kanpur, Computer Science and Engg. Dept." +, year = 1992 +, update = "98.11 bibrelex" } @inproceedings{ss-achii-94 -, author = "A. Srivastav and P. Stangier" -, title = "Algorithmic {Chernoff}-{Hoeffding} Inequalities in Integer Programming" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "226--234" -, update = "97.03 gaertner+salinger" +, author = "A. Srivastav and P. Stangier" +, title = "Algorithmic {Chernoff}-{Hoeffding} Inequalities in Integer Programming" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "226--234" +, update = "97.03 gaertner+salinger" } @inproceedings{ss-tarcs-94 -, author = "A. Srivastav and P. Stangier" -, title = "Tight Approximations of Resource Constrained Scheduling Problems" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "307--318" -, update = "97.03 gaertner+salinger" +, author = "A. Srivastav and P. Stangier" +, title = "Tight Approximations of Resource Constrained Scheduling Problems" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "307--318" +, update = "97.03 gaertner+salinger" } @article{ss-wfikm-95 -, author = "A. Srivastav and P. Stangier" -, title = "Weighted fractional and integral $k$-matching in hypergraphs" -, journal = "Discrete Appl. Math." -, volume = 57 -, year = 1995 -, pages = "255--269" -, update = "97.03 gaertner+salinger" +, author = "A. Srivastav and P. Stangier" +, title = "Weighted fractional and integral $k$-matching in hypergraphs" +, journal = "Discrete Appl. Math." +, volume = 57 +, year = 1995 +, pages = "255--269" +, update = "97.03 gaertner+salinger" } @inproceedings{sa-agoos-87 -, author = "S. Srivastava and N. Ahuia" -, title = "An algorithm for generating octrees from object silhouettes in perspective views" -, booktitle = "Proc. IEEE Workshop Comput. Vision" -, site = "Miami Beach, Fl." -, month = nov -, year = 1987 -, pages = "363--365" -, update = "98.11 bibrelex" +, author = "S. Srivastava and N. Ahuia" +, title = "An algorithm for generating octrees from object silhouettes in perspective views" +, booktitle = "Proc. IEEE Workshop Comput. Vision" +, site = "Miami Beach, Fl." +, month = nov +, year = 1987 +, pages = "363--365" +, update = "98.11 bibrelex" } @inproceedings{s-pmspe-98 -, author = "Ernesto Staffetti" -, title = "Planning the Motion of a Segment in a Polygonal Environment" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "135--137" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Ernesto Staffetti" +, title = "Planning the Motion of a Segment in a Polygonal Environment" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "135--137" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{s-nrdec-84 -, author = "R. Stanley" -, title = "On the Number of Reduced Decompositions of Elements of {Coxeter} Groups" -, journal = "European J. Combin." -, volume = 5 -, year = 1984 -, pages = "359--372" -, update = "96.09 devillers, 94.09 orourke" +, author = "R. Stanley" +, title = "On the Number of Reduced Decompositions of Elements of {Coxeter} Groups" +, journal = "European J. Combin." +, volume = 5 +, year = 1984 +, pages = "359--372" +, update = "96.09 devillers, 94.09 orourke" } @article{s-nfscp-80 -, author = "R. Stanley" -, title = "The number of faces of a simplical convex polytope" -, journal = "Adv. Math." -, volume = 35 -, year = 1980 -, pages = "236--238" -, update = "97.11 bibrelex" +, author = "R. Stanley" +, title = "The number of faces of a simplical convex polytope" +, journal = "Adv. Math." +, volume = 35 +, year = 1980 +, pages = "236--238" +, update = "97.11 bibrelex" } @article{s-ubccr-75 -, author = "R. Stanley" -, title = "The upper-bound conjecture and {Cohen-Macaulay} rings" -, journal = "Stud. Appl. Math." -, volume = 54 -, year = 1975 -, pages = "135--142" -, update = "98.07 bibrelex" +, author = "R. Stanley" +, title = "The upper-bound conjecture and {Cohen-Macaulay} rings" +, journal = "Stud. Appl. Math." +, volume = 54 +, year = 1975 +, pages = "135--142" +, update = "98.07 bibrelex" } @book{s-ec-86 -, author = "R. P. Stanley" -, title = "Enumerative Combinatorics" -, volume = 1 -, publisher = "Wadsworth \& Brooks/Cole" -, address = "Monterey, CA" -, year = 1986 -, update = "97.11 bibrelex" +, author = "R. P. Stanley" +, title = "Enumerative Combinatorics" +, volume = 1 +, publisher = "Wadsworth \& Brooks/Cole" +, address = "Monterey, CA" +, year = 1986 +, update = "97.11 bibrelex" } @article{s-tpp-86 -, author = "R. P. Stanley" -, title = "Two poset polytopes" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "9--23" +, author = "R. P. Stanley" +, title = "Two poset polytopes" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "9--23" } @article{sjw-cadcs-82 -, author = "S. M. Stanley and R. B. Jerard and P. R. White" -, title = "Computer-Aided Design of Curved Surfaces with Automatic Model Generation" -, journal = "Journal of Mechanical Design, ASME Transactions" -, volume = 104 -, number = 3 -, month = oct -, year = 1982 -, pages = "817--824" -, update = "98.03 bibrelex" +, author = "S. M. Stanley and R. B. Jerard and P. R. White" +, title = "Computer-Aided Design of Curved Surfaces with Automatic Model Generation" +, journal = "Journal of Mechanical Design, ASME Transactions" +, volume = 104 +, number = 3 +, month = oct +, year = 1982 +, pages = "817--824" +, update = "98.03 bibrelex" } @mastersthesis{s-popop-89 -, author = "M. Stanton" -, title = "Pareto Optimal Paths Among Obstacles in the Plane" -, type = "M.{S}. Thesis" -, school = "Dept. Operations Research, Cornell University" -, address = "Ithaca, NY" -, year = 1989 -, keywords = "master thesis" -, update = "93.05 jones" +, author = "M. Stanton" +, title = "Pareto Optimal Paths Among Obstacles in the Plane" +, type = "M.{S}. Thesis" +, school = "Dept. Operations Research, Cornell University" +, address = "Ithaca, NY" +, year = 1989 +, keywords = "master thesis" +, update = "93.05 jones" } @article{sd-dss-76 -, author = "R. Stanton and P. Dirksen" -, title = "{Davenport--Schinzel} sequences" -, journal = "Ars Combinatorica" -, volume = 1 -, year = 1976 -, pages = "43--51" -, update = "95.09 agarwal" +, author = "R. Stanton and P. Dirksen" +, title = "{Davenport--Schinzel} sequences" +, journal = "Ars Combinatorica" +, volume = 1 +, year = 1976 +, pages = "43--51" +, update = "95.09 agarwal" } @incollection{sr-rdss-69 -, author = "R. Stanton and D. Roselle" -, title = "A result on {Davenport--Schinzel} sequences" -, editor = "P. Erd{\H o}s and others" -, booktitle = "Combinatorial Theory and Its Applications, Colloq. Math. Society J{\'a}nos Bolyai" -, volume = 4 -, publisher = "North-Holland" -, address = "Amsterdam" -, year = 1969 -, pages = "1023--1027" -, update = "95.09 agarwal" +, author = "R. Stanton and D. Roselle" +, title = "A result on {Davenport--Schinzel} sequences" +, editor = "P. Erd{\H o}s and others" +, booktitle = "Combinatorial Theory and Its Applications, Colloq. Math. Society J{\'a}nos Bolyai" +, volume = 4 +, publisher = "North-Holland" +, address = "Amsterdam" +, year = 1969 +, pages = "1023--1027" +, update = "95.09 agarwal" } @phdthesis{s-mpafo-94 -, author = "A. F. van der Stappen" -, title = "Motion Planning amidst Fat Obstacles" -, type = "Ph.{D}. Dissertation" -, school = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1994 -, keywords = "doctoral thesis" -, update = "95.01 smid" +, author = "A. F. van der Stappen" +, title = "Motion Planning amidst Fat Obstacles" +, type = "Ph.{D}. Dissertation" +, school = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1994 +, keywords = "doctoral thesis" +, update = "95.01 smid" } @article{s-cfsmp- -, author = "A. F. van der Stappen" -, title = "The complexity of the free space for motion planning amidst fat obstacles" -, journal = "Journal of Intelligent \& Robotic Systems" -, volume = "??" -, year = "??" -, note = "To appear" -, update = "98.03 bibrelex" +, author = "A. F. van der Stappen" +, title = "The complexity of the free space for motion planning amidst fat obstacles" +, journal = "Journal of Intelligent \& Robotic Systems" +, volume = "??" +, year = "??" +, note = "To appear" +, update = "98.03 bibrelex" } @techreport{sgo-gecmp-96 -, author = "A. F. van der Stappen and K. Goldberg and M. H. Overmars" -, title = "Geometric eccentricity and the complexity of manipulation plans" -, type = "Report" -, number = "UU-CS-1996-49" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1996 -, comments = "To appear in Algorithmica" -, update = "97.11 oostrum" +, author = "A. F. van der Stappen and K. Goldberg and M. H. Overmars" +, title = "Geometric eccentricity and the complexity of manipulation plans" +, type = "Report" +, number = "UU-CS-1996-49" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1996 +, comments = "To appear in Algorithmica" +, update = "97.11 oostrum" } @inproceedings{sho-eaemp-93 -, author = "A. F. van der Stappen and D. Halperin and M. H. Overmars" -, title = "Efficient algorithms for exact motion planning amidst fat obstacles" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1993 -, pages = "297--304" -, keywords = "robotics, motion planning" -, update = "95.09 halperin" +, author = "A. F. van der Stappen and D. Halperin and M. H. Overmars" +, title = "Efficient algorithms for exact motion planning amidst fat obstacles" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1993 +, pages = "297--304" +, keywords = "robotics, motion planning" +, update = "95.09 halperin" } @techreport{sho-cfsrm-92 -, author = "A. F. van der Stappen and D. Halperin and M. H. Overmars" -, title = "The complexity of the free space for a robot moving amidst fat obstacles" -, type = "Report" -, number = "RUU-CS-92-05" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1992 -, keywords = "motion planning" -, precedes = "sho-cfsrm-93" -, update = "96.09 devillers, 94.05 schwarzkopf" +, author = "A. F. van der Stappen and D. Halperin and M. H. Overmars" +, title = "The complexity of the free space for a robot moving amidst fat obstacles" +, type = "Report" +, number = "RUU-CS-92-05" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1992 +, keywords = "motion planning" +, precedes = "sho-cfsrm-93" +, update = "96.09 devillers, 94.05 schwarzkopf" } @article{sho-cfsrm-93 -, author = "A. F. van der Stappen and D. Halperin and M. H. Overmars" -, title = "The complexity of the free space for a robot moving amidst fat obstacles" -, journal = "Comput. Geom. Theory Appl." -, volume = 3 -, year = 1993 -, pages = "353--373" -, succeeds = "sho-cfsrm-92" -, update = "96.09 devillers" +, author = "A. F. van der Stappen and D. Halperin and M. H. Overmars" +, title = "The complexity of the free space for a robot moving amidst fat obstacles" +, journal = "Comput. Geom. Theory Appl." +, volume = 3 +, year = 1993 +, pages = "353--373" +, succeeds = "sho-cfsrm-92" +, update = "96.09 devillers" } @inproceedings{so-mpafo-94 -, author = "A. F. van der Stappen and M. H. Overmars" -, title = "Motion Planning amidst Fat Obstacles" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "31--40" -, cites = "afkmnsu-ampcb-92, abf-pempa-89, bo-arcgi-79, bgh-vdt3s-94, mmpssw-ftdlm-91, o-plfs-92, ss-pmp1c-83, ss-nempa-87, ss-pmp2g-83, ss-empae-85, sho-cfsrm-93, s-cfsmp-, sho-eaemp-93, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "A. F. van der Stappen and M. H. Overmars" +, title = "Motion Planning amidst Fat Obstacles" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "31--40" +, cites = "afkmnsu-ampcb-92, abf-pempa-89, bo-arcgi-79, bgh-vdt3s-94, mmpssw-ftdlm-91, o-plfs-92, ss-pmp1c-83, ss-nempa-87, ss-pmp2g-83, ss-empae-85, sho-cfsrm-93, s-cfsmp-, sho-eaemp-93, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @techreport{so-mpelo-95 -, author = "A. F. van der Stappen and M. H. Overmars" -, title = "Motion planning in environments with low obstacle density" -, type = "Technical {Report}" -, number = "UU-CS-1995-33" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, month = oct -, year = 1995 -, update = "98.07 bibrelex" +, author = "A. F. van der Stappen and M. H. Overmars" +, title = "Motion planning in environments with low obstacle density" +, type = "Technical {Report}" +, number = "UU-CS-1995-33" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, month = oct +, year = 1995 +, update = "98.07 bibrelex" } @techreport{sobv-mpelo-97 -, author = "A. F. van der Stappen and M. H. Overmars and M. de Berg and J. Vleugels" -, title = "Motion planning in environments with low obstacle density" -, type = "Report" -, number = "UU-CS-1997-19" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1997 -, update = "97.11 oostrum" +, author = "A. F. van der Stappen and M. H. Overmars and M. de Berg and J. Vleugels" +, title = "Motion planning in environments with low obstacle density" +, type = "Report" +, number = "UU-CS-1997-19" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1997 +, update = "97.11 oostrum" } @book{se-gisi-90 -, author = "J. Star and J. Estes" -, title = "Geographic Information Systems: an Introduction" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs" -, year = 1990 -, update = "96.09 kreveld" +, author = "J. Star and J. Estes" +, title = "Geographic Information Systems: an Introduction" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs" +, year = 1990 +, update = "96.09 kreveld" } @inproceedings{s-saat-90 -, author = "J. T. Stasko" -, title = "Simplifying Algorithm Animation with Tango" -, booktitle = "Proc. IEEE Workshop on Visual Languages" -, year = 1990 -, pages = "1--6" -, update = "96.01 tamassia" +, author = "J. T. Stasko" +, title = "Simplifying Algorithm Animation with Tango" +, booktitle = "Proc. IEEE Workshop on Visual Languages" +, year = 1990 +, pages = "1--6" +, update = "96.01 tamassia" } @article{s-tfsaa-90 -, author = "J. T. Stasko" -, title = "Tango: a Framework and System for Algorithm Animation" -, journal = "IEEE Computer" -, volume = 23 -, number = 9 -, year = 1990 -, pages = "27--39" -, url = "https://www.cc.gatech.edu/gvu/ii/softvis/algoanim/xtango.html" -, update = "96.01 tamassia" +, author = "J. T. Stasko" +, title = "Tango: a Framework and System for Algorithm Animation" +, journal = "IEEE Computer" +, volume = 23 +, number = 9 +, year = 1990 +, pages = "27--39" +, url = "https://www.cc.gatech.edu/gvu/ii/softvis/algoanim/xtango.html" +, update = "96.01 tamassia" } @article{s-ptppm-90 -, author = "J. T. Stasko" -, title = "The Path-Transition Paradigm: a Practical Methodology for Adding Animation to Program Interfaces" -, journal = "J. Visual Lang. Comput." -, volume = 1 -, number = 3 -, year = 1990 -, pages = "213--236" -, update = "96.01 tamassia" +, author = "J. T. Stasko" +, title = "The Path-Transition Paradigm: a Practical Methodology for Adding Animation to Program Interfaces" +, journal = "J. Visual Lang. Comput." +, volume = 1 +, number = 3 +, year = 1990 +, pages = "213--236" +, update = "96.01 tamassia" } % is this a book?? @book{s-am-83 -, author = "J. P. Steadman" -, title = "Architectural Morphology" -, publisher = "Pion" -, address = "London" -, year = 1983 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. P. Steadman" +, title = "Architectural Morphology" +, publisher = "Pion" +, address = "London" +, year = 1983 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @phdthesis{s-dicpl-80 -, author = "G. L. {Steele, Jr.}" -, title = "The definition and implementation of a computer programming language based on constraints" -, school = "Artif. Intell. Lab., Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, month = aug -, year = 1980 -, note = "Technical Report AI-TR-595" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "G. L. {Steele, Jr.}" +, title = "The definition and implementation of a computer programming language based on constraints" +, school = "Artif. Intell. Lab., Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, month = aug +, year = 1980 +, note = "Technical Report AI-TR-595" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{s-ccspk-81 -, author = "J. M. Steele" -, title = "Complete convergence of short paths and {Karp}'s algorithm for the {TSP}" -, journal = "Math. Oper. Res." -, volume = 6 -, year = 1981 -, pages = "374--378" +, author = "J. M. Steele" +, title = "Complete convergence of short paths and {Karp}'s algorithm for the {TSP}" +, journal = "Math. Oper. Res." +, volume = 6 +, year = 1981 +, pages = "374--378" } @article{s-otrsp-82 -, author = "J. M. Steele" -, title = "Optimal triangulations of random samples in the plane" -, journal = "Ann. Probab." -, volume = 10 -, number = 3 -, year = 1982 -, pages = "548--553" +, author = "J. M. Steele" +, title = "Optimal triangulations of random samples in the plane" +, journal = "Ann. Probab." +, volume = 10 +, number = 3 +, year = 1982 +, pages = "548--553" } @article{s-pwcac-90 -, author = "J. M. Steele" -, title = "Probabilistic and worst-case analysis of classical problems of combinatorial optimization in {Euclidean} space" -, journal = "Math. Oper. Res." -, volume = 15 -, year = 1990 -, pages = "749--770" -, update = "97.11 bibrelex" +, author = "J. M. Steele" +, title = "Probabilistic and worst-case analysis of classical problems of combinatorial optimization in {Euclidean} space" +, journal = "Math. Oper. Res." +, volume = 15 +, year = 1990 +, pages = "749--770" +, update = "97.11 bibrelex" } @article{s-sefnl-81 -, author = "J. M. Steele" -, title = "Subadditive {Euclidean} functionals and non-linear growth in geometric probability" -, journal = "Ann. Probab." -, volume = 9 -, year = 1981 -, pages = "365--376" -, update = "97.11 bibrelex" +, author = "J. M. Steele" +, title = "Subadditive {Euclidean} functionals and non-linear growth in geometric probability" +, journal = "Ann. Probab." +, volume = 9 +, year = 1981 +, pages = "365--376" +, update = "97.11 bibrelex" } @article{ss-wcgrs-89 -, author = "J. M. Steele and T. L. Snyder" -, title = "Worst-case growth rates of some classical problems of combinatorial optimization" -, journal = "SIAM J. Comput." -, volume = 18 -, year = 1989 -, pages = "278--287" -, update = "00.03 smid, 97.11 bibrelex" +, author = "J. M. Steele and T. L. Snyder" +, title = "Worst-case growth rates of some classical problems of combinatorial optimization" +, journal = "SIAM J. Comput." +, volume = 18 +, year = 1989 +, pages = "278--287" +, update = "00.03 smid, 97.11 bibrelex" } @article{sy-lbadt-82 -, author = "J. M. Steele and A. C. Yao" -, title = "Lower bounds for algebraic decision trees" -, journal = "J. Algorithms" -, volume = 3 -, year = 1982 -, pages = "1--8" +, author = "J. M. Steele and A. C. Yao" +, title = "Lower bounds for algebraic decision trees" +, journal = "J. Algorithms" +, volume = 3 +, year = 1982 +, pages = "1--8" } @article{s-idssd-78 -, author = "M. Stefik" -, title = "Inferring {DNA} structures from segmentation data" -, journal = "Artif. Intell." -, volume = 11 -, year = 1978 -, pages = "85--114" -, update = "97.11 bibrelex" +, author = "M. Stefik" +, title = "Inferring {DNA} structures from segmentation data" +, journal = "Artif. Intell." +, volume = 11 +, year = 1978 +, pages = "85--114" +, update = "97.11 bibrelex" } @article{sb-ooptv-85 -, author = "M. Stefik and D. G. Bobrow" -, title = "Object-oriented programming: themes and variations" -, journal = "The AI Magazine" -, volume = "??" -, year = 1985 -, pages = "40--62" -, update = "98.03 bibrelex" +, author = "M. Stefik and D. G. Bobrow" +, title = "Object-oriented programming: themes and variations" +, journal = "The AI Magazine" +, volume = "??" +, year = 1985 +, pages = "40--62" +, update = "98.03 bibrelex" } @article{s-abq-92 -, author = "T. Stehling" -, title = "Ammann bars and quasicrystals" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "125--133" +, author = "T. Stehling" +, title = "Ammann bars and quasicrystals" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "125--133" } @inproceedings{s-ahsc-93 -, author = "William Steiger" -, title = "Algorithms for Ham Sandwich Cuts" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = 48 -, update = "93.09 milone+mitchell" +, author = "William Steiger" +, title = "Algorithms for Ham Sandwich Cuts" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = 48 +, update = "93.09 milone+mitchell" } @inproceedings{s-sglbu-95 -, author = "William Steiger" -, title = "Some Geometric Lower Bounds Using Connected Components" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = 61 -, update = "00.03 bibrelex" +, author = "William Steiger" +, title = "Some Geometric Lower Bounds Using Connected Components" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = 61 +, update = "00.03 bibrelex" } @inproceedings{s-ssttr-95 -, author = "William Steiger" -, title = "Some Space/Time Tradeoffs for Ranking and Searching" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = 63 -, update = "00.03 bibrelex" +, author = "William Steiger" +, title = "Some Space/Time Tradeoffs for Ranking and Searching" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = 63 +, update = "00.03 bibrelex" } @inproceedings{ss-paslp-94 -, author = "W. Steiger and I. Streinu" -, title = "A Pseudo-Algorithmic Separation of Lines from Pseudo-Lines" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "7--11" -, cites = "csss-otass-89, eg-ccytb-84, e-acg-87, f-hgiit-76, gp-ms-83, gp-ubcpr-86, hpss-sxoc-75, l-sxyoc-91, m-lblmp-91, pss-ubnpk-92, s-nrdec-84, gp-asotd-93, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "W. Steiger and I. Streinu" +, title = "A Pseudo-Algorithmic Separation of Lines from Pseudo-Lines" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "7--11" +, cites = "csss-otass-89, eg-ccytb-84, e-acg-87, f-hgiit-76, gp-ms-83, gp-ubcpr-86, hpss-sxoc-75, l-sxyoc-91, m-lblmp-91, pss-ubnpk-92, s-nrdec-84, gp-asotd-93, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{ss-paslp-95 -, author = "W. Steiger and I. Streinu" -, title = "A pseudo-algorithmic separation of lines from pseudo-lines" -, journal = "Inform. Process. Lett." -, volume = 53 -, year = 1995 -, pages = "295--299" -, update = "01.07 smid" +, author = "W. Steiger and I. Streinu" +, title = "A pseudo-algorithmic separation of lines from pseudo-lines" +, journal = "Inform. Process. Lett." +, volume = 53 +, year = 1995 +, pages = "295--299" +, update = "01.07 smid" } @article{ss-if-98 -, author = "W. Steiger and I. Streinu" -, title = "Illumination by Floodlights" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, number = 1 -, year = 1998 -, pages = "57--70" -, keywords = "visibility, floodlights" -, succeeds = "ss-pnrfp-94" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "W. Steiger and I. Streinu" +, title = "Illumination by Floodlights" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, number = 1 +, year = 1998 +, pages = "57--70" +, keywords = "visibility, floodlights" +, succeeds = "ss-pnrfp-94" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{ss-pnrfp-94 -, author = "W. Steiger and I. Streinu" -, title = "Positive and Negative Results on the Floodlight Problem" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "87--92" -, keywords = "visibility, floodlights" -, precedes = "ss-if-98" -, cites = "ae-tpss-87, bglosu-fp-93, cru-ofipt-93, e-acg-87, o-agta-87, ps-cgi-85, bfprt-tbs-73, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 94.09 orourke" +, author = "W. Steiger and I. Streinu" +, title = "Positive and Negative Results on the Floodlight Problem" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "87--92" +, keywords = "visibility, floodlights" +, precedes = "ss-if-98" +, cites = "ae-tpss-87, bglosu-fp-93, cru-ofipt-93, e-acg-87, o-agta-87, ps-cgi-85, bfprt-tbs-73, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 94.09 orourke" } @inproceedings{sw-frmrl-92 -, author = "A. Stein and M. Werman" -, title = "Finding the repeated median regression line" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "409--413" +, author = "A. Stein and M. Werman" +, title = "Finding the repeated median regression line" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "409--413" } @inproceedings{sw-rssf-92 -, author = "A. Stein and M. Werman" -, title = "Robust Statistics in Shape Fitting" -, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." -, month = jun -, year = 1992 -, pages = "540--546" -, update = "98.11 bibrelex, 96.01 werman" +, author = "A. Stein and M. Werman" +, title = "Robust Statistics in Shape Fitting" +, booktitle = "Proc. IEEE Internat. Conf. Comput. Vision Pattern. Recogn." +, month = jun +, year = 1992 +, pages = "540--546" +, update = "98.11 bibrelex, 96.01 werman" } @article{s-cm-51 -, author = "S. K. Stein" -, title = "Convex Maps" -, journal = "Proc. Amer. Math. Soc." -, volume = 2 -, number = 3 -, year = 1951 -, pages = "464--466" -, keywords = "graph drawing" -, update = "98.07 tamassia, 93.09 tamassia" +, author = "S. K. Stein" +, title = "Convex Maps" +, journal = "Proc. Amer. Math. Soc." +, volume = 2 +, number = 3 +, year = 1951 +, pages = "464--466" +, keywords = "graph drawing" +, update = "98.07 tamassia, 93.09 tamassia" } @article{s-spn4-44 -, author = "R. Steinberg" -, title = "Solution to Problem No 4065" -, journal = "Amer. Math. Monthly" -, volume = 51 -, year = 1944 -, pages = "169--171" -, update = "98.03 devillers" +, author = "R. Steinberg" +, title = "Solution to Problem No 4065" +, journal = "Amer. Math. Monthly" +, volume = 51 +, year = 1944 +, pages = "169--171" +, update = "98.03 devillers" } @article{s-egudt-26 -, author = "J. Steiner" -, title = "{Einige} {Gesetze} {\"u}ber die {Theilung} der {Ebene} und des {Raumes}" -, journal = "J. Reine Angew. Math." -, volume = 1 -, year = 1826 -, pages = "349--364" -, update = "98.03 agarwal" +, author = "J. Steiner" +, title = "{Einige} {Gesetze} {\"u}ber die {Theilung} der {Ebene} und des {Raumes}" +, journal = "J. Reine Angew. Math." +, volume = 1 +, year = 1826 +, pages = "349--364" +, update = "98.03 agarwal" } @incollection{s-sedag-81 -, author = "J. Steiner" -, title = "Systematische {Entwicklung} der {Abh{\"a}ngigkeit} geometrischer {Gestalten} voneinander" -, booktitle = "Jakob Steiner's Collected Works" -, publisher = "??" -, year = 1881 -, update = "97.11 bibrelex" +, author = "J. Steiner" +, title = "Systematische {Entwicklung} der {Abh{\"a}ngigkeit} geometrischer {Gestalten} voneinander" +, booktitle = "Jakob Steiner's Collected Works" +, publisher = "??" +, year = 1881 +, update = "97.11 bibrelex" } @techreport{s-sfars-89 -, author = "T. L. Steiner" -, title = "A simple and faster algorithm for the rectilinear {Steiner} problem in general dimension" -, type = "Technical {Report}" -, institution = "Dept. Comput. Sci., Georgetown Univ." -, address = "Washington, DC" -, year = 1989 -, update = "97.11 bibrelex" +, author = "T. L. Steiner" +, title = "A simple and faster algorithm for the rectilinear {Steiner} problem in general dimension" +, type = "Technical {Report}" +, institution = "Dept. Comput. Sci., Georgetown Univ." +, address = "Washington, DC" +, year = 1989 +, update = "97.11 bibrelex" } @article{s-pur-22 -, author = "E. Steinitz" -, title = "Polyeder und Raumeinteilungen" -, journal = "Enzykl. Math. Wiss." -, volume = 3 -, year = 1922 -, pages = "1--139" -, note = "Part 3AB12" -, update = "97.11 bibrelex" +, author = "E. Steinitz" +, title = "Polyeder und Raumeinteilungen" +, journal = "Enzykl. Math. Wiss." +, volume = 3 +, year = 1922 +, pages = "1--139" +, note = "Part 3AB12" +, update = "97.11 bibrelex" } @article{s-uipkp-27 -, author = "E. Steinitz" -, title = "{\"U}ber isoperimetrische Probleme bei konvexen Polyedern" -, journal = "J. Math." -, volume = 158 -, year = 1927 -, pages = "129--153" -, update = "97.11 bibrelex" +, author = "E. Steinitz" +, title = "{\"U}ber isoperimetrische Probleme bei konvexen Polyedern" +, journal = "J. Math." +, volume = 158 +, year = 1927 +, pages = "129--153" +, update = "97.11 bibrelex" } @book{sr-vudtd-34 -, author = "E. Steinitz and H. Rademacher" -, title = "{V}orlesungen {\"u}ber die {T}heorie der {P}olyeder" -, publisher = "Julius Springer" -, address = "Berlin, Germany" -, year = 1934 -, keywords = "graph drawing" -, update = "98.11 bibrelex, 98.07 vismara, 93.09 tamassia" +, author = "E. Steinitz and H. Rademacher" +, title = "{V}orlesungen {\"u}ber die {T}heorie der {P}olyeder" +, publisher = "Julius Springer" +, address = "Berlin, Germany" +, year = 1934 +, keywords = "graph drawing" +, update = "98.11 bibrelex, 98.07 vismara, 93.09 tamassia" } @article{s-cadzp-91 -, author = "G. Stengle" -, title = "Constraints on the angular distribution of the zeros of a polynomial of low complexity" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "163--169" +, author = "G. Stengle" +, title = "Constraints on the angular distribution of the zeros of a polynomial of low complexity" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "163--169" } @incollection{s-ramsr-86 -, author = "H. I. Stern" -, title = "A Routing Algorithm for a Mobile Search Robot" -, booktitle = "Impacts of Microcomputers on Operations Research" -, year = 1986 -, pages = "73--87" -, update = "93.09 milone+mitchell" +, author = "H. I. Stern" +, title = "A Routing Algorithm for a Mobile Search Robot" +, booktitle = "Impacts of Microcomputers on Operations Research" +, year = 1986 +, pages = "73--87" +, update = "93.09 milone+mitchell" } @article{sh-srppi-72 -, author = "B. M. Steward and F. Herzog" -, title = "Semi-regular plane polygons of integral type" -, journal = "Israel J. Math." -, volume = 11 -, year = 1972 -, pages = "31--52" -, update = "97.11 bibrelex" +, author = "B. M. Steward and F. Herzog" +, title = "Semi-regular plane polygons of integral type" +, journal = "Israel J. Math." +, volume = 11 +, year = 1972 +, pages = "31--52" +, update = "97.11 bibrelex" } @inproceedings{sg-osacs-93 -, author = "A. Stewart and S. Ghali" -, title = "An output sensitive algorithm for the computation of shadow boundaries" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "291--296" -, cites = "cf-nrtsg-89, cf-aaial-91, cf-fopsg-92, h-dmr-92, ltg-dmar-92, m-eahsr-89, s-agtd-34, gcs-ecrag-91, st-pplup-86, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "A. Stewart and S. Ghali" +, title = "An output sensitive algorithm for the computation of shadow boundaries" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "291--296" +, cites = "cf-nrtsg-89, cf-aaial-91, cf-fopsg-92, h-dmr-92, ltg-dmar-92, m-eahsr-89, s-agtd-34, gcs-ecrag-91, st-pplup-86, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{s-fhcap-98 -, author = "A. J. Stewart" -, title = "Fast Horizon Computation at All Points of a Terrain with Visibility and Shading Applications" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 4 -, number = 1 -, month = jan -, year = 1998 -, pages = "82--93" -, update = "98.07 held" +, author = "A. J. Stewart" +, title = "Fast Horizon Computation at All Points of a Terrain with Visibility and Shading Applications" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 4 +, number = 1 +, month = jan +, year = 1998 +, pages = "82--93" +, update = "98.07 held" } @inproceedings{s-hvt-97 -, author = "A. James Stewart" -, title = "Hierarchical Visibility in Terrains" -, booktitle = "Eurographics Rendering Workshop" -, month = jun -, year = 1997 -, url = "http://www.dgp.toronto.edu/people/JamesStewart/papers/egrw97.html" -, update = "98.03 mitchell" +, author = "A. James Stewart" +, title = "Hierarchical Visibility in Terrains" +, booktitle = "Eurographics Rendering Workshop" +, month = jun +, year = 1997 +, url = "http://www.dgp.toronto.edu/people/JamesStewart/papers/egrw97.html" +, update = "98.03 mitchell" } @article{s-lrapi-94 -, author = "A. J. Stewart" -, title = "Local Robustness and its Application to Polyhedral Intersection" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, number = 1 -, year = 1994 -, pages = "87--118" -, update = "96.05 pascucci" +, author = "A. J. Stewart" +, title = "Local Robustness and its Application to Polyhedral Intersection" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, number = 1 +, year = 1994 +, pages = "87--118" +, update = "96.05 pascucci" } @techreport{s-mibap-91 -, author = "A. J. Stewart" -, title = "Maximizing incidences between approximate polygons is {NP}-hard" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, year = 1991 +, author = "A. J. Stewart" +, title = "Maximizing incidences between approximate polygons is {NP}-hard" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, year = 1991 } @inproceedings{s-rplap-91 -, author = "A. J. Stewart" -, title = "Robust point location in approximate polygons" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "179--182" -, keywords = "point location, robustness" -, cites = "ds-rgnap-88, f-smpst-89, hhk-tirgc-88, m-vigau-88p, gss-egbra-89, si-cvd10-89, ZZZ" -, update = "98.07 bibrelex" +, author = "A. J. Stewart" +, title = "Robust point location in approximate polygons" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "179--182" +, keywords = "point location, robustness" +, cites = "ds-rgnap-88, f-smpst-89, hhk-tirgc-88, m-vigau-88p, gss-egbra-89, si-cvd10-89, ZZZ" +, update = "98.07 bibrelex" } @phdthesis{s-tprgc-91 -, author = "A. J. Stewart" -, title = "The theory and practice of robust geometric computation, or, how to build robust solid modelers" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = aug -, year = 1991 -, note = "Technical Report TR~91-1229" -, keywords = "doctoral thesis, robustness" -, update = "93.05 jones" +, author = "A. J. Stewart" +, title = "The theory and practice of robust geometric computation, or, how to build robust solid modelers" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = aug +, year = 1991 +, note = "Technical Report TR~91-1229" +, keywords = "doctoral thesis, robustness" +, update = "93.05 jones" } @inproceedings{sg-fcsbu-94 -, author = "A. J. Stewart and S. Ghali" -, title = "Fast computation of shadow boundaries using spatial coherence and backprojections" -, editor = "A. Glassner" -, booktitle = "Proc. SIGGRAPH '94" -, site = "Orlando, FL" -, publisher = "ACM Press" -, year = 1994 -, pages = "231--238" -, note = "ISBN 0-89791-667-0" -, update = "98.07 bibrelex" +, author = "A. J. Stewart and S. Ghali" +, title = "Fast computation of shadow boundaries using spatial coherence and backprojections" +, editor = "A. Glassner" +, booktitle = "Proc. SIGGRAPH '94" +, site = "Orlando, FL" +, publisher = "ACM Press" +, year = 1994 +, pages = "231--238" +, note = "ISBN 0-89791-667-0" +, update = "98.07 bibrelex" } @book{s-imc-73 -, author = "G. W. Stewart" -, title = "Introduction to Matrix Computations" -, publisher = "Academic Press" -, address = "New ork, NY" -, year = 1973 -, update = "98.07 bibrelex" +, author = "G. W. Stewart" +, title = "Introduction to Matrix Computations" +, publisher = "Academic Press" +, address = "New ork, NY" +, year = 1973 +, update = "98.07 bibrelex" } @article{s-mr-96 -, author = "Ian Stewart" -, title = "Mathematical Recreations" -, journal = "Sci. Amer." -, volume = 275 -, number = 2 -, month = aug -, year = 1996 -, pages = "100--103" -, note = "Includes light in circular forest problem due to Janos Pach." -, update = "01.04 orourke, 97.11 orourke" +, author = "Ian Stewart" +, title = "Mathematical Recreations" +, journal = "Sci. Amer." +, volume = 275 +, number = 2 +, month = aug +, year = 1996 +, pages = "100--103" +, note = "Includes light in circular forest problem due to Janos Pach." +, update = "01.04 orourke, 97.11 orourke" } @article{s-scctf-92 -, author = "N. F. Stewart" -, title = "A sufficient condition for correct topological form in tolerance specification" -, journal = "Comput. Aided Design" -, volume = 12 -, year = 1992 -, pages = "39--48" -, update = "98.07 bibrelex" +, author = "N. F. Stewart" +, title = "A sufficient condition for correct topological form in tolerance specification" +, journal = "Comput. Aided Design" +, volume = 12 +, year = 1992 +, pages = "39--48" +, update = "98.07 bibrelex" } @inproceedings{s-affch-90 -, author = "W. M. Stewart" -, title = "An algorithm to find the facets of the convex hull in higher dimensions" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "252--256" -, cites = "b-icp-83, ck-acp-70, g-eadch-72, ph-chfsp-77, ps-cgi-85, s-chaop-81, s-chdch-86, ZZZ" -, update = "98.07 bibrelex" +, author = "W. M. Stewart" +, title = "An algorithm to find the facets of the convex hull in higher dimensions" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "252--256" +, cites = "b-icp-83, ck-acp-70, g-eadch-72, ph-chfsp-77, ps-cgi-85, s-chaop-81, s-chdch-86, ZZZ" +, update = "98.07 bibrelex" } @techreport{s-etspv-92 -, author = "W. R. Stewart" -, title = "Euclidean traveling salesman problems and {Voronoi} diagrams" -, type = "Manuscript" -, institution = "School of Business Administration, College of William and Mary" -, year = 1992 -, update = "94.09 bernal" +, author = "W. R. Stewart" +, title = "Euclidean traveling salesman problems and {Voronoi} diagrams" +, type = "Manuscript" +, institution = "School of Business Administration, College of William and Mary" +, year = 1992 +, update = "94.09 bernal" } @inproceedings{s-lfdle-81 -, author = "J.-M. Steyaert" -, title = "La formule de {Lagrange} et ses applications au denombrement de familles d'arbres" -, booktitle = "Seminaire d'Informatique Theorique" -, site = "Universite Paris-VIII" -, year = 1981 -, update = "97.11 bibrelex" +, author = "J.-M. Steyaert" +, title = "La formule de {Lagrange} et ses applications au denombrement de familles d'arbres" +, booktitle = "Seminaire d'Informatique Theorique" +, site = "Universite Paris-VIII" +, year = 1981 +, update = "97.11 bibrelex" } @phdthesis{s-msrcp-88 -, author = "S. Stifter" -, title = "A medley of solutions to the robot collision problem in two and three dimensions" -, type = "Ph.{D}. Thesis" -, school = "Johannes Kepler Univ." -, address = "Linz, Austria" -, year = 1988 -, note = "Report RISC-LINZ 88-12.0" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "S. Stifter" +, title = "A medley of solutions to the robot collision problem in two and three dimensions" +, type = "Ph.{D}. Thesis" +, school = "Johannes Kepler Univ." +, address = "Linz, Austria" +, year = 1988 +, note = "Report RISC-LINZ 88-12.0" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @techreport{s-aavd3-88 -, author = "S. Stifter" -, title = "An axiomatic approach to {Voronoi}-diagrams in $3$-{D}" -, type = "Report" -, number = "RISC-LINZ 88-64.0" -, institution = "Johannes Kepler Univ." -, address = "Linz, Austria" -, year = 1988 -, precedes = "s-aavd3-91" +, author = "S. Stifter" +, title = "An axiomatic approach to {Voronoi}-diagrams in $3$-{D}" +, type = "Report" +, number = "RISC-LINZ 88-64.0" +, institution = "Johannes Kepler Univ." +, address = "Linz, Austria" +, year = 1988 +, precedes = "s-aavd3-91" } @article{s-aavd3-91 -, author = "S. Stifter" -, title = "An axiomatic approach to {Voronoi}-diagrams in $3${D}" -, journal = "J. Comput. Syst. Sci." -, volume = 43 -, year = 1991 -, pages = "361--374" -, keywords = "Voronoi diagrams, retraction methods, findpath problem, computational geometry" -, succeeds = "s-aavd3-88" -, abstract = "Voronoi-diagrams were first introduced for sets of - points, and later generalized to other sets. There have - been very few attempts to generalize Voronoi-diagrams - for non-point sets to three (or higher) dimensions. We - define a Voronoi-diagram for a quite general subset of - three-space which is characterized by specific axioms. - This diagram is one-dimensional and connected provided - that the complement of the subset is connected. These - Voronoi-diagrams can be used in retraction methods to - solve the Findpath Problem for a ball moving in a - three-dimensional environment. (Author abstract) 14 - Refs." +, author = "S. Stifter" +, title = "An axiomatic approach to {Voronoi}-diagrams in $3${D}" +, journal = "J. Comput. Syst. Sci." +, volume = 43 +, year = 1991 +, pages = "361--374" +, keywords = "Voronoi diagrams, retraction methods, findpath problem, computational geometry" +, succeeds = "s-aavd3-88" +, abstract = "Voronoi-diagrams were first introduced for sets of + points, and later generalized to other sets. There have + been very few attempts to generalize Voronoi-diagrams + for non-point sets to three (or higher) dimensions. We + define a Voronoi-diagram for a quite general subset of + three-space which is characterized by specific axioms. + This diagram is one-dimensional and connected provided + that the complement of the subset is connected. These + Voronoi-diagrams can be used in retraction methods to + solve the Findpath Problem for a ball moving in a + three-dimensional environment. (Author abstract) 14 + Refs." } @techreport{s-avdsf-88 -, author = "S. Stifter" -, title = "Application of {Voronoi}-diagrams to solve the findpath problem in $3$-{D}" -, type = "Report" -, number = "RISC-LINZ 88-71.0" -, institution = "Johannes Kepler Univ." -, address = "Linz, Austria" -, year = 1988 +, author = "S. Stifter" +, title = "Application of {Voronoi}-diagrams to solve the findpath problem in $3$-{D}" +, type = "Report" +, number = "RISC-LINZ 88-71.0" +, institution = "Johannes Kepler Univ." +, address = "Linz, Austria" +, year = 1988 } @article{s-ccega-97 -, author = "S. Stifter" -, title = "Characterization of contour elements that generate abstract {Voronoi} diagrams" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = 245 -, update = "97.07 devillers" +, author = "S. Stifter" +, title = "Characterization of contour elements that generate abstract {Voronoi} diagrams" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = 245 +, update = "97.07 devillers" } @inproceedings{s-gtpvs-93 -, author = "Sabine Stifter" -, title = "Geometry Theorem Proving in Vector Spaces" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "56--58" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" +, author = "Sabine Stifter" +, title = "Geometry Theorem Proving in Vector Spaces" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "56--58" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking, 93.09 milone+mitchell" } @inproceedings{s-npprm-95 -, author = "Sabine Stifter" -, title = "Numerical Problems in the Plane {Roider} Method" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "53--56" -, update = "00.03 bibrelex" +, author = "Sabine Stifter" +, title = "Numerical Problems in the Plane {Roider} Method" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "53--56" +, update = "00.03 bibrelex" } @inproceedings{s-pacfp-91 -, author = "Sabine Stifter" -, title = "Predictions about collision free paths from intersection tests" -, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" -, nickname = "CG '91" -, site = "Bern" -, series = "Lecture Notes Comput. Sci." -, volume = 553 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "309--320" -, keywords = "motion planning" -, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" -, annote = "7th Intern. Workshop Comput. Geom." +, author = "Sabine Stifter" +, title = "Predictions about collision free paths from intersection tests" +, booktitle = "Proc. Computational Geometry: Methods, Algorithms and Applications" +, nickname = "CG '91" +, site = "Bern" +, series = "Lecture Notes Comput. Sci." +, volume = 553 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "309--320" +, keywords = "motion planning" +, update = "00.03 bibrelex, 98.03 icking, 97.11 icking, 94.01 rote" +, annote = "7th Intern. Workshop Comput. Geom." } @inproceedings{s-spp-92 -, author = "Sabine Stifter" -, title = "Secure Path Planning" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "7--8" -, update = "00.03 bibrelex" +, author = "Sabine Stifter" +, title = "Secure Path Planning" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "7--8" +, update = "00.03 bibrelex" } @inproceedings{s-tcgac-94 -, author = "Sabine Stifter" -, title = "Technological Conditions in Geometric Algorithms: A Case Study for the Nesting Problem" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "78--80" -, cites = "ZZZ" -, update = "00.11 smid, 00.07 icking" +, author = "Sabine Stifter" +, title = "Technological Conditions in Geometric Algorithms: A Case Study for the Nesting Problem" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "78--80" +, cites = "ZZZ" +, update = "00.11 smid, 00.07 icking" } @inproceedings{s-vdt3d-90 -, author = "Sabine Stifter" -, title = "{Voronoi}-{Diagramme} f{\"u}r {Teilmengen} des {3D} und ihre {Anwendung} auf {Kollisionsprobleme} bei {Robotern}" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 24 -, update = "00.03 bibrelex" +, author = "Sabine Stifter" +, title = "{Voronoi}-{Diagramme} f{\"u}r {Teilmengen} des {3D} und ihre {Anwendung} auf {Kollisionsprobleme} bei {Robotern}" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 24 +, update = "00.03 bibrelex" } @book{s-ctcgt-80 -, author = "J. Stillwell" -, title = "Classical Topology and Combinatorial Group Theory" -, editor = "P. R. Halmos and F. W. Gehring and C. C. Moore" -, series = "Graduate Texts in Mathematics" -, number = 72 -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1980 -, isbn = "0-387-90516-2" -, update = "98.07 bibrelex, 97.11 bibrelex" +, author = "J. Stillwell" +, title = "Classical Topology and Combinatorial Group Theory" +, editor = "P. R. Halmos and F. W. Gehring and C. C. Moore" +, series = "Graduate Texts in Mathematics" +, number = 72 +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1980 +, isbn = "0-387-90516-2" +, update = "98.07 bibrelex, 97.11 bibrelex" } @book{s-ctcgt-93 -, author = "J. Stillwell" -, title = "Classical Topology and Combinatorial Group Theory" -, publisher = "Springer-Verlag" -, address = "New York" -, year = 1993 -, update = "00.03 bibrelex" +, author = "J. Stillwell" +, title = "Classical Topology and Combinatorial Group Theory" +, publisher = "Springer-Verlag" +, address = "New York" +, year = 1993 +, update = "00.03 bibrelex" } @article{s-oocsf-83 -, author = "L. Stockmeyer" -, title = "Optimal Orientation of Cells in Slicing Floorplan Design" -, journal = "Inform. Control" -, volume = 57 -, year = 1983 -, pages = "91--101" -, update = "96.01 tamassia" +, author = "L. Stockmeyer" +, title = "Optimal Orientation of Cells in Slicing Floorplan Design" +, journal = "Inform. Control" +, volume = 57 +, year = 1983 +, pages = "91--101" +, update = "96.01 tamassia" } @book{s-eidnm-83 -, author = "J. Stoer" -, title = "Einf{\"u}hrung in die {Numerische} {Mathematik} {I}" -, publisher = "Springer-Verlag" -, year = 1983 -, update = "98.07 bibrelex" +, author = "J. Stoer" +, title = "Einf{\"u}hrung in die {Numerische} {Mathematik} {I}" +, publisher = "Springer-Verlag" +, year = 1983 +, update = "98.07 bibrelex" } @book{sb-ina-80 -, author = "J. Stoer and R. Bullirsch" -, title = "Introduction to Numerical Analysis" -, publisher = "Springer-Verlag" -, year = 1980 -, update = "97.11 bibrelex" +, author = "J. Stoer and R. Bullirsch" +, title = "Introduction to Numerical Analysis" +, publisher = "Springer-Verlag" +, year = 1980 +, update = "97.11 bibrelex" } @book{sw-cofd1-70 -, author = "J. Stoer and C. Witzgall" -, title = "Convexity and optimization in finite dimensions {I}" -, publisher = "Springer-Verlag" -, year = 1970 +, author = "J. Stoer and C. Witzgall" +, title = "Convexity and optimization in finite dimensions {I}" +, publisher = "Springer-Verlag" +, year = 1970 } @inproceedings{sw-smca-94 -, author = "M. Stoer and F. Wagner" -, title = "A Simple Min Cut Algorithm" -, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 855 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "141--147" -, update = "97.03 gaertner+salinger" +, author = "M. Stoer and F. Wagner" +, title = "A Simple Min Cut Algorithm" +, booktitle = "Proc. 2nd Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 855 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "141--147" +, update = "97.03 gaertner+salinger" } @inproceedings{s-cgh-88 -, author = "I. Stojmenovic" -, title = "Computational Geometry on a Hypercube" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1988 -, pages = "100--103" -, update = "98.07 bibrelex" +, author = "I. Stojmenovic" +, title = "Computational Geometry on a Hypercube" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1988 +, pages = "100--103" +, update = "98.07 bibrelex" } @techreport{s-cvcpp-90t -, author = "I. Stojmenovi{\'c}" -, title = "Cutting the volumes of convex polyhedra by a plane" -, type = "Technical Report" -, number = "TR-90-23" -, institution = "Univ. Ottawa" -, address = "Ottawa, ON" -, month = jun -, year = 1990 -, precedes = "s-cvcpp-90i" +, author = "I. Stojmenovi{\'c}" +, title = "Cutting the volumes of convex polyhedra by a plane" +, type = "Technical Report" +, number = "TR-90-23" +, institution = "Univ. Ottawa" +, address = "Ottawa, ON" +, month = jun +, year = 1990 +, precedes = "s-cvcpp-90i" } @inproceedings{s-cvcpp-90i -, author = "I. Stojmenovi{\'c}" -, title = "Cutting the volumes of convex polyhedra by a plane" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "291--295" -, succeeds = "s-cvcpp-90t" -, cites = "a-dapa-89, aw-plts-88, e-acg-87, gm-eha3s-87, m-ptlp-85, ZZZ" -, update = "98.07 bibrelex" +, author = "I. Stojmenovi{\'c}" +, title = "Cutting the volumes of convex polyhedra by a plane" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "291--295" +, succeeds = "s-cvcpp-90t" +, cites = "a-dapa-89, aw-plts-88, e-acg-87, gm-eha3s-87, m-ptlp-85, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{s-flmdc-93 -, author = "I. Stojmenovi{\'c}" -, title = "Finding the largest $m$-dimensional circle in a $k$-dimensional box" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "328--333" -, cites = "ew-falc3-91t, ew-falc3-91, sb-mla-89, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "I. Stojmenovi{\'c}" +, title = "Finding the largest $m$-dimensional circle in a $k$-dimensional box" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "328--333" +, cites = "ew-falc3-91t, ew-falc3-91, sb-mla-89, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @techreport{s-ndcha-85 -, author = "I. Stojmenovi{\'c}" -, title = "$n$-dimensional convex hull algorithm" -, type = "Manuscript" -, institution = "??" -, year = 1985 -, keywords = "convex hull" -, update = "94.05 devillers" +, author = "I. Stojmenovi{\'c}" +, title = "$n$-dimensional convex hull algorithm" +, type = "Manuscript" +, institution = "??" +, year = 1985 +, keywords = "convex hull" +, update = "94.05 devillers" } @article{sl-pdcms-88 -, author = "I. Stojmenovi{\'c} and M. A. Langston" -, title = "On a Proposed Divide-and Conquer Minimal Spanning Tree Algorithm" -, journal = "BIT" -, volume = 28 -, year = 1988 -, pages = "755--791" -, annote = "Discusses errors in \cite{cl-omsta-86}" +, author = "I. Stojmenovi{\'c} and M. A. Langston" +, title = "On a Proposed Divide-and Conquer Minimal Spanning Tree Algorithm" +, journal = "BIT" +, volume = 28 +, year = 1988 +, pages = "755--791" +, annote = "Discusses errors in \cite{cl-omsta-86}" } @article{ss-nach-86 -, author = "I. Stojmenovi{\'c} and E. Soisalon-Soininen" -, title = "A note on approximate convex hulls" -, journal = "Inform. Process. Lett." -, volume = 22 -, year = 1986 -, pages = "55--56" +, author = "I. Stojmenovi{\'c} and E. Soisalon-Soininen" +, title = "A note on approximate convex hulls" +, journal = "Inform. Process. Lett." +, volume = 22 +, year = 1986 +, pages = "55--56" } @inproceedings{s-opg-87 -, author = "J. Stolfi" -, title = "Oriented projective geometry" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "76--85" -, precedes = "s-pcg-88" -, cites = "bbr-ecit-85, c-rpp-49, i-ppc-85, ir-cpc-84, r-hcppc-81, h-hgc-84, hs-cagcu-84, grs-kfcg-83, ZZZ" -, update = "98.03 bibrelex, 93.09 milone+mitchell" +, author = "J. Stolfi" +, title = "Oriented projective geometry" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "76--85" +, precedes = "s-pcg-88" +, cites = "bbr-ecit-85, c-rpp-49, i-ppc-85, ir-cpc-84, r-hcppc-81, h-hgc-84, hs-cagcu-84, grs-kfcg-83, ZZZ" +, update = "98.03 bibrelex, 93.09 milone+mitchell" } @book{s-opgfg-91 -, author = "J. Stolfi" -, title = "Oriented Projective Geometry: A Framework for Geometric Computations" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1991 -, keywords = "oriented projective geometry, duality, convexity, Pl{\"u}cker coordinates" -, succeeds = "s-pcg-88" -, update = "95.05 korneenko" +, author = "J. Stolfi" +, title = "Oriented Projective Geometry: A Framework for Geometric Computations" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1991 +, keywords = "oriented projective geometry, duality, convexity, Pl{\"u}cker coordinates" +, succeeds = "s-pcg-88" +, update = "95.05 korneenko" } @phdthesis{s-pcg-88 -, author = "J. Stolfi" -, title = "Primitives for Computational Geometry" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, month = may -, year = 1988 -, note = "Reprinted as Technical Report 36, DEC Systems Research Center, January 1989" -, keywords = "doctoral thesis" -, succeeds = "s-opg-87" -, precedes = "s-opgfg-91" -, update = "95.05 jones" +, author = "J. Stolfi" +, title = "Primitives for Computational Geometry" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, month = may +, year = 1988 +, note = "Reprinted as Technical Report 36, DEC Systems Research Center, January 1989" +, keywords = "doctoral thesis" +, succeeds = "s-opg-87" +, precedes = "s-opgfg-91" +, update = "95.05 jones" } @techreport{sg-nsdbt-83 -, author = "J. Stolfi and Leonidas J. Guibas" -, title = "A note on the shortest distance between two sets of points" -, type = "Report" -, number = "??" -, institution = "Xerox Palo Alto Res. Center" -, address = "Palo Alto, CA" -, year = 1983 -, update = "98.03 mitchell" +, author = "J. Stolfi and Leonidas J. Guibas" +, title = "A note on the shortest distance between two sets of points" +, type = "Report" +, number = "??" +, institution = "Xerox Palo Alto Res. Center" +, address = "Palo Alto, CA" +, year = 1983 +, update = "98.03 mitchell" } @inproceedings{shs-riids-86 -, author = "M. Stonebreaker and E. Hanson and T. Sellis" -, title = "Rule Indexing Implementations in Database Systems" -, booktitle = "Proc. 1st Int. Conf. on Expert Database Systems" -, year = 1986 -, update = "96.09 kreveld" +, author = "M. Stonebreaker and E. Hanson and T. Sellis" +, title = "Rule Indexing Implementations in Database Systems" +, booktitle = "Proc. 1st Int. Conf. on Expert Database Systems" +, year = 1986 +, update = "96.09 kreveld" } @article{s-mncpe-84 -, author = "J. A. Storer" -, title = "On minimal node-cost planar embeddings" -, journal = "Networks" -, volume = 14 -, year = 1984 -, pages = "181--212" -, keywords = "approximation, graph drawing" -, succeeds = "s-ncmeg-80" -, update = "93.09 tamassia" +, author = "J. A. Storer" +, title = "On minimal node-cost planar embeddings" +, journal = "Networks" +, volume = 14 +, year = 1984 +, pages = "181--212" +, keywords = "approximation, graph drawing" +, succeeds = "s-ncmeg-80" +, update = "93.09 tamassia" } @inproceedings{s-ncmeg-80 -, author = "J. A. Storer" -, title = "The node cost measure for embedding graphs on the planar grid" -, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." -, year = 1980 -, pages = "201--210" -, keywords = "approximation" -, precedes = "s-mncpe-84" +, author = "J. A. Storer" +, title = "The node cost measure for embedding graphs on the planar grid" +, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." +, year = 1980 +, pages = "201--210" +, keywords = "approximation" +, precedes = "s-mncpe-84" } @techreport{sr-spppo-?? -, author = "J. A. Storer and J. H. Reif" -, title = "Shortest paths in the plane with polygonal obstacles" -, type = "Technical {Report}" -, year = "??" -, succeeds = "rs-spesp-85" -, precedes = "sr-spppo-94" -, update = "99.07 smid, 93.09 milone+mitchell" +, author = "J. A. Storer and J. H. Reif" +, title = "Shortest paths in the plane with polygonal obstacles" +, type = "Technical {Report}" +, year = "??" +, succeeds = "rs-spesp-85" +, precedes = "sr-spppo-94" +, update = "99.07 smid, 93.09 milone+mitchell" } @article{sr-spppo-94 -, author = "J. A. Storer and J. H. Reif" -, title = "Shortest paths in the plane with polygonal obstacles" -, journal = "J. ACM" -, volume = 41 -, number = 5 -, year = 1994 -, pages = "982--1012" -, succeeds = "rs-spesp-85" -, update = "95.05 mitchell" +, author = "J. A. Storer and J. H. Reif" +, title = "Shortest paths in the plane with polygonal obstacles" +, journal = "J. ACM" +, volume = 41 +, number = 5 +, year = 1994 +, pages = "982--1012" +, succeeds = "rs-spesp-85" +, update = "95.05 mitchell" } @article{s-afvio-73 -, author = "S. Storoy" -, title = "An algorithm for finding a vector in the intersection of open convex polyhedral cones" -, journal = "BIT" -, volume = 13 -, year = 1973 -, pages = "114--119" +, author = "S. Storoy" +, title = "An algorithm for finding a vector in the intersection of open convex polyhedral cones" +, journal = "BIT" +, volume = 13 +, year = 1973 +, pages = "114--119" } @techreport{s-ctgp-89 -, author = "Q. Stout" -, title = "Constant-time geometry on {PRAMs}" -, type = "Manuscript" -, institution = "Univ. of Michigan" -, address = "Univ. Illinois, Urbana, IL." -, year = 1989 -, comments = "talk was the Semi-Annual Lunch, Algorithms, and Dinner Symposium" -, update = "93.09 milone+mitchell" +, author = "Q. Stout" +, title = "Constant-time geometry on {PRAMs}" +, type = "Manuscript" +, institution = "Univ. of Michigan" +, address = "Univ. Illinois, Urbana, IL." +, year = 1989 +, comments = "talk was the Semi-Annual Lunch, Algorithms, and Dinner Symposium" +, update = "93.09 milone+mitchell" } @article{s-dslpc-82 -, author = "Q. F. Stout" -, title = "Drawing straight lines with a pyramid cellular automaton" -, journal = "Inform. Process. Lett." -, volume = 15 -, year = 1982 -, pages = "233--237" -, update = "97.11 bibrelex" +, author = "Q. F. Stout" +, title = "Drawing straight lines with a pyramid cellular automaton" +, journal = "Inform. Process. Lett." +, volume = 15 +, year = 1982 +, pages = "233--237" +, update = "97.11 bibrelex" } @inproceedings{s-mpcig-85 -, author = "Q. F. Stout" -, title = "Mesh and pyramid computers inspired by geometric algorithms" -, booktitle = "Workshop on Algorithm-Guided Parallel Architectures for Automatic Target Recognition" -, year = 1985 -, pages = "293--315" -, update = "97.11 bibrelex" +, author = "Q. F. Stout" +, title = "Mesh and pyramid computers inspired by geometric algorithms" +, booktitle = "Workshop on Algorithm-Guided Parallel Architectures for Automatic Target Recognition" +, year = 1985 +, pages = "293--315" +, update = "97.11 bibrelex" } @article{s-pcscp-85 -, author = "Q. F. Stout" -, title = "Pyramid computer solutions of the closest pair problem" -, journal = "J. Algorithms" -, volume = "??" -, year = 1985 -, note = "To appear" -, update = "97.11 bibrelex" +, author = "Q. F. Stout" +, title = "Pyramid computer solutions of the closest pair problem" +, journal = "J. Algorithms" +, volume = "??" +, year = 1985 +, note = "To appear" +, update = "97.11 bibrelex" } @inproceedings{s-smsft-83 -, author = "Q. F. Stout" -, title = "Sorting, merging, selecting, and filtering on tree and pyramid machines" -, booktitle = "Proc. Internat. Conf. Parallel Process." -, year = 1983 -, pages = "214--221" -, update = "97.11 bibrelex" +, author = "Q. F. Stout" +, title = "Sorting, merging, selecting, and filtering on tree and pyramid machines" +, booktitle = "Proc. Internat. Conf. Parallel Process." +, year = 1983 +, pages = "214--221" +, update = "97.11 bibrelex" } @book{skm-sgia-87 -, author = "D. Stoyan and W. S. Kendall and J. Mecke" -, title = "Stochastic Geometry and its Applications" -, publisher = "Akadamie-Verlag" -, address = "Berlin, West Germany" -, year = 1987 -, update = "96.09 agarwal" -, annote = "Contains a summary of Voronoi diagram applications in - a variety of areas." +, author = "D. Stoyan and W. S. Kendall and J. Mecke" +, title = "Stochastic Geometry and its Applications" +, publisher = "Akadamie-Verlag" +, address = "Berlin, West Germany" +, year = 1987 +, update = "96.09 agarwal" +, annote = "Contains a summary of Voronoi diagram applications in + a variety of areas." } @book{skm-sga-95 -, author = "D. Stoyan and W. S. Kendall and J. Mecke" -, title = "Stochastic Geometry and its Applications" -, edition = "2nd" -, publisher = "Wiley-Interscience" -, year = 1995 -, update = "01.11 pocchiola" -, annote = "Contains a summary of Voronoi diagram applications in - a variety of areas." +, author = "D. Stoyan and W. S. Kendall and J. Mecke" +, title = "Stochastic Geometry and its Applications" +, edition = "2nd" +, publisher = "Wiley-Interscience" +, year = 1995 +, update = "01.11 pocchiola" +, annote = "Contains a summary of Voronoi diagram applications in + a variety of areas." } @article{ss-apror-81 -, author = "Y. G. Stoyan and S. V. Smelyakov" -, title = "An approach to the problems of routing optimization in the regions of intricate shape" -, journal = "Inform. Process. Lett." -, volume = 13 -, year = 1981 -, pages = "39--43" +, author = "Y. G. Stoyan and S. V. Smelyakov" +, title = "An approach to the problems of routing optimization in the regions of intricate shape" +, journal = "Inform. Process. Lett." +, volume = 13 +, year = 1981 +, pages = "39--43" } @article{s-mftd-83 -, author = "G. Strang" -, title = "Maximal flow through a domain" -, journal = "Math. Program." -, volume = 26 -, year = 1983 -, pages = "123--143" -, update = "98.03 bibrelex" +, author = "G. Strang" +, title = "Maximal flow through a domain" +, journal = "Math. Program." +, volume = 26 +, year = 1983 +, pages = "123--143" +, update = "98.03 bibrelex" } @article{s-wc-82 -, author = "G. Strang" -, title = "The width of a chair" -, journal = "Amm. Math. Monthly" -, volume = 89 -, year = 1982 -, pages = "529--535" -, update = "98.03 bibrelex" +, author = "G. Strang" +, title = "The width of a chair" +, journal = "Amm. Math. Monthly" +, volume = 89 +, year = 1982 +, pages = "529--535" +, update = "98.03 bibrelex" } @book{sf-afem-73 -, author = "G. Strang and G. Fix" -, title = "An Alaysis of the Finite Element Method" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1973 -, update = "97.11 bibrelex" +, author = "G. Strang and G. Fix" +, title = "An Alaysis of the Finite Element Method" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1973 +, update = "97.11 bibrelex" } @incollection{s-act-90 -, author = "Volker Strassen" -, title = "Algebraic Complexity Theory" -, chapter = 11 -, editor = "J. van Leeuwen" -, booktitle = "Algorithms and Complexity" -, series = "Handbook of Theoretical Computer Science" -, volume = "A" -, publisher = "MIT Press" -, year = 1990 -, pages = "633--672" -, update = "97.07 agarwal" +, author = "Volker Strassen" +, title = "Algebraic Complexity Theory" +, chapter = 11 +, editor = "J. van Leeuwen" +, booktitle = "Algorithms and Complexity" +, series = "Handbook of Theoretical Computer Science" +, volume = "A" +, publisher = "MIT Press" +, year = 1990 +, pages = "633--672" +, update = "97.07 agarwal" } @incollection{s-c3do2-88 -, author = "W. Stra{\ss}er" -, title = "Constructing 3${D}$ Objects from 2${D}$ Information" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series" -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "967--996" -, isbn = "3-540-19506-8" -, update = "93.09 held" +, author = "W. Stra{\ss}er" +, title = "Constructing 3${D}$ Objects from 2${D}$ Information" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series" +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "967--996" +, isbn = "3-540-19506-8" +, update = "93.09 held" } % now Bulletin of the Polish Academy of Sciences @article{s-supgd-57 -, author = "S. Straszewicz" -, title = "Sur un probl{\`e}me geometrique de {P}. {Erd{\H o}s}" -, journal = "Bulletin de l'Acad{\'e}mie Polonaise des Sciences, Classe III" -, volume = 5 -, year = 1957 -, pages = "39--40" -, update = "93.09 rote" +, author = "S. Straszewicz" +, title = "Sur un probl{\`e}me geometrique de {P}. {Erd{\H o}s}" +, journal = "Bulletin de l'Acad{\'e}mie Polonaise des Sciences, Classe III" +, volume = 5 +, year = 1957 +, pages = "39--40" +, update = "93.09 rote" } @inproceedings{s-capnc-00 -, author = "I. Streinu" -, title = "A combinatorial approach to planar non-colliding robot arm motion planning" -, booktitle = "Proc. 41st Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS 2000" -, site = "Redondo Beach, California" -, publisher = "IEEE" -, month = nov -, year = 2000 -, note = "443--453" -, update = "01.04 orourke+pocchiola" +, author = "I. Streinu" +, title = "A combinatorial approach to planar non-colliding robot arm motion planning" +, booktitle = "Proc. 41st Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS 2000" +, site = "Redondo Beach, California" +, publisher = "IEEE" +, month = nov +, year = 2000 +, note = "443--453" +, update = "01.04 orourke+pocchiola" } @techreport{s-cs-96 -, author = "I. Streinu" -, title = "Clusters of stars" -, institution = "Dept. Comput. Sci., Smith College" -, address = "Northampton, MA" -, year = 1996 -, update = "98.07 bibrelex" +, author = "I. Streinu" +, title = "Clusters of stars" +, institution = "Dept. Comput. Sci., Smith College" +, address = "Northampton, MA" +, year = 1996 +, update = "98.07 bibrelex" } @inproceedings{s-cs-97 -, author = "I. Streinu" -, title = "Clusters of Stars" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "439--441" -, cites = "blwsz-om-93, eos-calha-86, ehn-sisp-96, gp-sccca-84, gp-asotd-93, k-ah-92, os-vepvgcr-97, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "I. Streinu" +, title = "Clusters of Stars" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "439--441" +, cites = "blwsz-om-93, eos-calha-86, ehn-sisp-96, gp-sccca-84, gp-asotd-93, k-ah-92, os-vepvgcr-97, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @techreport{s-nspvg-96 -, author = "I. Streinu" -, title = "Nonstretchable pseudo-visibility graphs" -, type = "Technical {Report}" -, number = 055 -, institution = "Dept. Comput. Sci., Smith College" -, month = dec -, year = 1996 -, keywords = "visibility" -, update = "97.11 orourke" +, author = "I. Streinu" +, title = "Nonstretchable pseudo-visibility graphs" +, type = "Technical {Report}" +, number = 055 +, institution = "Dept. Comput. Sci., Smith College" +, month = dec +, year = 1996 +, keywords = "visibility" +, update = "97.11 orourke" } @article{sk-lrmme-99 -, author = "T. Strijk and M. van Kreveld" -, title = "Labeling a rectilinear map more efficiently" -, journal = "Inform. Process. Lett." -, volume = 69 -, year = 1999 -, pages = "25--30" -, update = "99.07 smid" +, author = "T. Strijk and M. van Kreveld" +, title = "Labeling a rectilinear map more efficiently" +, journal = "Inform. Process. Lett." +, volume = 69 +, year = 1999 +, pages = "25--30" +, update = "99.07 smid" } @article{sw-lpc-01 -, author = "T. Strijk and A. Wolff" -, title = "Labeling points with circles" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "181--195" -, update = "01.07 smid" +, author = "T. Strijk and A. Wolff" +, title = "Labeling points with circles" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "181--195" +, update = "01.07 smid" } @techreport{sk-smmpp-91 -, author = "D. Strip and M. Karasick" -, title = "Solid modeling on a massively parallel processor" -, institution = "IBM, Research Division" -, month = feb -, year = 1991 -, precedes = "sk-smmpp-92" -, update = "97.03 aronov, 93.09 milone+mitchell" +, author = "D. Strip and M. Karasick" +, title = "Solid modeling on a massively parallel processor" +, institution = "IBM, Research Division" +, month = feb +, year = 1991 +, precedes = "sk-smmpp-92" +, update = "97.03 aronov, 93.09 milone+mitchell" } % The journal: International Journal of Supercomputer Applications % seems not to be in "authority" file. @article{sk-smmpp-92 -, author = "David Strip and Michael Karasick" -, title = "Solid Modeling on a Massively Parallel Processor" -, journal = "Internat. J. Supercomputer Appl." -, volume = 6 -, year = "Summer 1992" -, pages = "175--92??" -, note = "From IBM TR index: full volume/no/pages date vol. 6, no. 2, p. 175-92, Summer 1992. Entry ID 3876. Is this the report number for IBM TRs" -, succeeds = "sk-smmpp-91" -, update = "97.03 aronov" +, author = "David Strip and Michael Karasick" +, title = "Solid Modeling on a Massively Parallel Processor" +, journal = "Internat. J. Supercomputer Appl." +, volume = 6 +, year = "Summer 1992" +, pages = "175--92??" +, note = "From IBM TR index: full volume/no/pages date vol. 6, no. 2, p. 175-92, Summer 1992. Entry ID 3876. Is this the report number for IBM TRs" +, succeeds = "sk-smmpp-91" +, update = "97.03 aronov" } @book{s-dg-69 -, author = "J. J. Stroker" -, title = "Differential Geometry" -, publisher = "Wiley-Interscience" -, year = 1969 -, update = "95.01 schwarzkopf" +, author = "J. J. Stroker" +, title = "Differential Geometry" +, publisher = "Wiley-Interscience" +, year = 1969 +, update = "95.01 schwarzkopf" } @inproceedings{ss-kaud-88 -, author = "Th. Strothotte and J.-R. Sack" -, title = "Knowledge Acquisition using Diagrams" -, booktitle = "Proc. 3rd IFIP Conference on Man-Machine Systems" -, site = "Oulo, Finland" -, year = 1988 -, update = "99.11 smid, 97.11 sack" +, author = "Th. Strothotte and J.-R. Sack" +, title = "Knowledge Acquisition using Diagrams" +, booktitle = "Proc. 3rd IFIP Conference on Man-Machine Systems" +, site = "Oulo, Finland" +, year = 1988 +, update = "99.11 smid, 97.11 sack" } @book{s-acmi-71 -, author = "A. H. Stroud" -, title = "Approximate Calculation of Multiple Integrals" -, publisher = "Prentice Hall" -, year = 1971 -, update = "98.07 bibrelex" +, author = "A. H. Stroud" +, title = "Approximate Calculation of Multiple Integrals" +, publisher = "Prentice Hall" +, year = 1971 +, update = "98.07 bibrelex" } @book{s-cpl-86 -, author = "B. Stroustrup" -, title = "The {C}++ Programming Language" -, publisher = "Addison-Wesley" -, year = 1986 -, update = "97.11 bibrelex" +, author = "B. Stroustrup" +, title = "The {C}++ Programming Language" +, publisher = "Addison-Wesley" +, year = 1986 +, update = "97.11 bibrelex" } @techreport{sr-hdced-98 -, author = "Anja Struyf and Peter J. Rousseeuw" -, title = "Halfspace Depth Characterizes the Empirical Distribution" -, type = "Manuscript" -, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" -, year = 1998 -, keywords = "coordinate-free, multivariate ranks, robustness, AMS Classification: 62G30, 62J05" -, update = "98.07 mitchell" -, abstract = " +, author = "Anja Struyf and Peter J. Rousseeuw" +, title = "Halfspace Depth Characterizes the Empirical Distribution" +, type = "Manuscript" +, institution = "Dept. of Mathematics and Computer Science, University of Antwerp, Belgium" +, year = 1998 +, keywords = "coordinate-free, multivariate ranks, robustness, AMS Classification: 62G30, 62J05" +, update = "98.07 mitchell" +, abstract = " For any empirical multivariate distribution, we show that the resulting halfspace depth function determines the distribution completely. We do this by actually reconstructing the data points from @@ -137354,683 +137354,683 @@ @techreport{sr-hdced-98 } @article{sc-ctrmh-90 -, author = "M. A. Stuff and J. N. Cederquist" -, title = "Coordinate transformations realizable with multiple holographic optical elements" -, journal = "J. Optical Soc. Amer." -, volume = "A7" -, number = 6 -, year = 1990 -, pages = "977--981" -, update = "97.11 bibrelex" +, author = "M. A. Stuff and J. N. Cederquist" +, title = "Coordinate transformations realizable with multiple holographic optical elements" +, journal = "J. Optical Soc. Amer." +, volume = "A7" +, number = 6 +, year = 1990 +, pages = "977--981" +, update = "97.11 bibrelex" } @inproceedings{sw-ghdcl-95 -, author = "G. Stumme and R. Wille" -, title = "A Geometrical Heuristic for Drawing Concept Lattices" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "452--459" -, keywords = "graph drawing, order, upward" -, update = "95.01 tamassia" +, author = "G. Stumme and R. Wille" +, title = "A Geometrical Heuristic for Drawing Concept Lattices" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "452--459" +, keywords = "graph drawing, order, upward" +, update = "95.01 tamassia" } @techreport{s-csg-87 -, author = "B. Sturmfels" -, title = "Computational synthetic geometry" -, type = "Manuscript" -, institution = "Inst. Math. Appl., Univ. Minnesota" -, address = "Minneapolis, MN" -, year = 1987 +, author = "B. Sturmfels" +, title = "Computational synthetic geometry" +, type = "Manuscript" +, institution = "Inst. Math. Appl., Univ. Minnesota" +, address = "Minneapolis, MN" +, year = 1987 } @article{s-cpdoc-87 -, author = "Bernd Sturmfels" -, title = "Cyclic polytopes and d-order curves" -, journal = "Geom. Dedicta" -, volume = 24 -, year = 1987 -, pages = "103--107" -, update = "97.11 bibrelex" +, author = "Bernd Sturmfels" +, title = "Cyclic polytopes and d-order curves" +, journal = "Geom. Dedicta" +, volume = 24 +, year = 1987 +, pages = "103--107" +, update = "97.11 bibrelex" } @misc{s-gbcp-95 -, author = "B. Sturmfels" -, title = "{Gr{\"o}bner} Bases and Convex Polytopes" -, month = apr -, year = 1995 -, note = "Expanded Lecture Notes from the Holiday Symposium at New Mexico State University" -, update = "97.11 bibrelex" +, author = "B. Sturmfels" +, title = "{Gr{\"o}bner} Bases and Convex Polytopes" +, month = apr +, year = 1995 +, note = "Expanded Lecture Notes from the Holiday Symposium at New Mexico State University" +, update = "97.11 bibrelex" } @article{s-gbtv-91 -, author = "B. Sturmfels" -, title = "{Gr{\"o}bner} Bases of Toric Varieties" -, journal = "Tohoku Math. J." -, volume = 43 -, number = 2 -, year = 1991 -, pages = "249--261" -, update = "97.11 bibrelex" +, author = "B. Sturmfels" +, title = "{Gr{\"o}bner} Bases of Toric Varieties" +, journal = "Tohoku Math. J." +, volume = 43 +, number = 2 +, year = 1991 +, pages = "249--261" +, update = "97.11 bibrelex" } @article{s-fcbmt-80 -, author = "M. Styness" -, title = "On faster convergence of the bisection method for all triangles" -, journal = "Math. Comput." -, volume = 35 -, year = 1980 -, pages = "1195--1201" -, update = "98.11 bibrelex" +, author = "M. Styness" +, title = "On faster convergence of the bisection method for all triangles" +, journal = "Math. Comput." +, volume = 35 +, year = 1980 +, pages = "1195--1201" +, update = "98.11 bibrelex" } @article{s-ncdmc-99 -, author = "C.-J. Su" -, title = "A New Collision Detection Method for CSG-represented Objects in Virtual Manufacturing" -, journal = "Comput. Ind." -, volume = 40 -, number = 1 -, year = 1999 -, pages = "1--13" -, update = "99.11 held" +, author = "C.-J. Su" +, title = "A New Collision Detection Method for CSG-represented Objects in Virtual Manufacturing" +, journal = "Comput. Ind." +, volume = 40 +, number = 1 +, year = 1999 +, pages = "1--13" +, update = "99.11 held" } @phdthesis{s-epacp-94 -, author = "P. Su" -, title = "Efficient parallel algorithms for closest point problems" -, school = "Dartmouth College" -, year = 1994 -, note = "Number PCS-TR94-238" -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "P. Su" +, title = "Efficient parallel algorithms for closest point problems" +, school = "Dartmouth College" +, year = 1994 +, note = "Number PCS-TR94-238" +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @article{sd-csdta-97 -, author = "P. Su and R. Drysdale" -, title = "A comparison of sequential {Delaunay} triangulation algorithms" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "361--386" -, succeeds = "sd-csdta-95" -, update = "97.07 devillers" +, author = "P. Su and R. Drysdale" +, title = "A comparison of sequential {Delaunay} triangulation algorithms" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "361--386" +, succeeds = "sd-csdta-95" +, update = "97.07 devillers" } @inproceedings{sd-csdta-95 -, author = "Peter Su and Robert L. Scot Drysdale" -, title = "A Comparison of Sequential {Delaunay} Triangulation Algorithms" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "61--70" -, keywords = "experimental comparison" -, cites = "b-cgida-93, b-etsh-90, b-kdtsp-90, bwy-oetac-80, cs-arscg-89, d-fdcac-87, d-hdvdl-91, f-savd-87, gs-cdtp-78, gks-ricdv-92, gs-pmgsc-85, gs-pmgsc-85, kk-cdtmb-87, m-dtchn-84, m-eaa-86, oim-iimvd-84, s-iggp-76, sy-ricdd-90, too-natdv-83, w-smaa-78, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex, 95.09 mitchell" +, author = "Peter Su and Robert L. Scot Drysdale" +, title = "A Comparison of Sequential {Delaunay} Triangulation Algorithms" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "61--70" +, keywords = "experimental comparison" +, cites = "b-cgida-93, b-etsh-90, b-kdtsp-90, bwy-oetac-80, cs-arscg-89, d-fdcac-87, d-hdvdl-91, f-savd-87, gs-cdtp-78, gks-ricdv-92, gs-pmgsc-85, gs-pmgsc-85, kk-cdtmb-87, m-dtchn-84, m-eaa-86, oim-iimvd-84, s-iggp-76, sy-ricdd-90, too-natdv-83, w-smaa-78, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex, 95.09 mitchell" } @article{sc-ccrng-91 -, author = "Tung-Hsin Su and Ruei-Chuan Chang" -, title = "Computing The Constrained Relative Neighborhood Graphs And Constrained Gabriel Graphs In {Euclidean} Plane" -, journal = "Pattern Recogn. Lett." -, volume = 24 -, number = 3 -, year = 1991 -, pages = "221--230" -, keywords = "constrained relative neighborhood graphs (crng), constrained gabriel graphs (cgg), euclidean plane, Delaunay triangulation" -, update = "93.09 rote" -, annote = "CRNG and CGG are subgraphs of CDT." -, abstract = "The original relative neighborhood graph (RNG) and - Gabriel graph (GG) were defined on a vertices set in - the plane. In this paper, we will extend this domain to - a planar straight-line graph, and call this type of RNG - and GG the constrained relative neighborhood graph - (CRNG) and the constrained Gabriel graph (CGG) - respectively. Given a planar straight-line graph G in - the plane, the edges of the CRNG of G(CRNG(G)) satisfy - the following two properties: (1) All of the edges in G - (called prespecified edges) are included in the CRNG(G) - and the remaining edges do not properly intersect with - them; (2) If non-prespecified edge (p,q) belongs to the - CRNG(G) then either there does not exist a vertex z - such that d(p,z) less than d(p,q) and d(q,z) less than - d(p,q), or if z satisfies the above condition then z - must be invisible by p or q (i.e. if you draw the line - segments from z to p and q, then at least one of the - lines segments crosses a prespecified edge of G). The - constrained Gabriel graph is defined similarly. The - CRNG and CGG are the extensions of RNG and GG - respectively for which one can specify in advance some - special or important edges which must be included in - the outcome graph. These variants of RNG and GG provide - a new application for the original RNG and GG. In this - paper, we will show that both CRNG and CGG are - subgraphs of the constrained Delaunay triangulation, - and propose two optimal algorithms to construct them in - $\Theta (n \log n)$ time. (Author abstract) 14 Refs." +, author = "Tung-Hsin Su and Ruei-Chuan Chang" +, title = "Computing The Constrained Relative Neighborhood Graphs And Constrained Gabriel Graphs In {Euclidean} Plane" +, journal = "Pattern Recogn. Lett." +, volume = 24 +, number = 3 +, year = 1991 +, pages = "221--230" +, keywords = "constrained relative neighborhood graphs (crng), constrained gabriel graphs (cgg), euclidean plane, Delaunay triangulation" +, update = "93.09 rote" +, annote = "CRNG and CGG are subgraphs of CDT." +, abstract = "The original relative neighborhood graph (RNG) and + Gabriel graph (GG) were defined on a vertices set in + the plane. In this paper, we will extend this domain to + a planar straight-line graph, and call this type of RNG + and GG the constrained relative neighborhood graph + (CRNG) and the constrained Gabriel graph (CGG) + respectively. Given a planar straight-line graph G in + the plane, the edges of the CRNG of G(CRNG(G)) satisfy + the following two properties: (1) All of the edges in G + (called prespecified edges) are included in the CRNG(G) + and the remaining edges do not properly intersect with + them; (2) If non-prespecified edge (p,q) belongs to the + CRNG(G) then either there does not exist a vertex z + such that d(p,z) less than d(p,q) and d(q,z) less than + d(p,q), or if z satisfies the above condition then z + must be invisible by p or q (i.e. if you draw the line + segments from z to p and q, then at least one of the + lines segments crosses a prespecified edge of G). The + constrained Gabriel graph is defined similarly. The + CRNG and CGG are the extensions of RNG and GG + respectively for which one can specify in advance some + special or important edges which must be included in + the outcome graph. These variants of RNG and GG provide + a new application for the original RNG and GG. In this + paper, we will show that both CRNG and CGG are + subgraphs of the constrained Delaunay triangulation, + and propose two optimal algorithms to construct them in + $\Theta (n \log n)$ time. (Author abstract) 14 Refs." } @article{sc-crnge-91 -, author = "Tung-Hsin Su and Ruei-Chuan Chang" -, title = "On constructing the relative neighborhood graph in {Euclidean} $k$-dimensional spaces" -, journal = "Computing" -, volume = 46 -, year = 1991 -, pages = "121--130" -, keywords = "rng" -, update = "93.09 rote" -, annote = "in $O(n(n \log n)^{1-2^{-(k+1)}}$ time, under some general position assumptions" +, author = "Tung-Hsin Su and Ruei-Chuan Chang" +, title = "On constructing the relative neighborhood graph in {Euclidean} $k$-dimensional spaces" +, journal = "Computing" +, volume = 46 +, year = 1991 +, pages = "121--130" +, keywords = "rng" +, update = "93.09 rote" +, annote = "in $O(n(n \log n)^{1-2^{-(k+1)}}$ time, under some general position assumptions" } @inproceedings{sc-kggta-90 -, author = "T. H. Su and R. C. Chang" -, title = "The $k$-{Gabriel} graphs and their applications" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "66--75" +, author = "T. H. Su and R. C. Chang" +, title = "The $k$-{Gabriel} graphs and their applications" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "66--75" } @inproceedings{sr-prtnd-95 -, author = "Sairam Subramanian and Sridhar Ramaswamy" -, title = "The {$P$}-range Tree: {A} New Data Structure for Range Searching in Secondary Memory" -, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1995 -, pages = "378--387" -, keywords = "range searching, external memory algorithms" -, update = "96.09 agarwal, 96.05 mitchell" +, author = "Sairam Subramanian and Sridhar Ramaswamy" +, title = "The {$P$}-range Tree: {A} New Data Structure for Range Searching in Secondary Memory" +, booktitle = "Proc. 6th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1995 +, pages = "378--387" +, keywords = "range searching, external memory algorithms" +, update = "96.09 agarwal, 96.05 mitchell" } @article{sd-csegs-91 -, author = "R. V. Subramaniyam and A. A. Diwan" -, title = "A Counterexample for the Sufficiency of Edge Guards in Star Polygons" -, journal = "Inform. Process. Lett." -, volume = 40 -, year = 1991 -, pages = "97--99" -, update = "98.11 bibrelex" +, author = "R. V. Subramaniyam and A. A. Diwan" +, title = "A Counterexample for the Sufficiency of Edge Guards in Star Polygons" +, journal = "Inform. Process. Lett." +, volume = 40 +, year = 1991 +, pages = "97--99" +, update = "98.11 bibrelex" } @phdthesis{s-aasmp-91 -, author = "R. Subramonian" -, title = "Asynchronous Algorithms for Shared Memory Parallel Computers" -, type = "Ph.{D}. Thesis" -, school = "Univ. California, Davis" -, year = 1991 -, keywords = "doctoral thesis" -, update = "96.09 orourke" +, author = "R. Subramonian" +, title = "Asynchronous Algorithms for Shared Memory Parallel Computers" +, type = "Ph.{D}. Thesis" +, school = "Univ. California, Davis" +, year = 1991 +, keywords = "doctoral thesis" +, update = "96.09 orourke" } @inproceedings{s-dsaap-92 -, author = "R. Subramonian" -, title = "Designing synchronous algorithms for asynchronous processors" -, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." -, year = 1992 -, pages = "189--198" -, update = "96.09 orourke" +, author = "R. Subramonian" +, title = "Designing synchronous algorithms for asynchronous processors" +, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." +, year = 1992 +, pages = "189--198" +, update = "96.09 orourke" } @article{sr-facsv-90 -, author = "S. Sudarshan and C. P. Rangan" -, title = "A fast algorithm for computing sparse visibility graphs" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "201--214" -, keywords = "visibility graphs, segments, two-dimensional" -, annote = "$O(|E| \log^{2} n)$ time, $O(n)$ space" +, author = "S. Sudarshan and C. P. Rangan" +, title = "A fast algorithm for computing sparse visibility graphs" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "201--214" +, keywords = "visibility graphs, segments, two-dimensional" +, annote = "$O(|E| \log^{2} n)$ time, $O(n)$ space" } @article{s-rcaic-94 -, author = "Kokichi Sugihara" -, title = "A robust and consistent algorithm for intersecting convex polyhedra" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 3 -, year = 1994 -, pages = "45--54" -, note = "Proc. EUROGRAPHICS '94" -, keywords = "solid modeling, convexity, polyhedra, robustness, intersection" -, update = "95.09 korneenko" +, author = "Kokichi Sugihara" +, title = "A robust and consistent algorithm for intersecting convex polyhedra" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 3 +, year = 1994 +, pages = "45--54" +, note = "Proc. EUROGRAPHICS '94" +, keywords = "solid modeling, convexity, polyhedra, robustness, intersection" +, update = "95.09 korneenko" } @article{s-smane-92 -, author = "K. Sugihara" -, title = "A Simple Method for Avoiding Numerical Errors and Degeneracy in {Voronoi} Diagram Construction" -, journal = "IEICE Trans. Fundamentals" -, volume = "E75-A" -, number = 4 -, month = apr -, year = 1992 -, pages = "468--477" -, update = "93.09 held" +, author = "K. Sugihara" +, title = "A Simple Method for Avoiding Numerical Errors and Degeneracy in {Voronoi} Diagram Construction" +, journal = "IEICE Trans. Fundamentals" +, volume = "E75-A" +, number = 4 +, month = apr +, year = 1992 +, pages = "468--477" +, update = "93.09 held" } @incollection{s-acvd-92 -, author = "K. Sugihara" -, title = "Algorithms for computing {Voronoi} diagrams" -, editor = "A. Okabe and B. Boots and K. Sugihara" -, booktitle = "Spatial Tessellations: Concepts and Applications of Voronoi Diagrams" -, publisher = "John Wiley \& Sons" -, address = "Chichester, UK" -, year = 1992 -, update = "98.07 bibrelex" +, author = "K. Sugihara" +, title = "Algorithms for computing {Voronoi} diagrams" +, editor = "A. Okabe and B. Boots and K. Sugihara" +, booktitle = "Spatial Tessellations: Concepts and Applications of Voronoi Diagrams" +, publisher = "John Wiley \& Sons" +, address = "Chichester, UK" +, year = 1992 +, update = "98.07 bibrelex" } @article{s-acaal-84 -, author = "K. Sugihara" -, title = "An algebraic and combinatorial approach to the analysis of line drawings of polyhedra" -, journal = "Discrete Appl. Math." -, volume = 9 -, year = 1984 -, pages = "77--104" -, update = "97.11 bibrelex" +, author = "K. Sugihara" +, title = "An algebraic and combinatorial approach to the analysis of line drawings of polyhedra" +, journal = "Discrete Appl. Math." +, volume = 9 +, year = 1984 +, pages = "77--104" +, update = "97.11 bibrelex" } @techreport{s-aefsm-87t -, author = "K. Sugihara" -, title = "An approach to error-free solid modeling" -, type = "Note" -, institution = "Inst. Math. Appl., Univ. Minnesota" -, address = "Minneapolis, MN" -, year = 1987 -, update = "98.03 bibrelex" +, author = "K. Sugihara" +, title = "An approach to error-free solid modeling" +, type = "Note" +, institution = "Inst. Math. Appl., Univ. Minnesota" +, address = "Minneapolis, MN" +, year = 1987 +, update = "98.03 bibrelex" } @incollection{s-aefsm-87 -, author = "K. Sugihara" -, title = "An approach to error-free solid modeling" -, booktitle = "IMA Summer Program on Robotics" -, publisher = "Institute for Mathematics and Applications, University of Minnesota" -, address = "" -, year = 1987 -, update = "98.03 bibrelex" +, author = "K. Sugihara" +, title = "An approach to error-free solid modeling" +, booktitle = "IMA Summer Program on Robotics" +, publisher = "Institute for Mathematics and Applications, University of Minnesota" +, address = "" +, year = 1987 +, update = "98.03 bibrelex" } @article{s-iabdt-92 -, author = "Kokichi Sugihara" -, title = "An Intersection Algorithm Based On {Delaunay} Triangulation" -, journal = "IEEE Comput. Graph. Appl." -, volume = 12 -, number = 2 -, month = mar -, year = 1992 -, pages = "59--67" -, keywords = "Delaunay triangulation, computational geometry" -, abstract = "A robust method for finding points of intersection of - line segments in a 2- D plane is presented. The plane - is subdivided by Delaunay triangulation to localize - areas where points of intersection exist and to - guarantee the topological consistency of the resulting - arrangement. The subdivision is refined by inserting - midpoints recursively until the areas containing points - of intersection are sufficiently localized. The method - is robust in the sense that it does not miss points of - intersection that are easily detectable when costly - line-pair checking is performed. The algorithm is - adaptive in the sense that most of the computational - cost is incurred for the areas where finding points of - intersection is difficult. 6 Refs." +, author = "Kokichi Sugihara" +, title = "An Intersection Algorithm Based On {Delaunay} Triangulation" +, journal = "IEEE Comput. Graph. Appl." +, volume = 12 +, number = 2 +, month = mar +, year = 1992 +, pages = "59--67" +, keywords = "Delaunay triangulation, computational geometry" +, abstract = "A robust method for finding points of intersection of + line segments in a 2- D plane is presented. The plane + is subdivided by Delaunay triangulation to localize + areas where points of intersection exist and to + guarantee the topological consistency of the resulting + arrangement. The subdivision is refined by inserting + midpoints recursively until the areas containing points + of intersection are sufficiently localized. The method + is robust in the sense that it does not miss points of + intersection that are easily detectable when costly + line-pair checking is performed. The algorithm is + adaptive in the sense that most of the computational + cost is incurred for the areas where finding points of + intersection is difficult. 6 Refs." } @article{s-nadcp-84 -, author = "K. Sugihara" -, title = "An $n \log n$ algorithm for determining the congruity of polyhedra" -, journal = "J. Comput. Syst. Sci." -, volume = 29 -, year = 1984 -, pages = "36--47" +, author = "K. Sugihara" +, title = "An $n \log n$ algorithm for determining the congruity of polyhedra" +, journal = "J. Comput. Syst. Sci." +, volume = 29 +, year = 1984 +, pages = "36--47" } @article{s-agvdo-93 -, author = "K. Sugihara" -, title = "Approximation of generalized {Voronoi} Diagrams by ordinary {Voronoi} diagrams" -, journal = "CVGIP: Graph. Models Image Process." -, volume = 55 -, year = 1993 -, pages = "522--531" -, update = "94.05 smid" +, author = "K. Sugihara" +, title = "Approximation of generalized {Voronoi} Diagrams by ordinary {Voronoi} diagrams" +, journal = "CVGIP: Graph. Models Image Process." +, volume = 55 +, year = 1993 +, pages = "522--531" +, update = "94.05 smid" } @inproceedings{s-lrusv-88 -, author = "K. Sugihara" -, title = "Location of a Robot Using Sparse Visual Information" -, editor = "R. Bolles and B. Roth" -, booktitle = "Robotics Research -- The Fourth Internat. Sympos." -, year = 1988 -, pages = "319--326" -, update = "93.09 held" +, author = "K. Sugihara" +, title = "Location of a Robot Using Sparse Visual Information" +, editor = "R. Bolles and B. Roth" +, booktitle = "Robotics Research -- The Fourth Internat. Sympos." +, year = 1988 +, pages = "319--326" +, update = "93.09 held" } -%, editor = "P. H. Winston and M. Brady" +%, editor = "P. H. Winston and M. Brady" @book{s-mild-86 -, author = "K. Sugihara" -, title = "Machine Interpretation of Line Drawings" -, series = "MIT Press Series in Artificial Intelligence" -, publisher = "MIT Press" -, year = 1986 -, isbn = "0-262-19254-3" -, update = "93.09 held" +, author = "K. Sugihara" +, title = "Machine Interpretation of Line Drawings" +, series = "MIT Press Series in Artificial Intelligence" +, publisher = "MIT Press" +, year = 1986 +, isbn = "0-262-19254-3" +, update = "93.09 held" } @techreport{s-msldp-81 -, author = "K. Sugihara" -, title = "Mathematical structures of line drawings of polyhedra - toward man-machine commonication by means of line drawings" -, institution = "Nagoya University" -, year = 1981 -, update = "97.11 bibrelex" +, author = "K. Sugihara" +, title = "Mathematical structures of line drawings of polyhedra - toward man-machine commonication by means of line drawings" +, institution = "Nagoya University" +, year = 1981 +, update = "97.11 bibrelex" } @techreport{s-fprgo-87 -, author = "K. Sugihara" -, title = "On finite precision representations of geometric objects" -, type = "Res. {Memo}" -, number = "RMI 87-06" -, institution = "Dept. Math. Engrg., Univ. Tokyo" -, address = "Tokyo, Japan" -, year = 1987 -, update = "98.03 bibrelex" +, author = "K. Sugihara" +, title = "On finite precision representations of geometric objects" +, type = "Res. {Memo}" +, number = "RMI 87-06" +, institution = "Dept. Math. Engrg., Univ. Tokyo" +, address = "Tokyo, Japan" +, year = 1987 +, update = "98.03 bibrelex" } @article{s-fprgo-89 -, author = "K. Sugihara" -, title = "On finite-precision representations of geometric objects" -, journal = "J. Comput. Syst. Sci." -, volume = 39 -, year = 1989 -, pages = "236--247" +, author = "K. Sugihara" +, title = "On finite-precision representations of geometric objects" +, journal = "J. Comput. Syst. Sci." +, volume = 39 +, year = 1989 +, pages = "236--247" } @incollection{s-rpld-88 -, author = "K. Sugihara" -, title = "Realizability of polyhedrons from line drawings" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "177--206" -, update = "93.09 held" -, annote = "sehr ausfuehrlich mit vielen referenzen" +, author = "K. Sugihara" +, title = "Realizability of polyhedrons from line drawings" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "177--206" +, update = "93.09 held" +, annote = "sehr ausfuehrlich mit vielen referenzen" } @article{s-rgwtd-93 -, author = "Kokichi Sugihara" -, title = "Robust gift-wrapping for the three-dimensional convex hull" -, journal = "J. Comput. Syst. Sci." -, volume = "??" -, year = 1993 -, note = "to appear" -, update = "98.11 bibrelex" +, author = "Kokichi Sugihara" +, title = "Robust gift-wrapping for the three-dimensional convex hull" +, journal = "J. Comput. Syst. Sci." +, volume = "??" +, year = 1993 +, note = "to appear" +, update = "98.11 bibrelex" } @article{s-slprn-88 -, author = "K. Sugihara" -, title = "Some Location Problems for Robot Navigation Using a Single Camera" -, journal = "Comput. Vision Graph. Image Process." -, volume = 42 -, year = 1988 -, pages = "112--129" -, update = "93.09 held" +, author = "K. Sugihara" +, title = "Some Location Problems for Robot Navigation Using a Single Camera" +, journal = "Comput. Vision Graph. Image Process." +, volume = 42 +, year = 1988 +, pages = "112--129" +, update = "93.09 held" } @inproceedings{s-tcarc-92 -, author = "K. Sugihara" -, title = "Topologically Consistent Algorithms Related to Convex Polyhedra" -, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '92" -, series = "Lecture Notes Comput. Sci." -, volume = 650 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "209--218" -, update = "94.09 smid, 93.09 milone+mitchell" +, author = "K. Sugihara" +, title = "Topologically Consistent Algorithms Related to Convex Polyhedra" +, booktitle = "Proc. 3rd Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '92" +, series = "Lecture Notes Comput. Sci." +, volume = 650 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "209--218" +, update = "94.09 smid, 93.09 milone+mitchell" } @article{s-vdr-92 -, author = "K. Sugihara" -, title = "Voronoi diagrams in a river" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 1 -, year = 1992 -, pages = "29--48" -, keywords = "Generalized Voronoi diagram, boat-sail distance, smallest hitting circle, forest of cones, plane sweep algorithm" +, author = "K. Sugihara" +, title = "Voronoi diagrams in a river" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 1 +, year = 1992 +, pages = "29--48" +, keywords = "Generalized Voronoi diagram, boat-sail distance, smallest hitting circle, forest of cones, plane sweep algorithm" } @inproceedings{sh-hdddg-97 -, author = "Kokichi Sugihara and Tetsuya Hiroshima" -, title = "How to Draw a {Delaunay} Diagram with a Given Topology" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "13--15" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Kokichi Sugihara and Tetsuya Hiroshima" +, title = "How to Draw a {Delaunay} Diagram with a Given Topology" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "13--15" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{si-w3dtd-95 -, author = "K. Sugihara and H. Inagaki" -, title = "Why is the 3{D} {Delaunay} triangulation difficult to construct?" -, journal = "Inform. Process. Lett." -, volume = 54 -, year = 1995 -, pages = "275--280" -, update = "95.09 smid" +, author = "K. Sugihara and H. Inagaki" +, title = "Why is the 3{D} {Delaunay} triangulation difficult to construct?" +, journal = "Inform. Process. Lett." +, volume = 54 +, year = 1995 +, pages = "275--280" +, update = "95.09 smid" } @inproceedings{si-nsmvd-88 -, author = "K. Sugihara and M. Iri" -, title = "A numerically stable method for {Voronoi} diagram construction" -, booktitle = "Proc. of the 1988 Fall Conf. of the Operations Research Soc. of Japan" -, site = "Tokyo" -, month = sep -, year = 1988 -, pages = "20--21" -, update = "98.11 bibrelex" +, author = "K. Sugihara and M. Iri" +, title = "A numerically stable method for {Voronoi} diagram construction" +, booktitle = "Proc. of the 1988 Fall Conf. of the Operations Research Soc. of Japan" +, site = "Tokyo" +, month = sep +, year = 1988 +, pages = "20--21" +, update = "98.11 bibrelex" } @article{si-rtoia-94 -, author = "K. Sugihara and M. Iri" -, title = "A robust Topology-Oriented Incremental algorithm for {Voronoi} diagrams" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 4 -, number = 2 -, year = 1994 -, pages = "179--228" -, keywords = "Voronoi diagram, robust algorithm, topology oriented method, incremental construction, combinatorial abstraction, asymptotic correctness" -, succeeds = "si-toimc-89" -, update = "98.07 tamassia, 96.09 devillers" +, author = "K. Sugihara and M. Iri" +, title = "A robust Topology-Oriented Incremental algorithm for {Voronoi} diagrams" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 4 +, number = 2 +, year = 1994 +, pages = "179--228" +, keywords = "Voronoi diagram, robust algorithm, topology oriented method, incremental construction, combinatorial abstraction, asymptotic correctness" +, succeeds = "si-toimc-89" +, update = "98.07 tamassia, 96.09 devillers" } @article{si-smsft-89 -, author = "K. Sugihara and M. Iri" -, title = "A Solid Modelling System Free from Topological Inconsistency" -, journal = "J. Inform. Proc." -, volume = 12 -, number = 4 -, year = 1989 -, pages = "380--393" -, update = "93.09 held" +, author = "K. Sugihara and M. Iri" +, title = "A Solid Modelling System Free from Topological Inconsistency" +, journal = "J. Inform. Proc." +, volume = 12 +, number = 4 +, year = 1989 +, pages = "380--393" +, update = "93.09 held" } @techreport{si-cvdom-89 -, author = "K. Sugihara and M. Iri" -, title = "Construction of the {Voronoi} Diagram for One Million Generators in Single-Precision Arithmetic" -, number = "RMI 89-05" -, institution = "Dept. Mathematical Eng., U. Tokyo" -, address = "Tokyo 113, Japan" -, month = aug -, year = 1989 -, keywords = "numerical precision, stability, robustness" -, update = "93.09 held" +, author = "K. Sugihara and M. Iri" +, title = "Construction of the {Voronoi} Diagram for One Million Generators in Single-Precision Arithmetic" +, number = "RMI 89-05" +, institution = "Dept. Mathematical Eng., U. Tokyo" +, address = "Tokyo 113, Japan" +, month = aug +, year = 1989 +, keywords = "numerical precision, stability, robustness" +, update = "93.09 held" } @article{si-cvdom-92 -, author = "K. Sugihara and M. Iri" -, title = "Construction of the {Voronoi} Diagram for `One Million' Generators in Single-Precision Arithmetic" -, journal = "Proc. IEEE" -, volume = 80 -, number = 9 -, month = sep -, year = 1992 -, pages = "1471--1484" -, update = "93.09 held" +, author = "K. Sugihara and M. Iri" +, title = "Construction of the {Voronoi} Diagram for `One Million' Generators in Single-Precision Arithmetic" +, journal = "Proc. IEEE" +, volume = 80 +, number = 9 +, month = sep +, year = 1992 +, pages = "1471--1484" +, update = "93.09 held" } @inproceedings{si-cvd10-89 -, author = "K. Sugihara and M. Iri" -, title = "Construction of the {Voronoi} diagram for over $10^{5}$ generators in single-precision arithmetic" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, month = aug -, year = 1989 -, pages = 42 -, update = "98.07 bibrelex" +, author = "K. Sugihara and M. Iri" +, title = "Construction of the {Voronoi} diagram for over $10^{5}$ generators in single-precision arithmetic" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, month = aug +, year = 1989 +, pages = 42 +, update = "98.07 bibrelex" } @techreport{si-gafpa-88 -, author = "K. Sugihara and M. Iri" -, title = "Geometric Algorithms in Finite-Precision Arithmetic" -, type = "Research Memorandum" -, number = "88-10" -, institution = "Math. Eng. and Physics Dept., U. of Tokyo, Japan" -, month = sep -, year = 1988 -, note = "Presented at 13th Int. Sympos. Math. Prog, Tokyo, Aug 29-Sep 2, 1988" -, keywords = "numerical precision, stability, robustness" -, update = "98.11 bibrelex, 93.09 held" +, author = "K. Sugihara and M. Iri" +, title = "Geometric Algorithms in Finite-Precision Arithmetic" +, type = "Research Memorandum" +, number = "88-10" +, institution = "Math. Eng. and Physics Dept., U. of Tokyo, Japan" +, month = sep +, year = 1988 +, note = "Presented at 13th Int. Sympos. Math. Prog, Tokyo, Aug 29-Sep 2, 1988" +, keywords = "numerical precision, stability, robustness" +, update = "98.11 bibrelex, 93.09 held" } @techreport{si-toimc-89 -, author = "K. Sugihara and M. Iri" -, title = "Topology-Oriented Incremental Method for Constructing {Voronoi} Diagrams Robust against Numerical Errors" -, number = "RMI 89-02" -, institution = "Dept. Mathematical Eng., U. Tokyo" -, address = "Tokyo 113, Japan" -, year = 1989 -, keywords = "numerical precision, stability, robustness" -, precedes = "si-rtoia-94" -, update = "96.09 devillers, 93.09 held" +, author = "K. Sugihara and M. Iri" +, title = "Topology-Oriented Incremental Method for Constructing {Voronoi} Diagrams Robust against Numerical Errors" +, number = "RMI 89-02" +, institution = "Dept. Mathematical Eng., U. Tokyo" +, address = "Tokyo 113, Japan" +, year = 1989 +, keywords = "numerical precision, stability, robustness" +, precedes = "si-rtoia-94" +, update = "96.09 devillers, 93.09 held" } @article{si-tdpga-89 -, author = "K. Sugihara and M. Iri" -, title = "Two Design Principles of Geometric Algorithms in Finite-Precision Arithmetic" -, journal = "Appl. Math. Lett." -, volume = 2 -, number = 2 -, year = 1989 -, pages = "203--206" -, keywords = "numerical precision, stability, robustness" -, update = "93.09 held" +, author = "K. Sugihara and M. Iri" +, title = "Two Design Principles of Geometric Algorithms in Finite-Precision Arithmetic" +, journal = "Appl. Math. Lett." +, volume = 2 +, number = 2 +, year = 1989 +, pages = "203--206" +, keywords = "numerical precision, stability, robustness" +, update = "93.09 held" } @techreport{si-vrm-89 -, author = "K. Sugihara and M. Iri" -, title = "{Voronoi2} Reference Manual" -, number = "RMI 89-04" -, institution = "Dept. Mathematical Eng., U. Tokyo" -, address = "Tokyo 113, Japan" -, month = sep -, year = 1989 -, update = "93.09 held" +, author = "K. Sugihara and M. Iri" +, title = "{Voronoi2} Reference Manual" +, number = "RMI 89-04" +, institution = "Dept. Mathematical Eng., U. Tokyo" +, address = "Tokyo 113, Japan" +, month = sep +, year = 1989 +, update = "93.09 held" } @article{siii-toiar-00 -, author = "K. Sugihara and M. Iri and H. Inagaki and T. Imai" -, title = "Topology-Oriented Implementation - An Approach to Robust Geometric Algorithms" -, journal = "Algorithmica" -, volume = 27 -, number = 1 -, year = 2000 -, pages = "5--20" -, update = "00.11 smid, 00.07 held" +, author = "K. Sugihara and M. Iri and H. Inagaki and T. Imai" +, title = "Topology-Oriented Implementation - An Approach to Robust Geometric Algorithms" +, journal = "Algorithmica" +, volume = 27 +, number = 1 +, year = 2000 +, pages = "5--20" +, update = "00.11 smid, 00.07 held" } @inproceedings{soi-toari-90 -, author = "K. Sugihara and Y. Ooishi and T. Imai" -, title = "Topology-oriented approach to robustness and its applications to several {Voronoi}-diagram algorithms" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "36--39" -, cites = "si-cvd10-89, kk-cdtmb-88, o-nridc-90, i-nracv-89, ZZZ" -, update = "98.07 bibrelex" +, author = "K. Sugihara and Y. Ooishi and T. Imai" +, title = "Topology-oriented approach to robustness and its applications to several {Voronoi}-diagram algorithms" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "36--39" +, cites = "si-cvd10-89, kk-cdtmb-88, o-nridc-90, i-nracv-89, ZZZ" +, update = "98.07 bibrelex" } @article{ssy-ssp-90 -, author = "K. Sugihara and I. Suzuki and M. Yamashita" -, title = "The searchlight scheduling problem" -, journal = "SIAM J. Comput." -, volume = 19 -, number = 6 -, year = 1990 -, pages = "1024--1040" -, update = "98.07 bibrelex" +, author = "K. Sugihara and I. Suzuki and M. Yamashita" +, title = "The searchlight scheduling problem" +, journal = "SIAM J. Comput." +, volume = 19 +, number = 6 +, year = 1990 +, pages = "1024--1040" +, update = "98.07 bibrelex" } @article{s-cagd-87 -, author = "K. Sugiyama" -, title = "A Cognitive Approach for Graph Drawing" -, journal = "Cybernetics and Systems: An International Journal" -, volume = 18 -, year = 1987 -, pages = "447--488" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Sugiyama" +, title = "A Cognitive Approach for Graph Drawing" +, journal = "Cybernetics and Systems: An International Journal" +, volume = 18 +, year = 1987 +, pages = "447--488" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{s-rrddl-84 -, author = "K. Sugiyama" -, title = "A Readability Requirement on Drawing Digraphs: Level Assignment and Edge Removal for Reducing the Total Length of Lines" -, number = 45 -, institution = "Internat. Inst. for Advanced Study of Social Information Science" -, month = mar -, year = 1984 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Sugiyama" +, title = "A Readability Requirement on Drawing Digraphs: Level Assignment and Edge Removal for Reducing the Total Length of Lines" +, number = 45 +, institution = "Internat. Inst. for Advanced Study of Social Information Science" +, month = mar +, year = 1984 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{s-aurdd-85 -, author = "K. Sugiyama" -, title = "Achieving Uniqueness Requirement in Drawing Digraphs: Optimum Code Algorithm and Hierarchic Isomorphism" -, number = 58 -, institution = "Internat. Inst. for Advanced Study of Social Information Science" -, month = jul -, year = 1985 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Sugiyama" +, title = "Achieving Uniqueness Requirement in Drawing Digraphs: Optimum Code Algorithm and Hierarchic Isomorphism" +, number = 58 +, institution = "Internat. Inst. for Advanced Study of Social Information Science" +, month = jul +, year = 1985 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{sm-sumdg-95 -, author = "K. Sugiyama and K. Misue" -, title = "A Simple and Unified Method for Drawing Graphs: Magnetic-Spring Algorithm" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "364--375" -, keywords = "graph drawing, force-directed, system" -, update = "95.01 tamassia" +, author = "K. Sugiyama and K. Misue" +, title = "A Simple and Unified Method for Drawing Graphs: Magnetic-Spring Algorithm" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "364--375" +, keywords = "graph drawing, force-directed, system" +, update = "95.01 tamassia" } @article{sm-gdmsm-95 -, author = "K. Sugiyama and K. Misue" -, title = "Graph Drawing by the Magnetic Spring Model" -, journal = "J. Visual Lang. Comput." -, volume = 6 -, number = 3 -, year = 1995 -, pages = "217--231" -, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" -, keywords = "graph drawing, 3D, system, software visualization" -, succeeds = "sm-sumdg-95" -, update = "98.07 vismara, 95.09 agarwal+devillers, 95.05 tamassia" +, author = "K. Sugiyama and K. Misue" +, title = "Graph Drawing by the Magnetic Spring Model" +, journal = "J. Visual Lang. Comput." +, volume = 6 +, number = 3 +, year = 1995 +, pages = "217--231" +, note = "(special issue on Graph Visualization, edited by I. F. Cruz and P. Eades)" +, keywords = "graph drawing, 3D, system, software visualization" +, succeeds = "sm-sumdg-95" +, update = "98.07 vismara, 95.09 agarwal+devillers, 95.05 tamassia" } % K. Sugiyama and K. Misue "Visualizing Structural Information:, @@ -138038,4482 +138038,4482 @@ @article{sm-gdmsm-95 % IEEE Transactions on Systems Man and Cybernetics, % Vol. 23, number = 2 1991 @article{sm-vsiad-91 -, author = "K. Sugiyama and K. Misue" -, title = "Visualization of Structural Information: Automatic Drawing of Compound Digraphs" -, journal = "IEEE Trans. Softw. Eng." -, volume = 21 -, number = 4 -, year = 1991 -, pages = "876--892" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Sugiyama and K. Misue" +, title = "Visualization of Structural Information: Automatic Drawing of Compound Digraphs" +, journal = "IEEE Trans. Softw. Eng." +, volume = 21 +, number = 4 +, year = 1991 +, pages = "876--892" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{stt-mvuhs-81 -, author = "K. Sugiyama and S. Tagawa and M. Toda" -, title = "Methods for Visual Understanding of Hierarchical Systems" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-11" -, number = 2 -, year = 1981 -, pages = "109--125" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Sugiyama and S. Tagawa and M. Toda" +, title = "Methods for Visual Understanding of Hierarchical Systems" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-11" +, number = 2 +, year = 1981 +, pages = "109--125" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{st-siucs-85 -, author = "K. Sugiyama and M. Toda" -, title = "Structuring Information for Understanding Complex Systems: {A} Basis for Decision Making" -, journal = "Fujitsu Scientific and Technical Journal" -, volume = 21 -, number = 2 -, year = 1985 -, pages = "144--164" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. Sugiyama and M. Toda" +, title = "Structuring Information for Understanding Complex Systems: {A} Basis for Decision Making" +, journal = "Fujitsu Scientific and Technical Journal" +, volume = 21 +, number = 2 +, year = 1985 +, pages = "144--164" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ss-vdpar-88 -, author = "S.-H. Suh and K. G. Shin" -, title = "A variational dynamic programming approach to robot-path planning with a distance-safety criterion" -, journal = "IEEE Trans. Robot. Autom." -, volume = 4 -, number = 3 -, year = 1988 -, pages = "334--349" -, update = "93.09 milone+mitchell" +, author = "S.-H. Suh and K. G. Shin" +, title = "A variational dynamic programming approach to robot-path planning with a distance-safety criterion" +, journal = "IEEE Trans. Robot. Autom." +, volume = 4 +, number = 3 +, year = 1988 +, pages = "334--349" +, update = "93.09 milone+mitchell" } @article{sl-nmtpg-90 -, author = "Y. S. Suh and K. Lee" -, title = "{NC} Milling Tool Path Generation for Arbitrary Pockets Defined by Sculptured Surfaces" -, journal = "Comput. Aided Design" -, volume = 22 -, number = 5 -, month = jun -, year = 1990 -, pages = "273--284" -, update = "93.09 held" +, author = "Y. S. Suh and K. Lee" +, title = "{NC} Milling Tool Path Generation for Arbitrary Pockets Defined by Sculptured Surfaces" +, journal = "Comput. Aided Design" +, volume = 22 +, number = 5 +, month = jun +, year = 1990 +, pages = "273--284" +, update = "93.09 held" } @incollection{sf-amgfe-72 -, author = "J. Suhara and J. Fukuda" -, title = "Automatic Mesh Generation for Finite Element Analysis" -, editor = "J. T. Oden and R. W. Clough and Y. Yamamoto" -, booktitle = "Advances in Computational Methods in Structural Mechanics and Design" -, publisher = "UAU Press" -, address = "Huntsville, AL" -, year = 1972 -, pages = "607--624" -, annote = "Adds points to interior and then triangulates." +, author = "J. Suhara and J. Fukuda" +, title = "Automatic Mesh Generation for Finite Element Analysis" +, editor = "J. T. Oden and R. W. Clough and Y. Yamamoto" +, booktitle = "Advances in Computational Methods in Structural Mechanics and Design" +, publisher = "UAU Press" +, address = "Huntsville, AL" +, year = 1972 +, pages = "607--624" +, annote = "Adds points to interior and then triangulates." } @article{swm-ccr-95 -, author = "G. F. Sullivan and D. S. Wilson and G. M. Masson" -, title = "Certification of Computational Results" -, journal = "IEEE Trans. Comput." -, volume = 44 -, number = 7 -, year = 1995 -, pages = "833--847" -, update = "97.03 tamassia" +, author = "G. F. Sullivan and D. S. Wilson and G. M. Masson" +, title = "Certification of Computational Results" +, journal = "IEEE Trans. Comput." +, volume = 44 +, number = 7 +, year = 1995 +, pages = "833--847" +, update = "97.03 tamassia" } @article{sl-cssbr-87 -, author = "K. Sun and V. J. Lumelsky" -, title = "Computer Simulation of Sensor-Based Robot Collision Avoidance in an Unknown Environment" -, journal = "Robotica" -, volume = 5 -, number = 4 -, year = 1987 -, pages = "291--302" +, author = "K. Sun and V. J. Lumelsky" +, title = "Computer Simulation of Sensor-Based Robot Collision Avoidance in an Unknown Environment" +, journal = "Robotica" +, volume = 5 +, number = 4 +, year = 1987 +, pages = "291--302" } @article{s-dspca-85 -, author = "K. J. Supowit" -, title = "Decomposing a set of points into chains, with applications to permutation and circle graphs" -, journal = "Inform. Process. Lett." -, volume = 21 -, year = 1985 -, pages = "249--252" -, keywords = "decomposition" +, author = "K. J. Supowit" +, title = "Decomposing a set of points into chains, with applications to permutation and circle graphs" +, journal = "Inform. Process. Lett." +, volume = 21 +, year = 1985 +, pages = "249--252" +, keywords = "decomposition" } @incollection{s-ghsgc-83 -, author = "Kenneth J. Supowit" -, title = "Grid Heuristics for some Geometric Covering Problems" -, editor = "Franco P. Preparata" -, booktitle = "Computational Geometry" -, series = "Adv. Comput. Res." -, volume = 1 -, publisher = "JAI Press" -, address = "Greenwich, Conn." -, year = 1983 -, pages = "215--233" -, keywords = "balls, $d$-dimensional, covering, heuristics" -, update = "01.04 icking" +, author = "Kenneth J. Supowit" +, title = "Grid Heuristics for some Geometric Covering Problems" +, editor = "Franco P. Preparata" +, booktitle = "Computational Geometry" +, series = "Adv. Comput. Res." +, volume = 1 +, publisher = "JAI Press" +, address = "Greenwich, Conn." +, year = 1983 +, pages = "215--233" +, keywords = "balls, $d$-dimensional, covering, heuristics" +, update = "01.04 icking" } @inproceedings{s-ntsdc-90 -, author = "K. J. Supowit" -, title = "New techniques for some dynamic closest-point and farthest-point problems" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "84--90" +, author = "K. J. Supowit" +, title = "New techniques for some dynamic closest-point and farthest-point problems" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "84--90" } @article{s-rngam-83 -, author = "K. J. Supowit" -, title = "The relative neighborhood graph with an application to minimum spanning trees" -, journal = "J. ACM" -, volume = 30 -, number = 3 -, year = 1983 -, pages = "428--448" -, keywords = "plane-sweep, pattern recognition, Delaunay triangulations, minimum spanning trees, polygons, convex" -, update = "98.11 bibrelex" +, author = "K. J. Supowit" +, title = "The relative neighborhood graph with an application to minimum spanning trees" +, journal = "J. ACM" +, volume = 30 +, number = 3 +, year = 1983 +, pages = "428--448" +, keywords = "plane-sweep, pattern recognition, Delaunay triangulations, minimum spanning trees, polygons, convex" +, update = "98.11 bibrelex" } @techreport{s-tcg-81 -, author = "K. J. Supowit" -, title = "Topics in computational geometry" -, type = "Report" -, number = "UIUCDCS-R-81-1062" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1981 -, keywords = "matchings, worst-case analysis, average-case analysis, plane-sweep" +, author = "K. J. Supowit" +, title = "Topics in computational geometry" +, type = "Report" +, number = "UIUCDCS-R-81-1062" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1981 +, keywords = "matchings, worst-case analysis, average-case analysis, plane-sweep" } @article{sr-dchmw-83 -, author = "K. J. Supowit and E. M. Reingold" -, title = "Divide-and-conquer heuristics for minimum weighted {Euclidean} matching" -, journal = "SIAM J. Comput." -, volume = 12 -, year = 1983 -, pages = "118--143" -, keywords = "matchings, worst-case analysis, divide-and-conquer" +, author = "K. J. Supowit and E. M. Reingold" +, title = "Divide-and-conquer heuristics for minimum weighted {Euclidean} matching" +, journal = "SIAM J. Comput." +, volume = 12 +, year = 1983 +, pages = "118--143" +, keywords = "matchings, worst-case analysis, divide-and-conquer" } @article{sr-cdtn-83 -, author = "K. J. Supowit and E. M. Reingold" -, title = "The Complexity of Drawing Trees Nicely" -, journal = "Acta Inform." -, volume = 18 -, year = 1983 -, pages = "377--392" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "K. J. Supowit and E. M. Reingold" +, title = "The Complexity of Drawing Trees Nicely" +, journal = "Acta Inform." +, volume = 18 +, year = 1983 +, pages = "377--392" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{srp-tspmm-83 -, author = "K. J. Supowit and E. M. Reingold and D. A. Plaisted" -, title = "The traveling salesman problem and minimum matching in the unit square" -, journal = "SIAM J. Comput." -, volume = 12 -, year = 1983 -, pages = "144--156" -, keywords = "traveling salesman tours, matchings, worst-case analysis" +, author = "K. J. Supowit and E. M. Reingold and D. A. Plaisted" +, title = "The traveling salesman problem and minimum matching in the unit square" +, journal = "SIAM J. Comput." +, volume = 12 +, year = 1983 +, pages = "144--156" +, keywords = "traveling salesman tours, matchings, worst-case analysis" } @inproceedings{ssbt-sbpsd-00 -, author = "Tatiana Surazhsky and Vitaly Surazhsky and Gill Barequet and Ayellet Tal" -, title = "Smooth Blending of Polygonal Slices with Different Topologies" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "40--44" -, update = "00.03 bibrelex" +, author = "Tatiana Surazhsky and Vitaly Surazhsky and Gill Barequet and Ayellet Tal" +, title = "Smooth Blending of Polygonal Slices with Different Topologies" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "40--44" +, update = "00.03 bibrelex" } @inproceedings{sg-mptpu-00 -, author = "Vitaly Surazhsky and Craig Gotsman" -, title = "Morphing Planar Triangulations and Polygons Using Convex Representations" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "31--34" -, update = "00.03 bibrelex" +, author = "Vitaly Surazhsky and Craig Gotsman" +, title = "Morphing Planar Triangulations and Polygons Using Convex Representations" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "31--34" +, update = "00.03 bibrelex" } @article{sv-ncdma-94 -, author = "K. Suresh and H. B. Voelcker" -, title = "New challenges in dimensional metrology: {A} case study based on ``size''" -, journal = "Manufacturing Review" -, volume = 7 -, number = 4 -, year = 1994 -, pages = "292--303" -, update = "98.03 agarwal" +, author = "K. Suresh and H. B. Voelcker" +, title = "New challenges in dimensional metrology: {A} case study based on ``size''" +, journal = "Manufacturing Review" +, volume = 7 +, number = 4 +, year = 1994 +, pages = "292--303" +, update = "98.03 agarwal" } @article{s-ltaml-86 -, author = "Subhash Suri" -, title = "A linear time algorithm for minimum link paths inside a simple polygon" -, journal = "Comput. Vision Graph. Image Process." -, volume = 35 -, year = 1986 -, pages = "99--110" -, update = "98.03 mitchell" +, author = "Subhash Suri" +, title = "A linear time algorithm for minimum link paths inside a simple polygon" +, journal = "Comput. Vision Graph. Image Process." +, volume = 35 +, year = 1986 +, pages = "99--110" +, update = "98.03 mitchell" } @techreport{s-pptld-86 -, author = "S. Suri" -, title = "A polygon partitioning technique for link distance problems" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = nov -, year = 1986 -, update = "98.03 bibrelex" +, author = "S. Suri" +, title = "A polygon partitioning technique for link distance problems" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = nov +, year = 1986 +, update = "98.03 bibrelex" } @techreport{s-cagfn-86 -, author = "S. Suri" -, title = "Computing all geodesic furthest neighbors of a simple polygon" -, type = "Manuscript" -, institution = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, month = nov -, year = 1986 -, update = "98.03 bibrelex" +, author = "S. Suri" +, title = "Computing all geodesic furthest neighbors of a simple polygon" +, type = "Manuscript" +, institution = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, month = nov +, year = 1986 +, update = "98.03 bibrelex" } @article{s-cgfns-89 -, author = "Subhash Suri" -, title = "Computing geodesic furthest neighbors in simple polygons" -, journal = "J. Comput. Syst. Sci." -, volume = 39 -, year = 1989 -, pages = "220--235" -, succeeds = "s-agfnp-87" -, update = "98.03 mitchell" +, author = "Subhash Suri" +, title = "Computing geodesic furthest neighbors in simple polygons" +, journal = "J. Comput. Syst. Sci." +, volume = 39 +, year = 1989 +, pages = "220--235" +, succeeds = "s-agfnp-87" +, update = "98.03 mitchell" } @techreport{s-cesl-85 -, author = "Subhash Suri" -, title = "Computing the envelope of a set of lines" -, type = "Report" -, number = "??" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1985 -, update = "98.03 mitchell" +, author = "Subhash Suri" +, title = "Computing the envelope of a set of lines" +, type = "Report" +, number = "??" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1985 +, update = "98.03 mitchell" } @techreport{s-cgdsp-86 -, author = "Subhash Suri" -, title = "Computing the geodesic diameter of a simple polygon" -, type = "Report" -, number = "JHU-EECS-86/08" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1986 -, update = "98.03 mitchell" +, author = "Subhash Suri" +, title = "Computing the geodesic diameter of a simple polygon" +, type = "Report" +, number = "JHU-EECS-86/08" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1986 +, update = "98.03 mitchell" } @techreport{s-cldsp-86 -, author = "Subhash Suri" -, title = "Computing the link diameter of a simple polygon" -, type = "Report" -, number = "JHU-EECS-86/09" -, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1986 -, update = "98.03 mitchell, 93.05 smid" +, author = "Subhash Suri" +, title = "Computing the link diameter of a simple polygon" +, type = "Report" +, number = "JHU-EECS-86/09" +, institution = "Dept. Elect. Engrg. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1986 +, update = "98.03 mitchell, 93.05 smid" } @phdthesis{s-mlppr-87 -, author = "Subhash Suri" -, title = "Minimum link paths in polygons and related problems" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1987 -, keywords = "doctoral thesis" -, update = "98.03 mitchell" +, author = "Subhash Suri" +, title = "Minimum link paths in polygons and related problems" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1987 +, keywords = "doctoral thesis" +, update = "98.03 mitchell" } @article{s-ldpsp-88 -, author = "S. Suri" -, title = "On some link distance problems in a simple polygon" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, number = 1 -, year = 1988 -, pages = "108--113" -, precedes = "s-sldps-90" -, update = "98.07 bibrelex" +, author = "S. Suri" +, title = "On some link distance problems in a simple polygon" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, number = 1 +, year = 1988 +, pages = "108--113" +, precedes = "s-sldps-90" +, update = "98.07 bibrelex" } @article{s-sldps-90 -, author = "Subhash Suri" -, title = "On Some Link Distance Problems in a Simple Polygon" -, journal = "IEEE Trans. Robot. Autom." -, volume = 6 -, year = 1990 -, pages = "108--113" -, succeeds = "s-ldpsp-88" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Subhash Suri" +, title = "On Some Link Distance Problems in a Simple Polygon" +, journal = "IEEE Trans. Robot. Autom." +, volume = 6 +, year = 1990 +, pages = "108--113" +, succeeds = "s-ldpsp-88" +, update = "98.07 bibrelex, 98.03 mitchell" } @incollection{s-p-97 -, author = "Subhash Suri" -, title = "Polygons" -, chapter = 23 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "429--444" -, update = "98.03 mitchell, 97.11 orourke" +, author = "Subhash Suri" +, title = "Polygons" +, chapter = 23 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "429--444" +, update = "98.03 mitchell, 97.11 orourke" } @inproceedings{s-agfnp-87 -, author = "Subhash Suri" -, title = "The all-geodesic-furthest neighbors problem for simple polygons" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "64--75" -, precedes = "s-cgfns-89" -, cites = "akmsw-gamsa-86, art-lbcpr-87, at-cgcsp-86, atb-mdcp-82, c-tpca-82, cg-vippg-85, gh-ospqs-87, ghlst-ltavs-86, gjpt-tsp-78, hm-ftsp-83, lm-gmqia-84, lp-annpc-78, lp-esppr-84, p-msc-77, ps-cgcsp-86, rs-mtdmi-85, sh-cpp-75, t-safnp-83, t-cgpp-86, tb-gatuf-81, tv-otats-86, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Subhash Suri" +, title = "The all-geodesic-furthest neighbors problem for simple polygons" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "64--75" +, precedes = "s-cgfns-89" +, cites = "akmsw-gamsa-86, art-lbcpr-87, at-cgcsp-86, atb-mdcp-82, c-tpca-82, cg-vippg-85, gh-ospqs-87, ghlst-ltavs-86, gjpt-tsp-78, hm-ftsp-83, lm-gmqia-84, lp-annpc-78, lp-esppr-84, p-msc-77, ps-cgcsp-86, rs-mtdmi-85, sh-cpp-75, t-safnp-83, t-cgpp-86, tb-gatuf-81, tv-otats-86, ZZZ" +, update = "98.03 bibrelex+mitchell" } @inproceedings{shh-cdasb-98 -, author = "Subhash Suri and Philip M. Hubbard and John F. Hughes" -, title = "Collision Detection in Aspect and Scale Bounded Polyhedra" -, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '98" -, year = 1998 -, pages = "127--136" -, update = "99.07 bibrelex, 98.07 mitchell" +, author = "Subhash Suri and Philip M. Hubbard and John F. Hughes" +, title = "Collision Detection in Aspect and Scale Bounded Polyhedra" +, booktitle = "Proc. 9th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '98" +, year = 1998 +, pages = "127--136" +, update = "99.07 bibrelex, 98.07 mitchell" } @techreport{so-fmnp-85t -, author = "Subhash Suri and J. O'Rourke" -, title = "Finding Minimal Nested Polygons" -, type = "Technical {Report}" -, institution = "Johns Hopkins Univ." -, address = "Baltimore, MD" -, year = 1985 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Subhash Suri and J. O'Rourke" +, title = "Finding Minimal Nested Polygons" +, type = "Technical {Report}" +, institution = "Johns Hopkins Univ." +, address = "Baltimore, MD" +, year = 1985 +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{so-fmnp-85 -, author = "Subhash Suri and J. O'Rourke" -, title = "Finding minimal nested polygons" -, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." -, year = 1985 -, pages = "470--479" -, keywords = "packing, visibility" -, update = "98.03 mitchell" +, author = "Subhash Suri and J. O'Rourke" +, title = "Finding minimal nested polygons" +, booktitle = "Proc. 23rd Allerton Conf. Commun. Control Comput." +, year = 1985 +, pages = "470--479" +, keywords = "packing, visibility" +, update = "98.03 mitchell" } @techreport{so-wcoac-85 -, author = "Subhash Suri and J. O'Rourke" -, title = "Worst-case optimal algorithms for constructing visibility polygons with holes" -, institution = "Johns Hopkins Univ." -, year = 1985 -, precedes = "so-wcoac-86" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Subhash Suri and J. O'Rourke" +, title = "Worst-case optimal algorithms for constructing visibility polygons with holes" +, institution = "Johns Hopkins Univ." +, year = 1985 +, precedes = "so-wcoac-86" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{so-wcoac-86 -, author = "Subhash Suri and J. O'Rourke" -, title = "Worst-case optimal algorithms for constructing visibility polygons with holes" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "14--23" -, keywords = "visibility" -, succeeds = "so-wcoac-85" -, cites = "aaghi-vpses-85, c-iies-84, cg-vippg-85, e-eacwv-84, ea-lacvp-81, ghlst-ltavs-86, aaghi-vdp-86, ll-cvpe-86, m-wcohs-87, w-cvgnl-85, so-wcoac-85, g-ttn-66, ZZZ" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Subhash Suri and J. O'Rourke" +, title = "Worst-case optimal algorithms for constructing visibility polygons with holes" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "14--23" +, keywords = "visibility" +, succeeds = "so-wcoac-85" +, cites = "aaghi-vpses-85, c-iies-84, cg-vippg-85, e-eacwv-84, ea-lacvp-81, ghlst-ltavs-86, aaghi-vdp-86, ll-cvpe-86, m-wcohs-87, w-cvgnl-85, so-wcoac-85, g-ttn-66, ZZZ" +, update = "98.03 mitchell, 97.11 bibrelex" } @inproceedings{s-s3dpp-95 -, author = "H. J. Sussman" -, title = "Shortest 3-Dimensional Paths with a Prescribed Curvature Bound" -, booktitle = "Proc. 34th IEEE Conf. Decision Control" -, year = 1995 -, pages = "3306--3311" -, keywords = "curvature-constrained shortest paths" -, update = "98.03 mitchell" +, author = "H. J. Sussman" +, title = "Shortest 3-Dimensional Paths with a Prescribed Curvature Bound" +, booktitle = "Proc. 34th IEEE Conf. Decision Control" +, year = 1995 +, pages = "3306--3311" +, keywords = "curvature-constrained shortest paths" +, update = "98.03 mitchell" } @techreport{st-sprsc-91 -, author = "H. J. Sussmann and G. Tang" -, title = "Shortest paths for the {Reeds-Shepp} car: {A} worked out example of the use of geometric techniques in nonlinear optimal control" -, type = "Research {Report}" -, number = "SYCON-91-10" -, institution = "Rutgers University" -, address = "New Brunswick, NJ" -, year = 1991 -, update = "98.03 mitchell, 93.09 erickson" +, author = "H. J. Sussmann and G. Tang" +, title = "Shortest paths for the {Reeds-Shepp} car: {A} worked out example of the use of geometric techniques in nonlinear optimal control" +, type = "Research {Report}" +, number = "SYCON-91-10" +, institution = "Rutgers University" +, address = "New Brunswick, NJ" +, year = 1991 +, update = "98.03 mitchell, 93.09 erickson" } @phdthesis{s-smmgc-63 -, author = "I. E. Sutherland" -, title = "Sketchpad: {A} man-machine graphical communication system" -, school = "Massachusetts Inst. Tech." -, address = "Cambridge, MA" -, month = jan -, year = 1963 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "I. E. Sutherland" +, title = "Sketchpad: {A} man-machine graphical communication system" +, school = "Massachusetts Inst. Tech." +, address = "Cambridge, MA" +, month = jan +, year = 1963 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{sh-rpc-74 -, author = "I. E. Sutherland and G. W. Hodgman" -, title = "Reentrant polygon clipping" -, journal = "Commun. ACM" -, volume = 17 -, year = 1974 -, pages = "32--42" +, author = "I. E. Sutherland and G. W. Hodgman" +, title = "Reentrant polygon clipping" +, journal = "Commun. ACM" +, volume = 17 +, year = 1974 +, pages = "32--42" } @article{sss-cthsa-74 -, author = "I. E. Sutherland and R. F. Sproull and R. A. Schumacker" -, title = "A Characterization of Ten Hidden-Surface Algorithms" -, journal = "ACM Comput. Surv." -, volume = 6 -, number = 1 -, month = mar -, year = 1974 -, pages = "1--55" -, update = "96.01 tamassia, 93.09 held" +, author = "I. E. Sutherland and R. F. Sproull and R. A. Schumacker" +, title = "A Characterization of Ten Hidden-Surface Algorithms" +, journal = "ACM Comput. Surv." +, volume = 6 +, number = 1 +, month = mar +, year = 1974 +, pages = "1--55" +, update = "96.01 tamassia, 93.09 held" } @inproceedings{s-iafvd-89 -, author = "A. Suzuki" -, title = "An incremental algorithm for the farthest {Voronoi} diagram" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 43 +, author = "A. Suzuki" +, title = "An incremental algorithm for the farthest {Voronoi} diagram" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 43 } @article{si-atpvd-86 -, author = "A. Suzuki and M. Iri" -, title = "Approximation of a tessellation of the plane by a {Voronoi} diagram" -, journal = "J. Oper. Res. Soc. Japan" -, volume = 29 -, year = 1986 -, pages = "69--96" -, update = "94.09 bernal" +, author = "A. Suzuki and M. Iri" +, title = "Approximation of a tessellation of the plane by a {Voronoi} diagram" +, journal = "J. Oper. Res. Soc. Japan" +, volume = 29 +, year = 1986 +, pages = "69--96" +, update = "94.09 bernal" } @inproceedings{san-fsfpg-90 -, author = "H. Suzuki and T. Akama and T. Nishizeki" -, title = "Finding {Steiner} forests in planar graphs" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "444--453" +, author = "H. Suzuki and T. Akama and T. Nishizeki" +, title = "Finding {Steiner} forests in planar graphs" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "444--453" } @article{sy-dmlra-96 -, author = "I. Suzuki and M. Yamashita" -, title = "Designing multi-link robot arms in a convex polygon" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 6 -, year = 1996 -, pages = "461--486" -, update = "97.03 devillers" +, author = "I. Suzuki and M. Yamashita" +, title = "Designing multi-link robot arms in a convex polygon" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 6 +, year = 1996 +, pages = "461--486" +, update = "97.03 devillers" } @article{sy-smipr-92 -, author = "I. Suzuki and M. Yamashita" -, title = "Searching for a mobile intruder in a polygonal region" -, journal = "SIAM J. Comput." -, volume = 21 -, year = 1992 -, pages = "863--888" +, author = "I. Suzuki and M. Yamashita" +, title = "Searching for a mobile intruder in a polygonal region" +, journal = "SIAM J. Comput." +, volume = 21 +, year = 1992 +, pages = "863--888" } @article{so-mpclr-95 -, author = "Petr {\v S}vestka and Mark H. Overmars" -, title = "Motion Planning for Car-Like Robots Using a Probabilistic Learning Approach" -, journal = "Internat. J. Robot. Res." -, volume = 16 -, number = 2 -, month = apr -, year = 1997 -, pages = "119--143" -, update = "98.03 mitchell" +, author = "Petr {\v S}vestka and Mark H. Overmars" +, title = "Motion Planning for Car-Like Robots Using a Probabilistic Learning Approach" +, journal = "Internat. J. Robot. Res." +, volume = 16 +, number = 2 +, month = apr +, year = 1997 +, pages = "119--143" +, update = "98.03 mitchell" } @inproceedings{sv-emptt-95 -, author = "Petr {\v S}vestka and Jules Vleugels" -, title = "Exact Motion Planning for Tractor-Trailer Robots" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1995 -, pages = "2445--2450" -, update = "00.03 bibrelex, 97.11 oostrum" +, author = "Petr {\v S}vestka and Jules Vleugels" +, title = "Exact Motion Planning for Tractor-Trailer Robots" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1995 +, pages = "2445--2450" +, update = "00.03 bibrelex, 97.11 oostrum" } @inproceedings{s-oardc-93 -, author = "Kurt Swanson" -, title = "An Optimal Algorithm for Roundness Determination on Convex Polygons" -, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 709 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "601--609" -, update = "96.05 agarwal, 93.09 smid, 93.05 jones" +, author = "Kurt Swanson" +, title = "An Optimal Algorithm for Roundness Determination on Convex Polygons" +, booktitle = "Proc. 3rd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 709 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "601--609" +, update = "96.05 agarwal, 93.09 smid, 93.05 jones" } @article{slw-oardc-95 -, author = "K. Swanson and D. T. Lee and Vanban L. Wu" -, title = "An optimal algorithm for roundness determination on convex polygons" -, journal = "Comput. Geom. Theory Appl." -, volume = 5 -, year = 1995 -, pages = "225--235" -, update = "96.09 devillers+orourke" +, author = "K. Swanson and D. T. Lee and Vanban L. Wu" +, title = "An optimal algorithm for roundness determination on convex polygons" +, journal = "Comput. Geom. Theory Appl." +, volume = 5 +, year = 1995 +, pages = "225--235" +, update = "96.09 devillers+orourke" } @techreport{s-otafb-80 -, author = "G. F. Swart" -, title = "An {$O(\log n)$} time algorithm for finding bridge points of convex arcs" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Washington" -, address = "Seattle, WA" -, year = 1980 +, author = "G. F. Swart" +, title = "An {$O(\log n)$} time algorithm for finding bridge points of convex arcs" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Washington" +, address = "Seattle, WA" +, year = 1980 } @article{s-fchff-85 -, author = "G. F. Swart" -, title = "Finding the convex hull facet by facet" -, journal = "J. Algorithms" -, volume = 6 -, year = 1985 -, pages = "17--48" +, author = "G. F. Swart" +, title = "Finding the convex hull facet by facet" +, journal = "J. Algorithms" +, volume = 6 +, year = 1985 +, pages = "17--48" } @article{sp-cppca-92 -, author = "P. E. Sweeney and E. R. Paternoster" -, title = "Cutting and packing problems: {A} categorized, application-orientated research bibliography" -, journal = "J. Oper. Res. Society" -, volume = 43 -, number = 7 -, year = 1992 -, pages = "691--706" -, update = "98.03 bibrelex" +, author = "P. E. Sweeney and E. R. Paternoster" +, title = "Cutting and packing problems: {A} categorized, application-orientated research bibliography" +, journal = "J. Oper. Res. Society" +, volume = 43 +, number = 7 +, year = 1992 +, pages = "691--706" +, update = "98.03 bibrelex" } @techreport{s-eepe-78 -, author = "R. E. Sweet" -, title = "Empirical Estimates of Program Entropy" -, number = "STAN-CS-78-698" -, institution = "Department of Computer Science, Stanford University" -, year = 1978 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. E. Sweet" +, title = "Empirical Estimates of Program Entropy" +, number = "STAN-CS-78-698" +, institution = "Department of Computer Science, Stanford University" +, year = 1978 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{s-nlpcc-74 -, author = "H. P. F. Swinnerton-Dyer" -, title = "The number of lattice points on a convex curve" -, journal = "J. Number Theory" -, volume = 6 -, year = 1974 -, pages = "128--135" -, update = "97.11 bibrelex" +, author = "H. P. F. Swinnerton-Dyer" +, title = "The number of lattice points on a convex curve" +, journal = "J. Number Theory" +, volume = 6 +, year = 1974 +, pages = "128--135" +, update = "97.11 bibrelex" } @article{ssu-congo-88 -, author = "J. B. Sydney and S. J. Sydney and J. Urrutia" -, title = "Circle orders, $n$-gon orders and the crossing number for partial orders" -, journal = "Order" -, volume = 5 -, year = 1988 -, pages = "1--10" -, update = "98.03 bibrelex" +, author = "J. B. Sydney and S. J. Sydney and J. Urrutia" +, title = "Circle orders, $n$-gon orders and the crossing number for partial orders" +, journal = "Order" +, volume = 5 +, year = 1988 +, pages = "1--10" +, update = "98.03 bibrelex" } @article{s-qgs-57 -, author = "J. J. Sylvester" -, title = "A question on the geometry of situation" -, journal = "Quart. J. Math." -, volume = 1 -, year = 1857 -, pages = 79 +, author = "J. J. Sylvester" +, title = "A question on the geometry of situation" +, journal = "Quart. J. Math." +, volume = 1 +, year = 1857 +, pages = 79 } @article{s-mq1-93 -, author = "J. J. Sylvester" -, title = "Mathematical question 11851" -, journal = "Educational Times" -, volume = 59 -, year = 1893 -, pages = 98 -, update = "98.03 devillers" +, author = "J. J. Sylvester" +, title = "Mathematical question 11851" +, journal = "Educational Times" +, volume = 59 +, year = 1893 +, pages = 98 +, update = "98.03 devillers" } @article{s-pavsf-60 -, author = "J. J. Sylvester" -, title = "On {Poncelet}'s approximate valuation of surd forms" -, journal = "Philos. Magazine" -, volume = "XX" -, year = 1860 -, pages = "203--222" +, author = "J. J. Sylvester" +, title = "On {Poncelet}'s approximate valuation of surd forms" +, journal = "Philos. Magazine" +, volume = "XX" +, year = 1860 +, pages = "203--222" } @article{s-rlttc-87 -, author = "S. Szab{\'o}" -, title = "A reduction of lattice tiling by translates of a cubical cluster" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "33--36" +, author = "S. Szab{\'o}" +, title = "A reduction of lattice tiling by translates of a cubical cluster" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "33--36" } @article{s-cnhep-97 -, author = "L. A. Sz{\'e}kely" -, title = "Crossing numbers and hard {E}rd{\H o}s problems in discrete geometry" -, journal = "Combinatorics, Probability and Computing" -, volume = 6 -, year = 1997 -, pages = "353--358" -, update = "01.04 smid, 98.03 agarwal+devillers, 97.11 aronov" +, author = "L. A. Sz{\'e}kely" +, title = "Crossing numbers and hard {E}rd{\H o}s problems in discrete geometry" +, journal = "Combinatorics, Probability and Computing" +, volume = 6 +, year = 1997 +, pages = "353--358" +, update = "01.04 smid, 98.03 agarwal+devillers, 97.11 aronov" } @article{st-smops-92 -, author = "R. Szeliski and D. Tonnesen" -, title = "Surface modeling with oriented particle systems" -, journal = "Comput. Graph." -, volume = 26 -, number = 2 -, month = jul -, year = 1992 -, pages = "185--194" -, update = "98.07 bibrelex" +, author = "R. Szeliski and D. Tonnesen" +, title = "Surface modeling with oriented particle systems" +, journal = "Comput. Graph." +, volume = 26 +, number = 2 +, month = jul +, year = 1992 +, pages = "185--194" +, update = "98.07 bibrelex" } @article{s-pds-74 -, author = "E. Szemer\'{e}di" -, title = "On a problem of {Davenport and Schinzel}" -, journal = "Acta Arithmetica" -, volume = 25 -, year = 1974 -, pages = "213--224" -, update = "95.09 agarwal" +, author = "E. Szemer\'{e}di" +, title = "On a problem of {Davenport and Schinzel}" +, journal = "Acta Arithmetica" +, volume = 25 +, year = 1974 +, pages = "213--224" +, update = "95.09 agarwal" } @article{st-cdbep-83 -, author = "E. Szemer{\'e}di and W. {Trotter, Jr.}" -, title = "A combinatorial distinction between {E}uclidean and projective planes" -, journal = "European J. Combin." -, volume = 4 -, year = 1983 -, pages = "385--394" -, update = "98.03 agarwal" +, author = "E. Szemer{\'e}di and W. {Trotter, Jr.}" +, title = "A combinatorial distinction between {E}uclidean and projective planes" +, journal = "European J. Combin." +, volume = 4 +, year = 1983 +, pages = "385--394" +, update = "98.03 agarwal" } @article{st-epdg-83 -, author = "E. Szemer{\'e}di and W. {Trotter, Jr.}" -, title = "Extremal problems in discrete geometry" -, journal = "Combinatorica" -, volume = 3 -, year = 1983 -, pages = "381--392" -, update = "97.11 bibrelex" +, author = "E. Szemer{\'e}di and W. {Trotter, Jr.}" +, title = "Extremal problems in discrete geometry" +, journal = "Combinatorica" +, volume = 3 +, year = 1983 +, pages = "381--392" +, update = "97.11 bibrelex" } @incollection{s-dladg-94 -, author = "L{\'a}szl{\'o} Szirmay-Kalos" -, title = "Dynamic Layout Algorithm to Display General Graphs" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "505--517" -, keywords = "cartography, layout, graph visualization, physically-based methods" -, update = "94.09 heckbert" -, annote = "Gives code that finds aesthetic arrangements for a graph. +, author = "L{\'a}szl{\'o} Szirmay-Kalos" +, title = "Dynamic Layout Algorithm to Display General Graphs" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "505--517" +, keywords = "cartography, layout, graph visualization, physically-based methods" +, update = "94.09 heckbert" +, annote = "Gives code that finds aesthetic arrangements for a graph. This could be used to graphically display data structures. Contains C++ code." } @inproceedings{s-hctoc-86 -, author = "H. Szu" -, title = "Holographic coordinate transformations and optical computing" -, booktitle = "Optical and Hybrid Computing, Proc. SPIE" -, volume = 634 -, year = 1986 -, pages = "480--484" -, update = "98.11 bibrelex" +, author = "H. Szu" +, title = "Holographic coordinate transformations and optical computing" +, booktitle = "Optical and Hybrid Computing, Proc. SPIE" +, volume = 634 +, year = 1986 +, pages = "480--484" +, update = "98.11 bibrelex" } @article{skr-ebecs-01 -, author = "A. Szymczak and D. King and J. Rossignac" -, title = "An {Edgebreaker-based} efficient compression scheme for regular meshes" -, journal = "Comput. Geom. Theory Appl." -, volume = 20 -, year = 2001 -, pages = "53--68" -, update = "01.11 smid" +, author = "A. Szymczak and D. King and J. Rossignac" +, title = "An {Edgebreaker-based} efficient compression scheme for regular meshes" +, journal = "Comput. Geom. Theory Appl." +, volume = 20 +, year = 2001 +, pages = "53--68" +, update = "01.11 smid" } @book{t-b-95 -, author = "Serge Tabachnikov" -, title = "Billiards" -, series = "Panoramas et Synth\'eses" -, publisher = "Soci\'et\'e Math\'ematique de France" -, year = 1995 -, update = "01.04 orourke" +, author = "Serge Tabachnikov" +, title = "Billiards" +, series = "Panoramas et Synth\'eses" +, publisher = "Soci\'et\'e Math\'ematique de France" +, year = 1995 +, update = "01.04 orourke" } @unpublished{t-ntasa-94 -, author = "B. Tagansky" -, title = "A new technique for analyzing substructures in arrangements" -, year = 1994 -, note = "Unpublished manuscript, Tel-Aviv University" -, update = "95.01 orourke" +, author = "B. Tagansky" +, title = "A new technique for analyzing substructures in arrangements" +, year = 1994 +, note = "Unpublished manuscript, Tel-Aviv University" +, update = "95.01 orourke" } @inproceedings{t-ntasa-95 -, author = "Boaz Tagansky" -, title = "A New Technique for Analyzing Substructures in Arrangements" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "200--210" -, keywords = "cell complexity, zones, levels in arrangements, vertical decomposition" -, cites = "aa-cfi-92, ass-oletd-94, aps-zsha-93, as-tsbac-90, as-car-94, ast-ucptd-97, as-tmp3s-94, bsty-vdhdc-95, ckstw-vdl3s-95, c-narsc-87, cs-arscg-89, bds-lric-94, bgh-vdt3s-94, e-acg-87, e-ueplf-89, ess-ztha-93, ghms-vdahf-95, gs-caa-93, hs-nblet-94, hs-atarr-95, hs-ndssg-86, m-cgitr-93, ps-ueplf-89, s-atubl-94, sa-dsstg-95, ws-prnds-88, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Boaz Tagansky" +, title = "A New Technique for Analyzing Substructures in Arrangements" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "200--210" +, keywords = "cell complexity, zones, levels in arrangements, vertical decomposition" +, cites = "aa-cfi-92, ass-oletd-94, aps-zsha-93, as-tsbac-90, as-car-94, ast-ucptd-97, as-tmp3s-94, bsty-vdhdc-95, ckstw-vdl3s-95, c-narsc-87, cs-arscg-89, bds-lric-94, bgh-vdt3s-94, e-acg-87, e-ueplf-89, ess-ztha-93, ghms-vdahf-95, gs-caa-93, hs-nblet-94, hs-atarr-95, hs-ndssg-86, m-cgitr-93, ps-ueplf-89, s-atubl-94, sa-dsstg-95, ws-prnds-88, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{t-ntasa-96 -, author = "Boaz Tagansky" -, title = "A New Technique for Analyzing Substructures in Arrangements of Piecewise Linear Surfaces" -, journal = "Discrete Comput. Geom." -, volume = 16 -, year = 1996 -, pages = "455--479" -, succeeds = "t-ntasa-95" -, update = "98.03 smid, 97.11 aronov" -, annote = "Special Issue: ACM Symposium on Computational Geometry, Vancouver" +, author = "Boaz Tagansky" +, title = "A New Technique for Analyzing Substructures in Arrangements of Piecewise Linear Surfaces" +, journal = "Discrete Comput. Geom." +, volume = 16 +, year = 1996 +, pages = "455--479" +, succeeds = "t-ntasa-95" +, update = "98.03 smid, 97.11 aronov" +, annote = "Special Issue: ACM Symposium on Computational Geometry, Vancouver" } @phdthesis{t-csas-96 -, author = "B. Tagansky" -, title = "The Complexity of Substructures in Arrangements of Surfaces" -, type = "Ph.{D}. Thesis" -, school = "Tel Aviv University" -, address = "Tel Aviv" -, year = 1996 -, keywords = "doctoral thesis" -, update = "98.03 agarwal" +, author = "B. Tagansky" +, title = "The Complexity of Substructures in Arrangements of Surfaces" +, type = "Ph.{D}. Thesis" +, school = "Tel Aviv University" +, address = "Tel Aviv" +, year = 1996 +, keywords = "doctoral thesis" +, update = "98.03 agarwal" } @inproceedings{tsn-fsncr-93 -, author = "Jun-ya Takahashi and Hitoshi Suzuki and Takao Nishizeki" -, title = "Finding Shortest Non-Crossing Rectilinear Paths in Plane Regions" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "98--107" -, precedes = "tsn-sncrp-97" -, update = "98.11 devillers, 98.07 bibrelex, 94.05 smid, 93.09 milone+mitchell" +, author = "Jun-ya Takahashi and Hitoshi Suzuki and Takao Nishizeki" +, title = "Finding Shortest Non-Crossing Rectilinear Paths in Plane Regions" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "98--107" +, precedes = "tsn-sncrp-97" +, update = "98.11 devillers, 98.07 bibrelex, 94.05 smid, 93.09 milone+mitchell" } @article{tsn-sncrp-97 -, author = "J.-Y. Takahashi and H. Suzuki and T. Nishizeki" -, title = "Shortest Non-Crossing Rectilinear Paths in Plane Regions" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "419--436" -, succeeds = "tsn-fsncr-93" -, update = "98.11 devillers" +, author = "J.-Y. Takahashi and H. Suzuki and T. Nishizeki" +, title = "Shortest Non-Crossing Rectilinear Paths in Plane Regions" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "419--436" +, succeeds = "tsn-fsncr-93" +, update = "98.11 devillers" } @inproceedings{tisku-aeccp-95 -, author = "S. Takahashi and T. Ikeda and Y. Shinagawa and T. L. Kunii and M. Ueda" -, title = "Algorithms for extracting correct critical points and constructing topological graphs from discrete geographical elevation data" -, booktitle = "Eurographics'95" -, volume = 14 -, year = 1995 -, pages = "C--181--C--192" -, update = "97.11 oostrum" +, author = "S. Takahashi and T. Ikeda and Y. Shinagawa and T. L. Kunii and M. Ueda" +, title = "Algorithms for extracting correct critical points and constructing topological graphs from discrete geographical elevation data" +, booktitle = "Eurographics'95" +, volume = 14 +, year = 1995 +, pages = "C--181--C--192" +, update = "97.11 oostrum" } @inproceedings{ti-etpts-97 -, author = "Fumihiko Takeuchi and Hiroshi Imai" -, title = "Enumerating Triangulations for Products of Two Simplices and for Arbitrary Configurations of Points" -, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '97" -, site = "Shanghai, China" -, series = "Lecture Notes Comput. Sci." -, volume = 1276 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "470--481" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "Fumihiko Takeuchi and Hiroshi Imai" +, title = "Enumerating Triangulations for Products of Two Simplices and for Arbitrary Configurations of Points" +, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '97" +, site = "Shanghai, China" +, series = "Lecture Notes Comput. Sci." +, volume = 1276 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "470--481" +, update = "99.11 bibrelex, 98.03 mitchell" } @article{to-lseec-89a -, author = "R. Takiyama and N. Ono" -, title = "A least square error estimation of the center and radii of concentric arcs" -, journal = "Pattern Recogn. Lett." -, volume = 10 -, year = 1989 -, pages = "237--242" -, update = "98.11 bibrelex" +, author = "R. Takiyama and N. Ono" +, title = "A least square error estimation of the center and radii of concentric arcs" +, journal = "Pattern Recogn. Lett." +, volume = 10 +, year = 1989 +, pages = "237--242" +, update = "98.11 bibrelex" } @inproceedings{tcd-njlsm-92 -, author = "A. Tal and B. Chazelle and D. Dobkin" -, title = "The New-Jersey line-segment saw massacre" -, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." -, year = 1992 -, keywords = "video review" -, update = "98.11 bibrelex" +, author = "A. Tal and B. Chazelle and D. Dobkin" +, title = "The New-Jersey line-segment saw massacre" +, booktitle = "Proc. 8th Annu. ACM Sympos. Comput. Geom." +, year = 1992 +, keywords = "video review" +, update = "98.11 bibrelex" } @inproceedings{td-gsvga-94 -, author = "A. Tal and D. Dobkin" -, title = "GASP: {A} system for visualizing geometric algorithms" -, booktitle = "Visualization '94" -, year = 1994 -, update = "98.03 bibrelex" +, author = "A. Tal and D. Dobkin" +, title = "GASP: {A} system for visualizing geometric algorithms" +, booktitle = "Visualization '94" +, year = 1994 +, update = "98.03 bibrelex" } @inproceedings{td-gsfag-94 -, author = "A. Tal and D. Dobkin" -, title = "GASP: A System to Facilitate Animating Geometric Algorithms" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "388--389" -, keywords = "video review" -, cites = "b-aops-94, ce-oails-92, dg-crd-94, dk-ladsc-85, dk-dsppu-90, dt-buph-93, r-mdbp-91, s-mdbp-93, s-votcb-93, ss-otcbt-93, ZZZ" -, update = "98.03 bibrelex, 94.09 jones" +, author = "A. Tal and D. Dobkin" +, title = "GASP: A System to Facilitate Animating Geometric Algorithms" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "388--389" +, keywords = "video review" +, cites = "b-aops-94, ce-oails-92, dg-crd-94, dk-ladsc-85, dk-dsppu-90, dt-buph-93, r-mdbp-91, s-mdbp-93, s-votcb-93, ss-otcbt-93, ZZZ" +, update = "98.03 bibrelex, 94.09 jones" } @article{td-vga-95 -, author = "A. Tal and D. P. Dobkin" -, title = "Visualization of Geometric Algorithms" -, journal = "IEEE Trans. Visualization and Computer Graphics" -, volume = 1 -, number = 2 -, year = 1995 -, pages = "194--204" -, keywords = "algorithm animation, visualization, three-dimensional geometric algorithms" -, update = "98.07 bibrelex, 96.09 devillers, 96.01 tamassia" -, abstract = "This paper investigates the visualization of geometric - algorithms. We discuss how limiting the domain makes it - possible to create a system that enables others to use - it easily. Knowledge about the domain can be very - helpful in building a system which automates large - parts of the user's task. A system can be designed to - isolate the user from any concern about how graphics is - done. The application need only specify ``what'' - happens and need not be concerned with ``how'' to make - it happen on the screen. We develop a conceptual model - and a framework for experimenting with it. We also - present a system, GASP, which implements this model. - GASP allows quick generation of three-dimensional - geometric algorithm visualizations, even for highly - complex algorithms. It also provides a visual debugging - facility for geometric computing. We show the utility - of GASP by presenting a variety of examples." +, author = "A. Tal and D. P. Dobkin" +, title = "Visualization of Geometric Algorithms" +, journal = "IEEE Trans. Visualization and Computer Graphics" +, volume = 1 +, number = 2 +, year = 1995 +, pages = "194--204" +, keywords = "algorithm animation, visualization, three-dimensional geometric algorithms" +, update = "98.07 bibrelex, 96.09 devillers, 96.01 tamassia" +, abstract = "This paper investigates the visualization of geometric + algorithms. We discuss how limiting the domain makes it + possible to create a system that enables others to use + it easily. Knowledge about the domain can be very + helpful in building a system which automates large + parts of the user's task. A system can be designed to + isolate the user from any concern about how graphics is + done. The application need only specify ``what'' + happens and need not be concerned with ``how'' to make + it happen on the screen. We develop a conceptual model + and a framework for experimenting with it. We also + present a system, GASP, which implements this model. + GASP allows quick generation of three-dimensional + geometric algorithm visualizations, even for highly + complex algorithms. It also provides a visual debugging + facility for geometric computing. We show the utility + of GASP by presenting a variety of examples." } @article{ta-2dfem-91 -, author = "T. K. H. Tam and C. G. Armstrong" -, title = "2{D} Finite Element Mesh Generation By Medial Axis Subdivision" -, journal = "Advances in Engineering Software and Workstations" -, volume = 13 -, number = "5--6" -, month = sep -, year = 1991 -, pages = "313--324" -, keywords = "two-dimensional finite element mesh generation, medial axis subdivisions, quadrilateral elements, Delaunay triangulation, Voronoi diagrams, transfinite mapping techniques" -, annote = "Vd of shape is approximated by using extra points on - the boundary. Vd is used to decompose shape into simple - regions for meshing." -, abstract = "An algorithm for the automatic generation of - two-dimensional finite element meshes using - quadrilateral elements has been demonstrated. The - technique uses information derived from the medial axis - of a 2D region, the locus of the centre of an inscribed - disc of maximal diameter as it rolls around the region - interior. Using this information, an arbitrarily - complex object can be subdivided into a series of - meshable subregions. Within these subregions relatively - conventional meshing patterns are then generated. The - resulting meshes are well structured and flow smoothly - round the object boundary with minimum mesh - irregularity. (Author abstract) 31 Refs." +, author = "T. K. H. Tam and C. G. Armstrong" +, title = "2{D} Finite Element Mesh Generation By Medial Axis Subdivision" +, journal = "Advances in Engineering Software and Workstations" +, volume = 13 +, number = "5--6" +, month = sep +, year = 1991 +, pages = "313--324" +, keywords = "two-dimensional finite element mesh generation, medial axis subdivisions, quadrilateral elements, Delaunay triangulation, Voronoi diagrams, transfinite mapping techniques" +, annote = "Vd of shape is approximated by using extra points on + the boundary. Vd is used to decompose shape into simple + regions for meshing." +, abstract = "An algorithm for the automatic generation of + two-dimensional finite element meshes using + quadrilateral elements has been demonstrated. The + technique uses information derived from the medial axis + of a 2D region, the locus of the centre of an inscribed + disc of maximal diameter as it rolls around the region + interior. Using this information, an arbitrarily + complex object can be subdivided into a series of + meshable subregions. Within these subregions relatively + conventional meshing patterns are then generated. The + resulting meshes are well structured and flow smoothly + round the object boundary with minimum mesh + irregularity. (Author abstract) 31 Refs." } @article{ta-femci-93 -, author = "T. K. H. Tam and C. G. Armstrong" -, title = "Finite element mesh control by integer programming" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 36 -, year = 1993 -, pages = "2581--2605" -, update = "98.07 bibrelex" +, author = "T. K. H. Tam and C. G. Armstrong" +, title = "Finite element mesh control by integer programming" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 36 +, year = 1993 +, pages = "2581--2605" +, update = "98.07 bibrelex" } @inproceedings{tt-cpgpl-97 -, author = "Hisao Tamaki and Takeshi Tokuyama" -, title = "A Characterization of Planar Graphs by Pseudo-Line Arrangements" -, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '97" -, site = "Singapore" -, series = "Lecture Notes Comput. Sci." -, volume = 1350 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "123--132" -, update = "98.07 agarwal, 98.03 agarwal+mitchell" +, author = "Hisao Tamaki and Takeshi Tokuyama" +, title = "A Characterization of Planar Graphs by Pseudo-Line Arrangements" +, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '97" +, site = "Singapore" +, series = "Lecture Notes Comput. Sci." +, volume = 1350 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "123--132" +, update = "98.07 agarwal, 98.03 agarwal+mitchell" } @inproceedings{tt-hcpps-95 -, author = "Hisao Tamaki and Takeshi Tokuyama" -, title = "How to Cut Pseudo-Parabolas into Segments" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "230--237" -, keywords = "levels" -, cites = "a-sdcgp-85, b-gtic-79, cs-arscg-89, e-acg-87, ew-mnemf-86, e-glbpm-95, g-bpstp-79, gs-caa-93, ki-tnprc-83, ks-empac-90, kti-mmstl-92, l-roifc-75, m-gofvc-94, m-lblmp-91, s-ksacs-91, w-mt-76, w-mksfs-86, ZZZ" -, update = "98.03 bibrelex, 95.09 agarwal+mitchell" +, author = "Hisao Tamaki and Takeshi Tokuyama" +, title = "How to Cut Pseudo-Parabolas into Segments" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "230--237" +, keywords = "levels" +, cites = "a-sdcgp-85, b-gtic-79, cs-arscg-89, e-acg-87, ew-mnemf-86, e-glbpm-95, g-bpstp-79, gs-caa-93, ki-tnprc-83, ks-empac-90, kti-mmstl-92, l-roifc-75, m-gofvc-94, m-lblmp-91, s-ksacs-91, w-mt-76, w-mksfs-86, ZZZ" +, update = "98.03 bibrelex, 95.09 agarwal+mitchell" } @article{tt-hcpps-98 -, author = "Hisao Tamaki and Takeshi Tokuyama" -, title = "How to Cut Pseudo-Parabolas into Segments" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "265--290" -, update = "98.03 agarwal" +, author = "Hisao Tamaki and Takeshi Tokuyama" +, title = "How to Cut Pseudo-Parabolas into Segments" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "265--290" +, update = "98.03 agarwal" } @techreport{t-ddspg-87 -, author = "R. Tamassia" -, title = "A dynamic data structure for planar graph embedding" -, type = "Report" -, number = "UILU-ENG-87-2265" -, institution = "Coordinated Sci. Lab., Univ. Illinois" -, address = "Urbana, IL" -, year = 1987 +, author = "R. Tamassia" +, title = "A dynamic data structure for planar graph embedding" +, type = "Report" +, number = "UILU-ENG-87-2265" +, institution = "Coordinated Sci. Lab., Univ. Illinois" +, address = "Urbana, IL" +, year = 1987 } @inproceedings{t-ddspg-88 -, author = "R. Tamassia" -, title = "A Dynamic Data Structure for Planar Graph Embedding" -, editor = "T. Lepisto and A. Salomaa" -, booktitle = "Automata, Languages and Programming (Proc. 15th ICALP)" -, series = "Lecture Notes Comput. Sci." -, volume = 317 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "576--590" -, update = "94.01 tamassia" +, author = "R. Tamassia" +, title = "A Dynamic Data Structure for Planar Graph Embedding" +, editor = "T. Lepisto and A. Salomaa" +, booktitle = "Automata, Languages and Programming (Proc. 15th ICALP)" +, series = "Lecture Notes Comput. Sci." +, volume = 317 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "576--590" +, update = "94.01 tamassia" } @inproceedings{t-uadpl-92 -, author = "Roberto Tamassia" -, title = "A Unified Approach to Dynamic Point Location, Ray Shooting, and Shortest Paths in Planar Maps" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = 39 -, update = "00.03 bibrelex" +, author = "Roberto Tamassia" +, title = "A Unified Approach to Dynamic Point Location, Ray Shooting, and Shortest Paths in Planar Maps" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = 39 +, update = "00.03 bibrelex" } @article{t-atpgd- -, author = "R. Tamassia" -, title = "Advances in the Theory and Practice of Graph Drawing" -, journal = "Theoret. Comput. Sci." -, note = "to appear" -, keywords = "graph drawing, survey" -, update = "98.11 tamassia" +, author = "R. Tamassia" +, title = "Advances in the Theory and Practice of Graph Drawing" +, journal = "Theoret. Comput. Sci." +, note = "to appear" +, keywords = "graph drawing, survey" +, update = "98.11 tamassia" } @article{t-irmdp-91 -, author = "R. Tamassia" -, title = "An incremental reconstruction method for dynamic planar point location" -, journal = "Inform. Process. Lett." -, volume = 37 -, year = 1991 -, pages = "79--83" -, keywords = "point location, triangulation, computational geometry, planar point location" -, abstract = "We present a fully dynamic technique for point - location in triangulations that allows a tradeoff - between query and update time, and can be used in - conjunction with any of the known static point location - data structures. Let $S$ be a triangulation whose - current number of vertices is $n$. We show that for any - smooth nondecreasing integer function $b(n)$ with $2\le - b(n) \le \sqrt n$, there exists a dynamic point - location data structure for $S$ with space $O(n)$, - query time $O((\log^2n)/\log b(n))$, and update time - $O((\log^2n)b(n)/\log b(n))$. (Author abstract) 15 - Refs." +, author = "R. Tamassia" +, title = "An incremental reconstruction method for dynamic planar point location" +, journal = "Inform. Process. Lett." +, volume = 37 +, year = 1991 +, pages = "79--83" +, keywords = "point location, triangulation, computational geometry, planar point location" +, abstract = "We present a fully dynamic technique for point + location in triangulations that allows a tradeoff + between query and update time, and can be used in + conjunction with any of the known static point location + data structures. Let $S$ be a triangulation whose + current number of vertices is $n$. We show that for any + smooth nondecreasing integer function $b(n)$ with $2\le + b(n) \le \sqrt n$, there exists a dynamic point + location data structure for $S$ with space $O(n)$, + query time $O((\log^2n)/\log b(n))$, and update time + $O((\log^2n)b(n)/\log b(n))$. (Author abstract) 15 + Refs." } @inproceedings{t-cgd-95 -, author = "R. Tamassia" -, title = "Constraints in Graph Drawing" -, booktitle = "Proc. Int. Workshop on Constraints for Graphics and Visualization" -, nickname = "CGV '95" -, year = 1995 -, pages = 85 -, keywords = "graph drawing, constraints" -, update = "96.09 tamassia" +, author = "R. Tamassia" +, title = "Constraints in Graph Drawing" +, booktitle = "Proc. Int. Workshop on Constraints for Graphics and Visualization" +, nickname = "CGV '95" +, year = 1995 +, pages = 85 +, keywords = "graph drawing, constraints" +, update = "96.09 tamassia" } @article{t-cgd-98 -, author = "R. Tamassia" -, title = "Constraints in Graph Drawing Algorithms" -, journal = "Constraints" -, volume = 3 -, number = 1 -, year = 1998 -, pages = "89--122" -, keywords = "graph drawing, constraints, survey" -, update = "98.11 tamassia" +, author = "R. Tamassia" +, title = "Constraints in Graph Drawing Algorithms" +, journal = "Constraints" +, volume = 3 +, number = 1 +, year = 1998 +, pages = "89--122" +, keywords = "graph drawing, constraints, survey" +, update = "98.11 tamassia" } @article{t-ds-96 -, author = "R. Tamassia" -, title = "Data Structures" -, journal = "ACM Comput. Surv." -, volume = 28 -, number = 1 -, year = 1996 -, pages = "23--26" -, url = "https://www.cs.brown.edu/cgc/papers/t-ds-96.ps.gz" -, keywords = "data structures, survey" -, update = "97.03 tamassia" +, author = "R. Tamassia" +, title = "Data Structures" +, journal = "ACM Comput. Surv." +, volume = 28 +, number = 1 +, year = 1996 +, pages = "23--26" +, url = "https://www.cs.brown.edu/cgc/papers/t-ds-96.ps.gz" +, keywords = "data structures, survey" +, update = "97.03 tamassia" } @techreport{t-dapsg -, author = "R. Tamassia" -, title = "Drawing Algorithms for Planar st-Graphs" -, type = "Technical Report" -, institution = "Brown Univ." -, precedes = "t-dapsg-90" -, update = "98.11 bibrelex" +, author = "R. Tamassia" +, title = "Drawing Algorithms for Planar st-Graphs" +, type = "Technical Report" +, institution = "Brown Univ." +, precedes = "t-dapsg-90" +, update = "98.11 bibrelex" } @article{t-dapsg-90 -, author = "R. Tamassia" -, title = "Drawing Algorithms for Planar st-Graphs" -, journal = "Australasian Journal of Combinatorics" -, volume = 2 -, year = 1990 -, pages = "217--235" -, keywords = "graph drawing" -, succeeds = "t-dapsg" -, update = "98.11 bibrelex, 93.09 tamassia" +, author = "R. Tamassia" +, title = "Drawing Algorithms for Planar st-Graphs" +, journal = "Australasian Journal of Combinatorics" +, volume = 2 +, year = 1990 +, pages = "217--235" +, keywords = "graph drawing" +, succeeds = "t-dapsg" +, update = "98.11 bibrelex, 93.09 tamassia" } @misc{t-gd- -, author = "Roberto Tamassia" -, title = "Graph Drawing" -, url = "http://graphdrawing.org/index.html" -, update = "98.07 tamassia" +, author = "Roberto Tamassia" +, title = "Graph Drawing" +, url = "http://graphdrawing.org/index.html" +, update = "98.07 tamassia" } @incollection{t-gd-97 -, author = "R. Tamassia" -, title = "Graph Drawing" -, chapter = 44 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "815--832" -, url = "https://www.cs.brown.edu/cgc/papers/t-gd-97.ps.gz" -, keywords = "graph drawing, survey" -, update = "97.11 orourke, 97.07 orourke, 97.03 tamassia" +, author = "R. Tamassia" +, title = "Graph Drawing" +, chapter = 44 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "815--832" +, url = "https://www.cs.brown.edu/cgc/papers/t-gd-97.ps.gz" +, keywords = "graph drawing, survey" +, update = "97.11 orourke, 97.07 orourke, 97.03 tamassia" } @incollection{t-gd-00 -, author = "Roberto Tamassia" -, title = "Graph Drawing" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "Elsevier Science Publishers B.V. North-Holland" -, address = "Amsterdam" -, year = 2000 -, pages = "937--971" -, keywords = "graph drawing, survey" -, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 tamassia, 98.07 mitchell" -, annote = "Chapter 21 of su-hcg-00" +, author = "Roberto Tamassia" +, title = "Graph Drawing" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "Elsevier Science Publishers B.V. North-Holland" +, address = "Amsterdam" +, year = 2000 +, pages = "937--971" +, keywords = "graph drawing, survey" +, update = "00.03 bibrelex, 99.03 bibrelex, 98.11 tamassia, 98.07 mitchell" +, annote = "Chapter 21 of su-hcg-00" } @inproceedings{t-iadse-98 -, author = "R. Tamassia" -, title = "Implementing Algorithms and Data Structures: an Educational and Research Perspective" -, booktitle = "Proc. Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '98" -, series = "Lect. Not. Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1998 -, update = "98.11 tamassia" +, author = "R. Tamassia" +, title = "Implementing Algorithms and Data Structures: an Educational and Research Perspective" +, booktitle = "Proc. Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '98" +, series = "Lect. Not. Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1998 +, update = "98.11 tamassia" } @inproceedings{t-nlter-85 -, author = "R. Tamassia" -, title = "New Layout Techniques for Entity-Relationship Diagrams" -, booktitle = "Proc. 4th Internat. Conf. on Entity-Relationship Approach" -, year = 1985 -, pages = "304--311" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia" +, title = "New Layout Techniques for Entity-Relationship Diagrams" +, booktitle = "Proc. 4th Internat. Conf. on Entity-Relationship Approach" +, year = 1985 +, pages = "304--311" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{t-eggmn-87 -, author = "R. Tamassia" -, title = "On Embedding a Graph in the Grid with the Minimum Number of Bends" -, journal = "SIAM J. Comput." -, volume = 16 -, number = 3 -, year = 1987 -, pages = "421--444" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia" +, title = "On Embedding a Graph in the Grid with the Minimum Number of Bends" +, journal = "SIAM J. Comput." +, volume = 16 +, number = 3 +, year = 1987 +, pages = "421--444" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{t-olpge-96 -, author = "R. Tamassia" -, title = "On-Line Planar Graph Embedding" -, journal = "J. Algorithms" -, volume = 21 -, number = 2 -, year = 1996 -, pages = "201--239" -, keywords = "graph drawing, planar, embedding, dynamic" -, succeeds = "t-ddspg-88" -, update = "98.07 tamassia, 97.03 pocchiola+tamassia" +, author = "R. Tamassia" +, title = "On-Line Planar Graph Embedding" +, journal = "J. Algorithms" +, volume = 21 +, number = 2 +, year = 1996 +, pages = "201--239" +, keywords = "graph drawing, planar, embedding, dynamic" +, succeeds = "t-ddspg-88" +, update = "98.07 tamassia, 97.03 pocchiola+tamassia" } @inproceedings{t-podg-90 -, author = "R. Tamassia" -, title = "Planar Orthogonal Drawings of Graphs" -, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" -, year = 1990 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia" +, title = "Planar Orthogonal Drawings of Graphs" +, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" +, year = 1990 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{taacddfdhopsstvw-sdcg-96 -, author = "R. Tamassia and P. Agarwal and N. Amato and D. Chen and D. Dobkin and R. Drysdale and S. Fortune and M. Goodrich and J. Hershberger and J. O'Rourke and F. P. Preparata and J.-R. Sack and S. Suri and I. Tollis and J. Vitter and S. Whitesides" -, title = "Strategic directions in computational geometry" -, journal = "ACM Comput. Surv." -, volume = 28 -, number = 4 -, year = 1996 -, pages = "591--606" -, update = "01.11 devillers, 98.07 tamassia, 98.03 mitchell, 97.11 sack" -, annote = "report of working group +, author = "R. Tamassia and P. Agarwal and N. Amato and D. Chen and D. Dobkin and R. Drysdale and S. Fortune and M. Goodrich and J. Hershberger and J. O'Rourke and F. P. Preparata and J.-R. Sack and S. Suri and I. Tollis and J. Vitter and S. Whitesides" +, title = "Strategic directions in computational geometry" +, journal = "ACM Comput. Surv." +, volume = 28 +, number = 4 +, year = 1996 +, pages = "591--606" +, update = "01.11 devillers, 98.07 tamassia, 98.03 mitchell, 97.11 sack" +, annote = "report of working group formed as part of ACM Workshop on Strategic Directions in Computing Research" } @incollection{tc-ds- -, author = "R. Tamassia and B. Cantrill" -, title = "Data Structures" -, editor = "A. B. Tucker Jr." -, booktitle = "Handbook of Computer Science and Engineering" -, publisher = "CRC Press" -, year = 1997 -, pages = "86--110" -, url = "https://www.cs.brown.edu/cgc/papers/tc-ds-.ps.gz" -, keywords = "data structures, survey" -, update = "97.03 tamassia" +, author = "R. Tamassia and B. Cantrill" +, title = "Data Structures" +, editor = "A. B. Tucker Jr." +, booktitle = "Handbook of Computer Science and Engineering" +, publisher = "CRC Press" +, year = 1997 +, pages = "86--110" +, url = "https://www.cs.brown.edu/cgc/papers/tc-ds-.ps.gz" +, keywords = "data structures, survey" +, update = "97.03 tamassia" } @article{tdb-agdrd-88 -, author = "R. Tamassia and G. {Di Battista} and C. Batini" -, title = "Automatic Graph Drawing and Readability of Diagrams" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-18" -, number = 1 -, year = 1988 -, pages = "61--79" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia and G. {Di Battista} and C. Batini" +, title = "Automatic Graph Drawing and Readability of Diagrams" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-18" +, number = 1 +, year = 1988 +, pages = "61--79" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{tlp-rpqiv-96 -, author = "R. Tamassia and G. Liotta and F. P. Preparata" -, title = "Robust proximity queries in implicit {Voronoi} diagrams" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = 1 -, update = "97.03 agarwal, 96.09 mitchell" -, annote = "Invited Lecture by Roberto Tamassia" +, author = "R. Tamassia and G. Liotta and F. P. Preparata" +, title = "Robust proximity queries in implicit {Voronoi} diagrams" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = 1 +, update = "97.03 agarwal, 96.09 mitchell" +, annote = "Invited Lecture by Roberto Tamassia" } @article{t-sdcg-96 -, author = "Roberto Tamassia and others" -, title = "Strategic Directions in Computational Geometry" -, journal = "ACM Comput. Surv." -, volume = 28 -, number = 4 -, year = 1996 -, pages = "591--606" -, url = "https://www.cs.brown.edu/people/rt/sdcr/report.html" -, update = "98.07 tamassia+vismara, 97.03 tamassia" -, annote = "short form of taacddfdhopsstvw-sdcg-96" +, author = "Roberto Tamassia and others" +, title = "Strategic Directions in Computational Geometry" +, journal = "ACM Comput. Surv." +, volume = 28 +, number = 4 +, year = 1996 +, pages = "591--606" +, url = "https://www.cs.brown.edu/people/rt/sdcr/report.html" +, update = "98.07 tamassia+vismara, 97.03 tamassia" +, annote = "short form of taacddfdhopsstvw-sdcg-96" } @techreport{tp-dmpda-88 -, author = "R. Tamassia and F. P. Preparata" -, title = "Dynamic maintenance of planar digraphs, with applications" -, type = "Report" -, number = "UILU-ENG-88-2227" -, institution = "Coordinated Sci. Lab., Univ. Illinois" -, address = "Urbana, IL" -, year = 1988 -, precedes = "tp-dmpda-90" +, author = "R. Tamassia and F. P. Preparata" +, title = "Dynamic maintenance of planar digraphs, with applications" +, type = "Report" +, number = "UILU-ENG-88-2227" +, institution = "Coordinated Sci. Lab., Univ. Illinois" +, address = "Urbana, IL" +, year = 1988 +, precedes = "tp-dmpda-90" } @article{tp-dmpda-90 -, author = "R. Tamassia and F. P. Preparata" -, title = "Dynamic maintenance of planar digraphs, with applications" -, journal = "Algorithmica" -, volume = 5 -, year = 1990 -, pages = "509--527" -, succeeds = "tp-dmpda-88" +, author = "R. Tamassia and F. P. Preparata" +, title = "Dynamic maintenance of planar digraphs, with applications" +, journal = "Algorithmica" +, volume = 5 +, year = 1990 +, pages = "509--527" +, succeeds = "tp-dmpda-88" } @article{tt-uavrp-86 -, author = "R. Tamassia and I. G. Tollis" -, title = "A Unified Approach to Visibility Representations of Planar Graphs" -, journal = "Discrete Comput. Geom." -, volume = 1 -, number = 4 -, year = 1986 -, pages = "321--341" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia and I. G. Tollis" +, title = "A Unified Approach to Visibility Representations of Planar Graphs" +, journal = "Discrete Comput. Geom." +, volume = 1 +, number = 4 +, year = 1986 +, pages = "321--341" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{tt-cgvc-87 -, author = "R. Tamassia and I. G. Tollis" -, title = "Centipede Graphs and Visibility on a Cylinder" -, editor = "G. Tinhofer and G. Schmidt" -, booktitle = "Graph Theoretic Concepts in Computer Science: Proc. Internat. Workshop WG '86 (Bernierd June 1986)" -, series = "Lecture Notes Comput. Sci." -, volume = 246 -, publisher = "Springer-Verlag" -, year = 1987 -, pages = "252--263" -, keywords = "graph drawing" -, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" +, author = "R. Tamassia and I. G. Tollis" +, title = "Centipede Graphs and Visibility on a Cylinder" +, editor = "G. Tinhofer and G. Schmidt" +, booktitle = "Graph Theoretic Concepts in Computer Science: Proc. Internat. Workshop WG '86 (Bernierd June 1986)" +, series = "Lecture Notes Comput. Sci." +, volume = 246 +, publisher = "Springer-Verlag" +, year = 1987 +, pages = "252--263" +, keywords = "graph drawing" +, update = "99.11 bibrelex, 96.09 agarwal, 93.09 tamassia" } % xxx = Philadelphia, @inproceedings{tt-eepgl-87 -, author = "R. Tamassia and I. G. Tollis" -, title = "Efficient Embedding of Planar Graphs in Linear Time" -, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" -, year = 1987 -, pages = "495--498" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia and I. G. Tollis" +, title = "Efficient Embedding of Planar Graphs in Linear Time" +, booktitle = "Proc. IEEE Internat. Sympos. on Circuits and Systems" +, year = 1987 +, pages = "495--498" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @proceedings{tt-gd-95 -, title = "Graph Drawing (Proc. GD '94)" -, editor = "R. Tamassia and I. G. Tollis" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, keywords = "graph drawing" -, update = "98.07 bibrelex+vismara, 95.01 tamassia" +, title = "Graph Drawing (Proc. GD '94)" +, editor = "R. Tamassia and I. G. Tollis" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, keywords = "graph drawing" +, update = "98.07 bibrelex+vismara, 95.01 tamassia" } @article{tt-pgelt-89 -, author = "R. Tamassia and I. G. Tollis" -, title = "Planar Grid Embedding in Linear Time" -, journal = "IEEE Trans. Circuits Syst." -, volume = "CAS-36" -, number = 9 -, year = 1989 -, pages = "1230--1234" -, keywords = "graph drawing" -, update = "96.09 devillers, 93.09 tamassia" +, author = "R. Tamassia and I. G. Tollis" +, title = "Planar Grid Embedding in Linear Time" +, journal = "IEEE Trans. Circuits Syst." +, volume = "CAS-36" +, number = 9 +, year = 1989 +, pages = "1230--1234" +, keywords = "graph drawing" +, update = "96.09 devillers, 93.09 tamassia" } @techreport{tt-prgvb-85 -, author = "R. Tamassia and I. G. Tollis" -, title = "Plane representations of graphs and visibility between parallel segments" -, type = "Report" -, number = "UILU-ENG 85-2215" -, institution = "Coordinated Sci. Lab., Univ. Illinois" -, address = "Urbana, IL" -, year = 1985 +, author = "R. Tamassia and I. G. Tollis" +, title = "Plane representations of graphs and visibility between parallel segments" +, type = "Report" +, number = "UILU-ENG 85-2215" +, institution = "Coordinated Sci. Lab., Univ. Illinois" +, address = "Urbana, IL" +, year = 1985 } @article{tt-rpdos-93 -, author = "R. Tamassia and I. G. Tollis" -, title = "Reachability in Planar Digraphs with One Source and One Sink" -, journal = "Theoret. Comput. Sci. A" -, volume = 119 -, year = 1993 -, pages = "331--343" -, update = "94.05 tamassia" +, author = "R. Tamassia and I. G. Tollis" +, title = "Reachability in Planar Digraphs with One Source and One Sink" +, journal = "Theoret. Comput. Sci. A" +, volume = 119 +, year = 1993 +, pages = "331--343" +, update = "94.05 tamassia" } @article{tt-rgc-91 -, author = "R. Tamassia and I. G. Tollis" -, title = "Representations of Graphs on a Cylinder" -, journal = "SIAM J. Discrete Math." -, volume = 4 -, number = 1 -, year = 1991 -, pages = "139--149" -, update = "94.01 tamassia" +, author = "R. Tamassia and I. G. Tollis" +, title = "Representations of Graphs on a Cylinder" +, journal = "SIAM J. Discrete Math." +, volume = 4 +, number = 1 +, year = 1991 +, pages = "139--149" +, update = "94.01 tamassia" } @inproceedings{tt-trpg-89 -, author = "R. Tamassia and I. G. Tollis" -, title = "Tessellation Representations of Planar Graphs" -, booktitle = "Proc. 27th Allerton Conf. Commun. Control Comput." -, year = 1989 -, pages = "48--57" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia and I. G. Tollis" +, title = "Tessellation Representations of Planar Graphs" +, booktitle = "Proc. 27th Allerton Conf. Commun. Control Comput." +, year = 1989 +, pages = "48--57" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @inproceedings{ttv-lbpap-91 -, author = "R. Tamassia and I. G. Tollis and J. S. Vitter" -, title = "Lower Bounds and Parallel Algorithms for Planar Orthogonal Grid Drawings" -, booktitle = "Proc. IEEE Symposium on Parallel and Distributed Processing" -, year = 1991 -, pages = "386--393" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia and I. G. Tollis and J. S. Vitter" +, title = "Lower Bounds and Parallel Algorithms for Planar Orthogonal Grid Drawings" +, booktitle = "Proc. IEEE Symposium on Parallel and Distributed Processing" +, year = 1991 +, pages = "386--393" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{ttv-lbpod-91 -, author = "R. Tamassia and I. G. Tollis and J. S. Vitter" -, title = "Lower Bounds for Planar Orthogonal Drawings of Graphs" -, journal = "Inform. Process. Lett." -, volume = 39 -, year = 1991 -, pages = "35--40" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. Tamassia and I. G. Tollis and J. S. Vitter" +, title = "Lower Bounds for Planar Orthogonal Drawings of Graphs" +, journal = "Inform. Process. Lett." +, volume = 39 +, year = 1991 +, pages = "35--40" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{tv-csaeg-97 -, author = "R. Tamassia and L. Vismara" -, title = "A Case Study in Algorithm Engineering for Geometric Computing" -, type = "Technical Report" -, number = "CS-97-18" -, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." -, month = dec -, year = 1997 -, url = "ftp://ftp.cs.brown.edu/pub/techreports/97/cs97-18.ps.Z" -, update = "98.07 vismara" +, author = "R. Tamassia and L. Vismara" +, title = "A Case Study in Algorithm Engineering for Geometric Computing" +, type = "Technical Report" +, number = "CS-97-18" +, institution = "Center for Geometric Computing, Dept. Computer Science, Brown Univ." +, month = dec +, year = 1997 +, url = "ftp://ftp.cs.brown.edu/pub/techreports/97/cs97-18.ps.Z" +, update = "98.07 vismara" } @inproceedings{tvb-csaeg-97 -, author = "Roberto Tamassia and Luca Vismara and James E. Baker" -, title = "A Case Study in Algorithm Engineering for Geometric Computing" -, booktitle = "Proc. Workshop on Algorithm Engineering" -, nickname = "WAE'97" -, site = "Venice" -, month = sep -, year = 1997 -, pages = "136--145" -, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap14.ps.gz" -, update = "00.11 smid, 00.07 icking, 98.11 bibrelex, 98.07 smid+tamassia+vahrenhold+vismara, 98.03 mitchell" +, author = "Roberto Tamassia and Luca Vismara and James E. Baker" +, title = "A Case Study in Algorithm Engineering for Geometric Computing" +, booktitle = "Proc. Workshop on Algorithm Engineering" +, nickname = "WAE'97" +, site = "Venice" +, month = sep +, year = 1997 +, pages = "136--145" +, url = "http://www.dsi.unive.it/~wae97/proceedings/ONLY_PAPERS/pap14.ps.gz" +, update = "00.11 smid, 00.07 icking, 98.11 bibrelex, 98.07 smid+tamassia+vahrenhold+vismara, 98.03 mitchell" } @inproceedings{tv-ocsfc-90 -, author = "R. Tamassia and J. S. Vitter" -, title = "Optimal Cooperative Search in Fractional Cascaded Data Structures" -, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." -, year = 1990 -, pages = "307--316" -, keywords = "point location, fractional cascading" -, precedes = "tv-ocsfc-96" -, update = "97.11 bibrelex, 94.05 tamassia" +, author = "R. Tamassia and J. S. Vitter" +, title = "Optimal Cooperative Search in Fractional Cascaded Data Structures" +, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." +, year = 1990 +, pages = "307--316" +, keywords = "point location, fractional cascading" +, precedes = "tv-ocsfc-96" +, update = "97.11 bibrelex, 94.05 tamassia" } @article{tv-ocsfc-96 -, author = "R. Tamassia and J. S. Vitter" -, title = "Optimal Cooperative Search in Fractional Cascaded Data Structures" -, journal = "Algorithmica" -, volume = 15 -, number = 2 -, year = 1996 -, keywords = "point location, fractional cascading, cooperative search" -, succeeds = "tv-ocsfc-90" -, update = "95.09 tamassia, 94.05 tamassia" +, author = "R. Tamassia and J. S. Vitter" +, title = "Optimal Cooperative Search in Fractional Cascaded Data Structures" +, journal = "Algorithmica" +, volume = 15 +, number = 2 +, year = 1996 +, keywords = "point location, fractional cascading, cooperative search" +, succeeds = "tv-ocsfc-90" +, update = "95.09 tamassia, 94.05 tamassia" } @techreport{tv-opatc-89t -, author = "R. Tamassia and J. S. Vitter" -, title = "Optimal parallel algorithms for transitive closure and point location in planar structures" -, type = "Technical {Report}" -, number = "CS-89-20" -, institution = "Dept. Comput. Sci., Brown Univ." -, address = "Providence, RI" -, month = mar -, year = 1989 -, update = "97.11 bibrelex" +, author = "R. Tamassia and J. S. Vitter" +, title = "Optimal parallel algorithms for transitive closure and point location in planar structures" +, type = "Technical {Report}" +, number = "CS-89-20" +, institution = "Dept. Comput. Sci., Brown Univ." +, address = "Providence, RI" +, month = mar +, year = 1989 +, update = "97.11 bibrelex" } @inproceedings{tv-opatc-89 -, author = "R. Tamassia and J. S. Vitter" -, title = "Optimal parallel algorithms for transitive closure and point location in planar structures" -, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." -, year = 1989 -, pages = "399--408" -, keywords = "graph drawing" -, precedes = "tv-ptcpl-91" -, update = "94.09 vitter, 93.09 tamassia" +, author = "R. Tamassia and J. S. Vitter" +, title = "Optimal parallel algorithms for transitive closure and point location in planar structures" +, booktitle = "Proc. ACM Sympos. Parallel Algorithms Architect." +, year = 1989 +, pages = "399--408" +, keywords = "graph drawing" +, precedes = "tv-ptcpl-91" +, update = "94.09 vitter, 93.09 tamassia" } @inproceedings{tv-opatc-89i -, author = "R. Tamassia and J. S. Vitter" -, title = "Optimal parallel algorithms for transitive closure and point location in planar structures" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, month = nov -, year = 1989 -, pages = "169--178" -, keywords = "graph drawing" -, update = "95.09 mitchell, 94.09 vitter" -, annote = "invited paper" +, author = "R. Tamassia and J. S. Vitter" +, title = "Optimal parallel algorithms for transitive closure and point location in planar structures" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, month = nov +, year = 1989 +, pages = "169--178" +, keywords = "graph drawing" +, update = "95.09 mitchell, 94.09 vitter" +, annote = "invited paper" } @article{tv-ptcpl-91 -, author = "R. Tamassia and J. S. Vitter" -, title = "Parallel transitive closure and point location in planar structures" -, journal = "SIAM J. Comput." -, volume = 20 -, number = 4 -, year = 1991 -, pages = "708--725" -, keywords = "graph drawing" -, succeeds = "tv-opatc-89" -, update = "94.09 vitter, 93.09 tamassia" +, author = "R. Tamassia and J. S. Vitter" +, title = "Parallel transitive closure and point location in planar structures" +, journal = "SIAM J. Comput." +, volume = 20 +, number = 4 +, year = 1991 +, pages = "708--725" +, keywords = "graph drawing" +, succeeds = "tv-opatc-89" +, update = "94.09 vitter, 93.09 tamassia" } @article{t-cbmal-83 -, author = "A. Tamir" -, title = "A class of balanced matrices arising from location problems" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 4 -, year = 1983 -, pages = "363--370" -, update = "98.11 bibrelex" +, author = "A. Tamir" +, title = "A class of balanced matrices arising from location problems" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 4 +, year = 1983 +, pages = "363--370" +, update = "98.11 bibrelex" } @article{t-icbcl-88 -, author = "A. Tamir" -, title = "Improved complexity bounds for center location problems on networks by using dynamic data structures" -, journal = "SIAM J. Discrete Math." -, volume = 1 -, year = 1988 -, pages = "377--396" -, update = "95.09 agarwal" +, author = "A. Tamir" +, title = "Improved complexity bounds for center location problems on networks by using dynamic data structures" +, journal = "SIAM J. Discrete Math." +, volume = 1 +, year = 1988 +, pages = "377--396" +, update = "95.09 agarwal" } @article{t-csclp-92 -, author = "A. Tamir" -, title = "On the complexity of some classes of location problems" -, journal = "Transp. Sci." -, volume = 26 -, year = 1992 -, pages = "352--354" -, update = "96.05 agarwal" +, author = "A. Tamir" +, title = "On the complexity of some classes of location problems" +, journal = "Transp. Sci." +, volume = 26 +, year = 1992 +, pages = "352--354" +, update = "96.05 agarwal" } @inproceedings{t-p4-87 -, author = "A. Tamir" -, title = "Problem $4-2$" -, booktitle = "4th Computational Geometry Day" -, organization = "New York Univ." -, year = 1987 -, update = "98.07 bibrelex" +, author = "A. Tamir" +, title = "Problem $4-2$" +, booktitle = "4th Computational Geometry Day" +, organization = "New York Univ." +, year = 1987 +, update = "98.07 bibrelex" } @techreport{tm-mbmpa-95 -, author = "A. Tamir and Joseph S. B. Mitchell" -, title = "A Maximum $b$-Matching Problem Arising from Median Location Models with Applications to the Roommates Problem" -, year = 1995 -, keywords = "geodesic distances, maximum weight matching, odd cycles, shortest paths" -, precedes = "tm-mbmpa-98" -, update = "98.03 mitchell" +, author = "A. Tamir and Joseph S. B. Mitchell" +, title = "A Maximum $b$-Matching Problem Arising from Median Location Models with Applications to the Roommates Problem" +, year = 1995 +, keywords = "geodesic distances, maximum weight matching, odd cycles, shortest paths" +, precedes = "tm-mbmpa-98" +, update = "98.03 mitchell" } @article{tm-mbmpa-98 -, author = "A. Tamir and Joseph S. B. Mitchell" -, title = "A Maximum $b$-Matching Problem Arising from Median Location Models with Applications to the Roommates Problem" -, journal = "Math. Program." -, volume = 80 -, year = 1998 -, pages = "171--194" -, keywords = "geodesic distances, maximum weight matching, odd cycles, shortest paths" -, succeeds = "tm-mbmpa-95" -, update = "98.03 mitchell" +, author = "A. Tamir and Joseph S. B. Mitchell" +, title = "A Maximum $b$-Matching Problem Arising from Median Location Models with Applications to the Roommates Problem" +, journal = "Math. Program." +, volume = 80 +, year = 1998 +, pages = "171--194" +, keywords = "geodesic distances, maximum weight matching, odd cycles, shortest paths" +, succeeds = "tm-mbmpa-95" +, update = "98.03 mitchell" } @article{t-gdssp-?? -, author = "M. Tamminen" -, title = "Geometric data structures: summary of project plan for the {Finnish} {Academy}" -, journal = "??" -, volume = "??" -, year = "??" -, pages = "??" +, author = "M. Tamminen" +, title = "Geometric data structures: summary of project plan for the {Finnish} {Academy}" +, journal = "??" +, volume = "??" +, year = "??" +, pages = "??" } @article{t-ecmcp-82 -, author = "M. Tamminen" -, title = "The extendible cell method for closest point problems" -, journal = "BIT" -, volume = 22 -, year = 1982 -, pages = "27--41" +, author = "M. Tamminen" +, title = "The extendible cell method for closest point problems" +, journal = "BIT" +, volume = 22 +, year = 1982 +, pages = "27--41" } @techreport{t-ecmfg-80 -, author = "M. Tamminen" -, title = "The extendible cell method for fast geometric access" -, type = "Report" -, number = "HTKK-TKP-A20" -, institution = "Helsinki Univ. Tech." -, address = "Espoo, Finland" -, year = 1980 +, author = "M. Tamminen" +, title = "The extendible cell method for fast geometric access" +, type = "Report" +, number = "HTKK-TKP-A20" +, institution = "Helsinki Univ. Tech." +, address = "Espoo, Finland" +, year = 1980 } @article{tlsww-cmsg-86 -, author = "M. Tamminen and W. K. Luk and P. Sipala and L. S. Woo and C. K. Wong" -, title = "Constructing maximal slicings from geometry" -, journal = "Acta Inform." -, volume = 23 -, year = 1986 -, pages = "267--288" +, author = "M. Tamminen and W. K. Luk and P. Sipala and L. S. Woo and C. K. Wong" +, title = "Constructing maximal slicings from geometry" +, journal = "Acta Inform." +, volume = 23 +, year = 1986 +, pages = "267--288" } @article{ts-eoccl-84 -, author = "M. Tamminen and H. Samet" -, title = "Efficient octree conversion by connectivity labeling" -, journal = "Comput. Graph." -, volume = 18 -, number = 3 -, month = jul -, year = 1984 -, pages = "43--51" -, note = "Proc. SIGGRAPH '84" -, update = "96.09 devillers, 96.05 efrat" +, author = "M. Tamminen and H. Samet" +, title = "Efficient octree conversion by connectivity labeling" +, journal = "Comput. Graph." +, volume = 18 +, number = 3 +, month = jul +, year = 1984 +, pages = "43--51" +, note = "Proc. SIGGRAPH '84" +, update = "96.09 devillers, 96.05 efrat" } % ### others? @inproceedings{t-impbp-87 -, author = "H. L. Tan and others" -, title = "Inspection of machine parts by back-projection reconstruction" -, booktitle = "Proc. IEEE Robotics and Automat." -, site = "North Carolina" -, month = apr -, year = 1987 -, pages = "503--508" -, update = "98.11 bibrelex" +, author = "H. L. Tan and others" +, title = "Inspection of machine parts by back-projection reconstruction" +, booktitle = "Proc. IEEE Robotics and Automat." +, site = "North Carolina" +, month = apr +, year = 1987 +, pages = "503--508" +, update = "98.11 bibrelex" } @techreport{t-obcqt-94 -, author = "T. S. Tan" -, title = "An optimal bound for conforming quality triangulations" -, type = "Technical {Report}" -, institution = "Det. Inform. Sys. \& Comput. Sci., National Univ. Singapore" -, address = "Singapore" -, year = 1994 -, update = "98.03 bibrelex" +, author = "T. S. Tan" +, title = "An optimal bound for conforming quality triangulations" +, type = "Technical {Report}" +, institution = "Det. Inform. Sys. \& Comput. Sci., National Univ. Singapore" +, address = "Singapore" +, year = 1994 +, update = "98.03 bibrelex" } @article{t-obhqc-96 -, author = "T.-S. Tan" -, title = "An Optimal Bound for High-Quality Conforming Triangulations" -, journal = "Discrete Comput. Geom." -, volume = 15 -, number = 2 -, month = mar -, year = 1996 -, pages = "169--193" -, update = "96.09 held" +, author = "T.-S. Tan" +, title = "An Optimal Bound for High-Quality Conforming Triangulations" +, journal = "Discrete Comput. Geom." +, volume = 15 +, number = 2 +, month = mar +, year = 1996 +, pages = "169--193" +, update = "96.09 held" } @inproceedings{t-obqct-94 -, author = "T.-S. Tan" -, title = "An Optimal Bound for Quality Conforming Triangulations" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "240--249" -, cites = "ba-acfem-76, bl-tfds-84, bde-tpwla-92, beg-pgmg-90, be-psntp-92, be-mgot-92i, bmr-lsntp-94, b-srpcs-88, c-atapd-74, d-dptd-91, et-ubcdt-93, etw-otama-92, g-eblit-75, l-scsi-77, ms-cinap-92, m-mgpqb-93, m-rtpsl-93, m-fctwm-94, r-nsaq2-93, t-otdt-93, t-obcqt-94, ZZZ" -, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" +, author = "T.-S. Tan" +, title = "An Optimal Bound for Quality Conforming Triangulations" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "240--249" +, cites = "ba-acfem-76, bl-tfds-84, bde-tpwla-92, beg-pgmg-90, be-psntp-92, be-mgot-92i, bmr-lsntp-94, b-srpcs-88, c-atapd-74, d-dptd-91, et-ubcdt-93, etw-otama-92, g-eblit-75, l-scsi-77, ms-cinap-92, m-mgpqb-93, m-rtpsl-93, m-fctwm-94, r-nsaq2-93, t-otdt-93, t-obcqt-94, ZZZ" +, update = "98.03 bibrelex, 94.09 jones, 94.01 jones" } @phdthesis{t-otdt-93 -, author = "T. S. Tan" -, title = "Optimal two-dimensional triangulations" -, school = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1993 -, note = "Technical Report UIUCDCS-R-92-1783" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "T. S. Tan" +, title = "Optimal two-dimensional triangulations" +, school = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1993 +, note = "Technical Report UIUCDCS-R-92-1783" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{t-obbtc-00 -, author = "Xuehou Tan" -, title = "On optimal bridges between two convex regions" -, journal = "Inform. Process. Lett." -, volume = 76 -, year = 2000 -, pages = "163--168" -, update = "02.03 cheong" +, author = "Xuehou Tan" +, title = "On optimal bridges between two convex regions" +, journal = "Inform. Process. Lett." +, volume = 76 +, year = 2000 +, pages = "163--168" +, update = "02.03 cheong" } @inproceedings{th-cswrd-93 -, author = "Xuehou Tan and Tomio Hirata" -, title = "Constructing Shortest Watchman Routes by Divide-and-conquer" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "68--77" -, update = "98.07 bibrelex, 94.05 smid, 93.09 milone+mitchell" +, author = "Xuehou Tan and Tomio Hirata" +, title = "Constructing Shortest Watchman Routes by Divide-and-conquer" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "68--77" +, update = "98.07 bibrelex, 94.05 smid, 93.09 milone+mitchell" } @inproceedings{th-tawra-97 -, author = "Xuehou Tan and Tomio Hirata" -, title = "On the Time Analysis of Watchman Route Algorithms" -, booktitle = "Algorithm Workshop of the Information Processing Society of Japan" -, year = 1997 -, pages = "53--60" -, keywords = "watchman route, visibility path" -, comments = "Claims to address and fix an error in the analysis of +, author = "Xuehou Tan and Tomio Hirata" +, title = "On the Time Analysis of Watchman Route Algorithms" +, booktitle = "Algorithm Workshop of the Information Processing Society of Japan" +, year = 1997 +, pages = "53--60" +, keywords = "watchman route, visibility path" +, comments = "Claims to address and fix an error in the analysis of time complexities in earlier watchman route algorithms, as pointed out by Hammar and Nilsson; this issue is still controversial" -, update = "98.03 mitchell" -, annote = "IPS of Japan Technical Report 97-AL-55-7" +, update = "98.03 mitchell" +, annote = "IPS of Japan Technical Report 97-AL-55-7" } @inproceedings{th-ssrsp-94 -, author = "X. Tan and T. Hirata" -, title = "Shortest Safari Routes in Simple Polygon" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "523--531" -, update = "99.11 bibrelex, 98.03 mitchell+smid, 96.05 mitchell" +, author = "X. Tan and T. Hirata" +, title = "Shortest Safari Routes in Simple Polygon" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "523--531" +, update = "99.11 bibrelex, 98.03 mitchell+smid, 96.05 mitchell" } @article{thi-ciacs-99 -, author = "X. Tan and T. Hirata and Y. Inagaki" -, title = "Corrigendum to ``An Incremental Algorithm for Constructing Shortest Watchman Routes''" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 9 -, number = 3 -, year = 1999 -, pages = "319--323" -, update = "00.11 smid, 00.07 icking" -, abstract = "This corrigendum fixes an error that appears in the previously published papers - concerning the watchman route problem. A modification to our incremental watchman - route algorithm previously presented in this journal is made, which gives an - $O(n^4)$ time solution to the watchman route problem." +, author = "X. Tan and T. Hirata and Y. Inagaki" +, title = "Corrigendum to ``An Incremental Algorithm for Constructing Shortest Watchman Routes''" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 9 +, number = 3 +, year = 1999 +, pages = "319--323" +, update = "00.11 smid, 00.07 icking" +, abstract = "This corrigendum fixes an error that appears in the previously published papers + concerning the watchman route problem. A modification to our incremental watchman + route algorithm previously presented in this journal is made, which gives an + $O(n^4)$ time solution to the watchman route problem." } @incollection{thi-iacsw-91 -, author = "X. H. Tan and T. Hirata and Y. Inagaki" -, title = "An incremental algorithm for constructing shortest watchman routes" -, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "163--175" -, precedes = "thi-iacsw-93" -, update = "96.05 mitchell" +, author = "X. H. Tan and T. Hirata and Y. Inagaki" +, title = "An incremental algorithm for constructing shortest watchman routes" +, booktitle = "Proc. 2nd Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "163--175" +, precedes = "thi-iacsw-93" +, update = "96.05 mitchell" } @article{thi-iacsw-93 -, author = "X. H. Tan and T. Hirata and Y. Inagaki" -, title = "An incremental algorithm for constructing shortest watchman routes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, number = 4 -, year = 1993 -, pages = "351--365" -, succeeds = "thi-iacsw-91" -, update = "96.05 mitchell" +, author = "X. H. Tan and T. Hirata and Y. Inagaki" +, title = "An incremental algorithm for constructing shortest watchman routes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, number = 4 +, year = 1993 +, pages = "351--365" +, succeeds = "thi-iacsw-91" +, update = "96.05 mitchell" } @article{thi-ricop-90 -, author = "X.-H. Tan and T. Hirata and Y. Inagaki" -, title = "Reporting intersections of $c$-oriented polygons" -, journal = "Trans. IECE Japan" -, volume = "E73" -, number = 11 -, year = 1990 -, pages = "1886--1892" +, author = "X.-H. Tan and T. Hirata and Y. Inagaki" +, title = "Reporting intersections of $c$-oriented polygons" +, journal = "Trans. IECE Japan" +, volume = "E73" +, number = 11 +, year = 1990 +, pages = "1886--1892" } @inproceedings{thi-splia-90 -, author = "X.-H. Tan and T. Hirata and Y. Inagaki" -, title = "Spatial point location and its applications" -, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 450 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "241--250" +, author = "X.-H. Tan and T. Hirata and Y. Inagaki" +, title = "Spatial point location and its applications" +, booktitle = "Proc. 1st Annu. SIGAL Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 450 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "241--250" } @techreport{tb-esto-80 -, author = "H. Tanaka and D. H. Ballard" -, title = "Extension of strip tree operations" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Univ. Rochester" -, address = "Rochester, NY" -, year = 1980 -, update = "94.05 devillers" +, author = "H. Tanaka and D. H. Ballard" +, title = "Extension of strip tree operations" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Univ. Rochester" +, address = "Rochester, NY" +, year = 1980 +, update = "94.05 devillers" } @article{tw-cmm-73 -, author = "Michikazu Tanaka and Takao Wachi" -, title = "Computerized Marker Making" -, journal = "Journal of The Textile Machinery Society of Japan" -, volume = 26 -, number = 7 -, year = 1973 -, pages = "74--81" -, update = "98.07 bibrelex" +, author = "Michikazu Tanaka and Takao Wachi" +, title = "Computerized Marker Making" +, journal = "Journal of The Textile Machinery Society of Japan" +, volume = 26 +, number = 7 +, year = 1973 +, pages = "74--81" +, update = "98.07 bibrelex" } @article{th-gmt1m-80 -, author = "M. Tanemura and M. Hasegawa" -, title = "Geometrical Models of Territory {I}. Models for Synchronous and Asynchronous Settlement of Territories" -, journal = "Journal of Theoretical Biology" -, volume = 82 -, year = 1980 -, pages = "477--496" -, annote = "VD as model of animal's territory. Centres move to - equalise area. Circumcircle algorithm." +, author = "M. Tanemura and M. Hasegawa" +, title = "Geometrical Models of Territory {I}. Models for Synchronous and Asynchronous Settlement of Territories" +, journal = "Journal of Theoretical Biology" +, volume = 82 +, year = 1980 +, pages = "477--496" +, annote = "VD as model of animal's territory. Centres move to + equalise area. Circumcircle algorithm." } @article{too-natdv-83 -, author = "M. Tanemura and T. Ogawa and W. Ogita" -, title = "A New Algorithm for Three-Dimensional {Voronoi} Tessellation" -, journal = "J. Comput. Phys." -, volume = 51 -, year = 1983 -, pages = "191--207" -, annote = "Basic circumsphere algorithm (though calcs sphere - centres). Compares times with Finney, Brostow - algorithms." +, author = "M. Tanemura and T. Ogawa and W. Ogita" +, title = "A New Algorithm for Three-Dimensional {Voronoi} Tessellation" +, journal = "J. Comput. Phys." +, volume = 51 +, year = 1983 +, pages = "191--207" +, annote = "Basic circumsphere algorithm (though calcs sphere + centres). Compares times with Finney, Brostow + algorithms." } @inproceedings{tgs-crphr-95 -, author = "P. J. Tanenbaum and M. T. Goodrich and E. R. Scheinerman" -, title = "Characterization and Recognition of Point-Halfspace and Related Orders" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "234--245" -, keywords = "graph drawing, order, containment" -, update = "95.01 tamassia" +, author = "P. J. Tanenbaum and M. T. Goodrich and E. R. Scheinerman" +, title = "Characterization and Recognition of Point-Halfspace and Related Orders" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "234--245" +, keywords = "graph drawing, order, containment" +, update = "95.01 tamassia" } @techreport{tw-sdrmp-95 -, author = "P. J. Tanenbaum and S. Whitesides" -, title = "Simultaneous Dominance Representations of Multiple Posets" -, type = "Research {Report}" -, number = 2624 -, institution = "INRIA, Sophia-Antipolis" -, address = "BP93, 06902 Sophia-Antipolis, France" -, year = 1995 -, update = "97.03 tamassia" +, author = "P. J. Tanenbaum and S. Whitesides" +, title = "Simultaneous Dominance Representations of Multiple Posets" +, type = "Research {Report}" +, number = 2624 +, institution = "INRIA, Sophia-Antipolis" +, address = "BP93, 06902 Sophia-Antipolis, France" +, year = 1995 +, update = "97.03 tamassia" } @article{tl-osupa-84 -, author = "C. Y. Tang and R. C. T. Lee" -, title = "Optimal speeding up of parallel algorithms based upon the divide and conquer strategy" -, journal = "Inform. Sci." -, volume = 32 -, year = 1984 -, pages = "173--186" +, author = "C. Y. Tang and R. C. T. Lee" +, title = "Optimal speeding up of parallel algorithms based upon the divide and conquer strategy" +, journal = "Inform. Sci." +, volume = 32 +, year = 1984 +, pages = "173--186" } @article{tccw-tmgsb-99 -, author = "K. Tang and S. Y. Chou and L.-L. Chen and T. C. Woo" -, title = "Tetrahedral Mesh Generation for Solids Based on Alternating Sum of Volumes" -, journal = "Comput. Ind. Engin." -, volume = 41 -, number = 1 -, year = 1999 -, pages = "65--81" -, update = "00.03 held" +, author = "K. Tang and S. Y. Chou and L.-L. Chen and T. C. Woo" +, title = "Tetrahedral Mesh Generation for Solids Based on Alternating Sum of Volumes" +, journal = "Comput. Ind. Engin." +, volume = 41 +, number = 1 +, year = 1999 +, pages = "65--81" +, update = "00.03 held" } @article{twccwj-cpspt-97 -, author = "K. Tang and M.-E. Wang and L.-L. Chen and S.-Y. Chou and T. C. Woo and R. Janardan" -, title = "Computing Planar Swept Polygons under Translation" -, journal = "Comput. Aided Design" -, volume = 29 -, number = 12 -, year = 1997 -, pages = "825--836" -, update = "98.07 held" +, author = "K. Tang and M.-E. Wang and L.-L. Chen and S.-Y. Chou and T. C. Woo and R. Janardan" +, title = "Computing Planar Swept Polygons under Translation" +, journal = "Comput. Aided Design" +, volume = 29 +, number = 12 +, year = 1997 +, pages = "825--836" +, update = "98.07 held" } @article{tvo-ifnmu-98 -, author = "J. W. H. Tangelder and J. S. M. Vergeest and M. H. Overmars" -, title = "Interference-free NC Machining Using Spatial Planning and {Minkowski} Operations" -, journal = "Comput. Aided Design" -, volume = 30 -, number = 4 -, month = apr -, year = 1998 -, pages = "277--286" -, update = "98.07 held" +, author = "J. W. H. Tangelder and J. S. M. Vergeest and M. H. Overmars" +, title = "Interference-free NC Machining Using Spatial Planning and {Minkowski} Operations" +, journal = "Comput. Aided Design" +, volume = 30 +, number = 4 +, month = apr +, year = 1998 +, pages = "277--286" +, update = "98.07 held" } @article{t-mdsp-81 -, author = "S. L. Tanimoto" -, title = "A method for detecting structure in polygons" -, journal = "Pattern Recogn." -, volume = 13 -, year = 1981 -, pages = "389--394" +, author = "S. L. Tanimoto" +, title = "A method for detecting structure in polygons" +, journal = "Pattern Recogn." +, volume = 13 +, year = 1981 +, pages = "389--394" } @incollection{t-ids-80 -, author = "S. L. Tanimoto" -, title = "Image data structures" -, editor = "S. L. Tanimoto and A. Klinger" -, booktitle = "Structured Computer Vision: {Machine} Perception through Hierarchical Computation Structures" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1980 -, pages = "??" -, update = "99.11 bibrelex" +, author = "S. L. Tanimoto" +, title = "Image data structures" +, editor = "S. L. Tanimoto and A. Klinger" +, booktitle = "Structured Computer Vision: {Machine} Perception through Hierarchical Computation Structures" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1980 +, pages = "??" +, update = "99.11 bibrelex" } @incollection{t-pthpi-82 -, author = "S. L. Tanimoto" -, title = "Programming techniques for hierarchical parallel image processors" -, editor = "K. Preston and L. Uhr" -, booktitle = "Multicomputers and Image Processing Algorithms" -, publisher = "Academic Press" -, year = 1982 -, update = "97.11 bibrelex" +, author = "S. L. Tanimoto" +, title = "Programming techniques for hierarchical parallel image processors" +, editor = "K. Preston and L. Uhr" +, booktitle = "Multicomputers and Image Processing Algorithms" +, publisher = "Academic Press" +, year = 1982 +, update = "97.11 bibrelex" } @book{tk-scvmp-80 -, author = "S. L. Tanimoto and A. Klinger" -, title = "Structured Computer Vision: {Machine} Perception through Hierarchical Computation Structures" -, publisher = "Academic Press" -, year = 1980 -, update = "97.11 bibrelex" +, author = "S. L. Tanimoto and A. Klinger" +, title = "Structured Computer Vision: {Machine} Perception through Hierarchical Computation Structures" +, publisher = "Academic Press" +, year = 1980 +, update = "97.11 bibrelex" } @article{th-snona-86 -, author = "D. Tank and J. Hopfield" -, title = "Simple ``neural'' optimization networks: an {A}/{D} converter, signal decision circuit, and a linear programming circuit" -, journal = "IEEE Trans. Circuits Syst." -, volume = 33 -, year = 1986 -, pages = "533--541" -, update = "98.07 bibrelex" +, author = "D. Tank and J. Hopfield" +, title = "Simple ``neural'' optimization networks: an {A}/{D} converter, signal decision circuit, and a linear programming circuit" +, journal = "IEEE Trans. Circuits Syst." +, volume = 33 +, year = 1986 +, pages = "533--541" +, update = "98.07 bibrelex" } @inproceedings{tv-spfsa-97 -, author = "S. Tarasov and M. Vyalyi" -, title = "Some PL functions on surfaces are not height functions" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "113--118" -, cites = "elr-ogdi-91, m-spcgt-92, bt-hftcp-75, r-mct-74, a-slddf-21, w-bzv-36, b-cpcep-67, dnf-mg-79, st-vig-38, m-mt-63, ass-ctsp-93, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "S. Tarasov and M. Vyalyi" +, title = "Some PL functions on surfaces are not height functions" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "113--118" +, cites = "elr-ogdi-91, m-spcgt-92, bt-hftcp-75, r-mct-74, a-slddf-21, w-bzv-36, b-cpcep-67, dnf-mg-79, st-vig-38, m-mt-63, ass-ctsp-93, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{t-hrc-97 -, author = "Sergey P. Tarasov" -, title = "On Hardness of Roundness Calculation" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "175--180" -, update = "97.11 jones" +, author = "Sergey P. Tarasov" +, title = "On Hardness of Roundness Calculation" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "175--180" +, update = "97.11 jones" } @article{t-spasc-86 -, author = "E. Tardos" -, title = "A strongly polynomial algorithm to solve combinatorial linear programs" -, journal = "Oper. Res." -, volume = 34 -, year = 1986 -, pages = "250--256" -, update = "93.09 milone+mitchell" +, author = "E. Tardos" +, title = "A strongly polynomial algorithm to solve combinatorial linear programs" +, journal = "Oper. Res." +, volume = 34 +, year = 1986 +, pages = "250--256" +, update = "93.09 milone+mitchell" } @article{tv-epba-85 -, author = "R. Tarjan and U. Vishkin" -, title = "An efficient parallel biconnectivity algorithm" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "862--874" -, update = "97.11 bibrelex" +, author = "R. Tarjan and U. Vishkin" +, title = "An efficient parallel biconnectivity algorithm" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "862--874" +, update = "97.11 bibrelex" } @article{t-cawrn-79 -, author = "R. E. Tarjan" -, title = "A Class of Algorithms which Require Nonlinear Time to Maintain Disjoint Sets" -, journal = "J. Comput. Syst. Sci." -, volume = 18 -, year = 1979 -, pages = "110--127" -, update = "96.09 orourke" +, author = "R. E. Tarjan" +, title = "A Class of Algorithms which Require Nonlinear Time to Maintain Disjoint Sets" +, journal = "J. Comput. Syst. Sci." +, volume = 18 +, year = 1979 +, pages = "110--127" +, update = "96.09 orourke" } @article{t-ad-87 -, author = "R. E. Tarjan" -, title = "Algorithm Design" -, journal = "Commun. ACM" -, volume = 30 -, number = 3 -, year = 1987 -, pages = "205--212" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "R. E. Tarjan" +, title = "Algorithm Design" +, journal = "Commun. ACM" +, volume = 30 +, number = 3 +, year = 1987 +, pages = "205--212" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{t-acc-85 -, author = "R. E. Tarjan" -, title = "Amortized computational complexity" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 6 -, number = 2 -, year = 1985 -, pages = "306--318" -, keywords = "design of algorithms, data structuring, amortized analysis, survey paper" +, author = "R. E. Tarjan" +, title = "Amortized computational complexity" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 6 +, number = 2 +, year = 1985 +, pages = "306--318" +, keywords = "design of algorithms, data structuring, amortized analysis, survey paper" } @article{t-iahcu-83 -, author = "R. E. Tarjan" -, title = "An improved algorithm for hierarchical clustering using strong components" -, journal = "Inform. Process. Lett." -, volume = 17 -, year = 1983 -, pages = "37--41" +, author = "R. E. Tarjan" +, title = "An improved algorithm for hierarchical clustering using strong components" +, journal = "Inform. Process. Lett." +, volume = 17 +, year = 1983 +, pages = "37--41" } @article{t-cmncc-78 -, author = "R. E. Tarjan" -, title = "Complexity of monotone networks for computing conjunctions" -, journal = "Ann. Discrete Math." -, volume = 2 -, year = 1978 -, pages = "121--133" -, update = "98.03 bibrelex" +, author = "R. E. Tarjan" +, title = "Complexity of monotone networks for computing conjunctions" +, journal = "Ann. Discrete Math." +, volume = 2 +, year = 1978 +, pages = "121--133" +, update = "98.03 bibrelex" } @book{t-dsna-83 -, author = "R. E. Tarjan" -, title = "Data Structures and Network Algorithms" -, series = "CBMS-NSF Regional Conference Series in Applied Mathematics" -, volume = 44 -, publisher = "Society for Industrial and Applied Mathematics" -, address = "Philadelphia, PA" -, year = 1983 -, keywords = "graph drawing, disjoint sets, heaps, search trees, linking and cutting trees, minimum spanning trees, shortest paths, network flows, matchings, analysis of algorithms" -, update = "98.07 tamassia+vismara, 97.11 bibrelex, 93.09 tamassia" +, author = "R. E. Tarjan" +, title = "Data Structures and Network Algorithms" +, series = "CBMS-NSF Regional Conference Series in Applied Mathematics" +, volume = 44 +, publisher = "Society for Industrial and Applied Mathematics" +, address = "Philadelphia, PA" +, year = 1983 +, keywords = "graph drawing, disjoint sets, heaps, search trees, linking and cutting trees, minimum spanning trees, shortest paths, network flows, matchings, analysis of algorithms" +, update = "98.07 tamassia+vismara, 97.11 bibrelex, 93.09 tamassia" } @article{t-dfslg-72 -, author = "R. E. Tarjan" -, title = "Depth-first search and linear graph algorithms" -, journal = "SIAM J. Comput." -, volume = 1 -, number = 2 -, year = 1972 -, pages = "146--160" -, update = "98.07 patrignani, 98.03 bibrelex" +, author = "R. E. Tarjan" +, title = "Depth-first search and linear graph algorithms" +, journal = "SIAM J. Comput." +, volume = 1 +, number = 2 +, year = 1972 +, pages = "146--160" +, update = "98.07 patrignani, 98.03 bibrelex" } @article{t-egbnl-75 -, author = "R. E. Tarjan" -, title = "Efficiency of a good but not linear set union algorithm" -, journal = "J. ACM" -, volume = 22 -, year = 1975 -, pages = "215--225" -, update = "98.03 bibrelex" +, author = "R. E. Tarjan" +, title = "Efficiency of a good but not linear set union algorithm" +, journal = "J. ACM" +, volume = 22 +, year = 1975 +, pages = "215--225" +, update = "98.03 bibrelex" } @article{t-ubstr-83 -, author = "R. E. Tarjan" -, title = "Updating balanced search tree in $O(1)$ rotations" -, journal = "Inf. Proc. Letters" -, volume = 16 -, year = 1983 -, update = "97.11 bibrelex" +, author = "R. E. Tarjan" +, title = "Updating balanced search tree in $O(1)$ rotations" +, journal = "Inf. Proc. Letters" +, volume = 16 +, year = 1983 +, update = "97.11 bibrelex" } @article{tv-tsp-87 -, author = "R. E. Tarjan and C. {Van Wyk}" -, title = "Triangulation of a simple polygon" -, journal = "SIAM J. Comput." -, volume = "??" -, year = 1987 -, update = "98.07 bibrelex" +, author = "R. E. Tarjan and C. {Van Wyk}" +, title = "Triangulation of a simple polygon" +, journal = "SIAM J. Comput." +, volume = "??" +, year = 1987 +, update = "98.07 bibrelex" } @inproceedings{tv-ltats-86 -, author = "R. E. Tarjan and C. J. {Van Wyk}" -, title = "A linear-time algorithm for triangulating simple polygons" -, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." -, year = 1986 -, pages = "380--388" -, note = "Erratum in SIGACT News 18:4 (1987), 63" -, keywords = "design of algorithms, triangulation, visibility, divide-and-conquer, finger search trees, amortized analysis" -, precedes = "tv-otats-88" -, update = "94.01 jones" +, author = "R. E. Tarjan and C. J. {Van Wyk}" +, title = "A linear-time algorithm for triangulating simple polygons" +, booktitle = "Proc. 18th Annu. ACM Sympos. Theory Comput." +, year = 1986 +, pages = "380--388" +, note = "Erratum in SIGACT News 18:4 (1987), 63" +, keywords = "design of algorithms, triangulation, visibility, divide-and-conquer, finger search trees, amortized analysis" +, precedes = "tv-otats-88" +, update = "94.01 jones" } @article{tv-otats-88 -, author = "R. E. Tarjan and C. J. {Van Wyk}" -, title = "An {$O(n \log\log n)$}-time algorithm for triangulating a simple polygon" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "143--178" -, note = "Erratum in 17 (1988), 106" -, keywords = "design of algorithms, triangulation, visibility, divide-and-conquer, finger search trees, amortized analysis" -, succeeds = "tv-ltats-86" +, author = "R. E. Tarjan and C. J. {Van Wyk}" +, title = "An {$O(n \log\log n)$}-time algorithm for triangulating a simple polygon" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "143--178" +, note = "Erratum in 17 (1988), 106" +, keywords = "design of algorithms, triangulation, visibility, divide-and-conquer, finger search trees, amortized analysis" +, succeeds = "tv-ltats-86" } @techreport{tv-otats-86 -, author = "R. E. Tarjan and C. J. {Van Wyk}" -, title = "An {$O(n \log\log n)$} Time Algorithm for Triangulating Simple Polygons" -, type = "Report" -, number = "CS-TR-052-86" -, institution = "Princeton Univ." -, year = 1986 -, update = "97.11 bibrelex" +, author = "R. E. Tarjan and C. J. {Van Wyk}" +, title = "An {$O(n \log\log n)$} Time Algorithm for Triangulating Simple Polygons" +, type = "Report" +, number = "CS-TR-052-86" +, institution = "Princeton Univ." +, year = 1986 +, update = "97.11 bibrelex" } @article{ty-sltat-84 -, author = "R. E. Tarjan and M. Yannakakis" -, title = "Simple linear time algorithms to test chordality of graphs, test acyclicity of hypergraphs, and selectively reduce acyclic hypergraphs" -, journal = "SIAM J. Comput." -, volume = 13 -, year = 1984 -, pages = "566--579" -, update = "97.11 bibrelex" +, author = "R. E. Tarjan and M. Yannakakis" +, title = "Simple linear time algorithms to test chordality of graphs, test acyclicity of hypergraphs, and selectively reduce acyclic hypergraphs" +, journal = "SIAM J. Comput." +, volume = 13 +, year = 1984 +, pages = "566--579" +, update = "97.11 bibrelex" } @article{t-clc-75 -, author = "T. G. Tarj{\'a}n" -, title = "Complexity of lattice-configurations" -, journal = "Studia Scientiarum Mathematicarum Hungarica" -, volume = 10 -, year = 1975 -, pages = "203--211" -, update = "98.03 bibrelex" +, author = "T. G. Tarj{\'a}n" +, title = "Complexity of lattice-configurations" +, journal = "Studia Scientiarum Mathematicarum Hungarica" +, volume = 10 +, year = 1975 +, pages = "203--211" +, update = "98.03 bibrelex" } @inproceedings{t-ptssq-93 -, author = "Alexander G. Tarnowski" -, title = "Polynomial time solvability of some quillotine cutting stock problems" -, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" -, month = jun -, year = 1993 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Alexander G. Tarnowski" +, title = "Polynomial time solvability of some quillotine cutting stock problems" +, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" +, month = jun +, year = 1993 +, pages = "??" +, update = "93.09 milone+mitchell" } @book{t-dmeag-51 -, author = "A. Tarski" -, title = "A decision method for elementary algebra and geometry" -, publisher = "Univ. of California Press" -, address = "Berkeley, CA" -, year = 1951 +, author = "A. Tarski" +, title = "A decision method for elementary algebra and geometry" +, publisher = "Univ. of California Press" +, address = "Berkeley, CA" +, year = 1951 } @article{t-wclnn-97 -, author = "L. Tassiulas" -, title = "Worst case length of nearest neighbor tours for the {Euclidean} traveling salesman problem" -, journal = "SIAM J. Discrete Math." -, volume = 10 -, year = 1997 -, pages = "171--179" -, update = "98.03 smid" +, author = "L. Tassiulas" +, title = "Worst case length of nearest neighbor tours for the {Euclidean} traveling salesman problem" +, journal = "SIAM J. Discrete Math." +, volume = 10 +, year = 1997 +, pages = "171--179" +, update = "98.03 smid" } @inproceedings{tx-gpsda-00 -, author = "S. R. Tate and K. Xu" -, title = "General-purpose spatial decomposition algorithms: {Experimental} results" -, booktitle = "Proc. 2nd Workshop Algorithm Eng. Exper." -, nickname = "ALENEX '00" -, year = 2000 -, pages = "197--215" -, update = "01.11 smid" +, author = "S. R. Tate and K. Xu" +, title = "General-purpose spatial decomposition algorithms: {Experimental} results" +, booktitle = "Proc. 2nd Workshop Algorithm Eng. Exper." +, nickname = "ALENEX '00" +, year = 2000 +, pages = "197--215" +, update = "01.11 smid" } @inproceedings{tghl-pfsc-98 -, author = "G. Taubin and A. Gu{\'e}ziec and W. Horn and F. Lazarus" -, title = "Progressive Forest Split Compression" -, booktitle = "Proc. SIGGRAPH '98" -, site = "Orlando, FL" -, series = "Computer Graphics Proceedings, Annual Conference Series" -, month = jul -, year = 1998 -, pages = "" -, update = "98.11 held" +, author = "G. Taubin and A. Gu{\'e}ziec and W. Horn and F. Lazarus" +, title = "Progressive Forest Split Compression" +, booktitle = "Proc. SIGGRAPH '98" +, site = "Orlando, FL" +, series = "Computer Graphics Proceedings, Annual Conference Series" +, month = jul +, year = 1998 +, pages = "" +, update = "98.11 held" } @techreport{tr-gctts-96 -, author = "G. Taubin and J. Rossignac" -, title = "Geometric Compression Through Topological Surgery" -, number = "RC-20340" -, institution = "IBM T. J. Watson Research Center" -, address = "Yorktown Heights, NY" -, month = jan -, year = 1996 -, update = "96.05 held" +, author = "G. Taubin and J. Rossignac" +, title = "Geometric Compression Through Topological Surgery" +, number = "RC-20340" +, institution = "IBM T. J. Watson Research Center" +, address = "Yorktown Heights, NY" +, month = jan +, year = 1996 +, update = "96.05 held" } @article{tr-gctts-98 -, author = "G. Taubin and J. Rossignac" -, title = "Geometric Compression Through Topological Surgery" -, journal = "ACM Trans. Graph." -, volume = 17 -, number = 2 -, month = apr -, year = 1998 -, pages = "84--115" -, succeeds = "tr-gctts-96" -, update = "99.03 held" +, author = "G. Taubin and J. Rossignac" +, title = "Geometric Compression Through Topological Surgery" +, journal = "ACM Trans. Graph." +, volume = 17 +, number = 2 +, month = apr +, year = 1998 +, pages = "84--115" +, succeeds = "tr-gctts-96" +, update = "99.03 held" } @proceedings{t-p4imr-95 -, title = "Proc. 4th International Meshing Roundtable" -, editor = "Timothy J. Tautges" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1995 -, note = "Also Sandia Report 95-2301" -, comments = "copies on request from Ann Sample, wasamplsandia.gov" -, update = "96.01 samitchell" +, title = "Proc. 4th International Meshing Roundtable" +, editor = "Timothy J. Tautges" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1995 +, note = "Also Sandia Report 95-2301" +, comments = "copies on request from Ann Sample, wasamplsandia.gov" +, update = "96.01 samitchell" } @inproceedings{tm-wwicr-95 -, author = "Timothy J. Tautges and Scott Mitchell" -, title = "Whisker Weaving: Invalid Connectivity Resolution and Primal Construction Algorithm" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "115--128" -, update = "96.01 samitchell" +, author = "Timothy J. Tautges and Scott Mitchell" +, title = "Whisker Weaving: Invalid Connectivity Resolution and Primal Construction Algorithm" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "115--128" +, update = "96.01 samitchell" } @article{tmb-cbmrc- -, author = "T. J. Tautges and S. A. Mitchell and T. D. Blacker" -, title = "A connectivity based method for representing and constructing all-hexahedral finite element meshes, {Part} {II}: {Whisker} weaving" -, journal = "Internat. J. Numer. Methods Eng." -, volume = "??" -, year = "??" -, note = "Submitted" -, update = "98.03 bibrelex" +, author = "T. J. Tautges and S. A. Mitchell and T. D. Blacker" +, title = "A connectivity based method for representing and constructing all-hexahedral finite element meshes, {Part} {II}: {Whisker} weaving" +, journal = "Internat. J. Numer. Methods Eng." +, volume = "??" +, year = "??" +, note = "Submitted" +, update = "98.03 bibrelex" } @inproceedings{t-eacbr-91 -, author = "M. S. Tawfik" -, title = "An Efficient Algorithm for {CSG} to {B}-{Rep} Conversion" -, booktitle = "ACM SIGGRAPH Sympos. on Solid Modeling Foundations and CAD/CAM Applications" -, site = "Austin, TX." -, year = 1991 -, pages = "" -, update = "93.09 goodrich" +, author = "M. S. Tawfik" +, title = "An Efficient Algorithm for {CSG} to {B}-{Rep} Conversion" +, booktitle = "ACM SIGGRAPH Sympos. on Solid Modeling Foundations and CAD/CAM Applications" +, site = "Austin, TX." +, year = 1991 +, pages = "" +, update = "93.09 goodrich" } @article{t-rprbj-83 -, author = "T. S. Tay" -, title = "Review: problems on the rigidity of bar and joint frameworks and linkage of rigid bodies" -, journal = "Structural Topology" -, volume = 8 -, year = 1983 -, pages = "33--36" -, update = "97.11 bibrelex" +, author = "T. S. Tay" +, title = "Review: problems on the rigidity of bar and joint frameworks and linkage of rigid bodies" +, journal = "Structural Topology" +, volume = 8 +, year = 1983 +, pages = "33--36" +, update = "97.11 bibrelex" } @article{tw-rdgrs-84 -, author = "T. S. Tay and W. Whiteley" -, title = "Recent developments on the generic rigidy of structures" -, journal = "Structural Topology" -, volume = 9 -, year = 1984 -, pages = "31--38" -, update = "97.11 bibrelex" +, author = "T. S. Tay and W. Whiteley" +, title = "Recent developments on the generic rigidy of structures" +, journal = "Structural Topology" +, volume = 9 +, year = 1984 +, pages = "31--38" +, update = "97.11 bibrelex" } @article{t-gscs-91 -, author = "J. E. Taylor" -, title = "On the global structure of crystalline surfaces" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "225--262" +, author = "J. E. Taylor" +, title = "On the global structure of crystalline surfaces" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "225--262" } @article{t-sssbl-76 -, author = "J. E. Taylor" -, title = "The structure of singularities in soap-bubble-like and soap-film-like minimal surfaces" -, journal = "Annals of Math." -, volume = 103 -, year = 1976 -, pages = "489--539" -, update = "97.11 bibrelex" +, author = "J. E. Taylor" +, title = "The structure of singularities in soap-bubble-like and soap-film-like minimal surfaces" +, journal = "Annals of Math." +, volume = 103 +, year = 1976 +, pages = "489--539" +, update = "97.11 bibrelex" } @techreport{t-smcpt-76 -, author = "R. H. Taylor" -, title = "The synthesis of manipulator control programs from task-level specifications" -, number = "AIM-282" -, institution = "Artificial Intelligence Laboratory, Stanford Univ." -, address = "Stanford, CA" -, month = jul -, year = 1976 -, update = "98.03 bibrelex" +, author = "R. H. Taylor" +, title = "The synthesis of manipulator control programs from task-level specifications" +, number = "AIM-282" +, institution = "Artificial Intelligence Laboratory, Stanford Univ." +, address = "Stanford, CA" +, month = jul +, year = 1976 +, update = "98.03 bibrelex" } @inproceedings{t-paegf-96 -, author = "M. Teichmann" -, title = "Probabilistic algorithms for efficient grasping and fixturing" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "277--282" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "M. Teichmann" +, title = "Probabilistic algorithms for efficient grasping and fixturing" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "277--282" +, update = "97.03 agarwal, 96.09 mitchell" } @incollection{t-stc-88 -, author = "M. Teichmann" -, title = "Shoving a table into a corner" -, editor = "G. Toussaint" -, booktitle = "Snapshots of computational and discrete geometry" -, publisher = "McGill Univ." -, year = 1988 -, pages = "99--118" -, note = "TR-SOCS 88.11" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "M. Teichmann" +, title = "Shoving a table into a corner" +, editor = "G. Toussaint" +, booktitle = "Snapshots of computational and discrete geometry" +, publisher = "McGill Univ." +, year = 1988 +, pages = "99--118" +, note = "TR-SOCS 88.11" +, update = "98.11 bibrelex, 98.07 bibrelex" } @inproceedings{t-stc-89 -, author = "M. Teichmann" -, title = "Shoving a table into a corner" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 9 +, author = "M. Teichmann" +, title = "Shoving a table into a corner" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 9 } @mastersthesis{t-wpop-89 -, author = "M. Teichmann" -, title = "Wedge Placement Optimization Problems" -, school = "School of Computer Science, McGill University" -, year = 1989 -, keywords = "master thesis" -, update = "98.11 bibrelex" +, author = "M. Teichmann" +, title = "Wedge Placement Optimization Problems" +, school = "School of Computer Science, McGill University" +, year = 1989 +, keywords = "master thesis" +, update = "98.11 bibrelex" } @inproceedings{tm-ragum-94 -, author = "M. Teichmann and B. Mishra" -, title = "Reactive algorithms for grasping using a modified parallel jaw gripper" -, booktitle = "Proc. IEEE Intl. Conf. on Robotics and Automation" -, month = may -, year = 1994 -, update = "98.11 bibrelex" +, author = "M. Teichmann and B. Mishra" +, title = "Reactive algorithms for grasping using a modified parallel jaw gripper" +, booktitle = "Proc. IEEE Intl. Conf. on Robotics and Automation" +, month = may +, year = 1994 +, update = "98.11 bibrelex" } @inproceedings{t-tdtc-99 -, author = "Monique Teillaud" -, title = "Three Dimensional Triangulations in {CGAL}" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "175--178" -, url = "https://hal.inria.fr/inria-00167199" -, update = "00.03 bibrelex+devillers, 99.07 bibrelex" +, author = "Monique Teillaud" +, title = "Three Dimensional Triangulations in {CGAL}" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "175--178" +, url = "https://inria.hal.science/inria-00167199" +, update = "00.03 bibrelex+devillers, 99.07 bibrelex" } @techreport{t-tdrac-92 -, author = "Monique Teillaud" -, title = "Towards dynamic randomized algorithms in computational geometry" -, type = "Research {Report}" -, number = 1727 -, institution = "INRIA" -, address = "BP93, 06902 Sophia-Antipolis, France" -, year = 1992 -, note = "English version of a French thesis" -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1727" -, succeeds = "t-vdard-91" -, precedes = "t-tdrac-93" -, update = "99.07 devillers, 98.07 bibrelex, 95.09 devillers, 95.01 devillers, 94.05 devillers, 93.05 devillers" +, author = "Monique Teillaud" +, title = "Towards dynamic randomized algorithms in computational geometry" +, type = "Research {Report}" +, number = 1727 +, institution = "INRIA" +, address = "BP93, 06902 Sophia-Antipolis, France" +, year = 1992 +, note = "English version of a French thesis" +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1727" +, succeeds = "t-vdard-91" +, precedes = "t-tdrac-93" +, update = "99.07 devillers, 98.07 bibrelex, 95.09 devillers, 95.01 devillers, 94.05 devillers, 93.05 devillers" } @book{t-tdrac-93 -, author = "Monique Teillaud" -, title = "Towards dynamic randomized algorithms in computational geometry" -, series = "Lecture Notes Comput. Sci." -, volume = 758 -, publisher = "Springer-Verlag" -, year = 1993 -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1727" -, succeeds = "t-tdrac-92" -, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 94.05 devillers" +, author = "Monique Teillaud" +, title = "Towards dynamic randomized algorithms in computational geometry" +, series = "Lecture Notes Comput. Sci." +, volume = 758 +, publisher = "Springer-Verlag" +, year = 1993 +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1727" +, succeeds = "t-tdrac-92" +, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 94.05 devillers" } @inproceedings{t-usodt-95 -, author = "Monique Teillaud" -, title = "Union and Split Operations on Dynamic Trapezoidal Maps" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "181--186" -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=2486" -, precedes = "t-usodt-00" -, update = "01.11 devillers, 96.01 devillers, 95.09 jones" +, author = "Monique Teillaud" +, title = "Union and Split Operations on Dynamic Trapezoidal Maps" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "181--186" +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=2486" +, precedes = "t-usodt-00" +, update = "01.11 devillers, 96.01 devillers, 95.09 jones" } @article{t-usodt-00 -, author = "M. Teillaud" -, title = "Union and split operations on dynamic trapezoidal maps" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "153--163" -, succeeds = "t-usodt-95" -, update = "01.11 devillers, 01.04 smid" +, author = "M. Teillaud" +, title = "Union and split operations on dynamic trapezoidal maps" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "153--163" +, succeeds = "t-usodt-95" +, update = "01.11 devillers, 01.04 smid" } @phdthesis{t-vdard-91 -, author = "Monique Teillaud" -, title = "Vers des algorithmes randomis{\'e}s dynamiques en g{\'e}om{\'e}trie algorithmique" -, type = "Th{\`e}se de Doctorat en Sciences" -, school = "Uni\-ver\-sit{\'e} Paris-Sud" -, address = "Orsay, France" -, year = 1991 -, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1727" -, keywords = "doctoral thesis" -, precedes = "t-tdrac-92" -, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 93.05 devillers" +, author = "Monique Teillaud" +, title = "Vers des algorithmes randomis{\'e}s dynamiques en g{\'e}om{\'e}trie algorithmique" +, type = "Th{\`e}se de Doctorat en Sciences" +, school = "Uni\-ver\-sit{\'e} Paris-Sud" +, address = "Orsay, France" +, year = 1991 +, url = "http://www.inria.fr/cgi-bin/wais_ra_sophia?question=1727" +, keywords = "doctoral thesis" +, precedes = "t-tdrac-92" +, update = "99.07 devillers, 95.09 devillers, 95.01 devillers, 93.05 devillers" } @article{t-ta-90 -, author = "G. Tel" -, title = "Total algorithms" -, journal = "Algorithms Rev." -, volume = 1 -, number = 1 -, year = 1990 -, pages = "13--42" -, keywords = "distributed algorithms, design methods, broadcast, mutual exclusion, election, termination detection" +, author = "G. Tel" +, title = "Total algorithms" +, journal = "Algorithms Rev." +, volume = 1 +, number = 1 +, year = 1990 +, pages = "13--42" +, keywords = "distributed algorithms, design methods, broadcast, mutual exclusion, election, termination detection" } @inproceedings{th-gvaic-93 -, author = "S. Teller and P. Hanrahan" -, title = "Global visibility algorithms for illumination computations" -, booktitle = "Proc. SIGGRAPH '93" -, year = 1993 -, pages = "239--246" -, keywords = "visibility" -, update = "94.09 orourke" +, author = "S. Teller and P. Hanrahan" +, title = "Global visibility algorithms for illumination computations" +, booktitle = "Proc. SIGGRAPH '93" +, year = 1993 +, pages = "239--246" +, keywords = "visibility" +, update = "94.09 orourke" } @inproceedings{t-mgad-93 -, author = "S. J. Teller" -, title = "A Methodology for Geometric Algorithm Development" -, booktitle = "Communicating with Virtual Worlds" -, nickname = "CGI '93" -, publisher = "Springer-Verlag" -, address = "Lausanne, Switzerland" -, month = jun -, year = 1993 -, pages = "306--317" -, update = "98.07 bibrelex, 93.09 held" +, author = "S. J. Teller" +, title = "A Methodology for Geometric Algorithm Development" +, booktitle = "Communicating with Virtual Worlds" +, nickname = "CGI '93" +, publisher = "Springer-Verlag" +, address = "Lausanne, Switzerland" +, month = jun +, year = 1993 +, pages = "306--317" +, update = "98.07 bibrelex, 93.09 held" } @article{t-caals-92 -, author = "S. J. Teller" -, title = "Computing the antipenumbra of an area light source" -, journal = "Comput. Graph." -, volume = 26 -, number = 4 -, month = jul -, year = 1992 -, pages = "139--148" -, note = "Proc. SIGGRAPH '92" +, author = "S. J. Teller" +, title = "Computing the antipenumbra of an area light source" +, journal = "Comput. Graph." +, volume = 26 +, number = 4 +, month = jul +, year = 1992 +, pages = "139--148" +, note = "Proc. SIGGRAPH '92" } @phdthesis{t-vcdop-92 -, author = "S. J. Teller" -, title = "Visibility Computations in Densely Occluded Polyhedral Environments" -, school = "Dept. of Computer Science, University of California" -, address = "Berkeley" -, year = 1992 -, keywords = "graphics, visibility preprocessing, linear programming, spatial decomposition, visibility graphs, Plucker coordinates" -, update = "95.09 mitchell" +, author = "S. J. Teller" +, title = "Visibility Computations in Densely Occluded Polyhedral Environments" +, school = "Dept. of Computer Science, University of California" +, address = "Berkeley" +, year = 1992 +, keywords = "graphics, visibility preprocessing, linear programming, spatial decomposition, visibility graphs, Plucker coordinates" +, update = "95.09 mitchell" } @inproceedings{t-vfapv-93 -, author = "S. J. Teller" -, title = "Visualizing {Fortune's} algorithm for planar {Voronoi} diagrams" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = 393 -, keywords = "video review" -, cites = "d-slsv-34, f-savd-87, ps-cgi-85, ZZZ" -, update = "98.03 bibrelex, 93.09 jones" +, author = "S. J. Teller" +, title = "Visualizing {Fortune's} algorithm for planar {Voronoi} diagrams" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = 393 +, keywords = "video review" +, cites = "d-slsv-34, f-savd-87, ps-cgi-85, ZZZ" +, update = "98.03 bibrelex, 93.09 jones" } @article{ts-vpiw-91 -, author = "S. J. Teller and C. H. S{\'e}quin" -, title = "Visibility Preprocessing For Interactive Walkthroughs" -, journal = "Comput. Graph." -, volume = 25 -, number = 4 -, month = jul -, year = 1991 -, pages = "61--69" -, note = "Proc. SIGGRAPH '91" -, update = "93.09 milone+mitchell" +, author = "S. J. Teller and C. H. S{\'e}quin" +, title = "Visibility Preprocessing For Interactive Walkthroughs" +, journal = "Comput. Graph." +, volume = 25 +, number = 4 +, month = jul +, year = 1991 +, pages = "61--69" +, note = "Proc. SIGGRAPH '91" +, update = "93.09 milone+mitchell" } @article{t-cagg-98 -, author = "Shang-Hua Teng" -, title = "Combinatorial aspects of geometric graphs" -, journal = "Comput. Geom. Theory Appl." -, volume = 9 -, year = 1998 -, pages = "277--287" -, update = "98.11 devillers" +, author = "Shang-Hua Teng" +, title = "Combinatorial aspects of geometric graphs" +, journal = "Comput. Geom. Theory Appl." +, volume = 9 +, year = 1998 +, pages = "277--287" +, update = "98.11 devillers" } @phdthesis{t-pssug-90 -, author = "S.-H. Teng" -, title = "Points, Spheres, and Separators: a unified geometric approach to graph partitioning" -, school = "School of Computer Science, Carnegie-Mellon University" -, year = 1990 -, note = "Report CMU-CS-91-184" -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "S.-H. Teng" +, title = "Points, Spheres, and Separators: a unified geometric approach to graph partitioning" +, school = "School of Computer Science, Carnegie-Mellon University" +, year = 1990 +, note = "Report CMU-CS-91-184" +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @article{tmpd-pavpt-97 -, author = "Y. Teng and D. Mount and E. Puppo and L. Davis" -, title = "Parallelizing an algorithm for visibility on polyhedral terrain" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "75--84" -, update = "99.11 bibrelex, 97.07 devillers" +, author = "Y. Teng and D. Mount and E. Puppo and L. Davis" +, title = "Parallelizing an algorithm for visibility on polyhedral terrain" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "75--84" +, update = "99.11 bibrelex, 97.07 devillers" } @phdthesis{t-ppgsv-93 -, author = "Y. Ansel Teng" -, title = "Parallel Processing of Geometric Structures: Visibility and Triangulation Algorithms" -, school = "University of Maryland" -, address = "College Park" -, year = 1993 -, note = "Also published as Center for Automation Research technical report CAR-TR-680" -, keywords = "doctoral thesis" -, update = "94.01 teng" +, author = "Y. Ansel Teng" +, title = "Parallel Processing of Geometric Structures: Visibility and Triangulation Algorithms" +, school = "University of Maryland" +, address = "College Park" +, year = 1993 +, note = "Also published as Center for Automation Research technical report CAR-TR-680" +, keywords = "doctoral thesis" +, update = "94.01 teng" } @techreport{td-vadtm-92 -, author = "Y. A. Teng and L. S. Davies" -, title = "Visibility Analysis on Digital Terrain Models and its Parallel Implementation" -, number = "CAR-TR-625" -, institution = "Center for Automation Research, University of Maryland" -, year = 1992 -, update = "96.09 kreveld" +, author = "Y. A. Teng and L. S. Davies" +, title = "Visibility Analysis on Digital Terrain Models and its Parallel Implementation" +, number = "CAR-TR-625" +, institution = "Center for Automation Research, University of Maryland" +, year = 1992 +, update = "96.09 kreveld" } @techreport{tdd-stn-91 -, author = "Y. Ansel Teng and D. {DeMenthon} and L. S. Davis" -, title = "Stealth terrain navigation" -, number = "CAR-TR-532" -, institution = "Center for Automation Research, University of Maryland" -, month = jan -, year = 1991 +, author = "Y. Ansel Teng and D. {DeMenthon} and L. S. Davis" +, title = "Stealth terrain navigation" +, number = "CAR-TR-532" +, institution = "Center for Automation Research, University of Maryland" +, month = jan +, year = 1991 } @article{tdd-stn-93 -, author = "Y. Ansel Teng and Daniel DeMenthon and Larry S. Davis" -, title = "Stealth terrain navigation" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = 23 -, number = 1 -, year = 1993 -, pages = "96--110" -, succeeds = "tdd-stn-91" -, update = "94.01 teng" +, author = "Y. Ansel Teng and Daniel DeMenthon and Larry S. Davis" +, title = "Stealth terrain navigation" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = 23 +, number = 1 +, year = 1993 +, pages = "96--110" +, succeeds = "tdd-stn-91" +, update = "94.01 teng" } @article{tsbp-dpatd-93 -, author = "Y. A. Teng and F. Sullivan and I. Beichl and E. Puppo" -, title = "A data-parallel algorithm for three-dimensional {Delaunay} triangulation and its implementation" -, journal = "SuperComputing 93" -, volume = "??" -, year = 1993 -, pages = "112--121" -, update = "97.11 bibrelex" +, author = "Y. A. Teng and F. Sullivan and I. Beichl and E. Puppo" +, title = "A data-parallel algorithm for three-dimensional {Delaunay} triangulation and its implementation" +, journal = "SuperComputing 93" +, volume = "??" +, year = 1993 +, pages = "112--121" +, update = "97.11 bibrelex" } @article{tt-tubni-91 -, author = "K. H. Teo and T. C. Tuan" -, title = "A tight upper bound for the number of intersections between two rectangular paths" -, journal = "BIT" -, volume = 31 -, month = nov -, year = 1991 -, pages = "598--606" -, keywords = "interference, intersection, rectangular path" -, update = "94.01 tuan" +, author = "K. H. Teo and T. C. Tuan" +, title = "A tight upper bound for the number of intersections between two rectangular paths" +, journal = "BIT" +, volume = 31 +, month = nov +, year = 1991 +, pages = "598--606" +, keywords = "interference, intersection, rectangular path" +, update = "94.01 tuan" } @article{tt-iubni-91 -, author = "K. H. Teo and T. C. Tuan" -, title = "An improved upper bound on the number of intersections between two rectangular paths" -, journal = "Inform. Process. Lett." -, volume = 37 -, number = 6 -, month = mar -, year = 1991 -, pages = "305--309" -, keywords = "interference, intersection, rectangular path" -, update = "94.01 tuan" +, author = "K. H. Teo and T. C. Tuan" +, title = "An improved upper bound on the number of intersections between two rectangular paths" +, journal = "Inform. Process. Lett." +, volume = 37 +, number = 6 +, month = mar +, year = 1991 +, pages = "305--309" +, keywords = "interference, intersection, rectangular path" +, update = "94.01 tuan" } @techreport{t-fanhp-80 -, author = "R. Terada" -, title = "Fast algorithms for {NP}-hard problems which are optimal or near-optimal with probability one" -, type = "Report" -, number = "RT-MAP-8003" -, institution = "Dept. Matema{\'a}tica Aplicada, Univ. Sao Paulo" -, address = "Sao Paulo, Brazil" -, year = 1980 +, author = "R. Terada" +, title = "Fast algorithms for {NP}-hard problems which are optimal or near-optimal with probability one" +, type = "Report" +, number = "RT-MAP-8003" +, institution = "Dept. Matema{\'a}tica Aplicada, Univ. Sao Paulo" +, address = "Sao Paulo, Brazil" +, year = 1980 } @article{t-cccm-85 -, author = "T. Terlaky" -, title = "A Convergent Criss-Cross Method" -, journal = "Math. Oper. and Stat. ser. Optimization" -, volume = 16 -, year = 1985 -, pages = "683--690" -, update = "97.11 bibrelex" +, author = "T. Terlaky" +, title = "A Convergent Criss-Cross Method" +, journal = "Math. Oper. and Stat. ser. Optimization" +, volume = 16 +, year = 1985 +, pages = "683--690" +, update = "97.11 bibrelex" } @article{t-fccmo-87 -, author = "T. Terlaky" -, title = "A Finite Criss-Cross Method for Oriented Matroids" -, journal = "J. Combin. Theory Ser. B" -, volume = 42 -, year = 1987 -, pages = "319--327" -, update = "97.11 bibrelex" +, author = "T. Terlaky" +, title = "A Finite Criss-Cross Method for Oriented Matroids" +, journal = "J. Combin. Theory Ser. B" +, volume = 42 +, year = 1987 +, pages = "319--327" +, update = "97.11 bibrelex" } %%% What is Norwell's first initial? @incollection{twv-dmgbl-93 -, author = "M. T. Terlien and C. J. Van Westen and T. W. Van Asch" -, title = "Deterministic modeling in GIS-based landslide hazard assessment" -, editor = "Norwell" -, booktitle = "Geographical Information Systemss in Accessing Natural Hazards" -, publisher = "Kluwer" -, year = 1993 -, pages = "57--78" -, update = "98.03 agarwal" +, author = "M. T. Terlien and C. J. Van Westen and T. W. Van Asch" +, title = "Deterministic modeling in GIS-based landslide hazard assessment" +, editor = "Norwell" +, booktitle = "Geographical Information Systemss in Accessing Natural Hazards" +, publisher = "Kluwer" +, year = 1993 +, pages = "57--78" +, update = "98.03 agarwal" } @article{t-brtgi-80 -, author = "W. C. Thacker" -, title = "A Brief Review of Techniques for Generating Irregular Computational Grids" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 15 -, year = 1980 -, pages = "1335--1341" -, annote = "Title says it all." +, author = "W. C. Thacker" +, title = "A Brief Review of Techniques for Generating Irregular Computational Grids" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 15 +, year = 1980 +, pages = "1335--1341" +, annote = "Title says it all." } @article{t-ita-79 -, author = "W. C. Thacker" -, title = "An Improved Triangulation Algorithm" -, journal = "Appl. Math. Modelling" -, volume = 3 -, month = dec -, year = 1979 -, pages = "471--472" -, annote = "Wants to use triangulation defined by joining two - nodes if there is no shorter intersecting segment. This - is the same as GT. Proposes $O(n^2)$ algorithm (which I - don't think should work.)" +, author = "W. C. Thacker" +, title = "An Improved Triangulation Algorithm" +, journal = "Appl. Math. Modelling" +, volume = 3 +, month = dec +, year = 1979 +, pages = "471--472" +, annote = "Wants to use triangulation defined by joining two + nodes if there is no shorter intersecting segment. This + is the same as GT. Proposes $O(n^2)$ algorithm (which I + don't think should work.)" } @inproceedings{t-mlpra1-50 -, author = "H. Theil" -, title = "A rank-invariant method of linear and polynomial regression analysis I" -, booktitle = "Proc. Koninklijke Nederlandse Akademie van Wetenschappen" -, volume = 53 -, year = 1950 -, pages = "386--392" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "H. Theil" +, title = "A rank-invariant method of linear and polynomial regression analysis I" +, booktitle = "Proc. Koninklijke Nederlandse Akademie van Wetenschappen" +, volume = 53 +, year = 1950 +, pages = "386--392" +, update = "98.11 bibrelex, 98.07 bibrelex" } @inproceedings{t-mlpra2-50 -, author = "H. Theil" -, title = "A rank-invariant method of linear and polynomial regression analysis II" -, booktitle = "Proc. Koninklijke Nederlandse Akademie van Wetenschappen" -, volume = 53 -, year = 1990 -, pages = "521--525" -, update = "98.11 bibrelex" +, author = "H. Theil" +, title = "A rank-invariant method of linear and polynomial regression analysis II" +, booktitle = "Proc. Koninklijke Nederlandse Akademie van Wetenschappen" +, volume = 53 +, year = 1990 +, pages = "521--525" +, update = "98.11 bibrelex" } @inproceedings{t-mlpra3-50 -, author = "H. Theil" -, title = "A rank-invariant method of linear and polynomial regression analysis III" -, booktitle = "Proc. Koninklijke Nederlandse Akademie van Wetenschappen" -, volume = 53 -, year = 1990 -, pages = "1397--1412" -, update = "98.11 bibrelex" +, author = "H. Theil" +, title = "A rank-invariant method of linear and polynomial regression analysis III" +, booktitle = "Proc. Koninklijke Nederlandse Akademie van Wetenschappen" +, volume = 53 +, year = 1990 +, pages = "1397--1412" +, update = "98.11 bibrelex" } @article{tn-sopub-87 -, author = "W. C. Thibault and B. F. Naylor" -, title = "Set Operations on Polyhedra Using Binary Space Partitioning Trees" -, journal = "Comput. Graph." -, volume = 21 -, number = 4 -, year = 1987 -, pages = "153--162" -, note = "Proc. SIGGRAPH '87" -, update = "93.09 held" +, author = "W. C. Thibault and B. F. Naylor" +, title = "Set Operations on Polyhedra Using Binary Space Partitioning Trees" +, journal = "Comput. Graph." +, volume = 21 +, number = 4 +, year = 1987 +, pages = "153--162" +, note = "Proc. SIGGRAPH '87" +, update = "93.09 held" } @phdthesis{t-eapkg-96 -, author = "C. Thiel" -, title = "Effiziente {Algorithmen} f{\"u}r {Probleme} der {Kollisionserkennung} und der geometrischen {Optimierung}" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Saarlandes" -, address = "Saarbr{\"u}cken, Germany" -, year = 1996 -, keywords = "doctoral thesis" -, update = "96.01 smid" +, author = "C. Thiel" +, title = "Effiziente {Algorithmen} f{\"u}r {Probleme} der {Kollisionserkennung} und der geometrischen {Optimierung}" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Saarlandes" +, address = "Saarbr{\"u}cken, Germany" +, year = 1996 +, keywords = "doctoral thesis" +, update = "96.01 smid" } @mastersthesis{t-ep-91 -, author = "T. Thiele" -, title = "Extremalprobleme f{\"u}r {Punktemengen}" -, type = "Masters Thesis" -, school = "Fachbereich Mathematik, Freie Univ. Berlin" -, address = "Berlin, Germany" -, year = 1991 -, keywords = "masters thesis" -, update = "97.03 gaertner+salinger" +, author = "T. Thiele" +, title = "Extremalprobleme f{\"u}r {Punktemengen}" +, type = "Masters Thesis" +, school = "Fachbereich Mathematik, Freie Univ. Berlin" +, address = "Berlin, Germany" +, year = 1991 +, keywords = "masters thesis" +, update = "97.03 gaertner+salinger" } @mastersthesis{t-dnsga-86 -, author = "G. Thiemt" -, title = "Die numerische {Stabilit{\"a}t} geometrischer {Algorithmen}" -, school = "Universit{\"a}t Karlsruhe" -, address = "Karlsruhe, Germany" -, month = oct -, year = 1986 -, note = "Diploma Thesis" -, keywords = "master thesis" -, update = "98.03 bibrelex" +, author = "G. Thiemt" +, title = "Die numerische {Stabilit{\"a}t} geometrischer {Algorithmen}" +, school = "Universit{\"a}t Karlsruhe" +, address = "Karlsruhe, Germany" +, month = oct +, year = 1986 +, note = "Diploma Thesis" +, keywords = "master thesis" +, update = "98.03 bibrelex" } @article{t-pala-11 -, author = "A. H. Thiessen" -, title = "Precipitation Averages for Large Areas" -, journal = "Monthly Weather Review" -, volume = 39 -, month = jul -, year = 1911 -, pages = "1082--1084" -, update = "93.09 held" +, author = "A. H. Thiessen" +, title = "Precipitation Averages for Large Areas" +, journal = "Monthly Weather Review" +, volume = 39 +, month = jul +, year = 1911 +, pages = "1082--1084" +, update = "93.09 held" } @incollection{t-sldva-65 -, author = "R. Thom" -, title = "Sur l'homologie des vari\'et\'es alg\'ebriques re\'elles" -, editor = "S. S. Cairns" -, booktitle = "Differential and Combinatorial Topology" -, publisher = "Princeton University Press" -, address = "Princeton, NJ" -, year = 1965 -, pages = "255--265" -, update = "99.07 smid, 98.07 agarwal, 95.01 matousek" +, author = "R. Thom" +, title = "Sur l'homologie des vari\'et\'es alg\'ebriques re\'elles" +, editor = "S. S. Cairns" +, booktitle = "Differential and Combinatorial Topology" +, publisher = "Princeton University Press" +, address = "Princeton, NJ" +, year = 1965 +, pages = "255--265" +, update = "99.07 smid, 98.07 agarwal, 95.01 matousek" } @article{tc-saeca-89 -, author = "Samuel M. Thomas and Y. T. Chan" -, title = "A simple approach for the estimation of circular arc and its radius" -, journal = "Comput. Vision Graph. Image Process." -, volume = 45 -, year = 1989 -, pages = "362--370" -, update = "98.11 bibrelex, 97.03 agarwal" +, author = "Samuel M. Thomas and Y. T. Chan" +, title = "A simple approach for the estimation of circular arc and its radius" +, journal = "Comput. Vision Graph. Image Process." +, volume = 45 +, year = 1989 +, pages = "362--370" +, update = "98.11 bibrelex, 97.03 agarwal" } @article{t-tppg-83 -, author = "C. Thomassen" -, title = "A theorem on paths in planar graphs" -, journal = "J. Graph Theory" -, volume = 7 -, number = 2 -, year = 1983 -, pages = "169--176" -, update = "98.11 bibrelex" +, author = "C. Thomassen" +, title = "A theorem on paths in planar graphs" +, journal = "J. Graph Theory" +, volume = 7 +, number = 2 +, year = 1983 +, pages = "169--176" +, update = "98.11 bibrelex" } @article{t-dpg-83 -, author = "C. Thomassen" -, title = "Deformations of plane graphs" -, journal = "J. Combin. Theory" -, volume = "??" -, year = 1983 -, update = "97.11 bibrelex" +, author = "C. Thomassen" +, title = "Deformations of plane graphs" +, journal = "J. Combin. Theory" +, volume = "??" +, year = 1983 +, update = "97.11 bibrelex" } @article{t-irpg-86 -, author = "C. Thomassen" -, title = "Interval representation of planar graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 40 -, year = 1986 -, pages = "9--20" -, keywords = "graph drawing" -, update = "94.05 franciosa" +, author = "C. Thomassen" +, title = "Interval representation of planar graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 40 +, year = 1986 +, pages = "9--20" +, keywords = "graph drawing" +, update = "94.05 franciosa" } @article{t-paog-89 -, author = "C. Thomassen" -, title = "Planar Acyclic Oriented Graphs" -, journal = "Order" -, volume = 5 -, number = 4 -, year = 1989 -, pages = "349--361" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "C. Thomassen" +, title = "Planar Acyclic Oriented Graphs" +, journal = "Order" +, volume = 5 +, number = 4 +, year = 1989 +, pages = "349--361" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{t-pihhg-76 -, author = "C. Thomassen" -, title = "Planar and infinite hypohamiltonian and hypotraceable graphs" -, journal = "Discrete Math." -, volume = 14 -, number = 4 -, month = apr -, year = 1976 -, pages = "377--389" -, update = "98.11 bibrelex" +, author = "C. Thomassen" +, title = "Planar and infinite hypohamiltonian and hypotraceable graphs" +, journal = "Discrete Math." +, volume = 14 +, number = 4 +, month = apr +, year = 1976 +, pages = "377--389" +, update = "98.11 bibrelex" } @article{t-pdfip-80 -, author = "C. Thomassen" -, title = "Planarity and Duality of Finite and Infinite Planar Graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 29 -, number = 2 -, year = 1980 -, pages = "244--271" -, keywords = "graph drawing" -, update = "98.07 tamassia, 93.09 tamassia" +, author = "C. Thomassen" +, title = "Planarity and Duality of Finite and Infinite Planar Graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 29 +, number = 2 +, year = 1980 +, pages = "244--271" +, keywords = "graph drawing" +, update = "98.07 tamassia, 93.09 tamassia" } @incollection{t-prg-84 -, author = "C. Thomassen" -, title = "Plane Representations of Graphs" -, editor = "J. A. Bondy and U. S. R. Murty" -, booktitle = "Progress in Graph Theory" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1984 -, pages = "43--69" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "C. Thomassen" +, title = "Plane Representations of Graphs" +, editor = "J. A. Bondy and U. S. R. Murty" +, booktitle = "Progress in Graph Theory" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1984 +, pages = "43--69" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{t-rdg-88 -, author = "C. Thomassen" -, title = "Rectilinear drawings of graphs" -, journal = "J. Graph Theory" -, volume = 12 -, year = 1988 -, pages = "335--341" -, update = "97.11 bibrelex" +, author = "C. Thomassen" +, title = "Rectilinear drawings of graphs" +, journal = "J. Graph Theory" +, volume = 12 +, year = 1988 +, pages = "335--341" +, update = "97.11 bibrelex" } @article{t-jstcs-92 -, author = "C. Thomassen" -, title = "The Jordan-Sch{\"o}nflies Theorem and the Classification of Surfaces" -, journal = "Amer. Math. Monthly" -, volume = 99 -, year = 1992 -, pages = "116--130" -, update = "95.09 devillers" +, author = "C. Thomassen" +, title = "The Jordan-Sch{\"o}nflies Theorem and the Classification of Surfaces" +, journal = "Amer. Math. Monthly" +, volume = 99 +, year = 1992 +, pages = "116--130" +, update = "95.09 devillers" } @inproceedings{tac-rsmw-92 -, author = "C. D. Thomborson and B. Alpern and L. Carter" -, title = "Rectilinear {Steiner} tree minimzation on a workstation" -, booktitle = "Proc. of the DIMACS Workshop on Comput. Support for Discr. Math." -, year = 1992 -, update = "98.11 bibrelex" +, author = "C. D. Thomborson and B. Alpern and L. Carter" +, title = "Rectilinear {Steiner} tree minimzation on a workstation" +, booktitle = "Proc. of the DIMACS Workshop on Comput. Support for Discr. Math." +, year = 1992 +, update = "98.11 bibrelex" } @inproceedings{tds-crsmt-87 -, author = "C. D. Thomborson and L. L. Deneen and G. M. Shute" -, title = "Computing a Rectilinear {Steiner} Minimal Tree in $n^{O(\sqrt{n})}$ Time" -, editor = "A. Albrecht and H. Jung and K. Mehlhorn" -, booktitle = "Parallel Algorithms and Architectures" -, publisher = "Akademie-Verlag Berlin" -, month = may -, year = 1987 -, pages = "176--83" -, update = "93.09 held" +, author = "C. D. Thomborson and L. L. Deneen and G. M. Shute" +, title = "Computing a Rectilinear {Steiner} Minimal Tree in $n^{O(\sqrt{n})}$ Time" +, editor = "A. Albrecht and H. Jung and K. Mehlhorn" +, booktitle = "Parallel Algorithms and Architectures" +, publisher = "Akademie-Verlag Berlin" +, month = may +, year = 1987 +, pages = "176--83" +, update = "93.09 held" } @inproceedings{t-atcv-79 -, author = "C. D. Thompson" -, title = "Area-time complexity for {VLSI}" -, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." -, year = 1979 -, pages = "81--88" -, precedes = "t-ftv-83" +, author = "C. D. Thompson" +, title = "Area-time complexity for {VLSI}" +, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." +, year = 1979 +, pages = "81--88" +, precedes = "t-ftv-83" } @article{t-ftv-83 -, author = "C. D. Thompson" -, title = "Fourier transforms in {VLSI}" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, year = 1983 -, pages = "1047--1057" -, succeeds = "t-atcv-79" -, precedes = "t-vcs-83" -, annote = "Model and upper bounds only" +, author = "C. D. Thompson" +, title = "Fourier transforms in {VLSI}" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, year = 1983 +, pages = "1047--1057" +, succeeds = "t-atcv-79" +, precedes = "t-vcs-83" +, annote = "Model and upper bounds only" } @article{t-vcs-83 -, author = "C. D. Thompson" -, title = "The {VLSI} complexity of sorting" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, year = 1983 -, pages = "1171--1184" -, succeeds = "t-ftv-83" -, annote = "Model and upper bounds only" +, author = "C. D. Thompson" +, title = "The {VLSI} complexity of sorting" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, year = 1983 +, pages = "1171--1184" +, succeeds = "t-ftv-83" +, annote = "Model and upper bounds only" } @article{tk-smcpc-77 -, author = "C. D. Thompson and H. T. Kung" -, title = "Sorting on a mesh-connected parallel computer" -, journal = "Commun. ACM" -, volume = 20 -, year = 1977 -, pages = "263--271" -, update = "97.11 bibrelex" +, author = "C. D. Thompson and H. T. Kung" +, title = "Sorting on a mesh-connected parallel computer" +, journal = "Commun. ACM" +, volume = 20 +, year = 1977 +, pages = "263--271" +, update = "97.11 bibrelex" } @book{twm-ngg-85 -, author = "Joe F. Thompson and Z. U. A. Warsi and C. Wayne Mastin" -, title = "Numerical Grid Generation" -, publisher = "Elsevier Science Publishing Co., Inc." -, address = "New York, New York" -, year = 1985 -, update = "98.11 bibrelex" +, author = "Joe F. Thompson and Z. U. A. Warsi and C. Wayne Mastin" +, title = "Numerical Grid Generation" +, publisher = "Elsevier Science Publishing Co., Inc." +, address = "New York, New York" +, year = 1985 +, update = "98.11 bibrelex" } @inproceedings{tpbhss-mbldo-90 -, author = "W. Thompson and H. Pick and B. Bennett and M. Heinrichs and S. Savitt an K. Smith" -, title = "Map-based localization: the 'drop-off' problem" -, booktitle = "Proc. DARPA Image Understanding Workshop" -, year = 1990 -, pages = "706--719" -, update = "97.11 bibrelex" +, author = "W. Thompson and H. Pick and B. Bennett and M. Heinrichs and S. Savitt an K. Smith" +, title = "Map-based localization: the 'drop-off' problem" +, booktitle = "Proc. DARPA Image Understanding Workshop" +, year = 1990 +, pages = "706--719" +, update = "97.11 bibrelex" } @phdthesis{t-fvnrr-84 -, author = "C. E. Thorpe" -, title = "FIDO: {Vision} and Navigation for a Robot Rover" -, type = "Ph.{D}. Thesis" -, school = "Department of Computer Science, Carnegie-Mellon University" -, year = 1984 -, note = "CMU-CS-84-168" -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "C. E. Thorpe" +, title = "FIDO: {Vision} and Navigation for a Robot Rover" +, type = "Ph.{D}. Thesis" +, school = "Department of Computer Science, Carnegie-Mellon University" +, year = 1984 +, note = "CMU-CS-84-168" +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @inproceedings{t-prppm-84 -, author = "C. E. Thorpe" -, title = "Path Relaxation: {Path} Planning for a Mobile Robot" -, booktitle = "Proc. AAAI National Conference on Artificial Intelligence" -, year = 1984 -, pages = "318--321" -, update = "93.09 milone+mitchell" +, author = "C. E. Thorpe" +, title = "Path Relaxation: {Path} Planning for a Mobile Robot" +, booktitle = "Proc. AAAI National Conference on Artificial Intelligence" +, year = 1984 +, pages = "318--321" +, update = "93.09 milone+mitchell" } @inproceedings{t-usssp-97 -, author = "Mikkel Thorup" -, title = "Undirected Single Source Shortest Path in Linear Time" -, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '97" -, year = 1997 -, pages = "To appear" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Mikkel Thorup" +, title = "Undirected Single Source Shortest Path in Linear Time" +, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '97" +, year = 1997 +, pages = "To appear" +, update = "98.07 bibrelex, 98.03 mitchell" } @misc{t-hdp-93 -, author = "W. Thurston" -, title = "Hexahedral decomposition of polyhedra" -, month = oct -, year = 1993 -, url = "https://www.ics.uci.edu/~eppstein/gina/Thurston-hexahedra" -, update = "97.11 bibrelex" +, author = "W. Thurston" +, title = "Hexahedral decomposition of polyhedra" +, month = oct +, year = 1993 +, url = "https://www.ics.uci.edu/~eppstein/gina/Thurston-hexahedra" +, update = "97.11 bibrelex" } @book{t-tdgt1-97 -, author = "William Thurston" -, title = "Three-Dimensional Geometry and Topology, Volume 1" -, publisher = "Princeton University Press" -, address = "New Jersey" -, year = 1997 -, update = "00.11 smid, 00.07 icking, 99.07 orourke" +, author = "William Thurston" +, title = "Three-Dimensional Geometry and Topology, Volume 1" +, publisher = "Princeton University Press" +, address = "New Jersey" +, year = 1997 +, update = "00.11 smid, 00.07 icking, 99.07 orourke" } @techreport{t-gt3m-88 -, author = "W. P. Thurston" -, title = "The geometry and topology of 3-manifolds" -, type = "Note" -, institution = "Princeton University" -, year = 1988 -, update = "97.11 bibrelex" +, author = "W. P. Thurston" +, title = "The geometry and topology of 3-manifolds" +, type = "Note" +, institution = "Princeton University" +, year = 1988 +, update = "97.11 bibrelex" } @techreport{t-gcvdm-86 -, author = "W. P. Thurston" -, title = "The geometry of circles: {Voronoi} diagrams, {Moebius} transformations, convex hulls, {Fortune}'s algorithm, the cut locus, and parametrization of shapes" -, institution = "Princeton University" -, year = 1986 -, update = "00.03 bibrelex" +, author = "W. P. Thurston" +, title = "The geometry of circles: {Voronoi} diagrams, {Moebius} transformations, convex hulls, {Fortune}'s algorithm, the cut locus, and parametrization of shapes" +, institution = "Princeton University" +, year = 1986 +, update = "00.03 bibrelex" } @article{t-tdmkg-82 -, author = "W. P. Thurston" -, title = "Three dimensional manifolds, {Kleinian} groups, and hyperbolic geometry" -, journal = "Bull. Amer. Math. Soc." -, volume = 6 -, number = 3 -, year = 1982 -, pages = "357--381" +, author = "W. P. Thurston" +, title = "Three dimensional manifolds, {Kleinian} groups, and hyperbolic geometry" +, journal = "Bull. Amer. Math. Soc." +, volume = 6 +, number = 3 +, year = 1982 +, pages = "357--381" } @inproceedings{tn-kbedg-87 -, author = "W. F. Tichy and F. J. Newbery" -, title = "Knowledge-based Editors for Directed Graphs" -, editor = "H. K. Nichols and D. Simpson" -, booktitle = "Proc. 1st European Software Engineering Conference" -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1987 -, pages = "109--117" -, keywords = "graph drawing" -, update = "96.09 agarwal, 93.09 tamassia" +, author = "W. F. Tichy and F. J. Newbery" +, title = "Knowledge-based Editors for Directed Graphs" +, editor = "H. K. Nichols and D. Simpson" +, booktitle = "Proc. 1st European Software Engineering Conference" +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1987 +, pages = "109--117" +, keywords = "graph drawing" +, update = "96.09 agarwal, 93.09 tamassia" } % P. J. W. ten Hagen, editor, Elsevier North-Holland, 1983 @article{tmt-gdgdm-83 -, author = "M. Tikkanen and M. J. M{\"a}ntyl{\"a} and M. Tamminen" -, title = "{GWB}/{DMS}: {A} Geometric Data Manager" -, journal = "Proc. Eurographics '83" -, volume = "??" -, year = 1983 -, pages = "99--112" -, update = "97.07 forrest, 94.05 devillers" +, author = "M. Tikkanen and M. J. M{\"a}ntyl{\"a} and M. Tamminen" +, title = "{GWB}/{DMS}: {A} Geometric Data Manager" +, journal = "Proc. Eurographics '83" +, volume = "??" +, year = 1983 +, pages = "99--112" +, update = "97.07 forrest, 94.05 devillers" } @article{t-aciho-88 -, author = "V. S. Tikunov" -, title = "Anamorphated cartographic images: historical outline and construction technique" -, journal = "Cartography (Austral.)" -, volume = 17 -, year = 1988 -, pages = "1--8" -, update = "98.03 bibrelex" +, author = "V. S. Tikunov" +, title = "Anamorphated cartographic images: historical outline and construction technique" +, journal = "Cartography (Austral.)" +, volume = 17 +, year = 1988 +, pages = "1--8" +, update = "98.03 bibrelex" } @techreport{t-tda-81 -, author = "J. S. Tilford" -, title = "Tree Drawing Algorithms" -, number = "UIUCDCS-R-81-1055" -, institution = "Department of Computer Science, University of Illinois at Urbana-Champaign" -, year = 1981 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. S. Tilford" +, title = "Tree Drawing Algorithms" +, number = "UIUCDCS-R-81-1055" +, institution = "Department of Computer Science, University of Illinois at Urbana-Champaign" +, year = 1981 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{th-otdp-84 -, author = "W. Tiller and E. Hanson" -, title = "Offsets of Two Dimensional Profiles" -, journal = "IEEE Comput. Graph. Appl." -, volume = 4 -, number = 9 -, month = sep -, year = 1984 -, pages = "36--46" -, update = "93.09 held" +, author = "W. Tiller and E. Hanson" +, title = "Offsets of Two Dimensional Profiles" +, journal = "IEEE Comput. Graph. Appl." +, volume = 4 +, number = 9 +, month = sep +, year = 1984 +, pages = "36--46" +, update = "93.09 held" } @article{t-nodac-84 -, author = "R. B. Tilove" -, title = "A null-object detection algorithm for constructive solid geometry" -, journal = "Commun. ACM" -, volume = 27 -, year = 1984 -, pages = "684--694" +, author = "R. B. Tilove" +, title = "A null-object detection algorithm for constructive solid geometry" +, journal = "Commun. ACM" +, volume = 27 +, year = 1984 +, pages = "684--694" } @techreport{t-sgsmc-80 -, author = "R. B. Tilove" -, title = "A study of geometric set-membership classification" -, type = "Report" -, number = "TM-30" -, institution = "Production Automat. Project, Univ. Rochester" -, address = "Rochester, NY" -, year = 1980 +, author = "R. B. Tilove" +, title = "A study of geometric set-membership classification" +, type = "Report" +, number = "TM-30" +, institution = "Production Automat. Project, Univ. Rochester" +, address = "Rochester, NY" +, year = 1980 } @techreport{t-lpccs-80 -, author = "R. B. Tilove" -, title = "Line/polygon classification: a case study of the complexity of geometric computation" -, type = "Report" -, number = "TM-37" -, institution = "Production Automat. Project, Univ. Rochester" -, address = "Rochester, NY" -, year = 1980 +, author = "R. B. Tilove" +, title = "Line/polygon classification: a case study of the complexity of geometric computation" +, type = "Report" +, number = "TM-37" +, institution = "Production Automat. Project, Univ. Rochester" +, address = "Rochester, NY" +, year = 1980 } @article{t-smcua-80 -, author = "R. B. Tilove" -, title = "Set membership classification: a unified approach to geometric intersection problems" -, journal = "IEEE Trans. Comput." -, volume = "C-29" -, year = 1980 -, pages = "874--883" +, author = "R. B. Tilove" +, title = "Set membership classification: a unified approach to geometric intersection problems" +, journal = "IEEE Trans. Comput." +, volume = "C-29" +, year = 1980 +, pages = "874--883" } @article{tr-cboge-80 -, author = "R. B. Tilove and A. A. G. Requicha" -, title = "Closure of boolean operations on geometric entities" -, journal = "Comput. Aided Design" -, volume = 12 -, year = 1980 -, pages = "219--220" +, author = "R. B. Tilove and A. A. G. Requicha" +, title = "Closure of boolean operations on geometric entities" +, journal = "Comput. Aided Design" +, volume = 12 +, year = 1980 +, pages = "219--220" } @article{ts-cggps-80 -, author = "?? Timmer and ?? Stern" -, title = "Computation of global geometric properties of solid objects" -, journal = "Comput. Aided Design" -, volume = 12 -, year = 1980 -, pages = "301--304" -, update = "98.07 bibrelex" +, author = "?? Timmer and ?? Stern" +, title = "Computation of global geometric properties of solid objects" +, journal = "Comput. Aided Design" +, volume = 12 +, year = 1980 +, pages = "301--304" +, update = "98.07 bibrelex" } @article{t-fpcpv-91 -, author = "John C. Tipper" -, title = "{FORTRAN} Programs To Construct The Planar {Voronoi} Diagram" -, journal = "Comput. Geosci." -, volume = 17 -, number = 5 -, year = 1991 -, pages = "597--632" -, keywords = "Voronoi diagrams, Delaunay triangulation, spatial data structures" -, annote = "Incremental flip algorithm. Points are sorted so that - they are outside CH. Triangulates inside polygon by - slicing it up into convex pieces, triangulating, then - gluing it back together and flipping." -, abstract = "The Voronoi diagram and its geometric dual, the - Delaunay triangulation, both have been applied - extensively in spatial modeling and analysis. This - paper gives two FORTRAN programs which use a new - algorithm that creates the Voronoi diagram and Delaunay - triangulation rapidly and efficiently for large data - sets (N greater than 1000). The first program applies - to the special situation of data points lying either in - an open domain or in a simply connected closed domain - bounded by their convex hull: under certain conditions - the running time of this program is linear in the - number of data points. The second program applies to - the general situation of data points lying in a domain - that may be open or closed, simply or multiply - connected, and have convex or reentrant boundaries. A - GKS-based plotting program to give graphic output also - is provided. (Author abstract) 24 Refs." +, author = "John C. Tipper" +, title = "{FORTRAN} Programs To Construct The Planar {Voronoi} Diagram" +, journal = "Comput. Geosci." +, volume = 17 +, number = 5 +, year = 1991 +, pages = "597--632" +, keywords = "Voronoi diagrams, Delaunay triangulation, spatial data structures" +, annote = "Incremental flip algorithm. Points are sorted so that + they are outside CH. Triangulates inside polygon by + slicing it up into convex pieces, triangulating, then + gluing it back together and flipping." +, abstract = "The Voronoi diagram and its geometric dual, the + Delaunay triangulation, both have been applied + extensively in spatial modeling and analysis. This + paper gives two FORTRAN programs which use a new + algorithm that creates the Voronoi diagram and Delaunay + triangulation rapidly and efficiently for large data + sets (N greater than 1000). The first program applies + to the special situation of data points lying either in + an open domain or in a simply connected closed domain + bounded by their convex hull: under certain conditions + the running time of this program is linear in the + number of data points. The second program applies to + the general situation of data points lying in a domain + that may be open or closed, simply or multiply + connected, and have convex or reentrant boundaries. A + GKS-based plotting program to give graphic output also + is provided. (Author abstract) 24 Refs." } @article{t-siapv-90 -, author = "John C. Tipper" -, title = "Straightforward Iterative Algorithm For The Planar {Voronoi} Diagram" -, journal = "Inform. Process. Lett." -, volume = 34 -, number = 3 -, month = apr -, year = 1990 -, pages = "155--160" -, keywords = "spatial data structures, triangulation, Voronoi diagrams, iterative algorithms, Delaunay triangulation" -, annote = "Your basic incremental algorithm. Points are sorted by - X coordinate." -, abstract = "Several published algorithms construct the planar - N-point Voronoi diagram by adding the points in turn to - a digram already constructed for a subset of those - points. The algorithm described here works in this way, - but stipulates that every added point be outside the - convex hull of the already constructed partial diagram. - This stipulation, which is implemented by presorting - the points by increasing x-coordinate, ensures that the - core of the algorithm runs in almost linear time. The - algorithm is inherently iterative, not recursive, and - provides a rapid, efficient way to construct the - Voronoi diagram for large data sets. (Author abstract) - 16 Refs." +, author = "John C. Tipper" +, title = "Straightforward Iterative Algorithm For The Planar {Voronoi} Diagram" +, journal = "Inform. Process. Lett." +, volume = 34 +, number = 3 +, month = apr +, year = 1990 +, pages = "155--160" +, keywords = "spatial data structures, triangulation, Voronoi diagrams, iterative algorithms, Delaunay triangulation" +, annote = "Your basic incremental algorithm. Points are sorted by + X coordinate." +, abstract = "Several published algorithms construct the planar + N-point Voronoi diagram by adding the points in turn to + a digram already constructed for a subset of those + points. The algorithm described here works in this way, + but stipulates that every added point be outside the + convex hull of the already constructed partial diagram. + This stipulation, which is implemented by presorting + the points by increasing x-coordinate, ensures that the + core of the algorithm runs in almost linear time. The + algorithm is inherently iterative, not recursive, and + provides a rapid, efficient way to construct the + Voronoi diagram for large data sets. (Author abstract) + 16 Refs." } @article{t-odsga-75 -, author = "D. M. Titterington" -, title = "Optimal design: some geometrical aspects of {D}-optimality" -, journal = "Biometrika" -, volume = 62 -, number = 2 -, year = 1975 -, pages = "313--320" -, update = "98.07 bibrelex" +, author = "D. M. Titterington" +, title = "Optimal design: some geometrical aspects of {D}-optimality" +, journal = "Biometrika" +, volume = 62 +, number = 2 +, year = 1975 +, pages = "313--320" +, update = "98.07 bibrelex" } @article{t-ctud-73 -, author = "W. R. Tobler" -, title = "A continous transformation useful for districting" -, journal = "Ann. New York Acad. Sci." -, volume = 219 -, year = 1973 -, pages = "215--220" -, update = "98.03 bibrelex" +, author = "W. R. Tobler" +, title = "A continous transformation useful for districting" +, journal = "Ann. New York Acad. Sci." +, volume = 219 +, year = 1973 +, pages = "215--220" +, update = "98.03 bibrelex" } @article{t-lqpom-85 -, author = "M. Todd" -, title = "Linear and Quadratic Programming in Oriented Matroids" -, journal = "J. Combin. Theory Ser. B" -, volume = 39 -, year = 1985 -, pages = "105--133" -, update = "97.11 bibrelex" +, author = "M. Todd" +, title = "Linear and Quadratic Programming in Oriented Matroids" +, journal = "J. Combin. Theory Ser. B" +, volume = 39 +, year = 1985 +, pages = "105--133" +, update = "97.11 bibrelex" } @incollection{t-mp-97 -, author = "M. J. Todd" -, title = "Mathematical programming" -, chapter = 39 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "711--732" -, update = "97.11 orourke" +, author = "M. J. Todd" +, title = "Mathematical programming" +, chapter = 39 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "711--732" +, update = "97.11 orourke" } @book{t-cfpa-76 -, author = "M. J. Todd" -, title = "The Computation of Fixed Points and Applications" -, publisher = "Springer-Verlag" -, address = "Berlin" -, year = 1976 -, update = "97.11 bibrelex" +, author = "M. J. Todd" +, title = "The Computation of Fixed Points and Applications" +, publisher = "Springer-Verlag" +, address = "Berlin" +, year = 1976 +, update = "97.11 bibrelex" } @article{t-ktgtc-89 -, author = "P. Todd" -, title = "A $k$-tree generalization that characterizes consistency of dimensioned engineering drawings" -, journal = "SIAM J. Discrete Math." -, volume = 2 -, year = 1989 -, pages = "255--261" -, update = "97.11 bibrelex" +, author = "P. Todd" +, title = "A $k$-tree generalization that characterizes consistency of dimensioned engineering drawings" +, journal = "SIAM J. Discrete Math." +, volume = 2 +, year = 1989 +, pages = "255--261" +, update = "97.11 bibrelex" } -% , number = 10 -% , month = dec +% , number = 10 +% , month = dec @article{t-prnie-95 -, author = "George W. Tokarsky" -, title = "Polygonal Rooms Not Illuminable from Every Point" -, journal = "Amer. Math. Monthly" -, volume = 102 -, year = 1995 -, pages = "867--879" -, keywords = "billiards, visibility with reflection, geometric optics, simple polygons" -, comments = "Solves an old geometric problem originally published in +, author = "George W. Tokarsky" +, title = "Polygonal Rooms Not Illuminable from Every Point" +, journal = "Amer. Math. Monthly" +, volume = 102 +, year = 1995 +, pages = "867--879" +, keywords = "billiards, visibility with reflection, geometric optics, simple polygons" +, comments = "Solves an old geometric problem originally published in \cite{k-iepri-69} by giving an example of a simple polygon in which there is a placement of a single point light source that does not light up the polygon, if the light is allowed to reflect off the polygon walls according to the laws of geometric optics." -, update = "99.07 orourke, 96.01 aronov" +, update = "99.07 orourke, 96.01 aronov" } @techreport{t-dmvdt-88 -, author = "T. Tokuyama" -, title = "Deformation of merged {Voronoi} diagrams with translation" -, type = "Report" -, number = "Rep. TR87-0049" -, institution = "IBM Tokyo Research Laboratory" -, year = 1988 -, update = "94.09 bernal" +, author = "T. Tokuyama" +, title = "Deformation of merged {Voronoi} diagrams with translation" +, type = "Report" +, number = "Rep. TR87-0049" +, institution = "IBM Tokyo Research Laboratory" +, year = 1988 +, update = "94.09 bernal" } @inproceedings{t-mpopm-01 -, author = "Takeshi Tokuyama" -, title = "Minimax parametric optimization problems and multi-dimensional parametric searching" -, booktitle = "Proc. 33rd Annu. ACM Sympos. Theory Comput." -, year = 2001 -, pages = "75--83" -, update = "02.03 cheong" +, author = "Takeshi Tokuyama" +, title = "Minimax parametric optimization problems and multi-dimensional parametric searching" +, booktitle = "Proc. 33rd Annu. ACM Sympos. Theory Comput." +, year = 2001 +, pages = "75--83" +, update = "02.03 cheong" } @article{t-oqs-97 -, author = "T. Tokuyama" -, title = "Orthogonal Queries in Segments" -, journal = "Algorithmica" -, volume = 18 -, year = 1997 -, pages = "229--245" -, update = "97.11 smid" +, author = "T. Tokuyama" +, title = "Orthogonal Queries in Segments" +, journal = "Algorithmica" +, volume = 18 +, year = 1997 +, pages = "229--245" +, update = "97.11 smid" } @inproceedings{t-oqst-94 -, author = "T. Tokuyama" -, title = "Orthogonal Queries in Segments and Triangles" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "505--513" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" +, author = "T. Tokuyama" +, title = "Orthogonal Queries in Segments and Triangles" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "505--513" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" } @inproceedings{tn-gamca-91 -, author = "T. Tokuyama and J. Nakano" -, title = "Geometric algorithms for a minimum cost assignment problem" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "262--271" -, keywords = "optimization" -, cites = "ae-tpss-87, clr-ia-90, cw-mmap-87, ff-fn-62, fr-etbs-75, ft-fhtui-87, gt-fsanp-89, nt-scs-90, r-lnra-90, ZZZ" -, update = "97.11 bibrelex" +, author = "T. Tokuyama and J. Nakano" +, title = "Geometric algorithms for a minimum cost assignment problem" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "262--271" +, keywords = "optimization" +, cites = "ae-tpss-87, clr-ia-90, cw-mmap-87, ff-fn-62, fr-etbs-75, ft-fhtui-87, gt-fsanp-89, nt-scs-90, r-lnra-90, ZZZ" +, update = "97.11 bibrelex" } @article{t-aps-93 -, author = "S. Toledo" -, title = "Approximate parametric search" -, journal = "Inform. Process. Lett." -, volume = 47 -, year = 1993 -, pages = "1--4" -, update = "96.05 agarwal" +, author = "S. Toledo" +, title = "Approximate parametric search" +, journal = "Inform. Process. Lett." +, volume = 47 +, year = 1993 +, pages = "1--4" +, update = "96.05 agarwal" } @inproceedings{t-epcp-91 -, author = "S. Toledo" -, title = "Extremal point containment problems" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "176--185" -, keywords = "optimization, prune and search, lower envelopes" -, cites = "ab-pcp1s-87, ab-pptr-88, acgoy-pcg-88, ass-sulbl-89, c-pcp-83, c-rcsi-86, ck-plscc-89, ck-hcmpc-90, c-pms-86, e-acg-87, f-fapct-85, grs-kfcg-83, hs-ndssg-86, ks-empac-90, ls-ncfcc-87, ls-pptmc-87, m-apcad-83, py-prp-86, ss-pmp2g-83, v-pcp-75, ZZZ" -, update = "97.11 bibrelex" +, author = "S. Toledo" +, title = "Extremal point containment problems" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "176--185" +, keywords = "optimization, prune and search, lower envelopes" +, cites = "ab-pcp1s-87, ab-pptr-88, acgoy-pcg-88, ass-sulbl-89, c-pcp-83, c-rcsi-86, ck-plscc-89, ck-hcmpc-90, c-pms-86, e-acg-87, f-fapct-85, grs-kfcg-83, hs-ndssg-86, ks-empac-90, ls-ncfcc-87, ls-pptmc-87, m-apcad-83, py-prp-86, ss-pmp2g-83, v-pcp-75, ZZZ" +, update = "97.11 bibrelex" } @mastersthesis{t-epcpo-91 -, author = "S. Toledo" -, title = "Extremal Polygon Containment Problems and Other Issues in Parametric Searching" -, type = "M.S. Thesis" -, school = "Dept. Comput. Sci., Tel Aviv Univ." -, address = "Tel Aviv" -, year = 1991 -, keywords = "master thesis" -, succeeds = "st-epcp-91t" -, update = "98.11 bibrelex, 96.05 agarwal" +, author = "S. Toledo" +, title = "Extremal Polygon Containment Problems and Other Issues in Parametric Searching" +, type = "M.S. Thesis" +, school = "Dept. Comput. Sci., Tel Aviv Univ." +, address = "Tel Aviv" +, year = 1991 +, keywords = "master thesis" +, succeeds = "st-epcp-91t" +, update = "98.11 bibrelex, 96.05 agarwal" } @inproceedings{t-mnlcf-92 -, author = "Sivan Toledo" -, title = "Maximizing non-linear concave functions in fixed dimension" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "676--685" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "Sivan Toledo" +, title = "Maximizing non-linear concave functions in fixed dimension" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "676--685" +, update = "94.01 smid, 93.09 milone+mitchell" } @incollection{t-mnlcf-93 -, author = "Sivan Toledo" -, title = "Maximizing non-linear concave functions in fixed dimension" -, editor = "Panos M. Pardalos" -, booktitle = "Complexity in Numerical Computations" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1993 -, pages = "429--447" -, update = "97.03 agarwal" +, author = "Sivan Toledo" +, title = "Maximizing non-linear concave functions in fixed dimension" +, editor = "Panos M. Pardalos" +, booktitle = "Complexity in Numerical Computations" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1993 +, pages = "429--447" +, update = "97.03 agarwal" } @inproceedings{tx-dtn-95 -, author = "I. G. Tollis and C. Xia" -, title = "Drawing Telecommunication Networks" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "206--217" -, keywords = "graph drawing, network visualization" -, update = "95.01 tamassia" +, author = "I. G. Tollis and C. Xia" +, title = "Drawing Telecommunication Networks" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "206--217" +, keywords = "graph drawing, network visualization" +, update = "95.01 tamassia" } @book{t-giscm-90 -, author = "C. D. Tomlin" -, title = "Geographic Information Systems and Cartographic Modeling" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs" -, year = 1990 -, update = "96.09 kreveld" +, author = "C. D. Tomlin" +, title = "Geographic Information Systems and Cartographic Modeling" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs" +, year = 1990 +, update = "96.09 kreveld" } @book{tcm-chgd-76 -, author = "R. F. Tomlinson and H. W. Calkins and D. F. Marble" -, title = "Computer Handling of Geographical Data" -, publisher = "The UNESCO Press" -, address = "Paris" -, year = 1976 -, update = "98.11 bibrelex" +, author = "R. F. Tomlinson and H. W. Calkins and D. F. Marble" +, title = "Computer Handling of Geographical Data" +, publisher = "The UNESCO Press" +, address = "Paris" +, year = 1976 +, update = "98.11 bibrelex" } @inproceedings{t-oswrp-80 -, author = "M. Tompa" -, title = "An optimal solution to a wire-routing problem" -, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." -, year = 1980 -, pages = "161--176" -, precedes = "t-oswrp-81" +, author = "M. Tompa" +, title = "An optimal solution to a wire-routing problem" +, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." +, year = 1980 +, pages = "161--176" +, precedes = "t-oswrp-81" } @article{t-oswrp-81 -, author = "M. Tompa" -, title = "An optimal solution to a wire-routing problem" -, journal = "J. Comput. Syst. Sci." -, volume = 23 -, year = 1981 -, pages = "127--150" -, succeeds = "t-oswrp-80" +, author = "M. Tompa" +, title = "An optimal solution to a wire-routing problem" +, journal = "J. Comput. Syst. Sci." +, volume = 23 +, year = 1981 +, pages = "127--150" +, succeeds = "t-oswrp-80" } @techreport{tj-adoak-82 -, author = "K. T{\"o}nnies and D. Jack{\'e}l" -, title = "Automatische dreidimensionale {Oberfl{\"a}chenrekonstruktion} aus {Konturlinien} zur {Visualisierung} von komplexen anatomischen" -, type = "Manuscript" -, institution = "Inst. Tech. Inform." -, year = 1982 +, author = "K. T{\"o}nnies and D. Jack{\'e}l" +, title = "Automatische dreidimensionale {Oberfl{\"a}chenrekonstruktion} aus {Konturlinien} zur {Visualisierung} von komplexen anatomischen" +, type = "Manuscript" +, institution = "Inst. Tech. Inform." +, year = 1982 } @article{t-dmwhf-63 -, author = "A. Toomre" -, title = "On the distibution of matter within highly flattened galaxies" -, journal = "The astrophysical J." -, volume = 138 -, year = 1963 -, pages = "385--392" -, update = "97.11 bibrelex" +, author = "A. Toomre" +, title = "On the distibution of matter within highly flattened galaxies" +, journal = "The astrophysical J." +, volume = 138 +, year = 1963 +, pages = "385--392" +, update = "97.11 bibrelex" } @article{tm-cdsp-84 -, author = "S. B. Tor and A. E. Middleditch" -, title = "Convex decomposition of simple polygons" -, journal = "ACM Trans. Graph." -, volume = 3 -, year = 1984 -, pages = "244--265" +, author = "S. B. Tor and A. E. Middleditch" +, title = "Convex decomposition of simple polygons" +, journal = "ACM Trans. Graph." +, volume = 3 +, year = 1984 +, pages = "244--265" } @article{t-cvor-88 -, author = "F. A. Toranzos" -, title = "Critical Visibility and Outward Rays" -, journal = "J. Geom." -, volume = 33 -, year = 1988 -, pages = "155--167" -, update = "98.07 bibrelex" +, author = "F. A. Toranzos" +, title = "Critical Visibility and Outward Rays" +, journal = "J. Geom." +, volume = 33 +, year = 1988 +, pages = "155--167" +, update = "98.07 bibrelex" } @incollection{ty-vrndt-88 -, author = "J. Toriwaki and S. Yokoi" -, title = "Voronoi and related neighbours on digitized two-dimensional space with applications to texture analysis" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "207--228" +, author = "J. Toriwaki and S. Yokoi" +, title = "Voronoi and related neighbours on digitized two-dimensional space with applications to texture analysis" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "207--228" } @techreport{tt-mtcpc-89 -, author = "C. Torras and F. Thomas" -, title = "Motion of Two Convex Polyhedra in Contact" -, type = "Technical {Report}" -, institution = "Institut de Cibernetica" -, address = "Barcelona, Spain" -, month = jul -, year = 1989 -, keywords = "Spatial Reasoning, Motion Representation, Fine Motion Planning, Contact space, Stratification" -, update = "93.09 milone+mitchell" +, author = "C. Torras and F. Thomas" +, title = "Motion of Two Convex Polyhedra in Contact" +, type = "Technical {Report}" +, institution = "Institut de Cibernetica" +, address = "Barcelona, Spain" +, month = jul +, year = 1989 +, keywords = "Spatial Reasoning, Motion Representation, Fine Motion Planning, Contact space, Stratification" +, update = "93.09 milone+mitchell" } @inproceedings{t-obspa-90 -, author = "Enric Torres" -, title = "Optimization of the Binary Space Partition Algorithm ({BSP}) for the Visualization of Dynamic Scenes" -, booktitle = "Eurographics '90" -, publisher = "North-Holland" -, year = 1990 -, pages = "507--518" -, update = "97.07 agarwal" +, author = "Enric Torres" +, title = "Optimization of the Binary Space Partition Algorithm ({BSP}) for the Visualization of Dynamic Scenes" +, booktitle = "Eurographics '90" +, publisher = "North-Holland" +, year = 1990 +, pages = "507--518" +, update = "97.07 agarwal" } @article{ts-ppp-91 -, author = "Ratko To{\v s}i{\'c} and Ivan Stojmenovi{\'c}" -, title = "On pairing points in the plane" -, journal = "Zb. Rad. Prirod.-Mat. Fak. Univ. u Novom Sadu, Ser. Mat." -, volume = 21 -, number = 2 -, year = 1991 -, pages = "157--160" -, keywords = "points, matching, segments, intersection" -, update = "96.09 agarwal, 95.09 korneenko" -, abstract = "Given a set of $n$ red and $n$ blue points in the plane, - it is requred to find a nonintersecting red-blue matching, - i.e., a set of $n$ nonintersecting line segments that connect - red and blue points in pairs. - \par - An $O(n \log^2 n)$ time algorithm for the problem was proposed - in a-mpp-85. - The paper under review presents a simpler - algorithm within the same time complexity bound." +, author = "Ratko To{\v s}i{\'c} and Ivan Stojmenovi{\'c}" +, title = "On pairing points in the plane" +, journal = "Zb. Rad. Prirod.-Mat. Fak. Univ. u Novom Sadu, Ser. Mat." +, volume = 21 +, number = 2 +, year = 1991 +, pages = "157--160" +, keywords = "points, matching, segments, intersection" +, update = "96.09 agarwal, 95.09 korneenko" +, abstract = "Given a set of $n$ red and $n$ blue points in the plane, + it is requred to find a nonintersecting red-blue matching, + i.e., a set of $n$ nonintersecting line segments that connect + red and blue points in pairs. + \par + An $O(n \log^2 n)$ time algorithm for the problem was proposed + in a-mpp-85. + The paper under review presents a simpler + algorithm within the same time complexity bound." } @inproceedings{t-nbpp-01 -, author = "Csaba David T\'oth" -, title = "A Note on Binary Plane Partitions" -, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." -, year = 2001 -, pages = "151--156" -, update = "01.07 orourke" +, author = "Csaba David T\'oth" +, title = "A Note on Binary Plane Partitions" +, booktitle = "Proc. 17th Annu. ACM Sympos. Comput. Geom." +, year = 2001 +, pages = "151--156" +, update = "01.07 orourke" } @article{t-agpgr-00 -, author = "C. D. T{\'o}th" -, title = "Art gallery problem with guards whose range of vision is $180^\circ$" -, journal = "Comput. Geom. Theory Appl." -, volume = 17 -, year = 2000 -, pages = "121--134" -, update = "01.04 smid" +, author = "C. D. T{\'o}th" +, title = "Art gallery problem with guards whose range of vision is $180^\circ$" +, journal = "Comput. Geom. Theory Appl." +, volume = 17 +, year = 2000 +, pages = "121--134" +, update = "01.04 smid" } @inproceedings{t-gdtcp-01 -, author = "Csaba D. T{\'o}th" -, title = "Guarding Disjoint Triangles and Claws in the Plane" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "137--139" -, update = "01.04 icking" +, author = "Csaba D. T{\'o}th" +, title = "Guarding Disjoint Triangles and Claws in the Plane" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "137--139" +, update = "01.04 icking" } @inproceedings{t-ipvpl-01 -, author = "Csaba D. T{\'o}th" -, title = "Illuminating polygons with vertex $\pi$-floodlights" -, editor = "V. N. Alexandrov and others" -, booktitle = "Proc. Int. Conf. on Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 2073 -, publisher = "Springer-Verlag" -, year = 2001 -, pages = "772--781" -, comments = "~(3/4)n" -, update = "01.11 orourke" +, author = "Csaba D. T{\'o}th" +, title = "Illuminating polygons with vertex $\pi$-floodlights" +, editor = "V. N. Alexandrov and others" +, booktitle = "Proc. Int. Conf. on Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 2073 +, publisher = "Springer-Verlag" +, year = 2001 +, pages = "772--781" +, comments = "~(3/4)n" +, update = "01.11 orourke" } @article{t-rtps-86 -, author = "D. L. Toth" -, title = "On Ray Tracing Parametric Surfaces" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, month = jul -, year = 1986 -, pages = "171--179" -, update = "98.03 bibrelex" +, author = "D. L. Toth" +, title = "On Ray Tracing Parametric Surfaces" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, month = jul +, year = 1986 +, pages = "171--179" +, update = "98.03 bibrelex" } @inproceedings{t-psmks-00 -, author = "G{\'e}za Toth" -, title = "Point Sets with Many $k$-Sets" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "37--42" -, update = "00.11 jones" +, author = "G{\'e}za Toth" +, title = "Point Sets with Many $k$-Sets" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "37--42" +, update = "00.11 jones" } @article{t-psmks-01 -, author = "G{\'e}za Toth" -, title = "Point Sets with Many $k$-Sets" -, journal = "Discrete Comput. Geom." -, volume = 26 -, number = 2 -, year = 2001 -, pages = "187--194" -, update = "01.11 pocchiola" +, author = "G{\'e}za Toth" +, title = "Point Sets with Many $k$-Sets" +, journal = "Discrete Comput. Geom." +, volume = 26 +, number = 2 +, year = 2001 +, pages = "187--194" +, update = "01.11 pocchiola" } @article{t-sdpgp-97 -, author = "G. {T{\'o}th}" -, title = "The shortest distance among points in general position" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, year = 1997 -, pages = "33--38" -, update = "97.07 devillers" +, author = "G. {T{\'o}th}" +, title = "The shortest distance among points in general position" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, year = 1997 +, pages = "33--38" +, update = "97.07 devillers" } @article{tv-nest-98 -, author = "G. T{\'o}th and P. Valtr" -, title = "Note on the {Erd{\H{o}}s-Szekeres} theorem" -, journal = "Discrete Comput. Geom." -, volume = 19 -, year = 1998 -, pages = "457--450" -, update = "02.03 devillers" +, author = "G. T{\'o}th and P. Valtr" +, title = "Note on the {Erd{\H{o}}s-Szekeres} theorem" +, journal = "Discrete Comput. Geom." +, volume = 19 +, year = 1998 +, pages = "457--450" +, update = "02.03 devillers" } @incollection{t-nrtpc-83 -, author = "G. F. T{\'o}th" -, title = "New results in the theory of packing and covering" -, editor = "P. M. Gruber and J. M. Wills" -, booktitle = "Convexity and its applications" -, publisher = "Birkh{\"a}user" -, address = "Basel, Switzerland" -, year = 1983 -, pages = "318--359" -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "G. F. T{\'o}th" +, title = "New results in the theory of packing and covering" +, editor = "P. M. Gruber and J. M. Wills" +, booktitle = "Convexity and its applications" +, publisher = "Birkh{\"a}user" +, address = "Basel, Switzerland" +, year = 1983 +, pages = "318--359" +, update = "98.07 bibrelex, 98.03 bibrelex" } @incollection{ft-pc-97 -, author = "G. Fejes T{\'o}th" -, title = "Packing and covering" -, chapter = 2 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "19--42" -, update = "97.11 orourke" +, author = "G. Fejes T{\'o}th" +, title = "Packing and covering" +, chapter = 2 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "19--42" +, update = "97.11 orourke" } @inproceedings{tg-tmc-98 -, author = "C. Touma and C. Gotsman" -, title = "Triangle mesh compression" -, booktitle = "Graphics Interface" -, year = 1998 -, pages = "26--34" -, update = "01.07 devillers" +, author = "C. Touma and C. Gotsman" +, title = "Triangle mesh compression" +, booktitle = "Graphics Interface" +, year = 1998 +, pages = "26--34" +, update = "01.07 devillers" } @techreport{t-srct-73 -, author = "G. Tourlakis" -, title = "Some results in computational topology" -, type = "Report" -, number = 50 -, institution = "Dept. Comput. Sci., Univ. Toronto" -, address = "Toronto, ON" -, year = 1973 -, precedes = "tm-srct-72" +, author = "G. Tourlakis" +, title = "Some results in computational topology" +, type = "Report" +, number = 50 +, institution = "Dept. Comput. Sci., Univ. Toronto" +, address = "Toronto, ON" +, year = 1973 +, precedes = "tm-srct-72" } @inproceedings{tm-srct-72 -, author = "G. Tourlakis and J. Mylopoulos" -, title = "Some results in computational topology" -, booktitle = "Proc. 13th Annu. IEEE Sympos. Switching Automata Theory" -, year = 1972 -, pages = "40--51" -, succeeds = "t-srct-73" -, precedes = "tm-srct-73" +, author = "G. Tourlakis and J. Mylopoulos" +, title = "Some results in computational topology" +, booktitle = "Proc. 13th Annu. IEEE Sympos. Switching Automata Theory" +, year = 1972 +, pages = "40--51" +, succeeds = "t-srct-73" +, precedes = "tm-srct-73" } @article{tm-srct-73 -, author = "G. Tourlakis and J. Mylopoulos" -, title = "Some results in computational topology" -, journal = "J. ACM" -, volume = 20 -, year = 1973 -, pages = "439--455" -, succeeds = "tm-srct-72" +, author = "G. Tourlakis and J. Mylopoulos" +, title = "Some results in computational topology" +, journal = "J. ACM" +, volume = 20 +, year = 1973 +, pages = "439--455" +, succeeds = "tm-srct-72" } @techreport{t-ocspt-88 -, author = "G. Toussaint" -, title = "An output-complexity-sensitive polygon triangulation algorithm" -, type = "Technical {Report}" -, number = "SOCS-88.11" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1988 -, update = "97.11 bibrelex" +, author = "G. Toussaint" +, title = "An output-complexity-sensitive polygon triangulation algorithm" +, type = "Technical {Report}" +, number = "SOCS-88.11" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1988 +, update = "97.11 bibrelex" } @techreport{t-apctd- -, author = "G. Toussaint" -, title = "Approximating polygonal curves in three-dimensions" -, type = "Manuscript" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = "??" -, update = "97.11 bibrelex" +, author = "G. Toussaint" +, title = "Approximating polygonal curves in three-dimensions" +, type = "Manuscript" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = "??" +, update = "97.11 bibrelex" } @techreport{t-cgcv-90 -, author = "G. Toussaint" -, title = "Computational geometry and computer vision" -, type = "Technical {Report}" -, number = "SOCS 90.7" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "G. Toussaint" +, title = "Computational geometry and computer vision" +, type = "Technical {Report}" +, number = "SOCS 90.7" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, update = "93.09 milone+mitchell" } @techreport{t-cgm-86 -, author = "G. Toussaint" -, title = "Computational geometry and morphology" -, type = "Technical {Report}" -, number = "SOCS-86.3" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1986 -, update = "97.11 bibrelex" +, author = "G. Toussaint" +, title = "Computational geometry and morphology" +, type = "Technical {Report}" +, number = "SOCS-86.3" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1986 +, update = "97.11 bibrelex" } @book{t-cm-88 -, title = "Computational Morphology" -, editor = "G. Toussaint" -, publisher = "North-Holland" -, year = 1988 -, update = "97.11 bibrelex" +, title = "Computational Morphology" +, editor = "G. Toussaint" +, publisher = "North-Holland" +, year = 1988 +, update = "97.11 bibrelex" } @techreport{t-cgpis-90 -, author = "G. Toussaint" -, title = "Computing Geodesic Properties inside a Simple Polygon" -, number = "??" -, institution = "School of Computer Science, McGill University" -, year = 1990 +, author = "G. Toussaint" +, title = "Computing Geodesic Properties inside a Simple Polygon" +, number = "??" +, institution = "School of Computer Science, McGill University" +, year = 1990 } @article{t-etsp-91 -, author = "G. Toussaint" -, title = "Efficient triangulation of simple polygons" -, journal = "Visual Comput." -, volume = 7 -, year = 1991 -, pages = "280--295" -, keywords = "computational geometry, triangulation" -, abstract = "This paper considers the topic of efficiently - triangulating a simple polygon with emphasis on - practical and easy-to-implement algorithms. It also - describes a new adaptive algorithms for triangulating a - simple n-sided polygon. The algorithm runs in time - O(n(1 plus t//0)) with t//0 less than n. The quantity - t//0 measures the shape-complexity of the triangulation - delivered by the algorithm. More precisely t//0 is the - number of obtained triangles contained in the - triangulation that share zero edges with the input - polygon and is, furthermore, related to the - shape-complexity of the input polygon. Although the - worst-case complexity of the algorithm is O(n**2), for - several classes of polygons it runs in linear time. The - practical advantages of the algorithm are that it is - simple and does not require sorting or the use of - balanced tree structures. On the theoretical side, it - is of interest because it is the first polygon - triangulation algorithm where the computational - complexity is a function of the output complexity. As a - side benefit, we introduce a new measure of the - complexity of a polygon triangulation that should find - application in other contexts as well. (Author - abstract) Refs." +, author = "G. Toussaint" +, title = "Efficient triangulation of simple polygons" +, journal = "Visual Comput." +, volume = 7 +, year = 1991 +, pages = "280--295" +, keywords = "computational geometry, triangulation" +, abstract = "This paper considers the topic of efficiently + triangulating a simple polygon with emphasis on + practical and easy-to-implement algorithms. It also + describes a new adaptive algorithms for triangulating a + simple n-sided polygon. The algorithm runs in time + O(n(1 plus t//0)) with t//0 less than n. The quantity + t//0 measures the shape-complexity of the triangulation + delivered by the algorithm. More precisely t//0 is the + number of obtained triangles contained in the + triangulation that share zero edges with the input + polygon and is, furthermore, related to the + shape-complexity of the input polygon. Although the + worst-case complexity of the algorithm is O(n**2), for + several classes of polygons it runs in linear time. The + practical advantages of the algorithm are that it is + simple and does not require sorting or the use of + balanced tree structures. On the theoretical side, it + is of interest because it is the first polygon + triangulation algorithm where the computational + complexity is a function of the output complexity. As a + side benefit, we introduce a new measure of the + complexity of a polygon triangulation that should find + application in other contexts as well. (Author + abstract) Refs." } @article{t-stsps-89 -, author = "G. Toussaint" -, title = "On separating two simple polygons by a single translation" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "265--278" +, author = "G. Toussaint" +, title = "On separating two simple polygons by a single translation" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "265--278" } @inproceedings{t-qps-95 -, author = "G. Toussaint" -, title = "Quadrangulations of planar sets" -, booktitle = "Proc. 4th Workshop Algorithms Data Struct." -, nickname = "WADS '95" -, site = "Kingston, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 955 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "218--227" -, update = "99.07 bibrelex, 98.07 bibrelex" +, author = "G. Toussaint" +, title = "Quadrangulations of planar sets" +, booktitle = "Proc. 4th Workshop Algorithms Data Struct." +, nickname = "WADS '95" +, site = "Kingston, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 955 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "218--227" +, update = "99.07 bibrelex, 98.07 bibrelex" } @techreport{td-chrl-90 -, author = "G. Toussaint and L. Devroye" -, title = "Convex Hulls for Random Lines" -, type = "Technical {Report}" -, number = "SOCS 90.11" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "G. Toussaint and L. Devroye" +, title = "Convex Hulls for Random Lines" +, type = "Technical {Report}" +, number = "SOCS 90.11" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, update = "93.09 milone+mitchell" } @inproceedings{tvwz-tsnsp-93 -, author = "G. Toussaint and C. Verbrugge and C. Wang and B. Zhu" -, title = "Tetrahedralization of simple and non-simple polyhedra" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "24--29" -, cites = "aap-ptem-86, b-ip-48a, c-tsplt-91a, cp-tncp-90, gp-cdpb-88, l-tsfpp-11, o-agta-87, rs-dttdn-92, s-udzvd-28, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "G. Toussaint and C. Verbrugge and C. Wang and B. Zhu" +, title = "Tetrahedralization of simple and non-simple polyhedra" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "24--29" +, cites = "aap-ptem-86, b-ip-48a, c-tsplt-91a, cp-tncp-90, gp-cdpb-88, l-tsfpp-11, o-agta-87, rs-dttdn-92, s-udzvd-28, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @incollection{t-ghtt-88 -, author = "G. T. Toussaint" -, title = "A geodesic {Helly}-type theorem" -, editor = "G. T. Toussaint" -, booktitle = "Snapshots of Computational and Discrete Geometry" -, publisher = "McGill University" -, address = "Montreal, PQ" -, year = 1988 -, note = "Technical Report SOCS-88.11" -, update = "98.07 bibrelex" +, author = "G. T. Toussaint" +, title = "A geodesic {Helly}-type theorem" +, editor = "G. T. Toussaint" +, booktitle = "Snapshots of Computational and Discrete Geometry" +, publisher = "McGill University" +, address = "Montreal, PQ" +, year = 1988 +, note = "Technical Report SOCS-88.11" +, update = "98.07 bibrelex" } @incollection{t-gtps-88 -, author = "G. T. Toussaint" -, title = "A graph-theoretical primal sketch" -, editor = "G. T. Toussaint" -, booktitle = "Computational Morphology" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1988 -, pages = "229--260" +, author = "G. T. Toussaint" +, title = "A graph-theoretical primal sketch" +, editor = "G. T. Toussaint" +, booktitle = "Computational Morphology" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1988 +, pages = "229--260" } @article{t-hnchf-85 -, author = "G. T. Toussaint" -, title = "A historical note on convex hull finding algorithms" -, journal = "Pattern Recogn. Lett." -, volume = 3 -, year = 1985 -, pages = "21--28" +, author = "G. T. Toussaint" +, title = "A historical note on convex hull finding algorithms" +, journal = "Pattern Recogn. Lett." +, volume = 3 +, year = 1985 +, pages = "21--28" } @techreport{t-ltass-86t -, author = "G. T. Toussaint" -, title = "A linear-time algorithm for solving the strong hidden-line problem in a simple polygon" -, type = "Report" -, number = "SOCS-86.2" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1986 -, precedes = "t-ltass-86a" +, author = "G. T. Toussaint" +, title = "A linear-time algorithm for solving the strong hidden-line problem in a simple polygon" +, type = "Report" +, number = "SOCS-86.2" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1986 +, precedes = "t-ltass-86a" } @article{t-ltass-86a -, author = "Godfried T. Toussaint" -, title = "A linear-time algorithm for solving the strong hidden-line problem in a simple polygon" -, journal = "Pattern Recogn. Lett." -, volume = 4 -, year = 1986 -, pages = "449--451" -, succeeds = "t-ltass-86t" -, abstract = "A linear-time algorithm is presented for solving the - strong hidden-line problem in a simple polygon P, or - alternately, determining the region in P weakly visible - from a specified edge of P. The algorithm combines - results from visibility and shortest paths with the - linear-time polygon triangulation algorithm discovered - recently by Tarjan and Van Wyk. Previous published - algorithms for the strong hidden-line problem require - O(n log n) steps even after triangulation, where n is - the cardinality of P" +, author = "Godfried T. Toussaint" +, title = "A linear-time algorithm for solving the strong hidden-line problem in a simple polygon" +, journal = "Pattern Recogn. Lett." +, volume = 4 +, year = 1986 +, pages = "449--451" +, succeeds = "t-ltass-86t" +, abstract = "A linear-time algorithm is presented for solving the + strong hidden-line problem in a simple polygon P, or + alternately, determining the region in P weakly visible + from a specified edge of P. The algorithm combines + results from visibility and shortest paths with the + linear-time polygon triangulation algorithm discovered + recently by Tarjan and Van Wyk. Previous published + algorithms for the strong hidden-line problem require + O(n log n) steps even after triangulation, where n is + the cardinality of P" } @article{t-ncsup-01 -, author = "Godfried T. Toussaint" -, title = "A new class of stuck unknots in Pol-6" -, journal = "Contributions to Algebra and Geometry" -, volume = 42 -, number = 2 -, year = 2001 -, pages = "301--306" -, update = "02.03 orourke" +, author = "Godfried T. Toussaint" +, title = "A new class of stuck unknots in Pol-6" +, journal = "Contributions to Algebra and Geometry" +, volume = 42 +, number = 2 +, year = 2001 +, pages = "301--306" +, update = "02.03 orourke" } @techreport{t-ncsup6-99 -, author = "G. T. Toussaint" -, title = "A new class of stuck unknots in {${\rm Pol}_6$}" -, number = "SOCS-99.1" -, institution = "School of Comput. Sci., McGill Univ." -, month = apr -, year = 1999 -, update = "99.07 orourke" +, author = "G. T. Toussaint" +, title = "A new class of stuck unknots in {${\rm Pol}_6$}" +, number = "SOCS-99.1" +, institution = "School of Comput. Sci., McGill Univ." +, month = apr +, year = 1999 +, update = "99.07 orourke" } @techreport{t-nlatm-83 -, author = "G. T. Toussaint" -, title = "A New Linear Algorithm for Triangulating Monotone Polygons" -, number = "SOCS 83.9" -, institution = "McGill University" -, year = 1983 -, annote = "$O(n)$ algorithm for decomposing monotone into - edge-visible (which can be done in linear time)." +, author = "G. T. Toussaint" +, title = "A New Linear Algorithm for Triangulating Monotone Polygons" +, number = "SOCS 83.9" +, institution = "McGill University" +, year = 1983 +, annote = "$O(n)$ algorithm for decomposing monotone into + edge-visible (which can be done in linear time)." } @techreport{t-nlesp-90 -, author = "G. T. Toussaint" -, title = "A new look at {Euclid}'s second proposition" -, type = "Report" -, number = "SOCS-90.21" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1990 +, author = "G. T. Toussaint" +, title = "A new look at {Euclid}'s second proposition" +, type = "Report" +, number = "SOCS-90.21" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1990 } @article{t-slaic-85 -, author = "G. T. Toussaint" -, title = "A simple linear algorithm for intersecting convex polygons" -, journal = "Visual Comput." -, volume = 1 -, year = 1985 -, pages = "118--123" +, author = "G. T. Toussaint" +, title = "A simple linear algorithm for intersecting convex polygons" +, journal = "Visual Comput." +, volume = 1 +, year = 1985 +, pages = "118--123" } @article{t-sppet-82 -, author = "G. T. Toussaint" -, title = "A simple proof of {Pach}'s extremal theorem for convex polygons" -, journal = "Pattern Recogn. Lett." -, volume = 1 -, year = 1982 -, pages = "85--86" +, author = "G. T. Toussaint" +, title = "A simple proof of {Pach}'s extremal theorem for convex polygons" +, journal = "Pattern Recogn. Lett." +, volume = 1 +, year = 1982 +, pages = "85--86" } @article{t-acrng-80 -, author = "G. T. Toussaint" -, title = "Algorithms for computing relative neighbourhood graph" -, journal = "Electron. Lett." -, volume = 16 -, number = 22 -, year = 1980 -, pages = 860 +, author = "G. T. Toussaint" +, title = "Algorithms for computing relative neighbourhood graph" +, journal = "Electron. Lett." +, volume = 16 +, number = 22 +, year = 1980 +, pages = 860 } @inproceedings{t-oacmv-83 -, author = "G. T. Toussaint" -, title = "An optimal algorithm for computing the minimum vertex distance between two crossing convex polygons" -, editor = "457--458" -, booktitle = "Proc. 21st Allerton Conf. Commun. Control Comput." -, year = 1983 -, update = "97.11 bibrelex" +, author = "G. T. Toussaint" +, title = "An optimal algorithm for computing the minimum vertex distance between two crossing convex polygons" +, editor = "457--458" +, booktitle = "Proc. 21st Allerton Conf. Commun. Control Comput." +, year = 1983 +, update = "97.11 bibrelex" } @inproceedings{t-oacmv-84i -, author = "G. T. Toussaint" -, title = "An Optimal Algorithm For Computing the Minimum Vertex Distance Between Two Crossing Convex Polygons" -, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn." -, year = 1984 -, pages = "465--467" -, precedes = "t-oacmv-84a" +, author = "G. T. Toussaint" +, title = "An Optimal Algorithm For Computing the Minimum Vertex Distance Between Two Crossing Convex Polygons" +, booktitle = "Proc. IEEE Internat. Conf. Pattern Recogn." +, year = 1984 +, pages = "465--467" +, precedes = "t-oacmv-84a" } @article{t-oacmv-84a -, author = "G. T. Toussaint" -, title = "An optimal algorithm for computing the minimum vertex distance between two crossing convex polygons" -, journal = "Computing" -, volume = 32 -, year = 1984 -, pages = "357--364" -, keywords = "Voronoi diagrams" -, succeeds = "t-oacmv-84i" -, annote = "Linear algorithm. Exploits the fact that VD outside - and above semi-circle polygon can be constructed in - linear time." +, author = "G. T. Toussaint" +, title = "An optimal algorithm for computing the minimum vertex distance between two crossing convex polygons" +, journal = "Computing" +, volume = 32 +, year = 1984 +, pages = "357--364" +, keywords = "Voronoi diagrams" +, succeeds = "t-oacmv-84i" +, annote = "Linear algorithm. Exploits the fact that VD outside + and above semi-circle polygon can be constructed in + linear time." } @incollection{t-oacrc-86 -, author = "G. T. Toussaint" -, title = "An optimal algorithm for computing the relative convex hull of a set of points in a polygon" -, booktitle = "Signal Processing III: Theories and Applications" -, publisher = "Proc. 3rd European Signal Process. Conf." -, year = 1986 -, pages = "853--856" +, author = "G. T. Toussaint" +, title = "An optimal algorithm for computing the relative convex hull of a set of points in a polygon" +, booktitle = "Signal Processing III: Theories and Applications" +, publisher = "Proc. 3rd European Signal Process. Conf." +, year = 1986 +, pages = "853--856" } @techreport{t-ocspt-90 -, author = "G. T. Toussaint" -, title = "An output-complexity-sensitive polygon triangulation algorithm" -, type = "Report" -, number = "SOCS-90.1" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, month = feb -, year = 1990 -, comments = "Replaces report SOCS-88.10 (June 1988)" +, author = "G. T. Toussaint" +, title = "An output-complexity-sensitive polygon triangulation algorithm" +, type = "Report" +, number = "SOCS-90.1" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, month = feb +, year = 1990 +, comments = "Replaces report SOCS-88.10 (June 1988)" } % ### one of t-acrng-80 and t-cacrn-80 is duplicate @article{t-cacrn-80 -, author = "G. T. Toussaint" -, title = "Comment on algorithms for computing relative neighbourhood graph" -, journal = "Electron. Lett." -, volume = 16 -, year = 1980 -, pages = 860 +, author = "G. T. Toussaint" +, title = "Comment on algorithms for computing relative neighbourhood graph" +, journal = "Electron. Lett." +, volume = 16 +, year = 1980 +, pages = 860 } @inproceedings{t-ccu-84 -, author = "G. T. Toussaint" -, title = "Complexity, convexity, and unimodality" -, booktitle = "Proc. 2nd World Conf. Math." -, site = "Las Palmas, Spain" -, year = 1984 -, update = "99.11 bibrelex" +, author = "G. T. Toussaint" +, title = "Complexity, convexity, and unimodality" +, booktitle = "Proc. 2nd World Conf. Math." +, site = "Las Palmas, Spain" +, year = 1984 +, update = "99.11 bibrelex" } @article{t-ccu-84a -, author = "G. T. Toussaint" -, title = "Complexity, convexity, and unimodality" -, journal = "Internat. J. Comput. Inform. Sci." -, volume = 13 -, number = 3 -, month = jun -, year = 1984 -, pages = "197--217" -, update = "98.03 bibrelex" +, author = "G. T. Toussaint" +, title = "Complexity, convexity, and unimodality" +, journal = "Internat. J. Comput. Inform. Sci." +, volume = 13 +, number = 3 +, month = jun +, year = 1984 +, pages = "197--217" +, update = "98.03 bibrelex" } @incollection{t-cgppr-82 -, author = "G. T. Toussaint" -, title = "Computational geometric problems in pattern recognition" -, editor = "J. Kittler and K. S. Fu and L. F. Pau" -, booktitle = "Pattern Recognition Theory and Application" -, publisher = "D. Reidel Publishing Company" -, address = "Boston, MA" -, year = 1982 -, pages = "73--91" +, author = "G. T. Toussaint" +, title = "Computational geometric problems in pattern recognition" +, editor = "J. Kittler and K. S. Fu and L. F. Pau" +, booktitle = "Pattern Recognition Theory and Application" +, publisher = "D. Reidel Publishing Company" +, address = "Boston, MA" +, year = 1982 +, pages = "73--91" } @book{t-cg-85 -, title = "Computational Geometry" -, editor = "G. T. Toussaint" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, keywords = "book" +, title = "Computational Geometry" +, editor = "G. T. Toussaint" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, keywords = "book" } @inproceedings{t-cgrd-89 -, author = "G. T. Toussaint" -, title = "Computational geometry: recent developments" -, booktitle = "New Advances in Computer Graphics: Proceedings of Computer Graphics International '89" -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "23--51" -, keywords = "survey paper" +, author = "G. T. Toussaint" +, title = "Computational geometry: recent developments" +, booktitle = "New Advances in Computer Graphics: Proceedings of Computer Graphics International '89" +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "23--51" +, keywords = "survey paper" } @article{t-cgpis-89 -, author = "Godfried T. Toussaint" -, title = "Computing Geodesic Properties inside a Simple Polygon" -, journal = "Revue D'Intelligence Artificielle" -, volume = 3 -, number = 2 -, year = 1989 -, pages = "9--42" -, note = "also available as technical report SOCS 88.20, School of Computer Science, McGill University" -, update = "98.11 bibrelex" +, author = "Godfried T. Toussaint" +, title = "Computing Geodesic Properties inside a Simple Polygon" +, journal = "Revue D'Intelligence Artificielle" +, volume = 3 +, number = 2 +, year = 1989 +, pages = "9--42" +, note = "also available as technical report SOCS 88.20, School of Computer Science, McGill University" +, update = "98.11 bibrelex" } @techreport{t-cgpp-86 -, author = "G. T. Toussaint" -, title = "Computing geodesic properties of polygons" -, type = "Manuscript" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1986 -, update = "98.03 bibrelex" +, author = "G. T. Toussaint" +, title = "Computing geodesic properties of polygons" +, type = "Manuscript" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1986 +, update = "98.03 bibrelex" } @article{t-clecl-83 -, author = "G. T. Toussaint" -, title = "Computing largest empty circles with location constraints" -, journal = "Internat. J. Comput. Inform. Sci." -, volume = 12 -, year = 1983 -, pages = "347--358" -, update = "97.07 kuehn" +, author = "G. T. Toussaint" +, title = "Computing largest empty circles with location constraints" +, journal = "Internat. J. Comput. Inform. Sci." +, volume = 12 +, year = 1983 +, pages = "347--358" +, update = "97.07 kuehn" } @inproceedings{t-dsprn-80 -, author = "G. T. Toussaint" -, title = "Decomposing a simple polygon with the relative neighborhood graph" -, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." -, year = 1980 -, pages = "20--28" +, author = "G. T. Toussaint" +, title = "Decomposing a simple polygon with the relative neighborhood graph" +, booktitle = "Proc. 18th Allerton Conf. Commun. Control Comput." +, year = 1980 +, pages = "20--28" } @techreport{t-mss-84 -, author = "G. T. Toussaint" -, title = "Movable Separability of Sets" -, type = "Technical {Report}" -, number = "SOCS-84.17" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, month = nov -, year = 1984 -, update = "97.11 bibrelex" +, author = "G. T. Toussaint" +, title = "Movable Separability of Sets" +, type = "Technical {Report}" +, number = "SOCS-84.17" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, month = nov +, year = 1984 +, update = "97.11 bibrelex" } @incollection{t-mss-85 -, author = "G. T. Toussaint" -, title = "Movable separability of sets" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "335--375" +, author = "G. T. Toussaint" +, title = "Movable separability of sets" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "335--375" } @incollection{t-nrcgr-86 -, author = "G. T. Toussaint" -, title = "New results in computational geometry relevant to pattern recognition in practice" -, editor = "E. S. Gelsema and L. N. Kanal" -, booktitle = "Pattern Recognition in Practice II" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1986 -, pages = "135--146" +, author = "G. T. Toussaint" +, title = "New results in computational geometry relevant to pattern recognition in practice" +, editor = "E. S. Gelsema and L. N. Kanal" +, booktitle = "Pattern Recognition in Practice II" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1986 +, pages = "135--146" } @article{t-achha-83 -, author = "G. T. Toussaint" -, title = "On the application of the convex hull to histogram analysis in threshold selection" -, journal = "Pattern Recogn. Lett." -, volume = 2 -, year = 1983 -, pages = "75--77" +, author = "G. T. Toussaint" +, title = "On the application of the convex hull to histogram analysis in threshold selection" +, journal = "Pattern Recogn. Lett." +, volume = 2 +, year = 1983 +, pages = "75--77" } @inproceedings{t-capcp-85 -, author = "G. T. Toussaint" -, title = "On the complexity of approximating polygonal curves in the plane" -, booktitle = "Proc. IASTED, International Symposium on Robotics and Automation" -, site = "Lugano, Switzerland" -, year = 1985 -, pages = "" -, update = "96.09 orourke" +, author = "G. T. Toussaint" +, title = "On the complexity of approximating polygonal curves in the plane" +, booktitle = "Proc. IASTED, International Symposium on Robotics and Automation" +, site = "Lugano, Switzerland" +, year = 1985 +, pages = "" +, update = "96.09 orourke" } @inproceedings{t-prgc-80 -, author = "G. T. Toussaint" -, title = "Pattern recognition and geometrical complexity" -, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." -, year = 1980 -, pages = "1324--1347" +, author = "G. T. Toussaint" +, title = "Pattern recognition and geometrical complexity" +, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." +, year = 1980 +, pages = "1324--1347" } @techreport{t-spsee-85 -, author = "G. T. Toussaint" -, title = "Shortest Path Solves Edge-to-Edge Visibility in a Polygon" -, type = "Technical {Report}" -, number = "SOCS-85.19" -, institution = "School of Computer Science, McGill University" -, address = "Montreal, Quebec, Canada" -, year = 1985 -, update = "93.09 milone+mitchell" +, author = "G. T. Toussaint" +, title = "Shortest Path Solves Edge-to-Edge Visibility in a Polygon" +, type = "Technical {Report}" +, number = "SOCS-85.19" +, institution = "School of Computer Science, McGill University" +, address = "Montreal, Quebec, Canada" +, year = 1985 +, update = "93.09 milone+mitchell" } @article{t-spsee-86 -, author = "G. T. Toussaint" -, title = "Shortest path solves edge-to-edge visibility in a polygon" -, journal = "Pattern Recogn. Lett." -, volume = 4 -, year = 1986 -, pages = "165--170" -, update = "98.07 bibrelex" +, author = "G. T. Toussaint" +, title = "Shortest path solves edge-to-edge visibility in a polygon" +, journal = "Pattern Recogn. Lett." +, volume = 4 +, year = 1986 +, pages = "165--170" +, update = "98.07 bibrelex" } @techreport{t-spsts-85 -, author = "G. T. Toussaint" -, title = "Shortest path solves translation separability of polygons" -, type = "Report" -, number = "SOCS-85.27" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1985 +, author = "G. T. Toussaint" +, title = "Shortest path solves translation separability of polygons" +, type = "Report" +, number = "SOCS-85.27" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1985 } @inproceedings{t-sgprc-83 -, author = "G. T. Toussaint" -, title = "Solving geometric problems with the rotating calipers" -, booktitle = "Proc. IEEE MELECON '83" -, site = "Athens, Greece" -, year = 1983 -, pages = "A10.02/1--4" -, update = "97.11 bibrelex, 93.05 jones" -, abstract = "M. I. Shamos (1978) recently showed that the diameter of - a convex $n$-sided polygon could be computed in $O(n)$ time using an - elegant and simple procedure which resembles rotating a set of calipers - once around the polygon. It is shown that this simple idea can be - generalized in two ways: several sets of calipers can be used - simultaneously on one convex polygon, or one set of calipers can be used - on several convex polygons simultaneously. These generalizations make it - possible to obtain simple $O(n)$ algorithms for solving a variety of - problems defined on convex polygons. Such problems include (1) finding - the minimum-area rectangle enclosing a convex polygon, (2) computing the - maximum distance between two polygons, (3) performing the vector-sum of - two convex polygons, (4) merging convex polygons in convex hull finding - algorithms, and (5) finding the critical support lines between two convex - polygons. Finding the critical support lines leads to obtaining solutions - of several additional problems concerned with visibility, collision - avoidance, range fitting, linear separability, and computing the Grenander - distance between sets." +, author = "G. T. Toussaint" +, title = "Solving geometric problems with the rotating calipers" +, booktitle = "Proc. IEEE MELECON '83" +, site = "Athens, Greece" +, year = 1983 +, pages = "A10.02/1--4" +, update = "97.11 bibrelex, 93.05 jones" +, abstract = "M. I. Shamos (1978) recently showed that the diameter of + a convex $n$-sided polygon could be computed in $O(n)$ time using an + elegant and simple procedure which resembles rotating a set of calipers + once around the polygon. It is shown that this simple idea can be + generalized in two ways: several sets of calipers can be used + simultaneously on one convex polygon, or one set of calipers can be used + on several convex polygons simultaneously. These generalizations make it + possible to obtain simple $O(n)$ algorithms for solving a variety of + problems defined on convex polygons. Such problems include (1) finding + the minimum-area rectangle enclosing a convex polygon, (2) computing the + maximum distance between two polygons, (3) performing the vector-sum of + two convex polygons, (4) merging convex polygons in convex hull finding + algorithms, and (5) finding the critical support lines between two convex + polygons. Finding the critical support lines leads to obtaining solutions + of several additional problems concerned with visibility, collision + avoidance, range fitting, linear separability, and computing the Grenander + distance between sets." } @incollection{t-scapp-88 -, author = "G. T. Toussaint" -, title = "Some collision avoidance problems in the plane" -, editor = "R. A. Earnshaw" -, booktitle = "Theoretical Foundations of Computer Graphics and CAD" -, series = "NATO ASI Series~F" -, volume = 40 -, publisher = "Springer-Verlag" -, address = "Berlin, West Germany" -, year = 1988 -, pages = "639--672" -, update = "99.11 bibrelex" +, author = "G. T. Toussaint" +, title = "Some collision avoidance problems in the plane" +, editor = "R. A. Earnshaw" +, booktitle = "Theoretical Foundations of Computer Graphics and CAD" +, series = "NATO ASI Series~F" +, volume = 40 +, publisher = "Springer-Verlag" +, address = "Berlin, West Germany" +, year = 1988 +, pages = "639--672" +, update = "99.11 bibrelex" } @inproceedings{t-chtpr-78 -, author = "G. T. Toussaint" -, title = "The convex hull as a tool in pattern recognition" -, booktitle = "Proc. AFOSR Workshop Comm. Theory Appl." -, site = "Princetown, MA" -, year = 1978 -, pages = "43--46" +, author = "G. T. Toussaint" +, title = "The convex hull as a tool in pattern recognition" +, booktitle = "Proc. AFOSR Workshop Comm. Theory Appl." +, site = "Princetown, MA" +, year = 1978 +, pages = "43--46" } @inproceedings{t-entir-99 -, author = "G. T. Toussaint" -, title = "The {E}rd{\H o}s-{N}agy theorem and its ramifications" -, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." -, year = 1999 -, pages = "9--12" -, comments = "Fuller version in Electronic proceedings - http://www.cs.ubc.ca/conferences/CCCG/elecproc.html" -, update = "00.03 orourke" +, author = "G. T. Toussaint" +, title = "The {E}rd{\H o}s-{N}agy theorem and its ramifications" +, booktitle = "Proc. 11th Canad. Conf. Comput. Geom." +, year = 1999 +, pages = "9--12" +, comments = "Fuller version in Electronic proceedings + http://www.cs.ubc.ca/conferences/CCCG/elecproc.html" +, update = "00.03 orourke" } @techreport{t-pfpvd-81 -, author = "G. T. Toussaint" -, title = "The planar furthest-point {Voronoi} diagram in the {$L_{1}$} ({$L_{\infty}$}) metrics can be computed in {$O(n)$} worst-case time" -, type = "Report" -, number = "SOCS 81.10" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1981 +, author = "G. T. Toussaint" +, title = "The planar furthest-point {Voronoi} diagram in the {$L_{1}$} ({$L_{\infty}$}) metrics can be computed in {$O(n)$} worst-case time" +, type = "Report" +, number = "SOCS 81.10" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1981 } @article{t-rngfp-80 -, author = "G. T. Toussaint" -, title = "The relative neighbourhood graph of a finite planar set" -, journal = "Pattern Recogn." -, volume = 12 -, year = 1980 -, pages = "261--268" +, author = "G. T. Toussaint" +, title = "The relative neighbourhood graph of a finite planar set" +, journal = "Pattern Recogn." +, volume = 12 +, year = 1980 +, pages = "261--268" } @techreport{t-safnp-81 -, author = "G. T. Toussaint" -, title = "The symmetric all-furthest-neighbor problem" -, type = "Report" -, number = "SOCS 81.5" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1981 +, author = "G. T. Toussaint" +, title = "The symmetric all-furthest-neighbor problem" +, type = "Report" +, number = "SOCS 81.5" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1981 } @article{t-safnp-83 -, author = "G. T. Toussaint" -, title = "The symmetric all-furthest neighbor problem" -, journal = "J. Comp. Math. Appl." -, volume = 9 -, number = 6 -, year = 1983 -, pages = "747--754" -, update = "98.03 bibrelex" +, author = "G. T. Toussaint" +, title = "The symmetric all-furthest neighbor problem" +, journal = "J. Comp. Math. Appl." +, volume = 9 +, number = 6 +, year = 1983 +, pages = "747--754" +, update = "98.03 bibrelex" } @techreport{tad-echap-78 -, author = "G. T. Toussaint and S. G. Akl and L. P. Devroye" -, title = "Efficient convex hull algorithms for points in two and more dimensions" -, type = "Report" -, number = "SOCS 78.5" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1978 +, author = "G. T. Toussaint and S. G. Akl and L. P. Devroye" +, title = "Efficient convex hull algorithms for points in two and more dimensions" +, type = "Report" +, number = "SOCS 78.5" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1978 } @article{ta-chapi-82 -, author = "G. T. Toussaint and D. Avis" -, title = "On a convex hull algorithm for polygons and its application to triangulation problems" -, journal = "Pattern Recogn." -, volume = 15 -, number = 1 -, year = 1982 -, pages = "23--29" -, keywords = "polygons, triangulation, convex hull" -, update = "98.11 bibrelex" +, author = "G. T. Toussaint and D. Avis" +, title = "On a convex hull algorithm for polygons and its application to triangulation problems" +, journal = "Pattern Recogn." +, volume = 15 +, number = 1 +, year = 1982 +, pages = "23--29" +, keywords = "polygons, triangulation, convex hull" +, update = "98.11 bibrelex" } @techreport{tb-facdf-?? -, author = "G. T. Toussaint and B. K. Bhattacharya" -, title = "Fast algorithms for computing the diameter of a finite planar set" -, type = "Report" -, number = "??" -, institution = "??" -, year = "??" -, update = "94.05 devillers" +, author = "G. T. Toussaint and B. K. Bhattacharya" +, title = "Fast algorithms for computing the diameter of a finite planar set" +, type = "Report" +, number = "??" +, institution = "??" +, year = "??" +, update = "94.05 devillers" } @techreport{tb-gaufn-81 -, author = "G. T. Toussaint and B. K. Bhattacharya" -, title = "On geometric algorithms that use the furthest-neighbor pair of a finite planar set" -, institution = "School of Computer Science, McGill University" -, year = 1981 -, update = "98.03 bibrelex" +, author = "G. T. Toussaint and B. K. Bhattacharya" +, title = "On geometric algorithms that use the furthest-neighbor pair of a finite planar set" +, institution = "School of Computer Science, McGill University" +, year = 1981 +, update = "98.03 bibrelex" } @techreport{tb-gatuf-81 -, author = "G. T. Toussaint and B. K. Bhattacharya" -, title = "On geometric algorithms that use the furthest-point {Voronoi} diagram" -, type = "Report" -, number = "81.3" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1981 -, precedes = "bt-gatuf-85" +, author = "G. T. Toussaint and B. K. Bhattacharya" +, title = "On geometric algorithms that use the furthest-point {Voronoi} diagram" +, type = "Report" +, number = "81.3" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1981 +, precedes = "bt-gatuf-85" } @article{tb-oacmd-83 -, author = "G. T. Toussaint and B. K. Bhattacharya" -, title = "Optimal algorithms for computing the minimum distance between two finite planar sets" -, journal = "Pattern Recogn. Lett." -, volume = 2 -, year = 1983 -, pages = "79--82" +, author = "G. T. Toussaint and B. K. Bhattacharya" +, title = "Optimal algorithms for computing the minimum distance between two finite planar sets" +, journal = "Pattern Recogn. Lett." +, volume = 2 +, year = 1983 +, pages = "79--82" } @inproceedings{tbp-avdnd-85 -, author = "G. T. Toussaint and B. K. Bhattacharya and R. S. Poulsen" -, title = "The Application of {Voronoi} Diagrams to Nonparametric Decision Rules" -, booktitle = "Computer Science and Statistics: The Interface" -, year = 1985 -, pages = "97--108" -, annote = "NN-rule classifies a point according to class of - nearest point. That is VD of point sets. Redundant - points for this can be discarded." +, author = "G. T. Toussaint and B. K. Bhattacharya and R. S. Poulsen" +, title = "The Application of {Voronoi} Diagrams to Nonparametric Decision Rules" +, booktitle = "Computer Science and Statistics: The Interface" +, year = 1985 +, pages = "97--108" +, annote = "NN-rule classifies a point according to class of + nearest point. That is VD of point sets. Redundant + points for this can be discarded." } @article{te-cacmh-83 -, author = "G. T. Toussaint and H. ElGindy" -, title = "A counterexample to an algorithm for computing monotone hulls of simple polygons" -, journal = "Pattern Recogn. Lett." -, volume = 1 -, year = 1983 -, pages = "219--222" +, author = "G. T. Toussaint and H. ElGindy" +, title = "A counterexample to an algorithm for computing monotone hulls of simple polygons" +, journal = "Pattern Recogn. Lett." +, volume = 1 +, year = 1983 +, pages = "219--222" } @article{te-stmpl-84 -, author = "G. T. Toussaint and H. ElGindy" -, title = "Separation of two monotone polygons in linear time" -, journal = "Robotica" -, volume = 2 -, year = 1984 -, pages = "215--220" +, author = "G. T. Toussaint and H. ElGindy" +, title = "Separation of two monotone polygons in linear time" +, journal = "Robotica" +, volume = 2 +, year = 1984 +, pages = "215--220" } @techreport{te-tgass-81 -, author = "G. T. Toussaint and H. ElGindy" -, title = "Traditional galleries are star-shaped if every two paintings are visible from some common point" -, type = "Report" -, number = "SOCS-81.10" -, institution = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1981 +, author = "G. T. Toussaint and H. ElGindy" +, title = "Traditional galleries are star-shaped if every two paintings are visible from some common point" +, type = "Report" +, number = "SOCS-81.10" +, institution = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1981 } @article{tm-soafm-82 -, author = "G. T. Toussaint and M. A. McAlear" -, title = "A simple {$O(n \log n)$} algorithm for finding the maximum distance between two finite planar sets" -, journal = "Pattern Recogn. Lett." -, volume = 1 -, year = 1982 -, pages = "21--24" +, author = "G. T. Toussaint and M. A. McAlear" +, title = "A simple {$O(n \log n)$} algorithm for finding the maximum distance between two finite planar sets" +, journal = "Pattern Recogn. Lett." +, volume = 1 +, year = 1982 +, pages = "21--24" } @inproceedings{tm-facpr-80 -, author = "G. T. Toussaint and R. Menard" -, title = "Fast algorithms for computing the planar relative neighborhood graph" -, booktitle = "Proc. 5th Sympos. Methods Oper. Res." -, site = "K{\"o}ln, West Germany" -, year = 1980 -, pages = "??" +, author = "G. T. Toussaint and R. Menard" +, title = "Fast algorithms for computing the planar relative neighborhood graph" +, booktitle = "Proc. 5th Sympos. Methods Oper. Res." +, site = "K{\"o}ln, West Germany" +, year = 1980 +, pages = "??" } @inproceedings{tp-snasi-79 -, author = "G. T. Toussaint and R. S. Poulsen" -, title = "Some new algorithms and software implementation methods for pattern recognition research" -, booktitle = "Proc. IEEE Internat. Comput. Software Applications Conf." -, year = 1979 -, pages = "55--63" +, author = "G. T. Toussaint and R. S. Poulsen" +, title = "Some new algorithms and software implementation methods for pattern recognition research" +, booktitle = "Proc. IEEE Internat. Comput. Software Applications Conf." +, year = 1979 +, pages = "55--63" } @inproceedings{ts-snrmp-83 -, author = "G. T. Toussaint and J.-R. Sack" -, title = "Some new results on moving polygons in the plane" -, booktitle = "Proc. Robotics, Intelligence and Productivity Conf." -, site = "Detroit, MI" -, year = 1983 -, pages = "158--163" -, keywords = "robotics, motion planning, separation, path planning, polygons, two-dimensional" +, author = "G. T. Toussaint and J.-R. Sack" +, title = "Some new results on moving polygons in the plane" +, booktitle = "Proc. Robotics, Intelligence and Productivity Conf." +, site = "Detroit, MI" +, year = 1983 +, pages = "158--163" +, keywords = "robotics, motion planning, separation, path planning, polygons, two-dimensional" } @phdthesis{t-iaf-84 -, author = "B. M. Trager" -, title = "Integration of algebraic functions" -, school = "MIT" -, year = 1984 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "B. M. Trager" +, title = "Integration of algebraic functions" +, school = "MIT" +, year = 1984 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{t-nmaud-96 -, author = "L. Trevisan" -, title = "A note on minimum-area upward drawing of complete and {Fibonacci} trees" -, journal = "Inform. Process. Lett." -, volume = 57 -, number = 5 -, year = 1996 -, pages = "231--236" -, update = "96.09 orourke" +, author = "L. Trevisan" +, title = "A note on minimum-area upward drawing of complete and {Fibonacci} trees" +, journal = "Inform. Process. Lett." +, volume = 57 +, number = 5 +, year = 1996 +, pages = "231--236" +, update = "96.09 orourke" } @inproceedings{t-whmet-97 -, author = "L. Trevisan" -, title = "When {Hamming} meets {Euclid}: The approximability of geometric {TSP} and {MST}" -, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." -, nickname = "STOC '97" -, year = 1997 -, pages = "21--29" -, update = "98.07 bibrelex, 98.03 mitchell+smid" +, author = "L. Trevisan" +, title = "When {Hamming} meets {Euclid}: The approximability of geometric {TSP} and {MST}" +, booktitle = "Proc. 29th Annu. ACM Sympos. Theory Comput." +, nickname = "STOC '97" +, year = 1997 +, pages = "21--29" +, update = "98.07 bibrelex, 98.03 mitchell+smid" } @inproceedings{t-dgds-88 -, author = "H. Trickey" -, title = "Drag: {A} Graph Drawing System" -, booktitle = "Proc. Internat. Conf. on Electronic Publishing" -, publisher = "Cambridge University Press" -, year = 1988 -, pages = "171--182" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "H. Trickey" +, title = "Drag: {A} Graph Drawing System" +, booktitle = "Proc. Internat. Conf. on Electronic Publishing" +, publisher = "Cambridge University Press" +, year = 1988 +, pages = "171--182" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article {tk-frqmpq-20, @@ -142527,968 +142527,968 @@ @article {tk-frqmpq-20 } @book{td-cm-88 -, author = "Anne Sjerp Troelstra and Dirk {van Dalen}" -, title = "Constructivism in Mathematics" -, series = "Studies in Logic and the Foundations of Mathematics" -, publisher = "Elsevier Science Publishers, North Holland" -, address = "Amsterdam" -, year = 1988 -, update = "98.11 bibrelex" +, author = "Anne Sjerp Troelstra and Dirk {van Dalen}" +, title = "Constructivism in Mathematics" +, series = "Studies in Logic and the Foundations of Mathematics" +, publisher = "Elsevier Science Publishers, North Holland" +, address = "Amsterdam" +, year = 1988 +, update = "98.11 bibrelex" } @book{t-cpos-92 -, author = "William T. Trotter" -, title = "Combinatorics and Partially Ordered Sets: Dimension Theory" -, series = "Johns Hopkins Series in the Mathematical Sciences" -, publisher = "The Johns Hopkins University Press" -, year = 1992 -, update = "96.05 pascucci" +, author = "William T. Trotter" +, title = "Combinatorics and Partially Ordered Sets: Dimension Theory" +, series = "Johns Hopkins Series in the Mathematical Sciences" +, publisher = "The Johns Hopkins University Press" +, year = 1992 +, update = "96.05 pascucci" } @article{tm-dpp-77 -, author = "W. T. Trotter and J. Moore" -, title = "The Dimension of Planar Posets" -, journal = "J. Combin. Theory Ser. B" -, volume = 22 -, year = 1977 -, pages = "54--67" -, update = "95.01 tamassia" +, author = "W. T. Trotter and J. Moore" +, title = "The Dimension of Planar Posets" +, journal = "J. Combin. Theory Ser. B" +, volume = 22 +, year = 1977 +, pages = "54--67" +, update = "95.01 tamassia" } @inproceedings{tw-oacp-97 -, author = "Kuo-Hui Tsai and Da-Wei Wang" -, title = "Optimal Algorithm for Circle Partitioning" -, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '97" -, site = "Shanghai, China" -, series = "Lecture Notes Comput. Sci." -, volume = 1276 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "304--310" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "Kuo-Hui Tsai and Da-Wei Wang" +, title = "Optimal Algorithm for Circle Partitioning" +, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '97" +, site = "Shanghai, China" +, series = "Lecture Notes Comput. Sci." +, volume = 1276 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "304--310" +, update = "99.11 bibrelex, 98.03 mitchell" } @phdthesis{t-pvldp-93 -, author = "L.-H. Tseng" -, title = "Some Polygon Visibility and Link Distance Problems" -, school = "Department of Electrical Engineering and Computer Science, Northwest University" -, month = jun -, year = 1993 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "L.-H. Tseng" +, title = "Some Polygon Visibility and Link Distance Problems" +, school = "Department of Electrical Engineering and Computer Science, Northwest University" +, month = jun +, year = 1993 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @article{thl-tgwsp-98 -, author = "L. H. Tseng and P. Heffernan and D. T. Lee" -, title = "Two-Guard Walkability of Simple Polygons" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, number = 1 -, year = 1998 -, pages = "85--116" -, url = "http://www.ece.nwu.edu/~dtlee/IJCGA_twoguard.ps.Z" -, succeeds = "tl-tgwsp-93" -, update = "98.11 bibrelex, 98.07 icking" +, author = "L. H. Tseng and P. Heffernan and D. T. Lee" +, title = "Two-Guard Walkability of Simple Polygons" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, number = 1 +, year = 1998 +, pages = "85--116" +, url = "http://www.ece.nwu.edu/~dtlee/IJCGA_twoguard.ps.Z" +, succeeds = "tl-tgwsp-93" +, update = "98.11 bibrelex, 98.07 icking" } @techreport{tl-tgwsp-93 -, author = "L. H. Tseng and D. T. Lee" -, title = "Two-Guard Walkability of Simple Polygons" -, type = "Manuscript" -, institution = "Department of Electrical and Computer Engineering, Northwestern University" -, year = 1993 -, precedes = "thl-tgwsp-98" -, update = "98.11 bibrelex, 98.03 bibrelex" +, author = "L. H. Tseng and D. T. Lee" +, title = "Two-Guard Walkability of Simple Polygons" +, type = "Manuscript" +, institution = "Department of Electrical and Computer Engineering, Northwestern University" +, year = 1993 +, precedes = "thl-tgwsp-98" +, update = "98.11 bibrelex, 98.03 bibrelex" } @article{tj-dftad-91 -, author = "Y.-J. Tseng and S. Joshi" -, title = "Determining feasible tool-approach directions for machining {B{\'e}zier} curves and surfaces" -, journal = "Comput. Aided Design" -, volume = 23 -, year = 1991 -, pages = "367--379" -, update = "98.11 bibrelex" +, author = "Y.-J. Tseng and S. Joshi" +, title = "Determining feasible tool-approach directions for machining {B{\'e}zier} curves and surfaces" +, journal = "Comput. Aided Design" +, volume = 23 +, year = 1991 +, pages = "367--379" +, update = "98.11 bibrelex" } @techreport{t-ltawv-89 -, author = "N. Tsikopoulos" -, title = "A Linear Triangulation Algorithm for Weakly-Visible Polygons" -, type = "Technical {Report}" -, number = "89.03.81" -, institution = "Univ. of Patras" -, address = "Greece" -, year = 1989 -, update = "93.09 milone+mitchell" +, author = "N. Tsikopoulos" +, title = "A Linear Triangulation Algorithm for Weakly-Visible Polygons" +, type = "Technical {Report}" +, number = "89.03.81" +, institution = "Univ. of Patras" +, address = "Greece" +, year = 1989 +, update = "93.09 milone+mitchell" } @article{t-hmao-84 -, author = "T. Tsiligirides" -, title = "Heuristic Methods Applied to Orienteering" -, journal = "Journal of the Operational Research Society" -, volume = 35 -, number = 9 -, year = 1984 -, pages = "797--809" -, update = "98.03 mitchell" +, author = "T. Tsiligirides" +, title = "Heuristic Methods Applied to Orienteering" +, journal = "Journal of the Operational Research Society" +, volume = 35 +, number = 9 +, year = 1984 +, pages = "797--809" +, update = "98.03 mitchell" } @inproceedings{tw-fgvdp-90 -, author = "Y. H. Tsin and C. A. Wang" -, title = "Finding geodesic {Voronoi} diagrams of points in the presence of rectilinear barriers" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "227--231" -, cites = "ZZZ" -, update = "98.07 bibrelex" +, author = "Y. H. Tsin and C. A. Wang" +, title = "Finding geodesic {Voronoi} diagrams of points in the presence of rectilinear barriers" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "227--231" +, cites = "ZZZ" +, update = "98.07 bibrelex" } @article{tt-afplp-94 -, author = "X. Tu and D. Terzopoulos" -, title = "Artificial fishes: Physics, locomotion, perception, behavior" -, journal = "Comput. Graph." -, volume = "??" -, year = 1994 -, pages = "43--50" -, note = "Proc. SIGGRAPH '94" -, update = "97.11 bibrelex" +, author = "X. Tu and D. Terzopoulos" +, title = "Artificial fishes: Physics, locomotion, perception, behavior" +, journal = "Comput. Graph." +, volume = "??" +, year = 1994 +, pages = "43--50" +, note = "Proc. SIGGRAPH '94" +, update = "97.11 bibrelex" } @article{tc-rsfcp-90 -, author = "M. Tuceryan and T. Chorzempa" -, title = "Relative sensitivity of a family of closest-point graphs in computer vision applications" -, journal = "Pattern Recogn." -, volume = "??" -, year = 1990 -, pages = "361--373" -, keywords = "Voronoi tessellation, Delaunay triangulation, minimum spanning tree, relative neighborhood graph, Gabriel graph, closest-point graph, Hough transform, perceptual grouping, computer vision" -, update = "93.09 milone+mitchell" +, author = "M. Tuceryan and T. Chorzempa" +, title = "Relative sensitivity of a family of closest-point graphs in computer vision applications" +, journal = "Pattern Recogn." +, volume = "??" +, year = 1990 +, pages = "361--373" +, keywords = "Voronoi tessellation, Delaunay triangulation, minimum spanning tree, relative neighborhood graph, Gabriel graph, closest-point graph, Hough transform, perceptual grouping, computer vision" +, update = "93.09 milone+mitchell" } @article{tj-tsuvp-90 -, author = "M. Tuceryan and A. K. Jain" -, title = "Texture Segmentation Using {Voronoi} Polygons" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 12 -, number = 2 -, year = 1990 -, pages = "211--216" -, annote = "Compute DT of points and area elongation etc for VPs. - Break edges connecting dissimilar polygons." +, author = "M. Tuceryan and A. K. Jain" +, title = "Texture Segmentation Using {Voronoi} Polygons" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 12 +, number = 2 +, year = 1990 +, pages = "211--216" +, annote = "Compute DT of points and area elongation etc for VPs. + Break edges connecting dissimilar polygons." } @article{tw-oacpp-84 -, author = "A. Tucker and D. Wilson" -, title = "An {$O(N^{2})$} algorithm for coloring perfect planar graphs" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "60--68" +, author = "A. Tucker and D. Wilson" +, title = "An {$O(N^{2})$} algorithm for coloring perfect planar graphs" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "60--68" } @book{t-ei-90 -, author = "E. R. Tufte" -, title = "Envisioning Information" -, publisher = "Graphics Press" -, address = "Cheshire, Connecticut" -, year = 1990 -, update = "96.09 tamassia, 96.04 garg" +, author = "E. R. Tufte" +, title = "Envisioning Information" +, publisher = "Graphics Press" +, address = "Cheshire, Connecticut" +, year = 1990 +, update = "96.09 tamassia, 96.04 garg" } @book{t-vdqi-83 -, author = "E. R. Tufte" -, title = "The Visual Display of Quantative Information" -, publisher = "Graphics Press" -, address = "Cheshire, Connecticut" -, year = 1983 -, update = "96.09 tamassia, 96.04 garg" +, author = "E. R. Tufte" +, title = "The Visual Display of Quantative Information" +, publisher = "Graphics Press" +, address = "Cheshire, Connecticut" +, year = 1983 +, update = "96.09 tamassia, 96.04 garg" } @techreport{t-padug-94 -, author = "D. Tunkelang" -, title = "A practical approach to drawing undirected graphs" -, type = "Technical Report" -, number = "CMU-CS-94-161" -, institution = "School Comput. Sci., Carnegie Mellon University" -, month = jun -, year = 1994 -, update = "98.07 vismara" +, author = "D. Tunkelang" +, title = "A practical approach to drawing undirected graphs" +, type = "Technical Report" +, number = "CMU-CS-94-161" +, institution = "School Comput. Sci., Carnegie Mellon University" +, month = jun +, year = 1994 +, update = "98.07 vismara" } @inproceedings{tbc-lnuig-97 -, author = "Daniel Tunkelang and Roy J. Byrd and James W. Cooper" -, title = "Lexical Navigation: Using Incremental Graph Drawing for Query Refinement" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "316--321" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Daniel Tunkelang and Roy J. Byrd and James W. Cooper" +, title = "Lexical Navigation: Using Incremental Graph Drawing for Query Refinement" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "316--321" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @inproceedings{t-sman-94 -, author = "S. T. Tuohy" -, title = "A Simulation Model for AUV Navigation" -, booktitle = "Proc. 1994 Symposium on Autonomous Underwater Vehicle Technology" -, year = 1994 -, pages = "470--478" -, update = "95.05 abrams" +, author = "S. T. Tuohy" +, title = "A Simulation Model for AUV Navigation" +, booktitle = "Proc. 1994 Symposium on Autonomous Underwater Vehicle Technology" +, year = 1994 +, pages = "470--478" +, update = "95.05 abrams" } @phdthesis{t-gmrai -, author = "S. T. Tuohy" -, title = "Geophysical Map Representation, Abstraction and Interrogation for Autonomous Underwater Vehicle Navigation" -, type = "Ph.{D}. Thesis" -, school = "Massachusetts Institute of Technology" -, address = "Cambridge, Massachusetts" -, year = 1993 -, keywords = "doctoral thesis" -, update = "95.05 abrams" +, author = "S. T. Tuohy" +, title = "Geophysical Map Representation, Abstraction and Interrogation for Autonomous Underwater Vehicle Navigation" +, type = "Ph.{D}. Thesis" +, school = "Massachusetts Institute of Technology" +, address = "Cambridge, Massachusetts" +, year = 1993 +, keywords = "doctoral thesis" +, update = "95.05 abrams" } @article{tb-ldahd-93 -, author = "S. T. Tuohy and L. Bardis" -, title = "Low Degree Approximation of High Degree {B}-Spline Surfaces" -, journal = "Engineering with Computers" -, volume = 9 -, number = 4 -, year = 1993 -, pages = "198--209" -, update = "95.05 abrams" +, author = "S. T. Tuohy and L. Bardis" +, title = "Low Degree Approximation of High Degree {B}-Spline Surfaces" +, journal = "Engineering with Computers" +, volume = 9 +, number = 4 +, year = 1993 +, pages = "198--209" +, update = "95.05 abrams" } @article{tlbpc-mbnau-94 -, author = "S. T. Tuohy and J. J. Leonard and J. G. Bellingham and N. M. Patrikalakis and C. Chryssostomidis" -, title = "Map Based Navigation for Autonomous Underwater Vehicles" -, journal = "International Journal of Offshore and Polar Engineering" -, volume = "??" -, month = "June/September" -, year = 1995 -, note = "To appear" -, update = "95.05 abrams" +, author = "S. T. Tuohy and J. J. Leonard and J. G. Bellingham and N. M. Patrikalakis and C. Chryssostomidis" +, title = "Map Based Navigation for Autonomous Underwater Vehicles" +, journal = "International Journal of Offshore and Polar Engineering" +, volume = "??" +, month = "June/September" +, year = 1995 +, note = "To appear" +, update = "95.05 abrams" } @inproceedings{tmp-igmua-93 -, author = "S. T. Tuohy and T. Maekawa and N. M. Patrikalakis" -, title = "Interrogation of Geophysical Maps with Uncertainty for AUV Micro-Navigation" -, booktitle = "Proc. Oceans '93: Engineering in Harmony with the Ocean" -, year = 1993 -, update = "95.05 abrams" +, author = "S. T. Tuohy and T. Maekawa and N. M. Patrikalakis" +, title = "Interrogation of Geophysical Maps with Uncertainty for AUV Micro-Navigation" +, booktitle = "Proc. Oceans '93: Engineering in Harmony with the Ocean" +, year = 1993 +, update = "95.05 abrams" } @inproceedings{tp-grmp-91 -, author = "S. T. Tuohy and N. M. Patrikalakis" -, title = "Geometric Representation of Marine Propulsors" -, booktitle = "Proc. Marine Computers '91" -, year = 1991 -, pages = "CC5" -, update = "95.05 abrams" +, author = "S. T. Tuohy and N. M. Patrikalakis" +, title = "Geometric Representation of Marine Propulsors" +, booktitle = "Proc. Marine Computers '91" +, year = 1991 +, pages = "CC5" +, update = "95.05 abrams" } @inproceedings{tp-rgmu-93 -, author = "S. T. Tuohy and N. M. Patrikalakis" -, title = "Representation of Geophysical Maps with Uncertainty" -, editor = "N. Magnenat-Thalmann and D. Thalmann" -, booktitle = "Proc. CG International '93" -, year = 1993 -, pages = "179--192" -, update = "95.05 abrams" +, author = "S. T. Tuohy and N. M. Patrikalakis" +, title = "Representation of Geophysical Maps with Uncertainty" +, editor = "N. Magnenat-Thalmann and D. Thalmann" +, booktitle = "Proc. CG International '93" +, year = 1993 +, pages = "179--192" +, update = "95.05 abrams" } @inproceedings{tplbc-anugm-93 -, author = "S. T. Tuohy and N. M. Patrikalakis and J. J. Leonard and J. G. Bellingham and C. Chryssostomidis" -, title = "AUV Navigation Using Geophysical Maps with Uncertainty" -, booktitle = "Proc. 8th International Symposium on Unmanned Untethered Submersible Technology" -, year = 1993 -, pages = "265--276" -, update = "95.05 abrams" +, author = "S. T. Tuohy and N. M. Patrikalakis and J. J. Leonard and J. G. Bellingham and C. Chryssostomidis" +, title = "AUV Navigation Using Geophysical Maps with Uncertainty" +, booktitle = "Proc. 8th International Symposium on Unmanned Untethered Submersible Technology" +, year = 1993 +, pages = "265--276" +, update = "95.05 abrams" } @inproceedings{typ-i3dng-95 -, author = "S. T. Tuohy and J. W. Yoon and N. M. Patrikalakis" -, title = "Interrogation of 3-D Nonlinear Geophysical Databases" -, editor = "J. A. Vince and R. A. Earnshaw" -, booktitle = "Proc. CG International '95" -, year = 1995 -, note = "To appear" -, update = "95.05 abrams" +, author = "S. T. Tuohy and J. W. Yoon and N. M. Patrikalakis" +, title = "Interrogation of 3-D Nonlinear Geophysical Databases" +, editor = "J. A. Vince and R. A. Earnshaw" +, booktitle = "Proc. CG International '95" +, year = 1995 +, note = "To appear" +, update = "95.05 abrams" } @inproceedings{typ-vsvod-95 -, author = "S. T. Tuohy and J. W. Yoon and N. M. Patrikalakis" -, title = "Volumetric Splines for Visualization of Ocean Data" -, booktitle = "Proc. of Oceans '95" -, year = 1995 -, note = "To appear" -, update = "95.05 abrams" +, author = "S. T. Tuohy and J. W. Yoon and N. M. Patrikalakis" +, title = "Volumetric Splines for Visualization of Ocean Data" +, booktitle = "Proc. of Oceans '95" +, year = 1995 +, note = "To appear" +, update = "95.05 abrams" } @article{t-nw-77 -, author = "P. Tur{\'a}n" -, title = "A note of welcome" -, journal = "J. Graph Theory" -, volume = 1 -, year = 1977 -, pages = "7--9" -, update = "98.03 bibrelex" +, author = "P. Tur{\'a}n" +, title = "A note of welcome" +, journal = "J. Graph Theory" +, volume = 1 +, year = 1977 +, pages = "7--9" +, update = "98.03 bibrelex" } @article{t-frnns-91 -, author = "V. Turau" -, title = "Fixed-radius near neighbors search" -, journal = "Inform. Process. Lett." -, volume = 39 -, year = 1991 -, pages = "201--203" -, update = "98.03 devillers" +, author = "V. Turau" +, title = "Fixed-radius near neighbors search" +, journal = "Inform. Process. Lett." +, volume = 39 +, year = 1991 +, pages = "201--203" +, update = "98.03 devillers" } @techreport{t-icdmg-90 -, author = "G. Turk" -, title = "Interactive collision detection for molecular graphics" -, type = "Technical {Report}" -, number = "90-014" -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, month = jan -, year = 1990 -, update = "98.07 bibrelex" +, author = "G. Turk" +, title = "Interactive collision detection for molecular graphics" +, type = "Technical {Report}" +, number = "90-014" +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, month = jan +, year = 1990 +, update = "98.07 bibrelex" } @article{t-rtps-92 -, author = "G. Turk" -, title = "Re-tiling polygonal surfaces" -, journal = "Comput. Graphics" -, volume = 26 -, number = 2 -, year = 1992 -, pages = "55--64" -, note = "Proc. SIGGRAPH '92" -, keywords = "model simplification, automatic mesh generation, constrained triangulation, levels-of-detail, shape interpolation, approximation" -, update = "95.01 mitchell" -, annote = "" +, author = "G. Turk" +, title = "Re-tiling polygonal surfaces" +, journal = "Comput. Graphics" +, volume = 26 +, number = 2 +, year = 1992 +, pages = "55--64" +, note = "Proc. SIGGRAPH '92" +, keywords = "model simplification, automatic mesh generation, constrained triangulation, levels-of-detail, shape interpolation, approximation" +, update = "95.01 mitchell" +, annote = "" } @article{tsgcv-atmcs-97 -, author = "G. M. Turkiyyah and D. W. Storti and M. Ganter and H. Chen and M. Vimawala" -, title = "An Accelerated Triangulation Method for Computing the Skeletons of Free-Form Solid Models" -, journal = "Comput. Aided Design" -, volume = 29 -, number = 1 -, month = jan -, year = 1997 -, pages = "5--19" -, update = "97.11 held" +, author = "G. M. Turkiyyah and D. W. Storti and M. Ganter and H. Chen and M. Vimawala" +, title = "An Accelerated Triangulation Method for Computing the Skeletons of Free-Form Solid Models" +, journal = "Comput. Aided Design" +, volume = 29 +, number = 1 +, month = jan +, year = 1997 +, pages = "5--19" +, update = "97.11 held" } @techreport{t-psmfm-85 -, author = "J. U. Turner" -, title = "Precise solid modeling with a faceted modeler" -, type = "Report" -, number = "??" -, institution = "Dept. A74, IBM Corporation" -, year = 1985 +, author = "J. U. Turner" +, title = "Precise solid modeling with a faceted modeler" +, type = "Report" +, number = "??" +, institution = "Dept. A74, IBM Corporation" +, year = 1985 } @article{t-flg-47 -, author = "W. Tutte" -, title = "The factorization of linear graphs" -, journal = "J. London Math. Soc." -, volume = 22 -, year = 1947 -, pages = "107--111" -, update = "98.07 bibrelex" +, author = "W. Tutte" +, title = "The factorization of linear graphs" +, journal = "J. London Math. Soc." +, volume = 22 +, year = 1947 +, pages = "107--111" +, update = "98.07 bibrelex" } @article{t-cpt-62 -, author = "W. T. Tutte" -, title = "A Census of Planar Triangulation" -, journal = "Canad. J. Math." -, volume = 14 -, year = 1962 -, pages = "21--38" -, update = "97.11 bibrelex" +, author = "W. T. Tutte" +, title = "A Census of Planar Triangulation" +, journal = "Canad. J. Math." +, volume = 14 +, year = 1962 +, pages = "21--38" +, update = "97.11 bibrelex" } @article{t-tpg-56 -, author = "W. T. Tutte" -, title = "A theorem on planar graphs" -, journal = "Trans. Amer. Math. Soc." -, volume = 82 -, year = 1956 -, pages = "99--116" -, update = "98.11 bibrelex" +, author = "W. T. Tutte" +, title = "A theorem on planar graphs" +, journal = "Trans. Amer. Math. Soc." +, volume = 82 +, year = 1956 +, pages = "99--116" +, update = "98.11 bibrelex" } @article{t-bhcpg-77 -, author = "W. T. Tutte" -, title = "Bridges and {Hamiltonian} circuits in planar graphs" -, journal = "Aequationes Mathematicae" -, volume = 15 -, year = 1977 -, pages = "1--33" -, update = "98.11 bibrelex" +, author = "W. T. Tutte" +, title = "Bridges and {Hamiltonian} circuits in planar graphs" +, journal = "Aequationes Mathematicae" +, volume = 15 +, year = 1977 +, pages = "1--33" +, update = "98.11 bibrelex" } @book{t-cg-66 -, author = "W. T. Tutte" -, title = "Connectivity in Graphs" -, publisher = "University of Toronto Press" -, year = 1966 -, update = "97.11 bibrelex" +, author = "W. T. Tutte" +, title = "Connectivity in Graphs" +, publisher = "University of Toronto Press" +, year = 1966 +, update = "97.11 bibrelex" } @article{t-crg-60 -, author = "W. T. Tutte" -, title = "Convex Representations of Graphs" -, journal = "Proceedings London Mathematical Society" -, volume = 10 -, number = 38 -, year = 1960 -, pages = "304--320" -, keywords = "graph drawing" -, update = "98.07 tamassia, 95.09 tamassia, 93.09 tamassia" +, author = "W. T. Tutte" +, title = "Convex Representations of Graphs" +, journal = "Proceedings London Mathematical Society" +, volume = 10 +, number = 38 +, year = 1960 +, pages = "304--320" +, keywords = "graph drawing" +, update = "98.07 tamassia, 95.09 tamassia, 93.09 tamassia" } @book{t-gt-84 -, author = "W. T. Tutte" -, title = "Graph Theory" -, publisher = "Addison-Wesley" -, year = 1984 -, update = "97.11 bibrelex" +, author = "W. T. Tutte" +, title = "Graph Theory" +, publisher = "Addison-Wesley" +, year = 1984 +, update = "97.11 bibrelex" } @article{t-hdg-63 -, author = "W. T. Tutte" -, title = "How to Draw a Graph" -, journal = "Proceedings London Mathematical Society" -, volume = 13 -, number = 52 -, year = 1963 -, pages = "743--768" -, keywords = "graph drawing" -, update = "98.07 tamassia, 95.09 tamassia, 93.09 tamassia" +, author = "W. T. Tutte" +, title = "How to Draw a Graph" +, journal = "Proceedings London Mathematical Society" +, volume = 13 +, number = 52 +, year = 1963 +, pages = "743--768" +, keywords = "graph drawing" +, update = "98.07 tamassia, 95.09 tamassia, 93.09 tamassia" } @article{t-scg-59 -, author = "W. T. Tutte" -, title = "On the Symmetry of Cubic Graphs" -, journal = "Proc. London Math. Soc." -, volume = 10 -, year = 1959 -, pages = "304--320" -, update = "97.11 bibrelex" +, author = "W. T. Tutte" +, title = "On the Symmetry of Cubic Graphs" +, journal = "Proc. London Math. Soc." +, volume = 10 +, year = 1959 +, pages = "304--320" +, update = "97.11 bibrelex" } @article{t-ttcn-70 -, author = "W. T. Tutte" -, title = "Toward a theory of crossing numbers" -, journal = "J. Combin. Theory" -, volume = 8 -, year = 1970 -, pages = "45--53" -, update = "97.11 bibrelex" +, author = "W. T. Tutte" +, title = "Toward a theory of crossing numbers" +, journal = "J. Combin. Theory" +, volume = 8 +, year = 1970 +, pages = "45--53" +, update = "97.11 bibrelex" } @incollection{t-wim-73 -, author = "W. T. Tutte" -, title = "What is a Map?" -, booktitle = "New Directions in the Theory of Graphs" -, publisher = "Academic Press" -, year = 1973 -, update = "97.11 bibrelex" +, author = "W. T. Tutte" +, title = "What is a Map?" +, booktitle = "New Directions in the Theory of Graphs" +, publisher = "Academic Press" +, year = 1973 +, update = "97.11 bibrelex" } @article{t-cgcbs-84 -, author = "Z. Tuza" -, title = "Covering of graphs by complete bipartite subgraphs: complexity of $0-1$ matrices" -, journal = "Combinatorica" -, volume = 4 -, year = 1984 -, pages = "111--116" -, update = "98.03 bibrelex" +, author = "Z. Tuza" +, title = "Covering of graphs by complete bipartite subgraphs: complexity of $0-1$ matrices" +, journal = "Combinatorica" +, volume = 4 +, year = 1984 +, pages = "111--116" +, update = "98.03 bibrelex" } @article{t-grt-66 -, author = "H. Tverberg" -, title = "A generalization of {Radon}'s theorem" -, journal = "J. London Math. Soc." -, volume = 41 -, year = 1966 -, pages = "123--128" -, update = "97.11 bibrelex" +, author = "H. Tverberg" +, title = "A generalization of {Radon}'s theorem" +, journal = "J. London Math. Soc." +, volume = 41 +, year = 1966 +, pages = "123--128" +, update = "97.11 bibrelex" } @article{t-sppcs-79 -, author = "H. Tverberg" -, title = "A separation property of plane convex sets" -, journal = "Math. Scand." -, volume = 45 -, year = 1979 -, pages = "225--260" +, author = "H. Tverberg" +, title = "A separation property of plane convex sets" +, journal = "Math. Scand." +, volume = 45 +, year = 1979 +, pages = "225--260" } @article{t-pgcct-89 -, author = "H. Tverberg" -, title = "Proof of {Gr{\"u}nbaum}'s conjecture on common transversals for translates" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "191--203" -, update = "93.09 rote" +, author = "H. Tverberg" +, title = "Proof of {Gr{\"u}nbaum}'s conjecture on common transversals for translates" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "191--203" +, update = "93.09 rote" } @article{uot-cdms-83 -, author = "T. Uchiki and T. Ohashi and M. Tokoro" -, title = "Collision Detection in Motion Simulation" -, journal = "Comput. \& Graphics" -, volume = 7 -, number = "3--4" -, year = 1983 -, pages = "285--293" -, update = "95.01 mitchell" +, author = "T. Uchiki and T. Ohashi and M. Tokoro" +, title = "Collision Detection in Motion Simulation" +, journal = "Comput. \& Graphics" +, volume = 7 +, number = "3--4" +, year = 1983 +, pages = "285--293" +, update = "95.01 mitchell" } @inproceedings{ut-r3dso-97 -, author = "G{\"o}kt{\"u}rk {\"U}{\c c}oluk and {\.I}. Hakk{\i} Toroslu" -, title = "Reconstruction of 3--{D} Surface Object from its Pieces" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "187--192" -, update = "97.11 jones" +, author = "G{\"o}kt{\"u}rk {\"U}{\c c}oluk and {\.I}. Hakk{\i} Toroslu" +, title = "Reconstruction of 3--{D} Surface Object from its Pieces" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "187--192" +, update = "97.11 jones" } @inproceedings{u-cdacc-77 -, author = "S. Udupa" -, title = "Collision detection and avoidance in computer controlled manipulators" -, booktitle = "Proc. Internat. Joint Conf. Artif. Intell." -, year = 1977 -, pages = "737--748" -, update = "98.03 bibrelex" +, author = "S. Udupa" +, title = "Collision detection and avoidance in computer controlled manipulators" +, booktitle = "Proc. Internat. Joint Conf. Artif. Intell." +, year = 1977 +, pages = "737--748" +, update = "98.03 bibrelex" } % ### others? @article{uo-cibtd-88 -, author = "J. L. Udy and others" -, title = "Computation of Interferences between Three-Dimensional Objects and the Optimal Packing Problem" -, journal = "Adv. Eng. Softw." -, volume = 10 -, number = 1 -, year = 1988 -, pages = "8--12" -, update = "93.09 held" +, author = "J. L. Udy and others" +, title = "Computation of Interferences between Three-Dimensional Objects and the Optimal Packing Problem" +, journal = "Adv. Eng. Softw." +, volume = 10 +, number = 1 +, year = 1988 +, pages = "8--12" +, update = "93.09 held" } @book{u-ascan-84 -, author = "L. Uhr" -, title = "Algorithms- Structured Computer Arrays and Networks" -, publisher = "Academic Press" -, year = 1984 -, update = "97.11 bibrelex" +, author = "L. Uhr" +, title = "Algorithms- Structured Computer Arrays and Networks" +, publisher = "Academic Press" +, year = 1984 +, update = "97.11 bibrelex" } @article{u-lrcnt-72 -, author = "L. Uhr" -, title = "Layered ``recognition cone'' networks that preprocess, classify and describe" -, journal = "IEEE Trans. Comput." -, volume = "C-21" -, year = 1972 -, pages = "758--768" -, update = "97.11 bibrelex" +, author = "L. Uhr" +, title = "Layered ``recognition cone'' networks that preprocess, classify and describe" +, journal = "IEEE Trans. Comput." +, volume = "C-21" +, year = 1972 +, pages = "758--768" +, update = "97.11 bibrelex" } @incollection{u-pcv-60 -, author = "S. M. Ulam" -, title = "A Problem in the Calculus of Variations" -, chapter = "VI, Section 9" -, booktitle = "A Collection of Mathematical Problems" -, publisher = "Interscience Publishers" -, year = 1960 -, update = "98.03 bibrelex" +, author = "S. M. Ulam" +, title = "A Problem in the Calculus of Variations" +, chapter = "VI, Section 9" +, booktitle = "A Collection of Mathematical Problems" +, publisher = "Interscience Publishers" +, year = 1960 +, update = "98.03 bibrelex" } @book{u-pmm-64 -, author = "S. M. Ulam" -, title = "Problems of Modern Mathematics" -, publisher = "Science Editions" -, address = "New York" -, year = 1964 -, update = "97.11 bibrelex" +, author = "S. M. Ulam" +, title = "Problems of Modern Mathematics" +, publisher = "Science Editions" +, address = "New York" +, year = 1964 +, update = "97.11 bibrelex" } @book{u-cav-84 -, author = "J. D. Ullman" -, title = "Computational Aspects of {VLSI}" -, publisher = "Computer Science Press" -, year = 1984 -, update = "97.11 bibrelex" +, author = "J. D. Ullman" +, title = "Computational Aspects of {VLSI}" +, publisher = "Computer Science Press" +, year = 1984 +, update = "97.11 bibrelex" } @book{u-cav-92 -, author = "J. D. Ullman" -, title = "Computational Aspects of {VLSI}" -, publisher = "Morgan-Kaufmann" -, address = "San Mateo, CA" -, year = 1992 -, update = "96.09 orourke" +, author = "J. D. Ullman" +, title = "Computational Aspects of {VLSI}" +, publisher = "Morgan-Kaufmann" +, address = "San Mateo, CA" +, year = 1992 +, update = "96.09 orourke" } @inproceedings{ul-hcsgg-97 -, author = "Christopher Umans and William Lenhart" -, title = "Hamiltonian Cycles in Solid Grid Graphs" -, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '97" -, year = 1997 -, pages = "496--507" -, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" +, author = "Christopher Umans and William Lenhart" +, title = "Hamiltonian Cycles in Solid Grid Graphs" +, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '97" +, year = 1997 +, pages = "496--507" +, update = "99.11 bibrelex, 98.07 bibrelex, 98.03 mitchell" } @mastersthesis{u-sp1s-95 -, author = "H. Umemoto" -, title = "Searching a polygon by $1$-searchers" -, school = "Hiroshima Univ." -, address = "Hiroshima, Japan" -, year = 1995 -, keywords = "master thesis" -, update = "98.07 bibrelex" +, author = "H. Umemoto" +, title = "Searching a polygon by $1$-searchers" +, school = "Hiroshima Univ." +, address = "Hiroshima, Japan" +, year = 1995 +, keywords = "master thesis" +, update = "98.07 bibrelex" } @article{u-2nnpd-82 -, author = "P. Ungar" -, title = "$2$n noncollinear points determine at least $2$n directions" -, journal = "J. Combin. Theory Ser. A" -, volume = 33 -, year = 1982 -, pages = "343--347" -, update = "97.11 bibrelex" +, author = "P. Ungar" +, title = "$2$n noncollinear points determine at least $2$n directions" +, journal = "J. Combin. Theory Ser. A" +, volume = 33 +, year = 1982 +, pages = "343--347" +, update = "97.11 bibrelex" } @article{u-opcp-96 -, author = "M. Urabe" -, title = "On a partition into convex polygons" -, journal = "Discrete Appl. Math." -, volume = 64 -, year = 1996 -, pages = "179--191" -, update = "99.11 smid" +, author = "M. Urabe" +, title = "On a partition into convex polygons" +, journal = "Discrete Appl. Math." +, volume = 64 +, year = 1996 +, pages = "179--191" +, update = "99.11 smid" } @inproceedings{u-ppscp-97 -, author = "Masatsugu Urabe" -, title = "On a Partition of Point Sets into Convex Polygons" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "21--24" -, update = "97.11 jones" +, author = "Masatsugu Urabe" +, title = "On a Partition of Point Sets into Convex Polygons" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "21--24" +, update = "97.11 jones" } @article{u-ppsdc-99 -, author = "M. Urabe" -, title = "Partitioning point sets into disjoint convex polytopes" -, journal = "Comput. Geom. Theory Appl." -, volume = 13 -, year = 1999 -, pages = "173--178" -, update = "99.11 smid" +, author = "M. Urabe" +, title = "Partitioning point sets into disjoint convex polytopes" +, journal = "Comput. Geom. Theory Appl." +, volume = 13 +, year = 1999 +, pages = "173--178" +, update = "99.11 smid" } @article{uw-ccm-92 -, author = "M. Urabe and M. Watanabe" -, title = "On a counterexample to a conjecture of {Mirzaian}" -, journal = "Comput. Geom. Theory Appl." -, volume = 2 -, number = 1 -, year = 1992 -, pages = "51--53" -, update = "95.01 mitchell" +, author = "M. Urabe and M. Watanabe" +, title = "On a counterexample to a conjecture of {Mirzaian}" +, journal = "Comput. Geom. Theory Appl." +, volume = 2 +, number = 1 +, year = 1992 +, pages = "51--53" +, update = "95.01 mitchell" } @techreport{u-gtcbl-?? -, author = "R. Urquhart" -, title = "Graph theoretical clustering based on limited neighbourhood sets {II}" -, type = "Manuscript" -, institution = "Dept. Electron. Elect. Engrg., Univ. Glasgow" -, address = "Glasgow, Scotland" -, year = "??" +, author = "R. Urquhart" +, title = "Graph theoretical clustering based on limited neighbourhood sets {II}" +, type = "Manuscript" +, institution = "Dept. Electron. Elect. Engrg., Univ. Glasgow" +, address = "Glasgow, Scotland" +, year = "??" } @techreport{u-ngdr-80 -, author = "R. B. Urquhart" -, title = "A note on graphs defined by a region" -, type = "Internal {Report}" -, number = "" -, institution = "Dept. Electron. Elect. Engrg., Univ. Glasgow" -, address = "Glasgow, Scotland" -, year = 1980 -, update = "94.05 devillers" +, author = "R. B. Urquhart" +, title = "A note on graphs defined by a region" +, type = "Internal {Report}" +, number = "" +, institution = "Dept. Electron. Elect. Engrg., Univ. Glasgow" +, address = "Glasgow, Scotland" +, year = 1980 +, update = "94.05 devillers" } @techreport{u-ncsdt-80 -, author = "R. B. Urquhart" -, title = "A note on the computation of subgraphs of the {Delaunay} triangulation" -, type = "Internal {Report}" -, number = "" -, institution = "Dept. Electron. Elect. Engrg., Univ. Glasgow" -, address = "Glasgow, Scotland" -, year = 1980 -, update = "94.05 devillers" +, author = "R. B. Urquhart" +, title = "A note on the computation of subgraphs of the {Delaunay} triangulation" +, type = "Internal {Report}" +, number = "" +, institution = "Dept. Electron. Elect. Engrg., Univ. Glasgow" +, address = "Glasgow, Scotland" +, year = 1980 +, update = "94.05 devillers" } @article{u-acrng-80 -, author = "R. B. Urquhart" -, title = "Algorithms for computation of relative neighborhood graph" -, journal = "Electron. Lett." -, volume = 16 -, year = 1980 -, pages = "556--557" +, author = "R. B. Urquhart" +, title = "Algorithms for computation of relative neighborhood graph" +, journal = "Electron. Lett." +, volume = 16 +, year = 1980 +, pages = "556--557" } @article{u-gtcbl-82 -, author = "R. B. Urquhart" -, title = "Graph theoretical clustering based on limited neighbourhood sets" -, journal = "Pattern Recogn." -, volume = 15 -, year = 1982 -, pages = "173--187" +, author = "R. B. Urquhart" +, title = "Graph theoretical clustering based on limited neighbourhood sets" +, journal = "Pattern Recogn." +, volume = 15 +, year = 1982 +, pages = "173--187" } @article{u-spper-83 -, author = "R. B. Urquhart" -, title = "Some Properties of the Planar {Euclidean} Relative Neighbourhood Graph" -, journal = "Pattern Recogn. Lett." -, volume = 1 -, year = 1983 -, pages = "317--332" -, update = "98.11 bibrelex" +, author = "R. B. Urquhart" +, title = "Some Properties of the Planar {Euclidean} Relative Neighbourhood Graph" +, journal = "Pattern Recogn. Lett." +, volume = 1 +, year = 1983 +, pages = "317--332" +, update = "98.11 bibrelex" } @inproceedings{um-ihcdb-81 -, author = "R. B. Urquhart and J. E. S. Macleod" -, title = "Interactive hierarchic clustering: a display based on graph-theoretical methods" -, booktitle = "Proc. Internat. Conf. Cybernet. Soc." -, year = 1981 -, pages = "11--15" +, author = "R. B. Urquhart and J. E. S. Macleod" +, title = "Interactive hierarchic clustering: a display based on graph-theoretical methods" +, booktitle = "Proc. Internat. Conf. Cybernet. Soc." +, year = 1981 +, pages = "11--15" } @incollection{u-agip-00 -, author = "Jorge Urrutia" -, title = "Art Gallery and Illumination Problems" -, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" -, booktitle = "Handbook of Computational Geometry" -, publisher = "North-Holland" -, year = 2000 -, pages = "973--1027" -, keywords = "visibility" -, update = "00.03 bibrelex+smid, 99.03 bibrelex, 96.09 orourke" -, annote = "Chapter 22 of su-hcg-00" +, author = "Jorge Urrutia" +, title = "Art Gallery and Illumination Problems" +, editor = "J{\"o}rg-R{\"u}diger Sack and Jorge Urrutia" +, booktitle = "Handbook of Computational Geometry" +, publisher = "North-Holland" +, year = 2000 +, pages = "973--1027" +, keywords = "visibility" +, update = "00.03 bibrelex+smid, 99.03 bibrelex, 96.09 orourke" +, annote = "Chapter 22 of su-hcg-00" } @phdthesis{u-igfpc-80 -, author = "J. Urrutia" -, title = "Intersection Graphs of Some Families of Plane Curves" -, school = "University of Waterloo" -, year = 1980 -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "J. Urrutia" +, title = "Intersection Graphs of Some Families of Plane Curves" +, school = "University of Waterloo" +, year = 1980 +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @inproceedings{u-nieve-97 -, author = "Jorge Urrutia" -, title = "On the Number of Internal and External Visibility Edges of Polygons" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "17--20" -, update = "97.11 jones" +, author = "Jorge Urrutia" +, title = "On the Number of Internal and External Visibility Edges of Polygons" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "17--20" +, update = "97.11 jones" } @incollection{u-poeg-89 -, author = "J. Urrutia" -, title = "Partial orders and {Euclidean} geometry" -, editor = "I. Rival" -, booktitle = "Algorithms and Order" -, publisher = "Kluwer Academic Publishers" -, year = 1989 -, pages = "387--434" -, keywords = "combinatorial geometry, two-dimensional, three-dimensional" -, annote = "studies containment relations arising from families of - points, circles, spheres, triangles, rectangles, etc." +, author = "J. Urrutia" +, title = "Partial orders and {Euclidean} geometry" +, editor = "I. Rival" +, booktitle = "Algorithms and Order" +, publisher = "Kluwer Academic Publishers" +, year = 1989 +, pages = "387--434" +, keywords = "combinatorial geometry, two-dimensional, three-dimensional" +, annote = "studies containment relations arising from families of + points, circles, spheres, triangles, rectangles, etc." } @techreport{uz-ics-89 -, author = "J. Urrutia and J. Zaks" -, title = "Illuminating convex sets" -, type = "Technical {Report}" -, number = "TR-89-31" -, institution = "Dept. Comput. Sci., Univ. Ottawa" -, address = "Ottawa, ON" -, year = 1989 -, update = "98.07 bibrelex" +, author = "J. Urrutia and J. Zaks" +, title = "Illuminating convex sets" +, type = "Technical {Report}" +, number = "TR-89-31" +, institution = "Dept. Comput. Sci., Univ. Ottawa" +, address = "Ottawa, ON" +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{u-ealie-82 -, author = "S. Ursic" -, title = "The ellipsoid algorithm for linear inequalities in exact arithmetic" -, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1982 -, pages = "321--326" +, author = "S. Ursic" +, title = "The ellipsoid algorithm for linear inequalities in exact arithmetic" +, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1982 +, pages = "321--326" } @book{u-te-48 -, author = "J. V. Uspensky" -, title = "Theory of Equations" -, publisher = "McGraw-Hill" -, year = 1948 -, update = "98.03 bibrelex" +, author = "J. V. Uspensky" +, title = "Theory of Equations" +, publisher = "McGraw-Hill" +, year = 1948 +, update = "98.03 bibrelex" } @article{us-hmsss-92 -, author = "A. Y. Uteshev and S. G. Shulyak" -, title = "Hermite's method of separation of solutions of systems of algebraic equations and its applications" -, journal = "Linear Algebra and its Applications" -, volume = 177 -, year = 1992 -, pages = "49--88" -, update = "98.03 bibrelex" +, author = "A. Y. Uteshev and S. G. Shulyak" +, title = "Hermite's method of separation of solutions of systems of algebraic equations and its applications" +, journal = "Linear Algebra and its Applications" +, volume = 177 +, year = 1992 +, pages = "49--88" +, update = "98.03 bibrelex" } @phdthesis{v-atmtd-74 -, author = "H. Vaccaro" -, title = "Alternative Techniques for Modeling Travel Distance" -, school = "MIT" -, year = 1974 -, keywords = "doctoral thesis" -, update = "93.09 milone+mitchell" +, author = "H. Vaccaro" +, title = "Alternative Techniques for Modeling Travel Distance" +, school = "MIT" +, year = 1974 +, keywords = "doctoral thesis" +, update = "93.09 milone+mitchell" } @inproceedings{vp-iopsp-91 -, author = "M.-E. Vafiadou and N. M. Patrikalakis" -, title = "Interrogation of Offsets of Polynomial Surface Patches" -, editor = "F. H. Post and W. Barth" -, booktitle = "Eurographics '91, Proc. 12th Annual European Association for Computer Graphics Conference and Exhibition" -, year = 1991 -, pages = "247--259" -, update = "95.05 abrams" +, author = "M.-E. Vafiadou and N. M. Patrikalakis" +, title = "Interrogation of Offsets of Polynomial Surface Patches" +, editor = "F. H. Post and W. Barth" +, booktitle = "Eurographics '91, Proc. 12th Annual European Association for Computer Graphics Conference and Exhibition" +, year = 1991 +, pages = "247--259" +, update = "95.05 abrams" } @inproceedings{vh-fsemp-98 -, author = "Jan Vahrenhold and Klaus H. Hinrichs" -, title = "Fast and Simple External-Memory Planar Point-Location" -, booktitle = "Abstracts 14th European Workshop Comput. Geom." -, nickname = "CG '98" -, site = "Barcelona" -, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" -, year = 1998 -, pages = "139--140" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Jan Vahrenhold and Klaus H. Hinrichs" +, title = "Fast and Simple External-Memory Planar Point-Location" +, booktitle = "Abstracts 14th European Workshop Comput. Geom." +, nickname = "CG '98" +, site = "Barcelona" +, publisher = "Universitat Polyt{\`e}nica de Catalunya, Barcelona" +, year = 1998 +, pages = "139--140" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{v-famst-84 -, author = "P. M. Vaidya" -, title = "A fast approximation for minimum spanning trees in $k$-dimensional space" -, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1984 -, pages = "403--407" -, precedes = "v-mstkd-88" +, author = "P. M. Vaidya" +, title = "A fast approximation for minimum spanning trees in $k$-dimensional space" +, booktitle = "Proc. 25th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1984 +, pages = "403--407" +, precedes = "v-mstkd-88" } @inproceedings{v-namcf-89 -, author = "P. M. Vaidya" -, title = "A new algorithm for minimizing convex functions over convex sets" -, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1989 -, pages = "338--343" +, author = "P. M. Vaidya" +, title = "A new algorithm for minimizing convex functions over convex sets" +, booktitle = "Proc. 30th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1989 +, pages = "338--343" } @article{v-sgagc-91 -, author = "P. M. Vaidya" -, title = "A sparse graph almost as good as the complete graph on points in {$K$} dimensions" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "369--381" +, author = "P. M. Vaidya" +, title = "A sparse graph almost as good as the complete graph on points in {$K$} dimensions" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "369--381" } @inproceedings{v-alpwr-87 -, author = "P. M. Vaidya" -, title = "An algorithm for linear programming which requires {$O(((m+n)n^2+(m+n)^{1.5}n)L)$} arithmetic operations" -, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." -, year = 1987 -, pages = "29--38" -, precedes = "v-alpwr-90" +, author = "P. M. Vaidya" +, title = "An algorithm for linear programming which requires {$O(((m+n)n^2+(m+n)^{1.5}n)L)$} arithmetic operations" +, booktitle = "Proc. 19th Annu. ACM Sympos. Theory Comput." +, year = 1987 +, pages = "29--38" +, precedes = "v-alpwr-90" } @article{v-alpwr-90 -, author = "P. M. Vaidya" -, title = "An algorithm for linear programming which requires {$O(((m+n)n^2+(m+n)^{1.5}n)L)$} arithmetic operations" -, journal = "Math. Program." -, volume = 47 -, year = 1990 -, pages = "175--201" -, succeeds = "v-alpwr-87" +, author = "P. M. Vaidya" +, title = "An algorithm for linear programming which requires {$O(((m+n)n^2+(m+n)^{1.5}n)L)$} arithmetic operations" +, journal = "Math. Program." +, volume = 47 +, year = 1990 +, pages = "175--201" +, succeeds = "v-alpwr-87" } @article{v-oaann-89 -, author = "P. M. Vaidya" -, title = "An {$O(n \log n)$} algorithm for the all-nearest-neighbors problem" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "101--115" -, succeeds = "v-oaann-86" +, author = "P. M. Vaidya" +, title = "An {$O(n \log n)$} algorithm for the all-nearest-neighbors problem" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "101--115" +, succeeds = "v-oaann-86" } @inproceedings{v-oaann-86 -, author = "P. M. Vaidya" -, title = "An optimal algorithm for the all-nearest-neighbors problem" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "117--122" -, precedes = "v-oaann-89" +, author = "P. M. Vaidya" +, title = "An optimal algorithm for the all-nearest-neighbors problem" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "117--122" +, precedes = "v-oaann-89" } @article{v-amwmp-89 -, author = "P. M. Vaidya" -, title = "Approximate minimum weight matching on points in $k$-dimensional space" -, journal = "Algorithmica" -, volume = 4 -, year = 1989 -, pages = "569--583" -, keywords = "matchings, approximation, $d$-dimensional" +, author = "P. M. Vaidya" +, title = "Approximate minimum weight matching on points in $k$-dimensional space" +, journal = "Algorithmica" +, volume = 4 +, year = 1989 +, pages = "569--583" +, keywords = "matchings, approximation, $d$-dimensional" } @inproceedings{v-ghm-88 -, author = "P. M. Vaidya" -, title = "Geometry helps in matching" -, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." -, year = 1988 -, pages = "422--435" -, precedes = "v-ghm-89" +, author = "P. M. Vaidya" +, title = "Geometry helps in matching" +, booktitle = "Proc. 20th Annu. ACM Sympos. Theory Comput." +, year = 1988 +, pages = "422--435" +, precedes = "v-ghm-89" } @article{v-ghm-89 -, author = "P. M. Vaidya" -, title = "Geometry helps in matching" -, journal = "SIAM J. Comput." -, volume = 18 -, year = 1989 -, pages = "1201--1225" -, succeeds = "v-ghm-88" +, author = "P. M. Vaidya" +, title = "Geometry helps in matching" +, journal = "SIAM J. Comput." +, volume = 18 +, year = 1989 +, pages = "1201--1225" +, succeeds = "v-ghm-88" } @article{v-mstkd-88 -, author = "P. M. Vaidya" -, title = "Minimum spanning trees in $k$-dimensional space" -, journal = "SIAM J. Comput." -, volume = 17 -, year = 1988 -, pages = "572--582" -, succeeds = "v-famst-84" -, update = "98.03 mitchell" -, annote = "He gives an $O(\epsilon^{-d} n\log n)$ algorithm to get +, author = "P. M. Vaidya" +, title = "Minimum spanning trees in $k$-dimensional space" +, journal = "SIAM J. Comput." +, volume = 17 +, year = 1988 +, pages = "572--582" +, succeeds = "v-famst-84" +, update = "98.03 mitchell" +, annote = "He gives an $O(\epsilon^{-d} n\log n)$ algorithm to get within factor $(1+\epsilon)$ of optimal, for the $L_q$ metrics. He also gives a nearly linear expected time algorithm for $n$ @@ -143499,969 +143499,969 @@ @article{v-mstkd-88 } @inproceedings{v-rpccl-90 -, author = "P. M. Vaidya" -, title = "Reducing the parallel complexity of certain linear programming problems" -, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1990 -, pages = "583--589" +, author = "P. M. Vaidya" +, title = "Reducing the parallel complexity of certain linear programming problems" +, booktitle = "Proc. 31st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1990 +, pages = "583--589" } @inproceedings{v-sttor-85 -, author = "P. M. Vaidya" -, title = "Space-time tradeoffs for orthogonal range queries" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "169--174" -, precedes = "v-sttor-89" +, author = "P. M. Vaidya" +, title = "Space-time tradeoffs for orthogonal range queries" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "169--174" +, precedes = "v-sttor-89" } @article{v-sttor-89 -, author = "P. M. Vaidya" -, title = "Space-time tradeoffs for orthogonal range queries" -, journal = "SIAM J. Comput." -, volume = 18 -, year = 1989 -, pages = "748--758" -, succeeds = "v-sttor-85" +, author = "P. M. Vaidya" +, title = "Space-time tradeoffs for orthogonal range queries" +, journal = "SIAM J. Comput." +, volume = 18 +, year = 1989 +, pages = "748--758" +, succeeds = "v-sttor-85" } @article{v-fmep-90 -, author = "A. Vainshtein" -, title = "Finding minimal enclosing parallelograms" -, journal = "Diskretnaya Matematika" -, volume = 2 -, year = 1990 -, pages = "72--81" -, note = "In Russian" -, update = "98.03 bibrelex" +, author = "A. Vainshtein" +, title = "Finding minimal enclosing parallelograms" +, journal = "Diskretnaya Matematika" +, volume = 2 +, year = 1990 +, pages = "72--81" +, note = "In Russian" +, update = "98.03 bibrelex" } @article{v-cpe-82 -, author = "V. K. Vaishnavi" -, title = "Computing point enclosures" -, journal = "IEEE Trans. Comput." -, volume = "C-31" -, year = 1982 -, pages = "22--29" +, author = "V. K. Vaishnavi" +, title = "Computing point enclosures" +, journal = "IEEE Trans. Comput." +, volume = "C-31" +, year = 1982 +, pages = "22--29" } @article{v-mhbt-83 -, author = "V. K. Vaishnavi" -, title = "Multidimensional height-balanced trees" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, year = 1983 -, pages = "334--343" +, author = "V. K. Vaishnavi" +, title = "Multidimensional height-balanced trees" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, year = 1983 +, pages = "334--343" } @techreport{v-owcar-79 -, author = "V. K. Vaishnavi" -, title = "Optimal worst-case algorithms for rectangle intersection and batched range searching problems" -, type = "Report" -, number = "79-CS-12" -, institution = "Unit Comput. Sci., McMaster Univ." -, address = "Hamilton, ON" -, year = 1979 +, author = "V. K. Vaishnavi" +, title = "Optimal worst-case algorithms for rectangle intersection and batched range searching problems" +, type = "Report" +, number = "79-CS-12" +, institution = "Unit Comput. Sci., McMaster Univ." +, address = "Hamilton, ON" +, year = 1979 } @article{vkw-stoac-80 -, author = "V. K. Vaishnavi and H. P. Kriegel and D. Wood" -, title = "Space and time optimal algorithms for a class of rectangle intersection problems" -, journal = "Inform. Sci." -, volume = 21 -, year = 1980 -, pages = "59--67" +, author = "V. K. Vaishnavi and H. P. Kriegel and D. Wood" +, title = "Space and time optimal algorithms for a class of rectangle intersection problems" +, journal = "Inform. Sci." +, volume = 21 +, year = 1980 +, pages = "59--67" } @article{vw-dsrce-80 -, author = "V. K. Vaishnavi and D. Wood" -, title = "Data structures for the rectangle containment and enclosure problems" -, journal = "Comput. Graph. Image Process." -, volume = 13 -, year = 1980 -, pages = "372--384" +, author = "V. K. Vaishnavi and D. Wood" +, title = "Data structures for the rectangle containment and enclosure problems" +, journal = "Comput. Graph. Image Process." +, volume = 13 +, year = 1980 +, pages = "372--384" } @article{vw-rlsil-82 -, author = "V. K. Vaishnavi and D. Wood" -, title = "Rectilinear line segment intersection, layered segment trees and dynamization" -, journal = "J. Algorithms" -, volume = 3 -, year = 1982 -, pages = "160--176" +, author = "V. K. Vaishnavi and D. Wood" +, title = "Rectilinear line segment intersection, layered segment trees and dynamization" +, journal = "J. Algorithms" +, volume = 3 +, year = 1982 +, pages = "160--176" } @article{vtl-rspd-82 -, author = "J. Valdes and R. E. Tarjan and E. L. Lawler" -, title = "The Recognition of Series-Parallel Digraphs" -, journal = "SIAM J. Comput." -, volume = 11 -, number = 2 -, year = 1982 -, pages = "298--313" -, update = "94.05 tamassia" +, author = "J. Valdes and R. E. Tarjan and E. L. Lawler" +, title = "The Recognition of Series-Parallel Digraphs" +, journal = "SIAM J. Comput." +, volume = 11 +, number = 2 +, year = 1982 +, pages = "298--313" +, update = "94.05 tamassia" } @inproceedings{v-msv-53 -, author = "F. Valentine" -, title = "Minimal Sets of Visibility" -, booktitle = "Proc. Amer. Math. Soc." -, volume = 4 -, year = 1953 -, pages = "917--921" -, update = "98.07 bibrelex" +, author = "F. Valentine" +, title = "Minimal Sets of Visibility" +, booktitle = "Proc. Amer. Math. Soc." +, volume = 4 +, year = 1953 +, pages = "917--921" +, update = "98.07 bibrelex" } @book{v-cs-64 -, author = "Frederick Albert Valentine" -, title = "Convex Sets" -, publisher = "McGraw-Hill" -, address = "New York" -, year = 1964 -, update = "98.07 icking" +, author = "Frederick Albert Valentine" +, title = "Convex Sets" +, publisher = "McGraw-Hill" +, address = "New York" +, year = 1964 +, update = "98.07 icking" } @article{v-lcls-65 -, author = "F. A. Valentine" -, title = "Local convexity and {$L_{n}$} sets" -, journal = "Proc. Amer. Math. Soc." -, volume = 16 -, year = 1965 -, pages = "1305--1310" -, update = "98.07 bibrelex" +, author = "F. A. Valentine" +, title = "Local convexity and {$L_{n}$} sets" +, journal = "Proc. Amer. Math. Soc." +, volume = 16 +, year = 1965 +, pages = "1305--1310" +, update = "98.07 bibrelex" } @inproceedings{v-cca-79 -, author = "L. Valiant" -, title = "Completeness classes in algebra" -, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." -, year = 1979 -, pages = "249--261" -, update = "95.01 devillers" +, author = "L. Valiant" +, title = "Completeness classes in algebra" +, booktitle = "Proc. 11th Annu. ACM Sympos. Theory Comput." +, year = 1979 +, pages = "249--261" +, update = "95.01 devillers" } @article{v-pcp-75 -, author = "L. Valiant" -, title = "Parallelism in comparison problems" -, journal = "SIAM J. Comput." -, volume = 4 -, number = 3 -, year = 1975 -, pages = "348--355" +, author = "L. Valiant" +, title = "Parallelism in comparison problems" +, journal = "SIAM J. Comput." +, volume = 4 +, number = 3 +, year = 1975 +, pages = "348--355" } @article{v-smfmf-84 -, author = "L. Valiant" -, title = "Short monotone formulae for the majority function" -, journal = "J. Algorithms" -, volume = 5 -, year = 1984 -, pages = "363--366" -, update = "98.03 bibrelex" +, author = "L. Valiant" +, title = "Short monotone formulae for the majority function" +, journal = "J. Algorithms" +, volume = 5 +, year = 1984 +, pages = "363--366" +, update = "98.03 bibrelex" } @article{v-ucvc-81 -, author = "L. Valiant" -, title = "Universality Considerations in {VLSI} Circuits" -, journal = "IEEE Trans. Comput." -, volume = "C-30" -, number = 2 -, year = 1981 -, pages = "135--140" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "L. Valiant" +, title = "Universality Considerations in {VLSI} Circuits" +, journal = "IEEE Trans. Comput." +, volume = "C-30" +, number = 2 +, year = 1981 +, pages = "135--140" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{v-bmpc-90 -, author = "L. G. Valiant" -, title = "A Bridging Model for Parallel Computation" -, journal = "Commun. ACM" -, volume = 33 -, number = 8 -, year = 1990 -, pages = "103--111" -, update = "98.11 kuehn, 96.09 orourke" +, author = "L. G. Valiant" +, title = "A Bridging Model for Parallel Computation" +, journal = "Commun. ACM" +, volume = 33 +, number = 8 +, year = 1990 +, pages = "103--111" +, update = "98.11 kuehn, 96.09 orourke" } @article{v-tl-84 -, author = "L. G. Valiant" -, title = "A theory of the learnable" -, journal = "Commun. ACM" -, volume = 27 -, number = 11 -, year = 1984 -, pages = "1134--1142" -, update = "98.07 bibrelex" +, author = "L. G. Valiant" +, title = "A theory of the learnable" +, journal = "Commun. ACM" +, volume = 27 +, number = 11 +, year = 1984 +, pages = "1134--1142" +, update = "98.07 bibrelex" } @incollection{v-gppa-90 -, author = "L. G. Valiant" -, title = "General Purpose Parallel Architectures" -, editor = "J. van Leeuwen" -, booktitle = "Handbook of Theoretical Computer Science" -, publisher = "Elsevier/The MIT Press" -, address = "Amsterdam" -, year = 1990 -, pages = "943--972" -, update = "96.09 orourke" +, author = "L. G. Valiant" +, title = "General Purpose Parallel Architectures" +, editor = "J. van Leeuwen" +, booktitle = "Handbook of Theoretical Computer Science" +, publisher = "Elsevier/The MIT Press" +, address = "Amsterdam" +, year = 1990 +, pages = "943--972" +, update = "96.09 orourke" } @article{vv-niedu-86 -, author = "L. G. Valiant and V. V. Vazirani" -, title = "NP is as easy as detecting unique solutions" -, journal = "Theoret. Comput. Sci." -, volume = 47 -, year = 1986 -, pages = "85--93" -, update = "98.03 bibrelex" +, author = "L. G. Valiant and V. V. Vazirani" +, title = "NP is as easy as detecting unique solutions" +, journal = "Theoret. Comput. Sci." +, volume = 47 +, year = 1986 +, pages = "85--93" +, update = "98.03 bibrelex" } @article{v-ubmmk-76 -, author = "O. Vallarino" -, title = "On the use of bit maps for multiple key retrieval" -, journal = "SIGPLAN Notices" -, volume = 11 -, year = 1976 -, pages = "108--114" +, author = "O. Vallarino" +, title = "On the use of bit maps for multiple key retrieval" +, journal = "SIGPLAN Notices" +, volume = 11 +, year = 1976 +, pages = "108--114" } @article{v-cis7h-92 -, author = "P. Valtr" -, title = "Convex independent sets and $7$-holes in restricted planar point sets" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "135--152" +, author = "P. Valtr" +, title = "Convex independent sets and $7$-holes in restricted planar point sets" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "135--152" } @inproceedings{v-gdkpc-97 -, author = "Pavel Valtr" -, title = "Graph Drawings with no $k$ Pairwise Crossing Edges" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "205--218" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Pavel Valtr" +, title = "Graph Drawings with no $k$ Pairwise Crossing Edges" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "205--218" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{v-llpic-96 -, author = "P. Valtr" -, title = "Lines, line-point incidences and crossing families in dense sets" -, journal = "Combinatorica" -, volume = 16 -, year = 1996 -, pages = "269--294" -, update = "98.03 agarwal" +, author = "P. Valtr" +, title = "Lines, line-point incidences and crossing families in dense sets" +, journal = "Combinatorica" +, volume = 16 +, year = 1996 +, pages = "269--294" +, update = "98.03 agarwal" } @article{v-mnepp-92 -, author = "P. Valtr" -, title = "On the minimum number of empty polygons in planar point sets" -, journal = "Studia Sci. Math. Hungar." -, volume = 30 -, year = 1995 -, pages = "155--163" -, update = "02.03 devillers" +, author = "P. Valtr" +, title = "On the minimum number of empty polygons in planar point sets" +, journal = "Studia Sci. Math. Hungar." +, volume = 30 +, year = 1995 +, pages = "155--163" +, update = "02.03 devillers" } @phdthesis{v-ppsbr-94 -, author = "P. Valtr" -, title = "Planar point sets with bounded rations of distances" -, school = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" -, address = "Berlin, Germany" -, year = 1994 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "P. Valtr" +, title = "Planar point sets with bounded rations of distances" +, school = "Fachbereich Mathematik, Freie Universit{\"a}t Berlin" +, address = "Berlin, Germany" +, year = 1994 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{v-srnle-92 -, author = "P. Valtr" -, title = "Sets in ${R}^d$ with No Large Empty Convex Subsets" -, journal = "Discrete Appl. Math." -, volume = 108 -, year = 1992 -, pages = "115--124" -, update = "97.03 gaertner+salinger" +, author = "P. Valtr" +, title = "Sets in ${R}^d$ with No Large Empty Convex Subsets" +, journal = "Discrete Appl. Math." +, volume = 108 +, year = 1992 +, pages = "115--124" +, update = "97.03 gaertner+salinger" } @article{v-usias-94 -, author = "P. Valtr" -, title = "Unit squares intersecting all secants of a square" -, journal = "Discrete Comput. Geom." -, volume = 11 -, year = 1994 -, pages = "235--239" -, update = "97.03 gaertner+salinger" +, author = "P. Valtr" +, title = "Unit squares intersecting all secants of a square" +, journal = "Discrete Comput. Geom." +, volume = 11 +, year = 1994 +, pages = "235--239" +, update = "97.03 gaertner+salinger" } @incollection{l-ga-90 -, author = "J. {van Leeuwen}" -, title = "Graph algorithms" -, editor = "J. {van Leeuwen}" -, booktitle = "Handbook of Theoretical Computer Science" -, volume = "A" -, publisher = "Elsevier" -, address = "Amsterdam" -, year = 1990 -, pages = "525--631" -, update = "98.11 bibrelex" +, author = "J. {van Leeuwen}" +, title = "Graph algorithms" +, editor = "J. {van Leeuwen}" +, booktitle = "Handbook of Theoretical Computer Science" +, volume = "A" +, publisher = "Elsevier" +, address = "Amsterdam" +, year = 1990 +, pages = "525--631" +, update = "98.11 bibrelex" } @phdthesis{v-ltg-80 -, author = "C. J. {Van Wyk}" -, title = "A language for typesetting graphics" -, school = "Sept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, month = jun -, year = 1980 -, note = "Technical Report STAN-CS-80-803" -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "C. J. {Van Wyk}" +, title = "A language for typesetting graphics" +, school = "Sept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, month = jun +, year = 1980 +, note = "Technical Report STAN-CS-80-803" +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{vv-chld-86 -, author = "C. J. {Van Wyk} and J. S. Vitter" -, title = "The complexity of hashing with lazy deletion" -, journal = "Algorithmica" -, volume = 1 -, year = 1986 -, pages = "17--29" -, update = "94.09 vitter" +, author = "C. J. {Van Wyk} and J. S. Vitter" +, title = "The complexity of hashing with lazy deletion" +, journal = "Algorithmica" +, volume = 1 +, year = 1986 +, pages = "17--29" +, update = "94.09 vitter" } @book{v-inc-78 -, author = "J. Vandergraft" -, title = "Introduction to Numerical Computation" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1978 -, update = "98.03 bibrelex" +, author = "J. Vandergraft" +, title = "Introduction to Numerical Computation" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1978 +, update = "98.03 bibrelex" } @article{v-sdcsf-64 -, author = "A. B. {VanderLugt}" -, title = "Signal detection by complex spatial filtering" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-10" -, number = 2 -, month = apr -, year = 1964 -, pages = "139--145" -, update = "97.11 bibrelex" +, author = "A. B. {VanderLugt}" +, title = "Signal detection by complex spatial filtering" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-10" +, number = 2 +, month = apr +, year = 1964 +, pages = "139--145" +, update = "97.11 bibrelex" } @book{v-noted-84 -, author = "G. N. Vanderplaats" -, title = "Numerical Optimization Techniques for Engineering Design" -, publisher = "McGraw-Hill" -, year = 1984 -, update = "97.11 bibrelex" +, author = "G. N. Vanderplaats" +, title = "Numerical Optimization Techniques for Engineering Design" +, publisher = "McGraw-Hill" +, year = 1984 +, update = "97.11 bibrelex" } @article{v-bfcac-94 -, author = "G. {Van{\v e}{\v c}ek, Jr.}" -, title = "Back-face Culling Applied to Collision Detection of Polyhedra" -, journal = "J. Visualizat. and Comput. Animation" -, volume = 5 -, number = 1 -, year = 1994 -, update = "97.03 held" +, author = "G. {Van{\v e}{\v c}ek, Jr.}" +, title = "Back-face Culling Applied to Collision Detection of Polyhedra" +, journal = "J. Visualizat. and Comput. Animation" +, volume = 5 +, number = 1 +, year = 1994 +, update = "97.03 held" } @article{v-bimsp-91 -, author = "G. {Van{\v e}{\v c}ek Jr.}" -, title = "Brep-index: a multidimensional space partitioning tree" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 3 -, year = 1991 -, pages = "243--261" -, keywords = "classification, Brep, BSP tree, data structures" +, author = "G. {Van{\v e}{\v c}ek Jr.}" +, title = "Brep-index: a multidimensional space partitioning tree" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 3 +, year = 1991 +, pages = "243--261" +, keywords = "classification, Brep, BSP tree, data structures" } @article{vc-ucrfe-71 -, author = "V. N. Vapnik and A. Y. Chervonenkis" -, title = "On the uniform convergence of relative frequencies of events to their probabilities" -, journal = "Theory Probab. Appl." -, volume = 16 -, year = 1971 -, pages = "264--280" -, update = "96.09 orourke" +, author = "V. N. Vapnik and A. Y. Chervonenkis" +, title = "On the uniform convergence of relative frequencies of events to their probabilities" +, journal = "Theory Probab. Appl." +, volume = 16 +, year = 1971 +, pages = "264--280" +, update = "96.09 orourke" } @inproceedings{v-dcamc-98 -, author = "K. Varadarajan" -, title = "A divide and conquer algorithm for min-cost perfect matching in the plane" -, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '98" -, year = 1998 -, pages = "320--329" -, update = "01.11 orourke+smid" +, author = "K. Varadarajan" +, title = "A divide and conquer algorithm for min-cost perfect matching in the plane" +, booktitle = "Proc. 39th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '98" +, year = 1998 +, pages = "320--329" +, update = "01.11 orourke+smid" } @unpublished{va-aspp-96 -, author = "K. Varadarajan and P. K. Agarwal" -, title = "Approximating shortest paths on a polyhedron" -, year = 1996 -, note = "unpublished manuscript" -, update = "97.03 agarwal" +, author = "K. Varadarajan and P. K. Agarwal" +, title = "Approximating shortest paths on a polyhedron" +, year = 1996 +, note = "unpublished manuscript" +, update = "97.03 agarwal" } @inproceedings{v-ampcu-96 -, author = "Kasturi R. Varadarajan" -, title = "Approximating Monotone Polygonal Curves Using the Uniform Metric" -, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." -, year = 1996 -, pages = "311--318" -, cites = "aaas-cvgbr-93, abosy-fmcnp-85, as-anspt-93, as-pm-92, ak-nthld-93, bks-lsctp-95, b-tcl-85, c-vsanl-88, cc-apcmn-92, dp-arnpr-73, et-apctt-94, fm-cpgcs-91, g-eplfa-94, ghms-apsml-93, h-patmn-93, hs-cmlpg-91, hs-sudpl-92, hs-fpfsp-91, ii-pacfa-88, kd-pamm-82, ks-ebago-93, lo-aalgb-92, m-alg-87, m-olcch-87, m-roass-91, mo-pca-88, s-ltaml-86, t-capcp-85, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 efrat" +, author = "Kasturi R. Varadarajan" +, title = "Approximating Monotone Polygonal Curves Using the Uniform Metric" +, booktitle = "Proc. 12th Annu. ACM Sympos. Comput. Geom." +, year = 1996 +, pages = "311--318" +, cites = "aaas-cvgbr-93, abosy-fmcnp-85, as-anspt-93, as-pm-92, ak-nthld-93, bks-lsctp-95, b-tcl-85, c-vsanl-88, cc-apcmn-92, dp-arnpr-73, et-apctt-94, fm-cpgcs-91, g-eplfa-94, ghms-apsml-93, h-patmn-93, hs-cmlpg-91, hs-sudpl-92, hs-fpfsp-91, ii-pacfa-88, kd-pamm-82, ks-ebago-93, lo-aalgb-92, m-alg-87, m-olcch-87, m-roass-91, mo-pca-88, s-ltaml-86, t-capcp-85, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 96.05 efrat" } @inproceedings{va-aspnp-97 -, author = "Kasturi R. Varadarajan and Pankaj Agarwal" -, title = "Approximating Shortest Paths on an Nonconvex Polyhedron" -, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '97" -, year = 1997 -, pages = "To appear" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "Kasturi R. Varadarajan and Pankaj Agarwal" +, title = "Approximating Shortest Paths on an Nonconvex Polyhedron" +, booktitle = "Proc. 38th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '97" +, year = 1997 +, pages = "To appear" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{va-aabnb-99 -, author = "K. R. Varadarajan and Pankaj K. Agarwal" -, title = "Approximation algorithms for bipartite and non-bipartite matching in the plane" -, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1999 -, pages = "805--814" -, update = "99.03 agarwal" +, author = "K. R. Varadarajan and Pankaj K. Agarwal" +, title = "Approximation algorithms for bipartite and non-bipartite matching in the plane" +, booktitle = "Proc. 10th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1999 +, pages = "805--814" +, update = "99.03 agarwal" } @inproceedings{va-laso-95 -, author = "Kasturi R. Varadarajan and P. K. Agarwal" -, title = "Linear Approximation of Simple Objects" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "13--18" -, update = "96.05 agarwal, 95.09 jones" +, author = "Kasturi R. Varadarajan and P. K. Agarwal" +, title = "Linear Approximation of Simple Objects" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "13--18" +, update = "96.05 agarwal, 95.09 jones" } @article{va-laso-97 -, author = "Kasturi R. Varadarajan and P. K. Agarwal" -, title = "Linear Approximation of Simple Objects" -, journal = "Inform. Process. Lett." -, volume = 62 -, year = 1997 -, pages = "89--94" -, update = "99.03 agarwal" +, author = "Kasturi R. Varadarajan and P. K. Agarwal" +, title = "Linear Approximation of Simple Objects" +, journal = "Inform. Process. Lett." +, volume = 62 +, year = 1997 +, pages = "89--94" +, update = "99.03 agarwal" } @techreport{v-ssidq- -, author = "T. Varady" -, title = "Surface-surface Intersections for Double-quadratic Parametric Patches in a Solid Modeller" -, institution = "Comput. Automation Res. Inst., Hungarian Academy of Science" -, year = "??" -, update = "97.11 bibrelex" +, author = "T. Varady" +, title = "Surface-surface Intersections for Double-quadratic Parametric Patches in a Solid Modeller" +, institution = "Comput. Automation Res. Inst., Hungarian Academy of Science" +, year = "??" +, update = "97.11 bibrelex" } @article{v-ctdah-87 -, author = "A. N. Varchenko" -, title = "Combinatorics and topology of the disposition of affine hyperplanes in real space" -, journal = "Funk. Anal. i Prilozhen." -, volume = 21 -, number = "N 1" -, year = 1987 -, pages = "11--22" -, update = "97.11 bibrelex" +, author = "A. N. Varchenko" +, title = "Combinatorics and topology of the disposition of affine hyperplanes in real space" +, journal = "Funk. Anal. i Prilozhen." +, volume = 21 +, number = "N 1" +, year = 1987 +, pages = "11--22" +, update = "97.11 bibrelex" } @article{vg-hfch-87 -, author = "A. N. Varchenko and I. M. Gel\'fand" -, title = "On {Heavyside} functions of a configuration of hyperplanes" -, journal = "Funk. Anal. i Prilozhen." -, volume = 21 -, number = "N-4" -, year = 1987 -, pages = "1--18" -, update = "97.11 bibrelex" +, author = "A. N. Varchenko and I. M. Gel\'fand" +, title = "On {Heavyside} functions of a configuration of hyperplanes" +, journal = "Funk. Anal. i Prilozhen." +, volume = 21 +, number = "N-4" +, year = 1987 +, pages = "1--18" +, update = "97.11 bibrelex" } @phdthesis{v-hga-94 -, author = "A. Varshney" -, title = "Hierarchical Geometric Approximations" -, type = "Ph.{D}. Thesis" -, school = "Department of Computer Science, University of North Carolina" -, address = "Chapel Hill, NC 27599-3175" -, year = 1994 -, note = "TR-050-1994" -, keywords = "doctoral thesis" -, update = "95.01 mitchell" +, author = "A. Varshney" +, title = "Hierarchical Geometric Approximations" +, type = "Ph.{D}. Thesis" +, school = "Department of Computer Science, University of North Carolina" +, address = "Chapel Hill, NC 27599-3175" +, year = 1994 +, note = "TR-050-1994" +, keywords = "doctoral thesis" +, update = "95.01 mitchell" } @misc{vabww-mhgpm-94 -, author = "A. Varshney and P. K. Agarwal and F. P. {Brooks, Jr.} and W. Wright and H. Weber" -, title = "Multiresolution hierarchy generation for polygonal models" -, year = 1994 -, note = "Manuscript" -, update = "95.09 agarwal, 95.05 agarwal" +, author = "A. Varshney and P. K. Agarwal and F. P. {Brooks, Jr.} and W. Wright and H. Weber" +, title = "Multiresolution hierarchy generation for polygonal models" +, year = 1994 +, note = "Manuscript" +, update = "95.09 agarwal, 95.05 agarwal" } @inproceedings{vb-facrs-93 -, author = "A. Varshney and F. P. {Brooks, Jr.}" -, title = "Fast analytical computation of {Richard}'s smooth molecular surface" -, booktitle = "Proc. Visualization '93" -, year = 1993 -, pages = "300--307" -, update = "98.03 bibrelex" +, author = "A. Varshney and F. P. {Brooks, Jr.}" +, title = "Fast analytical computation of {Richard}'s smooth molecular surface" +, booktitle = "Proc. Visualization '93" +, year = 1993 +, pages = "300--307" +, update = "98.03 bibrelex" } @article{vbw-csms-94 -, author = "A. Varshney and F. P. {Brooks, Jr.} and W. V. Wright" -, title = "Computing Smooth Molecular Surfaces" -, journal = "IEEE Comput. Graph. Appl." -, volume = 15 -, number = 5 -, month = sep -, year = 1994 -, pages = "19--25" -, keywords = "Connolly surfaces, solvent-accessible surfaces, alpha shapes, alpha hulls" -, update = "98.03 agarwal+mitchell" +, author = "A. Varshney and F. P. {Brooks, Jr.} and W. V. Wright" +, title = "Computing Smooth Molecular Surfaces" +, journal = "IEEE Comput. Graph. Appl." +, volume = 15 +, number = 5 +, month = sep +, year = 1994 +, pages = "19--25" +, keywords = "Connolly surfaces, solvent-accessible surfaces, alpha shapes, alpha hulls" +, update = "98.03 agarwal+mitchell" } @inproceedings{vbw-ivwtd-94 -, author = "A. Varshney and F. P. {Brooks, Jr.} and W. V. Wright" -, title = "Interactive Visualization of Weighted Three-dimensional Alpha Hulls" -, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." -, year = 1994 -, pages = "395--396" -, keywords = "video review" -, cites = "a-pdpaa-87, c-amsc-83, e-was-92, eks-sspp-83, em-tdas-94, ec-eargd-92, fpeggemtti-pp5hm-89, r-avpps-77, s-lpchm-90, vb-facrs-93, vwb-bnusi-93, ZZZ" -, update = "98.03 bibrelex, 94.09 jones" +, author = "A. Varshney and F. P. {Brooks, Jr.} and W. V. Wright" +, title = "Interactive Visualization of Weighted Three-dimensional Alpha Hulls" +, booktitle = "Proc. 10th Annu. ACM Sympos. Comput. Geom." +, year = 1994 +, pages = "395--396" +, keywords = "video review" +, cites = "a-pdpaa-87, c-amsc-83, e-was-92, eks-sspp-83, em-tdas-94, ec-eargd-92, fpeggemtti-pp5hm-89, r-avpps-77, s-lpchm-90, vb-facrs-93, vwb-bnusi-93, ZZZ" +, update = "98.03 bibrelex, 94.09 jones" } @techreport{vwb-bnusi-93 -, author = "A. Varshney and W. V. Wright and F. P. {Brooks, Jr.}" -, title = "Bounding the number of unit spheres inside a larger sphere" -, type = "Technical {Report}" -, number = "UNC-CS-TR-93-039" -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, year = 1993 -, update = "98.03 bibrelex" +, author = "A. Varshney and W. V. Wright and F. P. {Brooks, Jr.}" +, title = "Bounding the number of unit spheres inside a larger sphere" +, type = "Technical {Report}" +, number = "UNC-CS-TR-93-039" +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, year = 1993 +, update = "98.03 bibrelex" } @article{v-cdsmt-92 -, author = "V. A. Vassiliev" -, title = "Complements of discriminants of smooth maps: topology and applications" -, journal = "Tansl. of math. monographs" -, volume = 98 -, year = 1992 -, note = "Am. Math. Soc., Providence, Rhode Island" -, update = "98.11 bibrelex" +, author = "V. A. Vassiliev" +, title = "Complements of discriminants of smooth maps: topology and applications" +, journal = "Tansl. of math. monographs" +, volume = 98 +, year = 1992 +, note = "Am. Math. Soc., Providence, Rhode Island" +, update = "98.11 bibrelex" } @article{v-gspc-92 -, author = "B. R. Vatti" -, title = "A generic solution to polygon clipping" -, journal = "Commun. ACM" -, volume = 35 -, number = 7 -, year = 1992 -, pages = "56--63" +, author = "B. R. Vatti" +, title = "A generic solution to polygon clipping" +, journal = "Commun. ACM" +, volume = 35 +, number = 7 +, year = 1992 +, pages = "56--63" } @article{v-ppt-80 -, author = "J. Vaucher" -, title = "Pretty Printing of Trees" -, journal = "Softw. -- Pract. Exp." -, volume = 10 -, number = 7 -, year = 1980 -, pages = "553--561" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Vaucher" +, title = "Pretty Printing of Trees" +, journal = "Softw. -- Pract. Exp." +, volume = 10 +, number = 7 +, year = 1980 +, pages = "553--561" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @misc{v-qfemg-95 -, author = "S. Vavasis" -, title = "QMG: a finite element mesh generation package" -, url = "https://www.cs.cornell.edu/info/people/vavasis/qmg-home.html" -, update = "97.11 bibrelex" +, author = "S. Vavasis" +, title = "QMG: a finite element mesh generation package" +, url = "https://www.cs.cornell.edu/info/people/vavasis/qmg-home.html" +, update = "97.11 bibrelex" } @techreport{v-adptd-90 -, author = "S. A. Vavasis" -, title = "Automatic domain partitioning in three dimensions" -, type = "Technical {Report}" -, number = "TR~90-1082" -, institution = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = jan -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "S. A. Vavasis" +, title = "Automatic domain partitioning in three dimensions" +, type = "Technical {Report}" +, number = "TR~90-1082" +, institution = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = jan +, year = 1990 +, update = "93.09 milone+mitchell" } @article{v-adptd-91 -, author = "S. A. Vavasis" -, title = "Automatic domain partitioning in three dimensions" -, journal = "SIAM J. Sci. Statist. Comput." -, volume = "??" -, year = 1991 -, note = "To appear" -, update = "98.03 bibrelex" +, author = "S. A. Vavasis" +, title = "Automatic domain partitioning in three dimensions" +, journal = "SIAM J. Sci. Statist. Comput." +, volume = "??" +, year = 1991 +, note = "To appear" +, update = "98.03 bibrelex" } @techreport{v-sfepw-93 -, author = "S. A. Vavasis" -, title = "Stable finite elements for problems with wild coefficients" -, number = "93-1364" -, institution = "Cornell University" -, address = "Ithaca, NY" -, year = 1993 -, update = "97.11 bibrelex" +, author = "S. A. Vavasis" +, title = "Stable finite elements for problems with wild coefficients" +, number = "93-1364" +, institution = "Cornell University" +, address = "Ithaca, NY" +, year = 1993 +, update = "97.11 bibrelex" } @inproceedings{vy-aipmw-94 -, author = "Stephen A. Vavasis and Yinyu Ye" -, title = "An Accelerated Interior Point Method whose Running Time Depends only on $A$" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "" -, update = "94.01 jones" +, author = "Stephen A. Vavasis and Yinyu Ye" +, title = "An Accelerated Interior Point Method whose Running Time Depends only on $A$" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "" +, update = "94.01 jones" } @inproceedings{vg-mlt-97 -, author = "Eric Veach and Leonidas J. Guibas" -, title = "Metropolis Light Transport" -, booktitle = "SIGGRAPH 97 Conference Proceedings" -, series = "Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "Addison-Wesley" -, year = 1997 -, pages = "65--76" -, update = "98.03 agarwal" +, author = "Eric Veach and Leonidas J. Guibas" +, title = "Metropolis Light Transport" +, booktitle = "SIGGRAPH 97 Conference Proceedings" +, series = "Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "Addison-Wesley" +, year = 1997 +, pages = "65--76" +, update = "98.03 agarwal" } @inproceedings{vg-ocstm-95 -, author = "Eric Veach and Leonidas J. Guibas" -, title = "Optimally Combining Sampling Techniques for {Monte} {Carlo} Rendering" -, editor = "Robert Cook" -, booktitle = "SIGGRAPH 95 Conference Proceedings" -, series = "Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "Addison-Wesley" -, month = aug -, year = 1995 -, pages = "419--428" -, update = "98.03 agarwal" +, author = "Eric Veach and Leonidas J. Guibas" +, title = "Optimally Combining Sampling Techniques for {Monte} {Carlo} Rendering" +, editor = "Robert Cook" +, booktitle = "SIGGRAPH 95 Conference Proceedings" +, series = "Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "Addison-Wesley" +, month = aug +, year = 1995 +, pages = "419--428" +, update = "98.03 agarwal" } @article{va-ldoro-88 -, author = "J. Veenstra and N. Ahuja" -, title = "Line drawings of octree-represented objects" -, journal = "ACM Trans. Graph." -, volume = 7 -, year = 1988 -, pages = "61--75" +, author = "J. Veenstra and N. Ahuja" +, title = "Line drawings of octree-represented objects" +, journal = "ACM Trans. Graph." +, volume = 7 +, year = 1988 +, pages = "61--75" } @inproceedings{v-cccs-90 -, author = "Gert Vegter" -, title = "Computational Complexity of Combinatorial Surfaces" -, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." -, nickname = "CG '90" -, site = "Siegen" -, publisher = "Universit{\"a}t Siegen" -, year = 1990 -, pages = 25 -, update = "00.03 bibrelex" +, author = "Gert Vegter" +, title = "Computational Complexity of Combinatorial Surfaces" +, booktitle = "Abstracts 6th Intern. Workshop Comput. Geom." +, nickname = "CG '90" +, site = "Siegen" +, publisher = "Universit{\"a}t Siegen" +, year = 1990 +, pages = 25 +, update = "00.03 bibrelex" } @incollection{v-ct-97 -, author = "G. Vegter" -, title = "Computational topology" -, chapter = 28 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "517--536" -, update = "97.11 orourke" +, author = "G. Vegter" +, title = "Computational topology" +, chapter = 28 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "517--536" +, update = "97.11 orourke" } @techreport{v-cbrdf-87 -, author = "G. Vegter" -, title = "Computing the bounded region determined by finitely many lines in the plane" -, type = "Report" -, number = "CS 8703" -, institution = "Dept. Math. and Comput. Sci., Univ. of Groningen" -, address = "Groningen, Netherlands" -, year = 1987 -, update = "95.01 smid" +, author = "G. Vegter" +, title = "Computing the bounded region determined by finitely many lines in the plane" +, type = "Report" +, number = "CS 8703" +, institution = "Dept. Math. and Comput. Sci., Univ. of Groningen" +, address = "Groningen, Netherlands" +, year = 1987 +, update = "95.01 smid" } @inproceedings{v-dmvg-91 -, author = "G. Vegter" -, title = "Dynamically maintaining the visibility graph" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "425--436" -, keywords = "visibility, geometric graph" +, author = "G. Vegter" +, title = "Dynamically maintaining the visibility graph" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "425--436" +, keywords = "visibility, geometric graph" } @article{v-kfdp-90 -, author = "G. Vegter" -, title = "Kink-free deformation of polygons" -, journal = "Algorithms Rev." -, volume = 1 -, number = 3 -, year = 1990 -, pages = "125--137" +, author = "G. Vegter" +, title = "Kink-free deformation of polygons" +, journal = "Algorithms Rev." +, volume = 1 +, number = 3 +, year = 1990 +, pages = "125--137" } @inproceedings{v-kfdp-89 -, author = "G. Vegter" -, title = "Kink-free deformations of polygons" -, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." -, year = 1989 -, pages = "61--68" -, cites = "d-tdkaz-12, gkp-cm-89, my-chthu-88, s-rcrm-58, w-rccp-37, ZZZ" -, update = "98.03 bibrelex" +, author = "G. Vegter" +, title = "Kink-free deformations of polygons" +, booktitle = "Proc. 5th Annu. ACM Sympos. Comput. Geom." +, year = 1989 +, pages = "61--68" +, cites = "d-tdkaz-12, gkp-cm-89, my-chthu-88, s-rcrm-58, w-rccp-37, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{v-vddsv-90 -, author = "G. Vegter" -, title = "The visibility diagram: {A} data structure for visibility problems and motion planning" -, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" -, series = "Lecture Notes Comput. Sci." -, volume = 447 -, publisher = "Springer-Verlag" -, year = 1990 -, pages = "97--110" +, author = "G. Vegter" +, title = "The visibility diagram: {A} data structure for visibility problems and motion planning" +, booktitle = "Proc. 2nd Scand. Workshop Algorithm Theory" +, series = "Lecture Notes Comput. Sci." +, volume = 447 +, publisher = "Springer-Verlag" +, year = 1990 +, pages = "97--110" } @inproceedings{vy-mcs-91 -, author = "G. Vegter and C. Yap" -, title = "Minimal circumscribing simplices" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "58--61" -, cites = "k-fcvm-86, kl-fstcg-85, mc-uafet-88, o-fmeb-84, oamb-oafme-86, ZZZ" -, update = "98.07 bibrelex" +, author = "G. Vegter and C. Yap" +, title = "Minimal circumscribing simplices" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "58--61" +, cites = "k-fcvm-86, kl-fstcg-85, mc-uafet-88, o-fmeb-84, oamb-oafme-86, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{vy-cccs-90 -, author = "G. Vegter and C. K. Yap" -, title = "Computational complexity of combinatorial surfaces" -, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." -, year = 1990 -, pages = "102--111" -, cites = "b-sctdm-22, ff-ict-34, h-gt-69, m-ati-77, my-chthu-88, m-eat-84, s-ctcgt-80, v-kfdp-89, ZZZ" -, update = "97.11 bibrelex" +, author = "G. Vegter and C. K. Yap" +, title = "Computational complexity of combinatorial surfaces" +, booktitle = "Proc. 6th Annu. ACM Sympos. Comput. Geom." +, year = 1990 +, pages = "102--111" +, cites = "b-sctdm-22, ff-ict-34, h-gt-69, m-ati-77, my-chthu-88, m-eat-84, s-ctcgt-80, v-kfdp-89, ZZZ" +, update = "97.11 bibrelex" } @article{v-bnfp-90 -, author = "M. Veldhorst" -, title = "A bibliography on network flow problems" -, journal = "Algorithms Rev." -, volume = 1 -, number = 2 -, year = 1990 -, pages = "97--117" -, keywords = "bibliography, network flow" +, author = "M. Veldhorst" +, title = "A bibliography on network flow problems" +, journal = "Algorithms Rev." +, volume = 1 +, number = 2 +, year = 1990 +, pages = "97--117" +, keywords = "bibliography, network flow" } @article{v-ordio-86 -, author = "M. Veldhorst" -, title = "The optimal representation of disjoint iso-oriented rectangles in two-dimensional trees" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "1--34" +, author = "M. Veldhorst" +, title = "The optimal representation of disjoint iso-oriented rectangles in two-dimensional trees" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "1--34" } @article{vdg-hgts-99 -, author = "L. Velho and L. H. de Figueiredo and J. Gomes" -, title = "Hierarchical Generalized Triangle Strips" -, journal = "Visual Comput." -, volume = 15 -, number = 1 -, year = 1999 -, pages = "21--35" -, update = "99.07 held" +, author = "L. Velho and L. H. de Figueiredo and J. Gomes" +, title = "Hierarchical Generalized Triangle Strips" +, journal = "Visual Comput." +, volume = 15 +, number = 1 +, year = 1999 +, pages = "21--35" +, update = "99.07 held" } @article{v-3dcm-93 -, author = "R. C. Veltkamp" -, title = "3D Computational Morphology" -, journal = "Comput. Graph. Forum" -, volume = 12 -, number = 3 -, year = 1993 -, pages = "115--127" -, update = "97.11 oostrum" +, author = "R. C. Veltkamp" +, title = "3D Computational Morphology" +, journal = "Comput. Graph. Forum" +, volume = 12 +, number = 3 +, year = 1993 +, pages = "115--127" +, update = "97.11 oostrum" } @article{v-bspud-95 -, author = "R. C. Veltkamp" -, title = "Boundaries through Scattered Points of Unknown Density" -, journal = "Graphics Models and Image Processing" -, volume = 57 -, number = 6 -, month = nov -, year = 1995 -, pages = "441--452" -, update = "97.11 oostrum" +, author = "R. C. Veltkamp" +, title = "Boundaries through Scattered Points of Unknown Density" +, journal = "Graphics Models and Image Processing" +, volume = 57 +, number = 6 +, month = nov +, year = 1995 +, pages = "441--452" +, update = "97.11 oostrum" } @phdthesis{v-cobsp-92 -, author = "R. C. Veltkamp" -, title = "Closed object boundaries from scattered points" -, school = "Center for Mathematics and Computer Science, Amsterdam" -, year = 1992 -, keywords = "doctoral thesis" -, precedes = "v-cobsp-94" -, update = "97.11 oostrum, 93.05 orourke" -, annote = "Reconstruction of polyhedra from points in space" +, author = "R. C. Veltkamp" +, title = "Closed object boundaries from scattered points" +, school = "Center for Mathematics and Computer Science, Amsterdam" +, year = 1992 +, keywords = "doctoral thesis" +, precedes = "v-cobsp-94" +, update = "97.11 oostrum, 93.05 orourke" +, annote = "Reconstruction of polyhedra from points in space" } @book{v-cobsp-94 -, author = "R. C. Veltkamp" -, title = "Closed Object Boundaries from Scattered Points" -, series = "Lecture Notes Comput. Sci." -, volume = 885 -, publisher = "Springer-Verlag" -, year = 1994 -, isbn = "3-540-58808-6" -, succeeds = "v-cobsp-92" -, update = "98.07 bibrelex, 97.11 oostrum" +, author = "R. C. Veltkamp" +, title = "Closed Object Boundaries from Scattered Points" +, series = "Lecture Notes Comput. Sci." +, volume = 885 +, publisher = "Springer-Verlag" +, year = 1994 +, isbn = "3-540-58808-6" +, succeeds = "v-cobsp-92" +, update = "98.07 bibrelex, 97.11 oostrum" } @inproceedings{v-gpccg-97 -, author = "Remco C. Veltkamp" -, title = "Generic programming in {CGAL}, the {C}omputational {G}eometry {A}lgorithms {L}ibrary" -, editor = "F. Arbab and Ph. Slusallek" -, booktitle = "Proceedings of the 6th Eurographics Workshop on Programming Paradigms in Graphics, Budapest, Hungary, 8 September 1997" -, year = 1997 -, pages = "127--138" -, issn = "1024-0861" -, update = "98.07 bibrelex, 98.03 bibrelex, 97.11 oostrum" +, author = "Remco C. Veltkamp" +, title = "Generic programming in {CGAL}, the {C}omputational {G}eometry {A}lgorithms {L}ibrary" +, editor = "F. Arbab and Ph. Slusallek" +, booktitle = "Proceedings of the 6th Eurographics Workshop on Programming Paradigms in Graphics, Budapest, Hungary, 8 September 1997" +, year = 1997 +, pages = "127--138" +, issn = "1024-0861" +, update = "98.07 bibrelex, 98.03 bibrelex, 97.11 oostrum" } @inproceedings{v-fhal-92 -, author = "Remco C. Veltkamp" -, title = "The Flintstones: Hierarchical Approximation and Localization" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "69--72" -, update = "00.03 bibrelex" +, author = "Remco C. Veltkamp" +, title = "The Flintstones: Hierarchical Approximation and Localization" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "69--72" +, update = "00.03 bibrelex" } @article{v-gng-92 -, author = "R. C. Veltkamp" -, title = "The $\gamma$-neighborhood graph" -, journal = "Comput. Geom. Theory Appl." -, volume = 1 -, number = 4 -, year = 1992 -, pages = "227--246" -, keywords = "neighborhood graph, Delaunay triangulation, Hamilton cycle" +, author = "R. C. Veltkamp" +, title = "The $\gamma$-neighborhood graph" +, journal = "Comput. Geom. Theory Appl." +, volume = 1 +, number = 4 +, year = 1992 +, pages = "227--246" +, keywords = "neighborhood graph, Delaunay triangulation, Hamilton cycle" } @article{vcc-fcdaa-98 -, author = "B. C. Vemuri and Y. Cao and L. Chen" -, title = "Fast Collision Detection Algorithms with Applications to Particle Flows" -, journal = "Comput. Graph. Forum" -, volume = 17 -, number = 2 -, month = jun -, year = 1998 -, pages = "121--134" -, update = "99.03 held" +, author = "B. C. Vemuri and Y. Cao and L. Chen" +, title = "Fast Collision Detection Algorithms with Applications to Particle Flows" +, journal = "Comput. Graph. Forum" +, volume = 17 +, number = 2 +, month = jun +, year = 1998 +, pages = "121--134" +, update = "99.03 held" } @inproceedings{vvm-eetpa-92 -, author = "B. C. Vemuri and R. Varadarajan and N. Mayya" -, title = "An Efficient Expected Time Parallel Algorithm for {Voronoi} Construction" -, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." -, year = 1992 -, pages = "392--400" -, update = "97.11 bibrelex" +, author = "B. C. Vemuri and R. Varadarajan and N. Mayya" +, title = "An Efficient Expected Time Parallel Algorithm for {Voronoi} Construction" +, booktitle = "Proc. 4th ACM Sympos. Parallel Algorithms Architect." +, year = 1992 +, pages = "392--400" +, update = "97.11 bibrelex" } @inproceedings{vv-e3drs-96 -, author = "D. E. Vengroff and J. S. Vitter" -, title = "Efficient 3-D Range Searching in External Memory" -, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." -, site = "Philadelphia, PA" -, month = may -, year = 1996 -, update = "97.03 murali" +, author = "D. E. Vengroff and J. S. Vitter" +, title = "Efficient 3-D Range Searching in External Memory" +, booktitle = "Proc. 28th Annu. ACM Sympos. Theory Comput." +, site = "Philadelphia, PA" +, month = may +, year = 1996 +, update = "97.03 murali" } @inproceedings{vv-ioect-96 -, author = "D. E. Vengroff and J. S. Vitter" -, title = "{I/O}-Efficient Computation: The {TPIE} Approach" -, booktitle = "Proceedings of the Goddard Conference on Mass Storage Systems and Technologies" -, site = "College Park, MD" -, series = "NASA Conference Publication 3340, Volume II" -, month = sep -, year = 1996 -, pages = "553--570" -, update = "97.03 murali" +, author = "D. E. Vengroff and J. S. Vitter" +, title = "{I/O}-Efficient Computation: The {TPIE} Approach" +, booktitle = "Proceedings of the Goddard Conference on Mass Storage Systems and Technologies" +, site = "College Park, MD" +, series = "NASA Conference Publication 3340, Volume II" +, month = sep +, year = 1996 +, pages = "553--570" +, update = "97.03 murali" } @article{v-sarut-84 -, author = "C. E. {Veni Madhavan}" -, title = "Secondary attribute retrieval using tree data structures" -, journal = "Theoret. Comput. Sci." -, volume = 33 -, year = 1984 -, pages = "107--116" +, author = "C. E. {Veni Madhavan}" +, title = "Secondary attribute retrieval using tree data structures" +, journal = "Theoret. Comput. Sci." +, volume = 33 +, year = 1984 +, pages = "107--116" } @article{v-aitco-95 -, author = "R. Venkatasubramanian" -, title = "On the area of intersection of two closed 2D objects" -, journal = "Inform. Sci." -, volume = 82 -, year = 1995 -, pages = "25--44" -, update = "99.11 devillers" +, author = "R. Venkatasubramanian" +, title = "On the area of intersection of two closed 2D objects" +, journal = "Inform. Sci." +, volume = 82 +, year = 1995 +, pages = "25--44" +, update = "99.11 devillers" } @inproceedings{vc-gicp-93 -, author = "R. Venkatasubramanian and A. Cullum" -, title = "Grazing inside a convex polygon" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "228--234" -, cites = "o-agta-87, nt-opg-91, nt-opg, gv-oacmg-92, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "R. Venkatasubramanian and A. Cullum" +, title = "Grazing inside a convex polygon" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "228--234" +, cites = "o-agta-87, nt-opg-91, nt-opg, gv-oacmg-92, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{vc-nadpd-92 -, author = "Jose A. Ventura and Jen-Ming Chen" -, title = "A new approach to determine the pose and dimension of polygonal shapes" -, editor = "G{\"u}nter Fandel and Thomas Gulledge and Albert Jones" -, booktitle = "Operations Research in Production Planning and Control, Proc. Joint German/US Conf., Hagen, Germany, June 25--26, 1992" -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "151--166" -, update = "98.07 rote" -, abstract = "\dots\ Algorithmically, the image boundary data is partitioned into $n$ +, author = "Jose A. Ventura and Jen-Ming Chen" +, title = "A new approach to determine the pose and dimension of polygonal shapes" +, editor = "G{\"u}nter Fandel and Thomas Gulledge and Albert Jones" +, booktitle = "Operations Research in Production Planning and Control, Proc. Joint German/US Conf., Hagen, Germany, June 25--26, 1992" +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "151--166" +, update = "98.07 rote" +, abstract = "\dots\ Algorithmically, the image boundary data is partitioned into $n$ segments, and the best-fitting polygon is found using a non-ordinary least-squares technique. The algorithm is well-suited for on-line implementation in an automated environment due to its flexibility and @@ -144469,931 +144469,931 @@ @inproceedings{vc-nadpd-92 } @inproceedings{v-acpdp-95 -, author = "Knut Verbarg" -, title = "Approximate Center Points in Dense Point Sets" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = 65 -, update = "00.03 bibrelex" +, author = "Knut Verbarg" +, title = "Approximate Center Points in Dense Point Sets" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = 65 +, update = "00.03 bibrelex" } @inproceedings{v-acpdp-97 -, author = "Knut Verbarg" -, title = "Approximate Center Points in Dense Point Sets" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = "55--56" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Knut Verbarg" +, title = "Approximate Center Points in Dense Point Sets" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = "55--56" +, update = "00.03 bibrelex, 98.07 bibrelex" } @inproceedings{vh-hmpus-96 -, author = "Knut Verbarg and A. Hensel" -, title = "Hierarchical Motion Planning Using a Spatial Index" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "87--90" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Knut Verbarg and A. Hensel" +, title = "Hierarchical Motion Planning Using a Spatial Index" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "87--90" +, update = "00.03 bibrelex, 99.03 bibrelex" } @article{v-sptnp-51 -, author = "S. Verblunsky" -, title = "On the shortest path through a number of points" -, journal = "Proc. Amer. Math. Soc." -, volume = 2 -, year = 1951 -, pages = "904--913" -, update = "97.11 bibrelex" +, author = "S. Verblunsky" +, title = "On the shortest path through a number of points" +, journal = "Proc. Amer. Math. Soc." +, volume = 2 +, year = 1951 +, pages = "904--913" +, update = "97.11 bibrelex" } @techreport{v-ivdt-92 -, author = "J. J. Verkuil" -, title = "Idual: Visualizing Duality Transformations" -, institution = "Dept. Comput. Sci., Univ. Utrecht" -, year = 1992 -, update = "97.03 icking" +, author = "J. J. Verkuil" +, title = "Idual: Visualizing Duality Transformations" +, institution = "Dept. Comput. Sci., Univ. Utrecht" +, year = 1992 +, update = "97.03 icking" } @inproceedings{v-aotpc-97 -, author = "P. Vermeer" -, title = "Assembling objects through parts correlation" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "385--387" -, cites = "dh-ceg-95, hv-scp-95, nwm-dkssp-90, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "P. Vermeer" +, title = "Assembling objects through parts correlation" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "385--387" +, cites = "dh-ceg-95, hv-scp-95, nwm-dkssp-90, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @phdthesis{v-matbr-94 -, author = "P. J. Vermeer" -, title = "Medial Axis Transform to Boundary Representation Conversion" -, school = "CS Dept., Purdue University" -, address = "West Lafayette, Indiana 47907-1398, USA" -, year = 1994 -, keywords = "doctoral thesis" -, update = "95.05 held" +, author = "P. J. Vermeer" +, title = "Medial Axis Transform to Boundary Representation Conversion" +, school = "CS Dept., Purdue University" +, address = "West Lafayette, Indiana 47907-1398, USA" +, year = 1994 +, keywords = "doctoral thesis" +, update = "95.05 held" } @book{v-mvavi-91 -, author = "D. Vernon" -, title = "Machine Vision, automated visual inspection and robot vision" -, publisher = "Prentice Hall" -, year = 1991 -, update = "98.11 bibrelex" +, author = "D. Vernon" +, title = "Machine Vision, automated visual inspection and robot vision" +, publisher = "Prentice Hall" +, year = 1991 +, update = "98.11 bibrelex" } @mastersthesis{v-osvdb-84 -, author = "Colin Verrilli" -, title = "One source {Voronoi} diagrams with barriers: a computer implementation" -, school = "Electrical, Computer, and Systems Engineering Dept., Rensselaer Polytechnic Institute" -, month = may -, year = 1984 -, keywords = "master thesis, Voronoi diagrams" -, update = "93.09 franklin" +, author = "Colin Verrilli" +, title = "One source {Voronoi} diagrams with barriers: a computer implementation" +, school = "Electrical, Computer, and Systems Engineering Dept., Rensselaer Polytechnic Institute" +, month = may +, year = 1984 +, keywords = "master thesis, Voronoi diagrams" +, update = "93.09 franklin" } @book{v-htiat-73 -, author = "J. W. Vick" -, title = "Homology Theory: {An} Introduction to Algebraic Topology" -, publisher = "Academic Press" -, address = "New York, NY" -, year = 1973 -, update = "98.03 bibrelex" +, author = "J. W. Vick" +, title = "Homology Theory: {An} Introduction to Algebraic Topology" +, publisher = "Academic Press" +, address = "New York, NY" +, year = 1973 +, update = "98.03 bibrelex" } @article{vh-fsppp-85 -, author = "J. Viegas and P. Hansen" -, title = "Finding Shortest Paths in the Plane in the Presence of Barriers" -, journal = "European J. Oper. Res." -, volume = 20 -, year = 1985 -, pages = "373--381" -, update = "93.09 milone+mitchell" +, author = "J. Viegas and P. Hansen" +, title = "Finding Shortest Paths in the Plane in the Presence of Barriers" +, journal = "European J. Oper. Res." +, volume = 20 +, year = 1985 +, pages = "373--381" +, update = "93.09 milone+mitchell" } @article{v-nmevr-78 -, author = "J. Vignes" -, title = "New Methods for Evaluating the Validity of the Results of Mathematical Computations" -, journal = "Mathematics and Computers in Simulation" -, volume = 20 -, year = 1978 -, pages = "227--249" -, update = "98.03 bibrelex" +, author = "J. Vignes" +, title = "New Methods for Evaluating the Validity of the Results of Mathematical Computations" +, journal = "Mathematics and Computers in Simulation" +, volume = 20 +, year = 1978 +, pages = "227--249" +, update = "98.03 bibrelex" } @inproceedings{vl-eac-74 -, author = "J. Vignes and M. {La Porte}" -, title = "Error Analysis in Computing" -, booktitle = "Proc. IFIP Congress" -, site = "Stockholm, Sweden" -, year = 1974 -, pages = "610--614" -, update = "98.03 bibrelex" +, author = "J. Vignes and M. {La Porte}" +, title = "Error Analysis in Computing" +, booktitle = "Proc. IFIP Congress" +, site = "Stockholm, Sweden" +, year = 1974 +, pages = "610--614" +, update = "98.03 bibrelex" } @phdthesis{v-ditvl-83 -, author = "G. Vijayan" -, title = "Design implementation and theory of a VLSI layout language" -, school = "Department of EECS, Princeton University" -, year = 1983 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "G. Vijayan" +, title = "Design implementation and theory of a VLSI layout language" +, school = "Department of EECS, Princeton University" +, year = 1983 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @inproceedings{vt-ftcr-90 -, author = "G. Vijayan and R. S. Tsay" -, title = "Floorplan by Topological Constraint Reduction" -, booktitle = "IEEE Int. Conf. On Computer-Aided-Design" -, year = 1990 -, pages = "106--109" -, update = "98.11 bibrelex" +, author = "G. Vijayan and R. S. Tsay" +, title = "Floorplan by Topological Constraint Reduction" +, booktitle = "IEEE Int. Conf. On Computer-Aided-Design" +, year = 1990 +, pages = "106--109" +, update = "98.11 bibrelex" } @techreport{vw-peog-82 -, author = "G. Vijayan and A. Wigderso" -, title = "Planarity of edge-ordered graphs" -, institution = "Department of EECS, Princeton University" -, year = 1982 -, update = "97.11 bibrelex" +, author = "G. Vijayan and A. Wigderso" +, title = "Planarity of edge-ordered graphs" +, institution = "Department of EECS, Princeton University" +, year = 1982 +, update = "97.11 bibrelex" } @article{vw-rgte-85 -, author = "G. Vijayan and A. Wigderson" -, title = "Rectilinear Graphs and their Embeddings" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "355--372" -, update = "94.05 tamassia" +, author = "G. Vijayan and A. Wigderson" +, title = "Rectilinear Graphs and their Embeddings" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "355--372" +, update = "94.05 tamassia" } @inproceedings{v-gpga-86 -, author = "V. Vijayan" -, title = "Geometry of planar graphs with angles" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "116--124" -, keywords = "graph drawing" -, cites = "as-ptass-79, b-aancp-83, bm-gta-76, c-ig-61, f-slrpg-48, gs-gpg-81, j-nccog-82, k-nptal-84i, lns-vlp-83, mc-ivs-80, t-dpg-83, v-ditvl-83, vw-rgte-85, vw-peog-82, y-gt-61, y-gt-68, ZZZ" -, update = "97.11 bibrelex, 93.09 tamassia" +, author = "V. Vijayan" +, title = "Geometry of planar graphs with angles" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "116--124" +, keywords = "graph drawing" +, cites = "as-ptass-79, b-aancp-83, bm-gta-76, c-ig-61, f-slrpg-48, gs-gpg-81, j-nccog-82, k-nptal-84i, lns-vlp-83, mc-ivs-80, t-dpg-83, v-ditvl-83, vw-rgte-85, vw-peog-82, y-gt-61, y-gt-68, ZZZ" +, update = "97.11 bibrelex, 93.09 tamassia" } @article{vnb-odcc-91 -, author = "A. Vinacua and I. Navazo and B. Brunet" -, title = "Octree detection of closed compartments" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 1 -, number = 3 -, year = 1991 -, pages = "263--280" -, keywords = "connected component, octree, geometric model, nonmanifold boundary" +, author = "A. Vinacua and I. Navazo and B. Brunet" +, title = "Octree detection of closed compartments" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 1 +, number = 3 +, year = 1991 +, pages = "263--280" +, keywords = "connected component, octree, geometric model, nonmanifold boundary" } @article{v-etrec-39 -, author = "P. Vincensini" -, title = "Sur une extension d'un th{\'e}or{\`e}me de {M. J. Radon} sur les ensembles de corps convexes" -, journal = "Bull. Soc. Math. France" -, volume = 67 -, year = 1939 -, pages = "115--119" -, update = "98.07 bibrelex" +, author = "P. Vincensini" +, title = "Sur une extension d'un th{\'e}or{\`e}me de {M. J. Radon} sur les ensembles de corps convexes" +, journal = "Bull. Soc. Math. France" +, volume = 67 +, year = 1939 +, pages = "115--119" +, update = "98.07 bibrelex" } @article{v-nips-63 -, author = "I. M. Vinogradov" -, title = "On the number of integer points in a sphere" -, journal = "1 zv. Akad. Nauk SSSR, Ser. Mat." -, volume = 27 -, year = 1963 -, pages = "957--968" -, update = "97.11 bibrelex" +, author = "I. M. Vinogradov" +, title = "On the number of integer points in a sphere" +, journal = "1 zv. Akad. Nauk SSSR, Ser. Mat." +, volume = 27 +, year = 1963 +, pages = "957--968" +, update = "97.11 bibrelex" } @article{v-ismaa-83 -, author = "U. Vishkin" -, title = "Implementation of simultaneous memory address access in models that forbid it" -, journal = "J. Algorithms" -, volume = 4 -, year = 1983 -, pages = "45--50" -, update = "98.07 bibrelex" +, author = "U. Vishkin" +, title = "Implementation of simultaneous memory address access in models that forbid it" +, journal = "J. Algorithms" +, volume = 4 +, year = 1983 +, pages = "45--50" +, update = "98.07 bibrelex" } @techreport{v-spa-91 -, author = "U. Vishkin" -, title = "Structural parallel algorithmics" -, type = "Technical Report" -, number = "UMIACS-TR-91-53" -, month = apr -, year = 1991 -, update = "98.11 bibrelex" +, author = "U. Vishkin" +, title = "Structural parallel algorithmics" +, type = "Technical Report" +, number = "UMIACS-TR-91-53" +, month = apr +, year = 1991 +, update = "98.11 bibrelex" } @techreport{v-spcs-83 -, author = "U. Vishkin" -, title = "Synchronous parallel computation - a survey" -, type = "Technical {Report}" -, number = 71 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, year = 1983 -, update = "97.11 bibrelex" +, author = "U. Vishkin" +, title = "Synchronous parallel computation - a survey" +, type = "Technical {Report}" +, number = 71 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, year = 1983 +, update = "97.11 bibrelex" } @article{vdgltv-esgda-00 -, author = "L. Vismara and G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and F. Vargiu" -, title = "Experimental Studies on Graph Drawing Algorithms" -, journal = "Softw. -- Pract. Exp." -, volume = 30 -, number = 11 -, year = 2000 -, pages = "1235--1284" -, update = "01.04 vismara" -, annote = "Special Issue on Discrete Algorithm Engineering" +, author = "L. Vismara and G. {Di Battista} and A. Garg and G. Liotta and R. Tamassia and F. Vargiu" +, title = "Experimental Studies on Graph Drawing Algorithms" +, journal = "Softw. -- Pract. Exp." +, volume = 30 +, number = 11 +, year = 2000 +, pages = "1235--1284" +, update = "01.04 vismara" +, annote = "Special Issue on Discrete Algorithm Engineering" } @inproceedings{vm-eadip-86 -, author = "V. Visvanathan and L. S. Milor" -, title = "An efficient algorithm to determine the image of a parallelepiped under a linear transformation" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "207--215" -, cites = "mv-psafs-86, vst-rsbtt-84, ls-smm-85, w-rsbtt-84, lp-cgs-84, r-ca-70, s-cm-65, lsv-cacsc-86, lsv-cacsc-86, dmbs-lug-79, ck-acp-70, s-fchff-85, ZZZ" -, update = "98.03 bibrelex" +, author = "V. Visvanathan and L. S. Milor" +, title = "An efficient algorithm to determine the image of a parallelepiped under a linear transformation" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "207--215" +, cites = "mv-psafs-86, vst-rsbtt-84, ls-smm-85, w-rsbtt-84, lp-cgs-84, r-ca-70, s-cm-65, lsv-cacsc-86, lsv-cacsc-86, dmbs-lug-79, ck-acp-70, s-fchff-85, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{vst-rsbtt-84 -, author = "V. Visvanathan and E. Szeto and A. Tits" -, title = "A robust simulation-before-test technique for DC analog fault diagnosis" -, booktitle = "Proc. of the International Symposium of Circuits and Systems" -, nickname = "ISCAS" -, site = "Montreal, Canada" -, year = 1984 -, pages = "689--692" -, update = "98.03 bibrelex" +, author = "V. Visvanathan and E. Szeto and A. Tits" +, title = "A robust simulation-before-test technique for DC analog fault diagnosis" +, booktitle = "Proc. of the International Symposium of Circuits and Systems" +, nickname = "ISCAS" +, site = "Montreal, Canada" +, year = 1984 +, pages = "689--692" +, update = "98.03 bibrelex" } @inproceedings{v-egpsp-93 -, author = "S. Viswanathan" -, title = "The edge guard problem for spiral polygons" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "103--108" -, keywords = "Computational Geometry, visibility, edge guards, spiral polygon" -, cites = "c-ctpg-75, o-agta-87, b-vagt-93, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "S. Viswanathan" +, title = "The edge guard problem for spiral polygons" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "103--108" +, keywords = "Computational Geometry, visibility, edge guards, spiral polygon" +, cites = "c-ctpg-75, o-agta-87, b-vagt-93, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @techreport{vw-cpsr-79 -, author = "P. M. B. Vitanyi and D. Wood" -, title = "Computing the perimeter of a set of rectangles" -, type = "Report" -, number = "79-CS-23" -, institution = "Unit Comput. Sci., McMaster Univ." -, address = "Hamilton, ON" -, year = 1979 +, author = "P. M. B. Vitanyi and D. Wood" +, title = "Computing the perimeter of a set of rectangles" +, type = "Report" +, number = "79-CS-23" +, institution = "Unit Comput. Sci., McMaster Univ." +, address = "Hamilton, ON" +, year = 1979 } @techreport{vs-apm1t-93 -, author = "J. Vitter and E. Shriver" -, title = "Algorithms for parallel memory {I}: two-level memories" -, type = "Research Report" -, number = "CS-1993-01" -, institution = "Dept. of Comp. Sc., Duke Univ." -, address = "Durham, NC" -, year = 1993 -, update = "95.01 devillers" +, author = "J. Vitter and E. Shriver" +, title = "Algorithms for parallel memory {I}: two-level memories" +, type = "Research Report" +, number = "CS-1993-01" +, institution = "Dept. of Comp. Sc., Duke Univ." +, address = "Durham, NC" +, year = 1993 +, update = "95.01 devillers" } @techreport{vs-apm2h-93 -, author = "J. Vitter and E. Shriver" -, title = "Algorithms for parallel memory {II}: hierarchical multilevel memories" -, type = "Research Report" -, number = "CS-1993-01" -, institution = "Dept. of Comp. Sc., Duke Univ." -, address = "Durham, NC" -, year = 1993 -, update = "95.01 devillers" +, author = "J. Vitter and E. Shriver" +, title = "Algorithms for parallel memory {II}: hierarchical multilevel memories" +, type = "Research Report" +, number = "CS-1993-01" +, institution = "Dept. of Comp. Sc., Duke Univ." +, address = "Durham, NC" +, year = 1993 +, update = "95.01 devillers" } @article{v-cilsg-96 -, author = "J. S. Vitter" -, title = "Communication Issues in Large-Scale Geometric Computation" -, journal = "ACM Comput. Surv." -, volume = "28A" -, number = 4 -, month = dec -, year = 1996 -, update = "97.03 murali" +, author = "J. S. Vitter" +, title = "Communication Issues in Large-Scale Geometric Computation" +, journal = "ACM Comput. Surv." +, volume = "28A" +, number = 4 +, month = dec +, year = 1996 +, update = "97.03 murali" } @incollection{v-emals-91 -, author = "J. S. Vitter" -, title = "Efficient Memory Access in Large-Scale Computation" -, booktitle = "Proc. 8th Sympos. Theoret. Aspects Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "" -, update = "96.09 orourke" +, author = "J. S. Vitter" +, title = "Efficient Memory Access in Large-Scale Computation" +, booktitle = "Proc. 8th Sympos. Theoret. Aspects Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "" +, update = "96.09 orourke" } @inproceedings{v-gsmd-99 -, author = "Jeffrey Scott Vitter" -, title = "Geometric Searching in Massive Data" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "25--30" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Jeffrey Scott Vitter" +, title = "Geometric Searching in Massive Data" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "25--30" +, update = "00.03 bibrelex, 99.07 bibrelex" } @incollection{vf-acaad-90 -, author = "J. S. Vitter and Ph. Flajolet" -, title = "Average-case analysis of algorithms and data structures" -, editor = "J. van Leeuwen" -, booktitle = "Algorithms and Complexity" -, series = "Handbook of Theoretical Computer Science" -, volume = "A" -, publisher = "Elsevier" -, address = "Amsterdam" -, year = 1990 -, pages = "431--524" -, update = "94.09 vitter" +, author = "J. S. Vitter and Ph. Flajolet" +, title = "Average-case analysis of algorithms and data structures" +, editor = "J. van Leeuwen" +, booktitle = "Algorithms and Complexity" +, series = "Handbook of Theoretical Computer Science" +, volume = "A" +, publisher = "Elsevier" +, address = "Amsterdam" +, year = 1990 +, pages = "431--524" +, update = "94.09 vitter" } @inproceedings{vl-lp-88 -, author = "J. S. Vitter and J.-H. Lin" -, title = "Learning in Parallel" -, booktitle = "Proceedings of the 1st Annual ACM Workshop on Computational Learning Theory" -, nickname = "COLT '88" -, year = 1988 -, pages = "106--124" -, precedes = "vl-lp-92" -, update = "94.09 vitter" +, author = "J. S. Vitter and J.-H. Lin" +, title = "Learning in Parallel" +, booktitle = "Proceedings of the 1st Annual ACM Workshop on Computational Learning Theory" +, nickname = "COLT '88" +, year = 1988 +, pages = "106--124" +, precedes = "vl-lp-92" +, update = "94.09 vitter" } @article{vl-lp-92 -, author = "J. S. Vitter and J.-H. Lin" -, title = "Learning in Parallel" -, journal = "Inform. Comput." -, volume = 92 -, year = 1992 -, pages = "179--202" -, succeeds = "vl-lp-88" -, update = "94.09 vitter" +, author = "J. S. Vitter and J.-H. Lin" +, title = "Learning in Parallel" +, journal = "Inform. Comput." +, volume = 92 +, year = 1992 +, pages = "179--202" +, succeeds = "vl-lp-88" +, update = "94.09 vitter" } @article{vn-lssum-93 -, author = "J. S. Vitter and M. H. Nodine" -, title = "Large-Scale Sorting in Uniform Memory Hierarchies" -, journal = "J. Parallel Distrib. Comput." -, volume = 17 -, year = 1993 -, pages = "107--114" -, update = "98.07 bibrelex, 97.03 murali" +, author = "J. S. Vitter and M. H. Nodine" +, title = "Large-Scale Sorting in Uniform Memory Hierarchies" +, journal = "J. Parallel Distrib. Comput." +, volume = 17 +, year = 1993 +, pages = "107--114" +, update = "98.07 bibrelex, 97.03 murali" } @article{vs-apm1t-94 -, author = "J. S. Vitter and E. A. M. Shriver" -, title = "Algorithms for Parallel Memory {I}: Two-Level Memories" -, journal = "Algorithmica" -, volume = 12 -, number = "2--3" -, year = 1994 -, pages = "110--147" -, update = "97.11 bibrelex, 97.03 murali" +, author = "J. S. Vitter and E. A. M. Shriver" +, title = "Algorithms for Parallel Memory {I}: Two-Level Memories" +, journal = "Algorithmica" +, volume = 12 +, number = "2--3" +, year = 1994 +, pages = "110--147" +, update = "97.11 bibrelex, 97.03 murali" } @article{vs-apmhm-94 -, author = "J. S. Vitter and E. A. M. Shriver" -, title = "Algorithms for Parallel Memory {II}: Hierarchical Multilevel Memories" -, journal = "Algorithmica" -, volume = 12 -, year = 1994 -, pages = "148--169" -, update = "96.09 tamassia" +, author = "J. S. Vitter and E. A. M. Shriver" +, title = "Algorithms for Parallel Memory {II}: Hierarchical Multilevel Memories" +, journal = "Algorithmica" +, volume = 12 +, year = 1994 +, pages = "148--169" +, update = "96.09 tamassia" } @inproceedings{vs-odiop-90 -, author = "J. S. Vitter and E. A. M. Shriver" -, title = "Optimal Disk {I/O} with Parallel Block Transfer" -, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." -, year = 1990 -, pages = "159--169" -, update = "96.09 orourke" +, author = "J. S. Vitter and E. A. M. Shriver" +, title = "Optimal Disk {I/O} with Parallel Block Transfer" +, booktitle = "Proc. 22nd Annu. ACM Sympos. Theory Comput." +, year = 1990 +, pages = "159--169" +, update = "96.09 orourke" } @phdthesis{v-ffrim-97 -, author = "J. Vleugels" -, title = "On Fatness and Fitness --- Realistic Input Models for Geometric Algorithms" -, type = "Ph.{D}. Thesis" -, school = "Dept. Comput. Sci., Univ. Utrecht" -, address = "Utrecht, The Netherlands" -, year = 1997 -, keywords = "doctoral thesis" -, update = "97.07 smid" +, author = "J. Vleugels" +, title = "On Fatness and Fitness --- Realistic Input Models for Geometric Algorithms" +, type = "Ph.{D}. Thesis" +, school = "Dept. Comput. Sci., Univ. Utrecht" +, address = "Utrecht, The Netherlands" +, year = 1997 +, keywords = "doctoral thesis" +, update = "97.07 smid" } @article{vfor-hvv-96 -, author = "J. Vleugels and V. Ferrucci and M. Overmars and A. Rao" -, title = "Hunting {Voronoi} Vertices" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "329--354" -, succeeds = "forv-hvvnp-94" -, update = "97.03 devillers+smid" +, author = "J. Vleugels and V. Ferrucci and M. Overmars and A. Rao" +, title = "Hunting {Voronoi} Vertices" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "329--354" +, succeeds = "forv-hvvnp-94" +, update = "97.03 devillers+smid" } @article{vo-avdcs-98 -, author = "J. Vleugels and M. Overmars" -, title = "Approximating {Voronoi} Diagrams of Convex Sites in any Dimension" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 8 -, year = 1998 -, pages = "201--222" -, update = "98.11 devillers" +, author = "J. Vleugels and M. Overmars" +, title = "Approximating {Voronoi} Diagrams of Convex Sites in any Dimension" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 8 +, year = 1998 +, pages = "201--222" +, update = "98.11 devillers" } @article{v-cptm-93 -, author = "H. Voelcker" -, title = "Current perspective on tolerancing and metrology" -, journal = "Manufacturing Review" -, volume = 6 -, number = 4 -, year = 1993 -, pages = "258--268" -, update = "97.03 agarwal" +, author = "H. Voelcker" +, title = "Current perspective on tolerancing and metrology" +, journal = "Manufacturing Review" +, volume = 6 +, number = 4 +, year = 1993 +, pages = "258--268" +, update = "97.03 agarwal" } @techreport{vh-rsmmp-81 -, author = "H. B. Voelcker and W. A. Hunt" -, title = "The Role of Solid Modeling in Machining - Process Modeling and {NC} Verification" -, type = "SAE {Technical} {Paper}" -, number = 810195 -, institution = "SAE" -, year = 1981 -, update = "98.03 bibrelex" +, author = "H. B. Voelcker and W. A. Hunt" +, title = "The Role of Solid Modeling in Machining - Process Modeling and {NC} Verification" +, type = "SAE {Technical} {Paper}" +, number = 810195 +, institution = "SAE" +, year = 1981 +, update = "98.03 bibrelex" } @article{vr-gmmpp-78 -, author = "H. B. Voelcker and A. A. G. Requicha" -, title = "Geometric modeling of mechanical parts and processes" -, journal = "Computer" -, volume = 1977 -, year = 1978 -, pages = "48--57" +, author = "H. B. Voelcker and A. A. G. Requicha" +, title = "Geometric modeling of mechanical parts and processes" +, journal = "Computer" +, volume = 1977 +, year = 1978 +, pages = "48--57" } @inproceedings{vw-tgtae-95 -, author = "F. Vogt and R. Wille" -, title = "{TOSCANA} --- a Graphical Tool for Analyzing and Exploring Data" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "226--233" -, keywords = "graph drawing, nested diagram, order, system" -, update = "95.01 tamassia" +, author = "F. Vogt and R. Wille" +, title = "{TOSCANA} --- a Graphical Tool for Analyzing and Exploring Data" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "226--233" +, keywords = "graph drawing, nested diagram, order, system" +, update = "95.01 tamassia" } @mastersthesis{v-hrdgd-93 -, author = "A. Voigtmann" -, title = "Hierarchische Repr{\"a}sentation diskreter geometrischer Daten" -, school = "Fachbereich Mathematik, Universit{\"a}t-GH Siegen" -, year = 1993 -, note = "Diplomarbeit" -, keywords = "master thesis" -, update = "98.11 bibrelex" +, author = "A. Voigtmann" +, title = "Hierarchische Repr{\"a}sentation diskreter geometrischer Daten" +, school = "Fachbereich Mathematik, Universit{\"a}t-GH Siegen" +, year = 1993 +, note = "Diplomarbeit" +, keywords = "master thesis" +, update = "98.11 bibrelex" } @article{vbh-hmmsr-97 -, author = "A. Voigtmann and L. Becker and K. Hinrichs" -, title = "A Hierarchical Model for Multiresolution Surface Reconstruction" -, journal = "Graph. Models Image Process." -, volume = 59 -, number = 5 -, month = sep -, year = 1997 -, pages = "333--348" -, update = "98.07 held" +, author = "A. Voigtmann and L. Becker and K. Hinrichs" +, title = "A Hierarchical Model for Multiresolution Surface Reconstruction" +, journal = "Graph. Models Image Process." +, volume = 59 +, number = 5 +, month = sep +, year = 1997 +, pages = "333--348" +, update = "98.07 held" } @inproceedings{vbh-hsruc-94 -, author = "Andreas Voigtmann and Ludger Becker and Klaus Hinrichs" -, title = "Hierachical Surface Representation Using Constrained {Delaunay} Triangulations" -, booktitle = "Abstracts 10th European Workshop Comput. Geom." -, nickname = "CG '94" -, site = "Santander" -, publisher = "Universidad de Cantabria, Santander" -, year = 1994 -, pages = "16--19" -, update = "00.11 smid, 00.07 icking" +, author = "Andreas Voigtmann and Ludger Becker and Klaus Hinrichs" +, title = "Hierachical Surface Representation Using Constrained {Delaunay} Triangulations" +, booktitle = "Abstracts 10th European Workshop Comput. Geom." +, nickname = "CG '94" +, site = "Santander" +, publisher = "Universidad de Cantabria, Santander" +, year = 1994 +, pages = "16--19" +, update = "00.11 smid, 00.07 icking" } @inproceedings{vbh-cdpmr-94 -, author = "A. Voigtmann and L. Becker and K. Hinrichs" -, title = "The Constrained {Delaunay} Pyramid: a Model for ReconstructingSurfaces at Multiple Resolutions" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "177--182" -, cites = "bkss-rtera-90, bv-hmrr-84, c-cdt-89, ct-qrdt-86, dfnp-hssa-84, d-srbtg-87, d-pdstb-89, dp-olacd-92, gg-dmtds-79, g-rtdis-84, ls-tacdt-80, mv-cdtr-93, nhs-gfasm-84, fp-ochr3-84, ps-cgi-85, s-asdsc-90, s-dasds-90, sg-apads-85, w-cabds-85, sp-htucc-92, w-ebdss-85, v-hrdgd-93, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "A. Voigtmann and L. Becker and K. Hinrichs" +, title = "The Constrained {Delaunay} Pyramid: a Model for ReconstructingSurfaces at Multiple Resolutions" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "177--182" +, cites = "bkss-rtera-90, bv-hmrr-84, c-cdt-89, ct-qrdt-86, dfnp-hssa-84, d-srbtg-87, d-pdstb-89, dp-olacd-92, gg-dmtds-79, g-rtdis-84, ls-tacdt-80, mv-cdtr-93, nhs-gfasm-84, fp-ochr3-84, ps-cgi-85, s-asdsc-90, s-dasds-90, sg-apads-85, w-cabds-85, sp-htucc-92, w-ebdss-85, v-hrdgd-93, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @article{v-tpshp-86 -, author = "A. Vol{\v c}i{\v c}" -, title = "A three-point solution to {Hammer's} x-ray problem" -, journal = "J. London Math. Soc." -, volume = 2 -, number = 27 -, year = 1986 -, pages = "349--359" -, update = "98.11 bibrelex" +, author = "A. Vol{\v c}i{\v c}" +, title = "A three-point solution to {Hammer's} x-ray problem" +, journal = "J. London Math. Soc." +, volume = 2 +, number = 27 +, year = 1986 +, pages = "349--359" +, update = "98.11 bibrelex" } @inproceedings{vk-apeic-87 -, author = "R. Volpe and P. Khosla" -, title = "Artificial potential with elliptical isopotential contours for obstacle avoidance" -, booktitle = "Proc. 26th IEEE Conf. on Decision and Control" -, year = 1987 -, pages = "180--185" -, update = "97.03 schwarzkopf" +, author = "R. Volpe and P. Khosla" +, title = "Artificial potential with elliptical isopotential contours for obstacle avoidance" +, booktitle = "Proc. 26th IEEE Conf. on Decision and Control" +, year = 1987 +, pages = "180--185" +, update = "97.03 schwarzkopf" } @incollection{r-hrrc-83 -, author = "S. M. {von Rump}" -, title = "How reliable are results of computers" -, booktitle = "Jahrbuch {\"U}berblicke Mahtematik" -, year = 1983 -, pages = "163--168" -, note = "Trans. from German: Wie zuverl{\"a}ssig sind die Ergebnisse unserer Rechenanlagen" -, update = "98.11 bibrelex" +, author = "S. M. {von Rump}" +, title = "How reliable are results of computers" +, booktitle = "Jahrbuch {\"U}berblicke Mahtematik" +, year = 1983 +, pages = "163--168" +, note = "Trans. from German: Wie zuverl{\"a}ssig sind die Ergebnisse unserer Rechenanlagen" +, update = "98.11 bibrelex" } @inproceedings{v-plcpt- -, author = "K. Vophi" -, title = "Perturbation de lines et circles et pr{\\xb4e}servation de la topologie" -, booktitle = "Journ{\\xb4e}es de g{\\xb4e}ometrie algorithmique du Val d'Ajol" -, update = "98.11 bibrelex" +, author = "K. Vophi" +, title = "Perturbation de lines et circles et pr{\\xb4e}servation de la topologie" +, booktitle = "Journ{\\xb4e}es de g{\\xb4e}ometrie algorithmique du Val d'Ajol" +, update = "98.11 bibrelex" } @inproceedings{v-ilbtm-95 -, author = "Nicolai Vorobjov" -, title = "Improved lower bound on testing membership to a polyhedron by algebraic decision trees" -, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." -, nickname = "FOCS '95" -, year = 1995 -, pages = "To appear" -, update = "98.07 bibrelex, 97.03 agarwal, 95.09 mitchell" +, author = "Nicolai Vorobjov" +, title = "Improved lower bound on testing membership to a polyhedron by algebraic decision trees" +, booktitle = "Proc. 36th Annu. IEEE Sympos. Found. Comput. Sci." +, nickname = "FOCS '95" +, year = 1995 +, pages = "To appear" +, update = "98.07 bibrelex, 97.03 agarwal, 95.09 mitchell" } @article{v-dmrsl-09 -, author = "G. F. Vorono{\"\i}" -, title = "Deuxi{\`e}me m{\'e}moire: recherches sur les parall{\'e}loedres primitifs" -, journal = "J. Reine Angew. Math." -, volume = 136 -, year = 1909 -, pages = "67--181" +, author = "G. F. Vorono{\"\i}" +, title = "Deuxi{\`e}me m{\'e}moire: recherches sur les parall{\'e}loedres primitifs" +, journal = "J. Reine Angew. Math." +, volume = 136 +, year = 1909 +, pages = "67--181" } @article{v-nadpc-08 -, author = "G. M. Voronoi" -, title = "Nouvelles applications des param{\`e}tres continus {\`a} la th{\'e}orie des formes quadratiques. Deuxi{\`e}me {M{\'e}moire}: Recherches sur les parall{\'e}llo{\`e}dres primitifs" -, journal = "J. Reine Angew. Math." -, volume = 134 -, year = 1908 -, pages = "198--287" -, keywords = "Voronoi diagrams" -, update = "93.09 held" +, author = "G. M. Voronoi" +, title = "Nouvelles applications des param{\`e}tres continus {\`a} la th{\'e}orie des formes quadratiques. Deuxi{\`e}me {M{\'e}moire}: Recherches sur les parall{\'e}llo{\`e}dres primitifs" +, journal = "J. Reine Angew. Math." +, volume = 134 +, year = 1908 +, pages = "198--287" +, keywords = "Voronoi diagrams" +, update = "93.09 held" } @article{v-nadpc-07 -, author = "G. M. Voronoi" -, title = "Nouvelles applications des param{\`e}tres continus {\`a} la th{\'e}orie des formes quadratiques. Premier {M{\'e}moire}: Sur quelques propri{\'e}t{\'e}s des formes quadratiques positives parfaites" -, journal = "J. Reine Angew. Math." -, volume = 133 -, year = 1907 -, pages = "97--178" -, update = "93.09 held" +, author = "G. M. Voronoi" +, title = "Nouvelles applications des param{\`e}tres continus {\`a} la th{\'e}orie des formes quadratiques. Premier {M{\'e}moire}: Sur quelques propri{\'e}t{\'e}s des formes quadratiques positives parfaites" +, journal = "J. Reine Angew. Math." +, volume = 133 +, year = 1907 +, pages = "97--178" +, update = "93.09 held" } @techreport{vk-mnecd-82 -, author = "K. Voss and R. Klette" -, title = "In the maximum number of edges of convex digital polygons included into a square" -, number = "N/82/6" -, institution = "Friedrich Schiller Univ., Jena" -, year = 1982 -, update = "97.11 bibrelex" +, author = "K. Voss and R. Klette" +, title = "In the maximum number of edges of convex digital polygons included into a square" +, number = "N/82/6" +, institution = "Friedrich Schiller Univ., Jena" +, year = 1982 +, update = "97.11 bibrelex" } @article{v-sccup-85 -, author = "D. L. Vossler" -, title = "Sweep-to-{CSG} conversion using pattern recognition techniques" -, journal = "IEEE Comput. Graph. Appl." -, volume = 5 -, number = 8 -, month = aug -, year = 1985 -, pages = "61--66" +, author = "D. L. Vossler" +, title = "Sweep-to-{CSG} conversion using pattern recognition techniques" +, journal = "IEEE Comput. Graph. Appl." +, volume = 5 +, number = 8 +, month = aug +, year = 1985 +, pages = "61--66" } @article{vz-ctpci-92 -, author = "S. Vre{\'c}ica and R. {\v Z}ivaljevi{\'c}" -, title = "The colored {T}verberg's problem and complexes of injective functions" -, journal = "J. Combin. Theory Ser. A" -, volume = 61 -, year = 1992 -, pages = "309--318" -, comments = "implies $o(n^d)$ bound for k-sets in any dimension d" -, update = "98.03 agarwal, 93.09 matousek" +, author = "S. Vre{\'c}ica and R. {\v Z}ivaljevi{\'c}" +, title = "The colored {T}verberg's problem and complexes of injective functions" +, journal = "J. Combin. Theory Ser. A" +, volume = 61 +, year = 1992 +, pages = "309--318" +, comments = "implies $o(n^d)$ bound for k-sets in any dimension d" +, update = "98.03 agarwal, 93.09 matousek" } @article{vs-dctds-91 -, author = "G. Vriend and C. Sander" -, title = "Detection of common three-dimensional substructures in proteins" -, journal = "PROTEINS: Structure, Funcion, and Genetics" -, volume = 11 -, year = 1991 -, pages = "52--58" -, update = "98.07 bibrelex" +, author = "G. Vriend and C. Sander" +, title = "Detection of common three-dimensional substructures in proteins" +, journal = "PROTEINS: Structure, Funcion, and Genetics" +, volume = 11 +, year = 1991 +, pages = "52--58" +, update = "98.07 bibrelex" } @article{v-ulds-80 -, author = "J. Vuillemin" -, title = "A unifying look at data structures" -, journal = "Commun. ACM" -, volume = 23 -, year = 1980 -, pages = "229--239" +, author = "J. Vuillemin" +, title = "A unifying look at data structures" +, journal = "Commun. ACM" +, volume = 23 +, year = 1980 +, pages = "229--239" } @book{w-rfeb- -, author = "E. Wachspress" -, title = "A Rational Finite Elemente Basis" -, publisher = "Academic Press" -, address = "New York, NY" -, year = "??" -, update = "98.03 bibrelex" +, author = "E. Wachspress" +, title = "A Rational Finite Elemente Basis" +, publisher = "Academic Press" +, address = "New York, NY" +, year = "??" +, update = "98.03 bibrelex" } @book{w-eidag-73 -, author = "B. L. van der Waerden" -, title = "Einf{\"u}hrung in die {Algebraische} {Geometrie}" -, edition = "2nd" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1973 -, update = "98.03 bibrelex" +, author = "B. L. van der Waerden" +, title = "Einf{\"u}hrung in die {Algebraische} {Geometrie}" +, edition = "2nd" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1973 +, update = "98.03 bibrelex" } @book{w-ma-53 -, author = "B. von der Waerden" -, title = "Modern Algebras" -, publisher = "Ungar" -, year = 1953 -, note = "Volumes 1-2" -, update = "98.03 bibrelex" +, author = "B. von der Waerden" +, title = "Modern Algebras" +, publisher = "Ungar" +, year = 1953 +, note = "Volumes 1-2" +, update = "98.03 bibrelex" } @inproceedings{w-ophcs-92 -, author = "H. Wagener" -, title = "Optimal parallel hull construction for simple polygons in {$O(\log\log n)$} time" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "593--599" +, author = "H. Wagener" +, title = "Optimal parallel hull construction for simple polygons in {$O(\log\log n)$} time" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "593--599" } @techreport{w-opach-85 -, author = "H. Wagener" -, title = "Optimally parallel algorithms for convex hull determination" -, type = "Manuscript" -, institution = "??" -, year = 1985 +, author = "H. Wagener" +, title = "Optimally parallel algorithms for convex hull determination" +, type = "Manuscript" +, institution = "??" +, year = 1985 } @phdthesis{w-pcgup-85 -, author = "H. Wagener" -, title = "Parallel Computational Geometry Using Polygonal Order" -, school = "Technical University of Berlin" -, address = "FRG" -, year = 1985 -, keywords = "doctoral thesis" -, update = "93.09 held" +, author = "H. Wagener" +, title = "Parallel Computational Geometry Using Polygonal Order" +, school = "Technical University of Berlin" +, address = "FRG" +, year = 1985 +, keywords = "doctoral thesis" +, update = "93.09 held" } @inproceedings{w-ptep-89 -, author = "H. Wagener" -, title = "{Parallele} {Triangulierung} von einfachen {Polygonen}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "H. Wagener" +, title = "{Parallele} {Triangulierung} von einfachen {Polygonen}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @inproceedings{w-tmpp-88 -, author = "H. Wagener" -, title = "Triangulating a monotone polygon in parallel" -, booktitle = "Computational Geometry and its Applications" -, nickname = "CG '88" -, site = "W{\"u}rzburg" -, series = "Lecture Notes Comput. Sci." -, volume = 333 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "136--147" -, update = "00.03 bibrelex, 99.11 bibrelex" -, annote = "4th Intern. Workshop Comput. Geom." +, author = "H. Wagener" +, title = "Triangulating a monotone polygon in parallel" +, booktitle = "Computational Geometry and its Applications" +, nickname = "CG '88" +, site = "W{\"u}rzburg" +, series = "Lecture Notes Comput. Sci." +, volume = 333 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "136--147" +, update = "00.03 bibrelex, 99.11 bibrelex" +, annote = "4th Intern. Workshop Comput. Geom." } @inproceedings{w-nakkc-91 -, author = "Dorothea Wagner" -, title = "A New Approach to Knock-Knee Channel Routing" -, booktitle = "Proc. 2nd Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "83--93" -, precedes = "w-ortdc-93" -, update = "96.09 devillers, 94.01 smid, 93.09 milone+mitchell" +, author = "Dorothea Wagner" +, title = "A New Approach to Knock-Knee Channel Routing" +, booktitle = "Proc. 2nd Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "83--93" +, precedes = "w-ortdc-93" +, update = "96.09 devillers, 94.01 smid, 93.09 milone+mitchell" } @article{w-ortdc-93 -, author = "D. Wagner" -, title = "Optimal routing through dense chanels" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 3 -, year = 1993 -, pages = "269--289" -, keywords = "VLSI design, knock knee chanel routing, wire length, number of bends, layer assignment" -, succeeds = "w-nakkc-91" -, update = "96.09 devillers" +, author = "D. Wagner" +, title = "Optimal routing through dense chanels" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 3 +, year = 1993 +, pages = "269--289" +, keywords = "VLSI design, knock knee chanel routing, wire length, number of bends, layer assignment" +, succeeds = "w-nakkc-91" +, update = "96.09 devillers" } % ### verify year: 1992 ? @article{ww-gzops-91 -, author = "D. Wagner and F. Wagner" -, title = "A Generalization of the Zero-One-Principle for Sorting Algorithms" -, journal = "Discrete Appl. Math." -, volume = 30 -, year = 1991 -, pages = "265--273" -, update = "97.03 gaertner+salinger" +, author = "D. Wagner and F. Wagner" +, title = "A Generalization of the Zero-One-Principle for Sorting Algorithms" +, journal = "Discrete Appl. Math." +, volume = 30 +, year = 1991 +, pages = "265--273" +, update = "97.03 gaertner+salinger" } @article{ww-eplta-92 -, author = "D. Wagner and F. Wagner" -, title = "An Efficient Parallel Logarithmic Time Algorithm for the Channel Routing Problem" -, journal = "Discrete Appl. Math." -, volume = 40 -, year = 1992 -, pages = "73--81" -, update = "97.03 gaertner+salinger" +, author = "D. Wagner and F. Wagner" +, title = "An Efficient Parallel Logarithmic Time Algorithm for the Channel Routing Problem" +, journal = "Discrete Appl. Math." +, volume = 40 +, year = 1992 +, pages = "73--81" +, update = "97.03 gaertner+salinger" } @inproceedings{ww-bmcgb-93 -, author = "D. Wagner and F. Wagner" -, title = "Between Min Cut and Graph Bisection" -, booktitle = "Proc. 18th Internat. Sympos. Math. Found. Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 711 -, year = 1993 -, pages = "744--750" -, update = "97.03 gaertner+salinger" +, author = "D. Wagner and F. Wagner" +, title = "Between Min Cut and Graph Bisection" +, booktitle = "Proc. 18th Internat. Sympos. Math. Found. Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 711 +, year = 1993 +, pages = "744--750" +, update = "97.03 gaertner+salinger" } @inproceedings{ww-ltaed-93 -, author = "D. Wagner and K. Weihe" -, title = "A Linear-Time Algorithm for Edge-Disjoint Paths in Planar Graphs" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, nickname = "ESA '93" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "384--395" -, update = "95.05 tamassia" +, author = "D. Wagner and K. Weihe" +, title = "A Linear-Time Algorithm for Edge-Disjoint Paths in Planar Graphs" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, nickname = "ESA '93" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "384--395" +, update = "95.05 tamassia" } @article{ww-ltaed-95 -, author = "D. Wagner and K. Weihe" -, title = "A Linear-Time Algorithm for Edge-Disjoint Paths in Planar Graphs" -, journal = "Combinatorica" -, volume = 15 -, number = 1 -, year = 1995 -, pages = "135--150" -, succeeds = "ww-ltaed-93" -, update = "98.07 tamassia+vismara" +, author = "D. Wagner and K. Weihe" +, title = "A Linear-Time Algorithm for Edge-Disjoint Paths in Planar Graphs" +, journal = "Combinatorica" +, volume = 15 +, number = 1 +, year = 1995 +, pages = "135--150" +, succeeds = "ww-ltaed-93" +, update = "98.07 tamassia+vismara" } @inproceedings{ww-alcvr-95 -, author = "Dorothea Wagner and Karsten Weihe" -, title = "An Animated Library of Combinatorial {VLSI}-Routing Algorithms" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "C28--C29" -, keywords = "" -, cites = "bb-vrfls-84, fww-rtdcm-93, f-dprg-82, kww-aotlc-89, l-caicl-90, mp-rtr-86, mps-crkkm-86, pl-otlcr-84, swww-wkklg-94, w-ortdc-93, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Dorothea Wagner and Karsten Weihe" +, title = "An Animated Library of Combinatorial {VLSI}-Routing Algorithms" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "C28--C29" +, keywords = "" +, cites = "bb-vrfls-84, fww-rtdcm-93, f-dprg-82, kww-aotlc-89, l-caicl-90, mp-rtr-86, mps-crkkm-86, pl-otlcr-84, swww-wkklg-94, w-ortdc-93, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{w-amlon-94 -, author = "F. Wagner" -, title = "Approximate map labeling is in {$\Omega(n \log n)$}" -, journal = "Inform. Process. Lett." -, volume = 52 -, year = 1994 -, pages = "161--165" -, update = "95.01 smid" +, author = "F. Wagner" +, title = "Approximate map labeling is in {$\Omega(n \log n)$}" +, journal = "Inform. Process. Lett." +, volume = 52 +, year = 1994 +, pages = "161--165" +, update = "95.01 smid" } @inproceedings{ww-swrcg-91 -, author = "Frank Wagner and Barbara Wolfers" -, title = "Short Wire Routing in Convex Grids" -, booktitle = "Proc. 2nd Internat. Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 557 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "72--82" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "Frank Wagner and Barbara Wolfers" +, title = "Short Wire Routing in Convex Grids" +, booktitle = "Proc. 2nd Internat. Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 557 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "72--82" +, update = "94.01 smid, 93.09 milone+mitchell" } @article{ww-pmla-97 -, author = "F. Wagner and A. Wolff" -, title = "A practical map labeling algorithm" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, year = 1997 -, pages = "387--404" -, update = "97.07 devillers" +, author = "F. Wagner and A. Wolff" +, title = "A practical map labeling algorithm" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, year = 1997 +, pages = "387--404" +, update = "97.07 devillers" } @inproceedings{ww-eeaam-95 -, author = "F. Wagner and A. Wolff" -, title = "An Efficient and Effective Approximation Algorithm for the Map Labeling Problem" -, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 979 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "420--433" -, update = "97.07 agarwal, 97.03 gaertner+salinger" +, author = "F. Wagner and A. Wolff" +, title = "An Efficient and Effective Approximation Algorithm for the Map Labeling Problem" +, booktitle = "Proc. 3rd Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 979 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "420--433" +, update = "97.07 agarwal, 97.03 gaertner+salinger" } @inproceedings{ww-frml-95 -, author = "F. Wagner and A. Wolff" -, title = "Fast and Reliable Map Labeling" -, booktitle = "Proc. 9th Internat. Symp. on Computer Science for Environment Protection" -, year = 1995 -, pages = "667--675" -, update = "97.03 gaertner+salinger" +, author = "F. Wagner and A. Wolff" +, title = "Fast and Reliable Map Labeling" +, booktitle = "Proc. 9th Internat. Symp. on Computer Science for Environment Protection" +, year = 1995 +, pages = "667--675" +, update = "97.03 gaertner+salinger" } @inproceedings{ww-mlhpg-95 -, author = "Frank Wagner and Alexander Wolff" -, title = "Map Labeling Heuristics: {Provably} Good and Practically Useful" -, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." -, year = 1995 -, pages = "109--118" -, keywords = "experimental, approximation algorithm" -, cites = "aik-vspca-89, eis-ctmfp-76, f-agpsp-92, fw-ppalm-91, i-pnm-75, kr-pcr-92, mn-lledt-89, ia-eaggs-86, kmps-eagpp-93, w-amlon-94, wka-appma-94, ZZZ" -, update = "98.03 bibrelex, 95.09 mitchell" +, author = "Frank Wagner and Alexander Wolff" +, title = "Map Labeling Heuristics: {Provably} Good and Practically Useful" +, booktitle = "Proc. 11th Annu. ACM Sympos. Comput. Geom." +, year = 1995 +, pages = "109--118" +, keywords = "experimental, approximation algorithm" +, cites = "aik-vspca-89, eis-ctmfp-76, f-agpsp-92, fw-ppalm-91, i-pnm-75, kr-pcr-92, mn-lledt-89, ia-eaggs-86, kmps-eagpp-93, w-amlon-94, wka-appma-94, ZZZ" +, update = "98.03 bibrelex, 95.09 mitchell" } @article{w-bzv-36 -, author = "K. Wagner" -, title = "{B}emerkungen zum {V}ierfarbenproblem" -, journal = "Jahresbericht der Deutschen Mathematiker-Vereinigung" -, volume = 46 -, year = 1936 -, pages = "26--32" -, keywords = "graph drawing" -, update = "98.11 bibrelex, 98.07 vismara, 93.09 tamassia" -, annote = "Shows that any triangulation can be transformed into - any other by flips." +, author = "K. Wagner" +, title = "{B}emerkungen zum {V}ierfarbenproblem" +, journal = "Jahresbericht der Deutschen Mathematiker-Vereinigung" +, volume = 46 +, year = 1936 +, pages = "26--32" +, keywords = "graph drawing" +, update = "98.11 bibrelex, 98.07 vismara, 93.09 tamassia" +, annote = "Shows that any triangulation can be transformed into + any other by flips." } @article{w-sf-76 -, author = {Neal R. Wagner} +, author = {Neal R. Wagner} , title = {The Sofa Problem} , year = {1976} , journal = {The American Mathematical Monthly} @@ -145404,767 +145404,767 @@ @article{w-sf-76 } @inproceedings{ww-oedca-00 -, author = "Uli Wagner and Emo Welzl" -, title = "Origin-Embracing Distributions, or A Continuous Analogue of the Upper Bound Theorem" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "50--56" -, update = "00.11 jones" +, author = "Uli Wagner and Emo Welzl" +, title = "Origin-Embracing Distributions, or A Continuous Analogue of the Upper Bound Theorem" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "50--56" +, update = "00.11 jones" } @article{w-sfsnd-84 -, author = "G. Wahba" -, title = "Surface fitting with scattered noisy data on {Euclidean} $d$-space and on the sphere" -, journal = "Rocky Mountain J. Math." -, volume = 14 -, number = 1 -, year = 1984 -, pages = "281--299" +, author = "G. Wahba" +, title = "Surface fitting with scattered noisy data on {Euclidean} $d$-space and on the sphere" +, journal = "Rocky Mountain J. Math." +, volume = 14 +, number = 1 +, year = 1984 +, pages = "281--299" } @article{wc-stp2t-83 -, author = "J. A. Wald and C. J. Colbourn" -, title = "Steiner trees, partial $2$-trees, and minimum {IFI} networks" -, journal = "Networks" -, volume = 13 -, year = 1983 -, pages = "159--167" +, author = "J. A. Wald and C. J. Colbourn" +, title = "Steiner trees, partial $2$-trees, and minimum {IFI} networks" +, journal = "Networks" +, volume = 13 +, year = 1983 +, pages = "159--167" } @article{ws-rqipu-86 -, author = "J. A. Wald and P. G. Sorenson" -, title = "Resolving the query inference problem using {Steiner} trees" -, journal = "ACM Trans. Database Syst." -, volume = 9 -, year = 1986 -, pages = "348--368" +, author = "J. A. Wald and P. G. Sorenson" +, title = "Resolving the query inference problem using {Steiner} trees" +, journal = "ACM Trans. Database Syst." +, volume = 9 +, year = 1986 +, pages = "348--368" } @book{w-gimk-57 -, author = "A. Walfisz" -, title = "Gitterpunkte in mehrdimensionalischen {Kugeln}" -, publisher = "Panstwowe Wydawnictwo Naukowe" -, address = "Warszawa, Poland" -, year = 1957 -, update = "97.11 bibrelex" +, author = "A. Walfisz" +, title = "Gitterpunkte in mehrdimensionalischen {Kugeln}" +, publisher = "Panstwowe Wydawnictwo Naukowe" +, address = "Warszawa, Poland" +, year = 1957 +, update = "97.11 bibrelex" } @article{w-npagt-90 -, author = "J. Q. {Walker II}" -, title = "A Node-positioning Algorithm for General Trees" -, journal = "Softw. -- Pract. Exp." -, volume = 20 -, number = 7 -, year = 1990 -, pages = "685--705" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Q. {Walker II}" +, title = "A Node-positioning Algorithm for General Trees" +, journal = "Softw. -- Pract. Exp." +, volume = 20 +, number = 7 +, year = 1990 +, pages = "685--705" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{w-ac-62 -, author = "R. Walker" -, title = "Algebraic Curves" -, publisher = "Dover" -, year = 1962 -, update = "98.03 bibrelex" +, author = "R. Walker" +, title = "Algebraic Curves" +, publisher = "Dover" +, year = 1962 +, update = "98.03 bibrelex" } @book{w-ac-78 -, author = "R. Walker" -, title = "Algebraic Curves" -, publisher = "Springer-Verlag" -, address = "New York, NY" -, year = 1978 -, update = "98.03 bibrelex" +, author = "R. Walker" +, title = "Algebraic Curves" +, publisher = "Springer-Verlag" +, address = "New York, NY" +, year = 1978 +, update = "98.03 bibrelex" } @inproceedings{ws-ppptu-99 -, author = "R. J. Walker and J. Snoeyink" -, title = "Practical Point-in-Polygon Tests Using {CSG} Representations of Polygons" -, editor = "M. T. Goodrich and C. C. McGeoch" -, booktitle = "Algorithm Engineering and Experimentation (Proc. ALENEX~'99)" -, series = "Lecture Notes Comput. Sci." -, volume = 1619 -, publisher = "Springer-Verlag" -, year = 1999 -, pages = "114--123" -, update = "00.11 smid, 00.07 vismara" +, author = "R. J. Walker and J. Snoeyink" +, title = "Practical Point-in-Polygon Tests Using {CSG} Representations of Polygons" +, editor = "M. T. Goodrich and C. C. McGeoch" +, booktitle = "Algorithm Engineering and Experimentation (Proc. ALENEX~'99)" +, series = "Lecture Notes Comput. Sci." +, volume = 1619 +, publisher = "Springer-Verlag" +, year = 1999 +, pages = "114--123" +, update = "00.11 smid, 00.07 vismara" } @inproceedings{ws-ceays-93 -, author = "R. K. Walker and V. Srinivasan" -, title = "Creation and Evolution of the {ASME} {Y14.5.1M} Standard" -, booktitle = "Proc. 1993 Int. Forum on Dimensional Tolerancing and Metrology" -, year = 1993 -, pages = "19--30" -, update = "96.09 orourke" +, author = "R. K. Walker and V. Srinivasan" +, title = "Creation and Evolution of the {ASME} {Y14.5.1M} Standard" +, booktitle = "Proc. 1993 Int. Forum on Dimensional Tolerancing and Metrology" +, year = 1993 +, pages = "19--30" +, update = "96.09 orourke" } @article{ws-ceays-94 -, author = "R. K. Walker and V. Srinivasan" -, title = "Creation and evolution of the {ASME Y14.5.1M} standard" -, journal = "Manufacturing Review" -, volume = 7 -, number = 4 -, year = 1994 -, pages = "16--23" -, update = "98.03 agarwal" +, author = "R. K. Walker and V. Srinivasan" +, title = "Creation and evolution of the {ASME Y14.5.1M} standard" +, journal = "Manufacturing Review" +, volume = 7 +, number = 4 +, year = 1994 +, pages = "16--23" +, update = "98.03 agarwal" } @article{weh-rtapr-89 -, author = "J. R. Wallace and K. A. Elmquist and E. A. Haines" -, title = "A ray tracing algorithm for progressive radiosity" -, journal = "Comput. Graph." -, volume = 23 -, number = 3 -, year = 1989 -, pages = "315--324" -, note = "Proc. SIGGRAPH '89" -, update = "98.03 bibrelex" +, author = "J. R. Wallace and K. A. Elmquist and E. A. Haines" +, title = "A ray tracing algorithm for progressive radiosity" +, journal = "Comput. Graph." +, volume = 23 +, number = 3 +, year = 1989 +, pages = "315--324" +, note = "Proc. SIGGRAPH '89" +, update = "98.03 bibrelex" } @inproceedings{wbs-vbvct-92 -, author = "R. S. Wallace and B. B. Bederson and E. L. Schwartz" -, title = "Voice bandwidth visual communication through logmaps: {The} {Telecortex}" -, booktitle = "Workshop on Applications of Computer Vision" -, year = 1992 -, pages = "4--10" -, update = "98.07 bibrelex" +, author = "R. S. Wallace and B. B. Bederson and E. L. Schwartz" +, title = "Voice bandwidth visual communication through logmaps: {The} {Telecortex}" +, booktitle = "Workshop on Applications of Computer Vision" +, year = 1992 +, pages = "4--10" +, update = "98.07 bibrelex" } @inproceedings{wc-pmhf-94 -, author = "A. Wallack and J. Canny" -, title = "Planning for modular and hybrid fixtures" -, booktitle = "Proc. 11th IEEE Internat. Conf. Robot. Autom." -, month = may -, year = 1994 -, update = "98.03 bibrelex" +, author = "A. Wallack and J. Canny" +, title = "Planning for modular and hybrid fixtures" +, booktitle = "Proc. 11th IEEE Internat. Conf. Robot. Autom." +, month = may +, year = 1994 +, update = "98.03 bibrelex" } @article{wc-pmhf-97 -, author = "A. S. Wallack and J. F. Canny" -, title = "Planning for Modular and Hybrid Fixtures" -, journal = "Algorithmica" -, volume = 19 -, number = "1--2" -, month = sep -, year = 1997 -, pages = "40--60" -, update = "97.07 held" +, author = "A. S. Wallack and J. F. Canny" +, title = "Planning for Modular and Hybrid Fixtures" +, journal = "Algorithmica" +, volume = 19 +, number = "1--2" +, month = sep +, year = 1997 +, pages = "40--60" +, update = "97.07 held" } @mastersthesis{w-sdssr-79 -, author = "J. Walsh" -, title = "The Simulation of Directional Sound Sources in Rooms by Means of a Digital Computer" -, school = "Univ. Western Ontario" -, address = "London, Ontario, Canada" -, year = 1979 -, note = "M. Mus. Thesis" -, keywords = "master thesis" -, update = "97.11 bibrelex" +, author = "J. Walsh" +, title = "The Simulation of Directional Sound Sources in Rooms by Means of a Digital Computer" +, school = "Univ. Western Ontario" +, address = "London, Ontario, Canada" +, year = 1979 +, note = "M. Mus. Thesis" +, keywords = "master thesis" +, update = "97.11 bibrelex" } @misc{wd-ddgsr-81 -, author = "J. Walsh and N. Dadoun" -, title = "The Design and Development of {GODOT}: {A} System for Room Acoustics Modelling" -, howpublished = "Presented at 101st Meeting of the Acoustical Society of America" -, month = may -, year = 1981 -, update = "97.11 bibrelex" +, author = "J. Walsh and N. Dadoun" +, title = "The Design and Development of {GODOT}: {A} System for Room Acoustics Modelling" +, howpublished = "Presented at 101st Meeting of the Acoustical Society of America" +, month = may +, year = 1981 +, update = "97.11 bibrelex" } @misc{wd-wawwd-82 -, author = "J. Walsh and N. Dadoun" -, title = "What Are We Waiting for? {Development} of {GODOT} {II}" -, howpublished = "Presented at 103rd Meeting of the Acoustical Society of America" -, month = apr -, year = 1982 -, update = "97.11 bibrelex" +, author = "J. Walsh and N. Dadoun" +, title = "What Are We Waiting for? {Development} of {GODOT} {II}" +, howpublished = "Presented at 103rd Meeting of the Acoustical Society of America" +, month = apr +, year = 1982 +, update = "97.11 bibrelex" } @book{wo-ich-81 -, title = "Iron castings handbook" -, editor = "C. F. Walton and T. J. Opar" -, publisher = "Iron Casting Society, Inc." -, year = 1981 -, update = "98.03 bibrelex" +, title = "Iron castings handbook" +, editor = "C. F. Walton and T. J. Opar" +, publisher = "Iron Casting Society, Inc." +, year = 1981 +, update = "98.03 bibrelex" } @article{wwp-amdc-88 -, author = "S. J. Wan and S. K. M. Wong and P. Prusinkiewicz" -, title = "An algorithm for multidimensional data clustering" -, journal = "ACM Trans. Math. Softw." -, volume = 14 -, number = 2 -, year = 1988 -, pages = "153--162" -, update = "97.11 bibrelex" +, author = "S. J. Wan and S. K. M. Wong and P. Prusinkiewicz" +, title = "An algorithm for multidimensional data clustering" +, journal = "ACM Trans. Math. Softw." +, volume = 14 +, number = 2 +, year = 1988 +, pages = "153--162" +, update = "97.11 bibrelex" } @phdthesis{w-ngvdp-87 -, author = "C. Wang" -, title = "A new generalization of {Voronoi} diagrams in the plane" -, school = "University of Alberta" -, address = "Edmonton, Alberta, Canada" -, year = 1987 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "C. Wang" +, title = "A new generalization of {Voronoi} diagrams in the plane" +, school = "University of Alberta" +, address = "Edmonton, Alberta, Canada" +, year = 1987 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @techreport{w-oagts-93 -, author = "C. Wang" -, title = "An optimal algorithm for greedy triangulation of a set of points" -, institution = "Memorial University of Newfoundland" -, year = 1983 -, succeeds = "w-oagts-94" -, update = "98.11 bibrelex" +, author = "C. Wang" +, title = "An optimal algorithm for greedy triangulation of a set of points" +, institution = "Memorial University of Newfoundland" +, year = 1983 +, succeeds = "w-oagts-94" +, update = "98.11 bibrelex" } @phdthesis{w-imdpp-83 -, author = "C. Wang" -, title = "Intersection and minimum distance problems for planar polygons" -, school = "University of Alberta" -, address = "Department of Computing Science" -, year = 1983 -, keywords = "doctoral thesis" -, update = "97.11 bibrelex" +, author = "C. Wang" +, title = "Intersection and minimum distance problems for planar polygons" +, school = "University of Alberta" +, address = "Department of Computing Science" +, year = 1983 +, keywords = "doctoral thesis" +, update = "97.11 bibrelex" } @inproceedings{w-oagts-94 -, author = "C. A. Wang" -, title = "An Optimal Algorithm for Greedy Triangulation of a Set of Points" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "332--338" -, succeeds = "w-oagts-93" -, cites = "a-lncg-88, cg-vippg-89, ddmw-fgta-94, g-segta-89, k-ndot-80, l-seagt-87a, ll-abgtc-87, ll-fagt-92, ll-gtaoc-91, ps-cgi-85, s-cdtvd-88, hs-parss-93, w-eucdt-93, w-oagts-93, g-nrpt-79, ls-tacdt-80, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "C. A. Wang" +, title = "An Optimal Algorithm for Greedy Triangulation of a Set of Points" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "332--338" +, succeeds = "w-oagts-93" +, cites = "a-lncg-88, cg-vippg-89, ddmw-fgta-94, g-segta-89, k-ndot-80, l-seagt-87a, ll-abgtc-87, ll-fagt-92, ll-gtaoc-91, ps-cgi-85, s-cdtvd-88, hs-parss-93, w-eucdt-93, w-oagts-93, g-nrpt-79, ls-tacdt-80, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{w-cdmpp-89 -, author = "C. A. Wang" -, title = "Collision detection of a moving polygon in the presence of polygonal obstacles in the plane" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 35 +, author = "C. A. Wang" +, title = "Collision detection of a moving polygon in the presence of polygonal obstacles in the plane" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 35 } @article{w-eucdt-93 -, author = "C. A. Wang" -, title = "Efficiently updating the constrained {Delaunay} triangulations" -, journal = "BIT" -, volume = 33 -, year = 1993 -, pages = "238--252" -, update = "94.05 drysdale" +, author = "C. A. Wang" +, title = "Efficiently updating the constrained {Delaunay} triangulations" +, journal = "BIT" +, volume = 33 +, year = 1993 +, pages = "238--252" +, update = "94.05 drysdale" } @techreport{wc-fmvvd-86t -, author = "C. A. Wang and E. P. F. Chan" -, title = "Finding the minimum visible vertex distance between two nonintersecting simple polygons" -, institution = "Department of Computing Science, University of Alberta" -, year = 1986 -, precedes = "wc-fmvvd-86" -, update = "97.11 bibrelex" +, author = "C. A. Wang and E. P. F. Chan" +, title = "Finding the minimum visible vertex distance between two nonintersecting simple polygons" +, institution = "Department of Computing Science, University of Alberta" +, year = 1986 +, precedes = "wc-fmvvd-86" +, update = "97.11 bibrelex" } @inproceedings{wc-fmvvd-86 -, author = "C. A. Wang and E. P. F. Chan" -, title = "Finding the minimum visible vertex distance between two nonintersecting simple polygons" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "34--42" -, succeeds = "wc-fmvvd-86t" -, cites = "abosy-fmcnp-85, bo-arcgi-79, be-nlcha-84, cd-diec-80, cw-oaimd-83, csw-uacpc-85, e-cedbt-82, fm-tspep-84, gjpt-tsp-78, k-eccs-79, lp-cgs-84, ld-gvdp-81, mt-fmvdb-83, so-fmnp-85t, t-oacmv-83, w-imdpp-83, www-dpcgf-85, wc-fmvvd-86t, ZZZ" -, update = "97.11 bibrelex" +, author = "C. A. Wang and E. P. F. Chan" +, title = "Finding the minimum visible vertex distance between two nonintersecting simple polygons" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "34--42" +, succeeds = "wc-fmvvd-86t" +, cites = "abosy-fmcnp-85, bo-arcgi-79, be-nlcha-84, cd-diec-80, cw-oaimd-83, csw-uacpc-85, e-cedbt-82, fm-tspep-84, gjpt-tsp-78, k-eccs-79, lp-cgs-84, ld-gvdp-81, mt-fmvdb-83, so-fmnp-85t, t-oacmv-83, w-imdpp-83, www-dpcgf-85, wc-fmvvd-86t, ZZZ" +, update = "97.11 bibrelex" } @inproceedings{wc-gtp3d-94 -, author = "C. A. Wang and F. Y. Chin" -, title = "On Greedy Tetrahedralization of Points in 3-{D}" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "532--540" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" +, author = "C. A. Wang and F. Y. Chin" +, title = "On Greedy Tetrahedralization of Points in 3-{D}" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "532--540" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" } @inproceedings{ws-oacdt-87 -, author = "C. A. Wang and L. Schubert" -, title = "An optimal algorithm for constructing the {Delaunay} triangulation of a set of line segments" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "223--232" -, cites = "ahu-daca-74, ae-oacwv-84, bo-arcgi-79, c-tpca-82, cgl-pgd-83, cw-oaimd-83, dk-ladsc-85, egs-oplms-86, eos-calha-83, f-savd-86, gjpt-tsp-78, k-eccs-79, k-osps-83, l-ccit-76, ls-tacdt-80, lp-cgs-84, l-prp-78, l-tdvdl-80, ll-gdtpg-86, ph-chfsp-77, ps-cgi-85, sh-cpp-75, ta-chapi-82, w-ngvdp-87, y-oavds-84, ZZZ" -, update = "98.03 bibrelex" +, author = "C. A. Wang and L. Schubert" +, title = "An optimal algorithm for constructing the {Delaunay} triangulation of a set of line segments" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "223--232" +, cites = "ahu-daca-74, ae-oacwv-84, bo-arcgi-79, c-tpca-82, cgl-pgd-83, cw-oaimd-83, dk-ladsc-85, egs-oplms-86, eos-calha-83, f-savd-86, gjpt-tsp-78, k-eccs-79, k-osps-83, l-ccit-76, ls-tacdt-80, lp-cgs-84, l-prp-78, l-tdvdl-80, ll-gdtpg-86, ph-chfsp-77, ps-cgi-85, sh-cpp-75, ta-chapi-82, w-ngvdp-87, y-oavds-84, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{wt-fcwvd-90 -, author = "C. A. Wang and P. Y. Tsin" -, title = "Finding constrained and weighted {Voronoi} diagrams in the place" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "200--203" -, cites = "ae-oacwv-84, eos-calha-86, ZZZ" -, update = "98.07 bibrelex" +, author = "C. A. Wang and P. Y. Tsin" +, title = "Finding constrained and weighted {Voronoi} diagrams in the place" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "200--203" +, cites = "ae-oacwv-84, eos-calha-86, ZZZ" +, update = "98.07 bibrelex" } @article{wt-otpat-87 -, author = "C. A. Wang and Y. H. Tsin" -, title = "An {$O(\log n)$} time parallel algorithm for triangulating a set of points in the plane" -, journal = "Inform. Process. Lett." -, volume = 25 -, year = 1987 -, pages = "55--60" +, author = "C. A. Wang and Y. H. Tsin" +, title = "An {$O(\log n)$} time parallel algorithm for triangulating a set of points in the plane" +, journal = "Inform. Process. Lett." +, volume = 25 +, year = 1987 +, pages = "55--60" } @inproceedings{wt-eucdt-92 -, author = "C. A. Wang and Y. H. Tsin" -, title = "Efficiently updating constrained {Delaunay} triangulations" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "176--181" -, cites = "aw-cg-88, agss-ltacv-89, a-vdsfg-91, c-cdt-87, dl-cvdrp-91, jw-dcvdd-88, ll-gdtpg-86, ll-abgtc-87, ll-fagt-90, l-seagt-87, l-vdbsd-89, ps-cgi-85, s-cdtvd-88, ws-oacdt-87, ZZZ" -, update = "98.07 bibrelex" +, author = "C. A. Wang and Y. H. Tsin" +, title = "Efficiently updating constrained {Delaunay} triangulations" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "176--181" +, cites = "aw-cg-88, agss-ltacv-89, a-vdsfg-91, c-cdt-87, dl-cvdrp-91, jw-dcvdd-88, ll-gdtpg-86, ll-abgtc-87, ll-fagt-90, l-seagt-87, l-vdbsd-89, ps-cgi-85, s-cdtvd-88, ws-oacdt-87, ZZZ" +, update = "98.07 bibrelex" } @article{wt-fcwvd-98 -, author = "Cao An Wang and Yung H. Tsin" -, title = "Finding constrained and weighted {Voronoi} diagrams in the plane" -, journal = "Comput. Geom. Theory Appl." -, volume = 10 -, year = 1998 -, pages = "89--104" -, succeeds = "wt-fcwvd-90" -, update = "98.11 devillers" +, author = "Cao An Wang and Yung H. Tsin" +, title = "Finding constrained and weighted {Voronoi} diagrams in the plane" +, journal = "Comput. Geom. Theory Appl." +, volume = 10 +, year = 1998 +, pages = "89--104" +, succeeds = "wt-fcwvd-90" +, update = "98.11 devillers" } @inproceedings{wt-fcvsl-91 -, author = "C. A. Wang and Y. H. Tsin" -, title = "Finding the closest and visible sites for a line in the presenc e of barriers" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "92--95" -, cites = "aaghi-vdp-86, at-oadvp-81, ea-lacvp-81, bkt-dsvp-89, ps-cgi-85, gt-ltasc-83, ZZZ" -, update = "98.07 bibrelex" +, author = "C. A. Wang and Y. H. Tsin" +, title = "Finding the closest and visible sites for a line in the presenc e of barriers" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "92--95" +, cites = "aaghi-vdp-86, at-oadvp-81, ea-lacvp-81, bkt-dsvp-89, ps-cgi-85, gt-ltasc-83, ZZZ" +, update = "98.07 bibrelex" } @article{wy-lbbsb-01 -, author = "C. A. Wang and B. Yang" -, title = "A lower bound for {$\beta$}-skeleton belonging to minimum weight triangulations" -, journal = "Comput. Geom. Theory Appl." -, volume = 19 -, year = 2001 -, pages = "35--46" -, update = "01.07 smid" +, author = "C. A. Wang and B. Yang" +, title = "A lower bound for {$\beta$}-skeleton belonging to minimum weight triangulations" +, journal = "Comput. Geom. Theory Appl." +, volume = 19 +, year = 2001 +, pages = "35--46" +, update = "01.07 smid" } @inproceedings{wy-otscp-00 -, author = "Cao An Wang and Boting Yang" -, title = "Optimal Tetrahedralizations of Some Convex Polyhedra" -, booktitle = "Abstracts 16th European Workshop Comput. Geom." -, nickname = "CG 2000" -, site = "Eilat" -, publisher = "Ben-Gurion University of the Negev" -, year = 2000 -, pages = "5--9" -, update = "00.03 bibrelex" +, author = "Cao An Wang and Boting Yang" +, title = "Optimal Tetrahedralizations of Some Convex Polyhedra" +, booktitle = "Abstracts 16th European Workshop Comput. Geom." +, nickname = "CG 2000" +, site = "Eilat" +, publisher = "Ben-Gurion University of the Negev" +, year = 2000 +, pages = "5--9" +, update = "00.03 bibrelex" } @inproceedings{wy-pcp-99 -, author = "Cao An Wang and Bo-Ting Yang" -, title = "On some Polyhedra Covering Problems" -, booktitle = "Abstracts 15th European Workshop Comput. Geom." -, nickname = "CG '99" -, site = "Antibes" -, publisher = "INRIA Sophia-Antipolis" -, year = 1999 -, pages = "119--122" -, update = "00.03 bibrelex, 99.07 bibrelex" +, author = "Cao An Wang and Bo-Ting Yang" +, title = "On some Polyhedra Covering Problems" +, booktitle = "Abstracts 15th European Workshop Comput. Geom." +, nickname = "CG '99" +, site = "Antibes" +, publisher = "INRIA Sophia-Antipolis" +, year = 1999 +, pages = "119--122" +, update = "00.03 bibrelex, 99.07 bibrelex" } @inproceedings{wz-slpr-97 -, author = "Cao An Wang and Binhai Zhu" -, title = "Shooter Location Problems Revisited" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "223--228" -, update = "97.11 jones" +, author = "Cao An Wang and Binhai Zhu" +, title = "Shooter Location Problems Revisited" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "223--228" +, update = "97.11 jones" } @phdthesis{w-mddsmp-97 -, author = "C.-H. Wang" -, title = "Manufacturability-driven decomposition of sheet metal products" -, school = "Carnegie Mellon University, The Robotics Institute" -, year = 1997 -, keywords = "manufacturing,polytopes" -, update = "98.11 orourke" +, author = "C.-H. Wang" +, title = "Manufacturability-driven decomposition of sheet metal products" +, school = "Carnegie Mellon University, The Robotics Institute" +, year = 1997 +, keywords = "manufacturing,polytopes" +, update = "98.11 orourke" } @inproceedings{wg-ctdt-96 -, author = "D. Wang and J. A. Goldak" -, title = "Correcting topological defects of tessellations" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "50--55" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "D. Wang and J. A. Goldak" +, title = "Correcting topological defects of tessellations" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "50--55" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{wl-oasrm-93 -, author = "D. Wang and R. Lee" -, title = "An optimal algorithm for solving the restricted minimal convex nested polygonal section problem" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "334--339" -, succeeds = "wl-oasrm-92" -, cites = "abosy-fmcnp-89, ll-ccmp-84, ps-cgi-85, wl-oasrm-92, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "D. Wang and R. Lee" +, title = "An optimal algorithm for solving the restricted minimal convex nested polygonal section problem" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "334--339" +, succeeds = "wl-oasrm-92" +, cites = "abosy-fmcnp-89, ll-ccmp-84, ps-cgi-85, wl-oasrm-92, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @article{w-oacob-01 -, author = "D. P. Wang" -, title = "An optimal algorithm for constructing an optimal bridge between two simple rectilinear polygons" -, journal = "Inform. Process. Lett." -, volume = 79 -, year = 2001 -, pages = "229--236" -, update = "02.03 cheong" +, author = "D. P. Wang" +, title = "An optimal algorithm for constructing an optimal bridge between two simple rectilinear polygons" +, journal = "Inform. Process. Lett." +, volume = 79 +, year = 2001 +, pages = "229--236" +, update = "02.03 cheong" } @inproceedings{whcl-psapa-93 -, author = "D. P. Wang and N. F. Huang and H. S. Chao and R. C. T. Lee" -, title = "Plane Sweep Algorithms for Polygonal Approximation Problems with Applications" -, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '93" -, series = "Lecture Notes Comput. Sci." -, volume = 762 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "515--522" -, update = "98.07 bibrelex, 94.05 smid, 93.09 milone+mitchell" +, author = "D. P. Wang and N. F. Huang and H. S. Chao and R. C. T. Lee" +, title = "Plane Sweep Algorithms for Polygonal Approximation Problems with Applications" +, booktitle = "Proc. 4th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '93" +, series = "Lecture Notes Comput. Sci." +, volume = 762 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "515--522" +, update = "98.07 bibrelex, 94.05 smid, 93.09 milone+mitchell" } @techreport{wl-oasrm-92 -, author = "D. P. Wang and R. C. T. Lee" -, title = "An Optimal Algorithm for Solving the Restricted minimal Convex nested Polygonal Separation Problem" -, type = "Technical Report" -, year = 1992 -, precedes = "wl-oasrm-93" -, update = "98.11 bibrelex" +, author = "D. P. Wang and R. C. T. Lee" +, title = "An Optimal Algorithm for Solving the Restricted minimal Convex nested Polygonal Separation Problem" +, type = "Technical Report" +, year = 1992 +, precedes = "wl-oasrm-93" +, update = "98.11 bibrelex" } @article{wk-stglp-88 -, author = "D. W. Wang and Y. S. Kuo" -, title = "A Study of Two Geometric Location Problems" -, journal = "Inf. Proc. Letters" -, volume = 28 -, number = 6 -, month = aug -, year = 1988 -, pages = "281--286" -, update = "98.07 bibrelex" +, author = "D. W. Wang and Y. S. Kuo" +, title = "A Study of Two Geometric Location Problems" +, journal = "Inf. Proc. Letters" +, volume = 28 +, number = 6 +, month = aug +, year = 1988 +, pages = "281--286" +, update = "98.07 bibrelex" } @article{w-piavp-93 -, author = "F. Wang" -, title = "A Parallel Intersection Algorithm for Vector Polygon Overlay" -, journal = "IEEE Comput. Graph. Appl." -, volume = 13 -, number = 2 -, month = mar -, year = 1993 -, pages = "74--81" -, update = "93.09 held" +, author = "F. Wang" +, title = "A Parallel Intersection Algorithm for Vector Polygon Overlay" +, journal = "IEEE Comput. Graph. Appl." +, volume = 13 +, number = 2 +, month = mar +, year = 1993 +, pages = "74--81" +, update = "93.09 held" } @article{w-smfib-84 -, author = "G. Wang" -, title = "The subdivision method of finding the intersection between two {Bezier} curves or surfaces" -, journal = "Zhejiang Univ. J., Special issue on Computational Geometry" -, volume = "??" -, year = 1984 -, update = "97.11 bibrelex" +, author = "G. Wang" +, title = "The subdivision method of finding the intersection between two {Bezier} curves or surfaces" +, journal = "Zhejiang Univ. J., Special issue on Computational Geometry" +, volume = "??" +, year = 1984 +, update = "97.11 bibrelex" } @article{w-glc-65 -, author = "H. Wang" -, title = "Games, logic and computers" -, journal = "Scientific Amer." -, volume = "??" -, year = 1965 -, update = "97.11 bibrelex" +, author = "H. Wang" +, title = "Games, logic and computers" +, journal = "Scientific Amer." +, volume = "??" +, year = 1965 +, update = "97.11 bibrelex" } @inproceedings{wa-aaccs-96 -, author = "H. Wang and P. K. Agarwal" -, title = "Approximation algorithms for curvature constrained shortest paths" -, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1996 -, pages = "409--418" -, keywords = "shortest paths, approximation, configuration space, path planning, curvature, robust paths" -, update = "96.09 agarwal, 96.05 agarwal, 96.01 mitchell" +, author = "H. Wang and P. K. Agarwal" +, title = "Approximation algorithms for curvature constrained shortest paths" +, booktitle = "Proc. 7th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1996 +, pages = "409--418" +, keywords = "shortest paths, approximation, configuration space, path planning, curvature, robust paths" +, update = "96.09 agarwal, 96.05 agarwal, 96.01 mitchell" } % ### others? @article{wo-entpp-87 -, author = "H.-P. Wang and others" -, title = "On the Efficiency of {NC} Tool Path Planning for Face Milling Operations" -, journal = "Trans. of the ASME, J. of Engineering for Industry" -, volume = 109 -, number = 4 -, month = nov -, year = 1987 -, pages = "370--376" -, update = "93.09 held" +, author = "H.-P. Wang and others" +, title = "On the Efficiency of {NC} Tool Path Planning for Face Milling Operations" +, journal = "Trans. of the ASME, J. of Engineering for Industry" +, volume = 109 +, number = 4 +, month = nov +, year = 1987 +, pages = "370--376" +, update = "93.09 held" } @inproceedings{wlb-gssnv-97 -, author = "L. Wang and M. C. Leu and D. Blackmore" -, title = "Generating Swept Solids for {NC} Verification Using the {SEDE} Method" -, booktitle = "Proc. 4th Sympos. Solid Modeling Found. Applications" -, site = "Atlanta, GA, USA" -, month = may -, year = 1997 -, pages = "364--375" -, update = "97.07 held" +, author = "L. Wang and M. C. Leu and D. Blackmore" +, title = "Generating Swept Solids for {NC} Verification Using the {SEDE} Method" +, booktitle = "Proc. 4th Sympos. Solid Modeling Found. Applications" +, site = "Atlanta, GA, USA" +, month = may +, year = 1997 +, pages = "364--375" +, update = "97.07 held" } @article{wwcc-cslst-96 -, author = "M.-E. Wang and T. C. Woo and L.-L. Chen and S.-Y. Chou" -, title = "Computing Spanning Line Segments in Three Dimensions" -, journal = "Visual Comput." -, volume = 12 -, number = 4 -, year = 1996 -, pages = "173--180" -, update = "96.09 held" +, author = "M.-E. Wang and T. C. Woo and L.-L. Chen and S.-Y. Chou" +, title = "Computing Spanning Line Segments in Three Dimensions" +, journal = "Visual Comput." +, volume = 12 +, number = 4 +, year = 1996 +, pages = "173--180" +, update = "96.09 held" } @article{w-cqsis-92 -, author = "T. Wang" -, title = "A {$C^{2}$}-quintic spline interpolation scheme on triangulation" -, journal = "Comput. Aided Geom. Design" -, volume = 9 -, year = 1992 -, pages = "379--386" -, update = "97.11 bibrelex" +, author = "T. Wang" +, title = "A {$C^{2}$}-quintic spline interpolation scheme on triangulation" +, journal = "Comput. Aided Geom. Design" +, volume = 9 +, year = 1992 +, pages = "379--386" +, update = "97.11 bibrelex" } @article{wg-s3dsr-93 -, author = "W. Wang and G. G. Grinstein" -, title = "A Survey of 3{D} Solid Reconstruction from 2{D} Projection Line Drawings" -, journal = "Comput. Graph. Forum" -, volume = 12 -, number = 2 -, month = jun -, year = 1993 -, pages = "137--158" -, update = "93.09 held" +, author = "W. Wang and G. G. Grinstein" +, title = "A Survey of 3{D} Solid Reconstruction from 2{D} Projection Line Drawings" +, journal = "Comput. Graph. Forum" +, volume = 12 +, number = 2 +, month = jun +, year = 1993 +, pages = "137--158" +, update = "93.09 held" } @article{wjg-rqpq-97 -, author = "W. Wang and B. Joe and R. Goldman" -, title = "Rational Quadratic Parameterizations of Quadrics" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "599--" -, update = "98.11 devillers" +, author = "W. Wang and B. Joe and R. Goldman" +, title = "Rational Quadratic Parameterizations of Quadrics" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "599--" +, update = "98.11 devillers" } @inproceedings{wgcpp-ipsng-90 -, author = "Y. Wang and E. L. Gursoz and J.-M. Chen and F. B. Prinz and N. M. Patrikalakis" -, title = "Intersections of Parametric Surfaces for Next Generation Geometric Modeling Systems" -, editor = "J. Turner, J. Pegna and M. Wozny" -, booktitle = "Proc. of the International Federation of Information Processing TC5/WG 5.2 Working Conference on Geometric Modeling for Product Engineering: Product Modeling for Computer-Aided Design and Manufacturing" -, year = 1990 -, pages = "75--96" -, update = "95.05 abrams" +, author = "Y. Wang and E. L. Gursoz and J.-M. Chen and F. B. Prinz and N. M. Patrikalakis" +, title = "Intersections of Parametric Surfaces for Next Generation Geometric Modeling Systems" +, editor = "J. Turner, J. Pegna and M. Wozny" +, booktitle = "Proc. of the International Federation of Information Processing TC5/WG 5.2 Working Conference on Geometric Modeling for Product Engineering: Product Modeling for Computer-Aided Design and Manufacturing" +, year = 1990 +, pages = "75--96" +, update = "95.05 abrams" } @article{wa-srr3d-86 -, author = "Y. F. Wang and J. K. Aggarwal" -, title = "Surface reconstruction and representation for 3-D scenes" -, journal = "Pattern Recogn." -, volume = 19 -, year = 1986 -, pages = "197--207" -, update = "94.05 drysdale" +, author = "Y. F. Wang and J. K. Aggarwal" +, title = "Surface reconstruction and representation for 3-D scenes" +, journal = "Pattern Recogn." +, volume = 19 +, year = 1986 +, pages = "197--207" +, update = "94.05 drysdale" } @article{wlc-nibtr-89 -, author = "Y. L. Wang and R. C. T. Lee and J. S. Chang" -, title = "The number of intersections between two rectangular paths" -, journal = "IEEE Trans. Comput." -, volume = 38 -, number = 11 -, year = 1989 -, pages = "1564--1571" -, update = "94.01 tuan" +, author = "Y. L. Wang and R. C. T. Lee and J. S. Chang" +, title = "The number of intersections between two rectangular paths" +, journal = "IEEE Trans. Comput." +, volume = 38 +, number = 11 +, year = 1989 +, pages = "1564--1571" +, update = "94.01 tuan" } @article{w-cefao-87 -, author = "Z. Wang" -, title = "A Conformal Elimination Free Algorithm for Oriented Matroid Programming" -, journal = "Chinese Annals of Mathematics" -, volume = 8 -, year = 1987 -, update = "97.11 bibrelex" +, author = "Z. Wang" +, title = "A Conformal Elimination Free Algorithm for Oriented Matroid Programming" +, journal = "Chinese Annals of Mathematics" +, volume = 8 +, year = 1987 +, update = "97.11 bibrelex" } @inproceedings{w-pcacc-95 -, author = "Z. J. Wang" -, title = "Proof of Concept: An Automated CFD Computing Environment with a Cartesian/Prism Grid Generator, Grid Adaptor and Flow Solver" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "87--101" -, update = "96.01 samitchell" +, author = "Z. J. Wang" +, title = "Proof of Concept: An Automated CFD Computing Environment with a Cartesian/Prism Grid Generator, Grid Adaptor and Flow Solver" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "87--101" +, update = "96.01 samitchell" } @article{wpw-mtpr-74 -, author = "G. E. Wangdahl and S. M. Pollock and J. B. Woodward" -, title = "Minimum-Trajectory Pipe Routing" -, journal = "Journal of Ship Research" -, volume = 18 -, number = 1 -, month = mar -, year = 1974 -, pages = "46--49" -, update = "93.09 milone+mitchell" +, author = "G. E. Wangdahl and S. M. Pollock and J. B. Woodward" +, title = "Minimum-Trajectory Pipe Routing" +, journal = "Journal of Ship Research" +, volume = 18 +, number = 1 +, month = mar +, year = 1974 +, pages = "46--49" +, update = "93.09 milone+mitchell" } @article{w-wcach-93 -, author = "A. R. Warburton" -, title = "Worst-case Analysis of some Convex Hull Heuristics for the {Euclidean} Travelling Salesman Problem" -, journal = "Oper. Res. Lett." -, volume = 13 -, year = 1993 -, pages = "37--42" -, keywords = "travelling salesman problem, heuristic, approximation algorithms, convex hulls" -, comments = "It is well known that the nearest insertion and cheapest +, author = "A. R. Warburton" +, title = "Worst-case Analysis of some Convex Hull Heuristics for the {Euclidean} Travelling Salesman Problem" +, journal = "Oper. Res. Lett." +, volume = 13 +, year = 1993 +, pages = "37--42" +, keywords = "travelling salesman problem, heuristic, approximation algorithms, convex hulls" +, comments = "It is well known that the nearest insertion and cheapest insertion are a factor 2 apx for TSP, and this is tight. Interestingly, for pts in the plane, if you start with a tour consisting of the convex hull vertices, and continue with nearest or cheapest insertion this is a factor 3 apx, and this is tight!" -, update = "98.07 mitchell" +, update = "98.07 mitchell" } @incollection{w-cbsld-94 -, author = "Greg Ward" -, title = "A Contrast-Based Scalefactor for Luminance Display" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "415--421" -, keywords = "brightness, color, image display, perception, Radiance system" -, update = "94.09 heckbert" -, annote = "Presents a simple technique for displaying pictures that +, author = "Greg Ward" +, title = "A Contrast-Based Scalefactor for Luminance Display" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "415--421" +, keywords = "brightness, color, image display, perception, Radiance system" +, update = "94.09 heckbert" +, annote = "Presents a simple technique for displaying pictures that have a dynamic range (ratio of brightest to dimmest pixel) beyond that of the display." } @article{wrc-rtsdi-88 -, author = "G. J. Ward and F. M. Rubinstein and R. D. Clear" -, title = "A ray tracing solution for diffuse interreflection" -, journal = "Comput. Graph." -, volume = 22 -, number = 4 -, year = 1988 -, pages = "85--92" -, note = "Proc. SIGGRAPH '88" -, update = "98.03 bibrelex" +, author = "G. J. Ward and F. M. Rubinstein and R. D. Clear" +, title = "A ray tracing solution for diffuse interreflection" +, journal = "Comput. Graph." +, volume = 22 +, number = 4 +, year = 1988 +, pages = "85--92" +, note = "Proc. SIGGRAPH '88" +, update = "98.03 bibrelex" } @article{ww-ubnlm-85 -, author = "James E. Ward and Richard E. Wendell" -, title = "Using Block Norms for Location Modeling" -, journal = "Oper. Res." -, volume = 33 -, year = 1985 -, pages = "1074--1090" -, update = "98.07 icking" +, author = "James E. Ward and Richard E. Wendell" +, title = "Using Block Norms for Location Modeling" +, journal = "Oper. Res." +, volume = 33 +, year = 1985 +, pages = "1074--1090" +, update = "98.07 icking" } @inproceedings{wc-atvit-80 -, author = "M. O. Ward and Y. T. Chien" -, title = "Analysis of time-varying imagery through the representation of position and shape changes" -, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." -, year = 1980 -, pages = "1236--1238" +, author = "M. O. Ward and Y. T. Chien" +, title = "Analysis of time-varying imagery through the representation of position and shape changes" +, booktitle = "Proc. 5th IEEE Internat. Conf. Pattern Recogn." +, year = 1980 +, pages = "1236--1238" } @article{wt-ommsl-83 -, author = "C. Warde and J. Thackara" -, title = "Operating modes of the microchannel spatial light modulator" -, journal = "Optical Engineering" -, volume = 22 -, number = 6 -, year = 1983 -, pages = "695--703" -, update = "97.11 bibrelex" +, author = "C. Warde and J. Thackara" +, title = "Operating modes of the microchannel spatial light modulator" +, journal = "Optical Engineering" +, volume = 22 +, number = 6 +, year = 1983 +, pages = "695--703" +, update = "97.11 bibrelex" } @article{w-cthm-77 -, author = "J. Warfield" -, title = "Crossing Theory and Hierarchy Mapping" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-7" -, number = 7 -, year = 1977 -, pages = "502--523" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "J. Warfield" +, title = "Crossing Theory and Hierarchy Mapping" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-7" +, number = 7 +, year = 1977 +, pages = "502--523" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @book{w-ocdfe-72 -, author = "J. Warga" -, title = "Optimal Control of differential and functional equations" -, publisher = "Academic Press" -, year = 1972 +, author = "J. Warga" +, title = "Optimal Control of differential and functional equations" +, publisher = "Academic Press" +, year = 1972 } @incollection{w-cildp-71 -, author = "T. T. Warnock" -, title = "Computational investigations of low-discrepancy point sets" -, editor = "S. K. Zaremba" -, booktitle = "Applications of Number Theory to Numerical Analysis" -, publisher = "Academic Press" -, year = 1971 -, pages = "319--344" -, update = "98.03 bibrelex" +, author = "T. T. Warnock" +, title = "Computational investigations of low-discrepancy point sets" +, editor = "S. K. Zaremba" +, booktitle = "Applications of Number Theory to Numerical Analysis" +, publisher = "Academic Press" +, year = 1971 +, pages = "319--344" +, update = "98.03 bibrelex" } @article{w-tsplr-57 -, author = "William Warntz" -, title = "Transportation, Social Physics, and the Law of Refraction" -, journal = "The Professional Geographer" -, volume = 9 -, number = 4 -, year = 1957 -, pages = "2--7" -, keywords = "weighted region problem, shortest paths, GIS, Snell's Law" -, update = "98.03 mitchell" +, author = "William Warntz" +, title = "Transportation, Social Physics, and the Law of Refraction" +, journal = "The Professional Geographer" +, volume = 9 +, number = 4 +, year = 1957 +, pages = "2--7" +, keywords = "weighted region problem, shortest paths, GIS, Snell's Law" +, update = "98.03 mitchell" } @inproceedings{w-vbarp-91 -, author = "Charles W. Warren" -, title = "A vector based approach to robot path planning" -, booktitle = "Proc. 1991 IEEE Internat. Conf. Robot. Autom." -, month = apr -, year = 1991 -, pages = "1021--1026" -, update = "96.05 efrat, 93.09 milone+mitchell" -, abstract = "A vector-based algorithm for planning the path of a robot among +, author = "Charles W. Warren" +, title = "A vector based approach to robot path planning" +, booktitle = "Proc. 1991 IEEE Internat. Conf. Robot. Autom." +, month = apr +, year = 1991 +, pages = "1021--1026" +, update = "96.05 efrat, 93.09 milone+mitchell" +, abstract = "A vector-based algorithm for planning the path of a robot among irregularly shaped obstacles is presented. This algorithm combines many of the desirable features of graph searching and potential field approaches to path planning. In this technique, a vector is created from the start position to @@ -146179,506 +146179,506 @@ @inproceedings{w-vbarp-91 } @article{w-lbanm-68 -, author = "H. E. Warren" -, title = "Lower bound for approximation by nonlinear manifolds" -, journal = "Trans. Amer. Math. Soc." -, volume = 133 -, year = 1968 -, pages = "167--178" -, update = "98.03 agarwal" +, author = "H. E. Warren" +, title = "Lower bound for approximation by nonlinear manifolds" +, journal = "Trans. Amer. Math. Soc." +, volume = 133 +, year = 1968 +, pages = "167--178" +, update = "98.03 agarwal" } @inproceedings{w-bqsqc-87 -, author = "J. Warren" -, title = "Blending quadric surfaces with quadric and cubic surfaces" -, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." -, year = 1987 -, pages = "341--347" -, cites = "d-sagd-64, l-padps-76, hh-asgca-85a, hh-qbs-85, hh-pmbsc-85, ms-bsstv-85a, ro-bssgm-85, r-bosm-85, rr-crbsm-84, w-asmgc-86, w-cpgvl-70, ZZZ" -, update = "98.03 bibrelex" +, author = "J. Warren" +, title = "Blending quadric surfaces with quadric and cubic surfaces" +, booktitle = "Proc. 3rd Annu. ACM Sympos. Comput. Geom." +, year = 1987 +, pages = "341--347" +, cites = "d-sagd-64, l-padps-76, hh-asgca-85a, hh-qbs-85, hh-pmbsc-85, ms-bsstv-85a, ro-bssgm-85, r-bosm-85, rr-crbsm-84, w-asmgc-86, w-cpgvl-70, ZZZ" +, update = "98.03 bibrelex" } @phdthesis{w-asmgc-86 -, author = "J. Warren" -, title = "On Algebraic Surfaces Meeting with Geometric Continousity" -, school = "Dept. Comput. Sci., Cornell Univ." -, address = "Ithaca, NY" -, month = aug -, year = 1986 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "J. Warren" +, title = "On Algebraic Surfaces Meeting with Geometric Continousity" +, school = "Dept. Comput. Sci., Cornell Univ." +, address = "Ithaca, NY" +, month = aug +, year = 1986 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{wg-otmsr-86 -, author = "Glen Y. Watabayishi and J. A. Galt" -, title = "An Optimized Triangular Mesh System from Random Points" -, editor = "J. H{\"a}user and C. Taylor" -, booktitle = "Numerical Grid Generation in Computational Fluid Dynamics" -, year = 1986 -, pages = "437--448" -, annote = "Algorithm is generate initial triangulation and - improve with flips. Flip criterion is to maximize - minimum value of area over perimeter squared. One - method of generating initial triangulation is straight - insertion, join to visible points. Other method is to - construct greedy triangulation by a rather involved - $O(n^6)$ algorithm. (Authors make two mistakes in their - analysis and claim $O((n!)^2)$.) This is a bit a slow - so they compute an approximation to GT by only looking - at $O(n)$ short lines, giving an $O(n^2)$ algorithm." +, author = "Glen Y. Watabayishi and J. A. Galt" +, title = "An Optimized Triangular Mesh System from Random Points" +, editor = "J. H{\"a}user and C. Taylor" +, booktitle = "Numerical Grid Generation in Computational Fluid Dynamics" +, year = 1986 +, pages = "437--448" +, annote = "Algorithm is generate initial triangulation and + improve with flips. Flip criterion is to maximize + minimum value of area over perimeter squared. One + method of generating initial triangulation is straight + insertion, join to visible points. Other method is to + construct greedy triangulation by a rather involved + $O(n^6)$ algorithm. (Authors make two mistakes in their + analysis and claim $O((n!)^2)$.) This is a bit a slow + so they compute an approximation to GT by only looking + at $O(n)$ short lines, giving an $O(n^2)$ algorithm." } @techreport{w-hgdgb-88 -, author = "H. Watanabe" -, title = "Heuristic Graph Displayer for {G}-{BASE}" -, number = 17 -, institution = "Ricoh Software Research Center, Tokyo, Japan" -, year = 1988 -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "H. Watanabe" +, title = "Heuristic Graph Displayer for {G}-{BASE}" +, number = 17 +, institution = "Ricoh Software Research Center, Tokyo, Japan" +, year = 1988 +, keywords = "graph drawing" +, update = "93.09 tamassia" } @techreport{w-rtvsa-70 -, author = "G. S. Watkins" -, title = "A real-time visible surface algorithm" -, type = "Report" -, number = "UTEC-CS-70-101" -, institution = "Dept. Comput. Sci., Univ. Utah" -, address = "Salt Lake City, UT" -, year = 1970 +, author = "G. S. Watkins" +, title = "A real-time visible surface algorithm" +, type = "Report" +, number = "UTEC-CS-70-101" +, institution = "Dept. Comput. Sci., Univ. Utah" +, address = "Salt Lake City, UT" +, year = 1970 } @article{w-grras- -, author = "M. E. Watkins" -, title = "Graphical Regular Representations of Alt., Symm., and Misc. Small Groups" -, journal = "Aequationes Math." -, volume = 11 -, year = "??" -, pages = "40--50" -, update = "97.11 bibrelex" +, author = "M. E. Watkins" +, title = "Graphical Regular Representations of Alt., Symm., and Misc. Small Groups" +, journal = "Aequationes Math." +, volume = 11 +, year = "??" +, pages = "40--50" +, update = "97.11 bibrelex" } @article{w-anagg-71 -, author = "M. E. Watkins" -, title = "On the Action of Non-abelian Groups on Graphs" -, journal = "J. Combin. Theory Ser. B" -, volume = 1 -, year = 1971 -, pages = "95--104" -, update = "97.11 bibrelex" +, author = "M. E. Watkins" +, title = "On the Action of Non-abelian Groups on Graphs" +, journal = "J. Combin. Theory Ser. B" +, volume = 1 +, year = 1971 +, pages = "95--104" +, update = "97.11 bibrelex" } @article{w-acrd-82 -, author = "D. F. Watson" -, title = "Automatic Contouring of Raw Data" -, journal = "Comput. Geosci." -, volume = 8 -, number = 1 -, year = 1982 -, pages = "97--101" -, annote = "FORTRAN used for DT f point set. $O(N^2)$ on average, - $O(N^3)$ worst case. Stores in array for each triangle - indices of vertices, circumcentre, circumradius. No - adjacency information. Incremental---new point is - checked against every circumcircle." +, author = "D. F. Watson" +, title = "Automatic Contouring of Raw Data" +, journal = "Comput. Geosci." +, volume = 8 +, number = 1 +, year = 1982 +, pages = "97--101" +, annote = "FORTRAN used for DT f point set. $O(N^2)$ on average, + $O(N^3)$ worst case. Stores in array for each triangle + indices of vertices, circumcentre, circumradius. No + adjacency information. Incremental---new point is + checked against every circumcircle." } @article{w-cnddt-81 -, author = "D. F. Watson" -, title = "Computing the $n$-Dimensional {Delaunay} Tessellation with Applications to {Voronoi} Polytopes" -, journal = "Comput. J." -, volume = 24 -, number = 2 -, year = 1981 -, pages = "167--172" -, update = "93.09 held" +, author = "D. F. Watson" +, title = "Computing the $n$-Dimensional {Delaunay} Tessellation with Applications to {Voronoi} Polytopes" +, journal = "Comput. J." +, volume = 24 +, number = 2 +, year = 1981 +, pages = "167--172" +, update = "93.09 held" } @book{w-cgads-92 -, author = "David F. Watson" -, title = "Contouring: {A} Guide to the Analysis and Display of Spatial Data" -, publisher = "Pergamon" -, year = 1992 -, comments = "source code to calculate Voronoi diagram in $2$-d or +, author = "David F. Watson" +, title = "Contouring: {A} Guide to the Analysis and Display of Spatial Data" +, publisher = "Pergamon" +, year = 1992 +, comments = "source code to calculate Voronoi diagram in $2$-d or $3$-d available from Watson at maths.uwa.edu.au" -, update = "93.09 jones" +, update = "93.09 jones" } @article{w-nnsnd-88 -, author = "D. F. Watson" -, title = "Natural Neighbor Sorting on the {N}-Dimensional Sphere" -, journal = "Pattern Recogn." -, volume = 21 -, number = 1 -, year = 1988 -, pages = "63--67" -, annote = "Your basic Watson algorithm for DT on $n$-dimensional - sphere." +, author = "D. F. Watson" +, title = "Natural Neighbor Sorting on the {N}-Dimensional Sphere" +, journal = "Pattern Recogn." +, volume = 21 +, number = 1 +, year = 1988 +, pages = "63--67" +, annote = "Your basic Watson algorithm for DT on $n$-dimensional + sphere." } @article{w-nns-85 -, author = "D. F. Watson" -, title = "Natural Neighbour Sorting" -, journal = "Australian Computer Journal" -, volume = 17 -, number = 4 -, year = 1985 -, pages = "189--193" -, annote = "Survey of algorithms for DT." +, author = "D. F. Watson" +, title = "Natural Neighbour Sorting" +, journal = "Australian Computer Journal" +, volume = 17 +, number = 4 +, year = 1985 +, pages = "189--193" +, annote = "Survey of algorithms for DT." } @book{w-ninni-94 -, author = "D. F. Watson" -, title = "nngridr: An implementation of natural neighbor interpolation" -, publisher = "David Watson" -, year = 1994 -, comments = "source code and discussion about the natural neighbor +, author = "D. F. Watson" +, title = "nngridr: An implementation of natural neighbor interpolation" +, publisher = "David Watson" +, year = 1994 +, comments = "source code and discussion about the natural neighbor gridding package nngridr, available from Watson at maths.uwa.edu.au" -, update = "94.05 watson" +, update = "94.05 watson" } @article{wp-sst-84 -, author = "D. F. Watson and C. M. Philip" -, title = "Survey: Systematic Triangulations" -, journal = "Comput. Vision Graph. Image Process." -, volume = 26 -, year = 1984 -, pages = "217--223" -, annote = "Compares Optimal, Greedy and Delaunay triangulations. - Shows that they are different and suggests Delaunay is - best because of the equiangular property and efficient - implementation." +, author = "D. F. Watson and C. M. Philip" +, title = "Survey: Systematic Triangulations" +, journal = "Comput. Vision Graph. Image Process." +, volume = 26 +, year = 1984 +, pages = "217--223" +, annote = "Compares Optimal, Greedy and Delaunay triangulations. + Shows that they are different and suggests Delaunay is + best because of the equiangular property and efficient + implementation." } @article{wp-nbi-87 -, author = "D. F. Watson and G. M. Philip" -, title = "Neighborhood-based interpolation" -, journal = "Geobyte" -, volume = 2 -, number = 2 -, year = 1987 -, pages = "12--16" -, update = "94.05 watson" -, annote = "Description of natural neighbor interpolation" +, author = "D. F. Watson and G. M. Philip" +, title = "Neighborhood-based interpolation" +, journal = "Geobyte" +, volume = 2 +, number = 2 +, year = 1987 +, pages = "12--16" +, update = "94.05 watson" +, annote = "Description of natural neighbor interpolation" } @book{w-3dcg-93 -, author = "A. Watt" -, title = "3D Computer Graphics" -, publisher = "Addison-Wesley" -, address = "Reading, MA" -, year = 1993 -, update = "97.03 schwarzkopf" +, author = "A. Watt" +, title = "3D Computer Graphics" +, publisher = "Addison-Wesley" +, address = "Reading, MA" +, year = 1993 +, update = "97.03 schwarzkopf" } @article{w-igbtd-90 -, author = "N. P. Weatherill" -, title = "Integrity Of Geometrical Boundaries In The Two-Dimensional {Delaunay} Triangulation" -, journal = "Communications in Applied Numerical Methods" -, volume = 6 -, number = 2 -, month = feb -, year = 1990 -, pages = "101--109" -, keywords = "geometrical boundaries, Delaunay triangulation, computational meshes" -, annote = "Adds extra points so that boundary is part of DT." -, abstract = "The Delaunay triangulation has recently received - attention as a viable method for constructing - computational meshes. However, an arbitrary boundary - definition which must be preserved in the triangulation - process will not, in general, satisfy the geometrical - definition on which the Delaunay construction is - founded. The effect of this is that the integrity of - the given boundary edges will be violated and the - computational mesh will not conform to the applied - geometrical shape. A method is proposed whereby - boundary data are supplemented with points to ensure - that imposed boundary edges are preserved during the - Delaunay triangulation. The method is illustrated on a - geometry of an estuary which exhibits highly complex - geometrical features. (Author abstract) 12 Refs." +, author = "N. P. Weatherill" +, title = "Integrity Of Geometrical Boundaries In The Two-Dimensional {Delaunay} Triangulation" +, journal = "Communications in Applied Numerical Methods" +, volume = 6 +, number = 2 +, month = feb +, year = 1990 +, pages = "101--109" +, keywords = "geometrical boundaries, Delaunay triangulation, computational meshes" +, annote = "Adds extra points so that boundary is part of DT." +, abstract = "The Delaunay triangulation has recently received + attention as a viable method for constructing + computational meshes. However, an arbitrary boundary + definition which must be preserved in the triangulation + process will not, in general, satisfy the geometrical + definition on which the Delaunay construction is + founded. The effect of this is that the integrity of + the given boundary edges will be violated and the + computational mesh will not conform to the applied + geometrical shape. A method is proposed whereby + boundary data are supplemented with points to ensure + that imposed boundary edges are preserved during the + Delaunay triangulation. The method is illustrated on a + geometry of an estuary which exhibits highly complex + geometrical features. (Author abstract) 12 Refs." } @article{w-msuma-90 -, author = "N. P. Weatherill" -, title = "Mixed structured-unstructured meshes for aerodynamic flow simulation" -, journal = "Aeronautical Journal" -, volume = "??" -, month = apr -, year = 1990 -, pages = "111--123" -, update = "98.07 bibrelex" +, author = "N. P. Weatherill" +, title = "Mixed structured-unstructured meshes for aerodynamic flow simulation" +, journal = "Aeronautical Journal" +, volume = "??" +, month = apr +, year = 1990 +, pages = "111--123" +, update = "98.07 bibrelex" } @article{w-ngg-90 -, author = "N. P. Weatherill" -, title = "Numerical Grid Generation" -, journal = "Lecture Series" -, volume = 1990 -, number = 06 -, month = jun -, year = 1990 -, pages = "66--135" -, note = "Rhode Saint Genese, Belgium. von Karman Institute for Fluid Dynamics" -, update = "98.11 bibrelex" +, author = "N. P. Weatherill" +, title = "Numerical Grid Generation" +, journal = "Lecture Series" +, volume = 1990 +, number = 06 +, month = jun +, year = 1990 +, pages = "66--135" +, note = "Rhode Saint Genese, Belgium. von Karman Institute for Fluid Dynamics" +, update = "98.11 bibrelex" } @article{wg-udbvh-92 -, author = "R. Webb and M. Gigante" -, title = "Using dynamic bounding volume hierarchies to improve efficiency of rigid body simulation" -, journal = "Visual Comput." -, volume = "??" -, year = 1992 -, pages = "825--842" -, update = "98.07 bibrelex" +, author = "R. Webb and M. Gigante" +, title = "Using dynamic bounding volume hierarchies to improve efficiency of rigid body simulation" +, journal = "Visual Comput." +, volume = "??" +, year = 1992 +, pages = "825--842" +, update = "98.07 bibrelex" } @inproceedings{ws-ggove-96 -, author = "R. Webber and A. Scott" -, title = "{GOVE}: {Grammar}-{Oriented} {Visualisation} {Environment}" -, editor = "F. J. Brandenburg" -, booktitle = "Graph Drawing (Proc. GD '95)" -, series = "Lecture Notes Comput. Sci." -, volume = 1027 -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "516--519" -, keywords = "graph drawing, 3D" -, update = "98.07 patrignani" +, author = "R. Webber and A. Scott" +, title = "{GOVE}: {Grammar}-{Oriented} {Visualisation} {Environment}" +, editor = "F. J. Brandenburg" +, booktitle = "Graph Drawing (Proc. GD '95)" +, series = "Lecture Notes Comput. Sci." +, volume = 1027 +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "516--519" +, keywords = "graph drawing, 3D" +, update = "98.07 patrignani" } @article{ws-ltbta-92 -, author = "R. E. Webber and H. Samet" -, title = "Linear-time border-tracing algorithms for quadtrees" -, journal = "Algorithmica" -, volume = 8 -, number = "?" -, year = 1992 -, pages = "39--54" -, note = "(also Computer Science TR 2309)" -, update = "96.05 efrat" +, author = "R. E. Webber and H. Samet" +, title = "Linear-time border-tracing algorithms for quadtrees" +, journal = "Algorithmica" +, volume = 8 +, number = "?" +, year = 1992 +, pages = "39--54" +, note = "(also Computer Science TR 2309)" +, update = "96.05 efrat" } @article{wka-appma-94 -, author = "G. Weber and L. Knipping and H. Alt" -, title = "An Application of Point Pattern Matching in Astronautics" -, journal = "J. Symbolic Comput." -, volume = 17 -, year = 1994 -, pages = "321--340" -, update = "95.05 held" +, author = "G. Weber and L. Knipping and H. Alt" +, title = "An Application of Point Pattern Matching in Astronautics" +, journal = "J. Symbolic Comput." +, volume = 17 +, year = 1994 +, pages = "321--340" +, update = "95.05 held" } @article{wg-ebr-95 -, author = "C. E. Wee and R. N. Goldman" -, title = "Elimination and Bivariate Resultants" -, journal = "IEEE Comput. Graph. Appl." -, volume = 15 -, number = 1 -, month = jan -, year = 1995 -, pages = "69--77" -, update = "95.05 held" +, author = "C. E. Wee and R. N. Goldman" +, title = "Elimination and Bivariate Resultants" +, journal = "IEEE Comput. Graph. Appl." +, volume = 15 +, number = 1 +, month = jan +, year = 1995 +, pages = "69--77" +, update = "95.05 held" } @inproceedings{wc-oplmv-90 -, author = "Y. C. Wee and S. Chaiken" -, title = "An optimal parallel {$L_{1}$}-metric {Voronoi} diagram algorithm" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "60--65" -, cites = "b-dsp-79, acgoy-pcg-88, cd-vdbcd-85, cg-opapp-88, c-aaspm-87, c-pms-86, e-acg-87, es-vda-86, es-vda-86, gbt-srtgp-84, gs-canen-83, k-racrn-88, k-cavd-89, l-tdvdl-80, pm-toacv-89, sh-cpp-75, s-rngam-83, wcr-sagnn-89, ww-qvrqi-88, y-cmstk-82, ZZZ" -, update = "98.07 bibrelex" +, author = "Y. C. Wee and S. Chaiken" +, title = "An optimal parallel {$L_{1}$}-metric {Voronoi} diagram algorithm" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "60--65" +, cites = "b-dsp-79, acgoy-pcg-88, cd-vdbcd-85, cg-opapp-88, c-aaspm-87, c-pms-86, e-acg-87, es-vda-86, es-vda-86, gbt-srtgp-84, gs-canen-83, k-racrn-88, k-cavd-89, l-tdvdl-80, pm-toacv-89, sh-cpp-75, s-rngam-83, wcr-sagnn-89, ww-qvrqi-88, y-cmstk-82, ZZZ" +, update = "98.07 bibrelex" } @inproceedings{wcr-sagnn-89 -, author = "Y. C. Wee and S. Chaiken and S. S. Ravi" -, title = "Some applications of geographic nearest neighbor approach" -, booktitle = "Proc. 27th Allerton Conf. Commun. Control Comput." -, year = 1989 -, update = "98.07 bibrelex" +, author = "Y. C. Wee and S. Chaiken and S. S. Ravi" +, title = "Some applications of geographic nearest neighbor approach" +, booktitle = "Proc. 27th Allerton Conf. Commun. Control Comput." +, year = 1989 +, update = "98.07 bibrelex" } @inproceedings{wcw-gmarv-89 -, author = "Y. C. Wee and S. Chaiken and D. E. Willard" -, title = "General metrics and angle restricted {Voronoi} diagrams" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 44 +, author = "Y. C. Wee and S. Chaiken and D. E. Willard" +, title = "General metrics and angle restricted {Voronoi} diagrams" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 44 } @article{whg-icmrt-84 -, author = "H. Weghorst and G. Hooper and D. P. Greenberg" -, title = "Improved Computational Methods for Ray Tracing" -, journal = "ACM Trans. Graph." -, volume = 3 -, number = 1 -, year = 1984 -, pages = "52--69" -, update = "98.03 mitchell" +, author = "H. Weghorst and G. Hooper and D. P. Greenberg" +, title = "Improved Computational Methods for Ray Tracing" +, journal = "ACM Trans. Graph." +, volume = 3 +, number = 1 +, year = 1984 +, pages = "52--69" +, update = "98.03 mitchell" } @article{w-picpp-93 -, author = "Bernd Wegner" -, title = "Partial inflation of closed polygons in the plane" -, journal = "Beitr{\"a}ge zur Algebra und Geometrie" -, volume = 34 -, number = 1 -, year = 1993 -, pages = "77--85" -, update = "02.03 orourke" +, author = "Bernd Wegner" +, title = "Partial inflation of closed polygons in the plane" +, journal = "Beitr{\"a}ge zur Algebra und Geometrie" +, volume = 34 +, number = 1 +, year = 1993 +, pages = "77--85" +, update = "02.03 orourke" } @article{w-dcnfc-75 -, author = "G. Wegner" -, title = "$d$-collapsing and nerves of families of convex sets" -, journal = "Arch. Math." -, volume = 26 -, year = 1975 -, pages = "317--321" -, update = "97.11 bibrelex" +, author = "G. Wegner" +, title = "$d$-collapsing and nerves of families of convex sets" +, journal = "Arch. Math." +, volume = 26 +, year = 1975 +, pages = "317--321" +, update = "97.11 bibrelex" } @article{w-uekgf-65 -, author = "G. Wegner" -, title = "{\"U}ber eine kombinatorisch-geometrische {Frage} von {Hadwiger} und {Debrunner}" -, journal = "Israel J. Math." -, volume = 3 -, year = 1965 -, pages = "187--198" -, update = "97.11 bibrelex" +, author = "G. Wegner" +, title = "{\"U}ber eine kombinatorisch-geometrische {Frage} von {Hadwiger} und {Debrunner}" +, journal = "Israel J. Math." +, volume = 3 +, year = 1965 +, pages = "187--198" +, update = "97.11 bibrelex" } @article{w-uhgs-85 -, author = "G. Wegner" -, title = "{\"U}ber {Helly}-{Gallaische} {Stichzahlprobleme}" -, journal = "Koll. Diskrete Geom. Salzburg" -, volume = 3 -, year = 1985 -, pages = "277--282" -, update = "97.11 bibrelex" +, author = "G. Wegner" +, title = "{\"U}ber {Helly}-{Gallaische} {Stichzahlprobleme}" +, journal = "Koll. Diskrete Geom. Salzburg" +, volume = 3 +, year = 1985 +, pages = "277--282" +, update = "97.11 bibrelex" } @incollection{w-gsdps-96 -, author = "R. Weibel" -, title = "Generalization of spatial data: {Principles} and Selected Algorithms" -, booktitle = "Lecture notes from CISM Advanced School on Algorithmic Foundations of Geographic Information Systems" -, publisher = "Springer-Verlag" -, year = 1996 -, pages = "99--152" -, update = "98.03 agarwal" +, author = "R. Weibel" +, title = "Generalization of spatial data: {Principles} and Selected Algorithms" +, booktitle = "Lecture notes from CISM Advanced School on Algorithmic Foundations of Geographic Information Systems" +, publisher = "Springer-Verlag" +, year = 1996 +, pages = "99--152" +, update = "98.03 agarwal" } @phdthesis{w-smaa-78 -, author = "B. Weide" -, title = "Statistical methods for the analysis of algorithms" -, school = "School Comput. Sci., Carnegie Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1978 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "B. Weide" +, title = "Statistical methods for the analysis of algorithms" +, school = "School Comput. Sci., Carnegie Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1978 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @techreport{w-smada-78 -, author = "B. W. Weide" -, title = "Statistical methods in algorithm design and analysis" -, type = "Report" -, number = "CMU-CS-78-142" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1978 +, author = "B. W. Weide" +, title = "Statistical methods in algorithm design and analysis" +, type = "Report" +, number = "CMU-CS-78-142" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1978 } @inproceedings{w-vfiur-79 -, author = "B. W. Weide" -, title = "Very fast information update and retrieval using cells" -, booktitle = "Proc. 17th Allerton Conf. Commun. Control Comput." -, year = 1979 -, pages = "245--254" +, author = "B. W. Weide" +, title = "Very fast information update and retrieval using cells" +, booktitle = "Proc. 17th Allerton Conf. Commun. Control Comput." +, year = 1979 +, pages = "245--254" } @article{w-blsf-87 -, author = "J. Weight" -, title = "Binary logic by spatial filtering" -, journal = "Optical Engineering" -, volume = 26 -, number = 1 -, year = 1987 -, pages = "28--33" -, update = "97.11 bibrelex" +, author = "J. Weight" +, title = "Binary logic by spatial filtering" +, journal = "Optical Engineering" +, volume = 26 +, number = 1 +, year = 1987 +, pages = "28--33" +, update = "97.11 bibrelex" } @inproceedings{wb-cvcm-96 -, author = "C. Weigle and D. Banks" -, title = "Complex-valued contour meshing" -, booktitle = "Proceedings of Visualization `96" -, publisher = "IEEE Computer Society Press" -, year = 1996 -, update = "01.07 wenger" +, author = "C. Weigle and D. Banks" +, title = "Complex-valued contour meshing" +, booktitle = "Proceedings of Visualization `96" +, publisher = "IEEE Computer Society Press" +, year = 1996 +, update = "01.07 wenger" } @inproceedings{w-ra-97 -, author = "Karsten Weihe" -, title = "Reuse of algorithms: Still a challenge to object-oriented programming" -, booktitle = "Proc. OOPSLA '97" -, year = 1997 -, pages = "34--48" -, update = "98.11 tamassia" +, author = "Karsten Weihe" +, title = "Reuse of algorithms: Still a challenge to object-oriented programming" +, booktitle = "Proc. OOPSLA '97" +, year = 1997 +, pages = "34--48" +, update = "98.11 tamassia" } @article{ww-rtcmd-00 -, author = "K. Weihe and T. Willhalm" -, title = "Reconstructing the Topology of a CAD Model - a Discrete Approach" -, journal = "Algorithmica" -, volume = 26 -, number = 1 -, year = 2000 -, pages = "126--147" -, update = "00.03 held" +, author = "K. Weihe and T. Willhalm" +, title = "Reconstructing the Topology of a CAD Model - a Discrete Approach" +, journal = "Algorithmica" +, volume = 26 +, number = 1 +, year = 2000 +, pages = "126--147" +, update = "00.03 held" } @book{w-c-87 -, author = "K. Weihrauch" -, title = "Computability" -, publisher = "Springer-Verlag" -, address = "Berlin, Heidelberg" -, year = 1987 -, update = "98.11 bibrelex" +, author = "K. Weihrauch" +, title = "Computability" +, publisher = "Springer-Verlag" +, address = "Berlin, Heidelberg" +, year = 1987 +, update = "98.11 bibrelex" } @incollection{wk-uacra-84 -, author = "K. Weihrauch and Ch. Kreitz" -, title = "A unified approach to constructive and recursive analysis" -, editor = "M. M. Richter and others" -, booktitle = "Computation and proof theory" -, publisher = "Springer-Verlag" -, address = "Berlin, Heidelberg" -, year = 1984 -, update = "98.11 bibrelex" +, author = "K. Weihrauch and Ch. Kreitz" +, title = "A unified approach to constructive and recursive analysis" +, editor = "M. M. Richter and others" +, booktitle = "Computation and proof theory" +, publisher = "Springer-Verlag" +, address = "Berlin, Heidelberg" +, year = 1984 +, update = "98.11 bibrelex" } @article{w-sltdd-52 -, author = "A. Weil" -, title = "Sur les th{\'e}or{\`e}mes de de {Rham}" -, journal = "Comment. Math. Helvetici" -, volume = 26 -, year = 1952 -, pages = "119--145" -, update = "98.03 bibrelex" +, author = "A. Weil" +, title = "Sur les th{\'e}or{\`e}mes de de {Rham}" +, journal = "Comment. Math. Helvetici" +, volume = 26 +, year = 1952 +, pages = "119--145" +, update = "98.03 bibrelex" } @incollection{w-iappt-94 -, author = "Kevin Weiler" -, title = "An Incremental Angle Point in Polygon Test" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "16--23" -, keywords = "computational geometry, inclusion testing" -, update = "94.09 heckbert" -, annote = "Provides an algorithm for testing if a point is inside a +, author = "Kevin Weiler" +, title = "An Incremental Angle Point in Polygon Test" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "16--23" +, keywords = "computational geometry, inclusion testing" +, update = "94.09 heckbert" +, annote = "Provides an algorithm for testing if a point is inside a concave polygon, a task known as point inclusion testing in computational geometry. Point-in-polygon testing is a basic task when ray tracing polygonal models, so these methods are useful for 3D as well as 2D graphics. @@ -146686,3394 +146686,3394 @@ @incollection{w-iappt-94 } @article{w-ebdss-85 -, author = "K. Weiler" -, title = "Edge-Based Data Structures for Solid Modeling in a Curved Surface Environment" -, journal = "IEEE Comput. Graph. Appl." -, volume = 5 -, number = 1 -, year = 1985 -, pages = "21--40" -, update = "98.03 agarwal+bibrelex" +, author = "K. Weiler" +, title = "Edge-Based Data Structures for Solid Modeling in a Curved Surface Environment" +, journal = "IEEE Comput. Graph. Appl." +, volume = 5 +, number = 1 +, year = 1985 +, pages = "21--40" +, update = "98.03 agarwal+bibrelex" } @techreport{w-nmgm-85 -, author = "K. Weiler" -, title = "Non-manifold geometric modeling" -, type = "Report" -, number = "??" -, institution = "General Electric Corporate Res. and Develop." -, address = "Schenectady, NY" -, year = 1985 +, author = "K. Weiler" +, title = "Non-manifold geometric modeling" +, type = "Report" +, number = "??" +, institution = "General Electric Corporate Res. and Develop." +, address = "Schenectady, NY" +, year = 1985 } @article{w-pcugr-80 -, author = "K. Weiler" -, title = "Polygon comparison using a graph representation" -, journal = "Comput. Graph." -, volume = 14 -, number = 3 -, year = 1980 -, pages = "10--18" -, note = "Proc. SIGGRAPH '80" +, author = "K. Weiler" +, title = "Polygon comparison using a graph representation" +, journal = "Comput. Graph." +, volume = 14 +, number = 3 +, year = 1980 +, pages = "10--18" +, note = "Proc. SIGGRAPH '80" } @inproceedings{w-redst-86 -, author = "K. Weiler" -, title = "The radial-edge data structure: {A} topological representation for non-manifold geometric boundary modeling" -, booktitle = "Proc. IFIP WG 5.2 Working Conference" -, site = "Rensselaerville" -, year = 1986 -, update = "98.07 bibrelex" +, author = "K. Weiler" +, title = "The radial-edge data structure: {A} topological representation for non-manifold geometric boundary modeling" +, booktitle = "Proc. IFIP WG 5.2 Working Conference" +, site = "Rensselaerville" +, year = 1986 +, update = "98.07 bibrelex" } @incollection{w-restr-88 -, author = "K. Weiler" -, title = "The radial edge structure: a topological representation for non-manifold geometric boundary modeling" -, editor = "M. J. Wozny and H. W. McLaughlin and J. L. Encarnacao" -, booktitle = "Geometric Modeling for CAD Applications" -, publisher = "North-Holland" -, year = 1988 -, pages = "217--254" -, update = "98.07 bibrelex" +, author = "K. Weiler" +, title = "The radial edge structure: a topological representation for non-manifold geometric boundary modeling" +, editor = "M. J. Wozny and H. W. McLaughlin and J. L. Encarnacao" +, booktitle = "Geometric Modeling for CAD Applications" +, publisher = "North-Holland" +, year = 1988 +, pages = "217--254" +, update = "98.07 bibrelex" } @phdthesis{w-tsgm-86 -, author = "K. Weiler" -, title = "Topological Structures for Geometric Modeling" -, school = "Rensselaer Polytechnic Institute" -, address = "Troy, NY" -, month = aug -, year = 1986 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "K. Weiler" +, title = "Topological Structures for Geometric Modeling" +, school = "Rensselaer Polytechnic Institute" +, address = "Troy, NY" +, month = aug +, year = 1986 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @inproceedings{w-tfsm-84 -, author = "K. Weiler" -, title = "Topology as a Framework for Solid Modeling" -, booktitle = "Proc. Graphics Interface '84" -, year = 1984 -, pages = "53--56" -, update = "98.11 ghali" +, author = "K. Weiler" +, title = "Topology as a Framework for Solid Modeling" +, booktitle = "Proc. Graphics Interface '84" +, year = 1984 +, pages = "53--56" +, update = "98.11 ghali" } @article{wa-hsrup-77 -, author = "K. Weiler and P. Atherton" -, title = "Hidden surface removal using polygon area sorting" -, journal = "Comput. Graph." -, volume = 11 -, number = 2 -, year = 1977 -, pages = "214--222" -, note = "Proc. SIGGRAPH '77" +, author = "K. Weiler and P. Atherton" +, title = "Hidden surface removal using polygon area sorting" +, journal = "Comput. Graph." +, volume = 11 +, number = 2 +, year = 1977 +, pages = "214--222" +, note = "Proc. SIGGRAPH '77" } @article{w-moagp-66 -, author = "L. Weinberg" -, title = "On the Maximum Order of the Automorphism Group of a Planar Triply Connected Graph" -, journal = "SIAM J." -, volume = 14 -, year = 1966 -, pages = "729--738" -, update = "97.11 bibrelex" +, author = "L. Weinberg" +, title = "On the Maximum Order of the Automorphism Group of a Planar Triply Connected Graph" +, journal = "SIAM J." +, volume = 14 +, year = 1966 +, pages = "729--738" +, update = "97.11 bibrelex" } @inproceedings{wwt-slvtd-96 -, author = "D. Weinshall and M. Werman and N. Tishby" -, title = "Stability and Likelihood of Views of Three Dimensional Objects" -, booktitle = "Computing Supplement" -, volume = 11 -, year = 1996 -, pages = "237--256" -, update = "96.01 werman" +, author = "D. Weinshall and M. Werman and N. Tishby" +, title = "Stability and Likelihood of Views of Three Dimensional Objects" +, booktitle = "Computing Supplement" +, volume = 11 +, year = 1996 +, pages = "237--256" +, update = "96.01 werman" } @inproceedings{w-naqer-93 -, author = "Volker Weispfennig" -, title = "A New Approach to Quantifier Elimination for Real Algebra and Geometry" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = "31--35" -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" +, author = "Volker Weispfennig" +, title = "A New Approach to Quantifier Elimination for Real Algebra and Geometry" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = "31--35" +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" } @inproceedings{w-plqoe-95 -, author = "Volker Weispfennig" -, title = "Parametric Linear and Quadratic Optimization by Elimination" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = 41 -, update = "00.03 bibrelex" +, author = "Volker Weispfennig" +, title = "Parametric Linear and Quadratic Optimization by Elimination" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = 41 +, update = "00.03 bibrelex" } @article{w-iptc-89 -, author = "A. I. Weiss" -, title = "Incidence-polytopes with toroidal cells" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "55--73" +, author = "A. I. Weiss" +, title = "Incidence-polytopes with toroidal cells" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "55--73" } @inproceedings{wgs-cudg-93 -, author = "Gerhard Weiss and Albert Gr{\"a}f and Martin Stumpf" -, title = "On Coloring Unit Disk Graphs" -, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" -, month = jun -, year = 1993 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Gerhard Weiss and Albert Gr{\"a}f and Martin Stumpf" +, title = "On Coloring Unit Disk Graphs" +, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" +, month = jun +, year = 1993 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{w-panns-80 -, author = "S. F. Weiss" -, title = "A probabilistic algorithm for nearest neighbour searching" -, booktitle = "Proc. ACM-BCS Sympos. Res. Develop. Inform. Retrieval" -, year = 1980 -, pages = "??" +, author = "S. F. Weiss" +, title = "A probabilistic algorithm for nearest neighbour searching" +, booktitle = "Proc. ACM-BCS Sympos. Res. Develop. Inform. Retrieval" +, year = 1980 +, pages = "??" } @book{w-cem-99 -, author = "E. W. Weisstein" -, title = "CRC Concise Encylopedia of Mathematics" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1999 -, update = "02.03 icking, 01.07 orourke" +, author = "E. W. Weisstein" +, title = "CRC Concise Encylopedia of Mathematics" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1999 +, update = "02.03 icking, 01.07 orourke" } @inproceedings{ww-agmdu-95 -, author = "L. Weitzman and K. Wittenburg" -, title = "Automatic Generation of Multimedia Documents using Relational Grammars" -, booktitle = "Proc. ACM MultiMedia '94" -, year = 1995 -, pages = "254--261" -, keywords = "graph drawing, planar, visual language" -, update = "96.09 tamassia, 96.04 garg" +, author = "L. Weitzman and K. Wittenburg" +, title = "Automatic Generation of Multimedia Documents using Relational Grammars" +, booktitle = "Proc. ACM MultiMedia '94" +, year = 1995 +, pages = "254--261" +, keywords = "graph drawing, planar, visual language" +, update = "96.09 tamassia, 96.04 garg" } @techreport{w-bires-71 -, author = "T. Welch" -, title = "Bounds on the information retrieval efficiency of static file structures" -, type = "Technical {Report}" -, number = 88 -, institution = "Massachsetts Inst. Tech." -, address = "Cambridge, MA" -, month = jun -, year = 1971 -, update = "98.03 bibrelex" +, author = "T. Welch" +, title = "Bounds on the information retrieval efficiency of static file structures" +, type = "Technical {Report}" +, number = 88 +, institution = "Massachsetts Inst. Tech." +, address = "Cambridge, MA" +, month = jun +, year = 1971 +, update = "98.03 bibrelex" } @inproceedings{w-s5nps-97 -, author = "Frank Weller" -, title = "Stability of {V}oronoi Neighborship under Perturbations of the Sites" -, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." -, year = 1997 -, pages = "251--256" -, update = "97.11 jones" +, author = "Frank Weller" +, title = "Stability of {V}oronoi Neighborship under Perturbations of the Sites" +, booktitle = "Proc. 9th Canad. Conf. Comput. Geom." +, year = 1997 +, pages = "251--256" +, update = "97.11 jones" } @inproceedings{wk-cchsp-96 -, author = "Frank Weller and Carsten Kirstein" -, title = "Computing the Convex Hull of a Simple Polygon on the Sphere" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = "5--6" -, cites = "l-fchsp-83, g-eadch-72, ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Frank Weller and Carsten Kirstein" +, title = "Computing the Convex Hull of a Simple Polygon on the Sphere" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = "5--6" +, cites = "l-fchsp-83, g-eadch-72, ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @book{w-pdcig-91 -, author = "David Wells" -, title = "The Penguin Directory of Curious and Interesting Geometry" -, publisher = "Penguin" -, address = "London" -, year = 1991 -, update = "98.11 bibrelex" +, author = "David Wells" +, title = "The Penguin Directory of Curious and Interesting Geometry" +, publisher = "Penguin" +, address = "London" +, year = 1991 +, update = "98.11 bibrelex" } @book{w-mt-76 -, author = "D. J. A. Welsh" -, title = "Matroid Theory" -, publisher = "Academic Press" -, address = "London, UK" -, year = 1976 -, update = "98.03 bibrelex" +, author = "D. J. A. Welsh" +, title = "Matroid Theory" +, publisher = "Academic Press" +, address = "London, UK" +, year = 1976 +, update = "98.03 bibrelex" } @techreport{w-csedb-91 -, author = "Emo Welzl" -, title = "Constructing smallest enclosing disks (balls and ellipsoids)" -, type = "Technical {Report}" -, institution = "Freie Universit{\"a}t Berlin" -, year = 1991 -, note = "To appear" -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Emo Welzl" +, title = "Constructing smallest enclosing disks (balls and ellipsoids)" +, type = "Technical {Report}" +, institution = "Freie Universit{\"a}t Berlin" +, year = 1991 +, note = "To appear" +, update = "98.03 mitchell, 97.11 bibrelex" } @techreport{w-cvgnl-84 -, author = "Emo Welzl" -, title = "Constructing the visibility graph for $n$ line segments in {$O(n^{2})$} time" -, type = "Technical {Report}" -, institution = "Inst. Appl. Math. Comput. Sci., Univ. Leiden" -, address = "Leiden, Netherlands" -, year = 1984 -, update = "98.03 mitchell, 97.11 bibrelex" +, author = "Emo Welzl" +, title = "Constructing the visibility graph for $n$ line segments in {$O(n^{2})$} time" +, type = "Technical {Report}" +, institution = "Inst. Appl. Math. Comput. Sci., Univ. Leiden" +, address = "Leiden, Netherlands" +, year = 1984 +, update = "98.03 mitchell, 97.11 bibrelex" } @article{w-cvgnl-85 -, author = "Emo Welzl" -, title = "Constructing the visibility graph for $n$ line segments in {$O(n^{2})$} time" -, journal = "Inform. Process. Lett." -, volume = 20 -, year = 1985 -, pages = "167--171" -, keywords = "motion planning, construction, detection, visibility, plane-sweep, line segments" -, update = "98.03 mitchell" +, author = "Emo Welzl" +, title = "Constructing the visibility graph for $n$ line segments in {$O(n^{2})$} time" +, journal = "Inform. Process. Lett." +, volume = 20 +, year = 1985 +, pages = "167--171" +, keywords = "motion planning, construction, detection, visibility, plane-sweep, line segments" +, update = "98.03 mitchell" } @article{w-eljf-01 -, author = "E. Welzl" -, title = "Entering and leaving $j$-facets" -, journal = "Discrete Comput. Geom." -, volume = 25 -, number = 3 -, year = 2001 -, pages = "351--364" -, update = "01.11 pocchiola" +, author = "E. Welzl" +, title = "Entering and leaving $j$-facets" +, journal = "Discrete Comput. Geom." +, volume = 25 +, number = 3 +, year = 2001 +, pages = "351--364" +, update = "01.11 pocchiola" } @incollection{w-ggssn-93 -, author = "Emo Welzl" -, title = "Geometric Graphs with Small Stabbing Numbers: {Combinatorics} and Applications" -, booktitle = "Proc. 9th Internat. Conf. Fund. Comput. Theory" -, site = "Szeged, Hungary" -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "??" -, update = "99.11 bibrelex, 98.03 mitchell, 93.09 milone+mitchell" +, author = "Emo Welzl" +, title = "Geometric Graphs with Small Stabbing Numbers: {Combinatorics} and Applications" +, booktitle = "Proc. 9th Internat. Conf. Fund. Comput. Theory" +, site = "Szeged, Hungary" +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "??" +, update = "99.11 bibrelex, 98.03 mitchell, 93.09 milone+mitchell" } @article{w-mksfs-86 -, author = "Emo Welzl" -, title = "More on $k$-sets of finite sets in the plane" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "95--100" -, keywords = "combinatorial geometry" -, update = "98.03 mitchell" +, author = "Emo Welzl" +, title = "More on $k$-sets of finite sets in the plane" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "95--100" +, keywords = "combinatorial geometry" +, update = "98.03 mitchell" } @techreport{w-stlcn-92t -, author = "E. Welzl" -, title = "On spanning trees with low crossing numbers" -, type = "Technical {Report}" -, number = "B92-02" -, institution = "Free University Berlin" -, address = "Berlin, Germany" -, year = 1992 -, update = "98.07 agarwal, 98.03 bibrelex" +, author = "E. Welzl" +, title = "On spanning trees with low crossing numbers" +, type = "Technical {Report}" +, number = "B92-02" +, institution = "Free University Berlin" +, address = "Berlin, Germany" +, year = 1992 +, update = "98.07 agarwal, 98.03 bibrelex" } @incollection{w-stlcn-92 -, author = "Emo Welzl" -, title = "On spanning trees with low crossing numbers" -, booktitle = "Data Structures and Efficient Algorithms, Final Report on the DFG Special Joint Initiative" -, series = "Lecture Notes Comput. Sci." -, volume = 594 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "233--249" -, update = "98.03 mitchell, 97.03 aronov, 96.05 agarwal, 94.05 matousek" +, author = "Emo Welzl" +, title = "On spanning trees with low crossing numbers" +, booktitle = "Data Structures and Efficient Algorithms, Final Report on the DFG Special Joint Initiative" +, series = "Lecture Notes Comput. Sci." +, volume = 594 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "233--249" +, update = "98.03 mitchell, 97.03 aronov, 96.05 agarwal, 94.05 matousek" } @inproceedings{w-pttco-88 -, author = "Emo Welzl" -, title = "Partition trees for triangle counting and other range searching problems" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "23--33" -, cites = "ahw-pgers-87, a-ded-83, c-prsig-87, d-cltem-78, d-brdnc-79, e-acg-87, ew-hrsls-86, hw-ensrq-87, m-mdscg-84, ps-cgi-85, s-dfs-72, vc-ucrfe-71, ww-sfrs-87, w-pr-82, ZZZ" -, update = "98.03 bibrelex+mitchell" +, author = "Emo Welzl" +, title = "Partition trees for triangle counting and other range searching problems" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "23--33" +, cites = "ahw-pgers-87, a-ded-83, c-prsig-87, d-cltem-78, d-brdnc-79, e-acg-87, ew-hrsls-86, hw-ensrq-87, m-mdscg-84, ps-cgi-85, s-dfs-72, vc-ucrfe-71, ww-sfrs-87, w-pr-82, ZZZ" +, update = "98.03 bibrelex+mitchell" } @incollection{w-sedbe-91a -, author = "Emo Welzl" -, title = "Smallest enclosing disks (balls and ellipsoids)" -, editor = "H. Maurer" -, booktitle = "New Results and New Trends in Computer Science" -, series = "Lecture Notes Comput. Sci." -, volume = 555 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "359--370" -, succeeds = "w-sedbe-91" -, update = "98.03 mitchell, 94.01 rote, 93.09 matousek" +, author = "Emo Welzl" +, title = "Smallest enclosing disks (balls and ellipsoids)" +, editor = "H. Maurer" +, booktitle = "New Results and New Trends in Computer Science" +, series = "Lecture Notes Comput. Sci." +, volume = 555 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "359--370" +, succeeds = "w-sedbe-91" +, update = "98.03 mitchell, 94.01 rote, 93.09 matousek" } @techreport{w-sedbe-91 -, author = "Emo Welzl" -, title = "Smallest enclosing disks, balls and ellipsoids" -, type = "Report" -, number = "B 91-09" -, institution = "Fachbereich Mathematik, Freie Universit{\"at} Berlin" -, address = "Berlin, Germany" -, year = 1991 -, update = "98.03 mitchell" +, author = "Emo Welzl" +, title = "Smallest enclosing disks, balls and ellipsoids" +, type = "Report" +, number = "B 91-09" +, institution = "Fachbereich Mathematik, Freie Universit{\"at} Berlin" +, address = "Berlin, Germany" +, year = 1991 +, update = "98.03 mitchell" } @inproceedings{w-usoc-01 -, author = "Emo Welzl" -, title = "Unique Sink Orientations of Cubes" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = 11 -, update = "01.04 icking" +, author = "Emo Welzl" +, title = "Unique Sink Orientations of Cubes" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = 11 +, update = "01.04 icking" } @techreport{ww-sfrs-87 -, author = "E. Welzl and G. W{\"o}ginger" -, title = "On shatter functions of range spaces" -, type = "Manuscript" -, institution = "??" -, year = 1987 -, update = "98.03 bibrelex" +, author = "E. Welzl and G. W{\"o}ginger" +, title = "On shatter functions of range spaces" +, type = "Manuscript" +, institution = "??" +, year = 1987 +, update = "98.03 bibrelex" } @incollection{ww-srbsp-93 -, author = "Emo Welzl and Barbara Wolfers" -, title = "Surface Reconstruction Between Simple Polygons via Angle Criteria" -, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" -, series = "Lecture Notes Comput. Sci." -, volume = 726 -, publisher = "Springer-Verlag" -, year = 1993 -, pages = "397--408" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "Emo Welzl and Barbara Wolfers" +, title = "Surface Reconstruction Between Simple Polygons via Angle Criteria" +, booktitle = "Proc. 1st Annu. European Sympos. Algorithms" +, series = "Lecture Notes Comput. Sci." +, volume = 726 +, publisher = "Springer-Verlag" +, year = 1993 +, pages = "397--408" +, update = "94.01 smid, 93.09 milone+mitchell" } @article{ww-srbsp-94 -, author = "Emo Welzl and B. Wolfers" -, title = "Surface Reconstruction Between Simple Polygons via Angle Criteria" -, journal = "J. Symbolic Comput." -, volume = 17 -, year = 1994 -, pages = "351--369" -, update = "98.03 mitchell, 97.03 gaertner+salinger+wolfers" +, author = "Emo Welzl and B. Wolfers" +, title = "Surface Reconstruction Between Simple Polygons via Angle Criteria" +, journal = "J. Symbolic Comput." +, volume = 17 +, year = 1994 +, pages = "351--369" +, update = "98.03 mitchell, 97.03 gaertner+salinger+wolfers" } @unpublished{w-tdbvo-92 -, author = "James Wen" -, title = "A three dimensional browser for visualizing orthogonal hierarchies" -, year = 1992 -, note = "Brown {University}" -, update = "97.03 tamassia" +, author = "James Wen" +, title = "A three dimensional browser for visualizing orthogonal hierarchies" +, year = 1992 +, note = "Brown {University}" +, update = "97.03 tamassia" } @article{w-ghtti-90 -, author = "R. Wenger" -, title = "A generalization of {Hadwiger}'s transversal theorem to intersecting sets" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "383--388" +, author = "R. Wenger" +, title = "A generalization of {Hadwiger}'s transversal theorem to intersecting sets" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "383--388" } @article{w-egncf-91 -, author = "Rephael Wenger" -, title = "Extremal Graphs with No {$C^4$'s}, {$C^6$'s} or {$C^{10}$'s}" -, journal = "J. Combin. Theory Ser. A" -, volume = 52 -, year = 1991 -, pages = "113--116" -, update = "95.09 wenger" +, author = "Rephael Wenger" +, title = "Extremal Graphs with No {$C^4$'s}, {$C^6$'s} or {$C^{10}$'s}" +, journal = "J. Combin. Theory Ser. A" +, volume = 52 +, year = 1991 +, pages = "113--116" +, update = "95.09 wenger" } @techreport{w-gpcc-90 -, author = "R. Wenger" -, title = "Geometric Permutations and Connected Components" -, type = "Technical {Report}" -, number = "90-50" -, institution = "DIMACS, Rutgers Univ." -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "R. Wenger" +, title = "Geometric Permutations and Connected Components" +, type = "Technical {Report}" +, number = "90-50" +, institution = "DIMACS, Rutgers Univ." +, year = 1990 +, update = "93.09 milone+mitchell" } @incollection{w-httgt-97 -, author = "R. Wenger" -, title = "Helly-type theorems and geometric transversals" -, chapter = 4 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "63--82" -, update = "97.11 orourke" +, author = "R. Wenger" +, title = "Helly-type theorems and geometric transversals" +, chapter = 4 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "63--82" +, update = "97.11 orourke" } @article{w-rqh-97 -, author = "Rephael Wenger" -, title = "Randomized Quickhull" -, journal = "Algorithmica" -, volume = 17 -, year = 1997 -, pages = "322--329" -, update = "01.07 wenger" +, author = "Rephael Wenger" +, title = "Randomized Quickhull" +, journal = "Algorithmica" +, volume = 17 +, year = 1997 +, pages = "322--329" +, update = "01.07 wenger" } @article{w-ubgpc-90 -, author = "R. Wenger" -, title = "Upper bounds on geometric permutations for convex sets" -, journal = "Discrete Comput. Geom." -, volume = 5 -, year = 1990 -, pages = "27--33" +, author = "R. Wenger" +, title = "Upper bounds on geometric permutations for convex sets" +, journal = "Discrete Comput. Geom." +, volume = 5 +, year = 1990 +, pages = "27--33" } @techreport{w-ublo-86 -, author = "R. Wenger" -, title = "Upper bounds on linear orderings" -, type = "Technical {Report}" -, number = "SOCS 86.19" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, month = oct -, year = 1986 -, update = "98.03 bibrelex" +, author = "R. Wenger" +, title = "Upper bounds on linear orderings" +, type = "Technical {Report}" +, number = "SOCS 86.19" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, month = oct +, year = 1986 +, update = "98.03 bibrelex" } @article{wd-ssvcc-81 -, author = "R. S. Wenocur and R. M. Dudley" -, title = "Some special Vapnik-Chervonenkis classes" -, journal = "Discrete Math." -, volume = "??" -, year = 1981 -, pages = "313--318" -, update = "97.11 bibrelex" +, author = "R. S. Wenocur and R. M. Dudley" +, title = "Some special Vapnik-Chervonenkis classes" +, journal = "Discrete Math." +, volume = "??" +, year = 1981 +, pages = "313--318" +, update = "97.11 bibrelex" } @inproceedings{ws-mpvcr-94 -, author = "C. Wentink and O. Schwarzkopf" -, title = "Motion Planning for Vacuum Cleaner Robots" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "51--56" -, cites = "ab-pptr-88, abf-pempa-88, ks-empac-90, l-rmp-91, oww-fabmo-85, ss-pmp1c-83, w-mpvcr-93, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "C. Wentink and O. Schwarzkopf" +, title = "Motion Planning for Vacuum Cleaner Robots" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "51--56" +, cites = "ab-pptr-88, abf-pempa-88, ks-empac-90, l-rmp-91, oww-fabmo-85, ss-pmp1c-83, w-mpvcr-93, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @techreport{wso-afd-96 -, author = "C. Wentink and A. F. van der Stappen and M. Overmars" -, title = "Algorithms for fixture design" -, type = "Report" -, number = "UU-CS-1996-38" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1996 -, update = "97.11 oostrum" +, author = "C. Wentink and A. F. van der Stappen and M. Overmars" +, title = "Algorithms for fixture design" +, type = "Report" +, number = "UU-CS-1996-38" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1996 +, update = "97.11 oostrum" } @mastersthesis{w-mpvcr-93 -, author = "C. J. Wentink" -, title = "Motion planning for vacuum cleaners and related problems" -, school = "Utrecht University" -, month = aug -, year = 1993 -, keywords = "master thesis" -, update = "98.11 bibrelex" +, author = "C. J. Wentink" +, title = "Motion planning for vacuum cleaners and related problems" +, school = "Utrecht University" +, month = aug +, year = 1993 +, keywords = "master thesis" +, update = "98.11 bibrelex" } @mastersthesis{w-vfgi-94 -, author = "M. Wenzel" -, title = "Verschneidungsoperationen f{\"u}r {Geo}-{Informationssysteme}" -, school = "University of M{\"u}nster" -, address = "M{\"u}nster, Germany" -, year = 1994 -, keywords = "master thesis" -, update = "98.03 bibrelex" +, author = "M. Wenzel" +, title = "Verschneidungsoperationen f{\"u}r {Geo}-{Informationssysteme}" +, school = "University of M{\"u}nster" +, address = "M{\"u}nster, Germany" +, year = 1994 +, keywords = "master thesis" +, update = "98.03 bibrelex" } @article{wbg-vpocp-89 -, author = "M. Werman and E. S. Baugher and A. Gualtieri" -, title = "The Visual Potential: One Convex Polygon" -, journal = "Comput. Vision Graph. Image Process." -, volume = "??" -, year = 1989 -, pages = "96--130" -, update = "96.01 werman" +, author = "M. Werman and E. S. Baugher and A. Gualtieri" +, title = "The Visual Potential: One Convex Polygon" +, journal = "Comput. Vision Graph. Image Process." +, volume = "??" +, year = 1989 +, pages = "96--130" +, update = "96.01 werman" } @article{wpmk-bgmpl-86 -, author = "M. Werman and S. Peleg and R. Melter and T. Y. Kong" -, title = "Bipartite graph matching for points on a line or a circle" -, journal = "J. Algorithms" -, volume = 7 -, year = 1986 -, pages = "277--284" +, author = "M. Werman and S. Peleg and R. Melter and T. Y. Kong" +, title = "Bipartite graph matching for points on a line or a circle" +, journal = "J. Algorithms" +, volume = 7 +, year = 1986 +, pages = "277--284" } @article{wpr-dmmh-85 -, author = "M. Werman and S. Peleg and A. Rosenfeld" -, title = "A Distance Metric for Multidimensional Histograms" -, journal = "Comput. Vision Graph. Image Process." -, volume = 32 -, year = 1985 -, pages = "328--336" -, update = "96.01 werman" +, author = "M. Werman and S. Peleg and A. Rosenfeld" +, title = "A Distance Metric for Multidimensional Histograms" +, journal = "Comput. Vision Graph. Image Process." +, volume = 32 +, year = 1985 +, pages = "328--336" +, update = "96.01 werman" } @inproceedings{ms-eas3d-95 -, author = "M. Werman and A. Shashua" -, title = "Elimination: An Approach to the Study of 3D-from-2D" -, booktitle = "Proc. International Conference on Computer Vision" -, year = 1995 -, update = "96.01 werman" +, author = "M. Werman and A. Shashua" +, title = "Elimination: An Approach to the Study of 3D-from-2D" +, booktitle = "Proc. International Conference on Computer Vision" +, year = 1995 +, update = "96.01 werman" } @article{ww-saidb-95 -, author = "M. Werman and D. Weinshall" -, title = "Similarity and Affine Invariant Distance Between Point Sets" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 17 -, year = 1995 -, pages = "810--814" -, update = "96.01 werman" +, author = "M. Werman and D. Weinshall" +, title = "Similarity and Affine Invariant Distance Between Point Sets" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 17 +, year = 1995 +, pages = "810--814" +, update = "96.01 werman" } @article{w-cchsp-86 -, author = "G. Werner" -, title = "The Computation of the Convex Hull of a Simple Polygon in Linear Time" -, journal = "Computers and Artificial Intelligence" -, volume = 5 -, number = 5 -, year = 1986 -, pages = "451--458" -, update = "93.09 held" +, author = "G. Werner" +, title = "The Computation of the Convex Hull of a Simple Polygon in Linear Time" +, journal = "Computers and Artificial Intelligence" +, volume = 5 +, number = 5 +, year = 1986 +, pages = "451--458" +, update = "93.09 held" } @techreport{wk-rpsav-84 -, author = "M. Wesley and G. Koppelman" -, title = "A robot planning system applied to {VLSI} manufacturing processes" -, type = "Report" -, number = "RC 10510 (\#45389)" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1984 +, author = "M. Wesley and G. Koppelman" +, title = "A robot planning system applied to {VLSI} manufacturing processes" +, type = "Report" +, number = "RC 10510 (\#45389)" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1984 } @techreport{wm-fop-81 -, author = "M. A. Wesley and G. Markowsky" -, title = "Fleshing out projections" -, type = "Report" -, number = "RC 8884" -, institution = "Dept. Comput. Sci., IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1981 +, author = "M. A. Wesley and G. Markowsky" +, title = "Fleshing out projections" +, type = "Report" +, number = "RC 8884" +, institution = "Dept. Comput. Sci., IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1981 } @techreport{wm-gsmtt-84 -, author = "M. A. Wesley and G. Markowsky" -, title = "Generation of solid models from two and three dimensional data" -, type = "Report" -, number = "RC 10328 (\#46080)" -, institution = "IBM T. J. Watson Res. Center" -, address = "Yorktown Heights, NY" -, year = 1984 +, author = "M. A. Wesley and G. Markowsky" +, title = "Generation of solid models from two and three dimensional data" +, type = "Report" +, number = "RC 10328 (\#46080)" +, institution = "IBM T. J. Watson Res. Center" +, address = "Yorktown Heights, NY" +, year = 1984 } @article{w-wphp-93 -, author = "G. Wesolowsky" -, title = "The {Weber} problem: {History} and perspective" -, journal = "Location Science" -, volume = 1 -, year = 1993 -, pages = "5--23" -, keywords = "facility location, Weber problem" -, update = "96.05 agarwal" +, author = "G. Wesolowsky" +, title = "The {Weber} problem: {History} and perspective" +, journal = "Location Science" +, volume = 1 +, year = 1993 +, pages = "5--23" +, keywords = "facility location, Weber problem" +, update = "96.05 agarwal" } @book{w-igt-95 -, author = "D. West" -, title = "An Introduction to Graph Theory" -, publisher = "Prentice Hall" -, year = 1995 -, update = "97.11 bibrelex" +, author = "D. West" +, title = "An Introduction to Graph Theory" +, publisher = "Prentice Hall" +, year = 1995 +, update = "97.11 bibrelex" } @inproceedings{w-fipt-92 -, author = "J. Westbrook" -, title = "Fast Incremental Planarity Testing" -, booktitle = "Automata, Languages and Programming (Proc. 19th ICALP)" -, series = "Lecture Notes Comput. Sci." -, volume = 623 -, publisher = "Springer-Verlag" -, year = 1992 -, pages = "342--353" -, update = "96.05 agarwal, 95.05 tamassia, 94.01 tamassia" +, author = "J. Westbrook" +, title = "Fast Incremental Planarity Testing" +, booktitle = "Automata, Languages and Programming (Proc. 19th ICALP)" +, series = "Lecture Notes Comput. Sci." +, volume = 623 +, publisher = "Springer-Verlag" +, year = 1992 +, pages = "342--353" +, update = "96.05 agarwal, 95.05 tamassia, 94.01 tamassia" } @article{wt-mbcbc-92 -, author = "J. Westbrook and R. E. Tarjan" -, title = "Maintaining Bridge-Connected and Biconnected Components On-Line" -, journal = "Algorithmica" -, volume = 7 -, year = 1992 -, pages = "433--464" -, update = "94.01 tamassia" +, author = "J. Westbrook and R. E. Tarjan" +, title = "Maintaining Bridge-Connected and Biconnected Components On-Line" +, journal = "Algorithmica" +, volume = 7 +, year = 1992 +, pages = "433--464" +, update = "94.01 tamassia" } @article{ws-tdt-79 -, author = "C. Wetherell and A. Shannon" -, title = "Tidy Drawing of Trees" -, journal = "IEEE Trans. Softw. Eng." -, volume = "SE-5" -, number = 5 -, year = 1979 -, pages = "514--520" -, keywords = "graph drawing" -, update = "93.09 tamassia" +, author = "C. Wetherell and A. Shannon" +, title = "Tidy Drawing of Trees" +, journal = "IEEE Trans. Softw. Eng." +, volume = "SE-5" +, number = 5 +, year = 1979 +, pages = "514--520" +, keywords = "graph drawing" +, update = "93.09 tamassia" } @article{w-dpl-78 -, author = "J. E. Wetzel" -, title = "On the division of the plane by lines" -, journal = "Amer. Math. Monthly" -, volume = 85 -, year = 1978 -, pages = "648--656" -, update = "98.07 agarwal" +, author = "J. E. Wetzel" +, title = "On the division of the plane by lines" +, journal = "Amer. Math. Monthly" +, volume = 85 +, year = 1978 +, pages = "648--656" +, update = "98.07 agarwal" } @incollection{w-etcp-50 -, author = "H. Weyl" -, title = "Elementary Theory of Convex Polyhedra" -, editor = "W. Kuhn and A. W. Tucker" -, booktitle = "Contributions to the Theory of Games" -, series = "Annals of Mathematical Studies" -, volume = 24 -, publisher = "Princeton University Press" -, address = "Princeton, NJ" -, year = 1950 -, pages = "3--18" -, update = "97.11 bibrelex" +, author = "H. Weyl" +, title = "Elementary Theory of Convex Polyhedra" +, editor = "W. Kuhn and A. W. Tucker" +, booktitle = "Contributions to the Theory of Games" +, series = "Annals of Mathematical Studies" +, volume = 24 +, publisher = "Princeton University Press" +, address = "Princeton, NJ" +, year = 1950 +, pages = "3--18" +, update = "97.11 bibrelex" } @article{w-rhmfa-24 -, author = "H. Weyl" -, title = "Randbemerkungen zu {H}auptproblemen der {M}athematik, {II}, {F}undamentalsatz der {A}legbra und {G}rundlagen der {M}athematik" -, journal = "Math. Z." -, volume = 20 -, year = 1924 -, pages = "131--151" -, update = "97.07 agarwal" +, author = "H. Weyl" +, title = "Randbemerkungen zu {H}auptproblemen der {M}athematik, {II}, {F}undamentalsatz der {A}legbra und {G}rundlagen der {M}athematik" +, journal = "Math. Z." +, volume = 20 +, year = 1924 +, pages = "131--151" +, update = "97.07 agarwal" } @book{w-s-51 -, author = "H. Weyl" -, title = "Symmetry" -, publisher = "Princeton" -, year = 1951 -, update = "97.11 bibrelex" +, author = "H. Weyl" +, title = "Symmetry" +, publisher = "Princeton" +, year = 1951 +, update = "97.11 bibrelex" } @article{wsckcps-oaoer-96 -, author = "K. Y. Whang and J. W. Song and J. W. Chang and J. Y. Kim and W. S. Cho and C. M. Park and I. Y. Song" -, title = "Octree-{R}: {An} Adaptible octree for efficient ray tracing" -, journal = "IEEE Trans. Visual. and Comp. Graphics" -, volume = 1 -, year = 1995 -, pages = "343--349" -, keywords = "octree, ray tracing" -, update = "97.07 agarwal, 96.05 agarwal" +, author = "K. Y. Whang and J. W. Song and J. W. Chang and J. Y. Kim and W. S. Cho and C. M. Park and I. Y. Song" +, title = "Octree-{R}: {An} Adaptible octree for efficient ray tracing" +, journal = "IEEE Trans. Visual. and Comp. Graphics" +, volume = 1 +, year = 1995 +, pages = "343--349" +, keywords = "octree, ray tracing" +, update = "97.07 agarwal, 96.05 agarwal" } @book{w-imm-84 -, author = "A. Whelan" -, title = "Injection moulding machines" -, publisher = "Elsevier" -, address = "London, UK" -, year = 1984 -, update = "98.03 bibrelex" +, author = "A. Whelan" +, title = "Injection moulding machines" +, publisher = "Elsevier" +, address = "London, UK" +, year = 1984 +, update = "98.03 bibrelex" } @article{w-rit-86 -, author = "T. Whelan" -, title = "A representation of a {$C^2$} interpolant over triangles" -, journal = "Comput. Aided Geom. Design" -, volume = 3 -, year = 1986 -, pages = "53--66" -, update = "98.07 bibrelex" +, author = "T. Whelan" +, title = "A representation of a {$C^2$} interpolant over triangles" +, journal = "Comput. Aided Geom. Design" +, volume = 3 +, year = 1986 +, pages = "53--66" +, update = "98.07 bibrelex" } @incollection{wb-tgt-78 -, author = "A. T. White and L. W. Beineke" -, title = "Topological graph theory" -, editor = "L. Beineke and R. Wilson" -, booktitle = "Selected Topics in Graph Theory" -, publisher = "Academic Press" -, address = "London, UK" -, year = 1978 -, pages = "15--49" -, update = "98.03 bibrelex" +, author = "A. T. White and L. W. Beineke" +, title = "Topological graph theory" +, editor = "L. Beineke and R. Wilson" +, booktitle = "Selected Topics in Graph Theory" +, publisher = "Academic Press" +, address = "London, UK" +, year = 1978 +, pages = "15--49" +, update = "98.03 bibrelex" } @article{w-dpo-78 -, author = "D. White" -, title = "A design for polygon overlay" -, journal = "Harvard Papers on Geographic Inform. Sys." -, volume = 6 -, year = 1978 -, update = "98.11 bibrelex" +, author = "D. White" +, title = "A design for polygon overlay" +, journal = "Harvard Papers on Geographic Inform. Sys." +, volume = 6 +, year = 1978 +, update = "98.11 bibrelex" } @inproceedings{w-nmpo-77 -, author = "D. White" -, title = "A New Method of Polygon Overlay" -, booktitle = "An Advanced Study Symposium on Topological Data Structures for Geographic Information Systems" -, site = "Cambridge, MA" -, organization = "Laboratory for Computer Graphics and Spatial Analysis, Harvard Univ." -, month = oct -, year = 1977 -, update = "98.03 bibrelex" +, author = "D. White" +, title = "A New Method of Polygon Overlay" +, booktitle = "An Advanced Study Symposium on Topological Data Structures for Geographic Information Systems" +, site = "Cambridge, MA" +, organization = "Laboratory for Computer Graphics and Spatial Analysis, Harvard Univ." +, month = oct +, year = 1977 +, update = "98.03 bibrelex" } @inproceedings{wmbs-ahmgv-95 -, author = "David White and Lai Mingwu and Steven E. Benzley and Gregory D. Sjaardema" -, title = "Automated Hexahedral Mesh Generation by Virtual Decomposition" -, booktitle = "Proc. 4th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "Albuquerque, NM" -, year = 1995 -, pages = "165--177" -, update = "96.01 samitchell" +, author = "David White and Lai Mingwu and Steven E. Benzley and Gregory D. Sjaardema" +, title = "Automated Hexahedral Mesh Generation by Virtual Decomposition" +, booktitle = "Proc. 4th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "Albuquerque, NM" +, year = 1995 +, pages = "165--177" +, update = "96.01 samitchell" } @inproceedings{wj-siwst-96 -, author = "D. A. White and R. Jain" -, title = "Similarity indexing with the {SS}-tree" -, booktitle = "Proc. 12th IEEE Internat. Conf. Data Eng." -, year = 1996 -, pages = "516--523" -, update = "97.07 agarwal" +, author = "D. A. White and R. Jain" +, title = "Similarity indexing with the {SS}-tree" +, booktitle = "Proc. 12th IEEE Internat. Conf. Data Eng." +, year = 1996 +, pages = "516--523" +, update = "97.07 agarwal" } @techreport{wj-assr-96 -, author = "D. A. White and S. Zdonik" -, title = "Algorithms and strategies for similarity retrieval" -, type = "Technical {Report}" -, number = "VCL-96-1101" -, institution = "Univ. California Davis" -, address = "Davis, CA" -, year = 1996 -, update = "98.07 bibrelex" +, author = "D. A. White and S. Zdonik" +, title = "Algorithms and strategies for similarity retrieval" +, type = "Technical {Report}" +, number = "VCL-96-1101" +, institution = "Univ. California Davis" +, address = "Davis, CA" +, year = 1996 +, update = "98.07 bibrelex" } @article{w-algau-85 -, author = "E. R. White" -, title = "Assessment of line-generalization algorithms using characteristic points" -, journal = "Amer. Cartogr." -, volume = 12 -, number = 1 -, year = 1985 -, pages = "17--27" -, update = "98.03 bibrelex" +, author = "E. R. White" +, title = "Assessment of line-generalization algorithms using characteristic points" +, journal = "Amer. Cartogr." +, volume = 12 +, number = 1 +, year = 1985 +, pages = "17--27" +, update = "98.03 bibrelex" } @techreport{w-ntloi-82 -, author = "M. White" -, title = "{N}-trees: {L}arge ordered indexes for multidimensional space" -, type = "Tech.\ Report" -, institution = "US Bureau of the Census, Statistical Research Division" -, address = "Washington, DC" -, year = 1982 -, update = "97.07 agarwal" +, author = "M. White" +, title = "{N}-trees: {L}arge ordered indexes for multidimensional space" +, type = "Tech.\ Report" +, institution = "US Bureau of the Census, Statistical Research Division" +, address = "Washington, DC" +, year = 1982 +, update = "97.07 agarwal" } @inproceedings{w-tachm-83 -, author = "M. S. White" -, title = "Tribulations of Automated Carthography and How Mathematics Helps" -, booktitle = "Proc. 6th International Symposium on Automated Carthography" -, site = "Ottawa" -, year = 1983 -, pages = "408--418" -, update = "98.03 bibrelex" +, author = "M. S. White" +, title = "Tribulations of Automated Carthography and How Mathematics Helps" +, booktitle = "Proc. 6th International Symposium on Automated Carthography" +, site = "Ottawa" +, year = 1983 +, pages = "408--418" +, update = "98.03 bibrelex" } @article{wg-plrsm-85 -, author = "M. S. White and P. Griffin" -, title = "Piecewise Linear Rubber-Sheet Map Transformation" -, journal = "Amer. Cartogr." -, volume = 12 -, number = 2 -, year = 1985 -, pages = "123--131" -, update = "98.03 bibrelex" +, author = "M. S. White and P. Griffin" +, title = "Piecewise Linear Rubber-Sheet Map Transformation" +, journal = "Amer. Cartogr." +, volume = 12 +, number = 2 +, year = 1985 +, pages = "123--131" +, update = "98.03 bibrelex" } @unpublished{w-cgpsl-87 -, author = "N. White" -, title = "Comments on {Goodman}'s problem on skew lines" -, year = 1987 -, note = "Unpublished Note" -, update = "98.03 bibrelex" +, author = "N. White" +, title = "Comments on {Goodman}'s problem on skew lines" +, year = 1987 +, note = "Unpublished Note" +, update = "98.03 bibrelex" } @article{ww-agmf-84 -, author = "N. White and W. Whiteley" -, title = "the algebraic geometry of motions of frameworks" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = "??" -, year = 1984 -, note = "to appear (preprint 1984)" -, update = "97.11 bibrelex" +, author = "N. White and W. Whiteley" +, title = "the algebraic geometry of motions of frameworks" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = "??" +, year = 1984 +, note = "to appear (preprint 1984)" +, update = "97.11 bibrelex" } @article{w-nmwvi-89 -, author = "N. L. White" -, title = "A nonuniform matroid which violates the isotopy conjecture" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "1--2" +, author = "N. L. White" +, title = "A nonuniform matroid which violates the isotopy conjecture" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "1--2" } @incollection{w-gagca-97 -, author = "N. L. White" -, title = "Geometric applications of the {Grassmann-Cayley} algebra" -, chapter = 48 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "881--892" -, update = "97.11 orourke" +, author = "N. L. White" +, title = "Geometric applications of the {Grassmann-Cayley} algebra" +, chapter = 48 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "881--892" +, update = "97.11 orourke" } @article{w-ms- -, author = "W. Whiteley" -, title = "A matrix for splines" -, journal = "J. Approx. Theory" -, volume = "??" -, year = "??" -, note = "To appear" -, update = "98.07 bibrelex" +, author = "W. Whiteley" +, title = "A matrix for splines" +, journal = "J. Approx. Theory" +, volume = "??" +, year = "??" +, note = "To appear" +, update = "98.07 bibrelex" } @article{w-mhasa-89 -, author = "W. Whiteley" -, title = "A matroid on hypergraphs, with applications in scene analysis and geometry" -, journal = "Discrete Comput. Geom." -, volume = 4 -, year = 1989 -, pages = "75--95" -, succeeds = "w-tapp-86" -, update = "93.09 milone+mitchell" +, author = "W. Whiteley" +, title = "A matroid on hypergraphs, with applications in scene analysis and geometry" +, journal = "Discrete Comput. Geom." +, volume = 4 +, year = 1989 +, pages = "75--95" +, succeeds = "w-tapp-86" +, update = "93.09 milone+mitchell" } @inproceedings{w-gbs-90 -, author = "W. Whiteley" -, title = "Geometry of bivariate splines" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "351--353" -, cites = "a-csmpp-87, b-htssg-88, c-mss-88, s-mild-86, w-tapp-86, w-ms-, w-mrs-, w-mhasa-89, w-cbs-90, w-gbcs-90, ZZZ" -, update = "98.07 bibrelex" +, author = "W. Whiteley" +, title = "Geometry of bivariate splines" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "351--353" +, cites = "a-csmpp-87, b-htssg-88, c-mss-88, s-mild-86, w-tapp-86, w-ms-, w-mrs-, w-mhasa-89, w-cbs-90, w-gbcs-90, ZZZ" +, update = "98.07 bibrelex" } @incollection{w-mrs- -, author = "W. Whiteley" -, title = "Matroids and rigid structures" -, editor = "N. White" -, booktitle = "Applications of Matroid Theory" -, publisher = "Cambridge University Press" -, year = "??" -, note = "To appear" -, update = "98.07 bibrelex" +, author = "W. Whiteley" +, title = "Matroids and rigid structures" +, editor = "N. White" +, booktitle = "Applications of Matroid Theory" +, publisher = "Cambridge University Press" +, year = "??" +, note = "To appear" +, update = "98.07 bibrelex" } @article{w-rp-79 -, author = "W. Whiteley" -, title = "Realizability of Polyhedra" -, journal = "Structural Topology" -, volume = 1 -, year = 1979 -, pages = "46--58" -, update = "97.11 bibrelex" +, author = "W. Whiteley" +, title = "Realizability of Polyhedra" +, journal = "Structural Topology" +, volume = 1 +, year = 1979 +, pages = "46--58" +, update = "97.11 bibrelex" } @incollection{w-rsa-97 -, author = "W. Whiteley" -, title = "Rigidity and scene analysis" -, chapter = 49 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "893--916" -, update = "97.11 orourke" +, author = "W. Whiteley" +, title = "Rigidity and scene analysis" +, chapter = 49 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "893--916" +, update = "97.11 orourke" } @techreport{w-cbs-90 -, author = "W. Whiteley" -, title = "The combinatorics of bivariate splines" -, type = "Preprint" -, institution = "Champlain Regional College" -, address = "St. Lambert, Quebec" -, month = jan -, year = 1990 -, update = "98.07 bibrelex" +, author = "W. Whiteley" +, title = "The combinatorics of bivariate splines" +, type = "Preprint" +, institution = "Champlain Regional College" +, address = "St. Lambert, Quebec" +, month = jan +, year = 1990 +, update = "98.07 bibrelex" } @techreport{w-gbcs-90 -, author = "W. Whiteley" -, title = "The geometry of bivariate {${C^{1}}_{2}$}-splines" -, type = "Preprint" -, institution = "Champlain Regional College" -, address = "St. Lambert, Quebec" -, year = 1990 -, update = "98.07 bibrelex" +, author = "W. Whiteley" +, title = "The geometry of bivariate {${C^{1}}_{2}$}-splines" +, type = "Preprint" +, institution = "Champlain Regional College" +, address = "St. Lambert, Quebec" +, year = 1990 +, update = "98.07 bibrelex" } @incollection{w-pgrf-85 -, author = "W. Whiteley" -, title = "The projective geometry of rigid frameworks" -, editor = "C. A. Baker and L. M. Batten" -, booktitle = "Finite Geometries" -, series = "Lecture Notes in Pure and Applied Mathematics" -, volume = 103 -, publisher = "Marcel Dekker" -, address = "New York, NY" -, year = 1985 -, pages = "353--375" +, author = "W. Whiteley" +, title = "The projective geometry of rigid frameworks" +, editor = "C. A. Baker and L. M. Batten" +, booktitle = "Finite Geometries" +, series = "Lecture Notes in Pure and Applied Mathematics" +, volume = 103 +, publisher = "Marcel Dekker" +, address = "New York, NY" +, year = 1985 +, pages = "353--375" } @inproceedings{w-tapp-86 -, author = "W. Whiteley" -, title = "Two algorithms for polyhedral pictures" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "142--149" -, precedes = "w-mhasa-89, cw-pspp-86" -, cites = "ab-gdt-86, ab-rdt-85, abcw-cpdts-88, cw-pspp-86, c-gs-90, es-vda-86, h-ions-71, h-dcaps-77, i-csldp-85, k-tow-80, m-ipps-73, m-orfdf-64, s-acaal-84, s-mild-86, w-mhasa-89, ww-agmf-84, w-mspp-82, ZZZ" -, update = "97.11 bibrelex, 93.09 ne+mitchell" +, author = "W. Whiteley" +, title = "Two algorithms for polyhedral pictures" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "142--149" +, precedes = "w-mhasa-89, cw-pspp-86" +, cites = "ab-gdt-86, ab-rdt-85, abcw-cpdts-88, cw-pspp-86, c-gs-90, es-vda-86, h-ions-71, h-dcaps-77, i-csldp-85, k-tow-80, m-ipps-73, m-orfdf-64, s-acaal-84, s-mild-86, w-mhasa-89, ww-agmf-84, w-mspp-82, ZZZ" +, update = "97.11 bibrelex, 93.09 ne+mitchell" } @article{w-aigpl-92 -, author = "S. Whitesides" -, title = "Algorithmic issues in the geometry of planar linkage movement" -, journal = "Australian Comput. J." -, volume = "??" -, month = may -, year = 1992 -, pages = "42--50" -, note = "Special Issue on Algorithms" -, update = "98.11 bibrelex" +, author = "S. Whitesides" +, title = "Algorithmic issues in the geometry of planar linkage movement" +, journal = "Australian Comput. J." +, volume = "??" +, month = may +, year = 1992 +, pages = "42--50" +, note = "Special Issue on Algorithms" +, update = "98.11 bibrelex" } @techreport{we-mbsbg-90 -, author = "S. Whitesides and P. Eades" -, title = "Maximal Biplanar Subgraphs of Bipartite Graphs" -, type = "Technical {Report}" -, number = "SOCS 90.24" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "S. Whitesides and P. Eades" +, title = "Maximal Biplanar Subgraphs of Bipartite Graphs" +, type = "Technical {Report}" +, number = "SOCS 90.24" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, update = "93.09 milone+mitchell" } @techreport{wz-kacjc-90 -, author = "S. Whitesides and R. Zhao" -, title = "$K$-Admissible Collections of {Jordan} Curves and Offsets of Circular Arc Figures" -, type = "Technical {Report}" -, number = "SOCS 90.08" -, institution = "McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, update = "93.09 milone+mitchell" +, author = "S. Whitesides and R. Zhao" +, title = "$K$-Admissible Collections of {Jordan} Curves and Offsets of Circular Arc Figures" +, type = "Technical {Report}" +, number = "SOCS 90.08" +, institution = "McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, update = "93.09 milone+mitchell" } @inproceedings{wz-pet-89 -, author = "S. Whitesides and R. Zhao" -, title = "On the placement of {Euclidean} trees" -, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." -, year = 1989 -, pages = 28 +, author = "S. Whitesides and R. Zhao" +, title = "On the placement of {Euclidean} trees" +, booktitle = "Abstracts 1st Canad. Conf. Comput. Geom." +, year = 1989 +, pages = 28 } @inproceedings{wz-ocaf-90 -, author = "S. Whitesides and R. Y. Zhao" -, title = "Offsets of circular arc figures" -, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." -, year = 1990 -, pages = "362--365" -, cites = "bo-arcgi-79, eghppsss-ajati-89, f-eopss-85, klps-ujrcf-86, oww-fabmo-85, rr-oosm-86, sh-gip-76, spd-ogm-88, s-cgcw-86, z-pet-90, ZZZ" -, update = "98.07 bibrelex" +, author = "S. Whitesides and R. Y. Zhao" +, title = "Offsets of circular arc figures" +, booktitle = "Proc. 2nd Canad. Conf. Comput. Geom." +, year = 1990 +, pages = "362--365" +, cites = "bo-arcgi-79, eghppsss-ajati-89, f-eopss-85, klps-ujrcf-86, oww-fabmo-85, rr-oosm-86, sh-gip-76, spd-ogm-88, s-cgcw-86, z-pet-90, ZZZ" +, update = "98.07 bibrelex" } @incollection{w-cgmp-85 -, author = "S. H. Whitesides" -, title = "Computational geometry and motion planning" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "377--427" +, author = "S. H. Whitesides" +, title = "Computational geometry and motion planning" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "377--427" } % ### verify, published in 1998 ?? @proceedings{w-gd-98 -, title = "Graph Drawing (Proc. GD '98)" -, editor = "Sue H. Whitesides" -, series = "Lecture Notes Comput. Sci." -, volume = 1547 -, publisher = "Springer-Verlag" -, year = 1998 -, keywords = "graph drawing, collection" -, update = "99.07 vismara, 99.03 patrignani+vismari" +, title = "Graph Drawing (Proc. GD '98)" +, editor = "Sue H. Whitesides" +, series = "Lecture Notes Comput. Sci." +, volume = 1547 +, publisher = "Springer-Verlag" +, year = 1998 +, keywords = "graph drawing, collection" +, update = "99.07 vismara, 99.03 patrignani+vismari" } @inproceedings{w-pgr-95 -, author = "S. H. Whitesides" -, title = "Poster Gallery Report" -, editor = "R. Tamassia and I. G. Tollis" -, booktitle = "Graph Drawing (Proc. GD '94)" -, series = "Lecture Notes Comput. Sci." -, volume = 894 -, publisher = "Springer-Verlag" -, year = 1995 -, pages = "461--469" -, keywords = "graph drawing, poster, system" -, update = "95.01 tamassia" +, author = "S. H. Whitesides" +, title = "Poster Gallery Report" +, editor = "R. Tamassia and I. G. Tollis" +, booktitle = "Graph Drawing (Proc. GD '94)" +, series = "Lecture Notes Comput. Sci." +, volume = 894 +, publisher = "Springer-Verlag" +, year = 1995 +, pages = "461--469" +, keywords = "graph drawing, poster, system" +, update = "95.01 tamassia" } @article{w-ffcmf-77 -, author = "D. Whitney" -, title = "Force feedback control of manipulator fine motions" -, journal = "Journal of Dynamic Systems, Measurment and Control" -, volume = "??" -, month = jun -, year = 1977 -, pages = "91--97" -, update = "98.03 bibrelex" +, author = "D. Whitney" +, title = "Force feedback control of manipulator fine motions" +, journal = "Journal of Dynamic Systems, Measurment and Control" +, volume = "??" +, month = jun +, year = 1977 +, pages = "91--97" +, update = "98.03 bibrelex" } @article{w-tg-31 -, author = "H. Whitney" -, title = "A heorem on graphs" -, journal = "Annu. Math." -, volume = 32 -, year = 1931 -, pages = "378--390" -, update = "98.11 bibrelex" +, author = "H. Whitney" +, title = "A heorem on graphs" +, journal = "Annu. Math." +, volume = 32 +, year = 1931 +, pages = "378--390" +, update = "98.11 bibrelex" } @article{w-aedfd-34 -, author = "H. Whitney" -, title = "Analytic extensions of differentiable functions defined in closed sets" -, journal = "Trans. Amer. Math. Soc." -, volume = 36 -, year = 1934 -, pages = "63--89" -, update = "98.07 bibrelex" +, author = "H. Whitney" +, title = "Analytic extensions of differentiable functions defined in closed sets" +, journal = "Trans. Amer. Math. Soc." +, volume = 36 +, year = 1934 +, pages = "63--89" +, update = "98.07 bibrelex" } @article{w-esrav-57 -, author = "H. Whitney" -, title = "Elementary structure of real algebraic varieties" -, journal = "Ann. Math." -, volume = 66 -, number = 3 -, year = 1975 -, update = "98.03 bibrelex" +, author = "H. Whitney" +, title = "Elementary structure of real algebraic varieties" +, journal = "Ann. Math." +, volume = 66 +, number = 3 +, year = 1975 +, update = "98.03 bibrelex" } @article{w-rccp-37 -, author = "H. Whitney" -, title = "On regular closed curves in the plane" -, journal = "Compos. Math." -, volume = 4 -, year = 1937 -, pages = "276--284" -, update = "98.03 bibrelex" +, author = "H. Whitney" +, title = "On regular closed curves in the plane" +, journal = "Compos. Math." +, volume = 4 +, year = 1937 +, pages = "276--284" +, update = "98.03 bibrelex" } @article{w-mspp-82 -, author = "W. Whitney" -, title = "Motions and Stresses of Projected Polyhedra" -, journal = "Structural Topology" -, volume = 7 -, year = 1982 -, pages = "13--38" -, keywords = "graph drawing, convex, straight-line" -, update = "96.09 tamassia" +, author = "W. Whitney" +, title = "Motions and Stresses of Projected Polyhedra" +, journal = "Structural Topology" +, volume = 7 +, year = 1982 +, pages = "13--38" +, keywords = "graph drawing, convex, straight-line" +, update = "96.09 tamassia" } @article{w-mcp-66 -, author = "J. V. Whittaker" -, title = "A mountain-climbing problem" -, journal = "Canad. J. Math." -, volume = 18 -, year = 1966 -, pages = "873--882" +, author = "J. V. Whittaker" +, title = "A mountain-climbing problem" +, journal = "Canad. J. Math." +, volume = 18 +, year = 1966 +, pages = "873--882" } @article{w-iimsd-80 -, author = "T. Whitted" -, title = "An Improved Illumination Model for Shaded Display" -, journal = "Commun. ACM" -, volume = 23 -, number = 6 -, month = jun -, year = 1980 -, pages = "343--349" -, update = "97.11 bibrelex" +, author = "T. Whitted" +, title = "An Improved Illumination Model for Shaded Display" +, journal = "Commun. ACM" +, volume = 23 +, number = 6 +, month = jun +, year = 1980 +, pages = "343--349" +, update = "97.11 bibrelex" } @book{w-at-42 -, author = "G. T. Whyburn" -, title = "Analytic Topology" -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1942 -, update = "97.11 bibrelex" +, author = "G. T. Whyburn" +, title = "Analytic Topology" +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1942 +, update = "97.11 bibrelex" } @techreport{w-etfes-86 -, author = "A. B. Widlund" -, title = "An extension theorem for finite element spaces with three applications" -, type = "Report" -, number = 233 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, year = 1986 +, author = "A. B. Widlund" +, title = "An extension theorem for finite element spaces with three applications" +, type = "Report" +, number = 233 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, year = 1986 } @techreport{w-imepr-84 -, author = "A. B. Widlund" -, title = "Iterative methods for elliptic problems on regions partitioned into substructures and the biharmonic {Dirichlet} problem" -, type = "Report" -, number = 101 -, institution = "Dept. Comput. Sci., New York Univ." -, address = "New York, NY" -, year = 1984 +, author = "A. B. Widlund" +, title = "Iterative methods for elliptic problems on regions partitioned into substructures and the biharmonic {Dirichlet} problem" +, type = "Report" +, number = 101 +, institution = "Dept. Comput. Sci., New York Univ." +, address = "New York, NY" +, year = 1984 } @phdthesis{w-cccgv-83 -, author = "P. Widmayer" -, title = "Computational complexity in computer graphics and {VLSI} design" -, type = "Ph.{D}. Thesis" -, school = "Univ. Fridericiana Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1983 -, keywords = "doctoral thesis" +, author = "P. Widmayer" +, title = "Computational complexity in computer graphics and {VLSI} design" +, type = "Ph.{D}. Thesis" +, school = "Univ. Fridericiana Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1983 +, keywords = "doctoral thesis" } @inproceedings{w-gdsfs-92 -, author = "Peter Widmayer" -, title = "Guard Data Structures for Fat Spatial Objects" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = 89 -, update = "00.03 bibrelex" +, author = "Peter Widmayer" +, title = "Guard Data Structures for Fat Spatial Objects" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = 89 +, update = "00.03 bibrelex" } @techreport{w-ndiv-89 -, author = "P. Widmayer" -, title = "Network Design Issues in {VLSI}" -, institution = "Institut {f\"ur} Informatik, University Freiburg" -, address = "{Rheinstrasse} 10-12, 7800, Freiburg, West Germany" -, year = 1989 +, author = "P. Widmayer" +, title = "Network Design Issues in {VLSI}" +, institution = "Institut {f\"ur} Informatik, University Freiburg" +, address = "{Rheinstrasse} 10-12, 7800, Freiburg, West Germany" +, year = 1989 } @techreport{ww-tsoab-86 -, author = "P. Widmayer and D. Wood" -, title = "A time and space optimal algorithm for boolean mask operations for orthogonal polygons" -, type = "Report" -, number = 161 -, institution = "Universit{\"a}t Karlsruhe" -, address = "Karlsruhe, West Germany" -, year = 1986 -, update = "98.03 bibrelex" +, author = "P. Widmayer and D. Wood" +, title = "A time and space optimal algorithm for boolean mask operations for orthogonal polygons" +, type = "Report" +, number = 161 +, institution = "Universit{\"a}t Karlsruhe" +, address = "Karlsruhe, West Germany" +, year = 1986 +, update = "98.03 bibrelex" } @article{ww-tsoab-88 -, author = "P. Widmayer and D. Wood" -, title = "A time- and space-optimal algorithm for {Boolean} masking operations" -, journal = "Comput. Vision Graph. Image Process." -, volume = 41 -, year = 1988 -, pages = "14--27" +, author = "P. Widmayer and D. Wood" +, title = "A time- and space-optimal algorithm for {Boolean} masking operations" +, journal = "Comput. Vision Graph. Image Process." +, volume = 41 +, year = 1988 +, pages = "14--27" } @article{ww-tsocc-87 -, author = "P. Widmayer and D. Wood" -, title = "Time- and space-optimal contour computation for a set of rectangles" -, journal = "Inform. Process. Lett." -, volume = 24 -, year = 1987 -, pages = "335--338" -, keywords = "complexity theory, design of algorithms, combinatorial geometry" +, author = "P. Widmayer and D. Wood" +, title = "Time- and space-optimal contour computation for a set of rectangles" +, journal = "Inform. Process. Lett." +, volume = 24 +, year = 1987 +, pages = "335--338" +, keywords = "complexity theory, design of algorithms, combinatorial geometry" } @article{wwsw-suipp-86 -, author = "P. Widmayer and Y. F. Wu and M. D. F. Schlag and C. K. Wong" -, title = "On some union and intersection problems for polygons with fixed orientation" -, journal = "Computing" -, volume = 36 -, year = 1986 -, pages = "183--197" -, update = "98.07 bibrelex" +, author = "P. Widmayer and Y. F. Wu and M. D. F. Schlag and C. K. Wong" +, title = "On some union and intersection problems for polygons with fixed orientation" +, journal = "Computing" +, volume = 36 +, year = 1986 +, pages = "183--197" +, update = "98.07 bibrelex" } @inproceedings{www-dpcgf-85 -, author = "P. Widmayer and Y. F. Wu and C. K. Wong" -, title = "Distance problems in computational geometry with fixed orientations" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "186--195" -, precedes = "www-sdpfo-87" -, cites = "bt-eacmd-83, ct-fmst-76, cw-oaimd-83, cw-mvdbs-84, e-ipcg-82, e-cedbt-82, gbt-srtgp-84, g-cceac-83, ht-fafnc-84, h-oarms-79, k-osps-83, l-tdvdl-80, lp-cgs-84, lw-vdllm-80, mt-fmvdb-83, nllw-xchsx-83, osw-dcrch-83, s-fmdbt-81, sh-cpp-75, t-oacmv-84a, tb-oacmd-83, tm-soafm-82, v-ulds-80, ZZZ" -, update = "97.11 bibrelex, 93.05 jones" +, author = "P. Widmayer and Y. F. Wu and C. K. Wong" +, title = "Distance problems in computational geometry with fixed orientations" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "186--195" +, precedes = "www-sdpfo-87" +, cites = "bt-eacmd-83, ct-fmst-76, cw-oaimd-83, cw-mvdbs-84, e-ipcg-82, e-cedbt-82, gbt-srtgp-84, g-cceac-83, ht-fafnc-84, h-oarms-79, k-osps-83, l-tdvdl-80, lp-cgs-84, lw-vdllm-80, mt-fmvdb-83, nllw-xchsx-83, osw-dcrch-83, s-fmdbt-81, sh-cpp-75, t-oacmv-84a, tb-oacmd-83, tm-soafm-82, v-ulds-80, ZZZ" +, update = "97.11 bibrelex, 93.05 jones" } @article{www-sdpfo-87 -, author = "P. Widmayer and Y. F. Wu and C. K. Wong" -, title = "On some distance problems in fixed orientations" -, journal = "SIAM J. Comput." -, volume = 16 -, year = 1987 -, pages = "728--746" -, succeeds = "www-dpcgf-85" -, annote = "VD for metric where paths are limited to a fixed - number of orientations" +, author = "P. Widmayer and Y. F. Wu and C. K. Wong" +, title = "On some distance problems in fixed orientations" +, journal = "SIAM J. Comput." +, volume = 16 +, year = 1987 +, pages = "728--746" +, succeeds = "www-dpcgf-85" +, annote = "VD for metric where paths are limited to a fixed + number of orientations" } @inproceedings{wgpb-cadpf-96 -, author = "J. Wiegley and K. Goldberg and M. Peshkin and M. Brokowski" -, title = "A complete algorithm for designing passive fences to orient parts" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, site = "Minneapolis, MN" -, year = 1996 -, pages = "1133--1139" -, update = "98.07 bibrelex" +, author = "J. Wiegley and K. Goldberg and M. Peshkin and M. Brokowski" +, title = "A complete algorithm for designing passive fences to orient parts" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, site = "Minneapolis, MN" +, year = 1996 +, pages = "1133--1139" +, update = "98.07 bibrelex" } @inproceedings{wrg-csdsp-92 -, author = "J. Wiegley and A. Rao and K. Goldberg" -, title = "Computing a statistical distribution of stable poses for a polyhedron" -, booktitle = "Proc. 30th Allerton Conf. Commun. Control Comput." -, site = "Urbana-Champaign, IL" -, year = 1992 -, update = "98.07 bibrelex" +, author = "J. Wiegley and A. Rao and K. Goldberg" +, title = "Computing a statistical distribution of stable poses for a polyhedron" +, booktitle = "Proc. 30th Allerton Conf. Commun. Control Comput." +, site = "Urbana-Champaign, IL" +, year = 1992 +, update = "98.07 bibrelex" } @book{w-fpg-64 -, author = "Wielandt" -, title = "Finite Permutation Groups" -, publisher = "Academic Press" -, year = 1964 -, update = "97.11 bibrelex" +, author = "Wielandt" +, title = "Finite Permutation Groups" +, publisher = "Academic Press" +, year = 1964 +, update = "97.11 bibrelex" } @inproceedings{w-mcrgt-90 -, author = "C. Wieners-Lummer" -, title = "Manhattan channel routing with good theoretical and practical performance" -, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" -, year = 1990 -, pages = "465--474" +, author = "C. Wieners-Lummer" +, title = "Manhattan channel routing with good theoretical and practical performance" +, booktitle = "Proc. 1st ACM-SIAM Sympos. Discrete Algorithms" +, year = 1990 +, pages = "465--474" } @inproceedings{ws-prnds-86 -, author = "A. Wiernik and Micha Sharir" -, title = "Planar realization of nonlinear {Davenport}-{Schinzel} sequences by segments" -, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1986 -, pages = "97--106" -, precedes = "ws-prnds-88" -, update = "98.03 mitchell" +, author = "A. Wiernik and Micha Sharir" +, title = "Planar realization of nonlinear {Davenport}-{Schinzel} sequences by segments" +, booktitle = "Proc. 27th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1986 +, pages = "97--106" +, precedes = "ws-prnds-88" +, update = "98.03 mitchell" } @article{ws-prnds-88 -, author = "A. Wiernik and Micha Sharir" -, title = "Planar Realizations of Nonlinear {Davenport}-{Schinzel} Sequences by Segments" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "15--47" -, keywords = "Davenport-Schinzel sequences, line segments, lower bounds" -, succeeds = "ws-prnds-86" -, update = "98.03 mitchell, 93.09 milone+mitchell" +, author = "A. Wiernik and Micha Sharir" +, title = "Planar Realizations of Nonlinear {Davenport}-{Schinzel} Sequences by Segments" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "15--47" +, keywords = "Davenport-Schinzel sequences, line segments, lower bounds" +, succeeds = "ws-prnds-86" +, update = "98.03 mitchell, 93.09 milone+mitchell" } @article{wl-avpss-84 -, author = "H. A. G. Wijshoff and J. van Leeuwen" -, title = "Arbitrary versus Periodic Storage Schemes and Tessellations of the Plane Using One Type of Polyomino" -, journal = "Inform. Control" -, volume = 62 -, year = 1984 -, pages = "1--25" -, update = "97.11 bibrelex" +, author = "H. A. G. Wijshoff and J. van Leeuwen" +, title = "Arbitrary versus Periodic Storage Schemes and Tessellations of the Plane Using One Type of Polyomino" +, journal = "Inform. Control" +, volume = 62 +, year = 1984 +, pages = "1--25" +, update = "97.11 bibrelex" } @techreport{wl-pvatp-82 -, author = "H. A. G. Wijshoff and J. van Leeuwen" -, title = "Periodic versus arbitrary Tessellations of the plane using polyominos of a single type" -, type = "Report" -, number = "RUU-CS-82-11" -, institution = "Dept. Comput. Sci., Utrecht Univ." -, address = "Utrecht, Netherlands" -, year = 1982 -, update = "94.05 schwarzkopf" +, author = "H. A. G. Wijshoff and J. van Leeuwen" +, title = "Periodic versus arbitrary Tessellations of the plane using polyominos of a single type" +, type = "Report" +, number = "RUU-CS-82-11" +, institution = "Dept. Comput. Sci., Utrecht Univ." +, address = "Utrecht, Netherlands" +, year = 1982 +, update = "94.05 schwarzkopf" } @inproceedings{w-mpav-88 -, author = "G. Wilfong" -, title = "Motion Planning for an Autonomous Vehicle" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1988 -, pages = "529--533" +, author = "G. Wilfong" +, title = "Motion Planning for an Autonomous Vehicle" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1988 +, pages = "529--533" } @inproceedings{w-mppmo-88 -, author = "G. Wilfong" -, title = "Motion planning in the presence of movable obstacles" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "279--288" -, cites = "a-usppe-87, afw-msm-87, c-namrm-87, fw-pcm-88, fwy-cmtra-86, gj-cigtn-79, hss-cmpmi-84, kz-tetpp-86, ks-eapcf-85, k-osps-83, lw-apcfp-79, ls-ppspm-87, o-mpic-87, oy-rmpmd-85, rs-mppmo-85, st-pplup-86, ss-pmp2g-83, s-a-83, y-amp-87, ZZZ" -, update = "98.03 bibrelex" +, author = "G. Wilfong" +, title = "Motion planning in the presence of movable obstacles" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "279--288" +, cites = "a-usppe-87, afw-msm-87, c-namrm-87, fw-pcm-88, fwy-cmtra-86, gj-cigtn-79, hss-cmpmi-84, kz-tetpp-86, ks-eapcf-85, k-osps-83, lw-apcfp-79, ls-ppspm-87, o-mpic-87, oy-rmpmd-85, rs-mppmo-85, st-pplup-86, ss-pmp2g-83, s-a-83, y-amp-87, ZZZ" +, update = "98.03 bibrelex" } @article{w-mppmo-91 -, author = "G. Wilfong" -, title = "Motion planning in the presence of movable obstacles" -, journal = "Ann. Math. Artif. Intell." -, volume = 3 -, year = 1991 -, pages = "131--150" -, update = "96.09 orourke" +, author = "G. Wilfong" +, title = "Motion planning in the presence of movable obstacles" +, journal = "Ann. Math. Artif. Intell." +, volume = 3 +, year = 1991 +, pages = "131--150" +, update = "96.09 orourke" } @inproceedings{w-nnp-91 -, author = "G. Wilfong" -, title = "Nearest neighbor problems" -, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." -, year = 1991 -, pages = "224--233" -, keywords = "proximity" -, precedes = "w-nnp-92" -, cites = "ce-iacko-85, c-papop-85, de-eaahc-84, ds-cgug-87, e-acg-87, h-cnnr-68, hd-kgde-60, mih-ccmcp-81, rwli-asnnd-75, ZZZ" -, update = "97.11 bibrelex, 96.09 devillers" +, author = "G. Wilfong" +, title = "Nearest neighbor problems" +, booktitle = "Proc. 7th Annu. ACM Sympos. Comput. Geom." +, year = 1991 +, pages = "224--233" +, keywords = "proximity" +, precedes = "w-nnp-92" +, cites = "ce-iacko-85, c-papop-85, de-eaahc-84, ds-cgug-87, e-acg-87, h-cnnr-68, hd-kgde-60, mih-ccmcp-81, rwli-asnnd-75, ZZZ" +, update = "97.11 bibrelex, 96.09 devillers" } @article{w-nnp-92 -, author = "G. Wilfong" -, title = "Nearest neighbor problems" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, year = 1992 -, pages = "283--416" -, keywords = "pattern recognition, NP complete" -, succeeds = "w-nnp-91" -, update = "96.09 devillers" +, author = "G. Wilfong" +, title = "Nearest neighbor problems" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, year = 1992 +, pages = "283--416" +, keywords = "pattern recognition, NP complete" +, succeeds = "w-nnp-91" +, update = "96.09 devillers" } @inproceedings{w-olacp-97 -, author = "G. Wilfong" -, title = "On-line Algorithms for Compressing Planar Curves" -, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" -, month = jan -, year = 1997 -, pages = "158--167" -, update = "97.03 held" +, author = "G. Wilfong" +, title = "On-line Algorithms for Compressing Planar Curves" +, booktitle = "Proc. 8th ACM-SIAM Sympos. Discrete Algorithms" +, month = jan +, year = 1997 +, pages = "158--167" +, update = "97.03 held" } @inproceedings{w-raamp-87 -, author = "G. Wilfong" -, title = "Recent advances in algorithmic motion planning" -, booktitle = "Proc. 1st Internat. Conf. Indust. Applied Math." -, site = "Paris, France" -, year = 1987 -, pages = "99--110" +, author = "G. Wilfong" +, title = "Recent advances in algorithmic motion planning" +, booktitle = "Proc. 1st Internat. Conf. Indust. Applied Math." +, site = "Paris, France" +, year = 1987 +, pages = "99--110" } @techreport{w-spav-88 -, author = "G. Wilfong" -, title = "Shortest Paths for Autonomous Vehicles" -, type = "Technical {Report}" -, institution = "AT\& T Bell Labs" -, year = 1988 -, precedes = "w-spav-89" -, update = "96.01 devillers" +, author = "G. Wilfong" +, title = "Shortest Paths for Autonomous Vehicles" +, type = "Technical {Report}" +, institution = "AT\& T Bell Labs" +, year = 1988 +, precedes = "w-spav-89" +, update = "96.01 devillers" } @inproceedings{w-spav-89 -, author = "G. Wilfong" -, title = "Shortest Paths for Autonomous Vehicles" -, booktitle = "Proc. 6th IEEE Internat. Conf. Robot. Autom." -, year = 1989 -, pages = "15--20" -, succeeds = "w-spav-88" -, update = "96.01 devillers" +, author = "G. Wilfong" +, title = "Shortest Paths for Autonomous Vehicles" +, booktitle = "Proc. 6th IEEE Internat. Conf. Robot. Autom." +, year = 1989 +, pages = "15--20" +, succeeds = "w-spav-88" +, update = "96.01 devillers" } @techreport{w-tlmcs-93 -, author = "G. Wilfong" -, title = "Two-label minimum consistent subsets" -, type = "Technical {Report}" -, institution = "AT\& T Bell Labs" -, year = 1993 -, update = "93.09 milone+mitchell" +, author = "G. Wilfong" +, title = "Two-label minimum consistent subsets" +, type = "Technical {Report}" +, institution = "AT\& T Bell Labs" +, year = 1993 +, update = "93.09 milone+mitchell" } @techreport{w-cpadv-90 -, author = "J. Wilhelms" -, title = "A Coherent Projection Appoach for Direct Volume Rendering" -, type = "Technical Report" -, number = "UCSC-CRL-90-38" -, institution = "Computer Research Laboratory, University of California" -, address = "Santa Cruz" -, month = aug -, year = 1990 -, update = "98.07 bibrelex" +, author = "J. Wilhelms" +, title = "A Coherent Projection Appoach for Direct Volume Rendering" +, type = "Technical Report" +, number = "UCSC-CRL-90-38" +, institution = "Computer Research Laboratory, University of California" +, address = "Santa Cruz" +, month = aug +, year = 1990 +, update = "98.07 bibrelex" } @article{wv-ofig-92 -, author = "J. Wilhelms and A. {Van Gelder}" -, title = "Octrees for faster isosurface generation" -, journal = "ACM Trans. Graph." -, volume = 11 -, year = 1992 -, pages = "201--227" -, update = "98.07 bibrelex" +, author = "J. Wilhelms and A. {Van Gelder}" +, title = "Octrees for faster isosurface generation" +, journal = "ACM Trans. Graph." +, volume = 11 +, year = 1992 +, pages = "201--227" +, update = "98.07 bibrelex" } @book{w-reap-63 -, author = "J. Wilkinson" -, title = "Rounding Errors in Algebraic Processes" -, publisher = "Prentice Hall" -, address = "Englewood Cliffs, NJ" -, year = 1963 -, update = "98.03 bibrelex" +, author = "J. Wilkinson" +, title = "Rounding Errors in Algebraic Processes" +, publisher = "Prentice Hall" +, address = "Englewood Cliffs, NJ" +, year = 1963 +, update = "98.03 bibrelex" } @book{w-aep-65 -, author = "J. H. Wilkinson" -, title = "The Algebraic Eigenvalue Problem" -, publisher = "Clarendon Press" -, address = "Oxford, UK" -, year = 1965 -, update = "98.03 bibrelex" +, author = "J. H. Wilkinson" +, title = "The Algebraic Eigenvalue Problem" +, publisher = "Clarendon Press" +, address = "Oxford, UK" +, year = 1965 +, update = "98.03 bibrelex" } @inproceedings{w-fecaw-98 -, author = "Hans-Martin Will" -, title = "Fast and Efficient Computation of Additively Weighted {Voronoi} Cells for Applications in Molecular Biology" -, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" -, nickname = "SWAT '98" -, site = "Stockholm" -, series = "Lecture Notes Comput. Sci." -, volume = 1432 -, publisher = "Springer-Verlag" -, year = 1998 -, pages = "310--321" -, update = "99.03 bibrelex, 98.07 mitchell" +, author = "Hans-Martin Will" +, title = "Fast and Efficient Computation of Additively Weighted {Voronoi} Cells for Applications in Molecular Biology" +, booktitle = "Proc. 6th Scand. Workshop Algorithm Theory" +, nickname = "SWAT '98" +, site = "Stockholm" +, series = "Lecture Notes Comput. Sci." +, volume = 1432 +, publisher = "Springer-Verlag" +, year = 1998 +, pages = "310--321" +, update = "99.03 bibrelex, 98.07 mitchell" } @article{w-lbaso-89 -, author = "D. Willard" -, title = "Lower bounds for the addition-subtraction operations in orthogonal range queries and related problems" -, journal = "Inform. Comput." -, volume = 82 -, year = 1989 -, pages = "45--64" -, update = "97.07 agarwal" +, author = "D. Willard" +, title = "Lower bounds for the addition-subtraction operations in orthogonal range queries and related problems" +, journal = "Inform. Comput." +, volume = 82 +, year = 1989 +, pages = "45--64" +, update = "97.07 agarwal" } @inproceedings{w-ntcor-82 -, author = "D. E. Willard" -, title = "A new time complexity for orthogonal range queries" -, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." -, year = 1982 -, pages = "462--471" +, author = "D. E. Willard" +, title = "A new time complexity for orthogonal range queries" +, booktitle = "Proc. 20th Allerton Conf. Commun. Control Comput." +, year = 1982 +, pages = "462--471" } @techreport{w-aprt-83 -, author = "D. E. Willard" -, title = "Abstract predicate retrieval theory" -, type = "Report" -, number = "83-3" -, institution = "Dept. Comput. Sci., State Univ. New York Albany" -, address = "Albany, NY" -, year = 1983 +, author = "D. E. Willard" +, title = "Abstract predicate retrieval theory" +, type = "Report" +, number = "83-3" +, institution = "Dept. Comput. Sci., State Univ. New York Albany" +, address = "Albany, NY" +, year = 1983 } @techreport{w-isbt-79 -, author = "D. E. Willard" -, title = "An introduction to super-$b$-trees" -, type = "Report" -, number = "79-01" -, institution = "Dept. Comput. Sci., Univ. Iowa" -, address = "Iowa City, IA" -, year = 1979 -, update = "97.11 bibrelex" +, author = "D. E. Willard" +, title = "An introduction to super-$b$-trees" +, type = "Report" +, number = "79-01" +, institution = "Dept. Comput. Sci., Univ. Iowa" +, address = "Iowa City, IA" +, year = 1979 +, update = "97.11 bibrelex" } @article{w-arqtr-96 -, author = "D. E. Willard" -, title = "Applications of range query theory to relational data base join and selection operations" -, journal = "J. Comput. Syst. Sci." -, volume = 52 -, year = 1996 -, pages = "157--169" -, update = "96.05 agarwal" +, author = "D. E. Willard" +, title = "Applications of range query theory to relational data base join and selection operations" +, journal = "J. Comput. Syst. Sci." +, volume = 52 +, year = 1996 +, pages = "157--169" +, update = "96.05 agarwal" } @inproceedings{w-aftmc-92 -, author = "D. E. Willard" -, title = "Applications of the fusion tree method to computational geometry and searching" -, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" -, year = 1992 -, pages = "286--295" -, update = "00.11 smid, 00.07 smid" +, author = "D. E. Willard" +, title = "Applications of the fusion tree method to computational geometry and searching" +, booktitle = "Proc. 3rd ACM-SIAM Sympos. Discrete Algorithms" +, year = 1992 +, pages = "286--295" +, update = "00.11 smid, 00.07 smid" } @techreport{w-ataba-86 -, author = "D. E. Willard" -, title = "Applied and theoretical algorithms based on the application of sheared retrieval to orthogonal range queries" -, institution = "SUNY Albany" -, year = 1986 -, update = "97.11 bibrelex" +, author = "D. E. Willard" +, title = "Applied and theoretical algorithms based on the application of sheared retrieval to orthogonal range queries" +, institution = "SUNY Albany" +, year = 1986 +, update = "97.11 bibrelex" } @techreport{w-bfkdt-78 -, author = "D. E. Willard" -, title = "Balanced forests of $k$-d* trees as a dynamic data structure" -, type = "Report" -, number = "TR-23-78" -, institution = "Aiken Comput. Lab., Harvard Univ." -, address = "Cambridge, MA" -, year = 1978 +, author = "D. E. Willard" +, title = "Balanced forests of $k$-d* trees as a dynamic data structure" +, type = "Report" +, number = "TR-23-78" +, institution = "Aiken Comput. Lab., Harvard Univ." +, address = "Cambridge, MA" +, year = 1978 } @inproceedings{w-eprce-84 -, author = "D. E. Willard" -, title = "Efficient processing of relational calculus expressions using range query theory" -, booktitle = "Proceedings of ACM SIGMOD Conference" -, year = 1984 -, pages = "160--172" -, update = "97.11 bibrelex" +, author = "D. E. Willard" +, title = "Efficient processing of relational calculus expressions using range query theory" +, booktitle = "Proceedings of ACM SIGMOD Conference" +, year = 1984 +, pages = "160--172" +, update = "97.11 bibrelex" } @article{w-ecgve-00 -, author = "D. E. Willard" -, title = "Examining computational geometry, {Van Emde Boas} trees, and hashing from the perspective of the fusion tree" -, journal = "SIAM J. Comput." -, volume = 29 -, year = 2000 -, pages = "1030--1049" -, update = "00.11 smid, 00.07 smid" +, author = "D. E. Willard" +, title = "Examining computational geometry, {Van Emde Boas} trees, and hashing from the perspective of the fusion tree" +, journal = "SIAM J. Comput." +, volume = 29 +, year = 2000 +, pages = "1030--1049" +, update = "00.11 smid, 00.07 smid" } @techreport{w-kdtde-80 -, author = "D. E. Willard" -, title = "{$K$}-d trees in a dynamic environment" -, type = "Report" -, number = "80-01" -, institution = "Dept. Comput. Sci., Univ. Iowa" -, address = "Iowa City, IA" -, year = 1980 +, author = "D. E. Willard" +, title = "{$K$}-d trees in a dynamic environment" +, type = "Report" +, number = "80-01" +, institution = "Dept. Comput. Sci., Univ. Iowa" +, address = "Iowa City, IA" +, year = 1980 } @article{w-llwcr-83 -, author = "D. E. Willard" -, title = "Log-logarithmic worst case range queries are possible in space {$O(n)$}" -, journal = "Inform. Process. Lett." -, volume = 17 -, year = 1983 -, pages = "81--89" +, author = "D. E. Willard" +, title = "Log-logarithmic worst case range queries are possible in space {$O(n)$}" +, journal = "Inform. Process. Lett." +, volume = 17 +, year = 1983 +, pages = "81--89" } @inproceedings{w-lbdrq-86 -, author = "D. E. Willard" -, title = "Lower bounds for dynamic range query problems that permit subtraction" -, booktitle = "Proc. 13th Internat. Coll. on Autom., Langu. and Program." -, year = 1986 -, update = "98.03 bibrelex" +, author = "D. E. Willard" +, title = "Lower bounds for dynamic range query problems that permit subtraction" +, booktitle = "Proc. 13th Internat. Coll. on Autom., Langu. and Program." +, year = 1986 +, update = "98.03 bibrelex" } @techreport{w-lasoo-85 -, author = "D. E. Willard" -, title = "Lower bounds for the addition-subtraction operations in orthogonal range queries" -, institution = "SUNY Albany" -, year = 1985 -, update = "97.11 bibrelex" +, author = "D. E. Willard" +, title = "Lower bounds for the addition-subtraction operations in orthogonal range queries" +, institution = "SUNY Albany" +, year = 1985 +, update = "97.11 bibrelex" } @article{w-mstpt-87 -, author = "D. E. Willard" -, title = "Multidimensional Search Trees That Provide New Type of Memory Reductions" -, journal = "J. AMC" -, volume = 34 -, number = 4 -, year = 1987 -, pages = "846--858" -, update = "98.11 bibrelex" +, author = "D. E. Willard" +, title = "Multidimensional Search Trees That Provide New Type of Memory Reductions" +, journal = "J. AMC" +, volume = 34 +, number = 4 +, year = 1987 +, pages = "846--858" +, update = "98.11 bibrelex" } @techreport{w-ndsor-78 -, author = "D. E. Willard" -, title = "New Data Structures for Orthogonal Range Queries" -, type = "Technical {Report}" -, institution = "Havard Univ." -, year = 1978 -, update = "97.11 bibrelex" +, author = "D. E. Willard" +, title = "New Data Structures for Orthogonal Range Queries" +, type = "Technical {Report}" +, institution = "Havard Univ." +, year = 1978 +, update = "97.11 bibrelex" } @article{w-ndsor-85 -, author = "D. E. Willard" -, title = "New data structures for orthogonal range queries" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "232--253" +, author = "D. E. Willard" +, title = "New data structures for orthogonal range queries" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "232--253" } @article{w-ntdsw-84 -, author = "D. E. Willard" -, title = "New trie data structures which support very fast search operations" -, journal = "J. Comput. Syst. Sci." -, volume = 28 -, year = 1984 -, pages = "379--394" +, author = "D. E. Willard" +, title = "New trie data structures which support very fast search operations" +, journal = "J. Comput. Syst. Sci." +, volume = 28 +, year = 1984 +, pages = "379--394" } @inproceedings{w-asror-86 -, author = "D. E. Willard" -, title = "On the application of sheared retrieval to orthogonal range queries" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "80--89" -, cites = "amm-cpmr-81, b-mbstu-75, b-mdc-80, bm-ewcds-80, bs-pmsad-77, bs-dsp1s-80, bw-owcar-80, c-fsnaq-83, c-sdssf-85, c-fadsi-85, cg-fc-85, ce-lsdst-86, e-ndrs-81, eo-esrp-82, fks-sstwc-82, f-icdds-80, f-lbcor-81, f-lbcor-81, fmn-dgds-85, gbt-srtgp-84, j-pqiqo-82, k-aru-84, kmr-nnpbd-85, lp-cgs-84, lw-wcarp-77, lw-qtfsm-80, lw-dsdrq-82, m-dsa-84, ms-idsfs-80, nhs-gfasm-84, o-rsg-85t, ol-tgmdd-81, ps-cgi-85, v-sttor-85, e-pofll-77, ekz-diepq-77, w-ndsor-78, w-ndsor-85, w-llwcr-83, wl-arrcd-85, w-sadbr-84, w-rmsmd-85, w-lasoo-85, w-ataba-86, y-sttoa-82, y-cmps-85, ZZZ" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "D. E. Willard" +, title = "On the application of sheared retrieval to orthogonal range queries" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "80--89" +, cites = "amm-cpmr-81, b-mbstu-75, b-mdc-80, bm-ewcds-80, bs-pmsad-77, bs-dsp1s-80, bw-owcar-80, c-fsnaq-83, c-sdssf-85, c-fadsi-85, cg-fc-85, ce-lsdst-86, e-ndrs-81, eo-esrp-82, fks-sstwc-82, f-icdds-80, f-lbcor-81, f-lbcor-81, fmn-dgds-85, gbt-srtgp-84, j-pqiqo-82, k-aru-84, kmr-nnpbd-85, lp-cgs-84, lw-wcarp-77, lw-qtfsm-80, lw-dsdrq-82, m-dsa-84, ms-idsfs-80, nhs-gfasm-84, o-rsg-85t, ol-tgmdd-81, ps-cgi-85, v-sttor-85, e-pofll-77, ekz-diepq-77, w-ndsor-78, w-ndsor-85, w-llwcr-83, wl-arrcd-85, w-sadbr-84, w-rmsmd-85, w-lasoo-85, w-ataba-86, y-sttoa-82, y-cmps-85, ZZZ" +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{w-oscrd-91 -, author = "D. E. Willard" -, title = "Optimal sample cost residues for differential database batch query problems" -, journal = "J. ACM" -, volume = 38 -, year = 1991 -, pages = "104--119" +, author = "D. E. Willard" +, title = "Optimal sample cost residues for differential database batch query problems" +, journal = "J. ACM" +, volume = 38 +, year = 1991 +, pages = "104--119" } @article{w-pr-82 -, author = "D. E. Willard" -, title = "Polygon retrieval" -, journal = "SIAM J. Comput." -, volume = 11 -, year = 1982 -, pages = "149--165" +, author = "D. E. Willard" +, title = "Polygon retrieval" +, journal = "SIAM J. Comput." +, volume = 11 +, year = 1982 +, pages = "149--165" } @phdthesis{w-podsa-78 -, author = "D. E. Willard" -, title = "Predicate-oriented database search algorithms" -, type = "Ph.{D}. Thesis" -, school = "Aiken Comput. Lab., Harvard Univ." -, address = "Cambridge, MA" -, year = 1978 -, note = "Report TR-20-78" -, keywords = "doctoral thesis" -, update = "93.05 jones" +, author = "D. E. Willard" +, title = "Predicate-oriented database search algorithms" +, type = "Ph.{D}. Thesis" +, school = "Aiken Comput. Lab., Harvard Univ." +, address = "Cambridge, MA" +, year = 1978 +, note = "Report TR-20-78" +, keywords = "doctoral thesis" +, update = "93.05 jones" } @inproceedings{w-rmsmd-85 -, author = "D. E. Willard" -, title = "Reduced memory space for multi-dimensional search trees" -, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." -, year = 1985 -, pages = "363--374" -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "D. E. Willard" +, title = "Reduced memory space for multi-dimensional search trees" +, booktitle = "Proc. 2nd Sympos. Theoret. Aspects Comput. Sci." +, year = 1985 +, pages = "363--374" +, update = "98.03 bibrelex, 97.11 bibrelex" } @inproceedings{w-sadbr-84 -, author = "D. E. Willard" -, title = "Sampling algorithms for differentiable batch retrieval problems" -, booktitle = "Proceedings of ICALP" -, year = 1984 -, update = "97.11 bibrelex" +, author = "D. E. Willard" +, title = "Sampling algorithms for differentiable batch retrieval problems" +, booktitle = "Proceedings of ICALP" +, year = 1984 +, update = "97.11 bibrelex" } @article{w-sungf-85 -, author = "D. E. Willard" -, title = "Searching unindexed and nonuniformly generated files in {$\log\log N$} time" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "1013--1029" +, author = "D. E. Willard" +, title = "Searching unindexed and nonuniformly generated files in {$\log\log N$} time" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "1013--1029" } @techreport{w-sbta-79 -, author = "D. E. Willard" -, title = "The super-$b$-tree algorithm" -, type = "Report" -, number = "TR-03-79" -, institution = "Aiken Comput. Lab., Harvard Univ." -, address = "Cambridge, MA" -, year = 1979 +, author = "D. E. Willard" +, title = "The super-$b$-tree algorithm" +, type = "Report" +, number = "TR-03-79" +, institution = "Aiken Comput. Lab., Harvard Univ." +, address = "Cambridge, MA" +, year = 1979 } @article{wl-arrcd-85 -, author = "D. E. Willard and G. S. Lueker" -, title = "Adding range restriction capability to dynamic data structures" -, journal = "J. ACM" -, volume = 32 -, year = 1985 -, pages = "597--617" +, author = "D. E. Willard and G. S. Lueker" +, title = "Adding range restriction capability to dynamic data structures" +, journal = "J. ACM" +, volume = 32 +, year = 1985 +, pages = "597--617" } @inproceedings{ww-qvrqi-88 -, author = "D. E. Willard and Y. C. Wee" -, title = "Quasi-valid range querying and its implications for nearest neighbor problems" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "34--43" -, cites = "cg-opapp-88, acg-dctdp-87, acg-cdctd-87, ag-epssg-86, aks-osn-83, b-mbstu-75, b-mdc-80, bm-ewcds-80, bs-pmsad-77, bs-dsp1s-80, c-sdssf-85, c-fsnaq-86, c-lbcms-86, c-prsig-87, c-pms-86, dk-ppess-87, e-acg-87, eo-bdsds-85, ew-hrsls-86, f-icdds-80, f-lbcor-81, f-sbmrq-81, hw-ensrq-87, kmr-nnpbd-85, lp-cgs-84, lw-wcarp-77, lw-dsdrq-82, m-mdscg-84, ol-tgmdd-81, o-ddds-83, ps-cgi-85, v-sttor-85, v-oaann-86, w-pr-82, w-ndsor-85, w-asror-86, w-rmsmd-85, wl-arrcd-85, y-cmps-85, yy-gaddg-85, ZZZ" -, update = "98.03 bibrelex" +, author = "D. E. Willard and Y. C. Wee" +, title = "Quasi-valid range querying and its implications for nearest neighbor problems" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "34--43" +, cites = "cg-opapp-88, acg-dctdp-87, acg-cdctd-87, ag-epssg-86, aks-osn-83, b-mbstu-75, b-mdc-80, bm-ewcds-80, bs-pmsad-77, bs-dsp1s-80, c-sdssf-85, c-fsnaq-86, c-lbcms-86, c-prsig-87, c-pms-86, dk-ppess-87, e-acg-87, eo-bdsds-85, ew-hrsls-86, f-icdds-80, f-lbcor-81, f-sbmrq-81, hw-ensrq-87, kmr-nnpbd-85, lp-cgs-84, lw-wcarp-77, lw-dsdrq-82, m-mdscg-84, ol-tgmdd-81, o-ddds-83, ps-cgi-85, v-sttor-85, v-oaann-86, w-pr-82, w-ndsor-85, w-asror-86, w-rmsmd-85, wl-arrcd-85, y-cmps-85, yy-gaddg-85, ZZZ" +, update = "98.03 bibrelex" } @article{w-sppdt-95 -, author = "P. Willet" -, title = "Searching for pharmacophoric patterns in databases of three-dimensional chemical structures" -, journal = "J. Molecular Recognition" -, volume = 8 -, year = 1995 -, pages = "290--303" -, update = "98.07 bibrelex" +, author = "P. Willet" +, title = "Searching for pharmacophoric patterns in databases of three-dimensional chemical structures" +, journal = "J. Molecular Recognition" +, volume = 8 +, year = 1995 +, pages = "290--303" +, update = "98.07 bibrelex" } @article{w-cmc-80 -, author = "M. H. Williams" -, title = "Cubic map configurations" -, journal = "Inform. Process. Lett." -, volume = 11 -, year = 1980 -, pages = "189--185" +, author = "M. H. Williams" +, title = "Cubic map configurations" +, journal = "Inform. Process. Lett." +, volume = 11 +, year = 1980 +, pages = "189--185" } @techreport{w-idpvr-90 -, author = "P. Williams" -, title = "Issues in Interactive Direct Projection Volume Rendering of Nonrectilinear Meshed Data Sets" -, type = "Work in Progress Report" -, number = 1059 -, institution = "Center for Supercomputing Research and Development, University of Illinois" -, address = "Urbana-Champaign" -, month = dec -, year = 1990 -, update = "98.07 bibrelex" +, author = "P. Williams" +, title = "Issues in Interactive Direct Projection Volume Rendering of Nonrectilinear Meshed Data Sets" +, type = "Work in Progress Report" +, number = 1059 +, institution = "Center for Supercomputing Research and Development, University of Illinois" +, address = "Urbana-Champaign" +, month = dec +, year = 1990 +, update = "98.07 bibrelex" } @techreport{ws-vomp-91 -, author = "P. Williams and P. Shirley" -, title = "Visibility Ordering Meshed Polyhedra" -, type = "Report" -, number = 1097 -, institution = "Center for Supercomputing Research and Development, Universityof Illinois" -, address = "Urbana-Champaign" -, month = apr -, year = 1991 -, precedes = "w-vomp-92" -, update = "98.11 bibrelex, 98.07 bibrelex" +, author = "P. Williams and P. Shirley" +, title = "Visibility Ordering Meshed Polyhedra" +, type = "Report" +, number = 1097 +, institution = "Center for Supercomputing Research and Development, Universityof Illinois" +, address = "Urbana-Champaign" +, month = apr +, year = 1991 +, precedes = "w-vomp-92" +, update = "98.11 bibrelex, 98.07 bibrelex" } @inproceedings{w-acgvv-91 -, author = "P. L. Williams" -, title = "Applications of computational geometry to volume visualization" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "247--251" -, cites = "e-atccd-90, e-acg-87, fkn-vsgpt-80, mhc-avcev-90, st-padsc-90, w-cpadv-90, ws-vomp-91, ZZZ" -, update = "98.07 bibrelex" +, author = "P. L. Williams" +, title = "Applications of computational geometry to volume visualization" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "247--251" +, cites = "e-atccd-90, e-acg-87, fkn-vsgpt-80, mhc-avcev-90, st-padsc-90, w-cpadv-90, ws-vomp-91, ZZZ" +, update = "98.07 bibrelex" } @article{w-vomp-92 -, author = "P. L. Williams" -, title = "Visibility ordering meshed polyhedra" -, journal = "ACM Transaction on Graphics" -, volume = 11 -, number = 2 -, month = apr -, year = 1992 -, pages = "103--125" -, succeeds = "ws-vomp-91" -, update = "98.11 bibrelex" +, author = "P. L. Williams" +, title = "Visibility ordering meshed polyhedra" +, journal = "ACM Transaction on Graphics" +, volume = 11 +, number = 2 +, month = apr +, year = 1992 +, pages = "103--125" +, succeeds = "ws-vomp-91" +, update = "98.11 bibrelex" } @article{wg-ceaal-96 -, author = "David P. Williamson and Michel X. Goemans" -, title = "Computational Experience with an Approximation Algorithm on Large-Scale {Euclidean} Matching Instances" -, journal = "INFORMS J. Comput." -, volume = 8 -, number = 1 -, year = 1996 -, pages = "29--40" -, keywords = "matching, experimental analysis" -, update = "98.03 mitchell" +, author = "David P. Williamson and Michel X. Goemans" +, title = "Computational Experience with an Approximation Algorithm on Large-Scale {Euclidean} Matching Instances" +, journal = "INFORMS J. Comput." +, volume = 8 +, number = 1 +, year = 1996 +, pages = "29--40" +, keywords = "matching, experimental analysis" +, update = "98.03 mitchell" } @inproceedings{w-nivvl-97 -, author = "Graham J. Wills" -, title = "{NicheWorks} - Interactive Visualization of Very Large Graphs" -, editor = "G. {Di Battista}" -, booktitle = "Graph Drawing (Proc. GD '97)" -, series = "Lecture Notes Comput. Sci." -, volume = 1353 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "403--414" -, keywords = "graph drawing" -, update = "99.07 patrignani, 98.07 patrignani" +, author = "Graham J. Wills" +, title = "{NicheWorks} - Interactive Visualization of Very Large Graphs" +, editor = "G. {Di Battista}" +, booktitle = "Graph Drawing (Proc. GD '97)" +, series = "Lecture Notes Comput. Sci." +, volume = 1353 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "403--414" +, keywords = "graph drawing" +, update = "99.07 patrignani, 98.07 patrignani" } @article{w-ptp-86 -, author = "J. M. Wills" -, title = "On polyhedra with transitivity properties" -, journal = "Discrete Comput. Geom." -, volume = 1 -, year = 1986 -, pages = "195--199" +, author = "J. M. Wills" +, title = "On polyhedra with transitivity properties" +, journal = "Discrete Comput. Geom." +, volume = 1 +, year = 1986 +, pages = "195--199" } @article{wgs-ltino-90 -, author = "F. Wesley Wilson and R. Kent Goodrich and Wendy Spratte" -, title = "Lawson's Triangulation Is Nearly Optimal For Controlling Error Bounds" -, journal = "SIAM J. Numer. Anal." -, volume = 27 -, number = 1 -, month = feb -, year = 1990 -, pages = "190--197" -, keywords = "Lawson's triangulation, error bounds" -, annote = "If a triangle has side lengths $a \le b \le c$ then - condition number $C$ is - $1+\sqrt{(1-\lambda^2})/\lambda$, where - $\lambda=(4\mbox{Area})/(b^2+c^2)$. One wants $C$ to be - small. Another error bound looks like - $kc^n_S/\sin\alpha_S$, where $\alpha_S$ is the smallest - angle, $c_S$ is the longest side, and $n$ a positive - integer. Also gives another error bound which is really - hairy." -, abstract = "One way of evaluating a triangulation method is to - study how well it controls error bounds and stability - in computations. Lawson's method, which maximizes the - smallest angle over all triangulations, controls error - bounds for linear interpolates as well as for certain - derivative estimates. In particular, no other - triangulation improves these bounds by more than a - factor of 2. Although Lawson's triangulation method - does not minimize the largest edge over all - triangulations, it nearly does; this edge is no longer - than 2/ root 3 times the longest edge in any other - triangulation. Thus, Lawson's triangulation method - controls error bounds in polynomial interpolation - schemes. (Author abstract) 7 Refs." +, author = "F. Wesley Wilson and R. Kent Goodrich and Wendy Spratte" +, title = "Lawson's Triangulation Is Nearly Optimal For Controlling Error Bounds" +, journal = "SIAM J. Numer. Anal." +, volume = 27 +, number = 1 +, month = feb +, year = 1990 +, pages = "190--197" +, keywords = "Lawson's triangulation, error bounds" +, annote = "If a triangle has side lengths $a \le b \le c$ then + condition number $C$ is + $1+\sqrt{(1-\lambda^2})/\lambda$, where + $\lambda=(4\mbox{Area})/(b^2+c^2)$. One wants $C$ to be + small. Another error bound looks like + $kc^n_S/\sin\alpha_S$, where $\alpha_S$ is the smallest + angle, $c_S$ is the longest side, and $n$ a positive + integer. Also gives another error bound which is really + hairy." +, abstract = "One way of evaluating a triangulation method is to + study how well it controls error bounds and stability + in computations. Lawson's method, which maximizes the + smallest angle over all triangulations, controls error + bounds for linear interpolates as well as for certain + derivative estimates. In particular, no other + triangulation improves these bounds by more than a + factor of 2. Although Lawson's triangulation method + does not minimize the largest edge over all + triangulations, it nearly does; this edge is no longer + than 2/ root 3 times the longest edge in any other + triangulation. Thus, Lawson's triangulation method + controls error bounds in polynomial interpolation + schemes. (Author abstract) 7 Refs." } @article{w-tbcav-87 -, author = "P. M. H. Wilson" -, title = "Towards Birational Classfication of Algebraic Varieties" -, journal = "Bull. London Math. Soc." -, volume = 19 -, year = 1987 -, pages = "1--48" -, update = "97.11 bibrelex" +, author = "P. M. H. Wilson" +, title = "Towards Birational Classfication of Algebraic Varieties" +, journal = "Bull. London Math. Soc." +, volume = 19 +, year = 1987 +, pages = "1--48" +, update = "97.11 bibrelex" } @incollection{w-epa-91 -, author = "R. H. Wilson" -, title = "Efficiently Partitioning an Assembly" -, editor = "L. S. Honem de Mello and S. Lee" -, booktitle = "Computer-Aided Mechanical Assembling Planning" -, publisher = "Kluwer Academic Publishers" -, year = 1991 +, author = "R. H. Wilson" +, title = "Efficiently Partitioning an Assembly" +, editor = "L. S. Honem de Mello and S. Lee" +, booktitle = "Computer-Aided Mechanical Assembling Planning" +, publisher = "Kluwer Academic Publishers" +, year = 1991 } @phdthesis{w-fap-92 -, author = "R. H. Wilson" -, title = "On Geometric Assembly Planning" -, school = "Stanford University" -, month = mar -, year = 1992 -, note = "Stanford Technical Report STAN-CS-92-1416" -, keywords = "doctoral thesis" -, update = "98.11 bibrelex" +, author = "R. H. Wilson" +, title = "On Geometric Assembly Planning" +, school = "Stanford University" +, month = mar +, year = 1992 +, note = "Stanford Technical Report STAN-CS-92-1416" +, keywords = "doctoral thesis" +, update = "98.11 bibrelex" } @article{wl-grama-94 -, author = "R. H. Wilson and J.-C. Latombe" -, title = "Geometric reasoning about mechanical assembly" -, journal = "Artif. Intell." -, volume = 71 -, year = 1994 -, pages = "371--396" -, update = "98.07 bibrelex" +, author = "R. H. Wilson and J.-C. Latombe" +, title = "Geometric reasoning about mechanical assembly" +, journal = "Artif. Intell." +, volume = 71 +, year = 1994 +, pages = "371--396" +, update = "98.07 bibrelex" } @techreport{wll-cpa-92 -, author = "R. H. Wilson and J.-C. Latombe and T. Lozano-P{\'e}rez" -, title = "On the complexity of partitioning an assembly" -, type = "Technical Report" -, number = "STAN-CS-92-1458" -, institution = "Dept. of Computer Science, Stanford University" -, year = 1992 -, update = "99.11 bibrelex, 98.11 bibrelex" +, author = "R. H. Wilson and J.-C. Latombe and T. Lozano-P{\'e}rez" +, title = "On the complexity of partitioning an assembly" +, type = "Technical Report" +, number = "STAN-CS-92-1458" +, institution = "Dept. of Computer Science, Stanford University" +, year = 1992 +, update = "99.11 bibrelex, 98.11 bibrelex" } @inproceedings{wm-paimt-92 -, author = "R. H. Wilson and T. Matsui" -, title = "Partitioning an assembly for infinitesimal motions in translation and rotation" -, booktitle = "Proc. IEEE Internat. Conf. Intell. Robots Syst." -, year = 1992 -, pages = "1311--1318" -, update = "98.03 bibrelex" +, author = "R. H. Wilson and T. Matsui" +, title = "Partitioning an assembly for infinitesimal motions in translation and rotation" +, booktitle = "Proc. IEEE Internat. Conf. Intell. Robots Syst." +, year = 1992 +, pages = "1311--1318" +, update = "98.03 bibrelex" } @techreport{ws-apst-91 -, author = "R. H. Wilson and A. Schweikard" -, title = "Assembling polyhedra with single translations" -, number = "STAN-CS-91-1387" -, institution = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, month = oct -, year = 1991 +, author = "R. H. Wilson and A. Schweikard" +, title = "Assembling polyhedra with single translations" +, number = "STAN-CS-91-1387" +, institution = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, month = oct +, year = 1991 } @inproceedings{wkc-oarbb-89 -, author = "S. Wimer and I. Koren and I. Cederbaum" -, title = "Optimal Aspect Ratios of Building Blocks inVLSI" -, booktitle = "IEEE Trans. Computer Aided Design of Integrated Circuits and Systems" -, year = 1989 -, pages = "139--145" -, update = "98.11 bibrelex" +, author = "S. Wimer and I. Koren and I. Cederbaum" +, title = "Optimal Aspect Ratios of Building Blocks inVLSI" +, booktitle = "IEEE Trans. Computer Aided Design of Integrated Circuits and Systems" +, year = 1989 +, pages = "139--145" +, update = "98.11 bibrelex" } @article{wkc-fpgl-88 -, author = "W. Wimer and I. Koren and I. Cederbaum" -, title = "Floorplans, Planar Graphs and Layouts" -, journal = "IEEE Trans. Circuits Syst." -, volume = "CAS-35" -, year = 1988 -, pages = "267--278" -, update = "99.03 vismara, 98.11 bibrelex" +, author = "W. Wimer and I. Koren and I. Cederbaum" +, title = "Floorplans, Planar Graphs and Layouts" +, journal = "IEEE Trans. Circuits Syst." +, volume = "CAS-35" +, year = 1988 +, pages = "267--278" +, update = "99.03 vismara, 98.11 bibrelex" } @inproceedings{w-ipac-95 -, author = "Franz Winkler" -, title = "Issues in Parametrization of Algebraic Curves" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = "37--40" -, update = "00.03 bibrelex" +, author = "Franz Winkler" +, title = "Issues in Parametrization of Algebraic Curves" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = "37--40" +, update = "00.03 bibrelex" } @article{w-aspep-85 -, author = "P. Winter" -, title = "An algortihm for the {Steiner} problem in the {Euclidean} plane" -, journal = "Networks" -, volume = 15 -, year = 1985 -, pages = "323--345" -, update = "98.11 bibrelex" +, author = "P. Winter" +, title = "An algortihm for the {Steiner} problem in the {Euclidean} plane" +, journal = "Networks" +, volume = 15 +, year = 1985 +, pages = "323--345" +, update = "98.11 bibrelex" } @inproceedings{w-esmt3-95 -, author = "Pawel Winter" -, title = "Euclidean {Steiner} Minimal Trees for $3$ Terminals in a Simple Polygon" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "247--253" -, update = "95.09 jones" +, author = "Pawel Winter" +, title = "Euclidean {Steiner} Minimal Trees for $3$ Terminals in a Simple Polygon" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "247--253" +, update = "95.09 jones" } @inproceedings{w-shtt-01 -, author = "Pawel Winter" -, title = "{Steiner} Hull in {$\Theta(n\log n)$} Time" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "170--173" -, update = "01.04 icking" +, author = "Pawel Winter" +, title = "{Steiner} Hull in {$\Theta(n\log n)$} Time" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "170--173" +, update = "01.04 icking" } @article{w-spns-87 -, author = "P. Winter" -, title = "Steiner problem in networks, a survey" -, journal = "Networks" -, volume = 17 -, year = 1987 -, pages = "129--167" -, update = "97.11 bibrelex" +, author = "P. Winter" +, title = "Steiner problem in networks, a survey" +, journal = "Networks" +, volume = 17 +, year = 1987 +, pages = "129--167" +, update = "97.11 bibrelex" } @article{w-rmqpp-85 -, author = "D. S. Wise" -, title = "Representing matrices as quadtrees for parallel processors" -, journal = "Inform. Process. Lett." -, volume = 20 -, year = 1985 -, pages = "195--199" +, author = "D. S. Wise" +, title = "Representing matrices as quadtrees for parallel processors" +, journal = "Inform. Process. Lett." +, volume = 20 +, year = 1985 +, pages = "195--199" } @article{ww-stcs-88 -, author = "J. A. Wiseman and P. R. Wilson" -, title = "A {Sylvester} theorem for conic sections" -, journal = "Discrete Comput. Geom." -, volume = 3 -, year = 1988 -, pages = "295--305" +, author = "J. A. Wiseman and P. R. Wilson" +, title = "A {Sylvester} theorem for conic sections" +, journal = "Discrete Comput. Geom." +, volume = 3 +, year = 1988 +, pages = "295--305" } @article{w-cfvgs-92 -, author = "S. Wismath" -, title = "Computing the full visibility graph of a set of line segments" -, journal = "Inform. Process. Lett." -, volume = 42 -, number = 5 -, month = jul -, year = 1992 -, pages = "257--??" -, update = "98.07 bibrelex" +, author = "S. Wismath" +, title = "Computing the full visibility graph of a set of line segments" +, journal = "Inform. Process. Lett." +, volume = 42 +, number = 5 +, month = jul +, year = 1992 +, pages = "257--??" +, update = "98.07 bibrelex" } @phdthesis{w-brvgr-89 -, author = "S. K. Wismath" -, title = "Bar-Representable Visibility Graphs and Related Flow Problems" -, type = "Ph.{D.} Thesis" -, school = "Dept. Comput. Sci., Univ. British Columbia" -, year = 1989 -, keywords = "graph drawing, visibility, planar" -, update = "97.03 tamassia" +, author = "S. K. Wismath" +, title = "Bar-Representable Visibility Graphs and Related Flow Problems" +, type = "Ph.{D.} Thesis" +, school = "Dept. Comput. Sci., Univ. British Columbia" +, year = 1989 +, keywords = "graph drawing, visibility, planar" +, update = "97.03 tamassia" } @inproceedings{w-cblsg-85 -, author = "S. K. Wismath" -, title = "Characterizing bar line-of-sight graphs" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "147--152" -, keywords = "visibility, graph theory, geometric graphs, graph drawing" -, precedes = "kw-wvgbr-89" -, cites = "a-aac-78, et-csn-76, gjs-agcpc-76, ZZZ" -, update = "01.04 icking, 97.11 bibrelex, 93.09 milone+mitchell+tamassia" +, author = "S. K. Wismath" +, title = "Characterizing bar line-of-sight graphs" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "147--152" +, keywords = "visibility, graph theory, geometric graphs, graph drawing" +, precedes = "kw-wvgbr-89" +, cites = "a-aac-78, et-csn-76, gjs-agcpc-76, ZZZ" +, update = "01.04 icking, 97.11 bibrelex, 93.09 milone+mitchell+tamassia" } @inproceedings{w-rplse-94 -, author = "S. K. Wismath" -, title = "Reconstruction of Parallel Line Segments From Endpoint Visibility Information" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "369--374" -, cites = "cl-dvg-92, ec-rvgsp-90, elo-rchev-93, o-cgc18-93a, s-spinh-91, tt-uavrp-86, w-cblsg-85, a-srvg-92, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "S. K. Wismath" +, title = "Reconstruction of Parallel Line Segments From Endpoint Visibility Information" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "369--374" +, cites = "cl-dvg-92, ec-rvgsp-90, elo-rchev-93, o-cgc18-93a, s-spinh-91, tt-uavrp-86, w-cblsg-85, a-srvg-92, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @mastersthesis{w-tas-80 -, author = "S. K. Wismath" -, title = "Triangulations: {An} algorithmic study" -, type = "M.{Sc}. Thesis" -, school = "Dept. Comput. Inform. Sci., Queen's Univ." -, address = "Kingston, ON" -, month = jul -, year = 1980 -, note = "Report 80-106" -, keywords = "master thesis, Delaunay triangulations, point-set triangulation, implementing algorithms, empirical analysis" -, update = "93.05 jones" +, author = "S. K. Wismath" +, title = "Triangulations: {An} algorithmic study" +, type = "M.{Sc}. Thesis" +, school = "Dept. Comput. Inform. Sci., Queen's Univ." +, address = "Kingston, ON" +, month = jul +, year = 1980 +, note = "Report 80-106" +, keywords = "master thesis, Delaunay triangulations, point-set triangulation, implementing algorithms, empirical analysis" +, update = "93.05 jones" } @article{w-sacui-80 -, author = "H. S. Witsenhausen" -, title = "Some aspects of convexity useful in information theory" -, journal = "IEEE Trans. Inform. Theory" -, volume = "IT-26" -, year = 1980 -, pages = "265--271" +, author = "H. S. Witsenhausen" +, title = "Some aspects of convexity useful in information theory" +, journal = "IEEE Trans. Inform. Theory" +, volume = "IT-26" +, year = 1980 +, pages = "265--271" } @techreport{w-enh-88 -, author = "G. Woeginger" -, title = "Epsilon-nets for Halfplanes" -, number = "B-88-02" -, institution = "Dep. of Mathematics, Free University Berlin" -, month = mar -, year = 1988 -, update = "98.03 bibrelex" +, author = "G. Woeginger" +, title = "Epsilon-nets for Halfplanes" +, number = "B-88-02" +, institution = "Dep. of Mathematics, Free University Berlin" +, month = mar +, year = 1988 +, update = "98.03 bibrelex" } @inproceedings{w-enh-89 -, author = "G. Woeginger" -, title = "Epsilon-nets for Halfplanes" -, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." -, series = "Lecture Notes Comput. Sci." -, volume = 344 -, year = 1989 -, pages = "243--252" -, update = "97.03 gaertner+salinger" +, author = "G. Woeginger" +, title = "Epsilon-nets for Halfplanes" +, booktitle = "Proc. 14th Internat. Workshop Graph-Theoret. Concepts Comput. Sci." +, series = "Lecture Notes Comput. Sci." +, volume = 344 +, year = 1989 +, pages = "243--252" +, update = "97.03 gaertner+salinger" } @inproceedings{w-avpmm-89 -, author = "G. W{\"o}ginger" -, title = "{Auffinden} von {Vier}-{Punkte}-{Mengen} mit minimaler {Fl{\"a}che}" -, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." -, nickname = "CG '89" -, site = "Freiburg" -, publisher = "Universit{\"a}t Freiburg" -, year = 1989 -, update = "00.03 bibrelex" +, author = "G. W{\"o}ginger" +, title = "{Auffinden} von {Vier}-{Punkte}-{Mengen} mit minimaler {Fl{\"a}che}" +, booktitle = "Abstracts 5th Intern. Workshop Comput. Geom." +, nickname = "CG '89" +, site = "Freiburg" +, publisher = "Universit{\"a}t Freiburg" +, year = 1989 +, update = "00.03 bibrelex" } @misc{w-sve-96 -, author = "T. T. Wohlers" -, title = "STL viewers and Editors" -, year = 1996 -, url = "http://lamar.colstate.edu/~wohlers/stl_view.html" -, update = "98.07 bibrelex" +, author = "T. T. Wohlers" +, title = "STL viewers and Editors" +, year = 1996 +, url = "http://lamar.colstate.edu/~wohlers/stl_view.html" +, update = "98.07 bibrelex" } @incollection{wm-fcplt-94 -, author = "George Wolberg and Henry Massalin" -, title = "Fast Convolution with Packed Lookup Tables" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "447--464" -, keywords = "image filter, image magnification, image resampling" -, update = "94.09 heckbert" -, annote = "Gives optimized code for convolution of discrete signals. +, author = "George Wolberg and Henry Massalin" +, title = "Fast Convolution with Packed Lookup Tables" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "447--464" +, keywords = "image filter, image magnification, image resampling" +, update = "94.09 heckbert" +, annote = "Gives optimized code for convolution of discrete signals. This is useful for image resampling and filtering. Contains C code." } @article{w-fnpp-76 -, author = "P. Wolfe" -, title = "Finding the nearest point in a polytope" -, journal = "Math. Program." -, volume = 11 -, year = 1976 -, pages = "128--149" +, author = "P. Wolfe" +, title = "Finding the nearest point in a polytope" +, journal = "Math. Program." +, volume = 11 +, year = 1976 +, pages = "128--149" } @article{wwkgf-smpd-87 -, author = "R. N. Wolfe and M. A. Wesley and J. C. {Kyle, Jr.} and F. Gracer and W. J. Fitzgerald" -, title = "Solid modeling for production design" -, journal = "IBM J. Res. Develop." -, volume = 31 -, year = 1987 -, pages = "277--295" +, author = "R. N. Wolfe and M. A. Wesley and J. C. {Kyle, Jr.} and F. Gracer and W. J. Fitzgerald" +, title = "Solid modeling for production design" +, journal = "IBM J. Res. Develop." +, volume = 31 +, year = 1987 +, pages = "277--295" } @book{w-msdmc-88 -, author = "S. Wolfram" -, title = "Mathematica: a system for doing mathematics by computer" -, publisher = "Addison-Wesley" -, address = "Reading, Mass." -, year = 1988 -, update = "97.03 schwarzkopf, 95.05 agarwal" +, author = "S. Wolfram" +, title = "Mathematica: a system for doing mathematics by computer" +, publisher = "Addison-Wesley" +, address = "Reading, Mass." +, year = 1988 +, update = "97.03 schwarzkopf, 95.05 agarwal" } @inproceedings{w-rfoli-96 -, author = "Michael Wolfrath" -, title = "Results on Fat Objects with a Low Intersection Proportion" -, booktitle = "Abstracts 12th European Workshop Comput. Geom." -, nickname = "CG '96" -, site = "M{\"u}nster" -, publisher = "Universit{\"a}t M{\"u}nster" -, year = 1996 -, pages = 1 -, cites = "ZZZ" -, update = "00.03 bibrelex, 99.03 bibrelex" +, author = "Michael Wolfrath" +, title = "Results on Fat Objects with a Low Intersection Proportion" +, booktitle = "Abstracts 12th European Workshop Comput. Geom." +, nickname = "CG '96" +, site = "M{\"u}nster" +, publisher = "Universit{\"a}t M{\"u}nster" +, year = 1996 +, pages = 1 +, cites = "ZZZ" +, update = "00.03 bibrelex, 99.03 bibrelex" } @inproceedings{w-vdsta-95 -, author = "Michael Wolfrath" -, title = "{Voronoi} Diagrams for Spheres and Their Application in Motion Planning" -, booktitle = "Abstracts 11th European Workshop Comput. Geom." -, nickname = "CG '95" -, site = "Linz" -, publisher = "Universit{\"a}t Linz" -, year = 1995 -, pages = 29 -, update = "00.03 bibrelex" +, author = "Michael Wolfrath" +, title = "{Voronoi} Diagrams for Spheres and Their Application in Motion Planning" +, booktitle = "Abstracts 11th European Workshop Comput. Geom." +, nickname = "CG '95" +, site = "Linz" +, publisher = "Universit{\"a}t Linz" +, year = 1995 +, pages = 29 +, update = "00.03 bibrelex" } @techreport{ws-cmdap-87 -, author = "E. Wolfson and E. L. Schwartz" -, title = "Computing Minimal Distances on Arbitrary Polyhedral Surfaces" -, type = "Technical report" -, institution = "Dept. of Computer Science, Courant Institute of Mathematical Sciences" -, year = 1987 -, precedes = "ws-cmdps-89" -, update = "95.01 mitchell, 93.09 milone+mitchell" +, author = "E. Wolfson and E. L. Schwartz" +, title = "Computing Minimal Distances on Arbitrary Polyhedral Surfaces" +, type = "Technical report" +, institution = "Dept. of Computer Science, Courant Institute of Mathematical Sciences" +, year = 1987 +, precedes = "ws-cmdps-89" +, update = "95.01 mitchell, 93.09 milone+mitchell" } @article{ws-cmdps-89 -, author = "E. Wolfson and E. L. Schwartz" -, title = "Computing Minimal Distances on Polyhedral Surfaces" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 11 -, number = 9 -, year = 1989 -, pages = "1001--1005" -, comments = "presents an algorithm that has been implemented for the - discrete geodesic problem; the algorithm is worst-case exponential" -, succeeds = "ws-cmdap-87" -, update = "95.01 mitchell, 95.01 mitchell" +, author = "E. Wolfson and E. L. Schwartz" +, title = "Computing Minimal Distances on Polyhedral Surfaces" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 11 +, number = 9 +, year = 1989 +, pages = "1001--1005" +, comments = "presents an algorithm that has been implemented for the + discrete geodesic problem; the algorithm is worst-case exponential" +, succeeds = "ws-cmdap-87" +, update = "95.01 mitchell, 95.01 mitchell" } @techreport{ws-dimps-92 -, author = "E. Wolfson and M. Sharir" -, title = "Design and implementation of a motion planning system in three dimensions" -, type = "Manuscript" -, institution = "??" -, year = 1992 -, update = "98.03 bibrelex" +, author = "E. Wolfson and M. Sharir" +, title = "Design and implementation of a motion planning system in three dimensions" +, type = "Manuscript" +, institution = "??" +, year = 1992 +, update = "98.03 bibrelex" } @inproceedings{ws-impst-93 -, author = "E. Wolfson and Micha Sharir" -, title = "Implementation of a motion planning system in three dimensions" -, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." -, year = 1993 -, pages = "399--400" -, keywords = "video review" -, cites = "as-car-92, cp-tncp-90, ws-dimps-92, ZZZ" -, update = "98.03 bibrelex+mitchell, 93.09 jones" +, author = "E. Wolfson and Micha Sharir" +, title = "Implementation of a motion planning system in three dimensions" +, booktitle = "Proc. 9th Annu. ACM Sympos. Comput. Geom." +, year = 1993 +, pages = "399--400" +, keywords = "video review" +, cites = "as-car-92, cp-tncp-90, ws-dimps-92, ZZZ" +, update = "98.03 bibrelex+mitchell, 93.09 jones" } @inproceedings{w-mborg-90 -, author = "H. J. Wolfson" -, title = "Model based object recognition by `geometric hashing'" -, booktitle = "Proc. 1st European Conf. Comput. Vision" -, year = 1990 -, pages = "526--536" -, update = "97.11 bibrelex" +, author = "H. J. Wolfson" +, title = "Model based object recognition by `geometric hashing'" +, booktitle = "Proc. 1st European Conf. Comput. Vision" +, year = 1990 +, pages = "526--536" +, update = "97.11 bibrelex" } @article{w-cm-90 -, author = "H. J. Wolfson" -, title = "On curve matching" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 12 -, year = 1990 -, pages = "483--489" -, update = "98.03 bibrelex" +, author = "H. J. Wolfson" +, title = "On curve matching" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 12 +, year = 1990 +, pages = "483--489" +, update = "98.03 bibrelex" } @phdthesis{w-clbur-85 -, author = "F. E. Wolter" -, title = "Cut Loci in Bordered and Unbordered Riemannian Manifolds" -, school = "TU Berlin, FB Mathematik" -, address = "Berlin, Germany" -, year = 1985 -, keywords = "doctoral thesis" -, update = "95.05 held" +, author = "F. E. Wolter" +, title = "Cut Loci in Bordered and Unbordered Riemannian Manifolds" +, school = "TU Berlin, FB Mathematik" +, address = "Berlin, Germany" +, year = 1985 +, keywords = "doctoral thesis" +, update = "95.05 held" } @article{w-clmag-?? -, author = "F.-E. Wolter" -, title = "Cut Locus and Medial Axis in Global Shape Interrogation and Representation" -, journal = "Comput. Aided Geom. Design" -, volume = "??" -, year = "??" -, note = "To appear" -, update = "95.05 abrams" +, author = "F.-E. Wolter" +, title = "Cut Locus and Medial Axis in Global Shape Interrogation and Representation" +, journal = "Comput. Aided Geom. Design" +, volume = "??" +, year = "??" +, note = "To appear" +, update = "95.05 abrams" } @techreport{w-clmag-92 -, author = "F. E. Wolter" -, title = "Cut Locus and Medial Axis in Global Shape Interrogation and Representation" -, number = "92-2" -, institution = "MIT, Dept. Ocean Engg., Design Lab" -, address = "Cambridge, MA 02139, USA" -, month = jan -, year = 1992 -, update = "95.05 held" +, author = "F. E. Wolter" +, title = "Cut Locus and Medial Axis in Global Shape Interrogation and Representation" +, number = "92-2" +, institution = "MIT, Dept. Ocean Engg., Design Lab" +, address = "Cambridge, MA 02139, USA" +, month = jan +, year = 1992 +, update = "95.05 held" } @article{wt-ahdpc-92 -, author = "F.-E. Wolter and S. T. Tuohy" -, title = "Approximation of High Degree and Procedural Curves" -, journal = "Engineering with Computers" -, volume = 8 -, year = 1992 -, pages = "61--80" -, update = "95.05 abrams" +, author = "F.-E. Wolter and S. T. Tuohy" +, title = "Approximation of High Degree and Procedural Curves" +, journal = "Engineering with Computers" +, volume = 8 +, year = 1992 +, pages = "61--80" +, update = "95.05 abrams" } @article{wt-ccdsp-92 -, author = "F.-E. Wolter and S. T. Tuohy" -, title = "Curvature Computations for Degenerate Surface Patches" -, journal = "Comput. Aided Geom. Design" -, volume = 9 -, number = 4 -, year = 1992 -, pages = "241--270" -, update = "95.05 abrams" +, author = "F.-E. Wolter and S. T. Tuohy" +, title = "Curvature Computations for Degenerate Surface Patches" +, journal = "Comput. Aided Geom. Design" +, volume = 9 +, number = 4 +, year = 1992 +, pages = "241--270" +, update = "95.05 abrams" } @article{wwv-oasdt-85 -, author = "Jan D. Wolter and Tony C. Woo and Richard A. Volz" -, title = "Optimal algorithms for symmetry detection in two and three dimensions" -, journal = "Visual Comput." -, volume = 1 -, number = 1 -, month = jul -, year = 1985 -, pages = "37--48" -, keywords = "similarity, pattern matching, graph isomorphism" +, author = "Jan D. Wolter and Tony C. Woo and Richard A. Volz" +, title = "Optimal algorithms for symmetry detection in two and three dimensions" +, journal = "Visual Comput." +, volume = 1 +, number = 1 +, month = jul +, year = 1985 +, pages = "37--48" +, keywords = "similarity, pattern matching, graph isomorphism" } @article{ws-bbshm-88 -, author = "Y. Won and S. Sahni" -, title = "A balanced bin sort for hypercube multicomputers" -, journal = "J. of Supercomputing" -, volume = 2 -, year = 1988 -, pages = "435--448" -, update = "96.09 orourke" +, author = "Y. Won and S. Sahni" +, title = "A balanced bin sort for hypercube multicomputers" +, journal = "J. of Supercomputing" +, volume = 2 +, year = 1988 +, pages = "435--448" +, update = "96.09 orourke" } @incollection{w-otdcs-85 -, author = "C. K. Wong" -, title = "An optimal two-dimensional compaction scheme" -, editor = "P. Bertolazzi and F. Luccio" -, booktitle = "VLSI: {Algorithms} and Architectures" -, publisher = "Elsevier" -, year = 1985 -, pages = "205--211" -, update = "98.03 bibrelex" +, author = "C. K. Wong" +, title = "An optimal two-dimensional compaction scheme" +, editor = "P. Bertolazzi and F. Luccio" +, booktitle = "VLSI: {Algorithms} and Architectures" +, publisher = "Elsevier" +, year = 1985 +, pages = "205--211" +, update = "98.03 bibrelex" } @techreport{w-mrdpb-79 -, author = "T. Wong" -, title = "Minimum Rectangular Distance Paths Between Two Points on a Plane with barriers" -, institution = "Electrical Engineering and Computer Science, MIT" -, month = may -, year = 1979 -, update = "93.09 milone+mitchell" +, author = "T. Wong" +, title = "Minimum Rectangular Distance Paths Between Two Points on a Plane with barriers" +, institution = "Electrical Engineering and Computer Science, MIT" +, month = may +, year = 1979 +, update = "93.09 milone+mitchell" } @article{wt-agseo-84 -, author = "R. C. Woo and T. Thomasma" -, title = "An algorithm for generating solid elements in objects with holes" -, journal = "Comput. Struct." -, volume = 18 -, year = 1984 -, pages = "333--342" +, author = "R. C. Woo and T. Thomasma" +, title = "An algorithm for generating solid elements in objects with holes" +, journal = "Comput. Struct." +, volume = 18 +, year = 1984 +, pages = "333--342" } @techreport{w-csp-83 -, author = "T. Woo" -, title = "The Convex Skull Problem" -, type = "Manuscript" -, institution = "??" -, year = 1983 -, update = "97.11 bibrelex" +, author = "T. Woo" +, title = "The Convex Skull Problem" +, type = "Manuscript" +, institution = "??" +, year = 1983 +, update = "97.11 bibrelex" } @article{w-cabds-85 -, author = "T. C. Woo" -, title = "A combinatorial analysis of boundary data structure schemata" -, journal = "IEEE Comput. Graph. Appl." -, volume = 5 -, number = 3 -, year = 1985 -, pages = "19--27" +, author = "T. C. Woo" +, title = "A combinatorial analysis of boundary data structure schemata" +, journal = "IEEE Comput. Graph. Appl." +, volume = 5 +, number = 3 +, year = 1985 +, pages = "19--27" } @inproceedings{w-fevd-82 -, author = "T. C. Woo" -, title = "Feature Extraction by Volume Decomposition" -, booktitle = "Proceedings of Conference on CAD/CAM Technology in Mechanical Engineering" -, organization = "MIT" -, year = 1982 -, update = "98.03 bibrelex" +, author = "T. C. Woo" +, title = "Feature Extraction by Volume Decomposition" +, booktitle = "Proceedings of Conference on CAD/CAM Technology in Mechanical Engineering" +, organization = "MIT" +, year = 1982 +, update = "98.03 bibrelex" } @article{wl-tcccp-85 -, author = "T. C. Woo and H.-C. Lee" -, title = "On the time complexity for circumscribing a convex polygon" -, journal = "Comput. Vision Graph. Image Process." -, volume = 30 -, year = 1985 -, pages = "362--363" +, author = "T. C. Woo and H.-C. Lee" +, title = "On the time complexity for circumscribing a convex polygon" +, journal = "Comput. Vision Graph. Image Process." +, volume = 30 +, year = 1985 +, pages = "362--363" } @article{ws-ltatp-85 -, author = "T. C. Woo and S. Y. Shin" -, title = "A linear time algorithm for triangulating a point-visible polygon" -, journal = "ACM Trans. Graph." -, volume = 4 -, number = 1 -, year = 1985 -, pages = "60--70" +, author = "T. C. Woo and S. Y. Shin" +, title = "A linear time algorithm for triangulating a point-visible polygon" +, journal = "ACM Trans. Graph." +, volume = 4 +, number = 1 +, year = 1985 +, pages = "60--70" } @incollection{w-ivcg-85 -, author = "D. Wood" -, title = "An isothetic view of computational geometry" -, editor = "G. T. Toussaint" -, booktitle = "Computational Geometry" -, publisher = "North-Holland" -, address = "Amsterdam, Netherlands" -, year = 1985 -, pages = "429--459" +, author = "D. Wood" +, title = "An isothetic view of computational geometry" +, editor = "G. T. Toussaint" +, booktitle = "Computational Geometry" +, publisher = "North-Holland" +, address = "Amsterdam, Netherlands" +, year = 1985 +, pages = "429--459" } @book{w-dsap-93 -, author = "D. Wood" -, title = "Data Structures, Algorithms, and Performance" -, publisher = "Addison-Wesley" -, year = 1993 -, update = "97.03 tamassia" +, author = "D. Wood" +, title = "Data Structures, Algorithms, and Performance" +, publisher = "Addison-Wesley" +, year = 1993 +, update = "97.03 tamassia" } @article{w-cprp-84 -, author = "D. Wood" -, title = "The contour problem for rectilinear polygons" -, journal = "Inform. Process. Lett." -, volume = 19 -, year = 1984 -, pages = "229--236" +, author = "D. Wood" +, title = "The contour problem for rectilinear polygons" +, journal = "Inform. Process. Lett." +, volume = 19 +, year = 1984 +, pages = "229--236" } @incollection{w-rr-88 -, author = "D. Wood" -, title = "The riches of rectangles" -, booktitle = "Proc. 5th Internat. Meeting Young Comput. Scientists" -, series = "Lecture Notes Comput. Sci." -, volume = 381 -, publisher = "Springer-Verlag" -, year = 1988 -, pages = "161--168" +, author = "D. Wood" +, title = "The riches of rectangles" +, booktitle = "Proc. 5th Internat. Meeting Young Comput. Scientists" +, series = "Lecture Notes Comput. Sci." +, volume = 381 +, publisher = "Springer-Verlag" +, year = 1988 +, pages = "161--168" } @inproceedings{wy-dsv-93 -, author = "D. Wood and P. Yamamoto" -, title = "Dent and staircase visibility" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "297--302" -, cites = "bs-parpv-92, cr-occop-89a, b-rld-91, srw-gsv-cccg-91, ZZZ" -, update = "98.11 bibrelex, 93.09 milone+mitchell" +, author = "D. Wood and P. Yamamoto" +, title = "Dent and staircase visibility" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "297--302" +, cites = "bs-parpv-92, cr-occop-89a, b-rld-91, srw-gsv-cccg-91, ZZZ" +, update = "98.11 bibrelex, 93.09 milone+mitchell" } @inproceedings{wy-ccsop-85 -, author = "D. Wood and C. K. Yap" -, title = "Computing a convex skull of an orthogonal polygon" -, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." -, year = 1985 -, pages = "311--315" -, succeeds = "wy-rcsp-84" -, precedes = "wy-ocsp-88" -, cites = "cy-psppo-84, g-lcpcn-81, osw-dcrch-85, s-mcrm-72, w-csp-83, ZZZ" -, update = "97.11 bibrelex" +, author = "D. Wood and C. K. Yap" +, title = "Computing a convex skull of an orthogonal polygon" +, booktitle = "Proc. 1st Annu. ACM Sympos. Comput. Geom." +, year = 1985 +, pages = "311--315" +, succeeds = "wy-rcsp-84" +, precedes = "wy-ocsp-88" +, cites = "cy-psppo-84, g-lcpcn-81, osw-dcrch-85, s-mcrm-72, w-csp-83, ZZZ" +, update = "97.11 bibrelex" } @article{wy-ocsp-88 -, author = "D. Wood and C. K. Yap" -, title = "The orthogonal convex skull problem" -, journal = "Discrete Comput. Geom." -, volume = 3 -, number = 4 -, year = 1988 -, pages = "349--365" -, succeeds = "wy-ccsop-85" -, update = "98.11 bibrelex" +, author = "D. Wood and C. K. Yap" +, title = "The orthogonal convex skull problem" +, journal = "Discrete Comput. Geom." +, volume = 3 +, number = 4 +, year = 1988 +, pages = "349--365" +, succeeds = "wy-ccsop-85" +, update = "98.11 bibrelex" } @techreport{wy-rcsp-84 -, author = "D. Wood and C. K. Yap" -, title = "The rectilinear convex skull problem" -, type = "Report" -, number = "TR 132" -, institution = "Comput. Sci. Div., New York Univ." -, address = "New York, NY" -, year = 1984 -, precedes = "wy-ccsop-85" +, author = "D. Wood and C. K. Yap" +, title = "The rectilinear convex skull problem" +, type = "Report" +, number = "TR 132" +, institution = "Comput. Sci. Div., New York Univ." +, address = "New York, NY" +, year = 1984 +, precedes = "wy-ccsop-85" } @techreport{w-tbtdo-98 -, author = "D. R. Wood" -, title = "Two-Bend Three-Dimensional Orthogonal Grid Drawing of Maximum Degree Five Graphs" -, type = "Technical Report" -, number = "98/03" -, institution = "School of Computer Science and Software Engineering, Monash University" -, year = 1998 -, url = "ftp://ftp.cs.monash.edu.au//publications/1998/tr98_03.ps.gz" -, keywords = "graph drawing, orthogonal, 3D" -, update = "98.07 patrignani" +, author = "D. R. Wood" +, title = "Two-Bend Three-Dimensional Orthogonal Grid Drawing of Maximum Degree Five Graphs" +, type = "Technical Report" +, number = "98/03" +, institution = "School of Computer Science and Software Engineering, Monash University" +, year = 1998 +, url = "ftp://ftp.cs.monash.edu.au//publications/1998/tr98_03.ps.gz" +, keywords = "graph drawing, orthogonal, 3D" +, update = "98.07 patrignani" } @inproceedings{w-op-72 -, author = "D. R. Woodall" -, title = "Open problems" -, editor = "D. J. A. Welsh and D. R. Woodall" -, booktitle = "Combinatorics, Proc. Conference on Combinatorial Mathematics" -, publisher = "Institute of Mathematics and its Applications" -, address = "Southend-on-Sea, UK" -, year = 1972 -, pages = "341--350" -, update = "98.03 bibrelex" +, author = "D. R. Woodall" +, title = "Open problems" +, editor = "D. J. A. Welsh and D. R. Woodall" +, booktitle = "Combinatorics, Proc. Conference on Combinatorial Mathematics" +, publisher = "Institute of Mathematics and its Applications" +, address = "Southend-on-Sea, UK" +, year = 1972 +, pages = "341--350" +, update = "98.03 bibrelex" } @incollection{w-td-69 -, author = "D. R. Woodall" -, title = "Thrackles and deadlock" -, editor = "D. J. A. Welsh" -, booktitle = "Combinatorial Mathematics and its Applications" -, publisher = "Academic Press" -, address = "London" -, year = 1969 -, pages = "335--348" -, update = "98.03 bibrelex" +, author = "D. R. Woodall" +, title = "Thrackles and deadlock" +, editor = "D. J. A. Welsh" +, booktitle = "Combinatorial Mathematics and its Applications" +, publisher = "Academic Press" +, address = "London" +, year = 1969 +, pages = "335--348" +, update = "98.03 bibrelex" } @article{w-pmdso-80 -, author = "R. J. Woodham" -, title = "Photometric Method for Determining Surface Orientation from Multiple Images" -, journal = "Optical Engineering" -, volume = 19 -, year = 1980 -, pages = "139--144" -, update = "97.11 bibrelex" +, author = "R. J. Woodham" +, title = "Photometric Method for Determining Surface Orientation from Multiple Images" +, journal = "Optical Engineering" +, volume = 19 +, year = 1980 +, pages = "139--144" +, update = "97.11 bibrelex" } @phdthesis{w-dpg-82 -, author = "D. Woods" -, title = "Drawing Planar Graphs" -, school = "Department of Computer Science, Stanford University" -, year = 1982 -, note = "Technical Report STAN-CS-82-943" -, keywords = "doctoral thesis, graph drawing" -, update = "93.09 tamassia" +, author = "D. Woods" +, title = "Drawing Planar Graphs" +, school = "Department of Computer Science, Stanford University" +, year = 1982 +, note = "Technical Report STAN-CS-82-943" +, keywords = "doctoral thesis, graph drawing" +, update = "93.09 tamassia" } @incollection{w-bgm-87 -, author = "J. Woodwark" -, title = "Blends in geometric modeling" -, editor = "R. Martin" -, booktitle = "The Mathematics of Surfaces II" -, year = 1987 -, pages = "255--297" -, update = "98.03 bibrelex" +, author = "J. Woodwark" +, title = "Blends in geometric modeling" +, editor = "R. Martin" +, booktitle = "The Mathematics of Surfaces II" +, year = 1987 +, pages = "255--297" +, update = "98.03 bibrelex" } @article{w-cqt-84 -, author = "J. R. Woodwark" -, title = "Compressed quad trees" -, journal = "Comput. J." -, volume = 27 -, number = 3 -, year = 1984 -, pages = "225--229" +, author = "J. R. Woodwark" +, title = "Compressed quad trees" +, journal = "Comput. J." +, volume = 27 +, number = 3 +, year = 1984 +, pages = "225--229" } @book{w-cs-86 -, author = "J. R. Woodwark" -, title = "Computing Shape" -, publisher = "Butterwoths" -, year = 1986 -, update = "98.03 bibrelex" +, author = "J. R. Woodwark" +, title = "Computing Shape" +, publisher = "Butterwoths" +, year = 1986 +, update = "98.03 bibrelex" } @article{w-erpst-88 -, author = "J. R. Woodwark" -, title = "Eliminating Redundant Primitives from Set-Theoretic Solid Models by a Consideration of Constituents" -, journal = "IEEE Comput. Graph. Appl." -, volume = 8 -, number = 3 -, month = may -, year = 1988 -, pages = "38--47" -, update = "93.09 held" +, author = "J. R. Woodwark" +, title = "Eliminating Redundant Primitives from Set-Theoretic Solid Models by a Consideration of Constituents" +, journal = "IEEE Comput. Graph. Appl." +, volume = 8 +, number = 3 +, month = may +, year = 1988 +, pages = "38--47" +, update = "93.09 held" } @article{wb-bfpsm-86 -, author = "J. R. Woodwark and A. Bowyer" -, title = "Better and faster pictures from solid models" -, journal = "IEE Compter Aided Engineering Journal" -, volume = "??" -, year = 1986 -, update = "98.03 bibrelex" +, author = "J. R. Woodwark and A. Bowyer" +, title = "Better and faster pictures from solid models" +, journal = "IEE Compter Aided Engineering Journal" +, volume = "??" +, year = 1986 +, update = "98.03 bibrelex" } @article{wq-recvm-82 -, author = "J. R. Woodwark and K. M. Quinlan" -, title = "Reducing the effect of complexity on volume model evaluation" -, journal = "Compter Aided Design" -, volume = "??" -, year = 1982 -, update = "98.03 bibrelex" +, author = "J. R. Woodwark and K. M. Quinlan" +, title = "Reducing the effect of complexity on volume model evaluation" +, journal = "Compter Aided Design" +, volume = "??" +, year = 1982 +, update = "98.03 bibrelex" } @inproceedings{wq-dgvmr-80 -, author = "J. R. Woodwark and K. M. Quinlan" -, title = "The derivation of graphics from volume models by recursive subdivision of the object space" -, booktitle = "Proc. CG" -, year = 1980 -, update = "98.03 bibrelex" +, author = "J. R. Woodwark and K. M. Quinlan" +, title = "The derivation of graphics from volume models by recursive subdivision of the object space" +, booktitle = "Proc. CG" +, year = 1980 +, update = "98.03 bibrelex" } @techreport{w-cpgvl-70 -, author = "P. Woon" -, title = "A Computer Procedure for Generating Visible-Line Drawings of Solids Bounded by Quadratic Surfaces" -, type = "Technical {Report}" -, number = "403-15" -, institution = "Dept. Elect. Engrg., New York Univ." -, address = "New York, NY" -, month = nov -, year = 1970 -, update = "98.03 bibrelex" +, author = "P. Woon" +, title = "A Computer Procedure for Generating Visible-Line Drawings of Solids Bounded by Quadratic Surfaces" +, type = "Technical {Report}" +, number = "403-15" +, institution = "Dept. Elect. Engrg., New York Univ." +, address = "New York, NY" +, month = nov +, year = 1970 +, update = "98.03 bibrelex" } @techreport{w-st-80 -, author = "B. W{\"o}rdenweber" -, title = "Surface-triangulation" -, type = "Document" -, number = 107 -, institution = "CAD Group, Cambridge Univ." -, address = "Cambridge, England" -, year = 1980 +, author = "B. W{\"o}rdenweber" +, title = "Surface-triangulation" +, type = "Document" +, number = 107 +, institution = "CAD Group, Cambridge Univ." +, address = "Cambridge, England" +, year = 1980 } @article{w-stpp-83 -, author = "B. W{\"o}rdenweber" -, title = "Surface Triangulation for Picture Production" -, journal = "IEEE Comput. Graph. Appl." -, volume = 3 -, month = nov -, year = 1983 -, pages = "45--51" -, annote = "Triangulation of polyhedra for representation. Claims - $N\log N$ for triangulation of a polygon. (I don't - believe this.)" +, author = "B. W{\"o}rdenweber" +, title = "Surface Triangulation for Picture Production" +, journal = "IEEE Comput. Graph. Appl." +, volume = 3 +, month = nov +, year = 1983 +, pages = "45--51" +, annote = "Triangulation of polyhedra for representation. Claims + $N\log N$ for triangulation of a polygon. (I don't + believe this.)" } @techreport{w-vt-?? -, author = "B. W{\"o}rdenweber" -, title = "Volume-triangulation" -, type = "Document" -, number = 110 -, institution = "CAD Group, Cambridge Univ." -, address = "Cambridge, England" -, year = "??" +, author = "B. W{\"o}rdenweber" +, title = "Volume-triangulation" +, type = "Document" +, number = 110 +, institution = "CAD Group, Cambridge Univ." +, address = "Cambridge, England" +, year = "??" } @inproceedings{ws-msadp-92 -, author = "Marcel Worring and Arnold W. M. Smeulders" -, title = "Multi-Scale Analysis of Discrete Point Sets" -, booktitle = "Abstracts 8th European Workshop Comput. Geom." -, nickname = "CG '92" -, site = "Utrecht" -, publisher = "Utrecht University" -, year = 1992 -, pages = "33--37" -, update = "00.03 bibrelex" +, author = "Marcel Worring and Arnold W. M. Smeulders" +, title = "Multi-Scale Analysis of Discrete Point Sets" +, booktitle = "Abstracts 8th European Workshop Comput. Geom." +, nickname = "CG '92" +, site = "Utrecht" +, publisher = "Utrecht University" +, year = 1992 +, pages = "33--37" +, update = "00.03 bibrelex" } @phdthesis{w-pdtpu-93 -, author = "B. Darce Wright" -, title = "Planification de trajectoires pour un robot mobile sur un terrain accident{\'e}" -, school = "Ecole Nationale Sup{\'e}rieure des T{\'e}lecommunications" -, year = 1993 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "B. Darce Wright" +, title = "Planification de trajectoires pour un robot mobile sur un terrain accident{\'e}" +, school = "Ecole Nationale Sup{\'e}rieure des T{\'e}lecommunications" +, year = 1993 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{w-tsshl-83 -, author = "T. J. Wright" -, title = "A two-space solution to the hidden line problem for plotting functions of two variables" -, journal = "IEEE Trans. Comput." -, volume = "C-32" -, number = 1 -, year = 1983 -, pages = "28--33" -, update = "98.03 bibrelex" +, author = "T. J. Wright" +, title = "A two-space solution to the hidden line problem for plotting functions of two variables" +, journal = "IEEE Trans. Comput." +, volume = "C-32" +, number = 1 +, year = 1983 +, pages = "28--33" +, update = "98.03 bibrelex" } @article{wbr-cgpma-86 -, author = "A. Y. Wu and S. K. Bhaskar and A. Rosenfeld" -, title = "Computation of geometric properties from the medial axis transform in {$O(n \log n)$} time" -, journal = "Comput. Vision Graph. Image Process." -, volume = 34 -, year = 1986 -, pages = "76--92" -, update = "98.07 bibrelex" +, author = "A. Y. Wu and S. K. Bhaskar and A. Rosenfeld" +, title = "Computation of geometric properties from the medial axis transform in {$O(n \log n)$} time" +, journal = "Comput. Vision Graph. Image Process." +, volume = 34 +, year = 1986 +, pages = "76--92" +, update = "98.07 bibrelex" } @techreport{whr-tsuq-80 -, author = "A. Y. Wu and T. H. Hong and A. Rosenfeld" -, title = "Threshold selection using quadtrees" -, type = "Report" -, number = "TR-886" -, institution = "Dept. Comput. Sci., Univ. Maryland" -, address = "College Park, MD" -, year = 1980 +, author = "A. Y. Wu and T. H. Hong and A. Rosenfeld" +, title = "Threshold selection using quadtrees" +, type = "Report" +, number = "TR-886" +, institution = "Dept. Comput. Sci., Univ. Maryland" +, address = "College Park, MD" +, year = 1980 } @incollection{w-filap-94 -, author = "Kevin Wu" -, title = "Fast Inversion of Length- and Angle-Preserving Matrices" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "199--206" -, keywords = "eigenvalue, 4x4 matrix" -, update = "94.09 heckbert" -, annote = "Presents optimized formulas and code to compute the +, author = "Kevin Wu" +, title = "Fast Inversion of Length- and Angle-Preserving Matrices" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "199--206" +, keywords = "eigenvalue, 4x4 matrix" +, update = "94.09 heckbert" +, annote = "Presents optimized formulas and code to compute the inverse of a 4x4 matrix that is known to be length- and angle-preserving (consisting of only rotation, translation, and uniform scaling). Contains C code." } @phdthesis{w-pop-87 -, author = "Peter Yick Fai Wu" -, title = "Polygon Overlay in {Prolog}" -, school = "Electrical, Computer, and Systems Engineering Dept., Rensselaer Polytechnic Institute" -, year = 1987 -, keywords = "doctoral thesis, intersection, artificial intelligence" -, update = "93.09 franklin" +, author = "Peter Yick Fai Wu" +, title = "Polygon Overlay in {Prolog}" +, school = "Electrical, Computer, and Systems Engineering Dept., Rensselaer Polytechnic Institute" +, year = 1987 +, keywords = "doctoral thesis, intersection, artificial intelligence" +, update = "93.09 franklin" } @article{wf-lpacm-90 -, author = "Peter Y. F. Wu and Wm. Randolph Franklin" -, title = "A Logic Programming Approach to Cartographic Map Overlay" -, journal = "Canadian Computational Intelligence Journal" -, volume = 6 -, number = 2 -, year = 1990 -, pages = "61--70" -, keywords = "artificial intelligence, intersection" -, update = "93.09 franklin" +, author = "Peter Y. F. Wu and Wm. Randolph Franklin" +, title = "A Logic Programming Approach to Cartographic Map Overlay" +, journal = "Canadian Computational Intelligence Journal" +, volume = 6 +, number = 2 +, year = 1990 +, pages = "61--70" +, keywords = "artificial intelligence, intersection" +, update = "93.09 franklin" } @article{w-dpmtp-78 -, author = "W. Wu" -, title = "On the decision problem and mechanization of theorem proving in elementary geometry" -, journal = "Sci. Sinica" -, volume = 21 -, year = 1978 -, pages = "150--172" -, update = "98.03 bibrelex" +, author = "W. Wu" +, title = "On the decision problem and mechanization of theorem proving in elementary geometry" +, journal = "Sci. Sinica" +, volume = 21 +, year = 1978 +, pages = "150--172" +, update = "98.03 bibrelex" } @incollection{w-sramt-84 -, author = "W. Wu" -, title = "Some recent advances in mechanical theorem proving of geometries" -, editor = "W. W. Bledsoe" -, booktitle = "Theorem Proving: After 25 Years" -, publisher = "American Mathematical Society" -, year = 1984 -, update = "98.03 bibrelex" +, author = "W. Wu" +, title = "Some recent advances in mechanical theorem proving of geometries" +, editor = "W. W. Bledsoe" +, booktitle = "Theorem Proving: After 25 Years" +, publisher = "American Mathematical Society" +, year = 1984 +, update = "98.03 bibrelex" } @mastersthesis{w-rsbtt-84 -, author = "W. C. Wu" -, title = "A robust simulation-before-test technique for nonlinear analog fault diagnosis" -, school = "Electrical Engineering Department, University of Maryland" -, year = 1984 -, keywords = "master thesis" -, update = "98.03 bibrelex" +, author = "W. C. Wu" +, title = "A robust simulation-before-test technique for nonlinear analog fault diagnosis" +, school = "Electrical Engineering Department, University of Maryland" +, year = 1984 +, keywords = "master thesis" +, update = "98.03 bibrelex" } @article{w-bpmtp-84 -, author = "W. T. Wu" -, title = "Basic Principles of Mechanical Theorem Proving in Elementary Geometrics" -, journal = "J. Syst. Sci. Math. Sci." -, volume = 4 -, year = 1984 -, pages = "207--235" -, update = "98.03 bibrelex" +, author = "W. T. Wu" +, title = "Basic Principles of Mechanical Theorem Proving in Elementary Geometrics" +, journal = "J. Syst. Sci. Math. Sci." +, volume = 4 +, year = 1984 +, pages = "207--235" +, update = "98.03 bibrelex" } @article{w-tl-62 -, author = "W.-T. Wu" -, title = "On a theorem of {Leray}" -, journal = "Chinese Math." -, volume = 2 -, year = 1962 -, pages = "398--410" -, update = "98.03 bibrelex" +, author = "W.-T. Wu" +, title = "On a theorem of {Leray}" +, journal = "Chinese Math." +, volume = 2 +, year = 1962 +, pages = "398--410" +, update = "98.03 bibrelex" } @incollection{w-ltsbv-92 -, author = "X. Wu" -, title = "A linear-time simple bounding volume algorithm" -, editor = "D. Kirk" -, booktitle = "Graphics Gems III" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1992 -, update = "98.07 bibrelex" +, author = "X. Wu" +, title = "A linear-time simple bounding volume algorithm" +, editor = "D. Kirk" +, booktitle = "Graphics Gems III" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1992 +, update = "98.07 bibrelex" } @article{w-oqms-91 -, author = "X. Wu" -, title = "Optimal Quantization by Matrix Searching" -, journal = "J. Algorithms" -, volume = 12 -, year = 1991 -, pages = "663--673" -, update = "98.03 bibrelex" +, author = "X. Wu" +, title = "Optimal Quantization by Matrix Searching" +, journal = "J. Algorithms" +, volume = 12 +, year = 1991 +, pages = "663--673" +, update = "98.03 bibrelex" } @article{wr-dsge-89 -, author = "X. Wu and J. G. Rokne" -, title = "Double-step generation of ellipses" -, journal = "IEEE Comput. Graph. Appl." -, volume = 9 -, year = 1989 -, pages = "56--69" -, keywords = "design of algorithms, computer graphics, discrete geometry, approximation, incrementation, average-case analysis, curves, two-dimensional" +, author = "X. Wu and J. G. Rokne" +, title = "Double-step generation of ellipses" +, journal = "IEEE Comput. Graph. Appl." +, volume = 9 +, year = 1989 +, pages = "56--69" +, keywords = "design of algorithms, computer graphics, discrete geometry, approximation, incrementation, average-case analysis, curves, two-dimensional" } @article{wr-dsigl-87 -, author = "X. Wu and J. G. Rokne" -, title = "Double-step incremental generation of lines and circles" -, journal = "Comput. Vision Graph. Image Process." -, volume = 37 -, year = 1987 -, pages = "331--344" -, keywords = "design of algorithms, computer graphics, discrete geometry, approximation, incrementation, average-case analysis, lines, circles, two-dimensional" +, author = "X. Wu and J. G. Rokne" +, title = "Double-step incremental generation of lines and circles" +, journal = "Comput. Vision Graph. Image Process." +, volume = 37 +, year = 1987 +, pages = "331--344" +, keywords = "design of algorithms, computer graphics, discrete geometry, approximation, incrementation, average-case analysis, lines, circles, two-dimensional" } @article{wr-pdcc-89 -, author = "X. Wu and J. G. Rokne" -, title = "On properties of discretized convex curves" -, journal = "IEEE Trans. Pattern Anal. Mach. Intell." -, volume = 11 -, year = 1989 -, pages = "217--223" -, keywords = "discrete geometry, approximation, incrementation, curves, two-dimensional, convex" +, author = "X. Wu and J. G. Rokne" +, title = "On properties of discretized convex curves" +, journal = "IEEE Trans. Pattern Anal. Mach. Intell." +, volume = 11 +, year = 1989 +, pages = "217--223" +, keywords = "discrete geometry, approximation, incrementation, curves, two-dimensional, convex" } @article{wwsw-rspms-87 -, author = "Y.-F. Wu and P. Widmayer and M. D. F. Schlag and C. K. Wong" -, title = "Rectilinear Shortest Paths and Minimum Spanning Trees in the Presence of Rectilinear Obstacles" -, journal = "IEEE Trans. Comput." -, volume = "C-36" -, number = 3 -, month = mar -, year = 1987 -, update = "93.09 milone+mitchell" +, author = "Y.-F. Wu and P. Widmayer and M. D. F. Schlag and C. K. Wong" +, title = "Rectilinear Shortest Paths and Minimum Spanning Trees in the Presence of Rectilinear Obstacles" +, journal = "IEEE Trans. Comput." +, volume = "C-36" +, number = 3 +, month = mar +, year = 1987 +, update = "93.09 milone+mitchell" } @article{w-cbdd-65 -, author = "A. D. Wyner" -, title = "Capabilities of bounded discrepancy decoding" -, journal = "AT\&T Tech. J." -, volume = 44 -, year = 1965 -, pages = "1061--1122" -, update = "98.03 bibrelex" +, author = "A. D. Wyner" +, title = "Capabilities of bounded discrepancy decoding" +, journal = "AT\&T Tech. J." +, volume = 44 +, year = 1965 +, pages = "1061--1122" +, update = "98.03 bibrelex" } @inproceedings{wm-sptrr-93 -, author = "E. Wynters and Joseph S. B. Mitchell" -, title = "Shortest paths for a two-robot rendez-vous" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "216--221" -, cites = "gm-osacv-87, m-lpltw-84, mrw-mlpop-90, mw-omcpo-90i, psr-cgcsp-89, ps-cgi-85, rs-spesp-85, w-cvgnl-85, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 93.09 milone+mitchell" +, author = "E. Wynters and Joseph S. B. Mitchell" +, title = "Shortest paths for a two-robot rendez-vous" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "216--221" +, cites = "gm-osacv-87, m-lpltw-84, mrw-mlpop-90, mw-omcpo-90i, psr-cgcsp-89, ps-cgi-85, rs-spesp-85, w-cvgnl-85, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 93.09 milone+mitchell" } @phdthesis{w-ompmp-91 -, author = "E. L. Wynters" -, title = "Optimal motion planning for multiple point robots in the plane" -, type = "Ph.{D}. Thesis" -, school = "App. Math., Cornell Univ." -, address = "Ithaca, NY" -, year = 1991 -, keywords = "doctoral thesis" +, author = "E. L. Wynters" +, title = "Optimal motion planning for multiple point robots in the plane" +, type = "Ph.{D}. Thesis" +, school = "App. Math., Cornell Univ." +, address = "Ithaca, NY" +, year = 1991 +, keywords = "doctoral thesis" } @inproceedings{x-gachr-96 -, author = "Patrick G. Xavier" -, title = "A Generic Algorithm for Constructing Hierarchical Representations of Geometric Objects" -, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." -, year = 1996 -, pages = "3644--3651" -, keywords = "BV trees, bounding volume trees, bottom-up construction, collision detection" -, update = "98.03 mitchell" +, author = "Patrick G. Xavier" +, title = "A Generic Algorithm for Constructing Hierarchical Representations of Geometric Objects" +, booktitle = "Proc. IEEE Internat. Conf. Robot. Autom." +, year = 1996 +, pages = "3644--3651" +, keywords = "BV trees, bounding volume trees, bottom-up construction, collision detection" +, update = "98.03 mitchell" } @inproceedings{xv-dvdsp-96 -, author = "J. Xia and A. Varshney" -, title = "Dynamic View-Dependent Simplification for Polygonal Models" -, booktitle = "IEEE Visualization '96 Proceedings" -, publisher = "ACM/SIGGRAPH Press" -, address = "San Francisco, CA" -, month = oct -, year = 1996 -, pages = "327--334" -, update = "98.03 mitchell" +, author = "J. Xia and A. Varshney" +, title = "Dynamic View-Dependent Simplification for Polygonal Models" +, booktitle = "IEEE Visualization '96 Proceedings" +, publisher = "ACM/SIGGRAPH Press" +, address = "San Francisco, CA" +, month = oct +, year = 1996 +, pages = "327--334" +, update = "98.03 mitchell" } @article{xev-artld-97 -, author = "J. C. Xia and J. El-Sana and A. Varshney" -, title = "Adaptive Real-Time Level-of-Detail Based Rendering for Polygonal Meshes" -, journal = "IEEE Trans. Visualizat. Comput. Graph." -, volume = 3 -, number = 2 -, month = apr -, year = 1997 -, pages = "171--183" -, update = "97.07 held" +, author = "J. C. Xia and J. El-Sana and A. Varshney" +, title = "Adaptive Real-Time Level-of-Detail Based Rendering for Polygonal Meshes" +, journal = "IEEE Trans. Visualizat. Comput. Graph." +, volume = 3 +, number = 2 +, month = apr +, year = 1997 +, pages = "171--183" +, update = "97.07 held" } @inproceedings{xhm-fesps-99 -, author = "Xinyu Xiang and Martin Held and Joseph S. B. Mitchell" -, title = "Fast and Effective Stripification of Polygonal Surface Models" -, booktitle = "ACM Sympos. Interactive 3D Graphics" -, year = 1999 -, update = "01.07 orourke" +, author = "Xinyu Xiang and Martin Held and Joseph S. B. Mitchell" +, title = "Fast and Effective Stripification of Polygonal Surface Models" +, booktitle = "ACM Sympos. Interactive 3D Graphics" +, year = 1999 +, update = "01.07 orourke" } @phdthesis{x-mwtpp-92 -, author = "Y. Xu" -, title = "Minimum weight triangulation problem of a planar point set" -, school = "Institute of Applied Mathematics, Academia Sinica" -, address = "Beijing, China" -, year = 1992 -, keywords = "doctoral thesis" -, update = "98.03 bibrelex" +, author = "Y. Xu" +, title = "Minimum weight triangulation problem of a planar point set" +, school = "Institute of Applied Mathematics, Academia Sinica" +, address = "Beijing, China" +, year = 1992 +, keywords = "doctoral thesis" +, update = "98.03 bibrelex" } @article{x-dis-90 -, author = "Zhiming Xu" -, title = "Discrete Interpolation Surface" -, journal = "Journal of Computer Science and Technology" -, volume = 5 -, number = 4 -, month = oct -, year = 1990 -, pages = "329--332" -, keywords = "discrete interpolation surface, Voronoi diagram, scattered interpolation surface" -, abstract = "In this paper, a method to construct a surface with - point interpolation and normal interpolation is - presented. An algorithm to construct the discrete - interpolation is also presented, which has the time - complexity O(Nlog N), where N in the number of - scattered points. (Author abstract) 6 Refs." +, author = "Zhiming Xu" +, title = "Discrete Interpolation Surface" +, journal = "Journal of Computer Science and Technology" +, volume = 5 +, number = 4 +, month = oct +, year = 1990 +, pages = "329--332" +, keywords = "discrete interpolation surface, Voronoi diagram, scattered interpolation surface" +, abstract = "In this paper, a method to construct a surface with + point interpolation and normal interpolation is + presented. An algorithm to construct the discrete + interpolation is also presented, which has the time + complexity O(Nlog N), where N in the number of + scattered points. (Author abstract) 6 Refs." } @article{xs-rrppu-95 -, author = "Z. Xu and M. Suk" -, title = "Representation and reconstruction of polygons and polyhedra using hierarchical extended {Gaussian} images" -, journal = "Ann. Math. Artif. Intell." -, volume = 13 -, year = 1995 -, pages = "377--400" -, keywords = "matching, shape recognition, vision" -, update = "98.07 bibrelex, 95.09 mitchell" +, author = "Z. Xu and M. Suk" +, title = "Representation and reconstruction of polygons and polyhedra using hierarchical extended {Gaussian} images" +, journal = "Ann. Math. Artif. Intell." +, volume = 13 +, year = 1995 +, pages = "377--400" +, keywords = "matching, shape recognition, vision" +, update = "98.07 bibrelex, 95.09 mitchell" } @inproceedings{xrp-ptdae-92 -, author = "G. L. Xue and J. B. Rosen and P. M. Pardalos" -, title = "A Polynomial Time Dual Algorithm for the {Euclidean} Multifacility Location Problem" -, booktitle = "INTEGER PROGRAMMING AND COMBINATORIAL OPTIMIZATION" -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "G. L. Xue and J. B. Rosen and P. M. Pardalos" +, title = "A Polynomial Time Dual Algorithm for the {Euclidean} Multifacility Location Problem" +, booktitle = "INTEGER PROGRAMMING AND COMBINATORIAL OPTIMIZATION" +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @techreport{yd-cgalr-88 -, author = "Y. Yacoob and L. Davis" -, title = "Computational ground and airborne localization over rough terrain" -, type = "Technical {Report}" -, number = "CS-TR-2788" -, institution = "University of Maryland" -, year = 1988 -, update = "97.11 bibrelex" +, author = "Y. Yacoob and L. Davis" +, title = "Computational ground and airborne localization over rough terrain" +, type = "Technical {Report}" +, number = "CS-TR-2788" +, institution = "University of Maryland" +, year = 1988 +, update = "97.11 bibrelex" } @article{yr-vcewc-96 -, author = "R. Yagel and W. Ray" -, title = "Visibility computations for efficient walkthrough of complex environments" -, journal = "Presence" -, volume = 5 -, number = 1 -, year = 1996 -, pages = "1--16" -, update = "98.07 bibrelex" +, author = "R. Yagel and W. Ray" +, title = "Visibility computations for efficient walkthrough of complex environments" +, journal = "Presence" +, volume = 5 +, number = 1 +, year = 1996 +, pages = "1--16" +, update = "98.07 bibrelex" } @book{y-snegi-79 -, author = "I. M. Yaglom" -, title = "A simple non-euclidean geometry and its physical basis" -, publisher = "Springer-Verlag" -, year = 1979 -, update = "98.03 bibrelex" +, author = "I. M. Yaglom" +, title = "A simple non-euclidean geometry and its physical basis" +, publisher = "Springer-Verlag" +, year = 1979 +, update = "98.03 bibrelex" } @book{y-gt-61 -, author = "I. M. Yaglom" -, title = "Geometric Transformations" -, volume = 1 -, publisher = "Random House" -, year = 1961 -, precedes = "y-gt-68" -, update = "97.11 bibrelex" +, author = "I. M. Yaglom" +, title = "Geometric Transformations" +, volume = 1 +, publisher = "Random House" +, year = 1961 +, precedes = "y-gt-68" +, update = "97.11 bibrelex" } @book{y-gt-68 -, author = "I. M. Yaglom" -, title = "Geometric Transformations" -, volume = 2 -, publisher = "Random House" -, year = 1968 -, succeeds = "y-gt-61" -, update = "97.11 bibrelex" +, author = "I. M. Yaglom" +, title = "Geometric Transformations" +, volume = 2 +, publisher = "Random House" +, year = 1968 +, succeeds = "y-gt-61" +, update = "97.11 bibrelex" } @book{yb-cf-61 -, author = "I. M. Yaglom and V. G. Bolyanski" -, title = "Convex Figures" -, publisher = "English Translation, Holt, Rinehart and Winston" -, address = "New York, NY" -, year = 1961 +, author = "I. M. Yaglom and V. G. Bolyanski" +, title = "Convex Figures" +, publisher = "English Translation, Holt, Rinehart and Winston" +, address = "New York, NY" +, year = 1961 } @inproceedings{ysi-emamc-96 -, author = "Atsushi Yamada and Kenji Shimada and Takayuki Iboh" -, title = "Energy-minimizing approach to meshing curved wire-frame models" -, booktitle = "Proc. 5th International Meshing Roundtable" -, publisher = "Sandia National Laboratories" -, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" -, year = 1996 -, pages = "179--191" -, note = "Also Sand. Report 96-2301" -, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" -, update = "97.03 samitchell" +, author = "Atsushi Yamada and Kenji Shimada and Takayuki Iboh" +, title = "Energy-minimizing approach to meshing curved wire-frame models" +, booktitle = "Proc. 5th International Meshing Roundtable" +, publisher = "Sandia National Laboratories" +, address = "PO Box 5800, MS 0441, Albuquerque, NM, 87185-0441" +, year = 1996 +, pages = "179--191" +, note = "Also Sand. Report 96-2301" +, url = "http://sass577.endo.sandia.gov:80/9225/Personnel/samitch/roundtable96/accept-list.html" +, update = "97.03 samitchell" } @article{y-uaipu-85 -, author = "F. Yamaguchi" -, title = "A unified approach to interference problems using a triangle processor" -, journal = "Comput. Graph." -, volume = 19 -, number = 3 -, year = 1985 -, pages = "141--149" -, note = "Proc. SIGGRAPH '85" +, author = "F. Yamaguchi" +, title = "A unified approach to interference problems using a triangle processor" +, journal = "Comput. Graph." +, volume = 19 +, number = 3 +, year = 1985 +, pages = "141--149" +, note = "Proc. SIGGRAPH '85" } % ### others? @inproceedings{y-cfdgp-89 -, author = "F. Yamaguchi" -, title = "The Completely Four-Dimensional Geometric Processing Based on the $4 \times 4$ Determinant Method" -, editor = "L. Yonchun and others" -, booktitle = "Proc. Internat. Conf. on Computer-Aided Design and Computer Graphics" -, publisher = "Internat. Academic Publ." -, address = "Beijing, China" -, month = aug -, year = 1989 -, pages = "183--188" -, update = "93.09 held" +, author = "F. Yamaguchi" +, title = "The Completely Four-Dimensional Geometric Processing Based on the $4 \times 4$ Determinant Method" +, editor = "L. Yonchun and others" +, booktitle = "Proc. Internat. Conf. on Computer-Aided Design and Computer Graphics" +, publisher = "Internat. Academic Publ." +, address = "Beijing, China" +, month = aug +, year = 1989 +, pages = "183--188" +, update = "93.09 held" } @article{y-tf4dm-87 -, author = "Fujio Yamaguchi" -, title = "Theoretical foundations for the $4 \times 4$ determinant method in computer graphics and geometric modelling" -, journal = "Visual Comput." -, volume = 3 -, number = 2 -, month = aug -, year = 1987 -, pages = "88--97" -, keywords = "interference problems, geometric modelling, solid modelling, hidden line, surface detections, matrix, matrices" +, author = "Fujio Yamaguchi" +, title = "Theoretical foundations for the $4 \times 4$ determinant method in computer graphics and geometric modelling" +, journal = "Visual Comput." +, volume = 3 +, number = 2 +, month = aug +, year = 1987 +, pages = "88--97" +, keywords = "interference problems, geometric modelling, solid modelling, hidden line, surface detections, matrix, matrices" } @article{yn-sbgtc-97 -, author = "F. Yamaguchi and M. Niizeki" -, title = "Some Basic Geometric Test Conditions in Terms of Pluecker Coordinates and Pluecker Coefficients" -, journal = "Visual Comput." -, volume = 13 -, number = 1 -, year = 1997 -, pages = "29--41" -, update = "97.03 held" +, author = "F. Yamaguchi and M. Niizeki" +, title = "Some Basic Geometric Test Conditions in Terms of Pluecker Coordinates and Pluecker Coefficients" +, journal = "Visual Comput." +, volume = 13 +, number = 1 +, year = 1997 +, pages = "29--41" +, update = "97.03 held" } @article{yt-uabso-84 -, author = "F. Yamaguchi and T. Tokieda" -, title = "A Unified Algorithm for {Boolean} Shape Operations" -, journal = "IEEE Comput. Graph. Appl." -, volume = 4 -, month = jun -, year = 1984 -, pages = "24--27" -, annote = "Intersection etc. of polyhedra. Faces are triangulated - and winged edge data structure used. Face triangulation - algorithm: take concave vertex and cut adjacent ear(s). - Repeat for all concave vertices." +, author = "F. Yamaguchi and T. Tokieda" +, title = "A Unified Algorithm for {Boolean} Shape Operations" +, journal = "IEEE Comput. Graph. Appl." +, volume = 4 +, month = jun +, year = 1984 +, pages = "24--27" +, annote = "Intersection etc. of polyhedra. Faces are triangulated + and winged edge data structure used. Face triangulation + algorithm: take concave vertex and cut adjacent ear(s). + Repeat for all concave vertices." } @article{ytsn-aefcb-93 -, author = "F. Yamaguchi and K. Toshimitsu and H. Sato and J. Nakagawa" -, title = "An Adaptive, Error-free Computation Based on the $4 \times 4$ Determinant Method" -, journal = "Visual Comput." -, volume = 9 -, number = 4 -, month = jan -, year = 1993 -, pages = "173--181" -, keywords = "robustness, numerical stability" -, update = "93.09 held" +, author = "F. Yamaguchi and K. Toshimitsu and H. Sato and J. Nakagawa" +, title = "An Adaptive, Error-free Computation Based on the $4 \times 4$ Determinant Method" +, journal = "Visual Comput." +, volume = 9 +, number = 4 +, month = jan +, year = 1993 +, pages = "173--181" +, keywords = "robustness, numerical stability" +, update = "93.09 held" } @inproceedings{yk-lsdso-83 -, author = "K. Yamaguchi and T. L. Kunii" -, title = "A layerded data structure for an octree model" -, booktitle = "Proc. IEEE CAPAIDIM '83" -, site = "Pasadena, CA" -, year = 1983 -, update = "97.11 bibrelex" +, author = "K. Yamaguchi and T. L. Kunii" +, title = "A layerded data structure for an octree model" +, booktitle = "Proc. IEEE CAPAIDIM '83" +, site = "Pasadena, CA" +, year = 1983 +, update = "97.11 bibrelex" } @article{ykf-ordsa-84 -, author = "K. Yamaguchi and T. L. Kunii and K. Fujimura" -, title = "Octree-related data structures and algorithms" -, journal = "IEEE Comput. Graph. Appl." -, volume = 4 -, month = jan -, year = 1984 -, pages = "53--59" -, update = "97.11 bibrelex" +, author = "K. Yamaguchi and T. L. Kunii and K. Fujimura" +, title = "Octree-related data structures and algorithms" +, journal = "IEEE Comput. Graph. Appl." +, volume = 4 +, month = jan +, year = 1984 +, pages = "53--59" +, update = "97.11 bibrelex" } @inproceedings{y-cddp-94 -, author = "P. Yamamoto" -, title = "Computing the Dent Diameter of a Polygon" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "116--121" -, cites = "bs-parpv-92, ci-tpdc-83, cr-occop-89a, b-rld-91, dls-oaclc-89, ds-ehlec-85, k-ealdp-89, lpsssstwy-clcsp-87, ns-oarlc-91, ns-crldp-91, srw-gsv-91, s-mlppr-87, wy-dsv-93, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "P. Yamamoto" +, title = "Computing the Dent Diameter of a Polygon" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "116--121" +, cites = "bs-parpv-92, ci-tpdc-83, cr-occop-89a, b-rld-91, dls-oaclc-89, ds-ehlec-85, k-ealdp-89, lpsssstwy-clcsp-87, ns-oarlc-91, ns-crldp-91, srw-gsv-91, s-mlppr-87, wy-dsv-93, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{ykii-avoll-88 -, author = "P. Yamamoto and K. Kato and K. Imai and H. Imai" -, title = "Algorithms for vertical and orthogonal {$L_{1}$} linear approximation of points" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "352--361" -, cites = "as-lce-73, b-lbact-83, c-lp-83, csy-khrp-87, eg-tsa-86, ew-cbtda-86, elss-dgpps-73, iky-ltall-87, lw-gcslp-86, m-ltalp-83, m-lpltw-84, mn-salfl-80, sw-olla-87, ZZZ" -, update = "98.03 bibrelex" +, author = "P. Yamamoto and K. Kato and K. Imai and H. Imai" +, title = "Algorithms for vertical and orthogonal {$L_{1}$} linear approximation of points" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "352--361" +, cites = "as-lce-73, b-lbact-83, c-lp-83, csy-khrp-87, eg-tsa-86, ew-cbtda-86, elss-dgpps-73, iky-ltall-87, lw-gcslp-86, m-ltalp-83, m-lpltw-84, mn-salfl-80, sw-olla-87, ZZZ" +, update = "98.03 bibrelex" } @inproceedings{yusk-smipr-97 -, author = "M. Yamashita and H. Umemoto and I. Suzuki and T. Kameda" -, title = "Searching for Mobile Intruders in a Polygonal Region by a Group of Mobile Searchers" -, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." -, year = 1997 -, pages = "448--450" -, cites = "csy-smico-95, ik-tgp-91, llglm-futwo-97, mhgjp-csg-88, o-agta-87, p-bbcra-96, p-peg-76, ssy-ssp-90, sy-smipr-92, u-sp1s-95, ZZZ" -, update = "98.07 bibrelex, 97.07 efrat" +, author = "M. Yamashita and H. Umemoto and I. Suzuki and T. Kameda" +, title = "Searching for Mobile Intruders in a Polygonal Region by a Group of Mobile Searchers" +, booktitle = "Proc. 13th Annu. ACM Sympos. Comput. Geom." +, year = 1997 +, pages = "448--450" +, cites = "csy-smico-95, ik-tgp-91, llglm-futwo-97, mhgjp-csg-88, o-agta-87, p-bbcra-96, p-peg-76, ssy-ssp-90, sy-smipr-92, u-sp1s-95, ZZZ" +, update = "98.07 bibrelex, 97.07 efrat" } @inproceedings{yl-olpar-82 -, author = "B. Yamnitsky and L. A. Levin" -, title = "An old linear programming algorithm runs in polynomial time" -, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1982 -, pages = "327--328" +, author = "B. Yamnitsky and L. A. Levin" +, title = "An old linear programming algorithm runs in polynomial time" +, booktitle = "Proc. 23rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1982 +, pages = "327--328" } @inproceedings{y-csosm-92 -, author = "H. H. Yanasse" -, title = "Cutting stock: {Open} stack minimization" -, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" -, site = "Kyoto, Japan" -, year = 1992 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "H. H. Yanasse" +, title = "Cutting stock: {Open} stack minimization" +, booktitle = "Proc. 5th Franco-Japanese Days on Combinatorics and Optimization" +, site = "Kyoto, Japan" +, year = 1992 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{y-bsmwt-95 -, author = "B. Yang" -, title = "A better subgraph of the minimum weight triangulation" -, booktitle = "Proc. Internat. Conf. Comput. Combinatorics" -, year = 1995 -, pages = "452--455" -, update = "97.11 bibrelex" +, author = "B. Yang" +, title = "A better subgraph of the minimum weight triangulation" +, booktitle = "Proc. Internat. Conf. Comput. Combinatorics" +, year = 1995 +, pages = "452--455" +, update = "97.11 bibrelex" } @inproceedings{yxy-cdapp-94 -, author = "B.-T. Yang and Y.-F. Xu and Z.-Y. You" -, title = "A Chain Decomposition Algorithm for the Proof of a Property on Minimum Weight Triangulations" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "423--427" -, update = "99.11 bibrelex, 97.11 bibrelex, 96.05 mitchell" +, author = "B.-T. Yang and Y.-F. Xu and Z.-Y. You" +, title = "A Chain Decomposition Algorithm for the Proof of a Property on Minimum Weight Triangulations" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "423--427" +, update = "99.11 bibrelex, 97.11 bibrelex, 96.05 mitchell" } @techreport{ylw-rpror-92 -, author = "C. Yang and D. Lee and C. Wong" -, title = "Rectilinear Paths Among Rectilinear Obstacles Revisited" -, institution = "Dept. of EE \& CS, Northwestern Univ." -, year = 1992 -, precedes = "ylw-rppro-95" -, update = "96.05 mitchell" +, author = "C. Yang and D. Lee and C. Wong" +, title = "Rectilinear Paths Among Rectilinear Obstacles Revisited" +, institution = "Dept. of EE \& CS, Northwestern Univ." +, year = 1992 +, precedes = "ylw-rppro-95" +, update = "96.05 mitchell" } @article{yl-nannp-79 -, author = "C. C. Yang and D. T. Lee" -, title = "A note on the all nearest-neighbor problem for convex polygons" -, journal = "Inform. Process. Lett." -, volume = 8 -, year = 1979 -, pages = "193--194" +, author = "C. C. Yang and D. T. Lee" +, title = "A note on the all nearest-neighbor problem for convex polygons" +, journal = "Inform. Process. Lett." +, volume = 8 +, year = 1979 +, pages = "193--194" } @inproceedings{ycl-srpaw-89 -, author = "C. D. Yang and T. H. Chen and D. T. Lee" -, title = "Shortest rectilinear path among weighted rectangles" -, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" -, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" -, address = "Fukuoka, Japan" -, year = 1989 -, pages = "1--8" -, keywords = "weighted regions, segment trees, plane sweep" -, update = "95.09 mitchell" +, author = "C. D. Yang and T. H. Chen and D. T. Lee" +, title = "Shortest rectilinear path among weighted rectangles" +, booktitle = "Proceedings of the International Workshop on Discrete Algorithms and Complexity" +, publisher = "Institute of Electronics, Information and Communication Engineers (IEICE), Tokyo" +, address = "Fukuoka, Japan" +, year = 1989 +, pages = "1--8" +, keywords = "weighted regions, segment trees, plane sweep" +, update = "95.09 mitchell" } @article{ycl-srpwr-90 -, author = "C. D. Yang and T. H. Chen and D. T. Lee" -, title = "Shortest rectilinear paths among weighted rectangles" -, journal = "J. Inform. Proc." -, volume = 13 -, number = 4 -, year = 1990 -, pages = "456--462" -, update = "98.03 bibrelex" +, author = "C. D. Yang and T. H. Chen and D. T. Lee" +, title = "Shortest rectilinear paths among weighted rectangles" +, journal = "J. Inform. Proc." +, volume = 13 +, number = 4 +, year = 1990 +, pages = "456--462" +, update = "98.03 bibrelex" } @techreport{ylw-bdpot-91 -, author = "C. D. Yang and D. T. Lee and C. K. Wong" -, title = "On bends and distances of paths among obstacles in two-layer interconnection model" -, type = "Technical {Report}" -, institution = "Northwestern University" -, year = 1991 -, update = "96.05 mitchell, 93.09 milone+mitchell" +, author = "C. D. Yang and D. T. Lee and C. K. Wong" +, title = "On bends and distances of paths among obstacles in two-layer interconnection model" +, type = "Technical {Report}" +, institution = "Northwestern University" +, year = 1991 +, update = "96.05 mitchell, 93.09 milone+mitchell" } @article{ylw-bdpot-94 -, author = "C. D. Yang and D. T. Lee and C. K. Wong" -, title = "On bends and distances of paths among obstacles in two-layer interconnection model" -, journal = "IEEE Trans. Comput." -, volume = 43 -, number = 6 -, year = 1994 -, pages = "711--724" -, succeeds = "ylw-bdpot-91" -, update = "96.05 mitchell" +, author = "C. D. Yang and D. T. Lee and C. K. Wong" +, title = "On bends and distances of paths among obstacles in two-layer interconnection model" +, journal = "IEEE Trans. Comput." +, volume = 43 +, number = 6 +, year = 1994 +, pages = "711--724" +, succeeds = "ylw-bdpot-91" +, update = "96.05 mitchell" } @inproceedings{ylw-blrpg-91 -, author = "C. D. Yang and D. T. Lee and C. K. Wong" -, title = "On bends and lengths of rectilinear paths: a graph-theoretic approach" -, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 519 -, publisher = "Springer-Verlag" -, year = 1991 -, pages = "320--330" -, precedes = "ylw-blrpg-92" +, author = "C. D. Yang and D. T. Lee and C. K. Wong" +, title = "On bends and lengths of rectilinear paths: a graph-theoretic approach" +, booktitle = "Proc. 2nd Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 519 +, publisher = "Springer-Verlag" +, year = 1991 +, pages = "320--330" +, precedes = "ylw-blrpg-92" } @article{ylw-blrpg-92 -, author = "C. D. Yang and D. T. Lee and C. K. Wong" -, title = "On bends and lengths of rectilinear paths: a graph theoretic approach" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 2 -, number = 1 -, year = 1992 -, pages = "61--74" -, keywords = "path planning, shortest path, minimum-bend path, rectilinear obstacles, graph-theoretic approach" -, succeeds = "ylw-blrpg-91" +, author = "C. D. Yang and D. T. Lee and C. K. Wong" +, title = "On bends and lengths of rectilinear paths: a graph theoretic approach" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 2 +, number = 1 +, year = 1992 +, pages = "61--74" +, keywords = "path planning, shortest path, minimum-bend path, rectilinear obstacles, graph-theoretic approach" +, succeeds = "ylw-blrpg-91" } @techreport{ylw-ptfrp-92 -, author = "C. D. Yang and D. T. Lee and C. K. Wong" -, title = "Problem transformation for finding rectilinear paths among obstacles in two-layer interconnection model" -, type = "Technical {Report}" -, institution = "Northwestern University" -, year = 1992 -, update = "96.05 mitchell, 93.09 milone+mitchell" -, annote = "This is under revision now (Jan, 1996) for a journal." +, author = "C. D. Yang and D. T. Lee and C. K. Wong" +, title = "Problem transformation for finding rectilinear paths among obstacles in two-layer interconnection model" +, type = "Technical {Report}" +, institution = "Northwestern University" +, year = 1992 +, update = "96.05 mitchell, 93.09 milone+mitchell" +, annote = "This is under revision now (Jan, 1996) for a journal." } @techreport{ylw-rppro-92 -, author = "C. D. Yang and D. T. Lee and C. K. Wong" -, title = "Rectilinear paths problems among rectilinear obstacles revisited" -, type = "Technical {Report}" -, institution = "Northwestern University" -, year = 1992 -, update = "93.09 milone+mitchell" +, author = "C. D. Yang and D. T. Lee and C. K. Wong" +, title = "Rectilinear paths problems among rectilinear obstacles revisited" +, type = "Technical {Report}" +, institution = "Northwestern University" +, year = 1992 +, update = "93.09 milone+mitchell" } @article{ylw-rppro-95 -, author = "C. D. Yang and D. T. Lee and C. K. Wong" -, title = "Rectilinear paths problems among rectilinear obstacles revisited" -, journal = "SIAM J. Comput." -, volume = 24 -, year = 1995 -, pages = "457--472" -, keywords = "shortest paths, rectilinear geometry, bicriteria paths, VLSI, wire routing" -, succeeds = "ylw-rpror-92" -, update = "98.03 mitchell, 96.05 mitchell" -, annote = "They consider shortest paths (also MST) in the $L_1$ geodesic +, author = "C. D. Yang and D. T. Lee and C. K. Wong" +, title = "Rectilinear paths problems among rectilinear obstacles revisited" +, journal = "SIAM J. Comput." +, volume = 24 +, year = 1995 +, pages = "457--472" +, keywords = "shortest paths, rectilinear geometry, bicriteria paths, VLSI, wire routing" +, succeeds = "ylw-rpror-92" +, update = "98.03 mitchell, 96.05 mitchell" +, annote = "They consider shortest paths (also MST) in the $L_1$ geodesic metric. They use a path-preserving graph approach, together with segment draggin. For a set of disjoint rectilinear obstacles having $m$ edges, $t$ of which are ``extreme'' (locally -- having @@ -150089,1139 +150089,1139 @@ @article{ylw-rppro-95 } @unpublished{ygkm-mdidq- -, author = "J. Yang and H. Gould and W. Klein and R. Mountain" -, title = "Molecular dynamics investigation of deeply quenched liquids" -, note = "To appear" -, update = "98.07 bibrelex" +, author = "J. Yang and H. Gould and W. Klein and R. Mountain" +, title = "Molecular dynamics investigation of deeply quenched liquids" +, note = "To appear" +, update = "98.07 bibrelex" } @article{yl-nvweu-96 -, author = "M. Yang and E. Lee" -, title = "{NC} Verification for Wire-EDM Using an R-Map" -, journal = "Comput. Aided Design" -, volume = 28 -, number = 9 -, month = sep -, year = 1996 -, pages = "733--740" -, update = "97.03 held" +, author = "M. Yang and E. Lee" +, title = "{NC} Verification for Wire-EDM Using an R-Map" +, journal = "Comput. Aided Design" +, volume = 28 +, number = 9 +, month = sep +, year = 1996 +, pages = "733--740" +, update = "97.03 held" } @article{ysc-rdta-92 -, author = "T.-C. Yang and S. Y. Shin and K.-Y. Chwa" -, title = "Rolling Discs and Their Applications" -, journal = "J. of Design and Manufacturing" -, volume = 2 -, year = 1992 -, pages = "71--82" -, keywords = "Voronoi diagrams, offsetting" -, update = "93.09 held" +, author = "T.-C. Yang and S. Y. Shin and K.-Y. Chwa" +, title = "Rolling Discs and Their Applications" +, journal = "J. of Design and Manufacturing" +, volume = 2 +, year = 1992 +, pages = "71--82" +, keywords = "Voronoi diagrams, offsetting" +, update = "93.09 held" } @inproceedings{yw-ossaw-72 -, author = "Y. Y. Yang and O. Wing" -, title = "Optimal and suboptimal solution algorithms for the wiring problem" -, booktitle = "IEEE International Symposium on Circuit Theory" -, year = 1972 -, pages = "154--158" -, update = "98.07 bibrelex" +, author = "Y. Y. Yang and O. Wing" +, title = "Optimal and suboptimal solution algorithms for the wiring problem" +, booktitle = "IEEE International Symposium on Circuit Theory" +, year = 1972 +, pages = "154--158" +, update = "98.07 bibrelex" } @inproceedings{y-satif-97 -, author = "Zaifu Yang" -, title = "A Simplicial Algorithm for Testing the Integral Feasibility of Arbitrary Simplices" -, booktitle = "Abstracts 13th European Workshop Comput. Geom." -, nickname = "CG '97" -, site = "W{\"u}rzburg" -, publisher = "Universit{\"a}t W{\"u}rzburg" -, year = 1997 -, pages = 45 -, cites = "ZZZ" -, update = "00.03 bibrelex, 98.07 bibrelex" +, author = "Zaifu Yang" +, title = "A Simplicial Algorithm for Testing the Integral Feasibility of Arbitrary Simplices" +, booktitle = "Abstracts 13th European Workshop Comput. Geom." +, nickname = "CG '97" +, site = "W{\"u}rzburg" +, publisher = "Universit{\"a}t W{\"u}rzburg" +, year = 1997 +, pages = 45 +, cites = "ZZZ" +, update = "00.03 bibrelex, 98.07 bibrelex" } @article{y-edp-81 -, author = "M. Yannakakis" -, title = "Edge deletion problems" -, journal = "SIAM J. Comput." -, volume = "??" -, year = 1981 -, pages = "297--309" -, update = "97.11 bibrelex" +, author = "M. Yannakakis" +, title = "Edge deletion problems" +, journal = "SIAM J. Comput." +, volume = "??" +, year = 1981 +, pages = "297--309" +, update = "97.11 bibrelex" } @article{y-cpodp-82 -, author = "M. Yannakakis" -, title = "The complexity of the partial order dimension problem" -, journal = "SIAM J. Algebraic Discrete Methods" -, volume = 3 -, number = 3 -, year = 1982 -, pages = "351--358" -, update = "98.11 bibrelex" +, author = "M. Yannakakis" +, title = "The complexity of the partial order dimension problem" +, journal = "SIAM J. Algebraic Discrete Methods" +, volume = 3 +, number = 3 +, year = 1982 +, pages = "351--358" +, update = "98.11 bibrelex" } @inproceedings{ypk-lpsfd-79 -, author = "M. Yannakakis and C. H. Papadimitriou and H. T. Kung" -, title = "Locking policies: safety and freedom from deadlock" -, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1979 -, pages = "286--297" -, keywords = "database theory" -, annote = "closure of union of isooriented rectangles" +, author = "M. Yannakakis and C. H. Papadimitriou and H. T. Kung" +, title = "Locking policies: safety and freedom from deadlock" +, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1979 +, pages = "286--297" +, keywords = "database theory" +, annote = "closure of union of isooriented rectangles" } @inproceedings{y-pctum-77 -, author = "A. Yao" -, title = "Probabilistic computation: towards a unified measure of complexity" -, booktitle = "Proc. 18th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1977 -, pages = "222--227" -, update = "97.03 gaertner+salinger" +, author = "A. Yao" +, title = "Probabilistic computation: towards a unified measure of complexity" +, booktitle = "Proc. 18th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1977 +, pages = "222--227" +, update = "97.03 gaertner+salinger" } @article{y-lbfch-81 -, author = "A. C. Yao" -, title = "A lower bound to finding convex hulls" -, journal = "J. ACM" -, volume = 28 -, year = 1981 -, pages = "780--787" +, author = "A. C. Yao" +, title = "A lower bound to finding convex hulls" +, journal = "J. ACM" +, volume = 28 +, year = 1981 +, pages = "780--787" } @article{y-oafms-75 -, author = "A. C. Yao" -, title = "An {$O(|E| \log\log |V|)$} algorithm for finding minimum spanning trees" -, journal = "Inform. Process. Lett." -, volume = 4 -, year = 1975 -, succeeds = "y-oamst-74" -, update = "93.05 jones" +, author = "A. C. Yao" +, title = "An {$O(|E| \log\log |V|)$} algorithm for finding minimum spanning trees" +, journal = "Inform. Process. Lett." +, volume = 4 +, year = 1975 +, succeeds = "y-oamst-74" +, update = "93.05 jones" } @techreport{y-oamst-74 -, author = "A. C. Yao" -, title = "An {$O(|E| \log\log |V|)$} algorithm for minimum spanning trees" -, type = "Report" -, number = "UIUCDCS-R-74-691" -, institution = "Univ. Illinois" -, address = "Urbana, IL" -, year = 1974 -, precedes = "y-oafms-75" -, update = "93.05 jones" +, author = "A. C. Yao" +, title = "An {$O(|E| \log\log |V|)$} algorithm for minimum spanning trees" +, type = "Report" +, number = "UIUCDCS-R-74-691" +, institution = "Univ. Illinois" +, address = "Urbana, IL" +, year = 1974 +, precedes = "y-oafms-75" +, update = "93.05 jones" } @inproceedings{y-fafms-77 -, author = "A. C. Yao" -, title = "Fast algorithms for finding minimum spanning trees in $k$ dimensions" -, booktitle = "Proc. 15th Allerton Conf. Commun. Control Comput." -, year = 1977 -, pages = "553--556" -, precedes = "y-cmstk-82" -, update = "93.09 jones" +, author = "A. C. Yao" +, title = "Fast algorithms for finding minimum spanning trees in $k$ dimensions" +, booktitle = "Proc. 15th Allerton Conf. Commun. Control Comput." +, year = 1977 +, pages = "553--556" +, precedes = "y-cmstk-82" +, update = "93.09 jones" } @article{y-lbact-91 -, author = "A. C. Yao" -, title = "Lower bounds for algebraic computation trees with integer inputs" -, journal = "SIAM J. Comput." -, volume = 20 -, number = 4 -, year = 1991 -, pages = "655--668" -, update = "98.11 bibrelex, 96.05 smid" +, author = "A. C. Yao" +, title = "Lower bounds for algebraic computation trees with integer inputs" +, journal = "SIAM J. Comput." +, volume = 20 +, number = 4 +, year = 1991 +, pages = "655--668" +, update = "98.11 bibrelex, 96.05 smid" } @article{y-cmstk-82 -, author = "A. C. Yao" -, title = "On constructing minimum spanning trees in $k$-dimensional spaces and related problems" -, journal = "SIAM J. Comput." -, volume = 11 -, number = 4 -, year = 1982 -, pages = "721--736" -, succeeds = "y-fafms-77" -, update = "98.11 bibrelex, 93.09 jones" +, author = "A. C. Yao" +, title = "On constructing minimum spanning trees in $k$-dimensional spaces and related problems" +, journal = "SIAM J. Comput." +, volume = 11 +, number = 4 +, year = 1982 +, pages = "721--736" +, succeeds = "y-fafms-77" +, update = "98.11 bibrelex, 93.09 jones" } @inproceedings{y-ccpul-75 -, author = "A. C. Yao" -, title = "On the complexity of comparison problems using linear functions" -, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." -, year = 1975 -, pages = "85--89" +, author = "A. C. Yao" +, title = "On the complexity of comparison problems using linear functions" +, booktitle = "Proc. 16th Annu. ACM Sympos. Theory Comput." +, year = 1975 +, pages = "85--89" } @article{y-cmps-85 -, author = "A. C. Yao" -, title = "On the complexity of maintaining partial sums" -, journal = "SIAM J. Comput." -, volume = 14 -, year = 1985 -, pages = "277--288" -, succeeds = "y-sttoa-82" +, author = "A. C. Yao" +, title = "On the complexity of maintaining partial sums" +, journal = "SIAM J. Comput." +, volume = 14 +, year = 1985 +, pages = "277--288" +, succeeds = "y-sttoa-82" } @inproceedings{y-sttoa-82 -, author = "A. C. Yao" -, title = "Space-time trade-off for answering range queries" -, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." -, year = 1982 -, pages = "128--136" -, precedes = "y-cmps-85" +, author = "A. C. Yao" +, title = "Space-time trade-off for answering range queries" +, booktitle = "Proc. 14th Annu. ACM Sympos. Theory Comput." +, year = 1982 +, pages = "128--136" +, precedes = "y-cmps-85" } @inproceedings{yar-olbsp-77 -, author = "A. C. Yao and D. M. Avis and R. L. Rivest" -, title = "An {$\Omega(n^2 \log n)$} lower bound to the shortest paths problem" -, booktitle = "Proc. 9th Annu. ACM Sympos. Theory Comput." -, year = 1977 -, pages = "11--17" -, precedes = "yr-pdp-80" -, annote = "Lower bound is incorrect" +, author = "A. C. Yao and D. M. Avis and R. L. Rivest" +, title = "An {$\Omega(n^2 \log n)$} lower bound to the shortest paths problem" +, booktitle = "Proc. 9th Annu. ACM Sympos. Theory Comput." +, year = 1977 +, pages = "11--17" +, precedes = "yr-pdp-80" +, annote = "Lower bound is incorrect" } @article{yr-pdp-80 -, author = "A. C. Yao and R. L. Rivest" -, title = "On the polyhedral decision problem" -, journal = "SIAM J. Comput." -, volume = 9 -, year = 1980 -, pages = "343--347" -, succeeds = "yar-olbsp-77" +, author = "A. C. Yao and R. L. Rivest" +, title = "On the polyhedral decision problem" +, journal = "SIAM J. Comput." +, volume = 9 +, year = 1980 +, pages = "343--347" +, succeeds = "yar-olbsp-77" } @inproceedings{yy-gaddg-85 -, author = "A. C. Yao and F. F. Yao" -, title = "A general approach to {$D$}-dimensional geometric queries" -, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." -, year = 1985 -, pages = "163--168" -, update = "97.11 bibrelex, 93.09 jones" +, author = "A. C. Yao and F. F. Yao" +, title = "A general approach to {$D$}-dimensional geometric queries" +, booktitle = "Proc. 17th Annu. ACM Sympos. Theory Comput." +, year = 1985 +, pages = "163--168" +, update = "97.11 bibrelex, 93.09 jones" } @techreport{yy-crfsv-75 -, author = "A. C. Yao and F. F. Yao" -, title = "On computing the rank function for a set of vectors" -, type = "Report" -, number = "R-699" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1975 +, author = "A. C. Yao and F. F. Yao" +, title = "On computing the rank function for a set of vectors" +, type = "Report" +, number = "R-699" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1975 } @inproceedings{y-dtcbn-94 -, author = "Andrew Chi-Chih Yao" -, title = "Decision Tree Complexity and {Betti} Numbers" -, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." -, year = 1994 -, pages = "" -, update = "98.03 mitchell, 94.01 jones" +, author = "Andrew Chi-Chih Yao" +, title = "Decision Tree Complexity and {Betti} Numbers" +, booktitle = "Proc. 25th Annu. ACM Sympos. Theory Comput." +, year = 1994 +, pages = "" +, update = "98.03 mitchell, 94.01 jones" } @inproceedings{y-lbact-89 -, author = "A. C. C. Yao" -, title = "Lower bounds for algebraic computation rees with integer inputs" -, booktitle = "Proc. 30th IEEE FOCS" -, year = 1989 -, pages = "308--313" -, update = "98.07 bibrelex" +, author = "A. C. C. Yao" +, title = "Lower bounds for algebraic computation rees with integer inputs" +, booktitle = "Proc. 30th IEEE FOCS" +, year = 1989 +, pages = "308--313" +, update = "98.07 bibrelex" } @article{yr-sacma-91 -, author = "C. Yao and J. G. Rokne" -, title = "A straightforward algorithm for computing the medial axis of a simple polygon" -, journal = "Internat. J. Comput. Math." -, volume = 39 -, year = 1991 -, pages = "51--60" -, keywords = "design of algorithms, Voronoi diagrams, medial axis, two-dimensional" -, annote = "$O(k n)$ time" +, author = "C. Yao and J. G. Rokne" +, title = "A straightforward algorithm for computing the medial axis of a simple polygon" +, journal = "Internat. J. Comput. Math." +, volume = 39 +, year = 1991 +, pages = "51--60" +, keywords = "design of algorithms, Voronoi diagrams, medial axis, two-dimensional" +, annote = "$O(k n)$ time" } @article{yr-fc-91 -, author = "C. Yao and J. G. Rokne" -, title = "Fat curves" -, journal = "Comput. Graph. Forum" -, volume = 10 -, year = 1991 -, pages = "237--248" -, keywords = "digital geometry, computer graphics, design of algorithms, approximation, incrementation, curves, two-dimensional" +, author = "C. Yao and J. G. Rokne" +, title = "Fat curves" +, journal = "Comput. Graph. Forum" +, volume = 10 +, year = 1991 +, pages = "237--248" +, keywords = "digital geometry, computer graphics, design of algorithms, approximation, incrementation, curves, two-dimensional" } @inproceedings{y-3spia-83 -, author = "F. F. Yao" -, title = "A $3$-space partition and its applications" -, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." -, year = 1983 -, pages = "258--263" -, precedes = "ydep-psrq-89" +, author = "F. F. Yao" +, title = "A $3$-space partition and its applications" +, booktitle = "Proc. 15th Annu. ACM Sympos. Theory Comput." +, year = 1983 +, pages = "258--263" +, precedes = "ydep-psrq-89" } @incollection{y-cg-90 -, author = "F. F. Yao" -, title = "Computational Geometry" -, editor = "R. A. Earnshaw and B. Wyvill" -, booktitle = "Algorithms in Complexity" -, publisher = "Elsevier" -, address = "Amsterdam" -, year = 1990 -, pages = "345--490" -, keywords = "survey paper" -, update = "97.03 pocchiola, 93.09 goodrich" +, author = "F. F. Yao" +, title = "Computational Geometry" +, editor = "R. A. Earnshaw and B. Wyvill" +, booktitle = "Algorithms in Complexity" +, publisher = "Elsevier" +, address = "Amsterdam" +, year = 1990 +, pages = "345--490" +, keywords = "survey paper" +, update = "97.03 pocchiola, 93.09 goodrich" } @inproceedings{y-edpuq-80 -, author = "F. F. Yao" -, title = "Efficient dynamic programming using quadrangle inequalities" -, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." -, year = 1980 -, pages = "429--435" +, author = "F. F. Yao" +, title = "Efficient dynamic programming using quadrangle inequalities" +, booktitle = "Proc. 12th Annu. ACM Sympos. Theory Comput." +, year = 1980 +, pages = "429--435" } @techreport{y-fmesp-74 -, author = "F. F. Yao" -, title = "On finding the maximal elements in a set of plane vectors" -, type = "Report" -, number = "R-667" -, institution = "Dept. Comput. Sci., Univ. Illinois" -, address = "Urbana, IL" -, year = 1974 +, author = "F. F. Yao" +, title = "On finding the maximal elements in a set of plane vectors" +, type = "Report" +, number = "R-667" +, institution = "Dept. Comput. Sci., Univ. Illinois" +, address = "Urbana, IL" +, year = 1974 } @inproceedings{y-pahsa-80 -, author = "F. F. Yao" -, title = "On the priority approach to hidden-surface algorithms" -, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1980 -, pages = "301--307" +, author = "F. F. Yao" +, title = "On the priority approach to hidden-surface algorithms" +, booktitle = "Proc. 21st Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1980 +, pages = "301--307" } @article{ydep-psrq-89 -, author = "F. F. Yao and D. P. Dobkin and H. Edelsbrunner and M. S. Paterson" -, title = "Partitioning space for range queries" -, journal = "SIAM J. Comput." -, volume = 18 -, number = 2 -, year = 1989 -, pages = "371--384" -, keywords = "$d$-dimensional, searching, range search" -, succeeds = "y-3spia-83" -, update = "97.11 bibrelex" +, author = "F. F. Yao and D. P. Dobkin and H. Edelsbrunner and M. S. Paterson" +, title = "Partitioning space for range queries" +, journal = "SIAM J. Comput." +, volume = 18 +, number = 2 +, year = 1989 +, pages = "371--384" +, keywords = "$d$-dimensional, searching, range search" +, succeeds = "y-3spia-83" +, update = "97.11 bibrelex" } @techreport{y-amp-85 -, author = "C. Yap" -, title = "Algorithmic Motion Planning" -, type = "Manuscript" -, institution = "??" -, year = 1985 -, update = "98.03 bibrelex" +, author = "C. Yap" +, title = "Algorithmic Motion Planning" +, type = "Manuscript" +, institution = "??" +, year = 1985 +, update = "98.03 bibrelex" } @inproceedings{y-elr-93 -, author = "Chee Yap" -, title = "Euclidean Lattice Reduction" -, booktitle = "Abstracts 9th European Workshop Comput. Geom." -, nickname = "CG '93" -, site = "Hagen" -, publisher = "FernUniversit{\"a}t Hagen" -, year = 1993 -, pages = 26 -, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" +, author = "Chee Yap" +, title = "Euclidean Lattice Reduction" +, booktitle = "Abstracts 9th European Workshop Comput. Geom." +, nickname = "CG '93" +, site = "Hagen" +, publisher = "FernUniversit{\"a}t Hagen" +, year = 1993 +, pages = 26 +, update = "00.03 bibrelex, 98.07 bibrelex, 97.11 icking" } @article{y-tegc-97 -, author = "C. Yap" -, title = "Towards exact geometric computation" -, journal = "Comput. Geom. Theory Appl." -, volume = 7 -, number = 1 -, year = 1997 -, pages = "3--23" -, succeeds = "y-tegc-93" -, update = "98.07 tamassia, 97.03 devillers, 96.09 devillers" +, author = "C. Yap" +, title = "Towards exact geometric computation" +, journal = "Comput. Geom. Theory Appl." +, volume = 7 +, number = 1 +, year = 1997 +, pages = "3--23" +, succeeds = "y-tegc-93" +, update = "98.07 tamassia, 97.03 devillers, 96.09 devillers" } @inproceedings{y-wcbpc-87 -, author = "C. Yap" -, title = "What can be parallelized in Computational Geometry?" -, editor = "A. Albrecht and H. Jung and K. Mehlhorn" -, booktitle = "Parallel Algorithms and Architectures. Proc. Internat. Workshop Suhl (Germany), May 25--30, 1987" -, series = "Math. Res." -, volume = 38 -, publisher = "Akademie-Verlag" -, address = "Berlin, East Germany" -, year = 1987 -, pages = "184--195" -, comments = "Zbl. 625.68052" -, update = "93.09 rote" +, author = "C. Yap" +, title = "What can be parallelized in Computational Geometry?" +, editor = "A. Albrecht and H. Jung and K. Mehlhorn" +, booktitle = "Parallel Algorithms and Architectures. Proc. Internat. Workshop Suhl (Germany), May 25--30, 1987" +, series = "Math. Res." +, volume = 38 +, publisher = "Akademie-Verlag" +, address = "Berlin, East Germany" +, year = 1987 +, pages = "184--195" +, comments = "Zbl. 625.68052" +, update = "93.09 rote" } @inproceedings{y-gctsp-88 -, author = "C. K. Yap" -, title = "A geometric consistency theorem for a symbolic perturbation scheme" -, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." -, year = 1988 -, pages = "134--142" -, precedes = "y-gctsp-90" -, cites = "b-gbamp-85, c-odlp-52, c-lp-83, dmy-aobgn-86, e-esaa-86, em-sstcd-87, ew-chsct-86, my-ngb-86, r-tgs-86, r-topr-85, y-stgd-87, ZZZ" -, update = "98.03 bibrelex" +, author = "C. K. Yap" +, title = "A geometric consistency theorem for a symbolic perturbation scheme" +, booktitle = "Proc. 4th Annu. ACM Sympos. Comput. Geom." +, year = 1988 +, pages = "134--142" +, precedes = "y-gctsp-90" +, cites = "b-gbamp-85, c-odlp-52, c-lp-83, dmy-aobgn-86, e-esaa-86, em-sstcd-87, ew-chsct-86, my-ngb-86, r-tgs-86, r-topr-85, y-stgd-87, ZZZ" +, update = "98.03 bibrelex" } @article{y-gctsp-90 -, author = "C. K. Yap" -, title = "A geometric consistency theorem for a symbolic perturbation scheme" -, journal = "J. Comput. Syst. Sci." -, volume = 40 -, number = 1 -, year = 1990 -, pages = "2--18" -, succeeds = "y-gctsp-88" -, update = "98.11 bibrelex" +, author = "C. K. Yap" +, title = "A geometric consistency theorem for a symbolic perturbation scheme" +, journal = "J. Comput. Syst. Sci." +, volume = 40 +, number = 1 +, year = 1990 +, pages = "2--18" +, succeeds = "y-gctsp-88" +, update = "98.11 bibrelex" } @incollection{y-amp-87 -, author = "C.-K. Yap" -, title = "Algorithmic motion planning" -, editor = "J. T. Schwartz and C.-K. Yap" -, booktitle = "Advances in Robotics 1: Algorithmic and Geometric Aspects of Robotics" -, publisher = "Lawrence Erlbaum Associates" -, address = "Hillsdale, NJ" -, year = 1987 -, pages = "95--143" -, keywords = "survey paper, motion planning, Voronoi diagrams, decomposition, cell complexes, lower bounds" +, author = "C.-K. Yap" +, title = "Algorithmic motion planning" +, editor = "J. T. Schwartz and C.-K. Yap" +, booktitle = "Advances in Robotics 1: Algorithmic and Geometric Aspects of Robotics" +, publisher = "Lawrence Erlbaum Associates" +, address = "Hillsdale, NJ" +, year = 1987 +, pages = "95--143" +, keywords = "survey paper, motion planning, Voronoi diagrams, decomposition, cell complexes, lower bounds" } @techreport{y-oavds-84 -, author = "C. K. Yap" -, title = "An {$O(n \log n)$} algorithm for the {Voronoi} diagram of a set of simple curve segments" -, type = "Technical {Report}" -, institution = "Courant Inst., New York Univ." -, address = "New York, NY" -, month = oct -, year = 1984 -, update = "97.11 bibrelex" +, author = "C. K. Yap" +, title = "An {$O(n \log n)$} algorithm for the {Voronoi} diagram of a set of simple curve segments" +, type = "Technical {Report}" +, institution = "Courant Inst., New York Univ." +, address = "New York, NY" +, month = oct +, year = 1984 +, update = "97.11 bibrelex" } @article{y-oavds-87 -, author = "C. K. Yap" -, title = "An {$O(n \log n)$} algorithm for the {Voronoi} diagram of a set of simple curve segments" -, journal = "Discrete Comput. Geom." -, volume = 2 -, year = 1987 -, pages = "365--393" +, author = "C. K. Yap" +, title = "An {$O(n \log n)$} algorithm for the {Voronoi} diagram of a set of simple curve segments" +, journal = "Discrete Comput. Geom." +, volume = 2 +, year = 1987 +, pages = "365--393" } @techreport{y-cmsd-84 -, author = "C. K. Yap" -, title = "Coordinating the motion of several discs" -, type = "Report" -, number = "TR 105" -, institution = "Comput. Sci. Div., New York Univ." -, address = "New York, NY" -, year = 1984 +, author = "C. K. Yap" +, title = "Coordinating the motion of several discs" +, type = "Report" +, number = "TR 105" +, institution = "Comput. Sci. Div., New York Univ." +, address = "New York, NY" +, year = 1984 } @incollection{y-ecgtm-95 -, author = "C. K. Yap" -, title = "Exact computational geometry and tolerancing metrology" -, editor = "D. Avis and J. Bose" -, booktitle = "Snapshots of Computational and Discrete Geometry, Vol.~3, Tech. Rep. SOCS-94.50" -, publisher = "McGill School of Comp. Sci." -, year = 1995 -, update = "96.09 orourke" +, author = "C. K. Yap" +, title = "Exact computational geometry and tolerancing metrology" +, editor = "D. Avis and J. Bose" +, booktitle = "Snapshots of Computational and Discrete Geometry, Vol.~3, Tech. Rep. SOCS-94.50" +, publisher = "McGill School of Comp. Sci." +, year = 1995 +, update = "96.09 orourke" } @techreport{y-fabor-82 -, author = "C. K. Yap" -, title = "Fast algorithms for boolean operations on rectilinear regions" -, type = "Report" -, number = "??" -, institution = "Courant Inst. Math. Sci., New York Univ." -, address = "New York, NY" -, year = 1982 +, author = "C. K. Yap" +, title = "Fast algorithms for boolean operations on rectilinear regions" +, type = "Report" +, number = "??" +, institution = "Courant Inst. Math. Sci., New York Univ." +, address = "New York, NY" +, year = 1982 } @inproceedings{y-furpi-92 -, author = "Chee K. Yap" -, title = "Fast Unimodular Reduction: {Planar} Integer Lattices" -, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1992 -, pages = "437--446" -, update = "94.01 smid, 93.09 milone+mitchell" +, author = "Chee K. Yap" +, title = "Fast Unimodular Reduction: {Planar} Integer Lattices" +, booktitle = "Proc. 33rd Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1992 +, pages = "437--446" +, update = "94.01 smid, 93.09 milone+mitchell" } @book{y-fpaa-93 -, author = "C. K. Yap" -, title = "Fundamental Problems in Algorithmic Algebra" -, publisher = "Princeton University Press" -, year = 1993 -, update = "98.07 bibrelex, 98.03 bibrelex" +, author = "C. K. Yap" +, title = "Fundamental Problems in Algorithmic Algebra" +, publisher = "Princeton University Press" +, year = 1993 +, update = "98.07 bibrelex, 98.03 bibrelex" } @article{y-hmctd-87 -, author = "C. K. Yap" -, title = "How to move a chair through a door" -, journal = "Internat. J. Robot. Autom." -, volume = "RA-3" -, number = 3 -, year = 1987 -, pages = "172--181" -, keywords = "motion planning" +, author = "C. K. Yap" +, title = "How to move a chair through a door" +, journal = "Internat. J. Robot. Autom." +, volume = "RA-3" +, number = 3 +, year = 1987 +, pages = "172--181" +, keywords = "motion planning" } @article{y-mcgwr-95 -, author = "C. K. Yap" -, title = "Manufacturing and Computational Geometry Workshop Report" -, journal = "Computational Science and Engineering" -, volume = "??" -, year = 1995 -, pages = "82--84" -, update = "98.07 bibrelex, 95.09 mitchell" +, author = "C. K. Yap" +, title = "Manufacturing and Computational Geometry Workshop Report" +, journal = "Computational Science and Engineering" +, volume = "??" +, year = 1995 +, pages = "82--84" +, update = "98.07 bibrelex, 95.09 mitchell" } @unpublished{y-nwmcg-94 -, author = "C. K. Yap" -, title = "NSF Workshop on Manufacturing and Computational Geometry" -, month = jun -, year = 1994 -, note = "April 1, 1994; preliminary report" -, update = "95.01 mitchell" +, author = "C. K. Yap" +, title = "NSF Workshop on Manufacturing and Computational Geometry" +, month = jun +, year = 1994 +, note = "April 1, 1994; preliminary report" +, update = "95.01 mitchell" } @techreport{y-ptptc-87 -, author = "C. K. Yap" -, title = "Parallel Triangulation of a Polygon in Two Calls to the Trapezoidal Map" -, type = "Manuscript" -, institution = "??" -, year = 1987 -, update = "97.11 bibrelex" +, author = "C. K. Yap" +, title = "Parallel Triangulation of a Polygon in Two Calls to the Trapezoidal Map" +, type = "Manuscript" +, institution = "??" +, year = 1987 +, update = "97.11 bibrelex" } @article{y-ptptc-88 -, author = "C. K. Yap" -, title = "Parallel triangulation of a polygon in two calls to the trapezoidal map" -, journal = "Algorithmica" -, volume = 3 -, year = 1988 -, pages = "279--288" -, keywords = "parallel computation, triangulation, polygon" +, author = "C. K. Yap" +, title = "Parallel triangulation of a polygon in two calls to the trapezoidal map" +, journal = "Algorithmica" +, volume = 3 +, year = 1988 +, pages = "279--288" +, keywords = "parallel computation, triangulation, polygon" } @techreport{y-ptspt-87 -, author = "C. K. Yap" -, title = "Parallel Triangulation of a Simple Polygon in Three Calls to the Trapezoidal Map" -, institution = "Robotics Lab, Courant Institute of Mathematical Sciences, New York University" -, address = "NY 10012, USA" -, month = mar -, year = 1987 -, update = "93.09 held" +, author = "C. K. Yap" +, title = "Parallel Triangulation of a Simple Polygon in Three Calls to the Trapezoidal Map" +, institution = "Robotics Lab, Courant Institute of Mathematical Sciences, New York University" +, address = "NY 10012, USA" +, month = mar +, year = 1987 +, update = "93.09 held" } @incollection{y-rgc-97 -, author = "C. K. Yap" -, title = "Robust geometric computation" -, chapter = 35 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "653--668" -, update = "97.11 orourke" +, author = "C. K. Yap" +, title = "Robust geometric computation" +, chapter = 35 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "653--668" +, update = "97.11 orourke" } @article{y-stgd- -, author = "C. K. Yap" -, title = "Symbolic treatment of geometric degeneracies" -, journal = "Lecture Notes in Control and Information Science" -, volume = 113 -, pages = "348--358" -, succeeds = "y-stgd-87" -, update = "98.11 bibrelex" +, author = "C. K. Yap" +, title = "Symbolic treatment of geometric degeneracies" +, journal = "Lecture Notes in Control and Information Science" +, volume = 113 +, pages = "348--358" +, succeeds = "y-stgd-87" +, update = "98.11 bibrelex" } @inproceedings{y-stgd-87 -, author = "C. K. Yap" -, title = "Symbolic treatment of geometric degeneracies" -, booktitle = "Proc. 13th IFIP Conf. System Modelling and Optimization" -, site = "Tokyo, Japan" -, year = 1987 -, pages = "348--358" -, precedes = "y-stgd-, y-stgd-90" -, update = "98.11 bibrelex" +, author = "C. K. Yap" +, title = "Symbolic treatment of geometric degeneracies" +, booktitle = "Proc. 13th IFIP Conf. System Modelling and Optimization" +, site = "Tokyo, Japan" +, year = 1987 +, pages = "348--358" +, precedes = "y-stgd-, y-stgd-90" +, update = "98.11 bibrelex" } @article{y-stgd-90 -, author = "C. K. Yap" -, title = "Symbolic treatment of geometric degeneracies" -, journal = "J. Symbolic Comput." -, volume = 10 -, year = 1990 -, pages = "349--370" -, succeeds = "y-stgd-87" +, author = "C. K. Yap" +, title = "Symbolic treatment of geometric degeneracies" +, journal = "J. Symbolic Comput." +, volume = 10 +, year = 1990 +, pages = "349--370" +, succeeds = "y-stgd-87" } @inproceedings{y-tegc-93 -, author = "C. K. Yap" -, title = "Towards Exact Geometric Computation" -, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." -, site = "Waterloo, Canada" -, year = 1993 -, pages = "405--419" -, precedes = "y-tegc-97" -, cites = "brv-ipam-89, cot-liais-87, dst-casaa-88, ds-rgnap-88, dy-biecg-93, e-acg-87, em-sstcd-88, ft-ousls-86, f-nsa2d-92, fv-eeacg-93, h-gsm-89, kln-edtur-91, ps-cgi-85, ss-pmp2g-83, sbv-hslim-90, si-tdpga-89, si-gafpa-88, si-nsmvd-88, s-rgwtd-93, svh-bpepa-89, r-hrrc-83, y-gctsp-90, y-stgd-90, y-fpaa-93, y-easm-92, ZZZ" -, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 devillers, 96.09 orourke" +, author = "C. K. Yap" +, title = "Towards Exact Geometric Computation" +, booktitle = "Proc. 5th Canad. Conf. Comput. Geom." +, site = "Waterloo, Canada" +, year = 1993 +, pages = "405--419" +, precedes = "y-tegc-97" +, cites = "brv-ipam-89, cot-liais-87, dst-casaa-88, ds-rgnap-88, dy-biecg-93, e-acg-87, em-sstcd-88, ft-ousls-86, f-nsa2d-92, fv-eeacg-93, h-gsm-89, kln-edtur-91, ps-cgi-85, ss-pmp2g-83, sbv-hslim-90, si-tdpga-89, si-gafpa-88, si-nsmvd-88, s-rgwtd-93, svh-bpepa-89, r-hrrc-83, y-gctsp-90, y-stgd-90, y-fpaa-93, y-easm-92, ZZZ" +, update = "98.11 bibrelex, 97.11 bibrelex, 97.03 devillers, 96.09 orourke" } @inproceedings{ya-mpce-89 -, author = "Chee K. Yap and Helmut Alt" -, title = "Motion Planning in the CL-Environment" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, site = "Ottawa, Canada" -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "373--380" -, update = "98.11 bibrelex, 96.05 agarwal, 95.01 schwarzkopf" +, author = "Chee K. Yap and Helmut Alt" +, title = "Motion Planning in the CL-Environment" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, site = "Ottawa, Canada" +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "373--380" +, update = "98.11 bibrelex, 96.05 agarwal, 95.01 schwarzkopf" } @inproceedings{yc-imgt-96 -, author = "C. K. Yap and E.-C. Chang" -, title = "Issues in the metrology of geometric tolerancing" -, editor = "M. Overmars" -, booktitle = "Proc. Workshop on Algorithmic Robotics" -, series = "Lecture Notes Comput. Sci." -, publisher = "Springer-Verlag" -, year = 1996 -, note = "To appear" -, update = "98.07 bibrelex" +, author = "C. K. Yap and E.-C. Chang" +, title = "Issues in the metrology of geometric tolerancing" +, editor = "M. Overmars" +, booktitle = "Proc. Workshop on Algorithmic Robotics" +, series = "Lecture Notes Comput. Sci." +, publisher = "Springer-Verlag" +, year = 1996 +, note = "To appear" +, update = "98.07 bibrelex" } @incollection{yc-imgt-97 -, author = "C. K. Yap and E.-C. Chang" -, title = "Issues in the metrology of geometric tolerancing" -, editor = "J.-P. Laumond and M. H. Overmars" -, booktitle = "Robotics Motion and Manipulation" -, publisher = "A.K. Peters" -, year = 1997 -, pages = "393--400" -, update = "98.03 agarwal" +, author = "C. K. Yap and E.-C. Chang" +, title = "Issues in the metrology of geometric tolerancing" +, editor = "J.-P. Laumond and M. H. Overmars" +, booktitle = "Robotics Motion and Manipulation" +, publisher = "A.K. Peters" +, year = 1997 +, pages = "393--400" +, update = "98.03 agarwal" } @incollection{yd-ecp-95 -, author = "C. K. Yap and T. Dub{\'e}" -, title = "The exact computation paradigm" -, editor = "D.-Z. Du and F. K. Hwang" -, booktitle = "Computing in Euclidean Geometry" -, series = "Lecture Notes Series on Computing" -, volume = 4 -, edition = "2nd" -, publisher = "World Scientific" -, address = "Singapore" -, year = 1995 -, pages = "452--492" -, keywords = "survey paper, numeral computing, exact compuation, fixed-precision, multiprecision number packages" -, update = "98.07 icking+vismara, 97.11 icking, 97.03 devillers+pocchiola" -, abstract = "A survey of the approaches to non-robustness of geometric algorithms, and especially the exact computation approach. Also surveys available big-number packages." +, author = "C. K. Yap and T. Dub{\'e}" +, title = "The exact computation paradigm" +, editor = "D.-Z. Du and F. K. Hwang" +, booktitle = "Computing in Euclidean Geometry" +, series = "Lecture Notes Series on Computing" +, volume = 4 +, edition = "2nd" +, publisher = "World Scientific" +, address = "Singapore" +, year = 1995 +, pages = "452--492" +, keywords = "survey paper, numeral computing, exact compuation, fixed-precision, multiprecision number packages" +, update = "98.07 icking+vismara, 97.11 icking, 97.03 devillers+pocchiola" +, abstract = "A survey of the approaches to non-robustness of geometric algorithms, and especially the exact computation approach. Also surveys available big-number packages." } @inproceedings{ys-dchhd-81 -, author = "M. Yau and S. N. Srihari" -, title = "Digital convex hulls from hierarchical data structures" -, booktitle = "Proc. Canadian Man-Comput. Comm. Soc. Conf." -, year = 1981 -, pages = "163--171" +, author = "M. Yau and S. N. Srihari" +, title = "Digital convex hulls from hierarchical data structures" +, booktitle = "Proc. Canadian Man-Comput. Comm. Soc. Conf." +, year = 1981 +, pages = "163--171" } @article{ys-hdsmd-83 -, author = "M.-M. Yau and S. N. Srihari" -, title = "A hierarchical data structure for multidimensional digital images" -, journal = "Commun. ACM" -, volume = 26 -, number = 7 -, year = 1983 -, pages = "504--515" -, update = "97.11 bibrelex" +, author = "M.-M. Yau and S. N. Srihari" +, title = "A hierarchical data structure for multidimensional digital images" +, journal = "Commun. ACM" +, volume = 26 +, number = 7 +, year = 1983 +, pages = "504--515" +, update = "97.11 bibrelex" } @inproceedings{yo-smi-96 -, author = "N. Yazdani and Z. M. Ozsoyoglu" -, title = "Sequence matching of images" -, booktitle = "Proc. 8th Internat Conf. on Scientific and Statistical Database Management" -, year = 1996 -, pages = "53--62" -, update = "98.07 bibrelex" +, author = "N. Yazdani and Z. M. Ozsoyoglu" +, title = "Sequence matching of images" +, booktitle = "Proc. 8th Internat Conf. on Scientific and Statistical Database Management" +, year = 1996 +, pages = "53--62" +, update = "98.07 bibrelex" } @inproceedings{yn-gircc-94 -, author = "X. Ye and H. Nowacki" -, title = "{$G^1$} Interpolation of Rectangular Cubic Curve Meshes Using Biquintic {B{\'e}zier} Patches" -, booktitle = "The 6th IMA Conference on Mathematics of Surface VI" -, year = 1994 -, update = "95.05 abrams" +, author = "X. Ye and H. Nowacki" +, title = "{$G^1$} Interpolation of Rectangular Cubic Curve Meshes Using Biquintic {B{\'e}zier} Patches" +, booktitle = "The 6th IMA Conference on Mathematics of Surface VI" +, year = 1994 +, update = "95.05 abrams" } @article{ys-fpgdc-93 -, author = "K. Yeap and M. Sarrafzadeh" -, title = "Floor-planning by graph dualization: 2-concave rectiliear modules" -, journal = "SIAM J. Comput." -, volume = 22 -, number = 3 -, month = jun -, year = 1993 -, pages = "500--526" -, update = "98.11 bibrelex" +, author = "K. Yeap and M. Sarrafzadeh" +, title = "Floor-planning by graph dualization: 2-concave rectiliear modules" +, journal = "SIAM J. Comput." +, volume = 22 +, number = 3 +, month = jun +, year = 1993 +, pages = "500--526" +, update = "98.11 bibrelex" } @article{yws-opmtd-84 -, author = "Y. Yeh and J. Wilson and S. C. Schwartz" -, title = "Outage Probability in Mobile Telephony with Directive Antennas and Macrodiversity" -, journal = "IEEE Trans. Selected Areas in Communication" -, volume = 2 -, year = 1984 -, pages = "507--511" -, update = "98.07 bibrelex" +, author = "Y. Yeh and J. Wilson and S. C. Schwartz" +, title = "Outage Probability in Mobile Telephony with Directive Antennas and Macrodiversity" +, journal = "IEEE Trans. Selected Areas in Communication" +, volume = 2 +, year = 1984 +, pages = "507--511" +, update = "98.07 bibrelex" } @techreport{y-dtca-88 -, author = "D. Yellin" -, title = "A Dynamic Transitive Closure Algorithm" -, institution = "IBM T. J. Watson Research Center" -, year = 1988 -, update = "94.01 tamassia" +, author = "D. Yellin" +, title = "A Dynamic Transitive Closure Algorithm" +, institution = "IBM T. J. Watson Research Center" +, year = 1988 +, update = "94.01 tamassia" } @inproceedings{y-stapl-79 -, author = "Y. Yemini" -, title = "Some theoretical aspects of position-location problems" -, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." -, year = 1979 -, pages = "1--8" +, author = "Y. Yemini" +, title = "Some theoretical aspects of position-location problems" +, booktitle = "Proc. 20th Annu. IEEE Sympos. Found. Comput. Sci." +, year = 1979 +, pages = "1--8" } @article{ys-mqafe-83 -, author = "M. A. Yerry and M. S. Shephard" -, title = "A Modified Quadtree Approach to Finite Element Mesh Generation" -, journal = "IEEE Comput. Graph. Appl." -, volume = 3 -, number = 1 -, year = 1983 -, pages = "39--46" -, annote = "Generates a FEM from a modified (blocks with cut - corners are allowed) quadtree. Mesh is smoothed by - moving each node to the centroid of surrounding ones." +, author = "M. A. Yerry and M. S. Shephard" +, title = "A Modified Quadtree Approach to Finite Element Mesh Generation" +, journal = "IEEE Comput. Graph. Appl." +, volume = 3 +, number = 1 +, year = 1983 +, pages = "39--46" +, annote = "Generates a FEM from a modified (blocks with cut + corners are allowed) quadtree. Mesh is smoothed by + moving each node to the centroid of surrounding ones." } @inproceedings{y-dsann-93 -, author = "P. N. Yianilos" -, title = "Data Structures and Algorithms for Nearest Neighbor Search in General Metric Spaces" -, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" -, year = 1993 -, pages = "311--321" -, update = "93.05 smid" +, author = "P. N. Yianilos" +, title = "Data Structures and Algorithms for Nearest Neighbor Search in General Metric Spaces" +, booktitle = "Proc. 4th ACM-SIAM Sympos. Discrete Algorithms" +, year = 1993 +, pages = "311--321" +, update = "93.05 smid" } @inproceedings{y-gfpuk-95 -, author = "S. M. Yiu" -, title = "A Generalized Fortress Problem using $k$-Consecutive Vertex Guards" -, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." -, year = 1995 -, pages = "139--144" -, update = "95.09 jones" +, author = "S. M. Yiu" +, title = "A Generalized Fortress Problem using $k$-Consecutive Vertex Guards" +, booktitle = "Proc. 7th Canad. Conf. Comput. Geom." +, year = 1995 +, pages = "139--144" +, update = "95.09 jones" } @techreport{yc-egf-94t -, author = "S. M. Yiu and A. Choi" -, title = "Edge Guards on A Fortress" -, type = "Technical Report" -, number = "94-06" -, institution = "Dept. of Computer Science, University of Hong Kong" -, year = 1994 -, succeeds = "yc-egf-94" -, update = "98.11 bibrelex" +, author = "S. M. Yiu and A. Choi" +, title = "Edge Guards on A Fortress" +, type = "Technical Report" +, number = "94-06" +, institution = "Dept. of Computer Science, University of Hong Kong" +, year = 1994 +, succeeds = "yc-egf-94" +, update = "98.11 bibrelex" } @inproceedings{yc-egf-94 -, author = "S. M. Yiu and A. Choi" -, title = "Edge Guards on a Fortress" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "296--301" -, precedes = "yc-egf-94t" -, cites = "bs-tbegm-92t, bs-tbegm-92, o-agta-87, s-rrag-92, sd-csegs-91, v-egpsp-93, yc-egf-94t, ghks-ggprp-94t, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "S. M. Yiu and A. Choi" +, title = "Edge Guards on a Fortress" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "296--301" +, precedes = "yc-egf-94t" +, cites = "bs-tbegm-92t, bs-tbegm-92, o-agta-87, s-rrag-92, sd-csegs-91, v-egpsp-93, yc-egf-94t, ghks-ggprp-94t, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @incollection{y-cdcrc-75 -, author = "P. Yoeli" -, title = "Compilation of data for computer-assisted relief cartography" -, editor = "J. C. Davis and M. J. McCullagh" -, booktitle = "Display and Analysis of Spatial Data" -, publisher = "John Wiley \& Sons" -, address = "New York" -, year = 1995 -, pages = "352--367" -, keywords = "minimum-weight triangulations, data interpolation" -, update = "99.11 bibrelex, 98.07 bibrelex, 97.11 bibrelex, 97.03 rote" +, author = "P. Yoeli" +, title = "Compilation of data for computer-assisted relief cartography" +, editor = "J. C. Davis and M. J. McCullagh" +, booktitle = "Display and Analysis of Spatial Data" +, publisher = "John Wiley \& Sons" +, address = "New York" +, year = 1995 +, pages = "352--367" +, keywords = "minimum-weight triangulations, data interpolation" +, update = "99.11 bibrelex, 98.07 bibrelex, 97.11 bibrelex, 97.03 rote" } @article{y-laml-72 -, author = "P. Yoeli" -, title = "The Logic of Automated Map Lettering" -, journal = "Cardographic J." -, volume = 9 -, year = 1972 -, pages = "99--108" -, update = "97.11 bibrelex" +, author = "P. Yoeli" +, title = "The Logic of Automated Map Lettering" +, journal = "Cardographic J." +, volume = 9 +, year = 1972 +, pages = "99--108" +, update = "97.11 bibrelex" } @article{ysy-smbnp-94 -, author = "Norimasa Yoshida and Masato Shyokawa and Fujio Yamaguchi" -, title = "Solid modeling based on a new paradigm" -, journal = "Comput. Graph. Forum" -, volume = 13 -, number = 3 -, year = 1994 -, pages = "55--64" -, note = "Proc. EUROGRAPHICS '94" -, keywords = "solid modeling, robustness, boundary representation" -, update = "95.09 korneenko" +, author = "Norimasa Yoshida and Masato Shyokawa and Fujio Yamaguchi" +, title = "Solid modeling based on a new paradigm" +, journal = "Comput. Graph. Forum" +, volume = 13 +, number = 3 +, year = 1994 +, pages = "55--64" +, note = "Proc. EUROGRAPHICS '94" +, keywords = "solid modeling, robustness, boundary representation" +, update = "95.09 korneenko" } @techreport{y-vsrt-87 -, author = "S. Youssef" -, title = "Vectorized simulation and ray tracing" -, type = "Report" -, number = "FSU-SCRI-87-63" -, institution = "Supercomputer Comput. Res. Inst., Florida State Univ." -, address = "Tallahassee, FL" -, year = 1987 +, author = "S. Youssef" +, title = "Vectorized simulation and ray tracing" +, type = "Report" +, number = "FSU-SCRI-87-63" +, institution = "Supercomputer Comput. Res. Inst., Florida State Univ." +, address = "Tallahassee, FL" +, year = 1987 } @phdthesis{y-easm-91 -, author = "J. Yu" -, title = "Exact Arithmetic Solid Modeling" -, school = "Purdue University, CS Dept., West Lafayette, IN 47907, USA" -, month = dec -, year = 1991 -, keywords = "numerical precision, stability, robustness" -, precedes = "y-easm-92" -, update = "98.11 bibrelex, 93.09 held" +, author = "J. Yu" +, title = "Exact Arithmetic Solid Modeling" +, school = "Purdue University, CS Dept., West Lafayette, IN 47907, USA" +, month = dec +, year = 1991 +, keywords = "numerical precision, stability, robustness" +, precedes = "y-easm-92" +, update = "98.11 bibrelex, 93.09 held" } @techreport{y-easm-92 -, author = "Jiaxun Yu" -, title = "Exact arithmetic solid modeling" -, type = "Technical Report" -, number = "CSD-TR-92-037" -, institution = "Comput. Sci. Dept., Purdue University" -, month = jun -, year = 1992 -, succeeds = "y-easm-91" -, update = "98.11 bibrelex" +, author = "Jiaxun Yu" +, title = "Exact arithmetic solid modeling" +, type = "Technical Report" +, number = "CSD-TR-92-037" +, institution = "Comput. Sci. Dept., Purdue University" +, month = jun +, year = 1992 +, succeeds = "y-easm-91" +, update = "98.11 bibrelex" } @inproceedings{yd-slfrr-95 -, author = "M.-F. Yu and W. W.-M. Dai" -, title = "Single-layer fanout routing and routability analysis for ball grid arrays" -, booktitle = "Proc. IEEE/ACM Internat. Conf. on CAD" -, year = 1995 -, pages = "581--586" -, update = "98.07 bibrelex" +, author = "M.-F. Yu and W. W.-M. Dai" +, title = "Single-layer fanout routing and routability analysis for ball grid arrays" +, booktitle = "Proc. IEEE/ACM Internat. Conf. on CAD" +, year = 1995 +, pages = "581--586" +, update = "98.07 bibrelex" } @inproceedings{ydd-iprap-96 -, author = "M.-F. Yu and J. Darnauer and W. W.-M. Dai" -, title = "Interchangeable pin routing with applications to package layout" -, booktitle = "Proc. IEEE/ACM Internat. Conf. on CAD" -, year = 1996 -, pages = "668--673" -, update = "98.07 bibrelex" +, author = "M.-F. Yu and J. Darnauer and W. W.-M. Dai" +, title = "Interchangeable pin routing with applications to package layout" +, booktitle = "Proc. IEEE/ACM Internat. Conf. on CAD" +, year = 1996 +, pages = "668--673" +, update = "98.07 bibrelex" } @inproceedings{yks-dqtfl-96 -, author = "S. Yu and M. van Kreveld and J. Snoeyink" -, title = "Drainage queries in {TINs}: from local to global and back again" -, booktitle = "Proc. 7th Internat. Sympos. Spatial Data Handling" -, year = 1996 -, pages = "13A.1--13A.14" -, update = "98.07 oostrum" +, author = "S. Yu and M. van Kreveld and J. Snoeyink" +, title = "Drainage queries in {TINs}: from local to global and back again" +, booktitle = "Proc. 7th Internat. Sympos. Spatial Data Handling" +, year = 1996 +, pages = "13A.1--13A.14" +, update = "98.07 oostrum" } @inproceedings{ygd-c3ddm-91 -, author = "X. Yu and J. A. Goldack and L. Dong" -, title = "Constructing 3D Discrete Medial Axis" -, booktitle = "Proc. ACM Sympos. Solid Modeling Found. and CAD/CAM Applic." -, site = "Austin, TX, USA" -, year = 1991 -, pages = "481--492" -, update = "95.09 agarwal, 95.01 held" +, author = "X. Yu and J. A. Goldack and L. Dong" +, title = "Constructing 3D Discrete Medial Axis" +, booktitle = "Proc. ACM Sympos. Solid Modeling Found. and CAD/CAM Applic." +, site = "Austin, TX, USA" +, year = 1991 +, pages = "481--492" +, update = "95.09 agarwal, 95.01 held" } @article{yth-haafe-91 -, author = "M. M. F. Yuen and S. T. Tan and K. Y. Hung" -, title = "A Hierarchical Approach to Automatic Finite-Element Mesh Generation" -, journal = "Internat. J. Numer. Methods Eng." -, volume = 32 -, number = 3 -, year = 1991 -, pages = "501--525" -, annote = "Uses Watson's for 3DDT. Fixes slivers with local - changes." -, abstract = "A point-based two-stage hierarchical method for - automatic finite element mesh generation from a solid - model is presented. Given the solid model of a - component and the required nodal density distribution, - nodes are generated according to the hierarchy - - vertex, edge, face and solid. At the vertices, nodes - are established naturally. Nodes on the edges, faces - and inside the solid model are generated by recursive - subdivision. The nodes are then connected to form a - valid and well-conditioned finite element mesh of - tetrahedron elements using modified Delaunay - Triangulation. Checks are conducted to ensure the - compatibility of geometry and topology between the - solid model and the mesh. (Author abstract) 35 Refs." +, author = "M. M. F. Yuen and S. T. Tan and K. Y. Hung" +, title = "A Hierarchical Approach to Automatic Finite-Element Mesh Generation" +, journal = "Internat. J. Numer. Methods Eng." +, volume = 32 +, number = 3 +, year = 1991 +, pages = "501--525" +, annote = "Uses Watson's for 3DDT. Fixes slivers with local + changes." +, abstract = "A point-based two-stage hierarchical method for + automatic finite element mesh generation from a solid + model is presented. Given the solid model of a + component and the required nodal density distribution, + nodes are generated according to the hierarchy - + vertex, edge, face and solid. At the vertices, nodes + are established naturally. Nodes on the edges, faces + and inside the solid model are generated by recursive + subdivision. The nodes are then connected to form a + valid and well-conditioned finite element mesh of + tetrahedron elements using modified Delaunay + Triangulation. Checks are conducted to ensure the + compatibility of geometry and topology between the + solid model and the mesh. (Author abstract) 35 Refs." } @article{y-tinn-76 -, author = "T. P. Yunck" -, title = "A technique to identify nearest neighbors" -, journal = "IEEE Trans. Syst. Man Cybern." -, volume = "SMC-6" -, year = 1976 -, pages = "678--683" +, author = "T. P. Yunck" +, title = "A technique to identify nearest neighbors" +, journal = "IEEE Trans. Syst. Man Cybern." +, volume = "SMC-6" +, year = 1976 +, pages = "678--683" } @article{y-fnnkd-75 -, author = "G. Yuval" -, title = "Finding near neighbors in $k$-dimensional space" -, journal = "Inform. Process. Lett." -, volume = 3 -, year = 1975 -, pages = "113--114" +, author = "G. Yuval" +, title = "Finding near neighbors in $k$-dimensional space" +, journal = "Inform. Process. Lett." +, volume = 3 +, year = 1975 +, pages = "113--114" } @article{y-fnn-76 -, author = "G. Yuval" -, title = "Finding nearest neighbors" -, journal = "Inform. Process. Lett." -, volume = 5 -, year = 1976 -, pages = "63--65" +, author = "G. Yuval" +, title = "Finding nearest neighbors" +, journal = "Inform. Process. Lett." +, volume = 5 +, year = 1976 +, pages = "63--65" } @techreport{y-md2s-76 -, author = "G. Yuval" -, title = "The mean distance in $2$-space" -, type = "Report" -, number = "??" -, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." -, address = "Pittsburgh, PA" -, year = 1976 +, author = "G. Yuval" +, title = "The mean distance in $2$-space" +, type = "Report" +, number = "??" +, institution = "Dept. Comput. Sci., Carnegie-Mellon Univ." +, address = "Pittsburgh, PA" +, year = 1976 } @inproceedings{y-t2d3d-89 -, author = "Mariette Yvinec" -, title = "Triangulation in {2D} and {3D} Space" -, booktitle = "Proc. of the Workshop on Geometry and Robotics" -, series = "Lecture Notes Comput. Sci." -, volume = 391 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "275--291" -, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 96.09 agarwal, 93.09 smid" -, annote = "Survey paper" +, author = "Mariette Yvinec" +, title = "Triangulation in {2D} and {3D} Space" +, booktitle = "Proc. of the Workshop on Geometry and Robotics" +, series = "Lecture Notes Comput. Sci." +, volume = 391 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "275--291" +, update = "99.11 bibrelex, 99.07 devillers, 98.07 bibrelex, 96.09 agarwal, 93.09 smid" +, annote = "Survey paper" } @inproceedings{z-rcdda-98 -, author = "Gabriel Zachmann" -, title = "Rapid Collision Detection by Dynamically Aligned {DOP}-Trees" -, booktitle = "Proc. of IEEE Virtual Reality Annual International Symposium; VRAIS '98" -, site = "Atlanta, Georgia" -, month = mar -, year = 1998 -, update = "00.11 smid, 00.07 zachmann" +, author = "Gabriel Zachmann" +, title = "Rapid Collision Detection by Dynamically Aligned {DOP}-Trees" +, booktitle = "Proc. of IEEE Virtual Reality Annual International Symposium; VRAIS '98" +, site = "Atlanta, Georgia" +, month = mar +, year = 1998 +, update = "00.11 smid, 00.07 zachmann" } @techreport{z-wwcbs-80 -, author = "N. Zadeh" -, title = "What is the worst case behavior of the simplex algorithm?" -, type = "Technical Report" -, number = 27 -, institution = "Dept. Operations Research, Stanford University" -, year = 1980 -, update = "97.03 gaertner+salinger" +, author = "N. Zadeh" +, title = "What is the worst case behavior of the simplex algorithm?" +, type = "Technical Report" +, number = 27 +, institution = "Dept. Operations Research, Stanford University" +, year = 1980 +, update = "97.03 gaertner+salinger" } @article{z-gtmdg-71 -, author = "C. T. Zahn" -, title = "Graph-therorectical methods for detecting gestalt clusters" -, journal = "IEEE Trans. Comput." -, volume = "C-20" -, year = 1971 -, pages = "68--86" -, update = "97.11 bibrelex" +, author = "C. T. Zahn" +, title = "Graph-therorectical methods for detecting gestalt clusters" +, journal = "IEEE Trans. Comput." +, volume = "C-20" +, year = 1971 +, pages = "68--86" +, update = "97.11 bibrelex" } @article{zc-utapp-99 -, author = "B. {\v Z}alik and G. J. Clapworthy" -, title = "A Universal Trapezoidation Algorithm for Planar Polygons" -, journal = "Comput. \& Graphics" -, volume = 23 -, number = 3 -, month = jun -, year = 1999 -, pages = "353--363" -, update = "00.03 held" +, author = "B. {\v Z}alik and G. J. Clapworthy" +, title = "A Universal Trapezoidation Algorithm for Planar Polygons" +, journal = "Comput. \& Graphics" +, volume = 23 +, number = 3 +, month = jun +, year = 1999 +, pages = "353--363" +, update = "00.03 held" } @article{z-tcfha-91 -, author = "T. Zamfirescu" -, title = "On two conjectures of {Franz} {Hering} about convex surfaces" -, journal = "Discrete Comput. Geom." -, volume = 6 -, year = 1991 -, pages = "163--169" +, author = "T. Zamfirescu" +, title = "On two conjectures of {Franz} {Hering} about convex surfaces" +, journal = "Discrete Comput. Geom." +, volume = 6 +, year = 1991 +, pages = "163--169" } @inproceedings{z-asbim-78 -, author = "P. Zamperoni" -, title = "Analysis and synthesis of binary images by means of convex blobs" -, booktitle = "Proc. Internat. Conf. on Digital Signal Processing" -, site = "Florence, Italy" -, year = 1978 -, pages = "181--188" +, author = "P. Zamperoni" +, title = "Analysis and synthesis of binary images by means of convex blobs" +, booktitle = "Proc. Internat. Conf. on Digital Signal Processing" +, site = "Florence, Italy" +, year = 1978 +, pages = "181--188" } @inproceedings{z-bdkeb-78 -, author = "P. Zamperoni" -, title = "Bilddarstellung durch konvexe elementarmuster {Bildverarbeitung} und {Musterekennung}" -, editor = "E. Triendl" -, booktitle = "DAGM Sympos." -, publisher = "Informatik-Fachberichte, Springer-Verlag" -, year = 1978 -, pages = "145--154" +, author = "P. Zamperoni" +, title = "Bilddarstellung durch konvexe elementarmuster {Bildverarbeitung} und {Musterekennung}" +, editor = "E. Triendl" +, booktitle = "DAGM Sympos." +, publisher = "Informatik-Fachberichte, Springer-Verlag" +, year = 1978 +, pages = "145--154" } @inproceedings{z-sgcrg-82 -, author = "P. Zamperoni" -, title = "Sequential growth of convex regions for grey-scale image analysis" -, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." -, year = 1982 -, pages = "912--914" +, author = "P. Zamperoni" +, title = "Sequential growth of convex regions for grey-scale image analysis" +, booktitle = "Proc. 6th IEEE Internat. Conf. Pattern Recogn." +, year = 1982 +, pages = "912--914" } @book{zs-ca1-58 -, author = "O. Zariski and P. Samuel" -, title = "Commutative Algebra" -, volume = 1 -, publisher = "Springer-Verlag" -, year = 1958 -, precedes = "zs-ca2-58" -, update = "97.11 bibrelex" +, author = "O. Zariski and P. Samuel" +, title = "Commutative Algebra" +, volume = 1 +, publisher = "Springer-Verlag" +, year = 1958 +, precedes = "zs-ca2-58" +, update = "97.11 bibrelex" } @book{zs-ca2-58 -, author = "O. Zariski and P. Samuel" -, title = "Commutative Algebra" -, volume = 2 -, publisher = "Springer-Verlag" -, year = 1958 -, succeeds = "zs-ca1-58" -, update = "97.11 bibrelex" +, author = "O. Zariski and P. Samuel" +, title = "Commutative Algebra" +, volume = 2 +, publisher = "Springer-Verlag" +, year = 1958 +, succeeds = "zs-ca1-58" +, update = "97.11 bibrelex" } @article{z-catd-77 -, author = "T. Zaslavsky" -, title = "A combinatorial analysis of topological dissections" -, journal = "Adv. Math." -, volume = 25 -, year = 1977 -, pages = "267--285" -, update = "98.03 agarwal" +, author = "T. Zaslavsky" +, title = "A combinatorial analysis of topological dissections" +, journal = "Adv. Math." +, volume = 25 +, year = 1977 +, pages = "267--285" +, update = "98.03 agarwal" } @book{z-fuafc-75 -, author = "T. Zaslavsky" -, title = "Facing up to Arrangements: Face-Count Formulas for Partitions of Space by Hyperplanes" -, series = "Memoirs Amer. Math. Soc." -, volume = 154 -, publisher = "American Mathematical Society" -, address = "Providence, RI" -, year = 1975 -, isbn = "0-8218-1854-6" -, keywords = "doctoral thesis" -, comments = "substantially the author's thesis, Massachusetts Inst. Tech." -, update = "97.11 bibrelex, 95.09 korneenko+mitchell" +, author = "T. Zaslavsky" +, title = "Facing up to Arrangements: Face-Count Formulas for Partitions of Space by Hyperplanes" +, series = "Memoirs Amer. Math. Soc." +, volume = 154 +, publisher = "American Mathematical Society" +, address = "Providence, RI" +, year = 1975 +, isbn = "0-8218-1854-6" +, keywords = "doctoral thesis" +, comments = "substantially the author's thesis, Massachusetts Inst. Tech." +, update = "97.11 bibrelex, 95.09 korneenko+mitchell" } @book{z-tdm-96 -, title = "Teubner-Taschenbuch der {Mathematik}" -, editor = "E. Zeidler" -, publisher = "B. G. Teubner" -, address = "Leipzig" -, year = 1996 -, note = "Begr{\"u}ndet von {I.} {N.} {Bronstein} und {K.} {A.} {Semendjajew}, - weitergef{\"u}hrt von {G.} {Grosche}, {V.} {Ziegler} und {D.} {Ziegler}" -, update = "00.03 bibrelex" +, title = "Teubner-Taschenbuch der {Mathematik}" +, editor = "E. Zeidler" +, publisher = "B. G. Teubner" +, address = "Leipzig" +, year = 1996 +, note = "Begr{\"u}ndet von {I.} {N.} {Bronstein} und {K.} {A.} {Semendjajew}, + weitergef{\"u}hrt von {G.} {Grosche}, {V.} {Ziegler} und {D.} {Ziegler}" +, update = "00.03 bibrelex" } @techreport{z-f11aa-92 -, author = "A. Zelikovsky" -, title = "A faster $11/6$-approximation algorithm for the {Steiner} tree problem in graphs" -, type = "Report" -, number = "MPI-I-92-122" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 +, author = "A. Zelikovsky" +, title = "A faster $11/6$-approximation algorithm for the {Steiner} tree problem in graphs" +, type = "Report" +, number = "MPI-I-92-122" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 } @techreport{z-mbwkp-92 -, author = "A. Zelikovsky" -, title = "Minimum base of weighted $k$-polymatroid and {Steiner} tree problem" -, type = "Report" -, number = "MPI-I-92-121" -, institution = "Max-Planck-Institut Inform." -, address = "Saarbr{\"u}cken, Germany" -, year = 1992 +, author = "A. Zelikovsky" +, title = "Minimum base of weighted $k$-polymatroid and {Steiner} tree problem" +, type = "Report" +, number = "MPI-I-92-121" +, institution = "Max-Planck-Institut Inform." +, address = "Saarbr{\"u}cken, Germany" +, year = 1992 } @inproceedings{zl-mbt-93 -, author = "A. Zelikovsky and D. Lozevanu" -, title = "Minimal and bounded trees" -, booktitle = "Tezele Cong. XVIII Acad. Romano-Americane, Kishinev" -, year = 1993 -, pages = "25--26" -, update = "95.09 mitchell" +, author = "A. Zelikovsky and D. Lozevanu" +, title = "Minimal and bounded trees" +, booktitle = "Tezele Cong. XVIII Acad. Romano-Americane, Kishinev" +, year = 1993 +, pages = "25--26" +, update = "95.09 mitchell" } @incollection{z-1aasp-92 -, author = "A. Z. Zelikovsky" -, title = "An $11/8$-approximation algorithm for the {Steiner} problem on networks with rectilinear distance" -, booktitle = "Sets, Graphs and Nubers" -, series = "Colloquia Mathematica Societatis J{\'a}nos Bolyai" -, volume = 60 -, publisher = "??" -, year = 1992 -, pages = "733--745" -, update = "98.07 bibrelex" +, author = "A. Z. Zelikovsky" +, title = "An $11/8$-approximation algorithm for the {Steiner} problem on networks with rectilinear distance" +, booktitle = "Sets, Graphs and Nubers" +, series = "Colloquia Mathematica Societatis J{\'a}nos Bolyai" +, volume = 60 +, publisher = "??" +, year = 1992 +, pages = "733--745" +, update = "98.07 bibrelex" } @techreport{z-babne-96 -, author = "A. Z. Zelikovsky" -, title = "Better Approximation Bounds for the Network and {Euclidean} {Steiner} Tree Problems" -, type = "Technical Report" -, number = "CS-96-06" -, institution = "University of Virginia, Charlottesville, VA" -, year = 1996 -, update = "98.03 mitchell" -, annote = "Was written in 1994 at Institute of Mathematics, Kishinev Moldova +, author = "A. Z. Zelikovsky" +, title = "Better Approximation Bounds for the Network and {Euclidean} {Steiner} Tree Problems" +, type = "Technical Report" +, number = "CS-96-06" +, institution = "University of Virginia, Charlottesville, VA" +, year = 1996 +, update = "98.03 mitchell" +, annote = "Was written in 1994 at Institute of Mathematics, Kishinev Moldova and submitted for publication" -, abstract = " +, abstract = " The network and Euclidean Steiner tree problems require a shortest tree spanning a given vertex subset within a network G=(V,E,d) and Euclidean plane, respectively. For these problems, we present a series of @@ -151232,347 +151232,347 @@ @techreport{z-babne-96 } @article{z-ltras-87 -, author = "E. Zemel" -, title = "A linear time randomizing algorithm for searching ranked functions" -, journal = "Algorithmica" -, volume = 2 -, year = 1987 -, pages = "81--90" -, update = "97.03 agarwal, 96.05 agarwal" +, author = "E. Zemel" +, title = "A linear time randomizing algorithm for searching ranked functions" +, journal = "Algorithmica" +, volume = 2 +, year = 1987 +, pages = "81--90" +, update = "97.03 agarwal, 96.05 agarwal" } @inproceedings{z-hpspp-93 -, author = "Zhenbing Zeng" -, title = "Heilbronn Problem for Six Points in a Planar Convex Body" -, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" -, month = jun -, year = 1993 -, pages = "??" -, update = "93.09 milone+mitchell" +, author = "Zhenbing Zeng" +, title = "Heilbronn Problem for Six Points in a Planar Convex Body" +, booktitle = "Proc. 3rd Twente Workshop on Graphs and Combinatorial Optimization" +, month = jun +, year = 1993 +, pages = "??" +, update = "93.09 milone+mitchell" } @inproceedings{ze-cacha-01 -, author = "Kyriakos Zervoudakis and Ioannis Z. Emiris" -, title = "A Comparative Application of Convex Hull Algorithms in Two and Three Dimensions" -, booktitle = "Abstracts 17th European Workshop Comput. Geom." -, nickname = "CG 2001" -, site = "Berlin" -, publisher = "Freie Universit{\"a}t Berlin" -, year = 2001 -, pages = "101--104" -, update = "01.04 icking" +, author = "Kyriakos Zervoudakis and Ioannis Z. Emiris" +, title = "A Comparative Application of Convex Hull Algorithms in Two and Three Dimensions" +, booktitle = "Abstracts 17th European Workshop Comput. Geom." +, nickname = "CG 2001" +, site = "Berlin" +, publisher = "Freie Universit{\"a}t Berlin" +, year = 2001 +, pages = "101--104" +, update = "01.04 icking" } @inproceedings{zb-cstsm-86 -, author = "D. Zhang and A. Bowyer" -, title = "{CSG} set-theoretic solid modeling and {NC} machining of blend surfaces" -, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." -, year = 1986 -, pages = "236--245" +, author = "D. Zhang and A. Bowyer" +, title = "{CSG} set-theoretic solid modeling and {NC} machining of blend surfaces" +, booktitle = "Proc. 2nd Annu. ACM Sympos. Comput. Geom." +, year = 1986 +, pages = "236--245" } @techreport{zmhh-vcuho-97t -, author = "H. Zhang and D. Manocha and T. Hudson and K. Hoff" -, title = "Visibility culling using hierarchical occlusion maps" -, type = "Technical {Report}" -, number = "TR97-004" -, institution = "Dept. Comput. Sci., Univ. North Carolina" -, address = "Chapel Hill, NC" -, year = 1997 -, update = "98.07 bibrelex" +, author = "H. Zhang and D. Manocha and T. Hudson and K. Hoff" +, title = "Visibility culling using hierarchical occlusion maps" +, type = "Technical {Report}" +, number = "TR97-004" +, institution = "Dept. Comput. Sci., Univ. North Carolina" +, address = "Chapel Hill, NC" +, year = 1997 +, update = "98.07 bibrelex" } @inproceedings{zmhh-vcuho-97 -, author = "Hansong Zhang and Dinesh Manocha and Tom Hudson and Kenneth E. Hoff III" -, title = "Visibility Culling using Hierarchical Occlusion Maps" -, booktitle = "SIGGRAPH 97 Conference Proceedings" -, series = "Annual Conference Series" -, organization = "ACM SIGGRAPH" -, publisher = "ACM Press" -, year = 1997 -, pages = "77--88" -, cites = "hh-asgca-85t, hh-qbs-85, hh-pmbsc-85, l-pagaa-44, ms-bsstv-85a, pg-aldit-84, r-cgcg-72, sa-irpcs-84, wb-bfpsm-86, wq-recvm-82, wq-dgvmr-80, w-cs-86, ZZZ" -, update = "99.11 bibrelex, 98.03 agarwal+bibrelex+mitchell" +, author = "Hansong Zhang and Dinesh Manocha and Tom Hudson and Kenneth E. Hoff III" +, title = "Visibility Culling using Hierarchical Occlusion Maps" +, booktitle = "SIGGRAPH 97 Conference Proceedings" +, series = "Annual Conference Series" +, organization = "ACM SIGGRAPH" +, publisher = "ACM Press" +, year = 1997 +, pages = "77--88" +, cites = "hh-asgca-85t, hh-qbs-85, hh-pmbsc-85, l-pagaa-44, ms-bsstv-85a, pg-aldit-84, r-cgcg-72, sa-irpcs-84, wb-bfpsm-86, wq-recvm-82, wq-dgvmr-80, w-cs-86, ZZZ" +, update = "99.11 bibrelex, 98.03 agarwal+bibrelex+mitchell" } @article{zomk-insru-00 -, author = "H.-K. Zhao and S. Osher and B. Merriman and M. Kang" -, title = "Implicit Nonparametric Shape Reconstruction from Unorganized Points Using a Variational Level Set Method" -, journal = "Computer Vision and Image Understanding" -, volume = 80 -, number = 3 -, year = 2000 -, pages = "" -, update = "01.07 devillers" +, author = "H.-K. Zhao and S. Osher and B. Merriman and M. Kang" +, title = "Implicit Nonparametric Shape Reconstruction from Unorganized Points Using a Variational Level Set Method" +, journal = "Computer Vision and Image Understanding" +, volume = 80 +, number = 3 +, year = 2000 +, pages = "" +, update = "01.07 devillers" } @article{zb-ikpnp-94 -, author = "Jianmin Zhao and Norman I. Badler" -, title = "Inverse Kinematics Positioning Using Nonlinear Programming for Highly Articulated Figures" -, journal = "ACM Trans. Graph." -, volume = 13 -, number = 4 -, year = 1994 -, pages = "313--336" -, update = "02.03 orourke" +, author = "Jianmin Zhao and Norman I. Badler" +, title = "Inverse Kinematics Positioning Using Nonlinear Programming for Highly Articulated Figures" +, journal = "ACM Trans. Graph." +, volume = 13 +, number = 4 +, year = 1994 +, pages = "313--336" +, update = "02.03 orourke" } @inproceedings{z-ltacr-89 -, author = "R. Zhao" -, title = "Linear-time algorithms for computing reachability regions from polygonal figures" -, booktitle = "Proc. 1st Workshop Algorithms Data Struct." -, series = "Lecture Notes Comput. Sci." -, volume = 382 -, publisher = "Springer-Verlag" -, year = 1989 -, pages = "163--170" +, author = "R. Zhao" +, title = "Linear-time algorithms for computing reachability regions from polygonal figures" +, booktitle = "Proc. 1st Workshop Algorithms Data Struct." +, series = "Lecture Notes Comput. Sci." +, volume = 382 +, publisher = "Springer-Verlag" +, year = 1989 +, pages = "163--170" } @phdthesis{z-pet-90 -, author = "R. Y. Zhao" -, title = "Placements of {Euclidean} trees" -, school = "School Comput. Sci., McGill Univ." -, address = "Montreal, PQ" -, year = 1990 -, keywords = "doctoral thesis" -, update = "98.07 bibrelex" +, author = "R. Y. Zhao" +, title = "Placements of {Euclidean} trees" +, school = "School Comput. Sci., McGill Univ." +, address = "Montreal, PQ" +, year = 1990 +, keywords = "doctoral thesis" +, update = "98.07 bibrelex" } @article{zsp-cspdf-93 -, author = "J. Zhou and E. C. Sherbrooke and N. M. Patrikalakis" -, title = "Computation of Stationary Points of Distance Functions" -, journal = "Engineering with Computers" -, volume = 9 -, number = 4 -, year = 1993 -, pages = "231--246" -, update = "95.05 abrams" +, author = "J. Zhou and E. C. Sherbrooke and N. M. Patrikalakis" +, title = "Computation of Stationary Points of Distance Functions" +, journal = "Engineering with Computers" +, volume = 9 +, number = 4 +, year = 1993 +, pages = "231--246" +, update = "95.05 abrams" } @article{zszz-cctdt-90 -, author = "Jian-Ming Zhou and Ke-Ran Shao and Ke-Ding Zhou and Qiong-Hua Zhan" -, title = "Computing Constrained Triangulation And {Delaunay} Triangulation: {A} New Algorithm" -, journal = "IEEE Trans. Magn." -, volume = 26 -, number = 2 -, month = mar -, year = 1990 -, pages = "694--697" -, keywords = "triangulation, finite-element mesh generation, constrained triangulation, Delaunay triangulation" -, annote = "CDT in 3D. Generalized Watson's algorithm." -, abstract = "A novel algorithm for computing optimal constrained - triangulation is presented which is equally applicable - to 2-D and 3-D optimal constrained triangulation and - Delaunay triangulation. This algorithm has no - degenerate and near-degenerate problems. The same - amount of time is needed to add a new point to an - existing mesh of any element number provided that the - element it belongs to has been predetermined, as in the - self-adaptive finite-element analysis process. This - algorithm has been applied to finite- element mesh - generation. Test results are given. 11 Refs." +, author = "Jian-Ming Zhou and Ke-Ran Shao and Ke-Ding Zhou and Qiong-Hua Zhan" +, title = "Computing Constrained Triangulation And {Delaunay} Triangulation: {A} New Algorithm" +, journal = "IEEE Trans. Magn." +, volume = 26 +, number = 2 +, month = mar +, year = 1990 +, pages = "694--697" +, keywords = "triangulation, finite-element mesh generation, constrained triangulation, Delaunay triangulation" +, annote = "CDT in 3D. Generalized Watson's algorithm." +, abstract = "A novel algorithm for computing optimal constrained + triangulation is presented which is equally applicable + to 2-D and 3-D optimal constrained triangulation and + Delaunay triangulation. This algorithm has no + degenerate and near-degenerate problems. The same + amount of time is needed to add a new point to an + existing mesh of any element number provided that the + element it belongs to has been predetermined, as in the + self-adaptive finite-element analysis process. This + algorithm has been applied to finite- element mesh + generation. Test results are given. 11 Refs." } @article{zzs-ag3dm-92 -, author = "J. M. Zhou and K. D. Zhou and K. R. Shao" -, title = "Automatic-Generation of 3{D} Meshes for Complicated Solids" -, journal = "IEEE Trans. Magn." -, volume = 28 -, number = 2 -, year = 1992 -, pages = "1759--1762" +, author = "J. M. Zhou and K. D. Zhou and K. R. Shao" +, title = "Automatic-Generation of 3{D} Meshes for Complicated Solids" +, journal = "IEEE Trans. Magn." +, volume = 28 +, number = 2 +, year = 1992 +, pages = "1759--1762" } @phdthesis{z-ssgc-00 -, author = "Y. Zhou" -, title = "Shape Sensitive Geometric Complexity" -, school = "Washington University" -, year = 2000 -, note = "St. Louis, MO, USA." -, keywords = "doctoral thesis" -, update = "01.04 orourke" +, author = "Y. Zhou" +, title = "Shape Sensitive Geometric Complexity" +, school = "Washington University" +, year = 2000 +, note = "St. Louis, MO, USA." +, keywords = "doctoral thesis" +, update = "01.04 orourke" } @article{zkt-tdscg-98 -, author = "Y. Zhou and A. Kaufman and A. W. Toga" -, title = "Three-Dimensional Skeleton and Centerline Generation Based on an Approximate Minimum Distance Field" -, journal = "Visual Comput." -, volume = 14 -, number = 7 -, year = 1998 -, pages = "303--314" -, update = "99.03 held" +, author = "Y. Zhou and A. Kaufman and A. W. Toga" +, title = "Three-Dimensional Skeleton and Centerline Generation Based on an Approximate Minimum Distance Field" +, journal = "Visual Comput." +, volume = 14 +, number = 7 +, year = 1998 +, pages = "303--314" +, update = "99.03 held" } @inproceedings{zs-ssgp-01 -, author = "Y. Zhou and S. Suri" -, title = "Shape Sensitive Geometric Permutations" -, booktitle = "Proc. 12th ACM-SIAM Sympos. Discrete Algorithms" -, nickname = "SODA '01" -, year = 2001 -, pages = "234--243" -, update = "01.04 orourke" +, author = "Y. Zhou and S. Suri" +, title = "Shape Sensitive Geometric Permutations" +, booktitle = "Proc. 12th ACM-SIAM Sympos. Discrete Algorithms" +, nickname = "SODA '01" +, year = 2001 +, pages = "234--243" +, update = "01.04 orourke" } @article{z-rtatd-85 -, author = "Z. Y. Zhou" -, title = "A real time algorithm for two-dimensional convex hull problem ({Chinese} {English} summary)" -, journal = "Chinese J. Comput." -, volume = 8 -, year = 1985 -, pages = "136--143" +, author = "Z. Y. Zhou" +, title = "A real time algorithm for two-dimensional convex hull problem ({Chinese} {English} summary)" +, journal = "Chinese J. Comput." +, volume = 8 +, year = 1985 +, pages = "136--143" } @article{z-acpap-97 -, author = "B. Zhu" -, title = "Approximating convex polyhedra with axis-parallel boxes" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 7 -, year = 1997 -, pages = "253--267" -, update = "97.07 devillers" +, author = "B. Zhu" +, title = "Approximating convex polyhedra with axis-parallel boxes" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 7 +, year = 1997 +, pages = "253--267" +, update = "97.07 devillers" } @article{z-cswpt-97 -, author = "Binhai Zhu" -, title = "Computing the shortest watchtower of a polyhedral terrain in {$O(n \log n)$} time" -, journal = "Comput. Geom. Theory Appl." -, volume = 8 -, number = 4 -, year = 1997 -, pages = "181--193" -, succeeds = "z-iacsw-92" -, update = "98.03 mitchell" +, author = "Binhai Zhu" +, title = "Computing the shortest watchtower of a polyhedral terrain in {$O(n \log n)$} time" +, journal = "Comput. Geom. Theory Appl." +, volume = 8 +, number = 4 +, year = 1997 +, pages = "181--193" +, succeeds = "z-iacsw-92" +, update = "98.03 mitchell" } @inproceedings{z-frsdt-97 -, author = "Binhai Zhu" -, title = "Fast Range Searching with {Delaunay} Triangulations" -, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" -, nickname = "COCOON '97" -, site = "Shanghai, China" -, series = "Lecture Notes Comput. Sci." -, volume = 1276 -, publisher = "Springer-Verlag" -, year = 1997 -, pages = "52--61" -, update = "99.11 bibrelex, 98.03 mitchell" +, author = "Binhai Zhu" +, title = "Fast Range Searching with {Delaunay} Triangulations" +, booktitle = "Proc. 3rd Ann. Internat. Conf. Computing and Combinatorics" +, nickname = "COCOON '97" +, site = "Shanghai, China" +, series = "Lecture Notes Comput. Sci." +, volume = 1276 +, publisher = "Springer-Verlag" +, year = 1997 +, pages = "52--61" +, update = "99.11 bibrelex, 98.03 mitchell" } @inproceedings{z-fcgsm-94 -, author = "B. Zhu" -, title = "Further Computational Geometry in Secondary Memory" -, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." -, nickname = "ISAAC '94" -, site = "Beijing, China" -, series = "Lecture Notes Comput. Sci." -, volume = 834 -, publisher = "Springer-Verlag" -, year = 1994 -, pages = "514--522" -, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" +, author = "B. Zhu" +, title = "Further Computational Geometry in Secondary Memory" +, booktitle = "Proc. 5th Annu. Internat. Sympos. Algorithms Comput." +, nickname = "ISAAC '94" +, site = "Beijing, China" +, series = "Lecture Notes Comput. Sci." +, volume = 834 +, publisher = "Springer-Verlag" +, year = 1994 +, pages = "514--522" +, update = "99.11 bibrelex, 98.03 smid, 96.05 mitchell" } @inproceedings{z-iacsw-92 -, author = "B. Zhu" -, title = "Improved algorithms for computing the shortest watchtower of polyhedral terrains" -, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." -, year = 1992 -, pages = "286--291" -, precedes = "z-cswpt-97" -, cites = "ce-oails-88, cg-fc1ds-86, cs-vppt-89, cs-agpli-90, dk-ladsc-85, dz-irls-94, k-osps-83, s-swrpp-88, ZZZ" -, update = "98.07 bibrelex, 98.03 mitchell" +, author = "B. Zhu" +, title = "Improved algorithms for computing the shortest watchtower of polyhedral terrains" +, booktitle = "Proc. 4th Canad. Conf. Comput. Geom." +, year = 1992 +, pages = "286--291" +, precedes = "z-cswpt-97" +, cites = "ce-oails-88, cg-fc1ds-86, cs-vppt-89, cs-agpli-90, dk-ladsc-85, dz-irls-94, k-osps-83, s-swrpp-88, ZZZ" +, update = "98.07 bibrelex, 98.03 mitchell" } @inproceedings{z-idcmt-94 -, author = "B. Zhu" -, title = "Intersection Detection and Computation of {Manhattan} Terrains" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "256--262" -, cites = "b-akrp-77, ce-oails-92, cegs-lscaa-89, cg-fc1ds-86, c-oaitd-92, b-earsh-92, egs-oplms-86, gp-narlp-92, ht-fafnc-84, k-osps-83, p-lmps3-93, ps-cgi-85, pt-fdplm-89, s-swrpp-88, st-pplup-86, t-dsna-83, wl-arrcd-85, vw-rlsil-82, ZZZ" -, update = "98.11 bibrelex, 94.09 jones" +, author = "B. Zhu" +, title = "Intersection Detection and Computation of {Manhattan} Terrains" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "256--262" +, cites = "b-akrp-77, ce-oails-92, cegs-lscaa-89, cg-fc1ds-86, c-oaitd-92, b-earsh-92, egs-oplms-86, gp-narlp-92, ht-fafnc-84, k-osps-83, p-lmps3-93, ps-cgi-85, pt-fdplm-89, s-swrpp-88, st-pplup-86, t-dsna-83, wl-arrcd-85, vw-rlsil-82, ZZZ" +, update = "98.11 bibrelex, 94.09 jones" } @inproceedings{z-owlbs-96 -, author = "B. Zhu" -, title = "On the {$\Omega (n^{4/3})$} weak lower bounds for some {3D} geometric problems" -, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." -, year = 1996 -, pages = "270--275" -, update = "97.03 agarwal, 96.09 mitchell" +, author = "B. Zhu" +, title = "On the {$\Omega (n^{4/3})$} weak lower bounds for some {3D} geometric problems" +, booktitle = "Proc. 8th Canad. Conf. Comput. Geom." +, year = 1996 +, pages = "270--275" +, update = "97.03 agarwal, 96.09 mitchell" } @inproceedings{zm-sdnah-91 -, author = "B. Zhu and A. Mirzaian" -, title = "Sorting does not always help in computational geometry" -, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." -, month = aug -, year = 1991 -, pages = "239--242" -, cites = "agss-ltacv-89, aw-cg-88, f-savd-87, gs-pmgsc-85, lp-cgs-84, ps-cgi-85, s-mplbc-85, y-lbact-89, ZZZ" -, update = "98.07 bibrelex" +, author = "B. Zhu and A. Mirzaian" +, title = "Sorting does not always help in computational geometry" +, booktitle = "Proc. 3rd Canad. Conf. Comput. Geom." +, month = aug +, year = 1991 +, pages = "239--242" +, cites = "agss-ltacv-89, aw-cg-88, f-savd-87, gs-pmgsc-85, lp-cgs-84, ps-cgi-85, s-mplbc-85, y-lbact-89, ZZZ" +, update = "98.07 bibrelex" } @article{zp-eaatl-01 -, author = "B. Zhu and C. K. Poon" -, title = "Efficient approximation algorithms for two-label point labeling" -, journal = "Internat. J. Comput. Geom. Appl." -, volume = 11 -, year = 2001 -, pages = "455--464" -, update = "01.11 smid" +, author = "B. Zhu and C. K. Poon" +, title = "Efficient approximation algorithms for two-label point labeling" +, journal = "Internat. J. Comput. Geom. Appl." +, volume = 11 +, year = 2001 +, pages = "455--464" +, update = "01.11 smid" } @article{zssm-grpgv-96 -, author = "C. Zhu and G. Sundaram and J. Snoeyink and Joseph S. B. Mitchell" -, title = "Generating Random Polygons with Given Vertices" -, journal = "Comput. Geom. Theory Appl." -, volume = 6 -, year = 1996 -, pages = "277--290" -, succeeds = "zssm-grxmp-94" -, update = "98.03 mitchell, 97.03 devillers+smid" +, author = "C. Zhu and G. Sundaram and J. Snoeyink and Joseph S. B. Mitchell" +, title = "Generating Random Polygons with Given Vertices" +, journal = "Comput. Geom. Theory Appl." +, volume = 6 +, year = 1996 +, pages = "277--290" +, succeeds = "zssm-grxmp-94" +, update = "98.03 mitchell, 97.03 devillers+smid" } @inproceedings{zssm-grxmp-94 -, author = "C. Zhu and G. Sundaram and J. Snoeyink and Joseph S. B. Mitchell" -, title = "Generating Random $x$-Monotone Polygons with Given Vertices" -, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." -, year = 1994 -, pages = "189--194" -, precedes = "zssm-grpgv-96" -, cites = "es-gtr-92, g-eadch-72, ghlst-ltavs-87, gh-ospqs-89, mr-ulbnm-90, ov-grp-91, sz-grmp-93, ls-utstp-82, t-cgpis-89, ZZZ" -, update = "98.11 bibrelex, 98.03 mitchell, 97.03 devillers+smid, 94.09 jones" +, author = "C. Zhu and G. Sundaram and J. Snoeyink and Joseph S. B. Mitchell" +, title = "Generating Random $x$-Monotone Polygons with Given Vertices" +, booktitle = "Proc. 6th Canad. Conf. Comput. Geom." +, year = 1994 +, pages = "189--194" +, precedes = "zssm-grpgv-96" +, cites = "es-gtr-92, g-eadch-72, ghlst-ltavs-87, gh-ospqs-89, mr-ulbnm-90, ov-grp-91, sz-grmp-93, ls-utstp-82, t-cgpis-89, ZZZ" +, update = "98.11 bibrelex, 98.03 mitchell, 97.03 devillers+smid, 94.09 jones" } @article{zl-nhaeh-91 -, author = "David Zhu and Jean-Claude Latombe" -, title = "New heuristic algorithms for efficient hierarchical path planning" -, journal = "IEEE Trans. Robot. Autom." -, volume = 7 -, year = 1991 -, pages = "9--20" -, update = "97.03 schwarzkopf" +, author = "David Zhu and Jean-Claude Latombe" +, title = "New heuristic algorithms for efficient hierarchical path planning" +, journal = "IEEE Trans. Robot. Autom." +, volume = 7 +, year = 1991 +, pages = "9--20" +, update = "97.03 schwarzkopf" } @inproceedings{zgw-emf-94 -, author = "Y. Zhuang and K. Y. Goldberg and Y.-C. Wong" -, title = "On the existence of modular fixtures" -, booktitle = "Proc. 11th IEEE Internat. Conf. Robot. Autom." -, month = may -, year = 1994 -, pages = "543--549" -, update = "98.03 bibrelex" +, author = "Y. Zhuang and K. Y. Goldberg and Y.-C. Wong" +, title = "On the existence of modular fixtures" +, booktitle = "Proc. 11th IEEE Internat. Conf. Robot. Autom." +, month = may +, year = 1994 +, pages = "543--549" +, update = "98.03 bibrelex" } @inproceedings{zik-eprtn-98 -, author = "Sergey Zhukov and Andrei Iones and G. Kronin" -, title = "Environment Preprocessing for Real-Time Navigation of Intelligent Agents" -, booktitle = "Proc. SCCG'98 Conference in Bratislava ??" -, month = apr -, year = 1998 -, comments = " +, author = "Sergey Zhukov and Andrei Iones and G. Kronin" +, title = "Environment Preprocessing for Real-Time Navigation of Intelligent Agents" +, booktitle = "Proc. SCCG'98 Conference in Bratislava ??" +, month = apr +, year = 1998 +, comments = " This is Andrei Iones and Sergey Zhukov from St-Petersburg State Technical University, Russia. \par @@ -151600,205 +151600,205 @@ @inproceedings{zik-eprtn-98 We base our technology on accessibility graphs, not on road maps/visibility graphs since these methods prove to be inefficient in our context." -, update = "98.07 mitchell" +, update = "98.07 mitchell" } @book{z-lp-94 -, author = "G. M. Ziegler" -, title = "Lectures on Polytopes" -, series = "Graduate Texts in Mathematics" -, volume = 152 -, publisher = "Springer-Verlag" -, address = "Heidelberg" -, year = 1994 -, keywords = "polytope, Fourier-Motzkin elimination, Schlegel diagram, shellability, Gale transform, oriented matroid, cyclic polytope, zonotope, permutahedron, associhedron, neighborly polytope, fiber polytope, Lawrence construction, diameter, non-rational polytope, tiling" -, update = "98.07 agarwal, 95.09 jones, 95.01 korneenko" -, annote = "advanced textbook on modern theory of convex polytopes" +, author = "G. M. Ziegler" +, title = "Lectures on Polytopes" +, series = "Graduate Texts in Mathematics" +, volume = 152 +, publisher = "Springer-Verlag" +, address = "Heidelberg" +, year = 1994 +, keywords = "polytope, Fourier-Motzkin elimination, Schlegel diagram, shellability, Gale transform, oriented matroid, cyclic polytope, zonotope, permutahedron, associhedron, neighborly polytope, fiber polytope, Lawrence construction, diameter, non-rational polytope, tiling" +, update = "98.07 agarwal, 95.09 jones, 95.01 korneenko" +, annote = "advanced textbook on modern theory of convex polytopes" } @article{z-wcm-93 -, author = "G. M. Ziegler" -, title = "``What is a complex matroid''" -, journal = "Discrete Comput. Geom." -, volume = 10 -, year = 1993 -, pages = "313--348" -, update = "96.05 pocchiola" +, author = "G. M. Ziegler" +, title = "``What is a complex matroid''" +, journal = "Discrete Comput. Geom." +, volume = 10 +, year = 1993 +, pages = "313--348" +, update = "96.05 pocchiola" } @book{z-fem-77 -, author = "O. C. Zienkiewicz" -, title = "The Finite Element Method" -, edition = "3rd" -, publisher = "McGraw-Hill" -, year = 1977 -, update = "98.03 bibrelex" +, author = "O. C. Zienkiewicz" +, title = "The Finite Element Method" +, edition = "3rd" +, publisher = "McGraw-Hill" +, year = 1977 +, update = "98.03 bibrelex" } @book{zt-fem-89 -, author = "O. C. Zienkiewicz and R. L. Taylor" -, title = "The Finite Element Method" -, edition = "4th" -, publisher = "McGraw-Hill" -, year = 1989 -, update = "98.03 bibrelex, 97.11 bibrelex" +, author = "O. C. Zienkiewicz and R. L. Taylor" +, title = "The Finite Element Method" +, edition = "4th" +, publisher = "McGraw-Hill" +, year = 1989 +, update = "98.03 bibrelex, 97.11 bibrelex" } @article{z-udezk-70 -, author = "H. Ziezold" -, title = "{\"U}ber die {Eckenzahl} zuf{\"a}lliger konvexer {Polygone}" -, journal = "Izv. Akad. Nauk. Armanj. SSR. Ser. Mat." -, volume = 5 -, year = 1970 -, pages = "296--312" +, author = "H. Ziezold" +, title = "{\"U}ber die {Eckenzahl} zuf{\"a}lliger konvexer {Polygone}" +, journal = "Izv. Akad. Nauk. Armanj. SSR. Ser. Mat." +, volume = 5 +, year = 1970 +, pages = "296--312" } @article{z-lsir-91 -, author = "K. Zikan" -, title = "Least-Squares Image Registration" -, journal = "ORSA J. Comput." -, volume = 3 -, year = 1991 -, pages = "169--172" +, author = "K. Zikan" +, title = "Least-Squares Image Registration" +, journal = "ORSA J. Comput." +, volume = 3 +, year = 1991 +, pages = "169--172" } @techreport{zs-fmir-88 -, author = "K. Zikan and T. M. Silberberg" -, title = "The {Frobenius} Metric in Image Registration" -, type = "Report" -, number = "88-13" -, institution = "Department of Operations Research, Stanford University" -, year = 1988 -, precedes = "zs-fmir-92" -, update = "98.07 rote" +, author = "K. Zikan and T. M. Silberberg" +, title = "The {Frobenius} Metric in Image Registration" +, type = "Report" +, number = "88-13" +, institution = "Department of Operations Research, Stanford University" +, year = 1988 +, precedes = "zs-fmir-92" +, update = "98.07 rote" } @incollection{zs-fmir-92 -, author = "Karel Zikan and Theresa M. Silberberg" -, title = "The {Frobenius} Metric in Image Registration" -, editor = "L. Shapiro and A. Rosenfeld" -, booktitle = "Computer Vision and Image Processing" -, publisher = "Academic Press" -, year = 1992 -, pages = "385--420" -, succeeds = "zs-fmir-88" -, update = "98.07 rote" +, author = "Karel Zikan and Theresa M. Silberberg" +, title = "The {Frobenius} Metric in Image Registration" +, editor = "L. Shapiro and A. Rosenfeld" +, booktitle = "Computer Vision and Image Processing" +, publisher = "Academic Press" +, year = 1992 +, pages = "385--420" +, succeeds = "zs-fmir-88" +, update = "98.07 rote" } @book{z-epc-93 -, author = "R. Zippel" -, title = "Effective Polynomial Computation" -, publisher = "Kluwer Academic Publishers" -, year = 1993 -, update = "98.03 bibrelex" +, author = "R. Zippel" +, title = "Effective Polynomial Computation" +, publisher = "Kluwer Academic Publishers" +, year = 1993 +, update = "98.03 bibrelex" } @techreport{z-gcema-92 -, author = "C. Zirkelbach" -, title = "Geometrisches Clustern --- ein metrischer Ansatz" -, type = "Dissertation" -, institution = "Department of Computer Science" -, address = "Universit{\"a}t W{\"u}rzburg, Germany" -, year = 1992 -, update = "94.05 franciosa" +, author = "C. Zirkelbach" +, title = "Geometrisches Clustern --- ein metrischer Ansatz" +, type = "Dissertation" +, institution = "Department of Computer Science" +, address = "Universit{\"a}t W{\"u}rzburg, Germany" +, year = 1992 +, update = "94.05 franciosa" } @techreport{z-mbtcp-90 -, author = "C. Zirkelbach" -, title = "Monotonous bisector trees and clustering problems" -, type = "Technical Report" -, institution = "Department of Computer Science" -, address = "Universit{\"a}t W{\"u}rzburg, Germany" -, year = 1990 -, precedes = "nvz-mbtte-92" -, update = "94.05 franciosa" +, author = "C. Zirkelbach" +, title = "Monotonous bisector trees and clustering problems" +, type = "Technical Report" +, institution = "Department of Computer Science" +, address = "Universit{\"a}t W{\"u}rzburg, Germany" +, year = 1990 +, precedes = "nvz-mbtte-92" +, update = "94.05 franciosa" } @incollection{z-tm-97 -, author = "R. T. {\v Zivaljevi\'c}" -, title = "Topological methods" -, chapter = 11 -, editor = "Jacob E. Goodman and Joseph O'Rourke" -, booktitle = "Handbook of Discrete and Computational Geometry" -, publisher = "CRC Press LLC" -, address = "Boca Raton, FL" -, year = 1997 -, pages = "209--224" -, update = "97.11 orourke" +, author = "R. T. {\v Zivaljevi\'c}" +, title = "Topological methods" +, chapter = 11 +, editor = "Jacob E. Goodman and Joseph O'Rourke" +, booktitle = "Handbook of Discrete and Computational Geometry" +, publisher = "CRC Press LLC" +, address = "Boca Raton, FL" +, year = 1997 +, pages = "209--224" +, update = "97.11 orourke" } @article{zv-ehst-90 -, author = "R. T. {\v Z}ivaljevi{\'c} and S. T. Vre{\'c}ica" -, title = "An extension of the ham sandwich theorem" -, journal = "Bull. London Math. Soc." -, volume = 22 -, year = 1990 -, pages = "183--186" -, update = "95.01 matousek" +, author = "R. T. {\v Z}ivaljevi{\'c} and S. T. Vre{\'c}ica" +, title = "An extension of the ham sandwich theorem" +, journal = "Bull. London Math. Soc." +, volume = 22 +, year = 1990 +, pages = "183--186" +, update = "95.01 matousek" } @techreport{z-tcg-78 -, author = "J. E. Zolnowsky" -, title = "Topics in computational geometry" -, type = "Report" -, number = "STAN-CS-78-659" -, institution = "Dept. Comput. Sci., Stanford Univ." -, address = "Stanford, CA" -, year = 1978 -, update = "97.11 bibrelex" +, author = "J. E. Zolnowsky" +, title = "Topics in computational geometry" +, type = "Report" +, number = "STAN-CS-78-659" +, institution = "Dept. Comput. Sci., Stanford Univ." +, address = "Stanford, CA" +, year = 1978 +, update = "97.11 bibrelex" } @inproceedings{ze-fsbi-00 -, author = "Afra Zomorodian and Herbert Edelsbrunner" -, title = "Fast Software for Box Intersections" -, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." -, year = 2000 -, pages = "129--138" -, update = "00.11 jones" +, author = "Afra Zomorodian and Herbert Edelsbrunner" +, title = "Fast Software for Box Intersections" +, booktitle = "Proc. 16th Annu. ACM Sympos. Comput. Geom." +, year = 2000 +, pages = "129--138" +, update = "00.11 jones" } @article{z-gccbc-92 -, author = "A. Zucco" -, title = "The generic contact of convex bodies with circumscribed homothets of a convex surface" -, journal = "Discrete Comput. Geom." -, volume = 7 -, year = 1992 -, pages = "319--323" +, author = "A. Zucco" +, title = "The generic contact of convex bodies with circumscribed homothets of a convex surface" +, journal = "Discrete Comput. Geom." +, volume = 7 +, year = 1992 +, pages = "319--323" } @incollection{z-clahe-94 -, author = "Karel Zuiderveld" -, title = "Contrast Limited Adaptive Histogram Equalization" -, editor = "Paul Heckbert" -, booktitle = "Graphics Gems IV" -, publisher = "Academic Press" -, address = "Boston, MA" -, year = 1994 -, pages = "474--485" -, keywords = "contrast enhancement" -, update = "94.09 heckbert" -, annote = "Presents a contrast enhancement technique that overcomes +, author = "Karel Zuiderveld" +, title = "Contrast Limited Adaptive Histogram Equalization" +, editor = "Paul Heckbert" +, booktitle = "Graphics Gems IV" +, publisher = "Academic Press" +, address = "Boston, MA" +, year = 1994 +, pages = "474--485" +, keywords = "contrast enhancement" +, update = "94.09 heckbert" +, annote = "Presents a contrast enhancement technique that overcomes some of the flaws of simple histogram equalization, such as noise amplification and suppression of local contrast. Contains C code." } @article{z-pmris-80 -, author = "N. Zvegintzov" -, title = "Partial-match retrieval in an index sequential directory" -, journal = "Comput. J." -, volume = 23 -, year = 1980 -, pages = "37--40" +, author = "N. Zvegintzov" +, title = "Partial-match retrieval in an index sequential directory" +, journal = "Comput. J." +, volume = 23 +, year = 1980 +, pages = "37--40" } @article{zjh-scpc-87 -, author = "M. J. Zyda and A. R. Jones and P. G. Hogan" -, title = "Surface construction from planar contours" -, journal = "Computers and Graphics" -, volume = 11 -, year = 1987 -, pages = "393--408" -, update = "98.03 bibrelex" +, author = "M. J. Zyda and A. R. Jones and P. G. Hogan" +, title = "Surface construction from planar contours" +, journal = "Computers and Graphics" +, volume = 11 +, year = 1987 +, pages = "393--408" +, update = "98.03 bibrelex" } @book{gg-mca-99 @@ -151938,7 +151938,7 @@ @TechReport{Devillers2014Generator , number = "RR-8467" , month = "Feb" , year = "2014" -, url = "https://hal.inria.fr/hal-00943409" +, url = "https://inria.hal.science/hal-00943409" } @article{XinWang2009improvingchenandhan, @@ -152006,13 +152006,13 @@ @inproceedings{cignoni1998metro @inproceedings{boissonnat2009Delaunay, TITLE = {{Incremental construction of the Delaunay graph in medium dimension}}, AUTHOR = {Boissonnat, Jean-Daniel and Devillers, Olivier and Hornus, Samuel}, - URL = {https://hal.inria.fr/inria-00412437}, + URL = {https://inria.hal.science/inria-00412437}, BOOKTITLE = {{Annual Symposium on Computational Geometry}}, ADDRESS = {Aarhus, Denmark}, PAGES = {208-216}, YEAR = {2009}, MONTH = Jun, - PDF = {https://hal.inria.fr/inria-00412437/file/socg09.pdf}, + PDF = {https://inria.hal.science/inria-00412437/file/socg09.pdf}, HAL_ID = {inria-00412437}, HAL_VERSION = {v1}, } @@ -152037,12 +152037,12 @@ @InProceedings{lr-hts-12 @article{cvl-ew-12, Author = {Cabello, Sergio and de Verdière, {\'E}ric Colin and Lazarus, Francis}, - Title = {Algorithms for the edge-width of an embedded graph}, - Journal = {Computational Geometry}, - Volume = {45}, - Pages = {215--224}, - Year = {2012}, - Url = {https://monge.univ-mlv.fr/~colinde/pub/09edgewidth.pdf} + Title = {Algorithms for the edge-width of an embedded graph}, + Journal = {Computational Geometry}, + Volume = {45}, + Pages = {215--224}, + Year = {2012}, + Url = {https://monge.univ-mlv.fr/~colinde/pub/09edgewidth.pdf} @inproceedings{tang2009interactive, title={Interactive Hausdorff distance computation for general polygonal models}, diff --git a/Documentation/doc/resources/1.10.0/BaseDoxyfile.in b/Documentation/doc/resources/1.10.0/BaseDoxyfile.in new file mode 100644 index 000000000000..0cc706e0f5d2 --- /dev/null +++ b/Documentation/doc/resources/1.10.0/BaseDoxyfile.in @@ -0,0 +1,822 @@ +# Doxyfile 1.10.0 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# Only the settings that are not the default ones are kept in this file + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = YES + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = NO + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:^^" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". Note that you cannot put \n's in the value part of an alias +# to insert newlines (in the resulting output). You can put ^^ in the value part +# of an alias to insert a newline as if a physical newline was in the original +# file. When you need a literal { or } or , in the value part of an alias you +# have to escape them by means of a backslash (\), this can lead to conflicts +# with the commands \{ and \} for these it is advised to use the version @{ and +# @} or use a double escape (\\{ and \\}) + +ALIASES = "cgal=%CGAL" \ + "protocgal=C++gal" \ + "plageo=Plageo" \ + "stl=STL" \ + "gmp=GMP" \ + "gmpxx=GMPXX" \ + "iso=ISO" \ + "lisp=Lisp" \ + "ieee=IEEE" \ + "ascii=ASCII" \ + "exacus=Exacus" \ + "mpir=MPIR" \ + "mpfr=MPFR" \ + "leda=LEDA" \ + "gcc=GCC" \ + "dcel=DCEL" \ + "bgl=BGL" \ + "boost=Boost" \ + "gnu=GNU" \ + "ms=MS" \ + "qt=Qt" \ + "qt6=Qt6" \ + "eigen=Eigen" \ + "opengr=OpenGR" \ + "libpointmatcher=libpointmatcher" \ + "core=Core" \ + "mpfi=MPFI" \ + "ntl=NTL" \ + "pdb=PDB" \ + "esbtl=ESBTL" \ + "tbb=TBB" \ + "laslib=LASlib" \ + "opencv=OpenCV" \ + "tensorflow=TensorFlow" \ + "metis=METIS" \ + "zlib=zlib" \ + "ceres=Ceres" \ + "glpk=GLPK" \ + "scip=SCIP" \ + "osqp=OSQP" \ + "rs=RS" \ + "rs3=RS3" \ + "unix=Unix" \ + "api=API" \ + "vtk=VTK" \ + "visualstudio=Visual Studio" \ + "taucs=TAUCS" \ + "lapack=LAPACK" \ + "blas=BLAS" \ + "cpp=C++" \ + "cpp11=C++11" \ + "CC=C++" \ + "cgalExample{1}=
File \ref \1 \include \1" \ + "cgalFigureAnchor{1}=\anchor fig__\1" \ + "cgalFigureRef{1}=\ref fig__\1" \ + "cgalFigureBegin{2}=\anchor fig__\1 ^^ \image html \2 ^^ \image latex \2 \"\" width=15cm ^^ \htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureBegin{3}=\anchor fig__\1 ^^
\image html \2 ^^ \image latex \2 \"\" width=7.5cm ^^ \image html \3 ^^ \image latex \3 \"\" width=7.5cm ^^
\htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureBegin{4}=\anchor fig__\1 ^^
\image html \2 ^^ \image latex \2 \"\" width=5cm ^^ \image html \3 ^^ \image latex \3 \"\" width=5cm ^^ \image html \4 ^^ \image latex \4 \"\" width=5cm ^^
\htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureBegin{5}=\anchor fig__\1 ^^
\image html \2 ^^ \image latex \2 \"\" width=3.75cm ^^ \image html \3 ^^ \image latex \3 \"\" width=3.75cm ^^ \image html \4 ^^ \image latex \4 \"\" width=3.75cm ^^ \image html \5 ^^ \image latex \5 \"\" width=3.75cm ^^
\htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureBegin{6}=\anchor fig__\1 ^^
\image html \2 ^^ \image latex \2 \"\" width=3cm ^^ \image html \3 ^^ \image latex \3 \"\" width=3cm ^^ \image html \4 ^^ \image latex \4 \"\" width=3cm ^^ \image html \5 ^^ \image latex \5 \"\" width=3cm ^^ \image html \6 ^^ \image latex \6 \"\" width=3cm ^^
\htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureBegin{7}=\anchor fig__\1 ^^
\image html \2 ^^ \image latex \2 \"\" width=2.5cm ^^ \image html \3 ^^ \image latex \3 \"\" width=2.5cm ^^ \image html \4 ^^ \image latex \4 \"\" width=2.5cm ^^ \image html \5 ^^ \image latex \5 \"\" width=2.5cm ^^ \image html \6 ^^ \image latex \6 \"\" width=2.5cm ^^ \image html \7 ^^ \image latex \7 \"\" width=2.5cm ^^
\htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureBegin{8}=\anchor fig__\1 ^^
\image html \2 ^^ \image latex \2 \"\" width=2.1cm ^^ \image html \3 ^^ \image latex \3 \"\" width=2.1cm ^^ \image html \4 ^^ \image latex \4 \"\" width=2.1cm ^^ \image html \5 ^^ \image latex \5 \"\" width=2.1cm ^^ \image html \6 ^^ \image latex \6 \"\" width=2.1cm ^^ \image html \7 ^^ \image latex \7 \"\" width=2.1cm ^^ \image html \8 ^^ \image latex \8 \"\" width=2.1cm ^^
\htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureBegin{9}=\anchor fig__\1 ^^
\image html \2 ^^ \image latex \2 \"\" width=1.9cm ^^ \image html \3 ^^ \image latex \3 \"\" width=1.9cm ^^ \image html \4 ^^ \image latex \4 \"\" width=1.9cm ^^ \image html \5 ^^ \image latex \5 \"\" width=1.9cm ^^ \image html \6 ^^ \image latex \6 \"\" width=1.9cm ^^ \image html \7 ^^ \image latex \7 \"\" width=1.9cm ^^ \image html \8 ^^ \image latex \8 \"\" width=1.9cm ^^ \image html \9 ^^ \image latex \9 \"\" width=1.9cm ^^
\htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureBegin{10}=\anchor fig__\1 ^^
\image html \2 ^^ \image latex \2 \"\" width=1.6cm ^^ \image html \3 ^^ \image latex \3 \"\" width=1.6cm ^^ \image html \4 ^^ \image latex \4 \"\" width=1.6cm ^^ \image html \5 ^^ \image latex \5 \"\" width=1.6cm ^^ \image html \6 ^^ \image latex \6 \"\" width=1.6cm ^^ \image html \7 ^^ \image latex \7 \"\" width=1.6cm ^^ \image html \8 ^^ \image latex \8 \"\" width=1.6cm ^^ \image html \9 ^^ \image latex \9 \"\" width=1.6cm ^^ \image html \10 ^^ \image latex \10 \"\" width=1.6cm ^^
\htmlonly[block]
\endhtmlonly ^^ \ref fig__\1" \ + "cgalFigureEnd=\htmlonly[block]
\endhtmlonly
" \ + "cgalFigureCaptionBegin{1}=\htmlonly[block]
\endhtmlonly \ref fig__\1" \ + "cgalFigureCaptionEnd=\htmlonly[block]
\endhtmlonly
" \ + "cgalConcept=\details
^^ \brief" \ + "cgalConceptNamespace=\details
^^ \brief" \ + "cgalRefines=Refines" \ + "cgalRefines{1}=
@cgalRefines
@c \1
" \ + "cgalRefines{2}=
@cgalRefines
@c \1
@c \2
" \ + "cgalRefines{3}=
@cgalRefines
@c \1
@c \2
@c \3
" \ + "cgalRefines{4}=
@cgalRefines
@c \1
@c \2
@c \3
@c \4
" \ + "cgalRefines{5}=
@cgalRefines
@c \1
@c \2
@c \3
@c \4
@c \5
" \ + "cgalRefinesBare{1}=
@cgalRefines
\1
" \ + "cgalRefinesBare{2}=
@cgalRefines
@c \1
\2
" \ + "cgalModelsHeader=Is model of" \ + "cgalModels{1}=
@cgalModelsHeader
@c \1
" \ + "cgalModels{2}=
@cgalModelsHeader
@c \1
@c \2
" \ + "cgalModels{3}=
@cgalModelsHeader
@c \1
@c \2
@c \3
" \ + "cgalModels{4}=
@cgalModelsHeader
@c \1
@c \2
@c \3
@c \4
" \ + "cgalModels{5}=
@cgalModelsHeader
@c \1
@c \2
@c \3
@c \4
@c \5
" \ + "cgalModels{6}=
@cgalModelsHeader
@c \1
@c \2
@c \3
@c \4
@c \5
@c \6
" \ + "cgalModelsBareBegin=
@cgalModelsHeader
" \ + "cgalModelsBareEnd=
" \ + "cgalModelsBare{1}=
\1
" \ + "cgalGeneralizes=\xrefitem generalizes \"Generalizes\" \"Generalization Relationships\"" \ + "cgalHasModelsHeader=Has models" \ + "cgalHasModelsBegin=
@cgalHasModelsHeader
" \ + "cgalHasModels{1}=
`\1`
" \ + "cgalHasModelsBare{1}=
\1
" \ + "cgalHasModelsEnd=
" \ + "cgalDebugBegin=\htmlonly[block]
Debugging Support
\endhtmlonly ^^" \ + "cgalDebugEnd=\htmlonly[block]
\endhtmlonly" \ + "cgalDebugFunction=This is a function for debugging purpose." \ + "cgalAdvancedBegin=^^ \htmlonly[block]
Advanced
\endhtmlonly ^^" \ + "cgalAdvancedEnd=\noop ^^ \htmlonly[block]
\endhtmlonly" \ + "cgalAdvancedFunction=This is an advanced function." \ + "cgalAdvancedClass=This is an advanced class." \ + "cgalAdvancedType=This is an advanced type." \ + "cgalAdvancedConcept=This is an advanced concept." \ + "cgalRequiresCPP11=\warning This function requires a C++11 compiler." \ + "cgalPkgPicture{1}=
^^ \image html \1 ^^
" \ + "cgalPkgSummaryBegin=
" \ + "cgalPkgSummaryEnd=
" \ + "cgalPkgShortInfoBegin=
" \ + "cgalPkgShortInfoEnd=
" \ + "cgalPkgAuthor{1}=
\1
" \ + "cgalPkgAuthors{1}=\cgalPkgAuthor{\1}" \ + "cgalPkgDesc{1}=
\1
" \ + "cgalPkgSince{1}=Introduced in: \cgal \1
" \ + "cgalPkgDependsOn{1}=Depends on: \1
" \ + "cgalPkgLicense{1}=License: \1
" \ + "cgalPkgDemo{2}=Windows Demo: \1
" \ + "cgalPkgDemo{4}=Windows Demos: \1, \3
" \ + "cgalPkgDemo{6}=Windows Demos: \1, \3, \5
" \ + "cgalPkgDescriptionEnd=" \ + "cgalModifBegin=\htmlonly
\endhtmlonly \xrefitem Modification \"Modifications\" \"MODIFICATIONS\"" \ + "cgalModifEnd=\htmlonly
\endhtmlonly \latexonly END MODIFICATIONS \endlatexonly" \ + "cgalPkgBib{1}=BibTeX: \1-${CGAL_RELEASE_YEAR_ID}
" \ + "cgalFootnote{1}=\1" \ + "cgalFootnoteCode{1}=\1" \ + "cgalAutoToc=\htmlonly[block]
\endhtmlonly" \ + "cgalTagTrue=\link CGAL::Tag_true `CGAL::Tag_true`\endlink" \ + "cgalTagFalse=\link CGAL::Tag_false `CGAL::Tag_false`\endlink" \ + "cgalHeading{1}= \1
" \ + "cgalClassifedRefPages=\htmlonly[block]

Classified Reference Pages

\endhtmlonly" \ + "cgalCRPSection{1}=

\1

" \ + "cgalCRPSubsection{1}=

\1

" \ + "cgalCite{1}=\cite \1" \ + "cgalPackageSection{2}=\htmlonly[block]
\endhtmlonly \section \1 \2 ^^ \htmlonly[block]
\endhtmlonly" \ + "cgalNamedParamsBegin=
Optional Named Parameters
" \ + "cgalNamedParamsBegin{1}=
\1
" \ + "cgalNamedParamsEnd=
" \ + "cgalParamNBegin{1}= \htmlonly[block]
\endhtmlonly
    " \ + "cgalParamDescription{1}=
  • \1
  • " \ + "cgalParamType{1}=
  • Type: \1
  • " \ + "cgalParamDefault{1}=
  • %Default: \1
  • " \ + "cgalParamExtra{1}=
  • Extra: \1
  • " \ + "cgalParamNEnd=
\htmlonly[block]
\endhtmlonly " \ + "cgalParamSectionBegin{1}=\cgalParamNBegin{\1}" \ + "cgalParamSectionEnd=\cgalParamNEnd" \ + "cgalParamPrecondition{1}=
  • Precondition: \1
  • " \ + "cgalBigO{1}=\f$O(\1)\f$" \ + "cgalBigOLarge{1}=\f$O\left(\1\right)\f$" \ + "cgalInclude{1}=`#include<\1>`" \ + "cgalEpicExact=
    Exactness
    This construction is trivial and therefore always exact in `Exact_predicates_inexact_constructions_kernel`.
    " + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, +# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. + +EXTENSION_MAPPING = txt=C++ + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = YES + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = NO + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = YES + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = YES + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = NO + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. See also section "Changing the +# layout of pages" for information. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = ${CGAL_DOC_RESOURCE_DIR}/DoxygenLayoutPackage.xml + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = ${CGAL_DOC_BIBLIO_DIR}/cgal_manual.bib \ + ${CGAL_DOC_BIBLIO_DIR}/geom.bib + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, +# *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C +# comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, +# *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.cpp \ + *.txt \ + *.md \ + *.h \ + *.hpp + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# ANamespace::AClass, ANamespace::*Test + +EXCLUDE_SYMBOLS = Tr \ + Vb \ + Cb \ + Fb \ + K \ + Traits \ + internal + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = *.cpp \ + *.h + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = YES + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = ${CGAL_DOC_HEADER_PACKAGE} + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = ${CGAL_DOC_RESOURCE_DIR}/footer.html + +# Doxygen stores a couple of settings persistently in the browser (via e.g. +# cookies). By default these settings apply to all HTML pages generated by +# doxygen across all projects. The HTML_PROJECT_COOKIE tag can be used to store +# the settings under a project specific key, such that the user preferences will +# be stored separately. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_PROJECT_COOKIE = CGAL + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = YES + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine tune the look of the index (see "Fine-tuning the output"). As an +# example, the default style sheet generated by doxygen has an example that +# shows how to put an image at the root of the tree instead of the PROJECT_NAME. +# Since the tree basically has the same information as the tab index, you could +# consider setting DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png (the default) and svg (looks nicer but requires the +# pdf2svg or inkscape tool). +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = svg + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = YES + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. The default value is: +# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 +# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 +# This tag requires that the tag USE_MATHJAX is set to YES. + +${CGAL_DOC_MATHJAX_LOCATION_FULL_OPTION_LINE} + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# for MathJax version 2 (see +# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# For example for MathJax version 3 (see +# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): +# MATHJAX_EXTENSIONS = ams +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = TeX/AMSmath \ + TeX/AMSsymbols + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = ${CGAL_DOC_RESOURCE_DIR}/CGAL_mathjax.js + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /